-
Notifications
You must be signed in to change notification settings - Fork 69
/
fbaboutdialog.cpp
149 lines (116 loc) · 5.01 KB
/
fbaboutdialog.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
#include "fbaboutdialog.h"
#include <QNetworkAccessManager>
#include <QNetworkRequest>
#include <QJsonDocument>
#include <QJsonObject>
#include <QEvent>
#include <QIcon>
#include <QDialogButtonBox>
#include <QVBoxLayout>
#include <QPushButton>
#include <QTimer>
#define STRINGIFYMAGIC(x) #x
#define STRINGIFY(x) STRINGIFYMAGIC(x)
FBAboutDialog::FBAboutDialog(QWidget *parent)
: QDialog(parent)
{
retranslateUi();
QIcon icon{QStringLiteral(":/icons/resources/org.firebird-emus.firebird-emu.png")};
iconLabel.setPixmap(icon.pixmap(icon.actualSize(QSize{64, 64})));
header.setTextInteractionFlags(Qt::TextBrowserInteraction);
header.setOpenExternalLinks(true);
update.setTextInteractionFlags(Qt::TextBrowserInteraction);
update.setOpenExternalLinks(true);
authors.setTextInteractionFlags(Qt::TextBrowserInteraction);
authors.setOpenExternalLinks(true);
connect(&okButton, SIGNAL(clicked(bool)), this, SLOT(close()));
okButton.setDefault(true);
updateButton.setAutoDefault(false);
connect(&updateButton, SIGNAL(clicked(bool)), this, SLOT(checkForUpdate()));
auto *buttonBox = new QDialogButtonBox(Qt::Horizontal);
buttonBox->addButton(&okButton, QDialogButtonBox::AcceptRole);
buttonBox->addButton(&updateButton, QDialogButtonBox::ActionRole);
auto *layout = new QVBoxLayout;
layout->addWidget(&header);
layout->addWidget(&update);
layout->addWidget(&authors);
layout->addWidget(buttonBox);
auto *hlayout = new QHBoxLayout(this);
hlayout->addWidget(&iconLabel);
hlayout->addLayout(layout);
}
void FBAboutDialog::changeEvent(QEvent* event)
{
if (event->type() == QEvent::LanguageChange)
retranslateUi();
QDialog::changeEvent(event);
}
void FBAboutDialog::retranslateUi()
{
setWindowTitle(tr("About Firebird"));
header.setText(tr("<h3>Firebird %1</h3>"
"<a href='https://github.com/nspire-emus/firebird'>On GitHub</a>").arg(QStringLiteral(STRINGIFY(FB_VERSION))));
authors.setText(tr( "Authors:<br>"
"Fabian Vogt (<a href='https://github.com/Vogtinator'>Vogtinator</a>)<br>"
"Adrien Bertrand (<a href='https://github.com/adriweb'>Adriweb</a>)<br>"
"Antonio Vasquez (<a href='https://github.com/antoniovazquezblanco'>antoniovazquezblanco</a>)<br>"
"Lionel Debroux (<a href='https://github.com/debrouxl'>debrouxl</a>)<br>"
"Denis Avashurov (<a href='https://github.com/denisps'>denisps</a>)<br>"
"Based on nspire_emu v0.70 by Goplat<br><br>"
"This work is licensed under the GPLv3.<br>"
"To view a copy of this license, visit <a href='https://www.gnu.org/licenses/gpl-3.0.html'>https://www.gnu.org/licenses/gpl-3.0.html</a>"));
update.setText(tr("Checking for update"));
okButton.setText(tr("Ok"));
updateButton.setText(tr("Check for Update"));
// If necessary, refresh the status text. Easiest way is to just check again.
if(isVisible() || checkSuccessful)
QTimer::singleShot(0, this, SLOT(checkForUpdate()));
}
void FBAboutDialog::checkForUpdate()
{
updateButton.setDisabled(true);
if(QStringLiteral(STRINGIFY(FB_VERSION)).contains(QStringLiteral("dev")))
{
update.setText(tr("No updates for -dev builds available."));
return;
}
checkSuccessful = false;
update.setText(tr("Checking for updates..."));
QNetworkRequest request(QUrl(QString::fromLatin1("https://api.github.com/repos/nspire-emus/firebird/releases/latest")));
reply = nam.get(request);
connect(reply, SIGNAL(finished()), this, SLOT(requestFinished()));
}
void FBAboutDialog::requestFinished()
{
reply->deleteLater();
updateButton.setDisabled(false);
/* toInt() returns 0 if conversion fails. That fits nicely already. */
int code = reply->attribute(QNetworkRequest::HttpStatusCodeAttribute).toInt();
auto response = QJsonDocument::fromJson(reply->readAll());
if(code != 200 || response.isEmpty())
{
update.setText(tr("Checking failed (%1)").arg(reply->errorString()));
return;
}
QString tag_name = response.object()[QLatin1String("tag_name")].toString(),
url = response.object()[QLatin1String("html_url")].toString(),
title = response.object()[QLatin1String("name")].toString();
if(tag_name == QStringLiteral("v" STRINGIFY(FB_VERSION)))
{
update.setText(tr("No newer version available."));
checkSuccessful = true;
}
else if(tag_name.at(0) == QLatin1Char('v'))
{
update.setText(tr("<b>Newer version (%1) available <a href='%2'>on GitHub</a>!</b>").arg(title.toHtmlEscaped()).arg(url.toHtmlEscaped()));
checkSuccessful = true;
}
else
update.setText(tr("Checking failed (invalid tag name)"));
}
void FBAboutDialog::setVisible(bool v)
{
QDialog::setVisible(v);
if(v && !checkSuccessful)
QTimer::singleShot(0, this, SLOT(checkForUpdate()));
}