X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/ac32ba44a150c9de37a9b56ef7cb10521d0e9347..16640ba22621cb6d0ec7053c95357e05fd280d4b:/src/motif/button.cpp diff --git a/src/motif/button.cpp b/src/motif/button.cpp index d56e59900e..a1afbd74be 100644 --- a/src/motif/button.cpp +++ b/src/motif/button.cpp @@ -9,10 +9,13 @@ // Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// -#ifdef __GNUG__ +#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA) #pragma implementation "button.h" #endif +// For compilers that support precompilation, includes "wx.h". +#include "wx/wxprec.h" + #ifdef __VMS #define XtDisplay XTDISPLAY #endif @@ -31,11 +34,15 @@ #endif #include "wx/motif/private.h" +#include "wx/sysopt.h" void wxButtonCallback (Widget w, XtPointer clientData, XtPointer ptr); IMPLEMENT_DYNAMIC_CLASS(wxButton, wxControl) +#define MIN_WIDTH 78 +#define MIN_LARGE_HEIGHT 30 + // Button bool wxButton::Create(wxWindow *parent, wxWindowID id, const wxString& label, @@ -84,7 +91,7 @@ bool wxButton::Create(wxWindow *parent, wxWindowID id, const wxString& label, ChangeBackgroundColour(); - return TRUE; + return true; } void wxButton::SetDefaultShadowThicknessAndResize() @@ -141,15 +148,36 @@ void wxButton::SetDefault() NULL); } +static inline bool wxMotifLargeButtons() +{ + return wxSystemOptions::HasOption("motif.largebuttons") + && wxSystemOptions::GetOptionInt("motif.largebuttons") != 0; +} + /* static */ wxSize wxButton::GetDefaultSize() { // TODO: check font size as in wxMSW ? MB // Note: this is the button size (text + margin + shadow + defaultBorder) - return wxSize(78,30); + return wxSize( MIN_WIDTH, MIN_LARGE_HEIGHT ); } wxSize wxButton::DoGetBestSize() const +{ + if( wxMotifLargeButtons() ) + return OldGetBestSize(); + + wxSize best = wxControl::DoGetBestSize(); + + if( HasFlag( wxBU_EXACTFIT ) ) + return best; + else if( best.x < MIN_WIDTH ) + best.x = MIN_WIDTH; + + return best; +} + +wxSize wxButton::OldGetBestSize() const { Dimension xmargin, ymargin, highlight, shadow, defThickness;