QSvgWidget Class Reference |
QSvgWidget ( QWidget * parent = 0 ) | |
QSvgWidget ( const QString & file, QWidget * parent = 0 ) | |
~QSvgWidget () | |
QSvgRenderer * | renderer () const |
virtual QSize | sizeHint () const |
void | load ( const QString & file ) |
void | load ( const QByteArray & contents ) |
virtual void | paintEvent ( QPaintEvent * event ) |
The QSvgWidget class provides a widget that is used to display the contents of Scalable Vector Graphics (SVG) files.
This class enables developers to display SVG drawings alongside standard widgets, and is used in much the same way as QLabel is used for displaying text and bitmap images.
Since QSvgWidget is a subclass of QWidget, SVG drawings are rendered using the properties of the display. More control can be exercised over the rendering process with the QSvgRenderer class, as this can be used to paint onto other paint devices, such as QImage and QGLWidget. The renderer used by the widget can be obtained with the renderer() function.
Each QSvgWidget can be constructed with the file name of a SVG file, or they can be constructed without a specific file to render and one can be supplied later. The load() functions provide two different ways to load an SVG file: they accept either the file name of an SVG file or a QByteArray containing the serialized XML representation of an SVG file.
By default, the widget provides a size hint to reflect the size of the drawing that it displays. If no data has been loaded, the widget provides the default QWidget size hint. Subclass this class and reimplement sizeHint() if you need to customize this behavior.
See also QSvgRenderer, QtSvg Module, and QPicture.
Constructs a new SVG display widget with the given parent.
Constructs a new SVG display widget with the given parent and loads the contents of the specified file.
Destroys the widget.
Loads the contents of the specified SVG file and updates the widget.
Loads the specified SVG format contents and updates the widget.
Reimplemented from QWidget::paintEvent().
Returns the renderer used to display the contents of the widget.
Reimplemented from QWidget::sizeHint().
Cette page est une traduction d'une page de la documentation de Qt, écrite par Nokia Corporation and/or its subsidiary(-ies). Les éventuels problèmes résultant d'une mauvaise traduction ne sont pas imputables à Nokia. | Qt 4.6-snapshot | |
Copyright © 2012 Developpez LLC. Tous droits réservés Developpez LLC. Aucune reproduction, même partielle, ne peut être faite de ce site et de l'ensemble de son contenu : textes, documents et images sans l'autorisation expresse de Developpez LLC. Sinon, vous encourez selon la loi jusqu'à 3 ans de prison et jusqu'à 300 000 E de dommages et intérêts. Cette page est déposée à la SACD. | ||
Vous avez déniché une erreur ? Un bug ? Une redirection cassée ? Ou tout autre problème, quel qu'il soit ? Ou bien vous désirez participer à ce projet de traduction ? N'hésitez pas à nous contacter ou par MP ! |
Copyright © 2000-2012 - www.developpez.com