1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxSpinButtonBase class
4 // Author: Julian Smart, Vadim Zeitlin
8 // Copyright: (c) Julian Smart
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 #ifndef _WX_SPINBUTT_H_BASE_
13 #define _WX_SPINBUTT_H_BASE_
15 // ----------------------------------------------------------------------------
17 // ----------------------------------------------------------------------------
23 #include "wx/control.h"
26 #define wxSPIN_BUTTON_NAME _T("wxSpinButton")
28 // ----------------------------------------------------------------------------
29 // The wxSpinButton is like a small scrollbar than is often placed next
33 // wxSP_HORIZONTAL: horizontal spin button
34 // wxSP_VERTICAL: vertical spin button (the default)
35 // wxSP_ARROW_KEYS: arrow keys increment/decrement value
36 // wxSP_WRAP: value wraps at either end
37 // ----------------------------------------------------------------------------
39 class WXDLLEXPORT wxSpinButtonBase
: public wxControl
42 wxSpinButtonBase() { InitBase(); }
45 virtual int GetValue() const = 0;
46 virtual int GetMin() const { return m_min
; }
47 virtual int GetMax() const { return m_max
; }
50 virtual void SetValue(int val
) = 0;
51 virtual void SetRange(int minVal
, int maxVal
)
57 // is this spin button vertically oriented?
58 bool IsVertical() const { return (m_windowStyle
& wxSP_VERTICAL
) != 0; }
61 // init the base part of the control
72 DECLARE_NO_COPY_CLASS(wxSpinButtonBase
)
75 // ----------------------------------------------------------------------------
76 // include the declaration of the real class
77 // ----------------------------------------------------------------------------
79 #if defined(__WXUNIVERSAL__)
80 #include "wx/univ/spinbutt.h"
81 #elif defined(__WXMSW__) && defined(__WIN95__)
82 #include "wx/msw/spinbutt.h"
83 #elif defined(__WXMOTIF__)
84 #include "wx/motif/spinbutt.h"
85 #elif defined(__WXGTK__)
86 #include "wx/gtk/spinbutt.h"
87 #elif defined(__WXMAC__)
88 #include "wx/mac/spinbutt.h"
89 #elif defined(__WXCOCOA__)
90 #include "wx/cocoa/spinbutt.h"
91 #elif defined(__WXPM__)
92 #include "wx/os2/spinbutt.h"
95 // ----------------------------------------------------------------------------
96 // the wxSpinButton event
97 // ----------------------------------------------------------------------------
99 class WXDLLEXPORT wxSpinEvent
: public wxNotifyEvent
102 wxSpinEvent(wxEventType commandType
= wxEVT_NULL
, int id
= 0)
103 : wxNotifyEvent(commandType
, id
)
107 // get the current value of the control
108 int GetPosition() const { return m_commandInt
; }
109 void SetPosition(int pos
) { m_commandInt
= pos
; }
112 DECLARE_DYNAMIC_CLASS_NO_COPY(wxSpinEvent
)
115 typedef void (wxEvtHandler::*wxSpinEventFunction
)(wxSpinEvent
&);
117 // macros for handling spin events
118 #define EVT_SPIN_UP(id, func) \
119 DECLARE_EVENT_TABLE_ENTRY( wxEVT_SCROLL_LINEUP, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxSpinEventFunction) & func, NULL ),
120 #define EVT_SPIN_DOWN(id, func) \
121 DECLARE_EVENT_TABLE_ENTRY( wxEVT_SCROLL_LINEDOWN, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxSpinEventFunction) & func, NULL ),
122 #define EVT_SPIN(id, func) \
123 DECLARE_EVENT_TABLE_ENTRY( wxEVT_SCROLL_THUMBTRACK, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxSpinEventFunction) & func, NULL ),
125 #endif // wxUSE_SPINBTN
128 // _WX_SPINBUTT_H_BASE_