aboutsummaryrefslogtreecommitdiffstats
path: root/lv2/lv2plug.in
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2012-06-28 20:40:59 +0000
committerDavid Robillard <d@drobilla.net>2012-06-28 20:40:59 +0000
commit0bfdd2a37f7208d51c6813e945f330e72234b5b8 (patch)
tree3785b88c350304d7b0957a613f79d0ac7958453a /lv2/lv2plug.in
parentddee60433b96045cc99f3aacc161d69191f0c134 (diff)
downloadlv2-0bfdd2a37f7208d51c6813e945f330e72234b5b8.tar.xz
Add ui:WindowsUI and ui:CarbonUI.
Diffstat (limited to 'lv2/lv2plug.in')
-rw-r--r--lv2/lv2plug.in/ns/extensions/ui/lv2-ui.doap.ttl9
-rw-r--r--lv2/lv2plug.in/ns/extensions/ui/manifest.ttl2
-rw-r--r--lv2/lv2plug.in/ns/extensions/ui/ui.ttl21
3 files changed, 30 insertions, 2 deletions
diff --git a/lv2/lv2plug.in/ns/extensions/ui/lv2-ui.doap.ttl b/lv2/lv2plug.in/ns/extensions/ui/lv2-ui.doap.ttl
index efa24e3..80db329 100644
--- a/lv2/lv2plug.in/ns/extensions/ui/lv2-ui.doap.ttl
+++ b/lv2/lv2plug.in/ns/extensions/ui/lv2-ui.doap.ttl
@@ -13,6 +13,15 @@
doap:developer <http://lv2plug.in/ns/meta#larsl> ;
doap:maintainer <http://drobilla.net/drobilla#me> ;
doap:release [
+ doap:revision "2.10" ;
+ doap:created "2012-06-28" ;
+ dcs:blame <http://drobilla.net/drobilla#me> ;
+ dcs:changeset [
+ dcs:item [
+ rdfs:label "Add ui:WindowsUI and ui:CarbonUI."
+ ]
+ ]
+ ] , [
doap:revision "2.8" ;
doap:created "2012-04-17" ;
doap:file-release <http://lv2plug.in/spec/lv2-1.0.0.tar.bz2> ;
diff --git a/lv2/lv2plug.in/ns/extensions/ui/manifest.ttl b/lv2/lv2plug.in/ns/extensions/ui/manifest.ttl
index 45a40b3..7162504 100644
--- a/lv2/lv2plug.in/ns/extensions/ui/manifest.ttl
+++ b/lv2/lv2plug.in/ns/extensions/ui/manifest.ttl
@@ -4,6 +4,6 @@
<http://lv2plug.in/ns/extensions/ui>
a lv2:Specification ;
lv2:minorVersion 2 ;
- lv2:microVersion 8 ;
+ lv2:microVersion 10 ;
rdfs:seeAlso <ui.ttl> ,
<lv2-ui.doap.ttl> .
diff --git a/lv2/lv2plug.in/ns/extensions/ui/ui.ttl b/lv2/lv2plug.in/ns/extensions/ui/ui.ttl
index 32934d6..abd0890 100644
--- a/lv2/lv2plug.in/ns/extensions/ui/ui.ttl
+++ b/lv2/lv2plug.in/ns/extensions/ui/ui.ttl
@@ -107,7 +107,26 @@ ui:X11UI
rdfs:comment """
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.""" .
+be itself taken as an integer value. This is the native UI type on most POSIX
+systems.""" .
+
+ui:WindowsUI
+ a rdfs:Class ,
+ owl:Class ;
+ rdfs:subClassOf ui:UI ;
+ rdfs:comment """
+A UI where the LV2_Widget is a Windows HWND window ID. Note this is actually
+an unsigned 32-bit integer, i.e. the LV2_Widget is not a pointer to a HWND but
+should be interpreted as an HWND itself. This is the native UI type on
+Microsoft Windows.""" .
+
+ui:CocoaUI
+ a rdfs:Class ,
+ owl:Class ;
+ rdfs:subClassOf ui:UI ;
+ rdfs:comment """
+A UI where the LV2_Widget is a pointer to a NSView, the basic view type for the
+Cocoa API (formerly OpenStep). This is the native UI type on Mac OS X.""" .
ui:ui
a rdf:Property ;