File indexing completed on 2024-05-12 16:27:37

0001 /*
0002    SPDX-FileCopyrightText: 2023-2024 Laurent Montel <montel.org>
0003 
0004    SPDX-License-Identifier: LGPL-2.0-or-later
0005 */
0006 
0007 #pragma once
0008 
0009 #include "libruqolawidgets_private_export.h"
0010 #include <QDialog>
0011 class ServerErrorInfoMessageHistoryWidget;
0012 class LIBRUQOLAWIDGETS_TESTS_EXPORT ServerErrorInfoMessageHistoryDialog : public QDialog
0013 {
0014     Q_OBJECT
0015 public:
0016     explicit ServerErrorInfoMessageHistoryDialog(QWidget *parent = nullptr);
0017     ~ServerErrorInfoMessageHistoryDialog() override;
0018 
0019     void addServerList(const QStringList &serverNames);
0020 
0021 private:
0022     LIBRUQOLAWIDGETS_NO_EXPORT void readConfig();
0023     LIBRUQOLAWIDGETS_NO_EXPORT void writeConfig();
0024     ServerErrorInfoMessageHistoryWidget *const mServerErrorInfoMessageHistoryWidget;
0025 };