| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,26 @@ | ||
| @prefix modgui: <http://moddevices.com/ns/modgui#> . | ||
| @prefix lv2: <http://lv2plug.in/ns/lv2core#> . | ||
|
|
||
| <http://kxstudio.linuxaudio.org/plugins/FluidPlug_FluidBrass> | ||
| modgui:gui [ | ||
| modgui:resourcesDirectory <modgui> ; | ||
| modgui:iconTemplate <modgui/icon-fluid-brass.html> ; | ||
| modgui:stylesheet <modgui/stylesheet-fluid-brass.css> ; | ||
| modgui:screenshot <modgui/screenshot-fluid-brass.png> ; | ||
| modgui:thumbnail <modgui/thumbnail-fluid-brass.png> ; | ||
| modgui:brand "FluidGM" ; | ||
| modgui:label "Brass" ; | ||
| modgui:model "boxy" ; | ||
| modgui:panel "1-select-1-knob" ; | ||
| modgui:color "wood0" ; | ||
| modgui:knob "silver" ; | ||
| modgui:port [ | ||
| lv2:index 0 ; | ||
| lv2:symbol "program" ; | ||
| lv2:name "Program" ; | ||
| ] , [ | ||
| lv2:index 1 ; | ||
| lv2:symbol "gain" ; | ||
| lv2:name "Gain" ; | ||
| ] ; | ||
| ] . |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,61 @@ | ||
| <div class="mod-pedal mod-pedal-boxy{{{cns}}} mod-one-knob mod-{{color}} {{color}}"> | ||
| <div mod-role="drag-handle" class="mod-drag-handle"></div> | ||
| <div class="mod-plugin-brand"><h1>{{brand}}</h1></div> | ||
| <div class="mod-plugin-name"><h1>{{label}}</h1></div> | ||
| <div class="mod-light on" mod-role="bypass-light"></div> | ||
| <div class="mod-control-group mod-enumerated-group bottom clearfix"> | ||
| {{#controls.0}} | ||
| <div class="mod-enumerated" mod-role="input-control-port" mod-port-symbol="{{symbol}}" mod-widget="custom-select"> | ||
| <div mod-role="input-control-value" mod-port-symbol="{{symbol}}" class="mod-enumerated-selected"></div> | ||
| <div class="mod-enumerated-list"> | ||
| {{#scalePoints}} | ||
| <div mod-role="enumeration-option" mod-port-value="{{value}}">{{label}}</div> | ||
| {{/scalePoints}} | ||
| </div> | ||
| </div> | ||
| {{/controls.0}} | ||
| </div> | ||
| <div class="mod-control-group mod-{{knob}} top clearfix"> | ||
| {{#controls.1}} | ||
| <div class="mod-knob"> | ||
| <div class="mod-knob-image" mod-role="input-control-port" mod-port-symbol="{{symbol}}"></div> | ||
| <span class="mod-knob-title">{{name}}</span> | ||
| </div> | ||
| {{/controls.1}} | ||
| </div> | ||
| <div class="mod-footswitch" mod-role="bypass"></div> | ||
| <div class="mod-pedal-input"> | ||
| {{#effect.ports.audio.input}} | ||
| <div class="mod-input mod-input-disconnected" title="{{name}}" mod-role="input-audio-port" mod-port-symbol="{{symbol}}"> | ||
| <div class="mod-pedal-input-image"></div> | ||
| </div> | ||
| {{/effect.ports.audio.input}} | ||
| {{#effect.ports.midi.input}} | ||
| <div class="mod-input mod-input-disconnected" title="{{name}}" mod-role="input-midi-port" mod-port-symbol="{{symbol}}"> | ||
| <div class="mod-pedal-input-image"></div> | ||
| </div> | ||
| {{/effect.ports.midi.input}} | ||
| {{#effect.ports.cv.input}} | ||
| <div class="mod-input mod-input-disconnected" title="{{name}}" mod-role="input-cv-port" mod-port-symbol="{{symbol}}"> | ||
| <div class="mod-pedal-input-image"></div> | ||
| </div> | ||
| {{/effect.ports.cv.input}} | ||
| </div> | ||
| <div class="mod-pedal-output"> | ||
| {{#effect.ports.audio.output}} | ||
| <div class="mod-output mod-output-disconnected" title="{{name}}" mod-role="output-audio-port" mod-port-symbol="{{symbol}}"> | ||
| <div class="mod-pedal-output-image"></div> | ||
| </div> | ||
| {{/effect.ports.audio.output}} | ||
| {{#effect.ports.midi.output}} | ||
| <div class="mod-output mod-output-disconnected" title="{{name}}" mod-role="output-midi-port" mod-port-symbol="{{symbol}}"> | ||
| <div class="mod-pedal-output-image"></div> | ||
| </div> | ||
| {{/effect.ports.midi.output}} | ||
| {{#effect.ports.cv.output}} | ||
| <div class="mod-output mod-output-disconnected" title="{{name}}" mod-role="output-cv-port" mod-port-symbol="{{symbol}}"> | ||
| <div class="mod-pedal-output-image"></div> | ||
| </div> | ||
| {{/effect.ports.cv.output}} | ||
| </div> | ||
| </div> |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,26 @@ | ||
| @prefix modgui: <http://moddevices.com/ns/modgui#> . | ||
| @prefix lv2: <http://lv2plug.in/ns/lv2core#> . | ||
|
|
||
| <http://kxstudio.linuxaudio.org/plugins/FluidPlug_FluidChromPerc> | ||
| modgui:gui [ | ||
| modgui:resourcesDirectory <modgui> ; | ||
| modgui:iconTemplate <modgui/icon-fluid-chromatic-percussion.html> ; | ||
| modgui:stylesheet <modgui/stylesheet-fluid-chromatic-percussion.css> ; | ||
| modgui:screenshot <modgui/screenshot-fluid-chromatic-percussion.png> ; | ||
| modgui:thumbnail <modgui/thumbnail-fluid-chromatic-percussion.png> ; | ||
| modgui:brand "FluidGM" ; | ||
| modgui:label "Chromatic Percussion" ; | ||
| modgui:model "boxy" ; | ||
| modgui:panel "1-select-1-knob" ; | ||
| modgui:color "tribal1" ; | ||
| modgui:knob "aluminium" ; | ||
| modgui:port [ | ||
| lv2:index 0 ; | ||
| lv2:symbol "program" ; | ||
| lv2:name "Program" ; | ||
| ] , [ | ||
| lv2:index 1 ; | ||
| lv2:symbol "gain" ; | ||
| lv2:name "Gain" ; | ||
| ] ; | ||
| ] . |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,61 @@ | ||
| <div class="mod-pedal mod-pedal-boxy{{{cns}}} mod-one-knob mod-{{color}} {{color}}"> | ||
| <div mod-role="drag-handle" class="mod-drag-handle"></div> | ||
| <div class="mod-plugin-brand"><h1>{{brand}}</h1></div> | ||
| <div class="mod-plugin-name"><h1>{{label}}</h1></div> | ||
| <div class="mod-light on" mod-role="bypass-light"></div> | ||
| <div class="mod-control-group mod-enumerated-group bottom clearfix"> | ||
| {{#controls.0}} | ||
| <div class="mod-enumerated" mod-role="input-control-port" mod-port-symbol="{{symbol}}" mod-widget="custom-select"> | ||
| <div mod-role="input-control-value" mod-port-symbol="{{symbol}}" class="mod-enumerated-selected"></div> | ||
| <div class="mod-enumerated-list"> | ||
| {{#scalePoints}} | ||
| <div mod-role="enumeration-option" mod-port-value="{{value}}">{{label}}</div> | ||
| {{/scalePoints}} | ||
| </div> | ||
| </div> | ||
| {{/controls.0}} | ||
| </div> | ||
| <div class="mod-control-group mod-{{knob}} top clearfix"> | ||
| {{#controls.1}} | ||
| <div class="mod-knob"> | ||
| <div class="mod-knob-image" mod-role="input-control-port" mod-port-symbol="{{symbol}}"></div> | ||
| <span class="mod-knob-title">{{name}}</span> | ||
| </div> | ||
| {{/controls.1}} | ||
| </div> | ||
| <div class="mod-footswitch" mod-role="bypass"></div> | ||
| <div class="mod-pedal-input"> | ||
| {{#effect.ports.audio.input}} | ||
| <div class="mod-input mod-input-disconnected" title="{{name}}" mod-role="input-audio-port" mod-port-symbol="{{symbol}}"> | ||
| <div class="mod-pedal-input-image"></div> | ||
| </div> | ||
| {{/effect.ports.audio.input}} | ||
| {{#effect.ports.midi.input}} | ||
| <div class="mod-input mod-input-disconnected" title="{{name}}" mod-role="input-midi-port" mod-port-symbol="{{symbol}}"> | ||
| <div class="mod-pedal-input-image"></div> | ||
| </div> | ||
| {{/effect.ports.midi.input}} | ||
| {{#effect.ports.cv.input}} | ||
| <div class="mod-input mod-input-disconnected" title="{{name}}" mod-role="input-cv-port" mod-port-symbol="{{symbol}}"> | ||
| <div class="mod-pedal-input-image"></div> | ||
| </div> | ||
| {{/effect.ports.cv.input}} | ||
| </div> | ||
| <div class="mod-pedal-output"> | ||
| {{#effect.ports.audio.output}} | ||
| <div class="mod-output mod-output-disconnected" title="{{name}}" mod-role="output-audio-port" mod-port-symbol="{{symbol}}"> | ||
| <div class="mod-pedal-output-image"></div> | ||
| </div> | ||
| {{/effect.ports.audio.output}} | ||
| {{#effect.ports.midi.output}} | ||
| <div class="mod-output mod-output-disconnected" title="{{name}}" mod-role="output-midi-port" mod-port-symbol="{{symbol}}"> | ||
| <div class="mod-pedal-output-image"></div> | ||
| </div> | ||
| {{/effect.ports.midi.output}} | ||
| {{#effect.ports.cv.output}} | ||
| <div class="mod-output mod-output-disconnected" title="{{name}}" mod-role="output-cv-port" mod-port-symbol="{{symbol}}"> | ||
| <div class="mod-pedal-output-image"></div> | ||
| </div> | ||
| {{/effect.ports.cv.output}} | ||
| </div> | ||
| </div> |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,26 @@ | ||
| @prefix modgui: <http://moddevices.com/ns/modgui#> . | ||
| @prefix lv2: <http://lv2plug.in/ns/lv2core#> . | ||
|
|
||
| <http://kxstudio.linuxaudio.org/plugins/FluidPlug_FluidDrums> | ||
| modgui:gui [ | ||
| modgui:resourcesDirectory <modgui> ; | ||
| modgui:iconTemplate <modgui/icon-fluid-drums.html> ; | ||
| modgui:stylesheet <modgui/stylesheet-fluid-drums.css> ; | ||
| modgui:screenshot <modgui/screenshot-fluid-drums.png> ; | ||
| modgui:thumbnail <modgui/thumbnail-fluid-drums.png> ; | ||
| modgui:brand "FluidGM" ; | ||
| modgui:label "Drums" ; | ||
| modgui:model "boxy" ; | ||
| modgui:panel "1-select-1-knob" ; | ||
| modgui:color "white" ; | ||
| modgui:knob "black" ; | ||
| modgui:port [ | ||
| lv2:index 0 ; | ||
| lv2:symbol "program" ; | ||
| lv2:name "Program" ; | ||
| ] , [ | ||
| lv2:index 1 ; | ||
| lv2:symbol "gain" ; | ||
| lv2:name "Gain" ; | ||
| ] ; | ||
| ] . |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,61 @@ | ||
| <div class="mod-pedal mod-pedal-boxy{{{cns}}} mod-one-knob mod-{{color}} {{color}}"> | ||
| <div mod-role="drag-handle" class="mod-drag-handle"></div> | ||
| <div class="mod-plugin-brand"><h1>{{brand}}</h1></div> | ||
| <div class="mod-plugin-name"><h1>{{label}}</h1></div> | ||
| <div class="mod-light on" mod-role="bypass-light"></div> | ||
| <div class="mod-control-group mod-enumerated-group bottom clearfix"> | ||
| {{#controls.0}} | ||
| <div class="mod-enumerated" mod-role="input-control-port" mod-port-symbol="{{symbol}}" mod-widget="custom-select"> | ||
| <div mod-role="input-control-value" mod-port-symbol="{{symbol}}" class="mod-enumerated-selected"></div> | ||
| <div class="mod-enumerated-list"> | ||
| {{#scalePoints}} | ||
| <div mod-role="enumeration-option" mod-port-value="{{value}}">{{label}}</div> | ||
| {{/scalePoints}} | ||
| </div> | ||
| </div> | ||
| {{/controls.0}} | ||
| </div> | ||
| <div class="mod-control-group mod-{{knob}} top clearfix"> | ||
| {{#controls.1}} | ||
| <div class="mod-knob"> | ||
| <div class="mod-knob-image" mod-role="input-control-port" mod-port-symbol="{{symbol}}"></div> | ||
| <span class="mod-knob-title">{{name}}</span> | ||
| </div> | ||
| {{/controls.1}} | ||
| </div> | ||
| <div class="mod-footswitch" mod-role="bypass"></div> | ||
| <div class="mod-pedal-input"> | ||
| {{#effect.ports.audio.input}} | ||
| <div class="mod-input mod-input-disconnected" title="{{name}}" mod-role="input-audio-port" mod-port-symbol="{{symbol}}"> | ||
| <div class="mod-pedal-input-image"></div> | ||
| </div> | ||
| {{/effect.ports.audio.input}} | ||
| {{#effect.ports.midi.input}} | ||
| <div class="mod-input mod-input-disconnected" title="{{name}}" mod-role="input-midi-port" mod-port-symbol="{{symbol}}"> | ||
| <div class="mod-pedal-input-image"></div> | ||
| </div> | ||
| {{/effect.ports.midi.input}} | ||
| {{#effect.ports.cv.input}} | ||
| <div class="mod-input mod-input-disconnected" title="{{name}}" mod-role="input-cv-port" mod-port-symbol="{{symbol}}"> | ||
| <div class="mod-pedal-input-image"></div> | ||
| </div> | ||
| {{/effect.ports.cv.input}} | ||
| </div> | ||
| <div class="mod-pedal-output"> | ||
| {{#effect.ports.audio.output}} | ||
| <div class="mod-output mod-output-disconnected" title="{{name}}" mod-role="output-audio-port" mod-port-symbol="{{symbol}}"> | ||
| <div class="mod-pedal-output-image"></div> | ||
| </div> | ||
| {{/effect.ports.audio.output}} | ||
| {{#effect.ports.midi.output}} | ||
| <div class="mod-output mod-output-disconnected" title="{{name}}" mod-role="output-midi-port" mod-port-symbol="{{symbol}}"> | ||
| <div class="mod-pedal-output-image"></div> | ||
| </div> | ||
| {{/effect.ports.midi.output}} | ||
| {{#effect.ports.cv.output}} | ||
| <div class="mod-output mod-output-disconnected" title="{{name}}" mod-role="output-cv-port" mod-port-symbol="{{symbol}}"> | ||
| <div class="mod-pedal-output-image"></div> | ||
| </div> | ||
| {{/effect.ports.cv.output}} | ||
| </div> | ||
| </div> |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,26 @@ | ||
| @prefix modgui: <http://moddevices.com/ns/modgui#> . | ||
| @prefix lv2: <http://lv2plug.in/ns/lv2core#> . | ||
|
|
||
| <http://kxstudio.linuxaudio.org/plugins/FluidPlug_FluidEnsemble> | ||
| modgui:gui [ | ||
| modgui:resourcesDirectory <modgui> ; | ||
| modgui:iconTemplate <modgui/icon-fluid-ensemble.html> ; | ||
| modgui:stylesheet <modgui/stylesheet-fluid-ensemble.css> ; | ||
| modgui:screenshot <modgui/screenshot-fluid-ensemble.png> ; | ||
| modgui:thumbnail <modgui/thumbnail-fluid-ensemble.png> ; | ||
| modgui:brand "FluidGM" ; | ||
| modgui:label "Ensemble" ; | ||
| modgui:model "boxy" ; | ||
| modgui:panel "1-select-1-knob" ; | ||
| modgui:color "purple" ; | ||
| modgui:knob "steel" ; | ||
| modgui:port [ | ||
| lv2:index 0 ; | ||
| lv2:symbol "program" ; | ||
| lv2:name "Program" ; | ||
| ] , [ | ||
| lv2:index 1 ; | ||
| lv2:symbol "gain" ; | ||
| lv2:name "Gain" ; | ||
| ] ; | ||
| ] . |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,61 @@ | ||
| <div class="mod-pedal mod-pedal-boxy{{{cns}}} mod-one-knob mod-{{color}} {{color}}"> | ||
| <div mod-role="drag-handle" class="mod-drag-handle"></div> | ||
| <div class="mod-plugin-brand"><h1>{{brand}}</h1></div> | ||
| <div class="mod-plugin-name"><h1>{{label}}</h1></div> | ||
| <div class="mod-light on" mod-role="bypass-light"></div> | ||
| <div class="mod-control-group mod-enumerated-group bottom clearfix"> | ||
| {{#controls.0}} | ||
| <div class="mod-enumerated" mod-role="input-control-port" mod-port-symbol="{{symbol}}" mod-widget="custom-select"> | ||
| <div mod-role="input-control-value" mod-port-symbol="{{symbol}}" class="mod-enumerated-selected"></div> | ||
| <div class="mod-enumerated-list"> | ||
| {{#scalePoints}} | ||
| <div mod-role="enumeration-option" mod-port-value="{{value}}">{{label}}</div> | ||
| {{/scalePoints}} | ||
| </div> | ||
| </div> | ||
| {{/controls.0}} | ||
| </div> | ||
| <div class="mod-control-group mod-{{knob}} top clearfix"> | ||
| {{#controls.1}} | ||
| <div class="mod-knob"> | ||
| <div class="mod-knob-image" mod-role="input-control-port" mod-port-symbol="{{symbol}}"></div> | ||
| <span class="mod-knob-title">{{name}}</span> | ||
| </div> | ||
| {{/controls.1}} | ||
| </div> | ||
| <div class="mod-footswitch" mod-role="bypass"></div> | ||
| <div class="mod-pedal-input"> | ||
| {{#effect.ports.audio.input}} | ||
| <div class="mod-input mod-input-disconnected" title="{{name}}" mod-role="input-audio-port" mod-port-symbol="{{symbol}}"> | ||
| <div class="mod-pedal-input-image"></div> | ||
| </div> | ||
| {{/effect.ports.audio.input}} | ||
| {{#effect.ports.midi.input}} | ||
| <div class="mod-input mod-input-disconnected" title="{{name}}" mod-role="input-midi-port" mod-port-symbol="{{symbol}}"> | ||
| <div class="mod-pedal-input-image"></div> | ||
| </div> | ||
| {{/effect.ports.midi.input}} | ||
| {{#effect.ports.cv.input}} | ||
| <div class="mod-input mod-input-disconnected" title="{{name}}" mod-role="input-cv-port" mod-port-symbol="{{symbol}}"> | ||
| <div class="mod-pedal-input-image"></div> | ||
| </div> | ||
| {{/effect.ports.cv.input}} | ||
| </div> | ||
| <div class="mod-pedal-output"> | ||
| {{#effect.ports.audio.output}} | ||
| <div class="mod-output mod-output-disconnected" title="{{name}}" mod-role="output-audio-port" mod-port-symbol="{{symbol}}"> | ||
| <div class="mod-pedal-output-image"></div> | ||
| </div> | ||
| {{/effect.ports.audio.output}} | ||
| {{#effect.ports.midi.output}} | ||
| <div class="mod-output mod-output-disconnected" title="{{name}}" mod-role="output-midi-port" mod-port-symbol="{{symbol}}"> | ||
| <div class="mod-pedal-output-image"></div> | ||
| </div> | ||
| {{/effect.ports.midi.output}} | ||
| {{#effect.ports.cv.output}} | ||
| <div class="mod-output mod-output-disconnected" title="{{name}}" mod-role="output-cv-port" mod-port-symbol="{{symbol}}"> | ||
| <div class="mod-pedal-output-image"></div> | ||
| </div> | ||
| {{/effect.ports.cv.output}} | ||
| </div> | ||
| </div> |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,26 @@ | ||
| @prefix modgui: <http://moddevices.com/ns/modgui#> . | ||
| @prefix lv2: <http://lv2plug.in/ns/lv2core#> . | ||
|
|
||
| <http://kxstudio.linuxaudio.org/plugins/FluidPlug_FluidEthnic> | ||
| modgui:gui [ | ||
| modgui:resourcesDirectory <modgui> ; | ||
| modgui:iconTemplate <modgui/icon-fluid-ethnic-percussion.html> ; | ||
| modgui:stylesheet <modgui/stylesheet-fluid-ethnic-percussion.css> ; | ||
| modgui:screenshot <modgui/screenshot-fluid-ethnic-percussion.png> ; | ||
| modgui:thumbnail <modgui/thumbnail-fluid-ethnic-percussion.png> ; | ||
| modgui:brand "FluidGM" ; | ||
| modgui:label "Ethnic Percussion" ; | ||
| modgui:model "boxy" ; | ||
| modgui:panel "1-select-1-knob" ; | ||
| modgui:color "tribal2" ; | ||
| modgui:knob "steel" ; | ||
| modgui:port [ | ||
| lv2:index 0 ; | ||
| lv2:symbol "program" ; | ||
| lv2:name "Program" ; | ||
| ] , [ | ||
| lv2:index 1 ; | ||
| lv2:symbol "gain" ; | ||
| lv2:name "Gain" ; | ||
| ] ; | ||
| ] . |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,61 @@ | ||
| <div class="mod-pedal mod-pedal-boxy{{{cns}}} mod-one-knob mod-{{color}} {{color}}"> | ||
| <div mod-role="drag-handle" class="mod-drag-handle"></div> | ||
| <div class="mod-plugin-brand"><h1>{{brand}}</h1></div> | ||
| <div class="mod-plugin-name"><h1>{{label}}</h1></div> | ||
| <div class="mod-light on" mod-role="bypass-light"></div> | ||
| <div class="mod-control-group mod-enumerated-group bottom clearfix"> | ||
| {{#controls.0}} | ||
| <div class="mod-enumerated" mod-role="input-control-port" mod-port-symbol="{{symbol}}" mod-widget="custom-select"> | ||
| <div mod-role="input-control-value" mod-port-symbol="{{symbol}}" class="mod-enumerated-selected"></div> | ||
| <div class="mod-enumerated-list"> | ||
| {{#scalePoints}} | ||
| <div mod-role="enumeration-option" mod-port-value="{{value}}">{{label}}</div> | ||
| {{/scalePoints}} | ||
| </div> | ||
| </div> | ||
| {{/controls.0}} | ||
| </div> | ||
| <div class="mod-control-group mod-{{knob}} top clearfix"> | ||
| {{#controls.1}} | ||
| <div class="mod-knob"> | ||
| <div class="mod-knob-image" mod-role="input-control-port" mod-port-symbol="{{symbol}}"></div> | ||
| <span class="mod-knob-title">{{name}}</span> | ||
| </div> | ||
| {{/controls.1}} | ||
| </div> | ||
| <div class="mod-footswitch" mod-role="bypass"></div> | ||
| <div class="mod-pedal-input"> | ||
| {{#effect.ports.audio.input}} | ||
| <div class="mod-input mod-input-disconnected" title="{{name}}" mod-role="input-audio-port" mod-port-symbol="{{symbol}}"> | ||
| <div class="mod-pedal-input-image"></div> | ||
| </div> | ||
| {{/effect.ports.audio.input}} | ||
| {{#effect.ports.midi.input}} | ||
| <div class="mod-input mod-input-disconnected" title="{{name}}" mod-role="input-midi-port" mod-port-symbol="{{symbol}}"> | ||
| <div class="mod-pedal-input-image"></div> | ||
| </div> | ||
| {{/effect.ports.midi.input}} | ||
| {{#effect.ports.cv.input}} | ||
| <div class="mod-input mod-input-disconnected" title="{{name}}" mod-role="input-cv-port" mod-port-symbol="{{symbol}}"> | ||
| <div class="mod-pedal-input-image"></div> | ||
| </div> | ||
| {{/effect.ports.cv.input}} | ||
| </div> | ||
| <div class="mod-pedal-output"> | ||
| {{#effect.ports.audio.output}} | ||
| <div class="mod-output mod-output-disconnected" title="{{name}}" mod-role="output-audio-port" mod-port-symbol="{{symbol}}"> | ||
| <div class="mod-pedal-output-image"></div> | ||
| </div> | ||
| {{/effect.ports.audio.output}} | ||
| {{#effect.ports.midi.output}} | ||
| <div class="mod-output mod-output-disconnected" title="{{name}}" mod-role="output-midi-port" mod-port-symbol="{{symbol}}"> | ||
| <div class="mod-pedal-output-image"></div> | ||
| </div> | ||
| {{/effect.ports.midi.output}} | ||
| {{#effect.ports.cv.output}} | ||
| <div class="mod-output mod-output-disconnected" title="{{name}}" mod-role="output-cv-port" mod-port-symbol="{{symbol}}"> | ||
| <div class="mod-pedal-output-image"></div> | ||
| </div> | ||
| {{/effect.ports.cv.output}} | ||
| </div> | ||
| </div> |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,26 @@ | ||
| @prefix modgui: <http://moddevices.com/ns/modgui#> . | ||
| @prefix lv2: <http://lv2plug.in/ns/lv2core#> . | ||
|
|
||
| <http://kxstudio.linuxaudio.org/plugins/FluidPlug_FluidGuitars> | ||
| modgui:gui [ | ||
| modgui:resourcesDirectory <modgui> ; | ||
| modgui:iconTemplate <modgui/icon-fluid-guitars.html> ; | ||
| modgui:stylesheet <modgui/stylesheet-fluid-guitars.css> ; | ||
| modgui:screenshot <modgui/screenshot-fluid-guitars.png> ; | ||
| modgui:thumbnail <modgui/thumbnail-fluid-guitars.png> ; | ||
| modgui:brand "FluidGM" ; | ||
| modgui:label "Guitars" ; | ||
| modgui:model "boxy" ; | ||
| modgui:panel "1-select-1-knob" ; | ||
| modgui:color "darkblue" ; | ||
| modgui:knob "steel" ; | ||
| modgui:port [ | ||
| lv2:index 0 ; | ||
| lv2:symbol "program" ; | ||
| lv2:name "Program" ; | ||
| ] , [ | ||
| lv2:index 1 ; | ||
| lv2:symbol "gain" ; | ||
| lv2:name "Gain" ; | ||
| ] ; | ||
| ] . |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,61 @@ | ||
| <div class="mod-pedal mod-pedal-boxy{{{cns}}} mod-one-knob mod-{{color}} {{color}}"> | ||
| <div mod-role="drag-handle" class="mod-drag-handle"></div> | ||
| <div class="mod-plugin-brand"><h1>{{brand}}</h1></div> | ||
| <div class="mod-plugin-name"><h1>{{label}}</h1></div> | ||
| <div class="mod-light on" mod-role="bypass-light"></div> | ||
| <div class="mod-control-group mod-enumerated-group bottom clearfix"> | ||
| {{#controls.0}} | ||
| <div class="mod-enumerated" mod-role="input-control-port" mod-port-symbol="{{symbol}}" mod-widget="custom-select"> | ||
| <div mod-role="input-control-value" mod-port-symbol="{{symbol}}" class="mod-enumerated-selected"></div> | ||
| <div class="mod-enumerated-list"> | ||
| {{#scalePoints}} | ||
| <div mod-role="enumeration-option" mod-port-value="{{value}}">{{label}}</div> | ||
| {{/scalePoints}} | ||
| </div> | ||
| </div> | ||
| {{/controls.0}} | ||
| </div> | ||
| <div class="mod-control-group mod-{{knob}} top clearfix"> | ||
| {{#controls.1}} | ||
| <div class="mod-knob"> | ||
| <div class="mod-knob-image" mod-role="input-control-port" mod-port-symbol="{{symbol}}"></div> | ||
| <span class="mod-knob-title">{{name}}</span> | ||
| </div> | ||
| {{/controls.1}} | ||
| </div> | ||
| <div class="mod-footswitch" mod-role="bypass"></div> | ||
| <div class="mod-pedal-input"> | ||
| {{#effect.ports.audio.input}} | ||
| <div class="mod-input mod-input-disconnected" title="{{name}}" mod-role="input-audio-port" mod-port-symbol="{{symbol}}"> | ||
| <div class="mod-pedal-input-image"></div> | ||
| </div> | ||
| {{/effect.ports.audio.input}} | ||
| {{#effect.ports.midi.input}} | ||
| <div class="mod-input mod-input-disconnected" title="{{name}}" mod-role="input-midi-port" mod-port-symbol="{{symbol}}"> | ||
| <div class="mod-pedal-input-image"></div> | ||
| </div> | ||
| {{/effect.ports.midi.input}} | ||
| {{#effect.ports.cv.input}} | ||
| <div class="mod-input mod-input-disconnected" title="{{name}}" mod-role="input-cv-port" mod-port-symbol="{{symbol}}"> | ||
| <div class="mod-pedal-input-image"></div> | ||
| </div> | ||
| {{/effect.ports.cv.input}} | ||
| </div> | ||
| <div class="mod-pedal-output"> | ||
| {{#effect.ports.audio.output}} | ||
| <div class="mod-output mod-output-disconnected" title="{{name}}" mod-role="output-audio-port" mod-port-symbol="{{symbol}}"> | ||
| <div class="mod-pedal-output-image"></div> | ||
| </div> | ||
| {{/effect.ports.audio.output}} | ||
| {{#effect.ports.midi.output}} | ||
| <div class="mod-output mod-output-disconnected" title="{{name}}" mod-role="output-midi-port" mod-port-symbol="{{symbol}}"> | ||
| <div class="mod-pedal-output-image"></div> | ||
| </div> | ||
| {{/effect.ports.midi.output}} | ||
| {{#effect.ports.cv.output}} | ||
| <div class="mod-output mod-output-disconnected" title="{{name}}" mod-role="output-cv-port" mod-port-symbol="{{symbol}}"> | ||
| <div class="mod-pedal-output-image"></div> | ||
| </div> | ||
| {{/effect.ports.cv.output}} | ||
| </div> | ||
| </div> |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,26 @@ | ||
| @prefix modgui: <http://moddevices.com/ns/modgui#> . | ||
| @prefix lv2: <http://lv2plug.in/ns/lv2core#> . | ||
|
|
||
| <http://kxstudio.linuxaudio.org/plugins/FluidPlug_FluidOrgans> | ||
| modgui:gui [ | ||
| modgui:resourcesDirectory <modgui> ; | ||
| modgui:iconTemplate <modgui/icon-fluid-organs.html> ; | ||
| modgui:stylesheet <modgui/stylesheet-fluid-organs.css> ; | ||
| modgui:screenshot <modgui/screenshot-fluid-organs.png> ; | ||
| modgui:thumbnail <modgui/thumbnail-fluid-organs.png> ; | ||
| modgui:brand "FluidGM" ; | ||
| modgui:label "Organs" ; | ||
| modgui:model "boxy" ; | ||
| modgui:panel "1-select-1-knob" ; | ||
| modgui:color "wood2" ; | ||
| modgui:knob "bronze" ; | ||
| modgui:port [ | ||
| lv2:index 0 ; | ||
| lv2:symbol "program" ; | ||
| lv2:name "Program" ; | ||
| ] , [ | ||
| lv2:index 1 ; | ||
| lv2:symbol "gain" ; | ||
| lv2:name "Gain" ; | ||
| ] ; | ||
| ] . |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,61 @@ | ||
| <div class="mod-pedal mod-pedal-boxy{{{cns}}} mod-one-knob mod-{{color}} {{color}}"> | ||
| <div mod-role="drag-handle" class="mod-drag-handle"></div> | ||
| <div class="mod-plugin-brand"><h1>{{brand}}</h1></div> | ||
| <div class="mod-plugin-name"><h1>{{label}}</h1></div> | ||
| <div class="mod-light on" mod-role="bypass-light"></div> | ||
| <div class="mod-control-group mod-enumerated-group bottom clearfix"> | ||
| {{#controls.0}} | ||
| <div class="mod-enumerated" mod-role="input-control-port" mod-port-symbol="{{symbol}}" mod-widget="custom-select"> | ||
| <div mod-role="input-control-value" mod-port-symbol="{{symbol}}" class="mod-enumerated-selected"></div> | ||
| <div class="mod-enumerated-list"> | ||
| {{#scalePoints}} | ||
| <div mod-role="enumeration-option" mod-port-value="{{value}}">{{label}}</div> | ||
| {{/scalePoints}} | ||
| </div> | ||
| </div> | ||
| {{/controls.0}} | ||
| </div> | ||
| <div class="mod-control-group mod-{{knob}} top clearfix"> | ||
| {{#controls.1}} | ||
| <div class="mod-knob"> | ||
| <div class="mod-knob-image" mod-role="input-control-port" mod-port-symbol="{{symbol}}"></div> | ||
| <span class="mod-knob-title">{{name}}</span> | ||
| </div> | ||
| {{/controls.1}} | ||
| </div> | ||
| <div class="mod-footswitch" mod-role="bypass"></div> | ||
| <div class="mod-pedal-input"> | ||
| {{#effect.ports.audio.input}} | ||
| <div class="mod-input mod-input-disconnected" title="{{name}}" mod-role="input-audio-port" mod-port-symbol="{{symbol}}"> | ||
| <div class="mod-pedal-input-image"></div> | ||
| </div> | ||
| {{/effect.ports.audio.input}} | ||
| {{#effect.ports.midi.input}} | ||
| <div class="mod-input mod-input-disconnected" title="{{name}}" mod-role="input-midi-port" mod-port-symbol="{{symbol}}"> | ||
| <div class="mod-pedal-input-image"></div> | ||
| </div> | ||
| {{/effect.ports.midi.input}} | ||
| {{#effect.ports.cv.input}} | ||
| <div class="mod-input mod-input-disconnected" title="{{name}}" mod-role="input-cv-port" mod-port-symbol="{{symbol}}"> | ||
| <div class="mod-pedal-input-image"></div> | ||
| </div> | ||
| {{/effect.ports.cv.input}} | ||
| </div> | ||
| <div class="mod-pedal-output"> | ||
| {{#effect.ports.audio.output}} | ||
| <div class="mod-output mod-output-disconnected" title="{{name}}" mod-role="output-audio-port" mod-port-symbol="{{symbol}}"> | ||
| <div class="mod-pedal-output-image"></div> | ||
| </div> | ||
| {{/effect.ports.audio.output}} | ||
| {{#effect.ports.midi.output}} | ||
| <div class="mod-output mod-output-disconnected" title="{{name}}" mod-role="output-midi-port" mod-port-symbol="{{symbol}}"> | ||
| <div class="mod-pedal-output-image"></div> | ||
| </div> | ||
| {{/effect.ports.midi.output}} | ||
| {{#effect.ports.cv.output}} | ||
| <div class="mod-output mod-output-disconnected" title="{{name}}" mod-role="output-cv-port" mod-port-symbol="{{symbol}}"> | ||
| <div class="mod-pedal-output-image"></div> | ||
| </div> | ||
| {{/effect.ports.cv.output}} | ||
| </div> | ||
| </div> |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,26 @@ | ||
| @prefix modgui: <http://moddevices.com/ns/modgui#> . | ||
| @prefix lv2: <http://lv2plug.in/ns/lv2core#> . | ||
|
|
||
| <http://kxstudio.linuxaudio.org/plugins/FluidPlug_FluidPercussion> | ||
| modgui:gui [ | ||
| modgui:resourcesDirectory <modgui> ; | ||
| modgui:iconTemplate <modgui/icon-fluid-percussion.html> ; | ||
| modgui:stylesheet <modgui/stylesheet-fluid-percussion.css> ; | ||
| modgui:screenshot <modgui/screenshot-fluid-percussion.png> ; | ||
| modgui:thumbnail <modgui/thumbnail-fluid-percussion.png> ; | ||
| modgui:brand "FluidGM" ; | ||
| modgui:label "Percussion" ; | ||
| modgui:model "boxy" ; | ||
| modgui:panel "1-select-1-knob" ; | ||
| modgui:color "zinc" ; | ||
| modgui:knob "steel" ; | ||
| modgui:port [ | ||
| lv2:index 0 ; | ||
| lv2:symbol "program" ; | ||
| lv2:name "Program" ; | ||
| ] , [ | ||
| lv2:index 1 ; | ||
| lv2:symbol "gain" ; | ||
| lv2:name "Gain" ; | ||
| ] ; | ||
| ] . |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,61 @@ | ||
| <div class="mod-pedal mod-pedal-boxy{{{cns}}} mod-one-knob mod-{{color}} {{color}}"> | ||
| <div mod-role="drag-handle" class="mod-drag-handle"></div> | ||
| <div class="mod-plugin-brand"><h1>{{brand}}</h1></div> | ||
| <div class="mod-plugin-name"><h1>{{label}}</h1></div> | ||
| <div class="mod-light on" mod-role="bypass-light"></div> | ||
| <div class="mod-control-group mod-enumerated-group bottom clearfix"> | ||
| {{#controls.0}} | ||
| <div class="mod-enumerated" mod-role="input-control-port" mod-port-symbol="{{symbol}}" mod-widget="custom-select"> | ||
| <div mod-role="input-control-value" mod-port-symbol="{{symbol}}" class="mod-enumerated-selected"></div> | ||
| <div class="mod-enumerated-list"> | ||
| {{#scalePoints}} | ||
| <div mod-role="enumeration-option" mod-port-value="{{value}}">{{label}}</div> | ||
| {{/scalePoints}} | ||
| </div> | ||
| </div> | ||
| {{/controls.0}} | ||
| </div> | ||
| <div class="mod-control-group mod-{{knob}} top clearfix"> | ||
| {{#controls.1}} | ||
| <div class="mod-knob"> | ||
| <div class="mod-knob-image" mod-role="input-control-port" mod-port-symbol="{{symbol}}"></div> | ||
| <span class="mod-knob-title">{{name}}</span> | ||
| </div> | ||
| {{/controls.1}} | ||
| </div> | ||
| <div class="mod-footswitch" mod-role="bypass"></div> | ||
| <div class="mod-pedal-input"> | ||
| {{#effect.ports.audio.input}} | ||
| <div class="mod-input mod-input-disconnected" title="{{name}}" mod-role="input-audio-port" mod-port-symbol="{{symbol}}"> | ||
| <div class="mod-pedal-input-image"></div> | ||
| </div> | ||
| {{/effect.ports.audio.input}} | ||
| {{#effect.ports.midi.input}} | ||
| <div class="mod-input mod-input-disconnected" title="{{name}}" mod-role="input-midi-port" mod-port-symbol="{{symbol}}"> | ||
| <div class="mod-pedal-input-image"></div> | ||
| </div> | ||
| {{/effect.ports.midi.input}} | ||
| {{#effect.ports.cv.input}} | ||
| <div class="mod-input mod-input-disconnected" title="{{name}}" mod-role="input-cv-port" mod-port-symbol="{{symbol}}"> | ||
| <div class="mod-pedal-input-image"></div> | ||
| </div> | ||
| {{/effect.ports.cv.input}} | ||
| </div> | ||
| <div class="mod-pedal-output"> | ||
| {{#effect.ports.audio.output}} | ||
| <div class="mod-output mod-output-disconnected" title="{{name}}" mod-role="output-audio-port" mod-port-symbol="{{symbol}}"> | ||
| <div class="mod-pedal-output-image"></div> | ||
| </div> | ||
| {{/effect.ports.audio.output}} | ||
| {{#effect.ports.midi.output}} | ||
| <div class="mod-output mod-output-disconnected" title="{{name}}" mod-role="output-midi-port" mod-port-symbol="{{symbol}}"> | ||
| <div class="mod-pedal-output-image"></div> | ||
| </div> | ||
| {{/effect.ports.midi.output}} | ||
| {{#effect.ports.cv.output}} | ||
| <div class="mod-output mod-output-disconnected" title="{{name}}" mod-role="output-cv-port" mod-port-symbol="{{symbol}}"> | ||
| <div class="mod-pedal-output-image"></div> | ||
| </div> | ||
| {{/effect.ports.cv.output}} | ||
| </div> | ||
| </div> |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,26 @@ | ||
| @prefix modgui: <http://moddevices.com/ns/modgui#> . | ||
| @prefix lv2: <http://lv2plug.in/ns/lv2core#> . | ||
|
|
||
| <http://kxstudio.linuxaudio.org/plugins/FluidPlug_FluidPianos> | ||
| modgui:gui [ | ||
| modgui:resourcesDirectory <modgui> ; | ||
| modgui:iconTemplate <modgui/icon-fluid-pianos.html> ; | ||
| modgui:stylesheet <modgui/stylesheet-fluid-pianos.css> ; | ||
| modgui:screenshot <modgui/screenshot-fluid-pianos.png> ; | ||
| modgui:thumbnail <modgui/thumbnail-fluid-pianos.png> ; | ||
| modgui:brand "FluidGM" ; | ||
| modgui:label "Pianos" ; | ||
| modgui:model "boxy" ; | ||
| modgui:panel "1-select-1-knob" ; | ||
| modgui:color "gold" ; | ||
| modgui:knob "steel" ; | ||
| modgui:port [ | ||
| lv2:index 0 ; | ||
| lv2:symbol "program" ; | ||
| lv2:name "Program" ; | ||
| ] , [ | ||
| lv2:index 1 ; | ||
| lv2:symbol "gain" ; | ||
| lv2:name "Gain" ; | ||
| ] ; | ||
| ] . |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,61 @@ | ||
| <div class="mod-pedal mod-pedal-boxy{{{cns}}} mod-one-knob mod-{{color}} {{color}}"> | ||
| <div mod-role="drag-handle" class="mod-drag-handle"></div> | ||
| <div class="mod-plugin-brand"><h1>{{brand}}</h1></div> | ||
| <div class="mod-plugin-name"><h1>{{label}}</h1></div> | ||
| <div class="mod-light on" mod-role="bypass-light"></div> | ||
| <div class="mod-control-group mod-enumerated-group bottom clearfix"> | ||
| {{#controls.0}} | ||
| <div class="mod-enumerated" mod-role="input-control-port" mod-port-symbol="{{symbol}}" mod-widget="custom-select"> | ||
| <div mod-role="input-control-value" mod-port-symbol="{{symbol}}" class="mod-enumerated-selected"></div> | ||
| <div class="mod-enumerated-list"> | ||
| {{#scalePoints}} | ||
| <div mod-role="enumeration-option" mod-port-value="{{value}}">{{label}}</div> | ||
| {{/scalePoints}} | ||
| </div> | ||
| </div> | ||
| {{/controls.0}} | ||
| </div> | ||
| <div class="mod-control-group mod-{{knob}} top clearfix"> | ||
| {{#controls.1}} | ||
| <div class="mod-knob"> | ||
| <div class="mod-knob-image" mod-role="input-control-port" mod-port-symbol="{{symbol}}"></div> | ||
| <span class="mod-knob-title">{{name}}</span> | ||
| </div> | ||
| {{/controls.1}} | ||
| </div> | ||
| <div class="mod-footswitch" mod-role="bypass"></div> | ||
| <div class="mod-pedal-input"> | ||
| {{#effect.ports.audio.input}} | ||
| <div class="mod-input mod-input-disconnected" title="{{name}}" mod-role="input-audio-port" mod-port-symbol="{{symbol}}"> | ||
| <div class="mod-pedal-input-image"></div> | ||
| </div> | ||
| {{/effect.ports.audio.input}} | ||
| {{#effect.ports.midi.input}} | ||
| <div class="mod-input mod-input-disconnected" title="{{name}}" mod-role="input-midi-port" mod-port-symbol="{{symbol}}"> | ||
| <div class="mod-pedal-input-image"></div> | ||
| </div> | ||
| {{/effect.ports.midi.input}} | ||
| {{#effect.ports.cv.input}} | ||
| <div class="mod-input mod-input-disconnected" title="{{name}}" mod-role="input-cv-port" mod-port-symbol="{{symbol}}"> | ||
| <div class="mod-pedal-input-image"></div> | ||
| </div> | ||
| {{/effect.ports.cv.input}} | ||
| </div> | ||
| <div class="mod-pedal-output"> | ||
| {{#effect.ports.audio.output}} | ||
| <div class="mod-output mod-output-disconnected" title="{{name}}" mod-role="output-audio-port" mod-port-symbol="{{symbol}}"> | ||
| <div class="mod-pedal-output-image"></div> | ||
| </div> | ||
| {{/effect.ports.audio.output}} | ||
| {{#effect.ports.midi.output}} | ||
| <div class="mod-output mod-output-disconnected" title="{{name}}" mod-role="output-midi-port" mod-port-symbol="{{symbol}}"> | ||
| <div class="mod-pedal-output-image"></div> | ||
| </div> | ||
| {{/effect.ports.midi.output}} | ||
| {{#effect.ports.cv.output}} | ||
| <div class="mod-output mod-output-disconnected" title="{{name}}" mod-role="output-cv-port" mod-port-symbol="{{symbol}}"> | ||
| <div class="mod-pedal-output-image"></div> | ||
| </div> | ||
| {{/effect.ports.cv.output}} | ||
| </div> | ||
| </div> |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,26 @@ | ||
| @prefix modgui: <http://moddevices.com/ns/modgui#> . | ||
| @prefix lv2: <http://lv2plug.in/ns/lv2core#> . | ||
|
|
||
| <http://kxstudio.linuxaudio.org/plugins/FluidPlug_FluidPipes> | ||
| modgui:gui [ | ||
| modgui:resourcesDirectory <modgui> ; | ||
| modgui:iconTemplate <modgui/icon-fluid-pipes.html> ; | ||
| modgui:stylesheet <modgui/stylesheet-fluid-pipes.css> ; | ||
| modgui:screenshot <modgui/screenshot-fluid-pipes.png> ; | ||
| modgui:thumbnail <modgui/thumbnail-fluid-pipes.png> ; | ||
| modgui:brand "FluidGM" ; | ||
| modgui:label "Pipes" ; | ||
| modgui:model "boxy" ; | ||
| modgui:panel "1-select-1-knob" ; | ||
| modgui:color "red" ; | ||
| modgui:knob "silver" ; | ||
| modgui:port [ | ||
| lv2:index 0 ; | ||
| lv2:symbol "program" ; | ||
| lv2:name "Program" ; | ||
| ] , [ | ||
| lv2:index 1 ; | ||
| lv2:symbol "gain" ; | ||
| lv2:name "Gain" ; | ||
| ] ; | ||
| ] . |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,61 @@ | ||
| <div class="mod-pedal mod-pedal-boxy{{{cns}}} mod-one-knob mod-{{color}} {{color}}"> | ||
| <div mod-role="drag-handle" class="mod-drag-handle"></div> | ||
| <div class="mod-plugin-brand"><h1>{{brand}}</h1></div> | ||
| <div class="mod-plugin-name"><h1>{{label}}</h1></div> | ||
| <div class="mod-light on" mod-role="bypass-light"></div> | ||
| <div class="mod-control-group mod-enumerated-group bottom clearfix"> | ||
| {{#controls.0}} | ||
| <div class="mod-enumerated" mod-role="input-control-port" mod-port-symbol="{{symbol}}" mod-widget="custom-select"> | ||
| <div mod-role="input-control-value" mod-port-symbol="{{symbol}}" class="mod-enumerated-selected"></div> | ||
| <div class="mod-enumerated-list"> | ||
| {{#scalePoints}} | ||
| <div mod-role="enumeration-option" mod-port-value="{{value}}">{{label}}</div> | ||
| {{/scalePoints}} | ||
| </div> | ||
| </div> | ||
| {{/controls.0}} | ||
| </div> | ||
| <div class="mod-control-group mod-{{knob}} top clearfix"> | ||
| {{#controls.1}} | ||
| <div class="mod-knob"> | ||
| <div class="mod-knob-image" mod-role="input-control-port" mod-port-symbol="{{symbol}}"></div> | ||
| <span class="mod-knob-title">{{name}}</span> | ||
| </div> | ||
| {{/controls.1}} | ||
| </div> | ||
| <div class="mod-footswitch" mod-role="bypass"></div> | ||
| <div class="mod-pedal-input"> | ||
| {{#effect.ports.audio.input}} | ||
| <div class="mod-input mod-input-disconnected" title="{{name}}" mod-role="input-audio-port" mod-port-symbol="{{symbol}}"> | ||
| <div class="mod-pedal-input-image"></div> | ||
| </div> | ||
| {{/effect.ports.audio.input}} | ||
| {{#effect.ports.midi.input}} | ||
| <div class="mod-input mod-input-disconnected" title="{{name}}" mod-role="input-midi-port" mod-port-symbol="{{symbol}}"> | ||
| <div class="mod-pedal-input-image"></div> | ||
| </div> | ||
| {{/effect.ports.midi.input}} | ||
| {{#effect.ports.cv.input}} | ||
| <div class="mod-input mod-input-disconnected" title="{{name}}" mod-role="input-cv-port" mod-port-symbol="{{symbol}}"> | ||
| <div class="mod-pedal-input-image"></div> | ||
| </div> | ||
| {{/effect.ports.cv.input}} | ||
| </div> | ||
| <div class="mod-pedal-output"> | ||
| {{#effect.ports.audio.output}} | ||
| <div class="mod-output mod-output-disconnected" title="{{name}}" mod-role="output-audio-port" mod-port-symbol="{{symbol}}"> | ||
| <div class="mod-pedal-output-image"></div> | ||
| </div> | ||
| {{/effect.ports.audio.output}} | ||
| {{#effect.ports.midi.output}} | ||
| <div class="mod-output mod-output-disconnected" title="{{name}}" mod-role="output-midi-port" mod-port-symbol="{{symbol}}"> | ||
| <div class="mod-pedal-output-image"></div> | ||
| </div> | ||
| {{/effect.ports.midi.output}} | ||
| {{#effect.ports.cv.output}} | ||
| <div class="mod-output mod-output-disconnected" title="{{name}}" mod-role="output-cv-port" mod-port-symbol="{{symbol}}"> | ||
| <div class="mod-pedal-output-image"></div> | ||
| </div> | ||
| {{/effect.ports.cv.output}} | ||
| </div> | ||
| </div> |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,26 @@ | ||
| @prefix modgui: <http://moddevices.com/ns/modgui#> . | ||
| @prefix lv2: <http://lv2plug.in/ns/lv2core#> . | ||
|
|
||
| <http://kxstudio.linuxaudio.org/plugins/FluidPlug_FluidReeds> | ||
| modgui:gui [ | ||
| modgui:resourcesDirectory <modgui> ; | ||
| modgui:iconTemplate <modgui/icon-fluid-reeds.html> ; | ||
| modgui:stylesheet <modgui/stylesheet-fluid-reeds.css> ; | ||
| modgui:screenshot <modgui/screenshot-fluid-reeds.png> ; | ||
| modgui:thumbnail <modgui/thumbnail-fluid-reeds.png> ; | ||
| modgui:brand "FluidGM" ; | ||
| modgui:label "Reeds" ; | ||
| modgui:model "boxy" ; | ||
| modgui:panel "1-select-1-knob" ; | ||
| modgui:color "orange" ; | ||
| modgui:knob "silver" ; | ||
| modgui:port [ | ||
| lv2:index 0 ; | ||
| lv2:symbol "program" ; | ||
| lv2:name "Program" ; | ||
| ] , [ | ||
| lv2:index 1 ; | ||
| lv2:symbol "gain" ; | ||
| lv2:name "Gain" ; | ||
| ] ; | ||
| ] . |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,61 @@ | ||
| <div class="mod-pedal mod-pedal-boxy{{{cns}}} mod-one-knob mod-{{color}} {{color}}"> | ||
| <div mod-role="drag-handle" class="mod-drag-handle"></div> | ||
| <div class="mod-plugin-brand"><h1>{{brand}}</h1></div> | ||
| <div class="mod-plugin-name"><h1>{{label}}</h1></div> | ||
| <div class="mod-light on" mod-role="bypass-light"></div> | ||
| <div class="mod-control-group mod-enumerated-group bottom clearfix"> | ||
| {{#controls.0}} | ||
| <div class="mod-enumerated" mod-role="input-control-port" mod-port-symbol="{{symbol}}" mod-widget="custom-select"> | ||
| <div mod-role="input-control-value" mod-port-symbol="{{symbol}}" class="mod-enumerated-selected"></div> | ||
| <div class="mod-enumerated-list"> | ||
| {{#scalePoints}} | ||
| <div mod-role="enumeration-option" mod-port-value="{{value}}">{{label}}</div> | ||
| {{/scalePoints}} | ||
| </div> | ||
| </div> | ||
| {{/controls.0}} | ||
| </div> | ||
| <div class="mod-control-group mod-{{knob}} top clearfix"> | ||
| {{#controls.1}} | ||
| <div class="mod-knob"> | ||
| <div class="mod-knob-image" mod-role="input-control-port" mod-port-symbol="{{symbol}}"></div> | ||
| <span class="mod-knob-title">{{name}}</span> | ||
| </div> | ||
| {{/controls.1}} | ||
| </div> | ||
| <div class="mod-footswitch" mod-role="bypass"></div> | ||
| <div class="mod-pedal-input"> | ||
| {{#effect.ports.audio.input}} | ||
| <div class="mod-input mod-input-disconnected" title="{{name}}" mod-role="input-audio-port" mod-port-symbol="{{symbol}}"> | ||
| <div class="mod-pedal-input-image"></div> | ||
| </div> | ||
| {{/effect.ports.audio.input}} | ||
| {{#effect.ports.midi.input}} | ||
| <div class="mod-input mod-input-disconnected" title="{{name}}" mod-role="input-midi-port" mod-port-symbol="{{symbol}}"> | ||
| <div class="mod-pedal-input-image"></div> | ||
| </div> | ||
| {{/effect.ports.midi.input}} | ||
| {{#effect.ports.cv.input}} | ||
| <div class="mod-input mod-input-disconnected" title="{{name}}" mod-role="input-cv-port" mod-port-symbol="{{symbol}}"> | ||
| <div class="mod-pedal-input-image"></div> | ||
| </div> | ||
| {{/effect.ports.cv.input}} | ||
| </div> | ||
| <div class="mod-pedal-output"> | ||
| {{#effect.ports.audio.output}} | ||
| <div class="mod-output mod-output-disconnected" title="{{name}}" mod-role="output-audio-port" mod-port-symbol="{{symbol}}"> | ||
| <div class="mod-pedal-output-image"></div> | ||
| </div> | ||
| {{/effect.ports.audio.output}} | ||
| {{#effect.ports.midi.output}} | ||
| <div class="mod-output mod-output-disconnected" title="{{name}}" mod-role="output-midi-port" mod-port-symbol="{{symbol}}"> | ||
| <div class="mod-pedal-output-image"></div> | ||
| </div> | ||
| {{/effect.ports.midi.output}} | ||
| {{#effect.ports.cv.output}} | ||
| <div class="mod-output mod-output-disconnected" title="{{name}}" mod-role="output-cv-port" mod-port-symbol="{{symbol}}"> | ||
| <div class="mod-pedal-output-image"></div> | ||
| </div> | ||
| {{/effect.ports.cv.output}} | ||
| </div> | ||
| </div> |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,26 @@ | ||
| @prefix modgui: <http://moddevices.com/ns/modgui#> . | ||
| @prefix lv2: <http://lv2plug.in/ns/lv2core#> . | ||
|
|
||
| <http://kxstudio.linuxaudio.org/plugins/FluidPlug_FluidSoundFX> | ||
| modgui:gui [ | ||
| modgui:resourcesDirectory <modgui> ; | ||
| modgui:iconTemplate <modgui/icon-fluid-soundfx.html> ; | ||
| modgui:stylesheet <modgui/stylesheet-fluid-soundfx.css> ; | ||
| modgui:screenshot <modgui/screenshot-fluid-soundfx.png> ; | ||
| modgui:thumbnail <modgui/thumbnail-fluid-soundfx.png> ; | ||
| modgui:brand "FluidGM" ; | ||
| modgui:label "Sound FX" ; | ||
| modgui:model "boxy" ; | ||
| modgui:panel "1-select-1-knob" ; | ||
| modgui:color "lava" ; | ||
| modgui:knob "silver" ; | ||
| modgui:port [ | ||
| lv2:index 0 ; | ||
| lv2:symbol "program" ; | ||
| lv2:name "Program" ; | ||
| ] , [ | ||
| lv2:index 1 ; | ||
| lv2:symbol "gain" ; | ||
| lv2:name "Gain" ; | ||
| ] ; | ||
| ] . |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,61 @@ | ||
| <div class="mod-pedal mod-pedal-boxy{{{cns}}} mod-one-knob mod-{{color}} {{color}}"> | ||
| <div mod-role="drag-handle" class="mod-drag-handle"></div> | ||
| <div class="mod-plugin-brand"><h1>{{brand}}</h1></div> | ||
| <div class="mod-plugin-name"><h1>{{label}}</h1></div> | ||
| <div class="mod-light on" mod-role="bypass-light"></div> | ||
| <div class="mod-control-group mod-enumerated-group bottom clearfix"> | ||
| {{#controls.0}} | ||
| <div class="mod-enumerated" mod-role="input-control-port" mod-port-symbol="{{symbol}}" mod-widget="custom-select"> | ||
| <div mod-role="input-control-value" mod-port-symbol="{{symbol}}" class="mod-enumerated-selected"></div> | ||
| <div class="mod-enumerated-list"> | ||
| {{#scalePoints}} | ||
| <div mod-role="enumeration-option" mod-port-value="{{value}}">{{label}}</div> | ||
| {{/scalePoints}} | ||
| </div> | ||
| </div> | ||
| {{/controls.0}} | ||
| </div> | ||
| <div class="mod-control-group mod-{{knob}} top clearfix"> | ||
| {{#controls.1}} | ||
| <div class="mod-knob"> | ||
| <div class="mod-knob-image" mod-role="input-control-port" mod-port-symbol="{{symbol}}"></div> | ||
| <span class="mod-knob-title">{{name}}</span> | ||
| </div> | ||
| {{/controls.1}} | ||
| </div> | ||
| <div class="mod-footswitch" mod-role="bypass"></div> | ||
| <div class="mod-pedal-input"> | ||
| {{#effect.ports.audio.input}} | ||
| <div class="mod-input mod-input-disconnected" title="{{name}}" mod-role="input-audio-port" mod-port-symbol="{{symbol}}"> | ||
| <div class="mod-pedal-input-image"></div> | ||
| </div> | ||
| {{/effect.ports.audio.input}} | ||
| {{#effect.ports.midi.input}} | ||
| <div class="mod-input mod-input-disconnected" title="{{name}}" mod-role="input-midi-port" mod-port-symbol="{{symbol}}"> | ||
| <div class="mod-pedal-input-image"></div> | ||
| </div> | ||
| {{/effect.ports.midi.input}} | ||
| {{#effect.ports.cv.input}} | ||
| <div class="mod-input mod-input-disconnected" title="{{name}}" mod-role="input-cv-port" mod-port-symbol="{{symbol}}"> | ||
| <div class="mod-pedal-input-image"></div> | ||
| </div> | ||
| {{/effect.ports.cv.input}} | ||
| </div> | ||
| <div class="mod-pedal-output"> | ||
| {{#effect.ports.audio.output}} | ||
| <div class="mod-output mod-output-disconnected" title="{{name}}" mod-role="output-audio-port" mod-port-symbol="{{symbol}}"> | ||
| <div class="mod-pedal-output-image"></div> | ||
| </div> | ||
| {{/effect.ports.audio.output}} | ||
| {{#effect.ports.midi.output}} | ||
| <div class="mod-output mod-output-disconnected" title="{{name}}" mod-role="output-midi-port" mod-port-symbol="{{symbol}}"> | ||
| <div class="mod-pedal-output-image"></div> | ||
| </div> | ||
| {{/effect.ports.midi.output}} | ||
| {{#effect.ports.cv.output}} | ||
| <div class="mod-output mod-output-disconnected" title="{{name}}" mod-role="output-cv-port" mod-port-symbol="{{symbol}}"> | ||
| <div class="mod-pedal-output-image"></div> | ||
| </div> | ||
| {{/effect.ports.cv.output}} | ||
| </div> | ||
| </div> |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,26 @@ | ||
| @prefix modgui: <http://moddevices.com/ns/modgui#> . | ||
| @prefix lv2: <http://lv2plug.in/ns/lv2core#> . | ||
|
|
||
| <http://kxstudio.linuxaudio.org/plugins/FluidPlug_FluidStrings> | ||
| modgui:gui [ | ||
| modgui:resourcesDirectory <modgui> ; | ||
| modgui:iconTemplate <modgui/icon-fluid-strings.html> ; | ||
| modgui:stylesheet <modgui/stylesheet-fluid-strings.css> ; | ||
| modgui:screenshot <modgui/screenshot-fluid-strings.png> ; | ||
| modgui:thumbnail <modgui/thumbnail-fluid-strings.png> ; | ||
| modgui:brand "FluidGM" ; | ||
| modgui:label "Strings" ; | ||
| modgui:model "boxy" ; | ||
| modgui:panel "1-select-1-knob" ; | ||
| modgui:color "green" ; | ||
| modgui:knob "silver" ; | ||
| modgui:port [ | ||
| lv2:index 0 ; | ||
| lv2:symbol "program" ; | ||
| lv2:name "Program" ; | ||
| ] , [ | ||
| lv2:index 1 ; | ||
| lv2:symbol "gain" ; | ||
| lv2:name "Gain" ; | ||
| ] ; | ||
| ] . |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,61 @@ | ||
| <div class="mod-pedal mod-pedal-boxy{{{cns}}} mod-one-knob mod-{{color}} {{color}}"> | ||
| <div mod-role="drag-handle" class="mod-drag-handle"></div> | ||
| <div class="mod-plugin-brand"><h1>{{brand}}</h1></div> | ||
| <div class="mod-plugin-name"><h1>{{label}}</h1></div> | ||
| <div class="mod-light on" mod-role="bypass-light"></div> | ||
| <div class="mod-control-group mod-enumerated-group bottom clearfix"> | ||
| {{#controls.0}} | ||
| <div class="mod-enumerated" mod-role="input-control-port" mod-port-symbol="{{symbol}}" mod-widget="custom-select"> | ||
| <div mod-role="input-control-value" mod-port-symbol="{{symbol}}" class="mod-enumerated-selected"></div> | ||
| <div class="mod-enumerated-list"> | ||
| {{#scalePoints}} | ||
| <div mod-role="enumeration-option" mod-port-value="{{value}}">{{label}}</div> | ||
| {{/scalePoints}} | ||
| </div> | ||
| </div> | ||
| {{/controls.0}} | ||
| </div> | ||
| <div class="mod-control-group mod-{{knob}} top clearfix"> | ||
| {{#controls.1}} | ||
| <div class="mod-knob"> | ||
| <div class="mod-knob-image" mod-role="input-control-port" mod-port-symbol="{{symbol}}"></div> | ||
| <span class="mod-knob-title">{{name}}</span> | ||
| </div> | ||
| {{/controls.1}} | ||
| </div> | ||
| <div class="mod-footswitch" mod-role="bypass"></div> | ||
| <div class="mod-pedal-input"> | ||
| {{#effect.ports.audio.input}} | ||
| <div class="mod-input mod-input-disconnected" title="{{name}}" mod-role="input-audio-port" mod-port-symbol="{{symbol}}"> | ||
| <div class="mod-pedal-input-image"></div> | ||
| </div> | ||
| {{/effect.ports.audio.input}} | ||
| {{#effect.ports.midi.input}} | ||
| <div class="mod-input mod-input-disconnected" title="{{name}}" mod-role="input-midi-port" mod-port-symbol="{{symbol}}"> | ||
| <div class="mod-pedal-input-image"></div> | ||
| </div> | ||
| {{/effect.ports.midi.input}} | ||
| {{#effect.ports.cv.input}} | ||
| <div class="mod-input mod-input-disconnected" title="{{name}}" mod-role="input-cv-port" mod-port-symbol="{{symbol}}"> | ||
| <div class="mod-pedal-input-image"></div> | ||
| </div> | ||
| {{/effect.ports.cv.input}} | ||
| </div> | ||
| <div class="mod-pedal-output"> | ||
| {{#effect.ports.audio.output}} | ||
| <div class="mod-output mod-output-disconnected" title="{{name}}" mod-role="output-audio-port" mod-port-symbol="{{symbol}}"> | ||
| <div class="mod-pedal-output-image"></div> | ||
| </div> | ||
| {{/effect.ports.audio.output}} | ||
| {{#effect.ports.midi.output}} | ||
| <div class="mod-output mod-output-disconnected" title="{{name}}" mod-role="output-midi-port" mod-port-symbol="{{symbol}}"> | ||
| <div class="mod-pedal-output-image"></div> | ||
| </div> | ||
| {{/effect.ports.midi.output}} | ||
| {{#effect.ports.cv.output}} | ||
| <div class="mod-output mod-output-disconnected" title="{{name}}" mod-role="output-cv-port" mod-port-symbol="{{symbol}}"> | ||
| <div class="mod-pedal-output-image"></div> | ||
| </div> | ||
| {{/effect.ports.cv.output}} | ||
| </div> | ||
| </div> |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,26 @@ | ||
| @prefix modgui: <http://moddevices.com/ns/modgui#> . | ||
| @prefix lv2: <http://lv2plug.in/ns/lv2core#> . | ||
|
|
||
| <http://kxstudio.linuxaudio.org/plugins/FluidPlug_FluidSynthFX> | ||
| modgui:gui [ | ||
| modgui:resourcesDirectory <modgui> ; | ||
| modgui:iconTemplate <modgui/icon-fluid-synthfx.html> ; | ||
| modgui:stylesheet <modgui/stylesheet-fluid-synthfx.css> ; | ||
| modgui:screenshot <modgui/screenshot-fluid-synthfx.png> ; | ||
| modgui:thumbnail <modgui/thumbnail-fluid-synthfx.png> ; | ||
| modgui:brand "FluidGM" ; | ||
| modgui:label "Synth FX" ; | ||
| modgui:model "boxy" ; | ||
| modgui:panel "1-select-1-knob" ; | ||
| modgui:color "slime" ; | ||
| modgui:knob "steel" ; | ||
| modgui:port [ | ||
| lv2:index 0 ; | ||
| lv2:symbol "program" ; | ||
| lv2:name "Program" ; | ||
| ] , [ | ||
| lv2:index 1 ; | ||
| lv2:symbol "gain" ; | ||
| lv2:name "Gain" ; | ||
| ] ; | ||
| ] . |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,61 @@ | ||
| <div class="mod-pedal mod-pedal-boxy{{{cns}}} mod-one-knob mod-{{color}} {{color}}"> | ||
| <div mod-role="drag-handle" class="mod-drag-handle"></div> | ||
| <div class="mod-plugin-brand"><h1>{{brand}}</h1></div> | ||
| <div class="mod-plugin-name"><h1>{{label}}</h1></div> | ||
| <div class="mod-light on" mod-role="bypass-light"></div> | ||
| <div class="mod-control-group mod-enumerated-group bottom clearfix"> | ||
| {{#controls.0}} | ||
| <div class="mod-enumerated" mod-role="input-control-port" mod-port-symbol="{{symbol}}" mod-widget="custom-select"> | ||
| <div mod-role="input-control-value" mod-port-symbol="{{symbol}}" class="mod-enumerated-selected"></div> | ||
| <div class="mod-enumerated-list"> | ||
| {{#scalePoints}} | ||
| <div mod-role="enumeration-option" mod-port-value="{{value}}">{{label}}</div> | ||
| {{/scalePoints}} | ||
| </div> | ||
| </div> | ||
| {{/controls.0}} | ||
| </div> | ||
| <div class="mod-control-group mod-{{knob}} top clearfix"> | ||
| {{#controls.1}} | ||
| <div class="mod-knob"> | ||
| <div class="mod-knob-image" mod-role="input-control-port" mod-port-symbol="{{symbol}}"></div> | ||
| <span class="mod-knob-title">{{name}}</span> | ||
| </div> | ||
| {{/controls.1}} | ||
| </div> | ||
| <div class="mod-footswitch" mod-role="bypass"></div> | ||
| <div class="mod-pedal-input"> | ||
| {{#effect.ports.audio.input}} | ||
| <div class="mod-input mod-input-disconnected" title="{{name}}" mod-role="input-audio-port" mod-port-symbol="{{symbol}}"> | ||
| <div class="mod-pedal-input-image"></div> | ||
| </div> | ||
| {{/effect.ports.audio.input}} | ||
| {{#effect.ports.midi.input}} | ||
| <div class="mod-input mod-input-disconnected" title="{{name}}" mod-role="input-midi-port" mod-port-symbol="{{symbol}}"> | ||
| <div class="mod-pedal-input-image"></div> | ||
| </div> | ||
| {{/effect.ports.midi.input}} | ||
| {{#effect.ports.cv.input}} | ||
| <div class="mod-input mod-input-disconnected" title="{{name}}" mod-role="input-cv-port" mod-port-symbol="{{symbol}}"> | ||
| <div class="mod-pedal-input-image"></div> | ||
| </div> | ||
| {{/effect.ports.cv.input}} | ||
| </div> | ||
| <div class="mod-pedal-output"> | ||
| {{#effect.ports.audio.output}} | ||
| <div class="mod-output mod-output-disconnected" title="{{name}}" mod-role="output-audio-port" mod-port-symbol="{{symbol}}"> | ||
| <div class="mod-pedal-output-image"></div> | ||
| </div> | ||
| {{/effect.ports.audio.output}} | ||
| {{#effect.ports.midi.output}} | ||
| <div class="mod-output mod-output-disconnected" title="{{name}}" mod-role="output-midi-port" mod-port-symbol="{{symbol}}"> | ||
| <div class="mod-pedal-output-image"></div> | ||
| </div> | ||
| {{/effect.ports.midi.output}} | ||
| {{#effect.ports.cv.output}} | ||
| <div class="mod-output mod-output-disconnected" title="{{name}}" mod-role="output-cv-port" mod-port-symbol="{{symbol}}"> | ||
| <div class="mod-pedal-output-image"></div> | ||
| </div> | ||
| {{/effect.ports.cv.output}} | ||
| </div> | ||
| </div> |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,26 @@ | ||
| @prefix modgui: <http://moddevices.com/ns/modgui#> . | ||
| @prefix lv2: <http://lv2plug.in/ns/lv2core#> . | ||
|
|
||
| <http://kxstudio.linuxaudio.org/plugins/FluidPlug_FluidSynthLeads> | ||
| modgui:gui [ | ||
| modgui:resourcesDirectory <modgui> ; | ||
| modgui:iconTemplate <modgui/icon-fluid-synthleads.html> ; | ||
| modgui:stylesheet <modgui/stylesheet-fluid-synthleads.css> ; | ||
| modgui:screenshot <modgui/screenshot-fluid-synthleads.png> ; | ||
| modgui:thumbnail <modgui/thumbnail-fluid-synthleads.png> ; | ||
| modgui:brand "FluidGM" ; | ||
| modgui:label "Synth Leads" ; | ||
| modgui:model "boxy" ; | ||
| modgui:panel "1-select-1-knob" ; | ||
| modgui:color "wood3" ; | ||
| modgui:knob "steel" ; | ||
| modgui:port [ | ||
| lv2:index 0 ; | ||
| lv2:symbol "program" ; | ||
| lv2:name "Program" ; | ||
| ] , [ | ||
| lv2:index 1 ; | ||
| lv2:symbol "gain" ; | ||
| lv2:name "Gain" ; | ||
| ] ; | ||
| ] . |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,61 @@ | ||
| <div class="mod-pedal mod-pedal-boxy{{{cns}}} mod-one-knob mod-{{color}} {{color}}"> | ||
| <div mod-role="drag-handle" class="mod-drag-handle"></div> | ||
| <div class="mod-plugin-brand"><h1>{{brand}}</h1></div> | ||
| <div class="mod-plugin-name"><h1>{{label}}</h1></div> | ||
| <div class="mod-light on" mod-role="bypass-light"></div> | ||
| <div class="mod-control-group mod-enumerated-group bottom clearfix"> | ||
| {{#controls.0}} | ||
| <div class="mod-enumerated" mod-role="input-control-port" mod-port-symbol="{{symbol}}" mod-widget="custom-select"> | ||
| <div mod-role="input-control-value" mod-port-symbol="{{symbol}}" class="mod-enumerated-selected"></div> | ||
| <div class="mod-enumerated-list"> | ||
| {{#scalePoints}} | ||
| <div mod-role="enumeration-option" mod-port-value="{{value}}">{{label}}</div> | ||
| {{/scalePoints}} | ||
| </div> | ||
| </div> | ||
| {{/controls.0}} | ||
| </div> | ||
| <div class="mod-control-group mod-{{knob}} top clearfix"> | ||
| {{#controls.1}} | ||
| <div class="mod-knob"> | ||
| <div class="mod-knob-image" mod-role="input-control-port" mod-port-symbol="{{symbol}}"></div> | ||
| <span class="mod-knob-title">{{name}}</span> | ||
| </div> | ||
| {{/controls.1}} | ||
| </div> | ||
| <div class="mod-footswitch" mod-role="bypass"></div> | ||
| <div class="mod-pedal-input"> | ||
| {{#effect.ports.audio.input}} | ||
| <div class="mod-input mod-input-disconnected" title="{{name}}" mod-role="input-audio-port" mod-port-symbol="{{symbol}}"> | ||
| <div class="mod-pedal-input-image"></div> | ||
| </div> | ||
| {{/effect.ports.audio.input}} | ||
| {{#effect.ports.midi.input}} | ||
| <div class="mod-input mod-input-disconnected" title="{{name}}" mod-role="input-midi-port" mod-port-symbol="{{symbol}}"> | ||
| <div class="mod-pedal-input-image"></div> | ||
| </div> | ||
| {{/effect.ports.midi.input}} | ||
| {{#effect.ports.cv.input}} | ||
| <div class="mod-input mod-input-disconnected" title="{{name}}" mod-role="input-cv-port" mod-port-symbol="{{symbol}}"> | ||
| <div class="mod-pedal-input-image"></div> | ||
| </div> | ||
| {{/effect.ports.cv.input}} | ||
| </div> | ||
| <div class="mod-pedal-output"> | ||
| {{#effect.ports.audio.output}} | ||
| <div class="mod-output mod-output-disconnected" title="{{name}}" mod-role="output-audio-port" mod-port-symbol="{{symbol}}"> | ||
| <div class="mod-pedal-output-image"></div> | ||
| </div> | ||
| {{/effect.ports.audio.output}} | ||
| {{#effect.ports.midi.output}} | ||
| <div class="mod-output mod-output-disconnected" title="{{name}}" mod-role="output-midi-port" mod-port-symbol="{{symbol}}"> | ||
| <div class="mod-pedal-output-image"></div> | ||
| </div> | ||
| {{/effect.ports.midi.output}} | ||
| {{#effect.ports.cv.output}} | ||
| <div class="mod-output mod-output-disconnected" title="{{name}}" mod-role="output-cv-port" mod-port-symbol="{{symbol}}"> | ||
| <div class="mod-pedal-output-image"></div> | ||
| </div> | ||
| {{/effect.ports.cv.output}} | ||
| </div> | ||
| </div> |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,26 @@ | ||
| @prefix modgui: <http://moddevices.com/ns/modgui#> . | ||
| @prefix lv2: <http://lv2plug.in/ns/lv2core#> . | ||
|
|
||
| <http://kxstudio.linuxaudio.org/plugins/FluidPlug_FluidSynthPads> | ||
| modgui:gui [ | ||
| modgui:resourcesDirectory <modgui> ; | ||
| modgui:iconTemplate <modgui/icon-fluid-synthpads.html> ; | ||
| modgui:stylesheet <modgui/stylesheet-fluid-synthpads.css> ; | ||
| modgui:screenshot <modgui/screenshot-fluid-synthpads.png> ; | ||
| modgui:thumbnail <modgui/thumbnail-fluid-synthpads.png> ; | ||
| modgui:brand "FluidGM" ; | ||
| modgui:label "Synth Pads" ; | ||
| modgui:model "boxy" ; | ||
| modgui:panel "1-select-1-knob" ; | ||
| modgui:color "brown" ; | ||
| modgui:knob "aluminium" ; | ||
| modgui:port [ | ||
| lv2:index 0 ; | ||
| lv2:symbol "program" ; | ||
| lv2:name "Program" ; | ||
| ] , [ | ||
| lv2:index 1 ; | ||
| lv2:symbol "gain" ; | ||
| lv2:name "Gain" ; | ||
| ] ; | ||
| ] . |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,61 @@ | ||
| <div class="mod-pedal mod-pedal-boxy{{{cns}}} mod-one-knob mod-{{color}} {{color}}"> | ||
| <div mod-role="drag-handle" class="mod-drag-handle"></div> | ||
| <div class="mod-plugin-brand"><h1>{{brand}}</h1></div> | ||
| <div class="mod-plugin-name"><h1>{{label}}</h1></div> | ||
| <div class="mod-light on" mod-role="bypass-light"></div> | ||
| <div class="mod-control-group mod-enumerated-group bottom clearfix"> | ||
| {{#controls.0}} | ||
| <div class="mod-enumerated" mod-role="input-control-port" mod-port-symbol="{{symbol}}" mod-widget="custom-select"> | ||
| <div mod-role="input-control-value" mod-port-symbol="{{symbol}}" class="mod-enumerated-selected"></div> | ||
| <div class="mod-enumerated-list"> | ||
| {{#scalePoints}} | ||
| <div mod-role="enumeration-option" mod-port-value="{{value}}">{{label}}</div> | ||
| {{/scalePoints}} | ||
| </div> | ||
| </div> | ||
| {{/controls.0}} | ||
| </div> | ||
| <div class="mod-control-group mod-{{knob}} top clearfix"> | ||
| {{#controls.1}} | ||
| <div class="mod-knob"> | ||
| <div class="mod-knob-image" mod-role="input-control-port" mod-port-symbol="{{symbol}}"></div> | ||
| <span class="mod-knob-title">{{name}}</span> | ||
| </div> | ||
| {{/controls.1}} | ||
| </div> | ||
| <div class="mod-footswitch" mod-role="bypass"></div> | ||
| <div class="mod-pedal-input"> | ||
| {{#effect.ports.audio.input}} | ||
| <div class="mod-input mod-input-disconnected" title="{{name}}" mod-role="input-audio-port" mod-port-symbol="{{symbol}}"> | ||
| <div class="mod-pedal-input-image"></div> | ||
| </div> | ||
| {{/effect.ports.audio.input}} | ||
| {{#effect.ports.midi.input}} | ||
| <div class="mod-input mod-input-disconnected" title="{{name}}" mod-role="input-midi-port" mod-port-symbol="{{symbol}}"> | ||
| <div class="mod-pedal-input-image"></div> | ||
| </div> | ||
| {{/effect.ports.midi.input}} | ||
| {{#effect.ports.cv.input}} | ||
| <div class="mod-input mod-input-disconnected" title="{{name}}" mod-role="input-cv-port" mod-port-symbol="{{symbol}}"> | ||
| <div class="mod-pedal-input-image"></div> | ||
| </div> | ||
| {{/effect.ports.cv.input}} | ||
| </div> | ||
| <div class="mod-pedal-output"> | ||
| {{#effect.ports.audio.output}} | ||
| <div class="mod-output mod-output-disconnected" title="{{name}}" mod-role="output-audio-port" mod-port-symbol="{{symbol}}"> | ||
| <div class="mod-pedal-output-image"></div> | ||
| </div> | ||
| {{/effect.ports.audio.output}} | ||
| {{#effect.ports.midi.output}} | ||
| <div class="mod-output mod-output-disconnected" title="{{name}}" mod-role="output-midi-port" mod-port-symbol="{{symbol}}"> | ||
| <div class="mod-pedal-output-image"></div> | ||
| </div> | ||
| {{/effect.ports.midi.output}} | ||
| {{#effect.ports.cv.output}} | ||
| <div class="mod-output mod-output-disconnected" title="{{name}}" mod-role="output-cv-port" mod-port-symbol="{{symbol}}"> | ||
| <div class="mod-pedal-output-image"></div> | ||
| </div> | ||
| {{/effect.ports.cv.output}} | ||
| </div> | ||
| </div> |