aboutsummaryrefslogtreecommitdiffstats
path: root/ext
diff options
context:
space:
mode:
Diffstat (limited to 'ext')
-rw-r--r--ext/pui-event.lv2/manifest.ttl (renamed from ext/ui-event.lv2/manifest.ttl)4
-rw-r--r--ext/pui-event.lv2/pui-event.h (renamed from ext/ui-event.lv2/ui-event.h)10
-rw-r--r--ext/pui-event.lv2/pui-event.ttl (renamed from ext/ui-event.lv2/ui-event.ttl)32
-rw-r--r--ext/pui-gtk.lv2/manifest.ttl (renamed from ext/ui-gtk.lv2/manifest.ttl)4
-rw-r--r--ext/pui-gtk.lv2/pui-gtk.h (renamed from ext/ui-gtk.lv2/ui-gtk.h)10
-rw-r--r--ext/pui-gtk.lv2/pui-gtk.ttl (renamed from ext/ui-gtk.lv2/ui-gtk.ttl)16
-rw-r--r--ext/pui.lv2/manifest.ttl (renamed from ext/ui.lv2/manifest.ttl)4
-rw-r--r--ext/pui.lv2/pui.h (renamed from ext/ui.lv2/ui.h)124
-rw-r--r--ext/pui.lv2/pui.ttl (renamed from ext/ui.lv2/ui.ttl)44
9 files changed, 122 insertions, 126 deletions
diff --git a/ext/ui-event.lv2/manifest.ttl b/ext/pui-event.lv2/manifest.ttl
index d37bb13..e0b87b5 100644
--- a/ext/ui-event.lv2/manifest.ttl
+++ b/ext/pui-event.lv2/manifest.ttl
@@ -1,8 +1,8 @@
@prefix lv2: <http://lv2plug.in/ns/lv2core#>.
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#>.
-<http://lv2plug.in/ns/ext/ui-event>
+<http://lv2plug.in/ns/ext/pui-event>
a lv2:Specification;
lv2:minorVersion 0;
lv2:microVersion 1;
- rdfs:seeAlso <ui-event.ttl>.
+ rdfs:seeAlso <pui-event.ttl>.
diff --git a/ext/ui-event.lv2/ui-event.h b/ext/pui-event.lv2/pui-event.h
index 16739f7..223b5f5 100644
--- a/ext/ui-event.lv2/ui-event.h
+++ b/ext/pui-event.lv2/pui-event.h
@@ -1,8 +1,8 @@
/************************************************************************
*
- * Event port protocol for the in-process LV2 UI extension
+ * Event port protocol for the LV2 plugin UI extension
*
- * Copyright (C) 2010 Lars Luthman <mail@larsluthman.net>
+ * Copyright (C) 2010-2011 Lars Luthman <mail@larsluthman.net>
*
* This header is free software; you can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License as published
@@ -26,12 +26,12 @@
for this extension.
*/
-#ifndef LV2_UI_EVENT_H
-#define LV2_UI_EVENT_H
+#ifndef LV2_PUI_EVENT_H
+#define LV2_PUI_EVENT_H
/** The URI prefix for this extension. */
-#define LV2_UI_EVENT_URI "http://lv2plug.in/ns/ext/ui-event"
+#define LV2_PUI_EVENT_URI "http://lv2plug.in/ns/ext/pui-event"
#endif
diff --git a/ext/ui-event.lv2/ui-event.ttl b/ext/pui-event.lv2/pui-event.ttl
index c47fe4d..6133b38 100644
--- a/ext/ui-event.lv2/ui-event.ttl
+++ b/ext/pui-event.lv2/pui-event.ttl
@@ -1,15 +1,13 @@
-# In-process UI extension
+# Plugin UI extension
#
# Copyright (C) 2010-2011 Lars Luthman <mail@larsluthman.net>
#
# based on lv2.ttl, which is
# Copyright (C) 2006-2008 Steve Harris, David Robillard
#
-# This extension should be considered a replacement for the earlier
-# in-process UI extension with the URI <http://lv2plug.in/ns/extensions/ui>.
-# Hosts and plugins that used that extension should use this one instead.
-# The earlier in-process UI extension is not compatible with LV2 revision 3
-# and later and may break in subtle ways.
+# This extension specifies a method for plugin UIs, as defined in the
+# extension <http://lv2plug.in/ns/ext/pui>, to send events to a plugin's
+# event ports and to monitor incoming and outgoing events.
#
# Permission is hereby granted, free of charge, to any person obtaining a
# copy of this software and associated documentation files (the "Software"),
@@ -29,16 +27,16 @@
# ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
# OTHER DEALINGS IN THE SOFTWARE.
-@prefix ui: <http://lv2plug.in/ns/ext/ui#>.
-@prefix ev: <http://lv2plug.in/ns/ext/event#>.
-@prefix uiev: <http://lv2plug.in/ns/ext/ui-event#>.
-@prefix lv2: <http://lv2plug.in/ns/lv2core#>.
-@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>.
-@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#>.
-@prefix doap: <http://usefulinc.com/ns/doap#>.
-@prefix foaf: <http://xmlns.com/foaf/0.1/>.
+@prefix pui: <http://lv2plug.in/ns/ext/pui#>.
+@prefix ev: <http://lv2plug.in/ns/ext/event#>.
+@prefix puiev: <http://lv2plug.in/ns/ext/pui-event#>.
+@prefix lv2: <http://lv2plug.in/ns/lv2core#>.
+@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>.
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#>.
+@prefix doap: <http://usefulinc.com/ns/doap#>.
+@prefix foaf: <http://xmlns.com/foaf/0.1/>.
-<http://lv2plug.in/ns/ext/ui-event> a lv2:Specification ;
+<http://lv2plug.in/ns/ext/pui-event> a lv2:Specification ;
doap:license <http://usefulinc.com/doap/licenses/mit>;
doap:name "LV2 UI Event port protocol" ;
doap:release [
@@ -51,11 +49,11 @@
foaf:mbox <mailto:mail@larsluthman.net>;
];
lv2:documentation """
-This extension defines an ui:PortProtocol for passing events (MIDI, OSC,
+This extension defines an pui:PortProtocol for passing events (MIDI, OSC,
etc.) between LV2 plugins and UIs.
""".
-uiev:events a ui:PortProtocol;
+puiev:events a pui:PortProtocol;
rdfs:label "Event buffer";
lv2:documentation """
<ol>
diff --git a/ext/ui-gtk.lv2/manifest.ttl b/ext/pui-gtk.lv2/manifest.ttl
index dfac316..0de856b 100644
--- a/ext/ui-gtk.lv2/manifest.ttl
+++ b/ext/pui-gtk.lv2/manifest.ttl
@@ -1,8 +1,8 @@
@prefix lv2: <http://lv2plug.in/ns/lv2core#>.
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#>.
-<http://lv2plug.in/ns/ext/ui-gtk>
+<http://lv2plug.in/ns/ext/pui-gtk>
a lv2:Specification;
lv2:minorVersion 0;
lv2:microVersion 1;
- rdfs:seeAlso <ui-gtk.ttl>.
+ rdfs:seeAlso <pui-gtk.ttl>.
diff --git a/ext/ui-gtk.lv2/ui-gtk.h b/ext/pui-gtk.lv2/pui-gtk.h
index 05c9316..12c58e1 100644
--- a/ext/ui-gtk.lv2/ui-gtk.h
+++ b/ext/pui-gtk.lv2/pui-gtk.h
@@ -1,8 +1,8 @@
/************************************************************************
*
- * Gtk+ 2.0 UI type for the in-process LV2 UI extension
+ * Gtk+ 2.0 UI type for the LV2 plugin UI extension
*
- * Copyright (C) 2010 Lars Luthman <mail@larsluthman.net>
+ * Copyright (C) 2010-2011 Lars Luthman <mail@larsluthman.net>
*
* This header is free software; you can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License as published
@@ -26,12 +26,12 @@
for this extension.
*/
-#ifndef LV2_UI_GTK_H
-#define LV2_UI_GTK_H
+#ifndef LV2_PUI_GTK_H
+#define LV2_PUI_GTK_H
/** The URI prefix for this extension. */
-#define LV2_UI_GTK_URI "http://lv2plug.in/ns/ext/ui-gtk"
+#define LV2_PUI_GTK_URI "http://lv2plug.in/ns/ext/pui-gtk"
#endif
diff --git a/ext/ui-gtk.lv2/ui-gtk.ttl b/ext/pui-gtk.lv2/pui-gtk.ttl
index ce77cba..5bce34e 100644
--- a/ext/ui-gtk.lv2/ui-gtk.ttl
+++ b/ext/pui-gtk.lv2/pui-gtk.ttl
@@ -1,4 +1,4 @@
-# Gtk UI extension for the in-process UI extension
+# Gtk UI extension for the plugin UI extension
#
# Copyright (C) 2010-2011 Lars Luthman <mail@larsluthman.net>
#
@@ -23,15 +23,15 @@
# ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
# OTHER DEALINGS IN THE SOFTWARE.
-@prefix ui-gtk: <http://lv2plug.in/ns/ext/ui-gtk#>.
-@prefix ui: <http://lv2plug.in/ns/ext/ui#>.
+@prefix pui-gtk: <http://lv2plug.in/ns/ext/pui-gtk#>.
+@prefix pui: <http://lv2plug.in/ns/ext/pui#>.
@prefix lv2: <http://lv2plug.in/ns/lv2core#>.
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix doap: <http://usefulinc.com/ns/doap#> .
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
-<http://lv2plug.in/ns/ext/ui-gtk> a lv2:Specification ;
+<http://lv2plug.in/ns/ext/pui-gtk> a lv2:Specification ;
doap:license <http://usefulinc.com/doap/licenses/mit>;
doap:name "LV2 Gtk+ UI" ;
doap:release [
@@ -48,8 +48,8 @@ This extension defines an UI type for the in-process UI extension that can be
used in a Gtk+ program.
""".
-ui-gtk:GtkUI a rdfs:Class;
- rdfs:subClassOf ui:UI;
+pui-gtk:GtkUI a rdfs:Class;
+ rdfs:subClassOf pui:UI;
rdfs:label "Gtk+ UI";
lv2:documentation """
<p>The class which represents a Gtk+ UI. For a successfully created instance of
@@ -59,11 +59,11 @@ the Gtk+ library has been initialised and that the Glib main loop is running
before an UI of this type is instantiated.</p>
<p>Unless otherwise specified by extensions, all function pointers in
-LV2_UI_Descriptor may only be called from the thread that runs the Glib main
+LV2_PUI_Descriptor may only be called from the thread that runs the Glib main
loop.</p>
""" .
-ui-gtk:noHostResize a lv2:Feature;
+pui-gtk:noHostResize a lv2:Feature;
rdfs:label "No host resize";
lv2:documentation """
<p>This Feature should only be used with UIs.</p>
diff --git a/ext/ui.lv2/manifest.ttl b/ext/pui.lv2/manifest.ttl
index 79f73e6..1229118 100644
--- a/ext/ui.lv2/manifest.ttl
+++ b/ext/pui.lv2/manifest.ttl
@@ -1,8 +1,8 @@
@prefix lv2: <http://lv2plug.in/ns/lv2core#>.
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#>.
-<http://lv2plug.in/ns/ext/ui>
+<http://lv2plug.in/ns/ext/pui>
a lv2:Specification;
lv2:minorVersion 0;
lv2:microVersion 1;
- rdfs:seeAlso <ui.ttl>.
+ rdfs:seeAlso <pui.ttl>.
diff --git a/ext/ui.lv2/ui.h b/ext/pui.lv2/pui.h
index 5274cd5..6af445b 100644
--- a/ext/ui.lv2/ui.h
+++ b/ext/pui.lv2/pui.h
@@ -1,6 +1,6 @@
/************************************************************************
*
- * In-process UI extension for LV2
+ * Plugin UI extension for LV2
*
* Copyright (C) 2006-2011 Lars Luthman <mail@larsluthman.net>
*
@@ -28,7 +28,7 @@
***********************************************************************/
/**
- @file ui.h C API for the LV2 UI extension <http://lv2plug.in/ns/ext/ui>.
+ @file pui.h C API for the LV2 UI extension <http://lv2plug.in/ns/ext/pui>.
This file specifies a C API for communication between an LV2 host and an
LV2 UI. The interface is similar to the one used for actual LV2 plugins.
@@ -36,24 +36,24 @@
The entry point is the function lv2ui_descriptor().
*/
-#ifndef LV2_UI_H
-#define LV2_UI_H
+#ifndef LV2_PUI_H
+#define LV2_PUI_H
#include <lv2.h>
/** The URI of this extension (note this is not the same as the prefix). */
-#define LV2_UI_URI "http://lv2plug.in/ns/ext/ui"
+#define LV2_PUI_URI "http://lv2plug.in/ns/ext/pui"
-/** The numerical ID returned by LV2_UI_Host_Descriptor::port_index() for
+/** The numerical ID returned by LV2_PUI_Host_Descriptor::port_index() for
invalid port symbols. */
-#define LV2_UI_INVALID_PORT_INDEX ((uint32_t)-1)
+#define LV2_PUI_INVALID_PORT_INDEX ((uint32_t)-1)
-/** The numerical ID returned by LV2_UI_Host_Descriptor::port_protocol_id() for
+/** The numerical ID returned by LV2_PUI_Host_Descriptor::port_protocol_id() for
invalid or unsupported PortProtocols. */
-#define LV2_UI_INVALID_PORT_PROTOCOL_ID 0
+#define LV2_PUI_INVALID_PORT_PROTOCOL_ID 0
-/** The full URI for the ui:floatControl PortProtocol. */
-#define LV2_UI_FLOAT_CONTROL_URI "http://lv2plug.in/ns/ext/ui#floatControl"
+/** The full URI for the pui:floatControl PortProtocol. */
+#define LV2_PUI_FLOAT_CONTROL_URI "http://lv2plug.in/ns/ext/pui#floatControl"
#ifdef __cplusplus
extern "C" {
@@ -66,7 +66,7 @@ extern "C" {
host only needs to pass the necessary callbacks and display the widget, if
possible. Plugins may have several UIs, in various toolkits.
*/
-typedef void* LV2_UI_Widget;
+typedef void* LV2_PUI_Widget;
/**
Handle for a particular instance of a UI.
@@ -74,17 +74,17 @@ typedef void* LV2_UI_Widget;
NOT attempt to interpret it. The UI may use it to reference internal
instance data.
*/
-typedef void* LV2_UI_Handle;
+typedef void* LV2_PUI_Handle;
/**
Handle for host functions and data provided to a UI.
An object of this type is passed to the UI's instantiate() function, and the
UI must in turn pass it as the first parameter to the callbacks in
- LV2_UI_Host_Descriptor. The host may use it to reference internal data, such
+ LV2_PUI_Host_Descriptor. The host may use it to reference internal data, such
as the plugin instance that the UI is associated with. The UI MUST NOT
- interpret the value of an LV2_UI_Host_Handle in any way.
+ interpret the value of an LV2_PUI_Host_Handle in any way.
*/
-typedef void* LV2_UI_Host_Handle;
+typedef void* LV2_PUI_Host_Handle;
/**
Host-provided functions that the UI can use to control the plugin instance.
@@ -94,7 +94,7 @@ typedef void* LV2_UI_Host_Handle;
The host MUST provide non-NULL values for all the function pointers.
*/
-typedef struct _LV2_UI_Host_Descriptor {
+typedef struct _LV2_PUI_Host_Descriptor {
/**
Send data to one of the plugin's input ports.
@@ -104,7 +104,7 @@ typedef struct _LV2_UI_Host_Descriptor {
with it depends on the value of the @a port_protocol parameter.
The @a port_protocol parameter MUST be a numeric ID for a
- ui:PortProtocol. Numeric IDs for PortProtocols are retrieved using the
+ pui:PortProtocol. Numeric IDs for PortProtocols are retrieved using the
port_protocol_id() function.
The @a buffer is only valid during the time of this function call, so if
@@ -120,43 +120,43 @@ typedef struct _LV2_UI_Host_Descriptor {
@param port_protocol The numeric ID of the Port Protocol to use,
as returned by port_protocol_id().
*/
- void (*write_port)(LV2_UI_Host_Handle host_handle,
- uint32_t port_index,
- uint32_t buffer_size,
- uint32_t port_protocol,
- void const* buffer);
+ void (*write_port)(LV2_PUI_Host_Handle host_handle,
+ uint32_t port_index,
+ uint32_t buffer_size,
+ uint32_t port_protocol,
+ void const* buffer);
/**
Return the numerical index for a port.
This index is used when writing data to ports using write_port() and whe
receiving data using port_event(). If @a port_symbol is not a valid port
symbol for @a plugin the host it MUST return
- LV2_UI_INVALID_PORT_INDEX. For performance reasons it may be a good idea
+ LV2_PUI_INVALID_PORT_INDEX. For performance reasons it may be a good idea
to cache port indices in the UI at instantiation time.
- @param host_handle The LV2_UI_Host_Handle that was passed to the UI's
+ @param host_handle The LV2_PUI_Host_Handle that was passed to the UI's
instantiate() function.
@param port_symbol The port's symbol, as defined in the RDF data for
the plugin.
*/
- uint32_t (*port_index)(LV2_UI_Host_Handle host_handle,
- char const* port_symbol);
+ uint32_t (*port_index)(LV2_PUI_Host_Handle host_handle,
+ char const* port_symbol);
/**
This function is used by the UI, typically at instantiation, to get
- the numeric IDs that are mapped to certain ui:PortProtocols (see
- ui.ttl for details). If the host does not support the given
- ui:PortProtocol it MUST return LV2_UI_INVALID_PORT_PROTOCOL_ID,
+ the numeric IDs that are mapped to certain pui:PortProtocols (see
+ pui.ttl for details). If the host does not support the given
+ pui:PortProtocol it MUST return LV2_PUI_INVALID_PORT_PROTOCOL_ID,
but the UI SHOULD not rely on this to find out which protocols
are supported, it should check the @a features array passed to
instantiate() for this.
@param host_handle The @a host_handle that was passed to the UI's
instantiate() function.
- @param port_protocol_uri The URI of the ui:PortProtocol.
+ @param port_protocol_uri The URI of the pui:PortProtocol.
*/
- uint32_t (*port_protocol_id)(LV2_UI_Host_Handle host_handle,
- char const* port_protocol_uri);
+ uint32_t (*port_protocol_id)(LV2_PUI_Host_Handle host_handle,
+ char const* port_protocol_uri);
/**
Subscribe to updates for a port.
@@ -172,9 +172,9 @@ typedef struct _LV2_UI_Host_Descriptor {
@param port_protocol The numeric ID of the PortProtocol, as
returned by port_protocol_id().
*/
- void (*add_port_subscription)(LV2_UI_Host_Handle host_handle,
- uint32_t port_index,
- uint32_t port_protocol);
+ void (*add_port_subscription)(LV2_PUI_Host_Handle host_handle,
+ uint32_t port_index,
+ uint32_t port_protocol);
/**
Unsubscribe to updates for a port.
@@ -190,17 +190,17 @@ typedef struct _LV2_UI_Host_Descriptor {
@param port_protocol The numeric ID of the PortProtocol, as
returned by port_protocol_id().
*/
- void (*remove_port_subscription)(LV2_UI_Host_Handle host_handle,
- uint32_t port_index,
- uint32_t port_protocol);
+ void (*remove_port_subscription)(LV2_PUI_Host_Handle host_handle,
+ uint32_t port_index,
+ uint32_t port_protocol);
-} LV2_UI_Host_Descriptor;
+} LV2_PUI_Host_Descriptor;
/**
This struct contains the implementation of an UI. A pointer to an
object of this type is returned by the lv2ui_descriptor() function.
*/
-typedef struct _LV2_UI_Descriptor {
+typedef struct _LV2_PUI_Descriptor {
/**
The URI for this UI (not for the plugin it controls).
@@ -235,32 +235,32 @@ typedef struct _LV2_UI_Descriptor {
the same; @a features will probably not be the same array as the one the
plugin host passes to a plugin.
*/
- LV2_UI_Handle (*instantiate)(struct _LV2_UI_Descriptor const* descriptor,
- char const* plugin_uri,
- char const* bundle_path,
- LV2_UI_Host_Descriptor const* host_descriptor,
- LV2_UI_Host_Handle host_handle,
- LV2_Feature const* const* features);
+ LV2_PUI_Handle (*instantiate)(struct _LV2_PUI_Descriptor const* descriptor,
+ char const* plugin_uri,
+ char const* bundle_path,
+ LV2_PUI_Host_Descriptor const* host_descriptor,
+ LV2_PUI_Host_Handle host_handle,
+ LV2_Feature const* const* features);
/**
Return the widget pointer for the UI object.
This MUST return the same value during the entire lifetime of the UI
object.
*/
- LV2_UI_Widget (*get_widget)(LV2_UI_Handle ui);
+ LV2_PUI_Widget (*get_widget)(LV2_PUI_Handle ui);
/**
Destroy the UI object and the associated widget.
The host must not try to access the widget after calling this function.
*/
- void (*cleanup)(LV2_UI_Handle ui);
+ void (*cleanup)(LV2_PUI_Handle ui);
/**
Notify the UI that something has happened to a subscribed port.
This is called by the host when something happens at a plugin port that
has been subscribed to using
- LV2_UI_Host_Descriptor::add_port_subscription().
+ LV2_PUI_Host_Descriptor::add_port_subscription().
The @a buffer is only valid during the time of this function call, so if
the UI wants to keep it for later use it has to copy the contents to an
@@ -268,29 +268,29 @@ typedef struct _LV2_UI_Descriptor {
@param ui A handle for the UI object.
@param port_index The index of the port that has changed, as returned by
- LV2_UI_Host_Descriptor::port_index().
+ LV2_PUI_Host_Descriptor::port_index().
@param buffer_size The size of the data buffer in bytes.
@param port_protocol The format of the data buffer, as returned by
- LV2_UI_Host_Descriptor::port_protocol_id().
+ LV2_PUI_Host_Descriptor::port_protocol_id().
@param buffer A pointer to the data buffer.
*/
- void (*port_event)(LV2_UI_Handle ui,
- uint32_t port_index,
- uint32_t buffer_size,
- uint32_t port_protocol,
- void const* buffer);
+ void (*port_event)(LV2_PUI_Handle ui,
+ uint32_t port_index,
+ uint32_t buffer_size,
+ uint32_t port_protocol,
+ void const* buffer);
/**
Return a data structure associated with an extension URI.
- This facility can be used by extensions to extend the LV2_UI_Descriptor
+ This facility can be used by extensions to extend the LV2_PUI_Descriptor
API. This function adheres to the same rules as
LV2_Descriptor::extension_data, except it applies to UIs rather than
plugins.
*/
void const* (*extension_data)(char const* uri);
-} LV2_UI_Descriptor;
+} LV2_PUI_Descriptor;
/**
Prototype for UI accessor function.
@@ -298,15 +298,15 @@ typedef struct _LV2_UI_Descriptor {
This function follows the same rules as lv2_desciprotr(), except it applies
to UIs rather than plugins.
*/
-LV2_UI_Descriptor const* lv2ui_descriptor(uint32_t index);
+LV2_PUI_Descriptor const* lv2ui_descriptor(uint32_t index);
/**
Type of the lv2ui_descriptor() function in a UI library.
*/
-typedef LV2_UI_Descriptor const* (*LV2_UI_DescriptorFunction)(uint32_t index);
+typedef LV2_PUI_Descriptor const* (*LV2_PUI_DescriptorFunction)(uint32_t index);
#ifdef __cplusplus
}
#endif
-#endif /* LV2_UI_H */
+#endif /* LV2_PUI_H */
diff --git a/ext/ui.lv2/ui.ttl b/ext/pui.lv2/pui.ttl
index 3839f38..425047d 100644
--- a/ext/ui.lv2/ui.ttl
+++ b/ext/pui.lv2/pui.ttl
@@ -1,4 +1,4 @@
-# LV2 UI Extension
+# LV2 Plugin UI Extension
# Copyright (C) 2010-2011 Lars Luthman <mail@larsluthman.net>
#
# Based on lv2.ttl, which is
@@ -28,14 +28,14 @@
# ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
# OTHER DEALINGS IN THE SOFTWARE.
-@prefix ui: <http://lv2plug.in/ns/ext/ui#>.
+@prefix pui: <http://lv2plug.in/ns/ext/pui#>.
@prefix lv2: <http://lv2plug.in/ns/lv2core#>.
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix doap: <http://usefulinc.com/ns/doap#> .
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
-<http://lv2plug.in/ns/ext/ui> a lv2:Specification ;
+<http://lv2plug.in/ns/ext/pui> a lv2:Specification ;
doap:license <http://usefulinc.com/doap/licenses/mit>;
doap:name "LV2 UI" ;
doap:release [
@@ -52,11 +52,11 @@
plugins. The UIs are code that reside in shared object files in an LV2
bundle and are referenced in the RDF data using the triples
<pre>
- @prefix ui: &lt;http://lv2plug.in/ns/ext/ui#&gt; .
- @prefix ui-gtk: &lt;http://lv2plug.in/ns/ext/ui-gtk#&gt; .
- &lt;http://example.org/my-ui&gt; a ui-gtk:GtkUI ;
+ @prefix pui: &lt;http://lv2plug.in/ns/ext/pui#&gt; .
+ @prefix pui-gtk: &lt;http://lv2plug.in/ns/ext/pui-gtk#&gt; .
+ &lt;http://example.org/my-ui&gt; a pui-gtk:GtkUI ;
lv2:appliesTo &lt;http://example.org/my-plugin&gt; ;
- ui:binary &lt;my-ui.so&gt; .
+ pui:binary &lt;my-ui.so&gt; .
</pre>
where <code>http://example.org/my-plugin</code> is the URI of the plugin,
<code>http://example.org/my-ui</code> is the URI of the plugin UI and
@@ -66,7 +66,7 @@ it is probably a good idea to keep them separate so that hosts that don't want
UIs don't have to load the UI code.</p>
<p>A UI MUST specify its class in the RDF data and the class MUST be a proper
-subclass of ui:UI, in this case ui-gtk:GtkUI. The class defines what type the
+subclass of pui:UI, in this case pui-gtk:GtkUI. The class defines what type the
UI is, e.g. what graphics toolkit it uses. There are no UI classes defined in
this extension, those are specified separately (and anyone can define their
own).</p>
@@ -87,8 +87,7 @@ plugin implementation do not have to be the same. There are many valid reasons
for having the plugin and the UI in different processes, or even on different
machines. This means that you can <b>not</b> use singletons and global
variables and expect them to refer to the same objects in the UI and the actual
-plugin. The function callback interface defined in the header
-<a href="../../doc/html/ui_8lv2_2ui_8h.html">ui<!-- hackety hack -->.h</a> is
+plugin. The function callback interface defined in the header pui.h is
all you can expect to work.</p>
""".
@@ -96,7 +95,7 @@ all you can expect to work.</p>
## UI Class ##
##############
-ui:UI a rdfs:Class;
+pui:UI a rdfs:Class;
rdfs:subClassOf lv2:Feature;
rdfs:label "UI";
lv2:documentation """
@@ -105,15 +104,15 @@ ui:UI a rdfs:Class;
<p>To be used by a host a UI MUST have at least the following properties:
<pre>
- rdf:type (with object a proper subclass of ui:UI)
+ rdf:type (with object a proper subclass of pui:UI)
doap:name (one without language tag)
lv2:binary (with a shared object file as object)
lv2:appliesTo (with a LV2 plugin as object)
</pre>
The rdf:type of an UI is used by the host to decide whether it supports the
-UI and how to handle the LV2_UI_Widget object that is returned by the UIs
-get_widget() function. For example, a type of ui-gtk:GtkGUI might tell the host
-that LV2_UI_Widget is a pointer to an object of a type defined in the Gtk+
+UI and how to handle the LV2_PUI_Widget object that is returned by the UIs
+get_widget() function. For example, a type of pui-gtk:GtkGUI might tell the host
+that LV2_PUI_Widget is a pointer to an object of a type defined in the Gtk+
library. No UI types are defined in this extension, that is intentionally
left for other extensions.
</p>
@@ -130,8 +129,7 @@ doesn't support all of its required features, and an UI MUST fail to
instantiate if the host doesn't pass all required features to instantiate().
</p>
-<p>For details about the C API used to load UIs, see the file
-<a href="../../doc/html/ui_8lv2_2ui_8h.html">ui<!-- hackety hack -->.h</a>.
+<p>For details about the C API used to load UIs, see the file pui.h.
</p>
""" .
@@ -140,7 +138,7 @@ instantiate if the host doesn't pass all required features to instantiate().
## Port Protocols ##
####################
-ui:PortProtocol a rdfs:Class;
+pui:PortProtocol a rdfs:Class;
rdfs:subClassOf lv2:Feature;
rdfs:label "Port protocol";
lv2:documentation """
@@ -151,14 +149,14 @@ those extensions MUST specify:
<p><ol>
<li>Which plugin port types the buffer type is valid for</li>
-<li>When the host should call port_event() in LV2_UI_Descriptor</li>
+<li>When the host should call port_event() in LV2_PUI_Descriptor</li>
<li>The format of the data in the buffer passed to port_event()</li>
<li>The format of the data in the buffer passed to write_port()</li>
-<li>What happens when the UI calls write_port() in LV2_UI_Host_Descriptor</li>
+<li>What happens when the UI calls write_port() in LV2_PUI_Host_Descriptor</li>
<li>What data (if any) should be passed in the LV2_Feature data pointer. </li>
</ol></p>
-<p>For an example, see ui:floatControl.
+<p>For an example, see pui:floatControl.
</p>
<p>PortProtocol is a subclass of lv2:Feature, so UIs use lv2:optionalFeature and
@@ -166,10 +164,10 @@ lv2:requiredFeature to specify which PortProtocols they want to use.
</p>
""".
-ui:floatControl a ui:PortProtocol;
+pui:floatControl a pui:PortProtocol;
rdfs:label "Floating point value";
lv2:documentation """
-<p>The rules (see ui:PortProtocol) for this port protocol are:</p>
+<p>The rules (see pui:PortProtocol) for this port protocol are:</p>
<ol>
<li>This PortProtocol is valid for ports with the type lv2:ControlPort.</li>
<li>The host SHOULD call port_event() as soon as possible when the port value
='#n1479'>1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701