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
|
// ************************************************************************************************
//
// BornAgain: simulate and fit reflection and scattering
//
//! @file GUI/coregui/Views/SampleDesigner/ParticleLayoutView.cpp
//! @brief Implements class ParticleLayoutView
//!
//! @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/ParticleLayoutView.h"
#include "GUI/coregui/Models/SessionItem.h"
#include "GUI/coregui/Views/SampleDesigner/DesignerHelper.h"
#include "GUI/coregui/Views/SampleDesigner/ParticleView.h"
#include "GUI/coregui/utils/GUIHelpers.h"
ParticleLayoutView::ParticleLayoutView(QGraphicsItem* parent) : ConnectableView(parent)
{
setName("ParticleLayout");
setColor(QColor(135, 206, 50));
setRectangle(DesignerHelper::getParticleLayoutBoundingRect());
addPort("out", NodeEditorPort::OUTPUT, NodeEditorPort::PARTICLE_LAYOUT)
->setToolTip("Connect this port with the layer "
"to populate it with particles");
addPort("particle", NodeEditorPort::INPUT, NodeEditorPort::FORM_FACTOR)
->setToolTip("Connect one or several particles to this port");
addPort("interference", NodeEditorPort::INPUT, NodeEditorPort::INTERFERENCE)
->setToolTip("Connect interference to this port "
"to have coherent scattering");
}
void ParticleLayoutView::addView(IView* childView, int /* row */)
{
if (childView->type() == ViewTypes::PARTICLE) {
connectInputPort(dynamic_cast<ConnectableView*>(childView), 0);
} else if (childView->type() == ViewTypes::INTERFERENCE_FUNCTION_1D_LATTICE
|| childView->type() == ViewTypes::INTERFERENCE_FUNCTION_2D_LATTICE
|| childView->type() == ViewTypes::INTERFERENCE_FUNCTION_2D_PARA
|| childView->type() == ViewTypes::INTERFERENCE_FUNCTION_FINITE_2D_LATTICE
|| childView->type() == ViewTypes::INTERFERENCE_FUNCTION_HARD_DISK
|| childView->type() == ViewTypes::INTERFERENCE_FUNCTION_RADIAL_PARA) {
connectInputPort(dynamic_cast<ConnectableView*>(childView), 1);
} else {
throw GUIHelpers::Error("ParticleLayoutView::addView() -> Error. Unknown view");
}
}
|