diff options
author | Andrea Diamantini <adjam7@gmail.com> | 2010-04-05 01:31:13 +0200 |
---|---|---|
committer | Andrea Diamantini <adjam7@gmail.com> | 2010-04-05 01:31:13 +0200 |
commit | 352168759ea96b35296eaf33790fbe073b69f69b (patch) | |
tree | f30a483162d84101b142825823872e64489620ce /src/webpage.h | |
parent | A "nice" hack to fix bug 211557 (diff) | |
download | rekonq-352168759ea96b35296eaf33790fbe073b69f69b.tar.xz |
This commit is the first implementation of a new new new urlbar
Here are its features:
- KLineEdit based
- ability to easily add "icons" :)
- SSL informations shown (a-la firefox)
- smoother animation
- cleaner code
- data QString, not KUrl based (Users type string, not urls!!!)
Diffstat (limited to 'src/webpage.h')
-rw-r--r-- | src/webpage.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/webpage.h b/src/webpage.h index abc9833c..479d0cd3 100644 --- a/src/webpage.h +++ b/src/webpage.h @@ -58,8 +58,6 @@ public: explicit WebPage(QWidget *parent = 0); ~WebPage(); - void showSSLInfo(); - public slots: virtual void downloadRequest(const QNetworkRequest &request); void downloadAllContentsWithKGet(); @@ -77,7 +75,11 @@ protected Q_SLOTS: private slots: void manageNetworkErrors(QNetworkReply *reply); void loadFinished(bool); + void showSSLInfo(); +signals: + void validSSLInfo(bool); + private: QString errorPage(QNetworkReply *); |