• Home
  • Raw
  • Download

Lines Matching refs:GetNormalWidget

39   if (GetNormalWidget()) {  in PreFinalize()
41 GetNormalWidget()->GetFWLApp()->GetNoteDriver(); in PreFinalize()
42 pNoteDriver->UnregisterEventTarget(GetNormalWidget()); in PreFinalize()
75 CFWL_Edit* pWidget = ToEdit(GetNormalWidget()); in UpdateWidgetProperty()
113 GetNormalWidget()->ModifyStyles(dwStyle, 0xFFFFFFFF); in UpdateWidgetProperty()
114 GetNormalWidget()->ModifyStyleExts(dwExtendedStyle, 0xFFFFFFFF); in UpdateWidgetProperty()
139 CFWL_MessageMouse msg(GetNormalWidget(), in OnLButtonDown()
180 CFWL_MessageSetFocus msg(GetNormalWidget()); in OnSetFocus()
186 CFWL_MessageKillFocus msg(GetNormalWidget()); in OnKillFocus()
203 WideString wsText = ToEdit(GetNormalWidget())->GetText(); in CommitData()
271 CFWL_Edit* pEdit = ToEdit(GetNormalWidget()); in UpdateFWLData()
307 GetNormalWidget()->Update(); in UpdateFWLData()
344 OnTextWillChange(GetNormalWidget(), in OnProcessEvent()
348 OnTextFull(GetNormalWidget()); in OnProcessEvent()
362 return ToEdit(GetNormalWidget())->CanUndo(); in CanUndo()
366 return ToEdit(GetNormalWidget())->CanRedo(); in CanRedo()
370 return ToEdit(GetNormalWidget())->HasSelection(); in CanCopy()
374 if (ToEdit(GetNormalWidget())->GetStyleExts() & FWL_STYLEEXT_EDT_ReadOnly) in CanCut()
376 return ToEdit(GetNormalWidget())->HasSelection(); in CanCut()
380 return !(ToEdit(GetNormalWidget())->GetStyleExts() & in CanPaste()
385 return ToEdit(GetNormalWidget())->GetTextLength() > 0; in CanSelectAll()
389 return ToEdit(GetNormalWidget())->Undo(); in Undo()
393 return ToEdit(GetNormalWidget())->Redo(); in Redo()
397 return ToEdit(GetNormalWidget())->Copy(); in Copy()
401 return ToEdit(GetNormalWidget())->Cut(); in Cut()
405 return ToEdit(GetNormalWidget())->Paste(wsPaste); in Paste()
409 ToEdit(GetNormalWidget())->SelectAll(); in SelectAll()
413 ToEdit(GetNormalWidget())->ClearText(); in Delete()
417 ToEdit(GetNormalWidget())->ClearSelection(); in DeSelect()
421 return ToEdit(GetNormalWidget())->GetText(); in GetText()