summaryrefslogtreecommitdiff
path: root/gtk2_ardour/vca_time_axis.h
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2020-04-03 13:22:43 -0600
committerPaul Davis <paul@linuxaudiosystems.com>2020-04-03 13:28:58 -0600
commite954303fec5187ad5ed848782ff5105b692afbfd (patch)
tree30fe2bb19dd1f9934f79d0f758f3552c5f76a93f /gtk2_ardour/vca_time_axis.h
parent71ab4614f8535a59bc860715303bc906558983eb (diff)
move automation show/hide methods into public access
Note that they are still intended to be called via a specific mechanism from Editor, not directly. Also remove unnecessary duplicate virtual decls
Diffstat (limited to 'gtk2_ardour/vca_time_axis.h')
-rw-r--r--gtk2_ardour/vca_time_axis.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/gtk2_ardour/vca_time_axis.h b/gtk2_ardour/vca_time_axis.h
index dd8551b1f4..f95a44465f 100644
--- a/gtk2_ardour/vca_time_axis.h
+++ b/gtk2_ardour/vca_time_axis.h
@@ -56,6 +56,10 @@ public:
bool marked_for_display () const;
bool set_marked_for_display (bool);
+ void show_all_automation (bool apply_to_selection = false);
+ void show_existing_automation (bool apply_to_selection = false);
+ void hide_all_automation (bool apply_to_selection = false);
+
protected:
boost::shared_ptr<ARDOUR::VCA> _vca;
ArdourWidgets::ArdourButton solo_button;
@@ -70,10 +74,6 @@ protected:
void create_trim_automation_child (const Evoral::Parameter &, bool) {}
void create_mute_automation_child (const Evoral::Parameter &, bool);
- virtual void show_all_automation (bool apply_to_selection = false);
- virtual void show_existing_automation (bool apply_to_selection = false);
- virtual void hide_all_automation (bool apply_to_selection = false);
-
void create_automation_child (const Evoral::Parameter& param, bool show);
virtual void build_automation_action_menu (bool);
void build_display_menu ();