Slicer  5.3
Slicer is a multi-platform, free and open source software package for visualization and medical image computing
qSlicerAbstractModule.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 __qSlicerAbstractModule_h
22 #define __qSlicerAbstractModule_h
23 
24 // Qt includes
25 #include <QIcon>
26 
27 // CTK includes
28 #include <ctkPimpl.h>
29 
30 // Slicer includes
32 #include "qSlicerBaseQTGUIExport.h"
33 #include "vtkSlicerVersionConfigure.h" // For Slicer_VERSION_MAJOR, Slicer_VERSION_MINOR
34 
35 class QAction;
36 class qSlicerAbstractModulePrivate;
37 
40 class Q_SLICER_BASE_QTGUI_EXPORT qSlicerAbstractModule
42 {
43  Q_OBJECT
46  Q_PROPERTY(QIcon icon READ icon)
47  Q_PROPERTY(QImage logo READ logo)
48 public:
49 
51  qSlicerAbstractModule(QObject *parent=nullptr);
52  ~qSlicerAbstractModule() override;
53 
57  virtual QIcon icon()const;
58 
60  virtual QImage logo()const;
61 
70  Q_INVOKABLE QAction * action();
71 protected:
72  QScopedPointer<qSlicerAbstractModulePrivate> d_ptr;
73 
74 private:
75  Q_DECLARE_PRIVATE(qSlicerAbstractModule);
76  Q_DISABLE_COPY(qSlicerAbstractModule);
77 };
78 
79 #endif
qSlicerAbstractCoreModule is the base class of any module in Slicer.