• Home
  • History
  • Annotate
  • Raw
  • Download

Lines Matching refs:m_pNormalWidget

37   if (m_pNormalWidget) {  in ~CXFA_FFTextEdit()
39 m_pNormalWidget->GetOwnerApp()->GetNoteDriver(); in ~CXFA_FFTextEdit()
40 pNoteDriver->UnregisterEventTarget(m_pNormalWidget.get()); in ~CXFA_FFTextEdit()
48 m_pNormalWidget = std::move(pNewWidget); in LoadWidget()
49 m_pNormalWidget->SetLayoutItem(this); in LoadWidget()
52 m_pNormalWidget->GetOwnerApp()->GetNoteDriver(); in LoadWidget()
53 pNoteDriver->RegisterEventTarget(m_pNormalWidget.get(), in LoadWidget()
54 m_pNormalWidget.get()); in LoadWidget()
55 m_pOldDelegate = m_pNormalWidget->GetDelegate(); in LoadWidget()
56 m_pNormalWidget->SetDelegate(this); in LoadWidget()
57 m_pNormalWidget->LockUpdate(); in LoadWidget()
62 m_pNormalWidget->UnlockUpdate(); in LoadWidget()
67 CFWL_Edit* pWidget = static_cast<CFWL_Edit*>(m_pNormalWidget.get()); in UpdateWidgetProperty()
107 m_pNormalWidget->ModifyStyles(dwStyle, 0xFFFFFFFF); in UpdateWidgetProperty()
108 m_pNormalWidget->ModifyStylesEx(dwExtendedStyle, 0xFFFFFFFF); in UpdateWidgetProperty()
121 CFWL_MessageMouse ms(nullptr, m_pNormalWidget.get()); in OnLButtonDown()
165 CFWL_MessageSetFocus ms(nullptr, m_pNormalWidget.get()); in OnSetFocus()
171 CFWL_MessageKillFocus ms(nullptr, m_pNormalWidget.get()); in OnKillFocus()
186 WideString wsText = static_cast<CFWL_Edit*>(m_pNormalWidget.get())->GetText(); in CommitData()
254 if (!m_pNormalWidget) in UpdateFWLData()
257 CFWL_Edit* pEdit = static_cast<CFWL_Edit*>(m_pNormalWidget.get()); in UpdateFWLData()
290 m_pNormalWidget->Update(); in UpdateFWLData()
304 CFWL_Edit* pEdit = static_cast<CFWL_Edit*>(m_pNormalWidget.get()); in OnTextChanged()
344 OnTextChanged(m_pNormalWidget.get(), wsChange, event->wsPrevText); in OnProcessEvent()
348 OnTextFull(m_pNormalWidget.get()); in OnProcessEvent()
369 return ToEdit(m_pNormalWidget.get())->CanUndo(); in CanUndo()
373 return ToEdit(m_pNormalWidget.get())->CanRedo(); in CanRedo()
377 return ToEdit(m_pNormalWidget.get())->Undo(); in Undo()
381 return ToEdit(m_pNormalWidget.get())->Redo(); in Redo()
385 return ToEdit(m_pNormalWidget.get())->HasSelection(); in CanCopy()
389 if (ToEdit(m_pNormalWidget.get())->GetStylesEx() & FWL_STYLEEXT_EDT_ReadOnly) in CanCut()
391 return ToEdit(m_pNormalWidget.get())->HasSelection(); in CanCut()
395 return !(ToEdit(m_pNormalWidget.get())->GetStylesEx() & in CanPaste()
400 return ToEdit(m_pNormalWidget.get())->GetTextLength() > 0; in CanSelectAll()
404 return ToEdit(m_pNormalWidget.get())->Copy(); in Copy()
408 return ToEdit(m_pNormalWidget.get())->Cut(); in Cut()
412 return ToEdit(m_pNormalWidget.get())->Paste(wsPaste); in Paste()
416 ToEdit(m_pNormalWidget.get())->SelectAll(); in SelectAll()
420 ToEdit(m_pNormalWidget.get())->ClearText(); in Delete()
424 ToEdit(m_pNormalWidget.get())->ClearSelection(); in DeSelect()