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"
22 //-----------------------------------------------------------------------------
24 //-----------------------------------------------------------------------------
26 extern void wxapp_install_idle_handler();
29 //-----------------------------------------------------------------------------
31 //-----------------------------------------------------------------------------
33 extern bool g_blockEventsOnDrag
;
34 extern wxCursor g_globalCursor
;
36 //-----------------------------------------------------------------------------
38 //-----------------------------------------------------------------------------
41 void gtk_radiobutton_clicked_callback( GtkWidget
*WXUNUSED(widget
), wxRadioButton
*rb
)
43 if (g_isIdle
) wxapp_install_idle_handler();
45 if (!rb
->m_hasVMT
) return;
47 if (g_blockEventsOnDrag
) return;
49 wxCommandEvent
event( wxEVT_COMMAND_RADIOBUTTON_SELECTED
, rb
->GetId());
50 event
.SetInt( rb
->GetValue() );
51 event
.SetEventObject( rb
);
52 rb
->GetEventHandler()->ProcessEvent( event
);
55 //-----------------------------------------------------------------------------
57 //-----------------------------------------------------------------------------
59 IMPLEMENT_DYNAMIC_CLASS(wxRadioButton
,wxControl
)
61 bool wxRadioButton::Create( wxWindow
*parent
, wxWindowID id
, const wxString
& label
,
62 const wxPoint
& pos
, const wxSize
& size
, long style
,
63 const wxValidator
& validator
, const wxString
& name
)
65 m_acceptsFocus
= TRUE
;
67 m_isRadioButton
= TRUE
;
69 if (!PreCreation( parent
, pos
, size
) ||
70 !CreateBase( parent
, id
, pos
, size
, style
, validator
, name
))
72 wxFAIL_MSG( wxT("wxRadioButton creation failed") );
76 if (HasFlag(wxRB_GROUP
))
78 /* start a new group */
79 m_radioButtonGroup
= (GSList
*) NULL
;
83 /* search backward for last group start */
84 wxRadioButton
*chief
= (wxRadioButton
*) NULL
;
85 wxWindowList::Node
*node
= parent
->GetChildren().GetLast();
88 wxWindow
*child
= node
->GetData();
89 if (child
->m_isRadioButton
)
91 chief
= (wxRadioButton
*) child
;
92 if (child
->HasFlag(wxRB_GROUP
)) break;
94 node
= node
->GetPrevious();
98 /* we are part of the group started by chief */
99 m_radioButtonGroup
= gtk_radio_button_group( GTK_RADIO_BUTTON(chief
->m_widget
) );
103 /* start a new group */
104 m_radioButtonGroup
= (GSList
*) NULL
;
108 m_widget
= gtk_radio_button_new_with_label( m_radioButtonGroup
, label
.mbc_str() );
112 wxSize newSize
= size
;
113 if (newSize
.x
== -1) newSize
.x
= 22+gdk_string_measure( m_widget
->style
->font
, label
.mbc_str() );
114 if (newSize
.y
== -1) newSize
.y
= 26;
115 SetSize( newSize
.x
, newSize
.y
);
117 gtk_signal_connect( GTK_OBJECT(m_widget
), "clicked",
118 GTK_SIGNAL_FUNC(gtk_radiobutton_clicked_callback
), (gpointer
*)this );
120 m_parent
->DoAddChild( this );
124 SetBackgroundColour( parent
->GetBackgroundColour() );
125 SetForegroundColour( parent
->GetForegroundColour() );
126 SetFont( parent
->GetFont() );
133 void wxRadioButton::SetLabel( const wxString
& label
)
135 wxCHECK_RET( m_widget
!= NULL
, wxT("invalid radiobutton") );
137 wxControl::SetLabel( label
);
138 GtkButton
*bin
= GTK_BUTTON( m_widget
);
139 GtkLabel
*g_label
= GTK_LABEL( bin
->child
);
140 gtk_label_set( g_label
, GetLabel().mbc_str() );
143 void wxRadioButton::SetValue( bool val
)
145 wxCHECK_RET( m_widget
!= NULL
, wxT("invalid radiobutton") );
147 if (val
== GetValue())
150 gtk_signal_disconnect_by_func( GTK_OBJECT(m_widget
),
151 GTK_SIGNAL_FUNC(gtk_radiobutton_clicked_callback
), (gpointer
*)this );
155 gtk_toggle_button_set_state( GTK_TOGGLE_BUTTON(m_widget
), TRUE
);
159 // should give an assert
162 gtk_signal_connect( GTK_OBJECT(m_widget
), "clicked",
163 GTK_SIGNAL_FUNC(gtk_radiobutton_clicked_callback
), (gpointer
*)this );
166 bool wxRadioButton::GetValue() const
168 wxCHECK_MSG( m_widget
!= NULL
, FALSE
, wxT("invalid radiobutton") );
170 return GTK_TOGGLE_BUTTON(m_widget
)->active
;
173 bool wxRadioButton::Enable( bool enable
)
175 if ( !wxControl::Enable( enable
) )
178 gtk_widget_set_sensitive( GTK_BUTTON(m_widget
)->child
, enable
);
183 void wxRadioButton::ApplyWidgetStyle()
186 gtk_widget_set_style( m_widget
, m_widgetStyle
);
187 gtk_widget_set_style( GTK_BUTTON(m_widget
)->child
, m_widgetStyle
);
190 bool wxRadioButton::IsOwnGtkWindow( GdkWindow
*window
)
192 return (window
== GTK_TOGGLE_BUTTON(m_widget
)->event_window
);
195 void wxRadioButton::OnInternalIdle()
197 wxCursor cursor
= m_cursor
;
198 if (g_globalCursor
.Ok()) cursor
= g_globalCursor
;
200 if (GTK_TOGGLE_BUTTON(m_widget
)->event_window
&& cursor
.Ok())
202 /* I now set the cursor the anew in every OnInternalIdle call
203 as setting the cursor in a parent window also effects the
204 windows above so that checking for the current cursor is
207 gdk_window_set_cursor( GTK_TOGGLE_BUTTON(m_widget
)->event_window
, cursor
.GetCursor() );