diff options
author | Hanspeter Portner <dev@open-music-kontrollers.ch> | 2017-07-06 09:59:40 +0200 |
---|---|---|
committer | Hanspeter Portner <dev@open-music-kontrollers.ch> | 2017-07-06 09:59:40 +0200 |
commit | a209078204d04f5c0076b793548c3bbb4adb285c (patch) | |
tree | 34e03a71bdd4507150222f7abf3033dc38ab7892 /include | |
parent | 4a18c563f74708813655cd3a543920d3ea976f88 (diff) | |
download | synthpod-a209078204d04f5c0076b793548c3bbb4adb285c.tar.xz |
prototype spod:nodeList.
Diffstat (limited to 'include')
-rw-r--r-- | include/synthpod_private.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/include/synthpod_private.h b/include/synthpod_private.h index 1b9adaee..06531487 100644 --- a/include/synthpod_private.h +++ b/include/synthpod_private.h @@ -357,6 +357,8 @@ struct _reg_t { reg_item_t module_profiling; reg_item_t module_position_x; reg_item_t module_position_y; + reg_item_t node_position_x; + reg_item_t node_position_y; reg_item_t port_refresh; reg_item_t bundle_load; reg_item_t bundle_save; @@ -381,6 +383,7 @@ struct _reg_t { reg_item_t notification_list; reg_item_t automation_list; reg_item_t connection_list; + reg_item_t node_list; reg_item_t source_module; reg_item_t source_symbol; @@ -630,6 +633,8 @@ sp_regs_init(reg_t *regs, LilvWorld *world, LV2_URID_Map *map) _register(®s->synthpod.module_profiling, world, map, SYNTHPOD_PREFIX"moduleProfiling"); _register(®s->synthpod.module_position_x, world, map, SYNTHPOD_PREFIX"modulePositionX"); _register(®s->synthpod.module_position_y, world, map, SYNTHPOD_PREFIX"modulePositionY"); + _register(®s->synthpod.node_position_x, world, map, SYNTHPOD_PREFIX"nodePositionX"); + _register(®s->synthpod.node_position_y, world, map, SYNTHPOD_PREFIX"nodePositionY"); _register(®s->synthpod.port_refresh, world, map, SYNTHPOD_PREFIX"portRefresh"); _register(®s->synthpod.bundle_load, world, map, SYNTHPOD_PREFIX"bundleLoad"); _register(®s->synthpod.bundle_save, world, map, SYNTHPOD_PREFIX"bundleSave"); @@ -651,6 +656,7 @@ sp_regs_init(reg_t *regs, LilvWorld *world, LV2_URID_Map *map) _register(®s->synthpod.com_port, world, map, SYNTHPOD_PREFIX"ComPort"); _register(®s->synthpod.connection_list, world, map, SYNTHPOD_PREFIX"connectionList"); + _register(®s->synthpod.node_list, world, map, SYNTHPOD_PREFIX"nodeList"); _register(®s->synthpod.subscription_list, world, map, SYNTHPOD_PREFIX"subscriptionList"); _register(®s->synthpod.notification_list, world, map, SYNTHPOD_PREFIX"notificationList"); _register(®s->synthpod.automation_list, world, map, SYNTHPOD_PREFIX"automationList"); @@ -870,6 +876,8 @@ sp_regs_deinit(reg_t *regs) _unregister(®s->synthpod.module_profiling); _unregister(®s->synthpod.module_position_x); _unregister(®s->synthpod.module_position_y); + _unregister(®s->synthpod.node_position_x); + _unregister(®s->synthpod.node_position_y); _unregister(®s->synthpod.port_refresh); _unregister(®s->synthpod.bundle_load); _unregister(®s->synthpod.bundle_save); @@ -890,6 +898,7 @@ sp_regs_deinit(reg_t *regs) _unregister(®s->synthpod.com_port); _unregister(®s->synthpod.connection_list); + _unregister(®s->synthpod.node_list); _unregister(®s->synthpod.subscription_list); _unregister(®s->synthpod.notification_list); _unregister(®s->synthpod.automation_list); |