aboutsummaryrefslogtreecommitdiffstats
path: root/src/modules/objects/class_pixmap.h
diff options
context:
space:
mode:
authorGravatar Alexey Uzhva2007-04-02 09:15:36 +0000
committerGravatar Alexey Uzhva2007-04-02 09:15:36 +0000
commit93b9f3b52aecf5f6145f2478930dc9d88bc7d609 (patch)
tree7f73582ed6a1afd4208cc58cca29d3b791c75bd8 /src/modules/objects/class_pixmap.h
parentqt3 dock icon fix (diff)
downloadKVIrc-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.h7
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);