mirror of
https://github.com/WarmUpTill/SceneSwitcher.git
synced 2026-03-21 17:34:57 -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.
141 lines
3.1 KiB
C++
141 lines
3.1 KiB
C++
#include "macro-segment-selection.hpp"
|
|
#include "advanced-scene-switcher.hpp"
|
|
#include "obs-module-helper.hpp"
|
|
#include "plugin-state-helpers.hpp"
|
|
#include "utility.hpp"
|
|
|
|
namespace advss {
|
|
|
|
MacroSegmentSelection::MacroSegmentSelection(QWidget *parent, Type type,
|
|
bool allowVariables)
|
|
: QWidget(parent),
|
|
_index(new VariableSpinBox()),
|
|
_description(new QLabel()),
|
|
_type(type)
|
|
{
|
|
_index->setMinimum(0);
|
|
_index->setMaximum(99);
|
|
_index->specialValueText("-");
|
|
if (!allowVariables) {
|
|
_index->DisableVariableSelection();
|
|
}
|
|
SetupDescription();
|
|
|
|
QWidget::connect(
|
|
_index,
|
|
SIGNAL(NumberVariableChanged(const NumberVariable<int> &)),
|
|
this, SLOT(IndexChanged(const NumberVariable<int> &)));
|
|
QWidget::connect(window(), SIGNAL(MacroSegmentOrderChanged()), this,
|
|
SLOT(MacroSegmentOrderChanged()));
|
|
|
|
auto layout = new QHBoxLayout;
|
|
layout->setContentsMargins(0, 0, 0, 0);
|
|
layout->addWidget(_index);
|
|
layout->addWidget(_description);
|
|
setLayout(layout);
|
|
}
|
|
|
|
void MacroSegmentSelection::SetMacro(const std::shared_ptr<Macro> ¯o)
|
|
{
|
|
_macro = macro.get();
|
|
SetupDescription();
|
|
}
|
|
|
|
void MacroSegmentSelection::SetMacro(Macro *macro)
|
|
{
|
|
_macro = macro;
|
|
SetupDescription();
|
|
}
|
|
|
|
void MacroSegmentSelection::SetValue(const IntVariable &value)
|
|
{
|
|
_index->SetValue(value);
|
|
SetupDescription();
|
|
}
|
|
|
|
void MacroSegmentSelection::SetType(const Type &value)
|
|
{
|
|
_type = value;
|
|
SetupDescription();
|
|
}
|
|
|
|
void MacroSegmentSelection::MacroSegmentOrderChanged()
|
|
{
|
|
SetupDescription();
|
|
}
|
|
|
|
void MacroSegmentSelection::SetupDescription() const
|
|
{
|
|
if (!_macro) {
|
|
_description->setText("");
|
|
_description->hide();
|
|
return;
|
|
}
|
|
|
|
auto index = _index->Value();
|
|
if (index.GetType() == IntVariable::Type::VARIABLE || index == 0) {
|
|
_description->setText("");
|
|
_description->hide();
|
|
return;
|
|
}
|
|
|
|
QString description;
|
|
if (IsValidMacroSegmentIndex(_macro, index - 1,
|
|
_type == Type::CONDITION)) {
|
|
description = GetMacroSegmentDescription(
|
|
_macro, index - 1, _type == Type::CONDITION);
|
|
} else {
|
|
description = obs_module_text(
|
|
"AdvSceneSwitcher.macroSegmentSelection.invalid");
|
|
}
|
|
|
|
if (!description.isEmpty()) {
|
|
description = "(" + description + ")";
|
|
_description->setText(description);
|
|
_description->show();
|
|
} else {
|
|
_description->setText("");
|
|
_description->hide();
|
|
}
|
|
}
|
|
|
|
void MacroSegmentSelection::IndexChanged(const IntVariable &value)
|
|
{
|
|
SetupDescription();
|
|
MarkSelectedSegment();
|
|
emit(SelectionChanged(value));
|
|
}
|
|
|
|
void MacroSegmentSelection::MarkSelectedSegment()
|
|
{
|
|
if (!HighlightUIElementsEnabled()) {
|
|
return;
|
|
}
|
|
|
|
if (!_macro || !AdvSceneSwitcher::window ||
|
|
_macro != AdvSceneSwitcher::window->GetSelectedMacro().get()) {
|
|
return;
|
|
}
|
|
|
|
auto index = _index->Value();
|
|
if (index.GetType() == IntVariable::Type::VARIABLE) {
|
|
return;
|
|
}
|
|
if (!IsValidMacroSegmentIndex(_macro, index - 1,
|
|
_type == Type::CONDITION)) {
|
|
return;
|
|
}
|
|
|
|
if (_type == Type::CONDITION) {
|
|
AdvSceneSwitcher::window->HighlightCondition(
|
|
index - 1, QColor(Qt::lightGray));
|
|
} else {
|
|
AdvSceneSwitcher::window->HighlightAction(
|
|
index - 1, QColor(Qt::lightGray));
|
|
}
|
|
|
|
PulseWidget(this, QColor(Qt::lightGray), QColor(0, 0, 0, 0), true);
|
|
}
|
|
|
|
} // namespace advss
|