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

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