mirror of
https://github.com/WarmUpTill/SceneSwitcher.git
synced 2026-04-01 14:55:38 -05:00
Some checks failed
debian-build / build (push) Has been cancelled
Check locale / ubuntu64 (push) Has been cancelled
Push to master / Check Formatting 🔍 (push) Has been cancelled
Push to master / Build Project 🧱 (push) Has been cancelled
Push to master / Create Release 🛫 (push) Has been cancelled
105 lines
2.5 KiB
C++
105 lines
2.5 KiB
C++
#pragma once
|
|
#include "macro-action-edit.hpp"
|
|
#include "duration-control.hpp"
|
|
#include "transition-selection.hpp"
|
|
#include "scene-selection.hpp"
|
|
#include "scene-item-selection.hpp"
|
|
#include "variable-spinbox.hpp"
|
|
|
|
#include <QCheckBox>
|
|
#include <QHBoxLayout>
|
|
|
|
namespace advss {
|
|
|
|
class MacroActionTransition : public MacroAction {
|
|
public:
|
|
MacroActionTransition(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 Type {
|
|
SCENE,
|
|
SCENE_OVERRIDE,
|
|
SOURCE_SHOW,
|
|
SOURCE_HIDE,
|
|
TBAR,
|
|
RELEASE_TBAR,
|
|
};
|
|
|
|
Type _type = Type::SCENE;
|
|
SceneItemSelection _source;
|
|
SceneSelection _scene;
|
|
bool _setDuration = true;
|
|
bool _setTransitionType = true;
|
|
TransitionSelection _transition;
|
|
Duration _duration;
|
|
DoubleVariable _tbarPosition = 0.0;
|
|
|
|
private:
|
|
void SetSceneTransition();
|
|
void SetTransitionOverride();
|
|
void SetSourceTransition(bool);
|
|
void SetTbarPosition();
|
|
|
|
static bool _registered;
|
|
static const std::string id;
|
|
};
|
|
|
|
class MacroActionTransitionEdit : public QWidget {
|
|
Q_OBJECT
|
|
|
|
public:
|
|
MacroActionTransitionEdit(
|
|
QWidget *parent,
|
|
std::shared_ptr<MacroActionTransition> entryData = nullptr);
|
|
void UpdateEntryData();
|
|
static QWidget *Create(QWidget *parent,
|
|
std::shared_ptr<MacroAction> action)
|
|
{
|
|
return new MacroActionTransitionEdit(
|
|
parent,
|
|
std::dynamic_pointer_cast<MacroActionTransition>(
|
|
action));
|
|
}
|
|
|
|
private slots:
|
|
void ActionChanged(int value);
|
|
void SourceChanged(const SceneItemSelection &);
|
|
void SceneChanged(const SceneSelection &);
|
|
void SetTransitionChanged(int state);
|
|
void SetDurationChanged(int state);
|
|
void TransitionChanged(const TransitionSelection &);
|
|
void DurationChanged(const Duration &seconds);
|
|
void TbarPositionChanged(const NumberVariable<double> &);
|
|
signals:
|
|
void HeaderInfoChanged(const QString &);
|
|
|
|
protected:
|
|
QComboBox *_actions;
|
|
SceneItemSelectionWidget *_sources;
|
|
SceneSelectionWidget *_scenes;
|
|
QCheckBox *_setTransition;
|
|
QCheckBox *_setDuration;
|
|
TransitionSelectionWidget *_transitions;
|
|
DurationSelection *_duration;
|
|
VariableDoubleSpinBox *_tbarPosition;
|
|
QHBoxLayout *_transitionLayout;
|
|
QHBoxLayout *_durationLayout;
|
|
QHBoxLayout *_tbarLayout;
|
|
std::shared_ptr<MacroActionTransition> _entryData;
|
|
|
|
private:
|
|
void SetWidgetVisibility();
|
|
|
|
bool _loading = true;
|
|
};
|
|
|
|
} // namespace advss
|