+int wxGauge::GetValue() const
+{
+ return (int)[(NSProgressIndicator*)m_cocoaNSView doubleValue];
+}
+
+void wxGauge::SetValue(int value)
+{
+ [(NSProgressIndicator*)m_cocoaNSView setDoubleValue:value];
+}
+
+int wxGauge::GetRange() const
+{
+ return (int)[(NSProgressIndicator*)m_cocoaNSView maxValue];
+}
+
+void wxGauge::SetRange(int maxValue)
+{
+ [(NSProgressIndicator*)m_cocoaNSView setMinValue:0.0];
+ [(NSProgressIndicator*)m_cocoaNSView setMaxValue:maxValue];
+}
+