Slicer  5.3
Slicer is a multi-platform, free and open source software package for visualization and medical image computing
qSlicerVolumeRenderingModule.h
Go to the documentation of this file.
1 /*==============================================================================
2 
3  Program: 3D Slicer
4 
5  Copyright (c) Brigham and Women's Hospital (BWH) All Rights Reserved.
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 Alex Yarmakovich, Isomics Inc.
17  and was partially funded by NIH grant 3P41RR013218-12S1
18 
19 ==============================================================================*/
20 
21 #ifndef __qSlicerVolumeRenderingModule_h
22 #define __qSlicerVolumeRenderingModule_h
23 
24 // CTK includes
25 #include <ctkPimpl.h>
26 
27 // Slicer includes
28 #include "qSlicerLoadableModule.h"
29 
30 #include "qSlicerVolumeRenderingModuleExport.h"
31 
32 class qSlicerVolumeRenderingModulePrivate;
33 
35 class Q_SLICER_QTMODULES_VOLUMERENDERING_EXPORT qSlicerVolumeRenderingModule :
37 {
38  Q_OBJECT
39  Q_PLUGIN_METADATA(IID "org.slicer.modules.loadable.qSlicerLoadableModule/1.0");
40  Q_INTERFACES(qSlicerLoadableModule);
41 
42 public:
43 
45  explicit qSlicerVolumeRenderingModule(QObject *parent=nullptr);
46  ~qSlicerVolumeRenderingModule() override;
47 
48  qSlicerGetTitleMacro(QTMODULE_TITLE);
49 
51  QString helpText()const override;
53  QString acknowledgementText()const override;
55  QStringList contributors()const override;
56 
58  QIcon icon()const override;
59 
60  QStringList categories()const override;
61 
63  QStringList associatedNodeTypes()const override;
64 
65 protected:
67  void setup() override;
68 
71 
74 
75 protected:
76  QScopedPointer<qSlicerVolumeRenderingModulePrivate> d_ptr;
77 
78 private:
79  Q_DECLARE_PRIVATE(qSlicerVolumeRenderingModule);
80  Q_DISABLE_COPY(qSlicerVolumeRenderingModule);
81 
82 };
83 
84 #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< qSlicerVolumeRenderingModulePrivate > 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) ...
QString helpText() const override
Return help/acknowledgement text.
virtual QStringList categories() const