1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373
|
#|
todo:
pict snip :
- snipclass for running snips outside of drscheme
- need to toggle the picts back to scheme code when
important things happen (save, execute, etc).
- should save the true pict size when it gets recorded.
- show the true size in the GUI
- when a snip is deleted from inside the pasteboard, remove it from the caches
- check that when a snip is inserted, things revert (?).
maybe something better should happen?
- test up-to-date? flag
|#
(module tool racket/base
(require drscheme/tool
mred
mzlib/class
mzlib/unit
string-constants
framework
texpict/mrpict
texpict/pict-value-snip
mzlib/list
slideshow/private/pict-box-lib
slideshow/private/image-snipr)
(provide tool@
get-snp/poss
build-lib-pict-stx)
(define orig-inspector (variable-reference->module-declaration-inspector
(#%variable-reference)))
(define orig-lcp (current-library-collection-paths))
(define tool@
(unit
(import drscheme:tool^)
(export drscheme:tool-exports^)
(define original-output-port (current-output-port))
(define (oprintf . args) (apply fprintf original-output-port args))
(define sc-hide-picts (string-constant slideshow-hide-picts))
(define sc-show-picts (string-constant slideshow-show-picts))
(define sc-cannot-show-picts (string-constant slideshow-cannot-show-picts))
(define sc-insert-pict-box (string-constant slideshow-insert-pict-box))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;
;; pict box
;;
(define pict-pasteboard%
(class pasteboard%
(inherit get-admin)
(define/augment (after-insert snip before x y)
(let ([admin (get-admin)])
(when (is-a? admin editor-snip-editor-admin<%>)
(send (send admin get-snip) inserted-snip)))
(inner (void) after-insert snip before x y))
(super-new)))
(define pict-snip%
(class* decorated-editor-snip% (readable-snip<%>)
(inherit get-editor)
(define show-picts? #f)
;; only for use in the copy method and the read snipclass method
(define/public (set-show-picts b) (set! show-picts? b))
;; bitmap-table : hash[snip -o> bitmap]
;; maps from the true (Scheme) snip to its current bitmap
(define bitmap-table (make-hasheq))
;; only for use in the copy method and the read snipclass method
(define/public (set-bitmap-table bt) (set! bitmap-table bt))
(define/override (make-editor) (make-object pict-pasteboard%))
(define/override (get-corner-bitmap) slideshow-bm)
(define/override (copy)
(let* ([cp (make-object pict-snip%)]
[ed (send cp get-editor)])
(send (get-editor) copy-self-to ed)
(send cp set-show-picts show-picts?)
;; initially, share the bitmap table:
(send cp set-bitmap-table bitmap-table)
cp))
(define/override (get-menu)
(let ([menu (instantiate popup-menu% () (title #f))])
(cond
[show-picts?
(make-object checkable-menu-item%
sc-hide-picts
menu
(lambda (x y)
(hide-picts)))]
[(and bitmap-table
(positive? (hash-count bitmap-table)))
(make-object checkable-menu-item%
sc-show-picts
menu
(lambda (x y)
(show-picts)))]
[else
(let ([m (make-object menu-item%
sc-cannot-show-picts
menu
(lambda (x y) void))])
(send m enable #f))])
menu))
(define/public (update-bitmap-table sub-snips sub-bitmaps)
(let ([hidden-table (make-hasheq)]
[position-table (make-hasheq)])
(let loop ([snip (send (get-editor) find-first-snip)] [pos 0])
(cond
[snip
(hash-set! position-table snip pos)
(when (is-a? snip image-snip/r%)
(hash-set! hidden-table (send snip get-orig-snip) snip))
(loop (send snip next) (add1 pos))]
[else (void)]))
(for-each (lambda (snip bitmap)
(hash-set! bitmap-table (hash-ref position-table snip #f) bitmap)
(let ([showing (hash-ref hidden-table snip (lambda () #f))])
(when showing
(send showing set-bitmap bitmap))))
sub-snips
sub-bitmaps)))
(define/private (show-picts)
(let ([pb (get-editor)])
(set! show-picts? #t)
(send pb begin-edit-sequence)
(set! system-insertion? #t)
(let ([position-table (make-hasheq)])
(let loop ([snip (send (get-editor) find-first-snip)] [pos 0])
(cond
[snip
(hash-set! position-table pos snip)
(loop (send snip next) (add1 pos))]
[else (void)]))
(hash-for-each
bitmap-table
(lambda (pos bitmap)
(let ([snip (hash-ref position-table pos #f)])
(when snip
(let ([bm-snip (make-object image-snip/r% bitmap snip)])
(let-values ([(x y) (snip-location pb snip)])
(send snip release-from-owner)
(send pb insert bm-snip x y))))))))
(set! system-insertion? #f)
(send pb end-edit-sequence)))
(define/private (hide-picts)
(let ([pb (get-editor)])
(set! show-picts? #f)
(send pb begin-edit-sequence)
(let ([all-snips (let loop ([snip (send pb find-first-snip)])
(cond
[snip (cons snip (loop (send snip next)))]
[else null]))])
(set! system-insertion? #t)
(for-each (lambda (snip)
(when (is-a? snip image-snip/r%)
(let ([real-snip (send snip get-orig-snip)])
(let-values ([(x y) (snip-location pb snip)])
(send snip release-from-owner)
(send pb insert real-snip x y)))))
all-snips)
(set! system-insertion? #f))
(send pb end-edit-sequence)))
;; called on user thread
(define/public (read-special file line col pos)
(let ([ans-chan (make-channel)])
(parameterize ([current-eventspace drs-eventspace])
(queue-callback
(lambda ()
(channel-put ans-chan (get-snp/poss this)))))
(let ([snp/poss (channel-get ans-chan)])
(build-lib-pict-stx
(lambda (ids)
(with-syntax ([(ids ...) ids]
[this this]
[build-bitmap/check build-bitmap/check]
[drs-eventspace drs-eventspace]
[current-eventspace current-eventspace]
[queue-callback queue-callback]
[(subsnips ...) (map snp/pos-snp snp/poss)]
[(bitmap-ids ...) (generate-ids "drawer-id" (map snp/pos-snp snp/poss))])
(syntax
(let ([bitmap-ids (build-bitmap/check ids (pict-width ids) (pict-height ids) draw-pict pict?)] ...)
(parameterize ([current-eventspace drs-eventspace])
(queue-callback
(lambda () ;; drs eventspace
(send this update-bitmap-table
(list subsnips ...)
(list bitmap-ids ...)))))))))
snp/poss))))
(define/override (write stream-out)
(send stream-out put (if show-picts? 1 0))
(send stream-out put 0)
(send (get-editor) write-to-file stream-out))
(define/override (make-snip) (new pict-snip%))
(define system-insertion? #f)
(define/public (inserted-snip)
(unless system-insertion?
(set-bitmap-table (make-hasheq))
(when show-picts?
(hide-picts))))
(inherit show-border set-snipclass)
(super-new)
(show-border #t)
(set-snipclass lib-pict-snipclass)))
(define lib-pict-snipclass%
(class snip-class%
(define/override (read stream-in)
(let* ([snip (new pict-snip%)]
[editor (send snip get-editor)]
[show-picts? (not (zero? (send stream-in get-exact)))]
[up-to-date? (not (zero? (send stream-in get-exact)))])
(send editor read-from-file stream-in #f)
(send snip set-show-picts show-picts?)
(let ([bt (make-hasheq)])
(let loop ([snip (send editor find-first-snip)])
(cond
[(is-a? snip snip%)
(when (is-a? snip image-snip/r%)
(let ([orig (send snip get-orig-snip)]
[bm (send snip get-bitmap)])
(hash-set! bt orig bm)))
(loop (send snip next))]
[else (void)]))
(send snip set-bitmap-table bt))
snip))
(super-new)))
;; build-bitmap/check : pict number number (pict dc number number -> void) (any -> boolean) -> bitmap
;; called on user-thread with a pict that the user made
(define (build-bitmap/check pict w h draw-pict pict?)
(unless (pict? pict)
(error 'pict-snip "expected a pict to be the result of each embedded snip, got ~e"
pict))
(let* ([bm (make-object bitmap%
(max 1 (add1 (inexact->exact (ceiling w))))
(max 1 (add1 (inexact->exact (ceiling h)))))]
[bdc (make-object bitmap-dc% bm)])
(send bdc clear)
(send bdc set-smoothing 'aligned)
(draw-pict pict bdc 0 0)
(send bdc set-bitmap #f)
bm))
(define (set-box/f b v) (when (box? b) (set-box! b v)))
(define slideshow-bm
(let ([bm (make-object bitmap% (build-path (collection-path "slideshow") "slideshow.bmp"))])
(and (send bm ok?)
bm)))
(define drs-eventspace (current-eventspace))
(define (add-special-menu-item menu frame)
(let* ([find-insertion-point ;; -> (union #f editor<%>)
;; returns the editor (if there is one) with the keyboard focus
(lambda ()
(let ([editor (send frame get-edit-target-object)])
(and editor
(is-a? editor editor<%>)
(let loop ([editor editor])
(let ([focused (send editor get-focus-snip)])
(if (and focused
(is-a? focused editor-snip%))
(loop (send focused get-editor))
editor))))))]
[insert-snip
(lambda (make-obj)
(let ([editor (find-insertion-point)])
(when editor
(let ([snip (make-obj)])
(send editor insert snip)
(send editor set-caret-owner snip 'display)))))]
[demand-callback ;; : menu-item% -> void
;; enables the menu item when there is an editor available.
(lambda (item)
(send item enable (find-insertion-point)))])
(instantiate menu:can-restore-menu-item% ()
(label sc-insert-pict-box)
(parent menu)
(demand-callback demand-callback)
(callback
(lambda (menu evt)
(insert-snip
(lambda () (new pict-snip%))))))))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;
;; wire it up
;;
(define (phase1) (void))
(define (phase2) (void))
(define (pict-box-mixin %)
(class %
(inherit get-insert-menu)
(super-new)
(add-special-menu-item (get-insert-menu) this)))
(when (getenv "PLTPICTBOX")
(drscheme:get/extend:extend-unit-frame pict-box-mixin))
(define orig-namespace (current-namespace))
(define (pict->image-snip p)
(let* ([pict-width (dynamic-require 'texpict/mrpict 'pict-width)]
[pict-height (dynamic-require 'texpict/mrpict 'pict-height)]
[draw-pict (dynamic-require 'texpict/mrpict 'draw-pict)]
[bm (make-object bitmap%
(max 1 (add1 (inexact->exact (ceiling (pict-width p)))))
(max 1 (add1 (inexact->exact (ceiling (pict-height p))))))]
[bdc (make-object bitmap-dc% bm)])
(send bdc clear)
(send bdc set-smoothing 'aligned)
(draw-pict p bdc 0 0)
(send bdc set-bitmap #f)
(make-object image-snip% bm)))
;; do not add this anymore, since it is covered internally
;; by drracket's use of the pict/convert library
#;
(drscheme:language:add-snip-value
;; Convert to print?
(lambda (x)
;; if the require fails, then we cannot display the pict.
;; this can happen when, for example, there is no mred module
;; in the namespace
(let ([pict? (with-handlers ((exn:fail? (λ (x) #f)))
(dynamic-require 'texpict/mrpict 'pict?))])
(and pict?
(pict? x))))
;; Converter:
pict->image-snip
;; Namespace setup:
(λ ()
(with-handlers ((exn:fail? void))
;; code running in this thunk cannot fail, or else drscheme gets wedged.
(dynamic-require 'texpict/mrpict #f))))
(define lib-pict-snipclass (make-object lib-pict-snipclass%))
(send lib-pict-snipclass set-version 2)
(send lib-pict-snipclass set-classname (format "~s" '(lib "pict-snipclass.ss" "slideshow")))
(send (get-the-snip-class-list) add lib-pict-snipclass))))
|