Skip to content
Snippets Groups Projects
Commit ee66be1c authored by Pospelov, Gennady's avatar Pospelov, Gennady
Browse files

Few minor FIXMEs related to GUI backcompatibility fixed.

parent 4948c854
No related branches found
No related tags found
No related merge requests found
...@@ -124,11 +124,8 @@ std::unique_ptr<IFTDistribution1D> FTDistribution1DVoigtItem::createFTDistributi ...@@ -124,11 +124,8 @@ std::unique_ptr<IFTDistribution1D> FTDistribution1DVoigtItem::createFTDistributi
// --------------------------------------------------------------------------------------------- // // --------------------------------------------------------------------------------------------- //
// TODO BACKCOMPATIBILITY (fix when we will break back compatibility) const QString FTDistribution2DItem::P_OMEGA_X = QString::fromStdString(BornAgain::OmegaX);
// Make P_OMEGA_X, P_OMEGA_Y depend on BornAgain::OmegaX and OmegaY const QString FTDistribution2DItem::P_OMEGA_Y = QString::fromStdString(BornAgain::OmegaY);
const QString FTDistribution2DItem::P_OMEGA_X = "CoherenceLengthX"; // temp FIXME
const QString FTDistribution2DItem::P_OMEGA_Y = "CoherenceLengthY"; // temp FIXME
const QString FTDistribution2DItem::P_GAMMA = QString::fromStdString(BornAgain::Gamma); const QString FTDistribution2DItem::P_GAMMA = QString::fromStdString(BornAgain::Gamma);
FTDistribution2DItem::FTDistribution2DItem(const QString& name) FTDistribution2DItem::FTDistribution2DItem(const QString& name)
...@@ -138,14 +135,10 @@ FTDistribution2DItem::FTDistribution2DItem(const QString& name) ...@@ -138,14 +135,10 @@ FTDistribution2DItem::FTDistribution2DItem(const QString& name)
void FTDistribution2DItem::add_omega_properties() void FTDistribution2DItem::add_omega_properties()
{ {
// TODO BACKCOMPATIBILITY (remove setDisplayName when P_OMEGA_X will be "OmegaX")
addProperty(P_OMEGA_X, 1.0)->setToolTip( addProperty(P_OMEGA_X, 1.0)->setToolTip(
QStringLiteral("Half-width of the distribution along its x-axis in nanometers")) QStringLiteral("Half-width of the distribution along its x-axis in nanometers"));
.setDisplayName("OmegaX");
addProperty(P_OMEGA_Y, 1.0)->setToolTip( addProperty(P_OMEGA_Y, 1.0)->setToolTip(
QStringLiteral("Half-width of the distribution along its y-axis in nanometers")) QStringLiteral("Half-width of the distribution along its y-axis in nanometers"));
.setDisplayName("OmegaY");
} }
void FTDistribution2DItem::add_gamma_property() void FTDistribution2DItem::add_gamma_property()
......
...@@ -85,7 +85,6 @@ public: ...@@ -85,7 +85,6 @@ public:
static const QString P_GAMMA; static const QString P_GAMMA;
explicit FTDistribution2DItem(const QString& name); explicit FTDistribution2DItem(const QString& name);
virtual std::unique_ptr<IFTDistribution2D> createFTDistribution() const=0; virtual std::unique_ptr<IFTDistribution2D> createFTDistribution() const=0;
virtual ~FTDistribution2DItem(){}
protected: protected:
void add_omega_properties(); void add_omega_properties();
void add_gamma_property(); void add_gamma_property();
......
...@@ -29,6 +29,10 @@ ...@@ -29,6 +29,10 @@
#include "InterferenceFunction1DLattice.h" #include "InterferenceFunction1DLattice.h"
#include "GroupItem.h" #include "GroupItem.h"
namespace {
const QString decay_function_tag = "Decay Function";
}
// TODO (when back compatibility will be broken again) // TODO (when back compatibility will be broken again)
// Make InterferenceFunction1DLatticeItem::P_DECAY_FUNCTION and // Make InterferenceFunction1DLatticeItem::P_DECAY_FUNCTION and
// InterferenceFunction2DLatticeItem::P_DECAY_FUNCTION rely on same constant // InterferenceFunction2DLatticeItem::P_DECAY_FUNCTION rely on same constant
...@@ -200,7 +204,7 @@ const QString InterferenceFunction1DLatticeItem::P_LENGTH = ...@@ -200,7 +204,7 @@ const QString InterferenceFunction1DLatticeItem::P_LENGTH =
QString::fromStdString(BornAgain::Length); QString::fromStdString(BornAgain::Length);
const QString InterferenceFunction1DLatticeItem::P_ROTATION_ANGLE = const QString InterferenceFunction1DLatticeItem::P_ROTATION_ANGLE =
QString::fromStdString(BornAgain::Xi); QString::fromStdString(BornAgain::Xi);
const QString InterferenceFunction1DLatticeItem::P_DECAY_FUNCTION = "Decay Function"; const QString InterferenceFunction1DLatticeItem::P_DECAY_FUNCTION = decay_function_tag;
InterferenceFunction1DLatticeItem::InterferenceFunction1DLatticeItem() InterferenceFunction1DLatticeItem::InterferenceFunction1DLatticeItem()
: InterferenceFunctionItem(Constants::InterferenceFunction1DLatticeType) : InterferenceFunctionItem(Constants::InterferenceFunction1DLatticeType)
...@@ -230,7 +234,7 @@ InterferenceFunction1DLatticeItem::createInterferenceFunction() const ...@@ -230,7 +234,7 @@ InterferenceFunction1DLatticeItem::createInterferenceFunction() const
// --------------------------------------------------------------------------------------------- // // --------------------------------------------------------------------------------------------- //
const QString InterferenceFunction2DLatticeItem::P_LATTICE_TYPE = "LatticeType"; const QString InterferenceFunction2DLatticeItem::P_LATTICE_TYPE = "LatticeType";
const QString InterferenceFunction2DLatticeItem::P_DECAY_FUNCTION = "DecayFunction"; const QString InterferenceFunction2DLatticeItem::P_DECAY_FUNCTION = decay_function_tag;
const QString InterferenceFunction2DLatticeItem::P_XI_INTEGRATION = "Integration_over_xi"; const QString InterferenceFunction2DLatticeItem::P_XI_INTEGRATION = "Integration_over_xi";
InterferenceFunction2DLatticeItem::InterferenceFunction2DLatticeItem() InterferenceFunction2DLatticeItem::InterferenceFunction2DLatticeItem()
......
...@@ -30,7 +30,6 @@ bool isDoubleProperty(const QModelIndex& index) ...@@ -30,7 +30,6 @@ bool isDoubleProperty(const QModelIndex& index)
} }
//! Returns text representation of double value depending on user defined editor type. //! Returns text representation of double value depending on user defined editor type.
//! FIXME Remove this temporary function after getting rid from ScientificDoubleProperty
QString doubleToString(const SessionItem& item) QString doubleToString(const SessionItem& item)
{ {
QString result; QString result;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment