VTK
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=========================================================================*/
32#ifndef vtkLogoRepresentation_h
33#define vtkLogoRepresentation_h
34
35#include "vtkInteractionWidgetsModule.h" // For export macro
37
38class vtkImageData;
40class vtkTexture;
41class vtkPolyData;
42class vtkPoionts;
45class vtkProperty2D;
46
47
48class VTKINTERACTIONWIDGETS_EXPORT vtkLogoRepresentation : public vtkBorderRepresentation
49{
50public:
55
57
61 void PrintSelf(ostream& os, vtkIndent indent);
63
65
68 virtual void SetImage(vtkImageData *img);
69 vtkGetObjectMacro(Image,vtkImageData);
71
73
77 vtkGetObjectMacro(ImageProperty,vtkProperty2D);
79
83 virtual void BuildRepresentation();
84
86
90 virtual void GetActors2D(vtkPropCollection *pc);
94
95protected:
98
99 // data members
102
103 // Represent the image
109
110 // Helper methods
111 virtual void AdjustImageSize(double o[2], double borderSize[2], double imageSize[2]);
112
113private:
114 vtkLogoRepresentation(const vtkLogoRepresentation&) VTK_DELETE_FUNCTION;
115 void operator=(const vtkLogoRepresentation&) VTK_DELETE_FUNCTION;
116};
117
118#endif
represent a vtkBorderWidget
topologically and geometrically regular array of data
Definition: vtkImageData.h:46
image display properties
a simple class to control print indentation
Definition: vtkIndent.h:40
represent the vtkLogoWidget
void PrintSelf(ostream &os, vtkIndent indent)
Methods invoked by print to print information about the object including superclasses.
virtual int RenderOverlay(vtkViewport *)
static vtkLogoRepresentation * New()
Instantiate this class.
vtkPolyDataMapper2D * TextureMapper
vtkTexturedActor2D * TextureActor
virtual void GetActors2D(vtkPropCollection *pc)
These methods are necessary to make this representation behave as a vtkProp.
virtual void ReleaseGraphicsResources(vtkWindow *)
WARNING: INTERNAL METHOD - NOT INTENDED FOR GENERAL USE Release any graphics resources that are being...
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])
virtual void BuildRepresentation()
Satisfy the superclasses' API.
virtual void SetImageProperty(vtkProperty2D *p)
Set/get the image property (relevant only if an image is shown).
represent and manipulate 3D points
Definition: vtkPoints.h:40
draw vtkPolyData onto the image plane
concrete dataset represents vertices, lines, polygons, and triangle strips
Definition: vtkPolyData.h:86
a list of Props
represent surface properties of a 2D image
Definition: vtkProperty2D.h:41
handles properties associated with a texture map
Definition: vtkTexture.h:71
actor that draws 2D data with texture support
abstract specification for Viewports
Definition: vtkViewport.h:48
window superclass for vtkRenderWindow
Definition: vtkWindow.h:35