aboutsummaryrefslogtreecommitdiffstats
path: root/src/modules/objects/class_widget.h
diff options
context:
space:
mode:
authorGravatar Noldor2008-09-12 14:27:09 +0000
committerGravatar Noldor2008-09-12 14:27:09 +0000
commit0012f2217579f97bb20c6371be8a7921a2119a04 (patch)
treef375c2a315776f79c663a8192029eee35c567af2 /src/modules/objects/class_widget.h
parentfixed subversion message (diff)
downloadKVIrc-0012f2217579f97bb20c6371be8a7921a2119a04.tar.gz
KVIrc-0012f2217579f97bb20c6371be8a7921a2119a04.tar.bz2
KVIrc-0012f2217579f97bb20c6371be8a7921a2119a04.zip
QT4 new stuff and ftp/http(wip) new classes (lack of docs :\)
git-svn-id: https://svn.kvirc.de/svn/trunk/kvirc@2441 17fca916-40b9-46aa-a4ea-0a15b648b75c
Diffstat (limited to 'src/modules/objects/class_widget.h')
-rw-r--r--src/modules/objects/class_widget.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/modules/objects/class_widget.h b/src/modules/objects/class_widget.h
index 850dc82d2..332a3d000 100644
--- a/src/modules/objects/class_widget.h
+++ b/src/modules/objects/class_widget.h
@@ -24,7 +24,7 @@
#include "kvi_string.h"
#include "kvi_tal_tooltip.h"
#include "object_macros.h"
-
+#include <QtWebKit/QWebView>
class KviKvsObject_widget : public KviKvsObject
{
Q_OBJECT
@@ -36,7 +36,7 @@ public:
protected:
virtual bool init(KviKvsRunTimeContext * pContext,KviKvsVariantList *pParams);
-
+ QWebView *webview;
virtual bool eventFilter(QObject *o,QEvent *e);
// ok, it is clear that we're messing with the naming conventions for the
@@ -108,6 +108,9 @@ protected:
bool function_windowTitle(KviKvsObjectFunctionCall *c);
bool function_x(KviKvsObjectFunctionCall *);
bool function_y(KviKvsObjectFunctionCall *);
+
+ bool function_setWebView(KviKvsObjectFunctionCall *c);
+
signals:
void aboutToDie();
};