Slicer 5.9
Slicer is a multi-platform, free and open source software package for visualization and medical image computing
Loading...
Searching...
No Matches
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// Slicer includes
29#include "qSlicerWelcomeModuleExport.h"
30
32class qSlicerWelcomeModulePrivate;
33
34class Q_SLICER_QTMODULES_WELCOME_EXPORT qSlicerWelcomeModule :
36{
37 Q_OBJECT
38 Q_PLUGIN_METADATA(IID "org.slicer.modules.loadable.qSlicerLoadableModule/1.0");
39 Q_INTERFACES(qSlicerLoadableModule);
40
41public:
42
44 qSlicerWelcomeModule(QObject *parent=nullptr);
46
47 qSlicerGetTitleMacro(tr("Welcome to Slicer"));
48
49 QStringList categories()const override;
50 QIcon icon()const override;
51
53 QString helpText()const override;
54 QString acknowledgementText()const override;
55 QStringList contributors()const override;
56
57protected:
58
61
64
65protected:
66 QScopedPointer<qSlicerWelcomeModulePrivate> d_ptr;
67
68private:
69 Q_DECLARE_PRIVATE(qSlicerWelcomeModule);
70 Q_DISABLE_COPY(qSlicerWelcomeModule);
71};
72
73#endif
qSlicerLoadableModule(QObject *parent=nullptr)
QStringList categories() const override
QString helpText() const override
Help to use the module.
~qSlicerWelcomeModule() override
qSlicerAbstractModuleRepresentation * createWidgetRepresentation() override
Create and return the widget representation associated to this module.
QStringList contributors() const override
Return the contributors of the module.
qSlicerLoadableModule Superclass
qSlicerWelcomeModule(QObject *parent=nullptr)
QString acknowledgementText() const override
QIcon icon() const override
QScopedPointer< qSlicerWelcomeModulePrivate > d_ptr
qSlicerGetTitleMacro(tr("Welcome to Slicer"))
vtkMRMLAbstractLogic * createLogic() override
Create and return the logic associated to this module.
Superclass for MRML logic classes.