Home · All Classes · Main Classes · Grouped Classes · Modules · Functions |
The QSvgRenderer class is used to draw the contents of SVG files onto paint devices. More...
#include <QSvgRenderer>
Inherits QObject.
This class was introduced in Qt 4.1.
The QSvgRenderer class is used to draw the contents of SVG files onto paint devices.
Using QSvgRenderer, Scalable Vector Graphics (SVG) can be rendered onto any QPaintDevice subclass, including QWidget, QImage, and QGLWidget.
QSvgRenderer provides an API that supports basic features of SVG rendering, such as loading and rendering of static drawings, and more interactive features like animation. Since the rendering is performed using QPainter, SVG drawings can be rendered on any subclass of QPaintDevice.
SVG drawings are either loaded when an QSvgRenderer is constructed, or loaded later using the load() functions. Data is either supplied directly as serialized XML, or indirectly using a file name. If a valid file has been loaded, either when the renderer is constructed or at some later time, isValid() returns true; otherwise it returns false.
The defaultSize() function provides information about the amount of space that is required to render the currently loaded SVG file. This is useful for paint devices, such as QWidget, that often need to supply a size hint to their parent layout. The default size of a drawing may differ from its visible area, found using the viewBox property.
Animated SVG drawings are supported, and can be controlled with a simple collection of functions and properties:
See also QSvgWidget, QtSvg Module, SVG Viewer Example, and QPicture.
This property holds the current frame of the document's animation, or 0 if the document is not animated.
Access functions:
See also animationDuration(), framesPerSecond, and animated().
This property holds the number of frames per second to be shown.
The number of frames per second is 0 if the current document is not animated.
Access functions:
See also currentFrame, animationDuration(), and animated().
This property holds the rectangle specifying the visible area of the document in logical coordinates.
Access functions:
Constructs a new renderer with the given parent.
Constructs a new renderer with the given parent and loads the contents of the SVG file with the specified filename.
Constructs a new renderer with the given parent and loads the specified SVG format contents.
Destroys the renderer.
Returns true if the current document contains animated elements; otherwise returns false.
See also currentFrame(), animationDuration(), and framesPerSecond().
Returns the number of frames in the animation, or 0 if the current document is not animated.
See also animated(), currentFrame(), and framesPerSecond().
Returns the default size of the document contents.
Returns true if there is a valid current document; otherwise returns false.
Loads the SVG file specified by filename.
This is an overloaded member function, provided for convenience. It behaves essentially like the above function.
Loads the specified SVG format contents.
Renders the document, or current frame of an animated document, using the given painter.
This signal is emitted whenever the document needs to be updated, usually for the purposes of animation.
Copyright © 2005 Trolltech | Trademarks | Qt 4.1.0 |