]> git.saurik.com Git - wxWidgets.git/blobdiff - src/cocoa/gauge.mm
and now fixed USE_CONTEXT_MENU definition as well
[wxWidgets.git] / src / cocoa / gauge.mm
index 977de167adb76c63d295e66c3fe4c58355bfedb4..92978f94bd142775e37f43f2d273d2c181de16e4 100644 (file)
 #ifndef WX_PRECOMP
     #include "wx/app.h"
     #include "wx/gauge.h"
+    #include "wx/log.h"
 #endif //WX_PRECOMP
 
+#include "wx/cocoa/autorelease.h"
+
 #import <AppKit/NSProgressIndicator.h>
+#import <Foundation/NSException.h>
+
+#include <math.h>
 
 IMPLEMENT_DYNAMIC_CLASS(wxGauge, wxControl)
 BEGIN_EVENT_TABLE(wxGauge, wxGaugeBase)
@@ -49,7 +55,7 @@ wxGauge::~wxGauge()
 
 int wxGauge::GetValue() const
 {
-    return [(NSProgressIndicator*)m_cocoaNSView doubleValue];
+    return (int)[(NSProgressIndicator*)m_cocoaNSView doubleValue];
 }
 
 void wxGauge::SetValue(int value)
@@ -59,7 +65,7 @@ void wxGauge::SetValue(int value)
 
 int wxGauge::GetRange() const
 {
-    return [(NSProgressIndicator*)m_cocoaNSView maxValue];
+    return (int)[(NSProgressIndicator*)m_cocoaNSView maxValue];
 }
 
 void wxGauge::SetRange(int maxValue)
@@ -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