The QMouseEventTransition class provides a transition for mouse events. More...
Header: | #include <QMouseEventTransition> |
qmake: | QT += widgets |
Since: | Qt 4.6 |
Inherits: | QEventTransition |
QMouseEventTransition(QState *sourceState = nullptr) | |
QMouseEventTransition(QObject *object, QEvent::Type type, Qt::MouseButton button, QState *sourceState = nullptr) | |
virtual | ~QMouseEventTransition() |
Qt::MouseButton | button() const |
QPainterPath | hitTestPath() const |
Qt::KeyboardModifiers | modifierMask() const |
void | setButton(Qt::MouseButton button) |
void | setHitTestPath(const QPainterPath &path) |
void | setModifierMask(Qt::KeyboardModifiers modifierMask) |
virtual bool | eventTest(QEvent *event) override |
virtual void | onTransition(QEvent *event) override |
The QMouseEventTransition class provides a transition for mouse events.
QMouseEventTransition is part of The State Machine Framework.
See also QState::addTransition().
This property holds the button that this mouse event transition is associated with
Access functions:
This property holds the keyboard modifier mask that this mouse event transition checks for
Access functions:
Qt::KeyboardModifiers | modifierMask() const |
void | setModifierMask(Qt::KeyboardModifiers modifierMask) |
Constructs a new mouse event transition with the given sourceState.
Constructs a new mouse event transition for events of the given type for the given object, with the given button and sourceState.
[virtual]
QMouseEventTransition::~QMouseEventTransition()Destroys this mouse event transition.
Returns the button that this mouse event transition checks for.
Note: Getter function for property button.
See also setButton().
[override virtual protected]
bool QMouseEventTransition::eventTest(QEvent *event)Reimplemented from QEventTransition::eventTest().
Returns the hit test path for this mouse event transition.
See also setHitTestPath().
Returns the keyboard modifier mask that this mouse event transition checks for.
Note: Getter function for property modifierMask.
See also setModifierMask().
[override virtual protected]
void QMouseEventTransition::onTransition(QEvent *event)Reimplemented from QEventTransition::onTransition().
Sets the button that this mouse event transition will check for.
Note: Setter function for property button.
See also button().
Sets the hit test path for this mouse event transition to path. If a valid path has been set, the transition will only trigger if the mouse event position (QMouseEvent::pos()) is inside the path.
See also hitTestPath() and QPainterPath::contains().
Sets the keyboard modifier mask that this mouse event transition will check for to modifierMask.
Note: Setter function for property modifierMask.
See also modifierMask().