make strip-as-GUI-for-send work for metering too ; frame around session summary widge...
[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         _name.signal_activate ().connect (sigc::bind (mem_fun (*this, &Dialog::response), RESPONSE_ACCEPT));
79
80         _gain.set_active (_group->property (RouteGroup::Gain));
81         _relative.set_active (_group->is_relative());
82         _mute.set_active (_group->property (RouteGroup::Mute));
83         _solo.set_active (_group->property (RouteGroup::Solo));
84         _rec_enable.set_active (_group->property (RouteGroup::RecEnable));
85         _select.set_active (_group->property (RouteGroup::Select));
86         _edit.set_active (_group->property (RouteGroup::Edit));
87
88         gain_toggled ();
89
90         Table* table = manage (new Table (8, 3, false));
91         table->set_row_spacings (6);
92
93         l = manage (new Label ("", Gtk::ALIGN_LEFT, Gtk::ALIGN_CENTER, false));
94         l->set_padding (8, 0);
95         table->attach (*l, 0, 1, 0, 8, Gtk::FILL, Gtk::FILL, 0, 0);
96
97         table->attach (_active, 1, 3, 0, 1, Gtk::FILL, Gtk::FILL, 0, 0);
98         table->attach (_gain, 1, 3, 1, 2, Gtk::FILL, Gtk::FILL, 0, 0);
99
100         l = manage (new Label ("", Gtk::ALIGN_LEFT, Gtk::ALIGN_CENTER, false));
101         l->set_padding (0, 0);
102         table->attach (*l, 1, 2, 2, 3, Gtk::FILL, Gtk::FILL, 0, 0);
103         table->attach (_relative, 2, 3, 2, 3, Gtk::FILL, Gtk::FILL, 0, 0);
104
105         table->attach (_mute, 1, 3, 3, 4, Gtk::FILL, Gtk::FILL, 0, 0);
106         table->attach (_solo, 1, 3, 4, 5, Gtk::FILL, Gtk::FILL, 0, 0);
107         table->attach (_rec_enable, 1, 3, 5, 6, Gtk::FILL, Gtk::FILL, 0, 0);
108         table->attach (_select, 1, 3, 6, 7, Gtk::FILL, Gtk::FILL, 0, 0);
109         table->attach (_edit, 1, 3, 7, 8, Gtk::FILL, Gtk::FILL, 0, 0);
110
111         options_box->pack_start (*table, false, true);
112         vbox->pack_start (*options_box, false, true);
113
114         get_vbox()->pack_start (*vbox, false, false);
115
116         _gain.signal_toggled().connect(mem_fun (*this, &RouteGroupDialog::gain_toggled));
117
118         add_button (Stock::CANCEL, RESPONSE_CANCEL);
119         add_button (s, RESPONSE_OK);
120
121         show_all_children ();
122 }
123
124 int
125 RouteGroupDialog::do_run ()
126 {
127         int const r = run ();
128
129         if (r == Gtk::RESPONSE_OK || r == Gtk::RESPONSE_ACCEPT) {
130                 _group->set_property (RouteGroup::Gain, _gain.get_active ());
131                 _group->set_property (RouteGroup::Mute, _mute.get_active ());
132                 _group->set_property (RouteGroup::Solo, _solo.get_active ());
133                 _group->set_property (RouteGroup::RecEnable, _rec_enable.get_active ());
134                 _group->set_property (RouteGroup::Select, _select.get_active ());
135                 _group->set_property (RouteGroup::Edit, _edit.get_active ());
136                 _group->set_name (_name.get_text ()); // This emits changed signal
137                 _group->set_active (_active.get_active (), this);
138                 _group->set_relative (_relative.get_active(), this);
139         }
140
141         return r;
142 }
143
144 void
145 RouteGroupDialog::gain_toggled ()
146 {
147         _relative.set_sensitive (_gain.get_active ());
148 }
149