+ [(NSStepper*)m_cocoaNSView setTarget: nil];
+ [(NSStepper*)m_cocoaNSView setAction: nil];
+}
+
+int wxSpinButton::GetValue() const
+{
+ return [(NSStepper*)m_cocoaNSView intValue];
+}
+
+void wxSpinButton::SetValue(int value)
+{
+ [(NSStepper*)m_cocoaNSView setIntValue:value];
+}
+
+void wxSpinButton::SetRange(int minValue, int maxValue)
+{
+ [(NSStepper*)m_cocoaNSView setMinValue:minValue];
+ [(NSStepper*)m_cocoaNSView setMaxValue:maxValue];
+ wxSpinButtonBase::SetRange(minValue,maxValue);
+}
+
+void wxSpinButton::CocoaTarget_action()
+{
+ /* TODO: up/down events */
+ /* This sends the changed event (not specific on up or down) */
+ wxSpinEvent event(wxEVT_SCROLL_THUMBTRACK, GetId());
+ event.SetPosition(GetValue());
+ event.SetEventObject(this);
+ HandleWindowEvent(event);