
1 CAPI Reference Entries
collector-pane is aneditor-pane which displays the output sent to a particular type of character stream called an editor stream, the contents of which are stored in an editor buffer.
editor-pane
buffer-name
stream
collector-pane-stream
collector-pane can be created to view an existing editor stream by passing the stream itself or by passing the buffer name of that stream.
buffer-name of a non-existent stream or specify nothing, in which case the CAPI will create a unique buffer name for you. To then get hold of that stream, use the readercollector-pane-stream on thecollector-pane.
Background Output" is a buffer onto the output stream*standard-output*.
(setq collector (capi:contain
(make-instance 'capi:collector-pane)))
(setq *test-stream*
(capi:collector-pane-stream collector))
(capi:contain
(make-instance 'capi:collector-pane
:stream *test-stream*))
(format *test-stream* "Hello World~%")
Background Output" stream.
(capi:contain (make-instance 'capi:collector-pane
:buffer-name "Background Output"))
with-random-typeoutmap-typeoutunmap-typeout

Generated with Harlequin WebMaker