/////////////////////////////////////////////////////////////////////////////
// Name: spinbutt.h
-// Purpose: documentation for wxSpinEvent class
+// Purpose: interface of wxSpinEvent
// Author: wxWidgets team
// RCS-ID: $Id$
// Licence: wxWindows license
@library{wxcore}
@category{events}
- @seealso
- wxSpinButton and wxSpinCtrl
+ @see wxSpinButton and wxSpinCtrl
*/
class wxSpinEvent : public wxNotifyEvent
{
/**
Retrieve the current spin button or control value.
*/
- int GetPosition();
+ int GetPosition() const;
/**
Set the value associated with the event.
};
+
/**
@class wxSpinButton
@wxheader{spinbutt.h}
@category{ctrl}
@appearance{spinbutton.png}
- @seealso
- wxSpinCtrl
+ @see wxSpinCtrl
*/
class wxSpinButton : public wxControl
{
@see SetRange()
*/
- int GetMax();
+ int GetMax() const;
/**
Returns the minimum permissible value.
@see SetRange()
*/
- int GetMin();
+ int GetMin() const;
/**
Returns the current spin button value.
@see SetValue()
*/
- int GetValue();
+ int GetValue() const;
/**
Sets the range of the spin button.
*/
void SetValue(int value);
};
+