diff options
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); |