diff options
| author | David Faure <[email protected]> | 2008-05-28 23:07:09 +0000 |
|---|---|---|
| committer | David Faure <[email protected]> | 2008-05-28 23:07:09 +0000 |
| commit | 707f9a940973128933b183e7ce36a807ea44e941 (patch) | |
| tree | f1388988625fd7885362d063b9c720921ae8b9db /src/dolphinview.h | |
| parent | d6fc21618accd6182c9fb913a9b31866e4a8aa20 (diff) | |
Handle redirections (e.g. from fish://localhost) without breaking the column view -- thanks Peter for the advice on how to separate the two cleanly.
svn path=/trunk/KDE/kdebase/apps/; revision=813954
Diffstat (limited to 'src/dolphinview.h')
| -rw-r--r-- | src/dolphinview.h | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/src/dolphinview.h b/src/dolphinview.h index 121a7f6da..0936b06a3 100644 --- a/src/dolphinview.h +++ b/src/dolphinview.h @@ -421,6 +421,12 @@ signals: void urlChanged(const KUrl& url); /** + * Is emitted if the view requests a changing of the current + * URL to \a url (see DolphinController::triggerUrlChangeRequest()). + */ + void requestUrlChange(const KUrl& url); + + /** * Is emitted when clicking on an item with the left mouse button. */ void itemTriggered(const KFileItem& item); @@ -596,6 +602,18 @@ private slots: void slotDeleteFileFinished(KJob* job); /** + * Called when KDirLister emits redirection. + * Testcase: fish://localhost + */ + void slotRedirection(const KUrl& oldUrl, const KUrl& newUrl); + + /** + * Is emitted if the controller requests a changing of the current + * URL to \a url + */ + void slotRequestUrlChange(const KUrl& url); + + /** * Restores the current item (= item that has the keyboard focus) * to m_currentItemUrl. */ |
