- m_widget = gtk_check_button_new_with_label( m_label );
-
- m_blockFirstEvent = FALSE;
-
- wxSize newSize = size;
- if (newSize.x == -1) newSize.x = 25+gdk_string_measure( m_widget->style->font, label );
- if (newSize.y == -1) newSize.y = 26;
- SetSize( newSize.x, newSize.y );
-
- gtk_signal_connect( GTK_OBJECT(m_widget), "clicked",
- GTK_SIGNAL_FUNC(gtk_checkbox_clicked_callback), (gpointer*)this );
-
- m_parent->AddChild( this );
-
- (m_parent->m_insertCallback)( m_parent, this );
-
- PostCreation();
-
- gtk_widget_realize( GTK_BUTTON( m_widget )->child );
-
- SetLabel( label );
-
- SetBackgroundColour( parent->GetBackgroundColour() );
- SetForegroundColour( parent->GetForegroundColour() );
-
- Show( TRUE );
-
- return TRUE;
+ if ( style & wxALIGN_RIGHT )
+ {
+ // VZ: as I don't know a way to create a right aligned checkbox with
+ // GTK we will create a checkbox without label and a label at the
+ // left of it
+ m_widgetCheckbox = gtk_check_button_new();
+
+ m_widgetLabel = gtk_label_new("");
+ gtk_misc_set_alignment(GTK_MISC(m_widgetLabel), 0.0, 0.5);
+
+ m_widget = gtk_hbox_new(FALSE, 0);
+ gtk_box_pack_start(GTK_BOX(m_widget), m_widgetLabel, FALSE, FALSE, 3);
+ gtk_box_pack_start(GTK_BOX(m_widget), m_widgetCheckbox, FALSE, FALSE, 3);
+
+ gtk_widget_show( m_widgetLabel );
+ gtk_widget_show( m_widgetCheckbox );
+ }
+ else
+ {
+ m_widgetCheckbox = gtk_check_button_new_with_label("");
+ m_widgetLabel = GTK_BIN(m_widgetCheckbox)->child;
+ m_widget = m_widgetCheckbox;
+ }
+ g_object_ref(m_widget);
+ SetLabel( label );
+
+ g_signal_connect (m_widgetCheckbox, "toggled",
+ G_CALLBACK (gtk_checkbox_toggled_callback), this);
+
+ m_parent->DoAddChild( this );
+
+ PostCreation(size);
+
+ return true;
+}
+
+void wxCheckBox::GTKDisableEvents()
+{
+ g_signal_handlers_block_by_func(m_widgetCheckbox,
+ (gpointer) gtk_checkbox_toggled_callback, this);
+}
+
+void wxCheckBox::GTKEnableEvents()
+{
+ g_signal_handlers_unblock_by_func(m_widgetCheckbox,
+ (gpointer) gtk_checkbox_toggled_callback, this);