]>
Commit | Line | Data |
---|---|---|
90b1b133 | 1 | ///////////////////////////////////////////////////////////////////////////// |
9b5f1895 | 2 | // Name: src/gtk/tooltip.cpp |
ff8bfdbb | 3 | // Purpose: wxToolTip implementation |
90b1b133 RR |
4 | // Author: Robert Roebling |
5 | // Id: $Id$ | |
6 | // Copyright: (c) 1998 Robert Roebling | |
65571936 | 7 | // Licence: wxWindows licence |
90b1b133 RR |
8 | ///////////////////////////////////////////////////////////////////////////// |
9 | ||
14f355c2 VS |
10 | // For compilers that support precompilation, includes "wx.h". |
11 | #include "wx/wxprec.h" | |
12 | ||
cad880f5 | 13 | #if wxUSE_TOOLTIPS |
f7f1f70f | 14 | |
90b1b133 | 15 | #include "wx/tooltip.h" |
cdccdfab WS |
16 | |
17 | #ifndef WX_PRECOMP | |
18 | #include "wx/window.h" | |
19 | #endif | |
90b1b133 | 20 | |
9e691f46 | 21 | #include "wx/gtk/private.h" |
90b1b133 | 22 | |
301cd871 RR |
23 | //----------------------------------------------------------------------------- |
24 | // global data | |
25 | //----------------------------------------------------------------------------- | |
26 | ||
6cae7af2 | 27 | static GtkTooltips *gs_tooltips = (GtkTooltips*) NULL; |
ff8bfdbb | 28 | |
90b1b133 | 29 | //----------------------------------------------------------------------------- |
b1170810 | 30 | // wxToolTip |
90b1b133 RR |
31 | //----------------------------------------------------------------------------- |
32 | ||
b342f8f0 RD |
33 | IMPLEMENT_ABSTRACT_CLASS(wxToolTip, wxObject) |
34 | ||
b1170810 RR |
35 | wxToolTip::wxToolTip( const wxString &tip ) |
36 | { | |
37 | m_text = tip; | |
301cd871 | 38 | m_window = (wxWindow*) NULL; |
b1170810 | 39 | } |
90b1b133 | 40 | |
301cd871 | 41 | void wxToolTip::SetTip( const wxString &tip ) |
b1170810 | 42 | { |
301cd871 RR |
43 | m_text = tip; |
44 | Apply( m_window ); | |
45 | } | |
46 | ||
47 | void wxToolTip::Apply( wxWindow *win ) | |
48 | { | |
f7ce0e4a VZ |
49 | if (!win) |
50 | return; | |
301cd871 | 51 | |
f7ce0e4a | 52 | if ( !gs_tooltips ) |
6cae7af2 | 53 | gs_tooltips = gtk_tooltips_new(); |
ff8bfdbb | 54 | |
301cd871 | 55 | m_window = win; |
ff8bfdbb | 56 | |
cdccdfab | 57 | if (m_text.empty()) |
6cae7af2 | 58 | m_window->ApplyToolTip( gs_tooltips, (wxChar*) NULL ); |
301cd871 | 59 | else |
6cae7af2 | 60 | m_window->ApplyToolTip( gs_tooltips, m_text ); |
90b1b133 RR |
61 | } |
62 | ||
f7ce0e4a VZ |
63 | /* static */ |
64 | void wxToolTip::Apply(GtkWidget *w, const wxCharBuffer& tip) | |
65 | { | |
66 | if ( !gs_tooltips ) | |
67 | gs_tooltips = gtk_tooltips_new(); | |
68 | ||
69 | gtk_tooltips_set_tip(gs_tooltips, w, tip, NULL); | |
70 | } | |
71 | ||
90b1b133 RR |
72 | void wxToolTip::Enable( bool flag ) |
73 | { | |
f7ce0e4a VZ |
74 | if (!gs_tooltips) |
75 | return; | |
ff8bfdbb | 76 | |
90b1b133 | 77 | if (flag) |
6cae7af2 | 78 | gtk_tooltips_enable( gs_tooltips ); |
90b1b133 | 79 | else |
6cae7af2 | 80 | gtk_tooltips_disable( gs_tooltips ); |
90b1b133 RR |
81 | } |
82 | ||
1efb5db8 MR |
83 | G_BEGIN_DECLS |
84 | void gtk_tooltips_set_delay (GtkTooltips *tooltips, | |
85 | guint delay); | |
86 | G_END_DECLS | |
87 | ||
90b1b133 RR |
88 | void wxToolTip::SetDelay( long msecs ) |
89 | { | |
6cae7af2 | 90 | if (!gs_tooltips) |
b02da6b1 | 91 | return; |
ff8bfdbb | 92 | |
1efb5db8 MR |
93 | // FIXME: This is a deprecated function and might not even have an effect. |
94 | // Try to not use it, after which remove the prototype above. | |
6cae7af2 | 95 | gtk_tooltips_set_delay( gs_tooltips, (int)msecs ); |
90b1b133 | 96 | } |
dcf924a3 | 97 | |
cdccdfab | 98 | #endif // wxUSE_TOOLTIPS |