GtkWidget *GetConnectWidget();
#if wxUSE_TOOLTIPS
- void ApplyToolTip( GtkTooltips *tips, const gchar *tip );
+ void GTKApplyToolTip( GtkTooltips *tips, const gchar *tip );
#endif // wxUSE_TOOLTIPS
struct _GtkTreeView *m_treeview;
void GtkDisableEvents();
void GtkEnableEvents();
#if wxUSE_TOOLTIPS
- void ApplyToolTip( GtkTooltips *tips, const gchar *tip );
+ void GTKApplyToolTip( GtkTooltips *tips, const gchar *tip );
#endif // wxUSE_TOOLTIPS
wxRadioBoxButtonsInfoList m_buttonsInfo;
bool IsOk() const { return m_window != NULL; }
- // wxGTK-only from now on
-
- // this forwards back to wxWindow::ApplyToolTip()
- void Apply( wxWindow *win );
+ // this forwards back to wxWindow::GTKApplyToolTip()
+ void GTKApply( wxWindow *win );
// this just sets the given tooltip for the specified widget
- //
- // tip must be already UTF-8 encoded
- static void Apply(GtkWidget *w, const gchar *tip);
+ // tip must be UTF-8 encoded
+ static void GTKApply(GtkWidget *w, const gchar *tip);
private:
wxString m_text;
#if wxUSE_TOOLTIPS
// applies tooltip to the widget (tip must be UTF-8 encoded)
- virtual void ApplyToolTip( GtkTooltips *tips, const gchar *tip );
+ virtual void GTKApplyToolTip( GtkTooltips *tips, const gchar *tip );
#endif // wxUSE_TOOLTIPS
// Called when a window should delay showing itself
// ----------------------------------------------------------------------------
#if wxUSE_TOOLTIPS
-void wxListBox::ApplyToolTip( GtkTooltips *tips, const gchar *tip )
+void wxListBox::GTKApplyToolTip( GtkTooltips *tips, const gchar *tip )
{
// RN: Is this needed anymore?
gtk_tooltips_set_tip( tips, GTK_WIDGET( m_treeview ), tip, NULL );
}
#if wxUSE_TOOLTIPS
-void wxRadioBox::ApplyToolTip(GtkTooltips * WXUNUSED(tips), const gchar *tip)
+void wxRadioBox::GTKApplyToolTip(GtkTooltips * WXUNUSED(tips), const gchar *tip)
{
// set this tooltip for all radiobuttons which don't have their own tips
unsigned n = 0;
{
if ( !GetItemToolTip(n) )
{
- wxToolTip::Apply(GTK_WIDGET(node->GetData()->button), tip);
+ wxToolTip::GTKApply(GTK_WIDGET(node->GetData()->button), tip);
}
}
}
if ( tooltip )
buf = wxGTK_CONV(tooltip->GetTip());
- wxToolTip::Apply(GTK_WIDGET(m_buttonsInfo[n]->button), buf);
+ wxToolTip::GTKApply(GTK_WIDGET(m_buttonsInfo[n]->button), buf);
}
#endif // wxUSE_TOOLTIPS
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();
wxWindowBase::DoSetToolTip(tip);
if (m_tooltip)
- m_tooltip->Apply( (wxWindow *)this );
+ m_tooltip->GTKApply( (wxWindow *)this );
}
-void wxWindowGTK::ApplyToolTip( GtkTooltips *tips, const gchar *tip )
+void wxWindowGTK::GTKApplyToolTip( GtkTooltips *tips, const gchar *tip )
{
gtk_tooltips_set_tip(tips, GetConnectWidget(), tip, NULL);
}