rsc3/doc-schelp/HelpSource/Classes/TdefAllGui.scrbl

79 lines
1.9 KiB
Racket

#lang scribble/manual
@(require (for-label racket))
@title{TdefAllGui}
see all Tdefs and their state@section{categories}
Libraries>JITLib>GUI, Live Coding
@section{related}
Classes/TdefGui, Classes/PdefGui, Classes/PdefAllGui
@section{description}
TdefAllGui uses link::Classes/TdefGui:: views to display all Tdefs, or a selection.
Overview: link::Overviews/JITLib::
@section{ClassMethods}
@section{subsection}
Creation
@section{method}
new
@section{argument}
numItems
the maximum number of Pdefs that can be shown.
@section{argument}
parent
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.
@section{argument}
bounds
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.
@section{argument}
makeSkip
///// Not Done Yet, but on the list
A flag whether to make a skipjack.
@section{argument}
options
///// Not Done Yet, but on the list
the only option for PdefAllGui will be [\makeEdit]. adding a "front" PdefGui that also shows the front Pdef's envir.
@section{Examples}
@racketblock[
(
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);
::
]