X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/717a70722efbd1931301d44344df83ec23118b7b..1e8dba5e29eba7ac5e53fa4035e65ceeaeed3884:/include/wx/mac/carbon/textctrl.h diff --git a/include/wx/mac/carbon/textctrl.h b/include/wx/mac/carbon/textctrl.h index a4a6dffdb2..69615247a2 100644 --- a/include/wx/mac/carbon/textctrl.h +++ b/include/wx/mac/carbon/textctrl.h @@ -47,7 +47,7 @@ public: Create(parent, id, value, pos, size, style, validator, name); } - ~wxTextCtrl(); + virtual ~wxTextCtrl(); bool Create(wxWindow *parent, wxWindowID id, @@ -83,6 +83,7 @@ public: // load the controls contents from the file virtual bool LoadFile(const wxString& file); + virtual bool LoadFile(const wxString& file, int WXUNUSED(fileType)) { return LoadFile(file); } // sets/clears the dirty flag virtual void MarkDirty(); @@ -188,7 +189,7 @@ public: wxMacTextControl * GetPeer() const { return (wxMacTextControl*) m_peer; } - + protected: // common part of all ctors void Init(); @@ -202,6 +203,18 @@ protected: // need to make this public because of the current implementation via callbacks unsigned long m_maxLength; + + bool GetTriggerOnSetValue() const + { + return m_triggerOnSetValue; + } + + void SetTriggerOnSetValue(bool trigger) + { + m_triggerOnSetValue = trigger; + } + + bool m_triggerOnSetValue ; private : wxMenu *m_privateContextMenu;