- 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] ) );
-
- 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 );
-
- int tmp = 22+gdk_string_measure( GTK_WIDGET(m_radio)->style->font, choices[i] );
- if (tmp > maxLen) maxLen = tmp;
-
- int width = m_width-10;
- if (size.x == -1) width = tmp;
- gtk_widget_set_usize( GTK_WIDGET(m_radio), width, 20 );
-
- y += 20;
- height += 20;
-
- };
- };
-
- wxSize newSize = size;
- if (newSize.x == -1) newSize.x = maxLen+10;
- if (newSize.y == -1) newSize.y = height;
- SetSize( newSize.x, newSize.y );
-
- PostCreation();
-
- Show( TRUE );
-
- return TRUE;
-};
-
-bool wxRadioBox::Show( const bool show )
-{
- wxWindow::Show( show );
-
- GSList *item = gtk_radio_button_group( m_radio );
- while (item)
- {
- GtkWidget *w = GTK_WIDGET( item->data );
- if (show) gtk_widget_show( w ); else gtk_widget_hide( w );
- item = item->next;
- };
-
- return TRUE;
-};
-
-int wxRadioBox::FindString( const wxString& WXUNUSED(s) ) const
-{
- return 0;
-};
-
-void wxRadioBox::SetSelection( const int WXUNUSED(n) )
-{
-};
+ if ( i != 0 )
+ radio_button_group = gtk_radio_button_group( GTK_RADIO_BUTTON(m_radio) );
+
+ label.Empty();
+ for ( const wxChar *pc = choices[i]; *pc; pc++ )
+ {
+ if ( *pc != wxT('&') )
+ label += *pc;
+ }
+
+ m_radio = GTK_RADIO_BUTTON( gtk_radio_button_new_with_label( radio_button_group, wxGTK_CONV( label ) ) );
+ gtk_widget_show( GTK_WIDGET(m_radio) );
+
+ gtk_signal_connect( GTK_OBJECT(m_radio), "key_press_event",
+ GTK_SIGNAL_FUNC(gtk_radiobox_keypress_callback), (gpointer)this );
+
+ m_boxes.Append( (wxObject*) m_radio );
+
+ if (HasFlag(wxRA_SPECIFY_COLS))
+ {
+ int left = i%num_of_cols;
+ int right = (i%num_of_cols) + 1;
+ int top = i/num_of_cols;
+ int bottom = (i/num_of_cols)+1;
+ gtk_table_attach( GTK_TABLE(table), GTK_WIDGET(m_radio), left, right, top, bottom,
+ GTK_FILL, GTK_FILL, 1, 1 );
+ }
+ else
+ {
+ int left = i/num_of_rows;
+ int right = (i/num_of_rows) + 1;
+ int top = i%num_of_rows;
+ int bottom = (i%num_of_rows)+1;
+ gtk_table_attach( GTK_TABLE(table), GTK_WIDGET(m_radio), left, right, top, bottom,
+ GTK_FILL, GTK_FILL, 1, 1 );
+ }
+
+ 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_signal_connect( GTK_OBJECT(m_radio), "focus_in_event",
+ GTK_SIGNAL_FUNC(gtk_radiobutton_focus_in), (gpointer)this );
+
+ gtk_signal_connect( GTK_OBJECT(m_radio), "focus_out_event",
+ GTK_SIGNAL_FUNC(gtk_radiobutton_focus_out), (gpointer)this );
+ }
+
+ m_parent->DoAddChild( this );
+
+ PostCreation(size);
+
+ return true;
+}
+
+wxRadioBox::~wxRadioBox()
+{
+ wxList::compatibility_iterator node = m_boxes.GetFirst();
+ while (node)
+ {
+ GtkWidget *button = GTK_WIDGET( node->GetData() );
+ gtk_widget_destroy( button );
+ node = node->GetNext();
+ }
+}
+
+bool wxRadioBox::Show(bool show)
+{
+ wxCHECK_MSG( m_widget != NULL, false, wxT("invalid radiobox") );
+
+ if (!wxControl::Show(show))
+ {
+ // nothing to do
+ return false;
+ }
+
+ if ( HasFlag(wxNO_BORDER) )
+ gtk_widget_hide( m_widget );
+
+ wxList::compatibility_iterator node = m_boxes.GetFirst();
+ while (node)
+ {
+ GtkWidget *button = GTK_WIDGET( node->GetData() );
+
+ if (show)
+ gtk_widget_show( button );
+ else
+ gtk_widget_hide( button );
+
+ node = node->GetNext();
+ }
+
+ return true;
+}
+
+void wxRadioBox::SetFocus()
+{
+ wxCHECK_RET( m_widget != NULL, wxT("invalid radiobox") );
+
+ if (m_boxes.GetCount() == 0) return;
+
+ wxList::compatibility_iterator node = m_boxes.GetFirst();
+ while (node)
+ {
+ GtkToggleButton *button = GTK_TOGGLE_BUTTON( node->GetData() );
+ if (button->active)
+ {
+ gtk_widget_grab_focus( GTK_WIDGET(button) );
+ return;
+ }
+ node = node->GetNext();
+ }
+}
+
+void wxRadioBox::SetSelection( int n )
+{
+ wxCHECK_RET( m_widget != NULL, wxT("invalid radiobox") );
+
+ wxList::compatibility_iterator node = m_boxes.Item( n );
+
+ wxCHECK_RET( node, wxT("radiobox wrong index") );
+
+ GtkToggleButton *button = GTK_TOGGLE_BUTTON( node->GetData() );
+
+ GtkDisableEvents();
+
+ gtk_toggle_button_set_active( button, 1 );
+
+ GtkEnableEvents();
+}