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