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
|
// ************************************************************************************************
//
// BornAgain: simulate and fit reflection and scattering
//
//! @file GUI/Model/Axis/BasicAxisItem.cpp
//! @brief Implements various axis items.
//!
//! @homepage http://www.bornagainproject.org
//! @license GNU General Public License v3 or higher (see COPYING)
//! @copyright Forschungszentrum Jülich GmbH 2018
//! @authors Scientific Computing Group at MLZ (see CITATION, AUTHORS)
//
// ************************************************************************************************
#include "GUI/Model/Axis/BasicAxisItem.h"
#include "Base/Axis/MakeScale.h"
#include "Base/Axis/Scale.h"
#include "Base/Const/Units.h"
#include "GUI/Model/Util/UtilXML.h"
namespace {
namespace Tag {
const QString Axis("Axis");
const QString LogScale("LogScale");
} // namespace Tag
} // namespace
BasicAxisItem::BasicAxisItem()
: m_log_scale(false)
{
}
BasicAxisItem::~BasicAxisItem() = default;
void BasicAxisItem::setMin(double value)
{
m_axis.min().setAndNotify(value);
emit axisRangeChanged();
}
void BasicAxisItem::setMax(double value)
{
m_axis.max().setAndNotify(value);
emit axisRangeChanged();
}
void BasicAxisItem::setLogScale(bool value)
{
m_log_scale = value;
emit logScaleChanged(value);
}
Scale BasicAxisItem::makeAlphaScale() const
{
return EquiScan("alpha_i (rad)", size(), Units::deg2rad(min().dVal()),
Units::deg2rad(max().dVal()));
}
Scale BasicAxisItem::makeLambdaScale() const
{
return EquiScan("lambda (nm)", size(), min().dVal(), max().dVal());
}
Scale BasicAxisItem::makeQzScale() const
{
return EquiScan("q_z (1/nm)", size(), min().dVal(), max().dVal());
}
void BasicAxisItem::writeTo(QXmlStreamWriter* w) const
{
XML::writeTaggedElement(w, Tag::Axis, m_axis);
XML::writeTaggedValue(w, Tag::LogScale, m_log_scale);
}
void BasicAxisItem::readFrom(QXmlStreamReader* r)
{
while (r->readNextStartElement()) {
QString tag = r->name().toString();
if (tag == Tag::Axis)
XML::readTaggedElement(r, tag, m_axis);
else if (tag == Tag::LogScale)
m_log_scale = XML::readTaggedBool(r, tag);
else
r->skipCurrentElement();
}
}
|