X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/4f819fe40a8061e1226f896564d70305ac83d2ba..9950649c8d898552ef0a046e5301eb4a5f836680:/src/gtk/button.cpp diff --git a/src/gtk/button.cpp b/src/gtk/button.cpp index 86b455462f..4638f0a6b1 100644 --- a/src/gtk/button.cpp +++ b/src/gtk/button.cpp @@ -135,25 +135,18 @@ bool wxButton::Create( wxWindow *parent, wxWindowID id, const wxString &label, m_parent->DoAddChild( this ); - PostCreation(); - InheritAttributes(); - - wxSize best_size( DoGetBestSize() ); - wxSize new_size( size ); - if (new_size.x == -1) - new_size.x = best_size.x; - if (new_size.y == -1) - new_size.y = best_size.y; - if ((new_size.x != size.x) || (new_size.y != size.y)) - SetSize( new_size.x, new_size.y ); - - SetSize( new_size ); + PostCreation(size); return TRUE; } void wxButton::SetDefault() { + wxWindow *parent = GetParent(); + wxCHECK_RET( parent, _T("button without parent?") ); + + parent->SetDefaultItem(this); + GTK_WIDGET_SET_FLAGS( m_widget, GTK_CAN_DEFAULT ); gtk_widget_grab_default( m_widget ); @@ -239,5 +232,12 @@ wxSize wxButton::DoGetBestSize() const return ret; } +// static +wxVisualAttributes +wxButton::GetClassDefaultAttributes(wxWindowVariant WXUNUSED(variant)) +{ + return GetDefaultAttributesFromGTKWidget(gtk_button_new); +} + #endif // wxUSE_BUTTON