diff options
Diffstat (limited to 'src/webtab/protocolhandler.h')
-rw-r--r-- | src/webtab/protocolhandler.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/webtab/protocolhandler.h b/src/webtab/protocolhandler.h index f35fdcc6..c4bc6faf 100644 --- a/src/webtab/protocolhandler.h +++ b/src/webtab/protocolhandler.h @@ -38,6 +38,8 @@ #include <QObject> // Forward Declarations +class WebWindow; + class KDirLister; class KFileItemList; class KJob; @@ -65,6 +67,8 @@ public: */ bool postHandling(const QNetworkRequest &request, QWebFrame *frame); + void setWindow(WebWindow *); + Q_SIGNALS: void downloadUrl(const KUrl &); @@ -78,6 +82,8 @@ private: KDirLister *_lister; QWebFrame *_frame; KUrl _url; + + WebWindow *_webwin; }; #endif // PROTOCOL_HANDLER_H |