]> git.saurik.com Git - wxWidgets.git/blame - src/gtk1/radiobut.cpp
Fix the off-by-one a little differently, and correct a refresh problem
[wxWidgets.git] / src / gtk1 / radiobut.cpp
CommitLineData
c801d85f
KB
1/////////////////////////////////////////////////////////////////////////////
2// Name: radiobut.cpp
3// Purpose:
4// Author: Robert Roebling
f96aa4d9
RR
5// Id: $Id$
6// Copyright: (c) 1998 Robert Roebling
e2762ff0 7// Licence: wxWindows licence
c801d85f
KB
8/////////////////////////////////////////////////////////////////////////////
9
10
14f355c2 11#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
c801d85f
KB
12#pragma implementation "radiobut.h"
13#endif
14
14f355c2
VS
15// For compilers that support precompilation, includes "wx.h".
16#include "wx/wxprec.h"
dcf924a3
RR
17
18#if wxUSE_RADIOBOX
19
1e6feb95
VZ
20#include "wx/radiobut.h"
21
9e691f46 22#include "wx/gtk/private.h"
c801d85f 23
acfd422a
RR
24//-----------------------------------------------------------------------------
25// idle system
26//-----------------------------------------------------------------------------
27
28extern void wxapp_install_idle_handler();
29extern bool g_isIdle;
30
6de97a3b
RR
31//-----------------------------------------------------------------------------
32// data
33//-----------------------------------------------------------------------------
34
d7fa7eaa
RR
35extern bool g_blockEventsOnDrag;
36extern wxCursor g_globalCursor;
37extern wxWindowGTK *g_delayedFocus;
6de97a3b
RR
38
39//-----------------------------------------------------------------------------
bb4549de 40// "clicked"
6de97a3b
RR
41//-----------------------------------------------------------------------------
42
bb4549de 43static
e2762ff0 44void gtk_radiobutton_clicked_callback( GtkToggleButton *button, wxRadioButton *rb )
6de97a3b 45{
acfd422a
RR
46 if (g_isIdle) wxapp_install_idle_handler();
47
a2053b27 48 if (!rb->m_hasVMT) return;
bb4549de 49
f5d29b39 50 if (g_blockEventsOnDrag) return;
6de97a3b 51
e2762ff0 52 if (!button->active) return;
9864c56d
RR
53
54 if (rb->m_blockEvent) return;
e2762ff0 55
f5d29b39
RR
56 wxCommandEvent event( wxEVT_COMMAND_RADIOBUTTON_SELECTED, rb->GetId());
57 event.SetInt( rb->GetValue() );
58 event.SetEventObject( rb );
59 rb->GetEventHandler()->ProcessEvent( event );
6de97a3b
RR
60}
61
bb4549de
RR
62//-----------------------------------------------------------------------------
63// wxRadioButton
64//-----------------------------------------------------------------------------
65
66IMPLEMENT_DYNAMIC_CLASS(wxRadioButton,wxControl)
67
2b4f3c9f
VZ
68bool wxRadioButton::Create( wxWindow *parent,
69 wxWindowID id,
70 const wxString& label,
71 const wxPoint& pos,
72 const wxSize& size,
73 long style,
74 const wxValidator& validator,
75 const wxString& name )
6de97a3b 76{
b292e2f5 77 m_acceptsFocus = TRUE;
f5d29b39 78 m_needParent = TRUE;
9864c56d
RR
79
80 m_blockEvent = FALSE;
6de97a3b 81
4dcaf11a
RR
82 if (!PreCreation( parent, pos, size ) ||
83 !CreateBase( parent, id, pos, size, style, validator, name ))
84 {
223d09f6 85 wxFAIL_MSG( wxT("wxRadioButton creation failed") );
9864c56d 86 return FALSE;
4dcaf11a 87 }
953704c1
RR
88
89 if (HasFlag(wxRB_GROUP))
90 {
9864c56d 91 // start a new group
953704c1
RR
92 m_radioButtonGroup = (GSList*) NULL;
93 }
94 else
95 {
9864c56d 96 // search backward for last group start
953704c1 97 wxRadioButton *chief = (wxRadioButton*) NULL;
222ed1d6 98 wxWindowList::compatibility_iterator node = parent->GetChildren().GetLast();
953704c1 99 while (node)
e2762ff0
RR
100 {
101 wxWindow *child = node->GetData();
2b4f3c9f 102 if (child->IsRadioButton())
e2762ff0
RR
103 {
104 chief = (wxRadioButton*) child;
2b4f3c9f
VZ
105 if (child->HasFlag(wxRB_GROUP))
106 break;
e2762ff0
RR
107 }
108 node = node->GetPrevious();
953704c1 109 }
e2762ff0
RR
110 if (chief)
111 {
9864c56d 112 // we are part of the group started by chief
e2762ff0
RR
113 m_radioButtonGroup = gtk_radio_button_group( GTK_RADIO_BUTTON(chief->m_widget) );
114 }
115 else
116 {
9864c56d 117 // start a new group
0544bc0a 118 m_radioButtonGroup = (GSList*) NULL;
e2762ff0 119 }
953704c1
RR
120 }
121
fab591c5 122 m_widget = gtk_radio_button_new_with_label( m_radioButtonGroup, wxGTK_CONV( label ) );
6de97a3b 123
f5d29b39 124 SetLabel(label);
6de97a3b 125
f5d29b39
RR
126 gtk_signal_connect( GTK_OBJECT(m_widget), "clicked",
127 GTK_SIGNAL_FUNC(gtk_radiobutton_clicked_callback), (gpointer*)this );
6de97a3b 128
f03fc89f 129 m_parent->DoAddChild( this );
6ca41e57 130
f5d29b39 131 PostCreation();
e8e24dfa 132 InheritAttributes();
db434467
RR
133
134 wxSize size_best( DoGetBestSize() );
135 wxSize new_size( size );
136 if (new_size.x == -1)
137 new_size.x = size_best.x;
138 if (new_size.y == -1)
139 new_size.y = size_best.y;
140 if ((new_size.x != size.x) || (new_size.y != size.y))
141 SetSize( new_size.x, new_size.y );
142
f5d29b39 143 Show( TRUE );
6de97a3b 144
f5d29b39 145 return TRUE;
6de97a3b
RR
146}
147
148void wxRadioButton::SetLabel( const wxString& label )
149{
223d09f6 150 wxCHECK_RET( m_widget != NULL, wxT("invalid radiobutton") );
f96aa4d9 151
f5d29b39 152 wxControl::SetLabel( label );
9e691f46 153 GtkLabel *g_label = GTK_LABEL( BUTTON_CHILD(m_widget) );
eaafd2f8
VS
154#ifdef __WXGTK20__
155 wxString label2 = PrepareLabelMnemonics( label );
156 gtk_label_set_text_with_mnemonic( g_label, wxGTK_CONV( label2 ) );
157#else
fab591c5 158 gtk_label_set( g_label, wxGTK_CONV( GetLabel() ) );
eaafd2f8 159#endif
6de97a3b
RR
160}
161
162void wxRadioButton::SetValue( bool val )
163{
223d09f6 164 wxCHECK_RET( m_widget != NULL, wxT("invalid radiobutton") );
f6bcfd97 165
953704c1 166 if (val == GetValue())
0659e7ee
RR
167 return;
168
9864c56d 169 m_blockEvent = TRUE;
953704c1 170
f5d29b39 171 if (val)
953704c1 172 {
e2762ff0 173 gtk_toggle_button_set_active( GTK_TOGGLE_BUTTON(m_widget), TRUE );
953704c1 174 }
f5d29b39 175 else
953704c1
RR
176 {
177 // should give an assert
f6bcfd97
BP
178 // RL - No it shouldn't. A wxGenericValidator might try to set it
179 // as FALSE. Failing silently is probably TRTTD here.
953704c1 180 }
f6bcfd97 181
9864c56d 182 m_blockEvent = FALSE;
6de97a3b
RR
183}
184
eb082a08 185bool wxRadioButton::GetValue() const
6de97a3b 186{
223d09f6 187 wxCHECK_MSG( m_widget != NULL, FALSE, wxT("invalid radiobutton") );
f96aa4d9 188
f5d29b39 189 return GTK_TOGGLE_BUTTON(m_widget)->active;
6de97a3b
RR
190}
191
f03fc89f 192bool wxRadioButton::Enable( bool enable )
d3904ceb 193{
f03fc89f
VZ
194 if ( !wxControl::Enable( enable ) )
195 return FALSE;
f96aa4d9 196
9e691f46 197 gtk_widget_set_sensitive( BUTTON_CHILD(m_widget), enable );
f03fc89f
VZ
198
199 return TRUE;
d3904ceb
RR
200}
201
58614078 202void wxRadioButton::ApplyWidgetStyle()
868a2826 203{
f5d29b39
RR
204 SetWidgetStyle();
205 gtk_widget_set_style( m_widget, m_widgetStyle );
9e691f46 206 gtk_widget_set_style( BUTTON_CHILD(m_widget), m_widgetStyle );
f96aa4d9 207}
dcf924a3 208
2f073eb2
RR
209bool wxRadioButton::IsOwnGtkWindow( GdkWindow *window )
210{
9e691f46 211 return window == TOGGLE_BUTTON_EVENT_WIN(m_widget);
2f073eb2
RR
212}
213
214void wxRadioButton::OnInternalIdle()
215{
216 wxCursor cursor = m_cursor;
217 if (g_globalCursor.Ok()) cursor = g_globalCursor;
218
9e691f46
VZ
219 GdkWindow *win = TOGGLE_BUTTON_EVENT_WIN(m_widget);
220 if ( win && cursor.Ok())
2f073eb2
RR
221 {
222 /* I now set the cursor the anew in every OnInternalIdle call
e2762ff0
RR
223 as setting the cursor in a parent window also effects the
224 windows above so that checking for the current cursor is
225 not possible. */
226
9e691f46 227 gdk_window_set_cursor( win, cursor.GetCursor() );
2f073eb2
RR
228 }
229
d7fa7eaa
RR
230 if (g_delayedFocus == this)
231 {
232 if (GTK_WIDGET_REALIZED(m_widget))
233 {
234 gtk_widget_grab_focus( m_widget );
235 g_delayedFocus = NULL;
236 }
237 }
238
e39af974
JS
239 if (wxUpdateUIEvent::CanUpdate(this))
240 UpdateWindowUI(wxUPDATE_UI_FROMIDLE);
2f073eb2
RR
241}
242
db434467
RR
243wxSize wxRadioButton::DoGetBestSize() const
244{
245 return wxControl::DoGetBestSize();
246}
247
dcf924a3 248#endif