+ GtkWidget* child = gtk_bin_get_child(GTK_BIN(m_widget));
+ 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_get_child(GTK_BIN(child));
+ if ( GTK_IS_BOX(box) )
+ {
+ GList* list = gtk_container_get_children(GTK_CONTAINER(box));
+ for (GList* item = list; item; item = item->next)
+ {
+ gtk_widget_modify_style(GTK_WIDGET(item->data), style);
+ }
+ g_list_free(list);
+ }
+ }