racket/collects/mred/private/wx/win32/procs.rkt
Matthew Flatt 69859850f3 finish implementing display of menu shortcuts
that involve non-chars shortcuts and alternate prefixes
2011-01-22 10:15:14 -07:00

116 lines
3.0 KiB
Racket

#lang racket/base
(require ffi/unsafe
racket/class
"../../syntax.rkt"
"theme.rkt"
"types.rkt"
"utils.rkt"
"const.rkt"
"menu-item.rkt"
"frame.rkt"
"window.rkt"
"dc.rkt"
"printer-dc.rkt"
(except-in "../common/default-procs.rkt"
get-panel-background)
"filedialog.rkt"
"colordialog.rkt"
"sound.rkt"
"key.rkt"
racket/draw)
(provide
(protect-out
color-from-user-platform-mode
get-font-from-user
font-from-user-platform-mode
get-panel-background
find-graphical-system-path
register-collecting-blit
unregister-collecting-blit
shortcut-visible-in-label?
get-double-click-time
get-control-font-face
get-control-font-size
get-control-font-size-in-pixels?
cancel-quit
bell
hide-cursor
get-display-depth
is-color-display?
can-show-print-setup?
get-highlight-background-color
get-highlight-text-color
check-for-break)
flush-display
fill-private-color
play-sound
location->window
file-selector
show-print-setup
id-to-menu-item
file-creator-and-type
display-origin
display-size
make-screen-bitmap
make-gl-bitmap
special-control-key
special-option-key
get-color-from-user
key-symbol-to-menu-key)
(define (find-graphical-system-path what)
#f)
(define (cancel-quit) (void))
(define (color-from-user-platform-mode) 'dialog)
(define (font-from-user-platform-mode) #f)
(define-unimplemented get-font-from-user)
(define (get-panel-background)
(let ([c (GetSysColor COLOR_BTNFACE)])
(make-object color% (GetRValue c) (GetGValue c) (GetBValue c))))
(define (register-collecting-blit canvas x y w h on off on-x on-y off-x off-y)
(send canvas register-collecting-blit x y w h on off on-x on-y off-x off-y))
(define (unregister-collecting-blit canvas)
(send canvas unregister-collecting-blits))
(define (shortcut-visible-in-label? [? #f]) #t)
(define (get-double-click-time) 500)
(define (get-control-font-face) (get-theme-font-face))
(define (get-control-font-size) (get-theme-font-size))
(define (get-control-font-size-in-pixels?) #t)
(define-user32 MessageBeep (_wfun _UINT -> _BOOL))
(define (bell)
(void (MessageBeep MB_OK)))
(define (hide-cursor) (void))
(define (get-display-depth) 32)
(define (is-color-display?) #t)
(define (can-show-print-setup?) #t)
(define (get-highlight-background-color)
(let ([c (GetSysColor COLOR_HIGHLIGHT)])
(make-object color% (GetRValue c) (GetGValue c) (GetBValue c))))
(define (get-highlight-text-color)
(let ([c (GetSysColor COLOR_HIGHLIGHTTEXT)])
(make-object color% (GetRValue c) (GetGValue c) (GetBValue c))))
(define/top (make-screen-bitmap [exact-positive-integer? w]
[exact-positive-integer? h])
(make-object win32-bitmap% w h #f))
(define/top (make-gl-bitmap [exact-positive-integer? w]
[exact-positive-integer? h]
[gl-config% c])
(make-object win32-bitmap% w h #f c))
(define (check-for-break) #f)