+ wxToolTip( const wxString &tip );
+
+ // get/set the tooltip text
+ void SetTip( const wxString &tip );
+ wxString GetTip() const { return m_text; }
+
+ wxWindow *GetWindow() const { return m_window; }
+ bool IsOk() const { return m_window != NULL; }
+
+ // implementation
+ void Apply( wxWindow *win );
+
+private:
+ wxString m_text;
+ wxWindow *m_window;
+
+ DECLARE_ABSTRACT_CLASS(wxToolTip)