KTextAddons

textautogeneratehistorywidget.h
1/*
2 SPDX-FileCopyrightText: 2025 Laurent Montel <montel@kde.org>
3
4 SPDX-License-Identifier: GPL-2.0-or-later
5*/
6#pragma once
7#include "textautogeneratetext_private_export.h"
8#include <QWidget>
9class QLineEdit;
10namespace TextAutogenerateText
11{
12class TextAutogenerateHistoryListView;
13class TEXTAUTOGENERATETEXT_TESTS_EXPORT TextAutogenerateHistoryWidget : public QWidget
14{
15 Q_OBJECT
16public:
17 explicit TextAutogenerateHistoryWidget(QWidget *parent = nullptr);
18 ~TextAutogenerateHistoryWidget() override;
19
20private:
21 TEXTAUTOGENERATETEXT_NO_EXPORT void saveHistory();
22 TEXTAUTOGENERATETEXT_NO_EXPORT void loadHistory();
23 TextAutogenerateHistoryListView *const mTextAutogenerateHistoryListView;
24 QLineEdit *const mSearchLineEdit;
25};
26}
This file is part of the KDE documentation.
Documentation copyright © 1996-2025 The KDE developers.
Generated on Fri Apr 18 2025 12:00:52 by doxygen 1.13.2 written by Dimitri van Heesch, © 1997-2006

KDE's Doxygen guidelines are available online.