1 /////////////////////////////////////////////////////////////////////////////
4 // Author: Robert Roebling
6 // Copyright: (c) 1998 Robert Roebling
7 // Licence: wxWindows licence
8 /////////////////////////////////////////////////////////////////////////////
10 // For compilers that support precompilation, includes "wx.h".
11 #include "wx/wxprec.h"
17 #include "wx/button.h"
18 #include "wx/stockitem.h"
20 #include "wx/gtk/private.h"
21 #include "wx/gtk/win_gtk.h"
23 //-----------------------------------------------------------------------------
25 //-----------------------------------------------------------------------------
29 //-----------------------------------------------------------------------------
31 //-----------------------------------------------------------------------------
33 extern void wxapp_install_idle_handler();
36 //-----------------------------------------------------------------------------
38 //-----------------------------------------------------------------------------
40 extern bool g_blockEventsOnDrag
;
42 //-----------------------------------------------------------------------------
44 //-----------------------------------------------------------------------------
47 static void gtk_button_clicked_callback( GtkWidget
*WXUNUSED(widget
), wxButton
*button
)
50 wxapp_install_idle_handler();
52 if (!button
->m_hasVMT
) return;
53 if (g_blockEventsOnDrag
) return;
55 wxCommandEvent
event(wxEVT_COMMAND_BUTTON_CLICKED
, button
->GetId());
56 event
.SetEventObject(button
);
57 button
->GetEventHandler()->ProcessEvent(event
);
61 //-----------------------------------------------------------------------------
62 // "style_set" from m_widget
63 //-----------------------------------------------------------------------------
66 gtk_button_style_set_callback( GtkWidget
*m_widget
, GtkStyle
*WXUNUSED(style
), wxButton
*win
)
69 wxapp_install_idle_handler();
74 int bottom_border
= 0;
76 /* the default button has a border around it */
77 if (GTK_WIDGET_CAN_DEFAULT(m_widget
))
80 GtkBorder
*default_border
= NULL
;
81 gtk_widget_style_get( m_widget
, "default_border", &default_border
, NULL
);
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
);
96 win
->DoMoveWindow( win
->m_x
-top_border
,
98 win
->m_width
+left_border
+right_border
,
99 win
->m_height
+top_border
+bottom_border
);
105 //-----------------------------------------------------------------------------
107 //-----------------------------------------------------------------------------
109 IMPLEMENT_DYNAMIC_CLASS(wxButton
,wxControl
)
115 wxButton::~wxButton()
119 bool wxButton::Create( wxWindow
*parent
, wxWindowID id
, const wxString
&label
,
120 const wxPoint
&pos
, const wxSize
&size
,
121 long style
, const wxValidator
& validator
, const wxString
&name
)
124 m_acceptsFocus
= TRUE
;
126 if (!PreCreation( parent
, pos
, size
) ||
127 !CreateBase( parent
, id
, pos
, size
, style
, validator
, name
))
129 wxFAIL_MSG( wxT("wxButton creation failed") );
134 m_widget
= gtk_button_new_with_mnemonic("");
136 m_widget
= gtk_button_new_with_label("");
139 float x_alignment
= 0.5;
140 if (HasFlag(wxBU_LEFT
))
142 else if (HasFlag(wxBU_RIGHT
))
145 float y_alignment
= 0.5;
146 if (HasFlag(wxBU_TOP
))
148 else if (HasFlag(wxBU_BOTTOM
))
152 if (!gtk_check_version(2,4,0))
154 gtk_button_set_alignment(GTK_BUTTON(m_widget
), x_alignment
, y_alignment
);
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
);
166 if (style
& wxNO_BORDER
)
167 gtk_button_set_relief( GTK_BUTTON(m_widget
), GTK_RELIEF_NONE
);
169 gtk_signal_connect_after( GTK_OBJECT(m_widget
), "clicked",
170 GTK_SIGNAL_FUNC(gtk_button_clicked_callback
), (gpointer
*)this );
172 gtk_signal_connect_after( GTK_OBJECT(m_widget
), "style_set",
173 GTK_SIGNAL_FUNC(gtk_button_style_set_callback
), (gpointer
*) this );
175 m_parent
->DoAddChild( this );
183 void wxButton::SetDefault()
185 wxWindow
*parent
= GetParent();
186 wxCHECK_RET( parent
, _T("button without parent?") );
188 parent
->SetDefaultItem(this);
190 GTK_WIDGET_SET_FLAGS( m_widget
, GTK_CAN_DEFAULT
);
191 gtk_widget_grab_default( m_widget
);
193 // resize for default border
194 gtk_button_style_set_callback( m_widget
, NULL
, this );
198 wxSize
wxButtonBase::GetDefaultSize()
201 static wxSize size
= wxDefaultSize
;
202 if (size
== wxDefaultSize
)
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.
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
);
217 gtk_widget_size_request(btn
, &req
);
219 gint minwidth
, minheight
;
220 gtk_widget_style_get(box
,
221 "child-min-width", &minwidth
,
222 "child-min-height", &minheight
,
225 size
.x
= wxMax(minwidth
, req
.width
);
226 size
.y
= wxMax(minheight
, req
.height
);
228 gtk_widget_destroy(wnd
);
232 return wxSize(80,26);
236 void wxButton::SetLabel( const wxString
&lbl
)
238 wxCHECK_RET( m_widget
!= NULL
, wxT("invalid button") );
242 if (label
.empty() && wxIsStockID(m_windowId
))
243 label
= wxGetStockLabel(m_windowId
);
245 wxControl::SetLabel(label
);
247 const wxString labelGTK
= GTKConvertMnemonics(label
);
250 if (wxIsStockID(m_windowId
) && wxIsStockLabel(m_windowId
, label
))
252 const char *stock
= wxGetStockGtkID(m_windowId
);
255 gtk_button_set_label(GTK_BUTTON(m_widget
), stock
);
256 gtk_button_set_use_stock(GTK_BUTTON(m_widget
), TRUE
);
261 gtk_button_set_label(GTK_BUTTON(m_widget
), wxGTK_CONV(labelGTK
));
262 gtk_button_set_use_stock(GTK_BUTTON(m_widget
), FALSE
);
264 ApplyWidgetStyle( false );
266 gtk_label_set(GTK_LABEL(BUTTON_CHILD(m_widget
)), wxGTK_CONV(labelGTK
));
270 bool wxButton::Enable( bool enable
)
272 if ( !wxControl::Enable( enable
) )
275 gtk_widget_set_sensitive( BUTTON_CHILD(m_widget
), enable
);
280 bool wxButton::IsOwnGtkWindow( GdkWindow
*window
)
283 return GTK_BUTTON(m_widget
)->event_window
;
285 return (window
== m_widget
->window
);
289 void wxButton::DoApplyWidgetStyle(GtkRcStyle
*style
)
291 gtk_widget_modify_style(m_widget
, style
);
292 gtk_widget_modify_style(BUTTON_CHILD(m_widget
), style
);
295 wxSize
wxButton::DoGetBestSize() const
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
);
304 // temporarily unset default flag
305 GTK_WIDGET_UNSET_FLAGS( m_widget
, GTK_CAN_DEFAULT
);
308 wxSize
ret( wxControl::DoGetBestSize() );
313 GTK_WIDGET_SET_FLAGS( m_widget
, GTK_CAN_DEFAULT
);
317 ret
.x
+= 10; // add a few pixels for sloppy (but common) themes
320 if (!HasFlag(wxBU_EXACTFIT
))
322 wxSize defaultSize
= GetDefaultSize();
323 if (ret
.x
< defaultSize
.x
) ret
.x
= defaultSize
.x
;
324 if (ret
.y
< defaultSize
.y
) ret
.y
= defaultSize
.y
;
333 wxButton::GetClassDefaultAttributes(wxWindowVariant
WXUNUSED(variant
))
335 return GetDefaultAttributesFromGTKWidget(gtk_button_new
);
338 #endif // wxUSE_BUTTON