]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/cocoa/gauge.h
GlobalLock/Unlock() are available under CE, no need to redefine them, it is already...
[wxWidgets.git] / include / wx / cocoa / gauge.h
index 8985ca0f87d4aeb922ff804609337248f7536c77..8dd3529d9335c7d1700617fe9645c97f827b8930 100644 (file)
@@ -49,17 +49,19 @@ public:
 // Cocoa callbacks
 // ------------------------------------------------------------------------
 protected:
+    // NSProgressIndicator cannot be enabled/disabled
+    virtual void CocoaSetEnabled(bool enable) { }
 // ------------------------------------------------------------------------
 // Implementation
 // ------------------------------------------------------------------------
 public:
     // Pure Virtuals
-    virtual int GetValue() const { return 0; }
-    virtual void SetValue(int value) { }
+    virtual int GetValue() const;
+    virtual void SetValue(int value);
 
     // retrieve/change the range
-    virtual void SetRange(int maxValue) { }
-    int GetRange(void) const { return 0; }
+    virtual void SetRange(int maxValue);
+    int GetRange(void) const;
 };
 
 #endif // __WX_COCOA_GAUGE_H__