VTK
vtkOpenGLContextDevice2D.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkOpenGLContextDevice2D.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 =========================================================================*/
15 
29 #ifndef vtkOpenGLContextDevice2D_h
30 #define vtkOpenGLContextDevice2D_h
31 
32 #include "vtkRenderingContextOpenGL2Module.h" // For export macro
33 #include "vtkContextDevice2D.h"
34 
35 #include <vector> // STL Header
36 #include <list> // for std::list
37 
38 class vtkMatrix4x4;
40 class vtkOpenGLHelper;
42 class vtkRenderer;
43 class vtkShaderProgram;
44 class vtkStringToImage;
45 class vtkTransform;
46 class vtkViewport;
47 class vtkWindow;
48 
49 class VTKRENDERINGCONTEXTOPENGL2_EXPORT vtkOpenGLContextDevice2D : public vtkContextDevice2D
50 {
51 public:
53  virtual void PrintSelf(ostream &os, vtkIndent indent);
54 
56  static vtkOpenGLContextDevice2D *New();
57 
59 
62  virtual void DrawPoly(float *f, int n, unsigned char *colors = 0,
63  int nc_comps = 0);
65 
67 
70  virtual void DrawLines(float *f, int n, unsigned char *colors = 0,
71  int nc_comps = 0);
73 
75 
78  virtual void DrawPoints(float *points, int n, unsigned char* colors = 0,
79  int nc_comps = 0);
81 
83 
88  virtual void DrawPointSprites(vtkImageData *sprite, float *points, int n,
89  unsigned char* colors = 0, int nc_comps = 0);
91 
93 
99  virtual void DrawMarkers(int shape, bool highlight, float *points, int n,
100  unsigned char *colors = 0, int nc_comps = 0);
102 
104 
108  vtkSetMacro(MaximumMarkerCacheSize, int)
109  vtkGetMacro(MaximumMarkerCacheSize, int)
111 
113  virtual void DrawQuad(float *points, int n);
114 
116  virtual void DrawQuadStrip(float *points, int n);
117 
119  virtual void DrawPolygon(float *, int);
120 
122 
128  virtual void DrawEllipseWedge(float x, float y, float outRx, float outRy,
129  float inRx, float inRy, float startAngle,
130  float stopAngle);
132 
134 
137  virtual void DrawEllipticArc(float x, float y, float rX, float rY,
138  float startAngle, float stopAngle);
140 
141 
143  virtual void DrawString(float *point, const vtkStdString &string);
144 
146 
153  virtual void ComputeStringBounds(const vtkStdString &string,
154  float bounds[4]);
156 
158  virtual void DrawString(float *point, const vtkUnicodeString &string);
159 
161 
168  virtual void ComputeStringBounds(const vtkUnicodeString &string,
169  float bounds[4]);
171 
175  virtual void DrawMathTextString(float point[2], const vtkStdString &string);
176 
179  virtual void DrawImage(float p[2], float scale, vtkImageData *image);
180 
184  void DrawImage(const vtkRectf& pos, vtkImageData *image);
185 
187  virtual void SetColor4(unsigned char color[4]);
188 
190  virtual void SetColor(unsigned char color[3]);
191 
193  virtual void SetTexture(vtkImageData* image, int properties = 0);
194 
196  virtual void SetPointSize(float size);
197 
199  virtual void SetLineWidth(float width);
200 
202  virtual void SetLineType(int type);
203 
205  virtual void MultiplyMatrix(vtkMatrix3x3 *m);
206 
208  virtual void SetMatrix(vtkMatrix3x3 *m);
209 
211  virtual void GetMatrix(vtkMatrix3x3 *m);
212 
214  virtual void PushMatrix();
215 
217  virtual void PopMatrix();
218 
221  virtual void SetClipping(int *x);
222 
224  virtual void EnableClipping(bool enable);
225 
227  virtual void Begin(vtkViewport* viewport);
228 
230  virtual void End();
231 
235  virtual void BufferIdModeBegin(vtkAbstractContextBufferId *bufferId);
236 
241  virtual void BufferIdModeEnd();
242 
246  bool SetStringRendererToFreeType();
247 
250  bool SetStringRendererToQt();
251 
253  bool HasGLSL();
254 
256 
258  vtkGetObjectMacro(RenderWindow, vtkOpenGLRenderWindow);
260 
264  virtual void ReleaseGraphicsResources(vtkWindow *window);
265 
267 
268  vtkMatrix4x4 *GetProjectionMatrix();
269  vtkMatrix4x4 *GetModelMatrix();
271 
272 //BTX
273 protected:
275  virtual ~vtkOpenGLContextDevice2D();
276 
278 
282  int GetNumberOfArcIterations(float rX,
283  float rY,
284  float startAngle,
285  float stopAngle);
287 
289  int Geometry[2];
290 
292  vtkRenderer *Renderer;
293 
295  vtkStringToImage *TextRenderer;
296 
298  bool InRender;
299 
301 
302  class Private;
303  Private *Storage;
305 
307  vtkOpenGLRenderWindow* RenderWindow;
308 
309  vtkOpenGLHelper *VCBO; // vertex + color
310  void ReadyVCBOProgram();
311  vtkOpenGLHelper *VBO; // vertex
312  void ReadyVBOProgram();
313  vtkOpenGLHelper *VTBO; // vertex + tcoord
314  void ReadyVTBOProgram();
315  vtkOpenGLHelper *SCBO; // sprite + color
316  void ReadySCBOProgram();
317  vtkOpenGLHelper *SBO; // sprite
318  void ReadySBOProgram();
319 
320  void SetMatrices(vtkShaderProgram *prog);
321  void BuildVBO(vtkOpenGLHelper *cbo,
322  float *v, int nv,
323  unsigned char *coolors, int nc,
324  float *tcoords);
325  void CoreDrawTriangles(std::vector<float> &tverts);
326 
327 private:
328  vtkOpenGLContextDevice2D(const vtkOpenGLContextDevice2D &); // Not implemented.
329  void operator=(const vtkOpenGLContextDevice2D &); // Not implemented.
330 
331  void AlignText(double orientation, float width, float height, float *p);
332 
338  vtkImageData *GetMarker(int shape, int size, bool highlight);
339 
340  class vtkMarkerCacheObject
341  {
342  public:
343  vtkTypeUInt64 Key;
344  vtkImageData *Value;
345  bool operator==(vtkTypeUInt64 key)
346  {
347  return this->Key == key;
348  }
349  };
350 
351  vtkTransform *ProjectionMatrix;
352  vtkTransform *ModelMatrix;
353 
354  std::list<vtkMarkerCacheObject> MarkerCache;
355  int MaximumMarkerCacheSize;
356 
360  vtkImageData * GenerateMarker(int shape, int size, bool highlight);
361 
362 //ETX
363 };
364 
365 #endif //vtkOpenGLContextDevice2D_h
OpenGL rendering window.
Wrapper around std::string to keep symbols short.
Definition: vtkStdString.h:46
represent and manipulate 4x4 transformation matrices
Definition: vtkMatrix4x4.h:38
abstract specification for Viewports
Definition: vtkViewport.h:46
Class for drawing 2D primitives using OpenGL 1.1+.
abstract specification for renderers
Definition: vtkRenderer.h:63
static vtkContextDevice2D * New()
describes linear transformations via a 4x4 matrix
Definition: vtkTransform.h:59
virtual void DrawPoints(float *points, int n, unsigned char *colors=0, int nc_comps=0)=0
virtual void DrawMarkers(int shape, bool highlight, float *points, int n, unsigned char *colors=0, int nc_comps=0)
uses Qt to render the supplied text to an image.
window superclass for vtkRenderWindow
Definition: vtkWindow.h:36
virtual void DrawPoly(float *points, int n, unsigned char *colors=0, int nc_comps=0)=0
a simple class to control print indentation
Definition: vtkIndent.h:38
topologically and geometrically regular array of data
Definition: vtkImageData.h:44
Abstract class for drawing 2D primitives.
Interface class for querying and using OpenGL extensions.
vtkWeakPointer< vtkRenderWindow > RenderWindow
2D array of ids, used for picking.
virtual void PrintSelf(ostream &os, vtkIndent indent)
VTKCOMMONCORE_EXPORT bool operator==(const vtkUnicodeString &lhs, const vtkUnicodeString &rhs)
represent and manipulate 3x3 transformation matrices
Definition: vtkMatrix3x3.h:35
virtual void DrawLines(float *f, int n, unsigned char *colors=0, int nc_comps=0)=0
virtual void DrawPointSprites(vtkImageData *sprite, float *points, int n, unsigned char *colors=0, int nc_comps=0)=0
String class that stores Unicode text.
The ShaderProgram uses one or more Shader objects.