2006-07-13 23:43:32 -04:00
|
|
|
#include <pbd/controllable.h>
|
|
|
|
#include <pbd/xml++.h>
|
2006-10-21 15:01:50 -04:00
|
|
|
#include <pbd/error.h>
|
2006-07-13 23:43:32 -04:00
|
|
|
|
|
|
|
#include "i18n.h"
|
|
|
|
|
|
|
|
using namespace PBD;
|
|
|
|
|
2006-11-19 11:45:16 -05:00
|
|
|
sigc::signal<void,Controllable*> Controllable::Destroyed;
|
2006-07-13 23:43:32 -04:00
|
|
|
sigc::signal<bool,Controllable*> Controllable::StartLearning;
|
|
|
|
sigc::signal<void,Controllable*> Controllable::StopLearning;
|
|
|
|
|
2006-10-21 15:01:50 -04:00
|
|
|
Controllable::Controllable (std::string name)
|
|
|
|
: _name (name)
|
2006-07-13 23:43:32 -04:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
XMLNode&
|
|
|
|
Controllable::get_state ()
|
|
|
|
{
|
2007-01-09 18:24:54 -05:00
|
|
|
XMLNode* node = new XMLNode (X_("controllable"));
|
2006-07-13 23:43:32 -04:00
|
|
|
char buf[64];
|
2007-01-09 18:24:54 -05:00
|
|
|
|
|
|
|
node->add_property (X_("name"), _name); // not reloaded from XML state, just there to look at
|
2006-10-21 15:01:50 -04:00
|
|
|
_id.print (buf, sizeof (buf));
|
2006-07-13 23:43:32 -04:00
|
|
|
node->add_property (X_("id"), buf);
|
|
|
|
return *node;
|
|
|
|
}
|
2006-10-21 15:01:50 -04:00
|
|
|
|
|
|
|
int
|
|
|
|
Controllable::set_state (const XMLNode& node)
|
|
|
|
{
|
|
|
|
const XMLProperty* prop = node.property (X_("id"));
|
|
|
|
|
|
|
|
if (prop) {
|
|
|
|
_id = prop->value();
|
|
|
|
return 0;
|
|
|
|
} else {
|
|
|
|
error << _("Controllable state node has no ID property") << endmsg;
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
}
|