|
virtual vtkTypeBool | IsA (const char *type) |
| Return 1 if this class is the same type of (or a subclass of) the named class.
|
|
vtkOpenGLContextDevice2D * | NewInstance () const |
|
void | PrintSelf (ostream &os, vtkIndent indent) override |
| Methods invoked by print to print information about the object including superclasses.
|
|
void | DrawPoly (float *f, int n, unsigned char *colors=nullptr, int nc_comps=0) override |
| Draw a poly line using the points - fastest code path due to memory layout of the coordinates.
|
|
void | DrawLines (float *f, int n, unsigned char *colors=nullptr, int nc_comps=0) override |
| Draw lines using the points - memory layout is as follows: l1p1,l1p2,l2p1,l2p2... The lines will be colored by colors array which has nc_comps components.
|
|
void | DrawPoints (float *points, int n, unsigned char *colors=nullptr, int nc_comps=0) override |
| Draw a series of points - fastest code path due to memory layout of the coordinates.
|
|
void | DrawPointSprites (vtkImageData *sprite, float *points, int n, unsigned char *colors=nullptr, int nc_comps=0) override |
| Draw a series of point sprites, images centred at the points supplied.
|
|
void | DrawMarkers (int shape, bool highlight, float *points, int n, unsigned char *colors=nullptr, int nc_comps=0) override |
| Draw a series of markers centered at the points supplied.
|
|
void | DrawQuad (float *points, int n) override |
| Draws a rectangle.
|
|
void | DrawQuadStrip (float *points, int n) override |
| Draws a rectangle.
|
|
void | DrawPolygon (float *, int) override |
| Draw a polygon using the specified number of points.
|
|
void | DrawColoredPolygon (float *points, int numPoints, unsigned char *colors=nullptr, int nc_comps=0) override |
| Draw a polygon using the specified number of points.
|
|
void | DrawEllipseWedge (float x, float y, float outRx, float outRy, float inRx, float inRy, float startAngle, float stopAngle) override |
| Draw an elliptic wedge with center at x, y, outer radii outRx, outRy, inner radii inRx, inRy between angles startAngle and stopAngle (expressed in degrees).
|
|
void | DrawEllipticArc (float x, float y, float rX, float rY, float startAngle, float stopAngle) override |
| Draw an elliptic arc with center at x,y with radii rX and rY between angles startAngle and stopAngle (expressed in degrees).
|
|
void | DrawString (float *point, const vtkStdString &string) override |
| Draw some text to the screen!
|
|
void | ComputeStringBounds (const vtkStdString &string, float bounds[4]) override |
| Compute the bounds of the supplied string.
|
|
void | DrawString (float *point, const vtkUnicodeString &string) override |
| Draw some text to the screen.
|
|
void | ComputeStringBounds (const vtkUnicodeString &string, float bounds[4]) override |
| Compute the bounds of the supplied string.
|
|
void | ComputeJustifiedStringBounds (const char *string, float bounds[4]) override |
| Compute the bounds of the supplied string while taking into account the justification of the currently applied text property.
|
|
void | DrawMathTextString (float point[2], const vtkStdString &string) override |
| Draw text using MathText markup for mathematical equations.
|
|
void | DrawImage (float p[2], float scale, vtkImageData *image) override |
| Draw the supplied image at the given x, y (p[0], p[1]) (bottom corner), scaled by scale (1.0 would match the image).
|
|
void | DrawImage (const vtkRectf &pos, vtkImageData *image) override |
| Draw the supplied image at the given position.
|
|
void | DrawPolyData (float p[2], float scale, vtkPolyData *polyData, vtkUnsignedCharArray *colors, int scalarMode) override |
| Draw the supplied PolyData at the given x, y (p[0], p[1]) (bottom corner), scaled by scale (1.0 would match the actual dataset).
|
|
void | SetColor4 (unsigned char color[4]) override |
| Set the color for the device using unsigned char of length 4, RGBA.
|
|
virtual void | SetColor (unsigned char color[3]) |
| Set the color for the device using unsigned char of length 3, RGB.
|
|
void | SetTexture (vtkImageData *image, int properties=0) override |
| Set the texture for the device, it is used to fill the polygons.
|
|
void | SetPointSize (float size) override |
| Set the point size for glyphs/sprites.
|
|
void | SetLineWidth (float width) override |
| Set the line width for glyphs/sprites.
|
|
void | SetLineType (int type) override |
| Set the line type type (using anonymous enum in vtkPen).
|
|
void | MultiplyMatrix (vtkMatrix3x3 *m) override |
| Multiply the current model view matrix by the supplied one.
|
|
void | SetMatrix (vtkMatrix3x3 *m) override |
| Set the model view matrix for the display.
|
|
void | GetMatrix (vtkMatrix3x3 *m) override |
| Set the model view matrix for the display.
|
|
void | PushMatrix () override |
| Push the current matrix onto the stack.
|
|
void | PopMatrix () override |
| Pop the current matrix off of the stack.
|
|
void | SetClipping (int *x) override |
| Supply an int array of length 4 with x1, y1, width, height specifying clipping region for the device in pixels.
|
|
void | EnableClipping (bool enable) override |
| Disable clipping of the display.
|
|
void | Begin (vtkViewport *viewport) override |
| Begin drawing, pass in the viewport to set up the view.
|
|
void | End () override |
| End drawing, clean up the view.
|
|
void | BufferIdModeBegin (vtkAbstractContextBufferId *bufferId) override |
| Start BufferId creation Mode.
|
|
void | BufferIdModeEnd () override |
| Finalize BufferId creation Mode.
|
|
bool | SetStringRendererToFreeType () |
| Force the use of the freetype based render strategy.
|
|
bool | SetStringRendererToQt () |
| Force the use of the Qt based string render strategy.
|
|
bool | HasGLSL () |
| Check whether the current context device has support for GLSL.
|
|
virtual void | ReleaseGraphicsResources (vtkWindow *window) |
| Release any graphics resources that are being consumed by this device.
|
|
|
virtual void | SetMaximumMarkerCacheSize (int) |
| Adjust the size of the MarkerCache.
|
|
virtual int | GetMaximumMarkerCacheSize () |
| Adjust the size of the MarkerCache.
|
|
|
virtual vtkOpenGLRenderWindow * | GetRenderWindow () |
| Get the active RenderWindow of the device.
|
|
|
vtkMatrix4x4 * | GetProjectionMatrix () |
| Get the projection matrix this is needed.
|
|
vtkMatrix4x4 * | GetModelMatrix () |
| Get the projection matrix this is needed.
|
|
virtual vtkTypeBool | IsA (const char *type) |
| Return 1 if this class is the same type of (or a subclass of) the named class.
|
|
vtkContextDevice2D * | NewInstance () const |
|
void | PrintSelf (ostream &os, vtkIndent indent) override |
| Methods invoked by print to print information about the object including superclasses.
|
|
virtual void | DrawPoly (float *points, int n, unsigned char *colors=nullptr, int nc_comps=0)=0 |
| Draw a poly line using the points - fastest code path due to memory layout of the coordinates.
|
|
virtual void | DrawLines (float *f, int n, unsigned char *colors=nullptr, int nc_comps=0)=0 |
| Draw lines using the points - memory layout is as follows: l1p1,l1p2,l2p1,l2p2... The lines will be colored by colors array which has nc_comps components (defining a single color).
|
|
virtual void | DrawPoints (float *points, int n, unsigned char *colors=nullptr, int nc_comps=0)=0 |
| Draw a series of points - fastest code path due to memory layout of the coordinates.
|
|
virtual void | DrawPointSprites (vtkImageData *sprite, float *points, int n, unsigned char *colors=nullptr, int nc_comps=0)=0 |
| Draw a series of point sprites, images centred at the points supplied.
|
|
virtual void | DrawMarkers (int shape, bool highlight, float *points, int n, unsigned char *colors=nullptr, int nc_comps=0) |
| Draw a series of markers centered at the points supplied.
|
|
virtual void | DrawQuad (float *, int) |
| Draw a quad using the specified number of points.
|
|
virtual void | DrawQuadStrip (float *, int) |
| Draw a quad using the specified number of points.
|
|
virtual void | DrawEllipseWedge (float x, float y, float outRx, float outRy, float inRx, float inRy, float startAngle, float stopAngle)=0 |
| Draw an elliptic wedge with center at x, y, outer radii outRx, outRy, inner radii inRx, inRy between angles startAngle and stopAngle (expressed in degrees).
|
|
virtual void | DrawEllipticArc (float x, float y, float rX, float rY, float startAngle, float stopAngle)=0 |
| Draw an elliptic arc with center at x,y with radii rX and rY between angles startAngle and stopAngle (expressed in degrees).
|
|
virtual void | DrawString (float *point, const vtkStdString &string)=0 |
| Draw some text to the screen.
|
|
virtual void | ComputeStringBounds (const vtkStdString &string, float bounds[4])=0 |
| Compute the bounds of the supplied string.
|
|
virtual void | DrawString (float *point, const vtkUnicodeString &string)=0 |
| Draw some text to the screen.
|
|
virtual void | ComputeStringBounds (const vtkUnicodeString &string, float bounds[4])=0 |
| Compute the bounds of the supplied string.
|
|
virtual void | ComputeJustifiedStringBounds (const char *string, float bounds[4])=0 |
| Compute the bounds of the supplied string while taking into account the justification of the currently applied text property.
|
|
virtual void | DrawMathTextString (float *point, const vtkStdString &string)=0 |
| Draw text using MathText markup for mathematical equations.
|
|
virtual bool | MathTextIsSupported () |
| Return true if MathText rendering available on this device.
|
|
virtual void | DrawImage (float p[2], float scale, vtkImageData *image)=0 |
| Draw the supplied image at the given x, y (p[0], p[1]) (bottom corner), scaled by scale (1.0 would match the image).
|
|
virtual void | DrawImage (const vtkRectf &pos, vtkImageData *image)=0 |
| Draw the supplied image at the given position.
|
|
virtual void | DrawPolyData (float p[2], float scale, vtkPolyData *polyData, vtkUnsignedCharArray *colors, int scalarMode) |
| Draw the supplied PolyData at the given x, y (p[0], p[1]) (bottom corner), scaled by scale (1.0 would match the actual dataset).
|
|
virtual void | ApplyPen (vtkPen *pen) |
| Apply the supplied pen which controls the outlines of shapes, as well as lines, points and related primitives.
|
|
virtual void | ApplyBrush (vtkBrush *brush) |
| Apply the supplied brush which controls the outlines of shapes, as well as lines, points and related primitives.
|
|
virtual void | ApplyTextProp (vtkTextProperty *prop) |
| Apply the supplied text property which controls how text is rendered.
|
|
virtual void | SetColor4 (unsigned char color[4])=0 |
| Set the color for the device using unsigned char of length 4, RGBA.
|
|
virtual void | SetTexture (vtkImageData *image, int properties)=0 |
| Set the texture for the device, it is used to fill the polygons.
|
|
virtual void | SetPointSize (float size)=0 |
| Set the point size for glyphs/sprites.
|
|
virtual void | SetLineWidth (float width)=0 |
| Set the line width.
|
|
virtual void | SetLineType (int type)=0 |
| Set the line type type (using anonymous enum in vtkPen).
|
|
virtual int | GetWidth () |
| Get the width of the device in pixels.
|
|
virtual int | GetHeight () |
| Get the width of the device in pixels.
|
|
virtual void | SetMatrix (vtkMatrix3x3 *m)=0 |
| Set the model view matrix for the display.
|
|
virtual void | GetMatrix (vtkMatrix3x3 *m)=0 |
| Set the model view matrix for the display.
|
|
virtual void | MultiplyMatrix (vtkMatrix3x3 *m)=0 |
| Multiply the current model view matrix by the supplied one.
|
|
virtual void | PushMatrix ()=0 |
| Push the current matrix onto the stack.
|
|
virtual void | PopMatrix ()=0 |
| Pop the current matrix off of the stack.
|
|
virtual void | SetClipping (int *x)=0 |
| Supply an int array of length 4 with x1, y1, width, height specifying clipping region for the device in pixels.
|
|
virtual void | DisableClipping () |
| Disable clipping of the display.
|
|
virtual void | EnableClipping (bool enable)=0 |
| Enable or disable the clipping of the scene.
|
|
virtual void | Begin (vtkViewport *) |
| Begin drawing, pass in the viewport to set up the view.
|
|
virtual void | End () |
| End drawing, clean up the view.
|
|
virtual bool | GetBufferIdMode () const |
| Tell if the device context is in BufferId creation mode.
|
|
virtual void | BufferIdModeBegin (vtkAbstractContextBufferId *bufferId) |
| Start BufferId creation Mode.
|
|
virtual void | BufferIdModeEnd () |
| Finalize BufferId creation Mode.
|
|
virtual void | SetViewportSize (const vtkVector2i &size) |
|
virtual vtkVector2i | GetViewportSize () |
|
virtual void | SetViewportRect (const vtkRecti &rect) |
|
virtual vtkRecti | GetViewportRect () |
|
virtual vtkPen * | GetPen () |
| Get the pen which controls the outlines of shapes, as well as lines, points and related primitives.
|
|
virtual vtkBrush * | GetBrush () |
| Get the pen which controls the outlines of shapes as well as lines, points and related primitives.
|
|
virtual vtkTextProperty * | GetTextProp () |
| Get the text properties object for the vtkContext2D.
|
|
| vtkBaseTypeMacro (vtkObject, vtkObjectBase) |
|
virtual void | DebugOn () |
| Turn debugging output on.
|
|
virtual void | DebugOff () |
| Turn debugging output off.
|
|
bool | GetDebug () |
| Get the value of the debug flag.
|
|
void | SetDebug (bool debugFlag) |
| Set the value of the debug flag.
|
|
virtual void | Modified () |
| Update the modification time for this object.
|
|
virtual vtkMTimeType | GetMTime () |
| Return this object's modified time.
|
|
void | PrintSelf (ostream &os, vtkIndent indent) override |
| Methods invoked by print to print information about the object including superclasses.
|
|
void | RemoveObserver (unsigned long tag) |
|
void | RemoveObservers (unsigned long event) |
|
void | RemoveObservers (const char *event) |
|
void | RemoveAllObservers () |
|
vtkTypeBool | HasObserver (unsigned long event) |
|
vtkTypeBool | HasObserver (const char *event) |
|
int | InvokeEvent (unsigned long event) |
|
int | InvokeEvent (const char *event) |
|
unsigned long | AddObserver (unsigned long event, vtkCommand *, float priority=0.0f) |
| Allow people to add/remove/invoke observers (callbacks) to any VTK object.
|
|
unsigned long | AddObserver (const char *event, vtkCommand *, float priority=0.0f) |
| Allow people to add/remove/invoke observers (callbacks) to any VTK object.
|
|
vtkCommand * | GetCommand (unsigned long tag) |
| Allow people to add/remove/invoke observers (callbacks) to any VTK object.
|
|
void | RemoveObserver (vtkCommand *) |
| Allow people to add/remove/invoke observers (callbacks) to any VTK object.
|
|
void | RemoveObservers (unsigned long event, vtkCommand *) |
| Allow people to add/remove/invoke observers (callbacks) to any VTK object.
|
|
void | RemoveObservers (const char *event, vtkCommand *) |
| Allow people to add/remove/invoke observers (callbacks) to any VTK object.
|
|
vtkTypeBool | HasObserver (unsigned long event, vtkCommand *) |
| Allow people to add/remove/invoke observers (callbacks) to any VTK object.
|
|
vtkTypeBool | HasObserver (const char *event, vtkCommand *) |
| Allow people to add/remove/invoke observers (callbacks) to any VTK object.
|
|
template<class U , class T > |
unsigned long | AddObserver (unsigned long event, U observer, void(T::*callback)(), float priority=0.0f) |
| Overloads to AddObserver that allow developers to add class member functions as callbacks for events.
|
|
template<class U , class T > |
unsigned long | AddObserver (unsigned long event, U observer, void(T::*callback)(vtkObject *, unsigned long, void *), float priority=0.0f) |
| Overloads to AddObserver that allow developers to add class member functions as callbacks for events.
|
|
template<class U , class T > |
unsigned long | AddObserver (unsigned long event, U observer, bool(T::*callback)(vtkObject *, unsigned long, void *), float priority=0.0f) |
| Allow user to set the AbortFlagOn() with the return value of the callback method.
|
|
int | InvokeEvent (unsigned long event, void *callData) |
| This method invokes an event and return whether the event was aborted or not.
|
|
int | InvokeEvent (const char *event, void *callData) |
| This method invokes an event and return whether the event was aborted or not.
|
|
const char * | GetClassName () const |
| Return the class name as a string.
|
|
virtual vtkTypeBool | IsA (const char *name) |
| Return 1 if this class is the same type of (or a subclass of) the named class.
|
|
virtual vtkIdType | GetNumberOfGenerationsFromBase (const char *name) |
| Given the name of a base class of this class type, return the distance of inheritance between this class type and the named class (how many generations of inheritance are there between this class and the named class).
|
|
virtual void | Delete () |
| Delete a VTK object.
|
|
virtual void | FastDelete () |
| Delete a reference to this object.
|
|
void | InitializeObjectBase () |
|
void | Print (ostream &os) |
| Print an object to an ostream.
|
|
virtual void | Register (vtkObjectBase *o) |
| Increase the reference count (mark as used by another object).
|
|
virtual void | UnRegister (vtkObjectBase *o) |
| Decrease the reference count (release by another object).
|
|
int | GetReferenceCount () |
| Return the current reference count of this object.
|
|
void | SetReferenceCount (int) |
| Sets the reference count.
|
|
bool | GetIsInMemkind () const |
| A local state flag that remembers whether this object lives in the normal or extended memory space.
|
|
virtual void | PrintHeader (ostream &os, vtkIndent indent) |
| Methods invoked by print to print information about the object including superclasses.
|
|
virtual void | PrintTrailer (ostream &os, vtkIndent indent) |
| Methods invoked by print to print information about the object including superclasses.
|
|
|
virtual vtkObjectBase * | NewInstanceInternal () const |
|
| vtkOpenGLContextDevice2D () |
|
| ~vtkOpenGLContextDevice2D () override |
|
int | GetNumberOfArcIterations (float rX, float rY, float startAngle, float stopAngle) |
| Factorized code called by DrawEllipseWedge() and DrawEllipticArc() to figure out the number of iterations required to make an arc smooth.
|
|
void | ReadyLinesCBOProgram () |
|
void | ReadyLinesBOProgram () |
|
void | ReadyVCBOProgram () |
|
void | ReadyVBOProgram () |
|
void | ReadyVTBOProgram () |
|
void | ReadySCBOProgram () |
|
void | ReadySBOProgram () |
|
void | SetMatrices (vtkShaderProgram *prog) |
|
void | BuildVBO (vtkOpenGLHelper *cbo, float *v, int nv, unsigned char *coolors, int nc, float *tcoords) |
|
void | CoreDrawTriangles (std::vector< float > &tverts, unsigned char *colors=nullptr, int numComp=0) |
|
void | AddEllipseToPath (vtkPath *path, float x, float y, float rx, float ry, bool reverse) |
| Add an ellipse to a vtkPath.
|
|
void | TransformPath (vtkPath *path) const |
| Transform the path using the current modelview matrix.
|
|
void | TransformPoint (float &x, float &y) const |
| Transform the 2D point using the current modelview matrix.
|
|
void | TransformSize (float &dx, float &dy) const |
| Transform the width and height from pixels to data units.
|
|
|
void | DrawMarkersGL2PS (int shape, bool highlight, float *points, int n, unsigned char *colors, int nc_comps) |
| Draw the markers as paths/polydata instead of sprites for detailed GL2PS capture.
|
|
void | DrawCrossMarkersGL2PS (bool highlight, float *points, int n, unsigned char *colors, int nc_comps) |
| Draw the markers as paths/polydata instead of sprites for detailed GL2PS capture.
|
|
void | DrawPlusMarkersGL2PS (bool highlight, float *points, int n, unsigned char *colors, int nc_comps) |
| Draw the markers as paths/polydata instead of sprites for detailed GL2PS capture.
|
|
void | DrawSquareMarkersGL2PS (bool highlight, float *points, int n, unsigned char *colors, int nc_comps) |
| Draw the markers as paths/polydata instead of sprites for detailed GL2PS capture.
|
|
void | DrawCircleMarkersGL2PS (bool highlight, float *points, int n, unsigned char *colors, int nc_comps) |
| Draw the markers as paths/polydata instead of sprites for detailed GL2PS capture.
|
|
void | DrawDiamondMarkersGL2PS (bool highlight, float *points, int n, unsigned char *colors, int nc_comps) |
| Draw the markers as paths/polydata instead of sprites for detailed GL2PS capture.
|
|
|
void | DrawImageGL2PS (float p[2], vtkImageData *image) |
| Embed an RGBA image in the GL2PS output at the supplied point.
|
|
void | DrawImageGL2PS (float p[2], float scale, vtkImageData *image) |
| Embed an RGBA image in the GL2PS output at the supplied point.
|
|
void | DrawImageGL2PS (const vtkRectf &rect, vtkImageData *image) |
| Embed an RGBA image in the GL2PS output at the supplied point.
|
|
|
void | DrawCircleGL2PS (float x, float y, float rX, float rY) |
| Inject smooth primitives into the GL2PS stream.
|
|
void | DrawWedgeGL2PS (float x, float y, float outRx, float outRy, float inRx, float inRy) |
| Inject smooth primitives into the GL2PS stream.
|
|
virtual vtkObjectBase * | NewInstanceInternal () const |
|
| vtkContextDevice2D () |
|
| ~vtkContextDevice2D () override |
|
| vtkObject () |
|
| ~vtkObject () override |
|
void | RegisterInternal (vtkObjectBase *, vtkTypeBool check) override |
|
void | UnRegisterInternal (vtkObjectBase *, vtkTypeBool check) override |
|
void | InternalGrabFocus (vtkCommand *mouseEvents, vtkCommand *keypressEvents=nullptr) |
| These methods allow a command to exclusively grab all events.
|
|
void | InternalReleaseFocus () |
| These methods allow a command to exclusively grab all events.
|
|
| vtkObjectBase () |
|
virtual | ~vtkObjectBase () |
|
virtual void | RegisterInternal (vtkObjectBase *, vtkTypeBool check) |
|
virtual void | UnRegisterInternal (vtkObjectBase *, vtkTypeBool check) |
|
virtual void | ReportReferences (vtkGarbageCollector *) |
|
| vtkObjectBase (const vtkObjectBase &) |
|
void | operator= (const vtkObjectBase &) |
|