File tree Expand file tree Collapse file tree 4 files changed +17
-2
lines changed Expand file tree Collapse file tree 4 files changed +17
-2
lines changed Original file line number Diff line number Diff line change @@ -27,14 +27,16 @@ function plugin_header()
27
27
echo "<h1> " . htmlspecialchars ($ plugin ['description ' ]) . "</h1> \n" ;
28
28
29
29
$ fmt = array ();
30
+ if (isset ($ plugin ['clap ' ]) && ($ plugin ['clap ' ]))
31
+ array_push ($ fmt , 'CLAP ' );
32
+ if (isset ($ plugin ['jack ' ]) && ($ plugin ['jack ' ]))
33
+ array_push ($ fmt , 'JACK ' );
30
34
if (isset ($ plugin ['ladspa_label ' ]) && (strlen ($ plugin ['ladspa_label ' ]) > 0 ))
31
35
array_push ($ fmt , 'LADSPA ' );
32
36
if ((isset ($ plugin ['lv2_uri ' ])) && (strlen ($ plugin ['lv2_uri ' ]) > 0 ))
33
37
array_push ($ fmt , 'LV2 ' );
34
38
if ((isset ($ plugin ['vst2_uid ' ])) && (strlen ($ plugin ['vst2_uid ' ]) > 0 ))
35
39
array_push ($ fmt , 'VST2 ' );
36
- if (isset ($ plugin ['jack ' ]) && ($ plugin ['jack ' ]))
37
- array_push ($ fmt , 'JACK ' );
38
40
39
41
$ full_name = htmlspecialchars ("{$ PACKAGE ['short ' ]} {$ plugin ['description ' ]} ( {$ plugin ['acronym ' ]}) " );
40
42
$ author = htmlspecialchars ($ plugin ['author ' ]);
Original file line number Diff line number Diff line change 29
29
<li><b>Parameter</b> – the value of controllable parameter.</li>
30
30
<li><b>Progress Bar</b> – progress control.</li>
31
31
<li><b>Sample Editor</b> – sample editor.</li>
32
+ <li><b>Tab Control</b> – tab control.</li>
32
33
</ul>
33
34
</div>
34
35
</div>
474
475
<div class="images">
475
476
<img class="border" src="<?= $ CTL ?> sample_editor.png">
476
477
</div>
478
+
479
+ <h2>Tab Control</h2>
480
+
481
+ <p>Tab control allows to group multiple elements into tabs. When a specific tab is active, the only set of
482
+ controls that belong to the tab becomes visible.</p>
483
+
484
+ <p>Example of the tab control:</p>
485
+ <div class="images">
486
+ <img class="border" src="<?= $ CTL ?> tab_control.png">
487
+ </div>
488
+
Original file line number Diff line number Diff line change 1
1
<p><img src="<?= $ DOCROOT ?> img/box.png" class="bundle-box" ></p>
2
2
<p><b>LSP (Linux Studio Plugins)</b> is a collection of open-source plugins compatible with following formats:</p>
3
3
<ul>
4
+ <li><b>CLAP</b> - set of plugins for <a href="https://github.com/free-audio/clap">Clever Audio Plugins API</a></li>
4
5
<li><b>LADSPA</b> - set of plugins for <a href="https://en.wikipedia.org/wiki/LADSPA">Linux Audio Developer's Simple Plugin API</a></li>
5
6
<li><b>LV2</b> - set of plugins and UIs for <a href="https://lv2plug.in/">Linux Audio Developer's Simple Plugin API (LADSPA) version 2</a></li>
6
7
<li><b>LinuxVST</b> - set of plugins and UIs for <a href="https://www.steinberg.net/">Steinberg's VST 2.4</a> format ported on GNU/Linux Platform</li>
You can’t perform that action at this time.
0 commit comments