scratch/edwin/winout.scm

113 lines
4.0 KiB
Scheme
Raw Permalink Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#| -*-Scheme-*-
Copyright (C) 1986, 1987, 1988, 1989, 1990, 1991, 1992, 1993, 1994,
1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005,
2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2016,
2017, 2018, 2019, 2020 Massachusetts Institute of Technology
This file is part of MIT/GNU Scheme.
MIT/GNU Scheme is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or (at
your option) any later version.
MIT/GNU Scheme is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
General Public License for more details.
You should have received a copy of the GNU General Public License
along with MIT/GNU Scheme; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301,
USA.
|#
;;;; Buffer I/O Ports
;;; package: (edwin window-output-port)
(define (with-output-to-current-point thunk)
(with-output-to-window-point (current-window) thunk))
(define (with-output-to-window-point window thunk)
(parameterize ((current-output-port (window-output-port window)))
(thunk)))
(define (window-output-port window)
(make-port window-output-port-type window))
(define (operation/write-char port char)
(guarantee 8-bit-char? char)
(let ((window (port/state port)))
(let ((buffer (window-buffer window))
(point (window-point window)))
(if (and (null? (cdr (buffer-windows buffer)))
(line-end? point)
(buffer-auto-save-modified? buffer)
(or (not (window-needs-redisplay? window))
(window-direct-update! window #f)))
(cond ((and (group-end? point)
(char=? char #\newline)
(< (1+ (window-point-y window)) (window-y-size window)))
(window-direct-output-insert-newline! window))
((and (not (char=? char #\newline))
(not (char=? char #\tab))
(let ((image (window-char->image window char)))
(and (= (string-length image) 1)
(char=? (string-ref image 0) char)))
;; above 3 expressions replace (char-graphic? char)
(< (1+ (window-point-x window)) (window-x-size window)))
(region-insert-char! point char)
(window-direct-output-insert-char! window char))
(else
(region-insert-char! point char)))
(region-insert-char! point char)))))
(define (operation/write-substring port string start end)
(if (string? string)
(let ((window (port/state port)))
(let ((buffer (window-buffer window))
(point (window-point window)))
(if (and (null? (cdr (buffer-windows buffer)))
(line-end? point)
(buffer-auto-save-modified? buffer)
(or (not (window-needs-redisplay? window))
(window-direct-update! window #f))
(let loop ((i (- end 1)))
(or (< i start)
(let ((char (string-ref string i)))
(and (not (char=? char #\newline))
(not (char=? char #\tab))
(let ((image (window-char->image window char)))
(and (= (string-length image) 1)
(char=? (string-ref image 0) char)
(loop (- i 1))))))))
(< (+ (- end start) (window-point-x window))
(window-x-size window)))
(window-direct-output-insert-substring! window string start end)
(region-insert-substring! point string start end))))
(generic-port-operation:write-substring port string start end)))
(define (operation/flush-output port)
(let ((window (port/state port)))
(if (window-needs-redisplay? window)
(window-direct-update! window #f))))
(define (operation/x-size port)
(window-x-size (port/state port)))
(define (operation/write-self port output)
(write-string " to window " output)
(write (port/state port) output))
(define window-output-port-type
(make-port-type `((FLUSH-OUTPUT ,operation/flush-output)
(WRITE-CHAR ,operation/write-char)
(WRITE-SELF ,operation/write-self)
(WRITE-SUBSTRING ,operation/write-substring)
(X-SIZE ,operation/x-size))
#f))