]> git.saurik.com Git - wxWidgets.git/blobdiff - src/gtk1/button.cpp
no message
[wxWidgets.git] / src / gtk1 / button.cpp
index 1bd096b08452609382bc97edca8b18e5d93847d1..034e229f1843b48a0f1902dab60c02806eb628b1 100644 (file)
@@ -103,3 +103,29 @@ void wxButton::Enable( bool enable )
   gtk_widget_set_sensitive( label, enable );
 }
 
+void wxButton::SetFont( const wxFont &font )
+{
+  if (((wxFont*)&font)->Ok())
+    m_font = font;
+  else
+    m_font = *wxSWISS_FONT;
+
+  GtkButton *bin = GTK_BUTTON( m_widget );
+  GtkWidget *label = bin->child;
+  
+  GtkStyle *style = (GtkStyle*) NULL;
+  if (!m_hasOwnStyle)
+  {
+    m_hasOwnStyle = TRUE;
+    style = gtk_style_copy( gtk_widget_get_style( label ) );
+  }
+  else
+  {
+    style = gtk_widget_get_style( label );
+  }
+  
+  gdk_font_unref( style->font );
+  style->font = gdk_font_ref( m_font.GetInternalFont( 1.0 ) );
+  
+  gtk_widget_set_style( label, style );
+}