1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/gtk/radiobox.cpp
4 // Author: Robert Roebling
6 // Copyright: (c) 1998 Robert Roebling
7 // Licence: wxWindows licence
8 /////////////////////////////////////////////////////////////////////////////
10 // For compilers that support precompilation, includes "wx.h".
11 #include "wx/wxprec.h"
15 #include "wx/radiobox.h"
20 #include "wx/dialog.h"
24 #include "wx/tooltip.h"
27 #include "wx/gtk/private.h"
28 #include <gdk/gdkkeysyms.h>
30 #include "wx/gtk/win_gtk.h"
32 //-----------------------------------------------------------------------------
33 // wxGTKRadioButtonInfo
34 //-----------------------------------------------------------------------------
35 // structure internally used by wxRadioBox to store its child buttons
37 class wxGTKRadioButtonInfo
: public wxObject
40 wxGTKRadioButtonInfo( GtkRadioButton
* abutton
, const wxRect
& arect
)
41 : button( abutton
), rect( arect
) {}
43 GtkRadioButton
* button
;
47 //-----------------------------------------------------------------------------
49 //-----------------------------------------------------------------------------
51 #include "wx/listimpl.cpp"
52 WX_DEFINE_LIST( wxRadioBoxButtonsInfoList
);
54 extern bool g_blockEventsOnDrag
;
56 //-----------------------------------------------------------------------------
58 //-----------------------------------------------------------------------------
61 static void gtk_radiobutton_clicked_callback( GtkToggleButton
*button
, wxRadioBox
*rb
)
63 if (g_isIdle
) wxapp_install_idle_handler();
65 if (!rb
->m_hasVMT
) return;
66 if (g_blockEventsOnDrag
) return;
68 if (!button
->active
) return;
70 wxCommandEvent
event( wxEVT_COMMAND_RADIOBOX_SELECTED
, rb
->GetId() );
71 event
.SetInt( rb
->GetSelection() );
72 event
.SetString( rb
->GetStringSelection() );
73 event
.SetEventObject( rb
);
74 rb
->GetEventHandler()->ProcessEvent(event
);
78 //-----------------------------------------------------------------------------
80 //-----------------------------------------------------------------------------
83 static gint
gtk_radiobox_keypress_callback( GtkWidget
*widget
, GdkEventKey
*gdk_event
, wxRadioBox
*rb
)
86 wxapp_install_idle_handler();
88 if (!rb
->m_hasVMT
) return FALSE
;
89 if (g_blockEventsOnDrag
) return FALSE
;
91 if ( ((gdk_event
->keyval
== GDK_Tab
) ||
92 (gdk_event
->keyval
== GDK_ISO_Left_Tab
)) &&
93 rb
->GetParent() && (rb
->GetParent()->HasFlag( wxTAB_TRAVERSAL
)) )
95 wxNavigationKeyEvent new_event
;
96 new_event
.SetEventObject( rb
->GetParent() );
97 // GDK reports GDK_ISO_Left_Tab for SHIFT-TAB
98 new_event
.SetDirection( (gdk_event
->keyval
== GDK_Tab
) );
99 // CTRL-TAB changes the (parent) window, i.e. switch notebook page
100 new_event
.SetWindowChange( (gdk_event
->state
& GDK_CONTROL_MASK
) );
101 new_event
.SetCurrentFocus( rb
);
102 return rb
->GetParent()->GetEventHandler()->ProcessEvent( new_event
);
105 if ((gdk_event
->keyval
!= GDK_Up
) &&
106 (gdk_event
->keyval
!= GDK_Down
) &&
107 (gdk_event
->keyval
!= GDK_Left
) &&
108 (gdk_event
->keyval
!= GDK_Right
))
113 wxRadioBoxButtonsInfoList::compatibility_iterator node
= rb
->m_buttonsInfo
.GetFirst();
114 while( node
&& GTK_WIDGET( node
->GetData()->button
) != widget
)
116 node
= node
->GetNext();
123 g_signal_stop_emission_by_name (widget
, "key_press_event");
125 if ((gdk_event
->keyval
== GDK_Up
) ||
126 (gdk_event
->keyval
== GDK_Left
))
128 if (node
== rb
->m_buttonsInfo
.GetFirst())
129 node
= rb
->m_buttonsInfo
.GetLast();
131 node
= node
->GetPrevious();
135 if (node
== rb
->m_buttonsInfo
.GetLast())
136 node
= rb
->m_buttonsInfo
.GetFirst();
138 node
= node
->GetNext();
141 GtkWidget
*button
= (GtkWidget
*) node
->GetData()->button
;
143 gtk_widget_grab_focus( button
);
150 static gint
gtk_radiobutton_focus_in( GtkWidget
*widget
,
151 GdkEvent
*WXUNUSED(event
),
154 if ( win
->m_lostFocus
)
156 // no, we didn't really lose it
157 win
->m_lostFocus
= FALSE
;
159 else if ( !win
->m_hasFocus
)
161 win
->m_hasFocus
= true;
163 wxFocusEvent
event( wxEVT_SET_FOCUS
, win
->GetId() );
164 event
.SetEventObject( win
);
166 // never stop the signal emission, it seems to break the kbd handling
167 // inside the radiobox
168 (void)win
->GetEventHandler()->ProcessEvent( event
);
176 static gint
gtk_radiobutton_focus_out( GtkWidget
*widget
,
177 GdkEvent
*WXUNUSED(event
),
180 // wxASSERT_MSG( win->m_hasFocus, _T("got focus out without any focus in?") );
181 // Replace with a warning, else we dump core a lot!
182 // if (!win->m_hasFocus)
183 // wxLogWarning(_T("Radiobox got focus out without any focus in.") );
185 // we might have lost the focus, but may be not - it may have just gone to
186 // another button in the same radiobox, so we'll check for it in the next
187 // idle iteration (leave m_hasFocus == true for now)
188 win
->m_lostFocus
= true;
195 static void gtk_radiobutton_size_allocate( GtkWidget
*widget
,
196 GtkAllocation
* alloc
,
200 for ( wxRadioBoxButtonsInfoList::compatibility_iterator node
= win
->m_buttonsInfo
.GetFirst();
202 node
= node
->GetNext(), n
++ )
204 if( widget
== GTK_WIDGET(node
->GetData()->button
) )
206 const wxPoint origin
= win
->GetPosition();
207 wxRect rect
= wxRect( alloc
->x
- origin
.x
, alloc
->y
- origin
.y
,
208 alloc
->width
, alloc
->height
);
209 node
->GetData()->rect
= rect
;
217 //-----------------------------------------------------------------------------
219 //-----------------------------------------------------------------------------
221 IMPLEMENT_DYNAMIC_CLASS(wxRadioBox
,wxControl
)
223 void wxRadioBox::Init()
226 m_acceptsFocus
= true;
232 bool wxRadioBox::Create( wxWindow
*parent
, wxWindowID id
,
233 const wxString
& title
,
234 const wxPoint
&pos
, const wxSize
&size
,
235 const wxArrayString
& choices
, int majorDim
,
236 long style
, const wxValidator
& validator
,
237 const wxString
&name
)
239 wxCArrayString
chs(choices
);
241 return Create( parent
, id
, title
, pos
, size
, chs
.GetCount(),
242 chs
.GetStrings(), majorDim
, style
, validator
, name
);
245 bool wxRadioBox::Create( wxWindow
*parent
, wxWindowID id
, const wxString
& title
,
246 const wxPoint
&pos
, const wxSize
&size
,
247 int n
, const wxString choices
[], int majorDim
,
248 long style
, const wxValidator
& validator
,
249 const wxString
&name
)
251 if (!PreCreation( parent
, pos
, size
) ||
252 !CreateBase( parent
, id
, pos
, size
, style
, validator
, name
))
254 wxFAIL_MSG( wxT("wxRadioBox creation failed") );
258 m_widget
= GTKCreateFrame(title
);
259 wxControl::SetLabel(title
);
261 // majorDim may be 0 if all trailing parameters were omitted, so don't
262 // assert here but just use the correct value for it
263 SetMajorDim(majorDim
== 0 ? n
: majorDim
, style
);
266 unsigned int num_of_cols
= GetColumnCount();
267 unsigned int num_of_rows
= GetRowCount();
269 GtkRadioButton
*rbtn
= (GtkRadioButton
*) NULL
;
271 GtkWidget
*table
= gtk_table_new( num_of_rows
, num_of_cols
, FALSE
);
272 gtk_table_set_col_spacings( GTK_TABLE(table
), 1 );
273 gtk_table_set_row_spacings( GTK_TABLE(table
), 1 );
274 gtk_widget_show( table
);
275 gtk_container_add( GTK_CONTAINER(m_widget
), table
);
278 GSList
*radio_button_group
= (GSList
*) NULL
;
279 for (unsigned int i
= 0; i
< (unsigned int)n
; i
++)
282 radio_button_group
= gtk_radio_button_get_group( GTK_RADIO_BUTTON(rbtn
) );
285 for ( const wxChar
*pc
= choices
[i
]; *pc
; pc
++ )
287 if ( *pc
!= wxT('&') )
291 rbtn
= GTK_RADIO_BUTTON( gtk_radio_button_new_with_label( radio_button_group
, wxGTK_CONV( label
) ) );
292 gtk_widget_show( GTK_WIDGET(rbtn
) );
294 g_signal_connect (rbtn
, "key_press_event",
295 G_CALLBACK (gtk_radiobox_keypress_callback
), this);
297 m_buttonsInfo
.Append( new wxGTKRadioButtonInfo( rbtn
, wxRect() ) );
299 if (HasFlag(wxRA_SPECIFY_COLS
))
301 int left
= i%num_of_cols
;
302 int right
= (i%num_of_cols
) + 1;
303 int top
= i
/num_of_cols
;
304 int bottom
= (i
/num_of_cols
)+1;
305 gtk_table_attach( GTK_TABLE(table
), GTK_WIDGET(rbtn
), left
, right
, top
, bottom
,
306 GTK_FILL
, GTK_FILL
, 1, 1 );
310 int left
= i
/num_of_rows
;
311 int right
= (i
/num_of_rows
) + 1;
312 int top
= i%num_of_rows
;
313 int bottom
= (i%num_of_rows
)+1;
314 gtk_table_attach( GTK_TABLE(table
), GTK_WIDGET(rbtn
), left
, right
, top
, bottom
,
315 GTK_FILL
, GTK_FILL
, 1, 1 );
318 ConnectWidget( GTK_WIDGET(rbtn
) );
321 gtk_toggle_button_set_active( GTK_TOGGLE_BUTTON(rbtn
), TRUE
);
323 g_signal_connect (rbtn
, "clicked",
324 G_CALLBACK (gtk_radiobutton_clicked_callback
), this);
325 g_signal_connect (rbtn
, "focus_in_event",
326 G_CALLBACK (gtk_radiobutton_focus_in
), this);
327 g_signal_connect (rbtn
, "focus_out_event",
328 G_CALLBACK (gtk_radiobutton_focus_out
), this);
329 g_signal_connect (rbtn
, "size_allocate",
330 G_CALLBACK (gtk_radiobutton_size_allocate
), this);
333 m_parent
->DoAddChild( this );
340 wxRadioBox::~wxRadioBox()
342 wxRadioBoxButtonsInfoList::compatibility_iterator node
= m_buttonsInfo
.GetFirst();
345 GtkWidget
*button
= GTK_WIDGET( node
->GetData()->button
);
346 gtk_widget_destroy( button
);
347 node
= node
->GetNext();
349 WX_CLEAR_LIST( wxRadioBoxButtonsInfoList
, m_buttonsInfo
);
352 bool wxRadioBox::Show( bool show
)
354 wxCHECK_MSG( m_widget
!= NULL
, false, wxT("invalid radiobox") );
356 if (!wxControl::Show(show
))
362 if ( HasFlag(wxNO_BORDER
) )
363 gtk_widget_hide( m_widget
);
365 wxRadioBoxButtonsInfoList::compatibility_iterator node
= m_buttonsInfo
.GetFirst();
368 GtkWidget
*button
= GTK_WIDGET( node
->GetData()->button
);
371 gtk_widget_show( button
);
373 gtk_widget_hide( button
);
375 node
= node
->GetNext();
381 void wxRadioBox::SetFocus()
383 wxCHECK_RET( m_widget
!= NULL
, wxT("invalid radiobox") );
385 if (m_buttonsInfo
.GetCount() == 0) return;
387 wxRadioBoxButtonsInfoList::compatibility_iterator node
= m_buttonsInfo
.GetFirst();
390 GtkToggleButton
*button
= GTK_TOGGLE_BUTTON( node
->GetData()->button
);
393 gtk_widget_grab_focus( GTK_WIDGET(button
) );
396 node
= node
->GetNext();
400 void wxRadioBox::SetSelection( int n
)
402 wxCHECK_RET( m_widget
!= NULL
, wxT("invalid radiobox") );
404 wxRadioBoxButtonsInfoList::compatibility_iterator node
= m_buttonsInfo
.Item( n
);
406 wxCHECK_RET( node
, wxT("radiobox wrong index") );
408 GtkToggleButton
*button
= GTK_TOGGLE_BUTTON( node
->GetData()->button
);
412 gtk_toggle_button_set_active( button
, 1 );
417 int wxRadioBox::GetSelection(void) const
419 wxCHECK_MSG( m_widget
!= NULL
, wxNOT_FOUND
, wxT("invalid radiobox") );
423 wxRadioBoxButtonsInfoList::compatibility_iterator node
= m_buttonsInfo
.GetFirst();
426 GtkToggleButton
*button
= GTK_TOGGLE_BUTTON( node
->GetData()->button
);
427 if (button
->active
) return count
;
429 node
= node
->GetNext();
432 wxFAIL_MSG( wxT("wxRadioBox none selected") );
437 wxString
wxRadioBox::GetString(unsigned int n
) const
439 wxCHECK_MSG( m_widget
!= NULL
, wxEmptyString
, wxT("invalid radiobox") );
441 wxRadioBoxButtonsInfoList::compatibility_iterator node
= m_buttonsInfo
.Item( n
);
443 wxCHECK_MSG( node
, wxEmptyString
, wxT("radiobox wrong index") );
445 GtkLabel
*label
= GTK_LABEL(GTK_BIN(node
->GetData()->button
)->child
);
447 wxString
str( wxGTK_CONV_BACK( gtk_label_get_text(label
) ) );
452 void wxRadioBox::SetLabel( const wxString
& label
)
454 wxCHECK_RET( m_widget
!= NULL
, wxT("invalid radiobox") );
456 GTKSetLabelForFrame(GTK_FRAME(m_widget
), label
);
459 void wxRadioBox::SetString(unsigned int item
, const wxString
& label
)
461 wxCHECK_RET( m_widget
!= NULL
, wxT("invalid radiobox") );
463 wxRadioBoxButtonsInfoList::compatibility_iterator node
= m_buttonsInfo
.Item( item
);
465 wxCHECK_RET( node
, wxT("radiobox wrong index") );
467 GtkLabel
*g_label
= GTK_LABEL(GTK_BIN(node
->GetData()->button
)->child
);
469 gtk_label_set_text( g_label
, wxGTK_CONV( label
) );
472 bool wxRadioBox::Enable( bool enable
)
474 if ( !wxControl::Enable( enable
) )
477 wxRadioBoxButtonsInfoList::compatibility_iterator node
= m_buttonsInfo
.GetFirst();
480 GtkButton
*button
= GTK_BUTTON( node
->GetData()->button
);
481 GtkLabel
*label
= GTK_LABEL(GTK_BIN(button
)->child
);
483 gtk_widget_set_sensitive( GTK_WIDGET(button
), enable
);
484 gtk_widget_set_sensitive( GTK_WIDGET(label
), enable
);
485 node
= node
->GetNext();
491 bool wxRadioBox::Enable(unsigned int item
, bool enable
)
493 wxCHECK_MSG( m_widget
!= NULL
, false, wxT("invalid radiobox") );
495 wxRadioBoxButtonsInfoList::compatibility_iterator node
= m_buttonsInfo
.Item( item
);
497 wxCHECK_MSG( node
, false, wxT("radiobox wrong index") );
499 GtkButton
*button
= GTK_BUTTON( node
->GetData()->button
);
500 GtkLabel
*label
= GTK_LABEL(GTK_BIN(button
)->child
);
502 gtk_widget_set_sensitive( GTK_WIDGET(button
), enable
);
503 gtk_widget_set_sensitive( GTK_WIDGET(label
), enable
);
508 bool wxRadioBox::IsItemEnabled(unsigned int item
) const
510 wxCHECK_MSG( m_widget
!= NULL
, false, wxT("invalid radiobox") );
512 wxRadioBoxButtonsInfoList::compatibility_iterator node
= m_buttonsInfo
.Item( item
);
514 wxCHECK_MSG( node
, false, wxT("radiobox wrong index") );
516 GtkButton
*button
= GTK_BUTTON( node
->GetData()->button
);
518 // don't use GTK_WIDGET_IS_SENSITIVE() here, we want to return true even if
519 // the parent radiobox is disabled
520 return GTK_WIDGET_SENSITIVE(GTK_WIDGET(button
));
523 bool wxRadioBox::Show(unsigned int item
, bool show
)
525 wxCHECK_MSG( m_widget
!= NULL
, false, wxT("invalid radiobox") );
527 wxRadioBoxButtonsInfoList::compatibility_iterator node
= m_buttonsInfo
.Item( item
);
529 wxCHECK_MSG( node
, false, wxT("radiobox wrong index") );
531 GtkWidget
*button
= GTK_WIDGET( node
->GetData()->button
);
534 gtk_widget_show( button
);
536 gtk_widget_hide( button
);
541 bool wxRadioBox::IsItemShown(unsigned int item
) const
543 wxCHECK_MSG( m_widget
!= NULL
, false, wxT("invalid radiobox") );
545 wxRadioBoxButtonsInfoList::compatibility_iterator node
= m_buttonsInfo
.Item( item
);
547 wxCHECK_MSG( node
, false, wxT("radiobox wrong index") );
549 GtkButton
*button
= GTK_BUTTON( node
->GetData()->button
);
551 return GTK_WIDGET_VISIBLE(GTK_WIDGET(button
));
554 unsigned int wxRadioBox::GetCount() const
556 return m_buttonsInfo
.GetCount();
559 void wxRadioBox::GtkDisableEvents()
561 wxRadioBoxButtonsInfoList::compatibility_iterator node
= m_buttonsInfo
.GetFirst();
564 g_signal_handlers_disconnect_by_func (node
->GetData()->button
,
565 (gpointer
) gtk_radiobutton_clicked_callback
,
568 node
= node
->GetNext();
572 void wxRadioBox::GtkEnableEvents()
574 wxRadioBoxButtonsInfoList::compatibility_iterator node
= m_buttonsInfo
.GetFirst();
577 g_signal_connect (node
->GetData()->button
, "clicked",
578 G_CALLBACK (gtk_radiobutton_clicked_callback
), this);
580 node
= node
->GetNext();
584 void wxRadioBox::DoApplyWidgetStyle(GtkRcStyle
*style
)
586 GTKFrameApplyWidgetStyle(GTK_FRAME(m_widget
), style
);
588 wxRadioBoxButtonsInfoList::compatibility_iterator node
= m_buttonsInfo
.GetFirst();
591 GtkWidget
*widget
= GTK_WIDGET( node
->GetData()->button
);
593 gtk_widget_modify_style( widget
, style
);
594 gtk_widget_modify_style(GTK_BIN(widget
)->child
, style
);
596 node
= node
->GetNext();
600 bool wxRadioBox::GTKWidgetNeedsMnemonic() const
605 void wxRadioBox::GTKWidgetDoSetMnemonic(GtkWidget
* w
)
607 GTKFrameSetMnemonicWidget(GTK_FRAME(m_widget
), w
);
611 void wxRadioBox::ApplyToolTip(GtkTooltips
* WXUNUSED(tips
), const wxChar
*tip
)
613 // set this tooltip for all radiobuttons which don't have their own tips
615 for ( wxRadioBoxButtonsInfoList::compatibility_iterator node
= m_buttonsInfo
.GetFirst();
617 node
= node
->GetNext(), n
++ )
619 if ( !GetItemToolTip(n
) )
621 wxToolTip::Apply(GTK_WIDGET(node
->GetData()->button
),
622 wxConvCurrent
->cWX2MB(tip
));
627 void wxRadioBox::DoSetItemToolTip(unsigned int n
, wxToolTip
*tooltip
)
631 tooltip
= GetToolTip();
633 buf
= wxGTK_CONV(tooltip
->GetTip());
635 wxToolTip::Apply(GTK_WIDGET(m_buttonsInfo
[n
]->button
), buf
);
638 #endif // wxUSE_TOOLTIPS
640 GdkWindow
*wxRadioBox::GTKGetWindow(wxArrayGdkWindows
& windows
) const
642 windows
.push_back(m_widget
->window
);
644 wxRadioBoxButtonsInfoList::compatibility_iterator node
= m_buttonsInfo
.GetFirst();
647 GtkWidget
*button
= GTK_WIDGET( node
->GetData()->button
);
649 windows
.push_back(button
->window
);
651 node
= node
->GetNext();
657 void wxRadioBox::OnInternalIdle()
659 wxControl::OnInternalIdle();
666 wxFocusEvent
event( wxEVT_KILL_FOCUS
, GetId() );
667 event
.SetEventObject( this );
669 (void)GetEventHandler()->ProcessEvent( event
);
675 wxRadioBox::GetClassDefaultAttributes(wxWindowVariant
WXUNUSED(variant
))
677 wxVisualAttributes attr
;
678 // NB: we need toplevel window so that GTK+ can find the right style
679 GtkWidget
*wnd
= gtk_window_new(GTK_WINDOW_TOPLEVEL
);
680 GtkWidget
* widget
= gtk_radio_button_new_with_label(NULL
, "");
681 gtk_container_add(GTK_CONTAINER(wnd
), widget
);
682 attr
= GetDefaultAttributesFromGTKWidget(widget
);
683 gtk_widget_destroy(wnd
);
687 int wxRadioBox::GetItemFromPoint(const wxPoint
& point
) const
689 const wxPoint pt
= ScreenToClient(point
);
691 for ( wxRadioBoxButtonsInfoList::compatibility_iterator
692 node
= m_buttonsInfo
.GetFirst(); node
; node
= node
->GetNext(), n
++ )
694 if ( m_buttonsInfo
[n
]->rect
.Inside(pt
) )
701 #endif // wxUSE_RADIOBOX