diff options
author | David Robillard <d@drobilla.net> | 2007-03-12 18:13:03 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2007-03-12 18:13:03 +0000 |
commit | 47372f00cc6fe39f65594aa6edf6544157e94ce7 (patch) | |
tree | e1c7a9b1b3d6fe07631a05f3410ea2fa4b21e193 /src/PatchageFlowCanvas.h | |
parent | 2834b233eedf0c66f65ac8169264d8359d8fc7c6 (diff) | |
download | patchage-47372f00cc6fe39f65594aa6edf6544157e94ce7.tar.gz patchage-47372f00cc6fe39f65594aa6edf6544157e94ce7.tar.bz2 patchage-47372f00cc6fe39f65594aa6edf6544157e94ce7.zip |
Removed name-based interface for FlowCanvas (using the view as a model = evil), related performance improvements (especially for Machina).
Updates for FlowCanvas API changes.
Machina SMF import performance improvements (temporarily disabled node labels).
git-svn-id: http://svn.drobilla.net/lad/patchage@356 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/PatchageFlowCanvas.h')
-rw-r--r-- | src/PatchageFlowCanvas.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/PatchageFlowCanvas.h b/src/PatchageFlowCanvas.h index 05b7bef..899c503 100644 --- a/src/PatchageFlowCanvas.h +++ b/src/PatchageFlowCanvas.h @@ -45,6 +45,10 @@ public: void disconnect(boost::shared_ptr<Connectable> port1, boost::shared_ptr<Connectable> port2); void status_message(const string& msg); + + boost::shared_ptr<Item> get_item(const string& name); + boost::shared_ptr<Port> get_port(const string& module_name, + const string& port_name); private: Patchage* _app; |