]>
git.saurik.com Git - wxWidgets.git/blob - src/gtk/tooltip.cpp
1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxToolTip implementation
4 // Author: Robert Roebling
6 // Copyright: (c) 1998 Robert Roebling
7 // Licence: wxWindows licence
8 /////////////////////////////////////////////////////////////////////////////
11 #pragma implementation "tooltip.h"
18 #include "wx/window.h"
19 #include "wx/tooltip.h"
24 //-----------------------------------------------------------------------------
26 //-----------------------------------------------------------------------------
28 static GtkTooltips
*ss_tooltips
= (GtkTooltips
*) NULL
;
29 static GdkColor ss_bg
;
30 static GdkColor ss_fg
;
32 //-----------------------------------------------------------------------------
34 //-----------------------------------------------------------------------------
36 wxToolTip::wxToolTip( const wxString
&tip
)
39 m_window
= (wxWindow
*) NULL
;
42 void wxToolTip::SetTip( const wxString
&tip
)
48 void wxToolTip::Apply( wxWindow
*win
)
54 ss_tooltips
= gtk_tooltips_new();
59 gdk_color_alloc( gtk_widget_get_default_colormap(), &ss_fg
);
64 gdk_color_alloc( gtk_widget_get_default_colormap(), &ss_bg
);
66 gtk_tooltips_set_colors( ss_tooltips
, &ss_bg
, &ss_fg
);
72 m_window
->ApplyToolTip( ss_tooltips
, (wxChar
*) NULL
);
74 m_window
->ApplyToolTip( ss_tooltips
, m_text
);
77 void wxToolTip::Enable( bool flag
)
79 if (!ss_tooltips
) return;
82 gtk_tooltips_enable( ss_tooltips
);
84 gtk_tooltips_disable( ss_tooltips
);
87 void wxToolTip::SetDelay( long msecs
)
89 if (!ss_tooltips
) return;
91 gtk_tooltips_set_delay( ss_tooltips
, msecs
);