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
virtual void Copy();
virtual void Cut();
virtual void Paste();
-
+
// Implementation
// --------------
virtual void Command(wxCommandEvent& event);
private :
wxMenu *m_privateContextMenu;
+ wxString m_hintString;
DECLARE_EVENT_TABLE()
};