]>
git.saurik.com Git - wxWidgets.git/blob - include/wx/gtk1/tooltip.h
299f0945b22ddc60d2b389292726f769e109a208
1 /////////////////////////////////////////////////////////////////////////////
4 // Author: Robert Roebling
6 // Copyright: (c) 1998 Robert Roebling, Julian Smart and Markus Holzem
7 // Licence: wxWindows licence
8 /////////////////////////////////////////////////////////////////////////////
10 #ifndef __GTKTOOLTIPH__
11 #define __GTKTOOLTIPH__
18 #include "wx/object.h"
19 #include "wx/window.h"
21 //-----------------------------------------------------------------------------
23 //-----------------------------------------------------------------------------
27 //-----------------------------------------------------------------------------
29 //-----------------------------------------------------------------------------
31 class wxToolTip
: public wxObject
35 wxToolTip( const wxString
&tip
);
37 void SetTip( const wxString
&tip
);
38 wxString
GetTip() const;
39 wxWindow
*GetWindow() const;
42 static void Enable( bool flag
);
43 static void SetDelay( long msecs
);
50 void Apply( wxWindow
*win
);
53 #endif // __GTKTOOLTIPH__