KXmlGui

kbugreport.cpp
1/*
2 This file is part of the KDE project
3 SPDX-FileCopyrightText: 1999 David Faure <faure@kde.org>
4
5 SPDX-License-Identifier: LGPL-2.0-or-later
6*/
7
8#include "kbugreport.h"
9
10#include <QDesktopServices>
11#include <QDialogButtonBox>
12#include <QHBoxLayout>
13#include <QLabel>
14#include <QPushButton>
15#include <QTimer>
16#include <QUrl>
17#include <QUrlQuery>
18
19#include <KAboutData>
20#include <KConfig>
21#include <KLocalizedString>
22#include <KMessageBox>
23#include <KMessageDialog>
24#include <KTitleWidget>
25
26#include "config-xmlgui.h"
27#include "systeminformation_p.h"
28#include <kxmlgui_version.h>
29
30#include <chrono>
31
32using namespace std::chrono_literals;
33
34class KBugReportPrivate
35{
36public:
37 KBugReportPrivate(KBugReport *qq)
38 : q(qq)
39 {
40 }
41
42 enum BugDestination {
43 BugsKdeOrg,
44 CustomUrl,
45 };
46
47 // Update the url to match the current OS, selected app, etc
48 void updateUrl();
49
50 KBugReport *const q;
51
52 QLabel *m_version = nullptr;
53 QString m_strVersion;
54
55 QString lastError;
56 QString kde_version;
57 QString appname;
58 QString os;
59 QUrl url;
60 BugDestination bugDestination = KBugReportPrivate::CustomUrl;
61};
62
63KBugReport::KBugReport(const KAboutData &aboutData, QWidget *_parent)
64 : QDialog(_parent)
65 , d(new KBugReportPrivate(this))
66{
67 setWindowTitle(i18nc("@title:window", "Submit Bug Report"));
68
69 QDialogButtonBox *buttonBox = new QDialogButtonBox(this);
73
74 const QString bugAddress = aboutData.bugAddress();
75 if (bugAddress == QLatin1String("submit@bugs.kde.org")) {
76 // This is a core KDE application -> redirect to the web form
77 d->bugDestination = KBugReportPrivate::BugsKdeOrg;
78 } else if (!QUrl(bugAddress).scheme().isEmpty()) {
79 // The bug reporting address is a URL -> redirect to that
80 d->bugDestination = KBugReportPrivate::CustomUrl;
81 }
82
84
85 QLabel *tmpLabel;
86 QVBoxLayout *lay = new QVBoxLayout(this);
87
88 KTitleWidget *title = new KTitleWidget(this);
89 title->setText(i18n("Submit Bug Report"));
90 title->setIconSize(QSize(32, 32));
91 title->setIcon(QIcon::fromTheme(QStringLiteral("tools-report-bug")));
92 lay->addWidget(title);
93
94 QGridLayout *glay = new QGridLayout();
95 lay->addLayout(glay);
96
97 int row = 0;
98
99 // Program name
100 QString qwtstr =
101 i18n("The application for which you wish to submit a bug report - if incorrect, please use the Report Bug menu item of the correct application");
102 tmpLabel = new QLabel(i18n("Application: "), this);
103 glay->addWidget(tmpLabel, row, 0);
104 tmpLabel->setWhatsThis(qwtstr);
105 QLabel *appLabel = new QLabel(this);
106 d->appname = aboutData.productName();
107 appLabel->setText(d->appname);
108 glay->addWidget(appLabel, row, 1);
109 tmpLabel->setWhatsThis(qwtstr);
110
111 // Version
112 qwtstr = i18n("The version of this application - please make sure that no newer version is available before sending a bug report");
113 tmpLabel = new QLabel(i18n("Version:"), this);
114 glay->addWidget(tmpLabel, ++row, 0);
115 tmpLabel->setWhatsThis(qwtstr);
116 d->m_strVersion = aboutData.version();
117 if (d->m_strVersion.isEmpty()) {
118 d->m_strVersion = i18n("no version set (programmer error)");
119 }
120 d->kde_version = QStringLiteral(KXMLGUI_VERSION_STRING);
121 if (d->bugDestination != KBugReportPrivate::BugsKdeOrg) {
122 d->m_strVersion = i18nc("%1 is the program version, %2 is the kde framework version", "%1 with KDE Frameworks %2", d->m_strVersion, d->kde_version);
123 }
124 d->m_version = new QLabel(d->m_strVersion, this);
125 d->m_version->setTextInteractionFlags(Qt::TextBrowserInteraction);
126 // glay->addWidget( d->m_version, row, 1 );
127 glay->addWidget(d->m_version, row, 1, 1, 2);
128 d->m_version->setWhatsThis(qwtstr);
129
130 tmpLabel = new QLabel(i18n("OS:"), this);
131 glay->addWidget(tmpLabel, ++row, 0);
132
133#ifdef Q_OS_WINDOWS
134 d->os = i18nc("%1 is the operating system name, e.g. 'Windows 10', %2 is the CPU architecture, e.g. 'x86_64'",
135 "%1 (%2)",
138#else
139 if (QSysInfo::productVersion() != QLatin1String("unknown")) {
140 d->os = i18nc(
141 "%1 is the operating system name, e.g. 'Fedora Linux', %2 is the operating system version, e.g. '35', %3 is the CPU architecture, e.g. 'x86_64'",
142 "%1 %2 (%3)",
146 } else {
147 d->os = i18nc("%1 is the operating system name, e.g. 'Fedora Linux', %2 is the CPU architecture, e.g. 'x86_64'",
148 "%1 (%2)",
151 }
152#endif
153
154 tmpLabel = new QLabel(d->os, this);
156 glay->addWidget(tmpLabel, row, 1, 1, 2);
157 // Point to the web form
158
159 QString text;
160 if (d->bugDestination == KBugReportPrivate::BugsKdeOrg) {
161 text = i18n(
162 "<qt>To submit a bug report, click on the button below. This will open a web browser "
163 "window on <a href=\"https://bugs.kde.org\">https://bugs.kde.org</a> where you will find "
164 "a form to fill in. The information displayed above will be transferred to that server.</qt>");
165 d->updateUrl();
166 } else {
167 text = i18n(
168 "<qt>To submit a bug report, click on the button below. This will open a web browser "
169 "window on <a href=\"%1\">%2</a>.</qt>",
170 bugAddress,
171 bugAddress);
172 d->url = QUrl(bugAddress);
173 }
174
175 lay->addSpacing(10);
176 QLabel *label = new QLabel(text, this);
177 label->setOpenExternalLinks(true);
178 label->setTextInteractionFlags(Qt::LinksAccessibleByMouse | Qt::LinksAccessibleByKeyboard);
179 label->setWordWrap(true);
180 lay->addWidget(label);
181 lay->addSpacing(10);
182
183 QPushButton *okButton = buttonBox->button(QDialogButtonBox::Ok);
184 if (d->bugDestination == KBugReportPrivate::BugsKdeOrg) {
185 okButton->setText(i18nc("@action:button", "&Launch Bug Report Wizard"));
186 } else {
187 okButton->setText(i18nc("@action:button", "&Submit Bug Report"));
188 }
189 okButton->setIcon(QIcon::fromTheme(QStringLiteral("tools-report-bug")));
190
191 lay->addWidget(buttonBox);
192 setMinimumHeight(sizeHint().height() + 20); // WORKAROUND: prevent "cropped" qcombobox
193}
194
195KBugReport::~KBugReport() = default;
196
197void KBugReportPrivate::updateUrl()
198{
199 url = QUrl(QStringLiteral("https://bugs.kde.org/enter_bug.cgi"));
200 QUrlQuery query;
201 query.addQueryItem(QStringLiteral("format"), QStringLiteral("guided")); // use the guided form
202
203 // the string format is product/component, where component is optional
204 QStringList list = appname.split(QLatin1Char('/'));
205 query.addQueryItem(QStringLiteral("product"), list[0]);
206 if (list.size() == 2) {
207 query.addQueryItem(QStringLiteral("component"), list[1]);
208 }
209
210 query.addQueryItem(QStringLiteral("version"), m_strVersion);
211 url.setQuery(query);
212
213 // TODO: guess and fill OS(sys_os) and Platform(rep_platform) fields
214}
215
217{
219
220 // HACK: accept will close the window, which breaks the xdg-activation handling in QDesktopServices::openUrl()
221 // Slightly delay the closing to give openUrl time to finish
222 QTimer::singleShot(500ms, [this] {
224 });
225}
226
227#include "moc_kbugreport.cpp"
QString productName() const
QString version() const
QString bugAddress() const
void accept() override
OK has been clicked.
~KBugReport() override
Destructor.
KBugReport(const KAboutData &aboutData, QWidget *parent=nullptr)
Creates a bug-report dialog.
static void assign(QPushButton *button, const KGuiItem &item)
void setIcon(const QIcon &icon, ImageAlignment alignment=ImageRight)
void setIconSize(const QSize &iconSize)
void setText(const QString &text, MessageType type)
QString i18nc(const char *context, const char *text, const TYPE &arg...)
QString i18n(const char *text, const TYPE &arg...)
KSERVICE_EXPORT KService::List query(FilterFunc filterFunc)
KGuiItem close()
void setIcon(const QIcon &icon)
void setText(const QString &text)
void addLayout(QLayout *layout, int stretch)
void addSpacing(int size)
void addWidget(QWidget *widget, int stretch, Qt::Alignment alignment)
bool openUrl(const QUrl &url)
QDialog(QWidget *parent, Qt::WindowFlags f)
virtual void accept()
virtual void reject()
virtual QSize sizeHint() const const override
QPushButton * button(StandardButton which) const const
void setStandardButtons(StandardButtons buttons)
void addWidget(QWidget *widget, int fromRow, int fromColumn, int rowSpan, int columnSpan, Qt::Alignment alignment)
QIcon fromTheme(const QString &name)
void setText(const QString &)
void setTextInteractionFlags(Qt::TextInteractionFlags flags)
qsizetype size() const const
QMetaObject::Connection connect(const QObject *sender, PointerToMemberFunction signal, Functor functor)
QStringList split(QChar sep, Qt::SplitBehavior behavior, Qt::CaseSensitivity cs) const const
QString currentCpuArchitecture()
QString prettyProductName()
QString productVersion()
TextBrowserInteraction
QWidget(QWidget *parent, Qt::WindowFlags f)
void setMinimumHeight(int minh)
void setWhatsThis(const QString &)
void setWindowTitle(const QString &)
This file is part of the KDE documentation.
Documentation copyright © 1996-2025 The KDE developers.
Generated on Fri Mar 28 2025 11:50:57 by doxygen 1.13.2 written by Dimitri van Heesch, © 1997-2006

KDE's Doxygen guidelines are available online.