X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=gtk2_ardour%2Feditor_route_groups.h;h=94ab3658f3e08a2e8d97dd16d82991a3eb3fad30;hb=6ee23029a338951705c589be6c61ab52099758b6;hp=e413565e351ab85918e884dc78414eb6e778bda6;hpb=3f6ec53ba3f30d4dc8ceeb0b44752eec0d4a2d21;p=ardour.git diff --git a/gtk2_ardour/editor_route_groups.h b/gtk2_ardour/editor_route_groups.h index e413565e35..94ab3658f3 100644 --- a/gtk2_ardour/editor_route_groups.h +++ b/gtk2_ardour/editor_route_groups.h @@ -39,29 +39,35 @@ private: struct Columns : public Gtk::TreeModel::ColumnRecord { Columns () { + add (gdkcolor); add (text); + add (is_visible); add (gain); add (gain_relative); add (mute); add (solo); 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; Gtk::TreeModelColumn solo; 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; }; @@ -71,7 +77,7 @@ private: void row_change (const Gtk::TreeModel::Path&,const Gtk::TreeModel::iterator&); void name_edit (const std::string&, const std::string&); void button_clicked (); - gint button_press_event (GdkEventButton* ev); + bool button_press_event (GdkEventButton* ev); void groups_changed (); void property_changed (ARDOUR::RouteGroup*, const PBD::PropertyChange &); void remove_selected (); @@ -90,6 +96,7 @@ private: bool _in_rebuild; PBD::ScopedConnectionList _property_changed_connections; PBD::ScopedConnection all_route_groups_changed_connection; + Gtk::ColorSelectionDialog color_dialog; };