TdefAllGui see all Tdefs and their state.
Inherits from: Object : TaskProxyAllGui
TdefAllGui uses TdefEditor views to display all Tdefs, or a selection.
See also PdefAllGui, Tdef.
Overview: JITLib
Creation / Class Methods
*new(size, w)
Return a new instance with a given number of slots.
If a view or window is given (w), the vie is embedded in it.
Examples
(
Tdef(\a, { |e| 100.do { |i| i.postln; 0.5.wait } });
Tdef(\b, { |e| 100.do { |i| Tdef(\a).set(\otto, 8.rand); exprand(0.1, 3.0).wait } });
t = TdefAllGui(8);
)
// if you have too many Tdefs, an ezscroller lets you select
"abcdefghijk".do { |ch| Tdef(ch.asSymbol) };
// you can also filter which ones you see:
Tdef(\a_otti);
Tdef(\a_hannerl);
Tdef(\a_dede);
// or better from gui
t.filtering_(true);
t.prefix_("a_");
// if prefix is "", it will filter anything with "_" in it.
t.prefix_("");
t.filtering_(false);