The QAccessibleStateChangeEvent notfies the accessibility framework that the state of an object has changed. More...
Header: | #include <QAccessibleStateChangeEvent> |
CMake: | find_package(Qt6 COMPONENTS Gui REQUIRED) target_link_libraries(mytarget PRIVATE Qt6::Gui) |
qmake: | QT += gui |
Inherits: | QAccessibleEvent |
QAccessibleStateChangeEvent(QAccessibleInterface *iface, QAccessible::State state) | |
QAccessibleStateChangeEvent(QObject *object, QAccessible::State state) | |
QAccessible::State | changedStates() const |
This class is used with QAccessible::updateAccessibility().
See also QAccessibleInterface::state().
Constructs a new QAccessibleStateChangeEvent. iface is the interface associated with the event state is the state of the accessible object.
Constructs a new QAccessibleStateChangeEvent for object. The difference to the object's previous state is in state.
Returns the states that have been changed.
Keep in mind that the returned states are the ones that have changed. To find out about the state of an object, use QAccessibleInterface::state().
For example, if an object used to have the focus but loses it, the object's state will have focused set to false
. This event on the other hand tells about the change and has focused set to true
since the focus state is changed from true
to false
.
© The Qt Company Ltd
Licensed under the GNU Free Documentation License, Version 1.3.
https://doc.qt.io/qt-6.2/qaccessiblestatechangeevent.html