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