MNE-CPP 0.1.9
A Framework for Electrophysiology
Loading...
Searching...
No Matches
subjecttreeitem.cpp
Go to the documentation of this file.
1//=============================================================================================================
35//=============================================================================================================
36// INCLUDES
37//=============================================================================================================
38
39#include "subjecttreeitem.h"
40#include "../measurement/measurementtreeitem.h"
41#include "../mri/mritreeitem.h"
42#include "../bem/bemsurfacetreeitem.h"
43#include "../bem/bemtreeitem.h"
44#include "../sensorspace/sensorsettreeitem.h"
45#include "../sensorspace/sensorsurfacetreeitem.h"
46
47//=============================================================================================================
48// QT INCLUDES
49//=============================================================================================================
50
51//=============================================================================================================
52// EIGEN INCLUDES
53//=============================================================================================================
54
55#include <Eigen/Core>
56
57//=============================================================================================================
58// USED NAMESPACES
59//=============================================================================================================
60
61using namespace FSLIB;
62using namespace DISP3DLIB;
63
64//=============================================================================================================
65// DEFINE MEMBER METHODS
66//=============================================================================================================
67
68SubjectTreeItem::SubjectTreeItem(int iType, const QString& text)
69: AbstractTreeItem(iType, text)
70{
71 initItem();
72}
73
74//=============================================================================================================
75
77{
78 this->setEditable(false);
79 this->setCheckable(true);
80 this->setCheckState(Qt::Checked);
81 this->setToolTip("Subject");
82}
SubjectTreeItem class declaration.
Provides the basic tree item.
SubjectTreeItem(int iType=Data3DTreeModelItemTypes::SubjectItem, const QString &text="Subject")