IdentifiantMot de passe
Loading...
Mot de passe oublié ?Je m'inscris ! (gratuit)

QAccessibleValueInterface Class

The QAccessibleValueInterface class implements support for objects that manipulate a value.

Article lu   fois.

L'auteur

Liens sociaux

Viadeo Twitter Facebook Share on Google+   

QAccessibleValueInterface Class

  • Header: QAccessibleValueInterface

  • CMake:

    find_package(Qt6 REQUIRED COMPONENTS Gui)

    target_link_libraries(mytarget PRIVATE Qt6::Gui)

  • qmake: QT += gui

  • Inherited By:

  • Group: QAccessibleValueInterface is part of accessibility

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.

IAccessible2 Specification

Member Function Documentation

 

[virtual] QAccessibleValueInterface::~QAccessibleValueInterface()

[pure virtual] QVariant QAccessibleValueInterface::currentValue() const

Returns the current value of the widget. This is usually a double or int.

See Also

See also setCurrentValue()

[pure virtual] QVariant QAccessibleValueInterface::maximumValue() const

Returns the maximum value this object accepts.

See Also

See also minimumValue(), currentValue()

[pure virtual] QVariant QAccessibleValueInterface::minimumStepSize() const

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.

[pure virtual] QVariant QAccessibleValueInterface::minimumValue() const

Returns the minimum value this object accepts.

See Also

See also maximumValue(), currentValue()

[pure virtual] void QAccessibleValueInterface::setCurrentValue(const QVariant &value)

Sets the value. If the desired value is out of the range of permissible values, this call will be ignored.

See Also

Vous avez aimé ce tutoriel ? Alors partagez-le en cliquant sur les boutons suivants : Viadeo Twitter Facebook Share on Google+