Slicer  5.1
Slicer is a multi-platform, free and open source software package for visualization and medical image computing
qSlicerColorsModule.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 Julien Finet, Kitware Inc.
17  and was partially funded by NIH grant 3P41RR013218-12S1
18 
19 ==============================================================================*/
20 
21 #ifndef __qSlicerColorsModule_h
22 #define __qSlicerColorsModule_h
23 
25 #include "qSlicerLoadableModule.h"
26 
28 #include "qSlicerColorsModuleExport.h"
29 
31 class qSlicerColorsModulePrivate;
32 
33 class Q_SLICER_QTMODULES_COLORS_EXPORT qSlicerColorsModule
34  : public qSlicerLoadableModule
35 {
36  Q_OBJECT
37  Q_PLUGIN_METADATA(IID "org.slicer.modules.loadable.qSlicerLoadableModule/1.0");
38  Q_INTERFACES(qSlicerLoadableModule);
39 
40 public:
42  qSlicerColorsModule(QObject *parent=nullptr);
43  ~qSlicerColorsModule() override;
44 
45  QStringList categories()const override;
46  QIcon icon()const override;
47 
48  qSlicerGetTitleMacro(QTMODULE_TITLE);
49 
51  QString helpText()const override;
52  QString acknowledgementText()const override;
53  QStringList contributors()const override;
54  bool isHidden()const override;
55 
57  QStringList associatedNodeTypes()const override;
58 
59  void setMRMLScene(vtkMRMLScene* newMRMLScene) override;
60 
61 protected:
63  void setup() override;
64 
67 
70 
71 protected:
72  QScopedPointer<qSlicerColorsModulePrivate> d_ptr;
73 
74 private:
75  Q_DECLARE_PRIVATE(qSlicerColorsModule);
76  Q_DISABLE_COPY(qSlicerColorsModule);
77 };
78 
79 #endif
virtual void setMRMLScene(vtkMRMLScene *)
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)
qSlicerLoadableModule Superclass
QString acknowledgementText() const override
virtual vtkMRMLAbstractLogic * createLogic()=0
void setup() override
All initialization code should be done in the setup.
A set of MRML Nodes that supports serialization and undo/redo.
Definition: vtkMRMLScene.h:57
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
QScopedPointer< qSlicerColorsModulePrivate > d_ptr
virtual bool isHidden() const