1234567891011121314151617181920212223 |
- #ifndef QTMATERIALSTATETRANSITION_H
- #define QTMATERIALSTATETRANSITION_H
- #include <QAbstractTransition>
- #include "lib/qtmaterialstatetransitionevent.h"
- class QtMaterialStateTransition : public QAbstractTransition
- {
- Q_OBJECT
- public:
- QtMaterialStateTransition(QtMaterialStateTransitionType type);
- protected:
- virtual bool eventTest(QEvent *event);
- virtual void onTransition(QEvent *);
- private:
- QtMaterialStateTransitionType m_type;
- };
- #endif // QTMATERIALSTATETRANSITION_H
|