summaryrefslogtreecommitdiff
path: root/libs/pbd/pbd/controllable.h
blob: c152013c663f896c5d43b4ce6fbb4a23c5cd165d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
#ifndef __pbd_controllable_h__
#define __pbd_controllable_h__

#include <string>
#include <set>

#include <sigc++/trackable.h>
#include <sigc++/signal.h>

#include <pbd/statefuldestructible.h>

class XMLNode;

namespace PBD {

class Controllable : public PBD::StatefulDestructible {
  public:
	Controllable (std::string name);
	virtual ~Controllable() { Destroyed (this); }

	virtual void set_value (float) = 0;
	virtual float get_value (void) const = 0;

	virtual bool can_send_feedback() const { return true; }

	sigc::signal<void> LearningFinished;

	static sigc::signal<bool,PBD::Controllable*> StartLearning;
	static sigc::signal<void,PBD::Controllable*> StopLearning;

	static sigc::signal<void,Controllable*> Destroyed;

	sigc::signal<void> Changed;

	int set_state (const XMLNode&);
	XMLNode& get_state ();

	std::string name() const { return _name; }

	static Controllable* by_id (const PBD::ID&);
	static Controllable* by_name (const std::string&);

  private:
	std::string _name;

	void add ();
	void remove ();

	typedef std::set<PBD::Controllable*> Controllables;
	static Glib::Mutex* registry_lock;
	static Controllables registry;
};

}

#endif /* __pbd_controllable_h__ */