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 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155
|
#include "chemicaldataobject.h"
#include "kalzium_libscience_debug.h"
#include <KUnitConversion/Converter>
class ChemicalDataObjectPrivate : public QSharedData
{
public:
ChemicalDataObjectPrivate();
~ChemicalDataObjectPrivate();
QVariant m_value;
QVariant m_errorValue;
ChemicalDataObject::BlueObelisk m_type;
int m_unit;
};
ChemicalDataObjectPrivate::ChemicalDataObjectPrivate()
: QSharedData()
{
}
ChemicalDataObjectPrivate::~ChemicalDataObjectPrivate() = default;
ChemicalDataObject::ChemicalDataObject(const QVariant &v, BlueObelisk type, const QVariant &errorValue)
: d(new ChemicalDataObjectPrivate)
{
d->m_value = v;
d->m_errorValue = errorValue;
d->m_type = type;
d->m_unit = KUnitConversion::NoUnit;
}
ChemicalDataObject::ChemicalDataObject()
: d(new ChemicalDataObjectPrivate)
{
d->m_errorValue = QVariant();
d->m_unit = KUnitConversion::NoUnit;
}
ChemicalDataObject::ChemicalDataObject(const ChemicalDataObject &other) = default;
ChemicalDataObject::~ChemicalDataObject() = default;
ChemicalDataObject &ChemicalDataObject::operator=(const ChemicalDataObject &other) = default;
bool ChemicalDataObject::operator==(const int v) const
{
if (d->m_value.type() != QVariant::Int) {
return false;
}
return d->m_value.toInt() == v;
}
bool ChemicalDataObject::operator==(const bool v) const
{
if (d->m_value.type() != QVariant::Bool) {
return false;
}
return d->m_value.toBool() == v;
}
bool ChemicalDataObject::operator==(const double v) const
{
if (d->m_value.type() != QVariant::Double) {
return false;
}
return d->m_value.toDouble() == v;
}
bool ChemicalDataObject::operator==(const QString &v) const
{
if (d->m_value.type() != QVariant::String) {
return false;
}
return d->m_value.toString() == v;
}
bool ChemicalDataObject::operator==(const ChemicalDataObject &other) const
{
return d == other.d;
}
bool ChemicalDataObject::operator!=(const ChemicalDataObject &other) const
{
return d != other.d;
}
QString ChemicalDataObject::valueAsString() const
{
return d->m_value.toString();
}
ChemicalDataObject::BlueObelisk ChemicalDataObject::type() const
{
return d->m_type;
}
QVariant ChemicalDataObject::value() const
{
return d->m_value;
}
QVariant ChemicalDataObject::errorValue() const
{
return d->m_errorValue;
}
void ChemicalDataObject::setUnit(int unit)
{
d->m_unit = unit;
}
int ChemicalDataObject::unit() const
{
return d->m_unit;
}
void ChemicalDataObject::setData(const QVariant &v)
{
d->m_value = v;
}
void ChemicalDataObject::setErrorValue(const QVariant &v)
{
d->m_errorValue = v;
}
void ChemicalDataObject::setType(BlueObelisk type)
{
d->m_type = type;
}
void ChemicalDataObject::setType(int type)
{
d->m_type = (ChemicalDataObject::BlueObelisk)type;
}
QString ChemicalDataObject::unitAsString() const
{
return KUnitConversion::Converter().unit(KUnitConversion::UnitId(d->m_unit)).symbol();
}
|