/* * Copyright 2008 Ben Boeckel * * 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 3 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. If not, see . */ #ifndef SIGSCRIPT_CONFIG #define SIGSCRIPT_CONFIG // Sigscript includes #include "Global.h" // Qt includes #include #include #include #include #include #include #include // Forward declarations namespace Sigmod { class Sigmod; } namespace Sigscript { class SIGSCRIPT_EXPORT Config : public QObject { Q_OBJECT Q_ENUMS(Option) public: enum Option { Temporary = 1, Deleted = 2, ReadOnly = 4, Hidden = 8 }; Q_DECLARE_FLAGS(Options, Option) typedef QPair Value; Config(QObject* parent); Q_SCRIPTABLE QVariant value(const QString& name, const bool recursive = true) const; template T valueOfType(const QString& name, const bool recursive = true) const; Q_SCRIPTABLE bool hasValue(const QString& name, const bool recursive = true) const; template bool hasValueOfType(const QString& name, const bool recursive = true) const; signals: void valueAdded(const QString& name, const QVariant& value); void valueChanged(const QString& name, const QVariant& oldValue, const QVariant& newValue); void optionsChanged(const QString& name, const Options oldOptions, const Options newOptions); void valueRemoved(const QString& name); public slots: void addValue(const QString& name, const QVariant& value, const Options options = 0); void setValue(const QString& name, const QVariant& value, const Options options = 0); void setOptions(const QString& name, const Options options); void unsetOptions(const QString& name, const Options options); void removeValue(const QString& name, const bool shadow = false); void clean(); virtual void writeBack(); private: mutable QReadWriteLock m_lock; QMap m_values; }; template T Config::valueOfType(const QString& name, const bool recursive) const { QReadLocker locker(&m_lock); if (hasValueOfType(name)) return m_values[name].first.value(); if (recursive) { QObject* par = parent(); while (par) { if (qobject_cast(par) && qobject_cast(par)->hasValue(name)) return qobject_cast(par)->valueOfType(name); par = par->parent(); } } return T(); } template bool Config::hasValueOfType(const QString& name, const bool recursive) const { QReadLocker locker(&m_lock); if (hasValue(name) && m_values[name].first.canConvert()) return true; if (recursive && qobject_cast(parent())) return qobject_cast(parent())->hasValueOfType(name, true); return false; } } Q_DECLARE_METATYPE(Sigscript::Config*) Q_DECLARE_METATYPE(Sigscript::Config::Options) Q_DECLARE_OPERATORS_FOR_FLAGS(Sigscript::Config::Options) #endif