-bool wxRadioBox::Create( wxWindow *parent, wxWindowID id, const wxString& title,
- const wxPoint &pos, const wxSize &size,
- int n, const wxString choices[], int majorDim,
- long style, const wxValidator& validator,
- const wxString &name )
-{
- m_alreadySent = FALSE;
- m_needParent = TRUE;
- m_acceptsFocus = TRUE;
-
- PreCreation( parent, id, pos, size, style, name );
-
- SetValidator( validator );
-
- m_widget = gtk_frame_new( title );
-
- m_majorDim = majorDim;
-
- GtkRadioButton *m_radio = (GtkRadioButton*) NULL;
-
- GSList *radio_button_group = (GSList *) NULL;
- for (int i = 0; i < n; i++)
+ if ( ((gdk_event->keyval == GDK_Tab) ||
+ (gdk_event->keyval == GDK_ISO_Left_Tab)) &&
+ rb->GetParent() && (rb->GetParent()->HasFlag( wxTAB_TRAVERSAL)) )