racket/collects/mred/private/wxme/wx.rkt
Matthew Flatt 183323a2c5 fix `editor<%>' printing problems
- pagination for `pastebard%'
 - always put everything on a single page for EPS mode
 - add PDF support to mirror PS support
2011-01-18 14:16:25 -07:00

46 lines
1.1 KiB
Racket

#lang scheme/base
(require "../kernel.ss" racket/draw/private/font-syms)
(define the-clipboard (get-the-clipboard))
(define the-x-selection-clipboard (get-the-x-selection))
(define (size? v) (and (exact-positive-integer? v)
(byte? v)))
(provide (all-from-out racket/draw/private/font-syms)
event%
mouse-event%
key-event%
timer%
canvas%
bitmap-dc%
color%
the-color-database
pen%
the-pen-list
brush%
the-brush-list
font%
the-font-list
the-font-name-directory
cursor%
bitmap%
dc<%>
post-script-dc%
pdf-dc%
current-eventspace
clipboard-client%
clipboard<%>
the-clipboard
the-x-selection-clipboard
get-double-click-threshold
begin-busy-cursor
end-busy-cursor
hide-cursor
current-ps-setup
get-highlight-background-color
get-highlight-text-color)
(define (get-double-click-threshold)
(get-double-click-time))