summaryrefslogtreecommitdiffstats
path: root/src/PatchageModule.hpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2010-12-15 06:11:04 +0000
committerDavid Robillard <d@drobilla.net>2010-12-15 06:11:04 +0000
commit9678996bb97e562fde723bc327e600af7d52e0ef (patch)
tree99d6aaa87655f6e0c8229a60e905f46435d84d19 /src/PatchageModule.hpp
parent8edc1165f245d1131dcbeacb20db57722a74f110 (diff)
downloadpatchage-9678996bb97e562fde723bc327e600af7d52e0ef.tar.gz
patchage-9678996bb97e562fde723bc327e600af7d52e0ef.tar.bz2
patchage-9678996bb97e562fde723bc327e600af7d52e0ef.zip
Don't show `split' menu item for modules with only inputs or outputs (ticket #128).
git-svn-id: http://svn.drobilla.net/lad/trunk/patchage@2702 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/PatchageModule.hpp')
-rw-r--r--src/PatchageModule.hpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/PatchageModule.hpp b/src/PatchageModule.hpp
index fcab207..a2b67ee 100644
--- a/src/PatchageModule.hpp
+++ b/src/PatchageModule.hpp
@@ -32,10 +32,15 @@ public:
PatchageModule(Patchage* app, const std::string& name, ModuleType type, double x=0, double y=0);
~PatchageModule();
+ void add_port(boost::shared_ptr<Port> port);
+ void remove_port(boost::shared_ptr<Port> port);
+
void split();
void join();
void create_menu();
+ void update_menu();
+
void load_location();
void menu_disconnect_all();
void show_dialog() {}