File indexing completed on 2024-04-28 16:12:55

0001 /*
0002    SPDX-FileCopyrightText: 2022-2024 Laurent Montel <montel@kde.org>
0003 
0004    SPDX-License-Identifier: LGPL-2.0-or-later
0005 */
0006 
0007 #pragma once
0008 
0009 #include <QWidget>
0010 class QTextEdit;
0011 class NotificationHistoryGui : public QWidget
0012 {
0013     Q_OBJECT
0014 public:
0015     explicit NotificationHistoryGui(QWidget *parent = nullptr);
0016     ~NotificationHistoryGui() override = default;
0017 
0018 private:
0019     void slotSendNotification();
0020     QTextEdit *const mTextEdit;
0021 };