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 <QUrl>
16#include <QUrlQuery>
17
18#include <KAboutData>
19#include <KConfig>
20#include <KLocalizedString>
21#include <KMessageBox>
22#include <KMessageDialog>
23#include <KTitleWidget>
24
25#include "config-xmlgui.h"
26#include "systeminformation_p.h"
27#include <kxmlgui_version.h>
28
29class KBugReportPrivate
30{
31public:
32 KBugReportPrivate(KBugReport *qq)
33 : q(qq)
34 {
35 }
36
37 enum BugDestination {
38 BugsKdeOrg,
39 CustomUrl,
40 };
41
42 // Update the url to match the current OS, selected app, etc
43 void updateUrl();
44
45 KBugReport *const q;
46
47 QLabel *m_version = nullptr;
48 QString m_strVersion;
49
50 QString lastError;
51 QString kde_version;
52 QString appname;
53 QString os;
54 QUrl url;
55 BugDestination bugDestination = KBugReportPrivate::CustomUrl;
56};
57
58KBugReport::KBugReport(const KAboutData &aboutData, QWidget *_parent)
59 : QDialog(_parent)
60 , d(new KBugReportPrivate(this))
61{
62 setWindowTitle(i18nc("@title:window", "Submit Bug Report"));
63
64 QDialogButtonBox *buttonBox = new QDialogButtonBox(this);
68
69 const QString bugAddress = aboutData.bugAddress();
70 if (bugAddress == QLatin1String("submit@bugs.kde.org")) {
71 // This is a core KDE application -> redirect to the web form
72 d->bugDestination = KBugReportPrivate::BugsKdeOrg;
73 } else if (!QUrl(bugAddress).scheme().isEmpty()) {
74 // The bug reporting address is a URL -> redirect to that
75 d->bugDestination = KBugReportPrivate::CustomUrl;
76 }
77
79
81 QVBoxLayout *lay = new QVBoxLayout(this);
82
83 KTitleWidget *title = new KTitleWidget(this);
84 title->setText(i18n("Submit Bug Report"));
85 title->setIconSize(QSize(32, 32));
86 title->setIcon(QIcon::fromTheme(QStringLiteral("tools-report-bug")));
87 lay->addWidget(title);
88
90 lay->addLayout(glay);
91
92 int row = 0;
93
94 // Program name
96 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");
97 tmpLabel = new QLabel(i18n("Application: "), this);
98 glay->addWidget(tmpLabel, row, 0);
99 tmpLabel->setWhatsThis(qwtstr);
100 QLabel *appLabel = new QLabel(this);
101 d->appname = aboutData.productName();
102 appLabel->setText(d->appname);
103 glay->addWidget(appLabel, row, 1);
104 tmpLabel->setWhatsThis(qwtstr);
105
106 // Version
107 qwtstr = i18n("The version of this application - please make sure that no newer version is available before sending a bug report");
108 tmpLabel = new QLabel(i18n("Version:"), this);
109 glay->addWidget(tmpLabel, ++row, 0);
110 tmpLabel->setWhatsThis(qwtstr);
111 d->m_strVersion = aboutData.version();
112 if (d->m_strVersion.isEmpty()) {
113 d->m_strVersion = i18n("no version set (programmer error)");
114 }
115 d->kde_version = QStringLiteral(KXMLGUI_VERSION_STRING);
116 if (d->bugDestination != KBugReportPrivate::BugsKdeOrg) {
117 d->m_strVersion += QLatin1Char(' ') + d->kde_version;
118 }
119 d->m_version = new QLabel(d->m_strVersion, this);
120 d->m_version->setTextInteractionFlags(Qt::TextBrowserInteraction);
121 // glay->addWidget( d->m_version, row, 1 );
122 glay->addWidget(d->m_version, row, 1, 1, 2);
123 d->m_version->setWhatsThis(qwtstr);
124
125 tmpLabel = new QLabel(i18n("OS:"), this);
126 glay->addWidget(tmpLabel, ++row, 0);
127
128#ifdef Q_OS_WINDOWS
129 d->os = i18nc("%1 is the operating system name, e.g. 'Windows 10', %2 is the CPU architecture, e.g. 'x86_64'",
130 "%1 (%2)",
133#else
134 if (QSysInfo::productVersion() != QLatin1String("unknown")) {
135 d->os = i18nc(
136 "%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'",
137 "%1 %2 (%3)",
141 } else {
142 d->os = i18nc("%1 is the operating system name, e.g. 'Fedora Linux', %2 is the CPU architecture, e.g. 'x86_64'",
143 "%1 (%2)",
146 }
147#endif
148
149 tmpLabel = new QLabel(d->os, this);
150 tmpLabel->setTextInteractionFlags(Qt::TextBrowserInteraction);
151 glay->addWidget(tmpLabel, row, 1, 1, 2);
152 // Point to the web form
153
154 QString text;
155 if (d->bugDestination == KBugReportPrivate::BugsKdeOrg) {
156 text = i18n(
157 "<qt>To submit a bug report, click on the button below. This will open a web browser "
158 "window on <a href=\"https://bugs.kde.org\">https://bugs.kde.org</a> where you will find "
159 "a form to fill in. The information displayed above will be transferred to that server.</qt>");
160 d->updateUrl();
161 } else {
162 text = i18n(
163 "<qt>To submit a bug report, click on the button below. This will open a web browser "
164 "window on <a href=\"%1\">%2</a>.</qt>",
165 bugAddress,
166 bugAddress);
167 d->url = QUrl(bugAddress);
168 }
169
170 lay->addSpacing(10);
171 QLabel *label = new QLabel(text, this);
172 label->setOpenExternalLinks(true);
173 label->setTextInteractionFlags(Qt::LinksAccessibleByMouse | Qt::LinksAccessibleByKeyboard);
174 label->setWordWrap(true);
175 lay->addWidget(label);
176 lay->addSpacing(10);
177
178 QPushButton *okButton = buttonBox->button(QDialogButtonBox::Ok);
179 if (d->bugDestination == KBugReportPrivate::BugsKdeOrg) {
180 okButton->setText(i18nc("@action:button", "&Launch Bug Report Wizard"));
181 } else {
182 okButton->setText(i18nc("@action:button", "&Submit Bug Report"));
183 }
184 okButton->setIcon(QIcon::fromTheme(QStringLiteral("tools-report-bug")));
185
186 lay->addWidget(buttonBox);
187 setMinimumHeight(sizeHint().height() + 20); // WORKAROUND: prevent "cropped" qcombobox
188}
189
190KBugReport::~KBugReport() = default;
191
192void KBugReportPrivate::updateUrl()
193{
194 url = QUrl(QStringLiteral("https://bugs.kde.org/enter_bug.cgi"));
195 QUrlQuery query;
196 query.addQueryItem(QStringLiteral("format"), QStringLiteral("guided")); // use the guided form
197
198 // the string format is product/component, where component is optional
199 QStringList list = appname.split(QLatin1Char('/'));
200 query.addQueryItem(QStringLiteral("product"), list[0]);
201 if (list.size() == 2) {
202 query.addQueryItem(QStringLiteral("component"), list[1]);
203 }
204
205 query.addQueryItem(QStringLiteral("version"), m_strVersion);
206 url.setQuery(query);
207
208 // TODO: guess and fill OS(sys_os) and Platform(rep_platform) fields
209}
210
216
217#include "moc_kbugreport.cpp"
QString productName() const
QString version() const
QString bugAddress() const
A dialog box for sending bug reports.
Definition kbugreport.h:34
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)
bool openUrl(const QUrl &url)
virtual void accept()
virtual void reject()
virtual QSize sizeHint() const const override
QPushButton * button(StandardButton which) const const
void setStandardButtons(StandardButtons buttons)
QIcon fromTheme(const QString &name)
qsizetype size() const const
QMetaObject::Connection connect(const QObject *sender, PointerToMemberFunction signal, Functor functor)
QList< T > findChildren(Qt::FindChildOptions options) const const
QStringList split(QChar sep, Qt::SplitBehavior behavior, Qt::CaseSensitivity cs) const const
QString currentCpuArchitecture()
QString prettyProductName()
QString productVersion()
TextBrowserInteraction
void setQuery(const QString &query, ParsingMode mode)
void setMinimumHeight(int minh)
void setWindowTitle(const QString &)
This file is part of the KDE documentation.
Documentation copyright © 1996-2024 The KDE developers.
Generated on Tue Mar 26 2024 11:21:12 by doxygen 1.10.0 written by Dimitri van Heesch, © 1997-2006

KDE's Doxygen guidelines are available online.