make strip-as-GUI-for-send work for metering too ; frame around session summary widge...
[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 "editor_component.h"
21
22 class EditorRouteGroups : public EditorComponent
23 {
24 public:
25         EditorRouteGroups (Editor *);
26
27         void connect_to_session (ARDOUR::Session *);
28
29         Gtk::Widget& widget () {
30                 return *_display_packer;
31         }
32
33         Gtk::Menu* menu (ARDOUR::RouteGroup *);
34
35         void clear ();
36
37 private:
38
39         struct Columns : public Gtk::TreeModel::ColumnRecord {
40
41                 Columns () {
42                         add (is_visible);
43                         add (gain);
44                         add (record);
45                         add (mute);
46                         add (solo);
47                         add (select);
48                         add (edits);
49                         add (text);
50                         add (routegroup);
51                 }
52
53                 Gtk::TreeModelColumn<bool> is_visible;
54                 Gtk::TreeModelColumn<bool> gain;
55                 Gtk::TreeModelColumn<bool> record;
56                 Gtk::TreeModelColumn<bool> mute;
57                 Gtk::TreeModelColumn<bool> solo;
58                 Gtk::TreeModelColumn<bool> select;
59                 Gtk::TreeModelColumn<bool> edits;
60                 Gtk::TreeModelColumn<std::string> text;
61                 Gtk::TreeModelColumn<ARDOUR::RouteGroup*> routegroup;
62         };
63
64         Columns _columns;
65
66         void activate_all ();
67         void disable_all ();
68         void subgroup (ARDOUR::RouteGroup *);
69         void unsubgroup (ARDOUR::RouteGroup *);
70         void collect (ARDOUR::RouteGroup *);
71
72         void row_change (const Gtk::TreeModel::Path&,const Gtk::TreeModel::iterator&);
73         void name_edit (const Glib::ustring&, const Glib::ustring&);
74         void new_route_group ();
75         void new_from_selection ();
76         void new_from_rec_enabled ();
77         void new_from_soloed ();
78         void edit (ARDOUR::RouteGroup *);
79         void button_clicked ();
80         gint button_press_event (GdkEventButton* ev);
81         void add (ARDOUR::RouteGroup* group);
82         void remove_route_group ();
83         void groups_changed ();
84         void flags_changed (void*, ARDOUR::RouteGroup*);
85         void set_activation (ARDOUR::RouteGroup *, bool);
86         void remove_selected ();
87         void run_new_group_dialog (const ARDOUR::RouteList&);
88
89         Gtk::Menu* _menu;
90         Glib::RefPtr<Gtk::ListStore> _model;
91         Glib::RefPtr<Gtk::TreeSelection> _selection;
92         Gtk::TreeView _display;
93         Gtk::ScrolledWindow _scroller;
94         Gtk::VBox* _display_packer;
95         bool _in_row_change;
96 };
97
98