]> git.saurik.com Git - wxWidgets.git/blame - src/gtk/radiobut.cpp
Tweaks needed to be able to build wxPython with wxGTK.
[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
c801d85f
KB
7// Licence: wxWindows licence
8/////////////////////////////////////////////////////////////////////////////
9
10
11#ifdef __GNUG__
12#pragma implementation "radiobut.h"
13#endif
14
15#include "wx/radiobut.h"
16
6de97a3b
RR
17//-----------------------------------------------------------------------------
18// data
19//-----------------------------------------------------------------------------
20
21extern bool g_blockEventsOnDrag;
22
23//-----------------------------------------------------------------------------
bb4549de 24// "clicked"
6de97a3b
RR
25//-----------------------------------------------------------------------------
26
bb4549de
RR
27static
28void gtk_radiobutton_clicked_callback( GtkWidget *WXUNUSED(widget), wxRadioButton *rb )
6de97a3b 29{
f5d29b39 30 if (!rb->HasVMT()) return;
bb4549de 31
f5d29b39
RR
32 if (rb->m_blockFirstEvent)
33 {
34 rb->m_blockFirstEvent = FALSE;
35 return;
36 }
bb4549de 37
f5d29b39 38 if (g_blockEventsOnDrag) return;
6de97a3b 39
f5d29b39
RR
40 wxCommandEvent event( wxEVT_COMMAND_RADIOBUTTON_SELECTED, rb->GetId());
41 event.SetInt( rb->GetValue() );
42 event.SetEventObject( rb );
43 rb->GetEventHandler()->ProcessEvent( event );
6de97a3b
RR
44}
45
bb4549de
RR
46//-----------------------------------------------------------------------------
47// wxRadioButton
48//-----------------------------------------------------------------------------
49
50IMPLEMENT_DYNAMIC_CLASS(wxRadioButton,wxControl)
51
6de97a3b
RR
52bool wxRadioButton::Create( wxWindow *parent, wxWindowID id, const wxString& label,
53 const wxPoint& pos, const wxSize& size, long style,
54 const wxValidator& validator, const wxString& name )
55{
f5d29b39 56 m_needParent = TRUE;
6de97a3b 57
f5d29b39 58 wxSize newSize = size;
6de97a3b 59
f5d29b39 60 PreCreation( parent, id, pos, newSize, style, name );
6de97a3b 61
f5d29b39 62 SetValidator( validator );
6de97a3b 63
f5d29b39 64 m_widget = gtk_radio_button_new_with_label( (GSList *) NULL, label );
6de97a3b 65
f5d29b39
RR
66 m_theOtherRadioButtton =
67 gtk_radio_button_new_with_label(
68 gtk_radio_button_group( GTK_RADIO_BUTTON(m_widget) ),
69 "button2" );
70
71 SetLabel(label);
6de97a3b 72
f5d29b39 73 m_blockFirstEvent = FALSE;
bb4549de 74
f5d29b39
RR
75 if (newSize.x == -1) newSize.x = 22+gdk_string_measure( m_widget->style->font, label );
76 if (newSize.y == -1) newSize.y = 26;
77 SetSize( newSize.x, newSize.y );
6de97a3b 78
f5d29b39
RR
79 gtk_signal_connect( GTK_OBJECT(m_widget), "clicked",
80 GTK_SIGNAL_FUNC(gtk_radiobutton_clicked_callback), (gpointer*)this );
6de97a3b 81
f5d29b39 82 m_parent->AddChild( this );
e6b5bded 83
f5d29b39 84 (m_parent->m_insertCallback)( m_parent, this );
6ca41e57 85
f5d29b39 86 PostCreation();
6de97a3b 87
f5d29b39
RR
88 SetBackgroundColour( parent->GetBackgroundColour() );
89 SetForegroundColour( parent->GetForegroundColour() );
58614078 90
f5d29b39 91 Show( TRUE );
6de97a3b 92
f5d29b39 93 return TRUE;
6de97a3b
RR
94}
95
96void wxRadioButton::SetLabel( const wxString& label )
97{
f5d29b39 98 wxCHECK_RET( m_widget != NULL, "invalid radiobutton" );
f96aa4d9 99
f5d29b39
RR
100 wxControl::SetLabel( label );
101 GtkButton *bin = GTK_BUTTON( m_widget );
102 GtkLabel *g_label = GTK_LABEL( bin->child );
103 gtk_label_set( g_label, GetLabel() );
6de97a3b
RR
104}
105
106void wxRadioButton::SetValue( bool val )
107{
f5d29b39 108 wxCHECK_RET( m_widget != NULL, "invalid radiobutton" );
f96aa4d9 109
f5d29b39 110 m_blockFirstEvent = TRUE;
ae0bdb01 111
f5d29b39
RR
112 if (val)
113 gtk_toggle_button_set_state( GTK_TOGGLE_BUTTON(m_widget), TRUE );
114 else
115 gtk_toggle_button_set_state( GTK_TOGGLE_BUTTON(m_theOtherRadioButtton), TRUE );
6de97a3b
RR
116}
117
118bool wxRadioButton::GetValue(void) const
119{
f5d29b39 120 wxCHECK_MSG( m_widget != NULL, FALSE, "invalid radiobutton" );
f96aa4d9 121
f5d29b39 122 return GTK_TOGGLE_BUTTON(m_widget)->active;
6de97a3b
RR
123}
124
d3904ceb
RR
125void wxRadioButton::Enable( bool enable )
126{
f5d29b39 127 wxCHECK_RET( m_widget != NULL, "invalid radiobutton" );
f96aa4d9 128
f5d29b39 129 wxControl::Enable( enable );
f96aa4d9 130
f5d29b39 131 gtk_widget_set_sensitive( GTK_BUTTON(m_widget)->child, enable );
d3904ceb
RR
132}
133
58614078 134void wxRadioButton::ApplyWidgetStyle()
868a2826 135{
f5d29b39
RR
136 SetWidgetStyle();
137 gtk_widget_set_style( m_widget, m_widgetStyle );
138 gtk_widget_set_style( GTK_BUTTON(m_widget)->child, m_widgetStyle );
f96aa4d9
RR
139}
140
6de97a3b 141