Home · All Classes · Modules |
The QAbstractSpinBox class provides a spinbox and a line edit to display values. More...
Inherits QWidget.
Inherited by QDateTimeEdit, QDoubleSpinBox and QSpinBox.
The QAbstractSpinBox class provides a spinbox and a line edit to display values.
The class is designed as a common super class for widgets like QSpinBox, QDoubleSpinBox and QDateTimeEdit
Here are the main properties of the class:
QAbstractSpinBox provides a virtual 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 will trigger a call to stepBy(-1).
QAbstractSpinBox also provide a virtual function 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.
Constant | Value | Description |
---|---|---|
QAbstractSpinBox.UpDownArrows | 0 | Little arrows in the classic style. |
QAbstractSpinBox.PlusMinus | 1 | + and - symbols. |
QAbstractSpinBox.NoButtons | 2 | Don't display buttons. |
See also QAbstractSpinBox.buttonSymbols.
This enum type describes the mode the spinbox will use to correct an Intermediate value if editing finishes.
Constant | Value | Description |
---|---|---|
QAbstractSpinBox.CorrectToPreviousValue | 0 | The spinbox will revert to the last valid value. |
QAbstractSpinBox.CorrectToNearestValue | 1 | The spinbox will revert to the nearest valid value. |
See also correctionMode.
Constant | Value |
---|---|
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.
The parent argument, if not None, causes self to be owned by Qt instead of PyQt.
Constructs an abstract spinbox with the given parent with default wrapping, and alignment properties.
Reimplemented from QWidget.changeEvent().
This method is also a Qt slot with the C++ signature void clear().
Clears the lineedit of all text but prefix and suffix.
Reimplemented from QWidget.closeEvent().
Reimplemented from QWidget.contextMenuEvent().
Reimplemented from QObject.event().
This virtual function is called by the QAbstractSpinBox if the input is not validated to QValidator.Acceptable when Return is pressed or interpretText() is called. It will try to change the text so it is valid. Reimplemented in the various subclasses.
Reimplemented from QWidget.focusInEvent().
Reimplemented from QWidget.focusOutEvent().
Reimplemented from QWidget.hideEvent().
Initialize option with the values from this QSpinBox. This method is useful for subclasses when they need a QStyleOptionSpinBox, but don't want to fill in all the information themselves.
See also QStyleOption.initFrom().
Reimplemented from QWidget.inputMethodQuery().
This function interprets the text of the spin box. If the value has changed since last interpretation it will emit signals.
Reimplemented from 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. |
Up | 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) |
Reimplemented from QWidget.keyReleaseEvent().
This function returns a pointer to the line edit of the spin box.
See also setLineEdit().
Reimplemented from QWidget.minimumSizeHint().
Reimplemented from QWidget.mouseMoveEvent().
Reimplemented from QWidget.mousePressEvent().
Reimplemented from QWidget.mouseReleaseEvent().
Reimplemented from QWidget.paintEvent().
Reimplemented from 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.
The 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
If QLineEdit.validator() for the lineEdit returns 0, the internal validator of the spinbox will be set on the line edit.
See also lineEdit().
Reimplemented from QWidget.showEvent().
Reimplemented from 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 will trigger a call to 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);
See also stepBy() and stepUp().
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.
See also QSpinBox.minimum(), QSpinBox.maximum(), and 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);
See also stepBy() and stepDown().
Reimplemented from 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 subclasses.
Reimplemented from 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.
PyQt 4.12.1 for X11 | Copyright © Riverbank Computing Ltd and The Qt Company 2015 | Qt 4.8.7 |