VTK  9.2.6
vtkLogoRepresentation.h
Go to the documentation of this file.
1/*=========================================================================
2
3 Program: Visualization Toolkit
4 Module: vtkLogoRepresentation.h
5
6 Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
7 All rights reserved.
8 See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
9
10 This software is distributed WITHOUT ANY WARRANTY; without even
11 the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
12 PURPOSE. See the above copyright notice for more information.
13
14=========================================================================*/
41#ifndef vtkLogoRepresentation_h
42#define vtkLogoRepresentation_h
43
45#include "vtkInteractionWidgetsModule.h" // For export macro
46
47class vtkImageData;
49class vtkTexture;
50class vtkPolyData;
51class vtkPoionts;
54class vtkProperty2D;
55
56class VTKINTERACTIONWIDGETS_EXPORT vtkLogoRepresentation : public vtkBorderRepresentation
57{
58public:
63
65
69 void PrintSelf(ostream& os, vtkIndent indent) override;
71
73
76 virtual void SetImage(vtkImageData* img);
77 vtkGetObjectMacro(Image, vtkImageData);
79
81
85 vtkGetObjectMacro(ImageProperty, vtkProperty2D);
87
91 void BuildRepresentation() override;
92
94
98 void GetActors2D(vtkPropCollection* pc) override;
102
103protected:
106
107 // data members
110
111 // Represent the image
117
118 // Helper methods
119 virtual void AdjustImageSize(double o[2], double borderSize[2], double imageSize[2]);
120
121private:
123 void operator=(const vtkLogoRepresentation&) = delete;
124};
125
126#endif
represent a vtkBorderWidget
topologically and geometrically regular array of data
image display properties
a simple class to control print indentation
Definition vtkIndent.h:49
represent the vtkLogoWidget
~vtkLogoRepresentation() override
int RenderOverlay(vtkViewport *) override
These methods are necessary to make this representation behave as a vtkProp.
void ReleaseGraphicsResources(vtkWindow *) override
These methods are necessary to make this representation behave as a vtkProp.
static vtkLogoRepresentation * New()
Instantiate this class.
vtkPolyDataMapper2D * TextureMapper
vtkTexturedActor2D * TextureActor
void BuildRepresentation() override
Satisfy the superclasses' API.
virtual void SetImage(vtkImageData *img)
Specify/retrieve the image to display in the balloon.
virtual void AdjustImageSize(double o[2], double borderSize[2], double imageSize[2])
void GetActors2D(vtkPropCollection *pc) override
These methods are necessary to make this representation behave as a vtkProp.
virtual void SetImageProperty(vtkProperty2D *p)
Set/get the image property (relevant only if an image is shown).
void PrintSelf(ostream &os, vtkIndent indent) override
Standard VTK class methods.
represent and manipulate 3D points
Definition vtkPoints.h:49
draw vtkPolyData onto the image plane
concrete dataset represents vertices, lines, polygons, and triangle strips
an ordered list of Props
represent surface properties of a 2D image
handles properties associated with a texture map
Definition vtkTexture.h:78
actor that draws 2D data with texture support
abstract specification for Viewports
Definition vtkViewport.h:65
window superclass for vtkRenderWindow
Definition vtkWindow.h:48