X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/e55ad60e195f1007db921b2a73a3cac98ed9df65..e4d068605f4ed99a848e9b240ee2b837a5f778ab:/src/gtk1/radiobox.cpp diff --git a/src/gtk1/radiobox.cpp b/src/gtk1/radiobox.cpp index 66a3e6f593..c9e905199e 100644 --- a/src/gtk1/radiobox.cpp +++ b/src/gtk1/radiobox.cpp @@ -2,9 +2,8 @@ // Name: radiobox.cpp // Purpose: // Author: Robert Roebling -// Created: 01/02/97 -// Id: -// Copyright: (c) 1998 Robert Roebling, Julian Smart and Markus Holzem +// Id: $Id$ +// Copyright: (c) 1998 Robert Roebling // Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// @@ -81,11 +80,11 @@ bool wxRadioBox::Create( wxWindow *parent, wxWindowID id, const wxString& title, int y = m_y+15; int maxLen = 0; int height = 20; + int width = 0; GtkRadioButton *m_radio = (GtkRadioButton*) NULL; -// if (((m_style & wxRA_VERTICAL) == wxRA_VERTICAL) && (n > 0)) - if (n > 0) + if (m_windowStyle & wxRA_VERTICAL) { GSList *radio_button_group = (GSList *) NULL; for (int i = 0; i < n; i++) @@ -105,10 +104,10 @@ bool wxRadioBox::Create( wxWindow *parent, wxWindowID id, const wxString& title, 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] ); + int tmp = 25+gdk_string_measure( GTK_WIDGET(m_radio)->style->font, choices[i] ); if (tmp > maxLen) maxLen = tmp; - int width = m_width-10; + width = m_width-10; if (size.x == -1) width = tmp; gtk_widget_set_usize( GTK_WIDGET(m_radio), width, 20 ); @@ -116,10 +115,47 @@ bool wxRadioBox::Create( wxWindow *parent, wxWindowID id, const wxString& title, height += 20; } + width = maxLen + 10; + } + 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; } wxSize newSize = size; - if (newSize.x == -1) newSize.x = maxLen+10; + if (newSize.x == -1) newSize.x = width; if (newSize.y == -1) newSize.y = height; SetSize( newSize.x, newSize.y ); @@ -127,6 +163,9 @@ bool wxRadioBox::Create( wxWindow *parent, wxWindowID id, const wxString& title, SetLabel( title ); + SetBackgroundColour( parent->GetBackgroundColour() ); + SetForegroundColour( parent->GetForegroundColour() ); + Show( TRUE ); return TRUE; @@ -150,24 +189,58 @@ void wxRadioBox::OnSize( wxSizeEvent &event ) int x = m_x+5; int y = m_y+15; - wxNode *node = m_boxes.First(); - while (node) + if (m_windowStyle & wxRA_VERTICAL) { - GtkWidget *button = GTK_WIDGET( node->Data() ); + wxNode *node = m_boxes.First(); + while (node) + { + GtkWidget *button = GTK_WIDGET( node->Data() ); - gtk_myfixed_move( GTK_MYFIXED(m_parent->m_wxwindow), button, x, y ); - y += 20; + gtk_myfixed_move( GTK_MYFIXED(m_parent->m_wxwindow), button, x, y ); + y += 20; - int w = m_width-10; - if (w < 15) w = 15; - gtk_widget_set_usize( button, w, 20 ); + int w = m_width-10; + if (w < 15) w = 15; + gtk_widget_set_usize( button, w, 20 ); - node = node->Next(); + node = node->Next(); + } + } + else + { + int max = 0; + + wxNode *node = m_boxes.First(); + while (node) + { + GtkButton *button = GTK_BUTTON( node->Data() ); + GtkLabel *label = GTK_LABEL( button->child ); + + GdkFont *font = m_widget->style->font; + int len = 27+gdk_string_measure( font, label->label ); + if (len > max) max = len; + + node = node->Next(); + } + + node = m_boxes.First(); + while (node) + { + GtkWidget *button = GTK_WIDGET( node->Data() ); + + gtk_myfixed_move( GTK_MYFIXED(m_parent->m_wxwindow), button, x, y ); + x += max; + gtk_widget_set_usize( button, max, 20 ); + + node = node->Next(); + } } } bool wxRadioBox::Show( bool show ) { + wxCHECK_MSG( m_widget != NULL, FALSE, "invalid radiobox" ); + wxWindow::Show( show ); wxNode *node = m_boxes.First(); @@ -185,6 +258,8 @@ bool wxRadioBox::Show( bool show ) int wxRadioBox::FindString( const wxString &s ) const { + wxCHECK_MSG( m_widget != NULL, -1, "invalid radiobox" ); + int count = 0; wxNode *node = m_boxes.First(); @@ -204,6 +279,8 @@ int wxRadioBox::FindString( const wxString &s ) const void wxRadioBox::SetSelection( int n ) { + wxCHECK_RET( m_widget != NULL, "invalid radiobox" ); + wxNode *node = m_boxes.Nth( n ); if (!node) @@ -219,6 +296,8 @@ void wxRadioBox::SetSelection( int n ) int wxRadioBox::GetSelection(void) const { + wxCHECK_MSG( m_widget != NULL, -1, "invalid radiobox" ); + int count = 0; wxNode *node = m_boxes.First(); @@ -237,6 +316,8 @@ int wxRadioBox::GetSelection(void) const wxString wxRadioBox::GetString( int n ) const { + wxCHECK_MSG( m_widget != NULL, "", "invalid radiobox" ); + wxNode *node = m_boxes.Nth( n ); if (!node) @@ -253,18 +334,24 @@ wxString wxRadioBox::GetString( int n ) const wxString wxRadioBox::GetLabel( int item ) const { + wxCHECK_MSG( m_widget != NULL, "", "invalid radiobox" ); + return GetString( item ); } void wxRadioBox::SetLabel( const wxString& label ) { + wxCHECK_RET( m_widget != NULL, "invalid radiobox" ); + wxControl::SetLabel( label ); - GtkFrame *frame = GTK_FRAME( m_widget ); - gtk_frame_set_label( frame, wxControl::GetLabel() ); + + gtk_frame_set_label( GTK_FRAME(m_widget), wxControl::GetLabel() ); } void wxRadioBox::SetLabel( int item, const wxString& label ) { + wxCHECK_RET( m_widget != NULL, "invalid radiobox" ); + wxNode *node = m_boxes.Nth( item ); if (!node) @@ -374,18 +461,20 @@ void wxRadioBox::SetNumberOfRowsOrCols( int WXUNUSED(n) ) wxFAIL_MSG("wxRadioBox::SetNumberOfRowsOrCols not implemented."); } -void wxRadioBox::SetFont( const wxFont &font ) +void wxRadioBox::ApplyWidgetStyle() { - wxWindow::SetFont( font ); - + SetWidgetStyle(); + + gtk_widget_set_style( m_widget, m_widgetStyle ); + wxNode *node = m_boxes.First(); while (node) { - GtkButton *button = GTK_BUTTON( node->Data() ); + GtkWidget *widget = GTK_WIDGET( node->Data() ); + gtk_widget_set_style( widget, m_widgetStyle ); - gtk_widget_set_style( button->child, - gtk_style_ref( - gtk_widget_get_style( m_widget ) ) ); + GtkButton *button = GTK_BUTTON( node->Data() ); + gtk_widget_set_style( button->child, m_widgetStyle ); node = node->Next(); }