Files
cbh/ElaWidgetTools/private/ElaDialogPrivate.h
2025-09-20 01:41:33 +08:00

23 lines
568 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