QMouseEventTransition Class

The QMouseEventTransition class provides a transition for mouse events. More...

Header: #include <QMouseEventTransition>
Since: Qt 4.6
Inherits: QEventTransition

Properties

Public Functions

QMouseEventTransition(QState * sourceState = 0)
QMouseEventTransition(QObject * object, QEvent::Type type, Qt::MouseButton button, QState * sourceState = 0)
~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)

Reimplemented Protected Functions

virtual bool eventTest(QEvent * event)
virtual void onTransition(QEvent * event)

Additional Inherited Members

Detailed Description

The QMouseEventTransition class provides a transition for mouse events.

QMouseEventTransition is part of The State Machine Framework.

See also QState::addTransition().

Property Documentation

button : Qt::MouseButton

This property holds the button that this mouse event transition is associated with.

Access functions:

Qt::MouseButton button() const
void setButton(Qt::MouseButton button)

modifierMask : Qt::KeyboardModifiers

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)

Member Function Documentation

QMouseEventTransition::QMouseEventTransition(QState * sourceState = 0)

Constructs a new mouse event transition with the given sourceState.

QMouseEventTransition::QMouseEventTransition(QObject * object, QEvent::Type type, Qt::MouseButton button, QState * sourceState = 0)

Constructs a new mouse event transition for events of the given type for the given object, with the given button and sourceState.

QMouseEventTransition::~QMouseEventTransition()

Destroys this mouse event transition.

[virtual protected] bool QMouseEventTransition::eventTest(QEvent * event)

Reimplemented from QAbstractTransition::eventTest().

QPainterPath QMouseEventTransition::hitTestPath() const

Returns the hit test path for this mouse event transition.

See also setHitTestPath().

[virtual protected] void QMouseEventTransition::onTransition(QEvent * event)

Reimplemented from QAbstractTransition::onTransition().

void QMouseEventTransition::setHitTestPath(const QPainterPath & path)

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().

© 2016 The Qt Company Ltd. Documentation contributions included herein are the copyrights of their respective owners. The documentation provided herein is licensed under the terms of the GNU Free Documentation License version 1.3 as published by the Free Software Foundation. Qt and respective logos are trademarks of The Qt Company Ltd. in Finland and/or other countries worldwide. All other trademarks are property of their respective owners.