]>
Commit | Line | Data |
---|---|---|
c801d85f KB |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: radiobox.cpp | |
3 | // Purpose: | |
4 | // Author: Robert Roebling | |
f96aa4d9 RR |
5 | // Id: $Id$ |
6 | // Copyright: (c) 1998 Robert Roebling | |
29006414 | 7 | // Licence: wxWindows licence |
c801d85f KB |
8 | ///////////////////////////////////////////////////////////////////////////// |
9 | ||
c801d85f KB |
10 | #ifdef __GNUG__ |
11 | #pragma implementation "radiobox.h" | |
12 | #endif | |
13 | ||
1e6feb95 | 14 | #include "wx/defs.h" |
dcf924a3 RR |
15 | |
16 | #if wxUSE_RADIOBOX | |
17 | ||
1e6feb95 VZ |
18 | #include "wx/radiobox.h" |
19 | ||
c801d85f KB |
20 | #include "wx/dialog.h" |
21 | #include "wx/frame.h" | |
cc1fcb95 | 22 | #include "wx/log.h" |
83624f79 | 23 | |
9e691f46 | 24 | #include "wx/gtk/private.h" |
3f26799e RR |
25 | #include <gdk/gdkkeysyms.h> |
26 | ||
c801d85f KB |
27 | #include "wx/gtk/win_gtk.h" |
28 | ||
acfd422a RR |
29 | //----------------------------------------------------------------------------- |
30 | // idle system | |
31 | //----------------------------------------------------------------------------- | |
32 | ||
33 | extern void wxapp_install_idle_handler(); | |
34 | extern bool g_isIdle; | |
35 | ||
66bd6b93 RR |
36 | //----------------------------------------------------------------------------- |
37 | // data | |
38 | //----------------------------------------------------------------------------- | |
39 | ||
69ffe1d2 | 40 | extern bool g_blockEventsOnDrag; |
66bd6b93 | 41 | |
c801d85f | 42 | //----------------------------------------------------------------------------- |
b4071e91 | 43 | // "clicked" |
c801d85f KB |
44 | //----------------------------------------------------------------------------- |
45 | ||
e2762ff0 | 46 | static void gtk_radiobutton_clicked_callback( GtkToggleButton *button, wxRadioBox *rb ) |
c801d85f | 47 | { |
acfd422a RR |
48 | if (g_isIdle) wxapp_install_idle_handler(); |
49 | ||
a2053b27 | 50 | if (!rb->m_hasVMT) return; |
907789a0 | 51 | if (g_blockEventsOnDrag) return; |
29006414 | 52 | |
e2762ff0 | 53 | if (!button->active) return; |
29006414 | 54 | |
907789a0 RR |
55 | wxCommandEvent event( wxEVT_COMMAND_RADIOBOX_SELECTED, rb->GetId() ); |
56 | event.SetInt( rb->GetSelection() ); | |
29006414 | 57 | event.SetString( rb->GetStringSelection() ); |
907789a0 RR |
58 | event.SetEventObject( rb ); |
59 | rb->GetEventHandler()->ProcessEvent(event); | |
6de97a3b | 60 | } |
c801d85f | 61 | |
2e0e025e RR |
62 | //----------------------------------------------------------------------------- |
63 | // "key_press_event" | |
64 | //----------------------------------------------------------------------------- | |
65 | ||
66 | static gint gtk_radiobox_keypress_callback( GtkWidget *widget, GdkEventKey *gdk_event, wxRadioBox *rb ) | |
67 | { | |
68 | if (g_isIdle) | |
69 | wxapp_install_idle_handler(); | |
70 | ||
71 | if (!rb->m_hasVMT) return FALSE; | |
72 | if (g_blockEventsOnDrag) return FALSE; | |
73 | ||
74 | if ((gdk_event->keyval != GDK_Up) && | |
75 | (gdk_event->keyval != GDK_Down) && | |
76 | (gdk_event->keyval != GDK_Left) && | |
77 | (gdk_event->keyval != GDK_Right)) | |
78 | { | |
79 | return FALSE; | |
80 | } | |
2da61056 | 81 | |
2e0e025e RR |
82 | wxNode *node = rb->m_boxes.Find( (wxObject*) widget ); |
83 | if (!node) | |
84 | { | |
85 | return FALSE; | |
86 | } | |
2da61056 | 87 | |
2e0e025e | 88 | gtk_signal_emit_stop_by_name( GTK_OBJECT(widget), "key_press_event" ); |
2da61056 | 89 | |
2e0e025e RR |
90 | if ((gdk_event->keyval == GDK_Up) || |
91 | (gdk_event->keyval == GDK_Left)) | |
92 | { | |
93 | if (node == rb->m_boxes.First()) | |
2da61056 VZ |
94 | node = rb->m_boxes.Last(); |
95 | else | |
96 | node = node->Previous(); | |
2e0e025e RR |
97 | } |
98 | else | |
99 | { | |
100 | if (node == rb->m_boxes.Last()) | |
2da61056 VZ |
101 | node = rb->m_boxes.First(); |
102 | else | |
103 | node = node->Next(); | |
2e0e025e | 104 | } |
2da61056 | 105 | |
2e0e025e | 106 | GtkWidget *button = (GtkWidget*) node->Data(); |
2da61056 | 107 | |
2e0e025e | 108 | gtk_widget_grab_focus( button ); |
2da61056 | 109 | |
2e0e025e RR |
110 | return TRUE; |
111 | } | |
112 | ||
f6bcfd97 BP |
113 | static gint gtk_radiobutton_focus_in( GtkWidget *widget, |
114 | GdkEvent *WXUNUSED(event), | |
115 | wxRadioBox *win ) | |
116 | { | |
117 | if ( win->m_lostFocus ) | |
118 | { | |
119 | // no, we didn't really lose it | |
120 | win->m_lostFocus = FALSE; | |
121 | } | |
122 | else if ( !win->m_hasFocus ) | |
123 | { | |
124 | win->m_hasFocus = TRUE; | |
125 | ||
126 | wxFocusEvent event( wxEVT_SET_FOCUS, win->GetId() ); | |
127 | event.SetEventObject( win ); | |
128 | ||
129 | // never stop the signal emission, it seems to break the kbd handling | |
130 | // inside the radiobox | |
131 | (void)win->GetEventHandler()->ProcessEvent( event ); | |
132 | } | |
133 | ||
134 | return FALSE; | |
135 | } | |
136 | ||
137 | static gint gtk_radiobutton_focus_out( GtkWidget *widget, | |
138 | GdkEvent *WXUNUSED(event), | |
139 | wxRadioBox *win ) | |
140 | { | |
cc1fcb95 JS |
141 | // wxASSERT_MSG( win->m_hasFocus, _T("got focus out without any focus in?") ); |
142 | // Replace with a warning, else we dump core a lot! | |
143 | // if (!win->m_hasFocus) | |
144 | // wxLogWarning(_T("Radiobox got focus out without any focus in.") ); | |
f6bcfd97 BP |
145 | |
146 | // we might have lost the focus, but may be not - it may have just gone to | |
147 | // another button in the same radiobox, so we'll check for it in the next | |
148 | // idle iteration (leave m_hasFocus == TRUE for now) | |
149 | win->m_lostFocus = TRUE; | |
150 | ||
151 | return FALSE; | |
152 | } | |
153 | ||
b4071e91 RR |
154 | //----------------------------------------------------------------------------- |
155 | // wxRadioBox | |
c801d85f KB |
156 | //----------------------------------------------------------------------------- |
157 | ||
158 | IMPLEMENT_DYNAMIC_CLASS(wxRadioBox,wxControl) | |
159 | ||
f6bcfd97 | 160 | void wxRadioBox::Init() |
c801d85f | 161 | { |
f6bcfd97 BP |
162 | m_needParent = TRUE; |
163 | m_acceptsFocus = TRUE; | |
164 | ||
165 | m_hasFocus = | |
166 | m_lostFocus = FALSE; | |
6de97a3b | 167 | } |
c801d85f | 168 | |
debe6624 | 169 | bool wxRadioBox::Create( wxWindow *parent, wxWindowID id, const wxString& title, |
907789a0 | 170 | const wxPoint &pos, const wxSize &size, |
29006414 VZ |
171 | int n, const wxString choices[], int majorDim, |
172 | long style, const wxValidator& validator, | |
173 | const wxString &name ) | |
c801d85f | 174 | { |
4dcaf11a RR |
175 | if (!PreCreation( parent, pos, size ) || |
176 | !CreateBase( parent, id, pos, size, style, validator, name )) | |
177 | { | |
223d09f6 | 178 | wxFAIL_MSG( wxT("wxRadioBox creation failed") ); |
e2762ff0 | 179 | return FALSE; |
4dcaf11a | 180 | } |
6de97a3b | 181 | |
b019151f | 182 | m_widget = gtk_frame_new( title.mbc_str() ); |
29006414 | 183 | |
5eaac5b5 VZ |
184 | // majorDim may be 0 if all trailing parameters were omitted, so don't |
185 | // assert here but just use the correct value for it | |
186 | m_majorDim = majorDim == 0 ? n : majorDim; | |
29006414 | 187 | |
907789a0 | 188 | GtkRadioButton *m_radio = (GtkRadioButton*) NULL; |
29006414 | 189 | |
26333898 | 190 | wxString label; |
d3b4d113 RR |
191 | GSList *radio_button_group = (GSList *) NULL; |
192 | for (int i = 0; i < n; i++) | |
c801d85f | 193 | { |
26333898 VZ |
194 | if ( i != 0 ) |
195 | radio_button_group = gtk_radio_button_group( GTK_RADIO_BUTTON(m_radio) ); | |
29006414 | 196 | |
26333898 VZ |
197 | label.Empty(); |
198 | for ( const wxChar *pc = choices[i]; *pc; pc++ ) | |
199 | { | |
223d09f6 | 200 | if ( *pc != wxT('&') ) |
26333898 VZ |
201 | label += *pc; |
202 | } | |
203 | ||
204 | m_radio = GTK_RADIO_BUTTON( gtk_radio_button_new_with_label( radio_button_group, label.mbc_str() ) ); | |
29006414 | 205 | |
2e0e025e RR |
206 | gtk_signal_connect( GTK_OBJECT(m_radio), "key_press_event", |
207 | GTK_SIGNAL_FUNC(gtk_radiobox_keypress_callback), (gpointer)this ); | |
2da61056 | 208 | |
d3b4d113 | 209 | m_boxes.Append( (wxObject*) m_radio ); |
29006414 | 210 | |
d3b4d113 | 211 | ConnectWidget( GTK_WIDGET(m_radio) ); |
29006414 | 212 | |
d3b4d113 | 213 | if (!i) gtk_toggle_button_set_state( GTK_TOGGLE_BUTTON(m_radio), TRUE ); |
29006414 VZ |
214 | |
215 | gtk_signal_connect( GTK_OBJECT(m_radio), "clicked", | |
354aa1e3 | 216 | GTK_SIGNAL_FUNC(gtk_radiobutton_clicked_callback), (gpointer*)this ); |
29006414 | 217 | |
f6bcfd97 BP |
218 | gtk_signal_connect( GTK_OBJECT(m_radio), "focus_in_event", |
219 | GTK_SIGNAL_FUNC(gtk_radiobutton_focus_in), (gpointer)this ); | |
220 | ||
221 | gtk_signal_connect( GTK_OBJECT(m_radio), "focus_out_event", | |
222 | GTK_SIGNAL_FUNC(gtk_radiobutton_focus_out), (gpointer)this ); | |
223 | ||
da048e3d | 224 | gtk_pizza_put( GTK_PIZZA(m_parent->m_wxwindow), |
e3e717ec | 225 | GTK_WIDGET(m_radio), |
f03fc89f | 226 | m_x+10, m_y+10+(i*24), 10, 10 ); |
6de97a3b | 227 | } |
29006414 | 228 | |
db434467 RR |
229 | m_parent->DoAddChild( this ); |
230 | ||
231 | PostCreation(); | |
2da61056 | 232 | |
7e2b55cd | 233 | ApplyWidgetStyle(); |
db434467 | 234 | |
db434467 RR |
235 | SetLabel( title ); |
236 | ||
237 | SetFont( parent->GetFont() ); | |
238 | ||
d3b4d113 | 239 | wxSize ls = LayoutItems(); |
29006414 | 240 | |
a56fcaaf RR |
241 | GtkRequisition req; |
242 | req.width = 2; | |
243 | req.height = 2; | |
2afa14f2 | 244 | (* GTK_WIDGET_CLASS( GTK_OBJECT_GET_CLASS(m_widget) )->size_request ) (m_widget, &req ); |
a56fcaaf | 245 | if (req.width > ls.x) ls.x = req.width; |
2da61056 | 246 | |
907789a0 | 247 | wxSize newSize = size; |
d3b4d113 RR |
248 | if (newSize.x == -1) newSize.x = ls.x; |
249 | if (newSize.y == -1) newSize.y = ls.y; | |
907789a0 | 250 | SetSize( newSize.x, newSize.y ); |
29006414 | 251 | |
907789a0 RR |
252 | SetBackgroundColour( parent->GetBackgroundColour() ); |
253 | SetForegroundColour( parent->GetForegroundColour() ); | |
f96aa4d9 | 254 | |
907789a0 | 255 | Show( TRUE ); |
29006414 | 256 | |
907789a0 | 257 | return TRUE; |
6de97a3b | 258 | } |
c801d85f | 259 | |
f03fc89f | 260 | wxRadioBox::~wxRadioBox() |
d6d1892b | 261 | { |
907789a0 RR |
262 | wxNode *node = m_boxes.First(); |
263 | while (node) | |
264 | { | |
265 | GtkWidget *button = GTK_WIDGET( node->Data() ); | |
266 | gtk_widget_destroy( button ); | |
267 | node = node->Next(); | |
268 | } | |
d6d1892b RR |
269 | } |
270 | ||
54517652 | 271 | void wxRadioBox::DoSetSize( int x, int y, int width, int height, int sizeFlags ) |
3f659fd6 | 272 | { |
54517652 | 273 | wxWindow::DoSetSize( x, y, width, height, sizeFlags ); |
2da61056 | 274 | |
d3b4d113 RR |
275 | LayoutItems(); |
276 | } | |
277 | ||
278 | wxSize wxRadioBox::LayoutItems() | |
279 | { | |
bbe0af5b RR |
280 | int x = 7; |
281 | int y = 15; | |
29006414 | 282 | |
e3e717ec VZ |
283 | if ( m_majorDim == 0 ) |
284 | { | |
285 | // avoid dividing by 0 below | |
223d09f6 | 286 | wxFAIL_MSG( wxT("dimension of radiobox should not be 0!") ); |
e3e717ec VZ |
287 | |
288 | m_majorDim = 1; | |
289 | } | |
290 | ||
d3b4d113 | 291 | int num_per_major = (m_boxes.GetCount() - 1) / m_majorDim +1; |
29006414 | 292 | |
d3b4d113 | 293 | wxSize res( 0, 0 ); |
29006414 | 294 | |
e9158f7d RR |
295 | int num_of_cols = 0; |
296 | int num_of_rows = 0; | |
297 | if (HasFlag(wxRA_SPECIFY_COLS)) | |
d3b4d113 | 298 | { |
e9158f7d RR |
299 | num_of_cols = m_majorDim; |
300 | num_of_rows = num_per_major; | |
301 | } | |
302 | else | |
303 | { | |
304 | num_of_cols = num_per_major; | |
305 | num_of_rows = m_majorDim; | |
306 | } | |
2da61056 | 307 | |
e9158f7d RR |
308 | if ( HasFlag(wxRA_SPECIFY_COLS) || |
309 | (HasFlag(wxRA_SPECIFY_ROWS) && (num_of_cols > 1)) ) | |
310 | { | |
311 | for (int j = 0; j < num_of_cols; j++) | |
29006414 | 312 | { |
bbe0af5b | 313 | y = 15; |
29006414 | 314 | |
d3b4d113 | 315 | int max_len = 0; |
e9158f7d RR |
316 | wxNode *node = m_boxes.Nth( j*num_of_rows ); |
317 | for (int i1 = 0; i1< num_of_rows; i1++) | |
29006414 | 318 | { |
d3b4d113 | 319 | GtkWidget *button = GTK_WIDGET( node->Data() ); |
2da61056 | 320 | |
165b6ee0 VS |
321 | GtkRequisition req; |
322 | req.width = 2; | |
323 | req.height = 2; | |
2afa14f2 | 324 | (* GTK_WIDGET_CLASS( GTK_OBJECT_GET_CLASS(button) )->size_request ) |
165b6ee0 | 325 | (button, &req ); |
2da61056 | 326 | |
165b6ee0 | 327 | if (req.width > max_len) max_len = req.width; |
29006414 | 328 | |
da048e3d | 329 | gtk_pizza_move( GTK_PIZZA(m_parent->m_wxwindow), button, m_x+x, m_y+y ); |
165b6ee0 | 330 | y += req.height; |
29006414 VZ |
331 | |
332 | node = node->Next(); | |
333 | if (!node) break; | |
334 | } | |
335 | ||
336 | // we don't know the max_len before | |
337 | ||
e9158f7d RR |
338 | node = m_boxes.Nth( j*num_of_rows ); |
339 | for (int i2 = 0; i2< num_of_rows; i2++) | |
29006414 | 340 | { |
d3b4d113 | 341 | GtkWidget *button = GTK_WIDGET( node->Data() ); |
29006414 | 342 | |
da048e3d | 343 | gtk_pizza_resize( GTK_PIZZA(m_parent->m_wxwindow), button, max_len, 20 ); |
29006414 VZ |
344 | |
345 | node = node->Next(); | |
346 | if (!node) break; | |
347 | } | |
348 | ||
349 | if (y > res.y) res.y = y; | |
350 | ||
351 | x += max_len + 2; | |
d3b4d113 | 352 | } |
29006414 VZ |
353 | |
354 | res.x = x+4; | |
165b6ee0 | 355 | res.y += 4; |
e5403d7c | 356 | } |
d3b4d113 | 357 | else |
e5403d7c | 358 | { |
d3b4d113 RR |
359 | int max = 0; |
360 | ||
361 | wxNode *node = m_boxes.First(); | |
362 | while (node) | |
363 | { | |
165b6ee0 VS |
364 | GtkWidget *button = GTK_WIDGET( node->Data() ); |
365 | ||
366 | GtkRequisition req; | |
367 | req.width = 2; | |
368 | req.height = 2; | |
2afa14f2 | 369 | (* GTK_WIDGET_CLASS( GTK_OBJECT_GET_CLASS(button) )->size_request ) |
165b6ee0 | 370 | (button, &req ); |
29006414 | 371 | |
165b6ee0 | 372 | if (req.width > max) max = req.width; |
29006414 | 373 | |
d3b4d113 RR |
374 | node = node->Next(); |
375 | } | |
29006414 | 376 | |
d3b4d113 RR |
377 | node = m_boxes.First(); |
378 | while (node) | |
379 | { | |
380 | GtkWidget *button = GTK_WIDGET( node->Data() ); | |
29006414 | 381 | |
da048e3d | 382 | gtk_pizza_set_size( GTK_PIZZA(m_parent->m_wxwindow), button, m_x+x, m_y+y, max, 20 ); |
d3b4d113 | 383 | x += max; |
29006414 | 384 | |
d3b4d113 RR |
385 | node = node->Next(); |
386 | } | |
29006414 | 387 | res.x = x+4; |
3417c2cd | 388 | res.y = 40; |
e5403d7c | 389 | } |
29006414 | 390 | |
d3b4d113 | 391 | return res; |
3f659fd6 RR |
392 | } |
393 | ||
debe6624 | 394 | bool wxRadioBox::Show( bool show ) |
c801d85f | 395 | { |
223d09f6 | 396 | wxCHECK_MSG( m_widget != NULL, FALSE, wxT("invalid radiobox") ); |
29006414 | 397 | |
f96ac56a RR |
398 | if (!wxControl::Show(show)) |
399 | { | |
400 | // nothing to do | |
401 | return FALSE; | |
402 | } | |
c801d85f | 403 | |
ba2a0103 | 404 | if ((m_windowStyle & wxNO_BORDER) != 0) |
b0351fc9 | 405 | gtk_widget_hide( m_widget ); |
e3e717ec | 406 | |
907789a0 RR |
407 | wxNode *node = m_boxes.First(); |
408 | while (node) | |
409 | { | |
410 | GtkWidget *button = GTK_WIDGET( node->Data() ); | |
29006414 | 411 | |
907789a0 | 412 | if (show) gtk_widget_show( button ); else gtk_widget_hide( button ); |
29006414 | 413 | |
907789a0 RR |
414 | node = node->Next(); |
415 | } | |
c801d85f | 416 | |
907789a0 | 417 | return TRUE; |
6de97a3b | 418 | } |
c801d85f | 419 | |
47908e25 | 420 | int wxRadioBox::FindString( const wxString &s ) const |
c801d85f | 421 | { |
223d09f6 | 422 | wxCHECK_MSG( m_widget != NULL, -1, wxT("invalid radiobox") ); |
29006414 | 423 | |
907789a0 | 424 | int count = 0; |
29006414 | 425 | |
907789a0 RR |
426 | wxNode *node = m_boxes.First(); |
427 | while (node) | |
428 | { | |
9e691f46 VZ |
429 | GtkLabel *label = GTK_LABEL( BUTTON_CHILD(node->Data()) ); |
430 | if (s == label->label) | |
431 | return count; | |
29006414 | 432 | |
907789a0 | 433 | count++; |
29006414 | 434 | |
907789a0 RR |
435 | node = node->Next(); |
436 | } | |
29006414 | 437 | |
907789a0 | 438 | return -1; |
6de97a3b | 439 | } |
c801d85f | 440 | |
b292e2f5 RR |
441 | void wxRadioBox::SetFocus() |
442 | { | |
223d09f6 | 443 | wxCHECK_RET( m_widget != NULL, wxT("invalid radiobox") ); |
29006414 | 444 | |
b292e2f5 | 445 | if (m_boxes.GetCount() == 0) return; |
29006414 | 446 | |
b292e2f5 RR |
447 | wxNode *node = m_boxes.First(); |
448 | while (node) | |
449 | { | |
450 | GtkToggleButton *button = GTK_TOGGLE_BUTTON( node->Data() ); | |
451 | if (button->active) | |
29006414 | 452 | { |
b292e2f5 | 453 | gtk_widget_grab_focus( GTK_WIDGET(button) ); |
29006414 VZ |
454 | return; |
455 | } | |
b292e2f5 RR |
456 | node = node->Next(); |
457 | } | |
29006414 | 458 | |
b292e2f5 RR |
459 | } |
460 | ||
47908e25 | 461 | void wxRadioBox::SetSelection( int n ) |
c801d85f | 462 | { |
223d09f6 | 463 | wxCHECK_RET( m_widget != NULL, wxT("invalid radiobox") ); |
29006414 | 464 | |
907789a0 | 465 | wxNode *node = m_boxes.Nth( n ); |
29006414 | 466 | |
223d09f6 | 467 | wxCHECK_RET( node, wxT("radiobox wrong index") ); |
29006414 | 468 | |
907789a0 | 469 | GtkToggleButton *button = GTK_TOGGLE_BUTTON( node->Data() ); |
29006414 | 470 | |
72a7edf0 | 471 | GtkDisableEvents(); |
2da61056 | 472 | |
e2762ff0 | 473 | gtk_toggle_button_set_active( button, 1 ); |
2da61056 | 474 | |
72a7edf0 | 475 | GtkEnableEvents(); |
6de97a3b | 476 | } |
c801d85f KB |
477 | |
478 | int wxRadioBox::GetSelection(void) const | |
479 | { | |
223d09f6 | 480 | wxCHECK_MSG( m_widget != NULL, -1, wxT("invalid radiobox") ); |
29006414 | 481 | |
907789a0 | 482 | int count = 0; |
29006414 | 483 | |
907789a0 RR |
484 | wxNode *node = m_boxes.First(); |
485 | while (node) | |
486 | { | |
487 | GtkToggleButton *button = GTK_TOGGLE_BUTTON( node->Data() ); | |
488 | if (button->active) return count; | |
489 | count++; | |
490 | node = node->Next(); | |
491 | } | |
29006414 | 492 | |
223d09f6 | 493 | wxFAIL_MSG( wxT("wxRadioBox none selected") ); |
29006414 | 494 | |
907789a0 | 495 | return -1; |
6de97a3b | 496 | } |
c801d85f | 497 | |
47908e25 | 498 | wxString wxRadioBox::GetString( int n ) const |
c801d85f | 499 | { |
223d09f6 | 500 | wxCHECK_MSG( m_widget != NULL, wxT(""), wxT("invalid radiobox") ); |
29006414 | 501 | |
907789a0 | 502 | wxNode *node = m_boxes.Nth( n ); |
29006414 | 503 | |
223d09f6 | 504 | wxCHECK_MSG( node, wxT(""), wxT("radiobox wrong index") ); |
29006414 | 505 | |
9e691f46 | 506 | GtkLabel *label = GTK_LABEL( BUTTON_CHILD(node->Data()) ); |
29006414 | 507 | |
907789a0 | 508 | return wxString( label->label ); |
6de97a3b | 509 | } |
c801d85f | 510 | |
d3904ceb | 511 | void wxRadioBox::SetLabel( const wxString& label ) |
c801d85f | 512 | { |
223d09f6 | 513 | wxCHECK_RET( m_widget != NULL, wxT("invalid radiobox") ); |
29006414 | 514 | |
907789a0 | 515 | wxControl::SetLabel( label ); |
29006414 | 516 | |
b019151f | 517 | gtk_frame_set_label( GTK_FRAME(m_widget), wxControl::GetLabel().mbc_str() ); |
6de97a3b | 518 | } |
c801d85f | 519 | |
2da61056 | 520 | void wxRadioBox::SetString( int item, const wxString& label ) |
c801d85f | 521 | { |
223d09f6 | 522 | wxCHECK_RET( m_widget != NULL, wxT("invalid radiobox") ); |
29006414 | 523 | |
907789a0 | 524 | wxNode *node = m_boxes.Nth( item ); |
29006414 | 525 | |
223d09f6 | 526 | wxCHECK_RET( node, wxT("radiobox wrong index") ); |
29006414 | 527 | |
9e691f46 | 528 | GtkLabel *g_label = GTK_LABEL( BUTTON_CHILD(node->Data()) ); |
29006414 | 529 | |
b019151f | 530 | gtk_label_set( g_label, label.mbc_str() ); |
6de97a3b | 531 | } |
c801d85f | 532 | |
f03fc89f | 533 | bool wxRadioBox::Enable( bool enable ) |
c801d85f | 534 | { |
f03fc89f VZ |
535 | if ( !wxControl::Enable( enable ) ) |
536 | return FALSE; | |
29006414 | 537 | |
907789a0 RR |
538 | wxNode *node = m_boxes.First(); |
539 | while (node) | |
540 | { | |
541 | GtkButton *button = GTK_BUTTON( node->Data() ); | |
9e691f46 VZ |
542 | GtkLabel *label = GTK_LABEL( BUTTON_CHILD(button) ); |
543 | ||
907789a0 | 544 | gtk_widget_set_sensitive( GTK_WIDGET(button), enable ); |
9e691f46 | 545 | gtk_widget_set_sensitive( GTK_WIDGET(label), enable ); |
907789a0 RR |
546 | node = node->Next(); |
547 | } | |
f03fc89f VZ |
548 | |
549 | return TRUE; | |
6de97a3b | 550 | } |
c801d85f | 551 | |
d3904ceb | 552 | void wxRadioBox::Enable( int item, bool enable ) |
c801d85f | 553 | { |
223d09f6 | 554 | wxCHECK_RET( m_widget != NULL, wxT("invalid radiobox") ); |
29006414 | 555 | |
907789a0 | 556 | wxNode *node = m_boxes.Nth( item ); |
29006414 | 557 | |
223d09f6 | 558 | wxCHECK_RET( node, wxT("radiobox wrong index") ); |
29006414 | 559 | |
907789a0 | 560 | GtkButton *button = GTK_BUTTON( node->Data() ); |
9e691f46 VZ |
561 | GtkLabel *label = GTK_LABEL( BUTTON_CHILD(button) ); |
562 | ||
907789a0 | 563 | gtk_widget_set_sensitive( GTK_WIDGET(button), enable ); |
9e691f46 | 564 | gtk_widget_set_sensitive( GTK_WIDGET(label), enable ); |
6de97a3b | 565 | } |
c801d85f | 566 | |
d3904ceb | 567 | void wxRadioBox::Show( int item, bool show ) |
c801d85f | 568 | { |
223d09f6 | 569 | wxCHECK_RET( m_widget != NULL, wxT("invalid radiobox") ); |
29006414 | 570 | |
907789a0 | 571 | wxNode *node = m_boxes.Nth( item ); |
29006414 | 572 | |
223d09f6 | 573 | wxCHECK_RET( node, wxT("radiobox wrong index") ); |
29006414 | 574 | |
907789a0 | 575 | GtkWidget *button = GTK_WIDGET( node->Data() ); |
c801d85f | 576 | |
907789a0 RR |
577 | if (show) |
578 | gtk_widget_show( button ); | |
579 | else | |
580 | gtk_widget_hide( button ); | |
6de97a3b | 581 | } |
c801d85f | 582 | |
9c884972 | 583 | wxString wxRadioBox::GetStringSelection() const |
c801d85f | 584 | { |
223d09f6 | 585 | wxCHECK_MSG( m_widget != NULL, wxT(""), wxT("invalid radiobox") ); |
29006414 | 586 | |
907789a0 RR |
587 | wxNode *node = m_boxes.First(); |
588 | while (node) | |
c801d85f | 589 | { |
907789a0 RR |
590 | GtkToggleButton *button = GTK_TOGGLE_BUTTON( node->Data() ); |
591 | if (button->active) | |
592 | { | |
9e691f46 VZ |
593 | GtkLabel *label = GTK_LABEL( BUTTON_CHILD(node->Data()) ); |
594 | ||
907789a0 RR |
595 | return label->label; |
596 | } | |
597 | node = node->Next(); | |
6de97a3b | 598 | } |
29006414 | 599 | |
223d09f6 KB |
600 | wxFAIL_MSG( wxT("wxRadioBox none selected") ); |
601 | return wxT(""); | |
6de97a3b | 602 | } |
c801d85f | 603 | |
907789a0 | 604 | bool wxRadioBox::SetStringSelection( const wxString &s ) |
c801d85f | 605 | { |
223d09f6 | 606 | wxCHECK_MSG( m_widget != NULL, FALSE, wxT("invalid radiobox") ); |
29006414 | 607 | |
907789a0 RR |
608 | int res = FindString( s ); |
609 | if (res == -1) return FALSE; | |
610 | SetSelection( res ); | |
29006414 | 611 | |
907789a0 | 612 | return TRUE; |
6de97a3b | 613 | } |
c801d85f | 614 | |
2da61056 | 615 | int wxRadioBox::GetCount() const |
c801d85f | 616 | { |
907789a0 | 617 | return m_boxes.Number(); |
6de97a3b | 618 | } |
c801d85f | 619 | |
9c884972 | 620 | int wxRadioBox::GetNumberOfRowsOrCols() const |
c801d85f | 621 | { |
907789a0 | 622 | return 1; |
6de97a3b | 623 | } |
c801d85f | 624 | |
debe6624 | 625 | void wxRadioBox::SetNumberOfRowsOrCols( int WXUNUSED(n) ) |
c801d85f | 626 | { |
223d09f6 | 627 | wxFAIL_MSG(wxT("wxRadioBox::SetNumberOfRowsOrCols not implemented.")); |
6de97a3b | 628 | } |
c801d85f | 629 | |
72a7edf0 | 630 | void wxRadioBox::GtkDisableEvents() |
953704c1 RR |
631 | { |
632 | wxNode *node = m_boxes.First(); | |
633 | while (node) | |
634 | { | |
635 | gtk_signal_disconnect_by_func( GTK_OBJECT(node->Data()), | |
636 | GTK_SIGNAL_FUNC(gtk_radiobutton_clicked_callback), (gpointer*)this ); | |
637 | ||
2da61056 | 638 | node = node->Next(); |
953704c1 RR |
639 | } |
640 | } | |
641 | ||
72a7edf0 | 642 | void wxRadioBox::GtkEnableEvents() |
953704c1 RR |
643 | { |
644 | wxNode *node = m_boxes.First(); | |
645 | while (node) | |
646 | { | |
647 | gtk_signal_connect( GTK_OBJECT(node->Data()), "clicked", | |
648 | GTK_SIGNAL_FUNC(gtk_radiobutton_clicked_callback), (gpointer*)this ); | |
649 | ||
2da61056 | 650 | node = node->Next(); |
953704c1 RR |
651 | } |
652 | } | |
653 | ||
58614078 | 654 | void wxRadioBox::ApplyWidgetStyle() |
868a2826 | 655 | { |
907789a0 | 656 | SetWidgetStyle(); |
29006414 | 657 | |
907789a0 | 658 | gtk_widget_set_style( m_widget, m_widgetStyle ); |
29006414 | 659 | |
907789a0 RR |
660 | wxNode *node = m_boxes.First(); |
661 | while (node) | |
662 | { | |
663 | GtkWidget *widget = GTK_WIDGET( node->Data() ); | |
664 | gtk_widget_set_style( widget, m_widgetStyle ); | |
29006414 | 665 | |
9e691f46 | 666 | gtk_widget_set_style( BUTTON_CHILD(node->Data()), m_widgetStyle ); |
29006414 | 667 | |
907789a0 RR |
668 | node = node->Next(); |
669 | } | |
868a2826 | 670 | } |
b4071e91 | 671 | |
72a7edf0 RR |
672 | #if wxUSE_TOOLTIPS |
673 | void wxRadioBox::ApplyToolTip( GtkTooltips *tips, const wxChar *tip ) | |
674 | { | |
675 | wxNode *node = m_boxes.First(); | |
676 | while (node) | |
677 | { | |
678 | GtkWidget *widget = GTK_WIDGET( node->Data() ); | |
679 | gtk_tooltips_set_tip( tips, widget, wxConvCurrent->cWX2MB(tip), (gchar*) NULL ); | |
680 | node = node->Next(); | |
681 | } | |
682 | } | |
683 | #endif // wxUSE_TOOLTIPS | |
684 | ||
b4071e91 RR |
685 | bool wxRadioBox::IsOwnGtkWindow( GdkWindow *window ) |
686 | { | |
907789a0 | 687 | if (window == m_widget->window) return TRUE; |
29006414 | 688 | |
907789a0 RR |
689 | wxNode *node = m_boxes.First(); |
690 | while (node) | |
691 | { | |
692 | GtkWidget *button = GTK_WIDGET( node->Data() ); | |
29006414 | 693 | |
907789a0 | 694 | if (window == button->window) return TRUE; |
29006414 | 695 | |
907789a0 RR |
696 | node = node->Next(); |
697 | } | |
29006414 | 698 | |
907789a0 | 699 | return FALSE; |
b4071e91 | 700 | } |
dcf924a3 | 701 | |
f6bcfd97 BP |
702 | void wxRadioBox::OnInternalIdle() |
703 | { | |
704 | if ( m_lostFocus ) | |
705 | { | |
706 | m_hasFocus = FALSE; | |
707 | m_lostFocus = FALSE; | |
708 | ||
709 | wxFocusEvent event( wxEVT_KILL_FOCUS, GetId() ); | |
710 | event.SetEventObject( this ); | |
711 | ||
712 | (void)GetEventHandler()->ProcessEvent( event ); | |
713 | } | |
714 | } | |
715 | ||
716 | #endif // wxUSE_RADIOBOX | |
717 |