]>
Commit | Line | Data |
---|---|---|
90b1b133 RR |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: tooltip.h | |
ff8bfdbb | 3 | // Purpose: wxToolTip class |
90b1b133 RR |
4 | // Author: Robert Roebling |
5 | // Id: $Id$ | |
371a5b4e | 6 | // Copyright: (c) 1998 Robert Roebling |
65571936 | 7 | // Licence: wxWindows licence |
90b1b133 RR |
8 | ///////////////////////////////////////////////////////////////////////////// |
9 | ||
10 | #ifndef __GTKTOOLTIPH__ | |
11 | #define __GTKTOOLTIPH__ | |
12 | ||
12028905 | 13 | #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA) |
ff8bfdbb | 14 | #pragma interface |
90b1b133 RR |
15 | #endif |
16 | ||
17 | #include "wx/defs.h" | |
ff8bfdbb | 18 | #include "wx/string.h" |
90b1b133 | 19 | #include "wx/object.h" |
90b1b133 RR |
20 | |
21 | //----------------------------------------------------------------------------- | |
ff8bfdbb | 22 | // forward declarations |
90b1b133 RR |
23 | //----------------------------------------------------------------------------- |
24 | ||
25 | class wxToolTip; | |
ff8bfdbb | 26 | class wxWindow; |
90b1b133 RR |
27 | |
28 | //----------------------------------------------------------------------------- | |
29 | // wxToolTip | |
30 | //----------------------------------------------------------------------------- | |
31 | ||
ff8bfdbb | 32 | class wxToolTip : public wxObject |
90b1b133 RR |
33 | { |
34 | public: | |
ff8bfdbb | 35 | // globally change the tooltip parameters |
301cd871 RR |
36 | static void Enable( bool flag ); |
37 | static void SetDelay( long msecs ); | |
90b1b133 | 38 | |
ff8bfdbb VZ |
39 | wxToolTip( const wxString &tip ); |
40 | ||
41 | // get/set the tooltip text | |
42 | void SetTip( const wxString &tip ); | |
43 | wxString GetTip() const { return m_text; } | |
44 | ||
45 | wxWindow *GetWindow() const { return m_window; } | |
46 | bool IsOk() const { return m_window != NULL; } | |
47 | ||
48 | // implementation | |
49 | void Apply( wxWindow *win ); | |
50 | ||
51 | private: | |
b1170810 | 52 | wxString m_text; |
301cd871 | 53 | wxWindow *m_window; |
b342f8f0 RD |
54 | |
55 | DECLARE_ABSTRACT_CLASS(wxToolTip) | |
90b1b133 RR |
56 | }; |
57 | ||
58 | #endif // __GTKTOOLTIPH__ |