Update GPL boilerplate and (C)
[ardour.git] / gtk2_ardour / editor_mixer.cc
index 0c0348383f2a577a3423dc9144acbbc63eec6476..9074c6f461fcbef4ef2a783fb0caf3d6abb91294 100644 (file)
@@ -1,21 +1,27 @@
 /*
-    Copyright (C) 2003-2004 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.
-
-*/
+ * Copyright (C) 2005-2008 Nick Mainsbridge <mainsbridge@gmail.com>
+ * Copyright (C) 2005-2017 Paul Davis <paul@linuxaudiosystems.com>
+ * Copyright (C) 2005 Taybin Rutkin <taybin@taybin.com>
+ * Copyright (C) 2006-2011 David Robillard <d@drobilla.net>
+ * Copyright (C) 2007-2011 Carl Hetherington <carl@carlh.net>
+ * Copyright (C) 2014-2017 Robin Gareus <robin@gareus.org>
+ * Copyright (C) 2014 Ben Loftis <ben@harrisonconsoles.com>
+ * Copyright (C) 2015-2016 Tim Mayberry <mojofunk@gmail.com>
+ *
+ * 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.,
+ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+ */
 
 #ifdef WAF_BUILD
 #include "gtk2ardour-config.h"
@@ -39,6 +45,7 @@
 #include "editor.h"
 #include "editor_route_groups.h"
 #include "editor_regions.h"
+#include "enums_convert.h"
 #include "gui_thread.h"
 #include "midi_time_axis.h"
 #include "mixer_strip.h"
@@ -145,7 +152,7 @@ Editor::show_editor_mixer (bool yn)
 
                if (current_mixer_strip && current_mixer_strip->get_parent() == 0) {
                        global_hpacker.pack_start (*current_mixer_strip, Gtk::PACK_SHRINK );
-                       global_hpacker.reorder_child (*current_mixer_strip, 0);
+                       global_hpacker.reorder_child (*current_mixer_strip, 0);
                        current_mixer_strip->show ();
                }
 
@@ -202,36 +209,26 @@ Editor::set_selected_mixer_strip (TimeAxisView& view)
        // if this is an automation track, then we shold the mixer strip should
        // show the parent
 
-       boost::shared_ptr<ARDOUR::Route> route;
+       boost::shared_ptr<ARDOUR::Stripable> stripable;
        AutomationTimeAxisView* atv;
 
        if ((atv = dynamic_cast<AutomationTimeAxisView*>(&view)) != 0) {
-
                AudioTimeAxisView *parent = dynamic_cast<AudioTimeAxisView*>(view.get_parent());
-
                if (parent) {
-                       route = parent->route ();
+                       stripable = parent->stripable ();
                }
-
        } else {
-
-               AudioTimeAxisView* at = dynamic_cast<AudioTimeAxisView*> (&view);
-
-               if (at) {
-                       route = at->route();
-               } else {
-                       MidiTimeAxisView* mt = dynamic_cast<MidiTimeAxisView*> (&view);
-                       if (mt) {
-                               route = mt->route();
-                       }
+               StripableTimeAxisView* stav = dynamic_cast<StripableTimeAxisView*> (&view);
+               if (stav) {
+                       stripable = stav->stripable();
                }
        }
 
        /* Typically this is set by changing the TAV selection but if for any
-          reason we decide to show a different strip for some reason, make
-          sure that control surfaces can find it.
-       */
-       ARDOUR::ControlProtocol::set_first_selected_stripable (route);
+        * reason we decide to show a different strip for some reason, make
+        * sure that control surfaces can find it.
+        */
+       ARDOUR::ControlProtocol::set_first_selected_stripable (stripable);
 
        Glib::RefPtr<Gtk::Action> act = ActionManager::get_action (X_("Editor"), X_("show-editor-mixer"));
 
@@ -247,6 +244,7 @@ Editor::set_selected_mixer_strip (TimeAxisView& view)
                create_editor_mixer ();
        }
 
+       boost::shared_ptr<ARDOUR::Route> route = boost::dynamic_pointer_cast<ARDOUR::Route> (stripable);
        if (current_mixer_strip->route() == route) {
                return;
        }
@@ -271,7 +269,7 @@ void
 Editor::maybe_add_mixer_strip_width (XMLNode& node)
 {
        if (current_mixer_strip) {
-               node.add_property ("mixer-width", enum_2_string (editor_mixer_strip_width));
+               node.set_property ("mixer-width", editor_mixer_strip_width);
        }
 }
 
@@ -284,35 +282,3 @@ Editor::mixer_strip_width_changed ()
 
        editor_mixer_strip_width = current_mixer_strip->get_width_enum ();
 }
-
-void
-Editor::track_mixer_selection ()
-{
-       Mixer_UI::instance()->selection().RoutesChanged.connect (sigc::mem_fun (*this, &Editor::follow_mixer_selection));
-}
-
-void
-Editor::follow_mixer_selection ()
-{
-       if (_following_mixer_selection) {
-               return;
-       }
-
-       _following_mixer_selection = true;
-       selection->block_tracks_changed (true);
-
-       AxisViewSelection& s (Mixer_UI::instance()->selection().axes);
-
-       selection->clear_tracks ();
-
-       for (AxisViewSelection::iterator i = s.begin(); i != s.end(); ++i) {
-               TimeAxisView* tav = axis_view_from_stripable ((*i)->stripable());
-               if (tav) {
-                       selection->add (tav);
-               }
-       }
-
-       _following_mixer_selection = false;
-       selection->block_tracks_changed (false);
-       selection->TracksChanged (); /* EMIT SIGNAL */
-}