From 1e13c6abb6fc179fa8da32fe62df89560a801b3d Mon Sep 17 00:00:00 2001 From: Felix Ernst Date: Thu, 23 Apr 2026 18:22:49 +0200 Subject: Show type-ahead typing feedback in the status bar The typed keys are displayed in the status bar while also displaying which file name they were auto-completed to (i.e. which file was selected because of the typing). This commit contains some refactoring to keep the original status bar functionality working as expected. This commit also separates DolphinMainWindow from DolphinStatusBar which is great news architecture-wise. The status bar is encapsulated within the DolphinViewContainer. --- src/views/dolphinview.h | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'src/views/dolphinview.h') diff --git a/src/views/dolphinview.h b/src/views/dolphinview.h index 6aa5b595d..9b068f92e 100644 --- a/src/views/dolphinview.h +++ b/src/views/dolphinview.h @@ -634,6 +634,11 @@ Q_SIGNALS: */ void operationCompletedMessage(const QString &msg); + /** + * Is emitted so the \a typeAheadFeedback is displayed to the user. Beware: \a typeAheadFeedback is HTML-escaped rich text. + */ + void showTypeAheadFeedback(const QString &typeAheadFeedback); + /** * Is emitted after DolphinView::setUrl() has been invoked and * the current directory is loaded. If this signal is emitted, -- cgit v1.3