VTK  9.6.20260514
vtkLegendBoxActor.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
107
108#ifndef vtkLegendBoxActor_h
109#define vtkLegendBoxActor_h
110
111#include "vtkActor2D.h"
112#include "vtkNew.h" // for vtkNew
113#include "vtkRenderingAnnotationModule.h" // For export macro
114#include "vtkWrappingHints.h" // For VTK_MARSHALAUTO
115
116VTK_ABI_NAMESPACE_BEGIN
117class vtkActor;
118class vtkDoubleArray;
119class vtkImageData;
121class vtkPolyData;
124class vtkPlaneSource;
125class vtkTextMapper;
126class vtkTextProperty;
128class vtkTransform;
130class vtkProperty2D;
131
132class VTKRENDERINGANNOTATION_EXPORT VTK_MARSHALAUTO vtkLegendBoxActor : public vtkActor2D
133{
134public:
136 void PrintSelf(ostream& os, vtkIndent indent) override;
137
143
147 void SetNumberOfEntries(int num);
148 int GetNumberOfEntries() { return this->NumberOfEntries; }
149
151
161 void SetEntry(int i, vtkPolyData* symbol, const char* string, double color[3]);
162 void SetEntry(int i, vtkImageData* symbol, const char* string, double color[3]);
164 int i, vtkPolyData* symbol, vtkImageData* icon, const char* string, double color[3]);
166
167 void SetEntrySymbol(int i, vtkPolyData* symbol);
168 void SetEntryIcon(int i, vtkImageData* icon);
169 void SetEntryString(int i, const char* string);
170 void SetEntryColor(int i, double color[3]);
171 void SetEntryColor(int i, double r, double g, double b);
172
175 const char* GetEntryString(int i);
176 double* GetEntryColor(int i) VTK_SIZEHINT(3);
177
183
189
191
195 vtkSetMacro(Border, vtkTypeBool);
196 vtkGetMacro(Border, vtkTypeBool);
197 vtkBooleanMacro(Border, vtkTypeBool);
199
201
209 vtkSetMacro(LockBorder, vtkTypeBool);
210 vtkGetMacro(LockBorder, vtkTypeBool);
211 vtkBooleanMacro(LockBorder, vtkTypeBool);
213
215
219 vtkSetMacro(Box, vtkTypeBool);
220 vtkGetMacro(Box, vtkTypeBool);
221 vtkBooleanMacro(Box, vtkTypeBool);
223
227 vtkProperty2D* GetBoxProperty() { return this->BoxActor->GetProperty(); }
228
230
234 vtkSetClampMacro(Padding, int, 0, 50);
235 vtkGetMacro(Padding, int);
237
239
246 vtkBooleanMacro(ScalarVisibility, vtkTypeBool);
248
250
255 vtkBooleanMacro(UseBackground, vtkTypeBool);
257
259
263 vtkSetVector3Macro(BackgroundColor, double);
264 vtkGetVector3Macro(BackgroundColor, double);
266
268
272 vtkSetClampMacro(BackgroundOpacity, double, 0.0, 1.0);
273 vtkGetMacro(BackgroundOpacity, double);
275
280 void ShallowCopy(vtkProp* prop) override;
281
290
292
297 int RenderOpaqueGeometry(vtkViewport* viewport) override;
299 int RenderOverlay(vtkViewport* viewport) override;
301
306
307protected:
310
312
314
321
323
331
332 // Background plane.
337
338 // May use texture.
341
342 // Used to control whether the stuff is recomputed
346
347private:
348 vtkLegendBoxActor(const vtkLegendBoxActor&) = delete;
349 void operator=(const vtkLegendBoxActor&) = delete;
350
351 std::vector<std::unique_ptr<vtkLegendBoxEntryInternal>> Entries;
352};
353
354VTK_ABI_NAMESPACE_END
355#endif
represents an object (geometry & properties) in a rendered scene
Definition vtkActor.h:151
dynamic, self-adjusting array of double
topologically and geometrically regular array of data
a simple class to control print indentation
Definition vtkIndent.h:108
int RenderOpaqueGeometry(vtkViewport *viewport) override
WARNING: INTERNAL METHOD - NOT INTENDED FOR GENERAL USE DO NOT USE THIS METHOD OUTSIDE OF THE RENDERI...
void SetNumberOfEntries(int num)
Specify the number of entries in the legend box.
int RenderOverlay(vtkViewport *viewport) override
WARNING: INTERNAL METHOD - NOT INTENDED FOR GENERAL USE DO NOT USE THIS METHOD OUTSIDE OF THE RENDERI...
vtkPolyData * BoxPolyData
vtkTexturedActor2D * BackgroundActor
vtkTypeBool HasTranslucentPolygonalGeometry() override
Does this prop have some translucent polygonal geometry?
vtkTextProperty * EntryTextProperty
int RenderTranslucentPolygonalGeometry(vtkViewport *) override
WARNING: INTERNAL METHOD - NOT INTENDED FOR GENERAL USE DO NOT USE THIS METHOD OUTSIDE OF THE RENDERI...
vtkPlaneSource * Background
void SetEntry(int i, vtkImageData *symbol, const char *string, double color[3])
Add an entry to the legend box.
void SetEntry(int i, vtkPolyData *symbol, vtkImageData *icon, const char *string, double color[3])
Add an entry to the legend box.
vtkPolyDataMapper2D * BorderMapper
void ReleaseGraphicsResources(vtkWindow *) override
WARNING: INTERNAL METHOD - NOT INTENDED FOR GENERAL USE DO NOT USE THIS METHOD OUTSIDE OF THE RENDERI...
vtkProperty2D * GetBoxProperty()
Get the box vtkProperty2D.
vtkPolyData createTexturedPlane()
void SetEntryColor(int i, double color[3])
void ShallowCopy(vtkProp *prop) override
Shallow copy of this scaled text actor.
double * GetEntryColor(int i)
vtkImageData * GetEntryIcon(int i)
vtkPolyDataMapper2D * BackgroundMapper
void SetEntrySymbol(int i, vtkPolyData *symbol)
vtkTypeBool ScalarVisibility
~vtkLegendBoxActor() override
virtual void SetEntryTextProperty(vtkTextProperty *p)
Set/Get the text property.
void SetEntry(int i, vtkPolyData *symbol, const char *string, double color[3])
Add an entry to the legend box.
void InitializeEntries()
vtkPolyData * BorderPolyData
void SetEntryColor(int i, double r, double g, double b)
static vtkLegendBoxActor * New()
Instantiate object with a rectangle in normaled view coordinates of (0.2,0.85, 0.8,...
vtkPolyDataMapper2D * BoxMapper
void SetEntryString(int i, const char *string)
vtkPolyData * GetEntrySymbol(int i)
const char * GetEntryString(int i)
void SetEntryIcon(int i, vtkImageData *icon)
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
A single entry to use inside vtkLegendBoxActor.
create an array of quadrilaterals located in a plane
draw vtkPolyData onto the image plane
map vtkPolyData to graphics primitives
concrete dataset represents vertices, lines, polygons, and triangle strips
represent surface properties of a 2D image
2D text annotation
represent text properties.
actor that draws 2D data with texture support
record modification and/or execution time
transform points and associated normals and vectors
describes linear transformations via a 4x4 matrix
abstract specification for Viewports
Definition vtkViewport.h:66
window superclass for vtkRenderWindow
Definition vtkWindow.h:61
int vtkTypeBool
Definition vtkABI.h:64
#define VTK_SIZEHINT(...)
#define VTK_MARSHALAUTO