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