mirror of
https://github.com/WarmUpTill/SceneSwitcher.git
synced 2026-03-22 18:04:59 -05:00
44 lines
835 B
C++
44 lines
835 B
C++
#pragma once
|
|
#include "resource-table.hpp"
|
|
#include "regex-config.hpp"
|
|
|
|
#include <QComboBox>
|
|
|
|
namespace advss {
|
|
|
|
class VariableTable final : public ResourceTable {
|
|
Q_OBJECT
|
|
|
|
public:
|
|
struct Settings {
|
|
void Save(obs_data_t *data, const char *name);
|
|
void Load(obs_data_t *data, const char *name);
|
|
|
|
enum SearchType { ALL = -1, NAME = 0, VALUE = 1 };
|
|
|
|
SearchType searchType = SearchType::ALL;
|
|
std::string searchString;
|
|
RegexConfig regex;
|
|
};
|
|
|
|
VariableTable(Settings &settings, QWidget *parent = nullptr);
|
|
static VariableTable *CreateTabTable();
|
|
void HideDockOptions() const;
|
|
|
|
private slots:
|
|
void Add();
|
|
void Remove();
|
|
void Filter();
|
|
|
|
private:
|
|
QLineEdit *_searchField;
|
|
QPushButton *_clear;
|
|
QComboBox *_searchType;
|
|
RegexConfigWidget *_regexWidget;
|
|
QCheckBox *_addDock;
|
|
|
|
Settings &_settings;
|
|
};
|
|
|
|
} // namespace advss
|