X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/233f573883834b6c86ad5a9d72fdb6a260f74f81..acebfdf0528fd9c091357d8bac962910a901c025:/include/wx/osx/textctrl.h?ds=sidebyside diff --git a/include/wx/osx/textctrl.h b/include/wx/osx/textctrl.h index c2d2ae2edd..53604bab7b 100644 --- a/include/wx/osx/textctrl.h +++ b/include/wx/osx/textctrl.h @@ -4,7 +4,6 @@ // Author: Stefan Csomor // Modified by: // Created: 1998-01-01 -// RCS-ID: $Id$ // Copyright: (c) Stefan Csomor // Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// @@ -75,9 +74,9 @@ public: virtual void MarkDirty(); virtual void DiscardEdits(); - // set the max number of characters which may be entered - // in a single line text control - virtual void SetMaxLength(unsigned long len); + // set the grayed out hint text + virtual bool SetHint(const wxString& hint); + virtual wxString GetHint() const; // text control under some platforms supports the text styles: these // methods apply the given text style to the given selection or to @@ -99,7 +98,7 @@ public: virtual void Copy(); virtual void Cut(); virtual void Paste(); - + // Implementation // -------------- virtual void Command(wxCommandEvent& event); @@ -152,6 +151,7 @@ protected: private : wxMenu *m_privateContextMenu; + wxString m_hintString; DECLARE_EVENT_TABLE() };