Slicer 5.9
Slicer is a multi-platform, free and open source software package for visualization and medical image computing
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Modules Pages
qSlicerTransformsModule.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 __qSlicerTransformsModule_h
22#define __qSlicerTransformsModule_h
23
24// Slicer includes
26
27// Transforms includes
28#include "qSlicerTransformsModuleExport.h"
29
30class vtkMatrix4x4;
31class vtkMRMLNode;
32class qSlicerTransformsModulePrivate;
33
34class Q_SLICER_QTMODULES_TRANSFORMS_EXPORT qSlicerTransformsModule
36{
37 Q_OBJECT
38 Q_PLUGIN_METADATA(IID "org.slicer.modules.loadable.qSlicerLoadableModule/1.0");
39 Q_INTERFACES(qSlicerLoadableModule);
40public:
41
43 qSlicerTransformsModule(QObject *parent=nullptr);
45
47 QIcon icon()const override;
48
49 QStringList categories()const override;
50
52 QStringList dependencies()const override;
53
55 qSlicerGetTitleMacro(tr("Transforms"));
56
58 QString helpText()const override;
59
61 QString acknowledgementText()const override;
62
64 QStringList contributors()const override;
65
67 QStringList associatedNodeTypes()const override;
68
69protected:
71 void setup() override;
72
75
78
79 QScopedPointer<qSlicerTransformsModulePrivate> d_ptr;
80private:
81 Q_DECLARE_PRIVATE(qSlicerTransformsModule);
82 Q_DISABLE_COPY(qSlicerTransformsModule);
83};
84
85#endif
qSlicerLoadableModule(QObject *parent=nullptr)
qSlicerTransformsModule(QObject *parent=nullptr)
qSlicerAbstractModuleRepresentation * createWidgetRepresentation() override
Create and return the widget representation associated to this module.
QIcon icon() const override
Icon of the transform module.
QScopedPointer< qSlicerTransformsModulePrivate > d_ptr
QStringList contributors() const override
Contributors of the module.
vtkMRMLAbstractLogic * createLogic() override
Create and return the logic associated to this module.
QStringList categories() const override
~qSlicerTransformsModule() override
qSlicerLoadableModule Superclass
QStringList associatedNodeTypes() const override
Specify editable node types.
QString helpText() const override
Help text of the module.
qSlicerGetTitleMacro(tr("Transforms"))
Display name for the module.
QStringList dependencies() const override
Dependencies of the module.
QString acknowledgementText() const override
Acknowledgement of the module.
void setup() override
Reimplemented to initialize the transforms IO.
Superclass for MRML logic classes.
Abstract Superclass for all specific types of MRML nodes.