Sun, 27 Jul 2014 02:40:21 +0300
- refactoring
- removed the non-CA license option, made CA license a checkbox
/* * LDForge: LDraw parts authoring CAD * Copyright (C) 2013, 2014 Teemu Piippo * * 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 <http://www.gnu.org/licenses/>. */ #pragma once #include <QString> #include <QVariant> #include <QKeySequence> #include "macros.h" #include "basics.h" class QSettings; #define CFGENTRY(T, NAME, DEFAULT) namespace cfg { AbstractConfigEntry::T##Type NAME; } #define EXTERN_CFGENTRY(T, NAME) namespace cfg { extern AbstractConfigEntry::T##Type NAME; } namespace Config { void Initialize(); bool Load(); bool Save(); void ResetToDefaults(); QString DirectoryPath(); QString FilePath (QString file); QSettings* SettingsObject(); } class AbstractConfigEntry { PROPERTY (private, QString, name, setName, STOCK_WRITE) public: enum Type { EIntType, EStringType, EFloatType, EBoolType, EKeySequenceType, EListType, EVertexType, }; using IntType = int; using StringType = QString; using FloatType = float; using BoolType = bool; using KeySequenceType = QKeySequence; using ListType = QList<QVariant>; using VertexType = Vertex; AbstractConfigEntry (QString name); virtual QVariant getDefaultAsVariant() const = 0; virtual Type getType() const = 0; virtual bool isDefault() const = 0; virtual void loadFromVariant (const QVariant& val) = 0; virtual void resetValue() = 0; virtual QVariant toVariant() const = 0; }; #define IMPLEMENT_CONFIG(NAME) \ public: \ using ValueType = AbstractConfigEntry::NAME##Type; \ \ NAME##ConfigEntry (ValueType* valueptr, QString name, ValueType def) : \ AbstractConfigEntry (name), \ m_valueptr (valueptr), \ m_default (def) \ { \ *m_valueptr = def; \ } \ \ inline ValueType getValue() const \ { \ return *m_valueptr; \ } \ \ inline void setValue (ValueType val) \ { \ *m_valueptr = val; \ } \ \ virtual AbstractConfigEntry::Type getType() const \ { \ return AbstractConfigEntry::E##NAME##Type; \ } \ \ virtual void resetValue() \ { \ *m_valueptr = m_default; \ } \ \ virtual const ValueType& getDefault() const \ { \ return m_default; \ } \ \ virtual bool isDefault() const \ { \ return *m_valueptr == m_default; \ } \ \ virtual void loadFromVariant (const QVariant& val) \ { \ *m_valueptr = val.value<ValueType>(); \ } \ \ virtual QVariant toVariant() const \ { \ return QVariant::fromValue<ValueType> (*m_valueptr); \ } \ \ virtual QVariant getDefaultAsVariant() const \ { \ return QVariant::fromValue<ValueType> (m_default); \ } \ \ static NAME##ConfigEntry* getByName (QString name); \ \ private: \ ValueType* m_valueptr; \ ValueType m_default; class IntConfigEntry : public AbstractConfigEntry { IMPLEMENT_CONFIG (Int) }; class StringConfigEntry : public AbstractConfigEntry { IMPLEMENT_CONFIG (String) }; class FloatConfigEntry : public AbstractConfigEntry { IMPLEMENT_CONFIG (Float) }; class BoolConfigEntry : public AbstractConfigEntry { IMPLEMENT_CONFIG (Bool) }; class KeySequenceConfigEntry : public AbstractConfigEntry { IMPLEMENT_CONFIG (KeySequence) }; class ListConfigEntry : public AbstractConfigEntry { IMPLEMENT_CONFIG (List) }; class VertexConfigEntry : public AbstractConfigEntry { IMPLEMENT_CONFIG (Vertex) };