feat: 添加ElaWidgetTool库
This commit is contained in:
23
ElaWidgetTools/private/ElaDialogPrivate.h
Normal file
23
ElaWidgetTools/private/ElaDialogPrivate.h
Normal file
@@ -0,0 +1,23 @@
|
||||
#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
|
||||
Reference in New Issue
Block a user