X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=gtk2_ardour%2Feditor_route_groups.h;h=42061ff089a743141f0e9f2abf87411052652136;hb=ecb92f474f8f39e04f2aee02dabab7fa03af6c19;hp=40effb61c8293b43e390808a86a926523483a60d;hpb=946dc070f8ac13308ddf040e13e1da2d4b914c8d;p=ardour.git diff --git a/gtk2_ardour/editor_route_groups.h b/gtk2_ardour/editor_route_groups.h index 40effb61c8..42061ff089 100644 --- a/gtk2_ardour/editor_route_groups.h +++ b/gtk2_ardour/editor_route_groups.h @@ -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,13 +49,14 @@ private: add (record); add (monitoring); add (select); - add (edits); + add (active_shared); add (active_state); - add (is_visible); add (routegroup); } + Gtk::TreeModelColumn gdkcolor; Gtk::TreeModelColumn text; + Gtk::TreeModelColumn is_visible; Gtk::TreeModelColumn gain; Gtk::TreeModelColumn gain_relative; Gtk::TreeModelColumn mute; @@ -61,9 +64,8 @@ private: Gtk::TreeModelColumn record; Gtk::TreeModelColumn monitoring; Gtk::TreeModelColumn select; - Gtk::TreeModelColumn edits; + Gtk::TreeModelColumn active_shared; Gtk::TreeModelColumn active_state; - Gtk::TreeModelColumn is_visible; Gtk::TreeModelColumn routegroup; }; @@ -92,6 +94,7 @@ private: bool _in_rebuild; PBD::ScopedConnectionList _property_changed_connections; PBD::ScopedConnection all_route_groups_changed_connection; + Gtk::ColorSelectionDialog color_dialog; };