VTK
vtkLegendScaleActor.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkLegendScaleActor.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 =========================================================================*/
40 #ifndef vtkLegendScaleActor_h
41 #define vtkLegendScaleActor_h
42 
43 #include "vtkRenderingAnnotationModule.h" // For export macro
44 #include "vtkProp.h"
45 #include "vtkCoordinate.h" // For vtkViewportCoordinateMacro
46 
47 class vtkAxisActor2D;
48 class vtkTextProperty;
49 class vtkPolyData;
51 class vtkActor2D;
52 class vtkTextMapper;
53 class vtkPoints;
54 class vtkCoordinate;
55 
56 class VTKRENDERINGANNOTATION_EXPORT vtkLegendScaleActor : public vtkProp
57 {
58 public:
62  static vtkLegendScaleActor *New();
63 
65 
69  void PrintSelf(ostream& os, vtkIndent indent);
71 
73  {
74  DISTANCE=0,
75  XY_COORDINATES=1
76  };
77 
79 
85  vtkSetClampMacro(LabelMode,int,DISTANCE,XY_COORDINATES);
86  vtkGetMacro(LabelMode,int);
87  void SetLabelModeToDistance() {this->SetLabelMode(DISTANCE);}
88  void SetLabelModeToXYCoordinates() {this->SetLabelMode(XY_COORDINATES);}
90 
92 
96  vtkSetMacro(RightAxisVisibility,int);
97  vtkGetMacro(RightAxisVisibility,int);
98  vtkBooleanMacro(RightAxisVisibility,int);
99  vtkSetMacro(TopAxisVisibility,int);
100  vtkGetMacro(TopAxisVisibility,int);
101  vtkBooleanMacro(TopAxisVisibility,int);
102  vtkSetMacro(LeftAxisVisibility,int);
103  vtkGetMacro(LeftAxisVisibility,int);
104  vtkBooleanMacro(LeftAxisVisibility,int);
105  vtkSetMacro(BottomAxisVisibility,int);
106  vtkGetMacro(BottomAxisVisibility,int);
107  vtkBooleanMacro(BottomAxisVisibility,int);
109 
111 
115  vtkSetMacro(LegendVisibility,int);
116  vtkGetMacro(LegendVisibility,int);
117  vtkBooleanMacro(LegendVisibility,int);
119 
121 
124  void AllAxesOn();
125  void AllAxesOff();
127 
129 
132  void AllAnnotationsOn();
133  void AllAnnotationsOff();
135 
137 
142  vtkSetClampMacro(RightBorderOffset,int,5,VTK_INT_MAX);
143  vtkGetMacro(RightBorderOffset,int);
145 
147 
152  vtkSetClampMacro(TopBorderOffset,int,5,VTK_INT_MAX);
153  vtkGetMacro(TopBorderOffset,int);
155 
157 
162  vtkSetClampMacro(LeftBorderOffset,int,5,VTK_INT_MAX);
163  vtkGetMacro(LeftBorderOffset,int);
165 
167 
172  vtkSetClampMacro(BottomBorderOffset,int,5,VTK_INT_MAX);
173  vtkGetMacro(BottomBorderOffset,int);
175 
177 
181  vtkSetClampMacro(CornerOffsetFactor, double, 1.0, 10.0);
182  vtkGetMacro(CornerOffsetFactor, double);
184 
186 
189  vtkGetObjectMacro(LegendTitleProperty,vtkTextProperty);
190  vtkGetObjectMacro(LegendLabelProperty,vtkTextProperty);
192 
194 
199  vtkGetObjectMacro(RightAxis,vtkAxisActor2D);
200  vtkGetObjectMacro(TopAxis,vtkAxisActor2D);
201  vtkGetObjectMacro(LeftAxis,vtkAxisActor2D);
202  vtkGetObjectMacro(BottomAxis,vtkAxisActor2D);
204 
206 
209  virtual void BuildRepresentation(vtkViewport *viewport);
210  virtual void GetActors2D(vtkPropCollection*);
211  virtual void ReleaseGraphicsResources(vtkWindow*);
212  virtual int RenderOverlay(vtkViewport*);
213  virtual int RenderOpaqueGeometry(vtkViewport*);
215 
216 protected:
219 
226 
227  // The four axes around the borders of the renderer
232 
233  // Control the display of the axes
238 
239  // Support for the legend.
245  vtkTextMapper *LabelMappers[6];
246  vtkActor2D *LabelActors[6];
250 
252 
253 private:
254  vtkLegendScaleActor(const vtkLegendScaleActor&) VTK_DELETE_FUNCTION;
255  void operator=(const vtkLegendScaleActor&) VTK_DELETE_FUNCTION;
256 };
257 
258 #endif
abstract superclass for all actors, volumes and annotations
Definition: vtkProp.h:50
void PrintSelf(ostream &os, vtkIndent indent)
Methods invoked by print to print information about the object including superclasses.
abstract specification for Viewports
Definition: vtkViewport.h:47
virtual int RenderOpaqueGeometry(vtkViewport *)
WARNING: INTERNAL METHOD - NOT INTENDED FOR GENERAL USE DO NOT USE THESE METHODS OUTSIDE OF THE RENDE...
Definition: vtkProp.h:222
virtual int RenderOverlay(vtkViewport *)
Definition: vtkProp.h:228
#define VTK_INT_MAX
Definition: vtkType.h:153
vtkAxisActor2D * RightAxis
a actor that draws 2D data
Definition: vtkActor2D.h:45
record modification and/or execution time
Definition: vtkTimeStamp.h:35
Create an axis with tick marks and labels.
concrete dataset represents vertices, lines, polygons, and triangle strips
Definition: vtkPolyData.h:85
vtkPolyDataMapper2D * LegendMapper
2D text annotation
Definition: vtkTextMapper.h:53
annotate the render window with scale and distance information
a list of Props
virtual void ReleaseGraphicsResources(vtkWindow *)
WARNING: INTERNAL METHOD - NOT INTENDED FOR GENERAL USE Release any graphics resources that are being...
Definition: vtkProp.h:303
window superclass for vtkRenderWindow
Definition: vtkWindow.h:37
vtkAxisActor2D * TopAxis
a simple class to control print indentation
Definition: vtkIndent.h:39
vtkAxisActor2D * LeftAxis
void SetLabelModeToXYCoordinates()
Specify the mode for labeling the scale axes.
represent text properties.
perform coordinate transformation, and represent position, in a variety of vtk coordinate systems ...
Definition: vtkCoordinate.h:70
vtkSetMacro(IgnoreDriverBugs, bool)
When set known driver bugs are ignored during driver feature detection.
void SetLabelModeToDistance()
Specify the mode for labeling the scale axes.
virtual void GetActors2D(vtkPropCollection *)
Definition: vtkProp.h:62
vtkCoordinate * Coordinate
vtkAxisActor2D * BottomAxis
vtkTextProperty * LegendTitleProperty
vtkBooleanMacro(IgnoreDriverBugs, bool)
When set known driver bugs are ignored during driver feature detection.
static vtkObject * New()
Create an object with Debug turned off, modified time initialized to zero, and reference counting on...
draw vtkPolyData onto the image plane
represent and manipulate 3D points
Definition: vtkPoints.h:39
vtkTextProperty * LegendLabelProperty