Slicer  5.1
Slicer is a multi-platform, free and open source software package for visualization and medical image computing
qSlicerTextsModule.h
Go to the documentation of this file.
1 /*==============================================================================
2 
3  Copyright (c) Laboratory for Percutaneous Surgery (PerkLab)
4  Queen's University, Kingston, ON, Canada. All Rights Reserved.
5 
6  See COPYRIGHT.txt
7  or http://www.slicer.org/copyright/copyright.txt for details.
8 
9  Unless required by applicable law or agreed to in writing, software
10  distributed under the License is distributed on an "AS IS" BASIS,
11  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12  See the License for the specific language governing permissions and
13  limitations under the License.
14 
15  This file was originally developed by Kyle Sunderland, PerkLab, Queen's University
16  and was supported through CANARIE's Research Software Program, and Cancer
17  Care Ontario.
18 
19 ==============================================================================*/
20 
21 #ifndef __qSlicerTextsModule_h
22 #define __qSlicerTextsModule_h
23 
24 // Slicer includes
25 #include "qSlicerLoadableModule.h"
26 
27 // Texts includes
28 #include "qSlicerTextsModuleExport.h"
29 
30 class vtkMatrix4x4;
31 class vtkMRMLNode;
32 class qSlicerTextsModulePrivate;
33 
34 class Q_SLICER_QTMODULES_TEXTS_EXPORT qSlicerTextsModule : public qSlicerLoadableModule
35 {
36  Q_OBJECT
37  Q_PLUGIN_METADATA(IID "org.slicer.modules.loadable.qSlicerLoadableModule/1.0");
38  Q_INTERFACES(qSlicerLoadableModule);
39 public:
40 
42  qSlicerTextsModule(QObject *parent=nullptr);
43  ~qSlicerTextsModule() override;
44 
46  QIcon icon()const override;
47 
49  QStringList categories()const override;
50 
52  QStringList dependencies()const override;
53 
55  qSlicerGetTitleMacro("Texts");
56 
58  QString helpText()const override;
59 
61  QString acknowledgementText()const override;
62 
64  QStringList contributors()const override;
65 
67  QStringList associatedNodeTypes()const override;
68 
69 protected:
71  void setup() override;
72 
75 
78 
79  QScopedPointer<qSlicerTextsModulePrivate> d_ptr;
80 private:
81  Q_DECLARE_PRIVATE(qSlicerTextsModule);
82  Q_DISABLE_COPY(qSlicerTextsModule);
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.
qSlicerLoadableModule Superclass
#define qSlicerGetTitleMacro(_TITLE)
QScopedPointer< qSlicerTextsModulePrivate > d_ptr
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) ...
virtual QStringList dependencies() const
QString helpText() const override
Return help/acknowledgement text.
virtual QStringList categories() const
Abstract Superclass for all specific types of MRML nodes.
Definition: vtkMRMLNode.h:167