]> git.saurik.com Git - wxWidgets.git/blame_incremental - src/gtk/tglbtn.cpp
Added wxInfoBar::AddButton().
[wxWidgets.git] / src / gtk / tglbtn.cpp
... / ...
CommitLineData
1/////////////////////////////////////////////////////////////////////////////
2// Name: src/gtk/tglbtn.cpp
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
10// License: wxWindows licence
11/////////////////////////////////////////////////////////////////////////////
12
13// For compilers that support precompilation, includes "wx.h".
14#include "wx/wxprec.h"
15
16#if wxUSE_TOGGLEBTN
17
18#include "wx/tglbtn.h"
19
20#ifndef WX_PRECOMP
21 #include "wx/button.h"
22#endif
23
24#include "wx/gtk/private.h"
25
26extern bool g_blockEventsOnDrag;
27
28extern "C" {
29static void gtk_togglebutton_clicked_callback(GtkWidget *WXUNUSED(widget), wxToggleButton *cb)
30{
31 if (!cb->m_hasVMT || g_blockEventsOnDrag)
32 return;
33
34 // Generate a wx event.
35 wxCommandEvent event(wxEVT_COMMAND_TOGGLEBUTTON_CLICKED, cb->GetId());
36 event.SetInt(cb->GetValue());
37 event.SetEventObject(cb);
38 cb->HandleWindowEvent(event);
39}
40}
41
42wxDEFINE_EVENT( wxEVT_COMMAND_TOGGLEBUTTON_CLICKED, wxCommandEvent );
43
44// ------------------------------------------------------------------------
45// wxBitmapToggleButton
46// ------------------------------------------------------------------------
47
48IMPLEMENT_DYNAMIC_CLASS(wxBitmapToggleButton, wxControl)
49
50bool wxBitmapToggleButton::Create(wxWindow *parent, wxWindowID id,
51 const wxBitmap &label, const wxPoint &pos,
52 const wxSize &size, long style,
53 const wxValidator& validator,
54 const wxString &name)
55{
56 if (!PreCreation(parent, pos, size) ||
57 !CreateBase(parent, id, pos, size, style, validator, name ))
58 {
59 wxFAIL_MSG(wxT("wxBitmapToggleButton creation failed"));
60 return false;
61 }
62
63 // Create the gtk widget.
64 m_widget = gtk_toggle_button_new();
65 g_object_ref(m_widget);
66
67 if (style & wxNO_BORDER)
68 gtk_button_set_relief( GTK_BUTTON(m_widget), GTK_RELIEF_NONE );
69
70 m_bitmap = label;
71 OnSetBitmap();
72
73 g_signal_connect (m_widget, "clicked",
74 G_CALLBACK (gtk_togglebutton_clicked_callback),
75 this);
76
77 m_parent->DoAddChild(this);
78
79 PostCreation(size);
80
81 return true;
82}
83
84void wxBitmapToggleButton::GTKDisableEvents()
85{
86 g_signal_handlers_block_by_func(m_widget,
87 (gpointer) gtk_togglebutton_clicked_callback, this);
88}
89
90void wxBitmapToggleButton::GTKEnableEvents()
91{
92 g_signal_handlers_unblock_by_func(m_widget,
93 (gpointer) gtk_togglebutton_clicked_callback, this);
94}
95
96// void SetValue(bool state)
97// Set the value of the toggle button.
98void wxBitmapToggleButton::SetValue(bool state)
99{
100 wxCHECK_RET(m_widget != NULL, wxT("invalid toggle button"));
101
102 if (state == GetValue())
103 return;
104
105 GTKDisableEvents();
106
107 gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(m_widget), state);
108
109 GTKEnableEvents();
110}
111
112// bool GetValue() const
113// Get the value of the toggle button.
114bool wxBitmapToggleButton::GetValue() const
115{
116 wxCHECK_MSG(m_widget != NULL, false, wxT("invalid toggle button"));
117
118 return gtk_toggle_button_get_active((GtkToggleButton*)m_widget);
119}
120
121void wxBitmapToggleButton::SetLabel(const wxBitmap& label)
122{
123 wxCHECK_RET(m_widget != NULL, wxT("invalid toggle button"));
124
125 m_bitmap = label;
126 InvalidateBestSize();
127
128 OnSetBitmap();
129}
130
131void wxBitmapToggleButton::OnSetBitmap()
132{
133 if (!m_bitmap.Ok()) return;
134
135 GtkWidget* image = ((GtkBin*)m_widget)->child;
136 if (image == NULL)
137 {
138 image = gtk_image_new();
139 gtk_widget_show(image);
140 gtk_container_add((GtkContainer*)m_widget, image);
141 }
142 // always use pixbuf, because pixmap mask does not
143 // work with disabled images in some themes
144 gtk_image_set_from_pixbuf((GtkImage*)image, m_bitmap.GetPixbuf());
145}
146
147bool wxBitmapToggleButton::Enable(bool enable /*=true*/)
148{
149 bool isEnabled = IsEnabled();
150
151 if (!wxControl::Enable(enable))
152 return false;
153
154 gtk_widget_set_sensitive(GTK_BIN(m_widget)->child, enable);
155
156 if (!isEnabled && enable)
157 {
158 GTKFixSensitivity();
159 }
160
161 return true;
162}
163
164void wxBitmapToggleButton::DoApplyWidgetStyle(GtkRcStyle *style)
165{
166 gtk_widget_modify_style(m_widget, style);
167 gtk_widget_modify_style(GTK_BIN(m_widget)->child, style);
168}
169
170GdkWindow *
171wxBitmapToggleButton::GTKGetWindow(wxArrayGdkWindows& WXUNUSED(windows)) const
172{
173 return GTK_BUTTON(m_widget)->event_window;
174}
175
176// Get the "best" size for this control.
177wxSize wxBitmapToggleButton::DoGetBestSize() const
178{
179 wxSize best;
180
181 if (m_bitmap.Ok())
182 {
183 int border = HasFlag(wxNO_BORDER) ? 4 : 10;
184 best.x = m_bitmap.GetWidth()+border;
185 best.y = m_bitmap.GetHeight()+border;
186 }
187 CacheBestSize(best);
188 return best;
189}
190
191
192// static
193wxVisualAttributes
194wxBitmapToggleButton::GetClassDefaultAttributes(wxWindowVariant WXUNUSED(variant))
195{
196 return GetDefaultAttributesFromGTKWidget(gtk_toggle_button_new);
197}
198
199
200// ------------------------------------------------------------------------
201// wxToggleButton
202// ------------------------------------------------------------------------
203
204IMPLEMENT_DYNAMIC_CLASS(wxToggleButton, wxControl)
205
206bool wxToggleButton::Create(wxWindow *parent, wxWindowID id,
207 const wxString &label, const wxPoint &pos,
208 const wxSize &size, long style,
209 const wxValidator& validator,
210 const wxString &name)
211{
212 if (!PreCreation(parent, pos, size) ||
213 !CreateBase(parent, id, pos, size, style, validator, name ))
214 {
215 wxFAIL_MSG(wxT("wxToggleButton creation failed"));
216 return false;
217 }
218
219 // Create the gtk widget.
220 m_widget = gtk_toggle_button_new_with_mnemonic("");
221 g_object_ref(m_widget);
222
223 SetLabel(label);
224
225 g_signal_connect (m_widget, "clicked",
226 G_CALLBACK (gtk_togglebutton_clicked_callback),
227 this);
228
229 m_parent->DoAddChild(this);
230
231 PostCreation(size);
232
233 return true;
234}
235
236void wxToggleButton::GTKDisableEvents()
237{
238 g_signal_handlers_block_by_func(m_widget,
239 (gpointer) gtk_togglebutton_clicked_callback, this);
240}
241
242void wxToggleButton::GTKEnableEvents()
243{
244 g_signal_handlers_unblock_by_func(m_widget,
245 (gpointer) gtk_togglebutton_clicked_callback, this);
246}
247
248// void SetValue(bool state)
249// Set the value of the toggle button.
250void wxToggleButton::SetValue(bool state)
251{
252 wxCHECK_RET(m_widget != NULL, wxT("invalid toggle button"));
253
254 if (state == GetValue())
255 return;
256
257 GTKDisableEvents();
258
259 gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(m_widget), state);
260
261 GTKEnableEvents();
262}
263
264// bool GetValue() const
265// Get the value of the toggle button.
266bool wxToggleButton::GetValue() const
267{
268 wxCHECK_MSG(m_widget != NULL, false, wxT("invalid toggle button"));
269
270 return GTK_TOGGLE_BUTTON(m_widget)->active;
271}
272
273void wxToggleButton::SetLabel(const wxString& label)
274{
275 wxCHECK_RET(m_widget != NULL, wxT("invalid toggle button"));
276
277 wxControl::SetLabel(label);
278
279 const wxString labelGTK = GTKConvertMnemonics(label);
280
281 gtk_button_set_label(GTK_BUTTON(m_widget), wxGTK_CONV(labelGTK));
282
283 GTKApplyWidgetStyle( false );
284}
285
286bool wxToggleButton::Enable(bool enable /*=true*/)
287{
288 bool isEnabled = IsEnabled();
289
290 if (!wxControl::Enable(enable))
291 return false;
292
293 gtk_widget_set_sensitive(GTK_BIN(m_widget)->child, enable);
294
295 if (!isEnabled && enable)
296 {
297 GTKFixSensitivity();
298 }
299
300 return true;
301}
302
303void wxToggleButton::DoApplyWidgetStyle(GtkRcStyle *style)
304{
305 gtk_widget_modify_style(m_widget, style);
306 gtk_widget_modify_style(GTK_BIN(m_widget)->child, style);
307}
308
309GdkWindow *
310wxToggleButton::GTKGetWindow(wxArrayGdkWindows& WXUNUSED(windows)) const
311{
312 return GTK_BUTTON(m_widget)->event_window;
313}
314
315// Get the "best" size for this control.
316wxSize wxToggleButton::DoGetBestSize() const
317{
318 wxSize ret(wxControl::DoGetBestSize());
319
320 if (!HasFlag(wxBU_EXACTFIT))
321 {
322 if (ret.x < 80) ret.x = 80;
323 }
324
325 CacheBestSize(ret);
326 return ret;
327}
328
329// static
330wxVisualAttributes
331wxToggleButton::GetClassDefaultAttributes(wxWindowVariant WXUNUSED(variant))
332{
333 return GetDefaultAttributesFromGTKWidget(gtk_toggle_button_new);
334}
335
336#endif // wxUSE_TOGGLEBTN