MNE-CPP  0.1.9
A Framework for Electrophysiology
fsannotationtreeitem.h
Go to the documentation of this file.
1 //=============================================================================================================
35 #ifndef DISP3DLIB_FSANNOTATIONTREEITEM_H
36 #define DISP3DLIB_FSANNOTATIONTREEITEM_H
37 
38 //=============================================================================================================
39 // INCLUDES
40 //=============================================================================================================
41 
42 #include "../../../../disp3D_global.h"
43 #include "../common/abstracttreeitem.h"
44 #include "../common/types.h"
45 
46 //=============================================================================================================
47 // QT INCLUDES
48 //=============================================================================================================
49 
50 //=============================================================================================================
51 // EIGEN INCLUDES
52 //=============================================================================================================
53 
54 #include <Eigen/Core>
55 
56 //=============================================================================================================
57 // FORWARD DECLARATIONS
58 //=============================================================================================================
59 
60 namespace FSLIB {
61  class Label;
62  class Surface;
63  class Annotation;
64 }
65 
66 //=============================================================================================================
67 // DEFINE NAMESPACE DISP3DLIB
68 //=============================================================================================================
69 
70 namespace DISP3DLIB
71 {
72 
73 //=============================================================================================================
74 // DISP3DLIB FORWARD DECLARATIONS
75 //=============================================================================================================
76 
77 //=============================================================================================================
84 {
85  Q_OBJECT
86 
87 public:
88  typedef QSharedPointer<FsAnnotationTreeItem> SPtr;
89  typedef QSharedPointer<const FsAnnotationTreeItem> ConstSPtr;
91  //=========================================================================================================
98  explicit FsAnnotationTreeItem(int iType = Data3DTreeModelItemTypes::AnnotationItem, const QString& text = "Annotation" );
99 
100  //=========================================================================================================
107  void addData(const FSLIB::Surface& tSurface, const FSLIB::Annotation& tAnnotation);
108 
109 protected:
110  //=========================================================================================================
114  void initItem();
115 
116  //=========================================================================================================
122  virtual void onCheckStateChanged(const Qt::CheckState& checkState);
123 
124 signals:
125  //=========================================================================================================
131  void annotationVisibiltyChanged(bool isVisible);
132 };
133 } //NAMESPACE DISP3DLIB
134 
135 #endif // DISP3DLIB_FSANNOTATIONTREEITEM_H
DISP3DLIB::FsAnnotationTreeItem::ConstSPtr
QSharedPointer< const FsAnnotationTreeItem > ConstSPtr
Definition: fsannotationtreeitem.h:89
DISP3DLIB::AbstractTreeItem
Provides the basic tree item.
Definition: abstracttreeitem.h:76
DISP3DLIB::FsAnnotationTreeItem::SPtr
QSharedPointer< FsAnnotationTreeItem > SPtr
Definition: fsannotationtreeitem.h:88
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
DISP3DLIB::FsAnnotationTreeItem
Provides a generic brain tree item.
Definition: fsannotationtreeitem.h:83