1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90
|
// ************************************************************************************************
//
// BornAgain: simulate and fit reflection and scattering
//
//! @file GUI/coregui/Views/SampleDesigner/SamplePropertyWidget.cpp
//! @brief Implements class IntensityDataPropertyWidget
//!
//! @homepage http://www.bornagainproject.org
//! @license GNU General Public License v3 or higher (see COPYING)
//! @copyright Forschungszentrum Jülich GmbH 2018
//! @authors Scientific Computing Group at MLZ (see CITATION, AUTHORS)
//
// ************************************************************************************************
#include "GUI/coregui/Views/SampleDesigner/SamplePropertyWidget.h"
#include "GUI/coregui/Models/SessionItem.h"
#include "GUI/coregui/Views/PropertyEditor/ComponentEditor.h"
#include <QItemSelection>
#include <QModelIndexList>
#include <QSortFilterProxyModel>
#include <QVBoxLayout>
SamplePropertyWidget::SamplePropertyWidget(QItemSelectionModel* selection_model, QWidget* parent)
: QWidget(parent)
, m_selection_model(nullptr)
, m_propertyEditor(new ComponentEditor(ComponentEditor::FullTree))
{
setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Preferred);
setWindowTitle(QLatin1String("Property Editor"));
setObjectName(QLatin1String("SamplePropertyWidget"));
setSelectionModel(selection_model);
auto mainLayout = new QVBoxLayout;
mainLayout->setMargin(0);
mainLayout->setSpacing(0);
mainLayout->addWidget(m_propertyEditor);
setLayout(mainLayout);
}
QSize SamplePropertyWidget::sizeHint() const
{
return QSize(230, 256);
}
QSize SamplePropertyWidget::minimumSizeHint() const
{
return QSize(230, 64);
}
void SamplePropertyWidget::setSelectionModel(QItemSelectionModel* selection_model)
{
if (selection_model == m_selection_model)
return;
if (m_selection_model) {
disconnect(m_selection_model, &QItemSelectionModel::selectionChanged, this,
&SamplePropertyWidget::selectionChanged);
}
m_selection_model = selection_model;
if (m_selection_model) {
connect(m_selection_model, &QItemSelectionModel::selectionChanged, this,
&SamplePropertyWidget::selectionChanged);
}
}
// TODO Refactor this together with whole SampleView. Remove knowledge about proxy model.
void SamplePropertyWidget::selectionChanged(const QItemSelection& selected, const QItemSelection&)
{
QModelIndexList indices = selected.indexes();
if (!indices.empty()) {
QModelIndex index = indices.back();
if (auto proxy = dynamic_cast<QSortFilterProxyModel*>(
const_cast<QAbstractItemModel*>(indices.front().model())))
index = proxy->mapToSource(indices.back());
SessionItem* item = static_cast<SessionItem*>(index.internalPointer());
if (item)
m_propertyEditor->setItem(item);
} else {
m_propertyEditor->setItem(nullptr);
}
}
|