summaryrefslogtreecommitdiffstats
path: root/src/gui/App.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/gui/App.cpp')
-rw-r--r--src/gui/App.cpp15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/gui/App.cpp b/src/gui/App.cpp
index 3dc08609..22a5a95c 100644
--- a/src/gui/App.cpp
+++ b/src/gui/App.cpp
@@ -235,6 +235,21 @@ App::error_message(const string& str)
}
void
+App::set_property(const Raul::URI& subject,
+ const Raul::URI& key,
+ const Atom& value)
+{
+ // Send message to server
+ interface()->set_property(subject, key, value);
+
+ /* The server does not feed back set messages (kludge to prevent control
+ feedback and bandwidth wastage, see Delta.cpp). So, assume everything
+ went as planned here and fire the signal ourselves as if the server
+ feedback came back immediately. */
+ _client->signal_property_change().emit(subject, key, value);
+}
+
+void
App::property_change(const Raul::URI& subject,
const Raul::URI& key,
const Atom& value)