MNE-CPP
0.1.9
A Framework for Electrophysiology
src
libraries
disp3D
engine
model
items
subject
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
61
using namespace
FSLIB;
62
using namespace
DISP3DLIB;
63
64
//=============================================================================================================
65
// DEFINE MEMBER METHODS
66
//=============================================================================================================
67
68
SubjectTreeItem::SubjectTreeItem(
int
iType,
const
QString& text)
69
:
AbstractTreeItem
(iType, text)
70
{
71
initItem
();
72
}
73
74
//=============================================================================================================
75
76
void
SubjectTreeItem::initItem
()
77
{
78
this->setEditable(
false
);
79
this->setCheckable(
true
);
80
this->setCheckState(Qt::Checked);
81
this->setToolTip(
"Subject"
);
82
}
subjecttreeitem.h
SubjectTreeItem class declaration.
DISP3DLIB::AbstractTreeItem
Provides the basic tree item.
Definition:
abstracttreeitem.h:76
DISP3DLIB::SubjectTreeItem::initItem
void initItem()
Definition:
subjecttreeitem.cpp:76
Generated on Wed Aug 9 2023 17:55:41 for MNE-CPP by
1.8.17