From 43ab0002e3048684b5661a5c341fc5f0e0f49f13 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Nusser?= Date: Thu, 30 Apr 2020 22:25:44 +0200 Subject: Mark last input and output in powermap widget. --- src/settings.h | 15 +++++++++++++++ 1 file changed, 15 insertions(+) (limited to 'src/settings.h') diff --git a/src/settings.h b/src/settings.h index 471d730..a3d21d0 100644 --- a/src/settings.h +++ b/src/settings.h @@ -154,6 +154,10 @@ struct Settings Atomic powermap_fixed2_y{1.}; Atomic powermap_shelf{true}; + // Powermap visualizer; -1 is "none" + Atomic powermap_input{-1.}; + Atomic powermap_output{-1.}; + Atomic audition_counter{0}; Atomic audition_instrument; Atomic audition_velocity; @@ -228,6 +232,9 @@ struct SettingsGetter SettingRef powermap_fixed2_y; SettingRef powermap_shelf; + SettingRef powermap_input; + SettingRef powermap_output; + SettingRef audition_counter; SettingRef audition_instrument; SettingRef audition_velocity; @@ -284,6 +291,8 @@ struct SettingsGetter , powermap_fixed2_x{settings.powermap_fixed2_x} , powermap_fixed2_y{settings.powermap_fixed2_y} , powermap_shelf{settings.powermap_shelf} + , powermap_input{settings.powermap_input} + , powermap_output{settings.powermap_output} , audition_counter{settings.audition_counter} , audition_instrument{settings.audition_instrument} , audition_velocity{settings.audition_velocity} @@ -357,6 +366,9 @@ public: Notifier powermap_fixed2_y; Notifier powermap_shelf; + Notifier powermap_input; + Notifier powermap_output; + Notifier audition_counter; Notifier audition_instrument; Notifier audition_velocity; @@ -428,6 +440,9 @@ public: EVAL(powermap_fixed2_y); EVAL(powermap_shelf); + EVAL(powermap_input); + EVAL(powermap_output); + EVAL(audition_counter); EVAL(audition_instrument); EVAL(audition_velocity); -- cgit v1.2.3