The QAbstractSpinBox class provides a spinbox and a line edit to display values. 更多...
继承 QWidget .
Inherited by QDateTimeEdit , QDoubleSpinBox and QSpinBox .
The QAbstractSpinBox class provides a spinbox and a line edit to display values.
此类被设计作为 Widget 的通用超类像 QSpinBox , QDoubleSpinBox and QDateTimeEdit
这里是类的主要特性:
QAbstractSpinBox 提供虚拟 stepBy () function that is called whenever the user triggers a step. This function takes an integer value to signify how many steps were taken. E.g. Pressing Qt.Key_Down 将触发调用 stepBy(-1).
QAbstractSpinBox 还提供虚函数 stepEnabled () to determine whether stepping up/down is allowed at any point. This function returns a bitset of StepEnabled .
This enum type describes the symbols that can be displayed on the buttons in a spin box.
| 常量 | 值 | 描述 |
|---|---|---|
| QAbstractSpinBox.UpDownArrows | 0 | 经典风格小箭头。 |
| QAbstractSpinBox.PlusMinus | 1 | + and - 符号。 |
| QAbstractSpinBox.NoButtons | 2 | 不显示按钮。 |
另请参阅 QAbstractSpinBox.buttonSymbols .
This enum type describes the mode the spinbox will use to correct an 中间体 值若编辑完成。
| 常量 | 值 | 描述 |
|---|---|---|
| QAbstractSpinBox.CorrectToPreviousValue | 0 | The spinbox will revert to the last valid 值。 |
| QAbstractSpinBox.CorrectToNearestValue | 1 | The spinbox will revert to the nearest valid 值。 |
另请参阅 correctionMode .
| 常量 | 值 |
|---|---|
| QAbstractSpinBox.StepNone | 0x00 |
| QAbstractSpinBox.StepUpEnabled | 0x01 |
| QAbstractSpinBox.StepDownEnabled | 0x02 |
The StepEnabled type is a typedef for QFlags <StepEnabledFlag>. It stores an OR combination of StepEnabledFlag values.
parent argument, if not None, causes self to be owned by Qt instead of PyQt.
构造抽象 Spinbox 采用给定 parent with default wrapping , and alignment 特性。
重实现自 QWidget.changeEvent ().
This method is also a Qt slot with the C++ signature void clear() .
清零所有文本的 lineedit,除前缀和后缀外。
重实现自 QWidget.closeEvent ().
重实现自 QWidget.contextMenuEvent ().
重实现自 QObject.event ().
This virtual function is called by the QAbstractSpinBox 若 input is not validated to QValidator.Acceptable when Return is pressed or interpretText () 是 called. It will try to change the text so it is valid. Reimplemented in the various subclasses.
重实现自 QWidget.focusInEvent ().
重实现自 QWidget.focusOutEvent ().
重实现自 QWidget.hideEvent ().
初始化 option 采用值来自此 QSpinBox . This method is useful for subclasses when they need a QStyleOptionSpinBox , but don't want to fill in all the information themselves.
另请参阅 QStyleOption.initFrom ().
重实现自 QWidget.inputMethodQuery ().
This function interprets the text of the spin box. If the value has changed since last interpretation it will emit signals.
重实现自 QWidget.keyPressEvent ().
This function handles keyboard input.
The following keys are handled specifically:
| Enter/Return | This will reinterpret the text and emit a signal even if the value has not changed since last time a signal was emitted. |
| 向上 | This will invoke stepBy(1) |
| Down | This will invoke stepBy(-1) |
| Page up | This will invoke stepBy(10) |
| Page down | This will invoke stepBy(-10) |
重实现自 QWidget.keyReleaseEvent ().
This function returns a pointer to the line edit of the spin box.
另请参阅 setLineEdit ().
重实现自 QWidget.minimumSizeHint ().
重实现自 QWidget.mouseMoveEvent ().
重实现自 QWidget.mousePressEvent ().
重实现自 QWidget.mouseReleaseEvent ().
重实现自 QWidget.paintEvent ().
重实现自 QWidget.resizeEvent ().
This method is also a Qt slot with the C++ signature void selectAll() .
Selects all the text in the spinbox except the prefix and suffix.
e argument has it's ownership transferred to Qt.
Sets the line edit of the spinbox to be lineEdit instead of the current line edit widget. lineEdit can not be 0.
QAbstractSpinBox takes ownership of the new lineEdit
若 QLineEdit.validator () 为 lineEdit returns 0, the internal validator of the spinbox will be set on the line edit.
另请参阅 lineEdit ().
重实现自 QWidget.showEvent ().
重实现自 QWidget.sizeHint ().
Virtual function that is called whenever the user triggers a step. The steps parameter indicates how many steps were taken, e.g. Pressing Qt.Key_Down will trigger a call to stepBy(-1), whereas pressing Qt.Key_Prior 将触发调用 stepBy(10).
If you subclass QAbstractSpinBox you must reimplement this function. Note that this function is called even if the resulting value will be outside the bounds of minimum and maximum. It's this function's job to handle these situations.
This method is also a Qt slot with the C++ signature void stepDown() .
Steps down by one linestep Calling this slot is analogous to calling stepBy(-1);
Virtual function that determines whether stepping up and down is legal at any given time.
The up arrow will be painted as disabled unless (stepEnabled() & StepUpEnabled ) != 0.
The default implementation will return ( StepUpEnabled | StepDownEnabled ) if wrapping is turned on. Else it will return StepDownEnabled if value is > minimum() or'ed with StepUpEnabled if value < maximum().
If you subclass QAbstractSpinBox you will need to reimplement this function.
另请参阅 QSpinBox.minimum (), QSpinBox.maximum (),和 wrapping ().
This method is also a Qt slot with the C++ signature void stepUp() .
Steps up by one linestep Calling this slot is analogous to calling stepBy(1);
重实现自 QObject.timerEvent ().
This virtual function is called by the QAbstractSpinBox to determine whether input is valid. The pos parameter indicates the position in the string. Reimplemented in the various 子类。
重实现自 QWidget.wheelEvent ().
This is the default overload of this signal.
This signal is emitted editing is finished. This happens when the spinbox loses focus and when enter is pressed.