Turn Summary into a horizontal scrollbar (drop y-axis sensitivity)
[ardour.git] / gtk2_ardour / editor_route_groups.h
index 504082305222d711c7b6c4b15ad27959bf63e4b2..79b61a95fea46f64c6009c56b8d7f49afc40ef42 100644 (file)
@@ -17,6 +17,9 @@
 
 */
 
+#ifndef __gtk_ardour_editor_route_groups_h__
+#define __gtk_ardour_editor_route_groups_h__
+
 #include "gtkmm2ext/stateful_button.h"
 #include "editor_component.h"
 
@@ -35,9 +38,9 @@ public:
 
 private:
 
-        struct Columns : public Gtk::TreeModel::ColumnRecord {
+       struct Columns : public Gtk::TreeModel::ColumnRecord {
 
-                Columns () {
+               Columns () {
                        add (gdkcolor);
                        add (text);
                        add (is_visible);
@@ -51,11 +54,11 @@ private:
                        add (active_shared);
                        add (active_state);
                        add (routegroup);
-                }
+               }
 
-               Gtk::TreeModelColumn<Gdk::Color> gdkcolor;
-               Gtk::TreeModelColumn<std::string> text;
-               Gtk::TreeModelColumn<bool> is_visible;
+               Gtk::TreeModelColumn<Gdk::Color> gdkcolor;
+               Gtk::TreeModelColumn<std::string> text;
+               Gtk::TreeModelColumn<bool> is_visible;
                Gtk::TreeModelColumn<bool> gain;
                Gtk::TreeModelColumn<bool> gain_relative;
                Gtk::TreeModelColumn<bool> mute;
@@ -65,7 +68,7 @@ private:
                Gtk::TreeModelColumn<bool> select;
                Gtk::TreeModelColumn<bool> active_shared;
                Gtk::TreeModelColumn<bool> active_state;
-               Gtk::TreeModelColumn<ARDOUR::RouteGroup*> routegroup;
+               Gtk::TreeModelColumn<ARDOUR::RouteGroup*> routegroup;
        };
 
        Columns _columns;
@@ -93,4 +96,4 @@ private:
        Gtk::ColorSelectionDialog color_dialog;
 };
 
-
+#endif // __gtk_ardour_editor_route_groups_h__