summaryrefslogtreecommitdiffstats
path: root/ingen.lv2/manifest.ttl
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2012-03-16 22:27:16 +0000
committerDavid Robillard <d@drobilla.net>2012-03-16 22:27:16 +0000
commitbc3afd8380d59c750c8f8e9bf1ed1b8d4a6826e9 (patch)
treeb42f56620ce85f6207568eadfb901360436c6f74 /ingen.lv2/manifest.ttl
parent7126f005be3e49818dafe0d2666b6745e09f8aff (diff)
downloadingen-bc3afd8380d59c750c8f8e9bf1ed1b8d4a6826e9.tar.gz
ingen-bc3afd8380d59c750c8f8e9bf1ed1b8d4a6826e9.tar.bz2
ingen-bc3afd8380d59c750c8f8e9bf1ed1b8d4a6826e9.zip
Preliminary work towards native LV2 UI.
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@4074 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'ingen.lv2/manifest.ttl')
-rw-r--r--ingen.lv2/manifest.ttl17
1 files changed, 14 insertions, 3 deletions
diff --git a/ingen.lv2/manifest.ttl b/ingen.lv2/manifest.ttl
index 1789c078..da4adeac 100644
--- a/ingen.lv2/manifest.ttl
+++ b/ingen.lv2/manifest.ttl
@@ -1,28 +1,39 @@
@prefix ingen: <http://drobilla.net/ns/ingen#> .
-@prefix lv2: <http://lv2plug.in/ns/lv2core#> .
-@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
-@prefix templates: <http://drobilla.net/software/ingen/templates/> .
+@prefix lv2: <http://lv2plug.in/ns/lv2core#> .
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix ui: <http://lv2plug.in/ns/extensions/ui#> .
+@prefix urid: <http://lv2plug.in/ns/ext/urid#> .
+
+<http://drobilla.net/ns/ingen#ui>
+ a ui:GtkUI ;
+ ui:binary <libingen_gui_lv2.so> ;
+ lv2:requiredFeature urid:map ,
+ urid:unmap .
<mono_synth.ttl>
a lv2:Plugin ,
ingen:Patch ;
rdfs:seeAlso <mono_synth.ttl> ;
+ ui:ui <http://drobilla.net/ns/ingen#ui> ;
lv2:binary <libingen_lv2.so> .
<mono_effect.ttl>
a lv2:Plugin ,
ingen:Patch ;
rdfs:seeAlso <mono_effect.ttl> ;
+ ui:ui <http://drobilla.net/ns/ingen#ui> ;
lv2:binary <libingen_lv2.so> .
<stereo_synth.ttl>
a lv2:Plugin ,
ingen:Patch ;
rdfs:seeAlso <stereo_synth.ttl> ;
+ ui:ui <http://drobilla.net/ns/ingen#ui> ;
lv2:binary <libingen_lv2.so> .
<stereo_effect.ttl>
a lv2:Plugin ,
ingen:Patch ;
rdfs:seeAlso <stereo_effect.ttl> ;
+ ui:ui <http://drobilla.net/ns/ingen#ui> ;
lv2:binary <libingen_lv2.so> .