-
Notifications
You must be signed in to change notification settings - Fork 2
/
historycompleter.h
43 lines (32 loc) · 1.09 KB
/
historycompleter.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
// Copyright (C) 2016 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
#pragma once
#include "gui_global.hpp"
#include <QCompleter>
namespace Utils {
class QtcSettings;
}
namespace GUI {
class HistoryCompleterPrivate;
class GUI_EXPORT HistoryCompleter : public QCompleter
{
Q_OBJECT
public:
static void setSettings(Utils::QtcSettings *settings);
explicit HistoryCompleter(const QString &historyKey, QObject *parent = nullptr);
auto removeHistoryItem(int index) -> bool;
[[nodiscard]] auto historyItem() const -> QString;
[[nodiscard]] auto hasHistory() const -> bool { return historySize() > 0; }
static auto historyExistsFor(const QString &historyKey) -> bool;
private:
~HistoryCompleter() override;
[[nodiscard]] auto historySize() const -> int;
[[nodiscard]] auto maximalHistorySize() const -> int;
void setMaximalHistorySize(int numberOfEntries);
public Q_SLOTS:
void clearHistory();
void addEntry(const QString &str);
private:
HistoryCompleterPrivate *d;
};
} // namespace GUI