]> cloud.milkyroute.net Git - dolphin.git/blobdiff - src/dolphinmainwindow.h
BUG: 175658
[dolphin.git] / src / dolphinmainwindow.h
index 5b91b99ce04ccc384857c0f55905f6e0556ba8c6..77fc36b58e5840648edc1642e291e93f9445f967 100644 (file)
@@ -43,6 +43,7 @@ class DolphinApplication;
 class DolphinSearchBox;
 class DolphinSettingsDialog;
 class DolphinViewContainer;
+class DolphinRemoteEncoding;
 class KNewMenu;
 class KTabBar;
 class KUrl;
@@ -268,6 +269,9 @@ private slots:
      */
     void toggleShowMenuBar();
 
+    /** Opens a terminal window for the current location. */
+    void openTerminal();
+
     /** Opens the settings dialog for Dolphin. */
     void editSettings();
 
@@ -415,6 +419,13 @@ private:
 
     void createSecondaryView(int tabIndex);
 
+    /**
+     * Helper method for saveProperties() and readProperties(): Returns
+     * the property string for a tab with the index \a tabIndex and
+     * the property \a property.
+     */
+    QString tabProperty(const QString& property, int tabIndex) const;
+
 private:
     /**
      * Implements a custom error handling for the undo manager. This
@@ -451,6 +462,7 @@ private:
     QList<ViewTab> m_viewTab;
 
     DolphinViewActionHandler* m_actionHandler;
+    DolphinRemoteEncoding* m_remoteEncoding;
     QPointer<DolphinSettingsDialog> m_settingsDialog;
 };