changes to help strp silence
[ardour.git] / gtk2_ardour / route_group_dialog.cc
index 6a87ea3c9505965ee86bf404b9eeada0e865a050..7b802ac6ecdc0f63c5656a367ad6dcf620ab0333 100644 (file)
@@ -1,13 +1,36 @@
+/*
+    Copyright (C) 2009 Paul Davis
+
+    This program is free software; you can redistribute it and/or modify
+    it under the terms of the GNU General Public License as published by
+    the Free Software Foundation; either version 2 of the License, or
+    (at your option) any later version.
+
+    This program is distributed in the hope that it will be useful,
+    but WITHOUT ANY WARRANTY; without even the implied warranty of
+    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+    GNU General Public License for more details.
+
+    You should have received a copy of the GNU General Public License
+    along with this program; if not, write to the Free Software
+    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+
+*/
+
+#include <gtkmm/table.h>
 #include <gtkmm/stock.h>
 #include "ardour/route_group.h"
 #include "route_group_dialog.h"
 #include "i18n.h"
+#include <iostream>
 
 using namespace Gtk;
 using namespace ARDOUR;
+using namespace std;
+using namespace PBD;
 
 RouteGroupDialog::RouteGroupDialog (RouteGroup* g, StockID const & s)
-       : Dialog (_("Route group")),
+       : ArdourDialog (_("route group dialog")),
          _group (g),
          _active (_("Active")),
          _gain (_("Gain")),
@@ -18,41 +41,86 @@ RouteGroupDialog::RouteGroupDialog (RouteGroup* g, StockID const & s)
          _select (_("Selection")),
          _edit (_("Editing"))
 {
+       set_modal (true);
+       set_skip_taskbar_hint (true);
+       set_resizable (false);
+       set_position (Gtk::WIN_POS_MOUSE);
+       set_name (N_("RouteGroupDialog"));
+
+       set_title (_("Route Group"));
+
+       VBox* vbox = manage (new VBox);
+       Gtk::Label* l;
+
+       get_vbox()->set_spacing (4);
+
+       vbox->set_spacing (18);
+       vbox->set_border_width (5);
+
+       HBox* hbox = manage (new HBox);
+       hbox->set_spacing (6);
+       l = manage (new Label (_("Name:"), Gtk::ALIGN_LEFT, Gtk::ALIGN_CENTER, false ));
+
+       hbox->pack_start (*l, false, true);
+       hbox->pack_start (_name, true, true);
+
+       vbox->pack_start (*hbox, false, true);
+
+       VBox* options_box = manage (new VBox);
+       options_box->set_spacing (6);
+
+       l = manage (new Label (_("<b>Sharing</b>"), Gtk::ALIGN_LEFT, Gtk::ALIGN_CENTER, false ));
+       l->set_use_markup ();
+       options_box->pack_start (*l, false, true);
+
        _name.set_text (_group->name ());
        _active.set_active (_group->is_active ());
 
-       _gain.set_active (_group->property (RouteGroup::Gain));
+       _name.signal_activate ().connect (sigc::bind (sigc::mem_fun (*this, &Dialog::response), RESPONSE_OK));
+
+       _gain.set_active (_group->is_gain());
        _relative.set_active (_group->is_relative());
-       _mute.set_active (_group->property (RouteGroup::Mute));
-       _solo.set_active (_group->property (RouteGroup::Solo));
-       _rec_enable.set_active (_group->property (RouteGroup::RecEnable));
-       _select.set_active (_group->property (RouteGroup::Select));
-       _edit.set_active (_group->property (RouteGroup::Edit));
-       
-       HBox* h = manage (new HBox);
-       h->pack_start (*manage (new Label (_("Name:"))));
-       h->pack_start (_name);
-
-       get_vbox()->pack_start (*h);
-       get_vbox()->pack_start (_active);
-       get_vbox()->pack_start (_gain);
-
-       h = manage (new HBox);
-       h->pack_start (_relative, PACK_EXPAND_PADDING);
-       get_vbox()->pack_start (*h);
-
-       get_vbox()->pack_start (_mute);
-       get_vbox()->pack_start (_solo);
-       get_vbox()->pack_start (_rec_enable);
-       get_vbox()->pack_start (_select);
-       get_vbox()->pack_start (_edit);
-
-       get_vbox()->set_border_width (8);
+       _mute.set_active (_group->is_mute());
+       _solo.set_active (_group->is_solo());
+       _rec_enable.set_active (_group->is_recenable());
+       _select.set_active (_group->is_select());
+       _edit.set_active (_group->is_edit());
+
+       gain_toggled ();
+
+       Table* table = manage (new Table (8, 3, false));
+       table->set_row_spacings (6);
+
+       l = manage (new Label ("", Gtk::ALIGN_LEFT, Gtk::ALIGN_CENTER, false));
+       l->set_padding (8, 0);
+       table->attach (*l, 0, 1, 0, 8, Gtk::FILL, Gtk::FILL, 0, 0);
+
+       table->attach (_active, 1, 3, 0, 1, Gtk::FILL, Gtk::FILL, 0, 0);
+       table->attach (_gain, 1, 3, 1, 2, Gtk::FILL, Gtk::FILL, 0, 0);
+
+       l = manage (new Label ("", Gtk::ALIGN_LEFT, Gtk::ALIGN_CENTER, false));
+       l->set_padding (0, 0);
+       table->attach (*l, 1, 2, 2, 3, Gtk::FILL, Gtk::FILL, 0, 0);
+       table->attach (_relative, 2, 3, 2, 3, Gtk::FILL, Gtk::FILL, 0, 0);
+
+       table->attach (_mute, 1, 3, 3, 4, Gtk::FILL, Gtk::FILL, 0, 0);
+       table->attach (_solo, 1, 3, 4, 5, Gtk::FILL, Gtk::FILL, 0, 0);
+       table->attach (_rec_enable, 1, 3, 5, 6, Gtk::FILL, Gtk::FILL, 0, 0);
+       table->attach (_select, 1, 3, 6, 7, Gtk::FILL, Gtk::FILL, 0, 0);
+       table->attach (_edit, 1, 3, 7, 8, Gtk::FILL, Gtk::FILL, 0, 0);
+
+       options_box->pack_start (*table, false, true);
+       vbox->pack_start (*options_box, false, true);
+
+       get_vbox()->pack_start (*vbox, false, false);
+
+       _gain.signal_toggled().connect(sigc::mem_fun (*this, &RouteGroupDialog::gain_toggled));
 
        add_button (Stock::CANCEL, RESPONSE_CANCEL);
        add_button (s, RESPONSE_OK);
+       set_default_response (RESPONSE_OK);
 
-       show_all ();
+       show_all_children ();
 }
 
 int
@@ -60,18 +128,29 @@ RouteGroupDialog::do_run ()
 {
        int const r = run ();
 
-       if (r == Gtk::RESPONSE_OK) {
-               _group->set_name (_name.get_text ());
-               _group->set_active (_active.get_active (), this);
-
-               _group->set_property (RouteGroup::Gain, _gain.get_active ());
-               _group->set_property (RouteGroup::Mute, _mute.get_active ());
-               _group->set_property (RouteGroup::Solo, _solo.get_active ());
-               _group->set_property (RouteGroup::RecEnable, _rec_enable.get_active ());
-               _group->set_property (RouteGroup::Select, _select.get_active ());
-               _group->set_property (RouteGroup::Edit, _edit.get_active ());
-               _group->set_relative (_relative.get_active(), this);
+       if (r == Gtk::RESPONSE_OK || r == Gtk::RESPONSE_ACCEPT) {
+
+               PropertyList plist;
+
+               plist.add (Properties::gain, _gain.get_active());
+               plist.add (Properties::recenable, _rec_enable.get_active());
+               plist.add (Properties::mute, _mute.get_active());
+               plist.add (Properties::solo, _solo.get_active ());
+               plist.add (Properties::select, _select.get_active());
+               plist.add (Properties::edit, _edit.get_active());
+               plist.add (Properties::relative, _relative.get_active());
+               plist.add (Properties::active, _active.get_active());
+               plist.add (Properties::name, string (_name.get_text()));
+               
+               _group->set_properties (plist);
        }
 
        return r;
 }
+
+void
+RouteGroupDialog::gain_toggled ()
+{
+       _relative.set_sensitive (_gain.get_active ());
+}
+