]>
Commit | Line | Data |
---|---|---|
409c9842 DW |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: msw/spinctrl.h | |
3 | // Purpose: wxSpinCtrl class declaration for Win32 | |
4 | // Author: David Webster | |
5 | // Modified by: | |
6 | // Created: 10/15/99 | |
7 | // RCS-ID: $Id$ | |
8 | // Copyright: (c) David Webster | |
9 | // Licence: wxWindows licence | |
10 | ///////////////////////////////////////////////////////////////////////////// | |
11 | ||
12 | #ifndef _WX_MSW_SPINCTRL_H_ | |
13 | #define _WX_MSW_SPINCTRL_H_ | |
14 | ||
15 | #include "wx/spinbutt.h" // the base class | |
3c299c3a DW |
16 | #include "wx/dynarray.h" |
17 | class WXDLLEXPORT wxSpinCtrl; | |
18 | WX_DEFINE_EXPORTED_ARRAY(wxSpinCtrl *, wxArraySpins); | |
409c9842 DW |
19 | |
20 | // ---------------------------------------------------------------------------- | |
3e7fb41b | 21 | // Under Win32 and OS2 PM, wxSpinCtrl is a wxSpinButton with a buddy |
409c9842 DW |
22 | // text window whose contents is automatically updated when the spin |
23 | // control is clicked. | |
24 | // ---------------------------------------------------------------------------- | |
25 | ||
26 | class WXDLLEXPORT wxSpinCtrl : public wxSpinButton | |
27 | { | |
28 | public: | |
29 | wxSpinCtrl() { } | |
3c299c3a DW |
30 | wxSpinCtrl( wxWindow* pParent |
31 | ,wxWindowID vId = -1 | |
32 | ,const wxString& rsValue = wxEmptyString | |
33 | ,const wxPoint& rPos = wxDefaultPosition | |
34 | ,const wxSize& rSize = wxDefaultSize | |
35 | ,long lStyle = wxSP_ARROW_KEYS | |
36 | ,int nMin = 0 | |
37 | ,int nMax = 100 | |
38 | ,int nInitial = 0 | |
39 | ,const wxString& rsName = _T("wxSpinCtrl") | |
40 | ) | |
409c9842 | 41 | { |
3c299c3a | 42 | Create(pParent, vId, rsValue, rPos, rSize, lStyle, nMin, nMax, nInitial, rsName); |
409c9842 | 43 | } |
3c299c3a DW |
44 | virtual ~wxSpinCtrl(); |
45 | ||
46 | bool Create(wxWindow* pParent | |
47 | ,wxWindowID vId = -1 | |
48 | ,const wxString& rsValue = wxEmptyString | |
49 | ,const wxPoint& rPos = wxDefaultPosition | |
50 | ,const wxSize& rSize = wxDefaultSize | |
51 | ,long lStyle = wxSP_ARROW_KEYS | |
52 | ,int nMin = 0 | |
53 | ,int nMax = 100 | |
54 | ,int nInitial = 0 | |
55 | ,const wxString& rsName = _T("wxSpinCtrl") | |
56 | ); | |
57 | ||
58 | // | |
59 | // A wxTextCtrl-like method (but we can't have GetValue returning wxString | |
a5569657 | 60 | // because the base class already has one returning int!) |
3c299c3a DW |
61 | // |
62 | void SetValue(const wxString& rsText); | |
a5569657 | 63 | |
3c299c3a | 64 | // |
a5569657 DW |
65 | // implementation only from now on |
66 | // ------------------------------- | |
3c299c3a DW |
67 | // |
68 | virtual bool Enable(bool bEnable = TRUE); | |
a5569657 | 69 | |
3c299c3a | 70 | virtual int GetValue(void) const; |
a5569657 | 71 | |
3c299c3a DW |
72 | virtual bool SetFont(const wxFont &rFont); |
73 | virtual void SetFocus(void); | |
74 | inline virtual void SetValue(int nVal) { wxSpinButton::SetValue(nVal); } | |
409c9842 | 75 | |
3c299c3a | 76 | virtual bool Show(bool bShow = TRUE); |
a5569657 | 77 | |
3c299c3a DW |
78 | // |
79 | // wxSpinButton doesn't accept focus, but we do | |
80 | // | |
81 | inline virtual bool AcceptsFocus(void) const { return FALSE; } | |
a5569657 | 82 | |
3c299c3a DW |
83 | // |
84 | // Return the spinctrl object whose buddy is the given window or NULL | |
85 | // Doesn't really do much under OS/2 | |
86 | // | |
87 | static wxSpinCtrl* GetSpinForTextCtrl(WXHWND hWndBuddy); | |
88 | ||
89 | // | |
90 | // Process a WM_COMMAND generated by the buddy text control | |
91 | // | |
92 | bool ProcessTextCommand( WXWORD wCmd | |
93 | ,WXWORD wId | |
94 | ); | |
95 | ||
96 | protected: | |
97 | virtual void DoGetPosition( int* nlX | |
98 | ,int* nlY | |
99 | ) const; | |
100 | void DoMoveWindow( int nX | |
101 | ,int nY | |
102 | ,int nWidth | |
103 | ,int nHeight | |
104 | ); | |
105 | virtual wxSize DoGetBestSize(void) const; | |
106 | virtual void DoGetSize( int* pnWidth | |
107 | ,int* pnHeight | |
108 | ) const; | |
109 | ||
110 | // | |
111 | // The handler for wxSpinButton events | |
112 | // | |
113 | void OnSpinChange(wxSpinEvent& rEvent); | |
114 | void OnChar(wxKeyEvent& rEvent); | |
115 | ||
116 | WXHWND m_hWndBuddy; | |
117 | static wxArraySpins m_svAllSpins; | |
409c9842 | 118 | |
a5569657 | 119 | private: |
409c9842 | 120 | DECLARE_DYNAMIC_CLASS(wxSpinCtrl) |
a5569657 | 121 | DECLARE_EVENT_TABLE() |
3c299c3a | 122 | }; // end of CLASS wxSpinCtrl |
409c9842 DW |
123 | |
124 | #endif // _WX_MSW_SPINCTRL_H_ | |
125 | ||
126 |