73 lines
4.4 KiB
C++
73 lines
4.4 KiB
C++
/*
|
|
* Cantata
|
|
*
|
|
* Copyright (c) 2011-2022 Craig Drummond <craig.p.drummond@gmail.com>
|
|
*
|
|
* ----
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
* General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program; see the file COPYING. If not, write to
|
|
* the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
|
* Boston, MA 02110-1301, USA.
|
|
*/
|
|
|
|
#ifndef CONFIGURATION_H
|
|
#define CONFIGURATION_H
|
|
|
|
#include <QString>
|
|
#include <QStringList>
|
|
#include <QByteArray>
|
|
#include <QSize>
|
|
#include <QDateTime>
|
|
#include <QSettings>
|
|
#include "utils.h"
|
|
|
|
class Configuration : public QSettings
|
|
{
|
|
public:
|
|
static QLatin1String constMainGroup;
|
|
Configuration(const QString &group=constMainGroup);
|
|
~Configuration() override;
|
|
|
|
QString get(const QString &key, const QString &def) { return contains(key) ? value(key).toString() : def; }
|
|
QStringList get(const QString &key, const QStringList &def) { return contains(key) ? value(key).toStringList() : def; }
|
|
bool get(const QString &key, bool def) { return contains(key) ? value(key).toBool() : def; }
|
|
int get(const QString &key, int def) { return contains(key) ? value(key).toInt() : def; }
|
|
unsigned int get(const QString &key, unsigned int def) { return contains(key) ? value(key).toUInt() : def; }
|
|
QByteArray get(const QString &key, const QByteArray &def) { return contains(key) ? value(key).toByteArray() : def; }
|
|
QSize get(const QString &key, const QSize &def) { return contains(key) ? value(key).toSize() : def; }
|
|
QPoint get(const QString &key, const QPoint &def) { return contains(key) ? value(key).toPoint() : def; }
|
|
QDateTime get(const QString &key, const QDateTime &def) { return contains(key) ? value(key).toDateTime() : def; }
|
|
void set(const QString &key, const QString &val) { if (!hasEntry(key) || get(key, val)!=val) setValue(key, val); }
|
|
void set(const QString &key, const char *val) { if (!hasEntry(key) || get(key, QLatin1String(val))!=QLatin1String(val)) setValue(key, val); }
|
|
void set(const QString &key, const QStringList &val) { if (!hasEntry(key) || get(key, val)!=val) setValue(key, val); }
|
|
void set(const QString &key, bool val) { if (!hasEntry(key) || get(key, val)!=val) setValue(key, val); }
|
|
void set(const QString &key, int val) { if (!hasEntry(key) || get(key, val)!=val) setValue(key, val); }
|
|
void set(const QString &key, unsigned int val) { if (!hasEntry(key) || get(key, val)!=val) setValue(key, val); }
|
|
void set(const QString &key, const QByteArray &val) { if (!hasEntry(key) || get(key, val)!=val) setValue(key, val); }
|
|
void set(const QString &key, const QSize &val) { if (!hasEntry(key) || get(key, val)!=val) setValue(key, val); }
|
|
void set(const QString &key, const QPoint &val) { if (!hasEntry(key) || get(key, val)!=val) setValue(key, val); }
|
|
void set(const QString &key, const QDateTime &val) { if (!hasEntry(key) || get(key, val)!=val) setValue(key, val); }
|
|
bool hasGroup(const QString &grp) { return -1!=childGroups().indexOf(grp); }
|
|
void removeGroup(const QString &grp) { remove(grp); }
|
|
bool hasEntry(const QString &key) { return contains(key); }
|
|
void removeEntry(const QString &key) { remove(key); }
|
|
int get(const QString &key, int def, int min, int max);
|
|
QString getFilePath(const QString &key, const QString &def);
|
|
void setFilePath(const QString &key, const QString &val) { return set(key, Utils::homeToTilda(val)); }
|
|
QString getDirPath(const QString &key, const QString &def);
|
|
void setDirPath(const QString &key, const QString &val) { return set(key, Utils::homeToTilda(val)); }
|
|
};
|
|
|
|
#endif
|