aboutsummaryrefslogtreecommitdiffstats
path: root/lv2/lv2plug.in/ns/extensions/ui/ui.ttl
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/ns/extensions/ui/ui.ttl
parentddee60433b96045cc99f3aacc161d69191f0c134 (diff)
downloadlv2-0bfdd2a37f7208d51c6813e945f330e72234b5b8.tar.xz
Add ui:WindowsUI and ui:CarbonUI.
Diffstat (limited to 'lv2/lv2plug.in/ns/extensions/ui/ui.ttl')
-rw-r--r--lv2/lv2plug.in/ns/extensions/ui/ui.ttl21
1 files changed, 20 insertions, 1 deletions
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 ;