]>
git.saurik.com Git - wxWidgets.git/blob - include/wx/generic/spinctlg.h
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: wx/generic/spinctlg.h
3 // Purpose: generic wxSpinCtrl class
4 // Author: Vadim Zeitlin
8 // Copyright: (c) Vadim Zeitlin
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 #ifndef _WX_GENERIC_SPINCTRL_H_
13 #define _WX_GENERIC_SPINCTRL_H_
15 // ----------------------------------------------------------------------------
16 // wxSpinCtrl is a combination of wxSpinButton and wxTextCtrl, so if
17 // wxSpinButton is available, this is what we do - but if it isn't, we still
18 // define wxSpinCtrl class which then has the same appearance as wxTextCtrl but
19 // the different interface. This allows to write programs using wxSpinCtrl
20 // without tons of #ifdefs.
21 // ----------------------------------------------------------------------------
26 #pragma interface "spinctlg.h"
29 class WXDLLEXPORT wxSpinButton
;
30 class WXDLLEXPORT wxTextCtrl
;
32 // ----------------------------------------------------------------------------
33 // wxSpinCtrl is a combination of wxTextCtrl and wxSpinButton
34 // ----------------------------------------------------------------------------
36 class WXDLLEXPORT wxSpinCtrl
: public wxControl
39 wxSpinCtrl() { Init(); }
41 wxSpinCtrl(wxWindow
*parent
,
43 const wxString
& value
= wxEmptyString
,
44 const wxPoint
& pos
= wxDefaultPosition
,
45 const wxSize
& size
= wxDefaultSize
,
46 long style
= wxSP_ARROW_KEYS
,
47 int min
= 0, int max
= 100, int initial
= 0,
48 const wxString
& name
= _T("wxSpinCtrl"))
50 Create(parent
, id
, value
, pos
, size
, style
, min
, max
, initial
, name
);
53 bool Create(wxWindow
*parent
,
55 const wxString
& value
= wxEmptyString
,
56 const wxPoint
& pos
= wxDefaultPosition
,
57 const wxSize
& size
= wxDefaultSize
,
58 long style
= wxSP_ARROW_KEYS
,
59 int min
= 0, int max
= 100, int initial
= 0,
60 const wxString
& name
= _T("wxSpinCtrl"));
62 virtual ~wxSpinCtrl();
65 void SetValue(int val
);
66 void SetValue(const wxString
& text
);
67 void SetRange(int min
, int max
);
74 // implementation from now on
76 // forward these functions to all subcontrols
77 virtual bool Enable(bool enable
= TRUE
);
78 virtual bool Show(bool show
= TRUE
);
80 // get the subcontrols
81 wxTextCtrl
*GetText() const { return m_text
; }
82 wxSpinButton
*GetSpinButton() const { return m_btn
; }
84 // set the value of the text (only)
85 void SetTextValue(int val
);
87 // put the numeric value of the string in the text ctrl into val and return
88 // TRUE or return FALSE if the text ctrl doesn't contain a number or if the
89 // number is out of range
90 bool GetTextValue(int *val
) const;
93 // override the base class virtuals involved into geometry calculations
94 virtual wxSize
DoGetBestClientSize() const;
95 virtual void DoMoveWindow(int x
, int y
, int width
, int height
);
97 // common part of all ctors
106 DECLARE_DYNAMIC_CLASS(wxSpinCtrl
)
109 #else // !wxUSE_SPINBTN
111 // ----------------------------------------------------------------------------
112 // wxSpinCtrl is just a text control
113 // ----------------------------------------------------------------------------
115 #include "wx/textctrl.h"
117 class WXDLLEXPORT wxSpinCtrl
: public wxTextCtrl
120 wxSpinCtrl() { Init(); }
122 wxSpinCtrl(wxWindow
*parent
,
124 const wxString
& value
= wxEmptyString
,
125 const wxPoint
& pos
= wxDefaultPosition
,
126 const wxSize
& size
= wxDefaultSize
,
127 long style
= wxSP_ARROW_KEYS
,
128 int min
= 0, int max
= 100, int initial
= 0,
129 const wxString
& name
= _T("wxSpinCtrl"))
131 Create(parent
, id
, value
, pos
, size
, style
, min
, max
, initial
, name
);
134 bool Create(wxWindow
*parent
,
136 const wxString
& value
= wxEmptyString
,
137 const wxPoint
& pos
= wxDefaultPosition
,
138 const wxSize
& size
= wxDefaultSize
,
139 long style
= wxSP_ARROW_KEYS
,
140 int min
= 0, int max
= 100, int initial
= 0,
141 const wxString
& name
= _T("wxSpinCtrl"))
145 bool ok
= wxTextCtrl::Create(parent
, id
, value
, pos
, size
, style
,
146 wxDefaultValidator
, name
);
153 int GetValue(int WXUNUSED(dummy
) = 1) const
156 if ( (wxSscanf(wxTextCtrl::GetValue(), wxT("%d"), &n
) != 1) )
162 int GetMin() const { return m_min
; }
163 int GetMax() const { return m_max
; }
166 void SetValue(const wxString
& value
) { wxTextCtrl::SetValue(value
); }
167 void SetValue(int val
) { wxString s
; s
<< val
; wxTextCtrl::SetValue(s
); }
168 void SetRange(int min
, int max
) { m_min
= min
; m_max
= max
; }
171 // initialize m_min/max with the default values
172 void Init() { SetRange(0, 100); }
178 DECLARE_DYNAMIC_CLASS(wxSpinCtrl
)
181 #endif // wxUSE_SPINBTN/!wxUSE_SPINBTN
183 #endif // _WX_GENERIC_SPINCTRL_H_