┌   ┐
54
└   ┘

summaryrefslogtreecommitdiff
path: root/src/dolphinview.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/dolphinview.h')
-rw-r--r--src/dolphinview.h18
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.
*/