]> git.saurik.com Git - wxWidgets.git/blob - include/wx/gtk1/tooltip.h
File/dir dialog styles and other changes (patch 1488371):
[wxWidgets.git] / include / wx / gtk1 / tooltip.h
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: wx/gtk1/tooltip.h
3 // Purpose: wxToolTip class
4 // Author: Robert Roebling
5 // Id: $Id$
6 // Copyright: (c) 1998 Robert Roebling
7 // Licence: wxWindows licence
8 /////////////////////////////////////////////////////////////////////////////
9
10 #ifndef __GTKTOOLTIPH__
11 #define __GTKTOOLTIPH__
12
13 #include "wx/defs.h"
14 #include "wx/string.h"
15 #include "wx/object.h"
16
17 //-----------------------------------------------------------------------------
18 // forward declarations
19 //-----------------------------------------------------------------------------
20
21 class WXDLLIMPEXP_CORE wxToolTip;
22 class WXDLLIMPEXP_CORE wxWindow;
23
24 //-----------------------------------------------------------------------------
25 // wxToolTip
26 //-----------------------------------------------------------------------------
27
28 class WXDLLIMPEXP_CORE wxToolTip : public wxObject
29 {
30 public:
31 // globally change the tooltip parameters
32 static void Enable( bool flag );
33 static void SetDelay( long msecs );
34
35 wxToolTip( const wxString &tip );
36
37 // get/set the tooltip text
38 void SetTip( const wxString &tip );
39 wxString GetTip() const { return m_text; }
40
41 wxWindow *GetWindow() const { return m_window; }
42 bool IsOk() const { return m_window != NULL; }
43
44 // implementation
45 void Apply( wxWindow *win );
46
47 private:
48 wxString m_text;
49 wxWindow *m_window;
50
51 DECLARE_ABSTRACT_CLASS(wxToolTip)
52 };
53
54 #endif // __GTKTOOLTIPH__