X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/f7ce0e4a5f07ba2281188e4c95a8f5ebeafec42b..c5bb5453498db88fa0f13ef7ff5e944b220c2fec:/include/wx/gtk/tooltip.h diff --git a/include/wx/gtk/tooltip.h b/include/wx/gtk/tooltip.h index ad476e5ecb..de97789e55 100644 --- a/include/wx/gtk/tooltip.h +++ b/include/wx/gtk/tooltip.h @@ -18,8 +18,8 @@ // forward declarations //----------------------------------------------------------------------------- -class WXDLLIMPEXP_CORE wxToolTip; -class WXDLLIMPEXP_CORE wxWindow; +class WXDLLIMPEXP_FWD_CORE wxToolTip; +class WXDLLIMPEXP_FWD_CORE wxWindow; //----------------------------------------------------------------------------- // wxToolTip @@ -33,6 +33,10 @@ public: // globally change the tooltip parameters static void Enable( bool flag ); static void SetDelay( long msecs ); + // set the delay after which the tooltip disappears or how long the tooltip remains visible + static void SetAutoPop(long msecs); + // set the delay between subsequent tooltips to appear + static void SetReshow(long msecs); // get/set the tooltip text void SetTip( const wxString &tip ); @@ -50,7 +54,7 @@ public: // this just sets the given tooltip for the specified widget // // tip must be already UTF-8 encoded - static void Apply(GtkWidget *w, const wxCharBuffer& tip); + static void Apply(GtkWidget *w, const gchar *tip); private: wxString m_text;