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
()
def
textFromValue
(val)
def
valueFromText
(text)
def
textChanged
(arg__1)
def
valueChanged
(arg__1)
def
valueChanged
(arg__1)
![]()
QSpinBoxis designed to handle integers and discrete sets of values (e.g., month names); useQDoubleSpinBox为浮点值。
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
QSpinBox发射valueChanged()andtextChanged()signals, the former providing a int and the latter aQString。textChanged()signal 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.
If using
prefix(),suffix(),和specialValueText()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)见 Icons example for the full source code.
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
.
PySide2.QtWidgets.QSpinBox.
cleanText
(
)
¶
unicode
PySide2.QtWidgets.QSpinBox.
displayIntegerBase
(
)
¶
int
PySide2.QtWidgets.QSpinBox.
maximum
(
)
¶
int
另请参阅
PySide2.QtWidgets.QSpinBox.
minimum
(
)
¶
int
另请参阅
PySide2.QtWidgets.QSpinBox.
prefix
(
)
¶
unicode
另请参阅
PySide2.QtWidgets.QSpinBox.
setDisplayIntegerBase
(
base
)
¶
base
–
int
另请参阅
PySide2.QtWidgets.QSpinBox.
setRange
(
min
,
max
)
¶
min
–
int
max
–
int
Convenience function to set the
minimum
,和
maximum
values with a single function call.
setRange(minimum, maximum)
相当于:
setMinimum(minimum)
setMaximum(maximum)
PySide2.QtWidgets.QSpinBox.
setSingleStep
(
val
)
¶
val
–
int
另请参阅
PySide2.QtWidgets.QSpinBox.
setStepType
(
stepType
)
¶
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
singleStep
comes into effect if adaptive decimal step is later turned off.
另请参阅
PySide2.QtWidgets.QSpinBox.
singleStep
(
)
¶
int
另请参阅
PySide2.QtWidgets.QSpinBox.
stepType
(
)
¶
StepType
另请参阅
PySide2.QtWidgets.QSpinBox.
suffix
(
)
¶
unicode
另请参阅
PySide2.QtWidgets.QSpinBox.
textChanged
(
arg__1
)
¶
arg__1 – unicode
PySide2.QtWidgets.QSpinBox.
textFromValue
(
val
)
¶
val
–
int
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
value
printed 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.)
注意:
QSpinBox
does 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()
另请参阅
valueFromText()
validate()
groupSeparator()
PySide2.QtWidgets.QSpinBox.
value
(
)
¶
int
另请参阅
PySide2.QtWidgets.QSpinBox.
valueChanged
(
arg__1
)
¶
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
)
¶
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
)
¶
text – unicode
int
This virtual function is used by the spin box whenever it needs to interpret
text
entered by the user as a value.
Subclasses that need to display spin box values in a non-numeric way need to reimplement this function.
注意:
QSpinBox
handles
specialValueText()
separately; this function is only concerned with the other values.
另请参阅
textFromValue()
validate()