]> git.saurik.com Git - wxWidgets.git/blame - include/wx/spinbutt.h
Centre() supports wxCENTER_FRAME flag now
[wxWidgets.git] / include / wx / spinbutt.h
CommitLineData
31528cd3
VZ
1/////////////////////////////////////////////////////////////////////////////
2// Name: wx/spinbutt.h
3// Purpose: wxSpinButtonBase class
4// Author: Julian Smart, Vadim Zeitlin
5// Modified by:
6// Created: 23.07.99
7// RCS-ID: $Id$
8// Copyright: (c) Julian Smart
9// Licence: wxWindows licence
10/////////////////////////////////////////////////////////////////////////////
11
34138703
JS
12#ifndef _WX_SPINBUTT_H_BASE_
13#define _WX_SPINBUTT_H_BASE_
c801d85f 14
31528cd3
VZ
15// ----------------------------------------------------------------------------
16// headers
17// ----------------------------------------------------------------------------
18
19#include "wx/defs.h"
20
21#ifdef wxUSE_SPINBTN
22
23#include "wx/control.h"
24#include "wx/event.h"
25
26// ----------------------------------------------------------------------------
27// The wxSpinButton is like a small scrollbar than is often placed next
28// to a text control.
29//
30// Styles:
31// wxSP_HORIZONTAL: horizontal spin button
32// wxSP_VERTICAL: vertical spin button (the default)
33// wxSP_ARROW_KEYS: arrow keys increment/decrement value
34// wxSP_WRAP: value wraps at either end
35// ----------------------------------------------------------------------------
36
37class WXDLLEXPORT wxSpinButtonBase : public wxControl
38{
39public:
40 wxSpinButtonBase() { InitBase(); }
41
42 // accessors
43 virtual int GetValue() const = 0;
44 virtual int GetMin() const { return m_min; }
45 virtual int GetMax() const { return m_max; }
46
47 // operations
48 virtual void SetValue(int val) = 0;
49 virtual void SetRange(int minVal, int maxVal)
50 {
51 m_min = minVal;
52 m_max = maxVal;
53 }
54
55protected:
56 // init the base part of the control
57 void InitBase()
58 {
59 m_min = 0;
60 m_max = 100;
61 }
62
63 // the range value
64 int m_min;
65 int m_max;
66};
67
68// ----------------------------------------------------------------------------
69// include the declaration of the real class
70// ----------------------------------------------------------------------------
71
2049ba38 72#if defined(__WXMSW__)
31528cd3 73 #include "wx/msw/spinbutt.h"
2049ba38 74#elif defined(__WXMOTIF__)
31528cd3 75 #include "wx/motif/spinbutt.h"
2049ba38 76#elif defined(__WXGTK__)
31528cd3 77 #include "wx/gtk/spinbutt.h"
b4e76e0d 78#elif defined(__WXQT__)
31528cd3 79 #include "wx/qt/spinbutt.h"
34138703 80#elif defined(__WXMAC__)
31528cd3 81 #include "wx/mac/spinbutt.h"
34138703 82#elif defined(__WXSTUBS__)
31528cd3 83 #include "wx/stubs/spinbutt.h"
c801d85f
KB
84#endif
85
31528cd3
VZ
86// ----------------------------------------------------------------------------
87// the wxSpinButton event
88// ----------------------------------------------------------------------------
89
90class WXDLLEXPORT wxSpinEvent : public wxScrollEvent
91{
92 DECLARE_DYNAMIC_CLASS(wxSpinEvent)
93
94public:
95 wxSpinEvent(wxEventType commandType = wxEVT_NULL, int id = 0)
96 : wxScrollEvent(commandType, id)
97 {
98 }
99};
100
101typedef void (wxEvtHandler::*wxSpinEventFunction)(wxSpinEvent&);
102
103// macros for handling spin events
104#define EVT_SPIN_UP(id, func) { wxEVT_SCROLL_LINEUP, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxSpinEventFunction) & func }
105#define EVT_SPIN_DOWN(id, func) { wxEVT_SCROLL_LINEDOWN, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxSpinEventFunction) & func }
106
107#define EVT_SPIN(id, func) \
108 { wxEVT_SCROLL_TOP, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxSpinEventFunction) & func },\
109 { wxEVT_SCROLL_BOTTOM, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxSpinEventFunction) & func },\
110 { wxEVT_SCROLL_LINEUP, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxSpinEventFunction) & func },\
111 { wxEVT_SCROLL_LINEDOWN, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxSpinEventFunction) & func },\
112 { wxEVT_SCROLL_PAGEUP, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxSpinEventFunction) & func },\
113 { wxEVT_SCROLL_PAGEDOWN, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxSpinEventFunction) & func },\
114 { wxEVT_SCROLL_THUMBTRACK, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxSpinEventFunction) & func },
115
116#endif // wxUSE_SPINBTN
117
c801d85f 118#endif
34138703 119 // _WX_SPINBUTT_H_BASE_