MNE-CPP  0.1.9
A Framework for Electrophysiology
hemispheretreeitem.h
Go to the documentation of this file.
1 //=============================================================================================================
35 #ifndef DISP3DLIB_HEMISPHERETREEITEM_H
36 #define DISP3DLIB_HEMISPHERETREEITEM_H
37 
38 //=============================================================================================================
39 // INCLUDES
40 //=============================================================================================================
41 
42 #include "../../../../disp3D_global.h"
43 #include "../common/abstracttreeitem.h"
44 
45 //=============================================================================================================
46 // QT INCLUDES
47 //=============================================================================================================
48 
49 #include <QPointer>
50 
51 //=============================================================================================================
52 // EIGEN INCLUDES
53 //=============================================================================================================
54 
55 //=============================================================================================================
56 // FORWARD DECLARATIONS
57 //=============================================================================================================
58 
59 namespace FSLIB {
60  class Annotation;
61 }
62 
63 namespace MNELIB {
64  class MNEHemisphere;
65  class MNESourceSpace;
66  class MNESourceEstimate;
67  class MNEForwardSolution;
68 }
69 
70 namespace Qt3DCore {
71  class QEntity;
72 }
73 
74 //=============================================================================================================
75 // DEFINE NAMESPACE DISP3DLIB
76 //=============================================================================================================
77 
78 namespace DISP3DLIB
79 {
80 
81 //=============================================================================================================
82 // DISP3DLIB FORWARD DECLARATIONS
83 //=============================================================================================================
84 
85 class FsSurfaceTreeItem;
86 class FsAnnotationTreeItem;
87 class SourceSpaceTreeItem;
88 
89 //=============================================================================================================
96 {
97  Q_OBJECT
98 
99 public:
100  typedef QSharedPointer<HemisphereTreeItem> SPtr;
101  typedef QSharedPointer<const HemisphereTreeItem> ConstSPtr;
103  //=========================================================================================================
110  explicit HemisphereTreeItem(int iType = Data3DTreeModelItemTypes::HemisphereItem,
111  const QString& text = "Unknown");
112 
113  //=========================================================================================================
123  FsSurfaceTreeItem* addData(const FSLIB::Surface& tSurface,
124  const FSLIB::Annotation& tAnnotation,
125  Qt3DCore::QEntity* p3DEntityParent = 0);
126 
127  //=========================================================================================================
136  SourceSpaceTreeItem* addData(const MNELIB::MNEHemisphere& tHemisphere,
137  Qt3DCore::QEntity* p3DEntityParent = 0);
138 
139 protected:
140  //=========================================================================================================
144  void initItem();
145 };
146 } //NAMESPACE DISP3DLIB
147 
148 #endif // DISP3DLIB_HEMISPHERETREEITEM_H
DISP3DLIB::SourceSpaceTreeItem
Provides a generic brain tree item.
Definition: sourcespacetreeitem.h:86
DISP3DLIB::HemisphereTreeItem
Provides a generic brain tree item.
Definition: hemispheretreeitem.h:95
DISP3DLIB::AbstractTreeItem
Provides the basic tree item.
Definition: abstracttreeitem.h:76
DISP3DLIB::FsSurfaceTreeItem
Provides a generic brain tree item.
Definition: fssurfacetreeitem.h:83
DISP3DLIB::HemisphereTreeItem::SPtr
QSharedPointer< HemisphereTreeItem > SPtr
Definition: hemispheretreeitem.h:100
DISP3DLIB::HemisphereTreeItem::ConstSPtr
QSharedPointer< const HemisphereTreeItem > ConstSPtr
Definition: hemispheretreeitem.h:101
MNELIB::MNEHemisphere
Hemisphere provides geometry information.
Definition: mne_hemisphere.h:80
FSLIB::Annotation
Free surfer annotation.
Definition: annotation.h:80
FSLIB::Surface
FreeSurfer surface mesh.
Definition: surface.h:75
DISP3DSHARED_EXPORT
#define DISP3DSHARED_EXPORT
Definition: disp3D_global.h:55