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 IMPLEMENT_DYNAMIC_CLASS(wxToggleButton
, wxControl
)
47 DEFINE_EVENT_TYPE(wxEVT_COMMAND_TOGGLEBUTTON_CLICKED
)
49 bool wxToggleButton::Create(wxWindow
*parent
, wxWindowID id
,
50 const wxString
&label
, const wxPoint
&pos
,
51 const wxSize
&size
, long style
,
52 const wxValidator
& validator
,
56 m_acceptsFocus
= TRUE
;
60 if (!PreCreation(parent
, pos
, size
) ||
61 !CreateBase(parent
, id
, pos
, size
, style
, validator
, name
)) {
62 wxFAIL_MSG(wxT("wxToggleButton creation failed"));
66 wxControl::SetLabel(label
);
68 // Create the gtk widget.
69 m_widget
= gtk_toggle_button_new_with_label( wxGTK_CONV( m_label
) );
71 gtk_signal_connect(GTK_OBJECT(m_widget
), "clicked",
72 GTK_SIGNAL_FUNC(gtk_togglebutton_clicked_callback
),
75 m_parent
->DoAddChild(this);
80 wxSize
size_best(DoGetBestSize());
81 wxSize
new_size(size
);
83 new_size
.x
= size_best
.x
;
85 new_size
.y
= size_best
.y
;
86 if ((new_size
.x
!= size
.x
) || (new_size
.y
!= size
.y
))
87 SetSize(new_size
.x
, new_size
.y
);
94 // void SetValue(bool state)
95 // Set the value of the toggle button.
96 void wxToggleButton::SetValue(bool state
)
98 wxCHECK_RET(m_widget
!= NULL
, wxT("invalid toggle button"));
100 if (state
== GetValue())
105 gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(m_widget
), state
);
107 m_blockEvent
= FALSE
;
110 // bool GetValue() const
111 // Get the value of the toggle button.
112 bool wxToggleButton::GetValue() const
114 wxCHECK_MSG(m_widget
!= NULL
, FALSE
, wxT("invalid toggle button"));
116 return GTK_TOGGLE_BUTTON(m_widget
)->active
;
119 void wxToggleButton::SetLabel(const wxString
& label
)
121 wxCHECK_RET(m_widget
!= NULL
, wxT("invalid toggle button"));
123 wxControl::SetLabel(label
);
125 gtk_label_set(GTK_LABEL(BUTTON_CHILD(m_widget
)), wxGTK_CONV( GetLabel() ) );
128 bool wxToggleButton::Enable(bool enable
/*=TRUE*/)
130 if (!wxControl::Enable(enable
))
133 gtk_widget_set_sensitive(BUTTON_CHILD(m_widget
), enable
);
138 void wxToggleButton::ApplyWidgetStyle()
141 gtk_widget_set_style(m_widget
, m_widgetStyle
);
142 gtk_widget_set_style(BUTTON_CHILD(m_widget
), m_widgetStyle
);
145 bool wxToggleButton::IsOwnGtkWindow(GdkWindow
*window
)
147 return window
== TOGGLE_BUTTON_EVENT_WIN(m_widget
);
150 void wxToggleButton::OnInternalIdle()
152 wxCursor cursor
= m_cursor
;
154 if (g_globalCursor
.Ok())
155 cursor
= g_globalCursor
;
157 GdkWindow
*win
= TOGGLE_BUTTON_EVENT_WIN(m_widget
);
158 if ( win
&& cursor
.Ok() )
160 /* I now set the cursor the anew in every OnInternalIdle call
161 as setting the cursor in a parent window also effects the
162 windows above so that checking for the current cursor is
165 gdk_window_set_cursor(win
, cursor
.GetCursor());
168 if (wxUpdateUIEvent::CanUpdate(this))
169 UpdateWindowUI(wxUPDATE_UI_FROMIDLE
);
172 // wxSize DoGetBestSize() const
173 // Get the "best" size for this control.
174 wxSize
wxToggleButton::DoGetBestSize() const
176 wxSize
ret(wxControl::DoGetBestSize());
178 if (!HasFlag(wxBU_EXACTFIT
))
180 if (ret
.x
< 80) ret
.x
= 80;
187 #endif // wxUSE_TOGGLEBTN