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
|
// ************************************************************************************************
//
// BornAgain: simulate and fit reflection and scattering
//
//! @file GUI/coregui/Views/SampleDesigner/InterferenceFunctionViews.h
//! @brief Defines classes InterferenceFunctionViews
//!
//! @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)
//
// ************************************************************************************************
#ifndef BORNAGAIN_GUI_COREGUI_VIEWS_SAMPLEDESIGNER_INTERFERENCEFUNCTIONVIEWS_H
#define BORNAGAIN_GUI_COREGUI_VIEWS_SAMPLEDESIGNER_INTERFERENCEFUNCTIONVIEWS_H
#include "GUI/coregui/Views/SampleDesigner/ConnectableView.h"
class InterferenceFunction1DLatticeView : public ConnectableView {
Q_OBJECT
public:
InterferenceFunction1DLatticeView(QGraphicsItem* parent = nullptr);
int type() const { return ViewTypes::INTERFERENCE_FUNCTION_1D_LATTICE; }
};
class InterferenceFunction2DLatticeView : public ConnectableView {
Q_OBJECT
public:
InterferenceFunction2DLatticeView(QGraphicsItem* parent = nullptr);
int type() const { return ViewTypes::INTERFERENCE_FUNCTION_2D_LATTICE; }
};
class InterferenceFunction2DParaCrystalView : public ConnectableView {
Q_OBJECT
public:
InterferenceFunction2DParaCrystalView(QGraphicsItem* parent = nullptr);
int type() const { return ViewTypes::INTERFERENCE_FUNCTION_2D_PARA; }
};
class InterferenceFunctionFinite2DLatticeView : public ConnectableView {
Q_OBJECT
public:
InterferenceFunctionFinite2DLatticeView(QGraphicsItem* parent = nullptr);
int type() const { return ViewTypes::INTERFERENCE_FUNCTION_FINITE_2D_LATTICE; }
};
class InterferenceFunctionHardDiskView : public ConnectableView {
Q_OBJECT
public:
InterferenceFunctionHardDiskView(QGraphicsItem* parent = nullptr);
int type() const { return ViewTypes::INTERFERENCE_FUNCTION_HARD_DISK; }
};
class InterferenceFunctionRadialParaCrystalView : public ConnectableView {
Q_OBJECT
public:
InterferenceFunctionRadialParaCrystalView(QGraphicsItem* parent = nullptr);
int type() const { return ViewTypes::INTERFERENCE_FUNCTION_RADIAL_PARA; }
};
#endif // BORNAGAIN_GUI_COREGUI_VIEWS_SAMPLEDESIGNER_INTERFERENCEFUNCTIONVIEWS_H
|