2
2
#include " advanced-scene-switcher.hpp"
3
3
#include " utility.hpp"
4
4
5
+ Q_DECLARE_METATYPE (SourceSettingButton);
6
+
5
7
const std::string MacroActionSource::id = " source" ;
6
8
7
9
bool MacroActionSource::_registered = MacroActionFactory::Register(
@@ -16,9 +18,42 @@ const static std::map<SourceAction, std::string> actionTypes = {
16
18
" AdvSceneSwitcher.action.source.type.settings" },
17
19
{SourceAction::REFRESH_SETTINGS,
18
20
" AdvSceneSwitcher.action.source.type.refreshSettings" },
21
+ {SourceAction::SETTINGS_BUTTON,
22
+ " AdvSceneSwitcher.action.source.type.pressSettingsButton" },
19
23
};
20
24
21
- void refreshSourceSettings (obs_source_t *s)
25
+ static std::vector<SourceSettingButton> getSourceButtons (OBSWeakSource source)
26
+ {
27
+ auto s = obs_weak_source_get_source (source);
28
+ std::vector<SourceSettingButton> buttons;
29
+ obs_properties_t *sourceProperties = obs_source_properties (s);
30
+ auto it = obs_properties_first (sourceProperties);
31
+ do {
32
+ if (!it || obs_property_get_type (it) != OBS_PROPERTY_BUTTON) {
33
+ continue ;
34
+ }
35
+ SourceSettingButton button = {obs_property_name (it),
36
+ obs_property_description (it)};
37
+ buttons.emplace_back (button);
38
+ } while (obs_property_next (&it));
39
+ obs_source_release (s);
40
+ return buttons;
41
+ }
42
+
43
+ static void pressSourceButton (const SourceSettingButton &button,
44
+ obs_source_t *source)
45
+ {
46
+ obs_properties_t *sourceProperties = obs_source_properties (source);
47
+ obs_property_t *property =
48
+ obs_properties_get (sourceProperties, button.id .c_str ());
49
+ if (!obs_property_button_clicked (property, source)) {
50
+ blog (LOG_WARNING, " Failed to press settings button '%s' for %s" ,
51
+ button.id .c_str (), obs_source_get_name (source));
52
+ }
53
+ obs_properties_destroy (sourceProperties);
54
+ }
55
+
56
+ static void refreshSourceSettings (obs_source_t *s)
22
57
{
23
58
if (!s) {
24
59
return ;
@@ -55,6 +90,9 @@ bool MacroActionSource::PerformAction()
55
90
case SourceAction::REFRESH_SETTINGS:
56
91
refreshSourceSettings (s);
57
92
break ;
93
+ case SourceAction::SETTINGS_BUTTON:
94
+ pressSourceButton (_button, s);
95
+ break ;
58
96
default :
59
97
break ;
60
98
}
@@ -80,6 +118,7 @@ bool MacroActionSource::Save(obs_data_t *obj)
80
118
obs_data_set_string (obj, " source" , GetWeakSourceName (_source).c_str ());
81
119
obs_data_set_int (obj, " action" , static_cast <int >(_action));
82
120
obs_data_set_string (obj, " settings" , _settings.c_str ());
121
+ _button.Save (obj);
83
122
return true ;
84
123
}
85
124
@@ -90,6 +129,7 @@ bool MacroActionSource::Load(obs_data_t *obj)
90
129
_source = GetWeakSourceByName (sourceName);
91
130
_action = static_cast <SourceAction>(obs_data_get_int (obj, " action" ));
92
131
_settings = obs_data_get_string (obj, " settings" );
132
+ _button.Load (obj);
93
133
return true ;
94
134
}
95
135
@@ -115,12 +155,30 @@ static inline void populateActionSelection(QComboBox *list)
115
155
}
116
156
}
117
157
158
+ static inline void populateSourceButtonSelection (QComboBox *list,
159
+ OBSWeakSource source)
160
+ {
161
+ list->clear ();
162
+ auto buttons = getSourceButtons (source);
163
+ if (buttons.empty ()) {
164
+ list->addItem (obs_module_text (
165
+ " AdvSceneSwitcher.action.source.noSettingsButtons" ));
166
+ }
167
+
168
+ for (const auto &button : buttons) {
169
+ QVariant value;
170
+ value.setValue (button);
171
+ list->addItem (QString::fromStdString (button.ToString ()), value);
172
+ }
173
+ }
174
+
118
175
MacroActionSourceEdit::MacroActionSourceEdit (
119
176
QWidget *parent, std::shared_ptr<MacroActionSource> entryData)
120
177
: QWidget(parent)
121
178
{
122
179
_sources = new QComboBox ();
123
180
_actions = new QComboBox ();
181
+ _settingsButtons = new QComboBox ();
124
182
_getSettings = new QPushButton (
125
183
obs_module_text (" AdvSceneSwitcher.action.source.getSettings" ));
126
184
_settings = new ResizingPlainTextEdit (this );
@@ -132,6 +190,8 @@ MacroActionSourceEdit::MacroActionSourceEdit(
132
190
133
191
QWidget::connect (_actions, SIGNAL (currentIndexChanged (int )), this ,
134
192
SLOT (ActionChanged (int )));
193
+ QWidget::connect (_settingsButtons, SIGNAL (currentIndexChanged (int )),
194
+ this , SLOT (ButtonChanged (int )));
135
195
QWidget::connect (_sources, SIGNAL (currentTextChanged (const QString &)),
136
196
this , SLOT (SourceChanged (const QString &)));
137
197
QWidget::connect (_getSettings, SIGNAL (clicked ()), this ,
@@ -147,6 +207,7 @@ MacroActionSourceEdit::MacroActionSourceEdit(
147
207
{" {{actions}}" , _actions},
148
208
{" {{settings}}" , _settings},
149
209
{" {{getSettings}}" , _getSettings},
210
+ {" {{settingsButtons}}" , _settingsButtons},
150
211
};
151
212
placeWidgets (obs_module_text (" AdvSceneSwitcher.action.source.entry" ),
152
213
entryLayout, widgetPlaceholders);
@@ -169,10 +230,14 @@ void MacroActionSourceEdit::UpdateEntryData()
169
230
return ;
170
231
}
171
232
233
+ populateSourceButtonSelection (_settingsButtons, _entryData->_source );
234
+
172
235
_actions->setCurrentIndex (static_cast <int >(_entryData->_action ));
173
236
_sources->setCurrentText (
174
237
GetWeakSourceName (_entryData->_source ).c_str ());
175
238
_settings->setPlainText (QString::fromStdString (_entryData->_settings ));
239
+ _settingsButtons->setCurrentText (
240
+ QString::fromStdString (_entryData->_button .ToString ()));
176
241
SetWidgetVisibility ();
177
242
178
243
adjustSize ();
@@ -185,8 +250,11 @@ void MacroActionSourceEdit::SourceChanged(const QString &text)
185
250
return ;
186
251
}
187
252
188
- std::lock_guard<std::mutex> lock (switcher->m );
189
- _entryData->_source = GetWeakSourceByQString (text);
253
+ {
254
+ std::lock_guard<std::mutex> lock (switcher->m );
255
+ _entryData->_source = GetWeakSourceByQString (text);
256
+ }
257
+ populateSourceButtonSelection (_settingsButtons, _entryData->_source );
190
258
emit HeaderInfoChanged (
191
259
QString::fromStdString (_entryData->GetShortDesc ()));
192
260
}
@@ -202,6 +270,17 @@ void MacroActionSourceEdit::ActionChanged(int value)
202
270
SetWidgetVisibility ();
203
271
}
204
272
273
+ void MacroActionSourceEdit::ButtonChanged (int idx)
274
+ {
275
+ if (_loading || !_entryData) {
276
+ return ;
277
+ }
278
+
279
+ std::lock_guard<std::mutex> lock (switcher->m );
280
+ _entryData->_button = qvariant_cast<SourceSettingButton>(
281
+ _settingsButtons->itemData (idx));
282
+ }
283
+
205
284
void MacroActionSourceEdit::GetSettingsClicked ()
206
285
{
207
286
if (_loading || !_entryData || !_entryData->_source ) {
@@ -233,5 +312,34 @@ void MacroActionSourceEdit::SetWidgetVisibility()
233
312
_settings->setVisible (showSettings);
234
313
_getSettings->setVisible (showSettings);
235
314
_warning->setVisible (showWarning);
315
+ _settingsButtons->setVisible (_entryData->_action ==
316
+ SourceAction::SETTINGS_BUTTON);
236
317
adjustSize ();
237
318
}
319
+
320
+ bool SourceSettingButton::Save (obs_data_t *obj) const
321
+ {
322
+ auto data = obs_data_create ();
323
+ obs_data_set_string (data, " id" , id.c_str ());
324
+ obs_data_set_string (data, " description" , description.c_str ());
325
+ obs_data_set_obj (obj, " sourceSettingButton" , data);
326
+ obs_data_release (data);
327
+ return true ;
328
+ }
329
+
330
+ bool SourceSettingButton::Load (obs_data_t *obj)
331
+ {
332
+ auto data = obs_data_get_obj (obj, " sourceSettingButton" );
333
+ id = obs_data_get_string (data, " id" );
334
+ description = obs_data_get_string (data, " description" );
335
+ obs_data_release (data);
336
+ return true ;
337
+ }
338
+
339
+ std::string SourceSettingButton::ToString () const
340
+ {
341
+ if (id.empty ()) {
342
+ return " " ;
343
+ }
344
+ return " [" + id + " ] " + description;
345
+ }
0 commit comments