qt-material-widgets/components/qtmaterialdialog_p.h

31 lines
644 B
C
Raw Normal View History

2017-09-29 23:15:08 +00:00
#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();
2022-07-05 07:49:55 +00:00
QtMaterialDialog *const q_ptr;
2017-09-29 23:15:08 +00:00
QtMaterialDialogWindow *dialogWindow;
2022-07-05 07:49:55 +00:00
QStackedLayout *proxyStack;
QStateMachine *stateMachine;
QtMaterialDialogProxy *proxy;
2017-09-29 23:15:08 +00:00
};
2022-07-05 07:49:55 +00:00
#endif // QTMATERIALDIALOG_P_H