Slicer 5.6
Slicer is a multi-platform, free and open source software package for visualization and medical image computing
Loading...
Searching...
No Matches
vtkMRMLMarkupsROIDisplayNode.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 Kyle Sunderland, PerkLab, Queen's University
16 and was supported through CANARIE's Research Software Program, Cancer
17 Care Ontario, OpenAnatomy, and Brigham and Women's Hospital through NIH grant R01MH112748.
18
19==============================================================================*/
20// .NAME vtkMRMLMarkupsROIDisplayNode - MRML node to represent display properties for markups ROI
21// .SECTION Description
22// Adjusts default display parameters for ROI such as fill opacity.
23//
24
25#ifndef __vtkMRMLMarkupsROIDisplayNode_h
26#define __vtkMRMLMarkupsROIDisplayNode_h
27
28#include "vtkSlicerMarkupsModuleMRMLExport.h"
30
31class VTK_SLICER_MARKUPS_MODULE_MRML_EXPORT vtkMRMLMarkupsROIDisplayNode : public vtkMRMLMarkupsDisplayNode
32{
33public:
36
37 //--------------------------------------------------------------------------
38 // MRMLNode methods
39 //--------------------------------------------------------------------------
40
42
43 // Get node XML tag name (like Volume, Markups)
44 const char* GetNodeTagName() override {return "MarkupsROIDisplay";};
45
49
50 enum
51 {
53 ComponentROI_Last
54 };
55
56 // Scale handle indexes
57 enum
58 {
65
74
87
88 HandleROI_Last
89 };
90
91protected:
95 void operator= ( const vtkMRMLMarkupsROIDisplayNode& );
96};
97#endif
const char * GetNodeTagName() override
Get node XML tag name (like Volume, Markups)
vtkMRMLMarkupsROIDisplayNode(const vtkMRMLMarkupsROIDisplayNode &)
~vtkMRMLMarkupsROIDisplayNode() override
static vtkMRMLMarkupsROIDisplayNode * New()
vtkMRMLCopyContentDefaultMacro(vtkMRMLMarkupsROIDisplayNode)
vtkMRMLNode * CreateNodeInstance() override
Create instance of the default node. Like New only virtual.
Abstract Superclass for all specific types of MRML nodes.