Slicer  4.8
Slicer is a multi-platform, free and open source software package for visualization and medical image computing
qSlicerWelcomeModule.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 Jean-Christophe Fillion-Robin, Kitware Inc.
17  and was partially funded by NIH grant 3P41RR013218-12S1
18 
19 ==============================================================================*/
20 
21 #ifndef __qSlicerWelcomeModule_h
22 #define __qSlicerWelcomeModule_h
23 
24 // CTK includes
25 #include <ctkPimpl.h>
26 
27 // SlicerQt includes
28 #include "qSlicerLoadableModule.h"
29 #include "qSlicerWelcomeModuleExport.h"
30 
32 class qSlicerWelcomeModulePrivate;
33 
35 class Q_SLICER_QTMODULES_WELCOME_EXPORT qSlicerWelcomeModule :
37 {
38  Q_OBJECT
39 #ifdef Slicer_HAVE_QT5
40  Q_PLUGIN_METADATA(IID "org.slicer.modules.loadable.qSlicerLoadableModule/1.0");
41 #endif
42  Q_INTERFACES(qSlicerLoadableModule);
43 
44 public:
45 
47  qSlicerWelcomeModule(QObject *parent=0);
48  virtual ~qSlicerWelcomeModule();
49 
50  qSlicerGetTitleMacro(QTMODULE_TITLE);
51 
52  virtual QStringList categories()const;
53  virtual QIcon icon()const;
54 
56  virtual QString helpText()const;
57  virtual QString acknowledgementText()const;
58  virtual QStringList contributors()const;
59 
60 protected:
61 
64 
67 
68 protected:
69  QScopedPointer<qSlicerWelcomeModulePrivate> d_ptr;
70 
71 private:
72  Q_DECLARE_PRIVATE(qSlicerWelcomeModule);
73  Q_DISABLE_COPY(qSlicerWelcomeModule);
74 };
75 
76 #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.
#define qSlicerGetTitleMacro(_TITLE)
virtual vtkMRMLAbstractLogic * createLogic()=0
virtual QString helpText() const
Return help/acknowledgement text.
virtual QString acknowledgementText() const
virtual QStringList categories() const
qSlicerLoadableModule Superclass
QScopedPointer< qSlicerWelcomeModulePrivate > d_ptr