MNE-CPP  0.1.9
A Framework for Electrophysiology
ecddatatreeitem.h
Go to the documentation of this file.
1 //=============================================================================================================
35 #ifndef DISP3DLIB_ECDDATATREEITEM_H
36 #define DISP3DLIB_ECDDATATREEITEM_H
37 
38 //=============================================================================================================
39 // INCLUDES
40 //=============================================================================================================
41 
42 #include "../../../../disp3D_global.h"
43 #include "../common/abstract3Dtreeitem.h"
44 
45 //=============================================================================================================
46 // QT INCLUDES
47 //=============================================================================================================
48 
49 //=============================================================================================================
50 // EIGEN INCLUDES
51 //=============================================================================================================
52 
53 //=============================================================================================================
54 // FORWARD DECLARATIONS
55 //=============================================================================================================
56 
57 namespace INVERSELIB {
58  class ECDSet;
59 }
60 
61 namespace Qt3DCore {
62  class QEntity;
63 }
64 
65 namespace DISP3DLIB {
66  class GeometryMultiplier;
67 }
68 
69 //=============================================================================================================
70 // DEFINE NAMESPACE DISP3DLIB
71 //=============================================================================================================
72 
73 namespace DISP3DLIB
74 {
75 
76 //=============================================================================================================
77 // DISP3DLIB FORWARD DECLARATIONS
78 //=============================================================================================================
79 
80 //=============================================================================================================
87 {
88  Q_OBJECT
89 
90 public:
91  typedef QSharedPointer<EcdDataTreeItem> SPtr;
92  typedef QSharedPointer<const EcdDataTreeItem> ConstSPtr;
94  //=========================================================================================================
102  explicit EcdDataTreeItem(Qt3DCore::QEntity* p3DEntityParent = 0,
103  int iType = Data3DTreeModelItemTypes::ECDDataItem,
104  const QString& text = "ECD");
105 
106  //=========================================================================================================
112  void addData(const INVERSELIB::ECDSet& pECDSet);
113 
114 protected:
115  //=========================================================================================================
119  void initItem();
120 
121  //=========================================================================================================
127  void plotDipoles(const INVERSELIB::ECDSet& tECDSet);
128 
129 private:
130 
131  QPointer<GeometryMultiplier> m_pDipolMesh;
132 
133  QPointer<MetaTreeItem> m_pItemNumDipoles;
134 };
135 
136 //=============================================================================================================
137 // INLINE DEFINITIONS
138 //=============================================================================================================
139 } //NAMESPACE DISP3DLIB
140 
141 #endif // DISP3DLIB_ECDDATATREEITEM_H
DISP3DLIB::EcdDataTreeItem::ConstSPtr
QSharedPointer< const EcdDataTreeItem > ConstSPtr
Definition: ecddatatreeitem.h:92
DISP3DLIB::EcdDataTreeItem::SPtr
QSharedPointer< EcdDataTreeItem > SPtr
Definition: ecddatatreeitem.h:91
DISP3DLIB::Abstract3DTreeItem
Provides the basic tree item.
Definition: abstract3Dtreeitem.h:80
INVERSELIB::ECDSet
Holds a set of Electric Current Dipoles.
Definition: ecd_set.h:80
DISP3DLIB::EcdDataTreeItem
Provides a generic brain tree item to hold real time data.
Definition: ecddatatreeitem.h:86
DISP3DSHARED_EXPORT
#define DISP3DSHARED_EXPORT
Definition: disp3D_global.h:55