DISTRHO Plugin Framework
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

43 lines
1.3KB

  1. @prefix lv2: <http://lv2plug.in/ns/lv2core#> .
  2. @prefix mod: <http://moddevices.com/ns/mod#> .
  3. @prefix modgui: <http://moddevices.com/ns/modgui#> .
  4. <http://distrho.sf.net/examples/Info>
  5. mod:brand "DISTRHO" ;
  6. mod:label "Info" ;
  7. modgui:gui [
  8. modgui:brand "DISTRHO" ;
  9. modgui:label "Info" ;
  10. modgui:resourcesDirectory <modgui> ;
  11. modgui:iconTemplate <modgui/icon-info.html> ;
  12. modgui:stylesheet <modgui/stylesheet-info.css> ;
  13. modgui:screenshot <modgui/screenshot-info.png> ;
  14. modgui:thumbnail <modgui/thumbnail-info.png> ;
  15. modgui:javascript <modgui/script-info.js> ;
  16. modgui:monitoredOutputs [
  17. lv2:symbol "buffer_size" ;
  18. ] , [
  19. lv2:symbol "time_playing" ;
  20. ] , [
  21. lv2:symbol "time_frame" ;
  22. ] , [
  23. lv2:symbol "time_validbbt" ;
  24. ] , [
  25. lv2:symbol "time_bar" ;
  26. ] , [
  27. lv2:symbol "time_beat" ;
  28. ] , [
  29. lv2:symbol "time_tick" ;
  30. ] , [
  31. lv2:symbol "time_barstarttick" ;
  32. ] , [
  33. lv2:symbol "time_beatsperbar" ;
  34. ] , [
  35. lv2:symbol "time_beattype" ;
  36. ] , [
  37. lv2:symbol "time_ticksperbeat" ;
  38. ] , [
  39. lv2:symbol "time_beatsperminute" ;
  40. ] ;
  41. ] .