diff options
author | Hanspeter Portner <dev@open-music-kontrollers.ch> | 2018-04-06 12:16:40 +0200 |
---|---|---|
committer | Hanspeter Portner <dev@open-music-kontrollers.ch> | 2018-04-06 12:27:32 +0200 |
commit | df3fa0563deef01b0b569761e2ddb2a03f3aae09 (patch) | |
tree | 8d9d32e5c2f3744d100937d7c74b7119b7145ab5 /sherlock_ui.ttl | |
parent | e1670c4262f7d7c0963bd7f94415f040755789c7 (diff) | |
download | sherlock.lv2-df3fa0563deef01b0b569761e2ddb2a03f3aae09.tar.xz |
fixes for meson and CI
Diffstat (limited to 'sherlock_ui.ttl')
-rw-r--r-- | sherlock_ui.ttl | 62 |
1 files changed, 62 insertions, 0 deletions
diff --git a/sherlock_ui.ttl b/sherlock_ui.ttl new file mode 100644 index 0000000..78b62dd --- /dev/null +++ b/sherlock_ui.ttl @@ -0,0 +1,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, ui:resize ; + lv2:optionalFeature ui:resize ; + lv2:requiredFeature ui:idleInterface, 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, ui:resize ; + lv2:optionalFeature ui:resize ; + lv2:requiredFeature ui:idleInterface, 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, ui:resize ; + lv2:optionalFeature ui:resize ; + lv2:requiredFeature ui:idleInterface, urid:map, urid:unmap . |