#ifndef SETTINGSHELPER_H #define SETTINGSHELPER_H #include #include #include #include #include #include #include #include "src/singleton.h" class SettingsHelper : public QObject { Q_OBJECT private: explicit SettingsHelper(QObject* parent = nullptr); public: SINGLETONG(SettingsHelper) ~SettingsHelper() override; void init(char *argv[]); Q_INVOKABLE void saveDarkMode(int darkModel){save("darkMode",darkModel);} Q_INVOKABLE int getDarkMode(){return get("darkMode",QVariant(0)).toInt();} Q_INVOKABLE void saveUseSystemAppBar(bool useSystemAppBar){save("useSystemAppBar",useSystemAppBar);} Q_INVOKABLE bool getUseSystemAppBar(){return get("useSystemAppBar",QVariant(false)).toBool();} private: void save(const QString& key,QVariant val); QVariant get(const QString& key,QVariant def={}); private: QScopedPointer m_settings; }; #endif // SETTINGSHELPER_H