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
qSlicerUnitsModule.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 Johan Andruejol, Kitware Inc.
17 and was partially funded by NIH grant 3P41RR013218-12S1
18
19==============================================================================*/
20
21#ifndef __qSlicerUnitsModule_h
22#define __qSlicerUnitsModule_h
23
24// CTK includes
25#include <ctkPimpl.h>
26
27// Slicer includes
29
30#include "qSlicerUnitsModuleExport.h"
31
32class qSlicerUnitsModulePrivate;
33
34class Q_SLICER_QTMODULES_UNITS_EXPORT qSlicerUnitsModule
36{
37 Q_OBJECT
38 Q_PLUGIN_METADATA(IID "org.slicer.modules.loadable.qSlicerLoadableModule/1.0");
39 Q_INTERFACES(qSlicerLoadableModule);
40
41public:
42
44 explicit qSlicerUnitsModule(QObject *parent=nullptr);
46
48
49 QString helpText()const override;
50 QString acknowledgementText()const override;
51 QStringList contributors()const override;
52
53 QIcon icon()const override;
54
55 QStringList categories()const override;
56 QStringList dependencies() const override;
57
59 bool isHidden() const override;
60
61protected:
63 void setup() override;
64
67
70
71protected:
72 QScopedPointer<qSlicerUnitsModulePrivate> d_ptr;
73
74private:
75 Q_DECLARE_PRIVATE(qSlicerUnitsModule);
76 Q_DISABLE_COPY(qSlicerUnitsModule);
77
78};
79
80#endif
qSlicerLoadableModule(QObject *parent=nullptr)
qSlicerUnitsModule(QObject *parent=nullptr)
qSlicerGetTitleMacro(tr("Units"))
QStringList contributors() const override
Return the contributors of the module.
bool isHidden() const override
Hide unit module by default.
~qSlicerUnitsModule() override
qSlicerAbstractModuleRepresentation * createWidgetRepresentation() override
Create and return the widget representation associated to this module.
QIcon icon() const override
vtkMRMLAbstractLogic * createLogic() override
Create and return the logic associated to this module.
QString helpText() const override
Return help/acknowledgement text.
QStringList dependencies() const override
QScopedPointer< qSlicerUnitsModulePrivate > d_ptr
void setup() override
Initialize the module. Register the volumes reader/writer.
qSlicerLoadableModule Superclass
QString acknowledgementText() const override
QStringList categories() const override
Superclass for MRML logic classes.