]> git.saurik.com Git - wxWidgets.git/blame - interface/wx/spinctrl.h
fix for HP aCC
[wxWidgets.git] / interface / wx / spinctrl.h
CommitLineData
23324ae1
FM
1/////////////////////////////////////////////////////////////////////////////
2// Name: spinctrl.h
e54c96f1 3// Purpose: interface of wxSpinCtrl
23324ae1
FM
4// Author: wxWidgets team
5// RCS-ID: $Id$
6// Licence: wxWindows license
7/////////////////////////////////////////////////////////////////////////////
8
9/**
10 @class wxSpinCtrl
7c913512 11
e725ba4f 12 wxSpinCtrl combines wxTextCtrl and wxSpinButton in one control.
7c913512 13
23324ae1 14 @beginStyleTable
8c6791e4 15 @style{wxSP_ARROW_KEYS}
242ec2f7 16 The user can use arrow keys to change the value.
8c6791e4 17 @style{wxSP_WRAP}
242ec2f7
VZ
18 The value wraps at the minimum and maximum.
19 @style{wxTE_PROCESS_ENTER}
20 Indicates that the control should generate wxEVT_COMMAND_TEXT_ENTER
21 events. Using this style will prevent the user from using the Enter key
22 for dialog navigation (e.g. activating the default button in the
23 dialog) under MSW.
23324ae1 24 @endStyleTable
7c913512 25
e725ba4f 26
3051a44a 27 @beginEventEmissionTable{wxSpinEvent}
e725ba4f
FM
28 @event{EVT_SPINCTRL(id, func)}
29 Generated whenever the numeric value of the spinctrl is updated
30 @endEventTable
31
32 You may also use the wxSpinButton event macros, however the corresponding events
33 will not be generated under all platforms. Finally, if the user modifies the
34 text in the edit part of the spin control directly, the EVT_TEXT is generated,
35 like for the wxTextCtrl. When the use enters text into the text area, the text
36 is not validated until the control loses focus (e.g. by using the TAB key).
37 The value is then adjusted to the range and a wxSpinEvent sent then if the value
38 is different from the last value sent.
39
23324ae1
FM
40 @library{wxcore}
41 @category{ctrl}
7e59b885 42 @appearance{spinctrl.png}
7c913512 43
42561c3c 44 @see wxSpinButton, wxSpinCtrlDouble, wxControl
23324ae1
FM
45*/
46class wxSpinCtrl : public wxControl
47{
48public:
23324ae1 49 /**
d930d177
RR
50 Default constructor.
51 */
52 wxSpinCtrl();
e725ba4f 53
d930d177 54 /**
23324ae1 55 Constructor, creating and showing a spin control.
3c4f71cc 56
7c913512 57 @param parent
4cc4bfaf 58 Parent window. Must not be @NULL.
7c913512 59 @param value
d930d177 60 Default value (as text).
7c913512 61 @param id
4cc4bfaf 62 Window identifier. The value wxID_ANY indicates a default value.
7c913512 63 @param pos
e725ba4f
FM
64 Window position.
65 If wxDefaultPosition is specified then a default position is chosen.
7c913512 66 @param size
e725ba4f
FM
67 Window size.
68 If wxDefaultSize is specified then a default size is chosen.
7c913512 69 @param style
4cc4bfaf 70 Window style. See wxSpinButton.
7c913512 71 @param min
4cc4bfaf 72 Minimal value.
7c913512 73 @param max
4cc4bfaf 74 Maximal value.
7c913512 75 @param initial
4cc4bfaf 76 Initial value.
7c913512 77 @param name
4cc4bfaf 78 Window name.
3c4f71cc 79
4cc4bfaf 80 @see Create()
23324ae1 81 */
11e3af6e 82 wxSpinCtrl(wxWindow* parent, wxWindowID id = wxID_ANY,
7c913512
FM
83 const wxString& value = wxEmptyString,
84 const wxPoint& pos = wxDefaultPosition,
85 const wxSize& size = wxDefaultSize,
86 long style = wxSP_ARROW_KEYS,
87 int min = 0, int max = 100,
11e3af6e 88 int initial = 0, const wxString& name = "wxSpinCtrl");
23324ae1
FM
89
90 /**
23324ae1 91 Creation function called by the spin control constructor.
23324ae1
FM
92 See wxSpinCtrl() for details.
93 */
43c48e1e 94 bool Create(wxWindow* parent, wxWindowID id = wxID_ANY,
23324ae1
FM
95 const wxString& value = wxEmptyString,
96 const wxPoint& pos = wxDefaultPosition,
97 const wxSize& size = wxDefaultSize,
43c48e1e
FM
98 long style = wxSP_ARROW_KEYS, int min = 0, int max = 100,
99 int initial = 0, const wxString& name = "wxSpinCtrl");
23324ae1
FM
100
101 /**
102 Gets maximal allowable value.
103 */
328f5751 104 int GetMax() const;
23324ae1
FM
105
106 /**
107 Gets minimal allowable value.
108 */
328f5751 109 int GetMin() const;
23324ae1
FM
110
111 /**
112 Gets the value of the spin control.
113 */
328f5751 114 int GetValue() const;
23324ae1
FM
115
116 /**
117 Sets range of allowable values.
118 */
119 void SetRange(int minVal, int maxVal);
120
121 /**
7c913512 122 Select the text in the text part of the control between positions
e725ba4f
FM
123 @a from (inclusive) and @a to (exclusive).
124 This is similar to wxTextCtrl::SetSelection().
125
1f1d2182 126 @note this is currently only implemented for Windows and generic versions
e725ba4f 127 of the control.
23324ae1 128 */
0004982c 129 virtual void SetSelection(long from, long to);
23324ae1 130
23324ae1 131 /**
d930d177 132 Sets the value of the spin control. Use the variant using int instead.
23324ae1 133 */
adaaa686 134 virtual void SetValue(const wxString& text);
d930d177
RR
135
136 /**
137 Sets the value of the spin control.
138 */
7c913512 139 void SetValue(int value);
23324ae1 140};
e54c96f1 141