work save

This commit is contained in:
royqh1979@gmail.com 2021-10-15 13:49:28 +08:00
parent 07f902d277
commit 682f0ab353
3 changed files with 28 additions and 0 deletions

View File

@ -65,6 +65,7 @@ SOURCES += \
settingsdialog/toolsgeneralwidget.cpp \
shortcutmanager.cpp \
symbolusagemanager.cpp \
thememanager.cpp \
todoparser.cpp \
toolsmanager.cpp \
widgets/aboutdialog.cpp \
@ -176,6 +177,7 @@ HEADERS += \
settingsdialog/toolsgeneralwidget.h \
shortcutmanager.h \
symbolusagemanager.h \
thememanager.h \
todoparser.h \
toolsmanager.h \
widgets/aboutdialog.h \

View File

@ -0,0 +1,6 @@
#include "thememanager.h"
ThemeManager::ThemeManager(QObject *parent) : QObject(parent)
{
}

View File

@ -0,0 +1,20 @@
#ifndef THEMEMANAGER_H
#define THEMEMANAGER_H
#include <QObject>
class AppTheme {
};
class ThemeManager : public QObject
{
Q_OBJECT
public:
explicit ThemeManager(QObject *parent = nullptr);
signals:
};
#endif // THEMEMANAGER_H