]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/osx/textctrl.h
Implement delayed destruction for wxPopupTransientWindow.
[wxWidgets.git] / include / wx / osx / textctrl.h
index c2d2ae2eddd59330040192c9a5ce2b68df49c3cb..283a1694ea1643dad0c8fb92be2fcb220561ed7e 100644 (file)
@@ -79,6 +79,10 @@ public:
     // 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
     // set/get the style which will be used for all appended text
@@ -99,7 +103,7 @@ public:
     virtual void Copy();
     virtual void Cut();
     virtual void Paste();
-    
+
     // Implementation
     // --------------
     virtual void Command(wxCommandEvent& event);
@@ -152,6 +156,7 @@ protected:
 
 private :
     wxMenu  *m_privateContextMenu;
+    wxString m_hintString;
 
     DECLARE_EVENT_TABLE()
 };