+
+ static wxVisualAttributes
+ GetClassDefaultAttributes(wxWindowVariant variant = wxWINDOW_VARIANT_NORMAL);
+
+ %property(Max, GetMax, doc="See `GetMax`");
+ %property(Min, GetMin, doc="See `GetMin`");
+ %property(Value, GetValue, SetValue, doc="See `GetValue` and `SetValue`");
+};
+
+
+//---------------------------------------------------------------------------
+
+class wxSpinEvent : public wxNotifyEvent
+{
+public:
+ wxSpinEvent(wxEventType commandType = wxEVT_NULL, int winid = 0);
+
+ // get the current value of the control
+ int GetPosition() const;
+ void SetPosition(int pos);
+
+ %property(Position, GetPosition, SetPosition, doc="See `GetPosition` and `SetPosition`");