work save
This commit is contained in:
parent
07f902d277
commit
682f0ab353
|
@ -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 \
|
||||
|
|
|
@ -0,0 +1,6 @@
|
|||
#include "thememanager.h"
|
||||
|
||||
ThemeManager::ThemeManager(QObject *parent) : QObject(parent)
|
||||
{
|
||||
|
||||
}
|
|
@ -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
|
Loading…
Reference in New Issue