Skip to content
Snippets Groups Projects
Commit c268f7d3 authored by t.knopff's avatar t.knopff
Browse files

Make ParticleLayoutItem::P_WEIGHT private

parent 44f215fa
No related branches found
No related tags found
1 merge request!170Refactor model: ParticleLayoutItem
...@@ -95,7 +95,7 @@ void GUIDomainSampleVisitor::visit(const ParticleLayout* sample) ...@@ -95,7 +95,7 @@ void GUIDomainSampleVisitor::visit(const ParticleLayout* sample)
SessionItem* parent = m_levelToParentItem[depth() - 1]; SessionItem* parent = m_levelToParentItem[depth() - 1];
auto layout_item = m_sampleModel->insertItem<ParticleLayoutItem>(parent); auto layout_item = m_sampleModel->insertItem<ParticleLayoutItem>(parent);
layout_item->setTotalDensity(sample->totalParticleSurfaceDensity()); layout_item->setTotalDensity(sample->totalParticleSurfaceDensity());
layout_item->setItemValue(ParticleLayoutItem::P_WEIGHT, sample->weight()); layout_item->setWeight(sample->weight());
m_levelToParentItem[depth()] = layout_item; m_levelToParentItem[depth()] = layout_item;
} }
......
...@@ -95,6 +95,17 @@ void ParticleLayoutItem::setTotalDensity(double total_density) ...@@ -95,6 +95,17 @@ void ParticleLayoutItem::setTotalDensity(double total_density)
setItemValue(P_TOTAL_DENSITY, total_density); setItemValue(P_TOTAL_DENSITY, total_density);
} }
double ParticleLayoutItem::weight() const
{
return getItemValue(P_WEIGHT).toDouble();
}
void ParticleLayoutItem::setWeight(double weight)
{
setItemValue(P_WEIGHT, weight);
}
//! Disables/enables total density property, depending on type of interference function. //! Disables/enables total density property, depending on type of interference function.
//! Two dimensional interference calculates density automatically, so property should //! Two dimensional interference calculates density automatically, so property should
//! be disabled. //! be disabled.
......
...@@ -20,9 +20,9 @@ ...@@ -20,9 +20,9 @@
class BA_CORE_API_ ParticleLayoutItem : public SessionGraphicsItem { class BA_CORE_API_ ParticleLayoutItem : public SessionGraphicsItem {
private: private:
static const QString P_TOTAL_DENSITY; static const QString P_TOTAL_DENSITY;
static const QString P_WEIGHT;
public: public:
static const QString P_WEIGHT;
static const QString T_PARTICLES; static const QString T_PARTICLES;
static const QString T_INTERFERENCE; static const QString T_INTERFERENCE;
...@@ -33,6 +33,9 @@ public: ...@@ -33,6 +33,9 @@ public:
double totalDensity() const; double totalDensity() const;
void setTotalDensity(double total_density); void setTotalDensity(double total_density);
double weight() const;
void setWeight(double weight);
private: private:
void updateDensityAppearance(); void updateDensityAppearance();
void updateDensityValue(); void updateDensityValue();
......
...@@ -98,7 +98,7 @@ GUI::Transform::ToDomain::createParticleLayout(const ParticleLayoutItem& item) ...@@ -98,7 +98,7 @@ GUI::Transform::ToDomain::createParticleLayout(const ParticleLayoutItem& item)
{ {
auto P_layout = std::make_unique<ParticleLayout>(); auto P_layout = std::make_unique<ParticleLayout>();
double total_density = item.totalDensity(); double total_density = item.totalDensity();
auto layout_weight = item.getItemValue(ParticleLayoutItem::P_WEIGHT).value<double>(); double layout_weight = item.weight();
P_layout->setTotalParticleSurfaceDensity(total_density); P_layout->setTotalParticleSurfaceDensity(total_density);
P_layout->setWeight(layout_weight); P_layout->setWeight(layout_weight);
return P_layout; return P_layout;
......
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