VTK  9.3.0
vtkAnnotationLink.h
Go to the documentation of this file.
1 // SPDX-FileCopyrightText: Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
2 // SPDX-License-Identifier: BSD-3-Clause
50 #ifndef vtkAnnotationLink_h
51 #define vtkAnnotationLink_h
52 
54 #include "vtkFiltersGeneralModule.h" // For export macro
55 
56 VTK_ABI_NAMESPACE_BEGIN
57 class vtkCommand;
59 class vtkInformation;
61 class vtkSelection;
62 class vtkTable;
63 
64 class VTKFILTERSGENERAL_EXPORT vtkAnnotationLink : public vtkAnnotationLayersAlgorithm
65 {
66 public:
69  void PrintSelf(ostream& os, vtkIndent indent) override;
70 
72 
75  vtkGetObjectMacro(AnnotationLayers, vtkAnnotationLayers);
78 
80 
83  virtual void SetCurrentSelection(vtkSelection* sel);
86 
88 
91  void AddDomainMap(vtkTable* map);
97 
101  vtkMTimeType GetMTime() override;
102 
103 protected:
105  ~vtkAnnotationLink() override;
106 
110  virtual void ProcessEvents(vtkObject* caller, unsigned long eventId, void* callData);
111 
116 
121 
127 
132  vtkInformationVector* outVector) override;
133 
138 
143 
144 private:
145  vtkAnnotationLink(const vtkAnnotationLink&) = delete;
146  void operator=(const vtkAnnotationLink&) = delete;
147 
148  class Command;
149  friend class Command;
150  Command* Observer;
151 };
152 
153 VTK_ABI_NAMESPACE_END
154 #endif
Superclass for algorithms that produce only vtkAnnotationLayers as output.
Stores a ordered collection of annotation sets.
superclass for callback/observer methods
Definition: vtkCommand.h:384
maintain an unordered list of data objects
a simple class to control print indentation
Definition: vtkIndent.h:38
Store zero or more vtkInformation instances.
Store vtkAlgorithm input/output information.
abstract base class for most VTK objects
Definition: vtkObject.h:61
data object that represents a "selection" in VTK.
Definition: vtkSelection.h:59
A table, which contains similar-typed columns of data.
Definition: vtkTable.h:68
@ info
Definition: vtkX3D.h:376
vtkTypeUInt32 vtkMTimeType
Definition: vtkType.h:270