SettingsGroup.cc 1.03 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14
/****************************************************************************
 *
 *   (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.
 *
 ****************************************************************************/

#include "SettingsGroup.h"
#include "QGCCorePlugin.h"
#include "QGCApplication.h"

SettingsGroup::SettingsGroup(const QString& name, const QString& settingsGroup, QObject* parent)
15 16
    : QObject       (parent)
    , _name         (name)
17
    , _settingsGroup(settingsGroup)
18
    , _visible      (qgcApp()->toolbox()->corePlugin()->overrideSettingsGroupVisibility(_name))
19
{
20
    QString jsonNameFormat(":/json/%1.SettingsGroup.json");
21

22
    _nameToMetaDataMap = FactMetaData::createMapFromJsonFile(jsonNameFormat.arg(_name), this);
23 24
}

25
SettingsFact* SettingsGroup::_createSettingsFact(const QString& factName)
26
{
27
    return new SettingsFact(_settingsGroup, _nameToMetaDataMap[factName], this);
28 29
}