diff options
Diffstat (limited to 'lv2')
| -rw-r--r-- | lv2/lv2plug.in/ns/extensions/ui/lv2-ui.doap.ttl | 6 | ||||
| -rw-r--r-- | lv2/lv2plug.in/ns/extensions/ui/manifest.ttl | 2 | ||||
| -rw-r--r-- | lv2/lv2plug.in/ns/extensions/ui/ui.h | 1 | ||||
| -rw-r--r-- | lv2/lv2plug.in/ns/extensions/ui/ui.ttl | 9 | 
4 files changed, 14 insertions, 4 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 1584de8..8304d58 100644 --- a/lv2/lv2plug.in/ns/extensions/ui/lv2-ui.doap.ttl +++ b/lv2/lv2plug.in/ns/extensions/ui/lv2-ui.doap.ttl @@ -14,12 +14,12 @@  	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" ; +		doap:revision "2.9" ; +		doap:created "2012-07-29" ;  		dcs:blame <http://drobilla.net/drobilla#me> ;  		dcs:changeset [  			dcs:item [ -				rdfs:label "Add ui:WindowsUI and ui:CocoaUI." +				rdfs:label "Add types for WindowsUI, CocoaUI, and Gtk3UI."  			] , [  				rdfs:label "Use consistent label style."  			] diff --git a/lv2/lv2plug.in/ns/extensions/ui/manifest.ttl b/lv2/lv2plug.in/ns/extensions/ui/manifest.ttl index 7162504..bd67260 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 10 ; +	lv2:microVersion 9 ;  	rdfs:seeAlso <ui.ttl> ,  		<lv2-ui.doap.ttl> . diff --git a/lv2/lv2plug.in/ns/extensions/ui/ui.h b/lv2/lv2plug.in/ns/extensions/ui/ui.h index 3bb89ad..0907ef4 100644 --- a/lv2/lv2plug.in/ns/extensions/ui/ui.h +++ b/lv2/lv2plug.in/ns/extensions/ui/ui.h @@ -31,6 +31,7 @@  #define LV2_UI_URI    "http://lv2plug.in/ns/extensions/ui"  #define LV2_UI_PREFIX LV2_UI_URI "#" +#define LV2_UI__Gtk3UI           LV2_UI_PREFIX "Gtk3UI"  #define LV2_UI__GtkUI            LV2_UI_PREFIX "GtkUI"  #define LV2_UI__PortNotification LV2_UI_PREFIX "PortNotification"  #define LV2_UI__Qt4UI            LV2_UI_PREFIX "Qt4UI" diff --git a/lv2/lv2plug.in/ns/extensions/ui/ui.ttl b/lv2/lv2plug.in/ns/extensions/ui/ui.ttl index fc3d0aa..9d1048c 100644 --- a/lv2/lv2plug.in/ns/extensions/ui/ui.ttl +++ b/lv2/lv2plug.in/ns/extensions/ui/ui.ttl @@ -91,6 +91,15 @@ A UI where the LV2_Widget is a pointer to a Gtk+ 2.0 compatible GtkWidget,  and the host guarantees that the Gtk+ library has been initialised and the  Glib main loop is running before a UI of this type is instantiated.""" . +ui:Gtk3UI +	a rdfs:Class , +		owl:Class ; +	rdfs:subClassOf ui:UI ; +	rdfs:comment """ +A UI where the LV2_Widget is a pointer to a Gtk+ 3.0 compatible GtkWidget, +and the host guarantees that the Gtk+ library has been initialised and the +Glib main loop is running before a UI of this type is instantiated.""" . +  ui:Qt4UI  	a rdfs:Class ,  		owl:Class ; |