7b802ac6ecdc0f63c5656a367ad6dcf620ab0333
[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 using namespace PBD;
31
32 RouteGroupDialog::RouteGroupDialog (RouteGroup* g, StockID const & s)
33         : ArdourDialog (_("route group dialog")),
34           _group (g),
35           _active (_("Active")),
36           _gain (_("Gain")),
37           _relative (_("Relative")),
38           _mute (_("Muting")),
39           _solo (_("Soloing")),
40           _rec_enable (_("Record enable")),
41           _select (_("Selection")),
42           _edit (_("Editing"))
43 {
44         set_modal (true);
45         set_skip_taskbar_hint (true);
46         set_resizable (false);
47         set_position (Gtk::WIN_POS_MOUSE);
48         set_name (N_("RouteGroupDialog"));
49
50         set_title (_("Route Group"));
51
52         VBox* vbox = manage (new VBox);
53         Gtk::Label* l;
54
55         get_vbox()->set_spacing (4);
56
57         vbox->set_spacing (18);
58         vbox->set_border_width (5);
59
60         HBox* hbox = manage (new HBox);
61         hbox->set_spacing (6);
62         l = manage (new Label (_("Name:"), Gtk::ALIGN_LEFT, Gtk::ALIGN_CENTER, false ));
63
64         hbox->pack_start (*l, false, true);
65         hbox->pack_start (_name, true, true);
66
67         vbox->pack_start (*hbox, false, true);
68
69         VBox* options_box = manage (new VBox);
70         options_box->set_spacing (6);
71
72         l = manage (new Label (_("<b>Sharing</b>"), Gtk::ALIGN_LEFT, Gtk::ALIGN_CENTER, false ));
73         l->set_use_markup ();
74         options_box->pack_start (*l, false, true);
75
76         _name.set_text (_group->name ());
77         _active.set_active (_group->is_active ());
78
79         _name.signal_activate ().connect (sigc::bind (sigc::mem_fun (*this, &Dialog::response), RESPONSE_OK));
80
81         _gain.set_active (_group->is_gain());
82         _relative.set_active (_group->is_relative());
83         _mute.set_active (_group->is_mute());
84         _solo.set_active (_group->is_solo());
85         _rec_enable.set_active (_group->is_recenable());
86         _select.set_active (_group->is_select());
87         _edit.set_active (_group->is_edit());
88
89         gain_toggled ();
90
91         Table* table = manage (new Table (8, 3, false));
92         table->set_row_spacings (6);
93
94         l = manage (new Label ("", Gtk::ALIGN_LEFT, Gtk::ALIGN_CENTER, false));
95         l->set_padding (8, 0);
96         table->attach (*l, 0, 1, 0, 8, Gtk::FILL, Gtk::FILL, 0, 0);
97
98         table->attach (_active, 1, 3, 0, 1, Gtk::FILL, Gtk::FILL, 0, 0);
99         table->attach (_gain, 1, 3, 1, 2, Gtk::FILL, Gtk::FILL, 0, 0);
100
101         l = manage (new Label ("", Gtk::ALIGN_LEFT, Gtk::ALIGN_CENTER, false));
102         l->set_padding (0, 0);
103         table->attach (*l, 1, 2, 2, 3, Gtk::FILL, Gtk::FILL, 0, 0);
104         table->attach (_relative, 2, 3, 2, 3, Gtk::FILL, Gtk::FILL, 0, 0);
105
106         table->attach (_mute, 1, 3, 3, 4, Gtk::FILL, Gtk::FILL, 0, 0);
107         table->attach (_solo, 1, 3, 4, 5, Gtk::FILL, Gtk::FILL, 0, 0);
108         table->attach (_rec_enable, 1, 3, 5, 6, Gtk::FILL, Gtk::FILL, 0, 0);
109         table->attach (_select, 1, 3, 6, 7, Gtk::FILL, Gtk::FILL, 0, 0);
110         table->attach (_edit, 1, 3, 7, 8, Gtk::FILL, Gtk::FILL, 0, 0);
111
112         options_box->pack_start (*table, false, true);
113         vbox->pack_start (*options_box, false, true);
114
115         get_vbox()->pack_start (*vbox, false, false);
116
117         _gain.signal_toggled().connect(sigc::mem_fun (*this, &RouteGroupDialog::gain_toggled));
118
119         add_button (Stock::CANCEL, RESPONSE_CANCEL);
120         add_button (s, RESPONSE_OK);
121         set_default_response (RESPONSE_OK);
122
123         show_all_children ();
124 }
125
126 int
127 RouteGroupDialog::do_run ()
128 {
129         int const r = run ();
130
131         if (r == Gtk::RESPONSE_OK || r == Gtk::RESPONSE_ACCEPT) {
132
133                 PropertyList plist;
134
135                 plist.add (Properties::gain, _gain.get_active());
136                 plist.add (Properties::recenable, _rec_enable.get_active());
137                 plist.add (Properties::mute, _mute.get_active());
138                 plist.add (Properties::solo, _solo.get_active ());
139                 plist.add (Properties::select, _select.get_active());
140                 plist.add (Properties::edit, _edit.get_active());
141                 plist.add (Properties::relative, _relative.get_active());
142                 plist.add (Properties::active, _active.get_active());
143                 plist.add (Properties::name, string (_name.get_text()));
144                 
145                 _group->set_properties (plist);
146         }
147
148         return r;
149 }
150
151 void
152 RouteGroupDialog::gain_toggled ()
153 {
154         _relative.set_sensitive (_gain.get_active ());
155 }
156