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

ParticleLayoutItem::updatePropertyAppearance simplified

parent 260dffaf
No related branches found
No related tags found
No related merge requests found
...@@ -311,11 +311,13 @@ void ModelMapper::onRowRemoved(const QModelIndex& parent, int first, int /*last* ...@@ -311,11 +311,13 @@ void ModelMapper::onRowRemoved(const QModelIndex& parent, int first, int /*last*
int nestling = nestlingDepth(m_model->itemForIndex(parent)); int nestling = nestlingDepth(m_model->itemForIndex(parent));
if (nestling >= 0 || m_model->itemForIndex(parent) == m_item->parent()) { if (nestling >= 0 || m_model->itemForIndex(parent) == m_item->parent()) {
callOnChildrenChange(nullptr);
callOnAnyChildChange(nullptr); callOnAnyChildChange(nullptr);
callOnSiblingsChange(); callOnSiblingsChange();
} }
if (nestling == 0 )
callOnChildrenChange(nullptr);
if (m_aboutToDelete.isValid() && m_aboutToDelete == parent.child(first, 0)) if (m_aboutToDelete.isValid() && m_aboutToDelete == parent.child(first, 0))
clearMapper(); clearMapper();
} }
...@@ -60,8 +60,8 @@ ParticleLayoutItem::ParticleLayoutItem() : SessionGraphicsItem(Constants::Partic ...@@ -60,8 +60,8 @@ ParticleLayoutItem::ParticleLayoutItem() : SessionGraphicsItem(Constants::Partic
<< Constants::InterferenceFunction1DLatticeType << Constants::InterferenceFunction1DLatticeType
<< Constants::InterferenceFunction2DLatticeType); << Constants::InterferenceFunction2DLatticeType);
mapper()->setOnChildrenChange([this](SessionItem* item) { mapper()->setOnChildrenChange([this](SessionItem*) {
updateDensityAppearance(item); updateDensityAppearance();
}); });
} }
...@@ -69,15 +69,10 @@ ParticleLayoutItem::ParticleLayoutItem() : SessionGraphicsItem(Constants::Partic ...@@ -69,15 +69,10 @@ ParticleLayoutItem::ParticleLayoutItem() : SessionGraphicsItem(Constants::Partic
//! Two dimensional interference calculates density automatically, so property should //! Two dimensional interference calculates density automatically, so property should
//! be disabled. //! be disabled.
void ParticleLayoutItem::updateDensityAppearance(SessionItem* item) void ParticleLayoutItem::updateDensityAppearance()
{ {
int count = 0; getItem(P_TOTAL_DENSITY)->setEnabled(true);
for (auto child_item : children()) if(auto interferenceItem = getItem(T_INTERFERENCE))
if (isInterference2D(child_item->modelType())) if (isInterference2D(interferenceItem->modelType()))
count++; getItem(P_TOTAL_DENSITY)->setEnabled(false);
if ((item && count > 0) || (!item && count > 1))
getItem(P_TOTAL_DENSITY)->setEnabled(false);
else
getItem(P_TOTAL_DENSITY)->setEnabled(true);
} }
...@@ -27,7 +27,7 @@ public: ...@@ -27,7 +27,7 @@ public:
ParticleLayoutItem(); ParticleLayoutItem();
private: private:
void updateDensityAppearance(SessionItem* item); void updateDensityAppearance();
}; };
#endif // PARTICLELAYOUTITEM_H #endif // PARTICLELAYOUTITEM_H
...@@ -29,10 +29,12 @@ TEST_F(TestParticleLayoutItem, densityAppearance) ...@@ -29,10 +29,12 @@ TEST_F(TestParticleLayoutItem, densityAppearance)
auto interference auto interference
= model.insertNewItem(Constants::InterferenceFunctionRadialParaCrystalType, = model.insertNewItem(Constants::InterferenceFunctionRadialParaCrystalType,
model.indexOfItem(layout), -1, ParticleLayoutItem::T_INTERFERENCE); model.indexOfItem(layout), -1, ParticleLayoutItem::T_INTERFERENCE);
EXPECT_TRUE(layout->getItem(ParticleLayoutItem::T_INTERFERENCE) == interference);
EXPECT_TRUE(layout->getItem(ParticleLayoutItem::P_TOTAL_DENSITY)->isEnabled()); EXPECT_TRUE(layout->getItem(ParticleLayoutItem::P_TOTAL_DENSITY)->isEnabled());
// removing paracrystal, TotalDensity still enabled // removing paracrystal, TotalDensity still enabled
layout->takeRow(ParentRow(*interference)); layout->takeRow(ParentRow(*interference));
EXPECT_TRUE(layout->getItem(ParticleLayoutItem::T_INTERFERENCE) == nullptr);
EXPECT_TRUE(layout->getItem(ParticleLayoutItem::P_TOTAL_DENSITY)->isEnabled()); EXPECT_TRUE(layout->getItem(ParticleLayoutItem::P_TOTAL_DENSITY)->isEnabled());
delete interference; delete interference;
...@@ -44,6 +46,7 @@ TEST_F(TestParticleLayoutItem, densityAppearance) ...@@ -44,6 +46,7 @@ TEST_F(TestParticleLayoutItem, densityAppearance)
// removing 2D interference, TotalIntensity should be reenabled // removing 2D interference, TotalIntensity should be reenabled
layout->takeRow(ParentRow(*interference)); layout->takeRow(ParentRow(*interference));
EXPECT_TRUE(layout->getItem(ParticleLayoutItem::P_TOTAL_DENSITY)->isEnabled());
delete interference; delete interference;
EXPECT_TRUE(layout->getItem(ParticleLayoutItem::T_INTERFERENCE) == nullptr);
EXPECT_TRUE(layout->getItem(ParticleLayoutItem::P_TOTAL_DENSITY)->isEnabled());
} }
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