add canvas item types to enum system
[ardour.git] / gtk2_ardour / editor_route_groups.h
index f92e79c7cc3942eee5f5ad94005e0a01ce280a7e..42061ff089a743141f0e9f2abf87411052652136 100644 (file)
@@ -39,7 +39,9 @@ private:
         struct Columns : public Gtk::TreeModel::ColumnRecord {
 
                 Columns () {
+                       add (gdkcolor);
                        add (text);
+                       add (is_visible);
                        add (gain);
                        add (gain_relative);
                        add (mute);
@@ -47,14 +49,14 @@ private:
                        add (record);
                        add (monitoring);
                        add (select);
-                       add (edits);
+                       add (active_shared);
                        add (active_state);
-                       add (is_visible);
-                       add (gdkcolor);
                        add (routegroup);
                 }
 
+               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;
@@ -62,10 +64,8 @@ private:
                Gtk::TreeModelColumn<bool> record;
                Gtk::TreeModelColumn<bool> monitoring;
                Gtk::TreeModelColumn<bool> select;
-               Gtk::TreeModelColumn<bool> edits;
+               Gtk::TreeModelColumn<bool> active_shared;
                Gtk::TreeModelColumn<bool> active_state;
-               Gtk::TreeModelColumn<bool> is_visible;
-               Gtk::TreeModelColumn<Gdk::Color> gdkcolor;
                Gtk::TreeModelColumn<ARDOUR::RouteGroup*> routegroup;
        };