Fact.cc 2.42 KB
Newer Older
Don Gagne's avatar
Don Gagne committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
/*=====================================================================
 
 QGroundControl Open Source Ground Control Station
 
 (c) 2009 - 2014 QGROUNDCONTROL PROJECT <http://www.qgroundcontrol.org>
 
 This file is part of the QGROUNDCONTROL project
 
 QGROUNDCONTROL 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.
 
 QGROUNDCONTROL 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 QGROUNDCONTROL. If not, see <http://www.gnu.org/licenses/>.
 
 ======================================================================*/

/// @file
///     @author Don Gagne <don@thegagnes.com>

#include "Fact.h"

#include <QtQml>

Don Gagne's avatar
Don Gagne committed
31 32 33 34
Fact::Fact(QString name, QObject* parent) :
    QObject(parent),
    _name(name),
    _metaData(NULL)
Don Gagne's avatar
Don Gagne committed
35
{
Don Gagne's avatar
Don Gagne committed
36
    _value = "";
Don Gagne's avatar
Don Gagne committed
37 38
}

39
void Fact::setValue(const QVariant& value)
Don Gagne's avatar
Don Gagne committed
40 41
{
    _value = value;
42 43
    emit valueChanged(_value);
    emit _containerValueChanged(_value);
Don Gagne's avatar
Don Gagne committed
44 45
}

46
void Fact::_containerSetValue(const QVariant& value)
Don Gagne's avatar
Don Gagne committed
47 48
{
    _value = value;
49
    emit valueChanged(_value);
Don Gagne's avatar
Don Gagne committed
50
}
51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68

QString Fact::name(void) const
{
    return _name;
}

QVariant Fact::value(void) const
{
    return _value;
}

QString Fact::valueString(void) const
{
    return _value.toString();
}

QVariant Fact::defaultValue(void)
{
69
    Q_ASSERT(_metaData);
70 71 72 73 74
    return _metaData->defaultValue;
}

FactMetaData::ValueType_t Fact::type(void)
{
75
    Q_ASSERT(_metaData);
76 77 78 79 80
    return _metaData->type;
}

QString Fact::shortDescription(void)
{
81 82 83 84 85
    if (_metaData) {
        return _metaData->shortDescription;
    } else {
        return QString();
    }
86 87 88 89
}

QString Fact::longDescription(void)
{
90 91 92 93 94
    if (_metaData) {
        return _metaData->longDescription;
    } else {
        return QString();
    }
95 96 97 98
}

QString Fact::units(void)
{
99 100 101 102 103
    if (_metaData) {
        return _metaData->units;
    } else {
        return QString();
    }
104 105 106 107
}

QVariant Fact::min(void)
{
108
    Q_ASSERT(_metaData);
109 110 111 112 113
    return _metaData->min;
}

QVariant Fact::max(void)
{
114
    Q_ASSERT(_metaData);
115 116 117 118 119 120 121
    return _metaData->max;
}

void Fact::setMetaData(FactMetaData* metaData)
{
    _metaData = metaData;
}