// global data
//-----------------------------------------------------------------------------
-static GtkTooltips *gs_tooltips = (GtkTooltips*) NULL;
+static GtkTooltips *gs_tooltips = NULL;
//-----------------------------------------------------------------------------
// wxToolTip
wxToolTip::wxToolTip( const wxString &tip )
{
m_text = tip;
- m_window = (wxWindow*) NULL;
+ m_window = NULL;
}
void wxToolTip::SetTip( const wxString &tip )
{
m_text = tip;
- Apply( m_window );
+ GTKApply( m_window );
}
-void wxToolTip::Apply( wxWindow *win )
+void wxToolTip::GTKApply( wxWindow *win )
{
if (!win)
return;
m_window = win;
if (m_text.empty())
- m_window->ApplyToolTip( gs_tooltips, NULL );
+ m_window->GTKApplyToolTip( gs_tooltips, NULL );
else
- m_window->ApplyToolTip( gs_tooltips, wxGTK_CONV_SYS(m_text) );
+ m_window->GTKApplyToolTip( gs_tooltips, wxGTK_CONV_SYS(m_text) );
}
/* static */
-void wxToolTip::Apply(GtkWidget *w, const gchar *tip)
+void wxToolTip::GTKApply(GtkWidget *w, const gchar *tip)
{
if ( !gs_tooltips )
gs_tooltips = gtk_tooltips_new();
gtk_tooltips_set_delay( gs_tooltips, (int)msecs );
}
+void wxToolTip::SetAutoPop( long WXUNUSED(msecs) )
+{
+}
+
+void wxToolTip::SetReshow( long WXUNUSED(msecs) )
+{
+}
+
#endif // wxUSE_TOOLTIPS