summaryrefslogtreecommitdiff
path: root/libs/pbd/pbd/controllable.h
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2009-12-11 02:00:22 +0000
committerPaul Davis <paul@linuxaudiosystems.com>2009-12-11 02:00:22 +0000
commit2983f8de97412b4887394747abed59fa11a11cff (patch)
treed8e43dfc53beca04f39ed9745de11491d9ba4844 /libs/pbd/pbd/controllable.h
parent29a8238e4d34f1f15aec0b55e98bee080cf8fec5 (diff)
(MAY BREAK COMPILATION - unfinished work, being transferred between machines via svn) ... start to make MidiControllable bind to a URI, not an object
git-svn-id: svn://localhost/ardour2/branches/3.0@6346 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs/pbd/pbd/controllable.h')
-rw-r--r--libs/pbd/pbd/controllable.h13
1 files changed, 10 insertions, 3 deletions
diff --git a/libs/pbd/pbd/controllable.h b/libs/pbd/pbd/controllable.h
index 1ab649f8b9..76202d7bdb 100644
--- a/libs/pbd/pbd/controllable.h
+++ b/libs/pbd/pbd/controllable.h
@@ -2,7 +2,7 @@
Copyright (C) 2000-2007 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
+v 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.
@@ -34,9 +34,12 @@ namespace PBD {
class Controllable : public PBD::StatefulDestructible {
public:
- Controllable (std::string name);
+ Controllable (std::string name, const std::string& uri);
virtual ~Controllable() { Destroyed (this); }
+ void set_uri (const std::string&);
+ const std::string& uri() const { return _uri; }
+
virtual void set_value (float) = 0;
virtual float get_value (void) const = 0;
@@ -61,17 +64,21 @@ class Controllable : public PBD::StatefulDestructible {
static Controllable* by_id (const PBD::ID&);
static Controllable* by_name (const std::string&);
+ static Controllable* by_uri (const std::string&);
private:
std::string _name;
+ std::string _uri;
bool _touching;
void add ();
void remove ();
typedef std::set<PBD::Controllable*> Controllables;
- static Glib::Mutex* registry_lock;
+ typedef std::map<std::string,PBD::Controllable*> ControllablesByURI;
+ static Glib::StaticRWLock registry_lock;
static Controllables registry;
+ static ControllablesByURI registry_by_uri;
};
/* a utility class for the occasions when you need but do not have