more changes flowing from a persistent MonitorSection object
[ardour.git] / gtk2_ardour / mixer_group_tabs.h
index 7caf9819447321a8f24dba8a47c82ef38e3217ff..ff9a9e45122a9446c07c6668bcf233a00ba267d3 100644 (file)
@@ -1,5 +1,5 @@
 /*
-    Copyright (C) 2009 Paul Davis 
+    Copyright (C) 2009 Paul Davis
 
     This program is free software; you can redistribute it and/or modify
     it under the terms of the GNU General Public License as published by
@@ -17,6 +17,9 @@
 
 */
 
+#ifndef __gtk_ardour_mixer_group_tabs_h__
+#define __gtk_ardour_mixer_group_tabs_h__
+
 #include "group_tabs.h"
 
 class Mixer_UI;
@@ -28,17 +31,16 @@ public:
 
 private:
        std::list<Tab> compute_tabs () const;
-       void draw_tab (cairo_t *, Tab const &) const;
+       void draw_tab (cairo_t *, Tab const &);
        double primary_coordinate (double, double) const;
-       void reflect_tabs (std::list<Tab> const &);
+       ARDOUR::RouteList routes_for_tab (Tab const *) const;
        double extent () const {
-               return _width;
+               return get_width();
        }
-       Gtk::Menu* get_menu (ARDOUR::RouteGroup* g);
 
-       void edit_group (ARDOUR::RouteGroup *);
-       void remove_group (ARDOUR::RouteGroup *);
-       
+       ARDOUR::RouteList selected_routes () const;
+
        Mixer_UI* _mixer;
-       Gtk::Menu* _menu;
 };
+
+#endif // __gtk_ardour_mixer_group_tabs_h__