forked from falkTX/notes.lv2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
notes.ttl
142 lines (131 loc) · 3.9 KB
/
notes.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
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
# 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 xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix doap: <http://usefulinc.com/ns/doap#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix lv2: <http://lv2plug.in/ns/lv2core#> .
@prefix atom: <http://lv2plug.in/ns/ext/atom#> .
@prefix urid: <http://lv2plug.in/ns/ext/urid#> .
@prefix units: <http://lv2plug.in/ns/extensions/units#> .
@prefix state: <http://lv2plug.in/ns/ext/state#> .
@prefix rsz: <http://lv2plug.in/ns/ext/resize-port#> .
@prefix patch: <http://lv2plug.in/ns/ext/patch#> .
@prefix log: <http://lv2plug.in/ns/ext/log#> .
@prefix omk: <http://open-music-kontrollers.ch/ventosus#> .
@prefix proj: <http://open-music-kontrollers.ch/lv2/> .
@prefix notes: <http://open-music-kontrollers.ch/lv2/notes#> .
# Maintainer
omk:me
a foaf:Person ;
foaf:name "Hanspeter Portner" ;
foaf:mbox <mailto:dev@open-music-kontrollers.ch> ;
foaf:homepage <http://open-music-kontrollers.ch> .
# Project
proj:notes
a doap:Project ;
doap:maintainer omk:me ;
doap:name "Notes Bundle" .
# Units
notes:px
a units:Unit ;
rdfs:label "pixels" ;
units:render "%f px" ;
units:symbol "px" .
notes:Item
a rdfs:Class ;
rdfs:subClassOf atom:Object ;
rdfs:label "Item class" .
notes:itemTxt
a rdf:Property ;
rdfs:range atom:String ;
rdfs:label "Item Text" .
notes:itemImg
a rdf:Property ;
rdfs:range atom:Path ;
rdfs:label "Item Image" .
# Params
notes:text
a lv2:Parameter ;
rdfs:range atom:String ;
rdfs:label "Notes text" ;
rdfs:comment "get/set notes text" .
notes:image
a lv2:Parameter ;
rdfs:range atom:Path;
rdfs:label "Notes image" ;
rdfs:comment "get/set notes image" .
notes:fontHeight
a lv2:Parameter ;
rdfs:range atom:Int ;
rdfs:label "Font height" ;
rdfs:comment "get/set font height in px" ;
lv2:minimum 10 ;
lv2:maximum 25 ;
units:unit notes:px .
notes:imageMinimized
a lv2:Parameter ;
rdfs:range atom:Bool ;
rdfs:label "Image widget maximization" ;
rdfs:comment "get/set image widget maximization" .
notes:textMinimized
a lv2:Parameter ;
rdfs:range atom:Bool ;
rdfs:label "Text widget maximization" ;
rdfs:comment "get/set text widget maximization" .
notes:notes
a lv2:Plugin ,
lv2:UtilityPlugin ;
doap:name "Notes" ;
doap:license <https://spdx.org/licenses/Artistic-2.0> ;
lv2:project proj:notes ;
lv2:requiredFeature urid:map, state:loadDefaultState ;
lv2:optionalFeature lv2:isLive, lv2:hardRTCapable, state:threadSafeRestore, log:log ;
lv2:extensionData state:interface ;
lv2:port [
a lv2:InputPort ,
atom:AtomPort ;
atom:bufferType atom:Sequence ;
atom:supports patch:Message ;
lv2:index 0 ;
lv2:symbol "control" ;
lv2:name "Control" ;
rsz:minimumSize 262144 ;
lv2:designation lv2:control ;
] , [
a lv2:OutputPort ,
atom:AtomPort ;
atom:bufferType atom:Sequence ;
atom:supports patch:Message ;
lv2:index 1 ;
lv2:symbol "notify" ;
lv2:name "Notify" ;
rsz:minimumSize 262144 ;
lv2:designation lv2:control ;
] ;
patch:writable
notes:text ,
notes:image ,
notes:fontHeight ,
notes:imageMinimized ,
notes:textMinimized ;
state:state [
notes:text "# Notes" ;
notes:image <> ;
notes:fontHeight "16"^^xsd:int ;
notes:imageMinimized false ;
notes:textMinimized false ;
] .