Slicer 5.4
Slicer is a multi-platform, free and open source software package for visualization and medical image computing
Loading...
Searching...
No Matches
qMRMLSegmentationGeometryDialog.h
Go to the documentation of this file.
1/*==============================================================================
2
3 Copyright (c) Laboratory for Percutaneous Surgery (PerkLab)
4 Queen's University, Kingston, ON, Canada. All Rights Reserved.
5
6 See COPYRIGHT.txt
7 or http://www.slicer.org/copyright/copyright.txt for details.
8
9 Unless required by applicable law or agreed to in writing, software
10 distributed under the License is distributed on an "AS IS" BASIS,
11 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 See the License for the specific language governing permissions and
13 limitations under the License.
14
15 This file was originally developed by Csaba Pinter, PerkLab, Queen's University
16 and was supported through the Applied Cancer Research Unit program of Cancer Care
17 Ontario with funds provided by the Ontario Ministry of Health and Long-Term Care
18 and CANARIE.
19
20==============================================================================*/
21
22#ifndef __qMRMLSegmentationGeometryDialog_h
23#define __qMRMLSegmentationGeometryDialog_h
24
25// Qt includes
26#include <QObject>
27
28// Segmentations includes
29#include "qSlicerSegmentationsModuleWidgetsExport.h"
30
32
34class qMRMLSegmentationGeometryDialogPrivate;
35
38class Q_SLICER_MODULE_SEGMENTATIONS_WIDGETS_EXPORT qMRMLSegmentationGeometryDialog : public QObject
39{
40public:
41 Q_OBJECT
42
45 Q_PROPERTY(bool editEnabled READ editEnabled WRITE setEditEnabled)
50 Q_PROPERTY(bool resampleLabelmaps READ resampleLabelmaps WRITE setResampleLabelmaps)
51
52public:
53 typedef QObject Superclass;
54 qMRMLSegmentationGeometryDialog(vtkMRMLSegmentationNode* segmentationNode, QObject* parent=nullptr);
56
57public:
61 virtual bool exec();
62
64 Q_INVOKABLE bool execDialog() { return this->exec(); };
65
66 bool editEnabled()const;
67 bool resampleLabelmaps()const;
68
69public slots:
70 void setEditEnabled(bool aEditEnabled);
71 void setResampleLabelmaps(bool aResampleLabelmaps);
72
73protected:
74 QScopedPointer<qMRMLSegmentationGeometryDialogPrivate> d_ptr;
75
76private:
77 Q_DECLARE_PRIVATE(qMRMLSegmentationGeometryDialog);
78 Q_DISABLE_COPY(qMRMLSegmentationGeometryDialog);
79};
80
81#endif
Qt dialog for changing segmentation labelmap geometry.
void setEditEnabled(bool aEditEnabled)
QScopedPointer< qMRMLSegmentationGeometryDialogPrivate > d_ptr
void setResampleLabelmaps(bool aResampleLabelmaps)
MRML node containing segmentations.