|
|
|
@ -21,8 +21,13 @@
|
|
|
|
|
#ifndef KSVGIconEngine_H
|
|
|
|
|
#define KSVGIconEngine_H
|
|
|
|
|
|
|
|
|
|
#include <tqdom.h>
|
|
|
|
|
#include <tdelibs_export.h>
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* \file ksvgiconengine.h
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
class KSVGIconPainter;
|
|
|
|
|
|
|
|
|
|
class TDECORE_EXPORT KSVGIconEngine
|
|
|
|
@ -31,13 +36,68 @@ public:
|
|
|
|
|
KSVGIconEngine();
|
|
|
|
|
~KSVGIconEngine();
|
|
|
|
|
|
|
|
|
|
bool load(int width, int height, const TQString &path);
|
|
|
|
|
/**
|
|
|
|
|
* @short Reads SVG(Z) document @p path, parses and renders its contents.
|
|
|
|
|
*
|
|
|
|
|
* @param path is the path of the SVG document.
|
|
|
|
|
* @param width is the width of the render result. Omit it or pass 0 to use document's default.
|
|
|
|
|
* @param height is the height of the render result. Omit it or pass 0 to use document's default.
|
|
|
|
|
*
|
|
|
|
|
* @return True if rendering is successful, otherwise false.
|
|
|
|
|
*/
|
|
|
|
|
bool load(const TQString &path, int width = 0, int height = 0);
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @deprecated
|
|
|
|
|
* @short Reads SVG(Z) document @p path, parses and renders its contents.
|
|
|
|
|
*
|
|
|
|
|
* This function uses the old parameter order which does not allow width and height to be omitted
|
|
|
|
|
* and is kept for compatibility. Prefer the variant below instead.
|
|
|
|
|
*
|
|
|
|
|
* @see load(const TQString&, int, int);
|
|
|
|
|
*/
|
|
|
|
|
bool load(int width, int height, const TQString &path) KDE_DEPRECATED;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @short Renders the SVG data stored as DOM in @p data.
|
|
|
|
|
*
|
|
|
|
|
* @param data is the TQDocDocument representation of the SVG document to render.
|
|
|
|
|
* @see load(const TQString&, int, int);
|
|
|
|
|
*/
|
|
|
|
|
bool parse(const TQDomDocument &data, int width = 0, int height = 0);
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @short Renders the SVG data stored as string in @p data.
|
|
|
|
|
*
|
|
|
|
|
* This function is a wrapper provided for convenience.
|
|
|
|
|
*
|
|
|
|
|
* @param data is a TQString containing the SVG document to render.
|
|
|
|
|
* @see parse(const TQDomDocument&, int, int);
|
|
|
|
|
*/
|
|
|
|
|
bool parse(const TQString &data, int width = 0, int height = 0);
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @short Returns a pointer to the engine's KSVGIconPainter object.
|
|
|
|
|
*
|
|
|
|
|
* Typically you won't need access to the painter and you won't be able to do so
|
|
|
|
|
* from outside tdelibs (since the KSVGIconPainter header is not installed).
|
|
|
|
|
*/
|
|
|
|
|
KSVGIconPainter *painter();
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @short Returns a pointer to the rendered TQImage.
|
|
|
|
|
*/
|
|
|
|
|
TQImage *image();
|
|
|
|
|
|
|
|
|
|
KSVGIconPainter *painter();
|
|
|
|
|
TQImage *image();
|
|
|
|
|
/**
|
|
|
|
|
* @short Returns the rendered image's width.
|
|
|
|
|
*/
|
|
|
|
|
double width();
|
|
|
|
|
|
|
|
|
|
double width();
|
|
|
|
|
double height();
|
|
|
|
|
/**
|
|
|
|
|
* @short Returns the rendered image's height.
|
|
|
|
|
*/
|
|
|
|
|
double height();
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
struct Private;
|
|
|
|
|