]>
Commit | Line | Data |
---|---|---|
f6bcfd97 | 1 | //////////////////////////////////////////////////////////////////////////// |
b782f2e0 VZ |
2 | // Name: msw/spinctrl.h |
3 | // Purpose: wxSpinCtrl class declaration for Win32 | |
4 | // Author: Vadim Zeitlin | |
5 | // Modified by: | |
6 | // Created: 22.07.99 | |
7 | // RCS-ID: $Id$ | |
8 | // Copyright: (c) Vadim Zeitlin | |
65571936 | 9 | // Licence: wxWindows licence |
b782f2e0 VZ |
10 | ///////////////////////////////////////////////////////////////////////////// |
11 | ||
12 | #ifndef _WX_MSW_SPINCTRL_H_ | |
13 | #define _WX_MSW_SPINCTRL_H_ | |
14 | ||
b782f2e0 VZ |
15 | #include "wx/spinbutt.h" // the base class |
16 | ||
0e871ad0 WS |
17 | #if wxUSE_SPINCTRL |
18 | ||
6fe19057 | 19 | #include "wx/dynarray.h" |
d77254fc | 20 | |
b5dbe15d | 21 | class WXDLLIMPEXP_FWD_CORE wxSpinCtrl; |
d5d29b8a | 22 | WX_DEFINE_EXPORTED_ARRAY_PTR(wxSpinCtrl *, wxArraySpins); |
6fe19057 | 23 | |
b782f2e0 VZ |
24 | // ---------------------------------------------------------------------------- |
25 | // Under Win32, wxSpinCtrl is a wxSpinButton with a buddy (as MSDN docs call | |
26 | // it) text window whose contents is automatically updated when the spin | |
27 | // control is clicked. | |
28 | // ---------------------------------------------------------------------------- | |
29 | ||
30 | class WXDLLEXPORT wxSpinCtrl : public wxSpinButton | |
31 | { | |
32 | public: | |
33 | wxSpinCtrl() { } | |
34 | ||
35 | wxSpinCtrl(wxWindow *parent, | |
57f4f925 | 36 | wxWindowID id = wxID_ANY, |
678cd6de | 37 | const wxString& value = wxEmptyString, |
b782f2e0 VZ |
38 | const wxPoint& pos = wxDefaultPosition, |
39 | const wxSize& size = wxDefaultSize, | |
40 | long style = wxSP_ARROW_KEYS, | |
41 | int min = 0, int max = 100, int initial = 0, | |
42 | const wxString& name = _T("wxSpinCtrl")) | |
43 | { | |
678cd6de | 44 | Create(parent, id, value, pos, size, style, min, max, initial, name); |
b782f2e0 VZ |
45 | } |
46 | ||
47 | bool Create(wxWindow *parent, | |
57f4f925 | 48 | wxWindowID id = wxID_ANY, |
678cd6de | 49 | const wxString& value = wxEmptyString, |
b782f2e0 VZ |
50 | const wxPoint& pos = wxDefaultPosition, |
51 | const wxSize& size = wxDefaultSize, | |
52 | long style = wxSP_ARROW_KEYS, | |
53 | int min = 0, int max = 100, int initial = 0, | |
54 | const wxString& name = _T("wxSpinCtrl")); | |
55 | ||
678cd6de VZ |
56 | // a wxTextCtrl-like method (but we can't have GetValue returning wxString |
57 | // because the base class already has one returning int!) | |
58 | void SetValue(const wxString& text); | |
59 | ||
07901ec9 VZ |
60 | // another wxTextCtrl-like method |
61 | void SetSelection(long from, long to); | |
62 | ||
882a8f40 VZ |
63 | // implementation only from now on |
64 | // ------------------------------- | |
65 | ||
f6bcfd97 BP |
66 | virtual ~wxSpinCtrl(); |
67 | ||
eeea41ab | 68 | virtual void SetValue(int val); |
b44d69ba | 69 | virtual int GetValue() const; |
baccb514 | 70 | virtual bool SetFont(const wxFont &font); |
b44d69ba | 71 | virtual void SetFocus(); |
baccb514 | 72 | |
57f4f925 WS |
73 | virtual bool Enable(bool enable = true); |
74 | virtual bool Show(bool show = true); | |
882a8f40 | 75 | |
03d4194d VZ |
76 | virtual bool Reparent(wxWindowBase *newParent); |
77 | ||
f6bcfd97 BP |
78 | // wxSpinButton doesn't accept focus, but we do |
79 | virtual bool AcceptsFocus() const { return wxWindow::AcceptsFocus(); } | |
80 | ||
6fe19057 VZ |
81 | // for internal use only |
82 | ||
83 | // get the subclassed window proc of the buddy text | |
84 | WXFARPROC GetBuddyWndProc() const { return m_wndProcBuddy; } | |
85 | ||
86 | // return the spinctrl object whose buddy is the given window or NULL | |
87 | static wxSpinCtrl *GetSpinForTextCtrl(WXHWND hwndBuddy); | |
88 | ||
89 | // process a WM_COMMAND generated by the buddy text control | |
90 | bool ProcessTextCommand(WXWORD cmd, WXWORD id); | |
8614c467 | 91 | |
b782f2e0 | 92 | protected: |
f6bcfd97 | 93 | virtual void DoGetPosition(int *x, int *y) const; |
baccb514 | 94 | virtual void DoMoveWindow(int x, int y, int width, int height); |
f68586e5 | 95 | virtual wxSize DoGetBestSize() const; |
f6bcfd97 | 96 | virtual void DoGetSize(int *width, int *height) const; |
b7527dde | 97 | virtual void DoGetClientSize(int *x, int *y) const; |
74124ea9 VZ |
98 | #if wxUSE_TOOLTIPS |
99 | virtual void DoSetToolTip( wxToolTip *tip ); | |
100 | #endif // wxUSE_TOOLTIPS | |
b782f2e0 | 101 | |
9750fc42 VZ |
102 | // the handler for wxSpinButton events |
103 | void OnSpinChange(wxSpinEvent& event); | |
104 | ||
d40e9e06 | 105 | // handle processing of special keys |
e08d628d | 106 | void OnChar(wxKeyEvent& event); |
c5c04fab | 107 | void OnSetFocus(wxFocusEvent& event); |
4c81b431 | 108 | void OnKillFocus(wxFocusEvent& event); |
e08d628d | 109 | |
d40e9e06 VZ |
110 | // generate spin control update event with the given value |
111 | void SendSpinUpdate(int value); | |
112 | ||
113 | // called to ensure that the value is in the correct range | |
1e8dba5e | 114 | virtual void NormalizeValue(); |
d40e9e06 VZ |
115 | |
116 | ||
117 | // the value of the control before the latest change (which might not have | |
118 | // changed anything in fact -- this is why we need this field) | |
119 | int m_oldValue; | |
120 | ||
f6bcfd97 BP |
121 | // the data for the "buddy" text ctrl |
122 | WXHWND m_hwndBuddy; | |
6fe19057 VZ |
123 | WXFARPROC m_wndProcBuddy; |
124 | ||
125 | // all existing wxSpinCtrls - this allows to find the one corresponding to | |
126 | // the given buddy window in GetSpinForTextCtrl() | |
127 | static wxArraySpins ms_allSpins; | |
b782f2e0 | 128 | |
9750fc42 | 129 | private: |
b782f2e0 | 130 | DECLARE_DYNAMIC_CLASS(wxSpinCtrl) |
9750fc42 | 131 | DECLARE_EVENT_TABLE() |
22f3361e | 132 | DECLARE_NO_COPY_CLASS(wxSpinCtrl) |
b782f2e0 VZ |
133 | }; |
134 | ||
0e871ad0 WS |
135 | #endif // wxUSE_SPINCTRL |
136 | ||
b782f2e0 VZ |
137 | #endif // _WX_MSW_SPINCTRL_H_ |
138 | ||
139 |