Albert
Loading...
Searching...
No Matches
inputhistory.h
Go to the documentation of this file.
1// SPDX-FileCopyrightText: 2024 Manuel Schneider
2// SPDX-License-Identifier: MIT
3
4#pragma once
5#include <QObject>
6#include <QString>
7#include <albert/export.h>
8#include <memory>
9
10namespace albert
11{
12
18class ALBERT_EXPORT InputHistory final : public QObject
19{
20 Q_OBJECT
21
22public:
23
24 InputHistory(const QString &path = {});
25 ~InputHistory() override;
26
34 Q_INVOKABLE void add(const QString& str);
35
42 Q_INVOKABLE QString next(const QString &pattern = QString{});
43
50 Q_INVOKABLE QString prev(const QString &pattern = QString{});
51
55 Q_INVOKABLE void resetIterator();
56
57private:
58
59 class Private;
60 std::unique_ptr<Private> d;
61
62};
63
64}
Input history class.
Definition inputhistory.h:19
Q_INVOKABLE QString prev(const QString &pattern=QString{})
Get previous history item matching the pattern.
~InputHistory() override
Q_INVOKABLE void add(const QString &str)
Add text to history search.
Q_INVOKABLE void resetIterator()
Reset history search.
Q_INVOKABLE QString next(const QString &pattern=QString{})
Get next history item matching the pattern.
InputHistory(const QString &path={})
Definition action.h:10