X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/593ac8df8eea35e4e0402a7ab0fbba13440b20bf..3201a1046ba71ba8e5ef2ed694fde34d12f743f3:/src/gtk/button.cpp diff --git a/src/gtk/button.cpp b/src/gtk/button.cpp index 12e0807e50..d1876481e8 100644 --- a/src/gtk/button.cpp +++ b/src/gtk/button.cpp @@ -44,7 +44,7 @@ static void gtk_button_clicked_callback( GtkWidget *WXUNUSED(widget), wxButton * wxCommandEvent event(wxEVT_COMMAND_BUTTON_CLICKED, button->GetId()); event.SetEventObject(button); - button->GetEventHandler()->ProcessEvent(event); + button->HandleWindowEvent(event); } } @@ -246,7 +246,21 @@ GdkWindow *wxButton::GTKGetWindow(wxArrayGdkWindows& WXUNUSED(windows)) const void wxButton::DoApplyWidgetStyle(GtkRcStyle *style) { gtk_widget_modify_style(m_widget, style); - gtk_widget_modify_style(GTK_BIN(m_widget)->child, style); + GtkWidget *child = GTK_BIN(m_widget)->child; + gtk_widget_modify_style(child, style); + + // for buttons with images, the path to the label is (at least in 2.12) + // GtkButton -> GtkAlignment -> GtkHBox -> GtkLabel + if ( GTK_IS_ALIGNMENT(child) ) + { + GtkWidget *box = GTK_BIN(child)->child; + if ( GTK_IS_BOX(box) ) + { + GList *items = gtk_container_get_children(GTK_CONTAINER(box)); + for ( GList *item = items; item; item = item->next ) + gtk_widget_modify_style(GTK_WIDGET(item->data), style); + } + } } wxSize wxButton::DoGetBestSize() const