Skip to content
Snippets Groups Projects
Commit 9184a8e9 authored by Matthias Puchner's avatar Matthias Puchner
Browse files

reduce SessionModel usage

parent 35394164
No related branches found
No related tags found
1 merge request!553Remove session signaling in sample model
......@@ -98,6 +98,14 @@ void RealDataModel::remove(RealDataItem* item)
removeItem(item);
}
QStringList RealDataModel::realDataNames() const
{
QStringList result;
for (auto item : realDataItems())
result.append(item->itemName());
return result;
}
void RealDataModel::onRowsChange(const QModelIndex& parent, int, int)
{
// valid parent means not a data (which is top level item) but something below
......
......@@ -41,6 +41,8 @@ public:
void remove(RealDataItem* item);
QStringList realDataNames() const;
signals:
void realDataAddedOrRemoved();
......
......@@ -126,12 +126,12 @@ void SampleListModel::removeSample(MultiLayerItem* item)
QModelIndex SampleListModel::createSample()
{
using namespace GUI::Model::ItemUtils;
const QStringList existingNames = m_sampleModel->multiLayerNames();
const int row = m_sampleModel->multiLayerItems().size();
beginInsertRows(QModelIndex(), row, row);
auto* multilayer_item = m_sampleModel->addMultiLayer();
multilayer_item->setSampleName(suggestName(topItemNames(m_sampleModel), "Sample"));
multilayer_item->setSampleName(GUI::Model::ItemUtils::suggestName(existingNames, "Sample"));
endInsertRows();
return indexForItem(multilayer_item);
}
......
......@@ -100,10 +100,17 @@ QVector<InstrumentItem*> InstrumentModel::instrumentItems() const
return topItems<InstrumentItem>();
}
QStringList InstrumentModel::instrumentNames() const
{
QStringList existingNames;
for (const auto* item : instrumentItems())
existingNames << item->instrumentName();
return existingNames;
}
QString InstrumentModel::suggestInstrumentName(const QString& baseName) const
{
using namespace GUI::Model::ItemUtils;
return suggestName(topItemNames(this), baseName);
return GUI::Model::ItemUtils::suggestName(instrumentNames(), baseName);
}
QVector<InstrumentItem*>
......
......@@ -49,6 +49,8 @@ public:
QVector<InstrumentItem*>
instrumentItems(std::function<bool(const InstrumentItem*)> accept) const;
QStringList instrumentNames() const;
signals:
void instrumentAddedOrRemoved();
void instrumentNameChanged(const InstrumentItem* instrument);
......
......@@ -60,6 +60,14 @@ void SampleModel::removeMultiLayer(MultiLayerItem* item)
emit sampleAddedOrRemoved();
}
QStringList SampleModel::multiLayerNames() const
{
QStringList existingNames;
for (const auto* item : multiLayerItems())
existingNames << item->sampleName();
return existingNames;
}
void SampleModel::onDataChanged(const QModelIndex& index, const QModelIndex&)
{
// check whether it's an item, then emit the relevant signal
......
......@@ -38,6 +38,8 @@ public:
MultiLayerItem* addMultiLayer();
void removeMultiLayer(MultiLayerItem* item);
QStringList multiLayerNames() const;
signals:
//! This signal is emitted if any item data changed (compare to
//! QAbstractItemModel::dataChanged).
......
......@@ -120,9 +120,9 @@ void SimulationView::writeOptionsToUI()
// -- selection group
using GUI::Model::ItemUtils::itemNames;
updateSelection(m_ui->instrumentCombo, itemNames(instrumentItems()));
updateSelection(m_ui->sampleCombo, sampleNames(multiLayerItems()));
updateSelection(m_ui->realDataCombo, itemNames(realDataItems()), true);
updateSelection(m_ui->instrumentCombo, m_document->instrumentModel()->instrumentNames());
updateSelection(m_ui->sampleCombo, m_document->sampleModel()->multiLayerNames());
updateSelection(m_ui->realDataCombo, m_document->realDataModel()->realDataNames(), true);
// -- options group
optionsItem()->runImmediately() ? m_ui->runPolicyImmediatelyRadio->setChecked(true)
......
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