Slicer 5.9
Slicer is a multi-platform, free and open source software package for visualization and medical image computing
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Modules Pages
qMRMLWidget.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 __qMRMLWidget_h
22#define __qMRMLWidget_h
23
24// Qt includes
25#include <QWidget>
26
27// MRMLWidgets includes
28#include "qMRMLWidgetsExport.h"
29class qMRMLWidgetPrivate;
30
31// VTK includes
32class vtkMRMLScene;
33
35class QMRML_WIDGETS_EXPORT qMRMLWidget : public QWidget
36{
37 Q_OBJECT
38
39public:
40 typedef QWidget Superclass;
41 explicit qMRMLWidget(QWidget *parent = nullptr, Qt::WindowFlags f = Qt::WindowFlags());
42 ~qMRMLWidget() override;
43
45 Q_INVOKABLE vtkMRMLScene* mrmlScene() const;
46
49 Q_INVOKABLE static void preInitializeApplication();
50
52 Q_INVOKABLE static void postInitializeApplication();
53
54 // Get the pixmap from the icon that is the most suitable for current screen resolution.
55 // Useful for cases when a widget cannot take a QIcon as input only as QPixmap.
56 Q_INVOKABLE static QPixmap pixmapFromIcon(const QIcon& icon);
57
58public slots:
60 virtual void setMRMLScene(vtkMRMLScene* newScene);
61
62signals:
67
68protected:
69 QScopedPointer<qMRMLWidgetPrivate> d_ptr;
70
71private:
72 Q_DECLARE_PRIVATE(qMRMLWidget);
73 Q_DISABLE_COPY(qMRMLWidget);
74};
75
76#endif
QWidget Superclass
Definition qMRMLWidget.h:40
Q_INVOKABLE vtkMRMLScene * mrmlScene() const
Return a pointer on the current MRML scene.
~qMRMLWidget() override
QScopedPointer< qMRMLWidgetPrivate > d_ptr
Definition qMRMLWidget.h:69
virtual void setMRMLScene(vtkMRMLScene *newScene)
Set the MRML scene associated with the widget.
static Q_INVOKABLE void postInitializeApplication()
Initialization that needs to be performed after application object is created.
static Q_INVOKABLE void preInitializeApplication()
static Q_INVOKABLE QPixmap pixmapFromIcon(const QIcon &icon)
qMRMLWidget(QWidget *parent=nullptr, Qt::WindowFlags f=Qt::WindowFlags())
void mrmlSceneChanged(vtkMRMLScene *)
A set of MRML Nodes that supports serialization and undo/redo.