virtual int GetMax() const { return m_max; }
// operations
+ virtual void SetValue(const wxString& value) = 0;
virtual void SetValue(int val) = 0;
virtual void SetRange(int minVal, int maxVal) = 0;
#if defined(__WXMSW__) && defined(__WIN32__)
#include "wx/msw/spinctrl.h"
+#elif defined(__WXPM__)
+ #include "wx/os2/spinctrl.h"
+#elif defined(__WXGTK__)
+ #include "wx/gtk/spinctrl.h"
#else // Win16 || !Win
- #include "wx/generic/spinctrl.h"
+ #include "wx/generic/spinctlg.h"
#endif // platform
#endif // _WX_SPINCTRL_H_