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
|
// ************************************************************************************************
//
// BornAgain: simulate and fit reflection and scattering
//
//! @file GUI/Model/Descriptor/AxisProperty.cpp
//! @brief Implements class AxisProperty.
//!
//! @homepage http://www.bornagainproject.org
//! @license GNU General Public License v3 or higher (see COPYING)
//! @copyright Forschungszentrum Jülich GmbH 2022
//! @authors Scientific Computing Group at MLZ (see CITATION, AUTHORS)
//
// ************************************************************************************************
#include "GUI/Model/Descriptor/AxisProperty.h"
#include "GUI/Model/Util/UtilXML.h"
namespace {
namespace Tag {
const QString Nbins("Nbins");
const QString Min("Min");
const QString Max("Max");
} // namespace Tag
} // namespace
AxisProperty::AxisProperty()
{
m_min.init("Min", "", "", 0, 3, RealLimits::limitless(), "min");
m_max.init("Max", "", "", 1, 3, RealLimits::limitless(), "max");
}
void AxisProperty::setProperties(const QString& name, const QString& unit, double _min, double _max,
const RealLimits& limit)
{
m_min.init("Min", unit, "Lower edge of first " + name + "-bin", _min, 3, limit, "min");
m_max.init("Max", unit, "Upper edge of last " + name + "-bin", _max, 3, limit, "max");
}
void AxisProperty::setProperties(const QString& unit, const RealLimits& limit)
{
m_min.init("Min", unit, m_min.tooltip(), m_min.dVal(), m_min.decimals(), limit, "min");
m_max.init("Max", unit, m_max.tooltip(), m_max.dVal(), m_max.decimals(), limit, "max");
}
void AxisProperty::writeTo(QXmlStreamWriter* w) const
{
XML::writeTaggedValue(w, Tag::Nbins, m_nbins);
m_min.writeTo2(w, Tag::Min);
m_max.writeTo2(w, Tag::Max);
}
void AxisProperty::readFrom(QXmlStreamReader* r)
{
while (r->readNextStartElement()) {
QString tag = r->name().toString();
if (tag == Tag::Nbins)
m_nbins = XML::readTaggedUInt(r, tag);
else if (tag == Tag::Min) {
m_min.readFrom2(r, tag);
} else if (tag == Tag::Max) {
m_max.readFrom2(r, tag);
} else
r->skipCurrentElement();
}
}
|