Slicer  4.8
Slicer is a multi-platform, free and open source software package for visualization and medical image computing
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 // SlicerQt includes
25 #include "qSlicerLoadableModule.h"
26 
27 // Transforms includes
28 #include "qSlicerTransformsModuleExport.h"
29 
30 class vtkMatrix4x4;
31 class vtkMRMLNode;
32 class qSlicerTransformsModulePrivate;
33 
34 class Q_SLICER_QTMODULES_TRANSFORMS_EXPORT qSlicerTransformsModule
35  : public qSlicerLoadableModule
36 {
37  Q_OBJECT
38 #ifdef Slicer_HAVE_QT5
39  Q_PLUGIN_METADATA(IID "org.slicer.modules.loadable.qSlicerLoadableModule/1.0");
40 #endif
41  Q_INTERFACES(qSlicerLoadableModule);
42 public:
43 
45  qSlicerTransformsModule(QObject *parent=0);
46  virtual ~qSlicerTransformsModule();
47 
49  virtual QIcon icon()const;
50 
51  virtual QStringList categories()const;
52 
54  virtual QStringList dependencies()const;
55 
57  qSlicerGetTitleMacro("Transforms");
58 
60  virtual QString helpText()const;
61 
63  virtual QString acknowledgementText()const;
64 
66  virtual QStringList contributors()const;
67 
69  virtual QStringList associatedNodeTypes()const;
70 
71 protected:
73  virtual void setup();
74 
77 
80 
81  QScopedPointer<qSlicerTransformsModulePrivate> d_ptr;
82 private:
83  Q_DECLARE_PRIVATE(qSlicerTransformsModule);
84  Q_DISABLE_COPY(qSlicerTransformsModule);
85 };
86 
87 #endif
virtual QStringList contributors() const
Return the contributors of the module.
Superclass for MRML logic classes.
virtual QIcon icon() const
virtual qSlicerAbstractModuleRepresentation * createWidgetRepresentation()=0
Create and return a widget representation for the module.
#define qSlicerGetTitleMacro(_TITLE)
virtual void setup()
All initialization code should be done in the setup.
QScopedPointer< qSlicerTransformsModulePrivate > d_ptr
virtual vtkMRMLAbstractLogic * createLogic()=0
virtual QString helpText() const
Return help/acknowledgement text.
virtual QStringList associatedNodeTypes() const
Return node types associated with this module (e.g., node types this module can edit) ...
virtual QString acknowledgementText() const
virtual QStringList dependencies() const
virtual QStringList categories() const
qSlicerLoadableModule Superclass
Abstract Superclass for all specific types of MRML nodes.
Definition: vtkMRMLNode.h:135