The QKeyEventTransition class provides a transition for key events. More...
Header: | #include <QKeyEventTransition> |
CMake: | find_package(Qt6 COMPONENTS StateMachine REQUIRED) target_link_libraries(mytarget PRIVATE Qt6::StateMachine) |
qmake: | QT += statemachine |
Inherits: | QEventTransition |
QKeyEventTransition(QObject *object, QEvent::Type type, int key, QState *sourceState = nullptr) | |
QKeyEventTransition(QState *sourceState = nullptr) | |
virtual | ~QKeyEventTransition() |
int | key() const |
Qt::KeyboardModifiers | modifierMask() const |
void | setKey(int key) |
void | setModifierMask(Qt::KeyboardModifiers modifierMask) |
virtual bool | eventTest(QEvent *event) override |
virtual void | onTransition(QEvent *event) override |
QKeyEventTransition is part of Qt State Machine Framework.
See also QState::addTransition().
[bindable]
key : int
Note: This property supports QProperty bindings.
This property holds the key that this key event transition is associated with
[bindable]
modifierMask : Qt::KeyboardModifiers
Note: This property supports QProperty bindings.
This property holds the keyboard modifier mask that this key event transition checks for
Constructs a new key event transition for events of the given type for the given object, with the given key and sourceState.
Constructs a new key event transition with the given sourceState.
[virtual]
QKeyEventTransition::~QKeyEventTransition()
Destroys this key event transition.
[override virtual protected]
bool QKeyEventTransition::eventTest(QEvent *event)
Reimplements: QEventTransition::eventTest(QEvent *event).
Returns the key that this key event transition checks for.
Note: Getter function for property key.
See also setKey().
Returns the keyboard modifier mask that this key event transition checks for.
Note: Getter function for property modifierMask.
See also setModifierMask().
[override virtual protected]
void QKeyEventTransition::onTransition(QEvent *event)
Reimplements: QEventTransition::onTransition(QEvent *event).
Sets the key that this key event transition will check for.
Note: Setter function for property key.
See also key().
Sets the keyboard modifier mask that this key event transition will check for to modifierMask.
Note: Setter function for property modifierMask.
See also modifierMask().
© The Qt Company Ltd
Licensed under the GNU Free Documentation License, Version 1.3.
https://doc.qt.io/qt-6.2/qkeyeventtransition.html