2020-04-05 16:52:06 +00:00
|
|
|
/*
|
|
|
|
* Modern effects for a modern Streamer
|
|
|
|
* Copyright (C) 2020 Michael Fabian Dirks
|
|
|
|
*
|
|
|
|
* This program 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 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program 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 this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "ui-about-entry.hpp"
|
|
|
|
|
|
|
|
constexpr std::string_view i18n_role_contributor = "UI.About.Role.Contributor";
|
|
|
|
constexpr std::string_view i18n_role_translator = "UI.About.Role.Translator";
|
|
|
|
constexpr std::string_view i18n_role_family = "UI.About.Role.Family";
|
|
|
|
constexpr std::string_view i18n_role_friend = "UI.About.Role.Friend";
|
|
|
|
constexpr std::string_view i18n_role_supporter_patreon = "UI.About.Role.Supporter.Patreon";
|
|
|
|
constexpr std::string_view i18n_role_supporter_github = "UI.About.Role.Supporter.Github";
|
|
|
|
constexpr std::string_view i18n_role_supporter_twitch = "UI.About.Role.Supporter.Twitch";
|
|
|
|
constexpr std::string_view i18n_role_creator = "UI.About.Role.Creator";
|
|
|
|
|
2021-04-19 15:28:38 +00:00
|
|
|
streamfx::ui::about_entry::about_entry(QWidget* parent, streamfx::ui::about::entry& entry) : QWidget(parent), _link()
|
2020-04-05 16:52:06 +00:00
|
|
|
{
|
|
|
|
setupUi(this);
|
|
|
|
|
|
|
|
name->setText(QString::fromStdString(entry.name));
|
|
|
|
switch (entry.role) {
|
|
|
|
case streamfx::ui::about::role_type::NONE:
|
|
|
|
title->setText(QString::fromStdString(entry.role_custom));
|
|
|
|
break;
|
|
|
|
case streamfx::ui::about::role_type::CONTRIBUTOR:
|
|
|
|
title->setText(D_TRANSLATE(i18n_role_contributor.data()));
|
|
|
|
break;
|
|
|
|
case streamfx::ui::about::role_type::TRANSLATOR:
|
|
|
|
title->setText(D_TRANSLATE(i18n_role_translator.data()));
|
|
|
|
break;
|
|
|
|
case streamfx::ui::about::role_type::FAMILY: {
|
|
|
|
const char* txt = D_TRANSLATE(i18n_role_family.data());
|
|
|
|
std::vector<char> buf(2048);
|
|
|
|
snprintf(buf.data(), buf.size(), txt, entry.role_custom.c_str());
|
|
|
|
title->setText(QString::fromUtf8(buf.data()));
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case streamfx::ui::about::role_type::FRIEND: {
|
|
|
|
const char* txt = D_TRANSLATE(i18n_role_friend.data());
|
|
|
|
std::vector<char> buf(2048);
|
|
|
|
snprintf(buf.data(), buf.size(), txt, entry.role_custom.c_str());
|
|
|
|
title->setText(QString::fromUtf8(buf.data()));
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case streamfx::ui::about::role_type::PATREON_SUPPORTER:
|
|
|
|
title->setText(D_TRANSLATE(i18n_role_supporter_patreon.data()));
|
|
|
|
break;
|
|
|
|
case streamfx::ui::about::role_type::GITHUB_SUPPORTER:
|
|
|
|
title->setText(D_TRANSLATE(i18n_role_supporter_github.data()));
|
|
|
|
break;
|
|
|
|
case streamfx::ui::about::role_type::TWITCH_SUPPORTER:
|
|
|
|
title->setText(D_TRANSLATE(i18n_role_supporter_twitch.data()));
|
|
|
|
break;
|
|
|
|
case streamfx::ui::about::role_type::CREATOR:
|
|
|
|
title->setText(D_TRANSLATE(i18n_role_creator.data()));
|
|
|
|
break;
|
2020-07-12 16:41:50 +00:00
|
|
|
default:
|
|
|
|
break;
|
2020-04-05 16:52:06 +00:00
|
|
|
}
|
|
|
|
|
2021-04-19 15:28:38 +00:00
|
|
|
if (!entry.link.empty()) {
|
|
|
|
this->setCursor(Qt::PointingHandCursor);
|
|
|
|
_link = QUrl(QString::fromUtf8(entry.link.c_str()));
|
2020-04-05 16:52:06 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
streamfx::ui::about_entry::~about_entry() {}
|
|
|
|
|
2021-04-19 15:28:38 +00:00
|
|
|
void streamfx::ui::about_entry::mousePressEvent(QMouseEvent* event)
|
2020-04-05 16:52:06 +00:00
|
|
|
{
|
2021-04-19 15:28:38 +00:00
|
|
|
if (_link.isEmpty())
|
|
|
|
return;
|
2020-04-05 16:52:06 +00:00
|
|
|
|
2021-04-19 15:28:38 +00:00
|
|
|
if (event->button() == Qt::LeftButton) {
|
|
|
|
QDesktopServices::openUrl(_link);
|
2020-04-05 16:52:06 +00:00
|
|
|
}
|
|
|
|
}
|