]>
Commit | Line | Data |
---|---|---|
90b1b133 RR |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: tooltip.h | |
3 | // Purpose: | |
4 | // Author: Robert Roebling | |
5 | // Id: $Id$ | |
6 | // Copyright: (c) 1998 Robert Roebling, Julian Smart and Markus Holzem | |
7 | // Licence: wxWindows licence | |
8 | ///////////////////////////////////////////////////////////////////////////// | |
9 | ||
10 | #ifndef __GTKTOOLTIPH__ | |
11 | #define __GTKTOOLTIPH__ | |
12 | ||
13 | #ifdef __GNUG__ | |
14 | #pragma interface | |
15 | #endif | |
16 | ||
17 | #include "wx/defs.h" | |
18 | #include "wx/object.h" | |
19 | #include "wx/window.h" | |
20 | ||
21 | //----------------------------------------------------------------------------- | |
22 | // classes | |
23 | //----------------------------------------------------------------------------- | |
24 | ||
25 | class wxToolTip; | |
26 | ||
27 | //----------------------------------------------------------------------------- | |
28 | // wxToolTip | |
29 | //----------------------------------------------------------------------------- | |
30 | ||
31 | class wxToolTip: public wxObject | |
32 | { | |
33 | public: | |
34 | ||
35 | wxToolTip() {} | |
36 | ||
37 | static void Add( wxWindow *tool, const wxString &tip ); | |
38 | static void Enable( bool flag ); | |
39 | static void SetDelay( long msecs ); | |
40 | ||
41 | ||
42 | }; | |
43 | ||
44 | #endif // __GTKTOOLTIPH__ |