summaryrefslogtreecommitdiffstats
path: root/src/libs/client/Store.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/libs/client/Store.cpp')
-rw-r--r--src/libs/client/Store.cpp12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/libs/client/Store.cpp b/src/libs/client/Store.cpp
index ee621ad0..6a91feeb 100644
--- a/src/libs/client/Store.cpp
+++ b/src/libs/client/Store.cpp
@@ -36,6 +36,7 @@ Store::Store(SigClientInterface& emitter)
emitter.connection_sig.connect(sigc::mem_fun(this, &Store::connection_event));
emitter.disconnection_sig.connect(sigc::mem_fun(this, &Store::disconnection_event));
emitter.metadata_update_sig.connect(sigc::mem_fun(this, &Store::metadata_update_event));
+ emitter.control_change_sig.connect(sigc::mem_fun(this, &Store::control_change_event));
}
@@ -311,6 +312,17 @@ Store::metadata_update_event(const string& subject_path, const string& predicate
void
+Store::control_change_event(const string& port_path, float value)
+{
+ CountedPtr<PortModel> port = object(port_path);
+ if (port)
+ port->value(value);
+ else
+ cerr << "ERROR: metadata for nonexistant object." << endl;
+}
+
+
+void
Store::connection_event(const Path& src_port_path, const Path& dst_port_path)
{
// ConnectionModel has the clever patch-path-figuring-out stuff in it, so