]> git.saurik.com Git - wxWidgets.git/blame - src/gtk/radiobut.cpp
don't use gtk_notebook_insert_page() return value as some old GTK+ versions (the...
[wxWidgets.git] / src / gtk / 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
65571936 7// Licence: wxWindows licence
c801d85f
KB
8/////////////////////////////////////////////////////////////////////////////
9
14f355c2
VS
10// For compilers that support precompilation, includes "wx.h".
11#include "wx/wxprec.h"
dcf924a3 12
d968078a 13#if wxUSE_RADIOBTN
dcf924a3 14
1e6feb95
VZ
15#include "wx/radiobut.h"
16
9e691f46 17#include "wx/gtk/private.h"
c801d85f 18
6de97a3b
RR
19//-----------------------------------------------------------------------------
20// data
21//-----------------------------------------------------------------------------
22
d7fa7eaa 23extern bool g_blockEventsOnDrag;
6de97a3b
RR
24
25//-----------------------------------------------------------------------------
bb4549de 26// "clicked"
6de97a3b
RR
27//-----------------------------------------------------------------------------
28
865bb325 29extern "C" {
b2ff89d6 30static
e2762ff0 31void gtk_radiobutton_clicked_callback( GtkToggleButton *button, wxRadioButton *rb )
6de97a3b 32{
a2053b27 33 if (!rb->m_hasVMT) return;
b2ff89d6 34
f5d29b39 35 if (g_blockEventsOnDrag) return;
b2ff89d6 36
e2762ff0 37 if (!button->active) return;
b2ff89d6 38
f5d29b39
RR
39 wxCommandEvent event( wxEVT_COMMAND_RADIOBUTTON_SELECTED, rb->GetId());
40 event.SetInt( rb->GetValue() );
41 event.SetEventObject( rb );
937013e0 42 rb->HandleWindowEvent( event );
6de97a3b 43}
865bb325 44}
6de97a3b 45
bb4549de
RR
46//-----------------------------------------------------------------------------
47// wxRadioButton
48//-----------------------------------------------------------------------------
49
50IMPLEMENT_DYNAMIC_CLASS(wxRadioButton,wxControl)
b2ff89d6 51
2b4f3c9f
VZ
52bool wxRadioButton::Create( wxWindow *parent,
53 wxWindowID id,
54 const wxString& label,
55 const wxPoint& pos,
56 const wxSize& size,
57 long style,
58 const wxValidator& validator,
59 const wxString& name )
6de97a3b 60{
4dcaf11a
RR
61 if (!PreCreation( parent, pos, size ) ||
62 !CreateBase( parent, id, pos, size, style, validator, name ))
63 {
223d09f6 64 wxFAIL_MSG( wxT("wxRadioButton creation failed") );
e8375af8 65 return false;
4dcaf11a 66 }
953704c1 67
739b7529
DS
68 GSList* radioButtonGroup = NULL;
69 if (!HasFlag(wxRB_GROUP))
953704c1 70 {
9864c56d 71 // search backward for last group start
222ed1d6 72 wxWindowList::compatibility_iterator node = parent->GetChildren().GetLast();
d968078a 73 for (; node; node = node->GetPrevious())
e2762ff0
RR
74 {
75 wxWindow *child = node->GetData();
d968078a 76 if (child->HasFlag(wxRB_GROUP) && wxIsKindOf(child, wxRadioButton))
e2762ff0 77 {
d968078a
PC
78 radioButtonGroup = gtk_radio_button_get_group(
79 GTK_RADIO_BUTTON(child->m_widget));
80 break;
e2762ff0 81 }
e2762ff0 82 }
953704c1
RR
83 }
84
739b7529 85 m_widget = gtk_radio_button_new_with_label( radioButtonGroup, wxGTK_CONV( label ) );
b2ff89d6 86
f5d29b39 87 SetLabel(label);
6de97a3b 88
9fa72bd2
MR
89 g_signal_connect (m_widget, "clicked",
90 G_CALLBACK (gtk_radiobutton_clicked_callback), this);
b2ff89d6 91
f03fc89f 92 m_parent->DoAddChild( this );
b2ff89d6 93
abdeb9e7 94 PostCreation(size);
6de97a3b 95
d968078a 96 return true;
6de97a3b
RR
97}
98
99void wxRadioButton::SetLabel( const wxString& label )
100{
223d09f6 101 wxCHECK_RET( m_widget != NULL, wxT("invalid radiobutton") );
b2ff89d6 102
afa7bd1e 103 GTKSetLabelForLabel(GTK_LABEL(GTK_BIN(m_widget)->child), label);
6de97a3b
RR
104}
105
106void wxRadioButton::SetValue( bool val )
107{
223d09f6 108 wxCHECK_RET( m_widget != NULL, wxT("invalid radiobutton") );
f6bcfd97 109
953704c1 110 if (val == GetValue())
0659e7ee
RR
111 return;
112
d968078a
PC
113 g_signal_handlers_block_by_func(
114 m_widget, (void*)gtk_radiobutton_clicked_callback, this);
953704c1 115
f5d29b39 116 if (val)
953704c1 117 {
e2762ff0 118 gtk_toggle_button_set_active( GTK_TOGGLE_BUTTON(m_widget), TRUE );
953704c1 119 }
f5d29b39 120 else
953704c1
RR
121 {
122 // should give an assert
f6bcfd97
BP
123 // RL - No it shouldn't. A wxGenericValidator might try to set it
124 // as FALSE. Failing silently is probably TRTTD here.
953704c1 125 }
f6bcfd97 126
d968078a
PC
127 g_signal_handlers_unblock_by_func(
128 m_widget, (void*)gtk_radiobutton_clicked_callback, this);
6de97a3b
RR
129}
130
eb082a08 131bool wxRadioButton::GetValue() const
6de97a3b 132{
d968078a 133 wxCHECK_MSG( m_widget != NULL, false, wxT("invalid radiobutton") );
b2ff89d6 134
f5d29b39 135 return GTK_TOGGLE_BUTTON(m_widget)->active;
6de97a3b
RR
136}
137
f03fc89f 138bool wxRadioButton::Enable( bool enable )
d3904ceb 139{
f03fc89f 140 if ( !wxControl::Enable( enable ) )
d968078a 141 return false;
b2ff89d6 142
afa7bd1e 143 gtk_widget_set_sensitive(GTK_BIN(m_widget)->child, enable);
f03fc89f 144
d968078a 145 return true;
d3904ceb
RR
146}
147
f40fdaa3 148void wxRadioButton::DoApplyWidgetStyle(GtkRcStyle *style)
868a2826 149{
f40fdaa3 150 gtk_widget_modify_style(m_widget, style);
afa7bd1e 151 gtk_widget_modify_style(GTK_BIN(m_widget)->child, style);
f96aa4d9 152}
dcf924a3 153
ef5c70f9
VZ
154GdkWindow *
155wxRadioButton::GTKGetWindow(wxArrayGdkWindows& WXUNUSED(windows)) const
2f073eb2 156{
ef5c70f9 157 return GTK_BUTTON(m_widget)->event_window;
2f073eb2
RR
158}
159
9d522606
RD
160// static
161wxVisualAttributes
162wxRadioButton::GetClassDefaultAttributes(wxWindowVariant WXUNUSED(variant))
163{
164 wxVisualAttributes attr;
bc0eb46c
VS
165 // NB: we need toplevel window so that GTK+ can find the right style
166 GtkWidget *wnd = gtk_window_new(GTK_WINDOW_TOPLEVEL);
9d522606 167 GtkWidget* widget = gtk_radio_button_new_with_label(NULL, "");
bc0eb46c 168 gtk_container_add(GTK_CONTAINER(wnd), widget);
9d522606 169 attr = GetDefaultAttributesFromGTKWidget(widget);
bc0eb46c 170 gtk_widget_destroy(wnd);
9d522606
RD
171 return attr;
172}
173
174
dcf924a3 175#endif