X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/2108cc974ff9810b3d3a02dfbf3943c05e22a4c7..6def7a17b01a15e68696a1863d114ecc5554e3d4:/src/cocoa/gauge.mm diff --git a/src/cocoa/gauge.mm b/src/cocoa/gauge.mm index 028064b74a..1769e1062f 100644 --- a/src/cocoa/gauge.mm +++ b/src/cocoa/gauge.mm @@ -6,7 +6,7 @@ // Created: 2003/07/15 // RCS-ID: $Id$ // Copyright: (c) 2003 David Elliott -// Licence: wxWindows licence +// Licence: wxWidgets licence ///////////////////////////////////////////////////////////////////////////// #include "wx/wxprec.h" @@ -15,9 +15,15 @@ #ifndef WX_PRECOMP #include "wx/app.h" #include "wx/gauge.h" + #include "wx/log.h" #endif //WX_PRECOMP +#include "wx/cocoa/autorelease.h" + #import +#import + +#include IMPLEMENT_DYNAMIC_CLASS(wxGauge, wxControl) BEGIN_EVENT_TABLE(wxGauge, wxGaugeBase) @@ -68,4 +74,31 @@ void wxGauge::SetRange(int maxValue) [(NSProgressIndicator*)m_cocoaNSView setMaxValue:maxValue]; } +// NSProgressIndicator is not an NSControl but does respond to +// sizeToFit on OS X >= 10.2 +wxSize wxGauge::DoGetBestSize() const +{ + wxAutoNSAutoreleasePool pool; + wxASSERT(GetNSProgressIndicator()); + NSRect storedRect = [m_cocoaNSView frame]; + bool didFit = false; +NS_DURING + [GetNSProgressIndicator() sizeToFit]; + didFit = true; +NS_HANDLER + // TODO: if anything other than method not implemented, re-raise +NS_ENDHANDLER + if(didFit) + { + NSRect cocoaRect = [m_cocoaNSView frame]; + wxSize size((int)ceilf(cocoaRect.size.width),(int)ceilf(cocoaRect.size.height)); + [m_cocoaNSView setFrame: storedRect]; + wxLogTrace(wxTRACE_COCOA_Window_Size,wxT("wxControl=%p::DoGetBestSize()==(%d,%d) from sizeToFit"),this,size.x,size.y); + return /*wxConstCast(this, wxControl)->m_bestSize =*/ size; + } + // Cocoa can't tell us the size + float height = NSProgressIndicatorPreferredAquaThickness; + return wxSize((int)(height*2),(int)height); +} + #endif // wxUSE_GAUGE