SettingsGroup.h 2.31 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
/****************************************************************************
 *
 *   (c) 2009-2016 QGROUNDCONTROL PROJECT <http://www.qgroundcontrol.org>
 *
 * QGroundControl is licensed according to the terms in the file
 * COPYING.md in the root of the source code directory.
 *
 ****************************************************************************/

#ifndef SettingsGroup_H
#define SettingsGroup_H

#include "QGCLoggingCategory.h"
#include "Joystick.h"
#include "MultiVehicleManager.h"
#include "QGCToolbox.h"

#include <QVariantList>

20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47
#define DEFINE_SETTINGGROUP(CLASS) \
    static const char* CLASS ## Settings ## GroupName;

#define DECLARE_SETTINGGROUP(CLASS) \
    const char* CLASS ## Settings::CLASS ## Settings ## GroupName = #CLASS; \
    CLASS ## Settings::CLASS ## Settings(QObject* parent) \
        : SettingsGroup(CLASS ## Settings ## GroupName, QString() /* root settings group */, parent)

#define DECLARE_SETTINGSFACT(CLASS, NAME) \
    const char* CLASS::NAME ## Name = #NAME; \
    Fact* CLASS::NAME(void) \
    { \
        if (!_ ## NAME ## Fact) { \
            _ ## NAME ## Fact = _createSettingsFact(NAME ## Name); \
        } \
        return _ ## NAME ## Fact; \
    }

#define DEFINE_SETTINGFACT(NAME) \
    public: \
    Q_PROPERTY(Fact* NAME READ NAME CONSTANT) \
    Fact* NAME(); \
    static const char* NAME ## Name; \
    private: \
    SettingsFact* _ ## NAME ## Fact;

#define INIT_SETTINGFACT(NAME) _ ## NAME ## Fact = NULL

48 49 50 51 52 53 54 55 56 57 58 59 60 61
/// Provides access to group of settings. The group is named and has a visible property associated with which can control whether the group
/// is shows in the ui.
class SettingsGroup : public QObject
{
    Q_OBJECT
    
public:
    /// @param name Name for this Settings group
    /// @param settingsGroup Group to place settings in for QSettings::setGroup
    SettingsGroup(const QString& name, const QString& settingsGroup, QObject* parent = NULL);

    Q_PROPERTY(bool visible MEMBER _visible CONSTANT)

protected:
62
    SettingsFact* _createSettingsFact(const QString& factName);
63

64 65
    QString _name;              ///< Name for group. Used to generate name for loaded json meta data file.
    QString _settingsGroup;     ///< QSettings group which contains these settings. empty for settings in root
66 67 68 69 70 71
    bool    _visible;

    QMap<QString, FactMetaData*> _nameToMetaDataMap;
};

#endif