diff options
author | David Robillard <d@drobilla.net> | 2012-03-30 18:12:43 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2012-03-30 18:12:43 +0000 |
commit | b75c914fc9a2fd99b7082e76e968f214b184c993 (patch) | |
tree | a5fa63fbb71c4fcc10a49b2f5091710fe7496de4 /lv2/lv2plug.in/ns/extensions/ui | |
parent | aae93ebd722e93200a7218debb515c2cad6a8ae2 (diff) | |
download | lv2-b75c914fc9a2fd99b7082e76e968f214b184c993.tar.xz |
Add missing ui:ui and ui:binary property definitions.
Mark up properties more precisely for validation.
Diffstat (limited to 'lv2/lv2plug.in/ns/extensions/ui')
-rw-r--r-- | lv2/lv2plug.in/ns/extensions/ui/ui.ttl | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/lv2/lv2plug.in/ns/extensions/ui/ui.ttl b/lv2/lv2plug.in/ns/extensions/ui/ui.ttl index f6b8e19..efc1bb1 100644 --- a/lv2/lv2plug.in/ns/extensions/ui/ui.ttl +++ b/lv2/lv2plug.in/ns/extensions/ui/ui.ttl @@ -137,6 +137,23 @@ A UI where the LV2_Widget is an X11 window ID. Note this is actually an integer, i.e. the LV2_Widget is not a pointer to an X11 window ID, but should be itself taken as an integer value.""" . +ui:ui + a rdf:Property ; + rdfs:domain lv2:Plugin ; + rdfs:range ui:UI ; + rdfs:comment """ +Relates a plugin to a UI that applies to it. +""" . + +ui:binary + a rdf:Property ; + owl:sameAs lv2:binary ; + owl:deprecated "true"^^xsd:boolean ; + rdfs:comment """ +The shared library a UI resides in. This property is redundant, new UIs SHOULD +use lv2:binary, however hosts MUST still support ui:binary at this time. +""" . + ui:makeSONameResident a lv2:Feature ; owl:deprecated "true"^^xsd:boolean ; |