1 /////////////////////////////////////////////////////////////////////////////
4 // Author: Robert Roebling
6 // Copyright: (c) 1998 Robert Roebling
7 // Licence: wxWindows licence
8 /////////////////////////////////////////////////////////////////////////////
12 #pragma implementation "radiobut.h"
15 #include "wx/radiobut.h"
19 //-----------------------------------------------------------------------------
21 //-----------------------------------------------------------------------------
23 extern void wxapp_install_idle_handler();
26 //-----------------------------------------------------------------------------
28 //-----------------------------------------------------------------------------
30 extern bool g_blockEventsOnDrag
;
32 //-----------------------------------------------------------------------------
34 //-----------------------------------------------------------------------------
37 void gtk_radiobutton_clicked_callback( GtkWidget
*WXUNUSED(widget
), wxRadioButton
*rb
)
39 if (g_isIdle
) wxapp_install_idle_handler();
41 if (!rb
->m_hasVMT
) return;
43 if (rb
->m_blockFirstEvent
)
45 rb
->m_blockFirstEvent
= FALSE
;
49 if (g_blockEventsOnDrag
) return;
51 wxCommandEvent
event( wxEVT_COMMAND_RADIOBUTTON_SELECTED
, rb
->GetId());
52 event
.SetInt( rb
->GetValue() );
53 event
.SetEventObject( rb
);
54 rb
->GetEventHandler()->ProcessEvent( event
);
57 //-----------------------------------------------------------------------------
59 //-----------------------------------------------------------------------------
61 IMPLEMENT_DYNAMIC_CLASS(wxRadioButton
,wxControl
)
63 bool wxRadioButton::Create( wxWindow
*parent
, wxWindowID id
, const wxString
& label
,
64 const wxPoint
& pos
, const wxSize
& size
, long style
,
65 const wxValidator
& validator
, const wxString
& name
)
67 m_acceptsFocus
= TRUE
;
70 wxSize newSize
= size
;
72 PreCreation( parent
, id
, pos
, newSize
, style
, name
);
74 SetValidator( validator
);
76 m_widget
= gtk_radio_button_new_with_label( (GSList
*) NULL
, label
.mbc_str() );
78 m_theOtherRadioButtton
=
79 gtk_radio_button_new_with_label(
80 gtk_radio_button_group( GTK_RADIO_BUTTON(m_widget
) ),
85 m_blockFirstEvent
= FALSE
;
87 if (newSize
.x
== -1) newSize
.x
= 22+gdk_string_measure( m_widget
->style
->font
, label
.mbc_str() );
88 if (newSize
.y
== -1) newSize
.y
= 26;
89 SetSize( newSize
.x
, newSize
.y
);
91 gtk_signal_connect( GTK_OBJECT(m_widget
), "clicked",
92 GTK_SIGNAL_FUNC(gtk_radiobutton_clicked_callback
), (gpointer
*)this );
94 m_parent
->DoAddChild( this );
98 SetBackgroundColour( parent
->GetBackgroundColour() );
99 SetForegroundColour( parent
->GetForegroundColour() );
100 SetFont( parent
->GetFont() );
107 void wxRadioButton::SetLabel( const wxString
& label
)
109 wxCHECK_RET( m_widget
!= NULL
, _T("invalid radiobutton") );
111 wxControl::SetLabel( label
);
112 GtkButton
*bin
= GTK_BUTTON( m_widget
);
113 GtkLabel
*g_label
= GTK_LABEL( bin
->child
);
114 gtk_label_set( g_label
, GetLabel().mbc_str() );
117 void wxRadioButton::SetValue( bool val
)
119 wxCHECK_RET( m_widget
!= NULL
, _T("invalid radiobutton") );
121 if ( val
== GetValue() )
124 m_blockFirstEvent
= TRUE
;
127 gtk_toggle_button_set_state( GTK_TOGGLE_BUTTON(m_widget
), TRUE
);
129 gtk_toggle_button_set_state( GTK_TOGGLE_BUTTON(m_theOtherRadioButtton
), TRUE
);
132 bool wxRadioButton::GetValue() const
134 wxCHECK_MSG( m_widget
!= NULL
, FALSE
, _T("invalid radiobutton") );
136 return GTK_TOGGLE_BUTTON(m_widget
)->active
;
139 bool wxRadioButton::Enable( bool enable
)
141 if ( !wxControl::Enable( enable
) )
144 gtk_widget_set_sensitive( GTK_BUTTON(m_widget
)->child
, enable
);
149 void wxRadioButton::ApplyWidgetStyle()
152 gtk_widget_set_style( m_widget
, m_widgetStyle
);
153 gtk_widget_set_style( GTK_BUTTON(m_widget
)->child
, m_widgetStyle
);