mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 10:40:42 +00:00
104 lines
2.4 KiB
C++
104 lines
2.4 KiB
C++
/*
|
|
|
|
SleepLib Preferences Header
|
|
|
|
Author: Mark Watkins <jedimark64@users.sourceforge.net>
|
|
License: GPL
|
|
|
|
*/
|
|
|
|
#ifndef PREFERENCES_H
|
|
#define PREFERENCES_H
|
|
|
|
#include <QString>
|
|
#include <QVariant>
|
|
#include <QHash>
|
|
#include <QDomElement>
|
|
#include <QDomDocument>
|
|
#include <map>
|
|
|
|
|
|
const QString AppName="SleepyHead"; // Outer tag of XML files
|
|
const QString AppRoot="SleepApp"; // The Folder Name
|
|
|
|
extern const QString & GetAppRoot(); //returns app root path plus trailing path separator.
|
|
|
|
inline QString PrefMacro(QString s)
|
|
{
|
|
return "{"+s+"}";
|
|
};
|
|
|
|
const QString & getUserName();
|
|
|
|
class Preferences
|
|
{
|
|
public:
|
|
Preferences(QString name,QString filename="");
|
|
Preferences();
|
|
virtual ~Preferences();
|
|
|
|
const QString Get(QString name);
|
|
//const QString Get(const char * name) {
|
|
// return Get(name);
|
|
// };
|
|
/*const QString Get(int code) {
|
|
return Get(p_codes[code]);
|
|
}*/
|
|
|
|
// operator[] will not expand {} macros
|
|
|
|
QVariant & operator[](QString name) {
|
|
return p_preferences[name];
|
|
}
|
|
/*QVariant & operator[](int code) {
|
|
return p_preferences[p_codes[code]];
|
|
}*/
|
|
|
|
void Set(QString name,QVariant value) {
|
|
p_preferences[name]=value;
|
|
}
|
|
/*void Set(int code,QVariant value) {
|
|
Set(p_codes[code],value);
|
|
}*/
|
|
|
|
bool Exists(QString name) {
|
|
return (p_preferences.contains(name));
|
|
}
|
|
bool ExistsAndTrue(QString name) {
|
|
QHash<QString,QVariant>::iterator i=p_preferences.find(name);
|
|
if (i==p_preferences.end()) return false;
|
|
return i.value().toBool();
|
|
}
|
|
void Erase(QString name) {
|
|
QHash<QString,QVariant>::iterator i=p_preferences.find(name);
|
|
if (i!=p_preferences.end())
|
|
p_preferences.erase(i);
|
|
}
|
|
|
|
virtual void ExtraLoad(QDomElement & root) { root=root; }
|
|
virtual QDomElement ExtraSave(QDomDocument & doc) { doc=doc; QDomElement e; return e; }
|
|
|
|
virtual bool Open(QString filename="");
|
|
virtual bool Save(QString filename="");
|
|
|
|
void SetComment(const QString & str) {
|
|
p_comment=str;
|
|
};
|
|
//int GetCode(QString name); // For registering/looking up new preference code.
|
|
|
|
QHash<QString,QVariant> p_preferences;
|
|
protected:
|
|
//QHash<int,QString> p_codes;
|
|
QString p_comment;
|
|
QString p_name;
|
|
QString p_filename;
|
|
QString p_path;
|
|
};
|
|
|
|
|
|
extern Preferences PREF;
|
|
extern Preferences LAYOUT;
|
|
|
|
#endif // PREFERENCES_H
|
|
|