2014-05-30 08:53:19 +00:00
|
|
|
/*
|
|
|
|
This file is part of Telegram Desktop,
|
2018-01-03 10:23:14 +00:00
|
|
|
the official desktop application for the Telegram messaging service.
|
2014-05-30 08:53:19 +00:00
|
|
|
|
2018-01-03 10:23:14 +00:00
|
|
|
For license and copyright information please follow this link:
|
|
|
|
https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
|
2014-05-30 08:53:19 +00:00
|
|
|
*/
|
2017-04-06 14:38:10 +00:00
|
|
|
#include "boxes/about_box.h"
|
2014-05-30 08:53:19 +00:00
|
|
|
|
2017-04-13 08:27:10 +00:00
|
|
|
#include "lang/lang_keys.h"
|
2014-05-30 08:53:19 +00:00
|
|
|
#include "mainwidget.h"
|
2016-04-12 21:31:28 +00:00
|
|
|
#include "mainwindow.h"
|
2017-04-06 14:38:10 +00:00
|
|
|
#include "boxes/confirm_box.h"
|
2016-11-11 13:46:04 +00:00
|
|
|
#include "ui/widgets/buttons.h"
|
2016-11-16 10:44:06 +00:00
|
|
|
#include "ui/widgets/labels.h"
|
2019-06-12 20:11:41 +00:00
|
|
|
#include "ui/text/text_utilities.h"
|
2020-04-28 08:26:12 +00:00
|
|
|
#include "core/file_utilities.h"
|
2019-09-17 16:13:12 +00:00
|
|
|
#include "base/platform/base_platform_info.h"
|
2017-12-11 08:56:43 +00:00
|
|
|
#include "core/click_handler_types.h"
|
2018-04-26 16:14:21 +00:00
|
|
|
#include "core/update_checker.h"
|
2019-09-18 11:19:05 +00:00
|
|
|
#include "styles/style_layers.h"
|
2019-06-12 20:11:41 +00:00
|
|
|
#include "styles/style_boxes.h"
|
|
|
|
|
2019-09-04 07:19:15 +00:00
|
|
|
#include <QtGui/QGuiApplication>
|
|
|
|
#include <QtGui/QClipboard>
|
|
|
|
|
2019-06-12 20:11:41 +00:00
|
|
|
namespace {
|
|
|
|
|
|
|
|
rpl::producer<TextWithEntities> Text1() {
|
2019-06-18 16:53:27 +00:00
|
|
|
return tr::lng_about_text1(
|
2019-06-12 20:11:41 +00:00
|
|
|
lt_api_link,
|
2019-06-18 16:53:27 +00:00
|
|
|
tr::lng_about_text1_api(
|
|
|
|
) | Ui::Text::ToLink("https://core.telegram.org/api"),
|
|
|
|
Ui::Text::WithEntities);
|
2019-06-12 20:11:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
rpl::producer<TextWithEntities> Text2() {
|
2019-06-18 16:53:27 +00:00
|
|
|
return tr::lng_about_text2(
|
2019-06-12 20:11:41 +00:00
|
|
|
lt_gpl_link,
|
2019-06-23 14:43:21 +00:00
|
|
|
rpl::single(Ui::Text::Link(
|
|
|
|
"GNU GPL",
|
|
|
|
"https://github.com/telegramdesktop/tdesktop/blob/master/LICENSE")),
|
2019-06-12 20:11:41 +00:00
|
|
|
lt_github_link,
|
2019-06-23 14:43:21 +00:00
|
|
|
rpl::single(Ui::Text::Link(
|
|
|
|
"GitHub",
|
|
|
|
"https://github.com/telegramdesktop/tdesktop")),
|
2019-06-18 16:53:27 +00:00
|
|
|
Ui::Text::WithEntities);
|
2019-06-12 20:11:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
rpl::producer<TextWithEntities> Text3() {
|
2019-06-18 16:53:27 +00:00
|
|
|
return tr::lng_about_text3(
|
2019-06-12 20:11:41 +00:00
|
|
|
lt_faq_link,
|
2019-06-18 16:53:27 +00:00
|
|
|
tr::lng_about_text3_faq() | Ui::Text::ToLink(telegramFaqLink()),
|
|
|
|
Ui::Text::WithEntities);
|
2019-06-12 20:11:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace
|
2015-12-03 18:16:34 +00:00
|
|
|
|
2016-12-13 17:07:56 +00:00
|
|
|
AboutBox::AboutBox(QWidget *parent)
|
2019-06-19 16:39:25 +00:00
|
|
|
: _version(this, tr::lng_about_version(tr::now, lt_version, currentVersionText()), st::aboutVersionLink)
|
2019-06-12 20:11:41 +00:00
|
|
|
, _text1(this, Text1(), st::aboutLabel)
|
|
|
|
, _text2(this, Text2(), st::aboutLabel)
|
|
|
|
, _text3(this, Text3(), st::aboutLabel) {
|
2016-12-13 17:07:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void AboutBox::prepare() {
|
2019-06-18 15:00:55 +00:00
|
|
|
setTitle(rpl::single(qsl("Telegram Desktop")));
|
2014-05-30 08:53:19 +00:00
|
|
|
|
2019-06-18 16:53:27 +00:00
|
|
|
addButton(tr::lng_close(), [this] { closeBox(); });
|
2014-05-30 08:53:19 +00:00
|
|
|
|
2019-06-12 20:11:41 +00:00
|
|
|
_text1->setLinksTrusted();
|
|
|
|
_text2->setLinksTrusted();
|
|
|
|
_text3->setLinksTrusted();
|
2016-12-13 17:07:56 +00:00
|
|
|
|
|
|
|
_version->setClickedCallback([this] { showVersionHistory(); });
|
2014-05-30 08:53:19 +00:00
|
|
|
|
2016-12-13 17:07:56 +00:00
|
|
|
setDimensions(st::aboutWidth, st::aboutTextTop + _text1->height() + st::aboutSkip + _text2->height() + st::aboutSkip + _text3->height());
|
2014-05-30 08:53:19 +00:00
|
|
|
}
|
|
|
|
|
2015-10-12 21:02:10 +00:00
|
|
|
void AboutBox::resizeEvent(QResizeEvent *e) {
|
2016-12-13 17:07:56 +00:00
|
|
|
BoxContent::resizeEvent(e);
|
|
|
|
|
|
|
|
_version->moveToLeft(st::boxPadding.left(), st::aboutVersionTop);
|
|
|
|
_text1->moveToLeft(st::boxPadding.left(), st::aboutTextTop);
|
2016-11-11 13:46:04 +00:00
|
|
|
_text2->moveToLeft(st::boxPadding.left(), _text1->y() + _text1->height() + st::aboutSkip);
|
|
|
|
_text3->moveToLeft(st::boxPadding.left(), _text2->y() + _text2->height() + st::aboutSkip);
|
2015-10-12 21:02:10 +00:00
|
|
|
}
|
|
|
|
|
2016-12-13 17:07:56 +00:00
|
|
|
void AboutBox::showVersionHistory() {
|
2018-09-26 14:58:09 +00:00
|
|
|
if (cRealAlphaVersion()) {
|
2016-11-22 09:48:13 +00:00
|
|
|
auto url = qsl("https://tdesktop.com/");
|
2019-06-03 14:41:23 +00:00
|
|
|
if (Platform::IsWindows()) {
|
|
|
|
url += qsl("win/%1.zip");
|
2019-11-05 12:27:42 +00:00
|
|
|
} else if (Platform::IsOSXBuild()) {
|
|
|
|
url += qsl("osx/%1.zip");
|
2019-06-03 14:41:23 +00:00
|
|
|
} else if (Platform::IsMac()) {
|
|
|
|
url += qsl("mac/%1.zip");
|
|
|
|
} else if (Platform::IsLinux32Bit()) {
|
|
|
|
url += qsl("linux32/%1.tar.xz");
|
|
|
|
} else if (Platform::IsLinux64Bit()) {
|
|
|
|
url += qsl("linux/%1.tar.xz");
|
|
|
|
} else {
|
|
|
|
Unexpected("Platform value.");
|
2015-12-03 18:16:34 +00:00
|
|
|
}
|
2018-09-26 14:58:09 +00:00
|
|
|
url = url.arg(qsl("talpha%1_%2").arg(cRealAlphaVersion()).arg(Core::countAlphaVersionSignature(cRealAlphaVersion())));
|
2015-12-03 18:16:34 +00:00
|
|
|
|
2019-09-04 07:19:15 +00:00
|
|
|
QGuiApplication::clipboard()->setText(url);
|
2015-12-03 18:16:34 +00:00
|
|
|
|
2018-09-26 14:58:09 +00:00
|
|
|
Ui::show(Box<InformBox>("The link to the current private alpha version of Telegram Desktop was copied to the clipboard."));
|
2015-12-03 18:16:34 +00:00
|
|
|
} else {
|
2020-04-28 08:26:12 +00:00
|
|
|
File::OpenUrl(qsl("https://desktop.telegram.org/changelog"));
|
2015-12-03 18:16:34 +00:00
|
|
|
}
|
2014-05-30 08:53:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void AboutBox::keyPressEvent(QKeyEvent *e) {
|
|
|
|
if (e->key() == Qt::Key_Enter || e->key() == Qt::Key_Return) {
|
2016-12-13 17:07:56 +00:00
|
|
|
closeBox();
|
2015-04-02 10:33:19 +00:00
|
|
|
} else {
|
2016-12-13 17:07:56 +00:00
|
|
|
BoxContent::keyPressEvent(e);
|
2014-05-30 08:53:19 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-10-12 21:02:10 +00:00
|
|
|
QString telegramFaqLink() {
|
2018-12-17 06:12:44 +00:00
|
|
|
const auto result = qsl("https://telegram.org/faq");
|
|
|
|
const auto langpacked = [&](const char *language) {
|
|
|
|
return result + '/' + language;
|
|
|
|
};
|
|
|
|
const auto current = Lang::Current().id();
|
|
|
|
for (const auto language : { "de", "es", "it", "ko" }) {
|
|
|
|
if (current.startsWith(QLatin1String(language))) {
|
|
|
|
return langpacked(language);
|
2015-10-12 21:02:10 +00:00
|
|
|
}
|
|
|
|
}
|
2018-12-17 06:12:44 +00:00
|
|
|
if (current.startsWith(qstr("pt-br"))) {
|
|
|
|
return langpacked("br");
|
|
|
|
}
|
2015-10-12 21:02:10 +00:00
|
|
|
return result;
|
2016-01-31 16:13:51 +00:00
|
|
|
}
|
2016-11-16 10:44:06 +00:00
|
|
|
|
|
|
|
QString currentVersionText() {
|
2018-11-08 05:50:18 +00:00
|
|
|
auto result = QString::fromLatin1(AppVersionStr);
|
2018-09-26 14:58:09 +00:00
|
|
|
if (cAlphaVersion()) {
|
|
|
|
result += qsl(" alpha %1").arg(cAlphaVersion() % 1000);
|
2018-09-26 18:08:11 +00:00
|
|
|
} else if (AppBetaVersion) {
|
|
|
|
result += " beta";
|
2016-11-16 10:44:06 +00:00
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|