rollback to 3428, before the mysterious removal of libs/* at 3431/3432
[ardour.git] / libs / pbd / pbd / controllable.h
1 /*
2     Copyright (C) 2000-2007 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 #ifndef __pbd_controllable_h__
21 #define __pbd_controllable_h__
22
23 #include <string>
24 #include <set>
25
26 #include <sigc++/trackable.h>
27 #include <sigc++/signal.h>
28
29 #include <pbd/statefuldestructible.h>
30
31 class XMLNode;
32
33 namespace PBD {
34
35 class Controllable : public PBD::StatefulDestructible {
36   public:
37         Controllable (std::string name);
38         virtual ~Controllable() { Destroyed (this); }
39
40         virtual void set_value (float) = 0;
41         virtual float get_value (void) const = 0;
42
43         virtual bool can_send_feedback() const { return true; }
44
45         sigc::signal<void> LearningFinished;
46         static sigc::signal<void,PBD::Controllable*,int,int> CreateBinding;
47         static sigc::signal<void,PBD::Controllable*> DeleteBinding;
48
49         static sigc::signal<bool,PBD::Controllable*> StartLearning;
50         static sigc::signal<void,PBD::Controllable*> StopLearning;
51
52         static sigc::signal<void,Controllable*> Destroyed;
53
54         sigc::signal<void> Changed;
55
56         int set_state (const XMLNode&);
57         XMLNode& get_state ();
58
59         std::string name() const { return _name; }
60
61         static Controllable* by_id (const PBD::ID&);
62         static Controllable* by_name (const std::string&);
63
64   private:
65         std::string _name;
66
67         void add ();
68         void remove ();
69
70         typedef std::set<PBD::Controllable*> Controllables;
71         static Glib::Mutex* registry_lock;
72         static Controllables registry;
73 };
74
75 /* a utility class for the occasions when you need but do not have
76    a Controllable
77 */
78
79 class IgnorableControllable : public Controllable 
80 {
81   public: 
82     IgnorableControllable () : PBD::Controllable ("ignoreMe") {}
83     ~IgnorableControllable () {}
84     
85     void set_value (float v){}
86     float get_value () const { return 0.0; }
87     bool can_send_feedback () const { return false; }
88 };
89
90 }
91
92 #endif /* __pbd_controllable_h__ */