qt-material-widgets/include/qmetarial/lib/qtmaterialstatetransition.h

23 lines
496 B
C
Raw Normal View History

2017-09-29 09:50:04 +00:00
#ifndef QTMATERIALSTATETRANSITION_H
#define QTMATERIALSTATETRANSITION_H
#include "lib/qtmaterialstatetransitionevent.h"
2022-07-05 07:49:55 +00:00
#include <QAbstractTransition>
2017-09-29 09:50:04 +00:00
class QtMaterialStateTransition : public QAbstractTransition
{
Q_OBJECT
public:
QtMaterialStateTransition(QtMaterialStateTransitionType type);
protected:
virtual bool eventTest(QEvent *event);
virtual void onTransition(QEvent *);
private:
QtMaterialStateTransitionType m_type;
};
2022-07-05 07:49:55 +00:00
#endif // QTMATERIALSTATETRANSITION_H