]> code.delx.au - gnu-emacs/blob - src/term.c
Include "buffer.h" and "character.h".
[gnu-emacs] / src / term.c
1 /* Terminal control module for terminals described by TERMCAP
2 Copyright (C) 1985, 86, 87, 93, 94, 95, 98, 2000, 2001
3 Free Software Foundation, Inc.
4
5 This file is part of GNU Emacs.
6
7 GNU Emacs is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2, or (at your option)
10 any later version.
11
12 GNU Emacs is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with GNU Emacs; see the file COPYING. If not, write to
19 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
20 Boston, MA 02111-1307, USA. */
21
22 /* New redisplay, TTY faces by Gerd Moellmann <gerd@gnu.org>. */
23
24 #include <config.h>
25 #include <stdio.h>
26 #include <ctype.h>
27 #include <string.h>
28
29 #include "termchar.h"
30 #include "termopts.h"
31 #include "lisp.h"
32 #include "buffer.h"
33 #include "character.h"
34 #include "charset.h"
35 #include "coding.h"
36 #include "keyboard.h"
37 #include "frame.h"
38 #include "disptab.h"
39 #include "termhooks.h"
40 #include "dispextern.h"
41 #include "window.h"
42 #include "keymap.h"
43
44 /* For now, don't try to include termcap.h. On some systems,
45 configure finds a non-standard termcap.h that the main build
46 won't find. */
47
48 #if defined HAVE_TERMCAP_H && 0
49 #include <termcap.h>
50 #else
51 extern void tputs P_ ((const char *, int, int (*)(int)));
52 extern int tgetent P_ ((char *, const char *));
53 extern int tgetflag P_ ((char *id));
54 extern int tgetnum P_ ((char *id));
55 #endif
56
57 #include "cm.h"
58 #ifdef HAVE_X_WINDOWS
59 #include "xterm.h"
60 #endif
61 #ifdef macintosh
62 #include "macterm.h"
63 #endif
64
65 static void turn_on_face P_ ((struct frame *, int face_id));
66 static void turn_off_face P_ ((struct frame *, int face_id));
67 static void tty_show_cursor P_ ((void));
68 static void tty_hide_cursor P_ ((void));
69
70 #define OUTPUT(a) \
71 tputs (a, (int) (FRAME_HEIGHT (XFRAME (selected_frame)) - curY), cmputc)
72 #define OUTPUT1(a) tputs (a, 1, cmputc)
73 #define OUTPUTL(a, lines) tputs (a, lines, cmputc)
74
75 #define OUTPUT_IF(a) \
76 do { \
77 if (a) \
78 tputs (a, (int) (FRAME_HEIGHT (XFRAME (selected_frame)) \
79 - curY), cmputc); \
80 } while (0)
81
82 #define OUTPUT1_IF(a) do { if (a) tputs (a, 1, cmputc); } while (0)
83
84 /* Function to use to ring the bell. */
85
86 Lisp_Object Vring_bell_function;
87
88 /* Terminal characteristics that higher levels want to look at.
89 These are all extern'd in termchar.h */
90
91 int must_write_spaces; /* Nonzero means spaces in the text
92 must actually be output; can't just skip
93 over some columns to leave them blank. */
94 int min_padding_speed; /* Speed below which no padding necessary */
95
96 int line_ins_del_ok; /* Terminal can insert and delete lines */
97 int char_ins_del_ok; /* Terminal can insert and delete chars */
98 int scroll_region_ok; /* Terminal supports setting the
99 scroll window */
100 int scroll_region_cost; /* Cost of setting a scroll window,
101 measured in characters */
102 int memory_below_frame; /* Terminal remembers lines
103 scrolled off bottom */
104 int fast_clear_end_of_line; /* Terminal has a `ce' string */
105
106 /* Nonzero means no need to redraw the entire frame on resuming
107 a suspended Emacs. This is useful on terminals with multiple pages,
108 where one page is used for Emacs and another for all else. */
109
110 int no_redraw_on_reenter;
111
112 /* Hook functions that you can set to snap out the functions in this file.
113 These are all extern'd in termhooks.h */
114
115 void (*cursor_to_hook) P_ ((int, int));
116 void (*raw_cursor_to_hook) P_ ((int, int));
117 void (*clear_to_end_hook) P_ ((void));
118 void (*clear_frame_hook) P_ ((void));
119 void (*clear_end_of_line_hook) P_ ((int));
120
121 void (*ins_del_lines_hook) P_ ((int, int));
122
123 void (*delete_glyphs_hook) P_ ((int));
124
125 void (*ring_bell_hook) P_ ((void));
126
127 void (*reset_terminal_modes_hook) P_ ((void));
128 void (*set_terminal_modes_hook) P_ ((void));
129 void (*update_begin_hook) P_ ((struct frame *));
130 void (*update_end_hook) P_ ((struct frame *));
131 void (*set_terminal_window_hook) P_ ((int));
132 void (*insert_glyphs_hook) P_ ((struct glyph *, int));
133 void (*write_glyphs_hook) P_ ((struct glyph *, int));
134 void (*delete_glyphs_hook) P_ ((int));
135
136 int (*read_socket_hook) P_ ((int, struct input_event *, int, int));
137
138 void (*frame_up_to_date_hook) P_ ((struct frame *));
139
140 /* Return the current position of the mouse.
141
142 Set *f to the frame the mouse is in, or zero if the mouse is in no
143 Emacs frame. If it is set to zero, all the other arguments are
144 garbage.
145
146 If the motion started in a scroll bar, set *bar_window to the
147 scroll bar's window, *part to the part the mouse is currently over,
148 *x to the position of the mouse along the scroll bar, and *y to the
149 overall length of the scroll bar.
150
151 Otherwise, set *bar_window to Qnil, and *x and *y to the column and
152 row of the character cell the mouse is over.
153
154 Set *time to the time the mouse was at the returned position.
155
156 This should clear mouse_moved until the next motion
157 event arrives. */
158
159 void (*mouse_position_hook) P_ ((FRAME_PTR *f, int insist,
160 Lisp_Object *bar_window,
161 enum scroll_bar_part *part,
162 Lisp_Object *x,
163 Lisp_Object *y,
164 unsigned long *time));
165
166 /* When reading from a minibuffer in a different frame, Emacs wants
167 to shift the highlight from the selected frame to the mini-buffer's
168 frame; under X, this means it lies about where the focus is.
169 This hook tells the window system code to re-decide where to put
170 the highlight. */
171
172 void (*frame_rehighlight_hook) P_ ((FRAME_PTR f));
173
174 /* If we're displaying frames using a window system that can stack
175 frames on top of each other, this hook allows you to bring a frame
176 to the front, or bury it behind all the other windows. If this
177 hook is zero, that means the device we're displaying on doesn't
178 support overlapping frames, so there's no need to raise or lower
179 anything.
180
181 If RAISE is non-zero, F is brought to the front, before all other
182 windows. If RAISE is zero, F is sent to the back, behind all other
183 windows. */
184
185 void (*frame_raise_lower_hook) P_ ((FRAME_PTR f, int raise));
186
187 /* Set the vertical scroll bar for WINDOW to have its upper left corner
188 at (TOP, LEFT), and be LENGTH rows high. Set its handle to
189 indicate that we are displaying PORTION characters out of a total
190 of WHOLE characters, starting at POSITION. If WINDOW doesn't yet
191 have a scroll bar, create one for it. */
192
193 void (*set_vertical_scroll_bar_hook)
194 P_ ((struct window *window,
195 int portion, int whole, int position));
196
197
198 /* The following three hooks are used when we're doing a thorough
199 redisplay of the frame. We don't explicitly know which scroll bars
200 are going to be deleted, because keeping track of when windows go
201 away is a real pain - can you say set-window-configuration?
202 Instead, we just assert at the beginning of redisplay that *all*
203 scroll bars are to be removed, and then save scroll bars from the
204 fiery pit when we actually redisplay their window. */
205
206 /* Arrange for all scroll bars on FRAME to be removed at the next call
207 to `*judge_scroll_bars_hook'. A scroll bar may be spared if
208 `*redeem_scroll_bar_hook' is applied to its window before the judgment.
209
210 This should be applied to each frame each time its window tree is
211 redisplayed, even if it is not displaying scroll bars at the moment;
212 if the HAS_SCROLL_BARS flag has just been turned off, only calling
213 this and the judge_scroll_bars_hook will get rid of them.
214
215 If non-zero, this hook should be safe to apply to any frame,
216 whether or not it can support scroll bars, and whether or not it is
217 currently displaying them. */
218
219 void (*condemn_scroll_bars_hook) P_ ((FRAME_PTR frame));
220
221 /* Unmark WINDOW's scroll bar for deletion in this judgement cycle.
222 Note that it's okay to redeem a scroll bar that is not condemned. */
223
224 void (*redeem_scroll_bar_hook) P_ ((struct window *window));
225
226 /* Remove all scroll bars on FRAME that haven't been saved since the
227 last call to `*condemn_scroll_bars_hook'.
228
229 This should be applied to each frame after each time its window
230 tree is redisplayed, even if it is not displaying scroll bars at the
231 moment; if the HAS_SCROLL_BARS flag has just been turned off, only
232 calling this and condemn_scroll_bars_hook will get rid of them.
233
234 If non-zero, this hook should be safe to apply to any frame,
235 whether or not it can support scroll bars, and whether or not it is
236 currently displaying them. */
237
238 void (*judge_scroll_bars_hook) P_ ((FRAME_PTR FRAME));
239
240 /* Hook to call in estimate_mode_line_height, if any. */
241
242 int (* estimate_mode_line_height_hook) P_ ((struct frame *f, enum face_id));
243
244
245 /* Strings, numbers and flags taken from the termcap entry. */
246
247 char *TS_ins_line; /* "al" */
248 char *TS_ins_multi_lines; /* "AL" (one parameter, # lines to insert) */
249 char *TS_bell; /* "bl" */
250 char *TS_clr_to_bottom; /* "cd" */
251 char *TS_clr_line; /* "ce", clear to end of line */
252 char *TS_clr_frame; /* "cl" */
253 char *TS_set_scroll_region; /* "cs" (2 params, first line and last line) */
254 char *TS_set_scroll_region_1; /* "cS" (4 params: total lines,
255 lines above scroll region, lines below it,
256 total lines again) */
257 char *TS_del_char; /* "dc" */
258 char *TS_del_multi_chars; /* "DC" (one parameter, # chars to delete) */
259 char *TS_del_line; /* "dl" */
260 char *TS_del_multi_lines; /* "DL" (one parameter, # lines to delete) */
261 char *TS_delete_mode; /* "dm", enter character-delete mode */
262 char *TS_end_delete_mode; /* "ed", leave character-delete mode */
263 char *TS_end_insert_mode; /* "ei", leave character-insert mode */
264 char *TS_ins_char; /* "ic" */
265 char *TS_ins_multi_chars; /* "IC" (one parameter, # chars to insert) */
266 char *TS_insert_mode; /* "im", enter character-insert mode */
267 char *TS_pad_inserted_char; /* "ip". Just padding, no commands. */
268 char *TS_end_keypad_mode; /* "ke" */
269 char *TS_keypad_mode; /* "ks" */
270 char *TS_pad_char; /* "pc", char to use as padding */
271 char *TS_repeat; /* "rp" (2 params, # times to repeat
272 and character to be repeated) */
273 char *TS_end_standout_mode; /* "se" */
274 char *TS_fwd_scroll; /* "sf" */
275 char *TS_standout_mode; /* "so" */
276 char *TS_rev_scroll; /* "sr" */
277 char *TS_end_termcap_modes; /* "te" */
278 char *TS_termcap_modes; /* "ti" */
279 char *TS_visible_bell; /* "vb" */
280 char *TS_cursor_normal; /* "ve" */
281 char *TS_cursor_visible; /* "vs" */
282 char *TS_cursor_invisible; /* "vi" */
283 char *TS_set_window; /* "wi" (4 params, start and end of window,
284 each as vpos and hpos) */
285
286 /* Value of the "NC" (no_color_video) capability, or 0 if not
287 present. */
288
289 static int TN_no_color_video;
290
291 /* Meaning of bits in no_color_video. Each bit set means that the
292 corresponding attribute cannot be combined with colors. */
293
294 enum no_color_bit
295 {
296 NC_STANDOUT = 1 << 0,
297 NC_UNDERLINE = 1 << 1,
298 NC_REVERSE = 1 << 2,
299 NC_BLINK = 1 << 3,
300 NC_DIM = 1 << 4,
301 NC_BOLD = 1 << 5,
302 NC_INVIS = 1 << 6,
303 NC_PROTECT = 1 << 7,
304 NC_ALT_CHARSET = 1 << 8
305 };
306
307 /* "md" -- turn on bold (extra bright mode). */
308
309 char *TS_enter_bold_mode;
310
311 /* "mh" -- turn on half-bright mode. */
312
313 char *TS_enter_dim_mode;
314
315 /* "mb" -- enter blinking mode. */
316
317 char *TS_enter_blink_mode;
318
319 /* "mr" -- enter reverse video mode. */
320
321 char *TS_enter_reverse_mode;
322
323 /* "us"/"ue" -- start/end underlining. */
324
325 char *TS_exit_underline_mode, *TS_enter_underline_mode;
326
327 /* "as"/"ae" -- start/end alternate character set. Not really
328 supported, yet. */
329
330 char *TS_enter_alt_charset_mode, *TS_exit_alt_charset_mode;
331
332 /* "me" -- switch appearances off. */
333
334 char *TS_exit_attribute_mode;
335
336 /* "Co" -- number of colors. */
337
338 int TN_max_colors;
339
340 /* "pa" -- max. number of color pairs on screen. Not handled yet.
341 Could be a problem if not equal to TN_max_colors * TN_max_colors. */
342
343 int TN_max_pairs;
344
345 /* "op" -- SVr4 set default pair to its original value. */
346
347 char *TS_orig_pair;
348
349 /* "AF"/"AB" or "Sf"/"Sb"-- set ANSI or SVr4 foreground/background color.
350 1 param, the color index. */
351
352 char *TS_set_foreground, *TS_set_background;
353
354 int TF_hazeltine; /* termcap hz flag. */
355 int TF_insmode_motion; /* termcap mi flag: can move while in insert mode. */
356 int TF_standout_motion; /* termcap mi flag: can move while in standout mode. */
357 int TF_underscore; /* termcap ul flag: _ underlines if over-struck on
358 non-blank position. Must clear before writing _. */
359 int TF_teleray; /* termcap xt flag: many weird consequences.
360 For t1061. */
361
362 static int RPov; /* # chars to start a TS_repeat */
363
364 static int delete_in_insert_mode; /* delete mode == insert mode */
365
366 static int se_is_so; /* 1 if same string both enters and leaves
367 standout mode */
368
369 /* internal state */
370
371 /* The largest frame width in any call to calculate_costs. */
372
373 int max_frame_width;
374
375 /* The largest frame height in any call to calculate_costs. */
376
377 int max_frame_height;
378
379 int costs_set = 0; /* Nonzero if costs have been calculated. */
380
381 int insert_mode; /* Nonzero when in insert mode. */
382 int standout_mode; /* Nonzero when in standout mode. */
383
384 /* Size of window specified by higher levels.
385 This is the number of lines, from the top of frame downwards,
386 which can participate in insert-line/delete-line operations.
387
388 Effectively it excludes the bottom frame_height - specified_window_size
389 lines from those operations. */
390
391 int specified_window;
392
393 /* Frame currently being redisplayed; 0 if not currently redisplaying.
394 (Direct output does not count). */
395
396 FRAME_PTR updating_frame;
397
398 /* Provided for lisp packages. */
399
400 static int system_uses_terminfo;
401
402 /* Flag used in tty_show/hide_cursor. */
403
404 static int tty_cursor_hidden;
405
406 char *tparam ();
407
408 extern char *tgetstr ();
409 \f
410
411 #ifdef WINDOWSNT
412 /* We aren't X windows, but we aren't termcap either. This makes me
413 uncertain as to what value to use for frame.output_method. For
414 this file, we'll define FRAME_TERMCAP_P to be zero so that our
415 output hooks get called instead of the termcap functions. Probably
416 the best long-term solution is to define an output_windows_nt... */
417
418 #undef FRAME_TERMCAP_P
419 #define FRAME_TERMCAP_P(_f_) 0
420 #endif /* WINDOWSNT */
421
422 void
423 ring_bell ()
424 {
425 if (!NILP (Vring_bell_function))
426 {
427 Lisp_Object function;
428
429 /* Temporarily set the global variable to nil
430 so that if we get an error, it stays nil
431 and we don't call it over and over.
432
433 We don't specbind it, because that would carefully
434 restore the bad value if there's an error
435 and make the loop of errors happen anyway. */
436
437 function = Vring_bell_function;
438 Vring_bell_function = Qnil;
439
440 call0 (function);
441
442 Vring_bell_function = function;
443 }
444 else if (!FRAME_TERMCAP_P (XFRAME (selected_frame)))
445 (*ring_bell_hook) ();
446 else
447 OUTPUT (TS_visible_bell && visible_bell ? TS_visible_bell : TS_bell);
448 }
449
450 void
451 set_terminal_modes ()
452 {
453 if (FRAME_TERMCAP_P (XFRAME (selected_frame)))
454 {
455 OUTPUT_IF (TS_termcap_modes);
456 OUTPUT_IF (TS_cursor_visible);
457 OUTPUT_IF (TS_keypad_mode);
458 losecursor ();
459 }
460 else
461 (*set_terminal_modes_hook) ();
462 }
463
464 void
465 reset_terminal_modes ()
466 {
467 if (FRAME_TERMCAP_P (XFRAME (selected_frame)))
468 {
469 turn_off_highlight ();
470 turn_off_insert ();
471 OUTPUT_IF (TS_end_keypad_mode);
472 OUTPUT_IF (TS_cursor_normal);
473 OUTPUT_IF (TS_end_termcap_modes);
474 OUTPUT_IF (TS_orig_pair);
475 /* Output raw CR so kernel can track the cursor hpos. */
476 cmputc ('\r');
477 }
478 else if (reset_terminal_modes_hook)
479 (*reset_terminal_modes_hook) ();
480 }
481
482 void
483 update_begin (f)
484 struct frame *f;
485 {
486 updating_frame = f;
487 if (!FRAME_TERMCAP_P (f))
488 update_begin_hook (f);
489 }
490
491 void
492 update_end (f)
493 struct frame *f;
494 {
495 if (FRAME_TERMCAP_P (f))
496 {
497 if (!XWINDOW (selected_window)->cursor_off_p)
498 tty_show_cursor ();
499 turn_off_insert ();
500 background_highlight ();
501 }
502 else
503 update_end_hook (f);
504
505 updating_frame = NULL;
506 }
507
508 void
509 set_terminal_window (size)
510 int size;
511 {
512 if (FRAME_TERMCAP_P (updating_frame))
513 {
514 specified_window = size ? size : FRAME_HEIGHT (updating_frame);
515 if (scroll_region_ok)
516 set_scroll_region (0, specified_window);
517 }
518 else
519 set_terminal_window_hook (size);
520 }
521
522 void
523 set_scroll_region (start, stop)
524 int start, stop;
525 {
526 char *buf;
527 struct frame *sf = XFRAME (selected_frame);
528
529 if (TS_set_scroll_region)
530 buf = tparam (TS_set_scroll_region, 0, 0, start, stop - 1);
531 else if (TS_set_scroll_region_1)
532 buf = tparam (TS_set_scroll_region_1, 0, 0,
533 FRAME_HEIGHT (sf), start,
534 FRAME_HEIGHT (sf) - stop,
535 FRAME_HEIGHT (sf));
536 else
537 buf = tparam (TS_set_window, 0, 0, start, 0, stop, FRAME_WIDTH (sf));
538
539 OUTPUT (buf);
540 xfree (buf);
541 losecursor ();
542 }
543
544 \f
545 static void
546 turn_on_insert ()
547 {
548 if (!insert_mode)
549 OUTPUT (TS_insert_mode);
550 insert_mode = 1;
551 }
552
553 void
554 turn_off_insert ()
555 {
556 if (insert_mode)
557 OUTPUT (TS_end_insert_mode);
558 insert_mode = 0;
559 }
560 \f
561 /* Handle highlighting. */
562
563 void
564 turn_off_highlight ()
565 {
566 if (standout_mode)
567 OUTPUT_IF (TS_end_standout_mode);
568 standout_mode = 0;
569 }
570
571 static void
572 turn_on_highlight ()
573 {
574 if (!standout_mode)
575 OUTPUT_IF (TS_standout_mode);
576 standout_mode = 1;
577 }
578
579 static void
580 toggle_highlight ()
581 {
582 if (standout_mode)
583 turn_off_highlight ();
584 else
585 turn_on_highlight ();
586 }
587
588
589 /* Make cursor invisible. */
590
591 static void
592 tty_hide_cursor ()
593 {
594 if (tty_cursor_hidden == 0)
595 {
596 tty_cursor_hidden = 1;
597 OUTPUT_IF (TS_cursor_invisible);
598 }
599 }
600
601
602 /* Ensure that cursor is visible. */
603
604 static void
605 tty_show_cursor ()
606 {
607 if (tty_cursor_hidden)
608 {
609 tty_cursor_hidden = 0;
610 OUTPUT_IF (TS_cursor_normal);
611 OUTPUT_IF (TS_cursor_visible);
612 }
613 }
614
615
616 /* Set standout mode to the state it should be in for
617 empty space inside windows. What this is,
618 depends on the user option inverse-video. */
619
620 void
621 background_highlight ()
622 {
623 if (inverse_video)
624 turn_on_highlight ();
625 else
626 turn_off_highlight ();
627 }
628
629 /* Set standout mode to the mode specified for the text to be output. */
630
631 static void
632 highlight_if_desired ()
633 {
634 if (inverse_video)
635 turn_on_highlight ();
636 else
637 turn_off_highlight ();
638 }
639 \f
640
641 /* Move cursor to row/column position VPOS/HPOS. HPOS/VPOS are
642 frame-relative coordinates. */
643
644 void
645 cursor_to (vpos, hpos)
646 int vpos, hpos;
647 {
648 struct frame *f = updating_frame ? updating_frame : XFRAME (selected_frame);
649
650 if (! FRAME_TERMCAP_P (f) && cursor_to_hook)
651 {
652 (*cursor_to_hook) (vpos, hpos);
653 return;
654 }
655
656 /* Detect the case where we are called from reset_sys_modes
657 and the costs have never been calculated. Do nothing. */
658 if (! costs_set)
659 return;
660
661 if (curY == vpos && curX == hpos)
662 return;
663 if (!TF_standout_motion)
664 background_highlight ();
665 if (!TF_insmode_motion)
666 turn_off_insert ();
667 cmgoto (vpos, hpos);
668 }
669
670 /* Similar but don't take any account of the wasted characters. */
671
672 void
673 raw_cursor_to (row, col)
674 int row, col;
675 {
676 struct frame *f = updating_frame ? updating_frame : XFRAME (selected_frame);
677 if (! FRAME_TERMCAP_P (f))
678 {
679 (*raw_cursor_to_hook) (row, col);
680 return;
681 }
682 if (curY == row && curX == col)
683 return;
684 if (!TF_standout_motion)
685 background_highlight ();
686 if (!TF_insmode_motion)
687 turn_off_insert ();
688 cmgoto (row, col);
689 }
690 \f
691 /* Erase operations */
692
693 /* clear from cursor to end of frame */
694 void
695 clear_to_end ()
696 {
697 register int i;
698
699 if (clear_to_end_hook && ! FRAME_TERMCAP_P (updating_frame))
700 {
701 (*clear_to_end_hook) ();
702 return;
703 }
704 if (TS_clr_to_bottom)
705 {
706 background_highlight ();
707 OUTPUT (TS_clr_to_bottom);
708 }
709 else
710 {
711 for (i = curY; i < FRAME_HEIGHT (XFRAME (selected_frame)); i++)
712 {
713 cursor_to (i, 0);
714 clear_end_of_line (FRAME_WIDTH (XFRAME (selected_frame)));
715 }
716 }
717 }
718
719 /* Clear entire frame */
720
721 void
722 clear_frame ()
723 {
724 struct frame *sf = XFRAME (selected_frame);
725
726 if (clear_frame_hook
727 && ! FRAME_TERMCAP_P ((updating_frame ? updating_frame : sf)))
728 {
729 (*clear_frame_hook) ();
730 return;
731 }
732 if (TS_clr_frame)
733 {
734 background_highlight ();
735 OUTPUT (TS_clr_frame);
736 cmat (0, 0);
737 }
738 else
739 {
740 cursor_to (0, 0);
741 clear_to_end ();
742 }
743 }
744
745 /* Clear from cursor to end of line.
746 Assume that the line is already clear starting at column first_unused_hpos.
747
748 Note that the cursor may be moved, on terminals lacking a `ce' string. */
749
750 void
751 clear_end_of_line (first_unused_hpos)
752 int first_unused_hpos;
753 {
754 register int i;
755
756 if (clear_end_of_line_hook
757 && ! FRAME_TERMCAP_P ((updating_frame
758 ? updating_frame
759 : XFRAME (selected_frame))))
760 {
761 (*clear_end_of_line_hook) (first_unused_hpos);
762 return;
763 }
764
765 /* Detect the case where we are called from reset_sys_modes
766 and the costs have never been calculated. Do nothing. */
767 if (! costs_set)
768 return;
769
770 if (curX >= first_unused_hpos)
771 return;
772 background_highlight ();
773 if (TS_clr_line)
774 {
775 OUTPUT1 (TS_clr_line);
776 }
777 else
778 { /* have to do it the hard way */
779 struct frame *sf = XFRAME (selected_frame);
780 turn_off_insert ();
781
782 /* Do not write in last row last col with Auto-wrap on. */
783 if (AutoWrap && curY == FRAME_HEIGHT (sf) - 1
784 && first_unused_hpos == FRAME_WIDTH (sf))
785 first_unused_hpos--;
786
787 for (i = curX; i < first_unused_hpos; i++)
788 {
789 if (termscript)
790 fputc (' ', termscript);
791 putchar (' ');
792 }
793 cmplus (first_unused_hpos - curX);
794 }
795 }
796 \f
797 /* Encode SRC_LEN glyphs starting at SRC to terminal output codes and
798 store them at DST. Do not write more than DST_LEN bytes. That may
799 require stopping before all SRC_LEN input glyphs have been
800 converted.
801
802 We store the number of glyphs actually converted in *CONSUMED. The
803 return value is the number of bytes store in DST. */
804
805 int
806 encode_terminal_code (src, dst, src_len, dst_len, consumed)
807 struct glyph *src;
808 int src_len;
809 unsigned char *dst;
810 int dst_len, *consumed;
811 {
812 struct glyph *src_start = src, *src_end = src + src_len;
813 unsigned char *dst_start = dst, *dst_end = dst + dst_len;
814 register GLYPH g;
815 unsigned char workbuf[MAX_MULTIBYTE_LENGTH], *buf;
816 int len;
817 register int tlen = GLYPH_TABLE_LENGTH;
818 register Lisp_Object *tbase = GLYPH_TABLE_BASE;
819 int result;
820 struct coding_system *coding;
821
822 /* If terminal_coding does any conversion, use it, otherwise use
823 safe_terminal_coding. We can't use CODING_REQUIRE_ENCODING here
824 because it always return 1 if the member src_multibyte is 1. */
825 coding = (terminal_coding.common_flags & CODING_REQUIRE_ENCODING_MASK
826 ? &terminal_coding
827 : &safe_terminal_coding);
828
829 while (src < src_end)
830 {
831 /* We must skip glyphs to be padded for a wide character. */
832 if (! CHAR_GLYPH_PADDING_P (*src))
833 {
834 g = GLYPH_FROM_CHAR_GLYPH (src[0]);
835
836 if (g < 0 || g >= tlen)
837 {
838 /* This glyph doesn't has an entry in Vglyph_table. */
839 if (! CHAR_VALID_P (src->u.ch, 0))
840 {
841 len = 1;
842 buf = " ";
843 coding->src_multibyte = 0;
844 }
845 else
846 {
847 len = CHAR_STRING (src->u.ch, workbuf);
848 buf = workbuf;
849 coding->src_multibyte = 1;
850 }
851 }
852 else
853 {
854 /* This glyph has an entry in Vglyph_table,
855 so process any alias before testing for simpleness. */
856 GLYPH_FOLLOW_ALIASES (tbase, tlen, g);
857
858 if (GLYPH_SIMPLE_P (tbase, tlen, g))
859 {
860 /* We set the multi-byte form of a character in G
861 (that should be an ASCII character) at
862 WORKBUF. */
863 workbuf[0] = FAST_GLYPH_CHAR (g);
864 len = 1;
865 buf = workbuf;
866 coding->src_multibyte = 0;
867 }
868 else
869 {
870 /* We have a string in Vglyph_table. */
871 len = GLYPH_LENGTH (tbase, g);
872 buf = GLYPH_STRING (tbase, g);
873 coding->src_multibyte = STRING_MULTIBYTE (tbase[g]);
874 }
875 }
876
877 coding->source = buf;
878 coding->destination = dst;
879 coding->dst_bytes = dst_end - dst;
880 encode_coding_object (coding, Qnil, 0, 0, 1, len, Qnil);
881 len -= coding->consumed;
882 dst += coding->produced;
883 if (coding->result == CODING_RESULT_INSUFFICIENT_DST)
884 /* The remaining output buffer is too short. We must
885 break the loop here without increasing SRC so that the
886 next call of this function starts from the same glyph. */
887 break;
888
889 if (len > 0)
890 {
891 /* This is the case that a code of the range 0200..0237
892 exists in buf. We must just write out such a code. */
893 buf += coding->consumed;
894 while (len--)
895 *dst++ = *buf++;
896 }
897 }
898 src++;
899 }
900
901 *consumed = src - src_start;
902 return (dst - dst_start);
903 }
904
905
906 void
907 write_glyphs (string, len)
908 register struct glyph *string;
909 register int len;
910 {
911 int produced, consumed;
912 struct frame *sf = XFRAME (selected_frame);
913 struct frame *f = updating_frame ? updating_frame : sf;
914 unsigned char conversion_buffer[1024];
915 int conversion_buffer_size = sizeof conversion_buffer;
916
917 if (write_glyphs_hook
918 && ! FRAME_TERMCAP_P (f))
919 {
920 (*write_glyphs_hook) (string, len);
921 return;
922 }
923
924 turn_off_insert ();
925 tty_hide_cursor ();
926
927 /* Don't dare write in last column of bottom line, if Auto-Wrap,
928 since that would scroll the whole frame on some terminals. */
929
930 if (AutoWrap
931 && curY + 1 == FRAME_HEIGHT (sf)
932 && (curX + len) == FRAME_WIDTH (sf))
933 len --;
934 if (len <= 0)
935 return;
936
937 cmplus (len);
938
939 /* The mode bit CODING_MODE_LAST_BLOCK should be set to 1 only at
940 the tail. */
941 terminal_coding.mode &= ~CODING_MODE_LAST_BLOCK;
942
943 while (len > 0)
944 {
945 /* Identify a run of glyphs with the same face. */
946 int face_id = string->face_id;
947 int n;
948
949 for (n = 1; n < len; ++n)
950 if (string[n].face_id != face_id)
951 break;
952
953 /* Turn appearance modes of the face of the run on. */
954 highlight_if_desired ();
955 turn_on_face (f, face_id);
956
957 while (n > 0)
958 {
959 /* We use a fixed size (1024 bytes) of conversion buffer.
960 Usually it is sufficient, but if not, we just repeat the
961 loop. */
962 produced = encode_terminal_code (string, conversion_buffer,
963 n, conversion_buffer_size,
964 &consumed);
965 if (produced > 0)
966 {
967 fwrite (conversion_buffer, 1, produced, stdout);
968 if (ferror (stdout))
969 clearerr (stdout);
970 if (termscript)
971 fwrite (conversion_buffer, 1, produced, termscript);
972 }
973 len -= consumed;
974 n -= consumed;
975 string += consumed;
976 }
977
978 /* Turn appearance modes off. */
979 turn_off_face (f, face_id);
980 turn_off_highlight ();
981 }
982
983 /* We may have to output some codes to terminate the writing. */
984 if (CODING_REQUIRE_FLUSHING (&terminal_coding))
985 {
986 terminal_coding.mode |= CODING_MODE_LAST_BLOCK;
987 terminal_coding.source = (unsigned char *) "";
988 terminal_coding.destination = conversion_buffer;
989 terminal_coding.dst_bytes = conversion_buffer_size;
990 encode_coding_object (&terminal_coding, Qnil, 0, 0, 0, 0, Qnil);
991 if (terminal_coding.produced > 0)
992 {
993 fwrite (conversion_buffer, 1, terminal_coding.produced, stdout);
994 if (ferror (stdout))
995 clearerr (stdout);
996 if (termscript)
997 fwrite (conversion_buffer, 1, terminal_coding.produced,
998 termscript);
999 }
1000 }
1001
1002 cmcheckmagic ();
1003 }
1004
1005 /* If start is zero, insert blanks instead of a string at start */
1006
1007 void
1008 insert_glyphs (start, len)
1009 register struct glyph *start;
1010 register int len;
1011 {
1012 char *buf;
1013 struct glyph *glyph = NULL;
1014 struct frame *f, *sf;
1015
1016 if (len <= 0)
1017 return;
1018
1019 if (insert_glyphs_hook)
1020 {
1021 (*insert_glyphs_hook) (start, len);
1022 return;
1023 }
1024
1025 sf = XFRAME (selected_frame);
1026 f = updating_frame ? updating_frame : sf;
1027
1028 if (TS_ins_multi_chars)
1029 {
1030 buf = tparam (TS_ins_multi_chars, 0, 0, len);
1031 OUTPUT1 (buf);
1032 xfree (buf);
1033 if (start)
1034 write_glyphs (start, len);
1035 return;
1036 }
1037
1038 turn_on_insert ();
1039 cmplus (len);
1040 /* The bit CODING_MODE_LAST_BLOCK should be set to 1 only at the tail. */
1041 terminal_coding.mode &= ~CODING_MODE_LAST_BLOCK;
1042 while (len-- > 0)
1043 {
1044 int produced, consumed;
1045 unsigned char conversion_buffer[1024];
1046 int conversion_buffer_size = sizeof conversion_buffer;
1047
1048 OUTPUT1_IF (TS_ins_char);
1049 if (!start)
1050 {
1051 conversion_buffer[0] = SPACEGLYPH;
1052 produced = 1;
1053 }
1054 else
1055 {
1056 highlight_if_desired ();
1057 turn_on_face (f, start->face_id);
1058 glyph = start;
1059 ++start;
1060 /* We must open sufficient space for a character which
1061 occupies more than one column. */
1062 while (len && CHAR_GLYPH_PADDING_P (*start))
1063 {
1064 OUTPUT1_IF (TS_ins_char);
1065 start++, len--;
1066 }
1067
1068 if (len <= 0)
1069 /* This is the last glyph. */
1070 terminal_coding.mode |= CODING_MODE_LAST_BLOCK;
1071
1072 /* The size of conversion buffer (1024 bytes) is surely
1073 sufficient for just one glyph. */
1074 produced = encode_terminal_code (glyph, conversion_buffer, 1,
1075 conversion_buffer_size, &consumed);
1076 }
1077
1078 if (produced > 0)
1079 {
1080 fwrite (conversion_buffer, 1, produced, stdout);
1081 if (ferror (stdout))
1082 clearerr (stdout);
1083 if (termscript)
1084 fwrite (conversion_buffer, 1, produced, termscript);
1085 }
1086
1087 OUTPUT1_IF (TS_pad_inserted_char);
1088 if (start)
1089 {
1090 turn_off_face (f, glyph->face_id);
1091 turn_off_highlight ();
1092 }
1093 }
1094
1095 cmcheckmagic ();
1096 }
1097
1098 void
1099 delete_glyphs (n)
1100 register int n;
1101 {
1102 char *buf;
1103 register int i;
1104
1105 if (delete_glyphs_hook && ! FRAME_TERMCAP_P (updating_frame))
1106 {
1107 (*delete_glyphs_hook) (n);
1108 return;
1109 }
1110
1111 if (delete_in_insert_mode)
1112 {
1113 turn_on_insert ();
1114 }
1115 else
1116 {
1117 turn_off_insert ();
1118 OUTPUT_IF (TS_delete_mode);
1119 }
1120
1121 if (TS_del_multi_chars)
1122 {
1123 buf = tparam (TS_del_multi_chars, 0, 0, n);
1124 OUTPUT1 (buf);
1125 xfree (buf);
1126 }
1127 else
1128 for (i = 0; i < n; i++)
1129 OUTPUT1 (TS_del_char);
1130 if (!delete_in_insert_mode)
1131 OUTPUT_IF (TS_end_delete_mode);
1132 }
1133 \f
1134 /* Insert N lines at vpos VPOS. If N is negative, delete -N lines. */
1135
1136 void
1137 ins_del_lines (vpos, n)
1138 int vpos, n;
1139 {
1140 char *multi = n > 0 ? TS_ins_multi_lines : TS_del_multi_lines;
1141 char *single = n > 0 ? TS_ins_line : TS_del_line;
1142 char *scroll = n > 0 ? TS_rev_scroll : TS_fwd_scroll;
1143 struct frame *sf;
1144
1145 register int i = n > 0 ? n : -n;
1146 register char *buf;
1147
1148 if (ins_del_lines_hook && ! FRAME_TERMCAP_P (updating_frame))
1149 {
1150 (*ins_del_lines_hook) (vpos, n);
1151 return;
1152 }
1153
1154 sf = XFRAME (selected_frame);
1155
1156 /* If the lines below the insertion are being pushed
1157 into the end of the window, this is the same as clearing;
1158 and we know the lines are already clear, since the matching
1159 deletion has already been done. So can ignore this. */
1160 /* If the lines below the deletion are blank lines coming
1161 out of the end of the window, don't bother,
1162 as there will be a matching inslines later that will flush them. */
1163 if (scroll_region_ok && vpos + i >= specified_window)
1164 return;
1165 if (!memory_below_frame && vpos + i >= FRAME_HEIGHT (sf))
1166 return;
1167
1168 if (multi)
1169 {
1170 raw_cursor_to (vpos, 0);
1171 background_highlight ();
1172 buf = tparam (multi, 0, 0, i);
1173 OUTPUT (buf);
1174 xfree (buf);
1175 }
1176 else if (single)
1177 {
1178 raw_cursor_to (vpos, 0);
1179 background_highlight ();
1180 while (--i >= 0)
1181 OUTPUT (single);
1182 if (TF_teleray)
1183 curX = 0;
1184 }
1185 else
1186 {
1187 set_scroll_region (vpos, specified_window);
1188 if (n < 0)
1189 raw_cursor_to (specified_window - 1, 0);
1190 else
1191 raw_cursor_to (vpos, 0);
1192 background_highlight ();
1193 while (--i >= 0)
1194 OUTPUTL (scroll, specified_window - vpos);
1195 set_scroll_region (0, specified_window);
1196 }
1197
1198 if (!scroll_region_ok && memory_below_frame && n < 0)
1199 {
1200 cursor_to (FRAME_HEIGHT (sf) + n, 0);
1201 clear_to_end ();
1202 }
1203 }
1204 \f
1205 /* Compute cost of sending "str", in characters,
1206 not counting any line-dependent padding. */
1207
1208 int
1209 string_cost (str)
1210 char *str;
1211 {
1212 cost = 0;
1213 if (str)
1214 tputs (str, 0, evalcost);
1215 return cost;
1216 }
1217
1218 /* Compute cost of sending "str", in characters,
1219 counting any line-dependent padding at one line. */
1220
1221 static int
1222 string_cost_one_line (str)
1223 char *str;
1224 {
1225 cost = 0;
1226 if (str)
1227 tputs (str, 1, evalcost);
1228 return cost;
1229 }
1230
1231 /* Compute per line amount of line-dependent padding,
1232 in tenths of characters. */
1233
1234 int
1235 per_line_cost (str)
1236 register char *str;
1237 {
1238 cost = 0;
1239 if (str)
1240 tputs (str, 0, evalcost);
1241 cost = - cost;
1242 if (str)
1243 tputs (str, 10, evalcost);
1244 return cost;
1245 }
1246
1247 #ifndef old
1248 /* char_ins_del_cost[n] is cost of inserting N characters.
1249 char_ins_del_cost[-n] is cost of deleting N characters.
1250 The length of this vector is based on max_frame_width. */
1251
1252 int *char_ins_del_vector;
1253
1254 #define char_ins_del_cost(f) (&char_ins_del_vector[FRAME_WIDTH ((f))])
1255 #endif
1256
1257 /* ARGSUSED */
1258 static void
1259 calculate_ins_del_char_costs (frame)
1260 FRAME_PTR frame;
1261 {
1262 int ins_startup_cost, del_startup_cost;
1263 int ins_cost_per_char, del_cost_per_char;
1264 register int i;
1265 register int *p;
1266
1267 if (TS_ins_multi_chars)
1268 {
1269 ins_cost_per_char = 0;
1270 ins_startup_cost = string_cost_one_line (TS_ins_multi_chars);
1271 }
1272 else if (TS_ins_char || TS_pad_inserted_char
1273 || (TS_insert_mode && TS_end_insert_mode))
1274 {
1275 ins_startup_cost = (30 * (string_cost (TS_insert_mode)
1276 + string_cost (TS_end_insert_mode))) / 100;
1277 ins_cost_per_char = (string_cost_one_line (TS_ins_char)
1278 + string_cost_one_line (TS_pad_inserted_char));
1279 }
1280 else
1281 {
1282 ins_startup_cost = 9999;
1283 ins_cost_per_char = 0;
1284 }
1285
1286 if (TS_del_multi_chars)
1287 {
1288 del_cost_per_char = 0;
1289 del_startup_cost = string_cost_one_line (TS_del_multi_chars);
1290 }
1291 else if (TS_del_char)
1292 {
1293 del_startup_cost = (string_cost (TS_delete_mode)
1294 + string_cost (TS_end_delete_mode));
1295 if (delete_in_insert_mode)
1296 del_startup_cost /= 2;
1297 del_cost_per_char = string_cost_one_line (TS_del_char);
1298 }
1299 else
1300 {
1301 del_startup_cost = 9999;
1302 del_cost_per_char = 0;
1303 }
1304
1305 /* Delete costs are at negative offsets */
1306 p = &char_ins_del_cost (frame)[0];
1307 for (i = FRAME_WIDTH (frame); --i >= 0;)
1308 *--p = (del_startup_cost += del_cost_per_char);
1309
1310 /* Doing nothing is free */
1311 p = &char_ins_del_cost (frame)[0];
1312 *p++ = 0;
1313
1314 /* Insert costs are at positive offsets */
1315 for (i = FRAME_WIDTH (frame); --i >= 0;)
1316 *p++ = (ins_startup_cost += ins_cost_per_char);
1317 }
1318
1319 void
1320 calculate_costs (frame)
1321 FRAME_PTR frame;
1322 {
1323 register char *f = (TS_set_scroll_region
1324 ? TS_set_scroll_region
1325 : TS_set_scroll_region_1);
1326
1327 FRAME_COST_BAUD_RATE (frame) = baud_rate;
1328
1329 scroll_region_cost = string_cost (f);
1330
1331 /* These variables are only used for terminal stuff. They are allocated
1332 once for the terminal frame of X-windows emacs, but not used afterwards.
1333
1334 char_ins_del_vector (i.e., char_ins_del_cost) isn't used because
1335 X turns off char_ins_del_ok. */
1336
1337 max_frame_height = max (max_frame_height, FRAME_HEIGHT (frame));
1338 max_frame_width = max (max_frame_width, FRAME_WIDTH (frame));
1339
1340 costs_set = 1;
1341
1342 if (char_ins_del_vector != 0)
1343 char_ins_del_vector
1344 = (int *) xrealloc (char_ins_del_vector,
1345 (sizeof (int)
1346 + 2 * max_frame_width * sizeof (int)));
1347 else
1348 char_ins_del_vector
1349 = (int *) xmalloc (sizeof (int)
1350 + 2 * max_frame_width * sizeof (int));
1351
1352 bzero (char_ins_del_vector, (sizeof (int)
1353 + 2 * max_frame_width * sizeof (int)));
1354
1355 if (f && (!TS_ins_line && !TS_del_line))
1356 do_line_insertion_deletion_costs (frame,
1357 TS_rev_scroll, TS_ins_multi_lines,
1358 TS_fwd_scroll, TS_del_multi_lines,
1359 f, f, 1);
1360 else
1361 do_line_insertion_deletion_costs (frame,
1362 TS_ins_line, TS_ins_multi_lines,
1363 TS_del_line, TS_del_multi_lines,
1364 0, 0, 1);
1365
1366 calculate_ins_del_char_costs (frame);
1367
1368 /* Don't use TS_repeat if its padding is worse than sending the chars */
1369 if (TS_repeat && per_line_cost (TS_repeat) * baud_rate < 9000)
1370 RPov = string_cost (TS_repeat);
1371 else
1372 RPov = FRAME_WIDTH (frame) * 2;
1373
1374 cmcostinit (); /* set up cursor motion costs */
1375 }
1376 \f
1377 struct fkey_table {
1378 char *cap, *name;
1379 };
1380
1381 /* Termcap capability names that correspond directly to X keysyms.
1382 Some of these (marked "terminfo") aren't supplied by old-style
1383 (Berkeley) termcap entries. They're listed in X keysym order;
1384 except we put the keypad keys first, so that if they clash with
1385 other keys (as on the IBM PC keyboard) they get overridden.
1386 */
1387
1388 static struct fkey_table keys[] =
1389 {
1390 {"kh", "home"}, /* termcap */
1391 {"kl", "left"}, /* termcap */
1392 {"ku", "up"}, /* termcap */
1393 {"kr", "right"}, /* termcap */
1394 {"kd", "down"}, /* termcap */
1395 {"%8", "prior"}, /* terminfo */
1396 {"%5", "next"}, /* terminfo */
1397 {"@7", "end"}, /* terminfo */
1398 {"@1", "begin"}, /* terminfo */
1399 {"*6", "select"}, /* terminfo */
1400 {"%9", "print"}, /* terminfo */
1401 {"@4", "execute"}, /* terminfo --- actually the `command' key */
1402 /*
1403 * "insert" --- see below
1404 */
1405 {"&8", "undo"}, /* terminfo */
1406 {"%0", "redo"}, /* terminfo */
1407 {"%7", "menu"}, /* terminfo --- actually the `options' key */
1408 {"@0", "find"}, /* terminfo */
1409 {"@2", "cancel"}, /* terminfo */
1410 {"%1", "help"}, /* terminfo */
1411 /*
1412 * "break" goes here, but can't be reliably intercepted with termcap
1413 */
1414 {"&4", "reset"}, /* terminfo --- actually `restart' */
1415 /*
1416 * "system" and "user" --- no termcaps
1417 */
1418 {"kE", "clearline"}, /* terminfo */
1419 {"kA", "insertline"}, /* terminfo */
1420 {"kL", "deleteline"}, /* terminfo */
1421 {"kI", "insertchar"}, /* terminfo */
1422 {"kD", "deletechar"}, /* terminfo */
1423 {"kB", "backtab"}, /* terminfo */
1424 /*
1425 * "kp_backtab", "kp-space", "kp-tab" --- no termcaps
1426 */
1427 {"@8", "kp-enter"}, /* terminfo */
1428 /*
1429 * "kp-f1", "kp-f2", "kp-f3" "kp-f4",
1430 * "kp-multiply", "kp-add", "kp-separator",
1431 * "kp-subtract", "kp-decimal", "kp-divide", "kp-0";
1432 * --- no termcaps for any of these.
1433 */
1434 {"K4", "kp-1"}, /* terminfo */
1435 /*
1436 * "kp-2" --- no termcap
1437 */
1438 {"K5", "kp-3"}, /* terminfo */
1439 /*
1440 * "kp-4" --- no termcap
1441 */
1442 {"K2", "kp-5"}, /* terminfo */
1443 /*
1444 * "kp-6" --- no termcap
1445 */
1446 {"K1", "kp-7"}, /* terminfo */
1447 /*
1448 * "kp-8" --- no termcap
1449 */
1450 {"K3", "kp-9"}, /* terminfo */
1451 /*
1452 * "kp-equal" --- no termcap
1453 */
1454 {"k1", "f1"},
1455 {"k2", "f2"},
1456 {"k3", "f3"},
1457 {"k4", "f4"},
1458 {"k5", "f5"},
1459 {"k6", "f6"},
1460 {"k7", "f7"},
1461 {"k8", "f8"},
1462 {"k9", "f9"}
1463 };
1464
1465 static char **term_get_fkeys_arg;
1466 static Lisp_Object term_get_fkeys_1 ();
1467
1468 /* Find the escape codes sent by the function keys for Vfunction_key_map.
1469 This function scans the termcap function key sequence entries, and
1470 adds entries to Vfunction_key_map for each function key it finds. */
1471
1472 void
1473 term_get_fkeys (address)
1474 char **address;
1475 {
1476 /* We run the body of the function (term_get_fkeys_1) and ignore all Lisp
1477 errors during the call. The only errors should be from Fdefine_key
1478 when given a key sequence containing an invalid prefix key. If the
1479 termcap defines function keys which use a prefix that is already bound
1480 to a command by the default bindings, we should silently ignore that
1481 function key specification, rather than giving the user an error and
1482 refusing to run at all on such a terminal. */
1483
1484 extern Lisp_Object Fidentity ();
1485 term_get_fkeys_arg = address;
1486 internal_condition_case (term_get_fkeys_1, Qerror, Fidentity);
1487 }
1488
1489 static Lisp_Object
1490 term_get_fkeys_1 ()
1491 {
1492 int i;
1493
1494 char **address = term_get_fkeys_arg;
1495
1496 /* This can happen if CANNOT_DUMP or with strange options. */
1497 if (!initialized)
1498 Vfunction_key_map = Fmake_sparse_keymap (Qnil);
1499
1500 for (i = 0; i < (sizeof (keys)/sizeof (keys[0])); i++)
1501 {
1502 char *sequence = tgetstr (keys[i].cap, address);
1503 if (sequence)
1504 Fdefine_key (Vfunction_key_map, build_string (sequence),
1505 Fmake_vector (make_number (1),
1506 intern (keys[i].name)));
1507 }
1508
1509 /* The uses of the "k0" capability are inconsistent; sometimes it
1510 describes F10, whereas othertimes it describes F0 and "k;" describes F10.
1511 We will attempt to politely accommodate both systems by testing for
1512 "k;", and if it is present, assuming that "k0" denotes F0, otherwise F10.
1513 */
1514 {
1515 char *k_semi = tgetstr ("k;", address);
1516 char *k0 = tgetstr ("k0", address);
1517 char *k0_name = "f10";
1518
1519 if (k_semi)
1520 {
1521 if (k0)
1522 /* Define f0 first, so that f10 takes precedence in case the
1523 key sequences happens to be the same. */
1524 Fdefine_key (Vfunction_key_map, build_string (k0),
1525 Fmake_vector (make_number (1), intern ("f0")));
1526 Fdefine_key (Vfunction_key_map, build_string (k_semi),
1527 Fmake_vector (make_number (1), intern ("f10")));
1528 }
1529 else if (k0)
1530 Fdefine_key (Vfunction_key_map, build_string (k0),
1531 Fmake_vector (make_number (1), intern (k0_name)));
1532 }
1533
1534 /* Set up cookies for numbered function keys above f10. */
1535 {
1536 char fcap[3], fkey[4];
1537
1538 fcap[0] = 'F'; fcap[2] = '\0';
1539 for (i = 11; i < 64; i++)
1540 {
1541 if (i <= 19)
1542 fcap[1] = '1' + i - 11;
1543 else if (i <= 45)
1544 fcap[1] = 'A' + i - 20;
1545 else
1546 fcap[1] = 'a' + i - 46;
1547
1548 {
1549 char *sequence = tgetstr (fcap, address);
1550 if (sequence)
1551 {
1552 sprintf (fkey, "f%d", i);
1553 Fdefine_key (Vfunction_key_map, build_string (sequence),
1554 Fmake_vector (make_number (1),
1555 intern (fkey)));
1556 }
1557 }
1558 }
1559 }
1560
1561 /*
1562 * Various mappings to try and get a better fit.
1563 */
1564 {
1565 #define CONDITIONAL_REASSIGN(cap1, cap2, sym) \
1566 if (!tgetstr (cap1, address)) \
1567 { \
1568 char *sequence = tgetstr (cap2, address); \
1569 if (sequence) \
1570 Fdefine_key (Vfunction_key_map, build_string (sequence), \
1571 Fmake_vector (make_number (1), \
1572 intern (sym))); \
1573 }
1574
1575 /* if there's no key_next keycap, map key_npage to `next' keysym */
1576 CONDITIONAL_REASSIGN ("%5", "kN", "next");
1577 /* if there's no key_prev keycap, map key_ppage to `previous' keysym */
1578 CONDITIONAL_REASSIGN ("%8", "kP", "prior");
1579 /* if there's no key_dc keycap, map key_ic to `insert' keysym */
1580 CONDITIONAL_REASSIGN ("kD", "kI", "insert");
1581 /* if there's no key_end keycap, map key_ll to 'end' keysym */
1582 CONDITIONAL_REASSIGN ("@7", "kH", "end");
1583
1584 /* IBM has their own non-standard dialect of terminfo.
1585 If the standard name isn't found, try the IBM name. */
1586 CONDITIONAL_REASSIGN ("kB", "KO", "backtab");
1587 CONDITIONAL_REASSIGN ("@4", "kJ", "execute"); /* actually "action" */
1588 CONDITIONAL_REASSIGN ("@4", "kc", "execute"); /* actually "command" */
1589 CONDITIONAL_REASSIGN ("%7", "ki", "menu");
1590 CONDITIONAL_REASSIGN ("@7", "kw", "end");
1591 CONDITIONAL_REASSIGN ("F1", "k<", "f11");
1592 CONDITIONAL_REASSIGN ("F2", "k>", "f12");
1593 CONDITIONAL_REASSIGN ("%1", "kq", "help");
1594 CONDITIONAL_REASSIGN ("*6", "kU", "select");
1595 #undef CONDITIONAL_REASSIGN
1596 }
1597
1598 return Qnil;
1599 }
1600
1601 \f
1602 /***********************************************************************
1603 Character Display Information
1604 ***********************************************************************/
1605
1606 static void append_glyph P_ ((struct it *));
1607
1608
1609 /* Append glyphs to IT's glyph_row. Called from produce_glyphs for
1610 terminal frames if IT->glyph_row != NULL. IT->c is the character
1611 for which to produce glyphs; IT->face_id contains the character's
1612 face. Padding glyphs are appended if IT->c has a IT->pixel_width >
1613 1. */
1614
1615 static void
1616 append_glyph (it)
1617 struct it *it;
1618 {
1619 struct glyph *glyph, *end;
1620 int i;
1621
1622 xassert (it->glyph_row);
1623 glyph = (it->glyph_row->glyphs[it->area]
1624 + it->glyph_row->used[it->area]);
1625 end = it->glyph_row->glyphs[1 + it->area];
1626
1627 for (i = 0;
1628 i < it->pixel_width && glyph < end;
1629 ++i)
1630 {
1631 glyph->type = CHAR_GLYPH;
1632 glyph->pixel_width = 1;
1633 glyph->u.ch = it->c;
1634 glyph->face_id = it->face_id;
1635 glyph->padding_p = i > 0;
1636 glyph->charpos = CHARPOS (it->position);
1637 glyph->object = it->object;
1638
1639 ++it->glyph_row->used[it->area];
1640 ++glyph;
1641 }
1642 }
1643
1644
1645 /* Produce glyphs for the display element described by IT. The
1646 function fills output fields of IT with pixel information like the
1647 pixel width and height of a character, and maybe produces glyphs at
1648 the same time if IT->glyph_row is non-null. See the explanation of
1649 struct display_iterator in dispextern.h for an overview. */
1650
1651 void
1652 produce_glyphs (it)
1653 struct it *it;
1654 {
1655 /* If a hook is installed, let it do the work. */
1656 xassert (it->what == IT_CHARACTER
1657 || it->what == IT_COMPOSITION
1658 || it->what == IT_IMAGE
1659 || it->what == IT_STRETCH);
1660
1661 /* Nothing but characters are supported on terminal frames. For a
1662 composition sequence, it->c is the first character of the
1663 sequence. */
1664 xassert (it->what == IT_CHARACTER
1665 || it->what == IT_COMPOSITION);
1666
1667 if (it->c >= 040 && it->c < 0177)
1668 {
1669 it->pixel_width = it->nglyphs = 1;
1670 if (it->glyph_row)
1671 append_glyph (it);
1672 }
1673 else if (it->c == '\n')
1674 it->pixel_width = it->nglyphs = 0;
1675 else if (it->c == '\t')
1676 {
1677 int absolute_x = (it->current_x
1678 + it->continuation_lines_width);
1679 int next_tab_x
1680 = (((1 + absolute_x + it->tab_width - 1)
1681 / it->tab_width)
1682 * it->tab_width);
1683 int nspaces;
1684
1685 /* If part of the TAB has been displayed on the previous line
1686 which is continued now, continuation_lines_width will have
1687 been incremented already by the part that fitted on the
1688 continued line. So, we will get the right number of spaces
1689 here. */
1690 nspaces = next_tab_x - absolute_x;
1691
1692 if (it->glyph_row)
1693 {
1694 int n = nspaces;
1695
1696 it->c = ' ';
1697 it->pixel_width = it->len = 1;
1698
1699 while (n--)
1700 append_glyph (it);
1701
1702 it->c = '\t';
1703 }
1704
1705 it->pixel_width = nspaces;
1706 it->nglyphs = nspaces;
1707 }
1708 else if (SINGLE_BYTE_CHAR_P (it->c))
1709 {
1710 /* Coming here means that it->c is from display table, thus we
1711 must send the code as is to the terminal. Although there's
1712 no way to know how many columns it occupies on a screen, it
1713 is a good assumption that a single byte code has 1-column
1714 width. */
1715 it->pixel_width = it->nglyphs = 1;
1716 if (it->glyph_row)
1717 append_glyph (it);
1718 }
1719 else
1720 {
1721 it->pixel_width = CHAR_WIDTH (it->c);
1722 it->nglyphs = it->pixel_width;
1723
1724 if (it->glyph_row)
1725 append_glyph (it);
1726 }
1727
1728 /* Advance current_x by the pixel width as a convenience for
1729 the caller. */
1730 if (it->area == TEXT_AREA)
1731 it->current_x += it->pixel_width;
1732 it->ascent = it->max_ascent = it->phys_ascent = it->max_phys_ascent = 0;
1733 it->descent = it->max_descent = it->phys_descent = it->max_phys_descent = 1;
1734 }
1735
1736
1737 /* Get information about special display element WHAT in an
1738 environment described by IT. WHAT is one of IT_TRUNCATION or
1739 IT_CONTINUATION. Maybe produce glyphs for WHAT if IT has a
1740 non-null glyph_row member. This function ensures that fields like
1741 face_id, c, len of IT are left untouched. */
1742
1743 void
1744 produce_special_glyphs (it, what)
1745 struct it *it;
1746 enum display_element_type what;
1747 {
1748 struct it temp_it;
1749
1750 temp_it = *it;
1751 temp_it.dp = NULL;
1752 temp_it.what = IT_CHARACTER;
1753 temp_it.len = 1;
1754 temp_it.object = make_number (0);
1755 bzero (&temp_it.current, sizeof temp_it.current);
1756
1757 if (what == IT_CONTINUATION)
1758 {
1759 /* Continuation glyph. */
1760 if (it->dp
1761 && INTEGERP (DISP_CONTINUE_GLYPH (it->dp))
1762 && GLYPH_CHAR_VALID_P (XINT (DISP_CONTINUE_GLYPH (it->dp))))
1763 {
1764 temp_it.c = FAST_GLYPH_CHAR (XINT (DISP_CONTINUE_GLYPH (it->dp)));
1765 temp_it.len = CHAR_BYTES (temp_it.c);
1766 }
1767 else
1768 temp_it.c = '\\';
1769
1770 produce_glyphs (&temp_it);
1771 it->pixel_width = temp_it.pixel_width;
1772 it->nglyphs = temp_it.pixel_width;
1773 }
1774 else if (what == IT_TRUNCATION)
1775 {
1776 /* Truncation glyph. */
1777 if (it->dp
1778 && INTEGERP (DISP_TRUNC_GLYPH (it->dp))
1779 && GLYPH_CHAR_VALID_P (XINT (DISP_TRUNC_GLYPH (it->dp))))
1780 {
1781 temp_it.c = FAST_GLYPH_CHAR (XINT (DISP_TRUNC_GLYPH (it->dp)));
1782 temp_it.len = CHAR_BYTES (temp_it.c);
1783 }
1784 else
1785 temp_it.c = '$';
1786
1787 produce_glyphs (&temp_it);
1788 it->pixel_width = temp_it.pixel_width;
1789 it->nglyphs = temp_it.pixel_width;
1790 }
1791 else
1792 abort ();
1793 }
1794
1795
1796 /* Return an estimation of the pixel height of mode or top lines on
1797 frame F. FACE_ID specifies what line's height to estimate. */
1798
1799 int
1800 estimate_mode_line_height (f, face_id)
1801 struct frame *f;
1802 enum face_id face_id;
1803 {
1804 if (estimate_mode_line_height_hook)
1805 return estimate_mode_line_height_hook (f, face_id);
1806 else
1807 return 1;
1808 }
1809
1810
1811 \f
1812 /***********************************************************************
1813 Faces
1814 ***********************************************************************/
1815
1816 /* Value is non-zero if attribute ATTR may be used. ATTR should be
1817 one of the enumerators from enum no_color_bit, or a bit set built
1818 from them. Some display attributes may not be used together with
1819 color; the termcap capability `NC' specifies which ones. */
1820
1821 #define MAY_USE_WITH_COLORS_P(ATTR) \
1822 (TN_max_colors > 0 \
1823 ? (TN_no_color_video & (ATTR)) == 0 \
1824 : 1)
1825
1826 /* Turn appearances of face FACE_ID on tty frame F on. */
1827
1828 static void
1829 turn_on_face (f, face_id)
1830 struct frame *f;
1831 int face_id;
1832 {
1833 struct face *face = FACE_FROM_ID (f, face_id);
1834 long fg = face->foreground;
1835 long bg = face->background;
1836
1837 /* Do this first because TS_end_standout_mode may be the same
1838 as TS_exit_attribute_mode, which turns all appearances off. */
1839 if (MAY_USE_WITH_COLORS_P (NC_REVERSE))
1840 {
1841 if (TN_max_colors > 0)
1842 {
1843 if (fg >= 0 && bg >= 0)
1844 {
1845 /* If the terminal supports colors, we can set them
1846 below without using reverse video. The face's fg
1847 and bg colors are set as they should appear on
1848 the screen, i.e. they take the inverse-video'ness
1849 of the face already into account. */
1850 }
1851 else if (inverse_video)
1852 {
1853 if (fg == FACE_TTY_DEFAULT_FG_COLOR
1854 || bg == FACE_TTY_DEFAULT_BG_COLOR)
1855 toggle_highlight ();
1856 }
1857 else
1858 {
1859 if (fg == FACE_TTY_DEFAULT_BG_COLOR
1860 || bg == FACE_TTY_DEFAULT_FG_COLOR)
1861 toggle_highlight ();
1862 }
1863 }
1864 else
1865 {
1866 /* If we can't display colors, use reverse video
1867 if the face specifies that. */
1868 if (inverse_video)
1869 {
1870 if (fg == FACE_TTY_DEFAULT_FG_COLOR
1871 || bg == FACE_TTY_DEFAULT_BG_COLOR)
1872 toggle_highlight ();
1873 }
1874 else
1875 {
1876 if (fg == FACE_TTY_DEFAULT_BG_COLOR
1877 || bg == FACE_TTY_DEFAULT_FG_COLOR)
1878 toggle_highlight ();
1879 }
1880 }
1881 }
1882
1883 if (face->tty_bold_p)
1884 {
1885 if (MAY_USE_WITH_COLORS_P (NC_BOLD))
1886 OUTPUT1_IF (TS_enter_bold_mode);
1887 }
1888 else if (face->tty_dim_p)
1889 if (MAY_USE_WITH_COLORS_P (NC_DIM))
1890 OUTPUT1_IF (TS_enter_dim_mode);
1891
1892 /* Alternate charset and blinking not yet used. */
1893 if (face->tty_alt_charset_p
1894 && MAY_USE_WITH_COLORS_P (NC_ALT_CHARSET))
1895 OUTPUT1_IF (TS_enter_alt_charset_mode);
1896
1897 if (face->tty_blinking_p
1898 && MAY_USE_WITH_COLORS_P (NC_BLINK))
1899 OUTPUT1_IF (TS_enter_blink_mode);
1900
1901 if (face->tty_underline_p && MAY_USE_WITH_COLORS_P (NC_UNDERLINE))
1902 OUTPUT1_IF (TS_enter_underline_mode);
1903
1904 if (TN_max_colors > 0)
1905 {
1906 char *p;
1907
1908 if (fg >= 0 && TS_set_foreground)
1909 {
1910 p = tparam (TS_set_foreground, NULL, 0, (int) fg);
1911 OUTPUT (p);
1912 xfree (p);
1913 }
1914
1915 if (bg >= 0 && TS_set_background)
1916 {
1917 p = tparam (TS_set_background, NULL, 0, (int) bg);
1918 OUTPUT (p);
1919 xfree (p);
1920 }
1921 }
1922 }
1923
1924
1925 /* Turn off appearances of face FACE_ID on tty frame F. */
1926
1927 static void
1928 turn_off_face (f, face_id)
1929 struct frame *f;
1930 int face_id;
1931 {
1932 struct face *face = FACE_FROM_ID (f, face_id);
1933
1934 xassert (face != NULL);
1935
1936 if (TS_exit_attribute_mode)
1937 {
1938 /* Capability "me" will turn off appearance modes double-bright,
1939 half-bright, reverse-video, standout, underline. It may or
1940 may not turn off alt-char-mode. */
1941 if (face->tty_bold_p
1942 || face->tty_dim_p
1943 || face->tty_reverse_p
1944 || face->tty_alt_charset_p
1945 || face->tty_blinking_p
1946 || face->tty_underline_p)
1947 {
1948 OUTPUT1_IF (TS_exit_attribute_mode);
1949 if (strcmp (TS_exit_attribute_mode, TS_end_standout_mode) == 0)
1950 standout_mode = 0;
1951 }
1952
1953 if (face->tty_alt_charset_p)
1954 OUTPUT_IF (TS_exit_alt_charset_mode);
1955 }
1956 else
1957 {
1958 /* If we don't have "me" we can only have those appearances
1959 that have exit sequences defined. */
1960 if (face->tty_alt_charset_p)
1961 OUTPUT_IF (TS_exit_alt_charset_mode);
1962
1963 if (face->tty_underline_p)
1964 OUTPUT_IF (TS_exit_underline_mode);
1965 }
1966
1967 /* Switch back to default colors. */
1968 if (TN_max_colors > 0
1969 && ((face->foreground != FACE_TTY_DEFAULT_COLOR
1970 && face->foreground != FACE_TTY_DEFAULT_FG_COLOR)
1971 || (face->background != FACE_TTY_DEFAULT_COLOR
1972 && face->background != FACE_TTY_DEFAULT_BG_COLOR)))
1973 OUTPUT1_IF (TS_orig_pair);
1974 }
1975
1976
1977 /* Return non-zero if the terminal is capable to display colors. */
1978
1979 DEFUN ("tty-display-color-p", Ftty_display_color_p, Stty_display_color_p,
1980 0, 1, 0,
1981 doc: /* Return non-nil if TTY can display colors on DISPLAY. */)
1982 (display)
1983 Lisp_Object display;
1984 {
1985 return TN_max_colors > 0 ? Qt : Qnil;
1986 }
1987
1988 /* Return the number of supported colors. */
1989 DEFUN ("tty-display-color-cells", Ftty_display_color_cells,
1990 Stty_display_color_cells, 0, 1, 0,
1991 doc: /* Return the number of colors supported by TTY on DISPLAY. */)
1992 (display)
1993 Lisp_Object display;
1994 {
1995 return make_number (TN_max_colors);
1996 }
1997
1998 #ifndef WINDOWSNT
1999
2000 /* Save or restore the default color-related capabilities of this
2001 terminal. */
2002 static void
2003 tty_default_color_capabilities (save)
2004 int save;
2005 {
2006 static char
2007 *default_orig_pair, *default_set_foreground, *default_set_background;
2008 static int default_max_colors, default_max_pairs, default_no_color_video;
2009
2010 if (save)
2011 {
2012 if (default_orig_pair)
2013 xfree (default_orig_pair);
2014 default_orig_pair = TS_orig_pair ? xstrdup (TS_orig_pair) : NULL;
2015
2016 if (default_set_foreground)
2017 xfree (default_set_foreground);
2018 default_set_foreground = TS_set_foreground ? xstrdup (TS_set_foreground)
2019 : NULL;
2020
2021 if (default_set_background)
2022 xfree (default_set_background);
2023 default_set_background = TS_set_background ? xstrdup (TS_set_background)
2024 : NULL;
2025
2026 default_max_colors = TN_max_colors;
2027 default_max_pairs = TN_max_pairs;
2028 default_no_color_video = TN_no_color_video;
2029 }
2030 else
2031 {
2032 TS_orig_pair = default_orig_pair;
2033 TS_set_foreground = default_set_foreground;
2034 TS_set_background = default_set_background;
2035 TN_max_colors = default_max_colors;
2036 TN_max_pairs = default_max_pairs;
2037 TN_no_color_video = default_no_color_video;
2038 }
2039 }
2040
2041 /* Setup one of the standard tty color schemes according to MODE.
2042 MODE's value is generally the number of colors which we want to
2043 support; zero means set up for the default capabilities, the ones
2044 we saw at term_init time; -1 means turn off color support. */
2045 void
2046 tty_setup_colors (mode)
2047 int mode;
2048 {
2049 switch (mode)
2050 {
2051 case -1: /* no colors at all */
2052 TN_max_colors = 0;
2053 TN_max_pairs = 0;
2054 TN_no_color_video = 0;
2055 TS_set_foreground = TS_set_background = TS_orig_pair = NULL;
2056 break;
2057 case 0: /* default colors, if any */
2058 default:
2059 tty_default_color_capabilities (0);
2060 break;
2061 case 8: /* 8 standard ANSI colors */
2062 TS_orig_pair = "\033[0m";
2063 #ifdef TERMINFO
2064 TS_set_foreground = "\033[3%p1%dm";
2065 TS_set_background = "\033[4%p1%dm";
2066 #else
2067 TS_set_foreground = "\033[3%dm";
2068 TS_set_background = "\033[4%dm";
2069 #endif
2070 TN_max_colors = 8;
2071 TN_max_pairs = 64;
2072 TN_no_color_video = 0;
2073 break;
2074 }
2075 }
2076
2077 void
2078 set_tty_color_mode (f, val)
2079 struct frame *f;
2080 Lisp_Object val;
2081 {
2082 Lisp_Object color_mode_spec, current_mode_spec;
2083 Lisp_Object color_mode, current_mode;
2084 int mode, old_mode;
2085 extern Lisp_Object Qtty_color_mode;
2086 Lisp_Object tty_color_mode_alist;
2087
2088 tty_color_mode_alist = Fintern_soft (build_string ("tty-color-mode-alist"),
2089 Qnil);
2090
2091 if (NATNUMP (val))
2092 color_mode = val;
2093 else
2094 {
2095 if (NILP (tty_color_mode_alist))
2096 color_mode_spec = Qnil;
2097 else
2098 color_mode_spec = Fassq (val, XSYMBOL (tty_color_mode_alist)->value);
2099 current_mode_spec = assq_no_quit (Qtty_color_mode, f->param_alist);
2100
2101 if (CONSP (color_mode_spec))
2102 color_mode = XCDR (color_mode_spec);
2103 else
2104 color_mode = Qnil;
2105 }
2106 if (CONSP (current_mode_spec))
2107 current_mode = XCDR (current_mode_spec);
2108 else
2109 current_mode = Qnil;
2110 if (NATNUMP (color_mode))
2111 mode = XINT (color_mode);
2112 else
2113 mode = 0; /* meaning default */
2114 if (NATNUMP (current_mode))
2115 old_mode = XINT (current_mode);
2116 else
2117 old_mode = 0;
2118
2119 if (mode != old_mode)
2120 {
2121 tty_setup_colors (mode);
2122 /* This recomputes all the faces given the new color
2123 definitions. */
2124 call0 (intern ("tty-set-up-initial-frame-faces"));
2125 redraw_frame (f);
2126 }
2127 }
2128
2129 #endif /* !WINDOWSNT */
2130
2131 \f
2132 /***********************************************************************
2133 Initialization
2134 ***********************************************************************/
2135
2136 void
2137 term_init (terminal_type)
2138 char *terminal_type;
2139 {
2140 char *area;
2141 char **address = &area;
2142 char buffer[2044];
2143 register char *p;
2144 int status;
2145 struct frame *sf = XFRAME (selected_frame);
2146
2147 #ifdef WINDOWSNT
2148 initialize_w32_display ();
2149
2150 Wcm_clear ();
2151
2152 area = (char *) xmalloc (2044);
2153
2154 if (area == 0)
2155 abort ();
2156
2157 FrameRows = FRAME_HEIGHT (sf);
2158 FrameCols = FRAME_WIDTH (sf);
2159 specified_window = FRAME_HEIGHT (sf);
2160
2161 delete_in_insert_mode = 1;
2162
2163 UseTabs = 0;
2164 scroll_region_ok = 0;
2165
2166 /* Seems to insert lines when it's not supposed to, messing
2167 up the display. In doing a trace, it didn't seem to be
2168 called much, so I don't think we're losing anything by
2169 turning it off. */
2170
2171 line_ins_del_ok = 0;
2172 char_ins_del_ok = 1;
2173
2174 baud_rate = 19200;
2175
2176 FRAME_CAN_HAVE_SCROLL_BARS (sf) = 0;
2177 FRAME_VERTICAL_SCROLL_BAR_TYPE (sf) = vertical_scroll_bar_none;
2178 TN_max_colors = 16; /* Required to be non-zero for tty-display-color-p */
2179
2180 return;
2181 #else /* not WINDOWSNT */
2182
2183 Wcm_clear ();
2184
2185 status = tgetent (buffer, terminal_type);
2186 if (status < 0)
2187 {
2188 #ifdef TERMINFO
2189 fatal ("Cannot open terminfo database file");
2190 #else
2191 fatal ("Cannot open termcap database file");
2192 #endif
2193 }
2194 if (status == 0)
2195 {
2196 #ifdef TERMINFO
2197 fatal ("Terminal type %s is not defined.\n\
2198 If that is not the actual type of terminal you have,\n\
2199 use the Bourne shell command `TERM=... export TERM' (C-shell:\n\
2200 `setenv TERM ...') to specify the correct type. It may be necessary\n\
2201 to do `unset TERMINFO' (C-shell: `unsetenv TERMINFO') as well.",
2202 terminal_type);
2203 #else
2204 fatal ("Terminal type %s is not defined.\n\
2205 If that is not the actual type of terminal you have,\n\
2206 use the Bourne shell command `TERM=... export TERM' (C-shell:\n\
2207 `setenv TERM ...') to specify the correct type. It may be necessary\n\
2208 to do `unset TERMCAP' (C-shell: `unsetenv TERMCAP') as well.",
2209 terminal_type);
2210 #endif
2211 }
2212 #ifdef TERMINFO
2213 area = (char *) xmalloc (2044);
2214 #else
2215 area = (char *) xmalloc (strlen (buffer));
2216 #endif /* not TERMINFO */
2217 if (area == 0)
2218 abort ();
2219
2220 TS_ins_line = tgetstr ("al", address);
2221 TS_ins_multi_lines = tgetstr ("AL", address);
2222 TS_bell = tgetstr ("bl", address);
2223 BackTab = tgetstr ("bt", address);
2224 TS_clr_to_bottom = tgetstr ("cd", address);
2225 TS_clr_line = tgetstr ("ce", address);
2226 TS_clr_frame = tgetstr ("cl", address);
2227 ColPosition = NULL; /* tgetstr ("ch", address); */
2228 AbsPosition = tgetstr ("cm", address);
2229 CR = tgetstr ("cr", address);
2230 TS_set_scroll_region = tgetstr ("cs", address);
2231 TS_set_scroll_region_1 = tgetstr ("cS", address);
2232 RowPosition = tgetstr ("cv", address);
2233 TS_del_char = tgetstr ("dc", address);
2234 TS_del_multi_chars = tgetstr ("DC", address);
2235 TS_del_line = tgetstr ("dl", address);
2236 TS_del_multi_lines = tgetstr ("DL", address);
2237 TS_delete_mode = tgetstr ("dm", address);
2238 TS_end_delete_mode = tgetstr ("ed", address);
2239 TS_end_insert_mode = tgetstr ("ei", address);
2240 Home = tgetstr ("ho", address);
2241 TS_ins_char = tgetstr ("ic", address);
2242 TS_ins_multi_chars = tgetstr ("IC", address);
2243 TS_insert_mode = tgetstr ("im", address);
2244 TS_pad_inserted_char = tgetstr ("ip", address);
2245 TS_end_keypad_mode = tgetstr ("ke", address);
2246 TS_keypad_mode = tgetstr ("ks", address);
2247 LastLine = tgetstr ("ll", address);
2248 Right = tgetstr ("nd", address);
2249 Down = tgetstr ("do", address);
2250 if (!Down)
2251 Down = tgetstr ("nl", address); /* Obsolete name for "do" */
2252 #ifdef VMS
2253 /* VMS puts a carriage return before each linefeed,
2254 so it is not safe to use linefeeds. */
2255 if (Down && Down[0] == '\n' && Down[1] == '\0')
2256 Down = 0;
2257 #endif /* VMS */
2258 if (tgetflag ("bs"))
2259 Left = "\b"; /* can't possibly be longer! */
2260 else /* (Actually, "bs" is obsolete...) */
2261 Left = tgetstr ("le", address);
2262 if (!Left)
2263 Left = tgetstr ("bc", address); /* Obsolete name for "le" */
2264 TS_pad_char = tgetstr ("pc", address);
2265 TS_repeat = tgetstr ("rp", address);
2266 TS_end_standout_mode = tgetstr ("se", address);
2267 TS_fwd_scroll = tgetstr ("sf", address);
2268 TS_standout_mode = tgetstr ("so", address);
2269 TS_rev_scroll = tgetstr ("sr", address);
2270 Wcm.cm_tab = tgetstr ("ta", address);
2271 TS_end_termcap_modes = tgetstr ("te", address);
2272 TS_termcap_modes = tgetstr ("ti", address);
2273 Up = tgetstr ("up", address);
2274 TS_visible_bell = tgetstr ("vb", address);
2275 TS_cursor_normal = tgetstr ("ve", address);
2276 TS_cursor_visible = tgetstr ("vs", address);
2277 TS_cursor_invisible = tgetstr ("vi", address);
2278 TS_set_window = tgetstr ("wi", address);
2279
2280 TS_enter_underline_mode = tgetstr ("us", address);
2281 TS_exit_underline_mode = tgetstr ("ue", address);
2282 TS_enter_bold_mode = tgetstr ("md", address);
2283 TS_enter_dim_mode = tgetstr ("mh", address);
2284 TS_enter_blink_mode = tgetstr ("mb", address);
2285 TS_enter_reverse_mode = tgetstr ("mr", address);
2286 TS_enter_alt_charset_mode = tgetstr ("as", address);
2287 TS_exit_alt_charset_mode = tgetstr ("ae", address);
2288 TS_exit_attribute_mode = tgetstr ("me", address);
2289
2290 MultiUp = tgetstr ("UP", address);
2291 MultiDown = tgetstr ("DO", address);
2292 MultiLeft = tgetstr ("LE", address);
2293 MultiRight = tgetstr ("RI", address);
2294
2295 /* SVr4/ANSI color suppert. If "op" isn't available, don't support
2296 color because we can't switch back to the default foreground and
2297 background. */
2298 TS_orig_pair = tgetstr ("op", address);
2299 if (TS_orig_pair)
2300 {
2301 TS_set_foreground = tgetstr ("AF", address);
2302 TS_set_background = tgetstr ("AB", address);
2303 if (!TS_set_foreground)
2304 {
2305 /* SVr4. */
2306 TS_set_foreground = tgetstr ("Sf", address);
2307 TS_set_background = tgetstr ("Sb", address);
2308 }
2309
2310 TN_max_colors = tgetnum ("Co");
2311 TN_max_pairs = tgetnum ("pa");
2312
2313 TN_no_color_video = tgetnum ("NC");
2314 if (TN_no_color_video == -1)
2315 TN_no_color_video = 0;
2316 }
2317
2318 tty_default_color_capabilities (1);
2319
2320 MagicWrap = tgetflag ("xn");
2321 /* Since we make MagicWrap terminals look like AutoWrap, we need to have
2322 the former flag imply the latter. */
2323 AutoWrap = MagicWrap || tgetflag ("am");
2324 memory_below_frame = tgetflag ("db");
2325 TF_hazeltine = tgetflag ("hz");
2326 must_write_spaces = tgetflag ("in");
2327 meta_key = tgetflag ("km") || tgetflag ("MT");
2328 TF_insmode_motion = tgetflag ("mi");
2329 TF_standout_motion = tgetflag ("ms");
2330 TF_underscore = tgetflag ("ul");
2331 TF_teleray = tgetflag ("xt");
2332
2333 term_get_fkeys (address);
2334
2335 /* Get frame size from system, or else from termcap. */
2336 {
2337 int height, width;
2338 get_frame_size (&width, &height);
2339 FRAME_WIDTH (sf) = width;
2340 FRAME_HEIGHT (sf) = height;
2341 }
2342
2343 if (FRAME_WIDTH (sf) <= 0)
2344 SET_FRAME_WIDTH (sf, tgetnum ("co"));
2345 else
2346 /* Keep width and external_width consistent */
2347 SET_FRAME_WIDTH (sf, FRAME_WIDTH (sf));
2348 if (FRAME_HEIGHT (sf) <= 0)
2349 FRAME_HEIGHT (sf) = tgetnum ("li");
2350
2351 if (FRAME_HEIGHT (sf) < 3 || FRAME_WIDTH (sf) < 3)
2352 fatal ("Screen size %dx%d is too small",
2353 FRAME_HEIGHT (sf), FRAME_WIDTH (sf));
2354
2355 min_padding_speed = tgetnum ("pb");
2356 TabWidth = tgetnum ("tw");
2357
2358 #ifdef VMS
2359 /* These capabilities commonly use ^J.
2360 I don't know why, but sending them on VMS does not work;
2361 it causes following spaces to be lost, sometimes.
2362 For now, the simplest fix is to avoid using these capabilities ever. */
2363 if (Down && Down[0] == '\n')
2364 Down = 0;
2365 #endif /* VMS */
2366
2367 if (!TS_bell)
2368 TS_bell = "\07";
2369
2370 if (!TS_fwd_scroll)
2371 TS_fwd_scroll = Down;
2372
2373 PC = TS_pad_char ? *TS_pad_char : 0;
2374
2375 if (TabWidth < 0)
2376 TabWidth = 8;
2377
2378 /* Turned off since /etc/termcap seems to have :ta= for most terminals
2379 and newer termcap doc does not seem to say there is a default.
2380 if (!Wcm.cm_tab)
2381 Wcm.cm_tab = "\t";
2382 */
2383
2384 /* We don't support standout modes that use `magic cookies', so
2385 turn off any that do. */
2386 if (TS_standout_mode && tgetnum ("sg") >= 0)
2387 {
2388 TS_standout_mode = 0;
2389 TS_end_standout_mode = 0;
2390 }
2391 if (TS_enter_underline_mode && tgetnum ("ug") >= 0)
2392 {
2393 TS_enter_underline_mode = 0;
2394 TS_exit_underline_mode = 0;
2395 }
2396
2397 /* If there's no standout mode, try to use underlining instead. */
2398 if (TS_standout_mode == 0)
2399 {
2400 TS_standout_mode = TS_enter_underline_mode;
2401 TS_end_standout_mode = TS_exit_underline_mode;
2402 }
2403
2404 /* If no `se' string, try using a `me' string instead.
2405 If that fails, we can't use standout mode at all. */
2406 if (TS_end_standout_mode == 0)
2407 {
2408 char *s = tgetstr ("me", address);
2409 if (s != 0)
2410 TS_end_standout_mode = s;
2411 else
2412 TS_standout_mode = 0;
2413 }
2414
2415 if (TF_teleray)
2416 {
2417 Wcm.cm_tab = 0;
2418 /* We can't support standout mode, because it uses magic cookies. */
2419 TS_standout_mode = 0;
2420 /* But that means we cannot rely on ^M to go to column zero! */
2421 CR = 0;
2422 /* LF can't be trusted either -- can alter hpos */
2423 /* if move at column 0 thru a line with TS_standout_mode */
2424 Down = 0;
2425 }
2426
2427 /* Special handling for certain terminal types known to need it */
2428
2429 if (!strcmp (terminal_type, "supdup"))
2430 {
2431 memory_below_frame = 1;
2432 Wcm.cm_losewrap = 1;
2433 }
2434 if (!strncmp (terminal_type, "c10", 3)
2435 || !strcmp (terminal_type, "perq"))
2436 {
2437 /* Supply a makeshift :wi string.
2438 This string is not valid in general since it works only
2439 for windows starting at the upper left corner;
2440 but that is all Emacs uses.
2441
2442 This string works only if the frame is using
2443 the top of the video memory, because addressing is memory-relative.
2444 So first check the :ti string to see if that is true.
2445
2446 It would be simpler if the :wi string could go in the termcap
2447 entry, but it can't because it is not fully valid.
2448 If it were in the termcap entry, it would confuse other programs. */
2449 if (!TS_set_window)
2450 {
2451 p = TS_termcap_modes;
2452 while (*p && strcmp (p, "\033v "))
2453 p++;
2454 if (*p)
2455 TS_set_window = "\033v%C %C %C %C ";
2456 }
2457 /* Termcap entry often fails to have :in: flag */
2458 must_write_spaces = 1;
2459 /* :ti string typically fails to have \E^G! in it */
2460 /* This limits scope of insert-char to one line. */
2461 strcpy (area, TS_termcap_modes);
2462 strcat (area, "\033\007!");
2463 TS_termcap_modes = area;
2464 area += strlen (area) + 1;
2465 p = AbsPosition;
2466 /* Change all %+ parameters to %C, to handle
2467 values above 96 correctly for the C100. */
2468 while (*p)
2469 {
2470 if (p[0] == '%' && p[1] == '+')
2471 p[1] = 'C';
2472 p++;
2473 }
2474 }
2475
2476 FrameRows = FRAME_HEIGHT (sf);
2477 FrameCols = FRAME_WIDTH (sf);
2478 specified_window = FRAME_HEIGHT (sf);
2479
2480 if (Wcm_init () == -1) /* can't do cursor motion */
2481 #ifdef VMS
2482 fatal ("Terminal type \"%s\" is not powerful enough to run Emacs.\n\
2483 It lacks the ability to position the cursor.\n\
2484 If that is not the actual type of terminal you have, use either the\n\
2485 DCL command `SET TERMINAL/DEVICE= ...' for DEC-compatible terminals,\n\
2486 or `define EMACS_TERM \"terminal type\"' for non-DEC terminals.",
2487 terminal_type);
2488 #else /* not VMS */
2489 # ifdef TERMINFO
2490 fatal ("Terminal type \"%s\" is not powerful enough to run Emacs.\n\
2491 It lacks the ability to position the cursor.\n\
2492 If that is not the actual type of terminal you have,\n\
2493 use the Bourne shell command `TERM=... export TERM' (C-shell:\n\
2494 `setenv TERM ...') to specify the correct type. It may be necessary\n\
2495 to do `unset TERMINFO' (C-shell: `unsetenv TERMINFO') as well.",
2496 terminal_type);
2497 # else /* TERMCAP */
2498 fatal ("Terminal type \"%s\" is not powerful enough to run Emacs.\n\
2499 It lacks the ability to position the cursor.\n\
2500 If that is not the actual type of terminal you have,\n\
2501 use the Bourne shell command `TERM=... export TERM' (C-shell:\n\
2502 `setenv TERM ...') to specify the correct type. It may be necessary\n\
2503 to do `unset TERMCAP' (C-shell: `unsetenv TERMCAP') as well.",
2504 terminal_type);
2505 # endif /* TERMINFO */
2506 #endif /*VMS */
2507 if (FRAME_HEIGHT (sf) <= 0
2508 || FRAME_WIDTH (sf) <= 0)
2509 fatal ("The frame size has not been specified");
2510
2511 delete_in_insert_mode
2512 = TS_delete_mode && TS_insert_mode
2513 && !strcmp (TS_delete_mode, TS_insert_mode);
2514
2515 se_is_so = (TS_standout_mode
2516 && TS_end_standout_mode
2517 && !strcmp (TS_standout_mode, TS_end_standout_mode));
2518
2519 UseTabs = tabs_safe_p () && TabWidth == 8;
2520
2521 scroll_region_ok
2522 = (Wcm.cm_abs
2523 && (TS_set_window || TS_set_scroll_region || TS_set_scroll_region_1));
2524
2525 line_ins_del_ok = (((TS_ins_line || TS_ins_multi_lines)
2526 && (TS_del_line || TS_del_multi_lines))
2527 || (scroll_region_ok && TS_fwd_scroll && TS_rev_scroll));
2528
2529 char_ins_del_ok = ((TS_ins_char || TS_insert_mode
2530 || TS_pad_inserted_char || TS_ins_multi_chars)
2531 && (TS_del_char || TS_del_multi_chars));
2532
2533 fast_clear_end_of_line = TS_clr_line != 0;
2534
2535 init_baud_rate ();
2536 if (read_socket_hook) /* Baudrate is somewhat */
2537 /* meaningless in this case */
2538 baud_rate = 9600;
2539
2540 FRAME_CAN_HAVE_SCROLL_BARS (sf) = 0;
2541 FRAME_VERTICAL_SCROLL_BAR_TYPE (sf) = vertical_scroll_bar_none;
2542 #endif /* WINDOWSNT */
2543 }
2544
2545 /* VARARGS 1 */
2546 void
2547 fatal (str, arg1, arg2)
2548 char *str, *arg1, *arg2;
2549 {
2550 fprintf (stderr, "emacs: ");
2551 fprintf (stderr, str, arg1, arg2);
2552 fprintf (stderr, "\n");
2553 fflush (stderr);
2554 exit (1);
2555 }
2556
2557 void
2558 syms_of_term ()
2559 {
2560 DEFVAR_BOOL ("system-uses-terminfo", &system_uses_terminfo,
2561 doc: /* Non-nil means the system uses terminfo rather than termcap.
2562 This variable can be used by terminal emulator packages. */);
2563 #ifdef TERMINFO
2564 system_uses_terminfo = 1;
2565 #else
2566 system_uses_terminfo = 0;
2567 #endif
2568
2569 DEFVAR_LISP ("ring-bell-function", &Vring_bell_function,
2570 doc: /* Non-nil means call this function to ring the bell.
2571 The function should accept no arguments. */);
2572 Vring_bell_function = Qnil;
2573
2574 defsubr (&Stty_display_color_p);
2575 defsubr (&Stty_display_color_cells);
2576 }
2577