1 /////////////////////////////////////////////////////////////////////////////
4 // Author: Robert Roebling
6 // Copyright: (c) 1998 Robert Roebling
7 // Licence: wxWindows licence
8 /////////////////////////////////////////////////////////////////////////////
10 #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
11 #pragma implementation "radiobox.h"
14 // For compilers that support precompilation, includes "wx.h".
15 #include "wx/wxprec.h"
19 #include "wx/radiobox.h"
21 #include "wx/dialog.h"
25 #include "wx/gtk/private.h"
26 #include <gdk/gdkkeysyms.h>
28 #include "wx/gtk/win_gtk.h"
30 //-----------------------------------------------------------------------------
32 //-----------------------------------------------------------------------------
34 extern void wxapp_install_idle_handler();
37 //-----------------------------------------------------------------------------
39 //-----------------------------------------------------------------------------
41 extern bool g_blockEventsOnDrag
;
42 extern wxWindowGTK
*g_delayedFocus
;
44 //-----------------------------------------------------------------------------
46 //-----------------------------------------------------------------------------
48 static void gtk_radiobutton_clicked_callback( GtkToggleButton
*button
, wxRadioBox
*rb
)
50 if (g_isIdle
) wxapp_install_idle_handler();
52 if (!rb
->m_hasVMT
) return;
53 if (g_blockEventsOnDrag
) return;
55 if (!button
->active
) return;
57 wxCommandEvent
event( wxEVT_COMMAND_RADIOBOX_SELECTED
, rb
->GetId() );
58 event
.SetInt( rb
->GetSelection() );
59 event
.SetString( rb
->GetStringSelection() );
60 event
.SetEventObject( rb
);
61 rb
->GetEventHandler()->ProcessEvent(event
);
64 //-----------------------------------------------------------------------------
66 //-----------------------------------------------------------------------------
68 static gint
gtk_radiobox_keypress_callback( GtkWidget
*widget
, GdkEventKey
*gdk_event
, wxRadioBox
*rb
)
71 wxapp_install_idle_handler();
73 if (!rb
->m_hasVMT
) return FALSE
;
74 if (g_blockEventsOnDrag
) return FALSE
;
76 if ((gdk_event
->keyval
!= GDK_Up
) &&
77 (gdk_event
->keyval
!= GDK_Down
) &&
78 (gdk_event
->keyval
!= GDK_Left
) &&
79 (gdk_event
->keyval
!= GDK_Right
))
84 wxList::compatibility_iterator node
= rb
->m_boxes
.Find( (wxObject
*) widget
);
90 gtk_signal_emit_stop_by_name( GTK_OBJECT(widget
), "key_press_event" );
92 if ((gdk_event
->keyval
== GDK_Up
) ||
93 (gdk_event
->keyval
== GDK_Left
))
95 if (node
== rb
->m_boxes
.GetFirst())
96 node
= rb
->m_boxes
.GetLast();
98 node
= node
->GetPrevious();
102 if (node
== rb
->m_boxes
.GetLast())
103 node
= rb
->m_boxes
.GetFirst();
105 node
= node
->GetNext();
108 GtkWidget
*button
= (GtkWidget
*) node
->GetData();
110 gtk_widget_grab_focus( button
);
115 static gint
gtk_radiobutton_focus_in( GtkWidget
*widget
,
116 GdkEvent
*WXUNUSED(event
),
119 if ( win
->m_lostFocus
)
121 // no, we didn't really lose it
122 win
->m_lostFocus
= FALSE
;
124 else if ( !win
->m_hasFocus
)
126 win
->m_hasFocus
= TRUE
;
128 wxFocusEvent
event( wxEVT_SET_FOCUS
, win
->GetId() );
129 event
.SetEventObject( win
);
131 // never stop the signal emission, it seems to break the kbd handling
132 // inside the radiobox
133 (void)win
->GetEventHandler()->ProcessEvent( event
);
139 static gint
gtk_radiobutton_focus_out( GtkWidget
*widget
,
140 GdkEvent
*WXUNUSED(event
),
143 // wxASSERT_MSG( win->m_hasFocus, _T("got focus out without any focus in?") );
144 // Replace with a warning, else we dump core a lot!
145 // if (!win->m_hasFocus)
146 // wxLogWarning(_T("Radiobox got focus out without any focus in.") );
148 // we might have lost the focus, but may be not - it may have just gone to
149 // another button in the same radiobox, so we'll check for it in the next
150 // idle iteration (leave m_hasFocus == TRUE for now)
151 win
->m_lostFocus
= TRUE
;
156 //-----------------------------------------------------------------------------
158 //-----------------------------------------------------------------------------
160 IMPLEMENT_DYNAMIC_CLASS(wxRadioBox
,wxControl
)
162 void wxRadioBox::Init()
165 m_acceptsFocus
= TRUE
;
171 bool wxRadioBox::Create( wxWindow
*parent
, wxWindowID id
, const wxString
& title
,
172 const wxPoint
&pos
, const wxSize
&size
,
173 int n
, const wxString choices
[], int majorDim
,
174 long style
, const wxValidator
& validator
,
175 const wxString
&name
)
177 if (!PreCreation( parent
, pos
, size
) ||
178 !CreateBase( parent
, id
, pos
, size
, style
, validator
, name
))
180 wxFAIL_MSG( wxT("wxRadioBox creation failed") );
184 m_widget
= gtk_frame_new( wxGTK_CONV( title
) );
186 // majorDim may be 0 if all trailing parameters were omitted, so don't
187 // assert here but just use the correct value for it
188 m_majorDim
= majorDim
== 0 ? n
: majorDim
;
190 GtkRadioButton
*m_radio
= (GtkRadioButton
*) NULL
;
193 GSList
*radio_button_group
= (GSList
*) NULL
;
194 for (int i
= 0; i
< n
; i
++)
197 radio_button_group
= gtk_radio_button_group( GTK_RADIO_BUTTON(m_radio
) );
200 for ( const wxChar
*pc
= choices
[i
]; *pc
; pc
++ )
202 if ( *pc
!= wxT('&') )
206 m_radio
= GTK_RADIO_BUTTON( gtk_radio_button_new_with_label( radio_button_group
, wxGTK_CONV( label
) ) );
208 gtk_signal_connect( GTK_OBJECT(m_radio
), "key_press_event",
209 GTK_SIGNAL_FUNC(gtk_radiobox_keypress_callback
), (gpointer
)this );
211 m_boxes
.Append( (wxObject
*) m_radio
);
213 ConnectWidget( GTK_WIDGET(m_radio
) );
215 if (!i
) gtk_toggle_button_set_state( GTK_TOGGLE_BUTTON(m_radio
), TRUE
);
217 gtk_signal_connect( GTK_OBJECT(m_radio
), "clicked",
218 GTK_SIGNAL_FUNC(gtk_radiobutton_clicked_callback
), (gpointer
*)this );
220 gtk_signal_connect( GTK_OBJECT(m_radio
), "focus_in_event",
221 GTK_SIGNAL_FUNC(gtk_radiobutton_focus_in
), (gpointer
)this );
223 gtk_signal_connect( GTK_OBJECT(m_radio
), "focus_out_event",
224 GTK_SIGNAL_FUNC(gtk_radiobutton_focus_out
), (gpointer
)this );
226 gtk_pizza_put( GTK_PIZZA(m_parent
->m_wxwindow
),
228 m_x
+10, m_y
+10+(i
*24), 10, 10 );
231 m_parent
->DoAddChild( this );
239 SetFont( parent
->GetFont() );
241 wxSize ls
= LayoutItems();
246 (* GTK_WIDGET_CLASS( GTK_OBJECT_GET_CLASS(m_widget
) )->size_request
) (m_widget
, &req
);
247 if (req
.width
> ls
.x
) ls
.x
= req
.width
;
249 wxSize newSize
= size
;
250 if (newSize
.x
== -1) newSize
.x
= ls
.x
;
251 if (newSize
.y
== -1) newSize
.y
= ls
.y
;
252 SetSize( newSize
.x
, newSize
.y
);
254 SetBackgroundColour( parent
->GetBackgroundColour() );
255 SetForegroundColour( parent
->GetForegroundColour() );
262 wxRadioBox::~wxRadioBox()
264 wxList::compatibility_iterator node
= m_boxes
.GetFirst();
267 GtkWidget
*button
= GTK_WIDGET( node
->GetData() );
268 gtk_widget_destroy( button
);
269 node
= node
->GetNext();
273 void wxRadioBox::DoSetSize( int x
, int y
, int width
, int height
, int sizeFlags
)
275 wxWindow::DoSetSize( x
, y
, width
, height
, sizeFlags
);
280 wxSize
wxRadioBox::LayoutItems()
285 if ( m_majorDim
== 0 )
287 // avoid dividing by 0 below
288 wxFAIL_MSG( wxT("dimension of radiobox should not be 0!") );
293 int num_per_major
= (m_boxes
.GetCount() - 1) / m_majorDim
+1;
299 if (HasFlag(wxRA_SPECIFY_COLS
))
301 num_of_cols
= m_majorDim
;
302 num_of_rows
= num_per_major
;
306 num_of_cols
= num_per_major
;
307 num_of_rows
= m_majorDim
;
310 if ( HasFlag(wxRA_SPECIFY_COLS
) ||
311 (HasFlag(wxRA_SPECIFY_ROWS
) && (num_of_cols
> 1)) )
313 for (int j
= 0; j
< num_of_cols
; j
++)
318 wxList::compatibility_iterator node
= m_boxes
.Item( j
*num_of_rows
);
319 for (int i1
= 0; i1
< num_of_rows
; i1
++)
321 GtkWidget
*button
= GTK_WIDGET( node
->GetData() );
326 (* GTK_WIDGET_CLASS( GTK_OBJECT_GET_CLASS(button
) )->size_request
)
329 if (req
.width
> max_len
) max_len
= req
.width
;
331 gtk_pizza_move( GTK_PIZZA(m_parent
->m_wxwindow
), button
, m_x
+x
, m_y
+y
);
334 node
= node
->GetNext();
338 // we don't know the max_len before
340 node
= m_boxes
.Item( j
*num_of_rows
);
341 for (int i2
= 0; i2
< num_of_rows
; i2
++)
343 GtkWidget
*button
= GTK_WIDGET( node
->GetData() );
345 gtk_pizza_resize( GTK_PIZZA(m_parent
->m_wxwindow
), button
, max_len
, 20 );
347 node
= node
->GetNext();
351 if (y
> res
.y
) res
.y
= y
;
363 wxList::compatibility_iterator node
= m_boxes
.GetFirst();
366 GtkWidget
*button
= GTK_WIDGET( node
->GetData() );
371 (* GTK_WIDGET_CLASS( GTK_OBJECT_GET_CLASS(button
) )->size_request
)
374 if (req
.width
> max
) max
= req
.width
;
376 node
= node
->GetNext();
379 node
= m_boxes
.GetFirst();
382 GtkWidget
*button
= GTK_WIDGET( node
->GetData() );
384 gtk_pizza_set_size( GTK_PIZZA(m_parent
->m_wxwindow
), button
, m_x
+x
, m_y
+y
, max
, 20 );
387 node
= node
->GetNext();
396 bool wxRadioBox::Show( bool show
)
398 wxCHECK_MSG( m_widget
!= NULL
, FALSE
, wxT("invalid radiobox") );
400 if (!wxControl::Show(show
))
406 if ((m_windowStyle
& wxNO_BORDER
) != 0)
407 gtk_widget_hide( m_widget
);
409 wxList::compatibility_iterator node
= m_boxes
.GetFirst();
412 GtkWidget
*button
= GTK_WIDGET( node
->GetData() );
414 if (show
) gtk_widget_show( button
); else gtk_widget_hide( button
);
416 node
= node
->GetNext();
422 int wxRadioBox::FindString( const wxString
&find
) const
424 wxCHECK_MSG( m_widget
!= NULL
, -1, wxT("invalid radiobox") );
428 wxList::compatibility_iterator node
= m_boxes
.GetFirst();
431 GtkLabel
*label
= GTK_LABEL( BUTTON_CHILD(node
->GetData()) );
433 wxString
str( wxGTK_CONV_BACK( gtk_label_get_text(label
) ) );
435 wxString
str( label
->label
);
442 node
= node
->GetNext();
448 void wxRadioBox::SetFocus()
450 wxCHECK_RET( m_widget
!= NULL
, wxT("invalid radiobox") );
452 if (m_boxes
.GetCount() == 0) return;
454 wxList::compatibility_iterator node
= m_boxes
.GetFirst();
457 GtkToggleButton
*button
= GTK_TOGGLE_BUTTON( node
->GetData() );
460 gtk_widget_grab_focus( GTK_WIDGET(button
) );
463 node
= node
->GetNext();
467 void wxRadioBox::SetSelection( int n
)
469 wxCHECK_RET( m_widget
!= NULL
, wxT("invalid radiobox") );
471 wxList::compatibility_iterator node
= m_boxes
.Item( n
);
473 wxCHECK_RET( node
, wxT("radiobox wrong index") );
475 GtkToggleButton
*button
= GTK_TOGGLE_BUTTON( node
->GetData() );
479 gtk_toggle_button_set_active( button
, 1 );
484 int wxRadioBox::GetSelection(void) const
486 wxCHECK_MSG( m_widget
!= NULL
, -1, wxT("invalid radiobox") );
490 wxList::compatibility_iterator node
= m_boxes
.GetFirst();
493 GtkToggleButton
*button
= GTK_TOGGLE_BUTTON( node
->GetData() );
494 if (button
->active
) return count
;
496 node
= node
->GetNext();
499 wxFAIL_MSG( wxT("wxRadioBox none selected") );
504 wxString
wxRadioBox::GetString( int n
) const
506 wxCHECK_MSG( m_widget
!= NULL
, wxT(""), wxT("invalid radiobox") );
508 wxList::compatibility_iterator node
= m_boxes
.Item( n
);
510 wxCHECK_MSG( node
, wxT(""), wxT("radiobox wrong index") );
512 GtkLabel
*label
= GTK_LABEL( BUTTON_CHILD(node
->GetData()) );
515 wxString
str( wxGTK_CONV_BACK( gtk_label_get_text(label
) ) );
517 wxString
str( label
->label
);
523 void wxRadioBox::SetLabel( const wxString
& label
)
525 wxCHECK_RET( m_widget
!= NULL
, wxT("invalid radiobox") );
527 wxControl::SetLabel( label
);
529 gtk_frame_set_label( GTK_FRAME(m_widget
), wxGTK_CONV( wxControl::GetLabel() ) );
532 void wxRadioBox::SetString( int item
, const wxString
& label
)
534 wxCHECK_RET( m_widget
!= NULL
, wxT("invalid radiobox") );
536 wxList::compatibility_iterator node
= m_boxes
.Item( item
);
538 wxCHECK_RET( node
, wxT("radiobox wrong index") );
540 GtkLabel
*g_label
= GTK_LABEL( BUTTON_CHILD(node
->GetData()) );
542 gtk_label_set( g_label
, wxGTK_CONV( label
) );
545 bool wxRadioBox::Enable( bool enable
)
547 if ( !wxControl::Enable( enable
) )
550 wxList::compatibility_iterator node
= m_boxes
.GetFirst();
553 GtkButton
*button
= GTK_BUTTON( node
->GetData() );
554 GtkLabel
*label
= GTK_LABEL( BUTTON_CHILD(button
) );
556 gtk_widget_set_sensitive( GTK_WIDGET(button
), enable
);
557 gtk_widget_set_sensitive( GTK_WIDGET(label
), enable
);
558 node
= node
->GetNext();
564 void wxRadioBox::Enable( int item
, bool enable
)
566 wxCHECK_RET( m_widget
!= NULL
, wxT("invalid radiobox") );
568 wxList::compatibility_iterator node
= m_boxes
.Item( item
);
570 wxCHECK_RET( node
, wxT("radiobox wrong index") );
572 GtkButton
*button
= GTK_BUTTON( node
->GetData() );
573 GtkLabel
*label
= GTK_LABEL( BUTTON_CHILD(button
) );
575 gtk_widget_set_sensitive( GTK_WIDGET(button
), enable
);
576 gtk_widget_set_sensitive( GTK_WIDGET(label
), enable
);
579 void wxRadioBox::Show( int item
, bool show
)
581 wxCHECK_RET( m_widget
!= NULL
, wxT("invalid radiobox") );
583 wxList::compatibility_iterator node
= m_boxes
.Item( item
);
585 wxCHECK_RET( node
, wxT("radiobox wrong index") );
587 GtkWidget
*button
= GTK_WIDGET( node
->GetData() );
590 gtk_widget_show( button
);
592 gtk_widget_hide( button
);
595 wxString
wxRadioBox::GetStringSelection() const
597 wxCHECK_MSG( m_widget
!= NULL
, wxT(""), wxT("invalid radiobox") );
599 wxList::compatibility_iterator node
= m_boxes
.GetFirst();
602 GtkToggleButton
*button
= GTK_TOGGLE_BUTTON( node
->GetData() );
605 GtkLabel
*label
= GTK_LABEL( BUTTON_CHILD(node
->GetData()) );
608 wxString
str( wxGTK_CONV_BACK( gtk_label_get_text(label
) ) );
610 wxString
str( label
->label
);
614 node
= node
->GetNext();
617 wxFAIL_MSG( wxT("wxRadioBox none selected") );
621 bool wxRadioBox::SetStringSelection( const wxString
&s
)
623 wxCHECK_MSG( m_widget
!= NULL
, FALSE
, wxT("invalid radiobox") );
625 int res
= FindString( s
);
626 if (res
== -1) return FALSE
;
632 int wxRadioBox::GetCount() const
634 return m_boxes
.GetCount();
637 int wxRadioBox::GetNumberOfRowsOrCols() const
642 void wxRadioBox::SetNumberOfRowsOrCols( int WXUNUSED(n
) )
644 wxFAIL_MSG(wxT("wxRadioBox::SetNumberOfRowsOrCols not implemented."));
647 void wxRadioBox::GtkDisableEvents()
649 wxList::compatibility_iterator node
= m_boxes
.GetFirst();
652 gtk_signal_disconnect_by_func( GTK_OBJECT(node
->GetData()),
653 GTK_SIGNAL_FUNC(gtk_radiobutton_clicked_callback
), (gpointer
*)this );
655 node
= node
->GetNext();
659 void wxRadioBox::GtkEnableEvents()
661 wxList::compatibility_iterator node
= m_boxes
.GetFirst();
664 gtk_signal_connect( GTK_OBJECT(node
->GetData()), "clicked",
665 GTK_SIGNAL_FUNC(gtk_radiobutton_clicked_callback
), (gpointer
*)this );
667 node
= node
->GetNext();
671 void wxRadioBox::ApplyWidgetStyle()
675 gtk_widget_set_style( m_widget
, m_widgetStyle
);
677 wxList::compatibility_iterator node
= m_boxes
.GetFirst();
680 GtkWidget
*widget
= GTK_WIDGET( node
->GetData() );
681 gtk_widget_set_style( widget
, m_widgetStyle
);
683 gtk_widget_set_style( BUTTON_CHILD(node
->GetData()), m_widgetStyle
);
685 node
= node
->GetNext();
690 void wxRadioBox::ApplyToolTip( GtkTooltips
*tips
, const wxChar
*tip
)
692 wxList::compatibility_iterator node
= m_boxes
.GetFirst();
695 GtkWidget
*widget
= GTK_WIDGET( node
->GetData() );
696 gtk_tooltips_set_tip( tips
, widget
, wxConvCurrent
->cWX2MB(tip
), (gchar
*) NULL
);
697 node
= node
->GetNext();
700 #endif // wxUSE_TOOLTIPS
702 bool wxRadioBox::IsOwnGtkWindow( GdkWindow
*window
)
704 if (window
== m_widget
->window
) return TRUE
;
706 wxList::compatibility_iterator node
= m_boxes
.GetFirst();
709 GtkWidget
*button
= GTK_WIDGET( node
->GetData() );
711 if (window
== button
->window
) return TRUE
;
713 node
= node
->GetNext();
719 void wxRadioBox::OnInternalIdle()
726 wxFocusEvent
event( wxEVT_KILL_FOCUS
, GetId() );
727 event
.SetEventObject( this );
729 (void)GetEventHandler()->ProcessEvent( event
);
732 if (g_delayedFocus
== this)
734 if (GTK_WIDGET_REALIZED(m_widget
))
736 g_delayedFocus
= NULL
;
742 #endif // wxUSE_RADIOBOX