/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 4 -*- * vim: set ts=8 sts=4 et sw=4 tw=99: * * SleepLib Preferences Header * * Copyright (c) 2011 Mark Watkins * * This file is subject to the terms and conditions of the GNU General Public * License. See the file COPYING in the main directory of the Linux * distribution for more details. */ #ifndef PREFERENCES_H #define PREFERENCES_H #include #include #include #include #include #include const QString STR_ext_XML = ".xml"; extern QString GetAppRoot(); //returns app root path plus trailing path separator. inline QString PrefMacro(QString s) { return "{" + s + "}"; } //! \brief Returns a QString containing the Username, according to the Operating System const QString &getUserName(); /*! \class Preferences \author Mark Watkins \brief Holds a group of preference variables */ class Preferences { public: //! \brief Constructs a Preferences object 'name', and remembers sets the filename Preferences(QString name, QString filename = ""); Preferences(); virtual ~Preferences(); //! \brief Returns a QString containing preference 'name', processing any {} macros const QString Get(QString name); //! \brief Returns the QVariant value of the selected preference.. Note, preference must exist, and will not expand {} macros QVariant &operator[](QString name) { return p_preferences[name]; } //! \brief Sets the Preference 'name' to QVariant 'value' void Set(QString name, QVariant value) { p_preferences[name] = value; } //! \brief Returns true if preference 'name' exists bool contains(QString name) { return (p_preferences.contains(name)); } //! \brief Create a preference and set the default if it doesn't exists void init(QString name, QVariant value) { if (!contains(name)) { p_preferences[name] = value; } } //! \brief Returns true if preference 'name' exists, and contains a boolean true value bool ExistsAndTrue(QString name) { QHash::iterator i = p_preferences.find(name); if (i == p_preferences.end()) { return false; } return i.value().toBool(); } //! \brief Removes preference 'name' from this Preferences group void Erase(QString name) { QHash::iterator i = p_preferences.find(name); if (i != p_preferences.end()) { p_preferences.erase(i); } } //! \brief Derive from this to handle Loading of any custom XML sections virtual void ExtraLoad(QDomElement &root) { root = root; } //! \brief Derive from this to handle Saving of any custom XML sections //! \return Must return a QDomElement to be inserted into the generated XML virtual QDomElement ExtraSave(QDomDocument &doc) { doc = doc; QDomElement e; return e; } //! \brief Opens, processes the XML for this Preferences group, loading all preferences stored therein. //! \note If filename is empty, it will use the one specified in the constructor //! \returns true if succesful virtual bool Open(QString filename = ""); //! \brief Saves all preferences to XML file. //! \note If filename is empty, it will use the one specified in the constructor //! \returns true if succesful virtual bool Save(QString filename = ""); //! \note Sets a comment string whici will be stored in the XML void SetComment(const QString &str) { p_comment = str; } //! \brief Finds a given preference. //! \returns a QHash::iterator pointing to the preference named 'key', or an empty end() iterator inline QHash::iterator find(QString key) { return p_preferences.find(key); } //! \brief Returns an empty iterator pointing to the end of the preferences list inline QHash::iterator end() { return p_preferences.end(); } //! \brief Returns an iterator pointing to the first item in the preferences list inline QHash::iterator begin() { return p_preferences.begin(); } //int GetCode(QString name); // For registering/looking up new preference code. //! \brief Stores all the variants indexed by a QString name for this Preferences object QHash p_preferences; void setPath(const QString &path) { p_path = path; } void setFilename(const QString &filename) { p_filename = filename; } const QString name() { return p_name; } protected: //QHash p_codes; QString p_comment; QString p_name; QString p_filename; QString p_path; }; //! \brief Main Preferences Object used throughout the application extern Preferences PREF; //! \brief Layout Preferences Object used throughout the application extern Preferences LAYOUT; #endif // PREFERENCES_H