original commit: eef4dd636ec0c5c690c67d78216fa7192788c608
This commit is contained in:
Matthew Flatt 2001-10-04 22:34:22 +00:00
parent ded1fd6b0e
commit d53458414a
2 changed files with 13 additions and 3 deletions

View File

@ -1868,8 +1868,13 @@
(sequence (apply super-init args))))
(define text% (class100 (make-editor-buffer% wx:text% #t (lambda () text%)) ([line-spacing 1.0] [tab-stops null])
(sequence (super-init line-spacing tab-stops))))
(define text% (class100 (make-editor-buffer% wx:text% #t (lambda () text%)) ([line-spacing 1.0]
[tab-stops null]
[auto-wrap #f])
(rename (super-auto-wrap auto-wrap))
(sequence (super-init line-spacing tab-stops)
(when auto-wrap
(super-auto-wrap #t)))))
(define pasteboard% (class100 (make-editor-buffer% wx:pasteboard% #f (lambda () pasteboard%)) ()
(sequence (super-init))))
@ -3921,8 +3926,12 @@
((check-bounded-integer 1 1000 #t) '(method editor-canvas% set-line-count) n)
(send wx set-line-count n)))]
[scroll-to (case-lambda
[(x y w h refresh?) (send wx scroll-to x y w h refresh?)]
[(x y w h refresh? bias) (send wx scroll-to x y w h refresh? bias)])]
[get-editor (entry-point (lambda () (send wx get-editor)))]
[set-editor (entry-point
[set-editor (entry-point
(case-lambda
[(m) (send wx set-editor m)]
[(m upd?) (send wx set-editor m upd?)]))])

View File

@ -626,6 +626,7 @@
on-kill-focus
popup-for-editor
call-as-primary-owner
scroll-to
set-lazy-refresh
get-lazy-refresh
scroll-with-bottom-base