PdefAllGui see all Pdefs and their state.


PdefAllGui uses PdefEditor views to display all Pdefs, or a selection.

See also TdefAllGui.



(

Pdef(\a, { |e| 100.do { |i| i.postln; 0.5.wait } });

Pdef(\b,  { |e| 100.do { |i| Pdef(\a).set(\otto, 8.rand); exprand(0.1, 3.0).wait } });

t = PdefAllGui(8);

)


// if you have too many Pdefs, an ezscroller lets you select

"abcdefghijk".do { |ch| Pdef(ch.asSymbol) };


// you can also filter which ones you see:

Pdef(\a_otti);

Pdef(\a_annerl);

Pdef(\a_bebe);


// or better from gui

t.prefix_("a_");

t.filtering_(true);


// if prefix is "", it will filter anything with "_" in it.

t.prefix_("");

t.filtering_(false);