+ else
+ {
+ int max = 0;
+ for (int i = 0; i < n; i++)
+ {
+ GdkFont *font = m_widget->style->font;
+ int len = 27+gdk_string_measure( font, choices[i] );
+ if (len > max) max = len;
+ }
+
+ GSList *radio_button_group = (GSList *) NULL;
+ for (int i = 0; i < n; i++)
+ {
+ if (i) radio_button_group = gtk_radio_button_group( GTK_RADIO_BUTTON(m_radio) );
+
+ m_radio = GTK_RADIO_BUTTON( gtk_radio_button_new_with_label( radio_button_group, choices[i] ) );
+
+ m_boxes.Append( (wxObject*) m_radio );
+
+ ConnectWidget( GTK_WIDGET(m_radio) );
+
+ if (!i) gtk_toggle_button_set_state( GTK_TOGGLE_BUTTON(m_radio), TRUE );
+
+ gtk_signal_connect( GTK_OBJECT(m_radio), "clicked",
+ GTK_SIGNAL_FUNC(gtk_radiobutton_clicked_callback), (gpointer*)this );
+
+ gtk_myfixed_put( GTK_MYFIXED(m_parent->m_wxwindow), GTK_WIDGET(m_radio), x, y );
+
+ gtk_widget_set_usize( GTK_WIDGET(m_radio), max, 20 );
+
+ x += max;
+ }
+
+ width = max*n + 10;
+ height = 40;
+ }
+