Files
cbh/ElaWidgetTools/private/ElaDialogPrivate.h
2025-09-19 22:40:52 +08:00

24 lines
526 B
C++

#ifndef ELAFRAMEWORK_ELADIALOGPRIVATE_H
#define ELAFRAMEWORK_ELADIALOGPRIVATE_H
#include <QObject>
#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