forked from QIICR/QuantitativeReporting
-
Notifications
You must be signed in to change notification settings - Fork 0
/
qSlicerReportingModule.cxx
165 lines (134 loc) · 5.55 KB
/
qSlicerReportingModule.cxx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
/*==============================================================================
Program: 3D Slicer
Portions (c) Copyright Brigham and Women's Hospital (BWH) All Rights Reserved.
See COPYRIGHT.txt
or http://www.slicer.org/copyright/copyright.txt for details.
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
==============================================================================*/
// Qt includes
#include <QFileInfo>
#include <QScopedPointer>
#include <QtPlugin>
#include <QtPlugin>
// Reporting Logic includes
#include <vtkSlicerReportingModuleLogic.h>
// Reporting includes
#include "qSlicerReportingIO.h"
#include "qSlicerReportingModule.h"
#include "vtkReportingVersionConfigure.h"
// SlicerQT includes
#include <qSlicerIOManager.h>
#include <qSlicerModuleManager.h>
#include <qSlicerNodeWriter.h>
#include <qSlicerScriptedLoadableModuleWidget.h>
#include <qSlicerUtils.h>
#include <vtkSlicerConfigure.h>
//-----------------------------------------------------------------------------
Q_EXPORT_PLUGIN2(qSlicerReportingModule, qSlicerReportingModule);
//-----------------------------------------------------------------------------
/// \ingroup Slicer_QtModules_Reporting
class qSlicerReportingModulePrivate
{
public:
qSlicerReportingModulePrivate();
};
//-----------------------------------------------------------------------------
// qSlicerReportingModulePrivate methods
//-----------------------------------------------------------------------------
qSlicerReportingModulePrivate::qSlicerReportingModulePrivate()
{
}
//-----------------------------------------------------------------------------
// qSlicerReportingModule methods
//-----------------------------------------------------------------------------
qSlicerReportingModule::qSlicerReportingModule(QObject* _parent)
: Superclass(_parent)
, d_ptr(new qSlicerReportingModulePrivate)
{
}
//-----------------------------------------------------------------------------
qSlicerReportingModule::~qSlicerReportingModule()
{
}
//-----------------------------------------------------------------------------
QString qSlicerReportingModule::helpText()const
{
return "The Reporting module provides support for structured markup and annotation, and "
"some support of AIM import/export.<br>"
"Select a markup and right click to jump slice viewers to that location.<br>"
"This is a work in progress (revision " + QString(Reporting_WC_REVISION)+
"). <a href=\"http://wiki.slicer.org/slicerWiki/index.php/Documentation/4.2/Extensions/Reporting\">"
"Usage instructions</a>.";
}
//-----------------------------------------------------------------------------
QString qSlicerReportingModule::acknowledgementText()const
{
return "This work was supported by a supplement to NIH grant U01CA151261 (PI Fiona Fennessy).";
}
//-----------------------------------------------------------------------------
QIcon qSlicerReportingModule::icon()const
{
return QIcon(":/Icons/ReportingModule.png");
}
//-----------------------------------------------------------------------------
QStringList qSlicerReportingModule::categories() const
{
return QStringList() << "Work in Progress.Informatics";
}
//-----------------------------------------------------------------------------
QStringList qSlicerReportingModule::dependencies() const
{
return QStringList() << "Annotations" << "Volumes" << "DICOM";
}
//-----------------------------------------------------------------------------
QStringList qSlicerReportingModule::contributors() const
{
QStringList contributors;
contributors << "Andrey Fedorov (SPL, BWH)";
contributors << "Nicole Aucoin (SPL, BWH)";
contributors << "Steve Pieper (Isomics)";
return contributors;
}
//-----------------------------------------------------------------------------
void qSlicerReportingModule::setup()
{
this->Superclass::setup();
/// Register IO
qSlicerIOManager* ioManager = qSlicerApplication::application()->ioManager();
ioManager->registerIO(
new qSlicerReportingIO(vtkSlicerReportingModuleLogic::SafeDownCast(this->logic()), this));
ioManager->registerIO(new qSlicerNodeWriter(
QString("Reporting"), QString("AIMXML"),
QStringList() << "vtkMRMLReportingReportNode", this));
std::cout << "Registered Reporting IO with the mrml report node" << std::endl;
vtkSlicerReportingModuleLogic *logic =
vtkSlicerReportingModuleLogic::SafeDownCast(this->logic());
if(logic)
{
logic->InitializeTerminologyMapping();
}
}
//-----------------------------------------------------------------------------
qSlicerAbstractModuleRepresentation * qSlicerReportingModule::createWidgetRepresentation()
{
QString pythonPath = qSlicerUtils::pathWithoutIntDir(
QFileInfo(this->path()).path(), Slicer_QTLOADABLEMODULES_LIB_DIR);
QScopedPointer<qSlicerScriptedLoadableModuleWidget> widget(new qSlicerScriptedLoadableModuleWidget);
QString classNameToLoad = "qSlicerReportingModuleWidget";
bool ret = widget->setPythonSource(
pythonPath + "/Python/" + classNameToLoad + ".py", classNameToLoad);
if (!ret)
{
return 0;
}
return widget.take();
}
//-----------------------------------------------------------------------------
vtkMRMLAbstractLogic* qSlicerReportingModule::createLogic()
{
return vtkSlicerReportingModuleLogic::New();
}