Convert safe_call to use variable number of arguments.
[bpt/emacs.git] / src / term.c
1 /* Terminal control module for terminals described by TERMCAP
2 Copyright (C) 1985-1987, 1993-1995, 1998, 2000-2012
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 3 of the License, or
10 (at your option) 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. If not, see <http://www.gnu.org/licenses/>. */
19
20 /* New redisplay, TTY faces by Gerd Moellmann <gerd@gnu.org>. */
21
22 #include <config.h>
23 #include <stdio.h>
24 #include <ctype.h>
25 #include <errno.h>
26 #include <sys/file.h>
27 #include <sys/time.h>
28 #include <unistd.h>
29 #include <signal.h>
30 #include <setjmp.h>
31
32 #include "lisp.h"
33 #include "termchar.h"
34 #include "termopts.h"
35 #include "tparam.h"
36 #include "character.h"
37 #include "buffer.h"
38 #include "charset.h"
39 #include "coding.h"
40 #include "composite.h"
41 #include "keyboard.h"
42 #include "frame.h"
43 #include "disptab.h"
44 #include "termhooks.h"
45 #include "dispextern.h"
46 #include "window.h"
47 #include "keymap.h"
48 #include "blockinput.h"
49 #include "syssignal.h"
50 #include "systty.h"
51 #include "intervals.h"
52 #ifdef MSDOS
53 #include "msdos.h"
54 static int been_here = -1;
55 #endif
56
57 #include "cm.h"
58 #ifdef HAVE_X_WINDOWS
59 #include "xterm.h"
60 #endif
61
62 #ifndef O_RDWR
63 #define O_RDWR 2
64 #endif
65
66 #ifndef O_NOCTTY
67 #define O_NOCTTY 0
68 #endif
69
70 /* The name of the default console device. */
71 #ifdef WINDOWSNT
72 #define DEV_TTY "CONOUT$"
73 #else
74 #define DEV_TTY "/dev/tty"
75 #endif
76
77 static void tty_set_scroll_region (struct frame *f, int start, int stop);
78 static void turn_on_face (struct frame *, int face_id);
79 static void turn_off_face (struct frame *, int face_id);
80 static void tty_turn_off_highlight (struct tty_display_info *);
81 static void tty_show_cursor (struct tty_display_info *);
82 static void tty_hide_cursor (struct tty_display_info *);
83 static void tty_background_highlight (struct tty_display_info *tty);
84 static struct terminal *get_tty_terminal (Lisp_Object, int);
85 static void clear_tty_hooks (struct terminal *terminal);
86 static void set_tty_hooks (struct terminal *terminal);
87 static void dissociate_if_controlling_tty (int fd);
88 static void delete_tty (struct terminal *);
89 static _Noreturn void maybe_fatal (int must_succeed, struct terminal *terminal,
90 const char *str1, const char *str2, ...)
91 ATTRIBUTE_FORMAT_PRINTF (3, 5) ATTRIBUTE_FORMAT_PRINTF (4, 5);
92 static _Noreturn void vfatal (const char *str, va_list ap)
93 ATTRIBUTE_FORMAT_PRINTF (1, 0);
94
95
96 #define OUTPUT(tty, a) \
97 emacs_tputs ((tty), a, \
98 (int) (FRAME_LINES (XFRAME (selected_frame)) \
99 - curY (tty)), \
100 cmputc)
101
102 #define OUTPUT1(tty, a) emacs_tputs ((tty), a, 1, cmputc)
103 #define OUTPUTL(tty, a, lines) emacs_tputs ((tty), a, lines, cmputc)
104
105 #define OUTPUT_IF(tty, a) \
106 do { \
107 if (a) \
108 OUTPUT (tty, a); \
109 } while (0)
110
111 #define OUTPUT1_IF(tty, a) do { if (a) emacs_tputs ((tty), a, 1, cmputc); } while (0)
112
113 /* Display space properties */
114
115 /* Chain of all tty device parameters. */
116 struct tty_display_info *tty_list;
117
118 /* Meaning of bits in no_color_video. Each bit set means that the
119 corresponding attribute cannot be combined with colors. */
120
121 enum no_color_bit
122 {
123 NC_STANDOUT = 1 << 0,
124 NC_UNDERLINE = 1 << 1,
125 NC_REVERSE = 1 << 2,
126 NC_ITALIC = 1 << 3,
127 NC_DIM = 1 << 4,
128 NC_BOLD = 1 << 5,
129 NC_INVIS = 1 << 6,
130 NC_PROTECT = 1 << 7
131 };
132
133 /* internal state */
134
135 /* The largest frame width in any call to calculate_costs. */
136
137 static int max_frame_cols;
138
139 /* Non-zero if we have dropped our controlling tty and therefore
140 should not open a frame on stdout. */
141 static int no_controlling_tty;
142
143 \f
144
145 #ifdef HAVE_GPM
146 #include <sys/fcntl.h>
147
148 /* The device for which we have enabled gpm support (or NULL). */
149 struct tty_display_info *gpm_tty = NULL;
150
151 /* Last recorded mouse coordinates. */
152 static int last_mouse_x, last_mouse_y;
153 #endif /* HAVE_GPM */
154
155 /* Ring the bell on a tty. */
156
157 static void
158 tty_ring_bell (struct frame *f)
159 {
160 struct tty_display_info *tty = FRAME_TTY (f);
161
162 if (tty->output)
163 {
164 OUTPUT (tty, (tty->TS_visible_bell && visible_bell
165 ? tty->TS_visible_bell
166 : tty->TS_bell));
167 fflush (tty->output);
168 }
169 }
170
171 /* Set up termcap modes for Emacs. */
172
173 static void
174 tty_set_terminal_modes (struct terminal *terminal)
175 {
176 struct tty_display_info *tty = terminal->display_info.tty;
177
178 if (tty->output)
179 {
180 if (tty->TS_termcap_modes)
181 OUTPUT (tty, tty->TS_termcap_modes);
182 else
183 {
184 /* Output enough newlines to scroll all the old screen contents
185 off the screen, so it won't be overwritten and lost. */
186 int i;
187 current_tty = tty;
188 for (i = 0; i < FRAME_LINES (XFRAME (selected_frame)); i++)
189 cmputc ('\n');
190 }
191
192 OUTPUT_IF (tty, visible_cursor ? tty->TS_cursor_visible : tty->TS_cursor_normal);
193 OUTPUT_IF (tty, tty->TS_keypad_mode);
194 losecursor (tty);
195 fflush (tty->output);
196 }
197 }
198
199 /* Reset termcap modes before exiting Emacs. */
200
201 static void
202 tty_reset_terminal_modes (struct terminal *terminal)
203 {
204 struct tty_display_info *tty = terminal->display_info.tty;
205
206 if (tty->output)
207 {
208 tty_turn_off_highlight (tty);
209 tty_turn_off_insert (tty);
210 OUTPUT_IF (tty, tty->TS_end_keypad_mode);
211 OUTPUT_IF (tty, tty->TS_cursor_normal);
212 OUTPUT_IF (tty, tty->TS_end_termcap_modes);
213 OUTPUT_IF (tty, tty->TS_orig_pair);
214 /* Output raw CR so kernel can track the cursor hpos. */
215 current_tty = tty;
216 cmputc ('\r');
217 fflush (tty->output);
218 }
219 }
220
221 /* Flag the end of a display update on a termcap terminal. */
222
223 static void
224 tty_update_end (struct frame *f)
225 {
226 struct tty_display_info *tty = FRAME_TTY (f);
227
228 if (!XWINDOW (selected_window)->cursor_off_p)
229 tty_show_cursor (tty);
230 tty_turn_off_insert (tty);
231 tty_background_highlight (tty);
232 }
233
234 /* The implementation of set_terminal_window for termcap frames. */
235
236 static void
237 tty_set_terminal_window (struct frame *f, int size)
238 {
239 struct tty_display_info *tty = FRAME_TTY (f);
240
241 tty->specified_window = size ? size : FRAME_LINES (f);
242 if (FRAME_SCROLL_REGION_OK (f))
243 tty_set_scroll_region (f, 0, tty->specified_window);
244 }
245
246 static void
247 tty_set_scroll_region (struct frame *f, int start, int stop)
248 {
249 char *buf;
250 struct tty_display_info *tty = FRAME_TTY (f);
251
252 if (tty->TS_set_scroll_region)
253 buf = tparam (tty->TS_set_scroll_region, 0, 0, start, stop - 1, 0, 0);
254 else if (tty->TS_set_scroll_region_1)
255 buf = tparam (tty->TS_set_scroll_region_1, 0, 0,
256 FRAME_LINES (f), start,
257 FRAME_LINES (f) - stop,
258 FRAME_LINES (f));
259 else
260 buf = tparam (tty->TS_set_window, 0, 0, start, 0, stop, FRAME_COLS (f));
261
262 OUTPUT (tty, buf);
263 xfree (buf);
264 losecursor (tty);
265 }
266
267 \f
268 static void
269 tty_turn_on_insert (struct tty_display_info *tty)
270 {
271 if (!tty->insert_mode)
272 OUTPUT (tty, tty->TS_insert_mode);
273 tty->insert_mode = 1;
274 }
275
276 void
277 tty_turn_off_insert (struct tty_display_info *tty)
278 {
279 if (tty->insert_mode)
280 OUTPUT (tty, tty->TS_end_insert_mode);
281 tty->insert_mode = 0;
282 }
283 \f
284 /* Handle highlighting. */
285
286 static void
287 tty_turn_off_highlight (struct tty_display_info *tty)
288 {
289 if (tty->standout_mode)
290 OUTPUT_IF (tty, tty->TS_end_standout_mode);
291 tty->standout_mode = 0;
292 }
293
294 static void
295 tty_turn_on_highlight (struct tty_display_info *tty)
296 {
297 if (!tty->standout_mode)
298 OUTPUT_IF (tty, tty->TS_standout_mode);
299 tty->standout_mode = 1;
300 }
301
302 static void
303 tty_toggle_highlight (struct tty_display_info *tty)
304 {
305 if (tty->standout_mode)
306 tty_turn_off_highlight (tty);
307 else
308 tty_turn_on_highlight (tty);
309 }
310
311
312 /* Make cursor invisible. */
313
314 static void
315 tty_hide_cursor (struct tty_display_info *tty)
316 {
317 if (tty->cursor_hidden == 0)
318 {
319 tty->cursor_hidden = 1;
320 OUTPUT_IF (tty, tty->TS_cursor_invisible);
321 }
322 }
323
324
325 /* Ensure that cursor is visible. */
326
327 static void
328 tty_show_cursor (struct tty_display_info *tty)
329 {
330 if (tty->cursor_hidden)
331 {
332 tty->cursor_hidden = 0;
333 OUTPUT_IF (tty, tty->TS_cursor_normal);
334 if (visible_cursor)
335 OUTPUT_IF (tty, tty->TS_cursor_visible);
336 }
337 }
338
339
340 /* Set standout mode to the state it should be in for
341 empty space inside windows. What this is,
342 depends on the user option inverse-video. */
343
344 static void
345 tty_background_highlight (struct tty_display_info *tty)
346 {
347 if (inverse_video)
348 tty_turn_on_highlight (tty);
349 else
350 tty_turn_off_highlight (tty);
351 }
352
353 /* Set standout mode to the mode specified for the text to be output. */
354
355 static void
356 tty_highlight_if_desired (struct tty_display_info *tty)
357 {
358 if (inverse_video)
359 tty_turn_on_highlight (tty);
360 else
361 tty_turn_off_highlight (tty);
362 }
363 \f
364
365 /* Move cursor to row/column position VPOS/HPOS. HPOS/VPOS are
366 frame-relative coordinates. */
367
368 static void
369 tty_cursor_to (struct frame *f, int vpos, int hpos)
370 {
371 struct tty_display_info *tty = FRAME_TTY (f);
372
373 /* Detect the case where we are called from reset_sys_modes
374 and the costs have never been calculated. Do nothing. */
375 if (! tty->costs_set)
376 return;
377
378 if (curY (tty) == vpos
379 && curX (tty) == hpos)
380 return;
381 if (!tty->TF_standout_motion)
382 tty_background_highlight (tty);
383 if (!tty->TF_insmode_motion)
384 tty_turn_off_insert (tty);
385 cmgoto (tty, vpos, hpos);
386 }
387
388 /* Similar but don't take any account of the wasted characters. */
389
390 static void
391 tty_raw_cursor_to (struct frame *f, int row, int col)
392 {
393 struct tty_display_info *tty = FRAME_TTY (f);
394
395 if (curY (tty) == row
396 && curX (tty) == col)
397 return;
398 if (!tty->TF_standout_motion)
399 tty_background_highlight (tty);
400 if (!tty->TF_insmode_motion)
401 tty_turn_off_insert (tty);
402 cmgoto (tty, row, col);
403 }
404 \f
405 /* Erase operations */
406
407 /* Clear from cursor to end of frame on a termcap device. */
408
409 static void
410 tty_clear_to_end (struct frame *f)
411 {
412 register int i;
413 struct tty_display_info *tty = FRAME_TTY (f);
414
415 if (tty->TS_clr_to_bottom)
416 {
417 tty_background_highlight (tty);
418 OUTPUT (tty, tty->TS_clr_to_bottom);
419 }
420 else
421 {
422 for (i = curY (tty); i < FRAME_LINES (f); i++)
423 {
424 cursor_to (f, i, 0);
425 clear_end_of_line (f, FRAME_COLS (f));
426 }
427 }
428 }
429
430 /* Clear an entire termcap frame. */
431
432 static void
433 tty_clear_frame (struct frame *f)
434 {
435 struct tty_display_info *tty = FRAME_TTY (f);
436
437 if (tty->TS_clr_frame)
438 {
439 tty_background_highlight (tty);
440 OUTPUT (tty, tty->TS_clr_frame);
441 cmat (tty, 0, 0);
442 }
443 else
444 {
445 cursor_to (f, 0, 0);
446 clear_to_end (f);
447 }
448 }
449
450 /* An implementation of clear_end_of_line for termcap frames.
451
452 Note that the cursor may be moved, on terminals lacking a `ce' string. */
453
454 static void
455 tty_clear_end_of_line (struct frame *f, int first_unused_hpos)
456 {
457 register int i;
458 struct tty_display_info *tty = FRAME_TTY (f);
459
460 /* Detect the case where we are called from reset_sys_modes
461 and the costs have never been calculated. Do nothing. */
462 if (! tty->costs_set)
463 return;
464
465 if (curX (tty) >= first_unused_hpos)
466 return;
467 tty_background_highlight (tty);
468 if (tty->TS_clr_line)
469 {
470 OUTPUT1 (tty, tty->TS_clr_line);
471 }
472 else
473 { /* have to do it the hard way */
474 tty_turn_off_insert (tty);
475
476 /* Do not write in last row last col with Auto-wrap on. */
477 if (AutoWrap (tty)
478 && curY (tty) == FrameRows (tty) - 1
479 && first_unused_hpos == FrameCols (tty))
480 first_unused_hpos--;
481
482 for (i = curX (tty); i < first_unused_hpos; i++)
483 {
484 if (tty->termscript)
485 fputc (' ', tty->termscript);
486 fputc (' ', tty->output);
487 }
488 cmplus (tty, first_unused_hpos - curX (tty));
489 }
490 }
491 \f
492 /* Buffers to store the source and result of code conversion for terminal. */
493 static unsigned char *encode_terminal_src;
494 static unsigned char *encode_terminal_dst;
495 /* Allocated sizes of the above buffers. */
496 static ptrdiff_t encode_terminal_src_size;
497 static ptrdiff_t encode_terminal_dst_size;
498
499 /* Encode SRC_LEN glyphs starting at SRC to terminal output codes.
500 Set CODING->produced to the byte-length of the resulting byte
501 sequence, and return a pointer to that byte sequence. */
502
503 unsigned char *
504 encode_terminal_code (struct glyph *src, int src_len, struct coding_system *coding)
505 {
506 struct glyph *src_end = src + src_len;
507 unsigned char *buf;
508 ptrdiff_t nchars, nbytes, required;
509 ptrdiff_t tlen = GLYPH_TABLE_LENGTH;
510 register Lisp_Object *tbase = GLYPH_TABLE_BASE;
511 Lisp_Object charset_list;
512
513 /* Allocate sufficient size of buffer to store all characters in
514 multibyte-form. But, it may be enlarged on demand if
515 Vglyph_table contains a string or a composite glyph is
516 encountered. */
517 if (min (PTRDIFF_MAX, SIZE_MAX) / MAX_MULTIBYTE_LENGTH < src_len)
518 memory_full (SIZE_MAX);
519 required = src_len;
520 required *= MAX_MULTIBYTE_LENGTH;
521 if (encode_terminal_src_size < required)
522 {
523 encode_terminal_src = xrealloc (encode_terminal_src, required);
524 encode_terminal_src_size = required;
525 }
526
527 charset_list = coding_charset_list (coding);
528
529 buf = encode_terminal_src;
530 nchars = 0;
531 while (src < src_end)
532 {
533 if (src->type == COMPOSITE_GLYPH)
534 {
535 struct composition *cmp IF_LINT (= NULL);
536 Lisp_Object gstring IF_LINT (= Qnil);
537 int i;
538
539 nbytes = buf - encode_terminal_src;
540 if (src->u.cmp.automatic)
541 {
542 gstring = composition_gstring_from_id (src->u.cmp.id);
543 required = src->slice.cmp.to - src->slice.cmp.from + 1;
544 }
545 else
546 {
547 cmp = composition_table[src->u.cmp.id];
548 required = cmp->glyph_len;
549 required *= MAX_MULTIBYTE_LENGTH;
550 }
551
552 if (encode_terminal_src_size - nbytes < required)
553 {
554 encode_terminal_src =
555 xpalloc (encode_terminal_src, &encode_terminal_src_size,
556 required - (encode_terminal_src_size - nbytes),
557 -1, 1);
558 buf = encode_terminal_src + nbytes;
559 }
560
561 if (src->u.cmp.automatic)
562 for (i = src->slice.cmp.from; i <= src->slice.cmp.to; i++)
563 {
564 Lisp_Object g = LGSTRING_GLYPH (gstring, i);
565 int c = LGLYPH_CHAR (g);
566
567 if (! char_charset (c, charset_list, NULL))
568 c = '?';
569 buf += CHAR_STRING (c, buf);
570 nchars++;
571 }
572 else
573 for (i = 0; i < cmp->glyph_len; i++)
574 {
575 int c = COMPOSITION_GLYPH (cmp, i);
576
577 /* TAB in a composition means display glyphs with
578 padding space on the left or right. */
579 if (c == '\t')
580 continue;
581 if (char_charset (c, charset_list, NULL))
582 {
583 if (CHAR_WIDTH (c) == 0
584 && i > 0 && COMPOSITION_GLYPH (cmp, i - 1) == '\t')
585 /* Should be left-padded */
586 {
587 buf += CHAR_STRING (' ', buf);
588 nchars++;
589 }
590 }
591 else
592 c = '?';
593 buf += CHAR_STRING (c, buf);
594 nchars++;
595 }
596 }
597 /* We must skip glyphs to be padded for a wide character. */
598 else if (! CHAR_GLYPH_PADDING_P (*src))
599 {
600 GLYPH g;
601 int c IF_LINT (= 0);
602 Lisp_Object string;
603
604 string = Qnil;
605 SET_GLYPH_FROM_CHAR_GLYPH (g, src[0]);
606
607 if (GLYPH_INVALID_P (g) || GLYPH_SIMPLE_P (tbase, tlen, g))
608 {
609 /* This glyph doesn't have an entry in Vglyph_table. */
610 c = src->u.ch;
611 }
612 else
613 {
614 /* This glyph has an entry in Vglyph_table,
615 so process any alias before testing for simpleness. */
616 GLYPH_FOLLOW_ALIASES (tbase, tlen, g);
617
618 if (GLYPH_SIMPLE_P (tbase, tlen, g))
619 /* We set the multi-byte form of a character in G
620 (that should be an ASCII character) at WORKBUF. */
621 c = GLYPH_CHAR (g);
622 else
623 /* We have a string in Vglyph_table. */
624 string = tbase[GLYPH_CHAR (g)];
625 }
626
627 if (NILP (string))
628 {
629 nbytes = buf - encode_terminal_src;
630 if (encode_terminal_src_size - nbytes < MAX_MULTIBYTE_LENGTH)
631 {
632 encode_terminal_src =
633 xpalloc (encode_terminal_src, &encode_terminal_src_size,
634 MAX_MULTIBYTE_LENGTH, -1, 1);
635 buf = encode_terminal_src + nbytes;
636 }
637 if (CHAR_BYTE8_P (c)
638 || char_charset (c, charset_list, NULL))
639 {
640 /* Store the multibyte form of C at BUF. */
641 buf += CHAR_STRING (c, buf);
642 nchars++;
643 }
644 else
645 {
646 /* C is not encodable. */
647 *buf++ = '?';
648 nchars++;
649 while (src + 1 < src_end && CHAR_GLYPH_PADDING_P (src[1]))
650 {
651 *buf++ = '?';
652 nchars++;
653 src++;
654 }
655 }
656 }
657 else
658 {
659 if (! STRING_MULTIBYTE (string))
660 string = string_to_multibyte (string);
661 nbytes = buf - encode_terminal_src;
662 if (encode_terminal_src_size - nbytes < SBYTES (string))
663 {
664 encode_terminal_src =
665 xpalloc (encode_terminal_src, &encode_terminal_src_size,
666 (SBYTES (string)
667 - (encode_terminal_src_size - nbytes)),
668 -1, 1);
669 buf = encode_terminal_src + nbytes;
670 }
671 memcpy (buf, SDATA (string), SBYTES (string));
672 buf += SBYTES (string);
673 nchars += SCHARS (string);
674 }
675 }
676 src++;
677 }
678
679 if (nchars == 0)
680 {
681 coding->produced = 0;
682 return NULL;
683 }
684
685 nbytes = buf - encode_terminal_src;
686 coding->source = encode_terminal_src;
687 if (encode_terminal_dst_size == 0)
688 {
689 encode_terminal_dst = xrealloc (encode_terminal_dst,
690 encode_terminal_src_size);
691 encode_terminal_dst_size = encode_terminal_src_size;
692 }
693 coding->destination = encode_terminal_dst;
694 coding->dst_bytes = encode_terminal_dst_size;
695 encode_coding_object (coding, Qnil, 0, 0, nchars, nbytes, Qnil);
696 /* coding->destination may have been reallocated. */
697 encode_terminal_dst = coding->destination;
698 encode_terminal_dst_size = coding->dst_bytes;
699
700 return (encode_terminal_dst);
701 }
702
703
704
705 /* An implementation of write_glyphs for termcap frames. */
706
707 static void
708 tty_write_glyphs (struct frame *f, struct glyph *string, int len)
709 {
710 unsigned char *conversion_buffer;
711 struct coding_system *coding;
712 size_t n, stringlen;
713
714 struct tty_display_info *tty = FRAME_TTY (f);
715
716 tty_turn_off_insert (tty);
717 tty_hide_cursor (tty);
718
719 /* Don't dare write in last column of bottom line, if Auto-Wrap,
720 since that would scroll the whole frame on some terminals. */
721
722 if (AutoWrap (tty)
723 && curY (tty) + 1 == FRAME_LINES (f)
724 && (curX (tty) + len) == FRAME_COLS (f))
725 len --;
726 if (len <= 0)
727 return;
728
729 cmplus (tty, len);
730
731 /* If terminal_coding does any conversion, use it, otherwise use
732 safe_terminal_coding. We can't use CODING_REQUIRE_ENCODING here
733 because it always return 1 if the member src_multibyte is 1. */
734 coding = (FRAME_TERMINAL_CODING (f)->common_flags & CODING_REQUIRE_ENCODING_MASK
735 ? FRAME_TERMINAL_CODING (f) : &safe_terminal_coding);
736 /* The mode bit CODING_MODE_LAST_BLOCK should be set to 1 only at
737 the tail. */
738 coding->mode &= ~CODING_MODE_LAST_BLOCK;
739
740 for (stringlen = len; stringlen != 0; stringlen -= n)
741 {
742 /* Identify a run of glyphs with the same face. */
743 int face_id = string->face_id;
744
745 for (n = 1; n < stringlen; ++n)
746 if (string[n].face_id != face_id)
747 break;
748
749 /* Turn appearance modes of the face of the run on. */
750 tty_highlight_if_desired (tty);
751 turn_on_face (f, face_id);
752
753 if (n == stringlen)
754 /* This is the last run. */
755 coding->mode |= CODING_MODE_LAST_BLOCK;
756 conversion_buffer = encode_terminal_code (string, n, coding);
757 if (coding->produced > 0)
758 {
759 BLOCK_INPUT;
760 fwrite (conversion_buffer, 1, coding->produced, tty->output);
761 if (ferror (tty->output))
762 clearerr (tty->output);
763 if (tty->termscript)
764 fwrite (conversion_buffer, 1, coding->produced, tty->termscript);
765 UNBLOCK_INPUT;
766 }
767 string += n;
768
769 /* Turn appearance modes off. */
770 turn_off_face (f, face_id);
771 tty_turn_off_highlight (tty);
772 }
773
774 cmcheckmagic (tty);
775 }
776
777 #ifdef HAVE_GPM /* Only used by GPM code. */
778
779 static void
780 tty_write_glyphs_with_face (register struct frame *f, register struct glyph *string,
781 register int len, register int face_id)
782 {
783 unsigned char *conversion_buffer;
784 struct coding_system *coding;
785
786 struct tty_display_info *tty = FRAME_TTY (f);
787
788 tty_turn_off_insert (tty);
789 tty_hide_cursor (tty);
790
791 /* Don't dare write in last column of bottom line, if Auto-Wrap,
792 since that would scroll the whole frame on some terminals. */
793
794 if (AutoWrap (tty)
795 && curY (tty) + 1 == FRAME_LINES (f)
796 && (curX (tty) + len) == FRAME_COLS (f))
797 len --;
798 if (len <= 0)
799 return;
800
801 cmplus (tty, len);
802
803 /* If terminal_coding does any conversion, use it, otherwise use
804 safe_terminal_coding. We can't use CODING_REQUIRE_ENCODING here
805 because it always return 1 if the member src_multibyte is 1. */
806 coding = (FRAME_TERMINAL_CODING (f)->common_flags & CODING_REQUIRE_ENCODING_MASK
807 ? FRAME_TERMINAL_CODING (f) : &safe_terminal_coding);
808 /* The mode bit CODING_MODE_LAST_BLOCK should be set to 1 only at
809 the tail. */
810 coding->mode &= ~CODING_MODE_LAST_BLOCK;
811
812 /* Turn appearance modes of the face. */
813 tty_highlight_if_desired (tty);
814 turn_on_face (f, face_id);
815
816 coding->mode |= CODING_MODE_LAST_BLOCK;
817 conversion_buffer = encode_terminal_code (string, len, coding);
818 if (coding->produced > 0)
819 {
820 BLOCK_INPUT;
821 fwrite (conversion_buffer, 1, coding->produced, tty->output);
822 if (ferror (tty->output))
823 clearerr (tty->output);
824 if (tty->termscript)
825 fwrite (conversion_buffer, 1, coding->produced, tty->termscript);
826 UNBLOCK_INPUT;
827 }
828
829 /* Turn appearance modes off. */
830 turn_off_face (f, face_id);
831 tty_turn_off_highlight (tty);
832
833 cmcheckmagic (tty);
834 }
835 #endif
836
837 /* An implementation of insert_glyphs for termcap frames. */
838
839 static void
840 tty_insert_glyphs (struct frame *f, struct glyph *start, int len)
841 {
842 char *buf;
843 struct glyph *glyph = NULL;
844 unsigned char *conversion_buffer;
845 unsigned char space[1];
846 struct coding_system *coding;
847
848 struct tty_display_info *tty = FRAME_TTY (f);
849
850 if (tty->TS_ins_multi_chars)
851 {
852 buf = tparam (tty->TS_ins_multi_chars, 0, 0, len, 0, 0, 0);
853 OUTPUT1 (tty, buf);
854 xfree (buf);
855 if (start)
856 write_glyphs (f, start, len);
857 return;
858 }
859
860 tty_turn_on_insert (tty);
861 cmplus (tty, len);
862
863 if (! start)
864 space[0] = SPACEGLYPH;
865
866 /* If terminal_coding does any conversion, use it, otherwise use
867 safe_terminal_coding. We can't use CODING_REQUIRE_ENCODING here
868 because it always return 1 if the member src_multibyte is 1. */
869 coding = (FRAME_TERMINAL_CODING (f)->common_flags & CODING_REQUIRE_ENCODING_MASK
870 ? FRAME_TERMINAL_CODING (f) : &safe_terminal_coding);
871 /* The mode bit CODING_MODE_LAST_BLOCK should be set to 1 only at
872 the tail. */
873 coding->mode &= ~CODING_MODE_LAST_BLOCK;
874
875 while (len-- > 0)
876 {
877 OUTPUT1_IF (tty, tty->TS_ins_char);
878 if (!start)
879 {
880 conversion_buffer = space;
881 coding->produced = 1;
882 }
883 else
884 {
885 tty_highlight_if_desired (tty);
886 turn_on_face (f, start->face_id);
887 glyph = start;
888 ++start;
889 /* We must open sufficient space for a character which
890 occupies more than one column. */
891 while (len && CHAR_GLYPH_PADDING_P (*start))
892 {
893 OUTPUT1_IF (tty, tty->TS_ins_char);
894 start++, len--;
895 }
896
897 if (len <= 0)
898 /* This is the last glyph. */
899 coding->mode |= CODING_MODE_LAST_BLOCK;
900
901 conversion_buffer = encode_terminal_code (glyph, 1, coding);
902 }
903
904 if (coding->produced > 0)
905 {
906 BLOCK_INPUT;
907 fwrite (conversion_buffer, 1, coding->produced, tty->output);
908 if (ferror (tty->output))
909 clearerr (tty->output);
910 if (tty->termscript)
911 fwrite (conversion_buffer, 1, coding->produced, tty->termscript);
912 UNBLOCK_INPUT;
913 }
914
915 OUTPUT1_IF (tty, tty->TS_pad_inserted_char);
916 if (start)
917 {
918 turn_off_face (f, glyph->face_id);
919 tty_turn_off_highlight (tty);
920 }
921 }
922
923 cmcheckmagic (tty);
924 }
925
926 /* An implementation of delete_glyphs for termcap frames. */
927
928 static void
929 tty_delete_glyphs (struct frame *f, int n)
930 {
931 char *buf;
932 register int i;
933
934 struct tty_display_info *tty = FRAME_TTY (f);
935
936 if (tty->delete_in_insert_mode)
937 {
938 tty_turn_on_insert (tty);
939 }
940 else
941 {
942 tty_turn_off_insert (tty);
943 OUTPUT_IF (tty, tty->TS_delete_mode);
944 }
945
946 if (tty->TS_del_multi_chars)
947 {
948 buf = tparam (tty->TS_del_multi_chars, 0, 0, n, 0, 0, 0);
949 OUTPUT1 (tty, buf);
950 xfree (buf);
951 }
952 else
953 for (i = 0; i < n; i++)
954 OUTPUT1 (tty, tty->TS_del_char);
955 if (!tty->delete_in_insert_mode)
956 OUTPUT_IF (tty, tty->TS_end_delete_mode);
957 }
958 \f
959 /* An implementation of ins_del_lines for termcap frames. */
960
961 static void
962 tty_ins_del_lines (struct frame *f, int vpos, int n)
963 {
964 struct tty_display_info *tty = FRAME_TTY (f);
965 const char *multi =
966 n > 0 ? tty->TS_ins_multi_lines : tty->TS_del_multi_lines;
967 const char *single = n > 0 ? tty->TS_ins_line : tty->TS_del_line;
968 const char *scroll = n > 0 ? tty->TS_rev_scroll : tty->TS_fwd_scroll;
969
970 register int i = n > 0 ? n : -n;
971 register char *buf;
972
973 /* If the lines below the insertion are being pushed
974 into the end of the window, this is the same as clearing;
975 and we know the lines are already clear, since the matching
976 deletion has already been done. So can ignore this. */
977 /* If the lines below the deletion are blank lines coming
978 out of the end of the window, don't bother,
979 as there will be a matching inslines later that will flush them. */
980 if (FRAME_SCROLL_REGION_OK (f)
981 && vpos + i >= tty->specified_window)
982 return;
983 if (!FRAME_MEMORY_BELOW_FRAME (f)
984 && vpos + i >= FRAME_LINES (f))
985 return;
986
987 if (multi)
988 {
989 raw_cursor_to (f, vpos, 0);
990 tty_background_highlight (tty);
991 buf = tparam (multi, 0, 0, i, 0, 0, 0);
992 OUTPUT (tty, buf);
993 xfree (buf);
994 }
995 else if (single)
996 {
997 raw_cursor_to (f, vpos, 0);
998 tty_background_highlight (tty);
999 while (--i >= 0)
1000 OUTPUT (tty, single);
1001 if (tty->TF_teleray)
1002 curX (tty) = 0;
1003 }
1004 else
1005 {
1006 tty_set_scroll_region (f, vpos, tty->specified_window);
1007 if (n < 0)
1008 raw_cursor_to (f, tty->specified_window - 1, 0);
1009 else
1010 raw_cursor_to (f, vpos, 0);
1011 tty_background_highlight (tty);
1012 while (--i >= 0)
1013 OUTPUTL (tty, scroll, tty->specified_window - vpos);
1014 tty_set_scroll_region (f, 0, tty->specified_window);
1015 }
1016
1017 if (!FRAME_SCROLL_REGION_OK (f)
1018 && FRAME_MEMORY_BELOW_FRAME (f)
1019 && n < 0)
1020 {
1021 cursor_to (f, FRAME_LINES (f) + n, 0);
1022 clear_to_end (f);
1023 }
1024 }
1025 \f
1026 /* Compute cost of sending "str", in characters,
1027 not counting any line-dependent padding. */
1028
1029 int
1030 string_cost (const char *str)
1031 {
1032 cost = 0;
1033 if (str)
1034 tputs (str, 0, evalcost);
1035 return cost;
1036 }
1037
1038 /* Compute cost of sending "str", in characters,
1039 counting any line-dependent padding at one line. */
1040
1041 static int
1042 string_cost_one_line (const char *str)
1043 {
1044 cost = 0;
1045 if (str)
1046 tputs (str, 1, evalcost);
1047 return cost;
1048 }
1049
1050 /* Compute per line amount of line-dependent padding,
1051 in tenths of characters. */
1052
1053 int
1054 per_line_cost (const char *str)
1055 {
1056 cost = 0;
1057 if (str)
1058 tputs (str, 0, evalcost);
1059 cost = - cost;
1060 if (str)
1061 tputs (str, 10, evalcost);
1062 return cost;
1063 }
1064
1065 /* char_ins_del_cost[n] is cost of inserting N characters.
1066 char_ins_del_cost[-n] is cost of deleting N characters.
1067 The length of this vector is based on max_frame_cols. */
1068
1069 int *char_ins_del_vector;
1070
1071 #define char_ins_del_cost(f) (&char_ins_del_vector[FRAME_COLS ((f))])
1072
1073 /* ARGSUSED */
1074 static void
1075 calculate_ins_del_char_costs (struct frame *f)
1076 {
1077 struct tty_display_info *tty = FRAME_TTY (f);
1078 int ins_startup_cost, del_startup_cost;
1079 int ins_cost_per_char, del_cost_per_char;
1080 register int i;
1081 register int *p;
1082
1083 if (tty->TS_ins_multi_chars)
1084 {
1085 ins_cost_per_char = 0;
1086 ins_startup_cost = string_cost_one_line (tty->TS_ins_multi_chars);
1087 }
1088 else if (tty->TS_ins_char || tty->TS_pad_inserted_char
1089 || (tty->TS_insert_mode && tty->TS_end_insert_mode))
1090 {
1091 ins_startup_cost = (30 * (string_cost (tty->TS_insert_mode)
1092 + string_cost (tty->TS_end_insert_mode))) / 100;
1093 ins_cost_per_char = (string_cost_one_line (tty->TS_ins_char)
1094 + string_cost_one_line (tty->TS_pad_inserted_char));
1095 }
1096 else
1097 {
1098 ins_startup_cost = 9999;
1099 ins_cost_per_char = 0;
1100 }
1101
1102 if (tty->TS_del_multi_chars)
1103 {
1104 del_cost_per_char = 0;
1105 del_startup_cost = string_cost_one_line (tty->TS_del_multi_chars);
1106 }
1107 else if (tty->TS_del_char)
1108 {
1109 del_startup_cost = (string_cost (tty->TS_delete_mode)
1110 + string_cost (tty->TS_end_delete_mode));
1111 if (tty->delete_in_insert_mode)
1112 del_startup_cost /= 2;
1113 del_cost_per_char = string_cost_one_line (tty->TS_del_char);
1114 }
1115 else
1116 {
1117 del_startup_cost = 9999;
1118 del_cost_per_char = 0;
1119 }
1120
1121 /* Delete costs are at negative offsets */
1122 p = &char_ins_del_cost (f)[0];
1123 for (i = FRAME_COLS (f); --i >= 0;)
1124 *--p = (del_startup_cost += del_cost_per_char);
1125
1126 /* Doing nothing is free */
1127 p = &char_ins_del_cost (f)[0];
1128 *p++ = 0;
1129
1130 /* Insert costs are at positive offsets */
1131 for (i = FRAME_COLS (f); --i >= 0;)
1132 *p++ = (ins_startup_cost += ins_cost_per_char);
1133 }
1134
1135 void
1136 calculate_costs (struct frame *frame)
1137 {
1138 FRAME_COST_BAUD_RATE (frame) = baud_rate;
1139
1140 if (FRAME_TERMCAP_P (frame))
1141 {
1142 struct tty_display_info *tty = FRAME_TTY (frame);
1143 register const char *f = (tty->TS_set_scroll_region
1144 ? tty->TS_set_scroll_region
1145 : tty->TS_set_scroll_region_1);
1146
1147 FRAME_SCROLL_REGION_COST (frame) = string_cost (f);
1148
1149 tty->costs_set = 1;
1150
1151 /* These variables are only used for terminal stuff. They are
1152 allocated once for the terminal frame of X-windows emacs, but not
1153 used afterwards.
1154
1155 char_ins_del_vector (i.e., char_ins_del_cost) isn't used because
1156 X turns off char_ins_del_ok. */
1157
1158 max_frame_cols = max (max_frame_cols, FRAME_COLS (frame));
1159 if ((min (PTRDIFF_MAX, SIZE_MAX) / sizeof (int) - 1) / 2
1160 < max_frame_cols)
1161 memory_full (SIZE_MAX);
1162
1163 char_ins_del_vector =
1164 xrealloc (char_ins_del_vector,
1165 (sizeof (int) + 2 * sizeof (int) * max_frame_cols));
1166
1167 memset (char_ins_del_vector, 0,
1168 (sizeof (int) + 2 * sizeof (int) * max_frame_cols));
1169
1170
1171 if (f && (!tty->TS_ins_line && !tty->TS_del_line))
1172 do_line_insertion_deletion_costs (frame,
1173 tty->TS_rev_scroll, tty->TS_ins_multi_lines,
1174 tty->TS_fwd_scroll, tty->TS_del_multi_lines,
1175 f, f, 1);
1176 else
1177 do_line_insertion_deletion_costs (frame,
1178 tty->TS_ins_line, tty->TS_ins_multi_lines,
1179 tty->TS_del_line, tty->TS_del_multi_lines,
1180 0, 0, 1);
1181
1182 calculate_ins_del_char_costs (frame);
1183
1184 /* Don't use TS_repeat if its padding is worse than sending the chars */
1185 if (tty->TS_repeat && per_line_cost (tty->TS_repeat) * baud_rate < 9000)
1186 tty->RPov = string_cost (tty->TS_repeat);
1187 else
1188 tty->RPov = FRAME_COLS (frame) * 2;
1189
1190 cmcostinit (FRAME_TTY (frame)); /* set up cursor motion costs */
1191 }
1192 }
1193 \f
1194 struct fkey_table {
1195 const char *cap, *name;
1196 };
1197
1198 /* Termcap capability names that correspond directly to X keysyms.
1199 Some of these (marked "terminfo") aren't supplied by old-style
1200 (Berkeley) termcap entries. They're listed in X keysym order;
1201 except we put the keypad keys first, so that if they clash with
1202 other keys (as on the IBM PC keyboard) they get overridden.
1203 */
1204
1205 static const struct fkey_table keys[] =
1206 {
1207 {"kh", "home"}, /* termcap */
1208 {"kl", "left"}, /* termcap */
1209 {"ku", "up"}, /* termcap */
1210 {"kr", "right"}, /* termcap */
1211 {"kd", "down"}, /* termcap */
1212 {"%8", "prior"}, /* terminfo */
1213 {"%5", "next"}, /* terminfo */
1214 {"@7", "end"}, /* terminfo */
1215 {"@1", "begin"}, /* terminfo */
1216 {"*6", "select"}, /* terminfo */
1217 {"%9", "print"}, /* terminfo */
1218 {"@4", "execute"}, /* terminfo --- actually the `command' key */
1219 /*
1220 * "insert" --- see below
1221 */
1222 {"&8", "undo"}, /* terminfo */
1223 {"%0", "redo"}, /* terminfo */
1224 {"%7", "menu"}, /* terminfo --- actually the `options' key */
1225 {"@0", "find"}, /* terminfo */
1226 {"@2", "cancel"}, /* terminfo */
1227 {"%1", "help"}, /* terminfo */
1228 /*
1229 * "break" goes here, but can't be reliably intercepted with termcap
1230 */
1231 {"&4", "reset"}, /* terminfo --- actually `restart' */
1232 /*
1233 * "system" and "user" --- no termcaps
1234 */
1235 {"kE", "clearline"}, /* terminfo */
1236 {"kA", "insertline"}, /* terminfo */
1237 {"kL", "deleteline"}, /* terminfo */
1238 {"kI", "insertchar"}, /* terminfo */
1239 {"kD", "deletechar"}, /* terminfo */
1240 {"kB", "backtab"}, /* terminfo */
1241 /*
1242 * "kp_backtab", "kp-space", "kp-tab" --- no termcaps
1243 */
1244 {"@8", "kp-enter"}, /* terminfo */
1245 /*
1246 * "kp-f1", "kp-f2", "kp-f3" "kp-f4",
1247 * "kp-multiply", "kp-add", "kp-separator",
1248 * "kp-subtract", "kp-decimal", "kp-divide", "kp-0";
1249 * --- no termcaps for any of these.
1250 */
1251 {"K4", "kp-1"}, /* terminfo */
1252 /*
1253 * "kp-2" --- no termcap
1254 */
1255 {"K5", "kp-3"}, /* terminfo */
1256 /*
1257 * "kp-4" --- no termcap
1258 */
1259 {"K2", "kp-5"}, /* terminfo */
1260 /*
1261 * "kp-6" --- no termcap
1262 */
1263 {"K1", "kp-7"}, /* terminfo */
1264 /*
1265 * "kp-8" --- no termcap
1266 */
1267 {"K3", "kp-9"}, /* terminfo */
1268 /*
1269 * "kp-equal" --- no termcap
1270 */
1271 {"k1", "f1"},
1272 {"k2", "f2"},
1273 {"k3", "f3"},
1274 {"k4", "f4"},
1275 {"k5", "f5"},
1276 {"k6", "f6"},
1277 {"k7", "f7"},
1278 {"k8", "f8"},
1279 {"k9", "f9"},
1280
1281 {"&0", "S-cancel"}, /*shifted cancel key*/
1282 {"&9", "S-begin"}, /*shifted begin key*/
1283 {"*0", "S-find"}, /*shifted find key*/
1284 {"*1", "S-execute"}, /*shifted execute? actually shifted command key*/
1285 {"*4", "S-delete"}, /*shifted delete-character key*/
1286 {"*7", "S-end"}, /*shifted end key*/
1287 {"*8", "S-clearline"}, /*shifted clear-to end-of-line key*/
1288 {"#1", "S-help"}, /*shifted help key*/
1289 {"#2", "S-home"}, /*shifted home key*/
1290 {"#3", "S-insert"}, /*shifted insert-character key*/
1291 {"#4", "S-left"}, /*shifted left-arrow key*/
1292 {"%d", "S-menu"}, /*shifted menu? actually shifted options key*/
1293 {"%c", "S-next"}, /*shifted next key*/
1294 {"%e", "S-prior"}, /*shifted previous key*/
1295 {"%f", "S-print"}, /*shifted print key*/
1296 {"%g", "S-redo"}, /*shifted redo key*/
1297 {"%i", "S-right"}, /*shifted right-arrow key*/
1298 {"!3", "S-undo"} /*shifted undo key*/
1299 };
1300
1301 #ifndef DOS_NT
1302 static char **term_get_fkeys_address;
1303 static KBOARD *term_get_fkeys_kboard;
1304 static Lisp_Object term_get_fkeys_1 (void);
1305
1306 /* Find the escape codes sent by the function keys for Vinput_decode_map.
1307 This function scans the termcap function key sequence entries, and
1308 adds entries to Vinput_decode_map for each function key it finds. */
1309
1310 static void
1311 term_get_fkeys (char **address, KBOARD *kboard)
1312 {
1313 /* We run the body of the function (term_get_fkeys_1) and ignore all Lisp
1314 errors during the call. The only errors should be from Fdefine_key
1315 when given a key sequence containing an invalid prefix key. If the
1316 termcap defines function keys which use a prefix that is already bound
1317 to a command by the default bindings, we should silently ignore that
1318 function key specification, rather than giving the user an error and
1319 refusing to run at all on such a terminal. */
1320
1321 term_get_fkeys_address = address;
1322 term_get_fkeys_kboard = kboard;
1323 internal_condition_case (term_get_fkeys_1, Qerror, Fidentity);
1324 }
1325
1326 static Lisp_Object
1327 term_get_fkeys_1 (void)
1328 {
1329 int i;
1330
1331 char **address = term_get_fkeys_address;
1332 KBOARD *kboard = term_get_fkeys_kboard;
1333
1334 /* This can happen if CANNOT_DUMP or with strange options. */
1335 if (!KEYMAPP (KVAR (kboard, Vinput_decode_map)))
1336 KVAR (kboard, Vinput_decode_map) = Fmake_sparse_keymap (Qnil);
1337
1338 for (i = 0; i < (sizeof (keys)/sizeof (keys[0])); i++)
1339 {
1340 char *sequence = tgetstr (keys[i].cap, address);
1341 if (sequence)
1342 Fdefine_key (KVAR (kboard, Vinput_decode_map), build_string (sequence),
1343 Fmake_vector (make_number (1),
1344 intern (keys[i].name)));
1345 }
1346
1347 /* The uses of the "k0" capability are inconsistent; sometimes it
1348 describes F10, whereas othertimes it describes F0 and "k;" describes F10.
1349 We will attempt to politely accommodate both systems by testing for
1350 "k;", and if it is present, assuming that "k0" denotes F0, otherwise F10.
1351 */
1352 {
1353 const char *k_semi = tgetstr ("k;", address);
1354 const char *k0 = tgetstr ("k0", address);
1355 const char *k0_name = "f10";
1356
1357 if (k_semi)
1358 {
1359 if (k0)
1360 /* Define f0 first, so that f10 takes precedence in case the
1361 key sequences happens to be the same. */
1362 Fdefine_key (KVAR (kboard, Vinput_decode_map), build_string (k0),
1363 Fmake_vector (make_number (1), intern ("f0")));
1364 Fdefine_key (KVAR (kboard, Vinput_decode_map), build_string (k_semi),
1365 Fmake_vector (make_number (1), intern ("f10")));
1366 }
1367 else if (k0)
1368 Fdefine_key (KVAR (kboard, Vinput_decode_map), build_string (k0),
1369 Fmake_vector (make_number (1), intern (k0_name)));
1370 }
1371
1372 /* Set up cookies for numbered function keys above f10. */
1373 {
1374 char fcap[3], fkey[4];
1375
1376 fcap[0] = 'F'; fcap[2] = '\0';
1377 for (i = 11; i < 64; i++)
1378 {
1379 if (i <= 19)
1380 fcap[1] = '1' + i - 11;
1381 else if (i <= 45)
1382 fcap[1] = 'A' + i - 20;
1383 else
1384 fcap[1] = 'a' + i - 46;
1385
1386 {
1387 char *sequence = tgetstr (fcap, address);
1388 if (sequence)
1389 {
1390 sprintf (fkey, "f%d", i);
1391 Fdefine_key (KVAR (kboard, Vinput_decode_map), build_string (sequence),
1392 Fmake_vector (make_number (1),
1393 intern (fkey)));
1394 }
1395 }
1396 }
1397 }
1398
1399 /*
1400 * Various mappings to try and get a better fit.
1401 */
1402 {
1403 #define CONDITIONAL_REASSIGN(cap1, cap2, sym) \
1404 if (!tgetstr (cap1, address)) \
1405 { \
1406 char *sequence = tgetstr (cap2, address); \
1407 if (sequence) \
1408 Fdefine_key (KVAR (kboard, Vinput_decode_map), build_string (sequence), \
1409 Fmake_vector (make_number (1), \
1410 intern (sym))); \
1411 }
1412
1413 /* if there's no key_next keycap, map key_npage to `next' keysym */
1414 CONDITIONAL_REASSIGN ("%5", "kN", "next");
1415 /* if there's no key_prev keycap, map key_ppage to `previous' keysym */
1416 CONDITIONAL_REASSIGN ("%8", "kP", "prior");
1417 /* if there's no key_dc keycap, map key_ic to `insert' keysym */
1418 CONDITIONAL_REASSIGN ("kD", "kI", "insert");
1419 /* if there's no key_end keycap, map key_ll to 'end' keysym */
1420 CONDITIONAL_REASSIGN ("@7", "kH", "end");
1421
1422 /* IBM has their own non-standard dialect of terminfo.
1423 If the standard name isn't found, try the IBM name. */
1424 CONDITIONAL_REASSIGN ("kB", "KO", "backtab");
1425 CONDITIONAL_REASSIGN ("@4", "kJ", "execute"); /* actually "action" */
1426 CONDITIONAL_REASSIGN ("@4", "kc", "execute"); /* actually "command" */
1427 CONDITIONAL_REASSIGN ("%7", "ki", "menu");
1428 CONDITIONAL_REASSIGN ("@7", "kw", "end");
1429 CONDITIONAL_REASSIGN ("F1", "k<", "f11");
1430 CONDITIONAL_REASSIGN ("F2", "k>", "f12");
1431 CONDITIONAL_REASSIGN ("%1", "kq", "help");
1432 CONDITIONAL_REASSIGN ("*6", "kU", "select");
1433 #undef CONDITIONAL_REASSIGN
1434 }
1435
1436 return Qnil;
1437 }
1438 #endif /* not DOS_NT */
1439
1440 \f
1441 /***********************************************************************
1442 Character Display Information
1443 ***********************************************************************/
1444 static void append_glyph (struct it *);
1445 static void append_composite_glyph (struct it *);
1446 static void produce_composite_glyph (struct it *);
1447 static void append_glyphless_glyph (struct it *, int, const char *);
1448 static void produce_glyphless_glyph (struct it *, int, Lisp_Object);
1449
1450 /* Append glyphs to IT's glyph_row. Called from produce_glyphs for
1451 terminal frames if IT->glyph_row != NULL. IT->char_to_display is
1452 the character for which to produce glyphs; IT->face_id contains the
1453 character's face. Padding glyphs are appended if IT->c has a
1454 IT->pixel_width > 1. */
1455
1456 static void
1457 append_glyph (struct it *it)
1458 {
1459 struct glyph *glyph, *end;
1460 int i;
1461
1462 eassert (it->glyph_row);
1463 glyph = (it->glyph_row->glyphs[it->area]
1464 + it->glyph_row->used[it->area]);
1465 end = it->glyph_row->glyphs[1 + it->area];
1466
1467 /* If the glyph row is reversed, we need to prepend the glyph rather
1468 than append it. */
1469 if (it->glyph_row->reversed_p && it->area == TEXT_AREA)
1470 {
1471 struct glyph *g;
1472 int move_by = it->pixel_width;
1473
1474 /* Make room for the new glyphs. */
1475 if (move_by > end - glyph) /* don't overstep end of this area */
1476 move_by = end - glyph;
1477 for (g = glyph - 1; g >= it->glyph_row->glyphs[it->area]; g--)
1478 g[move_by] = *g;
1479 glyph = it->glyph_row->glyphs[it->area];
1480 end = glyph + move_by;
1481 }
1482
1483 /* BIDI Note: we put the glyphs of a "multi-pixel" character left to
1484 right, even in the REVERSED_P case, since (a) all of its u.ch are
1485 identical, and (b) the PADDING_P flag needs to be set for the
1486 leftmost one, because we write to the terminal left-to-right. */
1487 for (i = 0;
1488 i < it->pixel_width && glyph < end;
1489 ++i)
1490 {
1491 glyph->type = CHAR_GLYPH;
1492 glyph->pixel_width = 1;
1493 glyph->u.ch = it->char_to_display;
1494 glyph->face_id = it->face_id;
1495 glyph->padding_p = i > 0;
1496 glyph->charpos = CHARPOS (it->position);
1497 glyph->object = it->object;
1498 if (it->bidi_p)
1499 {
1500 glyph->resolved_level = it->bidi_it.resolved_level;
1501 if ((it->bidi_it.type & 7) != it->bidi_it.type)
1502 abort ();
1503 glyph->bidi_type = it->bidi_it.type;
1504 }
1505 else
1506 {
1507 glyph->resolved_level = 0;
1508 glyph->bidi_type = UNKNOWN_BT;
1509 }
1510
1511 ++it->glyph_row->used[it->area];
1512 ++glyph;
1513 }
1514 }
1515
1516 /* For external use. */
1517 void
1518 tty_append_glyph (struct it *it)
1519 {
1520 append_glyph (it);
1521 }
1522
1523
1524 /* Produce glyphs for the display element described by IT. *IT
1525 specifies what we want to produce a glyph for (character, image, ...),
1526 and where in the glyph matrix we currently are (glyph row and hpos).
1527 produce_glyphs fills in output fields of *IT with information such as the
1528 pixel width and height of a character, and maybe output actual glyphs at
1529 the same time if IT->glyph_row is non-null. For an overview, see
1530 the explanation in dispextern.h, before the definition of the
1531 display_element_type enumeration.
1532
1533 produce_glyphs also stores the result of glyph width, ascent
1534 etc. computations in *IT.
1535
1536 IT->glyph_row may be null, in which case produce_glyphs does not
1537 actually fill in the glyphs. This is used in the move_* functions
1538 in xdisp.c for text width and height computations.
1539
1540 Callers usually don't call produce_glyphs directly;
1541 instead they use the macro PRODUCE_GLYPHS. */
1542
1543 void
1544 produce_glyphs (struct it *it)
1545 {
1546 /* If a hook is installed, let it do the work. */
1547
1548 /* Nothing but characters are supported on terminal frames. */
1549 eassert (it->what == IT_CHARACTER
1550 || it->what == IT_COMPOSITION
1551 || it->what == IT_STRETCH
1552 || it->what == IT_GLYPHLESS);
1553
1554 if (it->what == IT_STRETCH)
1555 {
1556 produce_stretch_glyph (it);
1557 goto done;
1558 }
1559
1560 if (it->what == IT_COMPOSITION)
1561 {
1562 produce_composite_glyph (it);
1563 goto done;
1564 }
1565
1566 if (it->what == IT_GLYPHLESS)
1567 {
1568 produce_glyphless_glyph (it, 0, Qnil);
1569 goto done;
1570 }
1571
1572 if (it->char_to_display >= 040 && it->char_to_display < 0177)
1573 {
1574 it->pixel_width = it->nglyphs = 1;
1575 if (it->glyph_row)
1576 append_glyph (it);
1577 }
1578 else if (it->char_to_display == '\n')
1579 it->pixel_width = it->nglyphs = 0;
1580 else if (it->char_to_display == '\t')
1581 {
1582 int absolute_x = (it->current_x
1583 + it->continuation_lines_width);
1584 int next_tab_x
1585 = (((1 + absolute_x + it->tab_width - 1)
1586 / it->tab_width)
1587 * it->tab_width);
1588 int nspaces;
1589
1590 /* If part of the TAB has been displayed on the previous line
1591 which is continued now, continuation_lines_width will have
1592 been incremented already by the part that fitted on the
1593 continued line. So, we will get the right number of spaces
1594 here. */
1595 nspaces = next_tab_x - absolute_x;
1596
1597 if (it->glyph_row)
1598 {
1599 int n = nspaces;
1600
1601 it->char_to_display = ' ';
1602 it->pixel_width = it->len = 1;
1603
1604 while (n--)
1605 append_glyph (it);
1606 }
1607
1608 it->pixel_width = nspaces;
1609 it->nglyphs = nspaces;
1610 }
1611 else if (CHAR_BYTE8_P (it->char_to_display))
1612 {
1613 /* Coming here means that we must send the raw 8-bit byte as is
1614 to the terminal. Although there's no way to know how many
1615 columns it occupies on a screen, it is a good assumption that
1616 a single byte code has 1-column width. */
1617 it->pixel_width = it->nglyphs = 1;
1618 if (it->glyph_row)
1619 append_glyph (it);
1620 }
1621 else
1622 {
1623 Lisp_Object charset_list = FRAME_TERMINAL (it->f)->charset_list;
1624
1625 if (char_charset (it->char_to_display, charset_list, NULL))
1626 {
1627 it->pixel_width = CHAR_WIDTH (it->char_to_display);
1628 it->nglyphs = it->pixel_width;
1629 if (it->glyph_row)
1630 append_glyph (it);
1631 }
1632 else
1633 {
1634 Lisp_Object acronym = lookup_glyphless_char_display (-1, it);
1635
1636 eassert (it->what == IT_GLYPHLESS);
1637 produce_glyphless_glyph (it, 1, acronym);
1638 }
1639 }
1640
1641 done:
1642 /* Advance current_x by the pixel width as a convenience for
1643 the caller. */
1644 if (it->area == TEXT_AREA)
1645 it->current_x += it->pixel_width;
1646 it->ascent = it->max_ascent = it->phys_ascent = it->max_phys_ascent = 0;
1647 it->descent = it->max_descent = it->phys_descent = it->max_phys_descent = 1;
1648 }
1649
1650 /* Append glyphs to IT's glyph_row for the composition IT->cmp_id.
1651 Called from produce_composite_glyph for terminal frames if
1652 IT->glyph_row != NULL. IT->face_id contains the character's
1653 face. */
1654
1655 static void
1656 append_composite_glyph (struct it *it)
1657 {
1658 struct glyph *glyph;
1659
1660 eassert (it->glyph_row);
1661 glyph = it->glyph_row->glyphs[it->area] + it->glyph_row->used[it->area];
1662 if (glyph < it->glyph_row->glyphs[1 + it->area])
1663 {
1664 /* If the glyph row is reversed, we need to prepend the glyph
1665 rather than append it. */
1666 if (it->glyph_row->reversed_p && it->area == TEXT_AREA)
1667 {
1668 struct glyph *g;
1669
1670 /* Make room for the new glyph. */
1671 for (g = glyph - 1; g >= it->glyph_row->glyphs[it->area]; g--)
1672 g[1] = *g;
1673 glyph = it->glyph_row->glyphs[it->area];
1674 }
1675 glyph->type = COMPOSITE_GLYPH;
1676 glyph->pixel_width = it->pixel_width;
1677 glyph->u.cmp.id = it->cmp_it.id;
1678 if (it->cmp_it.ch < 0)
1679 {
1680 glyph->u.cmp.automatic = 0;
1681 glyph->u.cmp.id = it->cmp_it.id;
1682 }
1683 else
1684 {
1685 glyph->u.cmp.automatic = 1;
1686 glyph->u.cmp.id = it->cmp_it.id;
1687 glyph->slice.cmp.from = it->cmp_it.from;
1688 glyph->slice.cmp.to = it->cmp_it.to - 1;
1689 }
1690
1691 glyph->face_id = it->face_id;
1692 glyph->padding_p = 0;
1693 glyph->charpos = CHARPOS (it->position);
1694 glyph->object = it->object;
1695 if (it->bidi_p)
1696 {
1697 glyph->resolved_level = it->bidi_it.resolved_level;
1698 if ((it->bidi_it.type & 7) != it->bidi_it.type)
1699 abort ();
1700 glyph->bidi_type = it->bidi_it.type;
1701 }
1702 else
1703 {
1704 glyph->resolved_level = 0;
1705 glyph->bidi_type = UNKNOWN_BT;
1706 }
1707
1708 ++it->glyph_row->used[it->area];
1709 ++glyph;
1710 }
1711 }
1712
1713
1714 /* Produce a composite glyph for iterator IT. IT->cmp_id is the ID of
1715 the composition. We simply produces components of the composition
1716 assuming that the terminal has a capability to layout/render it
1717 correctly. */
1718
1719 static void
1720 produce_composite_glyph (struct it *it)
1721 {
1722 if (it->cmp_it.ch < 0)
1723 {
1724 struct composition *cmp = composition_table[it->cmp_it.id];
1725
1726 it->pixel_width = cmp->width;
1727 }
1728 else
1729 {
1730 Lisp_Object gstring = composition_gstring_from_id (it->cmp_it.id);
1731
1732 it->pixel_width = composition_gstring_width (gstring, it->cmp_it.from,
1733 it->cmp_it.to, NULL);
1734 }
1735 it->nglyphs = 1;
1736 if (it->glyph_row)
1737 append_composite_glyph (it);
1738 }
1739
1740
1741 /* Append a glyph for a glyphless character to IT->glyph_row. FACE_ID
1742 is a face ID to be used for the glyph. What is actually appended
1743 are glyphs of type CHAR_GLYPH whose characters are in STR (which
1744 comes from it->nglyphs bytes). */
1745
1746 static void
1747 append_glyphless_glyph (struct it *it, int face_id, const char *str)
1748 {
1749 struct glyph *glyph, *end;
1750 int i;
1751
1752 eassert (it->glyph_row);
1753 glyph = it->glyph_row->glyphs[it->area] + it->glyph_row->used[it->area];
1754 end = it->glyph_row->glyphs[1 + it->area];
1755
1756 /* If the glyph row is reversed, we need to prepend the glyph rather
1757 than append it. */
1758 if (it->glyph_row->reversed_p && it->area == TEXT_AREA)
1759 {
1760 struct glyph *g;
1761 int move_by = it->pixel_width;
1762
1763 /* Make room for the new glyphs. */
1764 if (move_by > end - glyph) /* don't overstep end of this area */
1765 move_by = end - glyph;
1766 for (g = glyph - 1; g >= it->glyph_row->glyphs[it->area]; g--)
1767 g[move_by] = *g;
1768 glyph = it->glyph_row->glyphs[it->area];
1769 end = glyph + move_by;
1770 }
1771
1772 if (glyph >= end)
1773 return;
1774 glyph->type = CHAR_GLYPH;
1775 glyph->pixel_width = 1;
1776 glyph->face_id = face_id;
1777 glyph->padding_p = 0;
1778 glyph->charpos = CHARPOS (it->position);
1779 glyph->object = it->object;
1780 if (it->bidi_p)
1781 {
1782 glyph->resolved_level = it->bidi_it.resolved_level;
1783 if ((it->bidi_it.type & 7) != it->bidi_it.type)
1784 abort ();
1785 glyph->bidi_type = it->bidi_it.type;
1786 }
1787 else
1788 {
1789 glyph->resolved_level = 0;
1790 glyph->bidi_type = UNKNOWN_BT;
1791 }
1792
1793 /* BIDI Note: we put the glyphs of characters left to right, even in
1794 the REVERSED_P case because we write to the terminal
1795 left-to-right. */
1796 for (i = 0; i < it->nglyphs && glyph < end; ++i)
1797 {
1798 if (i > 0)
1799 glyph[0] = glyph[-1];
1800 glyph->u.ch = str[i];
1801 ++it->glyph_row->used[it->area];
1802 ++glyph;
1803 }
1804 }
1805
1806 /* Produce glyphs for a glyphless character for iterator IT.
1807 IT->glyphless_method specifies which method to use for displaying
1808 the character. See the description of enum
1809 glyphless_display_method in dispextern.h for the details.
1810
1811 FOR_NO_FONT is nonzero if and only if this is for a character that
1812 is not supported by the coding system of the terminal. ACRONYM, if
1813 non-nil, is an acronym string for the character.
1814
1815 The glyphs actually produced are of type CHAR_GLYPH. */
1816
1817 static void
1818 produce_glyphless_glyph (struct it *it, int for_no_font, Lisp_Object acronym)
1819 {
1820 int face_id;
1821 int len;
1822 char buf[sizeof "\\x" + max (6, (sizeof it->c * CHAR_BIT + 3) / 4)];
1823 char const *str = " ";
1824
1825 /* Get a face ID for the glyph by utilizing a cache (the same way as
1826 done for `escape-glyph' in get_next_display_element). */
1827 if (it->f == last_glyphless_glyph_frame
1828 && it->face_id == last_glyphless_glyph_face_id)
1829 {
1830 face_id = last_glyphless_glyph_merged_face_id;
1831 }
1832 else
1833 {
1834 /* Merge the `glyphless-char' face into the current face. */
1835 face_id = merge_faces (it->f, Qglyphless_char, 0, it->face_id);
1836 last_glyphless_glyph_frame = it->f;
1837 last_glyphless_glyph_face_id = it->face_id;
1838 last_glyphless_glyph_merged_face_id = face_id;
1839 }
1840
1841 if (it->glyphless_method == GLYPHLESS_DISPLAY_THIN_SPACE)
1842 {
1843 /* As there's no way to produce a thin space, we produce a space
1844 of canonical width. */
1845 len = 1;
1846 }
1847 else if (it->glyphless_method == GLYPHLESS_DISPLAY_EMPTY_BOX)
1848 {
1849 len = CHAR_WIDTH (it->c);
1850 if (len == 0)
1851 len = 1;
1852 else if (len > 4)
1853 len = 4;
1854 len = sprintf (buf, "[%.*s]", len, str);
1855 str = buf;
1856 }
1857 else
1858 {
1859 if (it->glyphless_method == GLYPHLESS_DISPLAY_ACRONYM)
1860 {
1861 if (! STRINGP (acronym) && CHAR_TABLE_P (Vglyphless_char_display))
1862 acronym = CHAR_TABLE_REF (Vglyphless_char_display, it->c);
1863 if (CONSP (acronym))
1864 acronym = XCDR (acronym);
1865 buf[0] = '[';
1866 str = STRINGP (acronym) ? SSDATA (acronym) : "";
1867 for (len = 0; len < 6 && str[len] && ASCII_BYTE_P (str[len]); len++)
1868 buf[1 + len] = str[len];
1869 buf[1 + len] = ']';
1870 len += 2;
1871 }
1872 else
1873 {
1874 eassert (it->glyphless_method == GLYPHLESS_DISPLAY_HEX_CODE);
1875 len = (it->c < 0x10000 ? sprintf (buf, "\\u%04X", it->c)
1876 : it->c <= MAX_UNICODE_CHAR ? sprintf (buf, "\\U%06X", it->c)
1877 : sprintf (buf, "\\x%06X", it->c));
1878 }
1879 str = buf;
1880 }
1881
1882 it->pixel_width = len;
1883 it->nglyphs = len;
1884 if (it->glyph_row)
1885 append_glyphless_glyph (it, face_id, str);
1886 }
1887
1888 \f
1889 /***********************************************************************
1890 Faces
1891 ***********************************************************************/
1892
1893 /* Value is non-zero if attribute ATTR may be used. ATTR should be
1894 one of the enumerators from enum no_color_bit, or a bit set built
1895 from them. Some display attributes may not be used together with
1896 color; the termcap capability `NC' specifies which ones. */
1897
1898 #define MAY_USE_WITH_COLORS_P(tty, ATTR) \
1899 (tty->TN_max_colors > 0 \
1900 ? (tty->TN_no_color_video & (ATTR)) == 0 \
1901 : 1)
1902
1903 /* Turn appearances of face FACE_ID on tty frame F on.
1904 FACE_ID is a realized face ID number, in the face cache. */
1905
1906 static void
1907 turn_on_face (struct frame *f, int face_id)
1908 {
1909 struct face *face = FACE_FROM_ID (f, face_id);
1910 long fg = face->foreground;
1911 long bg = face->background;
1912 struct tty_display_info *tty = FRAME_TTY (f);
1913
1914 /* Do this first because TS_end_standout_mode may be the same
1915 as TS_exit_attribute_mode, which turns all appearances off. */
1916 if (MAY_USE_WITH_COLORS_P (tty, NC_REVERSE))
1917 {
1918 if (tty->TN_max_colors > 0)
1919 {
1920 if (fg >= 0 && bg >= 0)
1921 {
1922 /* If the terminal supports colors, we can set them
1923 below without using reverse video. The face's fg
1924 and bg colors are set as they should appear on
1925 the screen, i.e. they take the inverse-video'ness
1926 of the face already into account. */
1927 }
1928 else if (inverse_video)
1929 {
1930 if (fg == FACE_TTY_DEFAULT_FG_COLOR
1931 || bg == FACE_TTY_DEFAULT_BG_COLOR)
1932 tty_toggle_highlight (tty);
1933 }
1934 else
1935 {
1936 if (fg == FACE_TTY_DEFAULT_BG_COLOR
1937 || bg == FACE_TTY_DEFAULT_FG_COLOR)
1938 tty_toggle_highlight (tty);
1939 }
1940 }
1941 else
1942 {
1943 /* If we can't display colors, use reverse video
1944 if the face specifies that. */
1945 if (inverse_video)
1946 {
1947 if (fg == FACE_TTY_DEFAULT_FG_COLOR
1948 || bg == FACE_TTY_DEFAULT_BG_COLOR)
1949 tty_toggle_highlight (tty);
1950 }
1951 else
1952 {
1953 if (fg == FACE_TTY_DEFAULT_BG_COLOR
1954 || bg == FACE_TTY_DEFAULT_FG_COLOR)
1955 tty_toggle_highlight (tty);
1956 }
1957 }
1958 }
1959
1960 if (face->tty_bold_p && MAY_USE_WITH_COLORS_P (tty, NC_BOLD))
1961 OUTPUT1_IF (tty, tty->TS_enter_bold_mode);
1962
1963 if (face->tty_italic_p && MAY_USE_WITH_COLORS_P (tty, NC_ITALIC))
1964 {
1965 if (tty->TS_enter_italic_mode)
1966 OUTPUT1 (tty, tty->TS_enter_italic_mode);
1967 else
1968 /* Italics mode is unavailable on many terminals. In that
1969 case, map slant to dimmed text; we want italic text to
1970 appear different and dimming is not otherwise used. */
1971 OUTPUT1 (tty, tty->TS_enter_dim_mode);
1972 }
1973
1974 if (face->tty_underline_p && MAY_USE_WITH_COLORS_P (tty, NC_UNDERLINE))
1975 OUTPUT1_IF (tty, tty->TS_enter_underline_mode);
1976
1977 if (tty->TN_max_colors > 0)
1978 {
1979 const char *ts;
1980 char *p;
1981
1982 ts = tty->standout_mode ? tty->TS_set_background : tty->TS_set_foreground;
1983 if (fg >= 0 && ts)
1984 {
1985 p = tparam (ts, NULL, 0, (int) fg, 0, 0, 0);
1986 OUTPUT (tty, p);
1987 xfree (p);
1988 }
1989
1990 ts = tty->standout_mode ? tty->TS_set_foreground : tty->TS_set_background;
1991 if (bg >= 0 && ts)
1992 {
1993 p = tparam (ts, NULL, 0, (int) bg, 0, 0, 0);
1994 OUTPUT (tty, p);
1995 xfree (p);
1996 }
1997 }
1998 }
1999
2000
2001 /* Turn off appearances of face FACE_ID on tty frame F. */
2002
2003 static void
2004 turn_off_face (struct frame *f, int face_id)
2005 {
2006 struct face *face = FACE_FROM_ID (f, face_id);
2007 struct tty_display_info *tty = FRAME_TTY (f);
2008
2009 eassert (face != NULL);
2010
2011 if (tty->TS_exit_attribute_mode)
2012 {
2013 /* Capability "me" will turn off appearance modes double-bright,
2014 half-bright, reverse-video, standout, underline. It may or
2015 may not turn off alt-char-mode. */
2016 if (face->tty_bold_p
2017 || face->tty_italic_p
2018 || face->tty_reverse_p
2019 || face->tty_underline_p)
2020 {
2021 OUTPUT1_IF (tty, tty->TS_exit_attribute_mode);
2022 if (strcmp (tty->TS_exit_attribute_mode, tty->TS_end_standout_mode) == 0)
2023 tty->standout_mode = 0;
2024 }
2025 }
2026 else
2027 {
2028 /* If we don't have "me" we can only have those appearances
2029 that have exit sequences defined. */
2030 if (face->tty_underline_p)
2031 OUTPUT_IF (tty, tty->TS_exit_underline_mode);
2032 }
2033
2034 /* Switch back to default colors. */
2035 if (tty->TN_max_colors > 0
2036 && ((face->foreground != FACE_TTY_DEFAULT_COLOR
2037 && face->foreground != FACE_TTY_DEFAULT_FG_COLOR)
2038 || (face->background != FACE_TTY_DEFAULT_COLOR
2039 && face->background != FACE_TTY_DEFAULT_BG_COLOR)))
2040 OUTPUT1_IF (tty, tty->TS_orig_pair);
2041 }
2042
2043
2044 /* Return non-zero if the terminal on frame F supports all of the
2045 capabilities in CAPS simultaneously, with foreground and background
2046 colors FG and BG. */
2047
2048 int
2049 tty_capable_p (struct tty_display_info *tty, unsigned int caps,
2050 unsigned long fg, unsigned long bg)
2051 {
2052 #define TTY_CAPABLE_P_TRY(tty, cap, TS, NC_bit) \
2053 if ((caps & (cap)) && (!(TS) || !MAY_USE_WITH_COLORS_P(tty, NC_bit))) \
2054 return 0;
2055
2056 TTY_CAPABLE_P_TRY (tty, TTY_CAP_INVERSE, tty->TS_standout_mode, NC_REVERSE);
2057 TTY_CAPABLE_P_TRY (tty, TTY_CAP_UNDERLINE, tty->TS_enter_underline_mode, NC_UNDERLINE);
2058 TTY_CAPABLE_P_TRY (tty, TTY_CAP_BOLD, tty->TS_enter_bold_mode, NC_BOLD);
2059 TTY_CAPABLE_P_TRY (tty, TTY_CAP_DIM, tty->TS_enter_dim_mode, NC_DIM);
2060 TTY_CAPABLE_P_TRY (tty, TTY_CAP_ITALIC, tty->TS_enter_italic_mode, NC_ITALIC);
2061
2062 /* We can do it! */
2063 return 1;
2064 }
2065
2066 /* Return non-zero if the terminal is capable to display colors. */
2067
2068 DEFUN ("tty-display-color-p", Ftty_display_color_p, Stty_display_color_p,
2069 0, 1, 0,
2070 doc: /* Return non-nil if the tty device TERMINAL can display colors.
2071
2072 TERMINAL can be a terminal object, a frame, or nil (meaning the
2073 selected frame's terminal). This function always returns nil if
2074 TERMINAL does not refer to a text terminal. */)
2075 (Lisp_Object terminal)
2076 {
2077 struct terminal *t = get_tty_terminal (terminal, 0);
2078 if (!t)
2079 return Qnil;
2080 else
2081 return t->display_info.tty->TN_max_colors > 0 ? Qt : Qnil;
2082 }
2083
2084 /* Return the number of supported colors. */
2085 DEFUN ("tty-display-color-cells", Ftty_display_color_cells,
2086 Stty_display_color_cells, 0, 1, 0,
2087 doc: /* Return the number of colors supported by the tty device TERMINAL.
2088
2089 TERMINAL can be a terminal object, a frame, or nil (meaning the
2090 selected frame's terminal). This function always returns 0 if
2091 TERMINAL does not refer to a text terminal. */)
2092 (Lisp_Object terminal)
2093 {
2094 struct terminal *t = get_tty_terminal (terminal, 0);
2095 if (!t)
2096 return make_number (0);
2097 else
2098 return make_number (t->display_info.tty->TN_max_colors);
2099 }
2100
2101 #ifndef DOS_NT
2102
2103 /* Declare here rather than in the function, as in the rest of Emacs,
2104 to work around an HPUX compiler bug (?). See
2105 http://lists.gnu.org/archive/html/emacs-devel/2007-08/msg00410.html */
2106 static int default_max_colors;
2107 static int default_max_pairs;
2108 static int default_no_color_video;
2109 static char *default_orig_pair;
2110 static char *default_set_foreground;
2111 static char *default_set_background;
2112
2113 /* Save or restore the default color-related capabilities of this
2114 terminal. */
2115 static void
2116 tty_default_color_capabilities (struct tty_display_info *tty, int save)
2117 {
2118
2119 if (save)
2120 {
2121 xfree (default_orig_pair);
2122 default_orig_pair = tty->TS_orig_pair ? xstrdup (tty->TS_orig_pair) : NULL;
2123
2124 xfree (default_set_foreground);
2125 default_set_foreground = tty->TS_set_foreground ? xstrdup (tty->TS_set_foreground)
2126 : NULL;
2127
2128 xfree (default_set_background);
2129 default_set_background = tty->TS_set_background ? xstrdup (tty->TS_set_background)
2130 : NULL;
2131
2132 default_max_colors = tty->TN_max_colors;
2133 default_max_pairs = tty->TN_max_pairs;
2134 default_no_color_video = tty->TN_no_color_video;
2135 }
2136 else
2137 {
2138 tty->TS_orig_pair = default_orig_pair;
2139 tty->TS_set_foreground = default_set_foreground;
2140 tty->TS_set_background = default_set_background;
2141 tty->TN_max_colors = default_max_colors;
2142 tty->TN_max_pairs = default_max_pairs;
2143 tty->TN_no_color_video = default_no_color_video;
2144 }
2145 }
2146
2147 /* Setup one of the standard tty color schemes according to MODE.
2148 MODE's value is generally the number of colors which we want to
2149 support; zero means set up for the default capabilities, the ones
2150 we saw at init_tty time; -1 means turn off color support. */
2151 static void
2152 tty_setup_colors (struct tty_display_info *tty, int mode)
2153 {
2154 /* Canonicalize all negative values of MODE. */
2155 if (mode < -1)
2156 mode = -1;
2157
2158 switch (mode)
2159 {
2160 case -1: /* no colors at all */
2161 tty->TN_max_colors = 0;
2162 tty->TN_max_pairs = 0;
2163 tty->TN_no_color_video = 0;
2164 tty->TS_set_foreground = tty->TS_set_background = tty->TS_orig_pair = NULL;
2165 break;
2166 case 0: /* default colors, if any */
2167 default:
2168 tty_default_color_capabilities (tty, 0);
2169 break;
2170 case 8: /* 8 standard ANSI colors */
2171 tty->TS_orig_pair = "\033[0m";
2172 #ifdef TERMINFO
2173 tty->TS_set_foreground = "\033[3%p1%dm";
2174 tty->TS_set_background = "\033[4%p1%dm";
2175 #else
2176 tty->TS_set_foreground = "\033[3%dm";
2177 tty->TS_set_background = "\033[4%dm";
2178 #endif
2179 tty->TN_max_colors = 8;
2180 tty->TN_max_pairs = 64;
2181 tty->TN_no_color_video = 0;
2182 break;
2183 }
2184 }
2185
2186 void
2187 set_tty_color_mode (struct tty_display_info *tty, struct frame *f)
2188 {
2189 Lisp_Object tem, val;
2190 Lisp_Object color_mode;
2191 int mode;
2192 Lisp_Object tty_color_mode_alist
2193 = Fintern_soft (build_string ("tty-color-mode-alist"), Qnil);
2194
2195 tem = assq_no_quit (Qtty_color_mode, f->param_alist);
2196 val = CONSP (tem) ? XCDR (tem) : Qnil;
2197
2198 if (INTEGERP (val))
2199 color_mode = val;
2200 else if (SYMBOLP (tty_color_mode_alist))
2201 {
2202 tem = Fassq (val, Fsymbol_value (tty_color_mode_alist));
2203 color_mode = CONSP (tem) ? XCDR (tem) : Qnil;
2204 }
2205 else
2206 color_mode = Qnil;
2207
2208 mode = TYPE_RANGED_INTEGERP (int, color_mode) ? XINT (color_mode) : 0;
2209
2210 if (mode != tty->previous_color_mode)
2211 {
2212 tty->previous_color_mode = mode;
2213 tty_setup_colors (tty , mode);
2214 /* This recomputes all the faces given the new color definitions. */
2215 safe_call (1, intern ("tty-set-up-initial-frame-faces"));
2216 }
2217 }
2218
2219 #endif /* !DOS_NT */
2220
2221 \f
2222
2223 /* Return the tty display object specified by TERMINAL. */
2224
2225 static struct terminal *
2226 get_tty_terminal (Lisp_Object terminal, int throw)
2227 {
2228 struct terminal *t = get_terminal (terminal, throw);
2229
2230 if (t && t->type != output_termcap && t->type != output_msdos_raw)
2231 {
2232 if (throw)
2233 error ("Device %d is not a termcap terminal device", t->id);
2234 else
2235 return NULL;
2236 }
2237
2238 return t;
2239 }
2240
2241 /* Return an active termcap device that uses the tty device with the
2242 given name.
2243
2244 This function ignores suspended devices.
2245
2246 Returns NULL if the named terminal device is not opened. */
2247
2248 struct terminal *
2249 get_named_tty (const char *name)
2250 {
2251 struct terminal *t;
2252
2253 if (!name)
2254 abort ();
2255
2256 for (t = terminal_list; t; t = t->next_terminal)
2257 {
2258 if ((t->type == output_termcap || t->type == output_msdos_raw)
2259 && !strcmp (t->display_info.tty->name, name)
2260 && TERMINAL_ACTIVE_P (t))
2261 return t;
2262 }
2263
2264 return 0;
2265 }
2266
2267 \f
2268 DEFUN ("tty-type", Ftty_type, Stty_type, 0, 1, 0,
2269 doc: /* Return the type of the tty device that TERMINAL uses.
2270 Returns nil if TERMINAL is not on a tty device.
2271
2272 TERMINAL can be a terminal object, a frame, or nil (meaning the
2273 selected frame's terminal). */)
2274 (Lisp_Object terminal)
2275 {
2276 struct terminal *t = get_terminal (terminal, 1);
2277
2278 if (t->type != output_termcap && t->type != output_msdos_raw)
2279 return Qnil;
2280
2281 if (t->display_info.tty->type)
2282 return build_string (t->display_info.tty->type);
2283 else
2284 return Qnil;
2285 }
2286
2287 DEFUN ("controlling-tty-p", Fcontrolling_tty_p, Scontrolling_tty_p, 0, 1, 0,
2288 doc: /* Return non-nil if TERMINAL is the controlling tty of the Emacs process.
2289
2290 TERMINAL can be a terminal object, a frame, or nil (meaning the
2291 selected frame's terminal). This function always returns nil if
2292 TERMINAL is not on a tty device. */)
2293 (Lisp_Object terminal)
2294 {
2295 struct terminal *t = get_terminal (terminal, 1);
2296
2297 if ((t->type != output_termcap && t->type != output_msdos_raw)
2298 || strcmp (t->display_info.tty->name, DEV_TTY) != 0)
2299 return Qnil;
2300 else
2301 return Qt;
2302 }
2303
2304 DEFUN ("tty-no-underline", Ftty_no_underline, Stty_no_underline, 0, 1, 0,
2305 doc: /* Declare that the tty used by TERMINAL does not handle underlining.
2306 This is used to override the terminfo data, for certain terminals that
2307 do not really do underlining, but say that they do. This function has
2308 no effect if used on a non-tty terminal.
2309
2310 TERMINAL can be a terminal object, a frame or nil (meaning the
2311 selected frame's terminal). This function always returns nil if
2312 TERMINAL does not refer to a text terminal. */)
2313 (Lisp_Object terminal)
2314 {
2315 struct terminal *t = get_terminal (terminal, 1);
2316
2317 if (t->type == output_termcap)
2318 t->display_info.tty->TS_enter_underline_mode = 0;
2319 return Qnil;
2320 }
2321
2322 DEFUN ("tty-top-frame", Ftty_top_frame, Stty_top_frame, 0, 1, 0,
2323 doc: /* Return the topmost terminal frame on TERMINAL.
2324 TERMINAL can be a terminal object, a frame or nil (meaning the
2325 selected frame's terminal). This function returns nil if TERMINAL
2326 does not refer to a text terminal. Otherwise, it returns the
2327 top-most frame on the text terminal. */)
2328 (Lisp_Object terminal)
2329 {
2330 struct terminal *t = get_terminal (terminal, 1);
2331
2332 if (t->type == output_termcap)
2333 return t->display_info.tty->top_frame;
2334 return Qnil;
2335 }
2336
2337 \f
2338
2339 DEFUN ("suspend-tty", Fsuspend_tty, Ssuspend_tty, 0, 1, 0,
2340 doc: /* Suspend the terminal device TTY.
2341
2342 The device is restored to its default state, and Emacs ceases all
2343 access to the tty device. Frames that use the device are not deleted,
2344 but input is not read from them and if they change, their display is
2345 not updated.
2346
2347 TTY may be a terminal object, a frame, or nil for the terminal device
2348 of the currently selected frame.
2349
2350 This function runs `suspend-tty-functions' after suspending the
2351 device. The functions are run with one arg, the id of the suspended
2352 terminal device.
2353
2354 `suspend-tty' does nothing if it is called on a device that is already
2355 suspended.
2356
2357 A suspended tty may be resumed by calling `resume-tty' on it. */)
2358 (Lisp_Object tty)
2359 {
2360 struct terminal *t = get_tty_terminal (tty, 1);
2361 FILE *f;
2362
2363 if (!t)
2364 error ("Unknown tty device");
2365
2366 f = t->display_info.tty->input;
2367
2368 if (f)
2369 {
2370 /* First run `suspend-tty-functions' and then clean up the tty
2371 state because `suspend-tty-functions' might need to change
2372 the tty state. */
2373 Lisp_Object args[2];
2374 args[0] = intern ("suspend-tty-functions");
2375 XSETTERMINAL (args[1], t);
2376 Frun_hook_with_args (2, args);
2377
2378 reset_sys_modes (t->display_info.tty);
2379 delete_keyboard_wait_descriptor (fileno (f));
2380
2381 #ifndef MSDOS
2382 fclose (f);
2383 if (f != t->display_info.tty->output)
2384 fclose (t->display_info.tty->output);
2385 #endif
2386
2387 t->display_info.tty->input = 0;
2388 t->display_info.tty->output = 0;
2389
2390 if (FRAMEP (t->display_info.tty->top_frame))
2391 FRAME_SET_VISIBLE (XFRAME (t->display_info.tty->top_frame), 0);
2392
2393 }
2394
2395 /* Clear display hooks to prevent further output. */
2396 clear_tty_hooks (t);
2397
2398 return Qnil;
2399 }
2400
2401 DEFUN ("resume-tty", Fresume_tty, Sresume_tty, 0, 1, 0,
2402 doc: /* Resume the previously suspended terminal device TTY.
2403 The terminal is opened and reinitialized. Frames that are on the
2404 suspended terminal are revived.
2405
2406 It is an error to resume a terminal while another terminal is active
2407 on the same device.
2408
2409 This function runs `resume-tty-functions' after resuming the terminal.
2410 The functions are run with one arg, the id of the resumed terminal
2411 device.
2412
2413 `resume-tty' does nothing if it is called on a device that is not
2414 suspended.
2415
2416 TTY may be a terminal object, a frame, or nil (meaning the selected
2417 frame's terminal). */)
2418 (Lisp_Object tty)
2419 {
2420 struct terminal *t = get_tty_terminal (tty, 1);
2421 int fd;
2422
2423 if (!t)
2424 error ("Unknown tty device");
2425
2426 if (!t->display_info.tty->input)
2427 {
2428 if (get_named_tty (t->display_info.tty->name))
2429 error ("Cannot resume display while another display is active on the same device");
2430
2431 #ifdef MSDOS
2432 t->display_info.tty->output = stdout;
2433 t->display_info.tty->input = stdin;
2434 #else /* !MSDOS */
2435 fd = emacs_open (t->display_info.tty->name, O_RDWR | O_NOCTTY, 0);
2436
2437 if (fd == -1)
2438 error ("Can not reopen tty device %s: %s", t->display_info.tty->name, strerror (errno));
2439
2440 if (strcmp (t->display_info.tty->name, DEV_TTY))
2441 dissociate_if_controlling_tty (fd);
2442
2443 t->display_info.tty->output = fdopen (fd, "w+");
2444 t->display_info.tty->input = t->display_info.tty->output;
2445 #endif
2446
2447 add_keyboard_wait_descriptor (fd);
2448
2449 if (FRAMEP (t->display_info.tty->top_frame))
2450 {
2451 struct frame *f = XFRAME (t->display_info.tty->top_frame);
2452 int width, height;
2453 int old_height = FRAME_COLS (f);
2454 int old_width = FRAME_LINES (f);
2455
2456 /* Check if terminal/window size has changed while the frame
2457 was suspended. */
2458 get_tty_size (fileno (t->display_info.tty->input), &width, &height);
2459 if (width != old_width || height != old_height)
2460 change_frame_size (f, height, width, 0, 0, 0);
2461 FRAME_SET_VISIBLE (XFRAME (t->display_info.tty->top_frame), 1);
2462 }
2463
2464 set_tty_hooks (t);
2465 init_sys_modes (t->display_info.tty);
2466
2467 {
2468 /* Run `resume-tty-functions'. */
2469 Lisp_Object args[2];
2470 args[0] = intern ("resume-tty-functions");
2471 XSETTERMINAL (args[1], t);
2472 Frun_hook_with_args (2, args);
2473 }
2474 }
2475
2476 set_tty_hooks (t);
2477
2478 return Qnil;
2479 }
2480
2481 \f
2482 /***********************************************************************
2483 Mouse
2484 ***********************************************************************/
2485
2486 #ifdef HAVE_GPM
2487
2488 #ifndef HAVE_WINDOW_SYSTEM
2489 void
2490 term_mouse_moveto (int x, int y)
2491 {
2492 /* TODO: how to set mouse position?
2493 const char *name;
2494 int fd;
2495 name = (const char *) ttyname (0);
2496 fd = open (name, O_WRONLY);
2497 SOME_FUNCTION (x, y, fd);
2498 close (fd);
2499 last_mouse_x = x;
2500 last_mouse_y = y; */
2501 }
2502 #endif /* HAVE_WINDOW_SYSTEM */
2503
2504 /* Implementation of draw_row_with_mouse_face for TTY/GPM. */
2505 void
2506 tty_draw_row_with_mouse_face (struct window *w, struct glyph_row *row,
2507 int start_hpos, int end_hpos,
2508 enum draw_glyphs_face draw)
2509 {
2510 int nglyphs = end_hpos - start_hpos;
2511 struct frame *f = XFRAME (WINDOW_FRAME (w));
2512 struct tty_display_info *tty = FRAME_TTY (f);
2513 int face_id = tty->mouse_highlight.mouse_face_face_id;
2514 int save_x, save_y, pos_x, pos_y;
2515
2516 if (end_hpos >= row->used[TEXT_AREA])
2517 nglyphs = row->used[TEXT_AREA] - start_hpos;
2518
2519 pos_y = row->y + WINDOW_TOP_EDGE_Y (w);
2520 pos_x = row->used[LEFT_MARGIN_AREA] + start_hpos + WINDOW_LEFT_EDGE_X (w);
2521
2522 /* Save current cursor co-ordinates. */
2523 save_y = curY (tty);
2524 save_x = curX (tty);
2525 cursor_to (f, pos_y, pos_x);
2526
2527 if (draw == DRAW_MOUSE_FACE)
2528 tty_write_glyphs_with_face (f, row->glyphs[TEXT_AREA] + start_hpos,
2529 nglyphs, face_id);
2530 else if (draw == DRAW_NORMAL_TEXT)
2531 write_glyphs (f, row->glyphs[TEXT_AREA] + start_hpos, nglyphs);
2532
2533 cursor_to (f, save_y, save_x);
2534 }
2535
2536 static int
2537 term_mouse_movement (FRAME_PTR frame, Gpm_Event *event)
2538 {
2539 /* Has the mouse moved off the glyph it was on at the last sighting? */
2540 if (event->x != last_mouse_x || event->y != last_mouse_y)
2541 {
2542 frame->mouse_moved = 1;
2543 note_mouse_highlight (frame, event->x, event->y);
2544 /* Remember which glyph we're now on. */
2545 last_mouse_x = event->x;
2546 last_mouse_y = event->y;
2547 return 1;
2548 }
2549 return 0;
2550 }
2551
2552 /* Return the Time that corresponds to T. Wrap around on overflow. */
2553 static Time
2554 timeval_to_Time (struct timeval const *t)
2555 {
2556 Time s_1000, ms;
2557
2558 s_1000 = t->tv_sec;
2559 s_1000 *= 1000;
2560 ms = t->tv_usec / 1000;
2561 return s_1000 + ms;
2562 }
2563
2564 /* Return the current position of the mouse.
2565
2566 Set *f to the frame the mouse is in, or zero if the mouse is in no
2567 Emacs frame. If it is set to zero, all the other arguments are
2568 garbage.
2569
2570 Set *bar_window to Qnil, and *x and *y to the column and
2571 row of the character cell the mouse is over.
2572
2573 Set *timeptr to the time the mouse was at the returned position.
2574
2575 This clears mouse_moved until the next motion
2576 event arrives. */
2577 static void
2578 term_mouse_position (FRAME_PTR *fp, int insist, Lisp_Object *bar_window,
2579 enum scroll_bar_part *part, Lisp_Object *x,
2580 Lisp_Object *y, Time *timeptr)
2581 {
2582 struct timeval now;
2583
2584 *fp = SELECTED_FRAME ();
2585 (*fp)->mouse_moved = 0;
2586
2587 *bar_window = Qnil;
2588 *part = 0;
2589
2590 XSETINT (*x, last_mouse_x);
2591 XSETINT (*y, last_mouse_y);
2592 gettimeofday(&now, 0);
2593 *timeptr = timeval_to_Time (&now);
2594 }
2595
2596 /* Prepare a mouse-event in *RESULT for placement in the input queue.
2597
2598 If the event is a button press, then note that we have grabbed
2599 the mouse. */
2600
2601 static Lisp_Object
2602 term_mouse_click (struct input_event *result, Gpm_Event *event,
2603 struct frame *f)
2604 {
2605 struct timeval now;
2606 int i, j;
2607
2608 result->kind = GPM_CLICK_EVENT;
2609 for (i = 0, j = GPM_B_LEFT; i < 3; i++, j >>= 1 )
2610 {
2611 if (event->buttons & j) {
2612 result->code = i; /* button number */
2613 break;
2614 }
2615 }
2616 gettimeofday(&now, 0);
2617 result->timestamp = timeval_to_Time (&now);
2618
2619 if (event->type & GPM_UP)
2620 result->modifiers = up_modifier;
2621 else if (event->type & GPM_DOWN)
2622 result->modifiers = down_modifier;
2623 else
2624 result->modifiers = 0;
2625
2626 if (event->type & GPM_SINGLE)
2627 result->modifiers |= click_modifier;
2628
2629 if (event->type & GPM_DOUBLE)
2630 result->modifiers |= double_modifier;
2631
2632 if (event->type & GPM_TRIPLE)
2633 result->modifiers |= triple_modifier;
2634
2635 if (event->type & GPM_DRAG)
2636 result->modifiers |= drag_modifier;
2637
2638 if (!(event->type & (GPM_MOVE | GPM_DRAG))) {
2639
2640 /* 1 << KG_SHIFT */
2641 if (event->modifiers & (1 << 0))
2642 result->modifiers |= shift_modifier;
2643
2644 /* 1 << KG_CTRL */
2645 if (event->modifiers & (1 << 2))
2646 result->modifiers |= ctrl_modifier;
2647
2648 /* 1 << KG_ALT || KG_ALTGR */
2649 if (event->modifiers & (1 << 3)
2650 || event->modifiers & (1 << 1))
2651 result->modifiers |= meta_modifier;
2652 }
2653
2654 XSETINT (result->x, event->x);
2655 XSETINT (result->y, event->y);
2656 XSETFRAME (result->frame_or_window, f);
2657 result->arg = Qnil;
2658 return Qnil;
2659 }
2660
2661 int
2662 handle_one_term_event (struct tty_display_info *tty, Gpm_Event *event, struct input_event* hold_quit)
2663 {
2664 struct frame *f = XFRAME (tty->top_frame);
2665 struct input_event ie;
2666 int do_help = 0;
2667 int count = 0;
2668
2669 EVENT_INIT (ie);
2670 ie.kind = NO_EVENT;
2671 ie.arg = Qnil;
2672
2673 if (event->type & (GPM_MOVE | GPM_DRAG)) {
2674 previous_help_echo_string = help_echo_string;
2675 help_echo_string = Qnil;
2676
2677 Gpm_DrawPointer (event->x, event->y, fileno (tty->output));
2678
2679 if (!term_mouse_movement (f, event))
2680 help_echo_string = previous_help_echo_string;
2681
2682 /* If the contents of the global variable help_echo_string
2683 has changed, generate a HELP_EVENT. */
2684 if (!NILP (help_echo_string)
2685 || !NILP (previous_help_echo_string))
2686 do_help = 1;
2687
2688 goto done;
2689 }
2690 else {
2691 f->mouse_moved = 0;
2692 term_mouse_click (&ie, event, f);
2693 }
2694
2695 done:
2696 if (ie.kind != NO_EVENT)
2697 {
2698 kbd_buffer_store_event_hold (&ie, hold_quit);
2699 count++;
2700 }
2701
2702 if (do_help
2703 && !(hold_quit && hold_quit->kind != NO_EVENT))
2704 {
2705 Lisp_Object frame;
2706
2707 if (f)
2708 XSETFRAME (frame, f);
2709 else
2710 frame = Qnil;
2711
2712 gen_help_event (help_echo_string, frame, help_echo_window,
2713 help_echo_object, help_echo_pos);
2714 count++;
2715 }
2716
2717 return count;
2718 }
2719
2720 DEFUN ("gpm-mouse-start", Fgpm_mouse_start, Sgpm_mouse_start,
2721 0, 0, 0,
2722 doc: /* Open a connection to Gpm.
2723 Gpm-mouse can only be activated for one tty at a time. */)
2724 (void)
2725 {
2726 struct frame *f = SELECTED_FRAME ();
2727 struct tty_display_info *tty
2728 = ((f)->output_method == output_termcap
2729 ? (f)->terminal->display_info.tty : NULL);
2730 Gpm_Connect connection;
2731
2732 if (!tty)
2733 error ("Gpm-mouse only works in the GNU/Linux console");
2734 if (gpm_tty == tty)
2735 return Qnil; /* Already activated, nothing to do. */
2736 if (gpm_tty)
2737 error ("Gpm-mouse can only be activated for one tty at a time");
2738
2739 connection.eventMask = ~0;
2740 connection.defaultMask = ~GPM_HARD;
2741 connection.maxMod = ~0;
2742 connection.minMod = 0;
2743 gpm_zerobased = 1;
2744
2745 if (Gpm_Open (&connection, 0) < 0)
2746 error ("Gpm-mouse failed to connect to the gpm daemon");
2747 else
2748 {
2749 gpm_tty = tty;
2750 /* `init_sys_modes' arranges for mouse movements sent through gpm_fd
2751 to generate SIGIOs. Apparently we need to call reset_sys_modes
2752 before calling init_sys_modes. */
2753 reset_sys_modes (tty);
2754 init_sys_modes (tty);
2755 add_gpm_wait_descriptor (gpm_fd);
2756 return Qnil;
2757 }
2758 }
2759
2760 void
2761 close_gpm (int fd)
2762 {
2763 if (fd >= 0)
2764 delete_gpm_wait_descriptor (fd);
2765 while (Gpm_Close()); /* close all the stack */
2766 gpm_tty = NULL;
2767 }
2768
2769 DEFUN ("gpm-mouse-stop", Fgpm_mouse_stop, Sgpm_mouse_stop,
2770 0, 0, 0,
2771 doc: /* Close a connection to Gpm. */)
2772 (void)
2773 {
2774 struct frame *f = SELECTED_FRAME ();
2775 struct tty_display_info *tty
2776 = ((f)->output_method == output_termcap
2777 ? (f)->terminal->display_info.tty : NULL);
2778
2779 if (!tty || gpm_tty != tty)
2780 return Qnil; /* Not activated on this terminal, nothing to do. */
2781
2782 close_gpm (gpm_fd);
2783 return Qnil;
2784 }
2785 #endif /* HAVE_GPM */
2786
2787 \f
2788 #ifndef MSDOS
2789 /***********************************************************************
2790 Initialization
2791 ***********************************************************************/
2792
2793 /* Initialize the tty-dependent part of frame F. The frame must
2794 already have its device initialized. */
2795
2796 void
2797 create_tty_output (struct frame *f)
2798 {
2799 struct tty_output *t = xzalloc (sizeof *t);
2800
2801 if (! FRAME_TERMCAP_P (f))
2802 abort ();
2803
2804 t->display_info = FRAME_TERMINAL (f)->display_info.tty;
2805
2806 f->output_data.tty = t;
2807 }
2808
2809 /* Delete frame F's face cache, and its tty-dependent part. */
2810
2811 static void
2812 tty_free_frame_resources (struct frame *f)
2813 {
2814 if (! FRAME_TERMCAP_P (f))
2815 abort ();
2816
2817 if (FRAME_FACE_CACHE (f))
2818 free_frame_faces (f);
2819
2820 xfree (f->output_data.tty);
2821 }
2822
2823 #else /* MSDOS */
2824
2825 /* Delete frame F's face cache. */
2826
2827 static void
2828 tty_free_frame_resources (struct frame *f)
2829 {
2830 if (! FRAME_TERMCAP_P (f) && ! FRAME_MSDOS_P (f))
2831 abort ();
2832
2833 if (FRAME_FACE_CACHE (f))
2834 free_frame_faces (f);
2835 }
2836 #endif /* MSDOS */
2837 \f
2838 /* Reset the hooks in TERMINAL. */
2839
2840 static void
2841 clear_tty_hooks (struct terminal *terminal)
2842 {
2843 terminal->rif = 0;
2844 terminal->cursor_to_hook = 0;
2845 terminal->raw_cursor_to_hook = 0;
2846 terminal->clear_to_end_hook = 0;
2847 terminal->clear_frame_hook = 0;
2848 terminal->clear_end_of_line_hook = 0;
2849 terminal->ins_del_lines_hook = 0;
2850 terminal->insert_glyphs_hook = 0;
2851 terminal->write_glyphs_hook = 0;
2852 terminal->delete_glyphs_hook = 0;
2853 terminal->ring_bell_hook = 0;
2854 terminal->reset_terminal_modes_hook = 0;
2855 terminal->set_terminal_modes_hook = 0;
2856 terminal->update_begin_hook = 0;
2857 terminal->update_end_hook = 0;
2858 terminal->set_terminal_window_hook = 0;
2859 terminal->mouse_position_hook = 0;
2860 terminal->frame_rehighlight_hook = 0;
2861 terminal->frame_raise_lower_hook = 0;
2862 terminal->fullscreen_hook = 0;
2863 terminal->set_vertical_scroll_bar_hook = 0;
2864 terminal->condemn_scroll_bars_hook = 0;
2865 terminal->redeem_scroll_bar_hook = 0;
2866 terminal->judge_scroll_bars_hook = 0;
2867 terminal->read_socket_hook = 0;
2868 terminal->frame_up_to_date_hook = 0;
2869
2870 /* Leave these two set, or suspended frames are not deleted
2871 correctly. */
2872 terminal->delete_frame_hook = &tty_free_frame_resources;
2873 terminal->delete_terminal_hook = &delete_tty;
2874 }
2875
2876 /* Initialize hooks in TERMINAL with the values needed for a tty. */
2877
2878 static void
2879 set_tty_hooks (struct terminal *terminal)
2880 {
2881 terminal->rif = 0; /* ttys don't support window-based redisplay. */
2882
2883 terminal->cursor_to_hook = &tty_cursor_to;
2884 terminal->raw_cursor_to_hook = &tty_raw_cursor_to;
2885
2886 terminal->clear_to_end_hook = &tty_clear_to_end;
2887 terminal->clear_frame_hook = &tty_clear_frame;
2888 terminal->clear_end_of_line_hook = &tty_clear_end_of_line;
2889
2890 terminal->ins_del_lines_hook = &tty_ins_del_lines;
2891
2892 terminal->insert_glyphs_hook = &tty_insert_glyphs;
2893 terminal->write_glyphs_hook = &tty_write_glyphs;
2894 terminal->delete_glyphs_hook = &tty_delete_glyphs;
2895
2896 terminal->ring_bell_hook = &tty_ring_bell;
2897
2898 terminal->reset_terminal_modes_hook = &tty_reset_terminal_modes;
2899 terminal->set_terminal_modes_hook = &tty_set_terminal_modes;
2900 terminal->update_begin_hook = 0; /* Not needed. */
2901 terminal->update_end_hook = &tty_update_end;
2902 terminal->set_terminal_window_hook = &tty_set_terminal_window;
2903
2904 terminal->mouse_position_hook = 0; /* Not needed. */
2905 terminal->frame_rehighlight_hook = 0; /* Not needed. */
2906 terminal->frame_raise_lower_hook = 0; /* Not needed. */
2907
2908 terminal->set_vertical_scroll_bar_hook = 0; /* Not needed. */
2909 terminal->condemn_scroll_bars_hook = 0; /* Not needed. */
2910 terminal->redeem_scroll_bar_hook = 0; /* Not needed. */
2911 terminal->judge_scroll_bars_hook = 0; /* Not needed. */
2912
2913 terminal->read_socket_hook = &tty_read_avail_input; /* keyboard.c */
2914 terminal->frame_up_to_date_hook = 0; /* Not needed. */
2915
2916 terminal->delete_frame_hook = &tty_free_frame_resources;
2917 terminal->delete_terminal_hook = &delete_tty;
2918 }
2919
2920 /* Drop the controlling terminal if fd is the same device. */
2921 static void
2922 dissociate_if_controlling_tty (int fd)
2923 {
2924 #ifndef DOS_NT
2925 int pgid = tcgetpgrp (fd); /* If tcgetpgrp succeeds, fd is the ctty. */
2926 if (pgid != -1)
2927 {
2928 #if defined (USG5)
2929 setpgrp ();
2930 no_controlling_tty = 1;
2931 #elif defined (CYGWIN)
2932 setsid ();
2933 no_controlling_tty = 1;
2934 #else
2935 #ifdef TIOCNOTTY /* Try BSD ioctls. */
2936 sigblock (sigmask (SIGTTOU));
2937 fd = emacs_open (DEV_TTY, O_RDWR, 0);
2938 if (fd != -1 && ioctl (fd, TIOCNOTTY, 0) != -1)
2939 {
2940 no_controlling_tty = 1;
2941 }
2942 if (fd != -1)
2943 emacs_close (fd);
2944 sigunblock (sigmask (SIGTTOU));
2945 #else
2946 /* Unknown system. */
2947 croak ();
2948 #endif /* ! TIOCNOTTY */
2949 #endif /* ! USG */
2950 }
2951 #endif /* !DOS_NT */
2952 }
2953
2954 /* Create a termcap display on the tty device with the given name and
2955 type.
2956
2957 If NAME is NULL, then use the controlling tty, i.e., "/dev/tty".
2958 Otherwise NAME should be a path to the tty device file,
2959 e.g. "/dev/pts/7".
2960
2961 TERMINAL_TYPE is the termcap type of the device, e.g. "vt100".
2962
2963 If MUST_SUCCEED is true, then all errors are fatal. */
2964
2965 struct terminal *
2966 init_tty (const char *name, const char *terminal_type, int must_succeed)
2967 {
2968 char *area = NULL;
2969 char **address = &area;
2970 int buffer_size = 4096;
2971 int status;
2972 struct tty_display_info *tty = NULL;
2973 struct terminal *terminal = NULL;
2974 int ctty = 0; /* 1 if asked to open controlling tty. */
2975
2976 if (!terminal_type)
2977 maybe_fatal (must_succeed, 0,
2978 "Unknown terminal type",
2979 "Unknown terminal type");
2980
2981 if (name == NULL)
2982 name = DEV_TTY;
2983 if (!strcmp (name, DEV_TTY))
2984 ctty = 1;
2985
2986 /* If we already have a terminal on the given device, use that. If
2987 all such terminals are suspended, create a new one instead. */
2988 /* XXX Perhaps this should be made explicit by having init_tty
2989 always create a new terminal and separating terminal and frame
2990 creation on Lisp level. */
2991 terminal = get_named_tty (name);
2992 if (terminal)
2993 return terminal;
2994
2995 terminal = create_terminal ();
2996 #ifdef MSDOS
2997 if (been_here > 0)
2998 maybe_fatal (0, 0, "Attempt to create another terminal %s", "",
2999 name, "");
3000 been_here = 1;
3001 tty = &the_only_display_info;
3002 #else
3003 tty = xzalloc (sizeof *tty);
3004 #endif
3005 tty->next = tty_list;
3006 tty_list = tty;
3007
3008 terminal->type = output_termcap;
3009 terminal->display_info.tty = tty;
3010 tty->terminal = terminal;
3011
3012 tty->Wcm = xmalloc (sizeof *tty->Wcm);
3013 Wcm_clear (tty);
3014
3015 encode_terminal_src_size = 0;
3016 encode_terminal_dst_size = 0;
3017
3018
3019 #ifndef DOS_NT
3020 set_tty_hooks (terminal);
3021
3022 {
3023 int fd;
3024 FILE *file;
3025
3026 #ifdef O_IGNORE_CTTY
3027 if (!ctty)
3028 /* Open the terminal device. Don't recognize it as our
3029 controlling terminal, and don't make it the controlling tty
3030 if we don't have one at the moment. */
3031 fd = emacs_open (name, O_RDWR | O_IGNORE_CTTY | O_NOCTTY, 0);
3032 else
3033 #endif /* O_IGNORE_CTTY */
3034 /* Alas, O_IGNORE_CTTY is a GNU extension that seems to be only
3035 defined on Hurd. On other systems, we need to explicitly
3036 dissociate ourselves from the controlling tty when we want to
3037 open a frame on the same terminal. */
3038 fd = emacs_open (name, O_RDWR | O_NOCTTY, 0);
3039
3040 tty->name = xstrdup (name);
3041 terminal->name = xstrdup (name);
3042
3043 if (fd < 0)
3044 maybe_fatal (must_succeed, terminal,
3045 "Could not open file: %s",
3046 "Could not open file: %s",
3047 name);
3048 if (!isatty (fd))
3049 {
3050 close (fd);
3051 maybe_fatal (must_succeed, terminal,
3052 "Not a tty device: %s",
3053 "Not a tty device: %s",
3054 name);
3055 }
3056
3057 #ifndef O_IGNORE_CTTY
3058 if (!ctty)
3059 dissociate_if_controlling_tty (fd);
3060 #endif
3061
3062 file = fdopen (fd, "w+");
3063 tty->input = file;
3064 tty->output = file;
3065 }
3066
3067 tty->type = xstrdup (terminal_type);
3068
3069 add_keyboard_wait_descriptor (fileno (tty->input));
3070
3071 Wcm_clear (tty);
3072
3073 tty->termcap_term_buffer = xmalloc (buffer_size);
3074
3075 /* On some systems, tgetent tries to access the controlling
3076 terminal. */
3077 sigblock (sigmask (SIGTTOU));
3078 status = tgetent (tty->termcap_term_buffer, terminal_type);
3079 sigunblock (sigmask (SIGTTOU));
3080
3081 if (status < 0)
3082 {
3083 #ifdef TERMINFO
3084 maybe_fatal (must_succeed, terminal,
3085 "Cannot open terminfo database file",
3086 "Cannot open terminfo database file");
3087 #else
3088 maybe_fatal (must_succeed, terminal,
3089 "Cannot open termcap database file",
3090 "Cannot open termcap database file");
3091 #endif
3092 }
3093 if (status == 0)
3094 {
3095 maybe_fatal (must_succeed, terminal,
3096 "Terminal type %s is not defined",
3097 "Terminal type %s is not defined.\n\
3098 If that is not the actual type of terminal you have,\n\
3099 use the Bourne shell command `TERM=... export TERM' (C-shell:\n\
3100 `setenv TERM ...') to specify the correct type. It may be necessary\n"
3101 #ifdef TERMINFO
3102 "to do `unset TERMINFO' (C-shell: `unsetenv TERMINFO') as well.",
3103 #else
3104 "to do `unset TERMCAP' (C-shell: `unsetenv TERMCAP') as well.",
3105 #endif
3106 terminal_type);
3107 }
3108
3109 #ifndef TERMINFO
3110 if (strlen (tty->termcap_term_buffer) >= buffer_size)
3111 abort ();
3112 buffer_size = strlen (tty->termcap_term_buffer);
3113 #endif
3114 tty->termcap_strings_buffer = area = xmalloc (buffer_size);
3115 tty->TS_ins_line = tgetstr ("al", address);
3116 tty->TS_ins_multi_lines = tgetstr ("AL", address);
3117 tty->TS_bell = tgetstr ("bl", address);
3118 BackTab (tty) = tgetstr ("bt", address);
3119 tty->TS_clr_to_bottom = tgetstr ("cd", address);
3120 tty->TS_clr_line = tgetstr ("ce", address);
3121 tty->TS_clr_frame = tgetstr ("cl", address);
3122 ColPosition (tty) = NULL; /* tgetstr ("ch", address); */
3123 AbsPosition (tty) = tgetstr ("cm", address);
3124 CR (tty) = tgetstr ("cr", address);
3125 tty->TS_set_scroll_region = tgetstr ("cs", address);
3126 tty->TS_set_scroll_region_1 = tgetstr ("cS", address);
3127 RowPosition (tty) = tgetstr ("cv", address);
3128 tty->TS_del_char = tgetstr ("dc", address);
3129 tty->TS_del_multi_chars = tgetstr ("DC", address);
3130 tty->TS_del_line = tgetstr ("dl", address);
3131 tty->TS_del_multi_lines = tgetstr ("DL", address);
3132 tty->TS_delete_mode = tgetstr ("dm", address);
3133 tty->TS_end_delete_mode = tgetstr ("ed", address);
3134 tty->TS_end_insert_mode = tgetstr ("ei", address);
3135 Home (tty) = tgetstr ("ho", address);
3136 tty->TS_ins_char = tgetstr ("ic", address);
3137 tty->TS_ins_multi_chars = tgetstr ("IC", address);
3138 tty->TS_insert_mode = tgetstr ("im", address);
3139 tty->TS_pad_inserted_char = tgetstr ("ip", address);
3140 tty->TS_end_keypad_mode = tgetstr ("ke", address);
3141 tty->TS_keypad_mode = tgetstr ("ks", address);
3142 LastLine (tty) = tgetstr ("ll", address);
3143 Right (tty) = tgetstr ("nd", address);
3144 Down (tty) = tgetstr ("do", address);
3145 if (!Down (tty))
3146 Down (tty) = tgetstr ("nl", address); /* Obsolete name for "do" */
3147 if (tgetflag ("bs"))
3148 Left (tty) = "\b"; /* can't possibly be longer! */
3149 else /* (Actually, "bs" is obsolete...) */
3150 Left (tty) = tgetstr ("le", address);
3151 if (!Left (tty))
3152 Left (tty) = tgetstr ("bc", address); /* Obsolete name for "le" */
3153 tty->TS_pad_char = tgetstr ("pc", address);
3154 tty->TS_repeat = tgetstr ("rp", address);
3155 tty->TS_end_standout_mode = tgetstr ("se", address);
3156 tty->TS_fwd_scroll = tgetstr ("sf", address);
3157 tty->TS_standout_mode = tgetstr ("so", address);
3158 tty->TS_rev_scroll = tgetstr ("sr", address);
3159 tty->Wcm->cm_tab = tgetstr ("ta", address);
3160 tty->TS_end_termcap_modes = tgetstr ("te", address);
3161 tty->TS_termcap_modes = tgetstr ("ti", address);
3162 Up (tty) = tgetstr ("up", address);
3163 tty->TS_visible_bell = tgetstr ("vb", address);
3164 tty->TS_cursor_normal = tgetstr ("ve", address);
3165 tty->TS_cursor_visible = tgetstr ("vs", address);
3166 tty->TS_cursor_invisible = tgetstr ("vi", address);
3167 tty->TS_set_window = tgetstr ("wi", address);
3168
3169 tty->TS_enter_underline_mode = tgetstr ("us", address);
3170 tty->TS_exit_underline_mode = tgetstr ("ue", address);
3171 tty->TS_enter_bold_mode = tgetstr ("md", address);
3172 tty->TS_enter_italic_mode = tgetstr ("ZH", address);
3173 tty->TS_enter_dim_mode = tgetstr ("mh", address);
3174 tty->TS_enter_reverse_mode = tgetstr ("mr", address);
3175 tty->TS_enter_alt_charset_mode = tgetstr ("as", address);
3176 tty->TS_exit_alt_charset_mode = tgetstr ("ae", address);
3177 tty->TS_exit_attribute_mode = tgetstr ("me", address);
3178
3179 MultiUp (tty) = tgetstr ("UP", address);
3180 MultiDown (tty) = tgetstr ("DO", address);
3181 MultiLeft (tty) = tgetstr ("LE", address);
3182 MultiRight (tty) = tgetstr ("RI", address);
3183
3184 /* SVr4/ANSI color support. If "op" isn't available, don't support
3185 color because we can't switch back to the default foreground and
3186 background. */
3187 tty->TS_orig_pair = tgetstr ("op", address);
3188 if (tty->TS_orig_pair)
3189 {
3190 tty->TS_set_foreground = tgetstr ("AF", address);
3191 tty->TS_set_background = tgetstr ("AB", address);
3192 if (!tty->TS_set_foreground)
3193 {
3194 /* SVr4. */
3195 tty->TS_set_foreground = tgetstr ("Sf", address);
3196 tty->TS_set_background = tgetstr ("Sb", address);
3197 }
3198
3199 tty->TN_max_colors = tgetnum ("Co");
3200 tty->TN_max_pairs = tgetnum ("pa");
3201
3202 tty->TN_no_color_video = tgetnum ("NC");
3203 if (tty->TN_no_color_video == -1)
3204 tty->TN_no_color_video = 0;
3205 }
3206
3207 tty_default_color_capabilities (tty, 1);
3208
3209 MagicWrap (tty) = tgetflag ("xn");
3210 /* Since we make MagicWrap terminals look like AutoWrap, we need to have
3211 the former flag imply the latter. */
3212 AutoWrap (tty) = MagicWrap (tty) || tgetflag ("am");
3213 terminal->memory_below_frame = tgetflag ("db");
3214 tty->TF_hazeltine = tgetflag ("hz");
3215 terminal->must_write_spaces = tgetflag ("in");
3216 tty->meta_key = tgetflag ("km") || tgetflag ("MT");
3217 tty->TF_insmode_motion = tgetflag ("mi");
3218 tty->TF_standout_motion = tgetflag ("ms");
3219 tty->TF_underscore = tgetflag ("ul");
3220 tty->TF_teleray = tgetflag ("xt");
3221
3222 #else /* DOS_NT */
3223 #ifdef WINDOWSNT
3224 {
3225 struct frame *f = XFRAME (selected_frame);
3226
3227 initialize_w32_display (terminal);
3228
3229 FrameRows (tty) = FRAME_LINES (f);
3230 FrameCols (tty) = FRAME_COLS (f);
3231 tty->specified_window = FRAME_LINES (f);
3232
3233 FRAME_CAN_HAVE_SCROLL_BARS (f) = 0;
3234 FRAME_VERTICAL_SCROLL_BAR_TYPE (f) = vertical_scroll_bar_none;
3235 terminal->char_ins_del_ok = 1;
3236 baud_rate = 19200;
3237 }
3238 #else /* MSDOS */
3239 {
3240 int height, width;
3241 if (strcmp (terminal_type, "internal") == 0)
3242 terminal->type = output_msdos_raw;
3243 initialize_msdos_display (terminal);
3244
3245 get_tty_size (fileno (tty->input), &width, &height);
3246 FrameCols (tty) = width;
3247 FrameRows (tty) = height;
3248 terminal->char_ins_del_ok = 0;
3249 init_baud_rate (fileno (tty->input));
3250 }
3251 #endif /* MSDOS */
3252 tty->output = stdout;
3253 tty->input = stdin;
3254 /* The following two are inaccessible from w32console.c. */
3255 terminal->delete_frame_hook = &tty_free_frame_resources;
3256 terminal->delete_terminal_hook = &delete_tty;
3257
3258 tty->name = xstrdup (name);
3259 terminal->name = xstrdup (name);
3260 tty->type = xstrdup (terminal_type);
3261
3262 add_keyboard_wait_descriptor (0);
3263
3264 tty->delete_in_insert_mode = 1;
3265
3266 UseTabs (tty) = 0;
3267 terminal->scroll_region_ok = 0;
3268
3269 /* Seems to insert lines when it's not supposed to, messing up the
3270 display. In doing a trace, it didn't seem to be called much, so I
3271 don't think we're losing anything by turning it off. */
3272 terminal->line_ins_del_ok = 0;
3273
3274 tty->TN_max_colors = 16; /* Required to be non-zero for tty-display-color-p */
3275 #endif /* DOS_NT */
3276
3277 #ifdef HAVE_GPM
3278 terminal->mouse_position_hook = term_mouse_position;
3279 tty->mouse_highlight.mouse_face_window = Qnil;
3280 #endif
3281
3282 terminal->kboard = xmalloc (sizeof *terminal->kboard);
3283 init_kboard (terminal->kboard);
3284 KVAR (terminal->kboard, Vwindow_system) = Qnil;
3285 terminal->kboard->next_kboard = all_kboards;
3286 all_kboards = terminal->kboard;
3287 terminal->kboard->reference_count++;
3288 /* Don't let the initial kboard remain current longer than necessary.
3289 That would cause problems if a file loaded on startup tries to
3290 prompt in the mini-buffer. */
3291 if (current_kboard == initial_kboard)
3292 current_kboard = terminal->kboard;
3293 #ifndef DOS_NT
3294 term_get_fkeys (address, terminal->kboard);
3295
3296 /* Get frame size from system, or else from termcap. */
3297 {
3298 int height, width;
3299 get_tty_size (fileno (tty->input), &width, &height);
3300 FrameCols (tty) = width;
3301 FrameRows (tty) = height;
3302 }
3303
3304 if (FrameCols (tty) <= 0)
3305 FrameCols (tty) = tgetnum ("co");
3306 if (FrameRows (tty) <= 0)
3307 FrameRows (tty) = tgetnum ("li");
3308
3309 if (FrameRows (tty) < 3 || FrameCols (tty) < 3)
3310 maybe_fatal (must_succeed, terminal,
3311 "Screen size %dx%d is too small",
3312 "Screen size %dx%d is too small",
3313 FrameCols (tty), FrameRows (tty));
3314
3315 TabWidth (tty) = tgetnum ("tw");
3316
3317 if (!tty->TS_bell)
3318 tty->TS_bell = "\07";
3319
3320 if (!tty->TS_fwd_scroll)
3321 tty->TS_fwd_scroll = Down (tty);
3322
3323 PC = tty->TS_pad_char ? *tty->TS_pad_char : 0;
3324
3325 if (TabWidth (tty) < 0)
3326 TabWidth (tty) = 8;
3327
3328 /* Turned off since /etc/termcap seems to have :ta= for most terminals
3329 and newer termcap doc does not seem to say there is a default.
3330 if (!tty->Wcm->cm_tab)
3331 tty->Wcm->cm_tab = "\t";
3332 */
3333
3334 /* We don't support standout modes that use `magic cookies', so
3335 turn off any that do. */
3336 if (tty->TS_standout_mode && tgetnum ("sg") >= 0)
3337 {
3338 tty->TS_standout_mode = 0;
3339 tty->TS_end_standout_mode = 0;
3340 }
3341 if (tty->TS_enter_underline_mode && tgetnum ("ug") >= 0)
3342 {
3343 tty->TS_enter_underline_mode = 0;
3344 tty->TS_exit_underline_mode = 0;
3345 }
3346
3347 /* If there's no standout mode, try to use underlining instead. */
3348 if (tty->TS_standout_mode == 0)
3349 {
3350 tty->TS_standout_mode = tty->TS_enter_underline_mode;
3351 tty->TS_end_standout_mode = tty->TS_exit_underline_mode;
3352 }
3353
3354 /* If no `se' string, try using a `me' string instead.
3355 If that fails, we can't use standout mode at all. */
3356 if (tty->TS_end_standout_mode == 0)
3357 {
3358 char *s = tgetstr ("me", address);
3359 if (s != 0)
3360 tty->TS_end_standout_mode = s;
3361 else
3362 tty->TS_standout_mode = 0;
3363 }
3364
3365 if (tty->TF_teleray)
3366 {
3367 tty->Wcm->cm_tab = 0;
3368 /* We can't support standout mode, because it uses magic cookies. */
3369 tty->TS_standout_mode = 0;
3370 /* But that means we cannot rely on ^M to go to column zero! */
3371 CR (tty) = 0;
3372 /* LF can't be trusted either -- can alter hpos */
3373 /* if move at column 0 thru a line with TS_standout_mode */
3374 Down (tty) = 0;
3375 }
3376
3377 tty->specified_window = FrameRows (tty);
3378
3379 if (Wcm_init (tty) == -1) /* can't do cursor motion */
3380 {
3381 maybe_fatal (must_succeed, terminal,
3382 "Terminal type \"%s\" is not powerful enough to run Emacs",
3383 "Terminal type \"%s\" is not powerful enough to run Emacs.\n\
3384 It lacks the ability to position the cursor.\n\
3385 If that is not the actual type of terminal you have,\n\
3386 use the Bourne shell command `TERM=... export TERM' (C-shell:\n\
3387 `setenv TERM ...') to specify the correct type. It may be necessary\n"
3388 # ifdef TERMINFO
3389 "to do `unset TERMINFO' (C-shell: `unsetenv TERMINFO') as well.",
3390 # else /* TERMCAP */
3391 "to do `unset TERMCAP' (C-shell: `unsetenv TERMCAP') as well.",
3392 # endif /* TERMINFO */
3393 terminal_type);
3394 }
3395
3396 if (FrameRows (tty) <= 0 || FrameCols (tty) <= 0)
3397 maybe_fatal (must_succeed, terminal,
3398 "Could not determine the frame size",
3399 "Could not determine the frame size");
3400
3401 tty->delete_in_insert_mode
3402 = tty->TS_delete_mode && tty->TS_insert_mode
3403 && !strcmp (tty->TS_delete_mode, tty->TS_insert_mode);
3404
3405 tty->se_is_so = (tty->TS_standout_mode
3406 && tty->TS_end_standout_mode
3407 && !strcmp (tty->TS_standout_mode, tty->TS_end_standout_mode));
3408
3409 UseTabs (tty) = tabs_safe_p (fileno (tty->input)) && TabWidth (tty) == 8;
3410
3411 terminal->scroll_region_ok
3412 = (tty->Wcm->cm_abs
3413 && (tty->TS_set_window || tty->TS_set_scroll_region || tty->TS_set_scroll_region_1));
3414
3415 terminal->line_ins_del_ok
3416 = (((tty->TS_ins_line || tty->TS_ins_multi_lines)
3417 && (tty->TS_del_line || tty->TS_del_multi_lines))
3418 || (terminal->scroll_region_ok
3419 && tty->TS_fwd_scroll && tty->TS_rev_scroll));
3420
3421 terminal->char_ins_del_ok
3422 = ((tty->TS_ins_char || tty->TS_insert_mode
3423 || tty->TS_pad_inserted_char || tty->TS_ins_multi_chars)
3424 && (tty->TS_del_char || tty->TS_del_multi_chars));
3425
3426 terminal->fast_clear_end_of_line = tty->TS_clr_line != 0;
3427
3428 init_baud_rate (fileno (tty->input));
3429
3430 #endif /* not DOS_NT */
3431
3432 /* Init system terminal modes (RAW or CBREAK, etc.). */
3433 init_sys_modes (tty);
3434
3435 return terminal;
3436 }
3437
3438
3439 static void
3440 vfatal (const char *str, va_list ap)
3441 {
3442 fprintf (stderr, "emacs: ");
3443 vfprintf (stderr, str, ap);
3444 if (!(strlen (str) > 0 && str[strlen (str) - 1] == '\n'))
3445 fprintf (stderr, "\n");
3446 fflush (stderr);
3447 exit (1);
3448 }
3449
3450
3451 /* Auxiliary error-handling function for init_tty.
3452 Delete TERMINAL, then call error or fatal with str1 or str2,
3453 respectively, according to whether MUST_SUCCEED is zero or not. */
3454
3455 static void
3456 maybe_fatal (int must_succeed, struct terminal *terminal,
3457 const char *str1, const char *str2, ...)
3458 {
3459 va_list ap;
3460 va_start (ap, str2);
3461 if (terminal)
3462 delete_tty (terminal);
3463
3464 if (must_succeed)
3465 vfatal (str2, ap);
3466 else
3467 verror (str1, ap);
3468
3469 va_end (ap);
3470 abort ();
3471 }
3472
3473 void
3474 fatal (const char *str, ...)
3475 {
3476 va_list ap;
3477 va_start (ap, str);
3478 vfatal (str, ap);
3479 va_end (ap);
3480 }
3481
3482 \f
3483
3484 /* Delete the given tty terminal, closing all frames on it. */
3485
3486 static void
3487 delete_tty (struct terminal *terminal)
3488 {
3489 struct tty_display_info *tty;
3490
3491 /* Protect against recursive calls. delete_frame in
3492 delete_terminal calls us back when it deletes our last frame. */
3493 if (!terminal->name)
3494 return;
3495
3496 if (terminal->type != output_termcap)
3497 abort ();
3498
3499 tty = terminal->display_info.tty;
3500
3501 if (tty == tty_list)
3502 tty_list = tty->next;
3503 else
3504 {
3505 struct tty_display_info *p;
3506 for (p = tty_list; p && p->next != tty; p = p->next)
3507 ;
3508
3509 if (! p)
3510 /* This should not happen. */
3511 abort ();
3512
3513 p->next = tty->next;
3514 tty->next = 0;
3515 }
3516
3517 /* reset_sys_modes needs a valid device, so this call needs to be
3518 before delete_terminal. */
3519 reset_sys_modes (tty);
3520
3521 delete_terminal (terminal);
3522
3523 xfree (tty->name);
3524 xfree (tty->type);
3525
3526 if (tty->input)
3527 {
3528 delete_keyboard_wait_descriptor (fileno (tty->input));
3529 if (tty->input != stdin)
3530 fclose (tty->input);
3531 }
3532 if (tty->output && tty->output != stdout && tty->output != tty->input)
3533 fclose (tty->output);
3534 if (tty->termscript)
3535 fclose (tty->termscript);
3536
3537 xfree (tty->old_tty);
3538 xfree (tty->Wcm);
3539 xfree (tty->termcap_strings_buffer);
3540 xfree (tty->termcap_term_buffer);
3541
3542 xfree (tty);
3543 }
3544
3545 \f
3546
3547 /* Mark the pointers in the tty_display_info objects.
3548 Called by Fgarbage_collect. */
3549
3550 void
3551 mark_ttys (void)
3552 {
3553 struct tty_display_info *tty;
3554
3555 for (tty = tty_list; tty; tty = tty->next)
3556 mark_object (tty->top_frame);
3557 }
3558
3559 \f
3560
3561 void
3562 syms_of_term (void)
3563 {
3564 DEFVAR_BOOL ("system-uses-terminfo", system_uses_terminfo,
3565 doc: /* Non-nil means the system uses terminfo rather than termcap.
3566 This variable can be used by terminal emulator packages. */);
3567 #ifdef TERMINFO
3568 system_uses_terminfo = 1;
3569 #else
3570 system_uses_terminfo = 0;
3571 #endif
3572
3573 DEFVAR_LISP ("suspend-tty-functions", Vsuspend_tty_functions,
3574 doc: /* Functions to be run after suspending a tty.
3575 The functions are run with one argument, the terminal object to be suspended.
3576 See `suspend-tty'. */);
3577 Vsuspend_tty_functions = Qnil;
3578
3579
3580 DEFVAR_LISP ("resume-tty-functions", Vresume_tty_functions,
3581 doc: /* Functions to be run after resuming a tty.
3582 The functions are run with one argument, the terminal object that was revived.
3583 See `resume-tty'. */);
3584 Vresume_tty_functions = Qnil;
3585
3586 DEFVAR_BOOL ("visible-cursor", visible_cursor,
3587 doc: /* Non-nil means to make the cursor very visible.
3588 This only has an effect when running in a text terminal.
3589 What means \"very visible\" is up to your terminal. It may make the cursor
3590 bigger, or it may make it blink, or it may do nothing at all. */);
3591 visible_cursor = 1;
3592
3593 defsubr (&Stty_display_color_p);
3594 defsubr (&Stty_display_color_cells);
3595 defsubr (&Stty_no_underline);
3596 defsubr (&Stty_type);
3597 defsubr (&Scontrolling_tty_p);
3598 defsubr (&Stty_top_frame);
3599 defsubr (&Ssuspend_tty);
3600 defsubr (&Sresume_tty);
3601 #ifdef HAVE_GPM
3602 defsubr (&Sgpm_mouse_start);
3603 defsubr (&Sgpm_mouse_stop);
3604 #endif /* HAVE_GPM */
3605
3606 #ifndef DOS_NT
3607 default_orig_pair = NULL;
3608 default_set_foreground = NULL;
3609 default_set_background = NULL;
3610 #endif /* !DOS_NT */
3611
3612 encode_terminal_src = NULL;
3613 encode_terminal_dst = NULL;
3614 }