Allow route groups to color their tracks (remainder of
[ardour.git] / gtk2_ardour / route_group_dialog.cc
1 /*
2     Copyright (C) 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 <gtkmm/table.h>
21 #include <gtkmm/stock.h>
22 #include <gtkmm/messagedialog.h>
23 #include "ardour/route_group.h"
24 #include "ardour/session.h"
25 #include "route_group_dialog.h"
26 #include "group_tabs.h"
27 #include "i18n.h"
28 #include <iostream>
29
30 using namespace Gtk;
31 using namespace ARDOUR;
32 using namespace std;
33 using namespace PBD;
34
35 RouteGroupDialog::RouteGroupDialog (RouteGroup* g, bool creating_new)
36         : ArdourDialog (_("Route Group"))
37         , _group (g)
38         , _initial_name (g->name ())
39         , _active (_("Active"))
40         , _gain (_("Gain"))
41         , _relative (_("Relative"))
42         , _mute (_("Muting"))
43         , _solo (_("Soloing"))
44         , _rec_enable (_("Record enable"))
45         , _select (_("Selection"))
46         , _edit (_("Editing"))
47         , _route_active (_("Route active state"))
48         , _share_color (_("Color"))
49 {
50         set_modal (true);
51         set_skip_taskbar_hint (true);
52         set_resizable (false);
53         set_position (Gtk::WIN_POS_MOUSE);
54         set_name (N_("RouteGroupDialog"));
55
56         VBox* main_vbox = manage (new VBox);
57         Gtk::Label* l;
58
59         get_vbox()->set_spacing (4);
60
61         main_vbox->set_spacing (18);
62         main_vbox->set_border_width (5);
63
64         HBox* hbox = manage (new HBox);
65         hbox->set_spacing (6);
66         l = manage (new Label (_("Name:"), Gtk::ALIGN_LEFT, Gtk::ALIGN_CENTER, false ));
67
68         hbox->pack_start (*l, false, true);
69         hbox->pack_start (_name, true, true);
70
71         VBox* top_vbox = manage (new VBox);
72         top_vbox->set_spacing (4);
73
74         top_vbox->pack_start (*hbox, false, true);
75         top_vbox->pack_start (_active);
76
77         l = manage (new Label (_("Color"), Gtk::ALIGN_LEFT, Gtk::ALIGN_CENTER, false));
78         hbox = manage (new HBox);
79         hbox->set_spacing (12);
80         hbox->pack_start (*l, false, false);
81         hbox->pack_start (_color, false, false);
82         top_vbox->pack_start (*hbox, false, false);
83         
84         main_vbox->pack_start (*top_vbox, false, false);
85
86         _name.set_text (_group->name ());
87         _active.set_active (_group->is_active ());
88         _color.set_color (GroupTabs::group_color (_group));
89
90         VBox* options_box = manage (new VBox);
91         options_box->set_spacing (6);
92         
93         l = manage (new Label (_("<b>Sharing</b>"), Gtk::ALIGN_LEFT, Gtk::ALIGN_CENTER, false ));
94         l->set_use_markup ();
95         options_box->pack_start (*l, false, true);
96
97         _name.signal_activate ().connect (sigc::bind (sigc::mem_fun (*this, &Dialog::response), RESPONSE_OK));
98
99         _gain.set_active (_group->is_gain());
100         _relative.set_active (_group->is_relative());
101         _mute.set_active (_group->is_mute());
102         _solo.set_active (_group->is_solo());
103         _rec_enable.set_active (_group->is_recenable());
104         _select.set_active (_group->is_select());
105         _edit.set_active (_group->is_edit());
106         _route_active.set_active (_group->is_route_active());
107         _share_color.set_active (_group->is_color());
108
109         _name.signal_changed().connect (sigc::mem_fun (*this, &RouteGroupDialog::update));
110         _active.signal_toggled().connect (sigc::mem_fun (*this, &RouteGroupDialog::update));
111         _color.signal_color_set().connect (sigc::mem_fun (*this, &RouteGroupDialog::update));
112         _gain.signal_toggled().connect (sigc::mem_fun (*this, &RouteGroupDialog::update));
113         _relative.signal_toggled().connect (sigc::mem_fun (*this, &RouteGroupDialog::update));
114         _mute.signal_toggled().connect (sigc::mem_fun (*this, &RouteGroupDialog::update));
115         _solo.signal_toggled().connect (sigc::mem_fun (*this, &RouteGroupDialog::update));
116         _rec_enable.signal_toggled().connect (sigc::mem_fun (*this, &RouteGroupDialog::update));
117         _select.signal_toggled().connect (sigc::mem_fun (*this, &RouteGroupDialog::update));
118         _edit.signal_toggled().connect (sigc::mem_fun (*this, &RouteGroupDialog::update));
119         _route_active.signal_toggled().connect (sigc::mem_fun (*this, &RouteGroupDialog::update));
120         _share_color.signal_toggled().connect (sigc::mem_fun (*this, &RouteGroupDialog::update));
121         
122         gain_toggled ();
123
124         Table* table = manage (new Table (11, 4, false));
125         table->set_row_spacings (6);
126
127         l = manage (new Label ("", Gtk::ALIGN_LEFT, Gtk::ALIGN_CENTER, false));
128         l->set_padding (8, 0);
129         table->attach (*l, 0, 1, 0, 8, Gtk::FILL, Gtk::FILL, 0, 0);
130
131         table->attach (_gain, 1, 3, 1, 2, Gtk::FILL, Gtk::FILL, 0, 0);
132
133         l = manage (new Label ("", Gtk::ALIGN_LEFT, Gtk::ALIGN_CENTER, false));
134         l->set_padding (0, 0);
135         table->attach (*l, 1, 2, 2, 3, Gtk::FILL, Gtk::FILL, 0, 0);
136         table->attach (_relative, 2, 3, 2, 3, Gtk::FILL, Gtk::FILL, 0, 0);
137
138         table->attach (_mute, 1, 3, 3, 4, Gtk::FILL, Gtk::FILL, 0, 0);
139         table->attach (_solo, 1, 3, 4, 5, Gtk::FILL, Gtk::FILL, 0, 0);
140         table->attach (_rec_enable, 1, 3, 5, 6, Gtk::FILL, Gtk::FILL, 0, 0);
141         table->attach (_select, 1, 3, 6, 7, Gtk::FILL, Gtk::FILL, 0, 0);
142         table->attach (_edit, 1, 3, 7, 8, Gtk::FILL, Gtk::FILL, 0, 0);
143         table->attach (_route_active, 1, 3, 8, 9, Gtk::FILL, Gtk::FILL, 0, 0);
144         table->attach (_share_color, 1, 3, 9, 10, Gtk::FILL, Gtk::FILL, 0, 0);
145
146         options_box->pack_start (*table, false, true);
147         main_vbox->pack_start (*options_box, false, true);
148
149         get_vbox()->pack_start (*main_vbox, false, false);
150
151         _gain.signal_toggled().connect(sigc::mem_fun (*this, &RouteGroupDialog::gain_toggled));
152
153         if (creating_new) {
154                 add_button (Stock::CANCEL, RESPONSE_CANCEL);
155                 add_button (Stock::NEW, RESPONSE_OK);
156                 set_default_response (RESPONSE_OK);
157         } else {
158                 add_button (Stock::CLOSE, RESPONSE_CLOSE);
159                 set_default_response (RESPONSE_CLOSE);
160         }
161
162         show_all_children ();
163 }
164
165 /** @return true if the route group edit was cancelled, otherwise false */
166 bool
167 RouteGroupDialog::do_run ()
168 {
169         while (1) {
170                 int const r = run ();
171                 if (r == Gtk::RESPONSE_CANCEL) {
172                         /* cancel, so just bail now */
173                         return Gtk::RESPONSE_CANCEL;
174                 }
175
176                 if (unique_name ()) {
177                         /* not cancelled and the name is ok, so all is well */
178                         return false;
179                 }
180
181                 _group->set_name (_initial_name);
182                 MessageDialog msg (
183                         _("A route group of this name already exists.  Please use a different name."),
184                         false,
185                         Gtk::MESSAGE_ERROR,
186                         Gtk::BUTTONS_OK,
187                         true
188                         );
189
190                 msg.run ();
191         }
192
193         /* NOTREACHED */
194         return false;
195 }
196
197 void
198 RouteGroupDialog::update ()
199 {
200         PropertyList plist;
201
202         plist.add (Properties::gain, _gain.get_active());
203         plist.add (Properties::recenable, _rec_enable.get_active());
204         plist.add (Properties::mute, _mute.get_active());
205         plist.add (Properties::solo, _solo.get_active ());
206         plist.add (Properties::select, _select.get_active());
207         plist.add (Properties::edit, _edit.get_active());
208         plist.add (Properties::route_active, _route_active.get_active());
209         plist.add (Properties::relative, _relative.get_active());
210         plist.add (Properties::active, _active.get_active());
211         plist.add (Properties::name, string (_name.get_text()));
212         plist.add (Properties::color, _share_color.get_active());
213
214         _group->apply_changes (plist);
215         
216         GroupTabs::set_group_color (_group, _color.get_color ());
217 }
218
219 void
220 RouteGroupDialog::gain_toggled ()
221 {
222         _relative.set_sensitive (_gain.get_active ());
223 }
224
225 /** @return true if the current group's name is unique accross the session */
226 bool
227 RouteGroupDialog::unique_name () const
228 {
229         list<RouteGroup*> route_groups = _group->session().route_groups ();
230         list<RouteGroup*>::iterator i = route_groups.begin ();
231         while (i != route_groups.end() && ((*i)->name() != _name.get_text() || *i == _group)) {
232                 ++i;
233         }
234
235         return (i == route_groups.end ());
236 }