linux: shared memory interface - link with librt
[supercollider.git] / HelpSource / Classes / PdefAllGui.schelp
blob4404cd34c9590eb4b1bbac3c03831fdd4f551121
1 class:: PdefAllGui
2 summary:: see all Pdefs and their state
3 categories:: Libraries>JITLib>GUI
4 related:: Classes/TdefAllGui, Classes/PdefGui
6 description::
8 PdefAllGui uses link::Classes/PdefGui:: views to display all Pdefs, or a selection. Overview: link::Overviews/JITLib::
10 ClassMethods::
12 subsection::Creation
14 method::new
16 argument::numItems
17 the maximum number of Pdefs that can be shown.
19 argument::parent
20 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.
22 argument::bounds
23 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.
25 argument::makeSkip
26 ///// Not Done Yet, but on the list
28 A flag whether to make a skipjack.
30 argument::options
31 ///// Not Done Yet, but on the list
33 the only option for PdefAllGui will be [\makeEdit]. adding a "front" PdefGui that also shows the front Pdef's envir.
35 Examples::
37 code::
39 Pdef(\a, { |e| 100.do { |i| i.postln; 0.5.wait } });
40 Pdef(\b, { |e| 100.do { |i| Pdef(\a).set(\otto, 8.rand); exprand(0.1, 3.0).wait } });
41 t = PdefAllGui(8);
44         // if you have too many Pdefs, an ezscroller lets you select
45 "abcdefghijk".do { |ch| Pdef(ch.asSymbol) };
47         // you can also filter which ones you see:
48 Pdef(\a_otti);
49 Pdef(\a_annerl);
50 Pdef(\a_bebe);
52         // or better from gui
53 t.prefix_("a_");
54 t.filtering_(true);
56         // if prefix is "", it will filter anything with "_" in it.
57 t.prefix_("");
58 t.filtering_(false);