mirror of
https://github.com/WarmUpTill/SceneSwitcher.git
synced 2026-07-25 13:10:44 -05:00
58 lines
1.2 KiB
C++
58 lines
1.2 KiB
C++
#pragma once
|
|
#include "macro.hpp"
|
|
#include <QWidget>
|
|
#include <QComboBox>
|
|
|
|
enum class ReplayBufferState {
|
|
STOP,
|
|
START,
|
|
SAVE,
|
|
};
|
|
|
|
class MacroConditionReplayBuffer : public MacroCondition {
|
|
public:
|
|
MacroConditionReplayBuffer(Macro *m) : MacroCondition(m) {}
|
|
bool CheckCondition();
|
|
bool Save(obs_data_t *obj) const;
|
|
bool Load(obs_data_t *obj);
|
|
std::string GetId() const { return id; };
|
|
static std::shared_ptr<MacroCondition> Create(Macro *m)
|
|
{
|
|
return std::make_shared<MacroConditionReplayBuffer>(m);
|
|
}
|
|
|
|
ReplayBufferState _state = ReplayBufferState::STOP;
|
|
|
|
private:
|
|
static bool _registered;
|
|
static const std::string id;
|
|
};
|
|
|
|
class MacroConditionReplayBufferEdit : public QWidget {
|
|
Q_OBJECT
|
|
|
|
public:
|
|
MacroConditionReplayBufferEdit(
|
|
QWidget *parent,
|
|
std::shared_ptr<MacroConditionReplayBuffer> cond = nullptr);
|
|
void UpdateEntryData();
|
|
static QWidget *Create(QWidget *parent,
|
|
std::shared_ptr<MacroCondition> cond)
|
|
{
|
|
return new MacroConditionReplayBufferEdit(
|
|
parent,
|
|
std::dynamic_pointer_cast<MacroConditionReplayBuffer>(
|
|
cond));
|
|
}
|
|
|
|
private slots:
|
|
void StateChanged(int value);
|
|
|
|
protected:
|
|
QComboBox *_state;
|
|
std::shared_ptr<MacroConditionReplayBuffer> _entryData;
|
|
|
|
private:
|
|
bool _loading = true;
|
|
};
|