HelpBrowser: path box becomes a more conventional search box
[supercollider.git] / SCClassLibrary / JITLib / GUI / extJITgui.sc
blob2bf2cc0940e4bb15c86f792952fba9cdfa8ec20d
1 + NodeProxy {
2         gui { | numItems, bounds, preset|
3                 // which options to support?
4                 ^NdefGui(this, numItems, nil, bounds, options: preset);
5         }
8 + ProxySpace {
9         gui { | numItems, bounds, preset|
10                 ^ProxyMixer(this, numItems, nil, bounds, options: preset);
11         }
14 + Ndef {
15         *gui { |numItems, bounds, preset|
16                 ^NdefMixer(numItems, nil, bounds, options: preset);
17         }
20 + Tdef {
21         *gui { | numItems, bounds, preset|
22                 ^TdefAllGui(numItems, nil, bounds, options: preset);
23         }
24         gui { | numItems, bounds, preset|
25                 ^TdefGui(this, numItems, nil, bounds, options: preset);
26         }
28 + Pdef {
29         *gui { | numItems, bounds, preset|
30                 ^PdefAllGui(numItems, nil, bounds, options: preset);
31         }
32         gui { | numItems, bounds, preset|
33                 ^PdefGui(this, numItems, nil, bounds, options: preset);
34         }
37 + Dictionary {
38         gui { | numItems, bounds, preset|
39                 ^EnvirGui(this, numItems, nil, bounds, options: preset);
40         }