racket/collects/scribblings/draw/record-dc-class.scrbl
Matthew Flatt 00ef7da640 racket/draw: background and text colors in `record-dc%'
Also, improve docs to clarify how the recorded settings interact with
the target DC's settings.
2012-05-27 06:38:30 -06:00

50 lines
2.0 KiB
Racket

#lang scribble/doc
@(require "common.rkt")
@defclass/title[record-dc% object% (dc<%>)]{
A @racket[record-dc%] object records drawing actions for replay into
another drawing context. The recorded drawing operations can be
extracted as a procedure via @method[record-dc%
get-recorded-procedure], or the actions can be extracted as a datum
(that can be printed with @racket[write] and recreated with
@racket[read]) via @method[record-dc% get-recorded-datum].
When drawing recorded actions, the target drawing context's pen,
brush, font, text, background, text background, and text foreground do
not affect the recorded actions. The target drawing context's
transformation, alpha, and clipping region compose with settings in
the recorded actions (so that, for example, a recorded action to set
the clipping region actually intersects the region with the drawing
context's clipping region at the time that the recorded commands are
replayed). After recoded commands are replayed, all settings in the
target drawing context, such as its clipping region or current font,
are as before the replay.
@defconstructor[([width (>=/c 0) 640]
[height (>=/c 0) 480])]{
Creates a new recording DC. The optional @racket[width] and
@racket[height] arguments determine the result of @method[dc<%>
get-size] on the recording DC; the @racket[width] and
@racket[height] arguments do not clip drawing.}
@defmethod[(get-recorded-datum) any/c]{
Extracts a recorded drawing to a value that can be printed with
@racket[write] and re-read with @racket[read]. Use
@racket[recorded-datum->procedure] to convert the datum to a drawing
procedure.}
@defmethod[(get-recorded-procedure) ((is-a?/c dc<%>) . -> . void?)]{
Extracts a recorded drawing to a procedure that can be applied to
another DC to replay the drawing commands to the given DC.
The @method[record-dc% get-recorded-procedure] method can be more
efficient than composing @method[record-dc% get-recorded-datum] and
@racket[recorded-datum->procedure].}}