- class QAccessibleValueInterface¶
The
QAccessibleValueInterface
class implements support for objects that manipulate a value. More…Synopsis¶
Virtual methods¶
def
currentValue()
def
maximumValue()
def
minimumValue()
Note
This documentation may contain snippets that were automatically translated from C++ to Python. We always welcome contributions to the snippet translation. If you see an issue with the translation, you can also let us know by creating a ticket on https:/bugreports.qt.io/projects/PYSIDE
Detailed Description¶
This interface should be implemented by accessible objects that represent a value. Examples are spinner, slider, dial and scroll bar.
Instead of forcing the user to deal with the individual parts of the widgets, this interface gives an easier approach to the kind of widget it represents.
Usually this interface is implemented by classes that also implement
QAccessibleInterface
.- abstract currentValue()¶
- Return type:
object
Returns the current value of the widget. This is usually a double or int.
See also
- abstract maximumValue()¶
- Return type:
object
Returns the maximum value this object accepts.
See also
- abstract minimumStepSize()¶
- Return type:
object
Returns the minimum step size for the accessible. This is the smallest increment that makes sense when changing the value. When programmatically changing the value it should always be a multiple of the minimum step size.
Some tools use this value even when the
setCurrentValue
does not perform any action. Progress bars for example are read-only but should return their range divided by 100.- abstract minimumValue()¶
- Return type:
object
Returns the minimum value this object accepts.
See also
- abstract setCurrentValue(value)¶
- Parameters:
value – object
Sets the
value
. If the desiredvalue
is out of the range of permissible values, this call will be ignored.See also