summaryrefslogtreecommitdiff
path: root/gtk2_ardour/group_tabs.h
diff options
context:
space:
mode:
authorCarl Hetherington <carl@carlh.net>2011-09-07 11:56:23 +0000
committerCarl Hetherington <carl@carlh.net>2011-09-07 11:56:23 +0000
commit932b0e9ec1d0f7fb506ccd13bf08a4efe5f91297 (patch)
tree472bc1d117ab0673946fbed601830dd8241108f3 /gtk2_ardour/group_tabs.h
parent174c0d6831573f24689b7f1f6d6256583f790da6 (diff)
Update route colours when they are added to / removed
from groups which share colour (more of #4064). git-svn-id: svn://localhost/ardour2/branches/3.0@10060 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'gtk2_ardour/group_tabs.h')
-rw-r--r--gtk2_ardour/group_tabs.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/gtk2_ardour/group_tabs.h b/gtk2_ardour/group_tabs.h
index eaf03f6a22..059f3ce60b 100644
--- a/gtk2_ardour/group_tabs.h
+++ b/gtk2_ardour/group_tabs.h
@@ -30,6 +30,10 @@ class Editor;
/** Parent class for tabs which represent route groups as colored tabs;
* Currently used on the left-hand side of the editor and at the top of the mixer.
+ *
+ * This class also contains a fair bit of code to handle changes to route
+ * group colours; it seems a bit out of place, but I could not really think
+ * of a better place to put it.
*/
class GroupTabs : public CairoWidget, public ARDOUR::SessionHandlePtr
{
@@ -62,6 +66,8 @@ protected:
};
private:
+ static void emit_gui_changed_for_members (ARDOUR::RouteGroup *);
+
/** Compute all the tabs for this widget.
* @return Tabs.
*/
@@ -110,6 +116,10 @@ private:
Tab * click_to_tab (double, std::list<Tab>::iterator *, std::list<Tab>::iterator *);
+ void route_group_property_changed (ARDOUR::RouteGroup *);
+ void route_added_to_route_group (ARDOUR::RouteGroup *, boost::weak_ptr<ARDOUR::Route>);
+ void route_removed_from_route_group (ARDOUR::RouteGroup *, boost::weak_ptr<ARDOUR::Route>);
+
Gtk::Menu* _menu;
std::list<Tab> _tabs; ///< current list of tabs
Tab* _dragging; ///< tab being dragged, or 0