Home | History | Annotate | Download | only in fwl

Lines Matching refs:m_pEdit

75   bool EditCanUndo() const { return m_pEdit->CanUndo(); }
76 bool EditCanRedo() const { return m_pEdit->CanRedo(); }
77 bool EditUndo() { return m_pEdit->Undo(); }
78 bool EditRedo() { return m_pEdit->Redo(); }
79 bool EditCanCopy() const { return m_pEdit->HasSelection(); }
81 if (m_pEdit->GetStylesEx() & FWL_STYLEEXT_EDT_ReadOnly)
85 bool EditCanSelectAll() const { return m_pEdit->GetTextLength() > 0; }
86 Optional<WideString> EditCopy() const { return m_pEdit->Copy(); }
87 Optional<WideString> EditCut() { return m_pEdit->Cut(); }
88 bool EditPaste(const WideString& wsPaste) { return m_pEdit->Paste(wsPaste); }
89 void EditSelectAll() { m_pEdit->SelectAll(); }
90 void EditDelete() { m_pEdit->ClearText(); }
91 void EditDeSelect() { m_pEdit->ClearSelection(); }
103 CFWL_ComboEdit* GetComboEdit() const { return m_pEdit.get(); }
151 std::unique_ptr<CFWL_ComboEdit> m_pEdit;