BasicUI: Add simple functions to store and recall Mixer Scenes

This commit is contained in:
Ben Loftis 2022-11-07 10:09:12 -06:00
parent 68dc07ecee
commit 0bda71b40b
2 changed files with 15 additions and 0 deletions

View File

@ -476,6 +476,18 @@ BasicUI::tbank_step_rows (int step_size)
}
}
void
BasicUI::store_mixer_scene (int idx)
{
session->store_nth_mixer_scene (idx);
}
void
BasicUI::apply_mixer_scene (int idx)
{
session->apply_nth_mixer_scene (idx);
}
void
BasicUI::undo ()
{

View File

@ -103,6 +103,9 @@ class LIBCONTROLCP_API BasicUI {
void trigger_cue_row (int cue);
void trigger_stop_all (bool stop_now = false);
void store_mixer_scene (int scn);
void apply_mixer_scene (int scn);
void toggle_monitor_mute();
void toggle_monitor_dim();
void toggle_monitor_mono();