1 Examples Using the GUI Toolbox
(require scriblib/gui-eval) | package: scribble-lib |
The trick is that racket/gui is not generally available when rendering documentation, because it requires a GUI context. Text and image output is rendered to an image file when the MREVAL environment variable is set, so run the enclosing document once with the environment varibale to generate the images. Future runs (with the environment variable unset) use the generated image.
syntax
(gui-interaction datum ...)
(gui-interaction #:eval+opts the-eval get-predicate? get-render get-get-width get-get-height datum ...)
syntax
(gui-interaction-eval datum ...)
(gui-interaction-eval #:eval+opts the-eval get-predicate? get-render get-get-width get-get-height datum ...)
syntax
(gui-interaction-eval-show datum ...)
(gui-interaction-eval-show #:eval+opts the-eval get-predicate? get-render get-get-width get-get-height datum ...)
syntax
(gui-racketblock+eval datum ...)
(gui-racketblock+eval #:eval+opts the-eval get-predicate? get-render get-get-width get-get-height datum ...)
syntax
(gui-racketmod+eval datum ...)
(gui-racketmod+eval #:eval+opts the-eval get-predicate? get-render get-get-width get-get-height datum ...)
syntax
(gui-def+int datum ...)
(gui-def+int #:eval+opts the-eval get-predicate? get-render get-get-width get-get-height datum ...)
syntax
(gui-defs+int datum ...)
(gui-defs+int #:eval+opts the-eval get-predicate? get-render get-get-width get-get-height datum ...)
get-predicate? : (-> (-> any/c boolean?)) Determines if a value is a graphical object (and thus handled by the other operations)
get-render : (-> (-> any/c (is-a?/c dc<%>) number? number? void?)) Draws a graphical object (only called if the predicate returned #t; the first argument will be the value for which the predicate holds).
get-get-width : (-> (-> any/c number?)) Gets the width of a graphical object (only called if the predicate returned #t; the first argument will be the value for which the predicate holds).
get-get-height : (-> (-> any/c number?)) Gets the height of a graphical object (only called if the predicate returned #t; the first argument will be the value for which the predicate holds).