diff options
author | Andrea Diamantini <adjam7@gmail.com> | 2009-12-21 00:40:43 +0100 |
---|---|---|
committer | Andrea Diamantini <adjam7@gmail.com> | 2009-12-21 00:40:43 +0100 |
commit | 533769b663fee1ba99364c7c0c3431b72b8e9abe (patch) | |
tree | 0c9e2dd89827b33f95e7de165f71d934d1af72a8 /src/protocolhandler.h | |
parent | Merge commit 'refs/merge-requests/76' of git://gitorious.org/rekonq/mainline ... (diff) | |
download | rekonq-533769b663fee1ba99364c7c0c3431b72b8e9abe.tar.xz |
Improvements in ftp handling:
- show dirs
- download files
Diffstat (limited to 'src/protocolhandler.h')
-rw-r--r-- | src/protocolhandler.h | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/src/protocolhandler.h b/src/protocolhandler.h index 81cda4b6..532bd9c9 100644 --- a/src/protocolhandler.h +++ b/src/protocolhandler.h @@ -27,14 +27,18 @@ #ifndef PROTOCOL_HANDLER_H #define PROTOCOL_HANDLER_H - +// KDE Includes #include <KDirLister> + +// Qt Includes #include <QWebFrame> +// Forward Declarations class QNetworkRequest; class QWebFrame; class QString; class KUrl; +class KJob; class ProtocolHandler : public QObject @@ -47,9 +51,13 @@ public: bool handle(const QNetworkRequest &request, QWebFrame *frame); +signals: + void downloadUrl( const KUrl &); + private slots: void showResults(const KFileItemList &); - + void slotMostLocalUrlResult(KJob *); + private: QString dirHandling(const KFileItemList &list); |