lang-slide/main.rkt
Robby Findler eb63b4f9ca adjust inset so that it matches bounding box for the current
version of the file tree, and then adjust main so that it
uses a narrower font for the language names
2012-05-26 16:44:35 -05:00

36 lines
1.3 KiB
Racket

#lang racket/base
(require "lang-slide.rkt"
slideshow
slideshow/code
unstable/gui/slideshow)
(provide langs hudak-quote perlis-quote)
(define hudak-quote
(vr-append 10 (vl-append (t "“A domain specific language is the ultimate abstraction.” "))
(t " — Paul Hudak")))
(define perlis-quote (vr-append 10 (vr-append (t "“There will always be things we wish to say in our programs")
(t "that in all known languages can only be said poorly.”"))
(t " — Alan Perlis")))
(define p2 (vl-append (t "Racket ships more than") (t "40 documented languages")))
(define p1 (lt-superimpose (ghost p2) (vl-append (t "In 6000+ files of") (t "Racket source code ..."))))
(define (langs)
(define p1+p2 (vl-append 10 p1 p2))
(parameterize ([current-code-font 'default])
(slide/staged [#;hudak one two]
;#:title "Files in Racket"
;#:layout 'tall
(cond
[(eq? stage-name 'hudak)
(mini-slide (vr-append 60 hudak-quote perlis-quote))]
[(eq? stage-name 'one)
(langs-pict #f #:picts (list (lt-superimpose p1 (ghost p1+p2))))]
[else
(langs-pict p1+p2)]))))
(langs)