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