┌   ┐
54
└   ┘

summaryrefslogtreecommitdiff
path: root/src/dolphinmainwindow.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/dolphinmainwindow.h')
-rw-r--r--src/dolphinmainwindow.h15
1 files changed, 13 insertions, 2 deletions
diff --git a/src/dolphinmainwindow.h b/src/dolphinmainwindow.h
index a56215fa7..529319e2a 100644
--- a/src/dolphinmainwindow.h
+++ b/src/dolphinmainwindow.h
@@ -68,9 +68,14 @@ public:
DolphinViewContainer* activeViewContainer() const;
/**
- * Returns view container for all tabs
+ * Returns view containers for all tabs
+ * @param includeInactive When true all view containers available in
+ * this window are returned. When false the
+ * view containers of split views that are not
+ * currently active are ignored.
+ * Default is true.
*/
- QVector<DolphinViewContainer*> viewContainers() const;
+ QVector<DolphinViewContainer*> viewContainers(bool includeInactive = true) const;
/**
* Opens each directory in \p dirs in a separate tab. If \a splitView is set,
@@ -306,6 +311,12 @@ private slots:
void showFilterBar();
/**
+ * Toggle between either using an UrlNavigator in the toolbar or the
+ * ones in the location bar for navigating.
+ */
+ void toggleLocationInToolbar();
+
+ /**
* Toggles between edit and browse mode of the navigation bar.
*/
void toggleEditLocation();