class DolphinSearchBox;
class DolphinSettingsDialog;
class DolphinViewContainer;
+class DolphinRemoteEncoding;
class KNewMenu;
class KTabBar;
class KUrl;
*/
void toggleShowMenuBar();
+ /** Opens a terminal window for the current location. */
+ void openTerminal();
+
/** Opens the settings dialog for Dolphin. */
void editSettings();
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
QList<ViewTab> m_viewTab;
DolphinViewActionHandler* m_actionHandler;
+ DolphinRemoteEncoding* m_remoteEncoding;
QPointer<DolphinSettingsDialog> m_settingsDialog;
};