clean up unused
original commit: 23f0296cb944cbd253ed22fc0beb2ae4f2e04e29
This commit is contained in:
parent
d8206ac1fb
commit
dd79f9bae7
|
@ -42,10 +42,6 @@
|
||||||
"private/dynamic.ss"
|
"private/dynamic.ss"
|
||||||
"private/check.ss")
|
"private/check.ss")
|
||||||
|
|
||||||
;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
||||||
|
|
||||||
(wx:set-dialogs get-file put-file get-ps-setup-from-user message-box)
|
|
||||||
|
|
||||||
;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
||||||
;; These functions are re-implemented in scheme/gui/base
|
;; These functions are re-implemented in scheme/gui/base
|
||||||
;; and racket/gui/base to attach those names, instead of
|
;; and racket/gui/base to attach those names, instead of
|
||||||
|
|
|
@ -7,11 +7,15 @@
|
||||||
"wx/common/cursor.rkt"
|
"wx/common/cursor.rkt"
|
||||||
"wx/common/gl-config.rkt"
|
"wx/common/gl-config.rkt"
|
||||||
"wx/common/procs.rkt"
|
"wx/common/procs.rkt"
|
||||||
|
"wx/common/handlers.rkt"
|
||||||
racket/class
|
racket/class
|
||||||
racket/draw)
|
racket/draw)
|
||||||
|
|
||||||
(define gl-context<%> (class->interface gl-context%))
|
(define gl-context<%> (class->interface gl-context%))
|
||||||
|
|
||||||
|
(define (key-symbol-to-integer k)
|
||||||
|
(error 'key-symbol-to-integer "not yet implemented"))
|
||||||
|
|
||||||
(provide (all-from-out "wx/platform.rkt")
|
(provide (all-from-out "wx/platform.rkt")
|
||||||
clipboard<%>
|
clipboard<%>
|
||||||
gl-context<%>
|
gl-context<%>
|
||||||
|
@ -37,4 +41,9 @@
|
||||||
get-top-level-windows
|
get-top-level-windows
|
||||||
begin-busy-cursor
|
begin-busy-cursor
|
||||||
is-busy?
|
is-busy?
|
||||||
end-busy-cursor)
|
end-busy-cursor
|
||||||
|
key-symbol-to-integer
|
||||||
|
application-file-handler
|
||||||
|
application-quit-handler
|
||||||
|
application-about-handler
|
||||||
|
application-pref-handler)
|
||||||
|
|
|
@ -10,7 +10,8 @@
|
||||||
play-sound
|
play-sound
|
||||||
timer%)
|
timer%)
|
||||||
|
|
||||||
;; Currently only used for PS print and preview
|
;; Formerly used for PS print and preview:
|
||||||
|
#;
|
||||||
(wx:set-executer
|
(wx:set-executer
|
||||||
(let ([orig-err (current-error-port)])
|
(let ([orig-err (current-error-port)])
|
||||||
(lambda (prog . args)
|
(lambda (prog . args)
|
||||||
|
|
|
@ -466,6 +466,4 @@
|
||||||
|
|
||||||
(define (menu-or-bar-parent who p)
|
(define (menu-or-bar-parent who p)
|
||||||
(unless (or (is-a? p internal-menu<%>) (is-a? p menu-bar%))
|
(unless (or (is-a? p internal-menu<%>) (is-a? p menu-bar%))
|
||||||
(raise-type-error (constructor-name who) "built-in menu-item-container<%> object" p)))
|
(raise-type-error (constructor-name who) "built-in menu-item-container<%> object" p))))
|
||||||
|
|
||||||
(wx:set-menu-tester (lambda (m) (is-a? m popup-menu%))))
|
|
||||||
|
|
|
@ -10,7 +10,6 @@
|
||||||
"frame.rkt"
|
"frame.rkt"
|
||||||
"gauge.rkt"
|
"gauge.rkt"
|
||||||
"gl-context.rkt"
|
"gl-context.rkt"
|
||||||
"group-box.rkt"
|
|
||||||
"group-panel.rkt"
|
"group-panel.rkt"
|
||||||
"item.rkt"
|
"item.rkt"
|
||||||
"list-box.rkt"
|
"list-box.rkt"
|
||||||
|
@ -22,7 +21,6 @@
|
||||||
"printer-dc.rkt"
|
"printer-dc.rkt"
|
||||||
"radio-box.rkt"
|
"radio-box.rkt"
|
||||||
"slider.rkt"
|
"slider.rkt"
|
||||||
"tab-group.rkt"
|
|
||||||
"tab-panel.rkt"
|
"tab-panel.rkt"
|
||||||
"window.rkt"
|
"window.rkt"
|
||||||
"procs.rkt")
|
"procs.rkt")
|
||||||
|
@ -40,7 +38,6 @@
|
||||||
frame%
|
frame%
|
||||||
gauge%
|
gauge%
|
||||||
gl-context%
|
gl-context%
|
||||||
group-box%
|
|
||||||
group-panel%
|
group-panel%
|
||||||
item%
|
item%
|
||||||
list-box%
|
list-box%
|
||||||
|
@ -52,7 +49,6 @@
|
||||||
printer-dc%
|
printer-dc%
|
||||||
radio-box%
|
radio-box%
|
||||||
slider%
|
slider%
|
||||||
tab-group%
|
|
||||||
tab-panel%
|
tab-panel%
|
||||||
window%
|
window%
|
||||||
can-show-print-setup?
|
can-show-print-setup?
|
||||||
|
@ -72,34 +68,22 @@
|
||||||
fill-private-color
|
fill-private-color
|
||||||
cancel-quit
|
cancel-quit
|
||||||
get-control-font-size
|
get-control-font-size
|
||||||
key-symbol-to-integer
|
|
||||||
draw-tab-base
|
|
||||||
draw-tab
|
|
||||||
set-combo-box-font
|
|
||||||
get-double-click-time
|
get-double-click-time
|
||||||
run-printout
|
run-printout
|
||||||
file-creator-and-type
|
file-creator-and-type
|
||||||
send-event
|
send-event
|
||||||
set-executer
|
|
||||||
set-dialogs
|
|
||||||
location->window
|
location->window
|
||||||
set-menu-tester
|
|
||||||
in-atomic-region
|
|
||||||
shortcut-visible-in-label?
|
shortcut-visible-in-label?
|
||||||
unregister-collecting-blit
|
unregister-collecting-blit
|
||||||
register-collecting-blit
|
register-collecting-blit
|
||||||
find-graphical-system-path
|
find-graphical-system-path
|
||||||
check-for-break
|
|
||||||
play-sound
|
play-sound
|
||||||
get-panel-background
|
get-panel-background
|
||||||
get-font-from-user
|
get-font-from-user
|
||||||
get-color-from-user
|
get-color-from-user
|
||||||
application-pref-handler
|
|
||||||
application-about-handler
|
|
||||||
application-quit-handler
|
|
||||||
application-file-handler
|
|
||||||
special-option-key
|
special-option-key
|
||||||
special-control-key
|
special-control-key
|
||||||
get-highlight-background-color
|
get-highlight-background-color
|
||||||
get-highlight-text-color
|
get-highlight-text-color
|
||||||
make-screen-bitmap))
|
make-screen-bitmap
|
||||||
|
check-for-break))
|
||||||
|
|
|
@ -24,23 +24,14 @@
|
||||||
get-font-from-user
|
get-font-from-user
|
||||||
get-panel-background
|
get-panel-background
|
||||||
play-sound
|
play-sound
|
||||||
check-for-break
|
|
||||||
find-graphical-system-path
|
find-graphical-system-path
|
||||||
register-collecting-blit
|
register-collecting-blit
|
||||||
unregister-collecting-blit
|
unregister-collecting-blit
|
||||||
shortcut-visible-in-label?
|
shortcut-visible-in-label?
|
||||||
in-atomic-region
|
|
||||||
set-menu-tester
|
|
||||||
set-dialogs
|
|
||||||
set-executer
|
|
||||||
send-event
|
send-event
|
||||||
file-creator-and-type
|
file-creator-and-type
|
||||||
run-printout
|
run-printout
|
||||||
get-double-click-time
|
get-double-click-time
|
||||||
set-combo-box-font
|
|
||||||
draw-tab
|
|
||||||
draw-tab-base
|
|
||||||
key-symbol-to-integer
|
|
||||||
get-control-font-size
|
get-control-font-size
|
||||||
cancel-quit
|
cancel-quit
|
||||||
fill-private-color
|
fill-private-color
|
||||||
|
@ -61,7 +52,8 @@
|
||||||
can-show-print-setup?
|
can-show-print-setup?
|
||||||
get-highlight-background-color
|
get-highlight-background-color
|
||||||
get-highlight-text-color
|
get-highlight-text-color
|
||||||
make-screen-bitmap)
|
make-screen-bitmap
|
||||||
|
check-for-break)
|
||||||
|
|
||||||
(import-class NSScreen NSCursor)
|
(import-class NSScreen NSCursor)
|
||||||
|
|
||||||
|
@ -70,36 +62,26 @@
|
||||||
(define-unimplemented get-font-from-user)
|
(define-unimplemented get-font-from-user)
|
||||||
(define (get-panel-background) (make-object color% "gray"))
|
(define (get-panel-background) (make-object color% "gray"))
|
||||||
(define-unimplemented play-sound)
|
(define-unimplemented play-sound)
|
||||||
(define-unimplemented check-for-break)
|
|
||||||
(define-unimplemented find-graphical-system-path)
|
(define-unimplemented find-graphical-system-path)
|
||||||
(define (register-collecting-blit canvas x y w h on off on-x on-y off-x off-y)
|
(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))
|
(send canvas register-collecting-blit x y w h on off on-x on-y off-x off-y))
|
||||||
(define (unregister-collecting-blit canvas)
|
(define (unregister-collecting-blit canvas)
|
||||||
(send canvas unregister-collecting-blits))
|
(send canvas unregister-collecting-blits))
|
||||||
(define (shortcut-visible-in-label? [x #f]) #f)
|
(define (shortcut-visible-in-label? [x #f]) #f)
|
||||||
(define-unimplemented in-atomic-region)
|
|
||||||
(define (set-menu-tester proc)
|
|
||||||
(void))
|
|
||||||
(define (set-dialogs . args)
|
|
||||||
(void))
|
|
||||||
(define (set-executer proc)
|
|
||||||
(void))
|
|
||||||
(define-unimplemented send-event)
|
(define-unimplemented send-event)
|
||||||
(define (begin-refresh-sequence) (void))
|
(define (begin-refresh-sequence) (void))
|
||||||
(define (end-refresh-sequence) (void))
|
(define (end-refresh-sequence) (void))
|
||||||
(define-unimplemented run-printout)
|
(define-unimplemented run-printout)
|
||||||
(define (get-double-click-time)
|
(define (get-double-click-time)
|
||||||
500)
|
500)
|
||||||
(define (set-combo-box-font f) (void))
|
|
||||||
(define-unimplemented draw-tab)
|
|
||||||
(define-unimplemented draw-tab-base)
|
|
||||||
(define-unimplemented key-symbol-to-integer)
|
|
||||||
(define (get-control-font-size) 13)
|
(define (get-control-font-size) 13)
|
||||||
(define (cancel-quit) (void))
|
(define (cancel-quit) (void))
|
||||||
(define-unimplemented fill-private-color)
|
(define-unimplemented fill-private-color)
|
||||||
(define-unimplemented write-resource)
|
(define-unimplemented write-resource)
|
||||||
(define-unimplemented get-resource)
|
(define-unimplemented get-resource)
|
||||||
|
|
||||||
|
(define (check-for-break) #f)
|
||||||
|
|
||||||
(define (display-origin xb yb all?)
|
(define (display-origin xb yb all?)
|
||||||
(set-box! xb 0)
|
(set-box! xb 0)
|
||||||
(if all?
|
(if all?
|
||||||
|
|
|
@ -10,7 +10,6 @@
|
||||||
"frame.rkt"
|
"frame.rkt"
|
||||||
"gauge.rkt"
|
"gauge.rkt"
|
||||||
"gl-context.rkt"
|
"gl-context.rkt"
|
||||||
"group-box.rkt"
|
|
||||||
"group-panel.rkt"
|
"group-panel.rkt"
|
||||||
"item.rkt"
|
"item.rkt"
|
||||||
"list-box.rkt"
|
"list-box.rkt"
|
||||||
|
@ -22,7 +21,6 @@
|
||||||
"printer-dc.rkt"
|
"printer-dc.rkt"
|
||||||
"radio-box.rkt"
|
"radio-box.rkt"
|
||||||
"slider.rkt"
|
"slider.rkt"
|
||||||
"tab-group.rkt"
|
|
||||||
"tab-panel.rkt"
|
"tab-panel.rkt"
|
||||||
"window.rkt"
|
"window.rkt"
|
||||||
"procs.rkt")
|
"procs.rkt")
|
||||||
|
@ -40,7 +38,6 @@
|
||||||
frame%
|
frame%
|
||||||
gauge%
|
gauge%
|
||||||
gl-context%
|
gl-context%
|
||||||
group-box%
|
|
||||||
group-panel%
|
group-panel%
|
||||||
item%
|
item%
|
||||||
list-box%
|
list-box%
|
||||||
|
@ -52,7 +49,6 @@
|
||||||
printer-dc%
|
printer-dc%
|
||||||
radio-box%
|
radio-box%
|
||||||
slider%
|
slider%
|
||||||
tab-group%
|
|
||||||
tab-panel%
|
tab-panel%
|
||||||
window%
|
window%
|
||||||
can-show-print-setup?
|
can-show-print-setup?
|
||||||
|
@ -72,34 +68,22 @@
|
||||||
fill-private-color
|
fill-private-color
|
||||||
cancel-quit
|
cancel-quit
|
||||||
get-control-font-size
|
get-control-font-size
|
||||||
key-symbol-to-integer
|
|
||||||
draw-tab-base
|
|
||||||
draw-tab
|
|
||||||
set-combo-box-font
|
|
||||||
get-double-click-time
|
get-double-click-time
|
||||||
run-printout
|
run-printout
|
||||||
file-creator-and-type
|
file-creator-and-type
|
||||||
send-event
|
send-event
|
||||||
set-executer
|
|
||||||
set-dialogs
|
|
||||||
location->window
|
location->window
|
||||||
set-menu-tester
|
|
||||||
in-atomic-region
|
|
||||||
shortcut-visible-in-label?
|
shortcut-visible-in-label?
|
||||||
unregister-collecting-blit
|
unregister-collecting-blit
|
||||||
register-collecting-blit
|
register-collecting-blit
|
||||||
find-graphical-system-path
|
find-graphical-system-path
|
||||||
check-for-break
|
|
||||||
play-sound
|
play-sound
|
||||||
get-panel-background
|
get-panel-background
|
||||||
get-font-from-user
|
get-font-from-user
|
||||||
get-color-from-user
|
get-color-from-user
|
||||||
application-pref-handler
|
|
||||||
application-about-handler
|
|
||||||
application-quit-handler
|
|
||||||
application-file-handler
|
|
||||||
special-option-key
|
special-option-key
|
||||||
special-control-key
|
special-control-key
|
||||||
get-highlight-background-color
|
get-highlight-background-color
|
||||||
get-highlight-text-color
|
get-highlight-text-color
|
||||||
make-screen-bitmap))
|
make-screen-bitmap
|
||||||
|
check-for-break))
|
||||||
|
|
|
@ -16,31 +16,19 @@
|
||||||
(provide
|
(provide
|
||||||
special-control-key
|
special-control-key
|
||||||
special-option-key
|
special-option-key
|
||||||
application-file-handler
|
|
||||||
application-quit-handler
|
|
||||||
application-about-handler
|
|
||||||
application-pref-handler
|
|
||||||
get-color-from-user
|
get-color-from-user
|
||||||
get-font-from-user
|
get-font-from-user
|
||||||
get-panel-background
|
get-panel-background
|
||||||
play-sound
|
play-sound
|
||||||
check-for-break
|
|
||||||
find-graphical-system-path
|
find-graphical-system-path
|
||||||
register-collecting-blit
|
register-collecting-blit
|
||||||
unregister-collecting-blit
|
unregister-collecting-blit
|
||||||
shortcut-visible-in-label?
|
shortcut-visible-in-label?
|
||||||
in-atomic-region
|
|
||||||
set-menu-tester
|
|
||||||
location->window
|
location->window
|
||||||
set-dialogs
|
|
||||||
set-executer
|
|
||||||
send-event
|
send-event
|
||||||
file-creator-and-type
|
file-creator-and-type
|
||||||
run-printout
|
run-printout
|
||||||
get-double-click-time
|
get-double-click-time
|
||||||
set-combo-box-font
|
|
||||||
draw-tab
|
|
||||||
draw-tab-base
|
|
||||||
key-symbol-to-integer
|
key-symbol-to-integer
|
||||||
get-control-font-size
|
get-control-font-size
|
||||||
cancel-quit
|
cancel-quit
|
||||||
|
@ -62,7 +50,8 @@
|
||||||
can-show-print-setup?
|
can-show-print-setup?
|
||||||
get-highlight-background-color
|
get-highlight-background-color
|
||||||
get-highlight-text-color
|
get-highlight-text-color
|
||||||
make-screen-bitmap)
|
make-screen-bitmap
|
||||||
|
check-for-break)
|
||||||
|
|
||||||
(define-unimplemented special-control-key)
|
(define-unimplemented special-control-key)
|
||||||
(define (special-option-key on?) (void))
|
(define (special-option-key on?) (void))
|
||||||
|
@ -70,18 +59,13 @@
|
||||||
(define-unimplemented get-font-from-user)
|
(define-unimplemented get-font-from-user)
|
||||||
(define (get-panel-background) (make-object color% "gray"))
|
(define (get-panel-background) (make-object color% "gray"))
|
||||||
(define-unimplemented play-sound)
|
(define-unimplemented play-sound)
|
||||||
(define-unimplemented check-for-break)
|
|
||||||
(define-unimplemented find-graphical-system-path)
|
(define-unimplemented find-graphical-system-path)
|
||||||
(define (register-collecting-blit canvas x y w h on off on-x on-y off-x off-y)
|
(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))
|
(send canvas register-collecting-blit x y w h on off on-x on-y off-x off-y))
|
||||||
(define (unregister-collecting-blit canvas)
|
(define (unregister-collecting-blit canvas)
|
||||||
(send canvas unregister-collecting-blits))
|
(send canvas unregister-collecting-blits))
|
||||||
(define (shortcut-visible-in-label? [mbar? #f]) #t)
|
(define (shortcut-visible-in-label? [mbar? #f]) #t)
|
||||||
(define-unimplemented in-atomic-region)
|
|
||||||
(define (set-menu-tester proc) (void))
|
|
||||||
(define-unimplemented location->window)
|
(define-unimplemented location->window)
|
||||||
(define (set-dialogs . args) (void))
|
|
||||||
(define (set-executer e) (void))
|
|
||||||
(define-unimplemented send-event)
|
(define-unimplemented send-event)
|
||||||
(define file-creator-and-type
|
(define file-creator-and-type
|
||||||
(case-lambda
|
(case-lambda
|
||||||
|
@ -89,9 +73,6 @@
|
||||||
[(path) (values #"????" #"????")]))
|
[(path) (values #"????" #"????")]))
|
||||||
(define-unimplemented run-printout)
|
(define-unimplemented run-printout)
|
||||||
(define (get-double-click-time) 250)
|
(define (get-double-click-time) 250)
|
||||||
(define (set-combo-box-font f) (void))
|
|
||||||
(define-unimplemented draw-tab)
|
|
||||||
(define-unimplemented draw-tab-base)
|
|
||||||
(define-unimplemented key-symbol-to-integer)
|
(define-unimplemented key-symbol-to-integer)
|
||||||
(define (get-control-font-size) 10) ;; FIXME
|
(define (get-control-font-size) 10) ;; FIXME
|
||||||
(define-unimplemented cancel-quit)
|
(define-unimplemented cancel-quit)
|
||||||
|
@ -140,3 +121,5 @@
|
||||||
(if (eq? 'unix (system-type))
|
(if (eq? 'unix (system-type))
|
||||||
(make-object x11-bitmap% w h #f)
|
(make-object x11-bitmap% w h #f)
|
||||||
(make-object bitmap% w h #f #t)))
|
(make-object bitmap% w h #f #t)))
|
||||||
|
|
||||||
|
(define (check-for-break) #f)
|
||||||
|
|
|
@ -18,7 +18,6 @@
|
||||||
frame%
|
frame%
|
||||||
gauge%
|
gauge%
|
||||||
gl-context%
|
gl-context%
|
||||||
group-box%
|
|
||||||
group-panel%
|
group-panel%
|
||||||
item%
|
item%
|
||||||
list-box%
|
list-box%
|
||||||
|
@ -30,7 +29,6 @@
|
||||||
printer-dc%
|
printer-dc%
|
||||||
radio-box%
|
radio-box%
|
||||||
slider%
|
slider%
|
||||||
tab-group%
|
|
||||||
tab-panel%
|
tab-panel%
|
||||||
window%
|
window%
|
||||||
can-show-print-setup?
|
can-show-print-setup?
|
||||||
|
@ -50,35 +48,23 @@
|
||||||
fill-private-color
|
fill-private-color
|
||||||
cancel-quit
|
cancel-quit
|
||||||
get-control-font-size
|
get-control-font-size
|
||||||
key-symbol-to-integer
|
|
||||||
draw-tab-base
|
|
||||||
draw-tab
|
|
||||||
set-combo-box-font
|
|
||||||
get-double-click-time
|
get-double-click-time
|
||||||
run-printout
|
run-printout
|
||||||
file-creator-and-type
|
file-creator-and-type
|
||||||
send-event
|
send-event
|
||||||
set-executer
|
|
||||||
set-dialogs
|
|
||||||
location->window
|
location->window
|
||||||
set-menu-tester
|
|
||||||
in-atomic-region
|
|
||||||
shortcut-visible-in-label?
|
shortcut-visible-in-label?
|
||||||
unregister-collecting-blit
|
unregister-collecting-blit
|
||||||
register-collecting-blit
|
register-collecting-blit
|
||||||
find-graphical-system-path
|
find-graphical-system-path
|
||||||
check-for-break
|
|
||||||
play-sound
|
play-sound
|
||||||
get-panel-background
|
get-panel-background
|
||||||
get-font-from-user
|
get-font-from-user
|
||||||
get-color-from-user
|
get-color-from-user
|
||||||
application-pref-handler
|
|
||||||
application-about-handler
|
|
||||||
application-quit-handler
|
|
||||||
application-file-handler
|
|
||||||
special-option-key
|
special-option-key
|
||||||
special-control-key
|
special-control-key
|
||||||
get-highlight-background-color
|
get-highlight-background-color
|
||||||
get-highlight-text-color
|
get-highlight-text-color
|
||||||
make-screen-bitmap)
|
make-screen-bitmap
|
||||||
|
check-for-break)
|
||||||
((dynamic-require platform-lib 'platform-values)))
|
((dynamic-require platform-lib 'platform-values)))
|
||||||
|
|
|
@ -9,7 +9,6 @@
|
||||||
"frame.rkt"
|
"frame.rkt"
|
||||||
"gauge.rkt"
|
"gauge.rkt"
|
||||||
"gl-context.rkt"
|
"gl-context.rkt"
|
||||||
"group-box.rkt"
|
|
||||||
"group-panel.rkt"
|
"group-panel.rkt"
|
||||||
"item.rkt"
|
"item.rkt"
|
||||||
"list-box.rkt"
|
"list-box.rkt"
|
||||||
|
@ -21,7 +20,6 @@
|
||||||
"printer-dc.rkt"
|
"printer-dc.rkt"
|
||||||
"radio-box.rkt"
|
"radio-box.rkt"
|
||||||
"slider.rkt"
|
"slider.rkt"
|
||||||
"tab-group.rkt"
|
|
||||||
"tab-panel.rkt"
|
"tab-panel.rkt"
|
||||||
"window.rkt"
|
"window.rkt"
|
||||||
"procs.rkt")
|
"procs.rkt")
|
||||||
|
@ -39,7 +37,6 @@
|
||||||
frame%
|
frame%
|
||||||
gauge%
|
gauge%
|
||||||
gl-context%
|
gl-context%
|
||||||
group-box%
|
|
||||||
group-panel%
|
group-panel%
|
||||||
item%
|
item%
|
||||||
list-box%
|
list-box%
|
||||||
|
@ -51,7 +48,6 @@
|
||||||
printer-dc%
|
printer-dc%
|
||||||
radio-box%
|
radio-box%
|
||||||
slider%
|
slider%
|
||||||
tab-group%
|
|
||||||
tab-panel%
|
tab-panel%
|
||||||
window%
|
window%
|
||||||
can-show-print-setup?
|
can-show-print-setup?
|
||||||
|
@ -71,34 +67,22 @@
|
||||||
fill-private-color
|
fill-private-color
|
||||||
cancel-quit
|
cancel-quit
|
||||||
get-control-font-size
|
get-control-font-size
|
||||||
key-symbol-to-integer
|
|
||||||
draw-tab-base
|
|
||||||
draw-tab
|
|
||||||
set-combo-box-font
|
|
||||||
get-double-click-time
|
get-double-click-time
|
||||||
run-printout
|
run-printout
|
||||||
file-creator-and-type
|
file-creator-and-type
|
||||||
send-event
|
send-event
|
||||||
set-executer
|
|
||||||
set-dialogs
|
|
||||||
location->window
|
location->window
|
||||||
set-menu-tester
|
|
||||||
in-atomic-region
|
|
||||||
shortcut-visible-in-label?
|
shortcut-visible-in-label?
|
||||||
unregister-collecting-blit
|
unregister-collecting-blit
|
||||||
register-collecting-blit
|
register-collecting-blit
|
||||||
find-graphical-system-path
|
find-graphical-system-path
|
||||||
check-for-break
|
|
||||||
play-sound
|
play-sound
|
||||||
get-panel-background
|
get-panel-background
|
||||||
get-font-from-user
|
get-font-from-user
|
||||||
get-color-from-user
|
get-color-from-user
|
||||||
application-pref-handler
|
|
||||||
application-about-handler
|
|
||||||
application-quit-handler
|
|
||||||
application-file-handler
|
|
||||||
special-option-key
|
special-option-key
|
||||||
special-control-key
|
special-control-key
|
||||||
get-highlight-background-color
|
get-highlight-background-color
|
||||||
get-highlight-text-color
|
get-highlight-text-color
|
||||||
make-screen-bitmap))
|
make-screen-bitmap
|
||||||
|
check-for-break))
|
||||||
|
|
|
@ -4,32 +4,19 @@
|
||||||
(provide
|
(provide
|
||||||
special-control-key
|
special-control-key
|
||||||
special-option-key
|
special-option-key
|
||||||
application-file-handler
|
|
||||||
application-quit-handler
|
|
||||||
application-about-handler
|
|
||||||
application-pref-handler
|
|
||||||
get-color-from-user
|
get-color-from-user
|
||||||
get-font-from-user
|
get-font-from-user
|
||||||
get-panel-background
|
get-panel-background
|
||||||
play-sound
|
play-sound
|
||||||
check-for-break
|
|
||||||
find-graphical-system-path
|
find-graphical-system-path
|
||||||
register-collecting-blit
|
register-collecting-blit
|
||||||
unregister-collecting-blit
|
unregister-collecting-blit
|
||||||
shortcut-visible-in-label?
|
shortcut-visible-in-label?
|
||||||
in-atomic-region
|
|
||||||
set-menu-tester
|
|
||||||
location->window
|
location->window
|
||||||
set-dialogs
|
|
||||||
set-executer
|
|
||||||
send-event
|
send-event
|
||||||
file-creator-and-type
|
file-creator-and-type
|
||||||
run-printout
|
run-printout
|
||||||
get-double-click-time
|
get-double-click-time
|
||||||
set-combo-box-font
|
|
||||||
draw-tab
|
|
||||||
draw-tab-base
|
|
||||||
key-symbol-to-integer
|
|
||||||
get-control-font-size
|
get-control-font-size
|
||||||
cancel-quit
|
cancel-quit
|
||||||
fill-private-color
|
fill-private-color
|
||||||
|
@ -50,36 +37,24 @@
|
||||||
can-show-print-setup?
|
can-show-print-setup?
|
||||||
get-highlight-background-color
|
get-highlight-background-color
|
||||||
get-highlight-text-color
|
get-highlight-text-color
|
||||||
make-screen-bitmap)
|
make-screen-bitmap
|
||||||
|
check-for-break)
|
||||||
|
|
||||||
(define-unimplemented special-control-key)
|
(define-unimplemented special-control-key)
|
||||||
(define-unimplemented special-option-key)
|
(define-unimplemented special-option-key)
|
||||||
(define-unimplemented application-file-handler)
|
|
||||||
(define-unimplemented application-quit-handler)
|
|
||||||
(define-unimplemented application-about-handler)
|
|
||||||
(define-unimplemented application-pref-handler)
|
|
||||||
(define-unimplemented get-color-from-user)
|
(define-unimplemented get-color-from-user)
|
||||||
(define-unimplemented get-font-from-user)
|
(define-unimplemented get-font-from-user)
|
||||||
(define-unimplemented get-panel-background)
|
(define-unimplemented get-panel-background)
|
||||||
(define-unimplemented play-sound)
|
(define-unimplemented play-sound)
|
||||||
(define-unimplemented check-for-break)
|
|
||||||
(define-unimplemented find-graphical-system-path)
|
(define-unimplemented find-graphical-system-path)
|
||||||
(define-unimplemented register-collecting-blit)
|
(define-unimplemented register-collecting-blit)
|
||||||
(define-unimplemented unregister-collecting-blit)
|
(define-unimplemented unregister-collecting-blit)
|
||||||
(define-unimplemented shortcut-visible-in-label?)
|
(define-unimplemented shortcut-visible-in-label?)
|
||||||
(define-unimplemented in-atomic-region)
|
|
||||||
(define-unimplemented set-menu-tester)
|
|
||||||
(define-unimplemented location->window)
|
(define-unimplemented location->window)
|
||||||
(define-unimplemented set-dialogs)
|
|
||||||
(define-unimplemented set-executer)
|
|
||||||
(define-unimplemented send-event)
|
(define-unimplemented send-event)
|
||||||
(define-unimplemented file-creator-and-type)
|
(define-unimplemented file-creator-and-type)
|
||||||
(define-unimplemented run-printout)
|
(define-unimplemented run-printout)
|
||||||
(define-unimplemented get-double-click-time)
|
(define-unimplemented get-double-click-time)
|
||||||
(define-unimplemented set-combo-box-font)
|
|
||||||
(define-unimplemented draw-tab)
|
|
||||||
(define-unimplemented draw-tab-base)
|
|
||||||
(define-unimplemented key-symbol-to-integer)
|
|
||||||
(define-unimplemented get-control-font-size)
|
(define-unimplemented get-control-font-size)
|
||||||
(define-unimplemented cancel-quit)
|
(define-unimplemented cancel-quit)
|
||||||
(define-unimplemented fill-private-color)
|
(define-unimplemented fill-private-color)
|
||||||
|
@ -104,3 +79,5 @@
|
||||||
(define-unimplemented get-highlight-background-color)
|
(define-unimplemented get-highlight-background-color)
|
||||||
(define-unimplemented get-highlight-text-color)
|
(define-unimplemented get-highlight-text-color)
|
||||||
(define-unimplemented make-screen-bitmap)
|
(define-unimplemented make-screen-bitmap)
|
||||||
|
|
||||||
|
(define (check-for-break) #f)
|
||||||
|
|
|
@ -160,7 +160,7 @@
|
||||||
(unless horiz? (send p alignment 'left 'top))
|
(unless horiz? (send p alignment 'left 'top))
|
||||||
(unless multi? (stretchable-in-y #f))
|
(unless multi? (stretchable-in-y #f))
|
||||||
;; For Windows:
|
;; For Windows:
|
||||||
(wx:set-combo-box-font font)
|
; (wx:set-combo-box-font font)
|
||||||
(spacing 3))
|
(spacing 3))
|
||||||
(private-field
|
(private-field
|
||||||
[l (and label
|
[l (and label
|
||||||
|
|
Loading…
Reference in New Issue
Block a user