37 lines
791 B
C
37 lines
791 B
C
|
#ifndef DRAWER_INTERNAL_H
|
||
|
#define DRAWER_INTERNAL_H
|
||
|
|
||
|
#include <QStateMachine>
|
||
|
|
||
|
class QtMaterialDrawer;
|
||
|
|
||
|
class QtMaterialDrawerStateMachine : public QStateMachine
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
|
||
|
Q_PROPERTY(int offset WRITE setOffset READ offset)
|
||
|
|
||
|
public:
|
||
|
explicit QtMaterialDrawerStateMachine(QtMaterialDrawer *drawer);
|
||
|
~QtMaterialDrawerStateMachine();
|
||
|
|
||
|
void setOffset(int offset);
|
||
|
inline int offset() const { return m_offset; }
|
||
|
|
||
|
void updatePropertyAssignments();
|
||
|
|
||
|
signals:
|
||
|
void enterOpenedState();
|
||
|
void enterClosedState();
|
||
|
|
||
|
private:
|
||
|
Q_DISABLE_COPY(QtMaterialDrawerStateMachine)
|
||
|
|
||
|
QtMaterialDrawer *const m_drawer;
|
||
|
QState *const m_openState;
|
||
|
QState *const m_closedState;
|
||
|
int m_offset;
|
||
|
};
|
||
|
|
||
|
#endif // DRAWER_INTERNAL_H
|