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
|
// ************************************************************************************************
//
// BornAgain: simulate and fit reflection and scattering
//
//! @file GUI/Model/Descriptor/AxisProperty.h
//! @brief Defines 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)
//
// ************************************************************************************************
#ifndef BORNAGAIN_GUI_MODEL_DESCRIPTOR_AXISPROPERTY_H
#define BORNAGAIN_GUI_MODEL_DESCRIPTOR_AXISPROPERTY_H
#include "GUI/Model/Descriptor/DoubleProperty.h"
//! Holds values which can be used to describe a EquiDivision.
//!
//! Use this as a member in your class to
//! * reduce dependency to axis items and axis classes
//! * simplify serialization
//! * easily have a UI supporting solution.
//!
//! Do not forget to call all two init functions from within the containing class's constructor!
class AxisProperty {
public:
AxisProperty();
void setProperties(const QString& name, const QString& unit, double _min, double _max,
const RealLimits& limit);
void setProperties(const QString& unit, const RealLimits& limit);
DoubleProperty& min() { return m_min; }
const DoubleProperty& min() const { return m_min; }
DoubleProperty& max() { return m_max; }
const DoubleProperty& max() const { return m_max; }
uint nbins() const { return m_nbins; }
void setNbins(uint v) { m_nbins = v; }
void writeTo(QXmlStreamWriter* w) const;
void readFrom(QXmlStreamReader* r);
private:
uint m_nbins = 100;
DoubleProperty m_min;
DoubleProperty m_max;
};
#endif // BORNAGAIN_GUI_MODEL_DESCRIPTOR_AXISPROPERTY_H
|