]>
Commit | Line | Data |
---|---|---|
1 | ///////////////////////////////////////////////////////////////////////////// | |
2 | // Name: spinbutt.h | |
3 | // Purpose: wxSpinButton class | |
4 | // Author: AUTHOR | |
5 | // Modified by: | |
6 | // Created: ??/??/98 | |
7 | // RCS-ID: $Id$ | |
8 | // Copyright: (c) AUTHOR | |
9 | // Licence: wxWindows licence | |
10 | ///////////////////////////////////////////////////////////////////////////// | |
11 | ||
12 | #ifndef _WX_SPINBUTT_H_ | |
13 | #define _WX_SPINBUTT_H_ | |
14 | ||
15 | #ifdef __GNUG__ | |
16 | #pragma interface "spinbutt.h" | |
17 | #endif | |
18 | ||
19 | #include "wx/control.h" | |
20 | #include "wx/event.h" | |
21 | ||
22 | /* | |
23 | The wxSpinButton is like a small scrollbar than is often placed next | |
24 | to a text control. | |
25 | ||
26 | wxSP_HORIZONTAL: horizontal spin button | |
27 | wxSP_VERTICAL: vertical spin button (the default) | |
28 | wxSP_ARROW_KEYS: arrow keys increment/decrement value | |
29 | wxSP_WRAP: value wraps at either end | |
30 | */ | |
31 | ||
32 | class WXDLLEXPORT wxSpinButton: public wxControl | |
33 | { | |
34 | DECLARE_DYNAMIC_CLASS(wxSpinButton) | |
35 | public: | |
36 | /* | |
37 | * Public interface | |
38 | */ | |
39 | ||
40 | wxSpinButton(); | |
41 | ||
42 | inline wxSpinButton(wxWindow *parent, wxWindowID id = -1, const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize, | |
43 | long style = wxSP_VERTICAL, const wxString& name = "wxSpinButton") | |
44 | { | |
45 | Create(parent, id, pos, size, style, name); | |
46 | } | |
47 | ~wxSpinButton(); | |
48 | ||
49 | bool Create(wxWindow *parent, wxWindowID id = -1, const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize, | |
50 | long style = wxSP_VERTICAL, const wxString& name = "wxSpinButton"); | |
51 | ||
52 | ||
53 | // Attributes | |
54 | //////////////////////////////////////////////////////////////////////////// | |
55 | ||
56 | int GetValue() const ; | |
57 | void SetValue(int val) ; | |
58 | void SetRange(int minVal, int maxVal) ; | |
59 | inline int GetMin() const { return m_min; } | |
60 | inline int GetMax() const { return m_max; } | |
61 | ||
62 | // Operations | |
63 | //////////////////////////////////////////////////////////////////////////// | |
64 | ||
65 | void Command(wxCommandEvent& event) { ProcessCommand(event); }; | |
66 | ||
67 | protected: | |
68 | int m_min; | |
69 | int m_max; | |
70 | }; | |
71 | ||
72 | class WXDLLEXPORT wxSpinEvent: public wxScrollEvent | |
73 | { | |
74 | DECLARE_DYNAMIC_CLASS(wxSpinEvent) | |
75 | ||
76 | public: | |
77 | wxSpinEvent(wxEventType commandType = wxEVT_NULL, int id = 0); | |
78 | }; | |
79 | ||
80 | typedef void (wxEvtHandler::*wxSpinEventFunction)(wxSpinEvent&); | |
81 | ||
82 | // Spin events | |
83 | ||
84 | #define EVT_SPIN_UP(id, func) { wxEVT_SCROLL_LINEUP, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxSpinEventFunction) & func } | |
85 | #define EVT_SPIN_DOWN(id, func) { wxEVT_SCROLL_LINEDOWN, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxSpinEventFunction) & func } | |
86 | ||
87 | #define EVT_SPIN(id, func) \ | |
88 | { wxEVT_SCROLL_TOP, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxSpinEventFunction) & func },\ | |
89 | { wxEVT_SCROLL_BOTTOM, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxSpinEventFunction) & func },\ | |
90 | { wxEVT_SCROLL_LINEUP, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxSpinEventFunction) & func },\ | |
91 | { wxEVT_SCROLL_LINEDOWN, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxSpinEventFunction) & func },\ | |
92 | { wxEVT_SCROLL_PAGEUP, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxSpinEventFunction) & func },\ | |
93 | { wxEVT_SCROLL_PAGEDOWN, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxSpinEventFunction) & func },\ | |
94 | { wxEVT_SCROLL_THUMBTRACK, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxSpinEventFunction) & func }, | |
95 | ||
96 | #endif | |
97 | // _WX_SPINBUTT_H_ |