aboutsummaryrefslogtreecommitdiffstats
path: root/src/client
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2013-01-12 00:17:35 +0000
committerDavid Robillard <d@drobilla.net>2013-01-12 00:17:35 +0000
commit932a899e53ba1252d1983412e825fd08f2f99cdc (patch)
tree2f2d62d69fea59ca44655ab40a74bb7773272c13 /src/client
parent6c61c79d43d1d4715ce04b46e459279d0fa6c854 (diff)
downloadmachina-932a899e53ba1252d1983412e825fd08f2f99cdc.tar.gz
machina-932a899e53ba1252d1983412e825fd08f2f99cdc.tar.bz2
machina-932a899e53ba1252d1983412e825fd08f2f99cdc.zip
Make double click show properties window.
Fix crash on bad arc notifications. Show note label on nodes. Fix clash of machina_Edge and machina_MidiAction (duh). git-svn-id: http://svn.drobilla.net/lad/trunk/machina@4927 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/client')
-rw-r--r--src/client/ClientObject.hpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/client/ClientObject.hpp b/src/client/ClientObject.hpp
index 9850b01..658d603 100644
--- a/src/client/ClientObject.hpp
+++ b/src/client/ClientObject.hpp
@@ -47,6 +47,9 @@ public:
virtual ~View() {}
};
+ typedef std::map<URIInt, Raul::Atom> Properties;
+ const Properties& properties() { return _properties; }
+
SharedPtr<View> view() const { return _view; }
void set_view(SharedPtr<View> view) { _view = view; }
@@ -54,7 +57,6 @@ private:
uint64_t _id;
SharedPtr<View> _view;
- typedef std::map<URIInt, Raul::Atom> Properties;
Properties _properties;
};