1 /////////////////////////////////////////////////////////////////////////////
2 // Name: wx/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
9 // Copyright: (c) 2000 Johnny C. Norris II
10 // License: Rocketeer license
11 /////////////////////////////////////////////////////////////////////////////
13 // For compilers that support precompilation, includes "wx.h".
14 #include "wx/wxprec.h"
16 #include "wx/tglbtn.h"
17 #include "wx/button.h"
21 #include "wx/gtk/private.h"
23 extern void wxapp_install_idle_handler();
25 extern bool g_blockEventsOnDrag
;
26 extern wxCursor g_globalCursor
;
27 extern wxWindowGTK
*g_delayedFocus
;
29 static void gtk_togglebutton_clicked_callback(GtkWidget
*WXUNUSED(widget
), wxToggleButton
*cb
)
32 wxapp_install_idle_handler();
34 if (!cb
->m_hasVMT
|| g_blockEventsOnDrag
)
37 if (cb
->m_blockEvent
) return;
39 // Generate a wx event.
40 wxCommandEvent
event(wxEVT_COMMAND_TOGGLEBUTTON_CLICKED
, cb
->GetId());
41 event
.SetInt(cb
->GetValue());
42 event
.SetEventObject(cb
);
43 cb
->GetEventHandler()->ProcessEvent(event
);
46 DEFINE_EVENT_TYPE(wxEVT_COMMAND_TOGGLEBUTTON_CLICKED
)
48 // ------------------------------------------------------------------------
49 // wxToggleBitmapButton
50 // ------------------------------------------------------------------------
52 IMPLEMENT_DYNAMIC_CLASS(wxToggleBitmapButton
, wxControl
)
54 bool wxToggleBitmapButton::Create(wxWindow
*parent
, wxWindowID id
,
55 const wxBitmap
&label
, const wxPoint
&pos
,
56 const wxSize
&size
, long style
,
57 const wxValidator
& validator
,
61 m_acceptsFocus
= TRUE
;
65 if (!PreCreation(parent
, pos
, size
) ||
66 !CreateBase(parent
, id
, pos
, size
, style
, validator
, name
))
68 wxFAIL_MSG(wxT("wxToggleBitmapButton creation failed"));
74 // Create the gtk widget.
75 m_widget
= gtk_toggle_button_new();
77 if (style
& wxNO_BORDER
)
78 gtk_button_set_relief( GTK_BUTTON(m_widget
), GTK_RELIEF_NONE
);
85 gtk_signal_connect(GTK_OBJECT(m_widget
), "clicked",
86 GTK_SIGNAL_FUNC(gtk_togglebutton_clicked_callback
),
89 m_parent
->DoAddChild(this);
96 // void SetValue(bool state)
97 // Set the value of the toggle button.
98 void wxToggleBitmapButton::SetValue(bool state
)
100 wxCHECK_RET(m_widget
!= NULL
, wxT("invalid toggle button"));
102 if (state
== GetValue())
107 gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(m_widget
), state
);
109 m_blockEvent
= FALSE
;
112 // bool GetValue() const
113 // Get the value of the toggle button.
114 bool wxToggleBitmapButton::GetValue() const
116 wxCHECK_MSG(m_widget
!= NULL
, FALSE
, wxT("invalid toggle button"));
118 return GTK_TOGGLE_BUTTON(m_widget
)->active
;
121 void wxToggleBitmapButton::SetLabel(const wxBitmap
& label
)
123 wxCHECK_RET(m_widget
!= NULL
, wxT("invalid toggle button"));
130 void wxToggleBitmapButton::OnSetBitmap()
132 if (!m_bitmap
.Ok()) return;
134 GdkBitmap
*mask
= (GdkBitmap
*) NULL
;
135 if (m_bitmap
.GetMask()) mask
= m_bitmap
.GetMask()->GetBitmap();
137 GtkWidget
*child
= BUTTON_CHILD(m_widget
);
141 GtkWidget
*pixmap
= gtk_pixmap_new(m_bitmap
.GetPixmap(), mask
);
142 gtk_widget_show(pixmap
);
143 gtk_container_add(GTK_CONTAINER(m_widget
), pixmap
);
146 { // subsequent bitmaps
147 GtkPixmap
*g_pixmap
= GTK_PIXMAP(child
);
148 gtk_pixmap_set(g_pixmap
, m_bitmap
.GetPixmap(), mask
);
152 bool wxToggleBitmapButton::Enable(bool enable
/*=TRUE*/)
154 if (!wxControl::Enable(enable
))
157 gtk_widget_set_sensitive(BUTTON_CHILD(m_widget
), enable
);
162 void wxToggleBitmapButton::DoApplyWidgetStyle(GtkRcStyle
*style
)
164 gtk_widget_modify_style(m_widget
, style
);
165 gtk_widget_modify_style(BUTTON_CHILD(m_widget
), style
);
168 bool wxToggleBitmapButton::IsOwnGtkWindow(GdkWindow
*window
)
170 return window
== TOGGLE_BUTTON_EVENT_WIN(m_widget
);
173 void wxToggleBitmapButton::OnInternalIdle()
175 wxCursor cursor
= m_cursor
;
177 if (g_globalCursor
.Ok())
178 cursor
= g_globalCursor
;
180 GdkWindow
*win
= TOGGLE_BUTTON_EVENT_WIN(m_widget
);
181 if ( win
&& cursor
.Ok() )
183 /* I now set the cursor the anew in every OnInternalIdle call
184 as setting the cursor in a parent window also effects the
185 windows above so that checking for the current cursor is
188 gdk_window_set_cursor(win
, cursor
.GetCursor());
191 if (wxUpdateUIEvent::CanUpdate(this))
192 UpdateWindowUI(wxUPDATE_UI_FROMIDLE
);
195 // wxSize DoGetBestSize() const
196 // Get the "best" size for this control.
197 wxSize
wxToggleBitmapButton::DoGetBestSize() const
203 int border
= HasFlag(wxNO_BORDER
) ? 4 : 10;
204 best
.x
= m_bitmap
.GetWidth()+border
;
205 best
.y
= m_bitmap
.GetHeight()+border
;
213 wxToggleBitmapButton::GetClassDefaultAttributes(wxWindowVariant
WXUNUSED(variant
))
215 return GetDefaultAttributesFromGTKWidget(gtk_toggle_button_new
);
219 // ------------------------------------------------------------------------
221 // ------------------------------------------------------------------------
223 IMPLEMENT_DYNAMIC_CLASS(wxToggleButton
, wxControl
)
225 bool wxToggleButton::Create(wxWindow
*parent
, wxWindowID id
,
226 const wxString
&label
, const wxPoint
&pos
,
227 const wxSize
&size
, long style
,
228 const wxValidator
& validator
,
229 const wxString
&name
)
232 m_acceptsFocus
= TRUE
;
234 m_blockEvent
= FALSE
;
236 if (!PreCreation(parent
, pos
, size
) ||
237 !CreateBase(parent
, id
, pos
, size
, style
, validator
, name
)) {
238 wxFAIL_MSG(wxT("wxToggleButton creation failed"));
242 wxControl::SetLabel(label
);
244 // Create the gtk widget.
245 m_widget
= gtk_toggle_button_new_with_label( wxGTK_CONV( m_label
) );
247 gtk_signal_connect(GTK_OBJECT(m_widget
), "clicked",
248 GTK_SIGNAL_FUNC(gtk_togglebutton_clicked_callback
),
251 m_parent
->DoAddChild(this);
258 // void SetValue(bool state)
259 // Set the value of the toggle button.
260 void wxToggleButton::SetValue(bool state
)
262 wxCHECK_RET(m_widget
!= NULL
, wxT("invalid toggle button"));
264 if (state
== GetValue())
269 gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(m_widget
), state
);
271 m_blockEvent
= FALSE
;
274 // bool GetValue() const
275 // Get the value of the toggle button.
276 bool wxToggleButton::GetValue() const
278 wxCHECK_MSG(m_widget
!= NULL
, FALSE
, wxT("invalid toggle button"));
280 return GTK_TOGGLE_BUTTON(m_widget
)->active
;
283 void wxToggleButton::SetLabel(const wxString
& label
)
285 wxCHECK_RET(m_widget
!= NULL
, wxT("invalid toggle button"));
287 wxControl::SetLabel(label
);
289 gtk_label_set(GTK_LABEL(BUTTON_CHILD(m_widget
)), wxGTK_CONV( GetLabel() ) );
292 bool wxToggleButton::Enable(bool enable
/*=TRUE*/)
294 if (!wxControl::Enable(enable
))
297 gtk_widget_set_sensitive(BUTTON_CHILD(m_widget
), enable
);
302 void wxToggleButton::DoApplyWidgetStyle(GtkRcStyle
*style
)
304 gtk_widget_modify_style(m_widget
, style
);
305 gtk_widget_modify_style(BUTTON_CHILD(m_widget
), style
);
308 bool wxToggleButton::IsOwnGtkWindow(GdkWindow
*window
)
310 return window
== TOGGLE_BUTTON_EVENT_WIN(m_widget
);
313 void wxToggleButton::OnInternalIdle()
315 wxCursor cursor
= m_cursor
;
317 if (g_globalCursor
.Ok())
318 cursor
= g_globalCursor
;
320 GdkWindow
*win
= TOGGLE_BUTTON_EVENT_WIN(m_widget
);
321 if ( win
&& cursor
.Ok() )
323 /* I now set the cursor the anew in every OnInternalIdle call
324 as setting the cursor in a parent window also effects the
325 windows above so that checking for the current cursor is
328 gdk_window_set_cursor(win
, cursor
.GetCursor());
331 if (wxUpdateUIEvent::CanUpdate(this))
332 UpdateWindowUI(wxUPDATE_UI_FROMIDLE
);
335 // wxSize DoGetBestSize() const
336 // Get the "best" size for this control.
337 wxSize
wxToggleButton::DoGetBestSize() const
339 wxSize
ret(wxControl::DoGetBestSize());
341 if (!HasFlag(wxBU_EXACTFIT
))
343 if (ret
.x
< 80) ret
.x
= 80;
352 wxToggleButton::GetClassDefaultAttributes(wxWindowVariant
WXUNUSED(variant
))
354 return GetDefaultAttributesFromGTKWidget(gtk_toggle_button_new
);
357 #endif // wxUSE_TOGGLEBTN