diff options
author | David Robillard <d@drobilla.net> | 2013-12-19 03:42:30 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2013-12-19 03:42:30 +0000 |
commit | a07a3a6218471e5f301515b31032d92b0b900d4e (patch) | |
tree | a8a3e8a78e01fc41a2d5147dc1072b9562ba5577 /src/PatchageModule.cpp | |
parent | 30e4c33ba733360dcc571547dfab2fb56d2e191d (diff) | |
download | patchage-a07a3a6218471e5f301515b31032d92b0b900d4e.tar.gz patchage-a07a3a6218471e5f301515b31032d92b0b900d4e.tar.bz2 patchage-a07a3a6218471e5f301515b31032d92b0b900d4e.zip |
FDGL: Improve flow-directed layout.
Allow apps to specify nodes as sources to improve layout.
git-svn-id: http://svn.drobilla.net/lad/trunk/patchage@5186 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/PatchageModule.cpp')
-rw-r--r-- | src/PatchageModule.cpp | 19 |
1 files changed, 3 insertions, 16 deletions
diff --git a/src/PatchageModule.cpp b/src/PatchageModule.cpp index b02a052..3c16352 100644 --- a/src/PatchageModule.cpp +++ b/src/PatchageModule.cpp @@ -32,6 +32,9 @@ PatchageModule::PatchageModule( signal_moved().connect( sigc::mem_fun(this, &PatchageModule::store_location)); + + // Set as source by default, turned off if input ports added + set_is_source(true); } PatchageModule::~PatchageModule() @@ -134,22 +137,6 @@ PatchageModule::join() } void -PatchageModule::add_port(Ganv::Port* port) -{ - std::cerr << "FIXME: add port" << std::endl; - //Ganv::Module::add_port(port); - update_menu(); -} - -void -PatchageModule::remove_port(Ganv::Port* port) -{ - std::cerr << "FIXME: remove port" << std::endl; - //Ganv::Module::remove_port(port); - update_menu(); -} - -void PatchageModule::menu_disconnect_all() { for (iterator p = begin(); p != end(); ++p) |