racket/collects/mrlib/private/aligned-pasteboard/aligned-pasteboard.rkt
2010-04-27 16:50:15 -06:00

23 lines
549 B
Racket

(module aligned-pasteboard mzscheme
(require
mrlib/click-forwarding-editor
"geometry-managed-pasteboard.ss"
"locked-pasteboard.ss")
(provide
vertical-pasteboard%
horizontal-pasteboard%)
;; contruct the basic mixin that both pasteboards will be created from
(define (click/lock type)
(click-forwarding-editor-mixin
(locked-pasteboard-mixin
(make-aligned-pasteboard type))))
(define vertical-pasteboard%
(click/lock 'vertical))
(define horizontal-pasteboard%
(click/lock 'horizontal)))