X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/9fa72bd2a637cee761c56e2ce61cec3e43c62765..c56ae04274fda26269c6d06be34cf59a45eb70ce:/src/gtk/radiobox.cpp diff --git a/src/gtk/radiobox.cpp b/src/gtk/radiobox.cpp index 47f8c6cded..ae6caf1937 100644 --- a/src/gtk/radiobox.cpp +++ b/src/gtk/radiobox.cpp @@ -72,6 +72,20 @@ static gint gtk_radiobox_keypress_callback( GtkWidget *widget, GdkEventKey *gdk_ if (!rb->m_hasVMT) return FALSE; if (g_blockEventsOnDrag) return FALSE; + if ( ((gdk_event->keyval == GDK_Tab) || + (gdk_event->keyval == GDK_ISO_Left_Tab)) && + rb->GetParent() && (rb->GetParent()->HasFlag( wxTAB_TRAVERSAL)) ) + { + wxNavigationKeyEvent new_event; + new_event.SetEventObject( rb->GetParent() ); + // GDK reports GDK_ISO_Left_Tab for SHIFT-TAB + new_event.SetDirection( (gdk_event->keyval == GDK_Tab) ); + // CTRL-TAB changes the (parent) window, i.e. switch notebook page + new_event.SetWindowChange( (gdk_event->state & GDK_CONTROL_MASK) ); + new_event.SetCurrentFocus( rb ); + return rb->GetParent()->GetEventHandler()->ProcessEvent( new_event ); + } + if ((gdk_event->keyval != GDK_Up) && (gdk_event->keyval != GDK_Down) && (gdk_event->keyval != GDK_Left) && @@ -222,7 +236,7 @@ bool wxRadioBox::Create( wxWindow *parent, wxWindowID id, const wxString& title, for (int i = 0; i < n; i++) { if ( i != 0 ) - radio_button_group = gtk_radio_button_group( GTK_RADIO_BUTTON(m_radio) ); + radio_button_group = gtk_radio_button_get_group( GTK_RADIO_BUTTON(m_radio) ); label.Empty(); for ( const wxChar *pc = choices[i]; *pc; pc++ ) @@ -260,7 +274,8 @@ bool wxRadioBox::Create( wxWindow *parent, wxWindowID id, const wxString& title, ConnectWidget( GTK_WIDGET(m_radio) ); - if (!i) gtk_toggle_button_set_state( GTK_TOGGLE_BUTTON(m_radio), TRUE ); + if (!i) + gtk_toggle_button_set_active( GTK_TOGGLE_BUTTON(m_radio), TRUE ); g_signal_connect (m_radio, "clicked", G_CALLBACK (gtk_radiobutton_clicked_callback), this); @@ -381,7 +396,7 @@ wxString wxRadioBox::GetString( int n ) const wxCHECK_MSG( node, wxEmptyString, wxT("radiobox wrong index") ); - GtkLabel *label = GTK_LABEL( BUTTON_CHILD(node->GetData()) ); + GtkLabel *label = GTK_LABEL(GTK_BIN(node->GetData())->child); wxString str( wxGTK_CONV_BACK( gtk_label_get_text(label) ) ); @@ -403,9 +418,9 @@ void wxRadioBox::SetString( int item, const wxString& label ) wxCHECK_RET( node, wxT("radiobox wrong index") ); - GtkLabel *g_label = GTK_LABEL( BUTTON_CHILD(node->GetData()) ); + GtkLabel *g_label = GTK_LABEL(GTK_BIN(node->GetData())->child); - gtk_label_set( g_label, wxGTK_CONV( label ) ); + gtk_label_set_text( g_label, wxGTK_CONV( label ) ); } bool wxRadioBox::Enable( bool enable ) @@ -417,7 +432,7 @@ bool wxRadioBox::Enable( bool enable ) while (node) { GtkButton *button = GTK_BUTTON( node->GetData() ); - GtkLabel *label = GTK_LABEL( BUTTON_CHILD(button) ); + GtkLabel *label = GTK_LABEL(GTK_BIN(button)->child); gtk_widget_set_sensitive( GTK_WIDGET(button), enable ); gtk_widget_set_sensitive( GTK_WIDGET(label), enable ); @@ -436,7 +451,7 @@ bool wxRadioBox::Enable( int item, bool enable ) wxCHECK_MSG( node, false, wxT("radiobox wrong index") ); GtkButton *button = GTK_BUTTON( node->GetData() ); - GtkLabel *label = GTK_LABEL( BUTTON_CHILD(button) ); + GtkLabel *label = GTK_LABEL(GTK_BIN(button)->child); gtk_widget_set_sensitive( GTK_WIDGET(button), enable ); gtk_widget_set_sensitive( GTK_WIDGET(label), enable ); @@ -531,7 +546,7 @@ void wxRadioBox::DoApplyWidgetStyle(GtkRcStyle *style) GtkWidget *widget = GTK_WIDGET( node->GetData() ); gtk_widget_modify_style( widget, style ); - gtk_widget_modify_style( BUTTON_CHILD(node->GetData()), style ); + gtk_widget_modify_style(GTK_BIN(widget)->child, style); node = node->GetNext(); }