blob: 529391e0afbd7c199d76127fe3221f89a18d3277 (
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
62
|
# Copyright (c) 2015-2016 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 ui: <http://lv2plug.in/ns/extensions/ui#> .
@prefix atom: <http://lv2plug.in/ns/ext/atom#> .
@prefix ui: <http://lv2plug.in/ns/extensions/ui#> .
@prefix urid: <http://lv2plug.in/ns/ext/urid#> .
@prefix patch: <http://lv2plug.in/ns/ext/patch#> .
@prefix sherlock: <http://open-music-kontrollers.ch/lv2/sherlock#> .
# Atom Inspector UI
sherlock:atom_inspector_4_nk
ui:portNotification [
ui:plugin sherlock:atom_inspector ;
lv2:symbol "notify" ;
ui:notifyType patch:Message ,
atom:Tuple ;
ui:protocol atom:eventTransfer
] ;
lv2:extensionData ui:idleInterface ;
lv2:optionalFeature ui:resize ;
lv2:requiredFeature urid:map, urid:unmap .
# MIDI Inspector UI
sherlock:midi_inspector_4_nk
ui:portNotification [
ui:plugin sherlock:midi_inspector ;
lv2:symbol "notify" ;
ui:notifyType patch:Message ,
atom:Tuple ;
ui:protocol atom:eventTransfer
] ;
lv2:extensionData ui:idleInterface ;
lv2:optionalFeature ui:resize ;
lv2:requiredFeature urid:map, urid:unmap .
# OSC Inspector UI
sherlock:osc_inspector_4_nk
ui:portNotification [
ui:plugin sherlock:osc_inspector ;
lv2:symbol "notify" ;
ui:notifyType patch:Message ,
atom:Tuple ;
ui:protocol atom:eventTransfer
] ;
lv2:extensionData ui:idleInterface ;
lv2:optionalFeature ui:resize ;
lv2:requiredFeature urid:map, urid:unmap .
|