TdefAllGui see all Tdefs and their state.


TdefAllGui uses TdefEditor views to display all Tdefs, or a selection.

See also PdefAllGui.



(

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_annerl);

Tdef(\a_bebe);


// 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);