MNE-CPP  0.1.9
A Framework for Electrophysiology
sensorsettreeitem.h
Go to the documentation of this file.
1 //=============================================================================================================
35 #ifndef DISP3DLIB_SENSORSETTREEITEM_H
36 #define DISP3DLIB_SENSORSETTREEITEM_H
37 
38 //=============================================================================================================
39 // INCLUDES
40 //=============================================================================================================
41 
42 #include "../../../../disp3D_global.h"
43 
44 #include "../common/abstracttreeitem.h"
45 
46 //=============================================================================================================
47 // QT INCLUDES
48 //=============================================================================================================
49 
50 #include <QPointer>
51 
52 //=============================================================================================================
53 // EIGEN INCLUDES
54 //=============================================================================================================
55 
56 //=============================================================================================================
57 // FORWARD DECLARATIONS
58 //=============================================================================================================
59 
60 namespace MNELIB {
61  class MNEBem;
62 }
63 
64 namespace FIFFLIB {
65  class FiffChInfo;
66 }
67 
68 namespace Qt3DCore {
69  class QEntity;
70  class QTransform;
71 }
72 
73 //=============================================================================================================
74 // DEFINE NAMESPACE DISP3DLIB
75 //=============================================================================================================
76 
77 namespace DISP3DLIB
78 {
79 
80 //=============================================================================================================
81 // DISP3DLIB FORWARD DECLARATIONS
82 //=============================================================================================================
83 
84 class Renderable3DEntity;
85 
86 //=============================================================================================================
93 {
94  Q_OBJECT
95 
96 public:
97  typedef QSharedPointer<SensorSetTreeItem> SPtr;
98  typedef QSharedPointer<const SensorSetTreeItem> ConstSPtr;
100  //=========================================================================================================
107  explicit SensorSetTreeItem(int iType = Data3DTreeModelItemTypes::BemItem, const QString& text = "");
108 
109  //=========================================================================================================
119  void addData(const MNELIB::MNEBem& tSensor,
120  const QList<FIFFLIB::FiffChInfo>& lChInfo,
121  const QString &sDataType,
122  const QStringList &bads = QStringList(),
123  Qt3DCore::QEntity* p3DEntityParent = 0);
124 
125  //=========================================================================================================
131  virtual void setTransform(const Qt3DCore::QTransform &transform);
132 
133  //=========================================================================================================
140  virtual void setTransform(const FIFFLIB::FiffCoordTrans& transform, bool bApplyInverse = false);
141 
142  //=========================================================================================================
148  virtual void applyTransform(const Qt3DCore::QTransform& transform);
149 
150  //=========================================================================================================
157  virtual void applyTransform(const FIFFLIB::FiffCoordTrans& transform, bool bApplyInverse = false);
158 
159 protected:
160  //=========================================================================================================
164  void initItem();
165 
166  QPointer<Renderable3DEntity> m_pRenderable3DEntity;
167 };
168 } //NAMESPACE DISP3DLIB
169 
170 #endif // DISP3DLIB_SENSORSETTREEITEM_H
DISP3DLIB::SensorSetTreeItem::m_pRenderable3DEntity
QPointer< Renderable3DEntity > m_pRenderable3DEntity
Definition: sensorsettreeitem.h:166
MNELIB::MNEBem
BEM descritpion.
Definition: mne_bem.h:89
DISP3DLIB::AbstractTreeItem
Provides the basic tree item.
Definition: abstracttreeitem.h:76
DISP3DLIB::SensorSetTreeItem::ConstSPtr
QSharedPointer< const SensorSetTreeItem > ConstSPtr
Definition: sensorsettreeitem.h:98
DISP3DLIB::SensorSetTreeItem
Provides a generic SensorSetTreeItem.
Definition: sensorsettreeitem.h:92
FIFFLIB::FiffCoordTrans
Coordinate transformation description.
Definition: fiff_coord_trans.h:74
DISP3DSHARED_EXPORT
#define DISP3DSHARED_EXPORT
Definition: disp3D_global.h:55
DISP3DLIB::SensorSetTreeItem::SPtr
QSharedPointer< SensorSetTreeItem > SPtr
Definition: sensorsettreeitem.h:97