summaryrefslogtreecommitdiff
path: root/src/webview.h
diff options
context:
space:
mode:
authorPanagiotis Papadopoulos <pano_90@gmx.net>2009-12-09 17:23:35 +0100
committerPanagiotis Papadopoulos <pano_90@gmx.net>2009-12-09 17:23:35 +0100
commitba21553e2e6ce17fc4ad84b5ab587b4e7bc5345c (patch)
tree64f7b3a5cec066f06268e954899a78523dcaedf5 /src/webview.h
parentChange a bit the WebKit settings UI (diff)
parentxss attach prevention. (diff)
downloadrekonq-ba21553e2e6ce17fc4ad84b5ab587b4e7bc5345c.tar.xz
Merge branch 'master' of git://gitorious.org/rekonq/mainline into click-to-flash-ui
Diffstat (limited to 'src/webview.h')
-rw-r--r--src/webview.h7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/webview.h b/src/webview.h
index 4fa87978..39cc51da 100644
--- a/src/webview.h
+++ b/src/webview.h
@@ -37,6 +37,7 @@
// Forward Declarations
class WebPage;
+class WalletWidget;
class WebView : public KWebView
@@ -52,6 +53,7 @@ public:
QString lastStatusBarText() const;
int progress();
QPoint mousePos();
+ QWidget *walletBar();
protected:
void contextMenuEvent(QContextMenuEvent *event);
@@ -73,14 +75,11 @@ private slots:
void loadInNewTab(const KUrl &url);
- void downloadRequest(const KUrl &url);
- void downloadRequest(const QNetworkRequest &request);
-
private:
WebPage *m_page;
+ WalletWidget *m_walletBar;
int m_progress;
QString m_statusBarText;
-
QPoint m_mousePos;
};