VTK
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 
46 class vtkSelection;
47 
48 class VTKCOMMONDATAMODEL_EXPORT vtkAnnotation : public vtkDataObject
49 {
50 public:
51  vtkTypeMacro(vtkAnnotation, vtkDataObject);
52  void PrintSelf(ostream& os, vtkIndent indent) override;
53  static vtkAnnotation* New();
54 
56 
59  vtkGetObjectMacro(Selection, vtkSelection);
60  virtual void SetSelection(vtkSelection* selection);
62 
64 
68  static vtkAnnotation* GetData(vtkInformationVector* v, int i=0);
70 
74  static vtkInformationStringKey* LABEL();
75 
80  static vtkInformationDoubleVectorKey* COLOR();
81 
86  static vtkInformationDoubleKey* OPACITY();
87 
91  static vtkInformationIntegerKey* ICON_INDEX();
92 
97  static vtkInformationIntegerKey* ENABLE();
98 
102  static vtkInformationIntegerKey* HIDE();
103 
107  static vtkInformationDataObjectKey* DATA();
108 
112  void Initialize() override;
113 
118  void ShallowCopy(vtkDataObject* other) override;
119 
124  void DeepCopy(vtkDataObject* other) override;
125 
129  vtkMTimeType GetMTime() override;
130 
131 protected:
132  vtkAnnotation();
133  ~vtkAnnotation() override;
134 
136 
137 private:
138  vtkAnnotation(const vtkAnnotation&) = delete;
139  void operator=(const vtkAnnotation&) = delete;
140 
141 };
142 
143 #endif
144 
vtkInformationStringKey
Key for string values in vtkInformation.
Definition: vtkInformationStringKey.h:36
vtkDataObject::Initialize
virtual void Initialize()
Restore data object to initial state,.
vtkDataObject::PrintSelf
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
vtkInformationVector
Store zero or more vtkInformation instances.
Definition: vtkInformationVector.h:41
vtkInformationDataObjectKey
Key for vtkDataObject values.
Definition: vtkInformationDataObjectKey.h:33
vtkSelection
data object that represents a "selection" in VTK.
Definition: vtkSelection.h:63
vtkInformationDoubleKey
Key for double values in vtkInformation.
Definition: vtkInformationDoubleKey.h:34
vtkDataObject::DeepCopy
virtual void DeepCopy(vtkDataObject *src)
vtkDataObject::GetMTime
vtkMTimeType GetMTime() override
Data objects are composite objects and need to check each part for MTime.
vtkInformationIntegerKey
Key for integer values in vtkInformation.
Definition: vtkInformationIntegerKey.h:34
vtkIndent
a simple class to control print indentation
Definition: vtkIndent.h:39
vtkAnnotation
Stores a collection of annotation artifacts.
Definition: vtkAnnotation.h:48
vtkInformation
Store vtkAlgorithm input/output information.
Definition: vtkInformation.h:86
vtkAnnotation::Selection
vtkSelection * Selection
Definition: vtkAnnotation.h:135
vtkX3D::info
Definition: vtkX3D.h:376
vtkDataObject.h
vtkInformationDoubleVectorKey
Key for double vector values.
Definition: vtkInformationDoubleVectorKey.h:34
vtkInformationIntegerVectorKey
Key for integer vector values.
Definition: vtkInformationIntegerVectorKey.h:34
vtkDataObject
general representation of visualization data
Definition: vtkDataObject.h:64
vtkDataObject::ShallowCopy
virtual void ShallowCopy(vtkDataObject *src)
Shallow and Deep copy.
vtkDataObject::GetData
static vtkDataObject * GetData(vtkInformation *info)
Retrieve an instance of this class from an information object.
vtkDataObject::New
static vtkDataObject * New()
vtkMTimeType
vtkTypeUInt32 vtkMTimeType
Definition: vtkType.h:302