1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxToolTip class
4 // Author: Robert Roebling
6 // Copyright: (c) 1998 Robert Roebling
7 // Licence: wxWindows licence
8 /////////////////////////////////////////////////////////////////////////////
10 #ifndef __GTKTOOLTIPH__
11 #define __GTKTOOLTIPH__
14 #include "wx/string.h"
15 #include "wx/object.h"
17 //-----------------------------------------------------------------------------
18 // forward declarations
19 //-----------------------------------------------------------------------------
21 class WXDLLIMPEXP_FWD_CORE wxToolTip
;
22 class WXDLLIMPEXP_FWD_CORE wxWindow
;
24 //-----------------------------------------------------------------------------
26 //-----------------------------------------------------------------------------
28 class WXDLLIMPEXP_CORE wxToolTip
: public wxObject
31 wxToolTip( const wxString
&tip
);
33 // globally change the tooltip parameters
34 static void Enable( bool flag
);
35 static void SetDelay( long msecs
);
36 // set the delay after which the tooltip disappears or how long the tooltip remains visible
37 static void SetAutoPop(long msecs
);
38 // set the delay between subsequent tooltips to appear
39 static void SetReshow(long msecs
);
41 // get/set the tooltip text
42 void SetTip( const wxString
&tip
);
43 wxString
GetTip() const { return m_text
; }
45 wxWindow
*GetWindow() const { return m_window
; }
46 bool IsOk() const { return m_window
!= NULL
; }
49 // this forwards back to wxWindow::GTKApplyToolTip()
50 void GTKApply( wxWindow
*win
);
52 // this just sets the given tooltip for the specified widget
53 // tip must be UTF-8 encoded
54 static void GTKApply(GtkWidget
*w
, const gchar
*tip
);
60 DECLARE_ABSTRACT_CLASS(wxToolTip
)
63 #endif // __GTKTOOLTIPH__