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

Material labels and colors now correctly updated on project load.

parent b3f02069
No related branches found
No related tags found
No related merge requests found
......@@ -214,6 +214,8 @@ void ApplicationModels::readFrom(QXmlStreamReader* reader, WarningMessageService
break;
}
}
m_materialPropertyController->onMaterialModelLoad();
}
//! Returns the list of all GUI models
......
......@@ -44,6 +44,27 @@ void MaterialPropertyController::setModels(MaterialModel* materialModel, SampleM
&MaterialPropertyController::onMaterialModelLoad);
}
//! Special case when original MaterialModel was fully rebuild from MaterialEditor.
//! Full update of MaterialProperties.
void MaterialPropertyController::onMaterialModelLoad()
{
for (auto sampleItem : relatedSampleItems()) {
QString tag = MaterialItemUtils::materialTag(*sampleItem);
Q_ASSERT(!tag.isEmpty());
ExternalProperty property = sampleItem->getItemValue(tag).value<ExternalProperty>();
if (MaterialItem* material
= m_materialModel->materialFromIdentifier(property.getIdentifier())) {
ExternalProperty new_property = MaterialItemUtils::materialProperty(*material);
sampleItem->setItemValue(tag, new_property.getVariant());
} else {
ExternalProperty undefined;
sampleItem->setItemValue(tag, undefined.getVariant());
}
}
}
//! On MaterialItem change: updates corresponding MaterialProperty in sample items.
void MaterialPropertyController::onMaterialDataChanged(const QModelIndex& topLeft,
......@@ -96,27 +117,6 @@ void MaterialPropertyController::onMaterialRowsAboutToBeRemoved(const QModelInde
}
}
//! Special case when original MaterialModel was fully rebuild from MaterialEditor.
//! Full update of MaterialProperties.
void MaterialPropertyController::onMaterialModelLoad()
{
for (auto sampleItem : relatedSampleItems()) {
QString tag = MaterialItemUtils::materialTag(*sampleItem);
Q_ASSERT(!tag.isEmpty());
ExternalProperty property = sampleItem->getItemValue(tag).value<ExternalProperty>();
if (MaterialItem* material
= m_materialModel->materialFromIdentifier(property.getIdentifier())) {
ExternalProperty new_property = MaterialItemUtils::materialProperty(*material);
sampleItem->setItemValue(tag, new_property.getVariant());
} else {
ExternalProperty undefined;
sampleItem->setItemValue(tag, undefined.getVariant());
}
}
}
//! Returns vector of SessionItems having MaterialProperty on board.
QVector<SessionItem*> MaterialPropertyController::relatedSampleItems()
......
......@@ -35,10 +35,12 @@ public:
void setModels(MaterialModel* materialModel, SampleModel* sampleModel);
public slots:
void onMaterialModelLoad();
private slots:
void onMaterialDataChanged(const QModelIndex &topLeft, const QModelIndex &, const QVector<int> &);
void onMaterialRowsAboutToBeRemoved(const QModelIndex &parent, int first, int last);
void onMaterialModelLoad();
private:
QVector<SessionItem*> relatedSampleItems();
......
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