From 0bfdd2a37f7208d51c6813e945f330e72234b5b8 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Thu, 28 Jun 2012 20:40:59 +0000 Subject: Add ui:WindowsUI and ui:CarbonUI. --- lv2/lv2plug.in/ns/extensions/ui/lv2-ui.doap.ttl | 9 +++++++++ lv2/lv2plug.in/ns/extensions/ui/manifest.ttl | 2 +- lv2/lv2plug.in/ns/extensions/ui/ui.ttl | 21 ++++++++++++++++++++- 3 files changed, 30 insertions(+), 2 deletions(-) (limited to 'lv2/lv2plug.in') 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 ; doap:maintainer ; doap:release [ + doap:revision "2.10" ; + doap:created "2012-06-28" ; + dcs:blame ; + dcs:changeset [ + dcs:item [ + rdfs:label "Add ui:WindowsUI and ui:CarbonUI." + ] + ] + ] , [ doap:revision "2.8" ; doap:created "2012-04-17" ; doap:file-release ; 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 @@ a lv2:Specification ; lv2:minorVersion 2 ; - lv2:microVersion 8 ; + lv2:microVersion 10 ; rdfs:seeAlso , . 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 ; -- cgit v1.2.1