add "enabled" column to editor route groups list and check logic
[ardour.git] / gtk2_ardour / editor_route_groups.h
1 /*
2     Copyright (C) 2000-2009 Paul Davis
3
4     This program is free software; you can redistribute it and/or modify
5     it under the terms of the GNU General Public License as published by
6     the Free Software Foundation; either version 2 of the License, or
7     (at your option) any later version.
8
9     This program is distributed in the hope that it will be useful,
10     but WITHOUT ANY WARRANTY; without even the implied warranty of
11     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12     GNU General Public License for more details.
13
14     You should have received a copy of the GNU General Public License
15     along with this program; if not, write to the Free Software
16     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17
18 */
19
20 #include "gtkmm2ext/stateful_button.h"
21 #include "editor_component.h"
22
23 class EditorRouteGroups : public EditorComponent, public ARDOUR::SessionHandlePtr
24 {
25 public:
26         EditorRouteGroups (Editor *);
27
28         void set_session (ARDOUR::Session *);
29
30         Gtk::Widget& widget () {
31                 return _display_packer;
32         }
33
34         void clear ();
35         Gtkmm2ext::StatefulToggleButton& all_group_active_button() { return _all_group_active_button; }
36
37 private:
38
39         struct Columns : public Gtk::TreeModel::ColumnRecord {
40
41                 Columns () {
42                         add (gdkcolor);
43                         add (text);
44                         add (is_visible);
45                         add (gain);
46                         add (gain_relative);
47                         add (mute);
48                         add (solo);
49                         add (record);
50                         add (monitoring);
51                         add (select);
52                         add (edits);
53                         add (active_shared);
54                         add (active_state);
55                         add (routegroup);
56                 }
57
58                 Gtk::TreeModelColumn<Gdk::Color> gdkcolor;
59                 Gtk::TreeModelColumn<std::string> text;
60                 Gtk::TreeModelColumn<bool> is_visible;
61                 Gtk::TreeModelColumn<bool> gain;
62                 Gtk::TreeModelColumn<bool> gain_relative;
63                 Gtk::TreeModelColumn<bool> mute;
64                 Gtk::TreeModelColumn<bool> solo;
65                 Gtk::TreeModelColumn<bool> record;
66                 Gtk::TreeModelColumn<bool> monitoring;
67                 Gtk::TreeModelColumn<bool> select;
68                 Gtk::TreeModelColumn<bool> edits;
69                 Gtk::TreeModelColumn<bool> active_shared;
70                 Gtk::TreeModelColumn<bool> active_state;
71                 Gtk::TreeModelColumn<ARDOUR::RouteGroup*> routegroup;
72         };
73
74         Columns _columns;
75
76         void add (ARDOUR::RouteGroup *);
77         void row_change (const Gtk::TreeModel::Path&,const Gtk::TreeModel::iterator&);
78         void name_edit (const std::string&, const std::string&);
79         void button_clicked ();
80         bool button_press_event (GdkEventButton* ev);
81         void groups_changed ();
82         void property_changed (ARDOUR::RouteGroup*, const PBD::PropertyChange &);
83         void remove_selected ();
84         void run_new_group_dialog ();
85         void all_group_toggled();
86         void all_group_changed (const PBD::PropertyChange&);
87         void row_deleted (Gtk::TreeModel::Path const &);
88
89         Glib::RefPtr<Gtk::ListStore> _model;
90         Glib::RefPtr<Gtk::TreeSelection> _selection;
91         Gtk::TreeView _display;
92         Gtk::ScrolledWindow _scroller;
93         Gtk::VBox _display_packer;
94         Gtkmm2ext::StatefulToggleButton _all_group_active_button;
95         bool _in_row_change;
96         bool _in_rebuild;
97         PBD::ScopedConnectionList _property_changed_connections;
98         PBD::ScopedConnection all_route_groups_changed_connection;
99         Gtk::ColorSelectionDialog color_dialog;
100 };
101
102