]>
Commit | Line | Data |
---|---|---|
1db8dc4a | 1 | ///////////////////////////////////////////////////////////////////////////// |
f1e01716 | 2 | // Name: src/gtk/tglbtn.cpp |
1db8dc4a VZ |
3 | // Purpose: Definition of the wxToggleButton class, which implements a |
4 | // toggle button under wxGTK. | |
5 | // Author: John Norris, minor changes by Axel Schlueter | |
6 | // Modified by: | |
7 | // Created: 08.02.01 | |
8 | // RCS-ID: $Id$ | |
9 | // Copyright: (c) 2000 Johnny C. Norris II | |
526954c5 | 10 | // Licence: wxWindows licence |
1db8dc4a VZ |
11 | ///////////////////////////////////////////////////////////////////////////// |
12 | ||
14f355c2 VS |
13 | // For compilers that support precompilation, includes "wx.h". |
14 | #include "wx/wxprec.h" | |
15 | ||
f1e01716 WS |
16 | #if wxUSE_TOGGLEBTN |
17 | ||
1db8dc4a VZ |
18 | #include "wx/tglbtn.h" |
19 | ||
f1e01716 WS |
20 | #ifndef WX_PRECOMP |
21 | #include "wx/button.h" | |
22 | #endif | |
1db8dc4a | 23 | |
9e691f46 | 24 | #include "wx/gtk/private.h" |
1db8dc4a | 25 | |
1db8dc4a | 26 | extern bool g_blockEventsOnDrag; |
1db8dc4a | 27 | |
865bb325 | 28 | extern "C" { |
9864c56d | 29 | static void gtk_togglebutton_clicked_callback(GtkWidget *WXUNUSED(widget), wxToggleButton *cb) |
1db8dc4a | 30 | { |
91af0895 WS |
31 | if (!cb->m_hasVMT || g_blockEventsOnDrag) |
32 | return; | |
33 | ||
91af0895 WS |
34 | // Generate a wx event. |
35 | wxCommandEvent event(wxEVT_COMMAND_TOGGLEBUTTON_CLICKED, cb->GetId()); | |
36 | event.SetInt(cb->GetValue()); | |
37 | event.SetEventObject(cb); | |
937013e0 | 38 | cb->HandleWindowEvent(event); |
1db8dc4a | 39 | } |
865bb325 | 40 | } |
1db8dc4a | 41 | |
9b11752c | 42 | wxDEFINE_EVENT( wxEVT_COMMAND_TOGGLEBUTTON_CLICKED, wxCommandEvent ); |
1db8dc4a | 43 | |
4f856067 | 44 | // ------------------------------------------------------------------------ |
10ff9c61 | 45 | // wxBitmapToggleButton |
4f856067 RR |
46 | // ------------------------------------------------------------------------ |
47 | ||
b4354db1 | 48 | IMPLEMENT_DYNAMIC_CLASS(wxBitmapToggleButton, wxToggleButton) |
4f856067 | 49 | |
10ff9c61 | 50 | bool wxBitmapToggleButton::Create(wxWindow *parent, wxWindowID id, |
b4354db1 | 51 | const wxBitmap &bitmap, const wxPoint &pos, |
4f856067 RR |
52 | const wxSize &size, long style, |
53 | const wxValidator& validator, | |
54 | const wxString &name) | |
55 | { | |
b4354db1 VZ |
56 | if ( !wxToggleButton::Create(parent, id, wxEmptyString, pos, size, style | wxBU_NOTEXT | wxBU_EXACTFIT, |
57 | validator, name) ) | |
91af0895 | 58 | return false; |
4f856067 | 59 | |
b4354db1 | 60 | if ( bitmap.IsOk() ) |
4f856067 | 61 | { |
b4354db1 | 62 | SetBitmapLabel(bitmap); |
4f856067 | 63 | |
b4354db1 VZ |
64 | // we need to adjust the size after setting the bitmap as it may be too |
65 | // big for the default button size | |
66 | SetInitialSize(size); | |
ad60f9e7 JS |
67 | } |
68 | ||
91af0895 | 69 | return true; |
4f856067 RR |
70 | } |
71 | ||
9d522606 | 72 | |
4f856067 RR |
73 | // ------------------------------------------------------------------------ |
74 | // wxToggleButton | |
75 | // ------------------------------------------------------------------------ | |
76 | ||
77 | IMPLEMENT_DYNAMIC_CLASS(wxToggleButton, wxControl) | |
78 | ||
1db8dc4a VZ |
79 | bool wxToggleButton::Create(wxWindow *parent, wxWindowID id, |
80 | const wxString &label, const wxPoint &pos, | |
81 | const wxSize &size, long style, | |
82 | const wxValidator& validator, | |
83 | const wxString &name) | |
84 | { | |
91af0895 | 85 | if (!PreCreation(parent, pos, size) || |
e338053c PC |
86 | !CreateBase(parent, id, pos, size, style, validator, name )) |
87 | { | |
91af0895 WS |
88 | wxFAIL_MSG(wxT("wxToggleButton creation failed")); |
89 | return false; | |
90 | } | |
1db8dc4a | 91 | |
b4354db1 VZ |
92 | // create either a standard toggle button with text label (which may still contain |
93 | // an image under GTK+ 2.6+) or a bitmap-only toggle button if we don't have any | |
94 | // label | |
95 | const bool | |
96 | useLabel = !(style & wxBU_NOTEXT) && !label.empty(); | |
97 | if ( useLabel ) | |
98 | { | |
99 | m_widget = gtk_toggle_button_new_with_mnemonic(""); | |
100 | } | |
101 | else // no label, suppose we will have a bitmap | |
102 | { | |
103 | m_widget = gtk_toggle_button_new(); | |
104 | ||
105 | GtkWidget *image = gtk_image_new(); | |
106 | gtk_widget_show(image); | |
107 | gtk_container_add(GTK_CONTAINER(m_widget), image); | |
108 | } | |
109 | ||
9ff9d30c | 110 | g_object_ref(m_widget); |
ecf3b4a5 | 111 | |
b4354db1 VZ |
112 | if ( useLabel ) |
113 | SetLabel(label); | |
1db8dc4a | 114 | |
9fa72bd2 MR |
115 | g_signal_connect (m_widget, "clicked", |
116 | G_CALLBACK (gtk_togglebutton_clicked_callback), | |
117 | this); | |
1db8dc4a | 118 | |
91af0895 | 119 | m_parent->DoAddChild(this); |
1db8dc4a | 120 | |
91af0895 WS |
121 | PostCreation(size); |
122 | ||
123 | return true; | |
1db8dc4a VZ |
124 | } |
125 | ||
c71ab7c1 RR |
126 | void wxToggleButton::GTKDisableEvents() |
127 | { | |
128 | g_signal_handlers_block_by_func(m_widget, | |
129 | (gpointer) gtk_togglebutton_clicked_callback, this); | |
130 | } | |
131 | ||
132 | void wxToggleButton::GTKEnableEvents() | |
133 | { | |
134 | g_signal_handlers_unblock_by_func(m_widget, | |
135 | (gpointer) gtk_togglebutton_clicked_callback, this); | |
136 | } | |
137 | ||
1db8dc4a VZ |
138 | // void SetValue(bool state) |
139 | // Set the value of the toggle button. | |
140 | void wxToggleButton::SetValue(bool state) | |
141 | { | |
91af0895 | 142 | wxCHECK_RET(m_widget != NULL, wxT("invalid toggle button")); |
1db8dc4a | 143 | |
91af0895 WS |
144 | if (state == GetValue()) |
145 | return; | |
1db8dc4a | 146 | |
5e53c1c2 | 147 | GTKDisableEvents(); |
1db8dc4a | 148 | |
91af0895 | 149 | gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(m_widget), state); |
1db8dc4a | 150 | |
5e53c1c2 | 151 | GTKEnableEvents(); |
1db8dc4a VZ |
152 | } |
153 | ||
154 | // bool GetValue() const | |
155 | // Get the value of the toggle button. | |
156 | bool wxToggleButton::GetValue() const | |
157 | { | |
91af0895 | 158 | wxCHECK_MSG(m_widget != NULL, false, wxT("invalid toggle button")); |
1db8dc4a | 159 | |
385e8575 | 160 | return gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(m_widget)) != 0; |
1db8dc4a VZ |
161 | } |
162 | ||
1db8dc4a VZ |
163 | void wxToggleButton::SetLabel(const wxString& label) |
164 | { | |
8ab696e0 | 165 | wxCHECK_RET(m_widget != NULL, wxT("invalid toggle button")); |
1db8dc4a | 166 | |
b4354db1 | 167 | wxAnyButton::SetLabel(label); |
1db8dc4a | 168 | |
ecf3b4a5 RR |
169 | const wxString labelGTK = GTKConvertMnemonics(label); |
170 | ||
171 | gtk_button_set_label(GTK_BUTTON(m_widget), wxGTK_CONV(labelGTK)); | |
172 | ||
496e7ec6 | 173 | GTKApplyWidgetStyle( false ); |
1db8dc4a VZ |
174 | } |
175 | ||
b4354db1 VZ |
176 | #if wxUSE_MARKUP |
177 | bool wxToggleButton::DoSetLabelMarkup(const wxString& markup) | |
1db8dc4a | 178 | { |
b4354db1 VZ |
179 | wxCHECK_MSG( m_widget != NULL, false, "invalid toggle button" ); |
180 | ||
181 | const wxString stripped = RemoveMarkup(markup); | |
182 | if ( stripped.empty() && !markup.empty() ) | |
91af0895 | 183 | return false; |
1db8dc4a | 184 | |
b4354db1 VZ |
185 | wxControl::SetLabel(stripped); |
186 | ||
187 | GtkLabel * const label = GTKGetLabel(); | |
188 | wxCHECK_MSG( label, false, "no label in this toggle button?" ); | |
1db8dc4a | 189 | |
b4354db1 | 190 | GTKSetLabelWithMarkupForLabel(label, markup); |
ad60f9e7 | 191 | |
91af0895 | 192 | return true; |
1db8dc4a | 193 | } |
b4354db1 | 194 | #endif // wxUSE_MARKUP |
1db8dc4a | 195 | |
b4354db1 | 196 | GtkLabel *wxToggleButton::GTKGetLabel() const |
1db8dc4a | 197 | { |
b4354db1 VZ |
198 | GtkWidget* child = gtk_bin_get_child(GTK_BIN(m_widget)); |
199 | return GTK_LABEL(child); | |
1db8dc4a VZ |
200 | } |
201 | ||
b4354db1 | 202 | void wxToggleButton::DoApplyWidgetStyle(GtkRcStyle *style) |
1db8dc4a | 203 | { |
b4354db1 VZ |
204 | gtk_widget_modify_style(m_widget, style); |
205 | gtk_widget_modify_style(gtk_bin_get_child(GTK_BIN(m_widget)), style); | |
1db8dc4a VZ |
206 | } |
207 | ||
1db8dc4a VZ |
208 | // Get the "best" size for this control. |
209 | wxSize wxToggleButton::DoGetBestSize() const | |
210 | { | |
b4354db1 | 211 | wxSize ret(wxAnyButton::DoGetBestSize()); |
91af0895 | 212 | |
8ab696e0 RR |
213 | if (!HasFlag(wxBU_EXACTFIT)) |
214 | { | |
215 | if (ret.x < 80) ret.x = 80; | |
216 | } | |
91af0895 | 217 | |
9f884528 RD |
218 | CacheBestSize(ret); |
219 | return ret; | |
1db8dc4a VZ |
220 | } |
221 | ||
9d522606 RD |
222 | // static |
223 | wxVisualAttributes | |
224 | wxToggleButton::GetClassDefaultAttributes(wxWindowVariant WXUNUSED(variant)) | |
225 | { | |
226 | return GetDefaultAttributesFromGTKWidget(gtk_toggle_button_new); | |
227 | } | |
228 | ||
1db8dc4a | 229 | #endif // wxUSE_TOGGLEBTN |