2.5 Configuration
parameter
(current-font-size n) → void? n : exact-nonnegative-integer?
parameter
(current-main-font style) → void? style : text-style/c
parameter
(current-line-sep n) → void? n : exact-nonnegative-integer?
parameter
(current-para-width n) → void? n : exact-nonnegative-integer?
procedure
(get-current-para-width [#:aspect aspect])
→ (parameter/c exact-nonnegative-integer?) aspect : aspect? = #f
Changed in version 1.5 of package slideshow-lib: Added get-current-para-width.
parameter
(current-title-color) → (or/c string? (is-a?/c color%))
(current-title-color color) → void? color : (or/c string? (is-a?/c color%))
parameter
(current-slide-assembler) →
((or/c string? #f) exact-nonnegative-integer? pict? . -> . pict?) (current-slide-assembler proc) → void?
proc :
((or/c string? #f) exact-nonnegative-integer? pict? . -> . pict?)
The default assembler uses titlet to turn a title string (if any) to a pict and uses the vertical space to put the title pict above the slide content. See also current-titlet and set-title-h!.
The result of the assembler is ct-superimposed with the client area, but the resulting pict might draw outside the client region to paint the screen margins, too.
The slide assembler is not responsible for adding page numbers to the slide; that job belongs to the viewer. See also current-page-number-font, current-page-number-color, and set-page-numbers-visible!.
parameter
(current-titlet) → (string? . -> . pict?)
(current-titlet proc) → void? proc : (string? . -> . pict?)
(lambda (s) (colorize (text s (current-main-font) 40) (current-title-color)))
If this parameter is changed such that the result is a different height, then set-title-h! should be called to update the value produced by title-h, titleless-page, etc.
procedure
(set-margin! amt) → void?
amt : real?
procedure
(set-title-h! amt) → void?
amt : real?
procedure
(make-slide-inset left-inset top-inset right-inset bottom-inset) → slide-inset? left-inset : exact-nonnegative-integer? top-inset : exact-nonnegative-integer? right-inset : exact-nonnegative-integer? bottom-inset : exact-nonnegative-integer?
procedure
(slide-inset? v) → boolean?
v : any/c
parameter
(commentary-on-slide-font-size size) → void? size : exact-positive-integer?
--commentary-on-slide |