┌   ┐
54
└   ┘

summaryrefslogtreecommitdiff
path: root/src/dolphinmainwindow.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/dolphinmainwindow.h')
-rw-r--r--src/dolphinmainwindow.h19
1 files changed, 8 insertions, 11 deletions
diff --git a/src/dolphinmainwindow.h b/src/dolphinmainwindow.h
index cd9f238aa..4b2b0c87b 100644
--- a/src/dolphinmainwindow.h
+++ b/src/dolphinmainwindow.h
@@ -246,6 +246,11 @@ Q_SIGNALS:
void urlChanged(const QUrl &url);
/**
+ * Is sent when the view is refreshed
+ */
+ void urlRefreshed(const QUrl &url);
+
+ /**
* Is emitted if information of an item is requested to be shown e. g. in the panel.
* If item is null, no item information request is pending.
*/
@@ -296,15 +301,13 @@ private Q_SLOTS:
*/
void refreshViews();
- void clearStatusBar();
-
/** Updates the 'Create New...' sub menu. */
void updateNewMenu();
void createDirectory();
void createFile();
- /** Shows the error message in the status bar of the active view. */
+ /** Shows the error message in a non-modal message box above the active view. */
void showErrorMessage(const QString &message);
/**
@@ -551,12 +554,6 @@ private Q_SLOTS:
void showTarget();
/**
- * Indicates in the statusbar that the execution of the command \a command
- * has been finished.
- */
- void showCommand(CommandType command);
-
- /**
* If the URL can be listed, open it in the current view, otherwise
* run it through KRun.
*/
@@ -765,8 +762,8 @@ private:
private:
/**
* Implements a custom error handling for the undo manager. This
- * assures that all errors are shown in the status bar of Dolphin
- * instead as modal error dialog with an OK button.
+ * assures that all errors are shown as a message box above the view,
+ * and not as modal error dialogs with an OK button.
*/
class UndoUiInterface : public KIO::FileUndoManager::UiInterface
{