summaryrefslogtreecommitdiff
path: root/gtk2_ardour/route_processor_selection.h
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2017-07-12 06:55:44 +0200
committerRobin Gareus <robin@gareus.org>2017-07-12 06:55:44 +0200
commit23bb15dcf1848833557715a44a7d91c1ba8787be (patch)
tree94d3b8f58a3cd1c855d894f83bfaee9141297764 /gtk2_ardour/route_processor_selection.h
parentfd8053da9eaf5e97aaa978d971410d4f246c7138 (diff)
Honor groups for mixer selection
Diffstat (limited to 'gtk2_ardour/route_processor_selection.h')
-rw-r--r--gtk2_ardour/route_processor_selection.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/gtk2_ardour/route_processor_selection.h b/gtk2_ardour/route_processor_selection.h
index 6c2b7c94ae..d92436dbc4 100644
--- a/gtk2_ardour/route_processor_selection.h
+++ b/gtk2_ardour/route_processor_selection.h
@@ -45,8 +45,8 @@ public:
bool empty();
void set (AxisView*);
- void add (AxisView*);
- void remove (AxisView*);
+ void add (AxisView*, bool with_groups = false);
+ void remove (AxisView*, bool with_groups = false);
bool selected (AxisView*);
void clear_routes ();
@@ -57,6 +57,7 @@ private:
ARDOUR::SessionHandlePtr& shp;
AxisViewProvider& avp;
void removed (AxisView*);
+ std::list<AxisView*> add_grouped_tracks (AxisView*) const;
};
bool operator==(const RouteProcessorSelection& a, const RouteProcessorSelection& b);