Skip to content
SettingsFact.cc 1.89 KiB
Newer Older
/****************************************************************************
 *
 *   (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.
 *
 ****************************************************************************/

Don Gagne's avatar
Don Gagne committed

#include "SettingsFact.h"
#include "QGCCorePlugin.h"
#include "QGCApplication.h"
Don Gagne's avatar
Don Gagne committed

#include <QSettings>

SettingsFact::SettingsFact(QObject* parent)
    : Fact(parent)
{    
Don Gagne's avatar
Don Gagne committed
    QQmlEngine::setObjectOwnership(this, QQmlEngine::CppOwnership);
Don Gagne's avatar
Don Gagne committed
}

SettingsFact::SettingsFact(QString settingGroup, FactMetaData* metaData, QObject* parent)
    : Fact(0, metaData->name(), metaData->type(), parent)
Don Gagne's avatar
Don Gagne committed
    , _settingGroup(settingGroup)
{
    QSettings settings;

    if (!_settingGroup.isEmpty()) {
        settings.beginGroup(_settingGroup);
    }

    // Allow core plugin a chance to override the default value
    metaData->setRawDefaultValue(qgcApp()->toolbox()->corePlugin()->overrideSettingsDefault(metaData->name(), metaData->rawDefaultValue()));
    setMetaData(metaData);

    QVariant typedValue;
    QString errorString;
    metaData->convertAndValidateRaw(settings.value(_name, metaData->rawDefaultValue()), true /* conertOnly */, typedValue, errorString);
    _rawValue = typedValue;
Don Gagne's avatar
Don Gagne committed

    connect(this, &Fact::rawValueChanged, this, &SettingsFact::_rawValueChanged);
Don Gagne's avatar
Don Gagne committed
}

SettingsFact::SettingsFact(const SettingsFact& other, QObject* parent)
    : Fact(other, parent)
{
    *this = other;
}

const SettingsFact& SettingsFact::operator=(const SettingsFact& other)
{
    Fact::operator=(other);
    
    _settingGroup = other._settingGroup;

    return *this;
}

void SettingsFact::_rawValueChanged(QVariant value)
Don Gagne's avatar
Don Gagne committed
{
    QSettings settings;

    if (!_settingGroup.isEmpty()) {
        settings.beginGroup(_settingGroup);
    }

    settings.setValue(_name, value);
}