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