]> git.saurik.com Git - wxWidgets.git/blame - src/gtk1/button.cpp
Fixed GetIcon to keep up with return type change on all other platforms.
[wxWidgets.git] / src / gtk1 / button.cpp
CommitLineData
c801d85f
KB
1/////////////////////////////////////////////////////////////////////////////
2// Name: button.cpp
3// Purpose:
4// Author: Robert Roebling
dbf858b5 5// Id: $Id$
01111366 6// Copyright: (c) 1998 Robert Roebling
65571936 7// Licence: wxWindows licence
c801d85f
KB
8/////////////////////////////////////////////////////////////////////////////
9
14f355c2
VS
10// For compilers that support precompilation, includes "wx.h".
11#include "wx/wxprec.h"
12
1e6feb95
VZ
13#include "wx/defs.h"
14
15#if wxUSE_BUTTON
16
c801d85f 17#include "wx/button.h"
5f7bcb48 18#include "wx/stockitem.h"
c801d85f 19
9e691f46 20#include "wx/gtk/private.h"
f893066b 21#include "wx/gtk/win_gtk.h"
83624f79 22
c801d85f
KB
23//-----------------------------------------------------------------------------
24// classes
25//-----------------------------------------------------------------------------
26
27class wxButton;
28
acfd422a
RR
29//-----------------------------------------------------------------------------
30// idle system
31//-----------------------------------------------------------------------------
32
33extern void wxapp_install_idle_handler();
34extern bool g_isIdle;
35
66bd6b93
RR
36//-----------------------------------------------------------------------------
37// data
38//-----------------------------------------------------------------------------
39
40extern bool g_blockEventsOnDrag;
41
c801d85f 42//-----------------------------------------------------------------------------
e1e955e1 43// "clicked"
c801d85f
KB
44//-----------------------------------------------------------------------------
45
865bb325 46extern "C" {
66bd6b93 47static void gtk_button_clicked_callback( GtkWidget *WXUNUSED(widget), wxButton *button )
c801d85f 48{
9e691f46 49 if (g_isIdle)
32ac755d 50 wxapp_install_idle_handler();
acfd422a 51
a2053b27 52 if (!button->m_hasVMT) return;
acfd422a 53 if (g_blockEventsOnDrag) return;
9e691f46 54
acfd422a
RR
55 wxCommandEvent event(wxEVT_COMMAND_BUTTON_CLICKED, button->GetId());
56 event.SetEventObject(button);
57 button->GetEventHandler()->ProcessEvent(event);
6de97a3b 58}
865bb325 59}
c801d85f 60
a90c0600
RR
61//-----------------------------------------------------------------------------
62// "style_set" from m_widget
63//-----------------------------------------------------------------------------
64
65static gint
66gtk_button_style_set_callback( GtkWidget *m_widget, GtkStyle *WXUNUSED(style), wxButton *win )
67{
68 if (g_isIdle)
69 wxapp_install_idle_handler();
b2ff89d6 70
f893066b
RR
71 int left_border = 0;
72 int right_border = 0;
73 int top_border = 0;
74 int bottom_border = 0;
b2ff89d6 75
f893066b
RR
76 /* the default button has a border around it */
77 if (GTK_WIDGET_CAN_DEFAULT(m_widget))
78 {
79#ifdef __WXGTK20__
80 GtkBorder *default_border = NULL;
81 gtk_widget_style_get( m_widget, "default_border", &default_border, NULL );
82 if (default_border)
83 {
84 left_border += default_border->left;
85 right_border += default_border->right;
86 top_border += default_border->top;
87 bottom_border += default_border->bottom;
88 g_free( default_border );
89 }
90#else
91 left_border = 6;
92 right_border = 6;
93 top_border = 6;
94 bottom_border = 5;
95#endif
96 win->DoMoveWindow( win->m_x-top_border,
97 win->m_y-left_border,
98 win->m_width+left_border+right_border,
99 win->m_height+top_border+bottom_border );
b2ff89d6 100 }
a90c0600
RR
101
102 return FALSE;
103}
104
c801d85f 105//-----------------------------------------------------------------------------
e1e955e1
RR
106// wxButton
107//-----------------------------------------------------------------------------
108
109IMPLEMENT_DYNAMIC_CLASS(wxButton,wxControl)
c801d85f 110
fd0eed64 111wxButton::wxButton()
c801d85f 112{
6de97a3b 113}
c801d85f 114
fd0eed64
RR
115wxButton::~wxButton()
116{
fd0eed64
RR
117}
118
c801d85f 119bool wxButton::Create( wxWindow *parent, wxWindowID id, const wxString &label,
32c77a71 120 const wxPoint &pos, const wxSize &size,
6de97a3b 121 long style, const wxValidator& validator, const wxString &name )
c801d85f 122{
b292e2f5
RR
123 m_needParent = TRUE;
124 m_acceptsFocus = TRUE;
32c77a71 125
4dcaf11a
RR
126 if (!PreCreation( parent, pos, size ) ||
127 !CreateBase( parent, id, pos, size, style, validator, name ))
128 {
223d09f6 129 wxFAIL_MSG( wxT("wxButton creation failed") );
8ab696e0 130 return FALSE;
4dcaf11a 131 }
c801d85f 132
b2fcfd94 133#ifdef __WXGTK20__
5f7bcb48 134 m_widget = gtk_button_new_with_mnemonic("");
b2fcfd94 135#else
354aa1e3 136 m_widget = gtk_button_new_with_label("");
b2fcfd94 137#endif
354aa1e3 138
2e8613b7
RR
139 float x_alignment = 0.5;
140 if (HasFlag(wxBU_LEFT))
141 x_alignment = 0.0;
142 else if (HasFlag(wxBU_RIGHT))
143 x_alignment = 1.0;
144
145 float y_alignment = 0.5;
146 if (HasFlag(wxBU_TOP))
147 y_alignment = 0.0;
148 else if (HasFlag(wxBU_BOTTOM))
149 y_alignment = 1.0;
150
3dc786e0 151#ifdef __WXGTK24__
77f70672
RR
152 if (!gtk_check_version(2,4,0))
153 {
154 gtk_button_set_alignment(GTK_BUTTON(m_widget), x_alignment, y_alignment);
155 }
156 else
4fa87bd9 157#endif
77f70672
RR
158 {
159 if (GTK_IS_MISC(BUTTON_CHILD(m_widget)))
160 gtk_misc_set_alignment (GTK_MISC (BUTTON_CHILD (m_widget)),
161 x_alignment, y_alignment);
162 }
a696db45 163
5f7bcb48 164 SetLabel(label);
354aa1e3 165
de1c750f
RR
166 if (style & wxNO_BORDER)
167 gtk_button_set_relief( GTK_BUTTON(m_widget), GTK_RELIEF_NONE );
de1c750f 168
58b907f6 169 gtk_signal_connect_after( GTK_OBJECT(m_widget), "clicked",
b292e2f5 170 GTK_SIGNAL_FUNC(gtk_button_clicked_callback), (gpointer*)this );
c801d85f 171
a90c0600
RR
172 gtk_signal_connect_after( GTK_OBJECT(m_widget), "style_set",
173 GTK_SIGNAL_FUNC(gtk_button_style_set_callback), (gpointer*) this );
b2ff89d6 174
f03fc89f 175 m_parent->DoAddChild( this );
9e691f46 176
abdeb9e7 177 PostCreation(size);
db434467 178
4fa87bd9
VS
179 return true;
180}
b2ff89d6 181
32c77a71 182
da048e3d 183void wxButton::SetDefault()
c801d85f 184{
97149f18
RD
185 wxWindow *parent = GetParent();
186 wxCHECK_RET( parent, _T("button without parent?") );
187
a00b2d0a 188 parent->SetDefaultItem(this);
b2ff89d6 189
3502e687
RR
190 GTK_WIDGET_SET_FLAGS( m_widget, GTK_CAN_DEFAULT );
191 gtk_widget_grab_default( m_widget );
b2ff89d6 192
f893066b
RR
193 // resize for default border
194 gtk_button_style_set_callback( m_widget, NULL, this );
6de97a3b 195}
c801d85f 196
ebea0891 197/* static */
4fa87bd9 198wxSize wxButtonBase::GetDefaultSize()
8dbf4589 199{
4fa87bd9
VS
200#ifdef __WXGTK20__
201 static wxSize size = wxDefaultSize;
202 if (size == wxDefaultSize)
203 {
204 // NB: Default size of buttons should be same as size of stock
205 // buttons as used in most GTK+ apps. Unfortunately it's a little
206 // tricky to obtain this size: stock button's size may be smaller
207 // than size of button in GtkButtonBox and vice versa,
208 // GtkButtonBox's minimal button size may be smaller than stock
209 // button's size. We have to retrieve both values and combine them.
210
211 GtkWidget *wnd = gtk_window_new(GTK_WINDOW_TOPLEVEL);
212 GtkWidget *box = gtk_hbutton_box_new();
213 GtkWidget *btn = gtk_button_new_from_stock(GTK_STOCK_CANCEL);
214 gtk_container_add(GTK_CONTAINER(box), btn);
215 gtk_container_add(GTK_CONTAINER(wnd), box);
216 GtkRequisition req;
217 gtk_widget_size_request(btn, &req);
218
219 gint minwidth, minheight;
220 gtk_widget_style_get(box,
221 "child-min-width", &minwidth,
222 "child-min-height", &minheight,
223 NULL);
224
225 size.x = wxMax(minwidth, req.width);
226 size.y = wxMax(minheight, req.height);
b2ff89d6 227
4fa87bd9
VS
228 gtk_widget_destroy(wnd);
229 }
230 return size;
231#else
8dbf4589 232 return wxSize(80,26);
4fa87bd9 233#endif
8dbf4589
RR
234}
235
5f7bcb48 236void wxButton::SetLabel( const wxString &lbl )
c801d85f 237{
223d09f6 238 wxCHECK_RET( m_widget != NULL, wxT("invalid button") );
9e691f46 239
5f7bcb48
VS
240 wxString label(lbl);
241
5f7bcb48
VS
242 if (label.empty() && wxIsStockID(m_windowId))
243 label = wxGetStockLabel(m_windowId);
5f7bcb48
VS
244
245 wxControl::SetLabel(label);
9e691f46 246
b2ff89d6
VZ
247 const wxString labelGTK = GTKConvertMnemonics(label);
248
eaafd2f8 249#ifdef __WXGTK20__
5f7bcb48
VS
250 if (wxIsStockID(m_windowId) && wxIsStockLabel(m_windowId, label))
251 {
252 const char *stock = wxGetStockGtkID(m_windowId);
253 if (stock)
254 {
255 gtk_button_set_label(GTK_BUTTON(m_widget), stock);
256 gtk_button_set_use_stock(GTK_BUTTON(m_widget), TRUE);
b04683b1 257 return;
5f7bcb48 258 }
5f7bcb48
VS
259 }
260
b2ff89d6 261 gtk_button_set_label(GTK_BUTTON(m_widget), wxGTK_CONV(labelGTK));
5f7bcb48 262 gtk_button_set_use_stock(GTK_BUTTON(m_widget), FALSE);
b2ff89d6 263
19ac2f44 264 ApplyWidgetStyle( false );
b2ff89d6
VZ
265#else // GTK+ 1
266 gtk_label_set(GTK_LABEL(BUTTON_CHILD(m_widget)), wxGTK_CONV(labelGTK));
267#endif // GTK+ 2/1
6de97a3b 268}
c801d85f 269
f03fc89f 270bool wxButton::Enable( bool enable )
a9c96bcc 271{
f03fc89f
VZ
272 if ( !wxControl::Enable( enable ) )
273 return FALSE;
9e691f46
VZ
274
275 gtk_widget_set_sensitive( BUTTON_CHILD(m_widget), enable );
f03fc89f
VZ
276
277 return TRUE;
a9c96bcc
RR
278}
279
2b5f62a0
VZ
280bool wxButton::IsOwnGtkWindow( GdkWindow *window )
281{
282#ifdef __WXGTK20__
283 return GTK_BUTTON(m_widget)->event_window;
284#else
285 return (window == m_widget->window);
286#endif
287}
288
f40fdaa3 289void wxButton::DoApplyWidgetStyle(GtkRcStyle *style)
868a2826 290{
f40fdaa3
VS
291 gtk_widget_modify_style(m_widget, style);
292 gtk_widget_modify_style(BUTTON_CHILD(m_widget), style);
a81258be 293}
db434467
RR
294
295wxSize wxButton::DoGetBestSize() const
296{
4f819fe4
VZ
297 // the default button in wxGTK is bigger than the other ones because of an
298 // extra border around it, but we don't want to take it into account in
299 // our size calculations (otherwsie the result is visually ugly), so
300 // always return the size of non default button from here
301 const bool isDefault = GTK_WIDGET_HAS_DEFAULT(m_widget);
302 if ( isDefault )
303 {
304 // temporarily unset default flag
305 GTK_WIDGET_UNSET_FLAGS( m_widget, GTK_CAN_DEFAULT );
306 }
307
db434467 308 wxSize ret( wxControl::DoGetBestSize() );
9e691f46 309
4f819fe4
VZ
310 if ( isDefault )
311 {
312 // set it back again
313 GTK_WIDGET_SET_FLAGS( m_widget, GTK_CAN_DEFAULT );
314 }
315
391ddf40
RD
316#ifndef __WXGTK20__
317 ret.x += 10; // add a few pixels for sloppy (but common) themes
318#endif
b2ff89d6 319
8ab696e0
RR
320 if (!HasFlag(wxBU_EXACTFIT))
321 {
4fa87bd9
VS
322 wxSize defaultSize = GetDefaultSize();
323 if (ret.x < defaultSize.x) ret.x = defaultSize.x;
324 if (ret.y < defaultSize.y) ret.y = defaultSize.y;
8ab696e0 325 }
9e691f46 326
9f884528 327 CacheBestSize(ret);
db434467
RR
328 return ret;
329}
330
9d522606
RD
331// static
332wxVisualAttributes
333wxButton::GetClassDefaultAttributes(wxWindowVariant WXUNUSED(variant))
334{
335 return GetDefaultAttributesFromGTKWidget(gtk_button_new);
336}
337
1e6feb95
VZ
338#endif // wxUSE_BUTTON
339