]>
Commit | Line | Data |
---|---|---|
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 | ||
21 | extern bool g_blockEventsOnDrag; | |
22 | ||
23 | //----------------------------------------------------------------------------- | |
24 | // wxRadioButton | |
25 | //----------------------------------------------------------------------------- | |
26 | ||
27 | IMPLEMENT_DYNAMIC_CLASS(wxRadioButton,wxControl) | |
28 | ||
29 | static void gtk_radiobutton_clicked_callback( GtkWidget *WXUNUSED(widget), wxRadioButton *rb ) | |
30 | { | |
31 | if (!rb->HasVMT()) return; | |
32 | if (g_blockEventsOnDrag) return; | |
33 | ||
34 | wxCommandEvent event( wxEVT_COMMAND_RADIOBUTTON_SELECTED, rb->GetId()); | |
35 | event.SetInt( rb->GetValue() ); | |
36 | event.SetEventObject( rb ); | |
37 | rb->GetEventHandler()->ProcessEvent( event ); | |
38 | } | |
39 | ||
40 | bool wxRadioButton::Create( wxWindow *parent, wxWindowID id, const wxString& label, | |
41 | const wxPoint& pos, const wxSize& size, long style, | |
42 | const wxValidator& validator, const wxString& name ) | |
43 | { | |
44 | m_needParent = TRUE; | |
45 | ||
46 | wxSize newSize = size; | |
47 | ||
48 | PreCreation( parent, id, pos, newSize, style, name ); | |
49 | ||
50 | SetValidator( validator ); | |
51 | ||
c67daf87 | 52 | m_widget = gtk_radio_button_new_with_label( (GSList *) NULL, label ); |
6de97a3b RR |
53 | |
54 | SetLabel(label); | |
55 | ||
56 | if (newSize.x == -1) newSize.x = 22+gdk_string_measure( m_widget->style->font, label ); | |
57 | if (newSize.y == -1) newSize.y = 26; | |
58 | SetSize( newSize.x, newSize.y ); | |
59 | ||
60 | gtk_signal_connect( GTK_OBJECT(m_widget), "clicked", | |
61 | GTK_SIGNAL_FUNC(gtk_radiobutton_clicked_callback), (gpointer*)this ); | |
62 | ||
6ca41e57 RR |
63 | gtk_myfixed_put( GTK_MYFIXED(m_parent->m_wxwindow), m_widget, m_x, m_y ); |
64 | gtk_widget_set_usize( m_widget, m_width, m_height ); | |
65 | ||
6de97a3b RR |
66 | PostCreation(); |
67 | ||
58614078 RR |
68 | SetBackgroundColour( parent->GetBackgroundColour() ); |
69 | SetForegroundColour( parent->GetForegroundColour() ); | |
70 | ||
6de97a3b RR |
71 | Show( TRUE ); |
72 | ||
73 | return TRUE; | |
74 | } | |
75 | ||
76 | void wxRadioButton::SetLabel( const wxString& label ) | |
77 | { | |
f96aa4d9 RR |
78 | wxCHECK_RET( m_widget != NULL, "invalid radiobutton" ); |
79 | ||
6de97a3b RR |
80 | wxControl::SetLabel( label ); |
81 | GtkButton *bin = GTK_BUTTON( m_widget ); | |
82 | GtkLabel *g_label = GTK_LABEL( bin->child ); | |
83 | gtk_label_set( g_label, GetLabel() ); | |
84 | } | |
85 | ||
86 | void wxRadioButton::SetValue( bool val ) | |
87 | { | |
f96aa4d9 RR |
88 | wxCHECK_RET( m_widget != NULL, "invalid radiobutton" ); |
89 | ||
6de97a3b RR |
90 | gtk_toggle_button_set_state( GTK_TOGGLE_BUTTON(m_widget), val ); |
91 | } | |
92 | ||
93 | bool wxRadioButton::GetValue(void) const | |
94 | { | |
f96aa4d9 RR |
95 | wxCHECK_MSG( m_widget != NULL, FALSE, "invalid radiobutton" ); |
96 | ||
6de97a3b RR |
97 | return GTK_TOGGLE_BUTTON(m_widget)->active; |
98 | } | |
99 | ||
d3904ceb RR |
100 | void wxRadioButton::Enable( bool enable ) |
101 | { | |
f96aa4d9 RR |
102 | wxCHECK_RET( m_widget != NULL, "invalid radiobutton" ); |
103 | ||
d3904ceb | 104 | wxControl::Enable( enable ); |
f96aa4d9 RR |
105 | |
106 | gtk_widget_set_sensitive( GTK_BUTTON(m_widget)->child, enable ); | |
d3904ceb RR |
107 | } |
108 | ||
58614078 | 109 | void wxRadioButton::ApplyWidgetStyle() |
868a2826 | 110 | { |
58614078 RR |
111 | SetWidgetStyle(); |
112 | gtk_widget_set_style( m_widget, m_widgetStyle ); | |
a81258be | 113 | gtk_widget_set_style( GTK_BUTTON(m_widget)->child, m_widgetStyle ); |
f96aa4d9 RR |
114 | } |
115 | ||
6de97a3b | 116 |