diff options
| author | Alessio Bonfiglio <[email protected]> | 2021-12-17 14:11:46 +0000 |
|---|---|---|
| committer | Méven Car <[email protected]> | 2021-12-17 14:11:46 +0000 |
| commit | 65b18bf935faad814b9ab3b318fdbfb4772d2051 (patch) | |
| tree | 19307e31947fa01789a33e18cc50c3c0a582143e /src/dolphinviewcontainer.h | |
| parent | 3c5bf0c96c1e419938d73e88d82366585e3e6f65 (diff) | |
Enable Ctrl/Shift-Click to open folder in a new tab/window
and more
Diffstat (limited to 'src/dolphinviewcontainer.h')
| -rw-r--r-- | src/dolphinviewcontainer.h | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/src/dolphinviewcontainer.h b/src/dolphinviewcontainer.h index 5d2321952..f78f85e55 100644 --- a/src/dolphinviewcontainer.h +++ b/src/dolphinviewcontainer.h @@ -229,6 +229,16 @@ Q_SIGNALS: */ void captionChanged(); + /** + * Is emitted if a new tab should be opened in the background for the URL \a url. + */ + void tabRequested(const QUrl &url); + + /** + * Is emitted if a new tab should be opened for the URL \a url and set as active. + */ + void activeTabRequested(const QUrl &url); + private Q_SLOTS: /** * Updates the number of items (= number of files + number of @@ -281,7 +291,7 @@ private Q_SLOTS: * directory is opened in the view. If the item is a file, the file * gets started by the corresponding application. */ - void slotItemActivated(const KFileItem& item); + void slotItemActivated(const KFileItem &item); /** * Handles activation of multiple files. The files get started by |
