Slicer 5.9
Slicer is a multi-platform, free and open source software package for visualization and medical image computing
Loading...
Searching...
No Matches
qSlicerVolumesModule.h
Go to the documentation of this file.
1/*==============================================================================
2
3 Program: 3D Slicer
4
5 Copyright (c) Kitware Inc.
6
7 See COPYRIGHT.txt
8 or http://www.slicer.org/copyright/copyright.txt for details.
9
10 Unless required by applicable law or agreed to in writing, software
11 distributed under the License is distributed on an "AS IS" BASIS,
12 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 See the License for the specific language governing permissions and
14 limitations under the License.
15
16 This file was originally developed by Jean-Christophe Fillion-Robin, Kitware Inc.
17 and was partially funded by NIH grant 3P41RR013218-12S1
18
19==============================================================================*/
20
21#ifndef __qSlicerVolumesModule_h
22#define __qSlicerVolumesModule_h
23
24// Slicer includes
26
27#include "qSlicerVolumesModuleExport.h"
28
30class qSlicerVolumesModulePrivate;
31
32class Q_SLICER_QTMODULES_VOLUMES_EXPORT qSlicerVolumesModule : public qSlicerLoadableModule
33{
34 Q_OBJECT
35 Q_PLUGIN_METADATA(IID "org.slicer.modules.loadable.qSlicerLoadableModule/1.0");
36 Q_INTERFACES(qSlicerLoadableModule);
37
38public:
40 qSlicerVolumesModule(QObject* parent = nullptr);
42
43 QString helpText() const override;
44 QString acknowledgementText() const override;
45 QStringList contributors() const override;
46 QIcon icon() const override;
47 QStringList categories() const override;
48 QStringList dependencies() const override;
49 QString title() const override;
50
51protected:
53 void setup() override;
54
57
60
62 QStringList associatedNodeTypes() const override;
63
64protected:
65 QScopedPointer<qSlicerVolumesModulePrivate> d_ptr;
66
67private:
68 Q_DECLARE_PRIVATE(qSlicerVolumesModule);
69 Q_DISABLE_COPY(qSlicerVolumesModule);
70};
71
72#endif
qSlicerLoadableModule(QObject *parent=nullptr)
QStringList contributors() const override
Return the contributors of the module.
QStringList categories() const override
QIcon icon() const override
QString acknowledgementText() const override
QStringList dependencies() const override
QString title() const override
QStringList associatedNodeTypes() const override
Specify editable node types.
void setup() override
Initialize the module. Register the volumes reader/writer.
qSlicerVolumesModule(QObject *parent=nullptr)
~qSlicerVolumesModule() override
QString helpText() const override
Return help/acknowledgement text.
qSlicerLoadableModule Superclass
QScopedPointer< qSlicerVolumesModulePrivate > d_ptr
vtkMRMLAbstractLogic * createLogic() override
Create and return the logic associated to this module.
qSlicerAbstractModuleRepresentation * createWidgetRepresentation() override
Create and return the widget representation associated to this module.
Superclass for MRML logic classes.