VTK  9.1.0
vtkAnnotation.h
Go to the documentation of this file.
1/*=========================================================================
2
3 Program: Visualization Toolkit
4 Module: vtkAnnotation.h
5
6-------------------------------------------------------------------------
7 Copyright 2008 Sandia Corporation.
8 Under the terms of Contract DE-AC04-94AL85000 with Sandia Corporation,
9 the U.S. Government retains certain rights in this software.
10-------------------------------------------------------------------------
11
12 Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
13 All rights reserved.
14 See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
15
16 This software is distributed WITHOUT ANY WARRANTY; without even
17 the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
18 PURPOSE. See the above copyright notice for more information.
19
20=========================================================================*/
21
36#ifndef vtkAnnotation_h
37#define vtkAnnotation_h
38
39#include "vtkCommonDataModelModule.h" // For export macro
40#include "vtkDataObject.h"
41
46class vtkSelection;
47
48class VTKCOMMONDATAMODEL_EXPORT vtkAnnotation : public vtkDataObject
49{
50public:
52 void PrintSelf(ostream& os, vtkIndent indent) override;
53 static vtkAnnotation* New();
54
58 int GetDataObjectType() override { return VTK_ANNOTATION; }
59
61
64 vtkGetObjectMacro(Selection, vtkSelection);
65 virtual void SetSelection(vtkSelection* selection);
67
69
75
80
86
92
97
103
108
113
117 void Initialize() override;
118
123 void ShallowCopy(vtkDataObject* other) override;
124
129 void DeepCopy(vtkDataObject* other) override;
130
135
136protected:
138 ~vtkAnnotation() override;
139
141
142private:
143 vtkAnnotation(const vtkAnnotation&) = delete;
144 void operator=(const vtkAnnotation&) = delete;
145};
146
147#endif
Stores a collection of annotation artifacts.
Definition: vtkAnnotation.h:49
static vtkInformationIntegerKey * ENABLE()
Whether or not this annotation is enabled.
static vtkAnnotation * New()
static vtkAnnotation * GetData(vtkInformationVector *v, int i=0)
Retrieve a vtkAnnotation stored inside an information object.
static vtkInformationIntegerKey * ICON_INDEX()
An icon index for this annotation.
void ShallowCopy(vtkDataObject *other) override
Make this annotation have the same properties and have the same selection of another annotation.
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
void DeepCopy(vtkDataObject *other) override
Make this annotation have the same properties and have a copy of the selection of another annotation.
~vtkAnnotation() override
static vtkInformationIntegerKey * HIDE()
Whether or not this annotation is visible.
static vtkInformationDoubleVectorKey * COLOR()
The color for this annotation.
vtkMTimeType GetMTime() override
Get the modified time of this object.
static vtkInformationDataObjectKey * DATA()
Associate a vtkDataObject with this annotation.
void Initialize() override
Initialize the annotation to an empty state.
static vtkAnnotation * GetData(vtkInformation *info)
Retrieve a vtkAnnotation stored inside an information object.
int GetDataObjectType() override
Returns VTK_ANNOTATION.
Definition: vtkAnnotation.h:58
virtual void SetSelection(vtkSelection *selection)
The selection to which this set of annotations will apply.
static vtkInformationDoubleKey * OPACITY()
The color for this annotation.
vtkSelection * Selection
static vtkInformationStringKey * LABEL()
The label for this annotation.
general representation of visualization data
a simple class to control print indentation
Definition: vtkIndent.h:113
Key for vtkDataObject values.
Key for double values in vtkInformation.
Key for integer values in vtkInformation.
Key for string values in vtkInformation.
Store zero or more vtkInformation instances.
Store vtkAlgorithm input/output information.
data object that represents a "selection" in VTK.
Definition: vtkSelection.h:163
@ info
Definition: vtkX3D.h:382
#define VTK_ANNOTATION
Definition: vtkType.h:121
vtkTypeUInt32 vtkMTimeType
Definition: vtkType.h:287