mirror of
https://github.com/WarmUpTill/SceneSwitcher.git
synced 2026-05-09 04:32:13 -05:00
83 lines
1.9 KiB
C++
83 lines
1.9 KiB
C++
#pragma once
|
|
#include "macro-action-edit.hpp"
|
|
#include "scene-selection.hpp"
|
|
|
|
namespace advss {
|
|
|
|
class MacroActionSudioMode : public MacroAction {
|
|
public:
|
|
MacroActionSudioMode(Macro *m) : MacroAction(m) {}
|
|
bool PerformAction();
|
|
void LogAction() const;
|
|
bool Save(obs_data_t *obj) const;
|
|
bool Load(obs_data_t *obj);
|
|
std::string GetShortDesc() const;
|
|
std::string GetId() const { return id; };
|
|
static std::shared_ptr<MacroAction> Create(Macro *m);
|
|
std::shared_ptr<MacroAction> Copy() const;
|
|
void ResolveVariablesToFixedValues();
|
|
|
|
enum class Action {
|
|
TRANSITION = 10,
|
|
TRANSITION_WITH_SWAP = 20,
|
|
|
|
ENALBE_TRANSITION_SWAP = 30,
|
|
DISABLE_TRANSITION_SWAP = 40,
|
|
TOGGLE_TRANSITION_SWAP = 50,
|
|
|
|
ENALBE_DUPLICATE_SCENE = 60,
|
|
DISABLE_DUPLICATE_SCENE = 70,
|
|
TOGGLE_DUPLICATE_SCENE = 80,
|
|
|
|
ENALBE_DUPLICATE_SOURCE = 90,
|
|
DISABLE_DUPLICATE_SOURCE = 100,
|
|
TOGGLE_DUPLICATE_SOURCE = 110,
|
|
|
|
ENABLE_STUDIO_MODE = 120,
|
|
DISABLE_STUDIO_MODE = 130,
|
|
TOGGLE_STUDIO_MODE = 140,
|
|
|
|
SET_SCENE = 1000, // Deprecated
|
|
};
|
|
Action _action = Action::TRANSITION;
|
|
SceneSelection _scene;
|
|
|
|
private:
|
|
static bool _registered;
|
|
static const std::string id;
|
|
};
|
|
|
|
class MacroActionStudioModeEdit : public QWidget {
|
|
Q_OBJECT
|
|
|
|
public:
|
|
MacroActionStudioModeEdit(
|
|
QWidget *parent,
|
|
std::shared_ptr<MacroActionSudioMode> entryData = nullptr);
|
|
void UpdateEntryData();
|
|
static QWidget *Create(QWidget *parent,
|
|
std::shared_ptr<MacroAction> action)
|
|
{
|
|
return new MacroActionStudioModeEdit(
|
|
parent, std::dynamic_pointer_cast<MacroActionSudioMode>(
|
|
action));
|
|
}
|
|
|
|
private slots:
|
|
void ActionChanged(int value);
|
|
void SceneChanged(const SceneSelection &);
|
|
signals:
|
|
void HeaderInfoChanged(const QString &);
|
|
|
|
private:
|
|
void SetWidgetVisibility();
|
|
|
|
QComboBox *_actions;
|
|
SceneSelectionWidget *_scenes;
|
|
std::shared_ptr<MacroActionSudioMode> _entryData;
|
|
|
|
bool _loading = true;
|
|
};
|
|
|
|
} // namespace advss
|