]>
Commit | Line | Data |
---|---|---|
2bda0e17 | 1 | ///////////////////////////////////////////////////////////////////////////// |
1e6feb95 | 2 | // Name: wx/univ/spinbutt.h |
2bda0e17 KB |
3 | // Purpose: wxSpinButton class |
4 | // Author: Julian Smart | |
5 | // Modified by: | |
6 | // Created: 01/02/97 | |
7 | // RCS-ID: $Id$ | |
bbcdf8bc | 8 | // Copyright: (c) Julian Smart |
65571936 | 9 | // Licence: wxWindows licence |
2bda0e17 KB |
10 | ///////////////////////////////////////////////////////////////////////////// |
11 | ||
bbcdf8bc JS |
12 | #ifndef _WX_SPINBUTT_H_ |
13 | #define _WX_SPINBUTT_H_ | |
2bda0e17 | 14 | |
12028905 | 15 | #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA) |
b782f2e0 | 16 | #pragma interface "spinbutt.h" |
2bda0e17 KB |
17 | #endif |
18 | ||
19 | #include "wx/control.h" | |
20 | #include "wx/event.h" | |
21 | ||
4bf45c9e WS |
22 | #if wxUSE_SPINBTN |
23 | ||
31528cd3 | 24 | class WXDLLEXPORT wxSpinButton : public wxSpinButtonBase |
2bda0e17 | 25 | { |
aeafc354 | 26 | public: |
b782f2e0 | 27 | // construction |
5ea47806 | 28 | wxSpinButton() { } |
a23fd0e1 | 29 | |
aeafc354 | 30 | wxSpinButton(wxWindow *parent, |
4bf45c9e | 31 | wxWindowID id = wxID_ANY, |
aeafc354 VZ |
32 | const wxPoint& pos = wxDefaultPosition, |
33 | const wxSize& size = wxDefaultSize, | |
34 | long style = wxSP_VERTICAL | wxSP_ARROW_KEYS, | |
1e6feb95 | 35 | const wxString& name = wxSPIN_BUTTON_NAME) |
aeafc354 VZ |
36 | { |
37 | Create(parent, id, pos, size, style, name); | |
38 | } | |
a23fd0e1 | 39 | |
aeafc354 | 40 | virtual ~wxSpinButton(); |
a23fd0e1 | 41 | |
aeafc354 | 42 | bool Create(wxWindow *parent, |
4bf45c9e | 43 | wxWindowID id = wxID_ANY, |
aeafc354 VZ |
44 | const wxPoint& pos = wxDefaultPosition, |
45 | const wxSize& size = wxDefaultSize, | |
a23fd0e1 | 46 | long style = wxSP_VERTICAL | wxSP_ARROW_KEYS, |
1e6feb95 | 47 | const wxString& name = wxSPIN_BUTTON_NAME); |
a23fd0e1 VZ |
48 | |
49 | ||
0655ad29 | 50 | // accessors |
31528cd3 VZ |
51 | virtual int GetValue() const; |
52 | virtual void SetValue(int val); | |
53 | virtual void SetRange(int minVal, int maxVal); | |
a23fd0e1 | 54 | |
0655ad29 | 55 | // implementation |
aeafc354 | 56 | virtual bool MSWCommand(WXUINT param, WXWORD id); |
0655ad29 | 57 | virtual bool MSWOnNotify(int idCtrl, WXLPARAM lParam, WXLPARAM *result); |
a23fd0e1 VZ |
58 | virtual bool MSWOnScroll(int orientation, WXWORD wParam, |
59 | WXWORD pos, WXHWND control); | |
b782f2e0 | 60 | |
8614c467 | 61 | // a wxSpinButton can't do anything useful with focus, only wxSpinCtrl can |
4bf45c9e | 62 | virtual bool AcceptsFocus() const { return false; } |
8614c467 | 63 | |
b782f2e0 | 64 | protected: |
f68586e5 | 65 | virtual wxSize DoGetBestSize() const; |
b782f2e0 VZ |
66 | |
67 | private: | |
fc7a2a60 | 68 | DECLARE_DYNAMIC_CLASS_NO_COPY(wxSpinButton) |
2bda0e17 KB |
69 | }; |
70 | ||
4bf45c9e WS |
71 | #endif // wxUSE_SPINBTN |
72 | ||
73 | #endif // _WX_SPINBUTT_H_ |