]> git.saurik.com Git - wxWidgets.git/blame_incremental - include/wx/gtk/tooltip.h
[ 1823588 ] gtk filedlg - droping support for gtk 2.2
[wxWidgets.git] / include / wx / gtk / tooltip.h
... / ...
CommitLineData
1/////////////////////////////////////////////////////////////////////////////
2// Name: 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
21class WXDLLIMPEXP_FWD_CORE wxToolTip;
22class WXDLLIMPEXP_FWD_CORE wxWindow;
23
24//-----------------------------------------------------------------------------
25// wxToolTip
26//-----------------------------------------------------------------------------
27
28class WXDLLIMPEXP_CORE wxToolTip : public wxObject
29{
30public:
31 wxToolTip( const wxString &tip );
32
33 // globally change the tooltip parameters
34 static void Enable( bool flag );
35 static void SetDelay( long msecs );
36 // set the delay after which the tooltip disappears or how long the tooltip remains visible
37 static void SetAutoPop(long msecs);
38 // set the delay between subsequent tooltips to appear
39 static void SetReshow(long msecs);
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
49 // wxGTK-only from now on
50
51 // this forwards back to wxWindow::ApplyToolTip()
52 void Apply( wxWindow *win );
53
54 // this just sets the given tooltip for the specified widget
55 //
56 // tip must be already UTF-8 encoded
57 static void Apply(GtkWidget *w, const gchar *tip);
58
59private:
60 wxString m_text;
61 wxWindow *m_window;
62
63 DECLARE_ABSTRACT_CLASS(wxToolTip)
64};
65
66#endif // __GTKTOOLTIPH__