forked from falkTX/notes.lv2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnotes_ui.ttl
35 lines (32 loc) · 1.37 KB
/
notes_ui.ttl
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
# Copyright (c) 2019-2020 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 opts: <http://lv2plug.in/ns/ext/options#> .
@prefix log: <http://lv2plug.in/ns/ext/log#> .
@prefix notes: <http://open-music-kontrollers.ch/lv2/notes#> .
notes:ui
ui:portNotification [
ui:plugin notes:notes ;
lv2:symbol "notify" ;
ui:protocol atom:eventTransfer ;
] ;
lv2:requiredFeature ui:idleInterface, urid:map, ui:parent ;
lv2:optionalFeature ui:requestValue, ui:resize, opts:options, log:log;
opts:supportedOption ui:scaleFactor ;
lv2:extensionData ui:idleInterface, ui:resize .