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 );
246 bool wasShown
= IsShown();
248 Hide(); // prevent PostCreation() from showing us
260 wxRadioBox::~wxRadioBox()
262 wxList::compatibility_iterator node
= m_boxes
.GetFirst();
265 GtkWidget
*button
= GTK_WIDGET( node
->GetData() );
266 gtk_widget_destroy( button
);
267 node
= node
->GetNext();
271 void wxRadioBox::DoSetSize( int x
, int y
, int width
, int height
, int sizeFlags
)
273 wxWindow::DoSetSize( x
, y
, width
, height
, sizeFlags
);
278 wxSize
wxRadioBox::DoGetBestSize() const
280 wxSize size
= LayoutItems(true);
285 (* GTK_WIDGET_CLASS( GTK_OBJECT_GET_CLASS(m_widget
) )->size_request
) (m_widget
, &req
);
286 if (req
.width
> size
.x
)
292 wxSize
wxRadioBox::LayoutItems(bool justCalc
) const
296 // avoid dividing by 0 below
297 wxCHECK_MSG( m_majorDim
, res
, wxT("dimension of radiobox should not be 0!") );
299 int num_per_major
= (m_boxes
.GetCount() - 1) / m_majorDim
+1;
306 if (HasFlag(wxRA_SPECIFY_COLS
))
308 num_of_cols
= m_majorDim
;
309 num_of_rows
= num_per_major
;
313 num_of_cols
= num_per_major
;
314 num_of_rows
= m_majorDim
;
317 int lineheight
= GetCharHeight()+2;
319 if ( HasFlag(wxRA_SPECIFY_COLS
) ||
320 (HasFlag(wxRA_SPECIFY_ROWS
) && (num_of_cols
> 1)) )
322 for (int j
= 0; j
< num_of_cols
; j
++)
328 wxList::compatibility_iterator node
= m_boxes
.Item( j
*num_of_rows
);
329 for (int i1
= 0; i1
< num_of_rows
; i1
++)
331 GtkWidget
*button
= GTK_WIDGET( node
->GetData() );
336 (* GTK_WIDGET_CLASS( GTK_OBJECT_GET_CLASS(button
) )->size_request
)
339 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() );
357 gtk_pizza_resize( GTK_PIZZA(m_parent
->m_wxwindow
), button
, max_len
, lineheight
);
359 node
= node
->GetNext();
363 if (y
> res
.y
) res
.y
= y
;
375 wxList::compatibility_iterator node
= m_boxes
.GetFirst();
378 GtkWidget
*button
= GTK_WIDGET( node
->GetData() );
383 (* GTK_WIDGET_CLASS( GTK_OBJECT_GET_CLASS(button
) )->size_request
)
386 if (req
.width
> max
) max
= req
.width
;
388 node
= node
->GetNext();
391 node
= m_boxes
.GetFirst();
394 GtkWidget
*button
= GTK_WIDGET( node
->GetData() );
397 gtk_pizza_set_size( GTK_PIZZA(m_parent
->m_wxwindow
), button
, m_x
+x
, m_y
+y
, max
, lineheight
);
400 node
= node
->GetNext();
409 bool wxRadioBox::Show( bool show
)
411 wxCHECK_MSG( m_widget
!= NULL
, FALSE
, wxT("invalid radiobox") );
413 if (!wxControl::Show(show
))
419 if ( HasFlag(wxNO_BORDER
) )
420 gtk_widget_hide( m_widget
);
422 wxList::compatibility_iterator node
= m_boxes
.GetFirst();
425 GtkWidget
*button
= GTK_WIDGET( node
->GetData() );
427 if (show
) gtk_widget_show( button
); else gtk_widget_hide( button
);
429 node
= node
->GetNext();
435 int wxRadioBox::FindString( const wxString
&find
) const
437 wxCHECK_MSG( m_widget
!= NULL
, -1, wxT("invalid radiobox") );
441 wxList::compatibility_iterator node
= m_boxes
.GetFirst();
444 GtkLabel
*label
= GTK_LABEL( BUTTON_CHILD(node
->GetData()) );
446 wxString
str( wxGTK_CONV_BACK( gtk_label_get_text(label
) ) );
448 wxString
str( label
->label
);
455 node
= node
->GetNext();
461 void wxRadioBox::SetFocus()
463 wxCHECK_RET( m_widget
!= NULL
, wxT("invalid radiobox") );
465 if (m_boxes
.GetCount() == 0) return;
467 wxList::compatibility_iterator node
= m_boxes
.GetFirst();
470 GtkToggleButton
*button
= GTK_TOGGLE_BUTTON( node
->GetData() );
473 gtk_widget_grab_focus( GTK_WIDGET(button
) );
476 node
= node
->GetNext();
480 void wxRadioBox::SetSelection( int n
)
482 wxCHECK_RET( m_widget
!= NULL
, wxT("invalid radiobox") );
484 wxList::compatibility_iterator node
= m_boxes
.Item( n
);
486 wxCHECK_RET( node
, wxT("radiobox wrong index") );
488 GtkToggleButton
*button
= GTK_TOGGLE_BUTTON( node
->GetData() );
492 gtk_toggle_button_set_active( button
, 1 );
497 int wxRadioBox::GetSelection(void) const
499 wxCHECK_MSG( m_widget
!= NULL
, -1, wxT("invalid radiobox") );
503 wxList::compatibility_iterator node
= m_boxes
.GetFirst();
506 GtkToggleButton
*button
= GTK_TOGGLE_BUTTON( node
->GetData() );
507 if (button
->active
) return count
;
509 node
= node
->GetNext();
512 wxFAIL_MSG( wxT("wxRadioBox none selected") );
517 wxString
wxRadioBox::GetString( int n
) const
519 wxCHECK_MSG( m_widget
!= NULL
, wxT(""), wxT("invalid radiobox") );
521 wxList::compatibility_iterator node
= m_boxes
.Item( n
);
523 wxCHECK_MSG( node
, wxT(""), wxT("radiobox wrong index") );
525 GtkLabel
*label
= GTK_LABEL( BUTTON_CHILD(node
->GetData()) );
528 wxString
str( wxGTK_CONV_BACK( gtk_label_get_text(label
) ) );
530 wxString
str( label
->label
);
536 void wxRadioBox::SetLabel( const wxString
& label
)
538 wxCHECK_RET( m_widget
!= NULL
, wxT("invalid radiobox") );
540 wxControl::SetLabel( label
);
542 gtk_frame_set_label( GTK_FRAME(m_widget
), wxGTK_CONV( wxControl::GetLabel() ) );
545 void wxRadioBox::SetString( int item
, const wxString
& label
)
547 wxCHECK_RET( m_widget
!= NULL
, wxT("invalid radiobox") );
549 wxList::compatibility_iterator node
= m_boxes
.Item( item
);
551 wxCHECK_RET( node
, wxT("radiobox wrong index") );
553 GtkLabel
*g_label
= GTK_LABEL( BUTTON_CHILD(node
->GetData()) );
555 gtk_label_set( g_label
, wxGTK_CONV( label
) );
558 bool wxRadioBox::Enable( bool enable
)
560 if ( !wxControl::Enable( enable
) )
563 wxList::compatibility_iterator node
= m_boxes
.GetFirst();
566 GtkButton
*button
= GTK_BUTTON( node
->GetData() );
567 GtkLabel
*label
= GTK_LABEL( BUTTON_CHILD(button
) );
569 gtk_widget_set_sensitive( GTK_WIDGET(button
), enable
);
570 gtk_widget_set_sensitive( GTK_WIDGET(label
), enable
);
571 node
= node
->GetNext();
577 void wxRadioBox::Enable( int item
, bool enable
)
579 wxCHECK_RET( m_widget
!= NULL
, wxT("invalid radiobox") );
581 wxList::compatibility_iterator node
= m_boxes
.Item( item
);
583 wxCHECK_RET( node
, wxT("radiobox wrong index") );
585 GtkButton
*button
= GTK_BUTTON( node
->GetData() );
586 GtkLabel
*label
= GTK_LABEL( BUTTON_CHILD(button
) );
588 gtk_widget_set_sensitive( GTK_WIDGET(button
), enable
);
589 gtk_widget_set_sensitive( GTK_WIDGET(label
), enable
);
592 void wxRadioBox::Show( int item
, bool show
)
594 wxCHECK_RET( m_widget
!= NULL
, wxT("invalid radiobox") );
596 wxList::compatibility_iterator node
= m_boxes
.Item( item
);
598 wxCHECK_RET( node
, wxT("radiobox wrong index") );
600 GtkWidget
*button
= GTK_WIDGET( node
->GetData() );
603 gtk_widget_show( button
);
605 gtk_widget_hide( button
);
608 wxString
wxRadioBox::GetStringSelection() const
610 wxCHECK_MSG( m_widget
!= NULL
, wxT(""), wxT("invalid radiobox") );
612 wxList::compatibility_iterator node
= m_boxes
.GetFirst();
615 GtkToggleButton
*button
= GTK_TOGGLE_BUTTON( node
->GetData() );
618 GtkLabel
*label
= GTK_LABEL( BUTTON_CHILD(node
->GetData()) );
621 wxString
str( wxGTK_CONV_BACK( gtk_label_get_text(label
) ) );
623 wxString
str( label
->label
);
627 node
= node
->GetNext();
630 wxFAIL_MSG( wxT("wxRadioBox none selected") );
634 bool wxRadioBox::SetStringSelection( const wxString
&s
)
636 wxCHECK_MSG( m_widget
!= NULL
, FALSE
, wxT("invalid radiobox") );
638 int res
= FindString( s
);
639 if (res
== -1) return FALSE
;
645 int wxRadioBox::GetCount() const
647 return m_boxes
.GetCount();
650 int wxRadioBox::GetNumberOfRowsOrCols() const
655 void wxRadioBox::SetNumberOfRowsOrCols( int WXUNUSED(n
) )
657 wxFAIL_MSG(wxT("wxRadioBox::SetNumberOfRowsOrCols not implemented."));
660 void wxRadioBox::GtkDisableEvents()
662 wxList::compatibility_iterator node
= m_boxes
.GetFirst();
665 gtk_signal_disconnect_by_func( GTK_OBJECT(node
->GetData()),
666 GTK_SIGNAL_FUNC(gtk_radiobutton_clicked_callback
), (gpointer
*)this );
668 node
= node
->GetNext();
672 void wxRadioBox::GtkEnableEvents()
674 wxList::compatibility_iterator node
= m_boxes
.GetFirst();
677 gtk_signal_connect( GTK_OBJECT(node
->GetData()), "clicked",
678 GTK_SIGNAL_FUNC(gtk_radiobutton_clicked_callback
), (gpointer
*)this );
680 node
= node
->GetNext();
684 void wxRadioBox::ApplyWidgetStyle()
688 gtk_widget_set_style( m_widget
, m_widgetStyle
);
690 wxList::compatibility_iterator node
= m_boxes
.GetFirst();
693 GtkWidget
*widget
= GTK_WIDGET( node
->GetData() );
694 gtk_widget_set_style( widget
, m_widgetStyle
);
696 gtk_widget_set_style( BUTTON_CHILD(node
->GetData()), m_widgetStyle
);
698 node
= node
->GetNext();
703 void wxRadioBox::ApplyToolTip( GtkTooltips
*tips
, const wxChar
*tip
)
705 wxList::compatibility_iterator node
= m_boxes
.GetFirst();
708 GtkWidget
*widget
= GTK_WIDGET( node
->GetData() );
709 gtk_tooltips_set_tip( tips
, widget
, wxConvCurrent
->cWX2MB(tip
), (gchar
*) NULL
);
710 node
= node
->GetNext();
713 #endif // wxUSE_TOOLTIPS
715 bool wxRadioBox::IsOwnGtkWindow( GdkWindow
*window
)
717 if (window
== m_widget
->window
) return TRUE
;
719 wxList::compatibility_iterator node
= m_boxes
.GetFirst();
722 GtkWidget
*button
= GTK_WIDGET( node
->GetData() );
724 if (window
== button
->window
) return TRUE
;
726 node
= node
->GetNext();
732 void wxRadioBox::OnInternalIdle()
739 wxFocusEvent
event( wxEVT_KILL_FOCUS
, GetId() );
740 event
.SetEventObject( this );
742 (void)GetEventHandler()->ProcessEvent( event
);
745 if (g_delayedFocus
== this)
747 if (GTK_WIDGET_REALIZED(m_widget
))
749 g_delayedFocus
= NULL
;
757 wxRadioBox::GetClassDefaultAttributes(wxWindowVariant
WXUNUSED(variant
))
759 wxVisualAttributes attr
;
760 GtkWidget
* widget
= gtk_radio_button_new_with_label(NULL
, "");
761 attr
= GetDefaultAttributesFromGTKWidget(widget
);
762 gtk_widget_destroy(widget
);
766 #endif // wxUSE_RADIOBOX