A wx.SpinButton has two small up and down (or left and right) arrow buttons.
It is often used next to a text control for increment and decrementing a value. Portable programs should try to use wx.SpinCtrl instead as wx.SpinButton is not implemented for all platforms but wx.SpinCtrl is as it degenerates to a simple wx.TextCtrl on such platforms.
This class supports the following styles:
wx.SP_HORIZONTAL
: Specifies a horizontal spin button (note that this style is not supported in wxGTK).
wx.SP_VERTICAL
: Specifies a vertical spin button.
wx.SP_ARROW_KEYS
: The user can use arrow keys to change the value.
wx.SP_WRAP
: The value wraps at the minimum and maximum.
Handlers bound for the following event types will receive a wx.SpinEvent parameter.
EVT_SPIN: Generated whenever an arrow is pressed.
EVT_SPIN_UP: Generated when left/up arrow is pressed.
EVT_SPIN_DOWN: Generated when right/down arrow is pressed.
Note that if you handle both SPIN
and wx.UP
or wx.DOWN
events, you will be notified about each of them twice: first the UP/DOWN event will be received and then, if it wasn’t vetoed, the SPIN
event will be sent.
Note
the range supported by this control (and wx.SpinCtrl) depends on the platform but is at least -0x8000
to 0x7fff
. Under GTK and Win32 with sufficiently new version of comctrl32.dll
(at least 4.71 is required, 5.80 is recommended) the full 32 bit range is supported.
See also
Default constructor. |
|
Scrollbar creation function called by the spin button constructor. |
|
Returns the maximum permissible value. |
|
Returns the minimum permissible value. |
|
Returns the current spin button value. |
|
Sets the range of the spin button. |
|
Sets the value of the spin button. |
wx.
SpinButton
(Control)¶Possible constructors:
SpinButton()
SpinButton(parent, id=-1, pos=DefaultPosition, size=DefaultSize,
style=SP_VERTICAL, name="spinButton")
A SpinButton has two small up and down (or left and right) arrow buttons.
__init__
(self, *args, **kw)¶__init__ (self)
Default constructor.
__init__ (self, parent, id=-1, pos=DefaultPosition, size=DefaultSize, style=SP_VERTICAL, name=”spinButton”)
Constructor, creating and showing a spin button.
parent (wx.Window) – Parent window. Must not be None
.
id (wx.WindowID) – Window identifier. The value wx.ID_ANY
indicates a default value.
pos (wx.Point) – Window position. If wx.DefaultPosition
is specified then a default position is chosen.
size (wx.Size) – Window size. If wx.DefaultSize
is specified then a default size is chosen.
style (long) – Window style. See wx.SpinButton class description.
name (string) – Window name.
See also
Create
(self, parent, id=-1, pos=DefaultPosition, size=DefaultSize, style=SP_VERTICAL, name="wxSpinButton")¶Scrollbar creation function called by the spin button constructor.
See wx.SpinButton for details.
GetClassDefaultAttributes
(variant=WINDOW_VARIANT_NORMAL)¶variant (WindowVariant) –
GetRange
(self)¶SetMax
(self, maxVal)¶SetMin
(self, minVal)¶SetRange
(self, min, max)¶Sets the range of the spin button.
min (int) – The minimum value for the spin button.
max (int) – The maximum value for the spin button.
SetValue
(self, value)¶Sets the value of the spin button.
value (int) – The value for the spin button.