#ifndef ELAFRAMEWORK_ELADIALOGPRIVATE_H #define ELAFRAMEWORK_ELADIALOGPRIVATE_H #include #include "ElaDef.h" class ElaAppBar; class ElaDialog; class ElaDialogPrivate : public QObject { Q_OBJECT Q_D_CREATE(ElaDialog) public: explicit ElaDialogPrivate(QObject *parent = nullptr); ~ElaDialogPrivate() override; private: ElaThemeType::ThemeMode _themeMode; ElaApplicationType::WindowDisplayMode _windowDisplayMode; ElaAppBar *_appBar{nullptr}; }; #endif // ELAFRAMEWORK_ELADIALOGPRIVATE_H