]> git.saurik.com Git - wxWidgets.git/commitdiff
propagate style changes correctly to buttons with images (#3939)
authorVadim Zeitlin <vadim@wxwidgets.org>
Thu, 12 Jun 2008 00:50:07 +0000 (00:50 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Thu, 12 Jun 2008 00:50:07 +0000 (00:50 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@54138 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

docs/changes.txt
src/gtk/button.cpp

index dd87546c1cdd3e6086f69062424ac72a2a9eb39d..672870f8872f7d49ea024ccf0e82792dba6dc9a6 100644 (file)
@@ -381,6 +381,7 @@ wxGTK:
 - Pass current control text to EVT_TEXT handler for wxSpinCtrl (John Ratliff).
 - Added gtk.tlw.can-set-transparency system option.
 - Added support for GTK+ print backend
+- Fix changing font/colour of label in buttons with images (Marcin Wojdyr).
 
 wxMac:
 
index cfa49892f79a8f5a4ae4693ce8ab688f84742e96..d1876481e8e31e30e7a8aca9814603682127c809 100644 (file)
@@ -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