#| -*-Scheme-*-
-$Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/runtime/make.scm,v 14.12 1989/05/21 17:17:56 jinx Exp $
+$Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/runtime/make.scm,v 14.13 1989/06/22 23:50:49 cph Rel $
Copyright (c) 1988, 1989 Massachusetts Institute of Technology
(RUNTIME DEBUGGER)
(RUNTIME)
+ (RUNTIME X-GRAPHICS)
+ (RUNTIME STARBASE-GRAPHICS)
;; Emacs -- last because it grabs the kitchen sink.
(RUNTIME EMACS-INTERFACE)
))
#| -*-Scheme-*-
-$Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/runtime/option.scm,v 14.3 1988/07/15 09:16:06 cph Exp $
+$Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/runtime/option.scm,v 14.4 1989/06/22 23:50:53 cph Rel $
-Copyright (c) 1988 Massachusetts Institute of Technology
+Copyright (c) 1988, 1989 Massachusetts Institute of Technology
This material was developed by the Scheme project at the Massachusetts
Institute of Technology, Department of Electrical Engineering and
(define options
'((FORMAT ((RUNTIME FORMAT) (INITIALIZE-PACKAGE!) "format"))
- (STARBASE ((RUNTIME STARBASE-GRAPHICS) (INITIALIZE-PACKAGE!) "Sgraph"))))
\ No newline at end of file
+ (STARBASE
+ ((RUNTIME OLD-STARBASE-GRAPHICS) (INITIALIZE-PACKAGE!) "Sgraph"))))
\ No newline at end of file
#| -*-Scheme-*-
-$Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/runtime/runtime.pkg,v 14.39 1989/06/09 16:51:34 cph Exp $
+$Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/runtime/runtime.pkg,v 14.40 1989/06/22 23:50:57 cph Exp $
Copyright (c) 1988, 1989 Massachusetts Institute of Technology
scode-walker?)
(initialization (initialize-package!)))
+(define-package (runtime graphics)
+ (files "graphics")
+ (parent ())
+ (export ()
+ graphics-bind-drawing-mode
+ graphics-bind-line-style
+ graphics-clear
+ graphics-close
+ graphics-coordinate-limits
+ graphics-device-coordinate-limits
+ graphics-disable-buffering
+ graphics-drag-cursor
+ graphics-draw-line
+ graphics-draw-point
+ graphics-draw-text
+ graphics-enable-buffering
+ graphics-erase-point
+ graphics-flush
+ graphics-move-cursor
+ graphics-operation
+ graphics-reset-clip-rectangle
+ graphics-set-clip-rectangle
+ graphics-set-coordinate-limits
+ graphics-set-drawing-mode
+ graphics-set-line-style
+ graphics-type-available?
+ make-graphics-device
+ make-graphics-device-type))
+
+(define-package (runtime x-graphics)
+ (files "x11graph")
+ (parent ())
+ (export ()
+ x-close-all-displays
+ x-close-display
+ x-geometry-string
+ x-graphics-device-type
+ x-open-display)
+ (initialization (initialize-package!)))
+
(define-package (runtime starbase-graphics)
+ (files "starbase")
+ (parent ())
+ (export ()
+ starbase-graphics-device-type)
+ (initialization (initialize-package!)))
+
+(define-package (runtime old-starbase-graphics)
(file-case options
((load) "Sgraph")
(else))
set-graphics-drawing-mode
set-graphics-line-style
with-graphics-drawing-mode
- with-graphics-line-style
- x-graphics-available?
- x-graphics-close-display
- x-graphics-close-window
- x-graphics-create-raster
- x-graphics-delete-raster
- x-graphics-initialize
- x-graphics-lower-window
- x-graphics-map-window
- x-graphics-open-display
- x-graphics-open-window
- x-graphics-raise-window
- x-graphics-start-retain
- x-graphics-stop-retain
- x-graphics-unmap-window
- x11-graphics-initialize
- x11-graphics-close)
+ with-graphics-line-style)
(initialization (initialize-package!)))
(define-package (runtime state-space)
#| -*-Scheme-*-
-$Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/runtime/version.scm,v 14.45 1989/06/09 16:51:44 cph Exp $
+$Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/runtime/version.scm,v 14.46 1989/06/22 23:51:02 cph Rel $
Copyright (c) 1988, 1989 Massachusetts Institute of Technology
'()))
(add-system! microcode-system)
(add-event-receiver! event:after-restore snarf-microcode-version!)
- (add-identification! "Runtime" 14 45))
+ (add-identification! "Runtime" 14 46))
(define microcode-system)
#| -*-Scheme-*-
-$Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v8/src/runtime/make.scm,v 14.12 1989/05/21 17:17:56 jinx Exp $
+$Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v8/src/runtime/make.scm,v 14.13 1989/06/22 23:50:49 cph Rel $
Copyright (c) 1988, 1989 Massachusetts Institute of Technology
(RUNTIME DEBUGGER)
(RUNTIME)
+ (RUNTIME X-GRAPHICS)
+ (RUNTIME STARBASE-GRAPHICS)
;; Emacs -- last because it grabs the kitchen sink.
(RUNTIME EMACS-INTERFACE)
))
#| -*-Scheme-*-
-$Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v8/src/runtime/runtime.pkg,v 14.39 1989/06/09 16:51:34 cph Exp $
+$Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v8/src/runtime/runtime.pkg,v 14.40 1989/06/22 23:50:57 cph Exp $
Copyright (c) 1988, 1989 Massachusetts Institute of Technology
scode-walker?)
(initialization (initialize-package!)))
+(define-package (runtime graphics)
+ (files "graphics")
+ (parent ())
+ (export ()
+ graphics-bind-drawing-mode
+ graphics-bind-line-style
+ graphics-clear
+ graphics-close
+ graphics-coordinate-limits
+ graphics-device-coordinate-limits
+ graphics-disable-buffering
+ graphics-drag-cursor
+ graphics-draw-line
+ graphics-draw-point
+ graphics-draw-text
+ graphics-enable-buffering
+ graphics-erase-point
+ graphics-flush
+ graphics-move-cursor
+ graphics-operation
+ graphics-reset-clip-rectangle
+ graphics-set-clip-rectangle
+ graphics-set-coordinate-limits
+ graphics-set-drawing-mode
+ graphics-set-line-style
+ graphics-type-available?
+ make-graphics-device
+ make-graphics-device-type))
+
+(define-package (runtime x-graphics)
+ (files "x11graph")
+ (parent ())
+ (export ()
+ x-close-all-displays
+ x-close-display
+ x-geometry-string
+ x-graphics-device-type
+ x-open-display)
+ (initialization (initialize-package!)))
+
(define-package (runtime starbase-graphics)
+ (files "starbase")
+ (parent ())
+ (export ()
+ starbase-graphics-device-type)
+ (initialization (initialize-package!)))
+
+(define-package (runtime old-starbase-graphics)
(file-case options
((load) "Sgraph")
(else))
set-graphics-drawing-mode
set-graphics-line-style
with-graphics-drawing-mode
- with-graphics-line-style
- x-graphics-available?
- x-graphics-close-display
- x-graphics-close-window
- x-graphics-create-raster
- x-graphics-delete-raster
- x-graphics-initialize
- x-graphics-lower-window
- x-graphics-map-window
- x-graphics-open-display
- x-graphics-open-window
- x-graphics-raise-window
- x-graphics-start-retain
- x-graphics-stop-retain
- x-graphics-unmap-window
- x11-graphics-initialize
- x11-graphics-close)
+ with-graphics-line-style)
(initialization (initialize-package!)))
(define-package (runtime state-space)