Added further 'missing' wxTextCtrl-like functions to wxComboBox
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@30918 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -122,6 +122,24 @@ public:
|
||||
{ wxTextCtrl::SetSelection(from,to); }
|
||||
virtual void SetEditable(bool editable)
|
||||
{ wxTextCtrl::SetEditable(editable); }
|
||||
virtual bool IsEditable() const
|
||||
{ return !HasFlag(wxCB_READONLY); }
|
||||
virtual void Undo()
|
||||
{ wxTextCtrl::Undo(); }
|
||||
virtual void Redo()
|
||||
{ wxTextCtrl::Redo(); }
|
||||
virtual void SelectAll()
|
||||
{ wxTextCtrl::SelectAll(); }
|
||||
virtual bool CanCopy() const
|
||||
{ return wxTextCtrl::CanCopy(); }
|
||||
virtual bool CanCut() const = 0
|
||||
{ return wxTextCtrl::CanCut(); }
|
||||
virtual bool CanPaste() const
|
||||
{ return wxTextCtrl::CanPaste(); }
|
||||
virtual bool CanUndo() const
|
||||
{ return wxTextCtrl::CanUndo(); }
|
||||
virtual bool CanRedo() const
|
||||
{ return wxTextCtrl::CanRedo(); }
|
||||
};
|
||||
|
||||
#endif // __WX_COCOA_COMBOBOX_H__
|
||||
|
Reference in New Issue
Block a user