]> git.saurik.com Git - wxWidgets.git/blob - include/wx/msw/spinctrl.h
Add support for CURRENCY and SCODE to MSW OLE helpers.
[wxWidgets.git] / include / wx / msw / spinctrl.h
1 ////////////////////////////////////////////////////////////////////////////
2 // Name: wx/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
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
16
17 #if wxUSE_SPINCTRL
18
19 #include "wx/dynarray.h"
20
21 class WXDLLIMPEXP_FWD_CORE wxSpinCtrl;
22 WX_DEFINE_EXPORTED_ARRAY_PTR(wxSpinCtrl *, wxArraySpins);
23
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 WXDLLIMPEXP_CORE wxSpinCtrl : public wxSpinButton
31 {
32 public:
33 wxSpinCtrl() { Init(); }
34
35 wxSpinCtrl(wxWindow *parent,
36 wxWindowID id = wxID_ANY,
37 const wxString& value = wxEmptyString,
38 const wxPoint& pos = wxDefaultPosition,
39 const wxSize& size = wxDefaultSize,
40 long style = wxSP_ARROW_KEYS | wxALIGN_RIGHT,
41 int min = 0, int max = 100, int initial = 0,
42 const wxString& name = wxT("wxSpinCtrl"))
43 {
44 Init();
45
46 Create(parent, id, value, pos, size, style, min, max, initial, name);
47 }
48
49 bool Create(wxWindow *parent,
50 wxWindowID id = wxID_ANY,
51 const wxString& value = wxEmptyString,
52 const wxPoint& pos = wxDefaultPosition,
53 const wxSize& size = wxDefaultSize,
54 long style = wxSP_ARROW_KEYS | wxALIGN_RIGHT,
55 int min = 0, int max = 100, int initial = 0,
56 const wxString& name = wxT("wxSpinCtrl"));
57
58 // a wxTextCtrl-like method (but we can't have GetValue returning wxString
59 // because the base class already has one returning int!)
60 void SetValue(const wxString& text);
61
62 // another wxTextCtrl-like method
63 void SetSelection(long from, long to);
64
65 // implementation only from now on
66 // -------------------------------
67
68 virtual ~wxSpinCtrl();
69
70 virtual void SetValue(int val);
71 virtual int GetValue() const;
72 virtual void SetRange(int minVal, int maxVal);
73 virtual bool SetFont(const wxFont &font);
74 virtual void SetFocus();
75
76 virtual bool Enable(bool enable = true);
77 virtual bool Show(bool show = true);
78
79 virtual bool Reparent(wxWindowBase *newParent);
80
81 // wxSpinButton doesn't accept focus, but we do
82 virtual bool AcceptsFocus() const { return wxWindow::AcceptsFocus(); }
83
84 // we're like wxTextCtrl and not (default) wxButton
85 virtual wxVisualAttributes GetDefaultAttributes() const
86 {
87 return GetClassDefaultAttributes(GetWindowVariant());
88 }
89
90 static wxVisualAttributes
91 GetClassDefaultAttributes(wxWindowVariant variant = wxWINDOW_VARIANT_NORMAL)
92 {
93 return GetCompositeControlsDefaultAttributes(variant);
94 }
95
96 // for internal use only
97
98 // get the subclassed window proc of the buddy text
99 WXFARPROC GetBuddyWndProc() const { return m_wndProcBuddy; }
100
101 // return the spinctrl object whose buddy is the given window or NULL
102 static wxSpinCtrl *GetSpinForTextCtrl(WXHWND hwndBuddy);
103
104 // process a WM_COMMAND generated by the buddy text control
105 bool ProcessTextCommand(WXWORD cmd, WXWORD id);
106
107 // recognize buddy window as part of this control at wx level
108 virtual bool ContainsHWND(WXHWND hWnd) const { return hWnd == m_hwndBuddy; }
109
110 protected:
111 virtual void DoGetPosition(int *x, int *y) const;
112 virtual void DoMoveWindow(int x, int y, int width, int height);
113 virtual wxSize DoGetBestSize() const;
114 virtual void DoGetSize(int *width, int *height) const;
115 virtual void DoGetClientSize(int *x, int *y) const;
116 #if wxUSE_TOOLTIPS
117 virtual void DoSetToolTip( wxToolTip *tip );
118 #endif // wxUSE_TOOLTIPS
119
120 virtual bool MSWOnNotify(int idCtrl, WXLPARAM lParam, WXLPARAM *result);
121 virtual bool MSWOnScroll(int orientation, WXWORD wParam,
122 WXWORD pos, WXHWND control);
123
124 // handle processing of special keys
125 void OnChar(wxKeyEvent& event);
126 void OnSetFocus(wxFocusEvent& event);
127 void OnKillFocus(wxFocusEvent& event);
128
129 // generate spin control update event with the given value
130 void SendSpinUpdate(int value);
131
132 // called to ensure that the value is in the correct range
133 virtual void NormalizeValue();
134
135
136 // the value of the control before the latest change (which might not have
137 // changed anything in fact -- this is why we need this field)
138 int m_oldValue;
139
140 // the data for the "buddy" text ctrl
141 WXHWND m_hwndBuddy;
142 WXFARPROC m_wndProcBuddy;
143
144 // Block text update event after SetValue()
145 bool m_blockEvent;
146
147 private:
148 // Common part of all ctors.
149 void Init();
150
151 DECLARE_DYNAMIC_CLASS(wxSpinCtrl)
152 DECLARE_EVENT_TABLE()
153 wxDECLARE_NO_COPY_CLASS(wxSpinCtrl);
154 };
155
156 #endif // wxUSE_SPINCTRL
157
158 #endif // _WX_MSW_SPINCTRL_H_
159
160