view lisp/term/vt100.el @ 1776:20c6f4aa5843

Make scrollbar structures into lisp objects, so that they can be GC'd; this allows windows and scrollbars can refer to each other without worrying about dangling pointers. * xterm.h (struct x_display): vertical_scrollbars and judge_timestamp members deleted. (struct scrollbar): Redesigned to be a template for a Lisp_Vector. (SCROLLBAR_VEC_SIZE, XSCROLLBAR, SCROLLBAR_PACK, SCROLLBAR_UNPACK, SCROLLBAR_X_WINDOW, SET_SCROLLBAR_X_WINDOW, VERTICAL_SCROLLBAR_INSIDE_WIDTH, VERTICAL_SCROLLBAR_TOP_RANGE, VERTICAL_SCROLLBAR_INSIDE_HEIGHT, VERTICAL_SCROLLBAR_MIN_HANDLE): New macros, to help deal with the lispy structures, and deal with the graphics. * frame.h (WINDOW_VERTICAL_SCROLLBAR): Macro deleted. (struct frame): New fields `scrollbars' and `condemned_scrollbars', for use by the scrollbar implementation. [MULTI_FRAME and not MULTI_FRAME] (FRAME_SCROLLBARS, FRAME_CONDEMNED_SCROLLBARS): Accessors for the new field. * window.h (struct window): Doc fix for vertical_scrollbar field. * frame.c (make_frame): Initialize the `scrollbars' and `condemned_scrollbars' fields of the new frame. * alloc.c (mark_object): Mark the `scrollbars' and `condemned_scrollbars' slots of frames. * xterm.c (x_window_to_scrollbar): Scrollbars are chained on frames' scrollbar field, not their x.display->vertical_scrollbars field. (x_scrollbar_create, x_scrollbar_set_handle, x_scrollbar_move, x_scrollbar_remove, XTset_vertical_scrollbar, XTcondemn_scrollbars, XTredeem_scrollbar, XTjudge_scrollbars, x_scrollbar_expose, x_scrollbar_handle_click, x_scrollbar_handle_motion): Substantially rewritten to correct typos and brainos, and to accomodate the lispy structures. * frame.h (FRAME_SAMPLE_VISIBILITY): Make sure frame is marked as garbaged whenever it goes from invisible to visible. * dispextern.h (frame_garbaged): Move extern declaration from here... * frame.h (frame_garbaged): ... to here. The FRAME_SAMPLE_VISIBILITY macro uses it now, and this seems to be just as modular. Make a new page, just for this and message_buf_print. (struct frame): Doc fix for the `visible' field. * process.c: #include "frame.h" instead of "dispextern.h"; the only thing we care about from it is the frame_garbaged declaration. * ymakefile: Note dependency change.
author Jim Blandy <jimb@redhat.com>
date Thu, 14 Jan 1993 15:09:51 +0000
parents c2dbf1fe0506
children 505f87093028
line wrap: on
line source

;;;; Define VT100 function key escape sequences in function-key-map.


;;; CSI sequences - those that start with "\e[".
(define-prefix-command 'vt100-CSI-prefix)
(define-key function-key-map "\e[" 'vt100-CSI-prefix)

(define-key vt100-CSI-prefix "A" [up])
(define-key vt100-CSI-prefix "B" [down])
(define-key vt100-CSI-prefix "C" [right])
(define-key vt100-CSI-prefix "D" [left])

(defun enable-arrow-keys ()
  "Enable the use of the VT100 arrow keys for cursor motion.
Because of the nature of the VT100, this unavoidably breaks
the standard Emacs command ESC [; therefore, it is not done by default,
but only if you give this command."
  (interactive)
  (global-unset-key "\e["))



;;; SS3 sequences - those that start with "\eO".
(define-prefix-command 'vt100-SS3-prefix)
(define-key function-key-map "\eO" 'vt100-SS3-prefix)

(define-key vt100-SS3-prefix "A" [up])
(define-key vt100-SS3-prefix "B" [down])		; down-arrow
(define-key vt100-SS3-prefix "C" [right])		; right-arrow
(define-key vt100-SS3-prefix "D" [left])		; left-arrow
(define-key vt100-SS3-prefix "M" [kp-enter])       	; Enter
(define-key vt100-SS3-prefix "P" [kp-f1])	   	; PF1  
(define-key vt100-SS3-prefix "Q" [kp-f2])	   	; PF2  
(define-key vt100-SS3-prefix "R" [kp-f3])	   	; PF3  
(define-key vt100-SS3-prefix "S" [kp-f4])	   	; PF4  
(define-key vt100-SS3-prefix "l" [kp-separator])   	; ,
(define-key vt100-SS3-prefix "m" [kp-subtract])    	; -
(define-key vt100-SS3-prefix "n" [kp-period])		; .
(define-key vt100-SS3-prefix "p" [kp-0])		; 0
(define-key vt100-SS3-prefix "q" [kp-1])		; 1
(define-key vt100-SS3-prefix "r" [kp-2])		; 2
(define-key vt100-SS3-prefix "s" [kp-3])		; 3
(define-key vt100-SS3-prefix "t" [kp-4])		; 4
(define-key vt100-SS3-prefix "u" [kp-5])		; 5
(define-key vt100-SS3-prefix "v" [kp-6])		; 6
(define-key vt100-SS3-prefix "w" [kp-7])		; 7
(define-key vt100-SS3-prefix "x" [kp-8])		; 8
(define-key vt100-SS3-prefix "y" [kp-9])		; 9
					   	   

;;; Controlling the screen width.
(defconst vt100-wide-mode (= (frame-width) 132)
  "t if vt100 is in 132-column mode.")

(defun vt100-wide-mode (&optional arg)
  "Toggle 132/80 column mode for vt100s."
 (interactive "P")
 (setq vt100-wide-mode 
	(if (null arg) (not vt100-wide-mode)
	  (> (prefix-numeric-value arg) 0)))
 (send-string-to-terminal (if vt100-wide-mode "\e[?3h" "\e[?3l"))
 (set-frame-width (if vt100-wide-mode 132 80)))