156 lines
4.4 KiB
Racket
156 lines
4.4 KiB
Racket
#lang racket/base
|
|
(require "../../syntax.rkt"
|
|
racket/class
|
|
racket/draw
|
|
ffi/unsafe
|
|
ffi/unsafe/objc
|
|
"utils.rkt"
|
|
"types.rkt"
|
|
"frame.rkt"
|
|
"window.rkt"
|
|
"finfo.rkt" ; file-creator-and-type
|
|
"filedialog.rkt"
|
|
"colordialog.rkt"
|
|
"dc.rkt"
|
|
"bitmap.rkt"
|
|
"printer-dc.rkt"
|
|
"menu-bar.rkt"
|
|
"agl.rkt"
|
|
"sound.rkt"
|
|
"keycode.rkt"
|
|
"../../lock.rkt"
|
|
"../common/handlers.rkt"
|
|
(except-in "../common/default-procs.rkt"
|
|
special-control-key
|
|
special-option-key
|
|
file-creator-and-type))
|
|
|
|
|
|
(provide
|
|
(protect-out
|
|
color-from-user-platform-mode
|
|
font-from-user-platform-mode
|
|
get-font-from-user
|
|
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
|
|
display-origin
|
|
display-size
|
|
bell
|
|
hide-cursor
|
|
get-display-depth
|
|
is-color-display?
|
|
id-to-menu-item
|
|
can-show-print-setup?
|
|
get-highlight-background-color
|
|
get-highlight-text-color
|
|
check-for-break)
|
|
make-screen-bitmap
|
|
make-gl-bitmap
|
|
show-print-setup
|
|
get-color-from-user
|
|
get-panel-background
|
|
fill-private-color
|
|
flush-display
|
|
play-sound
|
|
file-creator-and-type
|
|
file-selector
|
|
key-symbol-to-menu-key)
|
|
|
|
(import-class NSScreen NSCursor)
|
|
|
|
(define (find-graphical-system-path what)
|
|
#f)
|
|
|
|
(define (color-from-user-platform-mode) "Show Picker")
|
|
|
|
(define-unimplemented get-font-from-user)
|
|
(define (font-from-user-platform-mode) #f)
|
|
|
|
(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? [x #f]) #f)
|
|
|
|
(define (get-double-click-time)
|
|
500)
|
|
(define (get-control-font-face) "Lucida Grande")
|
|
(define (get-control-font-size) 13)
|
|
(define (get-control-font-size-in-pixels?) #f)
|
|
(define (cancel-quit) (void))
|
|
|
|
(define (check-for-break) #f)
|
|
|
|
(define (display-origin xb yb all?)
|
|
(if all?
|
|
(atomically
|
|
(with-autorelease
|
|
(let* ([screen (tell (tell NSScreen screens) objectAtIndex: #:type _NSUInteger 0)]
|
|
[f (tell #:type _NSRect screen visibleFrame)])
|
|
(set-box! xb (->long (NSPoint-x (NSRect-origin f)))))))
|
|
(set-box! xb 0))
|
|
(set-box! yb (get-menu-bar-height)))
|
|
|
|
(define (display-size xb yb all?)
|
|
(atomically
|
|
(with-autorelease
|
|
(let* ([screen (tell (tell NSScreen screens) objectAtIndex: #:type _NSUInteger 0)]
|
|
[f (if all?
|
|
(tell #:type _NSRect screen frame)
|
|
(tell #:type _NSRect screen visibleFrame))])
|
|
(set-box! xb (->long (NSSize-width (NSRect-size f))))
|
|
(set-box! yb (->long (NSSize-height (NSRect-size f))))))))
|
|
|
|
(define-appkit NSBeep (_fun -> _void))
|
|
(define (bell) (NSBeep))
|
|
|
|
(define (hide-cursor)
|
|
(tellv NSCursor setHiddenUntilMouseMoves: #:type _BOOL #t))
|
|
|
|
(define (get-display-depth) 32)
|
|
(define (is-color-display?) #t)
|
|
(define (id-to-menu-item id) id)
|
|
(define (can-show-print-setup?) #t)
|
|
|
|
(define/top (make-screen-bitmap [exact-positive-integer? w]
|
|
[exact-positive-integer? h])
|
|
(make-object quartz-bitmap% w h))
|
|
|
|
(define/top (make-gl-bitmap [exact-positive-integer? w]
|
|
[exact-positive-integer? h]
|
|
[gl-config% c])
|
|
(create-gl-bitmap w h c))
|
|
|
|
;; ------------------------------------------------------------
|
|
;; Text & highlight color
|
|
|
|
(import-class NSColor)
|
|
|
|
(define-cocoa NSDeviceRGBColorSpace _id)
|
|
|
|
(define (get-highlight-background-color)
|
|
(let ([hi (as-objc-allocation-with-retain
|
|
(tell (tell NSColor selectedTextBackgroundColor)
|
|
colorUsingColorSpaceName: NSDeviceRGBColorSpace))]
|
|
[as-color (lambda (v)
|
|
(inexact->exact (floor (* 255.0 v))))])
|
|
(begin0
|
|
(make-object color%
|
|
(as-color
|
|
(tell #:type _CGFloat hi redComponent))
|
|
(as-color
|
|
(tell #:type _CGFloat hi greenComponent))
|
|
(as-color
|
|
(tell #:type _CGFloat hi blueComponent)))
|
|
(release hi))))
|
|
|
|
(define (get-highlight-text-color)
|
|
#f)
|