]>
git.saurik.com Git - wxWidgets.git/blob - src/gtk1/tooltip.cpp
cd0a8670e3fc07d2698a82846eef6d5a8e695bf8
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"
16 #include "wx/window.h"
17 #include "wx/tooltip.h"
22 //-----------------------------------------------------------------------------
24 //-----------------------------------------------------------------------------
26 static GtkTooltips
*ss_tooltips
= (GtkTooltips
*) NULL
;
27 static GdkColor ss_bg
;
28 static GdkColor ss_fg
;
30 //-----------------------------------------------------------------------------
32 //-----------------------------------------------------------------------------
34 wxToolTip::wxToolTip( const wxString
&tip
)
37 m_window
= (wxWindow
*) NULL
;
40 void wxToolTip::SetTip( const wxString
&tip
)
46 void wxToolTip::Apply( wxWindow
*win
)
52 ss_tooltips
= gtk_tooltips_new();
57 gdk_color_alloc( gtk_widget_get_default_colormap(), &ss_fg
);
62 gdk_color_alloc( gtk_widget_get_default_colormap(), &ss_bg
);
64 gtk_tooltips_set_colors( ss_tooltips
, &ss_bg
, &ss_fg
);
70 m_window
->ApplyToolTip( ss_tooltips
, (char*) NULL
);
72 m_window
->ApplyToolTip( ss_tooltips
, m_text
);
75 void wxToolTip::Enable( bool flag
)
77 if (!ss_tooltips
) return;
80 gtk_tooltips_enable( ss_tooltips
);
82 gtk_tooltips_disable( ss_tooltips
);
85 void wxToolTip::SetDelay( long msecs
)
87 if (!ss_tooltips
) return;
89 gtk_tooltips_set_delay( ss_tooltips
, msecs
);