File indexing completed on 2024-06-23 04:26:41

0001 /*
0002  * SPDX-FileCopyrightText: 2017 Boudewijn Rempt <boud@valdyas.org>
0003  *
0004  *  SPDX-License-Identifier: GPL-2.0-or-later
0005  */
0006 
0007 #ifndef DLG_SYSINFO
0008 #define DLG_SYSINFO
0009 
0010 #include <KoDialog.h>
0011 #include "dlg_buginfo.h"
0012 
0013 
0014 class QSettings;
0015 
0016 class DlgSysInfo: public DlgBugInfo
0017 {
0018     Q_OBJECT
0019 public:
0020     DlgSysInfo(QWidget * parent = 0);
0021     ~DlgSysInfo() override;
0022 
0023     QString defaultNewFileName() override {
0024         return "KritaSystemInformation.txt";
0025     }
0026 
0027     QString originalFileName() override;
0028 
0029 public:
0030     QString replacementWarningText() override;
0031     QString captionText() override;
0032 };
0033 
0034 #endif // DLG_SYSINFO