Slicer  5.1
Slicer is a multi-platform, free and open source software package for visualization and medical image computing
qSlicerReformatModule.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 Michael Jeulin-Lagarrigue, Kitware Inc.
17  and was partially funded by NIH grant 3P41RR013218-12S1
18 
19 ==============================================================================*/
20 
21 #ifndef __qSlicerReformatModule_h
22 #define __qSlicerReformatModule_h
23 
24 // Slicer includes
25 #include "qSlicerLoadableModule.h"
26 
27 #include "qSlicerReformatModuleExport.h"
28 
29 class qSlicerReformatModulePrivate;
30 
32 class Q_SLICER_QTMODULES_REFORMAT_EXPORT
34 {
35  Q_OBJECT
36  Q_PLUGIN_METADATA(IID "org.slicer.modules.loadable.qSlicerLoadableModule/1.0");
37  Q_INTERFACES(qSlicerLoadableModule);
38 
39 public:
40 
42  explicit qSlicerReformatModule(QObject *parent=nullptr);
43  ~qSlicerReformatModule() override;
44 
45  qSlicerGetTitleMacro(QTMODULE_TITLE);
46 
48  QString helpText()const override;
49 
51  QString acknowledgementText()const override;
52 
54  QIcon icon()const override;
55 
57  QStringList categories()const override;
58 
60  QStringList contributors()const override;
61 
63  QStringList associatedNodeTypes()const override;
64 
65 protected:
66 
68  void setup() override;
69 
72 
75 
76 protected:
77  QScopedPointer<qSlicerReformatModulePrivate> d_ptr;
78 
79 private:
80  Q_DECLARE_PRIVATE(qSlicerReformatModule);
81  Q_DISABLE_COPY(qSlicerReformatModule);
82 
83 };
84 
85 #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.
QScopedPointer< qSlicerReformatModulePrivate > d_ptr
#define qSlicerGetTitleMacro(_TITLE)
QString acknowledgementText() const override
virtual vtkMRMLAbstractLogic * createLogic()=0
void setup() override
All initialization code should be done in the setup.
virtual QStringList associatedNodeTypes() const
Return node types associated with this module (e.g., node types this module can edit) ...
qSlicerLoadableModule Superclass
QString helpText() const override
Return help/acknowledgement text.
virtual QStringList categories() const