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
,
172 const wxString
& title
,
173 const wxPoint
&pos
, const wxSize
&size
,
174 const wxArrayString
& choices
, int majorDim
,
175 long style
, const wxValidator
& validator
,
176 const wxString
&name
)
178 wxCArrayString
chs(choices
);
180 return Create( parent
, id
, title
, pos
, size
, chs
.GetCount(),
181 chs
.GetStrings(), majorDim
, style
, validator
, name
);
184 bool wxRadioBox::Create( wxWindow
*parent
, wxWindowID id
, const wxString
& title
,
185 const wxPoint
&pos
, const wxSize
&size
,
186 int n
, const wxString choices
[], int majorDim
,
187 long style
, const wxValidator
& validator
,
188 const wxString
&name
)
190 if (!PreCreation( parent
, pos
, size
) ||
191 !CreateBase( parent
, id
, pos
, size
, style
, validator
, name
))
193 wxFAIL_MSG( wxT("wxRadioBox creation failed") );
197 m_widget
= gtk_frame_new( wxGTK_CONV( title
) );
199 // majorDim may be 0 if all trailing parameters were omitted, so don't
200 // assert here but just use the correct value for it
201 m_majorDim
= majorDim
== 0 ? n
: majorDim
;
203 GtkRadioButton
*m_radio
= (GtkRadioButton
*) NULL
;
206 GSList
*radio_button_group
= (GSList
*) NULL
;
207 for (int i
= 0; i
< n
; i
++)
210 radio_button_group
= gtk_radio_button_group( GTK_RADIO_BUTTON(m_radio
) );
213 for ( const wxChar
*pc
= choices
[i
]; *pc
; pc
++ )
215 if ( *pc
!= wxT('&') )
219 m_radio
= GTK_RADIO_BUTTON( gtk_radio_button_new_with_label( radio_button_group
, wxGTK_CONV( label
) ) );
221 gtk_signal_connect( GTK_OBJECT(m_radio
), "key_press_event",
222 GTK_SIGNAL_FUNC(gtk_radiobox_keypress_callback
), (gpointer
)this );
224 m_boxes
.Append( (wxObject
*) m_radio
);
226 ConnectWidget( GTK_WIDGET(m_radio
) );
228 if (!i
) gtk_toggle_button_set_state( GTK_TOGGLE_BUTTON(m_radio
), TRUE
);
230 gtk_signal_connect( GTK_OBJECT(m_radio
), "clicked",
231 GTK_SIGNAL_FUNC(gtk_radiobutton_clicked_callback
), (gpointer
*)this );
233 gtk_signal_connect( GTK_OBJECT(m_radio
), "focus_in_event",
234 GTK_SIGNAL_FUNC(gtk_radiobutton_focus_in
), (gpointer
)this );
236 gtk_signal_connect( GTK_OBJECT(m_radio
), "focus_out_event",
237 GTK_SIGNAL_FUNC(gtk_radiobutton_focus_out
), (gpointer
)this );
239 gtk_pizza_put( GTK_PIZZA(m_parent
->m_wxwindow
),
241 m_x
+10, m_y
+10+(i
*24), 10, 10 );
244 m_parent
->DoAddChild( this );
253 SetFont( parent
->GetFont() );
255 wxSize ls
= LayoutItems();
260 (* GTK_WIDGET_CLASS( GTK_OBJECT_GET_CLASS(m_widget
) )->size_request
) (m_widget
, &req
);
261 if (req
.width
> ls
.x
) ls
.x
= req
.width
;
263 wxSize newSize
= size
;
264 if (newSize
.x
== -1) newSize
.x
= ls
.x
;
265 if (newSize
.y
== -1) newSize
.y
= ls
.y
;
266 SetSize( newSize
.x
, newSize
.y
);
273 wxRadioBox::~wxRadioBox()
275 wxList::compatibility_iterator node
= m_boxes
.GetFirst();
278 GtkWidget
*button
= GTK_WIDGET( node
->GetData() );
279 gtk_widget_destroy( button
);
280 node
= node
->GetNext();
284 void wxRadioBox::DoSetSize( int x
, int y
, int width
, int height
, int sizeFlags
)
286 wxWindow::DoSetSize( x
, y
, width
, height
, sizeFlags
);
291 wxSize
wxRadioBox::LayoutItems()
296 if ( m_majorDim
== 0 )
298 // avoid dividing by 0 below
299 wxFAIL_MSG( wxT("dimension of radiobox should not be 0!") );
304 int num_per_major
= (m_boxes
.GetCount() - 1) / m_majorDim
+1;
310 if (HasFlag(wxRA_SPECIFY_COLS
))
312 num_of_cols
= m_majorDim
;
313 num_of_rows
= num_per_major
;
317 num_of_cols
= num_per_major
;
318 num_of_rows
= m_majorDim
;
321 if ( HasFlag(wxRA_SPECIFY_COLS
) ||
322 (HasFlag(wxRA_SPECIFY_ROWS
) && (num_of_cols
> 1)) )
324 for (int j
= 0; j
< num_of_cols
; j
++)
329 wxList::compatibility_iterator node
= m_boxes
.Item( j
*num_of_rows
);
330 for (int i1
= 0; i1
< num_of_rows
; i1
++)
332 GtkWidget
*button
= GTK_WIDGET( node
->GetData() );
337 (* GTK_WIDGET_CLASS( GTK_OBJECT_GET_CLASS(button
) )->size_request
)
340 if (req
.width
> max_len
) max_len
= req
.width
;
342 gtk_pizza_move( GTK_PIZZA(m_parent
->m_wxwindow
), button
, m_x
+x
, m_y
+y
);
345 node
= node
->GetNext();
349 // we don't know the max_len before
351 node
= m_boxes
.Item( j
*num_of_rows
);
352 for (int i2
= 0; i2
< num_of_rows
; i2
++)
354 GtkWidget
*button
= GTK_WIDGET( node
->GetData() );
356 gtk_pizza_resize( GTK_PIZZA(m_parent
->m_wxwindow
), button
, max_len
, 20 );
358 node
= node
->GetNext();
362 if (y
> res
.y
) res
.y
= y
;
374 wxList::compatibility_iterator node
= m_boxes
.GetFirst();
377 GtkWidget
*button
= GTK_WIDGET( node
->GetData() );
382 (* GTK_WIDGET_CLASS( GTK_OBJECT_GET_CLASS(button
) )->size_request
)
385 if (req
.width
> max
) max
= req
.width
;
387 node
= node
->GetNext();
390 node
= m_boxes
.GetFirst();
393 GtkWidget
*button
= GTK_WIDGET( node
->GetData() );
395 gtk_pizza_set_size( GTK_PIZZA(m_parent
->m_wxwindow
), button
, m_x
+x
, m_y
+y
, max
, 20 );
398 node
= node
->GetNext();
407 bool wxRadioBox::Show( bool show
)
409 wxCHECK_MSG( m_widget
!= NULL
, FALSE
, wxT("invalid radiobox") );
411 if (!wxControl::Show(show
))
417 if ((m_windowStyle
& wxNO_BORDER
) != 0)
418 gtk_widget_hide( m_widget
);
420 wxList::compatibility_iterator node
= m_boxes
.GetFirst();
423 GtkWidget
*button
= GTK_WIDGET( node
->GetData() );
425 if (show
) gtk_widget_show( button
); else gtk_widget_hide( button
);
427 node
= node
->GetNext();
433 int wxRadioBox::FindString( const wxString
&find
) const
435 wxCHECK_MSG( m_widget
!= NULL
, -1, wxT("invalid radiobox") );
439 wxList::compatibility_iterator node
= m_boxes
.GetFirst();
442 GtkLabel
*label
= GTK_LABEL( BUTTON_CHILD(node
->GetData()) );
444 wxString
str( wxGTK_CONV_BACK( gtk_label_get_text(label
) ) );
446 wxString
str( label
->label
);
453 node
= node
->GetNext();
459 void wxRadioBox::SetFocus()
461 wxCHECK_RET( m_widget
!= NULL
, wxT("invalid radiobox") );
463 if (m_boxes
.GetCount() == 0) return;
465 wxList::compatibility_iterator node
= m_boxes
.GetFirst();
468 GtkToggleButton
*button
= GTK_TOGGLE_BUTTON( node
->GetData() );
471 gtk_widget_grab_focus( GTK_WIDGET(button
) );
474 node
= node
->GetNext();
478 void wxRadioBox::SetSelection( int n
)
480 wxCHECK_RET( m_widget
!= NULL
, wxT("invalid radiobox") );
482 wxList::compatibility_iterator node
= m_boxes
.Item( n
);
484 wxCHECK_RET( node
, wxT("radiobox wrong index") );
486 GtkToggleButton
*button
= GTK_TOGGLE_BUTTON( node
->GetData() );
490 gtk_toggle_button_set_active( button
, 1 );
495 int wxRadioBox::GetSelection(void) const
497 wxCHECK_MSG( m_widget
!= NULL
, -1, wxT("invalid radiobox") );
501 wxList::compatibility_iterator node
= m_boxes
.GetFirst();
504 GtkToggleButton
*button
= GTK_TOGGLE_BUTTON( node
->GetData() );
505 if (button
->active
) return count
;
507 node
= node
->GetNext();
510 wxFAIL_MSG( wxT("wxRadioBox none selected") );
515 wxString
wxRadioBox::GetString( int n
) const
517 wxCHECK_MSG( m_widget
!= NULL
, wxT(""), wxT("invalid radiobox") );
519 wxList::compatibility_iterator node
= m_boxes
.Item( n
);
521 wxCHECK_MSG( node
, wxT(""), wxT("radiobox wrong index") );
523 GtkLabel
*label
= GTK_LABEL( BUTTON_CHILD(node
->GetData()) );
526 wxString
str( wxGTK_CONV_BACK( gtk_label_get_text(label
) ) );
528 wxString
str( label
->label
);
534 void wxRadioBox::SetLabel( const wxString
& label
)
536 wxCHECK_RET( m_widget
!= NULL
, wxT("invalid radiobox") );
538 wxControl::SetLabel( label
);
540 gtk_frame_set_label( GTK_FRAME(m_widget
), wxGTK_CONV( wxControl::GetLabel() ) );
543 void wxRadioBox::SetString( int item
, const wxString
& label
)
545 wxCHECK_RET( m_widget
!= NULL
, wxT("invalid radiobox") );
547 wxList::compatibility_iterator node
= m_boxes
.Item( item
);
549 wxCHECK_RET( node
, wxT("radiobox wrong index") );
551 GtkLabel
*g_label
= GTK_LABEL( BUTTON_CHILD(node
->GetData()) );
553 gtk_label_set( g_label
, wxGTK_CONV( label
) );
556 bool wxRadioBox::Enable( bool enable
)
558 if ( !wxControl::Enable( enable
) )
561 wxList::compatibility_iterator node
= m_boxes
.GetFirst();
564 GtkButton
*button
= GTK_BUTTON( node
->GetData() );
565 GtkLabel
*label
= GTK_LABEL( BUTTON_CHILD(button
) );
567 gtk_widget_set_sensitive( GTK_WIDGET(button
), enable
);
568 gtk_widget_set_sensitive( GTK_WIDGET(label
), enable
);
569 node
= node
->GetNext();
575 void wxRadioBox::Enable( int item
, bool enable
)
577 wxCHECK_RET( m_widget
!= NULL
, wxT("invalid radiobox") );
579 wxList::compatibility_iterator node
= m_boxes
.Item( item
);
581 wxCHECK_RET( node
, wxT("radiobox wrong index") );
583 GtkButton
*button
= GTK_BUTTON( node
->GetData() );
584 GtkLabel
*label
= GTK_LABEL( BUTTON_CHILD(button
) );
586 gtk_widget_set_sensitive( GTK_WIDGET(button
), enable
);
587 gtk_widget_set_sensitive( GTK_WIDGET(label
), enable
);
590 void wxRadioBox::Show( int item
, bool show
)
592 wxCHECK_RET( m_widget
!= NULL
, wxT("invalid radiobox") );
594 wxList::compatibility_iterator node
= m_boxes
.Item( item
);
596 wxCHECK_RET( node
, wxT("radiobox wrong index") );
598 GtkWidget
*button
= GTK_WIDGET( node
->GetData() );
601 gtk_widget_show( button
);
603 gtk_widget_hide( button
);
606 wxString
wxRadioBox::GetStringSelection() const
608 wxCHECK_MSG( m_widget
!= NULL
, wxT(""), wxT("invalid radiobox") );
610 wxList::compatibility_iterator node
= m_boxes
.GetFirst();
613 GtkToggleButton
*button
= GTK_TOGGLE_BUTTON( node
->GetData() );
616 GtkLabel
*label
= GTK_LABEL( BUTTON_CHILD(node
->GetData()) );
619 wxString
str( wxGTK_CONV_BACK( gtk_label_get_text(label
) ) );
621 wxString
str( label
->label
);
625 node
= node
->GetNext();
628 wxFAIL_MSG( wxT("wxRadioBox none selected") );
632 bool wxRadioBox::SetStringSelection( const wxString
&s
)
634 wxCHECK_MSG( m_widget
!= NULL
, FALSE
, wxT("invalid radiobox") );
636 int res
= FindString( s
);
637 if (res
== -1) return FALSE
;
643 int wxRadioBox::GetCount() const
645 return m_boxes
.GetCount();
648 int wxRadioBox::GetNumberOfRowsOrCols() const
653 void wxRadioBox::SetNumberOfRowsOrCols( int WXUNUSED(n
) )
655 wxFAIL_MSG(wxT("wxRadioBox::SetNumberOfRowsOrCols not implemented."));
658 void wxRadioBox::GtkDisableEvents()
660 wxList::compatibility_iterator node
= m_boxes
.GetFirst();
663 gtk_signal_disconnect_by_func( GTK_OBJECT(node
->GetData()),
664 GTK_SIGNAL_FUNC(gtk_radiobutton_clicked_callback
), (gpointer
*)this );
666 node
= node
->GetNext();
670 void wxRadioBox::GtkEnableEvents()
672 wxList::compatibility_iterator node
= m_boxes
.GetFirst();
675 gtk_signal_connect( GTK_OBJECT(node
->GetData()), "clicked",
676 GTK_SIGNAL_FUNC(gtk_radiobutton_clicked_callback
), (gpointer
*)this );
678 node
= node
->GetNext();
682 void wxRadioBox::ApplyWidgetStyle()
686 gtk_widget_set_style( m_widget
, m_widgetStyle
);
688 wxList::compatibility_iterator node
= m_boxes
.GetFirst();
691 GtkWidget
*widget
= GTK_WIDGET( node
->GetData() );
692 gtk_widget_set_style( widget
, m_widgetStyle
);
694 gtk_widget_set_style( BUTTON_CHILD(node
->GetData()), m_widgetStyle
);
696 node
= node
->GetNext();
701 void wxRadioBox::ApplyToolTip( GtkTooltips
*tips
, const wxChar
*tip
)
703 wxList::compatibility_iterator node
= m_boxes
.GetFirst();
706 GtkWidget
*widget
= GTK_WIDGET( node
->GetData() );
707 gtk_tooltips_set_tip( tips
, widget
, wxConvCurrent
->cWX2MB(tip
), (gchar
*) NULL
);
708 node
= node
->GetNext();
711 #endif // wxUSE_TOOLTIPS
713 bool wxRadioBox::IsOwnGtkWindow( GdkWindow
*window
)
715 if (window
== m_widget
->window
) return TRUE
;
717 wxList::compatibility_iterator node
= m_boxes
.GetFirst();
720 GtkWidget
*button
= GTK_WIDGET( node
->GetData() );
722 if (window
== button
->window
) return TRUE
;
724 node
= node
->GetNext();
730 void wxRadioBox::OnInternalIdle()
737 wxFocusEvent
event( wxEVT_KILL_FOCUS
, GetId() );
738 event
.SetEventObject( this );
740 (void)GetEventHandler()->ProcessEvent( event
);
743 if (g_delayedFocus
== this)
745 if (GTK_WIDGET_REALIZED(m_widget
))
747 g_delayedFocus
= NULL
;
753 #endif // wxUSE_RADIOBOX