LV2 Extensions
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

82 lines
3.0KB

  1. @prefix lv2: <http://lv2plug.in/ns/lv2core#> .
  2. @prefix extui: <http://kxstudio.sf.net/ns/lv2ext/external-ui#> .
  3. @prefix owl: <http://www.w3.org/2002/07/owl#> .
  4. @prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
  5. @prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
  6. @prefix ui: <http://lv2plug.in/ns/extensions/ui#> .
  7. @prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
  8. <http://kxstudio.sf.net/ns/lv2ext/external-ui>
  9. a owl:Ontology ;
  10. rdfs:seeAlso <external-ui.h> ,
  11. <external-ui.doap.ttl> ,
  12. <../kx-meta/meta.ttl> ;
  13. lv2:documentation """
  14. <p>
  15. LV2 External UI extension is an <a href="http://lv2plug.in/ns/extensions/ui" target="_blank">LV2 UI</a> extension, subclass of ui:UI just like ui:GtkUI is.<br/>
  16. The ui:Widget type used in this extension is extui:Widget, see the C header file for more details.<br/>
  17. </p>
  18. <p>
  19. This extension used to be (wronly) defined in a <a href="http://lv2plug.in/ns/extensions/ui#external">lv2plug.in domain</a>.<br/>
  20. The old URI is deprecated and the extension is available under a <a href="http://kxstudio.sf.net/ns/lv2ext/external-ui">new URI</a>.<br/>
  21. Or if you prefer, the old extension is deprecated and a new one with exactly same semantics but different URI is available.
  22. </p>
  23. <p>
  24. List of plugins that use this extension:
  25. </p>
  26. <ul>
  27. <li><a href="http://distrho.sourceforge.net/" target="_blank">DISTRHO Plugins and Ports</a></li>
  28. <li><a href="http://www.drumgizmo.org/" target="_blank">DrumGizmo</a></li>
  29. <li><a href="http://drumkv1.sourceforge.net/" target="_blank">drumkv1</a></li>
  30. <li><a href="https://github.com/x42/meters.lv2" target="_blank">meters.lv2</a></li>
  31. <li><a href="https://www.pianoteq.com/pianoteq4" target="_blank">Pianoteq</a></li>
  32. <li><a href="http://samplv1.sourceforge.net/" target="_blank">samplv1</a></li>
  33. <li><a href="https://github.com/x42/sisco.lv2" target="_blank">sisco.lv2</a></li>
  34. <li><a href="http://synthv1.sourceforge.net/" target="_blank">synthv1</a></li>
  35. <li><a href="https://github.com/x42/tuna.lv2" target="_blank">tuna.lv2</a></li>
  36. </ul>
  37. <p>
  38. List of hosts that support this extension:
  39. </p>
  40. <ul>
  41. <li><a href="http://ardour.org" target="_blank">Ardour</a></li>
  42. <li><a href="http://kxstudio.sf.net/Applications:Carla" target="_blank">Carla</a></li>
  43. <li><a href="http://drobilla.net/software/jalv/" target="_blank">Jalv</a> (using <a href="jalv_extui_svn5273b.diff" target="_blank">this patch</a>)</li>
  44. <li><a href="http://qtractor.sourceforge.net" target="_blank">Qtractor</a></li>
  45. </ul>
  46. """ .
  47. extui:Host
  48. a lv2:Feature ;
  49. lv2:documentation """
  50. <p>
  51. TODO
  52. </p>
  53. """ .
  54. extui:Widget
  55. a rdfs:Class ,
  56. owl:Class ;
  57. rdfs:subClassOf ui:UI ;
  58. rdfs:label "External UI" ;
  59. lv2:documentation """
  60. <p>
  61. TODO
  62. </p>
  63. """ .
  64. <http://lv2plug.in/ns/extensions/ui#external>
  65. a lv2:Feature ,
  66. rdfs:Class ,
  67. owl:Class ;
  68. owl:deprecated true ;
  69. rdfs:seeAlso extui:Host, extui:Widget ;
  70. rdfs:label "Old External UI" ;
  71. lv2:documentation """
  72. <p>
  73. TODO
  74. </p>
  75. """ .