original commit: d59be613b8406fc17c1e3ded0aa5372d206171ff
This commit is contained in:
Matthew Flatt 2002-12-05 23:20:11 +00:00
parent 2e08837319
commit 81d51e6815
3 changed files with 10 additions and 3 deletions

View File

@ -63,6 +63,7 @@
event-dispatch-handler event-dispatch-handler
eventspace-shutdown? eventspace-shutdown?
eventspace? eventspace?
file-creator-and-type
find-graphical-system-path find-graphical-system-path
flush-display flush-display
font% font%

View File

@ -1990,8 +1990,7 @@
(set-min-height (inexact->exact (ceiling (+ tab-height 9 raise-h)))))) (set-min-height (inexact->exact (ceiling (+ tab-height 9 raise-h))))))
(define wx-tab-group% (define wx-tab-group%
(if (if (eq? 'unix (system-type))
(eq? 'unix (system-type))
canvas-based-tab-group% canvas-based-tab-group%
(make-window-glue% (make-window-glue%
(make-control% wx:tab-group% 0 0 #t #t)))) (make-control% wx:tab-group% 0 0 #t #t))))
@ -7279,6 +7278,11 @@
(define the-style-list (wx:get-the-style-list)) (define the-style-list (wx:get-the-style-list))
(define the-editor-wordbreak-map (wx:get-the-editor-wordbreak-map)) (define the-editor-wordbreak-map (wx:get-the-editor-wordbreak-map))
(define file-creator-and-type
(case-lambda
[(fn) (wx:file-creator-and-type fn)]
[(fn c t) (wx:file-creator-and-type fn c t)]))
(provide button% (provide button%
canvas% canvas%
check-box% check-box%
@ -7368,7 +7372,8 @@
application-about-handler application-about-handler
application-preferences-handler application-preferences-handler
current-eventspace-has-standard-menus? current-eventspace-has-standard-menus?
make-namespace-with-mred) make-namespace-with-mred
file-creator-and-type)
) ;; end of module ) ;; end of module

View File

@ -1432,6 +1432,7 @@
set-executer set-executer
current-gl-context current-gl-context
send-event send-event
file-creator-and-type
set-snip-class-getter set-snip-class-getter
set-editor-data-class-getter set-editor-data-class-getter
main-eventspace?) main-eventspace?)