You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
540 B
27 lines
540 B
11 years ago
|
#ifndef SETTINGS_H
|
||
|
#define SETTINGS_H
|
||
|
|
||
|
#include <QObject>
|
||
|
#include <QSettings>
|
||
|
|
||
|
class Settings : public QObject
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
public:
|
||
|
explicit Settings(QObject *parent = 0, const QString &organization = QString(), const QString &application = QString());
|
||
|
~Settings();
|
||
|
|
||
|
Q_INVOKABLE void setValue(const QString &key, const QVariant &value);
|
||
|
Q_INVOKABLE QVariant value(const QString &key, const QVariant &defaultValue = QVariant()) const;
|
||
|
|
||
|
signals:
|
||
|
|
||
|
public slots:
|
||
|
|
||
|
private:
|
||
|
QSettings *settings_;
|
||
|
|
||
|
};
|
||
|
|
||
|
#endif // SETTINGS_H
|