mirror of
https://github.com/tnodir/fort
synced 2024-11-17 12:25:34 +00:00
110 lines
3.3 KiB
C++
110 lines
3.3 KiB
C++
#ifndef FORTSETTINGS_H
|
|
#define FORTSETTINGS_H
|
|
|
|
#include <QObject>
|
|
#include <QHash>
|
|
#include <QSettings>
|
|
|
|
#include "../common/version.h"
|
|
|
|
QT_FORWARD_DECLARE_CLASS(FirewallConf)
|
|
|
|
typedef QHash<QString, QByteArray> TasksMap;
|
|
|
|
class FortSettings : public QObject
|
|
{
|
|
Q_OBJECT
|
|
Q_PROPERTY(bool debug READ debug WRITE setDebug NOTIFY iniChanged)
|
|
Q_PROPERTY(QString language READ language WRITE setLanguage NOTIFY iniChanged)
|
|
Q_PROPERTY(QString updatesUrl READ updatesUrl CONSTANT)
|
|
Q_PROPERTY(bool startWithWindows READ startWithWindows WRITE setStartWithWindows NOTIFY startWithWindowsChanged)
|
|
Q_PROPERTY(QString profilePath READ profilePath CONSTANT)
|
|
Q_PROPERTY(QString errorMessage READ errorMessage NOTIFY errorMessageChanged)
|
|
Q_PROPERTY(QString appUpdatesUrl READ appUpdatesUrl CONSTANT)
|
|
|
|
public:
|
|
explicit FortSettings(const QStringList &args,
|
|
QObject *parent = nullptr);
|
|
|
|
bool hasProvBoot() const { return m_hasProvBoot; }
|
|
bool provBoot() const { return m_provBoot; }
|
|
|
|
bool debug() const { return iniBool("base/debug"); }
|
|
void setDebug(bool on) { setIniValue("base/debug", on); }
|
|
|
|
QString language() const { return iniText("base/language", "en"); }
|
|
void setLanguage(const QString &v) { setIniValue("base/language", v); }
|
|
|
|
QString updatesUrl() const { return APP_UPDATES_URL; }
|
|
|
|
bool startWithWindows() const;
|
|
void setStartWithWindows(bool start);
|
|
|
|
TasksMap tasks() const;
|
|
bool setTasks(const TasksMap &map);
|
|
|
|
QString statFilePath() const;
|
|
|
|
QString profilePath() const { return m_profilePath; }
|
|
|
|
QString errorMessage() const { return m_errorMessage; }
|
|
|
|
QString appUpdatesUrl() const { return APP_UPDATES_URL; }
|
|
|
|
signals:
|
|
void iniChanged();
|
|
void startWithWindowsChanged();
|
|
void errorMessageChanged();
|
|
|
|
public slots:
|
|
bool readConf(FirewallConf &conf);
|
|
bool writeConf(const FirewallConf &conf);
|
|
|
|
bool readConfIni(FirewallConf &conf) const;
|
|
bool writeConfIni(const FirewallConf &conf);
|
|
|
|
private:
|
|
void processArguments(const QStringList &args);
|
|
void setupIni();
|
|
|
|
void setErrorMessage(const QString &errorMessage);
|
|
|
|
QString confFilePath() const;
|
|
QString confBackupFilePath() const;
|
|
|
|
bool tryToReadConf(FirewallConf &conf, const QString &filePath);
|
|
bool tryToWriteConf(const FirewallConf &conf, const QString &filePath);
|
|
|
|
bool iniBool(const QString &key, bool defaultValue = false) const;
|
|
int iniInt(const QString &key, int defaultValue = 0) const;
|
|
uint iniUInt(const QString &key, int defaultValue = 0) const;
|
|
qreal iniReal(const QString &key, qreal defaultValue = 0) const;
|
|
QString iniText(const QString &key, const QString &defaultValue = QString()) const;
|
|
QStringList iniList(const QString &key) const;
|
|
|
|
QVariant iniValue(const QString &key,
|
|
const QVariant &defaultValue = QVariant()) const;
|
|
void setIniValue(const QString &key, const QVariant &value,
|
|
const QVariant &defaultValue = QVariant());
|
|
|
|
void removeIniKey(const QString &key);
|
|
|
|
QStringList iniChildKeys(const QString &prefix) const;
|
|
|
|
bool iniSync();
|
|
|
|
static QString startupShortcutPath();
|
|
|
|
private:
|
|
uint m_hasProvBoot : 1;
|
|
uint m_provBoot : 1;
|
|
|
|
QString m_profilePath;
|
|
|
|
QString m_errorMessage;
|
|
|
|
QSettings *m_ini;
|
|
};
|
|
|
|
#endif // FORTSETTINGS_H
|