2006-07-07 19:51:30 -04:00
|
|
|
#include <pbd/controllable.h>
|
|
|
|
#include <pbd/xml++.h>
|
2006-10-04 21:49:32 -04:00
|
|
|
#include <pbd/error.h>
|
2006-07-07 19:51:30 -04:00
|
|
|
|
|
|
|
#include "i18n.h"
|
|
|
|
|
|
|
|
using namespace PBD;
|
|
|
|
|
2006-10-25 16:11:42 -04:00
|
|
|
sigc::signal<void,Controllable*> Controllable::Destroyed;
|
2006-07-07 19:51:30 -04:00
|
|
|
sigc::signal<bool,Controllable*> Controllable::StartLearning;
|
|
|
|
sigc::signal<void,Controllable*> Controllable::StopLearning;
|
|
|
|
|
2006-10-04 21:49:32 -04:00
|
|
|
Controllable::Controllable (std::string name)
|
|
|
|
: _name (name)
|
2006-07-07 19:51:30 -04:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
XMLNode&
|
|
|
|
Controllable::get_state ()
|
|
|
|
{
|
2006-10-04 21:49:32 -04:00
|
|
|
XMLNode* node = new XMLNode (_name);
|
2006-07-07 19:51:30 -04:00
|
|
|
char buf[64];
|
2006-10-04 21:49:32 -04:00
|
|
|
_id.print (buf, sizeof (buf));
|
2006-07-07 19:51:30 -04:00
|
|
|
node->add_property (X_("id"), buf);
|
|
|
|
return *node;
|
|
|
|
}
|
2006-10-04 21:49:32 -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;
|
|
|
|
}
|
|
|
|
}
|