Revision: miles@gnu.org--gnu-2005/emacs--unicode--0--patch-64
[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 {"&0", "S-cancel"}, /*shifted cancel key*/
1482 {"&9", "S-begin"}, /*shifted begin key*/
1483 {"*0", "S-find"}, /*shifted find key*/
1484 {"*1", "S-execute"}, /*shifted execute? actually shifted command key*/
1485 {"*4", "S-delete"}, /*shifted delete-character key*/
1486 {"*7", "S-end"}, /*shifted end key*/
1487 {"*8", "S-clearline"}, /*shifted clear-to end-of-line key*/
1488 {"#1", "S-help"}, /*shifted help key*/
1489 {"#2", "S-home"}, /*shifted home key*/
1490 {"#3", "S-insert"}, /*shifted insert-character key*/
1491 {"#4", "S-left"}, /*shifted left-arrow key*/
1492 {"%d", "S-menu"}, /*shifted menu? actually shifted options key*/
1493 {"%c", "S-next"}, /*shifted next key*/
1494 {"%e", "S-prior"}, /*shifted previous key*/
1495 {"%f", "S-print"}, /*shifted print key*/
1496 {"%g", "S-redo"}, /*shifted redo key*/
1497 {"%i", "S-right"}, /*shifted right-arrow key*/
1498 {"!3", "S-undo"} /*shifted undo key*/
1499 };
1500
1501 static char **term_get_fkeys_arg;
1502 static Lisp_Object term_get_fkeys_1 ();
1503
1504 /* Find the escape codes sent by the function keys for Vfunction_key_map.
1505 This function scans the termcap function key sequence entries, and
1506 adds entries to Vfunction_key_map for each function key it finds. */
1507
1508 void
1509 term_get_fkeys (address)
1510 char **address;
1511 {
1512 /* We run the body of the function (term_get_fkeys_1) and ignore all Lisp
1513 errors during the call. The only errors should be from Fdefine_key
1514 when given a key sequence containing an invalid prefix key. If the
1515 termcap defines function keys which use a prefix that is already bound
1516 to a command by the default bindings, we should silently ignore that
1517 function key specification, rather than giving the user an error and
1518 refusing to run at all on such a terminal. */
1519
1520 extern Lisp_Object Fidentity ();
1521 term_get_fkeys_arg = address;
1522 internal_condition_case (term_get_fkeys_1, Qerror, Fidentity);
1523 }
1524
1525 static Lisp_Object
1526 term_get_fkeys_1 ()
1527 {
1528 int i;
1529
1530 char **address = term_get_fkeys_arg;
1531
1532 /* This can happen if CANNOT_DUMP or with strange options. */
1533 if (!initialized)
1534 Vfunction_key_map = Fmake_sparse_keymap (Qnil);
1535
1536 for (i = 0; i < (sizeof (keys)/sizeof (keys[0])); i++)
1537 {
1538 char *sequence = tgetstr (keys[i].cap, address);
1539 if (sequence)
1540 Fdefine_key (Vfunction_key_map, build_string (sequence),
1541 Fmake_vector (make_number (1),
1542 intern (keys[i].name)));
1543 }
1544
1545 /* The uses of the "k0" capability are inconsistent; sometimes it
1546 describes F10, whereas othertimes it describes F0 and "k;" describes F10.
1547 We will attempt to politely accommodate both systems by testing for
1548 "k;", and if it is present, assuming that "k0" denotes F0, otherwise F10.
1549 */
1550 {
1551 char *k_semi = tgetstr ("k;", address);
1552 char *k0 = tgetstr ("k0", address);
1553 char *k0_name = "f10";
1554
1555 if (k_semi)
1556 {
1557 if (k0)
1558 /* Define f0 first, so that f10 takes precedence in case the
1559 key sequences happens to be the same. */
1560 Fdefine_key (Vfunction_key_map, build_string (k0),
1561 Fmake_vector (make_number (1), intern ("f0")));
1562 Fdefine_key (Vfunction_key_map, build_string (k_semi),
1563 Fmake_vector (make_number (1), intern ("f10")));
1564 }
1565 else if (k0)
1566 Fdefine_key (Vfunction_key_map, build_string (k0),
1567 Fmake_vector (make_number (1), intern (k0_name)));
1568 }
1569
1570 /* Set up cookies for numbered function keys above f10. */
1571 {
1572 char fcap[3], fkey[4];
1573
1574 fcap[0] = 'F'; fcap[2] = '\0';
1575 for (i = 11; i < 64; i++)
1576 {
1577 if (i <= 19)
1578 fcap[1] = '1' + i - 11;
1579 else if (i <= 45)
1580 fcap[1] = 'A' + i - 20;
1581 else
1582 fcap[1] = 'a' + i - 46;
1583
1584 {
1585 char *sequence = tgetstr (fcap, address);
1586 if (sequence)
1587 {
1588 sprintf (fkey, "f%d", i);
1589 Fdefine_key (Vfunction_key_map, build_string (sequence),
1590 Fmake_vector (make_number (1),
1591 intern (fkey)));
1592 }
1593 }
1594 }
1595 }
1596
1597 /*
1598 * Various mappings to try and get a better fit.
1599 */
1600 {
1601 #define CONDITIONAL_REASSIGN(cap1, cap2, sym) \
1602 if (!tgetstr (cap1, address)) \
1603 { \
1604 char *sequence = tgetstr (cap2, address); \
1605 if (sequence) \
1606 Fdefine_key (Vfunction_key_map, build_string (sequence), \
1607 Fmake_vector (make_number (1), \
1608 intern (sym))); \
1609 }
1610
1611 /* if there's no key_next keycap, map key_npage to `next' keysym */
1612 CONDITIONAL_REASSIGN ("%5", "kN", "next");
1613 /* if there's no key_prev keycap, map key_ppage to `previous' keysym */
1614 CONDITIONAL_REASSIGN ("%8", "kP", "prior");
1615 /* if there's no key_dc keycap, map key_ic to `insert' keysym */
1616 CONDITIONAL_REASSIGN ("kD", "kI", "insert");
1617 /* if there's no key_end keycap, map key_ll to 'end' keysym */
1618 CONDITIONAL_REASSIGN ("@7", "kH", "end");
1619
1620 /* IBM has their own non-standard dialect of terminfo.
1621 If the standard name isn't found, try the IBM name. */
1622 CONDITIONAL_REASSIGN ("kB", "KO", "backtab");
1623 CONDITIONAL_REASSIGN ("@4", "kJ", "execute"); /* actually "action" */
1624 CONDITIONAL_REASSIGN ("@4", "kc", "execute"); /* actually "command" */
1625 CONDITIONAL_REASSIGN ("%7", "ki", "menu");
1626 CONDITIONAL_REASSIGN ("@7", "kw", "end");
1627 CONDITIONAL_REASSIGN ("F1", "k<", "f11");
1628 CONDITIONAL_REASSIGN ("F2", "k>", "f12");
1629 CONDITIONAL_REASSIGN ("%1", "kq", "help");
1630 CONDITIONAL_REASSIGN ("*6", "kU", "select");
1631 #undef CONDITIONAL_REASSIGN
1632 }
1633
1634 return Qnil;
1635 }
1636
1637 \f
1638 /***********************************************************************
1639 Character Display Information
1640 ***********************************************************************/
1641
1642 static void append_glyph P_ ((struct it *));
1643 static void produce_stretch_glyph P_ ((struct it *));
1644
1645
1646 /* Append glyphs to IT's glyph_row. Called from produce_glyphs for
1647 terminal frames if IT->glyph_row != NULL. IT->c is the character
1648 for which to produce glyphs; IT->face_id contains the character's
1649 face. Padding glyphs are appended if IT->c has a IT->pixel_width >
1650 1. */
1651
1652 static void
1653 append_glyph (it)
1654 struct it *it;
1655 {
1656 struct glyph *glyph, *end;
1657 int i;
1658
1659 xassert (it->glyph_row);
1660 glyph = (it->glyph_row->glyphs[it->area]
1661 + it->glyph_row->used[it->area]);
1662 end = it->glyph_row->glyphs[1 + it->area];
1663
1664 for (i = 0;
1665 i < it->pixel_width && glyph < end;
1666 ++i)
1667 {
1668 glyph->type = CHAR_GLYPH;
1669 glyph->pixel_width = 1;
1670 glyph->u.ch = it->c;
1671 glyph->face_id = it->face_id;
1672 glyph->padding_p = i > 0;
1673 glyph->charpos = CHARPOS (it->position);
1674 glyph->object = it->object;
1675
1676 ++it->glyph_row->used[it->area];
1677 ++glyph;
1678 }
1679 }
1680
1681
1682 /* Produce glyphs for the display element described by IT. *IT
1683 specifies what we want to produce a glyph for (character, image, ...),
1684 and where in the glyph matrix we currently are (glyph row and hpos).
1685 produce_glyphs fills in output fields of *IT with information such as the
1686 pixel width and height of a character, and maybe output actual glyphs at
1687 the same time if IT->glyph_row is non-null. See the explanation of
1688 struct display_iterator in dispextern.h for an overview.
1689
1690 produce_glyphs also stores the result of glyph width, ascent
1691 etc. computations in *IT.
1692
1693 IT->glyph_row may be null, in which case produce_glyphs does not
1694 actually fill in the glyphs. This is used in the move_* functions
1695 in xdisp.c for text width and height computations.
1696
1697 Callers usually don't call produce_glyphs directly;
1698 instead they use the macro PRODUCE_GLYPHS. */
1699
1700 void
1701 produce_glyphs (it)
1702 struct it *it;
1703 {
1704 /* If a hook is installed, let it do the work. */
1705 xassert (it->what == IT_CHARACTER
1706 || it->what == IT_COMPOSITION
1707 || it->what == IT_STRETCH);
1708
1709 if (it->what == IT_STRETCH)
1710 {
1711 produce_stretch_glyph (it);
1712 goto done;
1713 }
1714
1715 /* Nothing but characters are supported on terminal frames. For a
1716 composition sequence, it->c is the first character of the
1717 sequence. */
1718 xassert (it->what == IT_CHARACTER
1719 || it->what == IT_COMPOSITION);
1720
1721 if (it->c >= 040 && it->c < 0177)
1722 {
1723 it->pixel_width = it->nglyphs = 1;
1724 if (it->glyph_row)
1725 append_glyph (it);
1726 }
1727 else if (it->c == '\n')
1728 it->pixel_width = it->nglyphs = 0;
1729 else if (it->c == '\t')
1730 {
1731 int absolute_x = (it->current_x
1732 + it->continuation_lines_width);
1733 int next_tab_x
1734 = (((1 + absolute_x + it->tab_width - 1)
1735 / it->tab_width)
1736 * it->tab_width);
1737 int nspaces;
1738
1739 /* If part of the TAB has been displayed on the previous line
1740 which is continued now, continuation_lines_width will have
1741 been incremented already by the part that fitted on the
1742 continued line. So, we will get the right number of spaces
1743 here. */
1744 nspaces = next_tab_x - absolute_x;
1745
1746 if (it->glyph_row)
1747 {
1748 int n = nspaces;
1749
1750 it->c = ' ';
1751 it->pixel_width = it->len = 1;
1752
1753 while (n--)
1754 append_glyph (it);
1755
1756 it->c = '\t';
1757 }
1758
1759 it->pixel_width = nspaces;
1760 it->nglyphs = nspaces;
1761 }
1762 else if (CHAR_BYTE8_P (it->c))
1763 {
1764 /* We must send the raw 8-bit byte as is to the terminal.
1765 Although there's no way to know how many columns it occupies
1766 on a screen, it is a good assumption that a single byte code
1767 has 1-column width. */
1768 it->pixel_width = it->nglyphs = 1;
1769 if (it->glyph_row)
1770 append_glyph (it);
1771 }
1772 else
1773 {
1774 it->pixel_width = CHAR_WIDTH (it->c);
1775 it->nglyphs = it->pixel_width;
1776
1777 if (it->glyph_row)
1778 append_glyph (it);
1779 }
1780
1781 done:
1782 /* Advance current_x by the pixel width as a convenience for
1783 the caller. */
1784 if (it->area == TEXT_AREA)
1785 it->current_x += it->pixel_width;
1786 it->ascent = it->max_ascent = it->phys_ascent = it->max_phys_ascent = 0;
1787 it->descent = it->max_descent = it->phys_descent = it->max_phys_descent = 1;
1788 }
1789
1790
1791 /* Produce a stretch glyph for iterator IT. IT->object is the value
1792 of the glyph property displayed. The value must be a list
1793 `(space KEYWORD VALUE ...)' with the following KEYWORD/VALUE pairs
1794 being recognized:
1795
1796 1. `:width WIDTH' specifies that the space should be WIDTH *
1797 canonical char width wide. WIDTH may be an integer or floating
1798 point number.
1799
1800 2. `:align-to HPOS' specifies that the space should be wide enough
1801 to reach HPOS, a value in canonical character units. */
1802
1803 static void
1804 produce_stretch_glyph (it)
1805 struct it *it;
1806 {
1807 /* (space :width WIDTH ...) */
1808 Lisp_Object prop, plist;
1809 int width = 0, align_to = -1;
1810 int zero_width_ok_p = 0;
1811 double tem;
1812
1813 /* List should start with `space'. */
1814 xassert (CONSP (it->object) && EQ (XCAR (it->object), Qspace));
1815 plist = XCDR (it->object);
1816
1817 /* Compute the width of the stretch. */
1818 if ((prop = Fplist_get (plist, QCwidth), !NILP (prop))
1819 && calc_pixel_width_or_height (&tem, it, prop, 0, 1, 0))
1820 {
1821 /* Absolute width `:width WIDTH' specified and valid. */
1822 zero_width_ok_p = 1;
1823 width = (int)(tem + 0.5);
1824 }
1825 else if ((prop = Fplist_get (plist, QCalign_to), !NILP (prop))
1826 && calc_pixel_width_or_height (&tem, it, prop, 0, 1, &align_to))
1827 {
1828 if (it->glyph_row == NULL || !it->glyph_row->mode_line_p)
1829 align_to = (align_to < 0
1830 ? 0
1831 : align_to - window_box_left_offset (it->w, TEXT_AREA));
1832 else if (align_to < 0)
1833 align_to = window_box_left_offset (it->w, TEXT_AREA);
1834 width = max (0, (int)(tem + 0.5) + align_to - it->current_x);
1835 zero_width_ok_p = 1;
1836 }
1837 else
1838 /* Nothing specified -> width defaults to canonical char width. */
1839 width = FRAME_COLUMN_WIDTH (it->f);
1840
1841 if (width <= 0 && (width < 0 || !zero_width_ok_p))
1842 width = 1;
1843
1844 if (width > 0 && it->glyph_row)
1845 {
1846 Lisp_Object o_object = it->object;
1847 Lisp_Object object = it->stack[it->sp - 1].string;
1848 int n = width;
1849 int c = it->c;
1850
1851 if (!STRINGP (object))
1852 object = it->w->buffer;
1853 it->object = object;
1854 it->c = ' ';
1855 it->pixel_width = it->len = 1;
1856 while (n--)
1857 append_glyph (it);
1858 it->object = o_object;
1859 it->c = c;
1860 }
1861 it->pixel_width = width;
1862 it->nglyphs = width;
1863 }
1864
1865
1866 /* Get information about special display element WHAT in an
1867 environment described by IT. WHAT is one of IT_TRUNCATION or
1868 IT_CONTINUATION. Maybe produce glyphs for WHAT if IT has a
1869 non-null glyph_row member. This function ensures that fields like
1870 face_id, c, len of IT are left untouched. */
1871
1872 void
1873 produce_special_glyphs (it, what)
1874 struct it *it;
1875 enum display_element_type what;
1876 {
1877 struct it temp_it;
1878
1879 temp_it = *it;
1880 temp_it.dp = NULL;
1881 temp_it.what = IT_CHARACTER;
1882 temp_it.len = 1;
1883 temp_it.object = make_number (0);
1884 bzero (&temp_it.current, sizeof temp_it.current);
1885
1886 if (what == IT_CONTINUATION)
1887 {
1888 /* Continuation glyph. */
1889 if (it->dp
1890 && INTEGERP (DISP_CONTINUE_GLYPH (it->dp))
1891 && GLYPH_CHAR_VALID_P (XINT (DISP_CONTINUE_GLYPH (it->dp))))
1892 {
1893 temp_it.c = FAST_GLYPH_CHAR (XINT (DISP_CONTINUE_GLYPH (it->dp)));
1894 temp_it.len = CHAR_BYTES (temp_it.c);
1895 }
1896 else
1897 temp_it.c = '\\';
1898
1899 produce_glyphs (&temp_it);
1900 it->pixel_width = temp_it.pixel_width;
1901 it->nglyphs = temp_it.pixel_width;
1902 }
1903 else if (what == IT_TRUNCATION)
1904 {
1905 /* Truncation glyph. */
1906 if (it->dp
1907 && INTEGERP (DISP_TRUNC_GLYPH (it->dp))
1908 && GLYPH_CHAR_VALID_P (XINT (DISP_TRUNC_GLYPH (it->dp))))
1909 {
1910 temp_it.c = FAST_GLYPH_CHAR (XINT (DISP_TRUNC_GLYPH (it->dp)));
1911 temp_it.len = CHAR_BYTES (temp_it.c);
1912 }
1913 else
1914 temp_it.c = '$';
1915
1916 produce_glyphs (&temp_it);
1917 it->pixel_width = temp_it.pixel_width;
1918 it->nglyphs = temp_it.pixel_width;
1919 }
1920 else
1921 abort ();
1922 }
1923
1924
1925 \f
1926 /***********************************************************************
1927 Faces
1928 ***********************************************************************/
1929
1930 /* Value is non-zero if attribute ATTR may be used. ATTR should be
1931 one of the enumerators from enum no_color_bit, or a bit set built
1932 from them. Some display attributes may not be used together with
1933 color; the termcap capability `NC' specifies which ones. */
1934
1935 #define MAY_USE_WITH_COLORS_P(ATTR) \
1936 (TN_max_colors > 0 \
1937 ? (TN_no_color_video & (ATTR)) == 0 \
1938 : 1)
1939
1940 /* Turn appearances of face FACE_ID on tty frame F on. */
1941
1942 static void
1943 turn_on_face (f, face_id)
1944 struct frame *f;
1945 int face_id;
1946 {
1947 struct face *face = FACE_FROM_ID (f, face_id);
1948 long fg = face->foreground;
1949 long bg = face->background;
1950
1951 /* Do this first because TS_end_standout_mode may be the same
1952 as TS_exit_attribute_mode, which turns all appearances off. */
1953 if (MAY_USE_WITH_COLORS_P (NC_REVERSE))
1954 {
1955 if (TN_max_colors > 0)
1956 {
1957 if (fg >= 0 && bg >= 0)
1958 {
1959 /* If the terminal supports colors, we can set them
1960 below without using reverse video. The face's fg
1961 and bg colors are set as they should appear on
1962 the screen, i.e. they take the inverse-video'ness
1963 of the face already into account. */
1964 }
1965 else if (inverse_video)
1966 {
1967 if (fg == FACE_TTY_DEFAULT_FG_COLOR
1968 || bg == FACE_TTY_DEFAULT_BG_COLOR)
1969 toggle_highlight ();
1970 }
1971 else
1972 {
1973 if (fg == FACE_TTY_DEFAULT_BG_COLOR
1974 || bg == FACE_TTY_DEFAULT_FG_COLOR)
1975 toggle_highlight ();
1976 }
1977 }
1978 else
1979 {
1980 /* If we can't display colors, use reverse video
1981 if the face specifies that. */
1982 if (inverse_video)
1983 {
1984 if (fg == FACE_TTY_DEFAULT_FG_COLOR
1985 || bg == FACE_TTY_DEFAULT_BG_COLOR)
1986 toggle_highlight ();
1987 }
1988 else
1989 {
1990 if (fg == FACE_TTY_DEFAULT_BG_COLOR
1991 || bg == FACE_TTY_DEFAULT_FG_COLOR)
1992 toggle_highlight ();
1993 }
1994 }
1995 }
1996
1997 if (face->tty_bold_p)
1998 {
1999 if (MAY_USE_WITH_COLORS_P (NC_BOLD))
2000 OUTPUT1_IF (TS_enter_bold_mode);
2001 }
2002 else if (face->tty_dim_p)
2003 if (MAY_USE_WITH_COLORS_P (NC_DIM))
2004 OUTPUT1_IF (TS_enter_dim_mode);
2005
2006 /* Alternate charset and blinking not yet used. */
2007 if (face->tty_alt_charset_p
2008 && MAY_USE_WITH_COLORS_P (NC_ALT_CHARSET))
2009 OUTPUT1_IF (TS_enter_alt_charset_mode);
2010
2011 if (face->tty_blinking_p
2012 && MAY_USE_WITH_COLORS_P (NC_BLINK))
2013 OUTPUT1_IF (TS_enter_blink_mode);
2014
2015 if (face->tty_underline_p && MAY_USE_WITH_COLORS_P (NC_UNDERLINE))
2016 OUTPUT1_IF (TS_enter_underline_mode);
2017
2018 if (TN_max_colors > 0)
2019 {
2020 char *p;
2021
2022 if (fg >= 0 && TS_set_foreground)
2023 {
2024 p = tparam (TS_set_foreground, NULL, 0, (int) fg);
2025 OUTPUT (p);
2026 xfree (p);
2027 }
2028
2029 if (bg >= 0 && TS_set_background)
2030 {
2031 p = tparam (TS_set_background, NULL, 0, (int) bg);
2032 OUTPUT (p);
2033 xfree (p);
2034 }
2035 }
2036 }
2037
2038
2039 /* Turn off appearances of face FACE_ID on tty frame F. */
2040
2041 static void
2042 turn_off_face (f, face_id)
2043 struct frame *f;
2044 int face_id;
2045 {
2046 struct face *face = FACE_FROM_ID (f, face_id);
2047
2048 xassert (face != NULL);
2049
2050 if (TS_exit_attribute_mode)
2051 {
2052 /* Capability "me" will turn off appearance modes double-bright,
2053 half-bright, reverse-video, standout, underline. It may or
2054 may not turn off alt-char-mode. */
2055 if (face->tty_bold_p
2056 || face->tty_dim_p
2057 || face->tty_reverse_p
2058 || face->tty_alt_charset_p
2059 || face->tty_blinking_p
2060 || face->tty_underline_p)
2061 {
2062 OUTPUT1_IF (TS_exit_attribute_mode);
2063 if (strcmp (TS_exit_attribute_mode, TS_end_standout_mode) == 0)
2064 standout_mode = 0;
2065 }
2066
2067 if (face->tty_alt_charset_p)
2068 OUTPUT_IF (TS_exit_alt_charset_mode);
2069 }
2070 else
2071 {
2072 /* If we don't have "me" we can only have those appearances
2073 that have exit sequences defined. */
2074 if (face->tty_alt_charset_p)
2075 OUTPUT_IF (TS_exit_alt_charset_mode);
2076
2077 if (face->tty_underline_p)
2078 OUTPUT_IF (TS_exit_underline_mode);
2079 }
2080
2081 /* Switch back to default colors. */
2082 if (TN_max_colors > 0
2083 && ((face->foreground != FACE_TTY_DEFAULT_COLOR
2084 && face->foreground != FACE_TTY_DEFAULT_FG_COLOR)
2085 || (face->background != FACE_TTY_DEFAULT_COLOR
2086 && face->background != FACE_TTY_DEFAULT_BG_COLOR)))
2087 OUTPUT1_IF (TS_orig_pair);
2088 }
2089
2090
2091 /* Return non-zero if the terminal on frame F supports all of the
2092 capabilities in CAPS simultaneously, with foreground and background
2093 colors FG and BG. */
2094
2095 int
2096 tty_capable_p (f, caps, fg, bg)
2097 struct frame *f;
2098 unsigned caps;
2099 unsigned long fg, bg;
2100 {
2101 #define TTY_CAPABLE_P_TRY(cap, TS, NC_bit) \
2102 if ((caps & (cap)) && (!(TS) || !MAY_USE_WITH_COLORS_P(NC_bit))) \
2103 return 0;
2104
2105 TTY_CAPABLE_P_TRY (TTY_CAP_INVERSE, TS_standout_mode, NC_REVERSE);
2106 TTY_CAPABLE_P_TRY (TTY_CAP_UNDERLINE, TS_enter_underline_mode, NC_UNDERLINE);
2107 TTY_CAPABLE_P_TRY (TTY_CAP_BOLD, TS_enter_bold_mode, NC_BOLD);
2108 TTY_CAPABLE_P_TRY (TTY_CAP_DIM, TS_enter_dim_mode, NC_DIM);
2109 TTY_CAPABLE_P_TRY (TTY_CAP_BLINK, TS_enter_blink_mode, NC_BLINK);
2110 TTY_CAPABLE_P_TRY (TTY_CAP_ALT_CHARSET, TS_enter_alt_charset_mode, NC_ALT_CHARSET);
2111
2112 /* We can do it! */
2113 return 1;
2114 }
2115
2116
2117 /* Return non-zero if the terminal is capable to display colors. */
2118
2119 DEFUN ("tty-display-color-p", Ftty_display_color_p, Stty_display_color_p,
2120 0, 1, 0,
2121 doc: /* Return non-nil if TTY can display colors on DISPLAY. */)
2122 (display)
2123 Lisp_Object display;
2124 {
2125 return TN_max_colors > 0 ? Qt : Qnil;
2126 }
2127
2128 /* Return the number of supported colors. */
2129 DEFUN ("tty-display-color-cells", Ftty_display_color_cells,
2130 Stty_display_color_cells, 0, 1, 0,
2131 doc: /* Return the number of colors supported by TTY on DISPLAY. */)
2132 (display)
2133 Lisp_Object display;
2134 {
2135 return make_number (TN_max_colors);
2136 }
2137
2138 #ifndef WINDOWSNT
2139
2140 /* Save or restore the default color-related capabilities of this
2141 terminal. */
2142 static void
2143 tty_default_color_capabilities (save)
2144 int save;
2145 {
2146 static char
2147 *default_orig_pair, *default_set_foreground, *default_set_background;
2148 static int default_max_colors, default_max_pairs, default_no_color_video;
2149
2150 if (save)
2151 {
2152 if (default_orig_pair)
2153 xfree (default_orig_pair);
2154 default_orig_pair = TS_orig_pair ? xstrdup (TS_orig_pair) : NULL;
2155
2156 if (default_set_foreground)
2157 xfree (default_set_foreground);
2158 default_set_foreground = TS_set_foreground ? xstrdup (TS_set_foreground)
2159 : NULL;
2160
2161 if (default_set_background)
2162 xfree (default_set_background);
2163 default_set_background = TS_set_background ? xstrdup (TS_set_background)
2164 : NULL;
2165
2166 default_max_colors = TN_max_colors;
2167 default_max_pairs = TN_max_pairs;
2168 default_no_color_video = TN_no_color_video;
2169 }
2170 else
2171 {
2172 TS_orig_pair = default_orig_pair;
2173 TS_set_foreground = default_set_foreground;
2174 TS_set_background = default_set_background;
2175 TN_max_colors = default_max_colors;
2176 TN_max_pairs = default_max_pairs;
2177 TN_no_color_video = default_no_color_video;
2178 }
2179 }
2180
2181 /* Setup one of the standard tty color schemes according to MODE.
2182 MODE's value is generally the number of colors which we want to
2183 support; zero means set up for the default capabilities, the ones
2184 we saw at term_init time; -1 means turn off color support. */
2185 void
2186 tty_setup_colors (mode)
2187 int mode;
2188 {
2189 /* Canonicalize all negative values of MODE. */
2190 if (mode < -1)
2191 mode = -1;
2192
2193 switch (mode)
2194 {
2195 case -1: /* no colors at all */
2196 TN_max_colors = 0;
2197 TN_max_pairs = 0;
2198 TN_no_color_video = 0;
2199 TS_set_foreground = TS_set_background = TS_orig_pair = NULL;
2200 break;
2201 case 0: /* default colors, if any */
2202 default:
2203 tty_default_color_capabilities (0);
2204 break;
2205 case 8: /* 8 standard ANSI colors */
2206 TS_orig_pair = "\033[0m";
2207 #ifdef TERMINFO
2208 TS_set_foreground = "\033[3%p1%dm";
2209 TS_set_background = "\033[4%p1%dm";
2210 #else
2211 TS_set_foreground = "\033[3%dm";
2212 TS_set_background = "\033[4%dm";
2213 #endif
2214 TN_max_colors = 8;
2215 TN_max_pairs = 64;
2216 TN_no_color_video = 0;
2217 break;
2218 }
2219 }
2220
2221 void
2222 set_tty_color_mode (f, val)
2223 struct frame *f;
2224 Lisp_Object val;
2225 {
2226 Lisp_Object color_mode_spec, current_mode_spec;
2227 Lisp_Object color_mode, current_mode;
2228 int mode, old_mode;
2229 extern Lisp_Object Qtty_color_mode;
2230 Lisp_Object tty_color_mode_alist;
2231
2232 tty_color_mode_alist = Fintern_soft (build_string ("tty-color-mode-alist"),
2233 Qnil);
2234
2235 if (INTEGERP (val))
2236 color_mode = val;
2237 else
2238 {
2239 if (NILP (tty_color_mode_alist))
2240 color_mode_spec = Qnil;
2241 else
2242 color_mode_spec = Fassq (val, XSYMBOL (tty_color_mode_alist)->value);
2243
2244 if (CONSP (color_mode_spec))
2245 color_mode = XCDR (color_mode_spec);
2246 else
2247 color_mode = Qnil;
2248 }
2249
2250 current_mode_spec = assq_no_quit (Qtty_color_mode, f->param_alist);
2251
2252 if (CONSP (current_mode_spec))
2253 current_mode = XCDR (current_mode_spec);
2254 else
2255 current_mode = Qnil;
2256 if (INTEGERP (color_mode))
2257 mode = XINT (color_mode);
2258 else
2259 mode = 0; /* meaning default */
2260 if (INTEGERP (current_mode))
2261 old_mode = XINT (current_mode);
2262 else
2263 old_mode = 0;
2264
2265 if (mode != old_mode)
2266 {
2267 tty_setup_colors (mode);
2268 /* This recomputes all the faces given the new color
2269 definitions. */
2270 call0 (intern ("tty-set-up-initial-frame-faces"));
2271 redraw_frame (f);
2272 }
2273 }
2274
2275 #endif /* !WINDOWSNT */
2276
2277 \f
2278 /***********************************************************************
2279 Initialization
2280 ***********************************************************************/
2281
2282 void
2283 term_init (terminal_type)
2284 char *terminal_type;
2285 {
2286 char *area;
2287 char **address = &area;
2288 char *buffer = NULL;
2289 int buffer_size = 4096;
2290 register char *p;
2291 int status;
2292 struct frame *sf = XFRAME (selected_frame);
2293
2294 encode_terminal_src_size = 0;
2295 encode_terminal_dst_size = 0;
2296
2297 #ifdef WINDOWSNT
2298 initialize_w32_display ();
2299
2300 Wcm_clear ();
2301
2302 area = (char *) xmalloc (2044);
2303
2304 FrameRows = FRAME_LINES (sf);
2305 FrameCols = FRAME_COLS (sf);
2306 specified_window = FRAME_LINES (sf);
2307
2308 delete_in_insert_mode = 1;
2309
2310 UseTabs = 0;
2311 scroll_region_ok = 0;
2312
2313 /* Seems to insert lines when it's not supposed to, messing
2314 up the display. In doing a trace, it didn't seem to be
2315 called much, so I don't think we're losing anything by
2316 turning it off. */
2317
2318 line_ins_del_ok = 0;
2319 char_ins_del_ok = 1;
2320
2321 baud_rate = 19200;
2322
2323 FRAME_CAN_HAVE_SCROLL_BARS (sf) = 0;
2324 FRAME_VERTICAL_SCROLL_BAR_TYPE (sf) = vertical_scroll_bar_none;
2325 TN_max_colors = 16; /* Required to be non-zero for tty-display-color-p */
2326
2327 return;
2328 #else /* not WINDOWSNT */
2329
2330 Wcm_clear ();
2331
2332 buffer = (char *) xmalloc (buffer_size);
2333 status = tgetent (buffer, terminal_type);
2334 if (status < 0)
2335 {
2336 #ifdef TERMINFO
2337 fatal ("Cannot open terminfo database file");
2338 #else
2339 fatal ("Cannot open termcap database file");
2340 #endif
2341 }
2342 if (status == 0)
2343 {
2344 #ifdef TERMINFO
2345 fatal ("Terminal type %s is not defined.\n\
2346 If that is not the actual type of terminal you have,\n\
2347 use the Bourne shell command `TERM=... export TERM' (C-shell:\n\
2348 `setenv TERM ...') to specify the correct type. It may be necessary\n\
2349 to do `unset TERMINFO' (C-shell: `unsetenv TERMINFO') as well.",
2350 terminal_type);
2351 #else
2352 fatal ("Terminal type %s is not defined.\n\
2353 If that is not the actual type of terminal you have,\n\
2354 use the Bourne shell command `TERM=... export TERM' (C-shell:\n\
2355 `setenv TERM ...') to specify the correct type. It may be necessary\n\
2356 to do `unset TERMCAP' (C-shell: `unsetenv TERMCAP') as well.",
2357 terminal_type);
2358 #endif
2359 }
2360
2361 #ifndef TERMINFO
2362 if (strlen (buffer) >= buffer_size)
2363 abort ();
2364 buffer_size = strlen (buffer);
2365 #endif
2366 area = (char *) xmalloc (buffer_size);
2367
2368 TS_ins_line = tgetstr ("al", address);
2369 TS_ins_multi_lines = tgetstr ("AL", address);
2370 TS_bell = tgetstr ("bl", address);
2371 BackTab = tgetstr ("bt", address);
2372 TS_clr_to_bottom = tgetstr ("cd", address);
2373 TS_clr_line = tgetstr ("ce", address);
2374 TS_clr_frame = tgetstr ("cl", address);
2375 ColPosition = NULL; /* tgetstr ("ch", address); */
2376 AbsPosition = tgetstr ("cm", address);
2377 CR = tgetstr ("cr", address);
2378 TS_set_scroll_region = tgetstr ("cs", address);
2379 TS_set_scroll_region_1 = tgetstr ("cS", address);
2380 RowPosition = tgetstr ("cv", address);
2381 TS_del_char = tgetstr ("dc", address);
2382 TS_del_multi_chars = tgetstr ("DC", address);
2383 TS_del_line = tgetstr ("dl", address);
2384 TS_del_multi_lines = tgetstr ("DL", address);
2385 TS_delete_mode = tgetstr ("dm", address);
2386 TS_end_delete_mode = tgetstr ("ed", address);
2387 TS_end_insert_mode = tgetstr ("ei", address);
2388 Home = tgetstr ("ho", address);
2389 TS_ins_char = tgetstr ("ic", address);
2390 TS_ins_multi_chars = tgetstr ("IC", address);
2391 TS_insert_mode = tgetstr ("im", address);
2392 TS_pad_inserted_char = tgetstr ("ip", address);
2393 TS_end_keypad_mode = tgetstr ("ke", address);
2394 TS_keypad_mode = tgetstr ("ks", address);
2395 LastLine = tgetstr ("ll", address);
2396 Right = tgetstr ("nd", address);
2397 Down = tgetstr ("do", address);
2398 if (!Down)
2399 Down = tgetstr ("nl", address); /* Obsolete name for "do" */
2400 #ifdef VMS
2401 /* VMS puts a carriage return before each linefeed,
2402 so it is not safe to use linefeeds. */
2403 if (Down && Down[0] == '\n' && Down[1] == '\0')
2404 Down = 0;
2405 #endif /* VMS */
2406 if (tgetflag ("bs"))
2407 Left = "\b"; /* can't possibly be longer! */
2408 else /* (Actually, "bs" is obsolete...) */
2409 Left = tgetstr ("le", address);
2410 if (!Left)
2411 Left = tgetstr ("bc", address); /* Obsolete name for "le" */
2412 TS_pad_char = tgetstr ("pc", address);
2413 TS_repeat = tgetstr ("rp", address);
2414 TS_end_standout_mode = tgetstr ("se", address);
2415 TS_fwd_scroll = tgetstr ("sf", address);
2416 TS_standout_mode = tgetstr ("so", address);
2417 TS_rev_scroll = tgetstr ("sr", address);
2418 Wcm.cm_tab = tgetstr ("ta", address);
2419 TS_end_termcap_modes = tgetstr ("te", address);
2420 TS_termcap_modes = tgetstr ("ti", address);
2421 Up = tgetstr ("up", address);
2422 TS_visible_bell = tgetstr ("vb", address);
2423 TS_cursor_normal = tgetstr ("ve", address);
2424 TS_cursor_visible = tgetstr ("vs", address);
2425 TS_cursor_invisible = tgetstr ("vi", address);
2426 TS_set_window = tgetstr ("wi", address);
2427
2428 TS_enter_underline_mode = tgetstr ("us", address);
2429 TS_exit_underline_mode = tgetstr ("ue", address);
2430 TS_enter_bold_mode = tgetstr ("md", address);
2431 TS_enter_dim_mode = tgetstr ("mh", address);
2432 TS_enter_blink_mode = tgetstr ("mb", address);
2433 TS_enter_reverse_mode = tgetstr ("mr", address);
2434 TS_enter_alt_charset_mode = tgetstr ("as", address);
2435 TS_exit_alt_charset_mode = tgetstr ("ae", address);
2436 TS_exit_attribute_mode = tgetstr ("me", address);
2437
2438 MultiUp = tgetstr ("UP", address);
2439 MultiDown = tgetstr ("DO", address);
2440 MultiLeft = tgetstr ("LE", address);
2441 MultiRight = tgetstr ("RI", address);
2442
2443 /* SVr4/ANSI color suppert. If "op" isn't available, don't support
2444 color because we can't switch back to the default foreground and
2445 background. */
2446 TS_orig_pair = tgetstr ("op", address);
2447 if (TS_orig_pair)
2448 {
2449 TS_set_foreground = tgetstr ("AF", address);
2450 TS_set_background = tgetstr ("AB", address);
2451 if (!TS_set_foreground)
2452 {
2453 /* SVr4. */
2454 TS_set_foreground = tgetstr ("Sf", address);
2455 TS_set_background = tgetstr ("Sb", address);
2456 }
2457
2458 TN_max_colors = tgetnum ("Co");
2459 TN_max_pairs = tgetnum ("pa");
2460
2461 TN_no_color_video = tgetnum ("NC");
2462 if (TN_no_color_video == -1)
2463 TN_no_color_video = 0;
2464 }
2465
2466 tty_default_color_capabilities (1);
2467
2468 MagicWrap = tgetflag ("xn");
2469 /* Since we make MagicWrap terminals look like AutoWrap, we need to have
2470 the former flag imply the latter. */
2471 AutoWrap = MagicWrap || tgetflag ("am");
2472 memory_below_frame = tgetflag ("db");
2473 TF_hazeltine = tgetflag ("hz");
2474 must_write_spaces = tgetflag ("in");
2475 meta_key = tgetflag ("km") || tgetflag ("MT");
2476 TF_insmode_motion = tgetflag ("mi");
2477 TF_standout_motion = tgetflag ("ms");
2478 TF_underscore = tgetflag ("ul");
2479 TF_teleray = tgetflag ("xt");
2480
2481 term_get_fkeys (address);
2482
2483 /* Get frame size from system, or else from termcap. */
2484 {
2485 int height, width;
2486 get_frame_size (&width, &height);
2487 FRAME_COLS (sf) = width;
2488 FRAME_LINES (sf) = height;
2489 }
2490
2491 if (FRAME_COLS (sf) <= 0)
2492 SET_FRAME_COLS (sf, tgetnum ("co"));
2493 else
2494 /* Keep width and external_width consistent */
2495 SET_FRAME_COLS (sf, FRAME_COLS (sf));
2496 if (FRAME_LINES (sf) <= 0)
2497 FRAME_LINES (sf) = tgetnum ("li");
2498
2499 if (FRAME_LINES (sf) < 3 || FRAME_COLS (sf) < 3)
2500 fatal ("Screen size %dx%d is too small",
2501 FRAME_LINES (sf), FRAME_COLS (sf));
2502
2503 min_padding_speed = tgetnum ("pb");
2504 TabWidth = tgetnum ("tw");
2505
2506 #ifdef VMS
2507 /* These capabilities commonly use ^J.
2508 I don't know why, but sending them on VMS does not work;
2509 it causes following spaces to be lost, sometimes.
2510 For now, the simplest fix is to avoid using these capabilities ever. */
2511 if (Down && Down[0] == '\n')
2512 Down = 0;
2513 #endif /* VMS */
2514
2515 if (!TS_bell)
2516 TS_bell = "\07";
2517
2518 if (!TS_fwd_scroll)
2519 TS_fwd_scroll = Down;
2520
2521 PC = TS_pad_char ? *TS_pad_char : 0;
2522
2523 if (TabWidth < 0)
2524 TabWidth = 8;
2525
2526 /* Turned off since /etc/termcap seems to have :ta= for most terminals
2527 and newer termcap doc does not seem to say there is a default.
2528 if (!Wcm.cm_tab)
2529 Wcm.cm_tab = "\t";
2530 */
2531
2532 /* We don't support standout modes that use `magic cookies', so
2533 turn off any that do. */
2534 if (TS_standout_mode && tgetnum ("sg") >= 0)
2535 {
2536 TS_standout_mode = 0;
2537 TS_end_standout_mode = 0;
2538 }
2539 if (TS_enter_underline_mode && tgetnum ("ug") >= 0)
2540 {
2541 TS_enter_underline_mode = 0;
2542 TS_exit_underline_mode = 0;
2543 }
2544
2545 /* If there's no standout mode, try to use underlining instead. */
2546 if (TS_standout_mode == 0)
2547 {
2548 TS_standout_mode = TS_enter_underline_mode;
2549 TS_end_standout_mode = TS_exit_underline_mode;
2550 }
2551
2552 /* If no `se' string, try using a `me' string instead.
2553 If that fails, we can't use standout mode at all. */
2554 if (TS_end_standout_mode == 0)
2555 {
2556 char *s = tgetstr ("me", address);
2557 if (s != 0)
2558 TS_end_standout_mode = s;
2559 else
2560 TS_standout_mode = 0;
2561 }
2562
2563 if (TF_teleray)
2564 {
2565 Wcm.cm_tab = 0;
2566 /* We can't support standout mode, because it uses magic cookies. */
2567 TS_standout_mode = 0;
2568 /* But that means we cannot rely on ^M to go to column zero! */
2569 CR = 0;
2570 /* LF can't be trusted either -- can alter hpos */
2571 /* if move at column 0 thru a line with TS_standout_mode */
2572 Down = 0;
2573 }
2574
2575 /* Special handling for certain terminal types known to need it */
2576
2577 if (!strcmp (terminal_type, "supdup"))
2578 {
2579 memory_below_frame = 1;
2580 Wcm.cm_losewrap = 1;
2581 }
2582 if (!strncmp (terminal_type, "c10", 3)
2583 || !strcmp (terminal_type, "perq"))
2584 {
2585 /* Supply a makeshift :wi string.
2586 This string is not valid in general since it works only
2587 for windows starting at the upper left corner;
2588 but that is all Emacs uses.
2589
2590 This string works only if the frame is using
2591 the top of the video memory, because addressing is memory-relative.
2592 So first check the :ti string to see if that is true.
2593
2594 It would be simpler if the :wi string could go in the termcap
2595 entry, but it can't because it is not fully valid.
2596 If it were in the termcap entry, it would confuse other programs. */
2597 if (!TS_set_window)
2598 {
2599 p = TS_termcap_modes;
2600 while (*p && strcmp (p, "\033v "))
2601 p++;
2602 if (*p)
2603 TS_set_window = "\033v%C %C %C %C ";
2604 }
2605 /* Termcap entry often fails to have :in: flag */
2606 must_write_spaces = 1;
2607 /* :ti string typically fails to have \E^G! in it */
2608 /* This limits scope of insert-char to one line. */
2609 strcpy (area, TS_termcap_modes);
2610 strcat (area, "\033\007!");
2611 TS_termcap_modes = area;
2612 area += strlen (area) + 1;
2613 p = AbsPosition;
2614 /* Change all %+ parameters to %C, to handle
2615 values above 96 correctly for the C100. */
2616 while (*p)
2617 {
2618 if (p[0] == '%' && p[1] == '+')
2619 p[1] = 'C';
2620 p++;
2621 }
2622 }
2623
2624 FrameRows = FRAME_LINES (sf);
2625 FrameCols = FRAME_COLS (sf);
2626 specified_window = FRAME_LINES (sf);
2627
2628 if (Wcm_init () == -1) /* can't do cursor motion */
2629 #ifdef VMS
2630 fatal ("Terminal type \"%s\" is not powerful enough to run Emacs.\n\
2631 It lacks the ability to position the cursor.\n\
2632 If that is not the actual type of terminal you have, use either the\n\
2633 DCL command `SET TERMINAL/DEVICE= ...' for DEC-compatible terminals,\n\
2634 or `define EMACS_TERM \"terminal type\"' for non-DEC terminals.",
2635 terminal_type);
2636 #else /* not VMS */
2637 # ifdef TERMINFO
2638 fatal ("Terminal type \"%s\" is not powerful enough to run Emacs.\n\
2639 It lacks the ability to position the cursor.\n\
2640 If that is not the actual type of terminal you have,\n\
2641 use the Bourne shell command `TERM=... export TERM' (C-shell:\n\
2642 `setenv TERM ...') to specify the correct type. It may be necessary\n\
2643 to do `unset TERMINFO' (C-shell: `unsetenv TERMINFO') as well.",
2644 terminal_type);
2645 # else /* TERMCAP */
2646 fatal ("Terminal type \"%s\" is not powerful enough to run Emacs.\n\
2647 It lacks the ability to position the cursor.\n\
2648 If that is not the actual type of terminal you have,\n\
2649 use the Bourne shell command `TERM=... export TERM' (C-shell:\n\
2650 `setenv TERM ...') to specify the correct type. It may be necessary\n\
2651 to do `unset TERMCAP' (C-shell: `unsetenv TERMCAP') as well.",
2652 terminal_type);
2653 # endif /* TERMINFO */
2654 #endif /*VMS */
2655 if (FRAME_LINES (sf) <= 0
2656 || FRAME_COLS (sf) <= 0)
2657 fatal ("The frame size has not been specified");
2658
2659 delete_in_insert_mode
2660 = TS_delete_mode && TS_insert_mode
2661 && !strcmp (TS_delete_mode, TS_insert_mode);
2662
2663 se_is_so = (TS_standout_mode
2664 && TS_end_standout_mode
2665 && !strcmp (TS_standout_mode, TS_end_standout_mode));
2666
2667 UseTabs = tabs_safe_p () && TabWidth == 8;
2668
2669 scroll_region_ok
2670 = (Wcm.cm_abs
2671 && (TS_set_window || TS_set_scroll_region || TS_set_scroll_region_1));
2672
2673 line_ins_del_ok = (((TS_ins_line || TS_ins_multi_lines)
2674 && (TS_del_line || TS_del_multi_lines))
2675 || (scroll_region_ok && TS_fwd_scroll && TS_rev_scroll));
2676
2677 char_ins_del_ok = ((TS_ins_char || TS_insert_mode
2678 || TS_pad_inserted_char || TS_ins_multi_chars)
2679 && (TS_del_char || TS_del_multi_chars));
2680
2681 fast_clear_end_of_line = TS_clr_line != 0;
2682
2683 init_baud_rate ();
2684 if (read_socket_hook) /* Baudrate is somewhat */
2685 /* meaningless in this case */
2686 baud_rate = 9600;
2687
2688 FRAME_CAN_HAVE_SCROLL_BARS (sf) = 0;
2689 FRAME_VERTICAL_SCROLL_BAR_TYPE (sf) = vertical_scroll_bar_none;
2690 #endif /* WINDOWSNT */
2691
2692 xfree (buffer);
2693 }
2694
2695 /* VARARGS 1 */
2696 void
2697 fatal (str, arg1, arg2)
2698 char *str, *arg1, *arg2;
2699 {
2700 fprintf (stderr, "emacs: ");
2701 fprintf (stderr, str, arg1, arg2);
2702 fprintf (stderr, "\n");
2703 fflush (stderr);
2704 exit (1);
2705 }
2706
2707 void
2708 syms_of_term ()
2709 {
2710 DEFVAR_BOOL ("system-uses-terminfo", &system_uses_terminfo,
2711 doc: /* Non-nil means the system uses terminfo rather than termcap.
2712 This variable can be used by terminal emulator packages. */);
2713 #ifdef TERMINFO
2714 system_uses_terminfo = 1;
2715 #else
2716 system_uses_terminfo = 0;
2717 #endif
2718
2719 DEFVAR_LISP ("ring-bell-function", &Vring_bell_function,
2720 doc: /* Non-nil means call this function to ring the bell.
2721 The function should accept no arguments. */);
2722 Vring_bell_function = Qnil;
2723
2724 defsubr (&Stty_display_color_p);
2725 defsubr (&Stty_display_color_cells);
2726 }
2727
2728 /* arch-tag: 498e7449-6f2e-45e2-91dd-b7d4ca488193
2729 (do not change this comment) */