summaryrefslogtreecommitdiff
path: root/src/webtab/webpage.h
diff options
context:
space:
mode:
authorAndrea Diamantini <adjam7@gmail.com>2012-08-01 10:46:15 +0200
committerAndrea Diamantini <adjam7@gmail.com>2012-12-10 02:48:04 +0100
commit76af6dc385cb275da7af92933ec14c0177b229d6 (patch)
tree95658c2e0019f082a4aad695d2d14a9edfe49ba9 /src/webtab/webpage.h
parentCopy webtab related files from rekonq repo (diff)
downloadrekonq-76af6dc385cb275da7af92933ec14c0177b229d6.tar.xz
Let WebView compile and work
WARNING: Not everything compiles yet...
Diffstat (limited to 'src/webtab/webpage.h')
-rw-r--r--src/webtab/webpage.h15
1 files changed, 2 insertions, 13 deletions
diff --git a/src/webtab/webpage.h b/src/webtab/webpage.h
index abc9f64c..1985e047 100644
--- a/src/webtab/webpage.h
+++ b/src/webtab/webpage.h
@@ -52,9 +52,6 @@ public:
explicit WebPage(QWidget *parent = 0);
~WebPage();
- bool hasNetworkAnalyzerEnabled() const;
- void enableNetworkAnalyzer(bool b);
-
bool isOnRekonqPage() const;
void setIsOnRekonqPage(bool b);
@@ -62,16 +59,6 @@ public:
QString suggestedFileName();
- inline bool hasAdBlockedElements() const
- {
- return _hasAdBlockedElements;
- };
-
- inline void setHasAdBlockedElements(bool b)
- {
- _hasAdBlockedElements = b;
- };
-
bool hasSslValid() const;
public Q_SLOTS:
@@ -86,6 +73,8 @@ protected:
virtual bool acceptNavigationRequest(QWebFrame *frame,
const QNetworkRequest &request,
NavigationType type);
+Q_SIGNALS:
+ void pageCreated(WebPage *);
private Q_SLOTS:
void handleUnsupportedContent(QNetworkReply *reply);