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.hpp"
|
|
|
|
#include "common.hpp"
|
|
|
|
#include "strings.hpp"
|
|
|
|
#include <string_view>
|
|
|
|
#include "configuration.hpp"
|
|
|
|
#include "obs/obs-tools.hpp"
|
|
|
|
#include "plugin.hpp"
|
|
|
|
|
|
|
|
#include <obs-frontend-api.h>
|
|
|
|
|
|
|
|
// Translation Keys
|
|
|
|
constexpr std::string_view _i18n_prefix = "StreamFX::";
|
|
|
|
constexpr std::string_view _i18n_menu = "UI.Menu";
|
|
|
|
constexpr std::string_view _i18n_menu_report_issue = "UI.Menu.ReportIssue";
|
|
|
|
constexpr std::string_view _i18n_menu_request_help = "UI.Menu.RequestHelp";
|
|
|
|
constexpr std::string_view _i18n_menu_website = "UI.Menu.Website";
|
|
|
|
constexpr std::string_view _i18n_menu_discord = "UI.Menu.Discord";
|
|
|
|
constexpr std::string_view _i18n_menu_github = "UI.Menu.Github";
|
|
|
|
constexpr std::string_view _i18n_menu_about = "UI.Menu.About";
|
|
|
|
|
|
|
|
// Configuration
|
|
|
|
constexpr std::string_view _cfg_have_shown_about = "UI.HaveShownAboutStreamFX";
|
|
|
|
|
|
|
|
// URLs
|
|
|
|
constexpr std::string_view _url_report_issue = "https://github.com/Xaymar/obs-StreamFX/issues/new?template=issue.md";
|
|
|
|
constexpr std::string_view _url_request_help = "https://github.com/Xaymar/obs-StreamFX/issues/new?template=help.md";
|
|
|
|
constexpr std::string_view _url_website = "https://streamfx.xaymar.com";
|
2020-07-25 14:51:22 +00:00
|
|
|
constexpr std::string_view _url_discord = "https://discord.gg/rjkxERs";
|
2020-04-05 16:52:06 +00:00
|
|
|
constexpr std::string_view _url_github = "https://github.com/Xaymar/obs-StreamFX";
|
|
|
|
|
2020-04-24 22:57:38 +00:00
|
|
|
inline void qt_init_resource()
|
|
|
|
{
|
|
|
|
Q_INIT_RESOURCE(streamfx);
|
|
|
|
}
|
|
|
|
|
|
|
|
inline void qt_cleanup_resource()
|
|
|
|
{
|
|
|
|
Q_CLEANUP_RESOURCE(streamfx);
|
|
|
|
}
|
|
|
|
|
2020-04-05 16:52:06 +00:00
|
|
|
bool streamfx::ui::handler::have_shown_about_streamfx(bool shown)
|
|
|
|
{
|
2020-07-26 16:32:53 +00:00
|
|
|
auto config = streamfx::configuration::instance();
|
|
|
|
auto data = config->get();
|
2020-04-05 16:52:06 +00:00
|
|
|
if (shown) {
|
2020-07-26 16:32:53 +00:00
|
|
|
obs_data_set_bool(data.get(), _cfg_have_shown_about.data(), true);
|
2020-04-05 16:52:06 +00:00
|
|
|
}
|
2020-07-26 16:32:53 +00:00
|
|
|
if (config->is_different_version()) {
|
2020-04-05 16:52:06 +00:00
|
|
|
return false;
|
|
|
|
} else {
|
2020-07-26 16:32:53 +00:00
|
|
|
return obs_data_get_bool(data.get(), _cfg_have_shown_about.data());
|
2020-04-05 16:52:06 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
streamfx::ui::handler::handler()
|
|
|
|
: QObject(), _menu_action(), _menu(),
|
|
|
|
|
|
|
|
_report_issue(), _request_help(),
|
|
|
|
|
|
|
|
_link_website(), _link_discord(), _link_github(),
|
|
|
|
|
2021-01-21 02:00:44 +00:00
|
|
|
_about_action(), _about_dialog(),
|
2020-04-05 16:52:06 +00:00
|
|
|
|
2021-02-02 20:48:17 +00:00
|
|
|
_translator()
|
|
|
|
#ifdef ENABLE_UPDATER
|
|
|
|
,
|
|
|
|
_updater()
|
|
|
|
#endif
|
2021-01-21 02:00:44 +00:00
|
|
|
{
|
2020-04-05 16:52:06 +00:00
|
|
|
obs_frontend_add_event_callback(frontend_event_handler, this);
|
|
|
|
}
|
|
|
|
|
|
|
|
streamfx::ui::handler::~handler()
|
|
|
|
{
|
|
|
|
obs_frontend_remove_event_callback(frontend_event_handler, this);
|
|
|
|
}
|
|
|
|
|
|
|
|
void streamfx::ui::handler::frontend_event_handler(obs_frontend_event event, void* private_data)
|
|
|
|
{
|
|
|
|
streamfx::ui::handler* ptr = reinterpret_cast<streamfx::ui::handler*>(private_data);
|
|
|
|
switch (event) {
|
|
|
|
case OBS_FRONTEND_EVENT_FINISHED_LOADING:
|
|
|
|
ptr->on_obs_loaded();
|
|
|
|
break;
|
2021-01-21 02:00:44 +00:00
|
|
|
case OBS_FRONTEND_EVENT_EXIT:
|
|
|
|
ptr->on_obs_exit();
|
|
|
|
break;
|
2020-04-05 16:52:06 +00:00
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void streamfx::ui::handler::on_obs_loaded()
|
|
|
|
{
|
2021-01-21 02:00:44 +00:00
|
|
|
// Initialize the required Qt resources.
|
|
|
|
qt_init_resource();
|
|
|
|
|
|
|
|
// Add our own translation helper to the Qt Application.
|
|
|
|
_translator = new streamfx::ui::translator(this);
|
|
|
|
QCoreApplication::installTranslator(_translator);
|
|
|
|
|
|
|
|
// Create the 'About StreamFX' dialog.
|
|
|
|
_about_dialog = new streamfx::ui::about();
|
|
|
|
|
|
|
|
{ // Create and build the StreamFX menu
|
|
|
|
_menu = new QMenu(reinterpret_cast<QWidget*>(obs_frontend_get_main_window()));
|
|
|
|
|
|
|
|
// Report an Issue
|
|
|
|
_report_issue = _menu->addAction(QString::fromUtf8(D_TRANSLATE(_i18n_menu_report_issue.data())));
|
|
|
|
connect(_report_issue, &QAction::triggered, this, &streamfx::ui::handler::on_action_report_issue);
|
|
|
|
|
|
|
|
// Request help
|
|
|
|
_request_help = _menu->addAction(QString::fromUtf8(D_TRANSLATE(_i18n_menu_request_help.data())));
|
|
|
|
connect(_request_help, &QAction::triggered, this, &streamfx::ui::handler::on_action_request_help);
|
|
|
|
|
|
|
|
_menu->addSeparator();
|
|
|
|
|
|
|
|
// Website
|
|
|
|
_link_website = _menu->addAction(QString::fromUtf8(D_TRANSLATE(_i18n_menu_website.data())));
|
|
|
|
connect(_link_website, &QAction::triggered, this, &streamfx::ui::handler::on_action_website);
|
|
|
|
|
|
|
|
// Discord
|
|
|
|
_link_discord = _menu->addAction(QString::fromUtf8(D_TRANSLATE(_i18n_menu_discord.data())));
|
|
|
|
connect(_link_discord, &QAction::triggered, this, &streamfx::ui::handler::on_action_discord);
|
|
|
|
|
|
|
|
// Github
|
|
|
|
_link_github = _menu->addAction(QString::fromUtf8(D_TRANSLATE(_i18n_menu_github.data())));
|
|
|
|
connect(_link_github, &QAction::triggered, this, &streamfx::ui::handler::on_action_github);
|
|
|
|
|
|
|
|
// Create the updater.
|
|
|
|
#ifdef ENABLE_UPDATER
|
|
|
|
_updater = streamfx::ui::updater::instance(_menu);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
_menu->addSeparator();
|
|
|
|
|
|
|
|
// About
|
|
|
|
_about_action = _menu->addAction(QString::fromUtf8(D_TRANSLATE(_i18n_menu_about.data())));
|
|
|
|
connect(_about_action, &QAction::triggered, this, &streamfx::ui::handler::on_action_about);
|
|
|
|
}
|
|
|
|
|
2020-05-30 23:24:16 +00:00
|
|
|
// Add an actual Menu entry.
|
|
|
|
QMainWindow* main_widget = reinterpret_cast<QMainWindow*>(obs_frontend_get_main_window());
|
|
|
|
_menu_action = new QAction(main_widget);
|
2020-04-05 16:52:06 +00:00
|
|
|
_menu_action->setMenu(_menu);
|
2020-05-30 23:24:16 +00:00
|
|
|
_menu_action->setText(QString::fromUtf8(D_TRANSLATE(_i18n_menu.data())));
|
|
|
|
main_widget->menuBar()->addAction(_menu_action);
|
|
|
|
|
|
|
|
// Show the 'About StreamFX' dialog if that has not happened yet.
|
|
|
|
if (!have_shown_about_streamfx()) {
|
|
|
|
// Automatically show it if it has not yet been shown.
|
|
|
|
_about_dialog->show();
|
|
|
|
have_shown_about_streamfx(true);
|
|
|
|
}
|
2021-01-21 01:42:56 +00:00
|
|
|
|
|
|
|
// Let the Updater start its work.
|
2021-02-02 20:48:17 +00:00
|
|
|
|
|
|
|
#ifdef ENABLE_UPDATER
|
2021-01-21 01:42:56 +00:00
|
|
|
this->_updater->obs_ready();
|
2021-02-02 20:48:17 +00:00
|
|
|
#endif
|
2020-04-05 16:52:06 +00:00
|
|
|
}
|
|
|
|
|
2021-01-21 02:00:44 +00:00
|
|
|
void streamfx::ui::handler::on_obs_exit()
|
|
|
|
{
|
|
|
|
// Remove translator.
|
|
|
|
QCoreApplication::removeTranslator(_translator);
|
|
|
|
|
|
|
|
// Clean up any Qt resources we added.
|
|
|
|
qt_cleanup_resource();
|
|
|
|
}
|
|
|
|
|
2020-04-05 16:52:06 +00:00
|
|
|
void streamfx::ui::handler::on_action_report_issue(bool)
|
|
|
|
{
|
|
|
|
QDesktopServices::openUrl(QUrl(QString::fromUtf8(_url_report_issue.data())));
|
|
|
|
}
|
|
|
|
|
|
|
|
void streamfx::ui::handler::on_action_request_help(bool)
|
|
|
|
{
|
|
|
|
QDesktopServices::openUrl(QUrl(QString::fromUtf8(_url_request_help.data())));
|
|
|
|
}
|
|
|
|
|
|
|
|
void streamfx::ui::handler::on_action_website(bool)
|
|
|
|
{
|
|
|
|
QDesktopServices::openUrl(QUrl(QString::fromUtf8(_url_website.data())));
|
|
|
|
}
|
|
|
|
|
|
|
|
void streamfx::ui::handler::on_action_discord(bool)
|
|
|
|
{
|
|
|
|
QDesktopServices::openUrl(QUrl(QString::fromUtf8(_url_discord.data())));
|
|
|
|
}
|
|
|
|
|
|
|
|
void streamfx::ui::handler::on_action_github(bool)
|
|
|
|
{
|
|
|
|
QDesktopServices::openUrl(QUrl(QString::fromUtf8(_url_github.data())));
|
|
|
|
}
|
|
|
|
|
|
|
|
void streamfx::ui::handler::on_action_about(bool checked)
|
|
|
|
{
|
|
|
|
_about_dialog->show();
|
|
|
|
}
|
|
|
|
|
|
|
|
static std::shared_ptr<streamfx::ui::handler> _handler_singleton;
|
|
|
|
|
|
|
|
void streamfx::ui::handler::initialize()
|
|
|
|
{
|
|
|
|
_handler_singleton = std::make_shared<streamfx::ui::handler>();
|
|
|
|
}
|
|
|
|
|
|
|
|
void streamfx::ui::handler::finalize()
|
|
|
|
{
|
|
|
|
_handler_singleton.reset();
|
|
|
|
}
|
|
|
|
|
|
|
|
std::shared_ptr<streamfx::ui::handler> streamfx::ui::handler::get()
|
|
|
|
{
|
|
|
|
return _handler_singleton;
|
|
|
|
}
|
|
|
|
|
|
|
|
streamfx::ui::translator::translator(QObject* parent) {}
|
|
|
|
|
|
|
|
streamfx::ui::translator::~translator() {}
|
|
|
|
|
|
|
|
QString streamfx::ui::translator::translate(const char* context, const char* sourceText, const char* disambiguation,
|
|
|
|
int n) const
|
|
|
|
{
|
2020-09-10 07:00:03 +00:00
|
|
|
if (sourceText) {
|
|
|
|
std::string_view sourceView{sourceText};
|
|
|
|
if (sourceView.substr(0, _i18n_prefix.length()) == _i18n_prefix) {
|
|
|
|
return QString::fromUtf8(D_TRANSLATE(sourceView.substr(_i18n_prefix.length()).data()));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (disambiguation) {
|
|
|
|
std::string_view disambiguationView{disambiguation};
|
|
|
|
if (disambiguationView.substr(0, _i18n_prefix.length()) == _i18n_prefix) {
|
|
|
|
return QString::fromUtf8(D_TRANSLATE(disambiguationView.substr(_i18n_prefix.length()).data()));
|
|
|
|
}
|
2020-04-05 16:52:06 +00:00
|
|
|
}
|
|
|
|
return QString();
|
|
|
|
}
|