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
)
85 // don't need to install idle handler, its done from "event" signal
87 if (!rb
->m_hasVMT
) return FALSE
;
88 if (g_blockEventsOnDrag
) return FALSE
;
90 if ( ((gdk_event
->keyval
== GDK_Tab
) ||
91 (gdk_event
->keyval
== GDK_ISO_Left_Tab
)) &&
92 rb
->GetParent() && (rb
->GetParent()->HasFlag( wxTAB_TRAVERSAL
)) )
94 wxNavigationKeyEvent new_event
;
95 new_event
.SetEventObject( rb
->GetParent() );
96 // GDK reports GDK_ISO_Left_Tab for SHIFT-TAB
97 new_event
.SetDirection( (gdk_event
->keyval
== GDK_Tab
) );
98 // CTRL-TAB changes the (parent) window, i.e. switch notebook page
99 new_event
.SetWindowChange( (gdk_event
->state
& GDK_CONTROL_MASK
) );
100 new_event
.SetCurrentFocus( rb
);
101 return rb
->GetParent()->GetEventHandler()->ProcessEvent( new_event
);
104 if ((gdk_event
->keyval
!= GDK_Up
) &&
105 (gdk_event
->keyval
!= GDK_Down
) &&
106 (gdk_event
->keyval
!= GDK_Left
) &&
107 (gdk_event
->keyval
!= GDK_Right
))
112 wxRadioBoxButtonsInfoList::compatibility_iterator node
= rb
->m_buttonsInfo
.GetFirst();
113 while( node
&& GTK_WIDGET( node
->GetData()->button
) != widget
)
115 node
= node
->GetNext();
122 if ((gdk_event
->keyval
== GDK_Up
) ||
123 (gdk_event
->keyval
== GDK_Left
))
125 if (node
== rb
->m_buttonsInfo
.GetFirst())
126 node
= rb
->m_buttonsInfo
.GetLast();
128 node
= node
->GetPrevious();
132 if (node
== rb
->m_buttonsInfo
.GetLast())
133 node
= rb
->m_buttonsInfo
.GetFirst();
135 node
= node
->GetNext();
138 GtkWidget
*button
= (GtkWidget
*) node
->GetData()->button
;
140 gtk_widget_grab_focus( button
);
147 static gint
gtk_radiobutton_focus_in( GtkWidget
*widget
,
148 GdkEvent
*WXUNUSED(event
),
151 if ( win
->m_lostFocus
)
153 // no, we didn't really lose it
154 win
->m_lostFocus
= FALSE
;
156 else if ( !win
->m_hasFocus
)
158 win
->m_hasFocus
= true;
160 wxFocusEvent
event( wxEVT_SET_FOCUS
, win
->GetId() );
161 event
.SetEventObject( win
);
163 // never stop the signal emission, it seems to break the kbd handling
164 // inside the radiobox
165 (void)win
->GetEventHandler()->ProcessEvent( event
);
173 static gint
gtk_radiobutton_focus_out( GtkWidget
*widget
,
174 GdkEvent
*WXUNUSED(event
),
177 // wxASSERT_MSG( win->m_hasFocus, _T("got focus out without any focus in?") );
178 // Replace with a warning, else we dump core a lot!
179 // if (!win->m_hasFocus)
180 // wxLogWarning(_T("Radiobox got focus out without any focus in.") );
182 // we might have lost the focus, but may be not - it may have just gone to
183 // another button in the same radiobox, so we'll check for it in the next
184 // idle iteration (leave m_hasFocus == true for now)
185 win
->m_lostFocus
= true;
192 static void gtk_radiobutton_size_allocate( GtkWidget
*widget
,
193 GtkAllocation
* alloc
,
196 for ( wxRadioBoxButtonsInfoList::compatibility_iterator node
= win
->m_buttonsInfo
.GetFirst();
198 node
= node
->GetNext())
200 if (widget
== GTK_WIDGET(node
->GetData()->button
))
202 const wxPoint origin
= win
->GetPosition();
203 wxRect rect
= wxRect( alloc
->x
- origin
.x
, alloc
->y
- origin
.y
,
204 alloc
->width
, alloc
->height
);
205 node
->GetData()->rect
= rect
;
213 //-----------------------------------------------------------------------------
215 //-----------------------------------------------------------------------------
217 IMPLEMENT_DYNAMIC_CLASS(wxRadioBox
,wxControl
)
219 void wxRadioBox::Init()
222 m_acceptsFocus
= true;
228 bool wxRadioBox::Create( wxWindow
*parent
, wxWindowID id
,
229 const wxString
& title
,
230 const wxPoint
&pos
, const wxSize
&size
,
231 const wxArrayString
& choices
, int majorDim
,
232 long style
, const wxValidator
& validator
,
233 const wxString
&name
)
235 wxCArrayString
chs(choices
);
237 return Create( parent
, id
, title
, pos
, size
, chs
.GetCount(),
238 chs
.GetStrings(), majorDim
, style
, validator
, name
);
241 bool wxRadioBox::Create( wxWindow
*parent
, wxWindowID id
, const wxString
& title
,
242 const wxPoint
&pos
, const wxSize
&size
,
243 int n
, const wxString choices
[], int majorDim
,
244 long style
, const wxValidator
& validator
,
245 const wxString
&name
)
247 if (!PreCreation( parent
, pos
, size
) ||
248 !CreateBase( parent
, id
, pos
, size
, style
, validator
, name
))
250 wxFAIL_MSG( wxT("wxRadioBox creation failed") );
254 m_widget
= GTKCreateFrame(title
);
255 wxControl::SetLabel(title
);
257 // majorDim may be 0 if all trailing parameters were omitted, so don't
258 // assert here but just use the correct value for it
259 SetMajorDim(majorDim
== 0 ? n
: majorDim
, style
);
262 unsigned int num_of_cols
= GetColumnCount();
263 unsigned int num_of_rows
= GetRowCount();
265 GtkRadioButton
*rbtn
= (GtkRadioButton
*) NULL
;
267 GtkWidget
*table
= gtk_table_new( num_of_rows
, num_of_cols
, FALSE
);
268 gtk_table_set_col_spacings( GTK_TABLE(table
), 1 );
269 gtk_table_set_row_spacings( GTK_TABLE(table
), 1 );
270 gtk_widget_show( table
);
271 gtk_container_add( GTK_CONTAINER(m_widget
), table
);
274 GSList
*radio_button_group
= (GSList
*) NULL
;
275 for (unsigned int i
= 0; i
< (unsigned int)n
; i
++)
278 radio_button_group
= gtk_radio_button_get_group( GTK_RADIO_BUTTON(rbtn
) );
281 for ( const wxChar
*pc
= choices
[i
]; *pc
; pc
++ )
283 if ( *pc
!= wxT('&') )
287 rbtn
= GTK_RADIO_BUTTON( gtk_radio_button_new_with_label( radio_button_group
, wxGTK_CONV( label
) ) );
288 gtk_widget_show( GTK_WIDGET(rbtn
) );
290 g_signal_connect (rbtn
, "key_press_event",
291 G_CALLBACK (gtk_radiobox_keypress_callback
), this);
293 m_buttonsInfo
.Append( new wxGTKRadioButtonInfo( rbtn
, wxRect() ) );
295 if (HasFlag(wxRA_SPECIFY_COLS
))
297 int left
= i%num_of_cols
;
298 int right
= (i%num_of_cols
) + 1;
299 int top
= i
/num_of_cols
;
300 int bottom
= (i
/num_of_cols
)+1;
301 gtk_table_attach( GTK_TABLE(table
), GTK_WIDGET(rbtn
), left
, right
, top
, bottom
,
302 GTK_FILL
, GTK_FILL
, 1, 1 );
306 int left
= i
/num_of_rows
;
307 int right
= (i
/num_of_rows
) + 1;
308 int top
= i%num_of_rows
;
309 int bottom
= (i%num_of_rows
)+1;
310 gtk_table_attach( GTK_TABLE(table
), GTK_WIDGET(rbtn
), left
, right
, top
, bottom
,
311 GTK_FILL
, GTK_FILL
, 1, 1 );
314 ConnectWidget( GTK_WIDGET(rbtn
) );
317 gtk_toggle_button_set_active( GTK_TOGGLE_BUTTON(rbtn
), TRUE
);
319 g_signal_connect (rbtn
, "clicked",
320 G_CALLBACK (gtk_radiobutton_clicked_callback
), this);
321 g_signal_connect (rbtn
, "focus_in_event",
322 G_CALLBACK (gtk_radiobutton_focus_in
), this);
323 g_signal_connect (rbtn
, "focus_out_event",
324 G_CALLBACK (gtk_radiobutton_focus_out
), this);
325 g_signal_connect (rbtn
, "size_allocate",
326 G_CALLBACK (gtk_radiobutton_size_allocate
), this);
329 m_parent
->DoAddChild( this );
336 wxRadioBox::~wxRadioBox()
338 wxRadioBoxButtonsInfoList::compatibility_iterator node
= m_buttonsInfo
.GetFirst();
341 GtkWidget
*button
= GTK_WIDGET( node
->GetData()->button
);
342 gtk_widget_destroy( button
);
343 node
= node
->GetNext();
345 WX_CLEAR_LIST( wxRadioBoxButtonsInfoList
, m_buttonsInfo
);
348 bool wxRadioBox::Show( bool show
)
350 wxCHECK_MSG( m_widget
!= NULL
, false, wxT("invalid radiobox") );
352 if (!wxControl::Show(show
))
358 if ( HasFlag(wxNO_BORDER
) )
359 gtk_widget_hide( m_widget
);
361 wxRadioBoxButtonsInfoList::compatibility_iterator node
= m_buttonsInfo
.GetFirst();
364 GtkWidget
*button
= GTK_WIDGET( node
->GetData()->button
);
367 gtk_widget_show( button
);
369 gtk_widget_hide( button
);
371 node
= node
->GetNext();
377 void wxRadioBox::SetFocus()
379 wxCHECK_RET( m_widget
!= NULL
, wxT("invalid radiobox") );
381 if (m_buttonsInfo
.GetCount() == 0) return;
383 wxRadioBoxButtonsInfoList::compatibility_iterator node
= m_buttonsInfo
.GetFirst();
386 GtkToggleButton
*button
= GTK_TOGGLE_BUTTON( node
->GetData()->button
);
389 gtk_widget_grab_focus( GTK_WIDGET(button
) );
392 node
= node
->GetNext();
396 void wxRadioBox::SetSelection( int n
)
398 wxCHECK_RET( m_widget
!= NULL
, wxT("invalid radiobox") );
400 wxRadioBoxButtonsInfoList::compatibility_iterator node
= m_buttonsInfo
.Item( n
);
402 wxCHECK_RET( node
, wxT("radiobox wrong index") );
404 GtkToggleButton
*button
= GTK_TOGGLE_BUTTON( node
->GetData()->button
);
408 gtk_toggle_button_set_active( button
, 1 );
413 int wxRadioBox::GetSelection(void) const
415 wxCHECK_MSG( m_widget
!= NULL
, wxNOT_FOUND
, wxT("invalid radiobox") );
419 wxRadioBoxButtonsInfoList::compatibility_iterator node
= m_buttonsInfo
.GetFirst();
422 GtkToggleButton
*button
= GTK_TOGGLE_BUTTON( node
->GetData()->button
);
423 if (button
->active
) return count
;
425 node
= node
->GetNext();
428 wxFAIL_MSG( wxT("wxRadioBox none selected") );
433 wxString
wxRadioBox::GetString(unsigned int n
) const
435 wxCHECK_MSG( m_widget
!= NULL
, wxEmptyString
, wxT("invalid radiobox") );
437 wxRadioBoxButtonsInfoList::compatibility_iterator node
= m_buttonsInfo
.Item( n
);
439 wxCHECK_MSG( node
, wxEmptyString
, wxT("radiobox wrong index") );
441 GtkLabel
*label
= GTK_LABEL(GTK_BIN(node
->GetData()->button
)->child
);
443 wxString
str( wxGTK_CONV_BACK( gtk_label_get_text(label
) ) );
448 void wxRadioBox::SetLabel( const wxString
& label
)
450 wxCHECK_RET( m_widget
!= NULL
, wxT("invalid radiobox") );
452 GTKSetLabelForFrame(GTK_FRAME(m_widget
), label
);
455 void wxRadioBox::SetString(unsigned int item
, const wxString
& label
)
457 wxCHECK_RET( m_widget
!= NULL
, wxT("invalid radiobox") );
459 wxRadioBoxButtonsInfoList::compatibility_iterator node
= m_buttonsInfo
.Item( item
);
461 wxCHECK_RET( node
, wxT("radiobox wrong index") );
463 GtkLabel
*g_label
= GTK_LABEL(GTK_BIN(node
->GetData()->button
)->child
);
465 gtk_label_set_text( g_label
, wxGTK_CONV( label
) );
468 bool wxRadioBox::Enable( bool enable
)
470 if ( !wxControl::Enable( enable
) )
473 wxRadioBoxButtonsInfoList::compatibility_iterator node
= m_buttonsInfo
.GetFirst();
476 GtkButton
*button
= GTK_BUTTON( node
->GetData()->button
);
477 GtkLabel
*label
= GTK_LABEL(GTK_BIN(button
)->child
);
479 gtk_widget_set_sensitive( GTK_WIDGET(button
), enable
);
480 gtk_widget_set_sensitive( GTK_WIDGET(label
), enable
);
481 node
= node
->GetNext();
487 bool wxRadioBox::Enable(unsigned int item
, bool enable
)
489 wxCHECK_MSG( m_widget
!= NULL
, false, wxT("invalid radiobox") );
491 wxRadioBoxButtonsInfoList::compatibility_iterator node
= m_buttonsInfo
.Item( item
);
493 wxCHECK_MSG( node
, false, wxT("radiobox wrong index") );
495 GtkButton
*button
= GTK_BUTTON( node
->GetData()->button
);
496 GtkLabel
*label
= GTK_LABEL(GTK_BIN(button
)->child
);
498 gtk_widget_set_sensitive( GTK_WIDGET(button
), enable
);
499 gtk_widget_set_sensitive( GTK_WIDGET(label
), enable
);
504 bool wxRadioBox::IsItemEnabled(unsigned int item
) const
506 wxCHECK_MSG( m_widget
!= NULL
, false, wxT("invalid radiobox") );
508 wxRadioBoxButtonsInfoList::compatibility_iterator node
= m_buttonsInfo
.Item( item
);
510 wxCHECK_MSG( node
, false, wxT("radiobox wrong index") );
512 GtkButton
*button
= GTK_BUTTON( node
->GetData()->button
);
514 // don't use GTK_WIDGET_IS_SENSITIVE() here, we want to return true even if
515 // the parent radiobox is disabled
516 return GTK_WIDGET_SENSITIVE(GTK_WIDGET(button
));
519 bool wxRadioBox::Show(unsigned int item
, bool show
)
521 wxCHECK_MSG( m_widget
!= NULL
, false, wxT("invalid radiobox") );
523 wxRadioBoxButtonsInfoList::compatibility_iterator node
= m_buttonsInfo
.Item( item
);
525 wxCHECK_MSG( node
, false, wxT("radiobox wrong index") );
527 GtkWidget
*button
= GTK_WIDGET( node
->GetData()->button
);
530 gtk_widget_show( button
);
532 gtk_widget_hide( button
);
537 bool wxRadioBox::IsItemShown(unsigned int item
) const
539 wxCHECK_MSG( m_widget
!= NULL
, false, wxT("invalid radiobox") );
541 wxRadioBoxButtonsInfoList::compatibility_iterator node
= m_buttonsInfo
.Item( item
);
543 wxCHECK_MSG( node
, false, wxT("radiobox wrong index") );
545 GtkButton
*button
= GTK_BUTTON( node
->GetData()->button
);
547 return GTK_WIDGET_VISIBLE(GTK_WIDGET(button
));
550 unsigned int wxRadioBox::GetCount() const
552 return m_buttonsInfo
.GetCount();
555 void wxRadioBox::GtkDisableEvents()
557 wxRadioBoxButtonsInfoList::compatibility_iterator node
= m_buttonsInfo
.GetFirst();
560 g_signal_handlers_disconnect_by_func (node
->GetData()->button
,
561 (gpointer
) gtk_radiobutton_clicked_callback
,
564 node
= node
->GetNext();
568 void wxRadioBox::GtkEnableEvents()
570 wxRadioBoxButtonsInfoList::compatibility_iterator node
= m_buttonsInfo
.GetFirst();
573 g_signal_connect (node
->GetData()->button
, "clicked",
574 G_CALLBACK (gtk_radiobutton_clicked_callback
), this);
576 node
= node
->GetNext();
580 void wxRadioBox::DoApplyWidgetStyle(GtkRcStyle
*style
)
582 GTKFrameApplyWidgetStyle(GTK_FRAME(m_widget
), style
);
584 wxRadioBoxButtonsInfoList::compatibility_iterator node
= m_buttonsInfo
.GetFirst();
587 GtkWidget
*widget
= GTK_WIDGET( node
->GetData()->button
);
589 gtk_widget_modify_style( widget
, style
);
590 gtk_widget_modify_style(GTK_BIN(widget
)->child
, style
);
592 node
= node
->GetNext();
596 bool wxRadioBox::GTKWidgetNeedsMnemonic() const
601 void wxRadioBox::GTKWidgetDoSetMnemonic(GtkWidget
* w
)
603 GTKFrameSetMnemonicWidget(GTK_FRAME(m_widget
), w
);
607 void wxRadioBox::ApplyToolTip(GtkTooltips
* WXUNUSED(tips
), const wxChar
*tip
)
609 // set this tooltip for all radiobuttons which don't have their own tips
611 for ( wxRadioBoxButtonsInfoList::compatibility_iterator node
= m_buttonsInfo
.GetFirst();
613 node
= node
->GetNext(), n
++ )
615 if ( !GetItemToolTip(n
) )
617 wxToolTip::Apply(GTK_WIDGET(node
->GetData()->button
),
618 wxConvCurrent
->cWX2MB(tip
));
623 void wxRadioBox::DoSetItemToolTip(unsigned int n
, wxToolTip
*tooltip
)
627 tooltip
= GetToolTip();
629 buf
= wxGTK_CONV(tooltip
->GetTip());
631 wxToolTip::Apply(GTK_WIDGET(m_buttonsInfo
[n
]->button
), buf
);
634 #endif // wxUSE_TOOLTIPS
636 GdkWindow
*wxRadioBox::GTKGetWindow(wxArrayGdkWindows
& windows
) const
638 windows
.push_back(m_widget
->window
);
640 wxRadioBoxButtonsInfoList::compatibility_iterator node
= m_buttonsInfo
.GetFirst();
643 GtkWidget
*button
= GTK_WIDGET( node
->GetData()->button
);
645 windows
.push_back(button
->window
);
647 node
= node
->GetNext();
653 void wxRadioBox::OnInternalIdle()
655 wxControl::OnInternalIdle();
662 wxFocusEvent
event( wxEVT_KILL_FOCUS
, GetId() );
663 event
.SetEventObject( this );
665 (void)GetEventHandler()->ProcessEvent( event
);
671 wxRadioBox::GetClassDefaultAttributes(wxWindowVariant
WXUNUSED(variant
))
673 wxVisualAttributes attr
;
674 // NB: we need toplevel window so that GTK+ can find the right style
675 GtkWidget
*wnd
= gtk_window_new(GTK_WINDOW_TOPLEVEL
);
676 GtkWidget
* widget
= gtk_radio_button_new_with_label(NULL
, "");
677 gtk_container_add(GTK_CONTAINER(wnd
), widget
);
678 attr
= GetDefaultAttributesFromGTKWidget(widget
);
679 gtk_widget_destroy(wnd
);
683 int wxRadioBox::GetItemFromPoint(const wxPoint
& point
) const
685 const wxPoint pt
= ScreenToClient(point
);
687 for ( wxRadioBoxButtonsInfoList::compatibility_iterator
688 node
= m_buttonsInfo
.GetFirst(); node
; node
= node
->GetNext(), n
++ )
690 if ( m_buttonsInfo
[n
]->rect
.Contains(pt
) )
697 #endif // wxUSE_RADIOBOX