class library: SynthDef - lazy implementation of removeUGen
[supercollider.git] / HelpSource / Classes / TdefAllGui.schelp
blobb45b5ec7946ef434e540bc2f21741af5df83a752
1 class:: TdefAllGui
2 summary:: see all Tdefs and their state
3 categories:: Libraries>JITLib>GUI
4 related:: Classes/TdefGui, Classes/PdefGui, Classes/PdefAllGui
6 description::
8 TdefAllGui uses link::Classes/TdefGui:: views to display all Tdefs, or a selection.
10 Overview: link::Overviews/JITLib::
12 ClassMethods::
14 subsection::Creation
16 method::new
18 argument::numItems
19 the maximum number of Pdefs that can be shown.
21 argument::parent
22 a parent view on which to display. If nil, a new window is created; strong::parent:: can also be an existing window or a composite view.
24 argument::bounds
25 a desired size and position where to display a JITGui. can be nil, a link::Classes/Point::, or a link::Classes/Rect::. JITGuis know their minimum size ( strong::minSize:: ), and if bounds is nil, minSize is used. if bounds is a point or rect, it will be set to at least minSize. With a rect one can also supply a position where to display. If a point,shown size is the maximum of bounds and minSize.
27 argument::makeSkip
28 ///// Not Done Yet, but on the list
30 A flag whether to make a skipjack.
32 argument::options
33 ///// Not Done Yet, but on the list
35 the only option for PdefAllGui will be [\makeEdit]. adding a "front" PdefGui that also shows the front Pdef's envir.
37 Examples::
39 code::
41 Tdef(\a, { |e| 100.do { |i| i.postln; 0.5.wait } });
42 Tdef(\b, { |e| 100.do { |i| Tdef(\a).set(\otto, 8.rand); exprand(0.1, 3.0).wait } });
43 t = TdefAllGui(8);
46         // if you have too many Tdefs, an ezscroller lets you select
47 "abcdefghijk".do { |ch| Tdef(ch.asSymbol) };
49         // you can also filter which ones you see:
50 Tdef(\a_otti);
51 Tdef(\a_hannerl);
52 Tdef(\a_dede);
54         // or better from gui
55 t.filtering_(true);
56 t.prefix_("a_");
58         // if prefix is "", it will filter anything with "_" in it.
59 t.prefix_("");
60 t.filtering_(false);