summaryrefslogtreecommitdiff
path: root/gtk2_ardour/route_processor_selection.cc
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2007-06-27 20:23:48 +0000
committerDavid Robillard <d@drobilla.net>2007-06-27 20:23:48 +0000
commit05bcdd1d4c583c68ed977164913ff47e94df7adb (patch)
treeaea97d1d013b62116feb5ac77db4b5479ffb9b9e /gtk2_ardour/route_processor_selection.cc
parent09264537c4baeabfc8eccddc1132ae8612a29555 (diff)
Renamed Insert to Processor and Redirect to IOProcessor.
git-svn-id: svn://localhost/ardour2/trunk@2071 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'gtk2_ardour/route_processor_selection.cc')
-rw-r--r--gtk2_ardour/route_processor_selection.cc176
1 files changed, 176 insertions, 0 deletions
diff --git a/gtk2_ardour/route_processor_selection.cc b/gtk2_ardour/route_processor_selection.cc
new file mode 100644
index 0000000000..33dd1bfe7b
--- /dev/null
+++ b/gtk2_ardour/route_processor_selection.cc
@@ -0,0 +1,176 @@
+/*
+ Copyright (C) 2002 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 <algorithm>
+#include <sigc++/bind.h>
+#include <pbd/error.h>
+
+#include <ardour/playlist.h>
+#include <ardour/processor.h>
+#include <ardour/route.h>
+
+#include "route_processor_selection.h"
+
+#include "i18n.h"
+
+using namespace ARDOUR;
+using namespace PBD;
+using namespace sigc;
+
+RouteRedirectSelection&
+RouteRedirectSelection::operator= (const RouteRedirectSelection& other)
+{
+ if (&other != this) {
+ processors = other.processors;
+ routes = other.routes;
+ }
+ return *this;
+}
+
+bool
+operator== (const RouteRedirectSelection& a, const RouteRedirectSelection& b)
+{
+ return a.processors == b.processors &&
+ a.routes == b.routes;
+}
+
+void
+RouteRedirectSelection::clear ()
+{
+ clear_processors ();
+ clear_routes ();
+}
+
+void
+RouteRedirectSelection::clear_processors ()
+{
+ processors.clear ();
+ ProcessorsChanged ();
+}
+
+void
+RouteRedirectSelection::clear_routes ()
+{
+ routes.clear ();
+ RoutesChanged ();
+}
+
+void
+RouteRedirectSelection::add (boost::shared_ptr<Processor> r)
+{
+ if (find (processors.begin(), processors.end(), r) == processors.end()) {
+ processors.push_back (r);
+
+ // XXX SHAREDPTR FIXME
+ // void (RouteRedirectSelection::*pmf)(Redirect*) = &RouteRedirectSelection::remove;
+ // r->GoingAway.connect (mem_fun(*this, pmf));
+
+ ProcessorsChanged();
+ }
+}
+
+void
+RouteRedirectSelection::add (const vector<boost::shared_ptr<Processor> >& rlist)
+{
+ bool changed = false;
+
+ for (vector<boost::shared_ptr<Processor> >::const_iterator i = rlist.begin(); i != rlist.end(); ++i) {
+ if (find (processors.begin(), processors.end(), *i) == processors.end()) {
+ processors.push_back (*i);
+
+ // XXX SHAREDPTR FIXME
+
+ //void (RouteRedirectSelection::*pmf)(Redirect*) = &RouteRedirectSelection::remove;
+ // (*i)->GoingAway.connect (mem_fun(*this, pmf));
+ changed = true;
+ }
+ }
+
+ if (changed) {
+ ProcessorsChanged();
+ }
+}
+
+void
+RouteRedirectSelection::remove (boost::shared_ptr<Processor> r)
+{
+ list<boost::shared_ptr<Processor> >::iterator i;
+ if ((i = find (processors.begin(), processors.end(), r)) != processors.end()) {
+ processors.erase (i);
+ ProcessorsChanged ();
+ }
+}
+
+void
+RouteRedirectSelection::set (boost::shared_ptr<Processor> r)
+{
+ clear_processors ();
+ add (r);
+}
+
+void
+RouteRedirectSelection::set (const vector<boost::shared_ptr<Processor> >& rlist)
+{
+ clear_processors ();
+ add (rlist);
+}
+
+void
+RouteRedirectSelection::add (boost::shared_ptr<Route> r)
+{
+ if (find (routes.begin(), routes.end(), r) == routes.end()) {
+ routes.push_back (r);
+
+ // XXX SHAREDPTR FIXME
+ // void (RouteRedirectSelection::*pmf)(Route*) = &RouteRedirectSelection::remove;
+ // r->GoingAway.connect (bind (mem_fun(*this, pmf), r));
+
+ RoutesChanged();
+ }
+}
+
+void
+RouteRedirectSelection::remove (boost::shared_ptr<Route> r)
+{
+ list<boost::shared_ptr<Route> >::iterator i;
+ if ((i = find (routes.begin(), routes.end(), r)) != routes.end()) {
+ routes.erase (i);
+ RoutesChanged ();
+ }
+}
+
+void
+RouteRedirectSelection::set (boost::shared_ptr<Route> r)
+{
+ clear_routes ();
+ add (r);
+}
+
+bool
+RouteRedirectSelection::selected (boost::shared_ptr<Route> r)
+{
+ return find (routes.begin(), routes.end(), r) != routes.end();
+}
+
+bool
+RouteRedirectSelection::empty ()
+{
+ return processors.empty () && routes.empty ();
+}
+