12345678910111213141516171819202122232425262728293031 |
- #ifndef QTMATERIALDIALOG_P_H
- #define QTMATERIALDIALOG_P_H
- #include <QtGlobal>
- class QStateMachine;
- class QtMaterialDialog;
- class QStackedLayout;
- class QtMaterialDialogWindow;
- class QtMaterialDialogProxy;
- class QtMaterialDialogPrivate
- {
- Q_DISABLE_COPY(QtMaterialDialogPrivate)
- Q_DECLARE_PUBLIC(QtMaterialDialog)
- public:
- QtMaterialDialogPrivate(QtMaterialDialog *q);
- ~QtMaterialDialogPrivate();
- void init();
- QtMaterialDialog *const q_ptr;
- QtMaterialDialogWindow *dialogWindow;
- QStackedLayout *proxyStack;
- QStateMachine *stateMachine;
- QtMaterialDialogProxy *proxy;
- };
- #endif // QTMATERIALDIALOG_P_H
|