]> git.saurik.com Git - wxWidgets.git/blame - include/wx/gtk/tooltip.h
Remove unnecessary size members from GtkPizzaChild.
[wxWidgets.git] / include / wx / gtk / tooltip.h
CommitLineData
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
90b1b133 13#include "wx/defs.h"
ff8bfdbb 14#include "wx/string.h"
90b1b133 15#include "wx/object.h"
90b1b133
RR
16
17//-----------------------------------------------------------------------------
ff8bfdbb 18// forward declarations
90b1b133
RR
19//-----------------------------------------------------------------------------
20
20123d49
MW
21class WXDLLIMPEXP_CORE wxToolTip;
22class WXDLLIMPEXP_CORE wxWindow;
90b1b133
RR
23
24//-----------------------------------------------------------------------------
25// wxToolTip
26//-----------------------------------------------------------------------------
27
20123d49 28class WXDLLIMPEXP_CORE wxToolTip : public wxObject
90b1b133
RR
29{
30public:
f7ce0e4a
VZ
31 wxToolTip( const wxString &tip );
32
ff8bfdbb 33 // globally change the tooltip parameters
301cd871
RR
34 static void Enable( bool flag );
35 static void SetDelay( long msecs );
90b1b133 36
ff8bfdbb
VZ
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
f7ce0e4a
VZ
44
45 // wxGTK-only from now on
46
47 // this forwards back to wxWindow::ApplyToolTip()
ff8bfdbb
VZ
48 void Apply( wxWindow *win );
49
f7ce0e4a
VZ
50 // this just sets the given tooltip for the specified widget
51 //
52 // tip must be already UTF-8 encoded
53 static void Apply(GtkWidget *w, const wxCharBuffer& tip);
54
ff8bfdbb 55private:
b1170810 56 wxString m_text;
301cd871 57 wxWindow *m_window;
b342f8f0
RD
58
59 DECLARE_ABSTRACT_CLASS(wxToolTip)
90b1b133
RR
60};
61
62#endif // __GTKTOOLTIPH__