Slicer  5.1
Slicer is a multi-platform, free and open source software package for visualization and medical image computing
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"
29 class qMRMLWidgetPrivate;
30 
31 // VTK includes
32 class vtkMRMLScene;
33 
35 class QMRML_WIDGETS_EXPORT qMRMLWidget : public QWidget
36 {
37  Q_OBJECT
38 
39 public:
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 
58 public slots:
60  virtual void setMRMLScene(vtkMRMLScene* newScene);
61 
62 signals:
66  void mrmlSceneChanged(vtkMRMLScene*);
67 
68 protected:
69  QScopedPointer<qMRMLWidgetPrivate> d_ptr;
70 
71 private:
72  Q_DECLARE_PRIVATE(qMRMLWidget);
73  Q_DISABLE_COPY(qMRMLWidget);
74 };
75 
76 #endif
A set of MRML Nodes that supports serialization and undo/redo.
Definition: vtkMRMLScene.h:57
QScopedPointer< qMRMLWidgetPrivate > d_ptr
Definition: qMRMLWidget.h:69
Base class for any widget that requires a MRML Scene.
Definition: qMRMLWidget.h:35
QWidget Superclass
Definition: qMRMLWidget.h:40