QSpinBox¶

Synopsis¶
Functions¶
- def - cleanText()
- def - displayIntegerBase()
- def - maximum()
- def - minimum()
- def - prefix()
- def - setDisplayIntegerBase(base)
- def - setMaximum(max)
- def - setMinimum(min)
- def - setPrefix(prefix)
- def - setRange(min, max)
- def - setSingleStep(val)
- def - setStepType(stepType)
- def - setSuffix(suffix)
- def - singleStep()
- def - stepType()
- def - suffix()
- def - value()
Virtual functions¶
- def - textFromValue(val)
- def - valueFromText(text)
Signals¶
- def - valueChanged(arg__1)
- def - valueChanged(arg__1)
Detailed Description¶

QSpinBoxis designed to handle integers and discrete sets of values (e.g., month names); useQDoubleSpinBoxfor floating point values.
QSpinBoxallows the user to choose a value by clicking the up/down buttons or pressing up/down on the keyboard to increase/decrease the value currently displayed. The user can also type the value in manually. The spin box supports integer values but can be extended to use different strings withvalidate(),textFromValue()andvalueFromText().Every time the value changes
QSpinBoxemits twovalueChanged()signals, one providing an int and the other aQString. TheQStringoverload provides the value with bothprefix()andsuffix(). The current value can be fetched withvalue()and set withsetValue().Clicking the up/down buttons or using the keyboard accelerator’s up and down arrows will increase or decrease the current value in steps of size
singleStep(). If you want to change this behaviour you can reimplement the virtual functionstepBy(). The minimum and maximum value and the step size can be set using one of the constructors, and can be changed later withsetMinimum(),setMaximum()andsetSingleStep().Most spin boxes are directional, but
QSpinBoxcan also operate as a circular spin box, i.e. if the range is 0-99 and the current value is 99, clicking “up” will give 0 ifwrapping()is set to true. UsesetWrapping()if you want circular behavior.The displayed value can be prepended and appended with arbitrary strings indicating, for example, currency or the unit of measurement. See
setPrefix()andsetSuffix(). The text in the spin box is retrieved withtext()(which includes anyprefix()andsuffix()), or withcleanText()(which has noprefix(), nosuffix()and no leading or trailing whitespace).It is often desirable to give the user a special (often default) choice in addition to the range of numeric values. See
setSpecialValueText()for how to do this withQSpinBox.
Subclassing QSpinBox¶
If using
prefix(),suffix(), andspecialValueText()don’t provide enough control, you subclassQSpinBoxand reimplementvalueFromText()andtextFromValue(). For example, here’s the code for a custom spin box that allows the user to enter icon sizes (e.g., “32 x 32”):def valueFromText(self, text): regExp = QRegExp(tr("(\\d+)(\\s*[xx]\\s*\\d+)?")) if regExp.exactMatch(text): return regExp.cap(1).toInt() else: return 0 def textFromValue(self, value): return self.tr("%1 x %1").arg(value)See the Icons example for the full source code.
- 
class QSpinBox([parent=None])¶
- param parent
 - Constructs a spin box with 0 as minimum value and 99 as maximum value, a step value of 1. The value is initially set to 0. It is parented to - parent.- See also 
- 
PySide2.QtWidgets.QSpinBox.cleanText()¶
- Return type
- unicode 
 
- 
PySide2.QtWidgets.QSpinBox.displayIntegerBase()¶
- Return type
- int
 - See also 
- 
PySide2.QtWidgets.QSpinBox.maximum()¶
- Return type
- int
 - See also 
- 
PySide2.QtWidgets.QSpinBox.minimum()¶
- Return type
- int
 - See also 
- 
PySide2.QtWidgets.QSpinBox.prefix()¶
- Return type
- unicode 
 - See also 
- 
PySide2.QtWidgets.QSpinBox.setDisplayIntegerBase(base)¶
- Parameters
- base – - int
 - See also 
- 
PySide2.QtWidgets.QSpinBox.setRange(min, max)¶
- Parameters
- min – - int
- max – - int
 
 - Convenience function to set the - minimum, and- maximumvalues with a single function call.- setRange(minimum, maximum) - is equivalent to: - setMinimum(minimum) setMaximum(maximum) 
- 
PySide2.QtWidgets.QSpinBox.setSingleStep(val)¶
- Parameters
- val – - int
 - See also 
- 
PySide2.QtWidgets.QSpinBox.setStepType(stepType)¶
- Parameters
- stepType – - StepType
 - Sets the step type for the spin box to - stepType, which is single step or adaptive decimal step.- Adaptive decimal step means that the step size will continuously be adjusted to one power of ten below the current - value. So when the value is 1100, the step is set to 100, so stepping up once increases it to 1200. For 1200 stepping up takes it to 1300. For negative values, stepping down from -1100 goes to -1200.- Step direction is taken into account to handle edges cases, so that stepping down from 100 takes the value to 99 instead of 90. Thus a step up followed by a step down – or vice versa – always lands on the starting value; 99 -> 100 -> 99. - Setting this will cause the spin box to disregard the value of - singleStep, although it is preserved so that- singleStepcomes into effect if adaptive decimal step is later turned off.- See also 
- 
PySide2.QtWidgets.QSpinBox.singleStep()¶
- Return type
- int
 - See also 
- 
PySide2.QtWidgets.QSpinBox.stepType()¶
- Return type
- StepType
 - See also 
- 
PySide2.QtWidgets.QSpinBox.suffix()¶
- Return type
- unicode 
 - See also 
- 
PySide2.QtWidgets.QSpinBox.textFromValue(val)¶
- Parameters
- val – - int
- Return type
- unicode 
 - This virtual function is used by the spin box whenever it needs to display the given - value. The default implementation returns a string containing- valueprinted in the standard way using- locale().toString(), but with the thousand separator removed unless- setGroupSeparatorShown()is set. Reimplementations may return anything. (See the example in the detailed description.)- Note: - QSpinBoxdoes not call this function for- specialValueText()and that neither- prefix()nor- suffix()should be included in the return value.- If you reimplement this, you may also need to reimplement - valueFromText()and- validate()- See also - valueFromText()- validate()- groupSeparator()
- 
PySide2.QtWidgets.QSpinBox.value()¶
- Return type
- int
 - See also 
- 
PySide2.QtWidgets.QSpinBox.valueChanged(arg__1)¶
- Parameters
- arg__1 – unicode 
 - def callback_unicode(value_as_unicode): print 'unicode value changed:', repr(value_as_unicode) app = QApplication(sys.argv) spinbox = QSpinBox() spinbox.valueChanged[unicode].connect(callback_unicode) spinbox.show() sys.exit(app.exec_()) 
- 
PySide2.QtWidgets.QSpinBox.valueChanged(arg__1)
- Parameters
- arg__1 – - int
 - def callback_int(value_as_int): print 'int value changed:', repr(value_as_int) app = QApplication(sys.argv) spinbox = QSpinBox() spinbox.valueChanged[unicode].connect(callback_unicode) spinbox.show() sys.exit(app.exec_()) 
- 
PySide2.QtWidgets.QSpinBox.valueFromText(text)¶
- Parameters
- text – unicode 
- Return type
- int
 - This virtual function is used by the spin box whenever it needs to interpret - textentered by the user as a value.- Subclasses that need to display spin box values in a non-numeric way need to reimplement this function. - Note: - QSpinBoxhandles- specialValueText()separately; this function is only concerned with the other values.- See also - textFromValue()- validate()
© 2018 The Qt Company Ltd. Documentation contributions included herein are the copyrights of their respective owners. The documentation provided herein is licensed under the terms of the GNU Free Documentation License version 1.3 as published by the Free Software Foundation. Qt and respective logos are trademarks of The Qt Company Ltd. in Finland and/or other countries worldwide. All other trademarks are property of their respective owners.