KIntSpinBox Class Reference
from PyKDE4.kdeui import *
Inherits: QSpinBox → QAbstractSpinBox → QWidget → QObject
Detailed Description
Methods | |
__init__ (self, QWidget parent=0) | |
__init__ (self, int lower, int upper, int step, int value, QWidget parent, int base=10) | |
__init__ (self, KIntSpinBox a0) | |
int | base (self) |
setBase (self, int base) | |
setEditFocus (self, bool mark) | |
QString | textFromValue (self, int a0) |
int | valueFromText (self, QString text) |
Method Documentation
__init__ | ( | self, | ||
QWidget | parent=0 | |||
) |
Constructor.
Constructs a widget with an integer inputline with a little scrollbar and a slider, with minimal value 0, maximal value 99, step 1, base 10 and initial value 0.
__init__ | ( | self, | ||
int | lower, | |||
int | upper, | |||
int | step, | |||
int | value, | |||
QWidget | parent, | |||
int | base=10 | |||
) |
Constructor.
Constructs a widget with an integer inputline with a little scrollbar and a slider.
- Parameters:
-
lower The lowest valid value. upper The greatest valid value. step The step size of the scrollbar. value The actual value. base The base of the used number system. parent The parent of the widget.
__init__ | ( | self, | ||
KIntSpinBox | a0 | |||
) |
int base | ( | self ) |
- Returns:
- the base in which numbers in the spin box are represented.
setBase | ( | self, | ||
int | base | |||
) |
Sets the base in which the numbers in the spin box are represented.
setEditFocus | ( | self, | ||
bool | mark | |||
) |
sets focus and optionally marks all text
QString textFromValue | ( | self, | ||
int | a0 | |||
) |
Overloaded the method in QSpinBox to make use of the base given in the constructor.
int valueFromText | ( | self, | ||
QString | text | |||
) |
Overloaded the method in QSpinBox to make use of the base given in the constructor.