PdefAllGui see all Pdefs and their state.


Inherits from: Object : TaskProxyAllGui


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

See also TdefAllGui, Pdef.

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.

(

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