2 Copyright (C) 2000-2009 Paul Davis
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.
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.
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.
20 #include "editor_component.h"
22 class EditorRouteGroups
: public EditorComponent
, public ARDOUR::SessionHandlePtr
25 EditorRouteGroups (Editor
*);
27 void set_session (ARDOUR::Session
*);
29 Gtk::Widget
& widget () {
30 return _display_packer
;
34 Gtk::ToggleButton
& all_group_active_button() { return _all_group_active_button
; }
38 struct Columns
: public Gtk::TreeModel::ColumnRecord
{
52 Gtk::TreeModelColumn
<bool> is_visible
;
53 Gtk::TreeModelColumn
<bool> gain
;
54 Gtk::TreeModelColumn
<bool> record
;
55 Gtk::TreeModelColumn
<bool> mute
;
56 Gtk::TreeModelColumn
<bool> solo
;
57 Gtk::TreeModelColumn
<bool> select
;
58 Gtk::TreeModelColumn
<bool> edits
;
59 Gtk::TreeModelColumn
<std::string
> text
;
60 Gtk::TreeModelColumn
<ARDOUR::RouteGroup
*> routegroup
;
65 void add (ARDOUR::RouteGroup
*);
66 void row_change (const Gtk::TreeModel::Path
&,const Gtk::TreeModel::iterator
&);
67 void name_edit (const std::string
&, const std::string
&);
68 void button_clicked ();
69 gint
button_press_event (GdkEventButton
* ev
);
70 void groups_changed ();
71 void property_changed (ARDOUR::RouteGroup
*, const PBD::PropertyChange
&);
72 void remove_selected ();
73 void run_new_group_dialog ();
74 void all_group_toggled();
75 void all_group_changed (const PBD::PropertyChange
&);
76 void row_deleted (Gtk::TreeModel::Path
const &);
78 Glib::RefPtr
<Gtk::ListStore
> _model
;
79 Glib::RefPtr
<Gtk::TreeSelection
> _selection
;
80 Gtk::TreeView _display
;
81 Gtk::ScrolledWindow _scroller
;
82 Gtk::VBox _display_packer
;
83 Gtk::ToggleButton _all_group_active_button
;
86 PBD::ScopedConnectionList _property_changed_connections
;
87 PBD::ScopedConnection all_route_groups_changed_connection
;