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"
17 //-----------------------------------------------------------------------------
19 //-----------------------------------------------------------------------------
21 extern bool g_blockEventsOnDrag
;
23 //-----------------------------------------------------------------------------
25 //-----------------------------------------------------------------------------
28 void gtk_radiobutton_clicked_callback( GtkWidget
*WXUNUSED(widget
), wxRadioButton
*rb
)
30 if (!rb
->HasVMT()) return;
32 if (rb
->m_blockFirstEvent
)
34 rb
->m_blockFirstEvent
= FALSE
;
38 if (g_blockEventsOnDrag
) return;
40 wxCommandEvent
event( wxEVT_COMMAND_RADIOBUTTON_SELECTED
, rb
->GetId());
41 event
.SetInt( rb
->GetValue() );
42 event
.SetEventObject( rb
);
43 rb
->GetEventHandler()->ProcessEvent( event
);
46 //-----------------------------------------------------------------------------
48 //-----------------------------------------------------------------------------
50 IMPLEMENT_DYNAMIC_CLASS(wxRadioButton
,wxControl
)
52 bool wxRadioButton::Create( wxWindow
*parent
, wxWindowID id
, const wxString
& label
,
53 const wxPoint
& pos
, const wxSize
& size
, long style
,
54 const wxValidator
& validator
, const wxString
& name
)
56 m_acceptsFocus
= TRUE
;
59 wxSize newSize
= size
;
61 PreCreation( parent
, id
, pos
, newSize
, style
, name
);
63 SetValidator( validator
);
65 m_widget
= gtk_radio_button_new_with_label( (GSList
*) NULL
, label
);
67 m_theOtherRadioButtton
=
68 gtk_radio_button_new_with_label(
69 gtk_radio_button_group( GTK_RADIO_BUTTON(m_widget
) ),
74 m_blockFirstEvent
= FALSE
;
76 if (newSize
.x
== -1) newSize
.x
= 22+gdk_string_measure( m_widget
->style
->font
, label
);
77 if (newSize
.y
== -1) newSize
.y
= 26;
78 SetSize( newSize
.x
, newSize
.y
);
80 gtk_signal_connect( GTK_OBJECT(m_widget
), "clicked",
81 GTK_SIGNAL_FUNC(gtk_radiobutton_clicked_callback
), (gpointer
*)this );
83 m_parent
->AddChild( this );
85 (m_parent
->m_insertCallback
)( m_parent
, this );
89 SetBackgroundColour( parent
->GetBackgroundColour() );
90 SetForegroundColour( parent
->GetForegroundColour() );
97 void wxRadioButton::SetLabel( const wxString
& label
)
99 wxCHECK_RET( m_widget
!= NULL
, "invalid radiobutton" );
101 wxControl::SetLabel( label
);
102 GtkButton
*bin
= GTK_BUTTON( m_widget
);
103 GtkLabel
*g_label
= GTK_LABEL( bin
->child
);
104 gtk_label_set( g_label
, GetLabel() );
107 void wxRadioButton::SetValue( bool val
)
109 wxCHECK_RET( m_widget
!= NULL
, "invalid radiobutton" );
111 m_blockFirstEvent
= TRUE
;
114 gtk_toggle_button_set_state( GTK_TOGGLE_BUTTON(m_widget
), TRUE
);
116 gtk_toggle_button_set_state( GTK_TOGGLE_BUTTON(m_theOtherRadioButtton
), TRUE
);
119 bool wxRadioButton::GetValue(void) const
121 wxCHECK_MSG( m_widget
!= NULL
, FALSE
, "invalid radiobutton" );
123 return GTK_TOGGLE_BUTTON(m_widget
)->active
;
126 void wxRadioButton::Enable( bool enable
)
128 wxCHECK_RET( m_widget
!= NULL
, "invalid radiobutton" );
130 wxControl::Enable( enable
);
132 gtk_widget_set_sensitive( GTK_BUTTON(m_widget
)->child
, enable
);
135 void wxRadioButton::ApplyWidgetStyle()
138 gtk_widget_set_style( m_widget
, m_widgetStyle
);
139 gtk_widget_set_style( GTK_BUTTON(m_widget
)->child
, m_widgetStyle
);