diff options
| author | 2007-04-02 09:15:36 +0000 | |
|---|---|---|
| committer | 2007-04-02 09:15:36 +0000 | |
| commit | 93b9f3b52aecf5f6145f2478930dc9d88bc7d609 (patch) | |
| tree | 7f73582ed6a1afd4208cc58cca29d3b791c75bd8 /src/modules/objects/class_pixmap.h | |
| parent | qt3 dock icon fix (diff) | |
| download | KVIrc-93b9f3b52aecf5f6145f2478930dc9d88bc7d609.tar.gz KVIrc-93b9f3b52aecf5f6145f2478930dc9d88bc7d609.tar.bz2 KVIrc-93b9f3b52aecf5f6145f2478930dc9d88bc7d609.zip | |
Added $ccale() and $rotate() to the pixmap class (by thexception)
git-svn-id: https://svn.kvirc.de/svn/trunk/kvirc@455 17fca916-40b9-46aa-a4ea-0a15b648b75c
Diffstat (limited to 'src/modules/objects/class_pixmap.h')
| -rw-r--r-- | src/modules/objects/class_pixmap.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/modules/objects/class_pixmap.h b/src/modules/objects/class_pixmap.h index fbd091014..ace74d59e 100644 --- a/src/modules/objects/class_pixmap.h +++ b/src/modules/objects/class_pixmap.h @@ -26,6 +26,11 @@ #include <qpixmap.h> #include <qimage.h> +#ifdef COMPILE_USE_QT4 + #include <QMatrix> +#else + #include <qwmatrix.h> +#endif #include "kvi_string.h" @@ -55,6 +60,8 @@ signals: protected: bool functionfill(KviKvsObjectFunctionCall *c); bool functionresize(KviKvsObjectFunctionCall *c); + bool functionscale(KviKvsObjectFunctionCall *c); + bool functionrotate(KviKvsObjectFunctionCall *c); bool functionload(KviKvsObjectFunctionCall *c); bool functionheight(KviKvsObjectFunctionCall *c); bool functionwidth(KviKvsObjectFunctionCall *c); |
