X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/6de97a3b945c99fb942209df48be26f43c1b436d..fd2daa68f4e2d0f66f466be4dcee7bad9ed4be1a:/src/gtk/checkbox.cpp diff --git a/src/gtk/checkbox.cpp b/src/gtk/checkbox.cpp index f42ef1867d..d710aa4fcf 100644 --- a/src/gtk/checkbox.cpp +++ b/src/gtk/checkbox.cpp @@ -22,7 +22,7 @@ extern bool g_blockEventsOnDrag; //----------------------------------------------------------------------------- -// wxCheckBox +// "clicked" //----------------------------------------------------------------------------- static void gtk_checkbox_clicked_callback( GtkWidget *WXUNUSED(widget), wxCheckBox *cb ) @@ -36,6 +36,8 @@ static void gtk_checkbox_clicked_callback( GtkWidget *WXUNUSED(widget), wxCheckB cb->GetEventHandler()->ProcessEvent(event); } +//----------------------------------------------------------------------------- +// wxCheckBox //----------------------------------------------------------------------------- IMPLEMENT_DYNAMIC_CLASS(wxCheckBox,wxControl) @@ -56,7 +58,7 @@ bool wxCheckBox::Create( wxWindow *parent, wxWindowID id, const wxString &label SetLabel( label ); - m_widget = gtk_check_button_new_with_label( label ); + m_widget = gtk_check_button_new_with_label( m_label ); wxSize newSize = size; if (newSize.x == -1) newSize.x = 25+gdk_string_measure( m_widget->style->font, label ); @@ -87,3 +89,37 @@ bool wxCheckBox::GetValue(void) const return tb->active; } +void wxCheckBox::Enable( bool enable ) +{ + wxControl::Enable( enable ); + GtkButton *bin = GTK_BUTTON( m_widget ); + GtkWidget *label = bin->child; + gtk_widget_set_sensitive( label, enable ); +} + +void wxCheckBox::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 ); +}