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
qSlicerTerminologiesModule.h
Go to the documentation of this file.
1/*==============================================================================
2
3 Program: 3D Slicer
4
5 Copyright (c) Laboratory for Percutaneous Surgery (PerkLab)
6 Queen's University, Kingston, ON, Canada. All Rights Reserved.
7
8 See COPYRIGHT.txt
9 or http://www.slicer.org/copyright/copyright.txt for details.
10
11 Unless required by applicable law or agreed to in writing, software
12 distributed under the License is distributed on an "AS IS" BASIS,
13 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 See the License for the specific language governing permissions and
15 limitations under the License.
16
17 This file was originally developed by Csaba Pinter, PerkLab, Queen's University
18 and was supported through the Applied Cancer Research Unit program of Cancer Care
19 Ontario with funds provided by the Ontario Ministry of Health and Long-Term Care
20
21==============================================================================*/
22
23#ifndef __qSlicerTerminologiesModule_h
24#define __qSlicerTerminologiesModule_h
25
26// Slicer includes
28
29#include "qSlicerTerminologiesModuleExport.h"
30
31class qSlicerTerminologiesModulePrivate;
32
33class Q_SLICER_QTMODULES_TERMINOLOGIES_EXPORT qSlicerTerminologiesModule :
35{
36 Q_OBJECT
37 Q_PLUGIN_METADATA(IID "org.slicer.modules.loadable.qSlicerLoadableModule/1.0");
38 Q_INTERFACES(qSlicerLoadableModule);
39
40public:
41
43 explicit qSlicerTerminologiesModule(QObject *parent=nullptr);
45
46 qSlicerGetTitleMacro(tr("Terminologies"));
47
49 QString helpText()const override;
50
52 QString acknowledgementText()const override;
53
55 QStringList contributors()const override;
56
58 QStringList categories()const override;
59
61 QStringList dependencies()const override;
62
63protected:
64
66 void setup() override;
67
70
73
74protected:
75 QScopedPointer<qSlicerTerminologiesModulePrivate> d_ptr;
76
77private:
78 Q_DECLARE_PRIVATE(qSlicerTerminologiesModule);
79 Q_DISABLE_COPY(qSlicerTerminologiesModule);
80};
81
82#endif
qSlicerLoadableModule(QObject *parent=nullptr)
QString helpText() const override
Help to use the module.
QScopedPointer< qSlicerTerminologiesModulePrivate > d_ptr
~qSlicerTerminologiesModule() override
QStringList categories() const override
Return the categories for the module.
QStringList contributors() const override
Return the authors of the module.
qSlicerGetTitleMacro(tr("Terminologies"))
qSlicerTerminologiesModule(QObject *parent=nullptr)
vtkMRMLAbstractLogic * createLogic() override
Create and return the logic associated to this module (will return only import logic!...
QStringList dependencies() const override
List dependencies.
void setup() override
Initialize the module. Register the volumes reader/writer.
QString acknowledgementText() const override
Return acknowledgments.
qSlicerAbstractModuleRepresentation * createWidgetRepresentation() override
Create and return the widget representation associated to this module.
Superclass for MRML logic classes.