1 /////////////////////////////////////////////////////////////////////////////
4 // Author: Robert Roebling
6 // Copyright: (c) 1998 Robert Roebling
7 // Licence: wxWindows licence
8 /////////////////////////////////////////////////////////////////////////////
11 #pragma implementation "radiobox.h"
14 #include "wx/radiobox.h"
18 #include "wx/dialog.h"
23 #include "wx/gtk/win_gtk.h"
25 //-----------------------------------------------------------------------------
27 //-----------------------------------------------------------------------------
29 extern void wxapp_install_idle_handler();
32 //-----------------------------------------------------------------------------
34 //-----------------------------------------------------------------------------
36 extern bool g_blockEventsOnDrag
;
38 //-----------------------------------------------------------------------------
40 //-----------------------------------------------------------------------------
42 static void gtk_radiobutton_clicked_callback( GtkWidget
*WXUNUSED(widget
), wxRadioBox
*rb
)
44 if (g_isIdle
) wxapp_install_idle_handler();
46 if (!rb
->m_hasVMT
) return;
47 if (g_blockEventsOnDrag
) return;
49 if (rb
->m_alreadySent
)
51 rb
->m_alreadySent
= FALSE
;
55 rb
->m_alreadySent
= TRUE
;
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 IMPLEMENT_DYNAMIC_CLASS(wxRadioBox
,wxControl
)
70 wxRadioBox::wxRadioBox()
74 bool wxRadioBox::Create( wxWindow
*parent
, wxWindowID id
, const wxString
& title
,
75 const wxPoint
&pos
, const wxSize
&size
,
76 int n
, const wxString choices
[], int majorDim
,
77 long style
, const wxValidator
& validator
,
78 const wxString
&name
)
80 m_alreadySent
= FALSE
;
82 m_acceptsFocus
= TRUE
;
84 if (!PreCreation( parent
, pos
, size
) ||
85 !CreateBase( parent
, id
, pos
, size
, style
, validator
, name
))
87 wxFAIL_MSG( wxT("wxRadioBox creation failed") );
91 m_widget
= gtk_frame_new( title
.mbc_str() );
93 m_majorDim
= majorDim
;
95 GtkRadioButton
*m_radio
= (GtkRadioButton
*) NULL
;
98 GSList
*radio_button_group
= (GSList
*) NULL
;
99 for (int i
= 0; i
< n
; i
++)
102 radio_button_group
= gtk_radio_button_group( GTK_RADIO_BUTTON(m_radio
) );
105 for ( const wxChar
*pc
= choices
[i
]; *pc
; pc
++ )
107 if ( *pc
!= wxT('&') )
111 m_radio
= GTK_RADIO_BUTTON( gtk_radio_button_new_with_label( radio_button_group
, label
.mbc_str() ) );
113 m_boxes
.Append( (wxObject
*) m_radio
);
115 ConnectWidget( GTK_WIDGET(m_radio
) );
117 if (!i
) gtk_toggle_button_set_state( GTK_TOGGLE_BUTTON(m_radio
), TRUE
);
119 gtk_signal_connect( GTK_OBJECT(m_radio
), "clicked",
120 GTK_SIGNAL_FUNC(gtk_radiobutton_clicked_callback
), (gpointer
*)this );
122 gtk_myfixed_put( GTK_MYFIXED(m_parent
->m_wxwindow
),
124 m_x
+10, m_y
+10+(i
*24), 10, 10 );
127 wxSize ls
= LayoutItems();
129 wxSize newSize
= size
;
130 if (newSize
.x
== -1) newSize
.x
= ls
.x
;
131 if (newSize
.y
== -1) newSize
.y
= ls
.y
;
132 SetSize( newSize
.x
, newSize
.y
);
134 m_parent
->DoAddChild( this );
140 SetBackgroundColour( parent
->GetBackgroundColour() );
141 SetForegroundColour( parent
->GetForegroundColour() );
142 SetFont( parent
->GetFont() );
149 wxRadioBox::~wxRadioBox()
151 wxNode
*node
= m_boxes
.First();
154 GtkWidget
*button
= GTK_WIDGET( node
->Data() );
155 gtk_widget_destroy( button
);
160 void wxRadioBox::DoSetSize( int x
, int y
, int width
, int height
, int sizeFlags
)
162 wxWindow::DoSetSize( x
, y
, width
, height
, sizeFlags
);
167 wxSize
wxRadioBox::LayoutItems()
172 if ( m_majorDim
== 0 )
174 // avoid dividing by 0 below
175 wxFAIL_MSG( wxT("dimension of radiobox should not be 0!") );
180 int num_per_major
= (m_boxes
.GetCount() - 1) / m_majorDim
+1;
186 if (HasFlag(wxRA_SPECIFY_COLS
))
188 num_of_cols
= m_majorDim
;
189 num_of_rows
= num_per_major
;
193 num_of_cols
= num_per_major
;
194 num_of_rows
= m_majorDim
;
197 if ( HasFlag(wxRA_SPECIFY_COLS
) ||
198 (HasFlag(wxRA_SPECIFY_ROWS
) && (num_of_cols
> 1)) )
200 for (int j
= 0; j
< num_of_cols
; j
++)
205 wxNode
*node
= m_boxes
.Nth( j
*num_of_rows
);
206 for (int i1
= 0; i1
< num_of_rows
; i1
++)
208 GtkWidget
*button
= GTK_WIDGET( node
->Data() );
209 GtkLabel
*label
= GTK_LABEL( GTK_BUTTON(button
)->child
);
210 GdkFont
*font
= m_widget
->style
->font
;
211 int len
= 22+gdk_string_measure( font
, label
->label
);
212 if (len
> max_len
) max_len
= len
;
214 gtk_myfixed_move( GTK_MYFIXED(m_parent
->m_wxwindow
), button
, m_x
+x
, m_y
+y
);
221 // we don't know the max_len before
223 node
= m_boxes
.Nth( j
*num_of_rows
);
224 for (int i2
= 0; i2
< num_of_rows
; i2
++)
226 GtkWidget
*button
= GTK_WIDGET( node
->Data() );
228 gtk_myfixed_resize( GTK_MYFIXED(m_parent
->m_wxwindow
), button
, max_len
, 20 );
234 if (y
> res
.y
) res
.y
= y
;
246 wxNode
*node
= m_boxes
.First();
249 GtkButton
*button
= GTK_BUTTON( node
->Data() );
250 GtkLabel
*label
= GTK_LABEL( button
->child
);
252 GdkFont
*font
= m_widget
->style
->font
;
253 int len
= 22+gdk_string_measure( font
, label
->label
);
254 if (len
> max
) max
= len
;
259 node
= m_boxes
.First();
262 GtkWidget
*button
= GTK_WIDGET( node
->Data() );
264 gtk_myfixed_set_size( GTK_MYFIXED(m_parent
->m_wxwindow
), button
, m_x
+x
, m_y
+y
, max
, 20 );
276 bool wxRadioBox::Show( bool show
)
278 wxCHECK_MSG( m_widget
!= NULL
, FALSE
, wxT("invalid radiobox") );
280 wxWindow::Show( show
);
282 if ((m_windowStyle
& wxNO_BORDER
) != 0)
283 gtk_widget_hide( m_widget
);
285 wxNode
*node
= m_boxes
.First();
288 GtkWidget
*button
= GTK_WIDGET( node
->Data() );
290 if (show
) gtk_widget_show( button
); else gtk_widget_hide( button
);
298 int wxRadioBox::FindString( const wxString
&s
) const
300 wxCHECK_MSG( m_widget
!= NULL
, -1, wxT("invalid radiobox") );
304 wxNode
*node
= m_boxes
.First();
307 GtkButton
*button
= GTK_BUTTON( node
->Data() );
309 GtkLabel
*label
= GTK_LABEL( button
->child
);
310 if (s
== label
->label
) return count
;
319 void wxRadioBox::SetFocus()
321 wxCHECK_RET( m_widget
!= NULL
, wxT("invalid radiobox") );
323 if (m_boxes
.GetCount() == 0) return;
325 wxNode
*node
= m_boxes
.First();
328 GtkToggleButton
*button
= GTK_TOGGLE_BUTTON( node
->Data() );
331 gtk_widget_grab_focus( GTK_WIDGET(button
) );
340 void wxRadioBox::SetSelection( int n
)
342 wxCHECK_RET( m_widget
!= NULL
, wxT("invalid radiobox") );
344 wxNode
*node
= m_boxes
.Nth( n
);
346 wxCHECK_RET( node
, wxT("radiobox wrong index") );
348 GtkToggleButton
*button
= GTK_TOGGLE_BUTTON( node
->Data() );
352 gtk_toggle_button_set_state( button
, 1 );
357 int wxRadioBox::GetSelection(void) const
359 wxCHECK_MSG( m_widget
!= NULL
, -1, wxT("invalid radiobox") );
363 wxNode
*node
= m_boxes
.First();
366 GtkToggleButton
*button
= GTK_TOGGLE_BUTTON( node
->Data() );
367 if (button
->active
) return count
;
372 wxFAIL_MSG( wxT("wxRadioBox none selected") );
377 wxString
wxRadioBox::GetString( int n
) const
379 wxCHECK_MSG( m_widget
!= NULL
, wxT(""), wxT("invalid radiobox") );
381 wxNode
*node
= m_boxes
.Nth( n
);
383 wxCHECK_MSG( node
, wxT(""), wxT("radiobox wrong index") );
385 GtkButton
*button
= GTK_BUTTON( node
->Data() );
386 GtkLabel
*label
= GTK_LABEL( button
->child
);
388 return wxString( label
->label
);
391 wxString
wxRadioBox::GetLabel( int item
) const
393 wxCHECK_MSG( m_widget
!= NULL
, wxT(""), wxT("invalid radiobox") );
395 return GetString( item
);
398 void wxRadioBox::SetLabel( const wxString
& label
)
400 wxCHECK_RET( m_widget
!= NULL
, wxT("invalid radiobox") );
402 wxControl::SetLabel( label
);
404 gtk_frame_set_label( GTK_FRAME(m_widget
), wxControl::GetLabel().mbc_str() );
407 void wxRadioBox::SetLabel( int item
, const wxString
& label
)
409 wxCHECK_RET( m_widget
!= NULL
, wxT("invalid radiobox") );
411 wxNode
*node
= m_boxes
.Nth( item
);
413 wxCHECK_RET( node
, wxT("radiobox wrong index") );
415 GtkButton
*button
= GTK_BUTTON( node
->Data() );
416 GtkLabel
*g_label
= GTK_LABEL( button
->child
);
418 gtk_label_set( g_label
, label
.mbc_str() );
421 void wxRadioBox::SetLabel( int WXUNUSED(item
), wxBitmap
*WXUNUSED(bitmap
) )
423 wxFAIL_MSG(wxT("wxRadioBox::SetLabel not implemented."));
426 bool wxRadioBox::Enable( bool enable
)
428 if ( !wxControl::Enable( enable
) )
431 wxNode
*node
= m_boxes
.First();
434 GtkButton
*button
= GTK_BUTTON( node
->Data() );
435 GtkWidget
*label
= button
->child
;
436 gtk_widget_set_sensitive( GTK_WIDGET(button
), enable
);
437 gtk_widget_set_sensitive( label
, enable
);
444 void wxRadioBox::Enable( int item
, bool enable
)
446 wxCHECK_RET( m_widget
!= NULL
, wxT("invalid radiobox") );
448 wxNode
*node
= m_boxes
.Nth( item
);
450 wxCHECK_RET( node
, wxT("radiobox wrong index") );
452 GtkButton
*button
= GTK_BUTTON( node
->Data() );
453 GtkWidget
*label
= button
->child
;
454 gtk_widget_set_sensitive( GTK_WIDGET(button
), enable
);
455 gtk_widget_set_sensitive( label
, enable
);
458 void wxRadioBox::Show( int item
, bool show
)
460 wxCHECK_RET( m_widget
!= NULL
, wxT("invalid radiobox") );
462 wxNode
*node
= m_boxes
.Nth( item
);
464 wxCHECK_RET( node
, wxT("radiobox wrong index") );
466 GtkWidget
*button
= GTK_WIDGET( node
->Data() );
469 gtk_widget_show( button
);
471 gtk_widget_hide( button
);
474 wxString
wxRadioBox::GetStringSelection() const
476 wxCHECK_MSG( m_widget
!= NULL
, wxT(""), wxT("invalid radiobox") );
478 wxNode
*node
= m_boxes
.First();
481 GtkToggleButton
*button
= GTK_TOGGLE_BUTTON( node
->Data() );
484 GtkLabel
*label
= GTK_LABEL( GTK_BUTTON(button
)->child
);
490 wxFAIL_MSG( wxT("wxRadioBox none selected") );
494 bool wxRadioBox::SetStringSelection( const wxString
&s
)
496 wxCHECK_MSG( m_widget
!= NULL
, FALSE
, wxT("invalid radiobox") );
498 int res
= FindString( s
);
499 if (res
== -1) return FALSE
;
505 int wxRadioBox::Number() const
507 return m_boxes
.Number();
510 int wxRadioBox::GetNumberOfRowsOrCols() const
515 void wxRadioBox::SetNumberOfRowsOrCols( int WXUNUSED(n
) )
517 wxFAIL_MSG(wxT("wxRadioBox::SetNumberOfRowsOrCols not implemented."));
520 void wxRadioBox::DisableEvents()
522 wxNode
*node
= m_boxes
.First();
525 gtk_signal_disconnect_by_func( GTK_OBJECT(node
->Data()),
526 GTK_SIGNAL_FUNC(gtk_radiobutton_clicked_callback
), (gpointer
*)this );
532 void wxRadioBox::EnableEvents()
534 wxNode
*node
= m_boxes
.First();
537 gtk_signal_connect( GTK_OBJECT(node
->Data()), "clicked",
538 GTK_SIGNAL_FUNC(gtk_radiobutton_clicked_callback
), (gpointer
*)this );
544 void wxRadioBox::ApplyWidgetStyle()
548 gtk_widget_set_style( m_widget
, m_widgetStyle
);
550 wxNode
*node
= m_boxes
.First();
553 GtkWidget
*widget
= GTK_WIDGET( node
->Data() );
554 gtk_widget_set_style( widget
, m_widgetStyle
);
556 GtkButton
*button
= GTK_BUTTON( node
->Data() );
557 gtk_widget_set_style( button
->child
, m_widgetStyle
);
563 bool wxRadioBox::IsOwnGtkWindow( GdkWindow
*window
)
565 if (window
== m_widget
->window
) return TRUE
;
567 wxNode
*node
= m_boxes
.First();
570 GtkWidget
*button
= GTK_WIDGET( node
->Data() );
572 if (window
== button
->window
) return TRUE
;