diff options
| author | Felix Ernst <[email protected]> | 2026-04-23 18:22:49 +0200 |
|---|---|---|
| committer | Felix Ernst <[email protected]> | 2026-04-27 13:26:59 +0200 |
| commit | 1e13c6abb6fc179fa8da32fe62df89560a801b3d (patch) | |
| tree | a154114e7144f5b6678e7b394bf7c7423b56051b /src/views/dolphinview.h | |
| parent | 2d7dac81ad66672aa2332cc37e3439755fe1f930 (diff) | |
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.
Diffstat (limited to 'src/views/dolphinview.h')
| -rw-r--r-- | src/views/dolphinview.h | 5 |
1 files changed, 5 insertions, 0 deletions
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 @@ -635,6 +635,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, * it is assured that the view contains already the correct root |
