a23d1f47496be7b4325535989dd0da0c2f8cd0cf
[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 "ardour/route_group.h"
23 #include "route_group_dialog.h"
24 #include "i18n.h"
25 #include <iostream>
26
27 using namespace Gtk;
28 using namespace ARDOUR;
29 using namespace std;
30
31 RouteGroupDialog::RouteGroupDialog (RouteGroup* g, StockID const & s)
32         : ArdourDialog (_("route group dialog")),
33           _group (g),
34           _active (_("Active")),
35           _gain (_("Gain")),
36           _relative (_("Relative")),
37           _mute (_("Muting")),
38           _solo (_("Soloing")),
39           _rec_enable (_("Record enable")),
40           _select (_("Selection")),
41           _edit (_("Editing"))
42 {
43         set_modal (true);
44         set_skip_taskbar_hint (true);
45         set_resizable (false);
46         set_position (Gtk::WIN_POS_MOUSE);
47         set_name (N_("RouteGroupDialog"));
48
49         set_title (_("Route Group"));
50
51         VBox* vbox = manage (new VBox);
52         Gtk::Label* l;
53
54         get_vbox()->set_spacing (4);
55
56         vbox->set_spacing (18);
57         vbox->set_border_width (5);
58
59         HBox* hbox = manage (new HBox);
60         hbox->set_spacing (6);
61         l = manage (new Label (_("Name:"), Gtk::ALIGN_LEFT, Gtk::ALIGN_CENTER, false ));
62
63         hbox->pack_start (*l, false, true);
64         hbox->pack_start (_name, true, true);
65
66         vbox->pack_start (*hbox, false, true);
67
68         VBox* options_box = manage (new VBox);
69         options_box->set_spacing (6);
70
71         l = manage (new Label (_("<b>Sharing</b>"), Gtk::ALIGN_LEFT, Gtk::ALIGN_CENTER, false ));
72         l->set_use_markup ();
73         options_box->pack_start (*l, false, true);
74
75         _name.set_text (_group->name ());
76         _active.set_active (_group->is_active ());
77
78         _gain.set_active (_group->property (RouteGroup::Gain));
79         _relative.set_active (_group->is_relative());
80         _mute.set_active (_group->property (RouteGroup::Mute));
81         _solo.set_active (_group->property (RouteGroup::Solo));
82         _rec_enable.set_active (_group->property (RouteGroup::RecEnable));
83         _select.set_active (_group->property (RouteGroup::Select));
84         _edit.set_active (_group->property (RouteGroup::Edit));
85
86         gain_toggled ();
87
88         Table* table = manage (new Table (8, 3, false));
89         table->set_row_spacings (6);
90
91         l = manage (new Label ("", Gtk::ALIGN_LEFT, Gtk::ALIGN_CENTER, false));
92         l->set_padding (8, 0);
93         table->attach (*l, 0, 1, 0, 8, Gtk::FILL, Gtk::FILL, 0, 0);
94
95         table->attach (_active, 1, 3, 0, 1, Gtk::FILL, Gtk::FILL, 0, 0);
96         table->attach (_gain, 1, 3, 1, 2, Gtk::FILL, Gtk::FILL, 0, 0);
97
98         l = manage (new Label ("", Gtk::ALIGN_LEFT, Gtk::ALIGN_CENTER, false));
99         l->set_padding (0, 0);
100         table->attach (*l, 1, 2, 2, 3, Gtk::FILL, Gtk::FILL, 0, 0);
101         table->attach (_relative, 2, 3, 2, 3, Gtk::FILL, Gtk::FILL, 0, 0);
102
103         table->attach (_mute, 1, 3, 3, 4, Gtk::FILL, Gtk::FILL, 0, 0);
104         table->attach (_solo, 1, 3, 4, 5, Gtk::FILL, Gtk::FILL, 0, 0);
105         table->attach (_rec_enable, 1, 3, 5, 6, Gtk::FILL, Gtk::FILL, 0, 0);
106         table->attach (_select, 1, 3, 6, 7, Gtk::FILL, Gtk::FILL, 0, 0);
107         table->attach (_edit, 1, 3, 7, 8, Gtk::FILL, Gtk::FILL, 0, 0);
108
109         options_box->pack_start (*table, false, true);
110         vbox->pack_start (*options_box, false, true);
111
112         get_vbox()->pack_start (*vbox, false, false);
113
114         _gain.signal_toggled().connect(mem_fun (*this, &RouteGroupDialog::gain_toggled));
115
116         add_button (Stock::CANCEL, RESPONSE_CANCEL);
117         add_button (s, RESPONSE_OK);
118
119         show_all_children ();
120 }
121
122 int
123 RouteGroupDialog::do_run ()
124 {
125         int const r = run ();
126
127         if (r == Gtk::RESPONSE_OK) {
128                 _group->set_property (RouteGroup::Gain, _gain.get_active ());
129                 _group->set_property (RouteGroup::Mute, _mute.get_active ());
130                 _group->set_property (RouteGroup::Solo, _solo.get_active ());
131                 _group->set_property (RouteGroup::RecEnable, _rec_enable.get_active ());
132                 _group->set_property (RouteGroup::Select, _select.get_active ());
133                 _group->set_property (RouteGroup::Edit, _edit.get_active ());
134                 _group->set_name (_name.get_text ()); // This emits changed signal
135                 _group->set_active (_active.get_active (), this);
136                 _group->set_relative (_relative.get_active(), this);
137         }
138
139         return r;
140 }
141
142 void
143 RouteGroupDialog::gain_toggled ()
144 {
145         _relative.set_sensitive (_gain.get_active ());
146 }
147