Lines Matching refs:ToEdit
27 CFWL_Edit* ToEdit(CFWL_Widget* widget) { in ToEdit() function
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()