/* * Strawberry Music Player * This file was part of Clementine. * Copyright 2010, David Sansome * Copyright 2013-2021, Jonas Kvinge * * Strawberry is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * Strawberry is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with Strawberry. If not, see . * */ #include "config.h" #include #include #include #include #include #include #include #include #include #include #include #include "about.h" #include "ui_about.h" About::About(QWidget *parent) : QDialog(parent), ui_{} { ui_.setupUi(this); setWindowFlags(windowFlags()|Qt::WindowStaysOnTopHint); setWindowTitle(tr("About Strawberry")); strawberry_authors_ \ << Person(QStringLiteral("Jonas Kvinge")); strawberry_contributors_ \ << Person(QStringLiteral("Gavin D. Howard")) << Person(QStringLiteral("Martin Delille")); clementine_authors_ << Person(QStringLiteral("David Sansome")) << Person(QStringLiteral("John Maguire")) << Person(QStringLiteral("Paweł Bara")) << Person(QStringLiteral("Arnaud Bienner")); clementine_contributors_ \ << Person(QStringLiteral("Jakub Stachowski")) << Person(QStringLiteral("Paul Cifarelli")) << Person(QStringLiteral("Felipe Rivera")) << Person(QStringLiteral("Alexander Peitz")) << Person(QStringLiteral("Andreas Muttscheller")) << Person(QStringLiteral("Mark Furneaux")) << Person(QStringLiteral("Florian Bigard")) << Person(QStringLiteral("Alex Bikadorov")) << Person(QStringLiteral("Mattias Andersson")) << Person(QStringLiteral("Alan Briolat")) << Person(QStringLiteral("Arun Narayanankutty")) << Person(QStringLiteral("Bartłomiej Burdukiewicz")) << Person(QStringLiteral("Andre Siviero")) << Person(QStringLiteral("Santiago Gil")) << Person(QStringLiteral("Tyler Rhodes")) << Person(QStringLiteral("Vikram Ambrose")) << Person(QStringLiteral("David Guillen")) << Person(QStringLiteral("Krzysztof Sobiecki")) << Person(QStringLiteral("Valeriy Malov")) << Person(QStringLiteral("Nick Lanham")); strawberry_thanks_ \ << Person(QStringLiteral("Mark Kretschmann")) << Person(QStringLiteral("Max Howell")) << Person(QStringLiteral("Artur Rona")) << Person(QStringLiteral("Robert-André Mauchin")) << Person(QStringLiteral("Thomas Pierson")) << Person(QStringLiteral("Fabio Loli")); QFont title_font; title_font.setBold(true); title_font.setPointSize(title_font.pointSize() + 4); ui_.label_title->setFont(title_font); ui_.label_title->setText(windowTitle()); ui_.label_text->setText(MainHtml()); ui_.text_contributors->document()->setDefaultStyleSheet(QStringLiteral("a {color: %1; }").arg(palette().text().color().name())); ui_.text_contributors->setText(ContributorsHtml()); ui_.buttonBox->button(QDialogButtonBox::Close)->setShortcut(QKeySequence::Close); } QString About::MainHtml() const { QString ret; ret += QStringLiteral("

"); ret += tr("Version %1").arg(QCoreApplication::applicationVersion()); ret += QStringLiteral("

"); ret += QStringLiteral("

"); ret += tr("Strawberry is a music player and music collection organizer."); ret += QStringLiteral("
"); ret += tr("It is a fork of Clementine released in 2018 aimed at music collectors and audiophiles."); ret += QStringLiteral("

"); ret += QStringLiteral("

"); ret += tr("Strawberry is free software released under GPL. The source code is available on %1").arg(QStringLiteral("GitHub.").arg(palette().text().color().name())); ret += QStringLiteral("
"); ret += tr("You should have received a copy of the GNU General Public License along with this program. If not, see %1").arg(QStringLiteral("http://www.gnu.org/licenses/").arg(palette().text().color().name())); ret += QStringLiteral("

"); ret += QStringLiteral("

"); ret += tr("If you like Strawberry and can make use of it, consider sponsoring or donating."); ret += QStringLiteral("
"); ret += tr("You can sponsor the author on %1. You can also make a one-time payment through %2.").arg( QStringLiteral("GitHub sponsors").arg(palette().text().color().name()), QStringLiteral("paypal.me/jonaskvinge").arg(palette().text().color().name()) ); ret += QStringLiteral("

"); return ret; } QString About::ContributorsHtml() const { QString ret; ret += QStringLiteral("

"); ret += QLatin1String(""); ret += tr("Author and maintainer"); ret += QLatin1String(""); for (const Person &person : strawberry_authors_) { ret += QStringLiteral("
") + PersonToHtml(person); } ret += QStringLiteral("

"); ret += QStringLiteral("

"); ret += QLatin1String(""); ret += tr("Contributors"); ret += QLatin1String(""); for (const Person &person : strawberry_contributors_) { ret += QStringLiteral("
") + PersonToHtml(person); } ret += QStringLiteral("

"); ret += QStringLiteral("

"); ret += QLatin1String(""); ret += tr("Clementine authors"); ret += QLatin1String(""); for (const Person &person : clementine_authors_) { ret += QStringLiteral("
") + PersonToHtml(person); } ret += QStringLiteral("

"); ret += QStringLiteral("

"); ret += QLatin1String(""); ret += tr("Clementine contributors"); ret += QLatin1String(""); for (const Person &person : clementine_contributors_) { ret += QStringLiteral("
") + PersonToHtml(person); } ret += QStringLiteral("

"); ret += QStringLiteral("

"); ret += QLatin1String(""); ret += tr("Thanks to"); ret += QLatin1String(""); for (const Person &person : strawberry_thanks_) { ret += QStringLiteral("
") + PersonToHtml(person); } ret += QStringLiteral("

"); ret += QStringLiteral("

"); ret += tr("Thanks to all the other Amarok and Clementine contributors."); ret += QStringLiteral("

"); return ret; } QString About::PersonToHtml(const Person &person) { if (person.email.isEmpty()) { return person.name; } else { return QStringLiteral("%1 <%3>").arg(person.name, person.email, person.email); } }