blob: dd5853d3eec6b41556ce56f062c6a560e7622817 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
|
# Copyright (c) 2015 Hanspeter Portner (dev@open-music-kontrollers.ch)
#
# This is free software: you can redistribute it and/or modify
# it under the terms of the Artistic License 2.0 as published by
# The Perl Foundation.
#
# This source is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# Artistic License 2.0 for more details.
#
# You should have received a copy of the Artistic License 2.0
# along the source as a COPYING file. If not, obtain it from
# http://www.perlfoundation.org/artistic_license_2_0.
@prefix lv2: <http://lv2plug.in/ns/lv2core#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix ui: <http://lv2plug.in/ns/extensions/ui#> .
@prefix kx: <http://kxstudio.sf.net/ns/lv2ext/external-ui#> .
@prefix sherlock: <http://open-music-kontrollers.ch/lv2/sherlock#> .
# to please sord_validate
ui:EoUI
a rdfs:Class, owl:Class ;
rdfs:subClassOf ui:UI .
kx:Widget
a rdfs:Class, owl:Class ;
rdfs:subClassOf ui:UI .
kx:Host
a lv2:Feature .
# Atom Inspector Plugin
sherlock:atom_inspector
a lv2:Plugin ;
lv2:minorVersion @SHERLOCK_MINOR_VERSION@ ;
lv2:microVersion @SHERLOCK_MICRO_VERSION@ ;
lv2:binary <sherlock@LIB_EXT@> ;
@EO_UI_WRAP@ui:ui sherlock:atom_inspector_eo ;
@UI_UI_WRAP@ui:ui sherlock:atom_inspector_ui ;
@KX_UI_WRAP@ui:ui sherlock:atom_inspector_kx ;
@X11_UI_WRAP@ui:ui sherlock:atom_inspector_x11 ;
rdfs:seeAlso <sherlock.ttl> .
sherlock:atom_inspector_eo
a ui:EoUI ;
ui:binary <sherlock_ui@LIB_EXT@> ;
rdfs:seeAlso <sherlock.ttl> .
sherlock:atom_inspector_ui
a ui:UI ;
ui:binary <sherlock_ui@LIB_EXT@> ;
rdfs:seeAlso <sherlock.ttl> .
sherlock:atom_inspector_x11
a ui:X11UI ;
ui:binary <sherlock_ui@LIB_EXT@> ;
rdfs:seeAlso <sherlock.ttl> .
sherlock:atom_inspector_kx
a kx:Widget ;
ui:binary <sherlock_ui@LIB_EXT@> ;
rdfs:seeAlso <sherlock.ttl> .
|