#pragma once #include "macro-action-edit.hpp" #include "variable-text-edit.hpp" #include "source-selection.hpp" #include "filter-selection.hpp" #include "source-properties-button.hpp" #include "source-setting.hpp" #include #include namespace advss { class MacroActionFilter : public MacroAction { public: MacroActionFilter(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 Create(Macro *m); std::shared_ptr Copy() const; void ResolveVariablesToFixedValues(); enum class Action { ENABLE, DISABLE, TOGGLE, SETTINGS, SETTINGS_BUTTON, }; enum class SettingsInputMethod { INDIVIDUAL_MANUAL, INDIVIDUAL_TEMPVAR, JSON_STRING, INDIVIDUAL_LIST_ENTRY, }; SettingsInputMethod _settingsInputMethod = SettingsInputMethod::INDIVIDUAL_MANUAL; SourceSelection _source; FilterSelection _filter; Action _action = Action::ENABLE; StringVariable _settingsString = ""; TempVariableRef _tempVar; StringVariable _manualSettingValue = ""; SourceSetting _setting; SourceSettingButton _button; private: static bool _registered; static const std::string id; }; class MacroActionFilterEdit : public QWidget { Q_OBJECT public: MacroActionFilterEdit( QWidget *parent, std::shared_ptr entryData = nullptr); void UpdateEntryData(); static QWidget *Create(QWidget *parent, std::shared_ptr action) { return new MacroActionFilterEdit( parent, std::dynamic_pointer_cast(action)); } private slots: void SourceChanged(const SourceSelection &); void FilterChanged(const FilterSelection &); void ActionChanged(int value); void GetSettingsClicked(); void SettingsStringChanged(); void SettingsInputMethodChanged(int); void SelectionChanged(const TempVariableRef &); void SelectionChanged(const SourceSetting &); void ManualSettingsValueChanged(); void RefreshVariableSourceSelectionValue(); void ButtonChanged(const SourceSettingButton &); signals: void HeaderInfoChanged(const QString &); private: void SetWidgetVisibility(); SourceSelectionWidget *_sources; FilterSelectionWidget *_filters; QComboBox *_actions; QPushButton *_getSettings; QHBoxLayout *_settingsLayout; QComboBox *_settingsInputMethods; VariableTextEdit *_manualSettingValue; TempVariableSelection *_tempVars; SourceSettingSelection *_filterSettings; VariableTextEdit *_settingsString; QPushButton *_refreshSettingSelection; SourceSettingsButtonSelection *_settingsButtons; std::shared_ptr _entryData; bool _loading = true; }; } // namespace advss