/////////////////////////////////////////////////////////////////////////////
// Name: spinctrl.h
-// Purpose: documentation for wxSpinCtrl class
+// Purpose: interface of wxSpinCtrl
// Author: wxWidgets team
// RCS-ID: $Id$
// Licence: wxWindows license
wxSpinButton in one control.
@beginStyleTable
- @style{wxSP_ARROW_KEYS}:
+ @style{wxSP_ARROW_KEYS}
The user can use arrow keys to change the value.
- @style{wxSP_WRAP}:
+ @style{wxSP_WRAP}
The value wraps at the minimum and maximum.
@endStyleTable
@category{ctrl}
@appearance{spinctrl.png}
- @seealso
- @ref overview_eventhandlingoverview, wxSpinButton, wxControl
+ @see @ref overview_eventhandlingoverview, wxSpinButton, wxControl
*/
class wxSpinCtrl : public wxControl
{
/**
)
Constructor, creating and showing a spin control.
-
+
@param parent
Parent window. Must not be @NULL.
@param value
Initial value.
@param name
Window name.
-
+
@see Create()
*/
wxSpinCtrl();
Select the text in the text part of the control between positions
@a from (inclusive) and @a to (exclusive). This is similar to
wxTextCtrl::SetSelection.
- @b NB: this is currently only implemented for Windows and generic versions
+ @note this is currently only implemented for Windows and generic versions
of the control.
*/
void SetSelection(long from, long to);
void SetValue(int value);
//@}
};
+