original commit: 0e82effd880a83640c9db5b470f1bfa13bc7afb4
This commit is contained in:
Matthew Flatt 1998-09-19 02:04:51 +00:00
parent 0ef3259304
commit 8387181e7f

View File

@ -155,9 +155,11 @@ highlights of the revision:
of methods that paint consistently on all platforms. Some drawing of methods that paint consistently on all platforms. Some drawing
modes eliminated, ... [still hashing out this part] modes eliminated, ... [still hashing out this part]
The blit method works directly on bitmaps.
The canvas% class no longer supplies drawing methods. Instead, The canvas% class no longer supplies drawing methods. Instead,
get-dc to get a drawing context (which always has a more get-dc to get a drawing context (which always has a more complete
complete set of methods, anyway). set of methods, anyway).
* American spelling is used everywhere: colour -> color, centre * American spelling is used everywhere: colour -> color, centre
-> center. -> center.
@ -221,8 +223,8 @@ menu-item-container<%>
|- popup-menu% (not created in a menu-bar; for use with canvas%'s popup-menu) |- popup-menu% (not created in a menu-bar; for use with canvas%'s popup-menu)
dc<%> dc<%>
|- canvas-dc% |- pixel-dc<%> (replaces canvas-dc%)
| |-memory-dc% | |-bitmap-dc% (formerly memory-dc%)
|- printer-dc% |- printer-dc%
|- postscript-dc% |- postscript-dc%
@ -321,6 +323,7 @@ top-level-window<%> : area-container-window<%>
get-eventspace get-eventspace
on-activate on-activate
can-close? on-close can-close? on-close
can-exit? on-exit - called when the OS asks MrEd to exit
get-focus-window - the window with the current focus (or #f) get-focus-window - the window with the current focus (or #f)
get-edit-target-window - the window to last have the focus (or #f) get-edit-target-window - the window to last have the focus (or #f)
get-focus-object - the window/editor with the curent focus (or #f) get-focus-object - the window/editor with the curent focus (or #f)
@ -993,7 +996,7 @@ Change post-script-dc% and printer-dc% ininitialization arguments.
PostScript settings now kept as a ps-setup% object in the PostScript settings now kept as a ps-setup% object in the
current-ps-setup parameter. current-ps-setup parameter.
Changed arguments al default value of fit-on-page? for print in Changed arguments and default value of fit-on-page? for print in
editor<%> editor<%>
Changed editor<%>'s modified? to is-modified?, added is-locked? Changed editor<%>'s modified? to is-modified?, added is-locked?