Krita Source Code Documentation
Loading...
Searching...
No Matches
kbugreport.h
Go to the documentation of this file.
1/* This file is part of the KDE project
2 SPDX-FileCopyrightText: 1999 David Faure <faure@kde.org>
3
4 SPDX-License-Identifier: LGPL-2.0-or-later
5*/
6#ifndef KBUGREPORT_H
7#define KBUGREPORT_H
8
9#include <QDialog>
10#include <kritawidgetutils_export.h>
11
12class KAboutData;
14
28class KRITAWIDGETUTILS_EXPORT KisKBugReport : public QDialog
29{
30 Q_OBJECT
31
32public:
39 explicit KisKBugReport(const KAboutData &aboutData, QWidget *parent = 0L);
40
44 ~KisKBugReport() override;
45
46
50 void accept() override;
51
52private:
56 Q_PRIVATE_SLOT(d, void _k_updateUrl())
57
58
59private:
62
63 Q_DISABLE_COPY(KisKBugReport)
64};
65
66#endif
67
A dialog box for sending bug reports.
Definition kbugreport.h:29
KisKBugReportPrivate *const d
Definition kbugreport.h:61