2016-06-23 07:18:43 +00:00
|
|
|
#ifndef DRAWER_P_H
|
|
|
|
#define DRAWER_P_H
|
|
|
|
|
2016-06-24 04:50:24 +00:00
|
|
|
#include <QObject>
|
2016-06-23 07:18:43 +00:00
|
|
|
|
|
|
|
class Drawer;
|
2016-06-24 04:50:24 +00:00
|
|
|
class DrawerStateMachine;
|
2016-06-23 07:18:43 +00:00
|
|
|
|
|
|
|
class DrawerPrivate
|
|
|
|
{
|
|
|
|
Q_DISABLE_COPY(DrawerPrivate)
|
|
|
|
Q_DECLARE_PUBLIC(Drawer)
|
|
|
|
|
|
|
|
public:
|
|
|
|
DrawerPrivate(Drawer *q);
|
2016-06-24 04:50:24 +00:00
|
|
|
|
|
|
|
Drawer *const q_ptr;
|
|
|
|
DrawerStateMachine *const stateMachine;
|
|
|
|
QWidget *const window;
|
|
|
|
int width;
|
2016-06-23 07:18:43 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // DRAWER_P_H
|