diff options
author | David Robillard <d@drobilla.net> | 2011-12-06 21:01:38 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2011-12-06 21:01:38 +0000 |
commit | 7a0c02f70f08aa39cba1f83be690f74949a53911 (patch) | |
tree | 636437f0740e00b36db5a1dc52210c53100c0c00 /src/PatchageModule.hpp | |
parent | 9113cdcde8bc1c54ee02a5875ba20e27a3b77fae (diff) | |
download | patchage-7a0c02f70f08aa39cba1f83be690f74949a53911.tar.gz patchage-7a0c02f70f08aa39cba1f83be690f74949a53911.tar.bz2 patchage-7a0c02f70f08aa39cba1f83be690f74949a53911.zip |
FlowCanvas's successor is hereby dubbed Ganv.
git-svn-id: http://svn.drobilla.net/lad/trunk/patchage@3820 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/PatchageModule.hpp')
-rw-r--r-- | src/PatchageModule.hpp | 16 |
1 files changed, 10 insertions, 6 deletions
diff --git a/src/PatchageModule.hpp b/src/PatchageModule.hpp index a0b6da9..f429831 100644 --- a/src/PatchageModule.hpp +++ b/src/PatchageModule.hpp @@ -21,18 +21,22 @@ #include <gtkmm/menu_elems.h> -#include "flowcanvas/Module.hpp" -#include "flowcanvas/Port.hpp" +#include "ganv/Module.hpp" +#include "ganv/Port.hpp" #include "StateManager.hpp" class Patchage; class PatchagePort; -class PatchageModule : public FlowCanvas::Module +class PatchageModule : public Ganv::Module { public: - PatchageModule(Patchage* app, const std::string& name, ModuleType type, double x=0, double y=0); + PatchageModule(Patchage* app, + const std::string& name, + ModuleType type, + double x = 0, + double y = 0); ~PatchageModule(); void split(); @@ -53,8 +57,8 @@ public: protected: bool on_click(GdkEventButton* ev); - void add_port(FlowCanvas::Port* port); - void remove_port(FlowCanvas::Port* port); + void add_port(Ganv::Port* port); + void remove_port(Ganv::Port* port); Patchage* _app; Gtk::Menu* _menu; |