mirror of
https://github.com/WarmUpTill/SceneSwitcher.git
synced 2026-03-25 03:15:33 -05:00
The "core" macro conditions and actions have been extracted out to the "base" plugin. The library now mostly contains functionality which is required across all plugins and (e.g. definitions for macro segments). The goal is to reduce the complexity and cross-dependencies and group the source files in a better way. This should relsove the "library limit of 65535 objects exceeded" build issue occuring in some Windows build environments.
122 lines
3.1 KiB
C++
122 lines
3.1 KiB
C++
#include "macro-action-systray.hpp"
|
|
#include "utility.hpp"
|
|
|
|
namespace advss {
|
|
|
|
const std::string MacroActionSystray::id = "systray_notification";
|
|
|
|
bool MacroActionSystray::_registered = MacroActionFactory::Register(
|
|
MacroActionSystray::id,
|
|
{MacroActionSystray::Create, MacroActionSystrayEdit::Create,
|
|
"AdvSceneSwitcher.action.systray"});
|
|
|
|
bool MacroActionSystray::PerformAction()
|
|
{
|
|
if (_lastPath != std::string(_iconPath)) {
|
|
_lastPath = _iconPath;
|
|
_icon = QIcon(QString::fromStdString(_iconPath));
|
|
}
|
|
DisplayTrayMessage(QString::fromStdString(_title),
|
|
QString::fromStdString(_message), _icon);
|
|
return true;
|
|
}
|
|
|
|
void MacroActionSystray::LogAction() const
|
|
{
|
|
vblog(LOG_INFO, "display systray message \"%s\":\n%s", _title.c_str(),
|
|
_message.c_str());
|
|
}
|
|
|
|
bool MacroActionSystray::Save(obs_data_t *obj) const
|
|
{
|
|
MacroAction::Save(obj);
|
|
_message.Save(obj, "message");
|
|
_title.Save(obj, "title");
|
|
_iconPath.Save(obj, "icon");
|
|
obs_data_set_int(obj, "version", 1);
|
|
return true;
|
|
}
|
|
|
|
bool MacroActionSystray::Load(obs_data_t *obj)
|
|
{
|
|
MacroAction::Load(obj);
|
|
_message.Load(obj, "message");
|
|
_title.Load(obj, "title");
|
|
_iconPath.Load(obj, "icon");
|
|
if (!obs_data_has_user_value(obj, "version")) {
|
|
_title = obs_module_text("AdvSceneSwitcher.pluginName");
|
|
}
|
|
return true;
|
|
}
|
|
|
|
MacroActionSystrayEdit::MacroActionSystrayEdit(
|
|
QWidget *parent, std::shared_ptr<MacroActionSystray> entryData)
|
|
: QWidget(parent),
|
|
_message(new VariableLineEdit(this)),
|
|
_title(new VariableLineEdit(this)),
|
|
_iconPath(new FileSelection())
|
|
{
|
|
_iconPath->setToolTip(
|
|
obs_module_text("AdvSceneSwitcher.action.systray.iconHint"));
|
|
|
|
QWidget::connect(_message, SIGNAL(editingFinished()), this,
|
|
SLOT(MessageChanged()));
|
|
QWidget::connect(_title, SIGNAL(editingFinished()), this,
|
|
SLOT(TitleChanged()));
|
|
QWidget::connect(_iconPath, SIGNAL(PathChanged(const QString &)), this,
|
|
SLOT(IconPathChanged(const QString &)));
|
|
|
|
auto layout = new QGridLayout();
|
|
layout->addWidget(new QLabel(obs_module_text(
|
|
"AdvSceneSwitcher.action.systray.title")),
|
|
0, 0);
|
|
layout->addWidget(_title, 0, 1);
|
|
layout->addWidget(new QLabel(obs_module_text(
|
|
"AdvSceneSwitcher.action.systray.message")),
|
|
1, 0);
|
|
layout->addWidget(_message, 1, 1);
|
|
layout->addWidget(new QLabel(obs_module_text(
|
|
"AdvSceneSwitcher.action.systray.icon")),
|
|
2, 0);
|
|
layout->addWidget(_iconPath, 2, 1);
|
|
setLayout(layout);
|
|
|
|
_entryData = entryData;
|
|
_message->setText(_entryData->_message);
|
|
_title->setText(_entryData->_title);
|
|
_iconPath->SetPath(_entryData->_iconPath);
|
|
_loading = false;
|
|
}
|
|
|
|
void MacroActionSystrayEdit::TitleChanged()
|
|
{
|
|
if (_loading || !_entryData) {
|
|
return;
|
|
}
|
|
|
|
auto lock = LockContext();
|
|
_entryData->_title = _title->text().toStdString();
|
|
}
|
|
|
|
void MacroActionSystrayEdit::IconPathChanged(const QString &text)
|
|
{
|
|
if (_loading || !_entryData) {
|
|
return;
|
|
}
|
|
|
|
auto lock = LockContext();
|
|
_entryData->_iconPath = text.toStdString();
|
|
}
|
|
|
|
void MacroActionSystrayEdit::MessageChanged()
|
|
{
|
|
if (_loading || !_entryData) {
|
|
return;
|
|
}
|
|
|
|
auto lock = LockContext();
|
|
_entryData->_message = _message->text().toStdString();
|
|
}
|
|
|
|
} // namespace advss
|