diff --git a/image/private/js-impl.js b/image/private/js-impl.js index a714a88..ff82e9a 100644 --- a/image/private/js-impl.js +++ b/image/private/js-impl.js @@ -79,6 +79,12 @@ var checkReal = plt.baselib.check.checkReal; var checkBoolean = plt.baselib.check.checkBoolean; var checkNatural = plt.baselib.check.checkNatural; + +var checkPositiveInteger = plt.baselib.check.makeCheckArgumentType( + function(x) { return plt.baselib.numbers.isInteger(x) && + plt.baselib.numbers.greaterThan(x, 0);}, + "positive integer"); + var checkNonNegativeReal = plt.baselib.check.checkNonNegativeReal; @@ -236,7 +242,8 @@ EXPORTS['text'] = 3, function(MACHINE) { var aString = checkString(MACHINE,'text', 0); - var aSize = checkByte(MACHINE, 'text', 1); + // Unlike 2htdp, we'll allow this to be a positive integer + var aSize = checkPositiveInteger(MACHINE, 'text', 1); var aColor = checkColor(MACHINE, 'text', 2); return makeTextImage(aString.toString(), jsnums.toFixnum(aSize), diff --git a/racketcon/plt-logo.png b/racketcon/plt-logo.png new file mode 100644 index 0000000..4e53f00 Binary files /dev/null and b/racketcon/plt-logo.png differ diff --git a/racketcon/talk.rkt b/racketcon/talk.rkt index 25ffe11..f951194 100644 --- a/racketcon/talk.rkt +++ b/racketcon/talk.rkt @@ -5,9 +5,17 @@ ;; A slide is either a simple string or an image. +(define font-size 50) + + +(define-struct label (id slide)) (define slides - (list "Whalesong: a Racket to JavaScript Compiler" + (list + (above + (text "Whalesong:" 100 "black") + (text "a Racket to JavaScript Compiler" 80 "black") + (image-url "file:///home/dyoo/work/whalesong/racketcon/plt-logo.png")) "Why Whalesong?" "World programs on the web" "Reusing Racket..." @@ -33,7 +41,7 @@ [(key=? a-key "left") (my-max (sub1 w) 0)] [(key=? a-key "right") - (my-min (sub1 w) (length slides))] + (my-min (add1 w) (sub1 (length slides)))] [else w])) @@ -42,7 +50,7 @@ [bg (BACKGROUND)]) (cond [(string? a-slide) - (place-image (text a-slide 300 "black") + (place-image (text a-slide font-size "black") (quotient (image-width bg) 2) (quotient (image-height bg) 2) bg)]