Update copyright year to 2014 by running admin/update-copyright.
[emacs.git] / src / term.c
blob4d8da135f6ef183d75ab00d75ee6be15b399d622
1 /* Terminal control module for terminals described by TERMCAP
2 Copyright (C) 1985-1987, 1993-1995, 1998, 2000-2014 Free Software
3 Foundation, Inc.
5 This file is part of GNU Emacs.
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.
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.
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/>. */
20 /* New redisplay, TTY faces by Gerd Moellmann <gerd@gnu.org>. */
22 #include <config.h>
23 #include <errno.h>
24 #include <fcntl.h>
25 #include <stdio.h>
26 #include <sys/file.h>
27 #include <sys/time.h>
28 #include <unistd.h>
30 #include "lisp.h"
31 #include "termchar.h"
32 #include "tparam.h"
33 #include "character.h"
34 #include "buffer.h"
35 #include "charset.h"
36 #include "coding.h"
37 #include "composite.h"
38 #include "keyboard.h"
39 #include "frame.h"
40 #include "disptab.h"
41 #include "termhooks.h"
42 #include "dispextern.h"
43 #include "window.h"
44 #include "keymap.h"
45 #include "blockinput.h"
46 #include "syssignal.h"
47 #include "systty.h"
48 #include "intervals.h"
49 #ifdef MSDOS
50 #include "msdos.h"
51 static int been_here = -1;
52 #endif
54 #ifdef USE_X_TOOLKIT
55 #include "../lwlib/lwlib.h"
56 #endif
58 #include "cm.h"
59 #ifdef HAVE_X_WINDOWS
60 #include "xterm.h"
61 #endif
63 #include "menu.h"
65 /* The name of the default console device. */
66 #ifdef WINDOWSNT
67 #define DEV_TTY "CONOUT$"
68 #include "w32term.h"
69 #else
70 #define DEV_TTY "/dev/tty"
71 #endif
73 static void tty_set_scroll_region (struct frame *f, int start, int stop);
74 static void turn_on_face (struct frame *, int face_id);
75 static void turn_off_face (struct frame *, int face_id);
76 static void tty_turn_off_highlight (struct tty_display_info *);
77 static void tty_show_cursor (struct tty_display_info *);
78 static void tty_hide_cursor (struct tty_display_info *);
79 static void tty_background_highlight (struct tty_display_info *tty);
80 static struct terminal *get_tty_terminal (Lisp_Object, bool);
81 static void clear_tty_hooks (struct terminal *terminal);
82 static void set_tty_hooks (struct terminal *terminal);
83 static void dissociate_if_controlling_tty (int fd);
84 static void delete_tty (struct terminal *);
85 static _Noreturn void maybe_fatal (bool, struct terminal *,
86 const char *, const char *, ...)
87 ATTRIBUTE_FORMAT_PRINTF (3, 5) ATTRIBUTE_FORMAT_PRINTF (4, 5);
88 static _Noreturn void vfatal (const char *str, va_list ap)
89 ATTRIBUTE_FORMAT_PRINTF (1, 0);
92 #define OUTPUT(tty, a) \
93 emacs_tputs ((tty), a, \
94 FRAME_LINES (XFRAME (selected_frame)) - curY (tty), \
95 cmputc)
97 #define OUTPUT1(tty, a) emacs_tputs ((tty), a, 1, cmputc)
98 #define OUTPUTL(tty, a, lines) emacs_tputs ((tty), a, lines, cmputc)
100 #define OUTPUT_IF(tty, a) \
101 do { \
102 if (a) \
103 OUTPUT (tty, a); \
104 } while (0)
106 #define OUTPUT1_IF(tty, a) do { if (a) emacs_tputs ((tty), a, 1, cmputc); } while (0)
108 /* Display space properties */
110 /* Chain of all tty device parameters. */
111 struct tty_display_info *tty_list;
113 /* Meaning of bits in no_color_video. Each bit set means that the
114 corresponding attribute cannot be combined with colors. */
116 enum no_color_bit
118 NC_STANDOUT = 1 << 0,
119 NC_UNDERLINE = 1 << 1,
120 NC_REVERSE = 1 << 2,
121 NC_ITALIC = 1 << 3,
122 NC_DIM = 1 << 4,
123 NC_BOLD = 1 << 5,
124 NC_INVIS = 1 << 6,
125 NC_PROTECT = 1 << 7
128 /* internal state */
130 /* The largest frame width in any call to calculate_costs. */
132 static int max_frame_cols;
136 #ifdef HAVE_GPM
137 #include <sys/fcntl.h>
139 /* The device for which we have enabled gpm support (or NULL). */
140 struct tty_display_info *gpm_tty = NULL;
142 /* Last recorded mouse coordinates. */
143 static int last_mouse_x, last_mouse_y;
144 #endif /* HAVE_GPM */
146 /* Ring the bell on a tty. */
148 static void
149 tty_ring_bell (struct frame *f)
151 struct tty_display_info *tty = FRAME_TTY (f);
153 if (tty->output)
155 OUTPUT (tty, (tty->TS_visible_bell && visible_bell
156 ? tty->TS_visible_bell
157 : tty->TS_bell));
158 fflush (tty->output);
162 /* Set up termcap modes for Emacs. */
164 static void
165 tty_set_terminal_modes (struct terminal *terminal)
167 struct tty_display_info *tty = terminal->display_info.tty;
169 if (tty->output)
171 if (tty->TS_termcap_modes)
172 OUTPUT (tty, tty->TS_termcap_modes);
173 else
175 /* Output enough newlines to scroll all the old screen contents
176 off the screen, so it won't be overwritten and lost. */
177 int i;
178 current_tty = tty;
179 for (i = 0; i < FRAME_LINES (XFRAME (selected_frame)); i++)
180 cmputc ('\n');
183 OUTPUT_IF (tty, visible_cursor ? tty->TS_cursor_visible : tty->TS_cursor_normal);
184 OUTPUT_IF (tty, tty->TS_keypad_mode);
185 losecursor (tty);
186 fflush (tty->output);
190 /* Reset termcap modes before exiting Emacs. */
192 static void
193 tty_reset_terminal_modes (struct terminal *terminal)
195 struct tty_display_info *tty = terminal->display_info.tty;
197 if (tty->output)
199 tty_turn_off_highlight (tty);
200 tty_turn_off_insert (tty);
201 OUTPUT_IF (tty, tty->TS_end_keypad_mode);
202 OUTPUT_IF (tty, tty->TS_cursor_normal);
203 OUTPUT_IF (tty, tty->TS_end_termcap_modes);
204 OUTPUT_IF (tty, tty->TS_orig_pair);
205 /* Output raw CR so kernel can track the cursor hpos. */
206 current_tty = tty;
207 cmputc ('\r');
208 fflush (tty->output);
212 /* Flag the end of a display update on a termcap terminal. */
214 static void
215 tty_update_end (struct frame *f)
217 struct tty_display_info *tty = FRAME_TTY (f);
219 if (!XWINDOW (selected_window)->cursor_off_p)
220 tty_show_cursor (tty);
221 tty_turn_off_insert (tty);
222 tty_background_highlight (tty);
223 fflush (tty->output);
226 /* The implementation of set_terminal_window for termcap frames. */
228 static void
229 tty_set_terminal_window (struct frame *f, int size)
231 struct tty_display_info *tty = FRAME_TTY (f);
233 tty->specified_window = size ? size : FRAME_LINES (f);
234 if (FRAME_SCROLL_REGION_OK (f))
235 tty_set_scroll_region (f, 0, tty->specified_window);
238 static void
239 tty_set_scroll_region (struct frame *f, int start, int stop)
241 char *buf;
242 struct tty_display_info *tty = FRAME_TTY (f);
244 if (tty->TS_set_scroll_region)
245 buf = tparam (tty->TS_set_scroll_region, 0, 0, start, stop - 1, 0, 0);
246 else if (tty->TS_set_scroll_region_1)
247 buf = tparam (tty->TS_set_scroll_region_1, 0, 0,
248 FRAME_LINES (f), start,
249 FRAME_LINES (f) - stop,
250 FRAME_LINES (f));
251 else
252 buf = tparam (tty->TS_set_window, 0, 0, start, 0, stop, FRAME_COLS (f));
254 OUTPUT (tty, buf);
255 xfree (buf);
256 losecursor (tty);
260 static void
261 tty_turn_on_insert (struct tty_display_info *tty)
263 if (!tty->insert_mode)
264 OUTPUT (tty, tty->TS_insert_mode);
265 tty->insert_mode = 1;
268 void
269 tty_turn_off_insert (struct tty_display_info *tty)
271 if (tty->insert_mode)
272 OUTPUT (tty, tty->TS_end_insert_mode);
273 tty->insert_mode = 0;
276 /* Handle highlighting. */
278 static void
279 tty_turn_off_highlight (struct tty_display_info *tty)
281 if (tty->standout_mode)
282 OUTPUT_IF (tty, tty->TS_end_standout_mode);
283 tty->standout_mode = 0;
286 static void
287 tty_turn_on_highlight (struct tty_display_info *tty)
289 if (!tty->standout_mode)
290 OUTPUT_IF (tty, tty->TS_standout_mode);
291 tty->standout_mode = 1;
294 static void
295 tty_toggle_highlight (struct tty_display_info *tty)
297 if (tty->standout_mode)
298 tty_turn_off_highlight (tty);
299 else
300 tty_turn_on_highlight (tty);
304 /* Make cursor invisible. */
306 static void
307 tty_hide_cursor (struct tty_display_info *tty)
309 if (tty->cursor_hidden == 0)
311 tty->cursor_hidden = 1;
312 #ifdef WINDOWSNT
313 w32con_hide_cursor ();
314 #else
315 OUTPUT_IF (tty, tty->TS_cursor_invisible);
316 #endif
321 /* Ensure that cursor is visible. */
323 static void
324 tty_show_cursor (struct tty_display_info *tty)
326 if (tty->cursor_hidden)
328 tty->cursor_hidden = 0;
329 #ifdef WINDOWSNT
330 w32con_show_cursor ();
331 #else
332 OUTPUT_IF (tty, tty->TS_cursor_normal);
333 if (visible_cursor)
334 OUTPUT_IF (tty, tty->TS_cursor_visible);
335 #endif
340 /* Set standout mode to the state it should be in for
341 empty space inside windows. What this is,
342 depends on the user option inverse-video. */
344 static void
345 tty_background_highlight (struct tty_display_info *tty)
347 if (inverse_video)
348 tty_turn_on_highlight (tty);
349 else
350 tty_turn_off_highlight (tty);
353 /* Set standout mode to the mode specified for the text to be output. */
355 static void
356 tty_highlight_if_desired (struct tty_display_info *tty)
358 if (inverse_video)
359 tty_turn_on_highlight (tty);
360 else
361 tty_turn_off_highlight (tty);
365 /* Move cursor to row/column position VPOS/HPOS. HPOS/VPOS are
366 frame-relative coordinates. */
368 static void
369 tty_cursor_to (struct frame *f, int vpos, int hpos)
371 struct tty_display_info *tty = FRAME_TTY (f);
373 /* Detect the case where we are called from reset_sys_modes
374 and the costs have never been calculated. Do nothing. */
375 if (! tty->costs_set)
376 return;
378 if (curY (tty) == vpos
379 && curX (tty) == hpos)
380 return;
381 if (!tty->TF_standout_motion)
382 tty_background_highlight (tty);
383 if (!tty->TF_insmode_motion)
384 tty_turn_off_insert (tty);
385 cmgoto (tty, vpos, hpos);
388 /* Similar but don't take any account of the wasted characters. */
390 static void
391 tty_raw_cursor_to (struct frame *f, int row, int col)
393 struct tty_display_info *tty = FRAME_TTY (f);
395 if (curY (tty) == row
396 && curX (tty) == col)
397 return;
398 if (!tty->TF_standout_motion)
399 tty_background_highlight (tty);
400 if (!tty->TF_insmode_motion)
401 tty_turn_off_insert (tty);
402 cmgoto (tty, row, col);
405 /* Erase operations */
407 /* Clear from cursor to end of frame on a termcap device. */
409 static void
410 tty_clear_to_end (struct frame *f)
412 register int i;
413 struct tty_display_info *tty = FRAME_TTY (f);
415 if (tty->TS_clr_to_bottom)
417 tty_background_highlight (tty);
418 OUTPUT (tty, tty->TS_clr_to_bottom);
420 else
422 for (i = curY (tty); i < FRAME_LINES (f); i++)
424 cursor_to (f, i, 0);
425 clear_end_of_line (f, FRAME_COLS (f));
430 /* Clear an entire termcap frame. */
432 static void
433 tty_clear_frame (struct frame *f)
435 struct tty_display_info *tty = FRAME_TTY (f);
437 if (tty->TS_clr_frame)
439 tty_background_highlight (tty);
440 OUTPUT (tty, tty->TS_clr_frame);
441 cmat (tty, 0, 0);
443 else
445 cursor_to (f, 0, 0);
446 clear_to_end (f);
450 /* An implementation of clear_end_of_line for termcap frames.
452 Note that the cursor may be moved, on terminals lacking a `ce' string. */
454 static void
455 tty_clear_end_of_line (struct frame *f, int first_unused_hpos)
457 register int i;
458 struct tty_display_info *tty = FRAME_TTY (f);
460 /* Detect the case where we are called from reset_sys_modes
461 and the costs have never been calculated. Do nothing. */
462 if (! tty->costs_set)
463 return;
465 if (curX (tty) >= first_unused_hpos)
466 return;
467 tty_background_highlight (tty);
468 if (tty->TS_clr_line)
470 OUTPUT1 (tty, tty->TS_clr_line);
472 else
473 { /* have to do it the hard way */
474 tty_turn_off_insert (tty);
476 /* Do not write in last row last col with Auto-wrap on. */
477 if (AutoWrap (tty)
478 && curY (tty) == FrameRows (tty) - 1
479 && first_unused_hpos == FrameCols (tty))
480 first_unused_hpos--;
482 for (i = curX (tty); i < first_unused_hpos; i++)
484 if (tty->termscript)
485 fputc (' ', tty->termscript);
486 fputc (' ', tty->output);
488 cmplus (tty, first_unused_hpos - curX (tty));
492 /* Buffers to store the source and result of code conversion for terminal. */
493 static unsigned char *encode_terminal_src;
494 static unsigned char *encode_terminal_dst;
495 /* Allocated sizes of the above buffers. */
496 static ptrdiff_t encode_terminal_src_size;
497 static ptrdiff_t encode_terminal_dst_size;
499 /* Encode SRC_LEN glyphs starting at SRC to terminal output codes.
500 Set CODING->produced to the byte-length of the resulting byte
501 sequence, and return a pointer to that byte sequence. */
503 #ifndef WINDOWSNT
504 static
505 #endif
506 unsigned char *
507 encode_terminal_code (struct glyph *src, int src_len,
508 struct coding_system *coding)
510 struct glyph *src_end = src + src_len;
511 unsigned char *buf;
512 ptrdiff_t nchars, nbytes, required;
513 ptrdiff_t tlen = GLYPH_TABLE_LENGTH;
514 register Lisp_Object *tbase = GLYPH_TABLE_BASE;
515 Lisp_Object charset_list;
517 /* Allocate sufficient size of buffer to store all characters in
518 multibyte-form. But, it may be enlarged on demand if
519 Vglyph_table contains a string or a composite glyph is
520 encountered. */
521 if (min (PTRDIFF_MAX, SIZE_MAX) / MAX_MULTIBYTE_LENGTH < src_len)
522 memory_full (SIZE_MAX);
523 required = src_len;
524 required *= MAX_MULTIBYTE_LENGTH;
525 if (encode_terminal_src_size < required)
527 encode_terminal_src = xrealloc (encode_terminal_src, required);
528 encode_terminal_src_size = required;
531 charset_list = coding_charset_list (coding);
533 buf = encode_terminal_src;
534 nchars = 0;
535 while (src < src_end)
537 if (src->type == COMPOSITE_GLYPH)
539 struct composition *cmp IF_LINT (= NULL);
540 Lisp_Object gstring IF_LINT (= Qnil);
541 int i;
543 nbytes = buf - encode_terminal_src;
544 if (src->u.cmp.automatic)
546 gstring = composition_gstring_from_id (src->u.cmp.id);
547 required = src->slice.cmp.to - src->slice.cmp.from + 1;
549 else
551 cmp = composition_table[src->u.cmp.id];
552 required = cmp->glyph_len;
553 required *= MAX_MULTIBYTE_LENGTH;
556 if (encode_terminal_src_size - nbytes < required)
558 encode_terminal_src =
559 xpalloc (encode_terminal_src, &encode_terminal_src_size,
560 required - (encode_terminal_src_size - nbytes),
561 -1, 1);
562 buf = encode_terminal_src + nbytes;
565 if (src->u.cmp.automatic)
566 for (i = src->slice.cmp.from; i <= src->slice.cmp.to; i++)
568 Lisp_Object g = LGSTRING_GLYPH (gstring, i);
569 int c = LGLYPH_CHAR (g);
571 if (! char_charset (c, charset_list, NULL))
572 c = '?';
573 buf += CHAR_STRING (c, buf);
574 nchars++;
576 else
577 for (i = 0; i < cmp->glyph_len; i++)
579 int c = COMPOSITION_GLYPH (cmp, i);
581 /* TAB in a composition means display glyphs with
582 padding space on the left or right. */
583 if (c == '\t')
584 continue;
585 if (char_charset (c, charset_list, NULL))
587 if (CHAR_WIDTH (c) == 0
588 && i > 0 && COMPOSITION_GLYPH (cmp, i - 1) == '\t')
589 /* Should be left-padded */
591 buf += CHAR_STRING (' ', buf);
592 nchars++;
595 else
596 c = '?';
597 buf += CHAR_STRING (c, buf);
598 nchars++;
601 /* We must skip glyphs to be padded for a wide character. */
602 else if (! CHAR_GLYPH_PADDING_P (*src))
604 GLYPH g;
605 int c IF_LINT (= 0);
606 Lisp_Object string;
608 string = Qnil;
609 SET_GLYPH_FROM_CHAR_GLYPH (g, src[0]);
611 if (GLYPH_INVALID_P (g) || GLYPH_SIMPLE_P (tbase, tlen, g))
613 /* This glyph doesn't have an entry in Vglyph_table. */
614 c = src->u.ch;
616 else
618 /* This glyph has an entry in Vglyph_table,
619 so process any alias before testing for simpleness. */
620 GLYPH_FOLLOW_ALIASES (tbase, tlen, g);
622 if (GLYPH_SIMPLE_P (tbase, tlen, g))
623 /* We set the multi-byte form of a character in G
624 (that should be an ASCII character) at WORKBUF. */
625 c = GLYPH_CHAR (g);
626 else
627 /* We have a string in Vglyph_table. */
628 string = tbase[GLYPH_CHAR (g)];
631 if (NILP (string))
633 nbytes = buf - encode_terminal_src;
634 if (encode_terminal_src_size - nbytes < MAX_MULTIBYTE_LENGTH)
636 encode_terminal_src =
637 xpalloc (encode_terminal_src, &encode_terminal_src_size,
638 MAX_MULTIBYTE_LENGTH, -1, 1);
639 buf = encode_terminal_src + nbytes;
641 if (CHAR_BYTE8_P (c)
642 || char_charset (c, charset_list, NULL))
644 /* Store the multibyte form of C at BUF. */
645 buf += CHAR_STRING (c, buf);
646 nchars++;
648 else
650 /* C is not encodable. */
651 *buf++ = '?';
652 nchars++;
653 while (src + 1 < src_end && CHAR_GLYPH_PADDING_P (src[1]))
655 *buf++ = '?';
656 nchars++;
657 src++;
661 else
663 if (! STRING_MULTIBYTE (string))
664 string = string_to_multibyte (string);
665 nbytes = buf - encode_terminal_src;
666 if (encode_terminal_src_size - nbytes < SBYTES (string))
668 encode_terminal_src =
669 xpalloc (encode_terminal_src, &encode_terminal_src_size,
670 (SBYTES (string)
671 - (encode_terminal_src_size - nbytes)),
672 -1, 1);
673 buf = encode_terminal_src + nbytes;
675 memcpy (buf, SDATA (string), SBYTES (string));
676 buf += SBYTES (string);
677 nchars += SCHARS (string);
680 src++;
683 if (nchars == 0)
685 coding->produced = 0;
686 return NULL;
689 nbytes = buf - encode_terminal_src;
690 coding->source = encode_terminal_src;
691 if (encode_terminal_dst_size == 0)
693 encode_terminal_dst = xrealloc (encode_terminal_dst,
694 encode_terminal_src_size);
695 encode_terminal_dst_size = encode_terminal_src_size;
697 coding->destination = encode_terminal_dst;
698 coding->dst_bytes = encode_terminal_dst_size;
699 encode_coding_object (coding, Qnil, 0, 0, nchars, nbytes, Qnil);
700 /* coding->destination may have been reallocated. */
701 encode_terminal_dst = coding->destination;
702 encode_terminal_dst_size = coding->dst_bytes;
704 return (encode_terminal_dst);
709 /* An implementation of write_glyphs for termcap frames. */
711 static void
712 tty_write_glyphs (struct frame *f, struct glyph *string, int len)
714 unsigned char *conversion_buffer;
715 struct coding_system *coding;
716 int n, stringlen;
718 struct tty_display_info *tty = FRAME_TTY (f);
720 tty_turn_off_insert (tty);
721 tty_hide_cursor (tty);
723 /* Don't dare write in last column of bottom line, if Auto-Wrap,
724 since that would scroll the whole frame on some terminals. */
726 if (AutoWrap (tty)
727 && curY (tty) + 1 == FRAME_LINES (f)
728 && (curX (tty) + len) == FRAME_COLS (f))
729 len --;
730 if (len <= 0)
731 return;
733 cmplus (tty, len);
735 /* If terminal_coding does any conversion, use it, otherwise use
736 safe_terminal_coding. We can't use CODING_REQUIRE_ENCODING here
737 because it always return 1 if the member src_multibyte is 1. */
738 coding = (FRAME_TERMINAL_CODING (f)->common_flags & CODING_REQUIRE_ENCODING_MASK
739 ? FRAME_TERMINAL_CODING (f) : &safe_terminal_coding);
740 /* The mode bit CODING_MODE_LAST_BLOCK should be set to 1 only at
741 the tail. */
742 coding->mode &= ~CODING_MODE_LAST_BLOCK;
744 for (stringlen = len; stringlen != 0; stringlen -= n)
746 /* Identify a run of glyphs with the same face. */
747 int face_id = string->face_id;
749 for (n = 1; n < stringlen; ++n)
750 if (string[n].face_id != face_id)
751 break;
753 /* Turn appearance modes of the face of the run on. */
754 tty_highlight_if_desired (tty);
755 turn_on_face (f, face_id);
757 if (n == stringlen)
758 /* This is the last run. */
759 coding->mode |= CODING_MODE_LAST_BLOCK;
760 conversion_buffer = encode_terminal_code (string, n, coding);
761 if (coding->produced > 0)
763 block_input ();
764 fwrite (conversion_buffer, 1, coding->produced, tty->output);
765 if (ferror (tty->output))
766 clearerr (tty->output);
767 if (tty->termscript)
768 fwrite (conversion_buffer, 1, coding->produced, tty->termscript);
769 unblock_input ();
771 string += n;
773 /* Turn appearance modes off. */
774 turn_off_face (f, face_id);
775 tty_turn_off_highlight (tty);
778 cmcheckmagic (tty);
781 #ifdef HAVE_GPM /* Only used by GPM code. */
783 static void
784 tty_write_glyphs_with_face (register struct frame *f, register struct glyph *string,
785 register int len, register int face_id)
787 unsigned char *conversion_buffer;
788 struct coding_system *coding;
790 struct tty_display_info *tty = FRAME_TTY (f);
792 tty_turn_off_insert (tty);
793 tty_hide_cursor (tty);
795 /* Don't dare write in last column of bottom line, if Auto-Wrap,
796 since that would scroll the whole frame on some terminals. */
798 if (AutoWrap (tty)
799 && curY (tty) + 1 == FRAME_LINES (f)
800 && (curX (tty) + len) == FRAME_COLS (f))
801 len --;
802 if (len <= 0)
803 return;
805 cmplus (tty, len);
807 /* If terminal_coding does any conversion, use it, otherwise use
808 safe_terminal_coding. We can't use CODING_REQUIRE_ENCODING here
809 because it always return 1 if the member src_multibyte is 1. */
810 coding = (FRAME_TERMINAL_CODING (f)->common_flags & CODING_REQUIRE_ENCODING_MASK
811 ? FRAME_TERMINAL_CODING (f) : &safe_terminal_coding);
812 /* The mode bit CODING_MODE_LAST_BLOCK should be set to 1 only at
813 the tail. */
814 coding->mode &= ~CODING_MODE_LAST_BLOCK;
816 /* Turn appearance modes of the face. */
817 tty_highlight_if_desired (tty);
818 turn_on_face (f, face_id);
820 coding->mode |= CODING_MODE_LAST_BLOCK;
821 conversion_buffer = encode_terminal_code (string, len, coding);
822 if (coding->produced > 0)
824 block_input ();
825 fwrite (conversion_buffer, 1, coding->produced, tty->output);
826 if (ferror (tty->output))
827 clearerr (tty->output);
828 if (tty->termscript)
829 fwrite (conversion_buffer, 1, coding->produced, tty->termscript);
830 unblock_input ();
833 /* Turn appearance modes off. */
834 turn_off_face (f, face_id);
835 tty_turn_off_highlight (tty);
837 cmcheckmagic (tty);
839 #endif
841 /* An implementation of insert_glyphs for termcap frames. */
843 static void
844 tty_insert_glyphs (struct frame *f, struct glyph *start, int len)
846 char *buf;
847 struct glyph *glyph = NULL;
848 unsigned char *conversion_buffer;
849 unsigned char space[1];
850 struct coding_system *coding;
852 struct tty_display_info *tty = FRAME_TTY (f);
854 if (tty->TS_ins_multi_chars)
856 buf = tparam (tty->TS_ins_multi_chars, 0, 0, len, 0, 0, 0);
857 OUTPUT1 (tty, buf);
858 xfree (buf);
859 if (start)
860 write_glyphs (f, start, len);
861 return;
864 tty_turn_on_insert (tty);
865 cmplus (tty, len);
867 if (! start)
868 space[0] = SPACEGLYPH;
870 /* If terminal_coding does any conversion, use it, otherwise use
871 safe_terminal_coding. We can't use CODING_REQUIRE_ENCODING here
872 because it always return 1 if the member src_multibyte is 1. */
873 coding = (FRAME_TERMINAL_CODING (f)->common_flags & CODING_REQUIRE_ENCODING_MASK
874 ? FRAME_TERMINAL_CODING (f) : &safe_terminal_coding);
875 /* The mode bit CODING_MODE_LAST_BLOCK should be set to 1 only at
876 the tail. */
877 coding->mode &= ~CODING_MODE_LAST_BLOCK;
879 while (len-- > 0)
881 OUTPUT1_IF (tty, tty->TS_ins_char);
882 if (!start)
884 conversion_buffer = space;
885 coding->produced = 1;
887 else
889 tty_highlight_if_desired (tty);
890 turn_on_face (f, start->face_id);
891 glyph = start;
892 ++start;
893 /* We must open sufficient space for a character which
894 occupies more than one column. */
895 while (len && CHAR_GLYPH_PADDING_P (*start))
897 OUTPUT1_IF (tty, tty->TS_ins_char);
898 start++, len--;
901 if (len <= 0)
902 /* This is the last glyph. */
903 coding->mode |= CODING_MODE_LAST_BLOCK;
905 conversion_buffer = encode_terminal_code (glyph, 1, coding);
908 if (coding->produced > 0)
910 block_input ();
911 fwrite (conversion_buffer, 1, coding->produced, tty->output);
912 if (ferror (tty->output))
913 clearerr (tty->output);
914 if (tty->termscript)
915 fwrite (conversion_buffer, 1, coding->produced, tty->termscript);
916 unblock_input ();
919 OUTPUT1_IF (tty, tty->TS_pad_inserted_char);
920 if (start)
922 turn_off_face (f, glyph->face_id);
923 tty_turn_off_highlight (tty);
927 cmcheckmagic (tty);
930 /* An implementation of delete_glyphs for termcap frames. */
932 static void
933 tty_delete_glyphs (struct frame *f, int n)
935 char *buf;
936 register int i;
938 struct tty_display_info *tty = FRAME_TTY (f);
940 if (tty->delete_in_insert_mode)
942 tty_turn_on_insert (tty);
944 else
946 tty_turn_off_insert (tty);
947 OUTPUT_IF (tty, tty->TS_delete_mode);
950 if (tty->TS_del_multi_chars)
952 buf = tparam (tty->TS_del_multi_chars, 0, 0, n, 0, 0, 0);
953 OUTPUT1 (tty, buf);
954 xfree (buf);
956 else
957 for (i = 0; i < n; i++)
958 OUTPUT1 (tty, tty->TS_del_char);
959 if (!tty->delete_in_insert_mode)
960 OUTPUT_IF (tty, tty->TS_end_delete_mode);
963 /* An implementation of ins_del_lines for termcap frames. */
965 static void
966 tty_ins_del_lines (struct frame *f, int vpos, int n)
968 struct tty_display_info *tty = FRAME_TTY (f);
969 const char *multi =
970 n > 0 ? tty->TS_ins_multi_lines : tty->TS_del_multi_lines;
971 const char *single = n > 0 ? tty->TS_ins_line : tty->TS_del_line;
972 const char *scroll = n > 0 ? tty->TS_rev_scroll : tty->TS_fwd_scroll;
974 int i = eabs (n);
975 char *buf;
977 /* If the lines below the insertion are being pushed
978 into the end of the window, this is the same as clearing;
979 and we know the lines are already clear, since the matching
980 deletion has already been done. So can ignore this. */
981 /* If the lines below the deletion are blank lines coming
982 out of the end of the window, don't bother,
983 as there will be a matching inslines later that will flush them. */
984 if (FRAME_SCROLL_REGION_OK (f)
985 && vpos + i >= tty->specified_window)
986 return;
987 if (!FRAME_MEMORY_BELOW_FRAME (f)
988 && vpos + i >= FRAME_LINES (f))
989 return;
991 if (multi)
993 raw_cursor_to (f, vpos, 0);
994 tty_background_highlight (tty);
995 buf = tparam (multi, 0, 0, i, 0, 0, 0);
996 OUTPUT (tty, buf);
997 xfree (buf);
999 else if (single)
1001 raw_cursor_to (f, vpos, 0);
1002 tty_background_highlight (tty);
1003 while (--i >= 0)
1004 OUTPUT (tty, single);
1005 if (tty->TF_teleray)
1006 curX (tty) = 0;
1008 else
1010 tty_set_scroll_region (f, vpos, tty->specified_window);
1011 if (n < 0)
1012 raw_cursor_to (f, tty->specified_window - 1, 0);
1013 else
1014 raw_cursor_to (f, vpos, 0);
1015 tty_background_highlight (tty);
1016 while (--i >= 0)
1017 OUTPUTL (tty, scroll, tty->specified_window - vpos);
1018 tty_set_scroll_region (f, 0, tty->specified_window);
1021 if (!FRAME_SCROLL_REGION_OK (f)
1022 && FRAME_MEMORY_BELOW_FRAME (f)
1023 && n < 0)
1025 cursor_to (f, FRAME_LINES (f) + n, 0);
1026 clear_to_end (f);
1030 /* Compute cost of sending "str", in characters,
1031 not counting any line-dependent padding. */
1034 string_cost (const char *str)
1036 cost = 0;
1037 if (str)
1038 tputs (str, 0, evalcost);
1039 return cost;
1042 /* Compute cost of sending "str", in characters,
1043 counting any line-dependent padding at one line. */
1045 static int
1046 string_cost_one_line (const char *str)
1048 cost = 0;
1049 if (str)
1050 tputs (str, 1, evalcost);
1051 return cost;
1054 /* Compute per line amount of line-dependent padding,
1055 in tenths of characters. */
1058 per_line_cost (const char *str)
1060 cost = 0;
1061 if (str)
1062 tputs (str, 0, evalcost);
1063 cost = - cost;
1064 if (str)
1065 tputs (str, 10, evalcost);
1066 return cost;
1069 /* char_ins_del_cost[n] is cost of inserting N characters.
1070 char_ins_del_cost[-n] is cost of deleting N characters.
1071 The length of this vector is based on max_frame_cols. */
1073 int *char_ins_del_vector;
1075 #define char_ins_del_cost(f) (&char_ins_del_vector[FRAME_COLS ((f))])
1077 /* ARGSUSED */
1078 static void
1079 calculate_ins_del_char_costs (struct frame *f)
1081 struct tty_display_info *tty = FRAME_TTY (f);
1082 int ins_startup_cost, del_startup_cost;
1083 int ins_cost_per_char, del_cost_per_char;
1084 register int i;
1085 register int *p;
1087 if (tty->TS_ins_multi_chars)
1089 ins_cost_per_char = 0;
1090 ins_startup_cost = string_cost_one_line (tty->TS_ins_multi_chars);
1092 else if (tty->TS_ins_char || tty->TS_pad_inserted_char
1093 || (tty->TS_insert_mode && tty->TS_end_insert_mode))
1095 ins_startup_cost = (30 * (string_cost (tty->TS_insert_mode)
1096 + string_cost (tty->TS_end_insert_mode))) / 100;
1097 ins_cost_per_char = (string_cost_one_line (tty->TS_ins_char)
1098 + string_cost_one_line (tty->TS_pad_inserted_char));
1100 else
1102 ins_startup_cost = 9999;
1103 ins_cost_per_char = 0;
1106 if (tty->TS_del_multi_chars)
1108 del_cost_per_char = 0;
1109 del_startup_cost = string_cost_one_line (tty->TS_del_multi_chars);
1111 else if (tty->TS_del_char)
1113 del_startup_cost = (string_cost (tty->TS_delete_mode)
1114 + string_cost (tty->TS_end_delete_mode));
1115 if (tty->delete_in_insert_mode)
1116 del_startup_cost /= 2;
1117 del_cost_per_char = string_cost_one_line (tty->TS_del_char);
1119 else
1121 del_startup_cost = 9999;
1122 del_cost_per_char = 0;
1125 /* Delete costs are at negative offsets */
1126 p = &char_ins_del_cost (f)[0];
1127 for (i = FRAME_COLS (f); --i >= 0;)
1128 *--p = (del_startup_cost += del_cost_per_char);
1130 /* Doing nothing is free */
1131 p = &char_ins_del_cost (f)[0];
1132 *p++ = 0;
1134 /* Insert costs are at positive offsets */
1135 for (i = FRAME_COLS (f); --i >= 0;)
1136 *p++ = (ins_startup_cost += ins_cost_per_char);
1139 void
1140 calculate_costs (struct frame *frame)
1142 FRAME_COST_BAUD_RATE (frame) = baud_rate;
1144 if (FRAME_TERMCAP_P (frame))
1146 struct tty_display_info *tty = FRAME_TTY (frame);
1147 register const char *f = (tty->TS_set_scroll_region
1148 ? tty->TS_set_scroll_region
1149 : tty->TS_set_scroll_region_1);
1151 FRAME_SCROLL_REGION_COST (frame) = string_cost (f);
1153 tty->costs_set = 1;
1155 /* These variables are only used for terminal stuff. They are
1156 allocated once for the terminal frame of X-windows emacs, but not
1157 used afterwards.
1159 char_ins_del_vector (i.e., char_ins_del_cost) isn't used because
1160 X turns off char_ins_del_ok. */
1162 max_frame_cols = max (max_frame_cols, FRAME_COLS (frame));
1163 if ((min (PTRDIFF_MAX, SIZE_MAX) / sizeof (int) - 1) / 2
1164 < max_frame_cols)
1165 memory_full (SIZE_MAX);
1167 char_ins_del_vector =
1168 xrealloc (char_ins_del_vector,
1169 (sizeof (int) + 2 * sizeof (int) * max_frame_cols));
1171 memset (char_ins_del_vector, 0,
1172 (sizeof (int) + 2 * sizeof (int) * max_frame_cols));
1175 if (f && (!tty->TS_ins_line && !tty->TS_del_line))
1176 do_line_insertion_deletion_costs (frame,
1177 tty->TS_rev_scroll, tty->TS_ins_multi_lines,
1178 tty->TS_fwd_scroll, tty->TS_del_multi_lines,
1179 f, f, 1);
1180 else
1181 do_line_insertion_deletion_costs (frame,
1182 tty->TS_ins_line, tty->TS_ins_multi_lines,
1183 tty->TS_del_line, tty->TS_del_multi_lines,
1184 0, 0, 1);
1186 calculate_ins_del_char_costs (frame);
1188 /* Don't use TS_repeat if its padding is worse than sending the chars */
1189 if (tty->TS_repeat && per_line_cost (tty->TS_repeat) * baud_rate < 9000)
1190 tty->RPov = string_cost (tty->TS_repeat);
1191 else
1192 tty->RPov = FRAME_COLS (frame) * 2;
1194 cmcostinit (FRAME_TTY (frame)); /* set up cursor motion costs */
1198 struct fkey_table {
1199 const char *cap, *name;
1202 /* Termcap capability names that correspond directly to X keysyms.
1203 Some of these (marked "terminfo") aren't supplied by old-style
1204 (Berkeley) termcap entries. They're listed in X keysym order;
1205 except we put the keypad keys first, so that if they clash with
1206 other keys (as on the IBM PC keyboard) they get overridden.
1209 static const struct fkey_table keys[] =
1211 {"kh", "home"}, /* termcap */
1212 {"kl", "left"}, /* termcap */
1213 {"ku", "up"}, /* termcap */
1214 {"kr", "right"}, /* termcap */
1215 {"kd", "down"}, /* termcap */
1216 {"%8", "prior"}, /* terminfo */
1217 {"%5", "next"}, /* terminfo */
1218 {"@7", "end"}, /* terminfo */
1219 {"@1", "begin"}, /* terminfo */
1220 {"*6", "select"}, /* terminfo */
1221 {"%9", "print"}, /* terminfo */
1222 {"@4", "execute"}, /* terminfo --- actually the `command' key */
1224 * "insert" --- see below
1226 {"&8", "undo"}, /* terminfo */
1227 {"%0", "redo"}, /* terminfo */
1228 {"%7", "menu"}, /* terminfo --- actually the `options' key */
1229 {"@0", "find"}, /* terminfo */
1230 {"@2", "cancel"}, /* terminfo */
1231 {"%1", "help"}, /* terminfo */
1233 * "break" goes here, but can't be reliably intercepted with termcap
1235 {"&4", "reset"}, /* terminfo --- actually `restart' */
1237 * "system" and "user" --- no termcaps
1239 {"kE", "clearline"}, /* terminfo */
1240 {"kA", "insertline"}, /* terminfo */
1241 {"kL", "deleteline"}, /* terminfo */
1242 {"kI", "insertchar"}, /* terminfo */
1243 {"kD", "deletechar"}, /* terminfo */
1244 {"kB", "backtab"}, /* terminfo */
1246 * "kp_backtab", "kp-space", "kp-tab" --- no termcaps
1248 {"@8", "kp-enter"}, /* terminfo */
1250 * "kp-f1", "kp-f2", "kp-f3" "kp-f4",
1251 * "kp-multiply", "kp-add", "kp-separator",
1252 * "kp-subtract", "kp-decimal", "kp-divide", "kp-0";
1253 * --- no termcaps for any of these.
1255 {"K4", "kp-1"}, /* terminfo */
1257 * "kp-2" --- no termcap
1259 {"K5", "kp-3"}, /* terminfo */
1261 * "kp-4" --- no termcap
1263 {"K2", "kp-5"}, /* terminfo */
1265 * "kp-6" --- no termcap
1267 {"K1", "kp-7"}, /* terminfo */
1269 * "kp-8" --- no termcap
1271 {"K3", "kp-9"}, /* terminfo */
1273 * "kp-equal" --- no termcap
1275 {"k1", "f1"},
1276 {"k2", "f2"},
1277 {"k3", "f3"},
1278 {"k4", "f4"},
1279 {"k5", "f5"},
1280 {"k6", "f6"},
1281 {"k7", "f7"},
1282 {"k8", "f8"},
1283 {"k9", "f9"},
1285 {"&0", "S-cancel"}, /*shifted cancel key*/
1286 {"&9", "S-begin"}, /*shifted begin key*/
1287 {"*0", "S-find"}, /*shifted find key*/
1288 {"*1", "S-execute"}, /*shifted execute? actually shifted command key*/
1289 {"*4", "S-delete"}, /*shifted delete-character key*/
1290 {"*7", "S-end"}, /*shifted end key*/
1291 {"*8", "S-clearline"}, /*shifted clear-to end-of-line key*/
1292 {"#1", "S-help"}, /*shifted help key*/
1293 {"#2", "S-home"}, /*shifted home key*/
1294 {"#3", "S-insert"}, /*shifted insert-character key*/
1295 {"#4", "S-left"}, /*shifted left-arrow key*/
1296 {"%d", "S-menu"}, /*shifted menu? actually shifted options key*/
1297 {"%c", "S-next"}, /*shifted next key*/
1298 {"%e", "S-prior"}, /*shifted previous key*/
1299 {"%f", "S-print"}, /*shifted print key*/
1300 {"%g", "S-redo"}, /*shifted redo key*/
1301 {"%i", "S-right"}, /*shifted right-arrow key*/
1302 {"!3", "S-undo"} /*shifted undo key*/
1305 #ifndef DOS_NT
1306 static char **term_get_fkeys_address;
1307 static KBOARD *term_get_fkeys_kboard;
1308 static Lisp_Object term_get_fkeys_1 (void);
1310 /* Find the escape codes sent by the function keys for Vinput_decode_map.
1311 This function scans the termcap function key sequence entries, and
1312 adds entries to Vinput_decode_map for each function key it finds. */
1314 static void
1315 term_get_fkeys (char **address, KBOARD *kboard)
1317 /* We run the body of the function (term_get_fkeys_1) and ignore all Lisp
1318 errors during the call. The only errors should be from Fdefine_key
1319 when given a key sequence containing an invalid prefix key. If the
1320 termcap defines function keys which use a prefix that is already bound
1321 to a command by the default bindings, we should silently ignore that
1322 function key specification, rather than giving the user an error and
1323 refusing to run at all on such a terminal. */
1325 term_get_fkeys_address = address;
1326 term_get_fkeys_kboard = kboard;
1327 internal_condition_case (term_get_fkeys_1, Qerror, Fidentity);
1330 static Lisp_Object
1331 term_get_fkeys_1 (void)
1333 int i;
1335 char **address = term_get_fkeys_address;
1336 KBOARD *kboard = term_get_fkeys_kboard;
1338 /* This can happen if CANNOT_DUMP or with strange options. */
1339 if (!KEYMAPP (KVAR (kboard, Vinput_decode_map)))
1340 kset_input_decode_map (kboard, Fmake_sparse_keymap (Qnil));
1342 for (i = 0; i < (sizeof (keys) / sizeof (keys[0])); i++)
1344 char *sequence = tgetstr (keys[i].cap, address);
1345 if (sequence)
1346 Fdefine_key (KVAR (kboard, Vinput_decode_map), build_string (sequence),
1347 Fmake_vector (make_number (1),
1348 intern (keys[i].name)));
1351 /* The uses of the "k0" capability are inconsistent; sometimes it
1352 describes F10, whereas othertimes it describes F0 and "k;" describes F10.
1353 We will attempt to politely accommodate both systems by testing for
1354 "k;", and if it is present, assuming that "k0" denotes F0, otherwise F10.
1357 const char *k_semi = tgetstr ("k;", address);
1358 const char *k0 = tgetstr ("k0", address);
1359 const char *k0_name = "f10";
1361 if (k_semi)
1363 if (k0)
1364 /* Define f0 first, so that f10 takes precedence in case the
1365 key sequences happens to be the same. */
1366 Fdefine_key (KVAR (kboard, Vinput_decode_map), build_string (k0),
1367 Fmake_vector (make_number (1), intern ("f0")));
1368 Fdefine_key (KVAR (kboard, Vinput_decode_map), build_string (k_semi),
1369 Fmake_vector (make_number (1), intern ("f10")));
1371 else if (k0)
1372 Fdefine_key (KVAR (kboard, Vinput_decode_map), build_string (k0),
1373 Fmake_vector (make_number (1), intern (k0_name)));
1376 /* Set up cookies for numbered function keys above f10. */
1378 char fcap[3], fkey[4];
1380 fcap[0] = 'F'; fcap[2] = '\0';
1381 for (i = 11; i < 64; i++)
1383 if (i <= 19)
1384 fcap[1] = '1' + i - 11;
1385 else if (i <= 45)
1386 fcap[1] = 'A' + i - 20;
1387 else
1388 fcap[1] = 'a' + i - 46;
1391 char *sequence = tgetstr (fcap, address);
1392 if (sequence)
1394 sprintf (fkey, "f%d", i);
1395 Fdefine_key (KVAR (kboard, Vinput_decode_map), build_string (sequence),
1396 Fmake_vector (make_number (1),
1397 intern (fkey)));
1404 * Various mappings to try and get a better fit.
1407 #define CONDITIONAL_REASSIGN(cap1, cap2, sym) \
1408 if (!tgetstr (cap1, address)) \
1410 char *sequence = tgetstr (cap2, address); \
1411 if (sequence) \
1412 Fdefine_key (KVAR (kboard, Vinput_decode_map), build_string (sequence), \
1413 Fmake_vector (make_number (1), \
1414 intern (sym))); \
1417 /* if there's no key_next keycap, map key_npage to `next' keysym */
1418 CONDITIONAL_REASSIGN ("%5", "kN", "next");
1419 /* if there's no key_prev keycap, map key_ppage to `previous' keysym */
1420 CONDITIONAL_REASSIGN ("%8", "kP", "prior");
1421 /* if there's no key_dc keycap, map key_ic to `insert' keysym */
1422 CONDITIONAL_REASSIGN ("kD", "kI", "insert");
1423 /* if there's no key_end keycap, map key_ll to 'end' keysym */
1424 CONDITIONAL_REASSIGN ("@7", "kH", "end");
1425 #undef CONDITIONAL_REASSIGN
1428 return Qnil;
1430 #endif /* not DOS_NT */
1433 /***********************************************************************
1434 Character Display Information
1435 ***********************************************************************/
1436 static void append_glyph (struct it *);
1437 static void append_composite_glyph (struct it *);
1438 static void produce_composite_glyph (struct it *);
1439 static void append_glyphless_glyph (struct it *, int, const char *);
1440 static void produce_glyphless_glyph (struct it *, Lisp_Object);
1442 /* Append glyphs to IT's glyph_row. Called from produce_glyphs for
1443 terminal frames if IT->glyph_row != NULL. IT->char_to_display is
1444 the character for which to produce glyphs; IT->face_id contains the
1445 character's face. Padding glyphs are appended if IT->c has a
1446 IT->pixel_width > 1. */
1448 static void
1449 append_glyph (struct it *it)
1451 struct glyph *glyph, *end;
1452 int i;
1454 eassert (it->glyph_row);
1455 glyph = (it->glyph_row->glyphs[it->area]
1456 + it->glyph_row->used[it->area]);
1457 end = it->glyph_row->glyphs[1 + it->area];
1459 /* If the glyph row is reversed, we need to prepend the glyph rather
1460 than append it. */
1461 if (it->glyph_row->reversed_p && it->area == TEXT_AREA)
1463 struct glyph *g;
1464 int move_by = it->pixel_width;
1466 /* Make room for the new glyphs. */
1467 if (move_by > end - glyph) /* don't overstep end of this area */
1468 move_by = end - glyph;
1469 for (g = glyph - 1; g >= it->glyph_row->glyphs[it->area]; g--)
1470 g[move_by] = *g;
1471 glyph = it->glyph_row->glyphs[it->area];
1472 end = glyph + move_by;
1475 /* BIDI Note: we put the glyphs of a "multi-pixel" character left to
1476 right, even in the REVERSED_P case, since (a) all of its u.ch are
1477 identical, and (b) the PADDING_P flag needs to be set for the
1478 leftmost one, because we write to the terminal left-to-right. */
1479 for (i = 0;
1480 i < it->pixel_width && glyph < end;
1481 ++i)
1483 glyph->type = CHAR_GLYPH;
1484 glyph->pixel_width = 1;
1485 glyph->u.ch = it->char_to_display;
1486 glyph->face_id = it->face_id;
1487 glyph->padding_p = i > 0;
1488 glyph->charpos = CHARPOS (it->position);
1489 glyph->object = it->object;
1490 if (it->bidi_p)
1492 glyph->resolved_level = it->bidi_it.resolved_level;
1493 if ((it->bidi_it.type & 7) != it->bidi_it.type)
1494 emacs_abort ();
1495 glyph->bidi_type = it->bidi_it.type;
1497 else
1499 glyph->resolved_level = 0;
1500 glyph->bidi_type = UNKNOWN_BT;
1503 ++it->glyph_row->used[it->area];
1504 ++glyph;
1508 /* For external use. */
1509 void
1510 tty_append_glyph (struct it *it)
1512 append_glyph (it);
1516 /* Produce glyphs for the display element described by IT. *IT
1517 specifies what we want to produce a glyph for (character, image, ...),
1518 and where in the glyph matrix we currently are (glyph row and hpos).
1519 produce_glyphs fills in output fields of *IT with information such as the
1520 pixel width and height of a character, and maybe output actual glyphs at
1521 the same time if IT->glyph_row is non-null. For an overview, see
1522 the explanation in dispextern.h, before the definition of the
1523 display_element_type enumeration.
1525 produce_glyphs also stores the result of glyph width, ascent
1526 etc. computations in *IT.
1528 IT->glyph_row may be null, in which case produce_glyphs does not
1529 actually fill in the glyphs. This is used in the move_* functions
1530 in xdisp.c for text width and height computations.
1532 Callers usually don't call produce_glyphs directly;
1533 instead they use the macro PRODUCE_GLYPHS. */
1535 void
1536 produce_glyphs (struct it *it)
1538 /* If a hook is installed, let it do the work. */
1540 /* Nothing but characters are supported on terminal frames. */
1541 eassert (it->what == IT_CHARACTER
1542 || it->what == IT_COMPOSITION
1543 || it->what == IT_STRETCH
1544 || it->what == IT_GLYPHLESS);
1546 if (it->what == IT_STRETCH)
1548 produce_stretch_glyph (it);
1549 goto done;
1552 if (it->what == IT_COMPOSITION)
1554 produce_composite_glyph (it);
1555 goto done;
1558 if (it->what == IT_GLYPHLESS)
1560 produce_glyphless_glyph (it, Qnil);
1561 goto done;
1564 if (it->char_to_display >= 040 && it->char_to_display < 0177)
1566 it->pixel_width = it->nglyphs = 1;
1567 if (it->glyph_row)
1568 append_glyph (it);
1570 else if (it->char_to_display == '\n')
1571 it->pixel_width = it->nglyphs = 0;
1572 else if (it->char_to_display == '\t')
1574 int absolute_x = (it->current_x
1575 + it->continuation_lines_width);
1576 int next_tab_x
1577 = (((1 + absolute_x + it->tab_width - 1)
1578 / it->tab_width)
1579 * it->tab_width);
1580 int nspaces;
1582 /* If part of the TAB has been displayed on the previous line
1583 which is continued now, continuation_lines_width will have
1584 been incremented already by the part that fitted on the
1585 continued line. So, we will get the right number of spaces
1586 here. */
1587 nspaces = next_tab_x - absolute_x;
1589 if (it->glyph_row)
1591 int n = nspaces;
1593 it->char_to_display = ' ';
1594 it->pixel_width = it->len = 1;
1596 while (n--)
1597 append_glyph (it);
1600 it->pixel_width = nspaces;
1601 it->nglyphs = nspaces;
1603 else if (CHAR_BYTE8_P (it->char_to_display))
1605 /* Coming here means that we must send the raw 8-bit byte as is
1606 to the terminal. Although there's no way to know how many
1607 columns it occupies on a screen, it is a good assumption that
1608 a single byte code has 1-column width. */
1609 it->pixel_width = it->nglyphs = 1;
1610 if (it->glyph_row)
1611 append_glyph (it);
1613 else
1615 Lisp_Object charset_list = FRAME_TERMINAL (it->f)->charset_list;
1617 if (char_charset (it->char_to_display, charset_list, NULL))
1619 it->pixel_width = CHAR_WIDTH (it->char_to_display);
1620 it->nglyphs = it->pixel_width;
1621 if (it->glyph_row)
1622 append_glyph (it);
1624 else
1626 Lisp_Object acronym = lookup_glyphless_char_display (-1, it);
1628 eassert (it->what == IT_GLYPHLESS);
1629 produce_glyphless_glyph (it, acronym);
1633 done:
1634 /* Advance current_x by the pixel width as a convenience for
1635 the caller. */
1636 if (it->area == TEXT_AREA)
1637 it->current_x += it->pixel_width;
1638 it->ascent = it->max_ascent = it->phys_ascent = it->max_phys_ascent = 0;
1639 it->descent = it->max_descent = it->phys_descent = it->max_phys_descent = 1;
1642 /* Append glyphs to IT's glyph_row for the composition IT->cmp_id.
1643 Called from produce_composite_glyph for terminal frames if
1644 IT->glyph_row != NULL. IT->face_id contains the character's
1645 face. */
1647 static void
1648 append_composite_glyph (struct it *it)
1650 struct glyph *glyph;
1652 eassert (it->glyph_row);
1653 glyph = it->glyph_row->glyphs[it->area] + it->glyph_row->used[it->area];
1654 if (glyph < it->glyph_row->glyphs[1 + it->area])
1656 /* If the glyph row is reversed, we need to prepend the glyph
1657 rather than append it. */
1658 if (it->glyph_row->reversed_p && it->area == TEXT_AREA)
1660 struct glyph *g;
1662 /* Make room for the new glyph. */
1663 for (g = glyph - 1; g >= it->glyph_row->glyphs[it->area]; g--)
1664 g[1] = *g;
1665 glyph = it->glyph_row->glyphs[it->area];
1667 glyph->type = COMPOSITE_GLYPH;
1668 glyph->pixel_width = it->pixel_width;
1669 glyph->u.cmp.id = it->cmp_it.id;
1670 if (it->cmp_it.ch < 0)
1672 glyph->u.cmp.automatic = 0;
1673 glyph->u.cmp.id = it->cmp_it.id;
1675 else
1677 glyph->u.cmp.automatic = 1;
1678 glyph->u.cmp.id = it->cmp_it.id;
1679 glyph->slice.cmp.from = it->cmp_it.from;
1680 glyph->slice.cmp.to = it->cmp_it.to - 1;
1683 glyph->face_id = it->face_id;
1684 glyph->padding_p = 0;
1685 glyph->charpos = CHARPOS (it->position);
1686 glyph->object = it->object;
1687 if (it->bidi_p)
1689 glyph->resolved_level = it->bidi_it.resolved_level;
1690 if ((it->bidi_it.type & 7) != it->bidi_it.type)
1691 emacs_abort ();
1692 glyph->bidi_type = it->bidi_it.type;
1694 else
1696 glyph->resolved_level = 0;
1697 glyph->bidi_type = UNKNOWN_BT;
1700 ++it->glyph_row->used[it->area];
1701 ++glyph;
1706 /* Produce a composite glyph for iterator IT. IT->cmp_id is the ID of
1707 the composition. We simply produces components of the composition
1708 assuming that the terminal has a capability to layout/render it
1709 correctly. */
1711 static void
1712 produce_composite_glyph (struct it *it)
1714 if (it->cmp_it.ch < 0)
1716 struct composition *cmp = composition_table[it->cmp_it.id];
1718 it->pixel_width = cmp->width;
1720 else
1722 Lisp_Object gstring = composition_gstring_from_id (it->cmp_it.id);
1724 it->pixel_width = composition_gstring_width (gstring, it->cmp_it.from,
1725 it->cmp_it.to, NULL);
1727 it->nglyphs = 1;
1728 if (it->glyph_row)
1729 append_composite_glyph (it);
1733 /* Append a glyph for a glyphless character to IT->glyph_row. FACE_ID
1734 is a face ID to be used for the glyph. What is actually appended
1735 are glyphs of type CHAR_GLYPH whose characters are in STR (which
1736 comes from it->nglyphs bytes). */
1738 static void
1739 append_glyphless_glyph (struct it *it, int face_id, const char *str)
1741 struct glyph *glyph, *end;
1742 int i;
1744 eassert (it->glyph_row);
1745 glyph = it->glyph_row->glyphs[it->area] + it->glyph_row->used[it->area];
1746 end = it->glyph_row->glyphs[1 + it->area];
1748 /* If the glyph row is reversed, we need to prepend the glyph rather
1749 than append it. */
1750 if (it->glyph_row->reversed_p && it->area == TEXT_AREA)
1752 struct glyph *g;
1753 int move_by = it->pixel_width;
1755 /* Make room for the new glyphs. */
1756 if (move_by > end - glyph) /* don't overstep end of this area */
1757 move_by = end - glyph;
1758 for (g = glyph - 1; g >= it->glyph_row->glyphs[it->area]; g--)
1759 g[move_by] = *g;
1760 glyph = it->glyph_row->glyphs[it->area];
1761 end = glyph + move_by;
1764 if (glyph >= end)
1765 return;
1766 glyph->type = CHAR_GLYPH;
1767 glyph->pixel_width = 1;
1768 glyph->face_id = face_id;
1769 glyph->padding_p = 0;
1770 glyph->charpos = CHARPOS (it->position);
1771 glyph->object = it->object;
1772 if (it->bidi_p)
1774 glyph->resolved_level = it->bidi_it.resolved_level;
1775 if ((it->bidi_it.type & 7) != it->bidi_it.type)
1776 emacs_abort ();
1777 glyph->bidi_type = it->bidi_it.type;
1779 else
1781 glyph->resolved_level = 0;
1782 glyph->bidi_type = UNKNOWN_BT;
1785 /* BIDI Note: we put the glyphs of characters left to right, even in
1786 the REVERSED_P case because we write to the terminal
1787 left-to-right. */
1788 for (i = 0; i < it->nglyphs && glyph < end; ++i)
1790 if (i > 0)
1791 glyph[0] = glyph[-1];
1792 glyph->u.ch = str[i];
1793 ++it->glyph_row->used[it->area];
1794 ++glyph;
1798 /* Produce glyphs for a glyphless character for iterator IT.
1799 IT->glyphless_method specifies which method to use for displaying
1800 the character. See the description of enum
1801 glyphless_display_method in dispextern.h for the details.
1803 ACRONYM, if non-nil, is an acronym string for the character.
1805 The glyphs actually produced are of type CHAR_GLYPH. */
1807 static void
1808 produce_glyphless_glyph (struct it *it, Lisp_Object acronym)
1810 int len, face_id = merge_glyphless_glyph_face (it);
1811 char buf[sizeof "\\x" + max (6, (sizeof it->c * CHAR_BIT + 3) / 4)];
1812 char const *str = " ";
1814 if (it->glyphless_method == GLYPHLESS_DISPLAY_THIN_SPACE)
1816 /* As there's no way to produce a thin space, we produce a space
1817 of canonical width. */
1818 len = 1;
1820 else if (it->glyphless_method == GLYPHLESS_DISPLAY_EMPTY_BOX)
1822 len = CHAR_WIDTH (it->c);
1823 if (len == 0)
1824 len = 1;
1825 else if (len > 4)
1826 len = 4;
1827 len = sprintf (buf, "[%.*s]", len, str);
1828 str = buf;
1830 else
1832 if (it->glyphless_method == GLYPHLESS_DISPLAY_ACRONYM)
1834 if (! STRINGP (acronym) && CHAR_TABLE_P (Vglyphless_char_display))
1835 acronym = CHAR_TABLE_REF (Vglyphless_char_display, it->c);
1836 if (CONSP (acronym))
1837 acronym = XCDR (acronym);
1838 buf[0] = '[';
1839 str = STRINGP (acronym) ? SSDATA (acronym) : "";
1840 for (len = 0; len < 6 && str[len] && ASCII_BYTE_P (str[len]); len++)
1841 buf[1 + len] = str[len];
1842 buf[1 + len] = ']';
1843 len += 2;
1845 else
1847 eassert (it->glyphless_method == GLYPHLESS_DISPLAY_HEX_CODE);
1848 len = (it->c < 0x10000 ? sprintf (buf, "\\u%04X", it->c)
1849 : it->c <= MAX_UNICODE_CHAR ? sprintf (buf, "\\U%06X", it->c)
1850 : sprintf (buf, "\\x%06X", it->c));
1852 str = buf;
1855 it->pixel_width = len;
1856 it->nglyphs = len;
1857 if (it->glyph_row)
1858 append_glyphless_glyph (it, face_id, str);
1862 /***********************************************************************
1863 Faces
1864 ***********************************************************************/
1866 /* Value is non-zero if attribute ATTR may be used. ATTR should be
1867 one of the enumerators from enum no_color_bit, or a bit set built
1868 from them. Some display attributes may not be used together with
1869 color; the termcap capability `NC' specifies which ones. */
1871 #define MAY_USE_WITH_COLORS_P(tty, ATTR) \
1872 (tty->TN_max_colors > 0 \
1873 ? (tty->TN_no_color_video & (ATTR)) == 0 \
1874 : 1)
1876 /* Turn appearances of face FACE_ID on tty frame F on.
1877 FACE_ID is a realized face ID number, in the face cache. */
1879 static void
1880 turn_on_face (struct frame *f, int face_id)
1882 struct face *face = FACE_FROM_ID (f, face_id);
1883 unsigned long fg = face->foreground;
1884 unsigned long bg = face->background;
1885 struct tty_display_info *tty = FRAME_TTY (f);
1887 /* Use reverse video if the face specifies that.
1888 Do this first because TS_end_standout_mode may be the same
1889 as TS_exit_attribute_mode, which turns all appearances off. */
1890 if (MAY_USE_WITH_COLORS_P (tty, NC_REVERSE)
1891 && (inverse_video
1892 ? fg == FACE_TTY_DEFAULT_FG_COLOR || bg == FACE_TTY_DEFAULT_BG_COLOR
1893 : fg == FACE_TTY_DEFAULT_BG_COLOR || bg == FACE_TTY_DEFAULT_FG_COLOR))
1894 tty_toggle_highlight (tty);
1896 if (face->tty_bold_p && MAY_USE_WITH_COLORS_P (tty, NC_BOLD))
1897 OUTPUT1_IF (tty, tty->TS_enter_bold_mode);
1899 if (face->tty_italic_p && MAY_USE_WITH_COLORS_P (tty, NC_ITALIC))
1901 if (tty->TS_enter_italic_mode)
1902 OUTPUT1 (tty, tty->TS_enter_italic_mode);
1903 else
1904 /* Italics mode is unavailable on many terminals. In that
1905 case, map slant to dimmed text; we want italic text to
1906 appear different and dimming is not otherwise used. */
1907 OUTPUT1 (tty, tty->TS_enter_dim_mode);
1910 if (face->tty_underline_p && MAY_USE_WITH_COLORS_P (tty, NC_UNDERLINE))
1911 OUTPUT1_IF (tty, tty->TS_enter_underline_mode);
1913 if (tty->TN_max_colors > 0)
1915 const char *ts;
1916 char *p;
1918 ts = tty->standout_mode ? tty->TS_set_background : tty->TS_set_foreground;
1919 if (face_tty_specified_color (fg) && ts)
1921 p = tparam (ts, NULL, 0, fg, 0, 0, 0);
1922 OUTPUT (tty, p);
1923 xfree (p);
1926 ts = tty->standout_mode ? tty->TS_set_foreground : tty->TS_set_background;
1927 if (face_tty_specified_color (bg) && ts)
1929 p = tparam (ts, NULL, 0, bg, 0, 0, 0);
1930 OUTPUT (tty, p);
1931 xfree (p);
1937 /* Turn off appearances of face FACE_ID on tty frame F. */
1939 static void
1940 turn_off_face (struct frame *f, int face_id)
1942 struct face *face = FACE_FROM_ID (f, face_id);
1943 struct tty_display_info *tty = FRAME_TTY (f);
1945 eassert (face != NULL);
1947 if (tty->TS_exit_attribute_mode)
1949 /* Capability "me" will turn off appearance modes double-bright,
1950 half-bright, reverse-video, standout, underline. It may or
1951 may not turn off alt-char-mode. */
1952 if (face->tty_bold_p
1953 || face->tty_italic_p
1954 || face->tty_reverse_p
1955 || face->tty_underline_p)
1957 OUTPUT1_IF (tty, tty->TS_exit_attribute_mode);
1958 if (strcmp (tty->TS_exit_attribute_mode, tty->TS_end_standout_mode) == 0)
1959 tty->standout_mode = 0;
1962 else
1964 /* If we don't have "me" we can only have those appearances
1965 that have exit sequences defined. */
1966 if (face->tty_underline_p)
1967 OUTPUT_IF (tty, tty->TS_exit_underline_mode);
1970 /* Switch back to default colors. */
1971 if (tty->TN_max_colors > 0
1972 && ((face->foreground != FACE_TTY_DEFAULT_COLOR
1973 && face->foreground != FACE_TTY_DEFAULT_FG_COLOR)
1974 || (face->background != FACE_TTY_DEFAULT_COLOR
1975 && face->background != FACE_TTY_DEFAULT_BG_COLOR)))
1976 OUTPUT1_IF (tty, tty->TS_orig_pair);
1980 /* Return true if the terminal on frame F supports all of the
1981 capabilities in CAPS simultaneously. */
1983 bool
1984 tty_capable_p (struct tty_display_info *tty, unsigned int caps)
1986 #define TTY_CAPABLE_P_TRY(tty, cap, TS, NC_bit) \
1987 if ((caps & (cap)) && (!(TS) || !MAY_USE_WITH_COLORS_P(tty, NC_bit))) \
1988 return 0;
1990 TTY_CAPABLE_P_TRY (tty, TTY_CAP_INVERSE, tty->TS_standout_mode, NC_REVERSE);
1991 TTY_CAPABLE_P_TRY (tty, TTY_CAP_UNDERLINE, tty->TS_enter_underline_mode, NC_UNDERLINE);
1992 TTY_CAPABLE_P_TRY (tty, TTY_CAP_BOLD, tty->TS_enter_bold_mode, NC_BOLD);
1993 TTY_CAPABLE_P_TRY (tty, TTY_CAP_DIM, tty->TS_enter_dim_mode, NC_DIM);
1994 TTY_CAPABLE_P_TRY (tty, TTY_CAP_ITALIC, tty->TS_enter_italic_mode, NC_ITALIC);
1996 /* We can do it! */
1997 return 1;
2000 /* Return non-zero if the terminal is capable to display colors. */
2002 DEFUN ("tty-display-color-p", Ftty_display_color_p, Stty_display_color_p,
2003 0, 1, 0,
2004 doc: /* Return non-nil if the tty device TERMINAL can display colors.
2006 TERMINAL can be a terminal object, a frame, or nil (meaning the
2007 selected frame's terminal). This function always returns nil if
2008 TERMINAL does not refer to a text terminal. */)
2009 (Lisp_Object terminal)
2011 struct terminal *t = get_tty_terminal (terminal, 0);
2012 if (!t)
2013 return Qnil;
2014 else
2015 return t->display_info.tty->TN_max_colors > 0 ? Qt : Qnil;
2018 /* Return the number of supported colors. */
2019 DEFUN ("tty-display-color-cells", Ftty_display_color_cells,
2020 Stty_display_color_cells, 0, 1, 0,
2021 doc: /* Return the number of colors supported by the tty device TERMINAL.
2023 TERMINAL can be a terminal object, a frame, or nil (meaning the
2024 selected frame's terminal). This function always returns 0 if
2025 TERMINAL does not refer to a text terminal. */)
2026 (Lisp_Object terminal)
2028 struct terminal *t = get_tty_terminal (terminal, 0);
2029 if (!t)
2030 return make_number (0);
2031 else
2032 return make_number (t->display_info.tty->TN_max_colors);
2035 #ifndef DOS_NT
2037 /* Declare here rather than in the function, as in the rest of Emacs,
2038 to work around an HPUX compiler bug (?). See
2039 http://lists.gnu.org/archive/html/emacs-devel/2007-08/msg00410.html */
2040 static int default_max_colors;
2041 static int default_max_pairs;
2042 static int default_no_color_video;
2043 static char *default_orig_pair;
2044 static char *default_set_foreground;
2045 static char *default_set_background;
2047 /* Save or restore the default color-related capabilities of this
2048 terminal. */
2049 static void
2050 tty_default_color_capabilities (struct tty_display_info *tty, bool save)
2053 if (save)
2055 xfree (default_orig_pair);
2056 default_orig_pair = tty->TS_orig_pair ? xstrdup (tty->TS_orig_pair) : NULL;
2058 xfree (default_set_foreground);
2059 default_set_foreground = tty->TS_set_foreground ? xstrdup (tty->TS_set_foreground)
2060 : NULL;
2062 xfree (default_set_background);
2063 default_set_background = tty->TS_set_background ? xstrdup (tty->TS_set_background)
2064 : NULL;
2066 default_max_colors = tty->TN_max_colors;
2067 default_max_pairs = tty->TN_max_pairs;
2068 default_no_color_video = tty->TN_no_color_video;
2070 else
2072 tty->TS_orig_pair = default_orig_pair;
2073 tty->TS_set_foreground = default_set_foreground;
2074 tty->TS_set_background = default_set_background;
2075 tty->TN_max_colors = default_max_colors;
2076 tty->TN_max_pairs = default_max_pairs;
2077 tty->TN_no_color_video = default_no_color_video;
2081 /* Setup one of the standard tty color schemes according to MODE.
2082 MODE's value is generally the number of colors which we want to
2083 support; zero means set up for the default capabilities, the ones
2084 we saw at init_tty time; -1 means turn off color support. */
2085 static void
2086 tty_setup_colors (struct tty_display_info *tty, int mode)
2088 /* Canonicalize all negative values of MODE. */
2089 if (mode < -1)
2090 mode = -1;
2092 switch (mode)
2094 case -1: /* no colors at all */
2095 tty->TN_max_colors = 0;
2096 tty->TN_max_pairs = 0;
2097 tty->TN_no_color_video = 0;
2098 tty->TS_set_foreground = tty->TS_set_background = tty->TS_orig_pair = NULL;
2099 break;
2100 case 0: /* default colors, if any */
2101 default:
2102 tty_default_color_capabilities (tty, 0);
2103 break;
2104 case 8: /* 8 standard ANSI colors */
2105 tty->TS_orig_pair = "\033[0m";
2106 #ifdef TERMINFO
2107 tty->TS_set_foreground = "\033[3%p1%dm";
2108 tty->TS_set_background = "\033[4%p1%dm";
2109 #else
2110 tty->TS_set_foreground = "\033[3%dm";
2111 tty->TS_set_background = "\033[4%dm";
2112 #endif
2113 tty->TN_max_colors = 8;
2114 tty->TN_max_pairs = 64;
2115 tty->TN_no_color_video = 0;
2116 break;
2120 void
2121 set_tty_color_mode (struct tty_display_info *tty, struct frame *f)
2123 Lisp_Object tem, val;
2124 Lisp_Object color_mode;
2125 int mode;
2126 Lisp_Object tty_color_mode_alist
2127 = Fintern_soft (build_string ("tty-color-mode-alist"), Qnil);
2129 tem = assq_no_quit (Qtty_color_mode, f->param_alist);
2130 val = CONSP (tem) ? XCDR (tem) : Qnil;
2132 if (INTEGERP (val))
2133 color_mode = val;
2134 else if (SYMBOLP (tty_color_mode_alist))
2136 tem = Fassq (val, Fsymbol_value (tty_color_mode_alist));
2137 color_mode = CONSP (tem) ? XCDR (tem) : Qnil;
2139 else
2140 color_mode = Qnil;
2142 mode = TYPE_RANGED_INTEGERP (int, color_mode) ? XINT (color_mode) : 0;
2144 if (mode != tty->previous_color_mode)
2146 tty->previous_color_mode = mode;
2147 tty_setup_colors (tty , mode);
2148 /* This recomputes all the faces given the new color definitions. */
2149 safe_call (1, intern ("tty-set-up-initial-frame-faces"));
2153 #endif /* !DOS_NT */
2157 /* Return the tty display object specified by TERMINAL. */
2159 static struct terminal *
2160 get_tty_terminal (Lisp_Object terminal, bool throw)
2162 struct terminal *t = get_terminal (terminal, throw);
2164 if (t && t->type != output_termcap && t->type != output_msdos_raw)
2166 if (throw)
2167 error ("Device %d is not a termcap terminal device", t->id);
2168 else
2169 return NULL;
2172 return t;
2175 /* Return an active termcap device that uses the tty device with the
2176 given name.
2178 This function ignores suspended devices.
2180 Returns NULL if the named terminal device is not opened. */
2182 struct terminal *
2183 get_named_tty (const char *name)
2185 struct terminal *t;
2187 eassert (name);
2189 for (t = terminal_list; t; t = t->next_terminal)
2191 if ((t->type == output_termcap || t->type == output_msdos_raw)
2192 && !strcmp (t->display_info.tty->name, name)
2193 && TERMINAL_ACTIVE_P (t))
2194 return t;
2197 return 0;
2201 DEFUN ("tty-type", Ftty_type, Stty_type, 0, 1, 0,
2202 doc: /* Return the type of the tty device that TERMINAL uses.
2203 Returns nil if TERMINAL is not on a tty device.
2205 TERMINAL can be a terminal object, a frame, or nil (meaning the
2206 selected frame's terminal). */)
2207 (Lisp_Object terminal)
2209 struct terminal *t = get_terminal (terminal, 1);
2211 if (t->type != output_termcap && t->type != output_msdos_raw)
2212 return Qnil;
2214 if (t->display_info.tty->type)
2215 return build_string (t->display_info.tty->type);
2216 else
2217 return Qnil;
2220 DEFUN ("controlling-tty-p", Fcontrolling_tty_p, Scontrolling_tty_p, 0, 1, 0,
2221 doc: /* Return non-nil if TERMINAL is the controlling tty of the Emacs process.
2223 TERMINAL can be a terminal object, a frame, or nil (meaning the
2224 selected frame's terminal). This function always returns nil if
2225 TERMINAL is not on a tty device. */)
2226 (Lisp_Object terminal)
2228 struct terminal *t = get_terminal (terminal, 1);
2230 if ((t->type != output_termcap && t->type != output_msdos_raw)
2231 || strcmp (t->display_info.tty->name, DEV_TTY) != 0)
2232 return Qnil;
2233 else
2234 return Qt;
2237 DEFUN ("tty-no-underline", Ftty_no_underline, Stty_no_underline, 0, 1, 0,
2238 doc: /* Declare that the tty used by TERMINAL does not handle underlining.
2239 This is used to override the terminfo data, for certain terminals that
2240 do not really do underlining, but say that they do. This function has
2241 no effect if used on a non-tty terminal.
2243 TERMINAL can be a terminal object, a frame or nil (meaning the
2244 selected frame's terminal). This function always returns nil if
2245 TERMINAL does not refer to a text terminal. */)
2246 (Lisp_Object terminal)
2248 struct terminal *t = get_terminal (terminal, 1);
2250 if (t->type == output_termcap)
2251 t->display_info.tty->TS_enter_underline_mode = 0;
2252 return Qnil;
2255 DEFUN ("tty-top-frame", Ftty_top_frame, Stty_top_frame, 0, 1, 0,
2256 doc: /* Return the topmost terminal frame on TERMINAL.
2257 TERMINAL can be a terminal object, a frame or nil (meaning the
2258 selected frame's terminal). This function returns nil if TERMINAL
2259 does not refer to a text terminal. Otherwise, it returns the
2260 top-most frame on the text terminal. */)
2261 (Lisp_Object terminal)
2263 struct terminal *t = get_terminal (terminal, 1);
2265 if (t->type == output_termcap)
2266 return t->display_info.tty->top_frame;
2267 return Qnil;
2272 DEFUN ("suspend-tty", Fsuspend_tty, Ssuspend_tty, 0, 1, 0,
2273 doc: /* Suspend the terminal device TTY.
2275 The device is restored to its default state, and Emacs ceases all
2276 access to the tty device. Frames that use the device are not deleted,
2277 but input is not read from them and if they change, their display is
2278 not updated.
2280 TTY may be a terminal object, a frame, or nil for the terminal device
2281 of the currently selected frame.
2283 This function runs `suspend-tty-functions' after suspending the
2284 device. The functions are run with one arg, the id of the suspended
2285 terminal device.
2287 `suspend-tty' does nothing if it is called on a device that is already
2288 suspended.
2290 A suspended tty may be resumed by calling `resume-tty' on it. */)
2291 (Lisp_Object tty)
2293 struct terminal *t = get_tty_terminal (tty, 1);
2294 FILE *f;
2296 if (!t)
2297 error ("Unknown tty device");
2299 f = t->display_info.tty->input;
2301 if (f)
2303 /* First run `suspend-tty-functions' and then clean up the tty
2304 state because `suspend-tty-functions' might need to change
2305 the tty state. */
2306 Lisp_Object args[2];
2307 args[0] = intern ("suspend-tty-functions");
2308 XSETTERMINAL (args[1], t);
2309 Frun_hook_with_args (2, args);
2311 reset_sys_modes (t->display_info.tty);
2312 delete_keyboard_wait_descriptor (fileno (f));
2314 #ifndef MSDOS
2315 fclose (f);
2316 if (f != t->display_info.tty->output)
2317 fclose (t->display_info.tty->output);
2318 #endif
2320 t->display_info.tty->input = 0;
2321 t->display_info.tty->output = 0;
2323 if (FRAMEP (t->display_info.tty->top_frame))
2324 SET_FRAME_VISIBLE (XFRAME (t->display_info.tty->top_frame), 0);
2328 /* Clear display hooks to prevent further output. */
2329 clear_tty_hooks (t);
2331 return Qnil;
2334 DEFUN ("resume-tty", Fresume_tty, Sresume_tty, 0, 1, 0,
2335 doc: /* Resume the previously suspended terminal device TTY.
2336 The terminal is opened and reinitialized. Frames that are on the
2337 suspended terminal are revived.
2339 It is an error to resume a terminal while another terminal is active
2340 on the same device.
2342 This function runs `resume-tty-functions' after resuming the terminal.
2343 The functions are run with one arg, the id of the resumed terminal
2344 device.
2346 `resume-tty' does nothing if it is called on a device that is not
2347 suspended.
2349 TTY may be a terminal object, a frame, or nil (meaning the selected
2350 frame's terminal). */)
2351 (Lisp_Object tty)
2353 struct terminal *t = get_tty_terminal (tty, 1);
2354 int fd;
2356 if (!t)
2357 error ("Unknown tty device");
2359 if (!t->display_info.tty->input)
2361 if (get_named_tty (t->display_info.tty->name))
2362 error ("Cannot resume display while another display is active on the same device");
2364 #ifdef MSDOS
2365 t->display_info.tty->output = stdout;
2366 t->display_info.tty->input = stdin;
2367 #else /* !MSDOS */
2368 fd = emacs_open (t->display_info.tty->name, O_RDWR | O_NOCTTY, 0);
2369 t->display_info.tty->input = t->display_info.tty->output
2370 = fd < 0 ? 0 : fdopen (fd, "w+");
2372 if (! t->display_info.tty->input)
2374 int open_errno = errno;
2375 emacs_close (fd);
2376 report_file_errno ("Cannot reopen tty device",
2377 build_string (t->display_info.tty->name),
2378 open_errno);
2381 if (!O_IGNORE_CTTY && strcmp (t->display_info.tty->name, DEV_TTY) != 0)
2382 dissociate_if_controlling_tty (fd);
2383 #endif
2385 add_keyboard_wait_descriptor (fd);
2387 if (FRAMEP (t->display_info.tty->top_frame))
2389 struct frame *f = XFRAME (t->display_info.tty->top_frame);
2390 int width, height;
2391 int old_height = FRAME_COLS (f);
2392 int old_width = FRAME_LINES (f);
2394 /* Check if terminal/window size has changed while the frame
2395 was suspended. */
2396 get_tty_size (fileno (t->display_info.tty->input), &width, &height);
2397 if (width != old_width || height != old_height)
2398 change_frame_size (f, width, height, 0, 0, 0, 0);
2399 SET_FRAME_VISIBLE (XFRAME (t->display_info.tty->top_frame), 1);
2402 set_tty_hooks (t);
2403 init_sys_modes (t->display_info.tty);
2406 /* Run `resume-tty-functions'. */
2407 Lisp_Object args[2];
2408 args[0] = intern ("resume-tty-functions");
2409 XSETTERMINAL (args[1], t);
2410 Frun_hook_with_args (2, args);
2414 set_tty_hooks (t);
2416 return Qnil;
2420 /***********************************************************************
2421 Mouse
2422 ***********************************************************************/
2424 #ifdef HAVE_GPM
2426 #ifndef HAVE_WINDOW_SYSTEM
2427 void
2428 term_mouse_moveto (int x, int y)
2430 /* TODO: how to set mouse position?
2431 const char *name;
2432 int fd;
2433 name = (const char *) ttyname (0);
2434 fd = emacs_open (name, O_WRONLY, 0);
2435 SOME_FUNCTION (x, y, fd);
2436 emacs_close (fd);
2437 last_mouse_x = x;
2438 last_mouse_y = y; */
2440 #endif /* HAVE_WINDOW_SYSTEM */
2442 /* Implementation of draw_row_with_mouse_face for TTY/GPM. */
2443 void
2444 tty_draw_row_with_mouse_face (struct window *w, struct glyph_row *row,
2445 int start_hpos, int end_hpos,
2446 enum draw_glyphs_face draw)
2448 int nglyphs = end_hpos - start_hpos;
2449 struct frame *f = XFRAME (WINDOW_FRAME (w));
2450 struct tty_display_info *tty = FRAME_TTY (f);
2451 int face_id = tty->mouse_highlight.mouse_face_face_id;
2452 int save_x, save_y, pos_x, pos_y;
2454 if (end_hpos >= row->used[TEXT_AREA])
2455 nglyphs = row->used[TEXT_AREA] - start_hpos;
2457 pos_y = row->y + WINDOW_TOP_EDGE_Y (w);
2458 pos_x = row->used[LEFT_MARGIN_AREA] + start_hpos + WINDOW_LEFT_EDGE_X (w);
2460 /* Save current cursor co-ordinates. */
2461 save_y = curY (tty);
2462 save_x = curX (tty);
2463 cursor_to (f, pos_y, pos_x);
2465 if (draw == DRAW_MOUSE_FACE)
2466 tty_write_glyphs_with_face (f, row->glyphs[TEXT_AREA] + start_hpos,
2467 nglyphs, face_id);
2468 else if (draw == DRAW_NORMAL_TEXT)
2469 write_glyphs (f, row->glyphs[TEXT_AREA] + start_hpos, nglyphs);
2471 cursor_to (f, save_y, save_x);
2474 static bool
2475 term_mouse_movement (struct frame *frame, Gpm_Event *event)
2477 /* Has the mouse moved off the glyph it was on at the last sighting? */
2478 if (event->x != last_mouse_x || event->y != last_mouse_y)
2480 frame->mouse_moved = 1;
2481 note_mouse_highlight (frame, event->x, event->y);
2482 /* Remember which glyph we're now on. */
2483 last_mouse_x = event->x;
2484 last_mouse_y = event->y;
2485 return 1;
2487 return 0;
2490 /* Return the Time that corresponds to T. Wrap around on overflow. */
2491 static Time
2492 timeval_to_Time (struct timeval const *t)
2494 Time s_1000, ms;
2496 s_1000 = t->tv_sec;
2497 s_1000 *= 1000;
2498 ms = t->tv_usec / 1000;
2499 return s_1000 + ms;
2502 /* Return the current position of the mouse.
2504 Set *f to the frame the mouse is in, or zero if the mouse is in no
2505 Emacs frame. If it is set to zero, all the other arguments are
2506 garbage.
2508 Set *bar_window to Qnil, and *x and *y to the column and
2509 row of the character cell the mouse is over.
2511 Set *timeptr to the time the mouse was at the returned position.
2513 This clears mouse_moved until the next motion
2514 event arrives. */
2515 static void
2516 term_mouse_position (struct frame **fp, int insist, Lisp_Object *bar_window,
2517 enum scroll_bar_part *part, Lisp_Object *x,
2518 Lisp_Object *y, Time *timeptr)
2520 struct timeval now;
2522 *fp = SELECTED_FRAME ();
2523 (*fp)->mouse_moved = 0;
2525 *bar_window = Qnil;
2526 *part = 0;
2528 XSETINT (*x, last_mouse_x);
2529 XSETINT (*y, last_mouse_y);
2530 gettimeofday(&now, 0);
2531 *timeptr = timeval_to_Time (&now);
2534 /* Prepare a mouse-event in *RESULT for placement in the input queue.
2536 If the event is a button press, then note that we have grabbed
2537 the mouse. */
2539 static Lisp_Object
2540 term_mouse_click (struct input_event *result, Gpm_Event *event,
2541 struct frame *f)
2543 struct timeval now;
2544 int i, j;
2546 result->kind = GPM_CLICK_EVENT;
2547 for (i = 0, j = GPM_B_LEFT; i < 3; i++, j >>= 1 )
2549 if (event->buttons & j) {
2550 result->code = i; /* button number */
2551 break;
2554 gettimeofday(&now, 0);
2555 result->timestamp = timeval_to_Time (&now);
2557 if (event->type & GPM_UP)
2558 result->modifiers = up_modifier;
2559 else if (event->type & GPM_DOWN)
2560 result->modifiers = down_modifier;
2561 else
2562 result->modifiers = 0;
2564 if (event->type & GPM_SINGLE)
2565 result->modifiers |= click_modifier;
2567 if (event->type & GPM_DOUBLE)
2568 result->modifiers |= double_modifier;
2570 if (event->type & GPM_TRIPLE)
2571 result->modifiers |= triple_modifier;
2573 if (event->type & GPM_DRAG)
2574 result->modifiers |= drag_modifier;
2576 if (!(event->type & (GPM_MOVE | GPM_DRAG))) {
2578 /* 1 << KG_SHIFT */
2579 if (event->modifiers & (1 << 0))
2580 result->modifiers |= shift_modifier;
2582 /* 1 << KG_CTRL */
2583 if (event->modifiers & (1 << 2))
2584 result->modifiers |= ctrl_modifier;
2586 /* 1 << KG_ALT || KG_ALTGR */
2587 if (event->modifiers & (1 << 3)
2588 || event->modifiers & (1 << 1))
2589 result->modifiers |= meta_modifier;
2592 XSETINT (result->x, event->x);
2593 XSETINT (result->y, event->y);
2594 XSETFRAME (result->frame_or_window, f);
2595 result->arg = Qnil;
2596 return Qnil;
2600 handle_one_term_event (struct tty_display_info *tty, Gpm_Event *event, struct input_event* hold_quit)
2602 struct frame *f = XFRAME (tty->top_frame);
2603 struct input_event ie;
2604 bool do_help = 0;
2605 int count = 0;
2607 EVENT_INIT (ie);
2608 ie.kind = NO_EVENT;
2609 ie.arg = Qnil;
2611 if (event->type & (GPM_MOVE | GPM_DRAG)) {
2612 previous_help_echo_string = help_echo_string;
2613 help_echo_string = Qnil;
2615 Gpm_DrawPointer (event->x, event->y, fileno (tty->output));
2617 if (!term_mouse_movement (f, event))
2618 help_echo_string = previous_help_echo_string;
2620 /* If the contents of the global variable help_echo_string
2621 has changed, generate a HELP_EVENT. */
2622 if (!NILP (help_echo_string)
2623 || !NILP (previous_help_echo_string))
2624 do_help = 1;
2626 goto done;
2628 else {
2629 f->mouse_moved = 0;
2630 term_mouse_click (&ie, event, f);
2633 done:
2634 if (ie.kind != NO_EVENT)
2636 kbd_buffer_store_event_hold (&ie, hold_quit);
2637 count++;
2640 if (do_help
2641 && !(hold_quit && hold_quit->kind != NO_EVENT))
2643 Lisp_Object frame;
2645 if (f)
2646 XSETFRAME (frame, f);
2647 else
2648 frame = Qnil;
2650 gen_help_event (help_echo_string, frame, help_echo_window,
2651 help_echo_object, help_echo_pos);
2652 count++;
2655 return count;
2658 DEFUN ("gpm-mouse-start", Fgpm_mouse_start, Sgpm_mouse_start,
2659 0, 0, 0,
2660 doc: /* Open a connection to Gpm.
2661 Gpm-mouse can only be activated for one tty at a time. */)
2662 (void)
2664 struct frame *f = SELECTED_FRAME ();
2665 struct tty_display_info *tty
2666 = ((f)->output_method == output_termcap
2667 ? (f)->terminal->display_info.tty : NULL);
2668 Gpm_Connect connection;
2670 if (!tty)
2671 error ("Gpm-mouse only works in the GNU/Linux console");
2672 if (gpm_tty == tty)
2673 return Qnil; /* Already activated, nothing to do. */
2674 if (gpm_tty)
2675 error ("Gpm-mouse can only be activated for one tty at a time");
2677 connection.eventMask = ~0;
2678 connection.defaultMask = ~GPM_HARD;
2679 connection.maxMod = ~0;
2680 connection.minMod = 0;
2681 gpm_zerobased = 1;
2683 if (Gpm_Open (&connection, 0) < 0)
2684 error ("Gpm-mouse failed to connect to the gpm daemon");
2685 else
2687 gpm_tty = tty;
2688 /* `init_sys_modes' arranges for mouse movements sent through gpm_fd
2689 to generate SIGIOs. Apparently we need to call reset_sys_modes
2690 before calling init_sys_modes. */
2691 reset_sys_modes (tty);
2692 init_sys_modes (tty);
2693 add_gpm_wait_descriptor (gpm_fd);
2694 return Qnil;
2698 void
2699 close_gpm (int fd)
2701 if (fd >= 0)
2702 delete_gpm_wait_descriptor (fd);
2703 while (Gpm_Close()); /* close all the stack */
2704 gpm_tty = NULL;
2707 DEFUN ("gpm-mouse-stop", Fgpm_mouse_stop, Sgpm_mouse_stop,
2708 0, 0, 0,
2709 doc: /* Close a connection to Gpm. */)
2710 (void)
2712 struct frame *f = SELECTED_FRAME ();
2713 struct tty_display_info *tty
2714 = ((f)->output_method == output_termcap
2715 ? (f)->terminal->display_info.tty : NULL);
2717 if (!tty || gpm_tty != tty)
2718 return Qnil; /* Not activated on this terminal, nothing to do. */
2720 close_gpm (gpm_fd);
2721 return Qnil;
2723 #endif /* HAVE_GPM */
2726 /***********************************************************************
2727 Menus
2728 ***********************************************************************/
2730 #if !defined (MSDOS)
2732 /* TTY menu implementation and main ideas are borrowed from msdos.c.
2734 However, unlike on MSDOS, where the menu text is drawn directly to
2735 the display video memory, on a TTY we use display_string (see
2736 display_tty_menu_item in xdisp.c) to put the glyphs produced from
2737 the menu items into the frame's 'desired_matrix' glyph matrix, and
2738 then call update_frame_with_menu to deliver the results to the
2739 glass. The previous contents of the screen, in the form of the
2740 current_matrix, is stashed away, and used to restore screen
2741 contents when the menu selection changes or when the final
2742 selection is made and the menu should be popped down.
2744 The idea of this implementation was suggested by Gerd Moellmann. */
2746 #define TTYM_FAILURE -1
2747 #define TTYM_SUCCESS 1
2748 #define TTYM_NO_SELECT 2
2749 #define TTYM_IA_SELECT 3
2750 #define TTYM_NEXT 4
2751 #define TTYM_PREV 5
2753 /* These hold text of the current and the previous menu help messages. */
2754 static const char *menu_help_message, *prev_menu_help_message;
2755 /* Pane number and item number of the menu item which generated the
2756 last menu help message. */
2757 static int menu_help_paneno, menu_help_itemno;
2759 static Lisp_Object Qtty_menu_navigation_map, Qtty_menu_exit;
2760 static Lisp_Object Qtty_menu_prev_item, Qtty_menu_next_item;
2761 static Lisp_Object Qtty_menu_next_menu, Qtty_menu_prev_menu;
2762 static Lisp_Object Qtty_menu_select, Qtty_menu_ignore;
2763 static Lisp_Object Qtty_menu_mouse_movement;
2765 typedef struct tty_menu_struct
2767 int count;
2768 char **text;
2769 struct tty_menu_struct **submenu;
2770 int *panenumber; /* Also used as enabled flag. */
2771 ptrdiff_t allocated;
2772 int panecount;
2773 int width;
2774 const char **help_text;
2775 } tty_menu;
2777 /* Create a brand new menu structure. */
2779 static tty_menu *
2780 tty_menu_create (void)
2782 return xzalloc (sizeof *tty_menu_create ());
2785 /* Allocate some (more) memory for MENU ensuring that there is room for one
2786 more item. */
2788 static void
2789 tty_menu_make_room (tty_menu *menu)
2791 if (menu->allocated == menu->count)
2793 ptrdiff_t allocated = menu->allocated;
2794 menu->text = xpalloc (menu->text, &allocated, 1, -1, sizeof *menu->text);
2795 menu->text = xrealloc (menu->text, allocated * sizeof *menu->text);
2796 menu->submenu = xrealloc (menu->submenu,
2797 allocated * sizeof *menu->submenu);
2798 menu->panenumber = xrealloc (menu->panenumber,
2799 allocated * sizeof *menu->panenumber);
2800 menu->help_text = xrealloc (menu->help_text,
2801 allocated * sizeof *menu->help_text);
2802 menu->allocated = allocated;
2806 /* Search the given menu structure for a given pane number. */
2808 static tty_menu *
2809 tty_menu_search_pane (tty_menu *menu, int pane)
2811 int i;
2812 tty_menu *try;
2814 for (i = 0; i < menu->count; i++)
2815 if (menu->submenu[i])
2817 if (pane == menu->panenumber[i])
2818 return menu->submenu[i];
2819 try = tty_menu_search_pane (menu->submenu[i], pane);
2820 if (try)
2821 return try;
2823 return (tty_menu *) 0;
2826 /* Determine how much screen space a given menu needs. */
2828 static void
2829 tty_menu_calc_size (tty_menu *menu, int *width, int *height)
2831 int i, h2, w2, maxsubwidth, maxheight;
2833 maxsubwidth = menu->width;
2834 maxheight = menu->count;
2835 for (i = 0; i < menu->count; i++)
2837 if (menu->submenu[i])
2839 tty_menu_calc_size (menu->submenu[i], &w2, &h2);
2840 if (w2 > maxsubwidth) maxsubwidth = w2;
2841 if (i + h2 > maxheight) maxheight = i + h2;
2844 *width = maxsubwidth;
2845 *height = maxheight;
2848 static void
2849 mouse_get_xy (int *x, int *y)
2851 struct frame *sf = SELECTED_FRAME ();
2852 Lisp_Object lmx = Qnil, lmy = Qnil, lisp_dummy;
2853 enum scroll_bar_part part_dummy;
2854 Time time_dummy;
2856 if (FRAME_TERMINAL (sf)->mouse_position_hook)
2857 (*FRAME_TERMINAL (sf)->mouse_position_hook) (&sf, -1,
2858 &lisp_dummy, &part_dummy,
2859 &lmx, &lmy,
2860 &time_dummy);
2861 if (!NILP (lmx))
2863 *x = XINT (lmx);
2864 *y = XINT (lmy);
2868 /* Display MENU at (X,Y) using FACES, starting with FIRST_ITEM
2869 (zero-based). */
2871 static void
2872 tty_menu_display (tty_menu *menu, int x, int y, int pn, int *faces,
2873 int mx, int my, int first_item, bool disp_help)
2875 int i, face, width, enabled, mousehere, row, col;
2876 struct frame *sf = SELECTED_FRAME ();
2877 struct tty_display_info *tty = FRAME_TTY (sf);
2878 /* Don't try to display more menu items than the console can display
2879 using the available screen lines. Exclude the echo area line, as
2880 it will be overwritten by the help-echo anyway. */
2881 int max_items = min (menu->count - first_item, FRAME_LINES (sf) - 1 - y);
2883 menu_help_message = NULL;
2885 width = menu->width;
2886 col = cursorX (tty);
2887 row = cursorY (tty);
2888 for (i = 0; i < max_items; i++)
2890 int max_width = width + 2; /* +2 for padding blanks on each side */
2891 int j = i + first_item;
2893 if (menu->submenu[j])
2894 max_width += 2; /* for displaying " >" after the item */
2895 enabled
2896 = (!menu->submenu[j] && menu->panenumber[j]) || (menu->submenu[j]);
2897 mousehere = (y + i == my && x <= mx && mx < x + max_width);
2898 face = faces[enabled + mousehere * 2];
2899 /* Display the menu help string for the i-th menu item even if
2900 the menu item is currently disabled. That's what the GUI
2901 code does. */
2902 if (disp_help && enabled + mousehere * 2 >= 2)
2904 menu_help_message = menu->help_text[j];
2905 menu_help_paneno = pn - 1;
2906 menu_help_itemno = j;
2908 display_tty_menu_item (menu->text[j], max_width, face, x, y + i,
2909 menu->submenu[j] != NULL);
2911 update_frame_with_menu (sf);
2912 cursor_to (sf, row, col);
2915 /* --------------------------- X Menu emulation ---------------------- */
2917 /* Create a new pane and place it on the outer-most level. */
2919 static int
2920 tty_menu_add_pane (tty_menu *menu, const char *txt)
2922 int len;
2923 const unsigned char *p;
2925 tty_menu_make_room (menu);
2926 menu->submenu[menu->count] = tty_menu_create ();
2927 menu->text[menu->count] = (char *)txt;
2928 menu->panenumber[menu->count] = ++menu->panecount;
2929 menu->help_text[menu->count] = NULL;
2930 menu->count++;
2932 /* Update the menu width, if necessary. */
2933 for (len = 0, p = (unsigned char *) txt; *p; )
2935 int ch_len;
2936 int ch = STRING_CHAR_AND_LENGTH (p, ch_len);
2938 len += CHAR_WIDTH (ch);
2939 p += ch_len;
2942 if (len > menu->width)
2943 menu->width = len;
2945 return menu->panecount;
2948 /* Create a new item in a menu pane. */
2950 static bool
2951 tty_menu_add_selection (tty_menu *menu, int pane,
2952 char *txt, bool enable, char const *help_text)
2954 int len;
2955 unsigned char *p;
2957 if (pane)
2959 menu = tty_menu_search_pane (menu, pane);
2960 if (! menu)
2961 return 0;
2963 tty_menu_make_room (menu);
2964 menu->submenu[menu->count] = (tty_menu *) 0;
2965 menu->text[menu->count] = txt;
2966 menu->panenumber[menu->count] = enable;
2967 menu->help_text[menu->count] = help_text;
2968 menu->count++;
2970 /* Update the menu width, if necessary. */
2971 for (len = 0, p = (unsigned char *) txt; *p; )
2973 int ch_len;
2974 int ch = STRING_CHAR_AND_LENGTH (p, ch_len);
2976 len += CHAR_WIDTH (ch);
2977 p += ch_len;
2980 if (len > menu->width)
2981 menu->width = len;
2983 return 1;
2986 /* Decide where the menu would be placed if requested at (X,Y). */
2988 static void
2989 tty_menu_locate (tty_menu *menu, int x, int y,
2990 int *ulx, int *uly, int *width, int *height)
2992 tty_menu_calc_size (menu, width, height);
2993 *ulx = x + 1;
2994 *uly = y;
2995 *width += 2;
2998 struct tty_menu_state
3000 struct glyph_matrix *screen_behind;
3001 tty_menu *menu;
3002 int pane;
3003 int x, y;
3006 /* Save away the contents of frame F's current frame matrix, and
3007 enable all its rows. Value is a glyph matrix holding the contents
3008 of F's current frame matrix with all its glyph rows enabled. */
3010 static struct glyph_matrix *
3011 save_and_enable_current_matrix (struct frame *f)
3013 int i;
3014 struct glyph_matrix *saved = xzalloc (sizeof *saved);
3015 saved->nrows = f->current_matrix->nrows;
3016 saved->rows = xzalloc (saved->nrows * sizeof *saved->rows);
3018 for (i = 0; i < saved->nrows; ++i)
3020 struct glyph_row *from = f->current_matrix->rows + i;
3021 struct glyph_row *to = saved->rows + i;
3022 ptrdiff_t nbytes = from->used[TEXT_AREA] * sizeof (struct glyph);
3024 to->glyphs[TEXT_AREA] = xmalloc (nbytes);
3025 memcpy (to->glyphs[TEXT_AREA], from->glyphs[TEXT_AREA], nbytes);
3026 to->used[TEXT_AREA] = from->used[TEXT_AREA];
3027 /* Make sure every row is enabled, or else update_frame will not
3028 redraw them. (Rows that are identical to what is already on
3029 screen will not be redrawn anyway.) */
3030 to->enabled_p = true;
3031 to->hash = from->hash;
3034 return saved;
3037 /* Restore the contents of frame F's desired frame matrix from SAVED,
3038 and free memory associated with SAVED. */
3040 static void
3041 restore_desired_matrix (struct frame *f, struct glyph_matrix *saved)
3043 int i;
3045 for (i = 0; i < saved->nrows; ++i)
3047 struct glyph_row *from = saved->rows + i;
3048 struct glyph_row *to = f->desired_matrix->rows + i;
3049 ptrdiff_t nbytes = from->used[TEXT_AREA] * sizeof (struct glyph);
3051 eassert (to->glyphs[TEXT_AREA] != from->glyphs[TEXT_AREA]);
3052 memcpy (to->glyphs[TEXT_AREA], from->glyphs[TEXT_AREA], nbytes);
3053 to->used[TEXT_AREA] = from->used[TEXT_AREA];
3054 to->enabled_p = from->enabled_p;
3055 to->hash = from->hash;
3059 static void
3060 free_saved_screen (struct glyph_matrix *saved)
3062 int i;
3064 if (!saved)
3065 return; /* already freed */
3067 for (i = 0; i < saved->nrows; ++i)
3069 struct glyph_row *from = saved->rows + i;
3071 xfree (from->glyphs[TEXT_AREA]);
3074 xfree (saved->rows);
3075 xfree (saved);
3078 /* Update the display of frame F from its saved contents. */
3079 static void
3080 screen_update (struct frame *f, struct glyph_matrix *mtx)
3082 restore_desired_matrix (f, mtx);
3083 update_frame_with_menu (f);
3086 typedef enum {
3087 MI_QUIT_MENU = -1,
3088 MI_CONTINUE = 0,
3089 MI_ITEM_SELECTED = 1,
3090 MI_NEXT_ITEM = 2,
3091 MI_PREV_ITEM = 3,
3092 MI_SCROLL_FORWARD = 4,
3093 MI_SCROLL_BACK = 5
3094 } mi_result;
3096 /* Read user input and return X and Y coordinates where that input
3097 puts us. We only consider mouse movement and click events, and
3098 keyboard movement commands; the rest are ignored. */
3099 static mi_result
3100 read_menu_input (struct frame *sf, int *x, int *y, int min_y, int max_y,
3101 bool *first_time)
3103 if (*first_time)
3105 *first_time = false;
3106 sf->mouse_moved = 1;
3108 else
3110 Lisp_Object cmd;
3111 bool usable_input = 1;
3112 mi_result st = MI_CONTINUE;
3113 struct tty_display_info *tty = FRAME_TTY (sf);
3114 Lisp_Object saved_mouse_tracking = do_mouse_tracking;
3116 /* Signal the keyboard reading routines we are displaying a menu
3117 on this terminal. */
3118 tty->showing_menu = 1;
3119 /* We want mouse movements be reported by read_menu_command. */
3120 do_mouse_tracking = Qt;
3121 do {
3122 cmd = read_menu_command ();
3123 } while (NILP (cmd));
3124 tty->showing_menu = 0;
3125 do_mouse_tracking = saved_mouse_tracking;
3127 if (EQ (cmd, Qt) || EQ (cmd, Qtty_menu_exit))
3128 return MI_QUIT_MENU;
3129 if (EQ (cmd, Qtty_menu_mouse_movement))
3130 mouse_get_xy (x, y);
3131 else if (EQ (cmd, Qtty_menu_next_menu))
3133 usable_input = 0;
3134 st = MI_NEXT_ITEM;
3136 else if (EQ (cmd, Qtty_menu_prev_menu))
3138 usable_input = 0;
3139 st = MI_PREV_ITEM;
3141 else if (EQ (cmd, Qtty_menu_next_item))
3143 if (*y < max_y)
3144 *y += 1;
3145 else
3146 st = MI_SCROLL_FORWARD;
3148 else if (EQ (cmd, Qtty_menu_prev_item))
3150 if (*y > min_y)
3151 *y -= 1;
3152 else
3153 st = MI_SCROLL_BACK;
3155 else if (EQ (cmd, Qtty_menu_select))
3156 st = MI_ITEM_SELECTED;
3157 else if (!EQ (cmd, Qtty_menu_ignore))
3158 usable_input = 0;
3159 if (usable_input)
3160 sf->mouse_moved = 1;
3161 return st;
3163 return MI_CONTINUE;
3166 /* Display menu, wait for user's response, and return that response. */
3167 static int
3168 tty_menu_activate (tty_menu *menu, int *pane, int *selidx,
3169 int x0, int y0, char **txt,
3170 void (*help_callback)(char const *, int, int),
3171 bool kbd_navigation)
3173 struct tty_menu_state *state;
3174 int statecount, x, y, i;
3175 bool leave, onepane;
3176 int result IF_LINT (= 0);
3177 int title_faces[4]; /* face to display the menu title */
3178 int faces[4], buffers_num_deleted = 0;
3179 struct frame *sf = SELECTED_FRAME ();
3180 struct tty_display_info *tty = FRAME_TTY (sf);
3181 bool first_time;
3182 Lisp_Object selectface;
3183 int first_item = 0;
3185 /* Don't allow non-positive x0 and y0, lest the menu will wrap
3186 around the display. */
3187 if (x0 <= 0)
3188 x0 = 1;
3189 if (y0 <= 0)
3190 y0 = 1;
3192 state = alloca (menu->panecount * sizeof (struct tty_menu_state));
3193 memset (state, 0, sizeof (*state));
3194 faces[0]
3195 = lookup_derived_face (sf, intern ("tty-menu-disabled-face"),
3196 DEFAULT_FACE_ID, 1);
3197 faces[1]
3198 = lookup_derived_face (sf, intern ("tty-menu-enabled-face"),
3199 DEFAULT_FACE_ID, 1);
3200 selectface = intern ("tty-menu-selected-face");
3201 faces[2] = lookup_derived_face (sf, selectface,
3202 faces[0], 1);
3203 faces[3] = lookup_derived_face (sf, selectface,
3204 faces[1], 1);
3206 /* Make sure the menu title is always displayed with
3207 `tty-menu-selected-face', no matter where the mouse pointer is. */
3208 for (i = 0; i < 4; i++)
3209 title_faces[i] = faces[3];
3211 statecount = 1;
3213 /* Don't let the title for the "Buffers" popup menu include a
3214 digit (which is ugly).
3216 This is a terrible kludge, but I think the "Buffers" case is
3217 the only one where the title includes a number, so it doesn't
3218 seem to be necessary to make this more general. */
3219 if (strncmp (menu->text[0], "Buffers 1", 9) == 0)
3221 menu->text[0][7] = '\0';
3222 buffers_num_deleted = 1;
3225 /* Force update of the current frame, so that the desired and the
3226 current matrices are identical. */
3227 update_frame_with_menu (sf);
3228 state[0].menu = menu;
3229 state[0].screen_behind = save_and_enable_current_matrix (sf);
3231 /* Display the menu title. We subtract 1 from x0 and y0 because we
3232 want to interpret them as zero-based column and row coordinates,
3233 and also because we want the first item of the menu, not its
3234 title, to appear at x0,y0. */
3235 tty_menu_display (menu, x0 - 1, y0 - 1, 1, title_faces, x0 - 1, y0 - 1, 0, 0);
3237 /* Turn off the cursor. Otherwise it shows through the menu
3238 panes, which is ugly. */
3239 tty_hide_cursor (tty);
3240 if (buffers_num_deleted)
3241 menu->text[0][7] = ' ';
3242 onepane = menu->count == 1 && menu->submenu[0];
3243 if (onepane)
3245 menu->width = menu->submenu[0]->width;
3246 state[0].menu = menu->submenu[0];
3248 else
3250 state[0].menu = menu;
3252 state[0].x = x0 - 1;
3253 state[0].y = y0;
3254 state[0].pane = onepane;
3256 x = state[0].x;
3257 y = state[0].y;
3258 first_time = true;
3260 leave = 0;
3261 while (!leave)
3263 mi_result input_status;
3264 int min_y = state[0].y;
3265 int max_y = min (min_y + state[0].menu->count, FRAME_LINES (sf) - 1) - 1;
3267 input_status = read_menu_input (sf, &x, &y, min_y, max_y, &first_time);
3268 if (input_status)
3270 leave = 1;
3271 switch (input_status)
3273 case MI_QUIT_MENU:
3274 /* Remove the last help-echo, so that it doesn't
3275 re-appear after "Quit". */
3276 show_help_echo (Qnil, Qnil, Qnil, Qnil);
3277 result = TTYM_NO_SELECT;
3278 break;
3279 case MI_NEXT_ITEM:
3280 if (kbd_navigation)
3281 result = TTYM_NEXT;
3282 else
3283 leave = 0;
3284 break;
3285 case MI_PREV_ITEM:
3286 if (kbd_navigation)
3287 result = TTYM_PREV;
3288 else
3289 leave = 0;
3290 break;
3291 case MI_SCROLL_FORWARD:
3292 if (y - min_y == state[0].menu->count - 1 - first_item)
3294 y = min_y;
3295 first_item = 0;
3297 else
3298 first_item++;
3299 leave = 0;
3300 break;
3301 case MI_SCROLL_BACK:
3302 if (first_item == 0)
3304 y = max_y;
3305 first_item = state[0].menu->count - 1 - (y - min_y);
3307 else
3308 first_item--;
3309 leave = 0;
3310 break;
3311 default:
3312 /* MI_ITEM_SELECTED is handled below, so nothing to do. */
3313 break;
3316 if (sf->mouse_moved && input_status != MI_QUIT_MENU)
3318 sf->mouse_moved = 0;
3319 result = TTYM_IA_SELECT;
3320 for (i = 0; i < statecount; i++)
3321 if (state[i].x <= x && x < state[i].x + state[i].menu->width + 2)
3323 int dy = y - state[i].y + first_item;
3324 if (0 <= dy && dy < state[i].menu->count)
3326 if (!state[i].menu->submenu[dy])
3328 if (state[i].menu->panenumber[dy])
3329 result = TTYM_SUCCESS;
3330 else
3331 result = TTYM_IA_SELECT;
3333 *pane = state[i].pane - 1;
3334 *selidx = dy;
3335 /* We hit some part of a menu, so drop extra menus that
3336 have been opened. That does not include an open and
3337 active submenu. */
3338 if (i != statecount - 2
3339 || state[i].menu->submenu[dy] != state[i+1].menu)
3340 while (i != statecount - 1)
3342 statecount--;
3343 screen_update (sf, state[statecount].screen_behind);
3344 state[statecount].screen_behind = NULL;
3346 if (i == statecount - 1 && state[i].menu->submenu[dy])
3348 tty_menu_display (state[i].menu,
3349 state[i].x,
3350 state[i].y,
3351 state[i].pane,
3352 faces, x, y, first_item, 1);
3353 state[statecount].menu = state[i].menu->submenu[dy];
3354 state[statecount].pane = state[i].menu->panenumber[dy];
3355 state[statecount].screen_behind
3356 = save_and_enable_current_matrix (sf);
3357 state[statecount].x
3358 = state[i].x + state[i].menu->width + 2;
3359 state[statecount].y = y;
3360 statecount++;
3364 tty_menu_display (state[statecount - 1].menu,
3365 state[statecount - 1].x,
3366 state[statecount - 1].y,
3367 state[statecount - 1].pane,
3368 faces, x, y, first_item, 1);
3369 tty_hide_cursor (tty);
3370 fflush (tty->output);
3373 /* Display the help-echo message for the currently-selected menu
3374 item. */
3375 if ((menu_help_message || prev_menu_help_message)
3376 && menu_help_message != prev_menu_help_message)
3378 help_callback (menu_help_message,
3379 menu_help_paneno, menu_help_itemno);
3380 tty_hide_cursor (tty);
3381 fflush (tty->output);
3382 prev_menu_help_message = menu_help_message;
3386 sf->mouse_moved = 0;
3387 screen_update (sf, state[0].screen_behind);
3388 while (statecount--)
3389 free_saved_screen (state[statecount].screen_behind);
3390 tty_show_cursor (tty); /* turn cursor back on */
3391 fflush (tty->output);
3393 /* Clean up any mouse events that are waiting inside Emacs event queue.
3394 These events are likely to be generated before the menu was even
3395 displayed, probably because the user pressed and released the button
3396 (which invoked the menu) too quickly. If we don't remove these events,
3397 Emacs will process them after we return and surprise the user. */
3398 discard_mouse_events ();
3399 if (!kbd_buffer_events_waiting ())
3400 clear_input_pending ();
3401 return result;
3404 /* Dispose of a menu. */
3406 static void
3407 tty_menu_destroy (tty_menu *menu)
3409 int i;
3410 if (menu->allocated)
3412 for (i = 0; i < menu->count; i++)
3413 if (menu->submenu[i])
3414 tty_menu_destroy (menu->submenu[i]);
3415 xfree (menu->text);
3416 xfree (menu->submenu);
3417 xfree (menu->panenumber);
3418 xfree (menu->help_text);
3420 xfree (menu);
3421 menu_help_message = prev_menu_help_message = NULL;
3424 /* Show help HELP_STRING, or clear help if HELP_STRING is null.
3426 PANE is the pane number, and ITEM is the menu item number in
3427 the menu (currently not used). */
3429 static void
3430 tty_menu_help_callback (char const *help_string, int pane, int item)
3432 Lisp_Object *first_item;
3433 Lisp_Object pane_name;
3434 Lisp_Object menu_object;
3436 first_item = XVECTOR (menu_items)->contents;
3437 if (EQ (first_item[0], Qt))
3438 pane_name = first_item[MENU_ITEMS_PANE_NAME];
3439 else if (EQ (first_item[0], Qquote))
3440 /* This shouldn't happen, see xmenu_show. */
3441 pane_name = empty_unibyte_string;
3442 else
3443 pane_name = first_item[MENU_ITEMS_ITEM_NAME];
3445 /* (menu-item MENU-NAME PANE-NUMBER) */
3446 menu_object = list3 (Qmenu_item, pane_name, make_number (pane));
3447 show_help_echo (help_string ? build_string (help_string) : Qnil,
3448 Qnil, menu_object, make_number (item));
3451 static void
3452 tty_pop_down_menu (Lisp_Object arg)
3454 tty_menu *menu = XSAVE_POINTER (arg, 0);
3456 block_input ();
3457 tty_menu_destroy (menu);
3458 unblock_input ();
3461 /* Return the zero-based index of the last menu-bar item on frame F. */
3462 static int
3463 tty_menu_last_menubar_item (struct frame *f)
3465 int i = 0;
3467 eassert (FRAME_TERMCAP_P (f) && FRAME_LIVE_P (f));
3468 if (FRAME_TERMCAP_P (f) && FRAME_LIVE_P (f))
3470 Lisp_Object items = FRAME_MENU_BAR_ITEMS (f);
3472 while (i < ASIZE (items))
3474 Lisp_Object str;
3476 str = AREF (items, i + 1);
3477 if (NILP (str))
3478 break;
3479 i += 4;
3481 i -= 4; /* went one too far */
3483 return i;
3486 /* Find in frame F's menu bar the menu item that is next or previous
3487 to the item at X/Y, and return that item's position in X/Y. WHICH
3488 says which one--next or previous--item to look for. X and Y are
3489 measured in character cells. This should only be called on TTY
3490 frames. */
3491 static void
3492 tty_menu_new_item_coords (struct frame *f, int which, int *x, int *y)
3494 eassert (FRAME_TERMCAP_P (f) && FRAME_LIVE_P (f));
3495 if (FRAME_TERMCAP_P (f) && FRAME_LIVE_P (f))
3497 Lisp_Object items = FRAME_MENU_BAR_ITEMS (f);
3498 int last_i = tty_menu_last_menubar_item (f);
3499 int i, prev_x;
3501 /* This loop assumes a single menu-bar line, and will fail to
3502 find an item if it is not in the first line. Note that
3503 make_lispy_event in keyboard.c makes the same assumption. */
3504 for (i = 0, prev_x = -1; i < ASIZE (items); i += 4)
3506 Lisp_Object pos, str;
3507 int ix;
3509 str = AREF (items, i + 1);
3510 pos = AREF (items, i + 3);
3511 if (NILP (str))
3512 return;
3513 ix = XINT (pos);
3514 if (ix <= *x
3515 /* We use <= so the blank between 2 items on a TTY is
3516 considered part of the previous item. */
3517 && *x <= ix + menu_item_width (SDATA (str)))
3519 /* Found current item. Now compute the X coordinate of
3520 the previous or next item. */
3521 if (which == TTYM_NEXT)
3523 if (i < last_i)
3524 *x = XINT (AREF (items, i + 4 + 3));
3525 else
3526 *x = 0; /* wrap around to the first item */
3528 else if (prev_x < 0)
3530 /* Wrap around to the last item. */
3531 *x = XINT (AREF (items, last_i + 3));
3533 else
3534 *x = prev_x;
3535 return;
3537 prev_x = ix;
3542 Lisp_Object
3543 tty_menu_show (struct frame *f, int x, int y, bool for_click, bool keymaps,
3544 Lisp_Object title, bool kbd_navigation, const char **error_name)
3546 tty_menu *menu;
3547 int pane, selidx, lpane, status;
3548 Lisp_Object entry, pane_prefix;
3549 char *datap;
3550 int ulx, uly, width, height;
3551 int item_x, item_y;
3552 int dispwidth, dispheight;
3553 int i, j, lines, maxlines;
3554 int maxwidth;
3555 ptrdiff_t specpdl_count;
3557 eassert (FRAME_TERMCAP_P (f));
3559 *error_name = 0;
3560 if (menu_items_n_panes == 0)
3561 return Qnil;
3563 if (menu_items_used <= MENU_ITEMS_PANE_LENGTH)
3565 *error_name = "Empty menu";
3566 return Qnil;
3569 /* Make the menu on that window. */
3570 menu = tty_menu_create ();
3571 if (menu == NULL)
3573 *error_name = "Can't create menu";
3574 return Qnil;
3577 /* Don't GC while we prepare and show the menu, because we give the
3578 menu functions pointers to the contents of strings. */
3579 specpdl_count = inhibit_garbage_collection ();
3581 /* Adjust coordinates to be root-window-relative. */
3582 item_x = x += f->left_pos;
3583 item_y = y += f->top_pos;
3585 /* Create all the necessary panes and their items. */
3586 maxwidth = maxlines = lines = i = 0;
3587 lpane = TTYM_FAILURE;
3588 while (i < menu_items_used)
3590 if (EQ (AREF (menu_items, i), Qt))
3592 /* Create a new pane. */
3593 Lisp_Object pane_name, prefix;
3594 const char *pane_string;
3596 maxlines = max (maxlines, lines);
3597 lines = 0;
3598 pane_name = AREF (menu_items, i + MENU_ITEMS_PANE_NAME);
3599 prefix = AREF (menu_items, i + MENU_ITEMS_PANE_PREFIX);
3600 pane_string = (NILP (pane_name)
3601 ? "" : SSDATA (pane_name));
3602 if (keymaps && !NILP (prefix))
3603 pane_string++;
3605 lpane = tty_menu_add_pane (menu, pane_string);
3606 if (lpane == TTYM_FAILURE)
3608 tty_menu_destroy (menu);
3609 *error_name = "Can't create pane";
3610 entry = Qnil;
3611 goto tty_menu_end;
3613 i += MENU_ITEMS_PANE_LENGTH;
3615 /* Find the width of the widest item in this pane. */
3616 j = i;
3617 while (j < menu_items_used)
3619 Lisp_Object item;
3620 item = AREF (menu_items, j);
3621 if (EQ (item, Qt))
3622 break;
3623 if (NILP (item))
3625 j++;
3626 continue;
3628 width = SBYTES (item);
3629 if (width > maxwidth)
3630 maxwidth = width;
3632 j += MENU_ITEMS_ITEM_LENGTH;
3635 /* Ignore a nil in the item list.
3636 It's meaningful only for dialog boxes. */
3637 else if (EQ (AREF (menu_items, i), Qquote))
3638 i += 1;
3639 else
3641 /* Create a new item within current pane. */
3642 Lisp_Object item_name, enable, descrip, help;
3643 char *item_data;
3644 char const *help_string;
3646 item_name = AREF (menu_items, i + MENU_ITEMS_ITEM_NAME);
3647 enable = AREF (menu_items, i + MENU_ITEMS_ITEM_ENABLE);
3648 descrip = AREF (menu_items, i + MENU_ITEMS_ITEM_EQUIV_KEY);
3649 help = AREF (menu_items, i + MENU_ITEMS_ITEM_HELP);
3650 help_string = STRINGP (help) ? SSDATA (help) : NULL;
3652 if (!NILP (descrip))
3654 /* if alloca is fast, use that to make the space,
3655 to reduce gc needs. */
3656 item_data = (char *) alloca (maxwidth + SBYTES (descrip) + 1);
3657 memcpy (item_data, SSDATA (item_name), SBYTES (item_name));
3658 for (j = SCHARS (item_name); j < maxwidth; j++)
3659 item_data[j] = ' ';
3660 memcpy (item_data + j, SSDATA (descrip), SBYTES (descrip));
3661 item_data[j + SBYTES (descrip)] = 0;
3663 else
3664 item_data = SSDATA (item_name);
3666 if (lpane == TTYM_FAILURE
3667 || (! tty_menu_add_selection (menu, lpane, item_data,
3668 !NILP (enable), help_string)))
3670 tty_menu_destroy (menu);
3671 *error_name = "Can't add selection to menu";
3672 entry = Qnil;
3673 goto tty_menu_end;
3675 i += MENU_ITEMS_ITEM_LENGTH;
3676 lines++;
3680 maxlines = max (maxlines, lines);
3682 /* All set and ready to fly. */
3683 dispwidth = f->text_cols;
3684 dispheight = f->text_lines;
3685 x = min (x, dispwidth);
3686 y = min (y, dispheight);
3687 x = max (x, 1);
3688 y = max (y, 1);
3689 tty_menu_locate (menu, x, y, &ulx, &uly, &width, &height);
3690 if (ulx + width > dispwidth)
3692 x -= (ulx + width) - dispwidth;
3693 ulx = dispwidth - width;
3695 if (uly + height > dispheight)
3697 y -= (uly + height) - dispheight;
3698 uly = dispheight - height;
3701 if (FRAME_HAS_MINIBUF_P (f) && uly+height > dispheight - 2)
3703 /* Move the menu away of the echo area, to avoid overwriting the
3704 menu with help echo messages or vice versa. */
3705 if (BUFFERP (echo_area_buffer[0]) && WINDOWP (echo_area_window))
3707 y -= WINDOW_TOTAL_LINES (XWINDOW (echo_area_window)) + 1;
3708 uly -= WINDOW_TOTAL_LINES (XWINDOW (echo_area_window)) + 1;
3710 else
3712 y -= 2;
3713 uly -= 2;
3717 if (ulx < 0) x -= ulx;
3718 if (uly < 0) y -= uly;
3720 #if 0
3721 /* This code doesn't make sense on a TTY, since it can easily annul
3722 the adjustments above that carefully avoid truncation of the menu
3723 items. I think it was written to fix some problem that only
3724 happens on X11. */
3725 if (! for_click)
3727 /* If position was not given by a mouse click, adjust so upper left
3728 corner of the menu as a whole ends up at given coordinates. This
3729 is what x-popup-menu says in its documentation. */
3730 x += width/2;
3731 y += 1.5*height/(maxlines+2);
3733 #endif
3735 pane = selidx = 0;
3737 record_unwind_protect (tty_pop_down_menu, make_save_ptr (menu));
3739 specbind (Qoverriding_terminal_local_map,
3740 Fsymbol_value (Qtty_menu_navigation_map));
3741 status = tty_menu_activate (menu, &pane, &selidx, x, y, &datap,
3742 tty_menu_help_callback, kbd_navigation);
3743 entry = pane_prefix = Qnil;
3745 switch (status)
3747 case TTYM_SUCCESS:
3748 /* Find the item number SELIDX in pane number PANE. */
3749 i = 0;
3750 while (i < menu_items_used)
3752 if (EQ (AREF (menu_items, i), Qt))
3754 if (pane == 0)
3755 pane_prefix
3756 = AREF (menu_items, i + MENU_ITEMS_PANE_PREFIX);
3757 pane--;
3758 i += MENU_ITEMS_PANE_LENGTH;
3760 else
3762 if (pane == -1)
3764 if (selidx == 0)
3766 entry
3767 = AREF (menu_items, i + MENU_ITEMS_ITEM_VALUE);
3768 if (keymaps != 0)
3770 entry = Fcons (entry, Qnil);
3771 if (!NILP (pane_prefix))
3772 entry = Fcons (pane_prefix, entry);
3774 break;
3776 selidx--;
3778 i += MENU_ITEMS_ITEM_LENGTH;
3781 break;
3783 case TTYM_NEXT:
3784 case TTYM_PREV:
3785 tty_menu_new_item_coords (f, status, &item_x, &item_y);
3786 entry = Fcons (make_number (item_x), make_number (item_y));
3787 break;
3789 case TTYM_FAILURE:
3790 *error_name = "Can't activate menu";
3791 case TTYM_IA_SELECT:
3792 break;
3793 case TTYM_NO_SELECT:
3794 /* Make "Cancel" equivalent to C-g unless FOR_CLICK (which means
3795 the menu was invoked with a mouse event as POSITION). */
3796 if (! for_click)
3797 Fsignal (Qquit, Qnil);
3798 break;
3801 tty_menu_end:
3803 unbind_to (specpdl_count, Qnil);
3804 return entry;
3807 #endif /* !MSDOS */
3810 #ifndef MSDOS
3811 /***********************************************************************
3812 Initialization
3813 ***********************************************************************/
3815 /* Initialize the tty-dependent part of frame F. The frame must
3816 already have its device initialized. */
3818 void
3819 create_tty_output (struct frame *f)
3821 struct tty_output *t = xzalloc (sizeof *t);
3823 eassert (FRAME_TERMCAP_P (f));
3825 t->display_info = FRAME_TERMINAL (f)->display_info.tty;
3827 f->output_data.tty = t;
3830 /* Delete frame F's face cache, and its tty-dependent part. */
3832 static void
3833 tty_free_frame_resources (struct frame *f)
3835 eassert (FRAME_TERMCAP_P (f));
3836 free_frame_faces (f);
3837 xfree (f->output_data.tty);
3840 #else /* MSDOS */
3842 /* Delete frame F's face cache. */
3844 static void
3845 tty_free_frame_resources (struct frame *f)
3847 eassert (FRAME_TERMCAP_P (f) || FRAME_MSDOS_P (f));
3848 free_frame_faces (f);
3850 #endif /* MSDOS */
3852 /* Reset the hooks in TERMINAL. */
3854 static void
3855 clear_tty_hooks (struct terminal *terminal)
3857 terminal->rif = 0;
3858 terminal->cursor_to_hook = 0;
3859 terminal->raw_cursor_to_hook = 0;
3860 terminal->clear_to_end_hook = 0;
3861 terminal->clear_frame_hook = 0;
3862 terminal->clear_end_of_line_hook = 0;
3863 terminal->ins_del_lines_hook = 0;
3864 terminal->insert_glyphs_hook = 0;
3865 terminal->write_glyphs_hook = 0;
3866 terminal->delete_glyphs_hook = 0;
3867 terminal->ring_bell_hook = 0;
3868 terminal->reset_terminal_modes_hook = 0;
3869 terminal->set_terminal_modes_hook = 0;
3870 terminal->update_begin_hook = 0;
3871 terminal->update_end_hook = 0;
3872 terminal->set_terminal_window_hook = 0;
3873 terminal->mouse_position_hook = 0;
3874 terminal->frame_rehighlight_hook = 0;
3875 terminal->frame_raise_lower_hook = 0;
3876 terminal->fullscreen_hook = 0;
3877 terminal->set_vertical_scroll_bar_hook = 0;
3878 terminal->condemn_scroll_bars_hook = 0;
3879 terminal->redeem_scroll_bar_hook = 0;
3880 terminal->judge_scroll_bars_hook = 0;
3881 terminal->read_socket_hook = 0;
3882 terminal->frame_up_to_date_hook = 0;
3884 /* Leave these two set, or suspended frames are not deleted
3885 correctly. */
3886 terminal->delete_frame_hook = &tty_free_frame_resources;
3887 terminal->delete_terminal_hook = &delete_tty;
3890 /* Initialize hooks in TERMINAL with the values needed for a tty. */
3892 static void
3893 set_tty_hooks (struct terminal *terminal)
3895 terminal->rif = 0; /* ttys don't support window-based redisplay. */
3897 terminal->cursor_to_hook = &tty_cursor_to;
3898 terminal->raw_cursor_to_hook = &tty_raw_cursor_to;
3900 terminal->clear_to_end_hook = &tty_clear_to_end;
3901 terminal->clear_frame_hook = &tty_clear_frame;
3902 terminal->clear_end_of_line_hook = &tty_clear_end_of_line;
3904 terminal->ins_del_lines_hook = &tty_ins_del_lines;
3906 terminal->insert_glyphs_hook = &tty_insert_glyphs;
3907 terminal->write_glyphs_hook = &tty_write_glyphs;
3908 terminal->delete_glyphs_hook = &tty_delete_glyphs;
3910 terminal->ring_bell_hook = &tty_ring_bell;
3912 terminal->reset_terminal_modes_hook = &tty_reset_terminal_modes;
3913 terminal->set_terminal_modes_hook = &tty_set_terminal_modes;
3914 terminal->update_begin_hook = 0; /* Not needed. */
3915 terminal->update_end_hook = &tty_update_end;
3916 terminal->set_terminal_window_hook = &tty_set_terminal_window;
3918 terminal->mouse_position_hook = 0; /* Not needed. */
3919 terminal->frame_rehighlight_hook = 0; /* Not needed. */
3920 terminal->frame_raise_lower_hook = 0; /* Not needed. */
3922 terminal->set_vertical_scroll_bar_hook = 0; /* Not needed. */
3923 terminal->condemn_scroll_bars_hook = 0; /* Not needed. */
3924 terminal->redeem_scroll_bar_hook = 0; /* Not needed. */
3925 terminal->judge_scroll_bars_hook = 0; /* Not needed. */
3927 terminal->read_socket_hook = &tty_read_avail_input; /* keyboard.c */
3928 terminal->frame_up_to_date_hook = 0; /* Not needed. */
3930 terminal->delete_frame_hook = &tty_free_frame_resources;
3931 terminal->delete_terminal_hook = &delete_tty;
3934 /* If FD is the controlling terminal, drop it. */
3935 static void
3936 dissociate_if_controlling_tty (int fd)
3938 /* If tcgetpgrp succeeds, fd is the controlling terminal,
3939 so dissociate it by invoking setsid. */
3940 if (tcgetpgrp (fd) >= 0 && setsid () < 0)
3942 #ifdef TIOCNOTTY
3943 /* setsid failed, presumably because Emacs is already a process
3944 group leader. Fall back on the obsolescent way to dissociate
3945 a controlling tty. */
3946 block_tty_out_signal ();
3947 ioctl (fd, TIOCNOTTY, 0);
3948 unblock_tty_out_signal ();
3949 #endif
3953 /* Create a termcap display on the tty device with the given name and
3954 type.
3956 If NAME is NULL, then use the controlling tty, i.e., "/dev/tty".
3957 Otherwise NAME should be a path to the tty device file,
3958 e.g. "/dev/pts/7".
3960 TERMINAL_TYPE is the termcap type of the device, e.g. "vt100".
3962 If MUST_SUCCEED is true, then all errors are fatal. */
3964 struct terminal *
3965 init_tty (const char *name, const char *terminal_type, bool must_succeed)
3967 char *area;
3968 char **address = &area;
3969 int status;
3970 struct tty_display_info *tty = NULL;
3971 struct terminal *terminal = NULL;
3972 bool ctty = false; /* True if asked to open controlling tty. */
3974 if (!terminal_type)
3975 maybe_fatal (must_succeed, 0,
3976 "Unknown terminal type",
3977 "Unknown terminal type");
3979 if (name == NULL)
3980 name = DEV_TTY;
3981 if (!strcmp (name, DEV_TTY))
3982 ctty = 1;
3984 /* If we already have a terminal on the given device, use that. If
3985 all such terminals are suspended, create a new one instead. */
3986 /* XXX Perhaps this should be made explicit by having init_tty
3987 always create a new terminal and separating terminal and frame
3988 creation on Lisp level. */
3989 terminal = get_named_tty (name);
3990 if (terminal)
3991 return terminal;
3993 terminal = create_terminal ();
3994 #ifdef MSDOS
3995 if (been_here > 0)
3996 maybe_fatal (0, 0, "Attempt to create another terminal %s", "",
3997 name, "");
3998 been_here = 1;
3999 tty = &the_only_display_info;
4000 #else
4001 tty = xzalloc (sizeof *tty);
4002 #endif
4003 tty->top_frame = Qnil;
4004 tty->next = tty_list;
4005 tty_list = tty;
4007 terminal->type = output_termcap;
4008 terminal->display_info.tty = tty;
4009 tty->terminal = terminal;
4011 tty->Wcm = xmalloc (sizeof *tty->Wcm);
4012 Wcm_clear (tty);
4014 encode_terminal_src_size = 0;
4015 encode_terminal_dst_size = 0;
4018 #ifndef DOS_NT
4019 set_tty_hooks (terminal);
4022 /* Open the terminal device. */
4024 /* If !ctty, don't recognize it as our controlling terminal, and
4025 don't make it the controlling tty if we don't have one now.
4027 Alas, O_IGNORE_CTTY is a GNU extension that seems to be only
4028 defined on Hurd. On other systems, we need to explicitly
4029 dissociate ourselves from the controlling tty when we want to
4030 open a frame on the same terminal. */
4031 int flags = O_RDWR | O_NOCTTY | (ctty ? 0 : O_IGNORE_CTTY);
4032 int fd = emacs_open (name, flags, 0);
4033 tty->input = tty->output = fd < 0 || ! isatty (fd) ? 0 : fdopen (fd, "w+");
4035 if (! tty->input)
4037 char const *diagnostic
4038 = tty->input ? "Not a tty device: %s" : "Could not open file: %s";
4039 emacs_close (fd);
4040 maybe_fatal (must_succeed, terminal, diagnostic, diagnostic, name);
4043 tty->name = xstrdup (name);
4044 terminal->name = xstrdup (name);
4046 if (!O_IGNORE_CTTY && !ctty)
4047 dissociate_if_controlling_tty (fd);
4050 tty->type = xstrdup (terminal_type);
4052 add_keyboard_wait_descriptor (fileno (tty->input));
4054 Wcm_clear (tty);
4056 /* On some systems, tgetent tries to access the controlling
4057 terminal. */
4058 block_tty_out_signal ();
4059 status = tgetent (tty->termcap_term_buffer, terminal_type);
4060 if (tty->termcap_term_buffer[TERMCAP_BUFFER_SIZE - 1])
4061 emacs_abort ();
4062 unblock_tty_out_signal ();
4064 if (status < 0)
4066 #ifdef TERMINFO
4067 maybe_fatal (must_succeed, terminal,
4068 "Cannot open terminfo database file",
4069 "Cannot open terminfo database file");
4070 #else
4071 maybe_fatal (must_succeed, terminal,
4072 "Cannot open termcap database file",
4073 "Cannot open termcap database file");
4074 #endif
4076 if (status == 0)
4078 maybe_fatal (must_succeed, terminal,
4079 "Terminal type %s is not defined",
4080 "Terminal type %s is not defined.\n\
4081 If that is not the actual type of terminal you have,\n\
4082 use the Bourne shell command `TERM=... export TERM' (C-shell:\n\
4083 `setenv TERM ...') to specify the correct type. It may be necessary\n"
4084 #ifdef TERMINFO
4085 "to do `unset TERMINFO' (C-shell: `unsetenv TERMINFO') as well.",
4086 #else
4087 "to do `unset TERMCAP' (C-shell: `unsetenv TERMCAP') as well.",
4088 #endif
4089 terminal_type);
4092 area = tty->termcap_strings_buffer;
4093 tty->TS_ins_line = tgetstr ("al", address);
4094 tty->TS_ins_multi_lines = tgetstr ("AL", address);
4095 tty->TS_bell = tgetstr ("bl", address);
4096 BackTab (tty) = tgetstr ("bt", address);
4097 tty->TS_clr_to_bottom = tgetstr ("cd", address);
4098 tty->TS_clr_line = tgetstr ("ce", address);
4099 tty->TS_clr_frame = tgetstr ("cl", address);
4100 ColPosition (tty) = NULL; /* tgetstr ("ch", address); */
4101 AbsPosition (tty) = tgetstr ("cm", address);
4102 CR (tty) = tgetstr ("cr", address);
4103 tty->TS_set_scroll_region = tgetstr ("cs", address);
4104 tty->TS_set_scroll_region_1 = tgetstr ("cS", address);
4105 RowPosition (tty) = tgetstr ("cv", address);
4106 tty->TS_del_char = tgetstr ("dc", address);
4107 tty->TS_del_multi_chars = tgetstr ("DC", address);
4108 tty->TS_del_line = tgetstr ("dl", address);
4109 tty->TS_del_multi_lines = tgetstr ("DL", address);
4110 tty->TS_delete_mode = tgetstr ("dm", address);
4111 tty->TS_end_delete_mode = tgetstr ("ed", address);
4112 tty->TS_end_insert_mode = tgetstr ("ei", address);
4113 Home (tty) = tgetstr ("ho", address);
4114 tty->TS_ins_char = tgetstr ("ic", address);
4115 tty->TS_ins_multi_chars = tgetstr ("IC", address);
4116 tty->TS_insert_mode = tgetstr ("im", address);
4117 tty->TS_pad_inserted_char = tgetstr ("ip", address);
4118 tty->TS_end_keypad_mode = tgetstr ("ke", address);
4119 tty->TS_keypad_mode = tgetstr ("ks", address);
4120 LastLine (tty) = tgetstr ("ll", address);
4121 Right (tty) = tgetstr ("nd", address);
4122 Down (tty) = tgetstr ("do", address);
4123 if (!Down (tty))
4124 Down (tty) = tgetstr ("nl", address); /* Obsolete name for "do". */
4125 if (tgetflag ("bs"))
4126 Left (tty) = "\b"; /* Can't possibly be longer! */
4127 else /* (Actually, "bs" is obsolete...) */
4128 Left (tty) = tgetstr ("le", address);
4129 if (!Left (tty))
4130 Left (tty) = tgetstr ("bc", address); /* Obsolete name for "le". */
4131 tty->TS_pad_char = tgetstr ("pc", address);
4132 tty->TS_repeat = tgetstr ("rp", address);
4133 tty->TS_end_standout_mode = tgetstr ("se", address);
4134 tty->TS_fwd_scroll = tgetstr ("sf", address);
4135 tty->TS_standout_mode = tgetstr ("so", address);
4136 tty->TS_rev_scroll = tgetstr ("sr", address);
4137 tty->Wcm->cm_tab = tgetstr ("ta", address);
4138 tty->TS_end_termcap_modes = tgetstr ("te", address);
4139 tty->TS_termcap_modes = tgetstr ("ti", address);
4140 Up (tty) = tgetstr ("up", address);
4141 tty->TS_visible_bell = tgetstr ("vb", address);
4142 tty->TS_cursor_normal = tgetstr ("ve", address);
4143 tty->TS_cursor_visible = tgetstr ("vs", address);
4144 tty->TS_cursor_invisible = tgetstr ("vi", address);
4145 tty->TS_set_window = tgetstr ("wi", address);
4147 tty->TS_enter_underline_mode = tgetstr ("us", address);
4148 tty->TS_exit_underline_mode = tgetstr ("ue", address);
4149 tty->TS_enter_bold_mode = tgetstr ("md", address);
4150 tty->TS_enter_italic_mode = tgetstr ("ZH", address);
4151 tty->TS_enter_dim_mode = tgetstr ("mh", address);
4152 tty->TS_enter_reverse_mode = tgetstr ("mr", address);
4153 tty->TS_enter_alt_charset_mode = tgetstr ("as", address);
4154 tty->TS_exit_alt_charset_mode = tgetstr ("ae", address);
4155 tty->TS_exit_attribute_mode = tgetstr ("me", address);
4157 MultiUp (tty) = tgetstr ("UP", address);
4158 MultiDown (tty) = tgetstr ("DO", address);
4159 MultiLeft (tty) = tgetstr ("LE", address);
4160 MultiRight (tty) = tgetstr ("RI", address);
4162 /* SVr4/ANSI color support. If "op" isn't available, don't support
4163 color because we can't switch back to the default foreground and
4164 background. */
4165 tty->TS_orig_pair = tgetstr ("op", address);
4166 if (tty->TS_orig_pair)
4168 tty->TS_set_foreground = tgetstr ("AF", address);
4169 tty->TS_set_background = tgetstr ("AB", address);
4170 if (!tty->TS_set_foreground)
4172 /* SVr4. */
4173 tty->TS_set_foreground = tgetstr ("Sf", address);
4174 tty->TS_set_background = tgetstr ("Sb", address);
4177 tty->TN_max_colors = tgetnum ("Co");
4178 tty->TN_max_pairs = tgetnum ("pa");
4180 tty->TN_no_color_video = tgetnum ("NC");
4181 if (tty->TN_no_color_video == -1)
4182 tty->TN_no_color_video = 0;
4185 tty_default_color_capabilities (tty, 1);
4187 MagicWrap (tty) = tgetflag ("xn");
4188 /* Since we make MagicWrap terminals look like AutoWrap, we need to have
4189 the former flag imply the latter. */
4190 AutoWrap (tty) = MagicWrap (tty) || tgetflag ("am");
4191 tty->memory_below_frame = tgetflag ("db");
4192 tty->TF_hazeltine = tgetflag ("hz");
4193 tty->must_write_spaces = tgetflag ("in");
4194 tty->meta_key = tgetflag ("km") || tgetflag ("MT");
4195 tty->TF_insmode_motion = tgetflag ("mi");
4196 tty->TF_standout_motion = tgetflag ("ms");
4197 tty->TF_underscore = tgetflag ("ul");
4198 tty->TF_teleray = tgetflag ("xt");
4200 #else /* DOS_NT */
4201 #ifdef WINDOWSNT
4203 struct frame *f = XFRAME (selected_frame);
4204 int height, width;
4206 initialize_w32_display (terminal, &width, &height);
4208 FrameRows (tty) = height;
4209 FrameCols (tty) = width;
4210 tty->specified_window = height;
4212 FRAME_VERTICAL_SCROLL_BAR_TYPE (f) = vertical_scroll_bar_none;
4213 tty->char_ins_del_ok = 1;
4214 baud_rate = 19200;
4216 #else /* MSDOS */
4218 int height, width;
4219 if (strcmp (terminal_type, "internal") == 0)
4220 terminal->type = output_msdos_raw;
4221 initialize_msdos_display (terminal);
4223 get_tty_size (fileno (tty->input), &width, &height);
4224 FrameCols (tty) = width;
4225 FrameRows (tty) = height;
4226 tty->char_ins_del_ok = 0;
4227 init_baud_rate (fileno (tty->input));
4229 #endif /* MSDOS */
4230 tty->output = stdout;
4231 tty->input = stdin;
4232 /* The following two are inaccessible from w32console.c. */
4233 terminal->delete_frame_hook = &tty_free_frame_resources;
4234 terminal->delete_terminal_hook = &delete_tty;
4236 tty->name = xstrdup (name);
4237 terminal->name = xstrdup (name);
4238 tty->type = xstrdup (terminal_type);
4240 add_keyboard_wait_descriptor (0);
4242 tty->delete_in_insert_mode = 1;
4244 UseTabs (tty) = 0;
4245 tty->scroll_region_ok = 0;
4247 /* Seems to insert lines when it's not supposed to, messing up the
4248 display. In doing a trace, it didn't seem to be called much, so I
4249 don't think we're losing anything by turning it off. */
4250 tty->line_ins_del_ok = 0;
4252 tty->TN_max_colors = 16; /* Must be non-zero for tty-display-color-p. */
4253 #endif /* DOS_NT */
4255 #ifdef HAVE_GPM
4256 terminal->mouse_position_hook = term_mouse_position;
4257 tty->mouse_highlight.mouse_face_window = Qnil;
4258 #endif
4260 terminal->kboard = allocate_kboard (Qnil);
4261 terminal->kboard->reference_count++;
4262 /* Don't let the initial kboard remain current longer than necessary.
4263 That would cause problems if a file loaded on startup tries to
4264 prompt in the mini-buffer. */
4265 if (current_kboard == initial_kboard)
4266 current_kboard = terminal->kboard;
4267 #ifndef DOS_NT
4268 term_get_fkeys (address, terminal->kboard);
4270 /* Get frame size from system, or else from termcap. */
4272 int height, width;
4273 get_tty_size (fileno (tty->input), &width, &height);
4274 FrameCols (tty) = width;
4275 FrameRows (tty) = height;
4278 if (FrameCols (tty) <= 0)
4279 FrameCols (tty) = tgetnum ("co");
4280 if (FrameRows (tty) <= 0)
4281 FrameRows (tty) = tgetnum ("li");
4283 if (FrameRows (tty) < 3 || FrameCols (tty) < 3)
4284 maybe_fatal (must_succeed, terminal,
4285 "Screen size %dx%d is too small",
4286 "Screen size %dx%d is too small",
4287 FrameCols (tty), FrameRows (tty));
4289 TabWidth (tty) = tgetnum ("tw");
4291 if (!tty->TS_bell)
4292 tty->TS_bell = "\07";
4294 if (!tty->TS_fwd_scroll)
4295 tty->TS_fwd_scroll = Down (tty);
4297 PC = tty->TS_pad_char ? *tty->TS_pad_char : 0;
4299 if (TabWidth (tty) < 0)
4300 TabWidth (tty) = 8;
4302 /* Turned off since /etc/termcap seems to have :ta= for most terminals
4303 and newer termcap doc does not seem to say there is a default.
4304 if (!tty->Wcm->cm_tab)
4305 tty->Wcm->cm_tab = "\t";
4308 /* We don't support standout modes that use `magic cookies', so
4309 turn off any that do. */
4310 if (tty->TS_standout_mode && tgetnum ("sg") >= 0)
4312 tty->TS_standout_mode = 0;
4313 tty->TS_end_standout_mode = 0;
4315 if (tty->TS_enter_underline_mode && tgetnum ("ug") >= 0)
4317 tty->TS_enter_underline_mode = 0;
4318 tty->TS_exit_underline_mode = 0;
4321 /* If there's no standout mode, try to use underlining instead. */
4322 if (tty->TS_standout_mode == 0)
4324 tty->TS_standout_mode = tty->TS_enter_underline_mode;
4325 tty->TS_end_standout_mode = tty->TS_exit_underline_mode;
4328 /* If no `se' string, try using a `me' string instead.
4329 If that fails, we can't use standout mode at all. */
4330 if (tty->TS_end_standout_mode == 0)
4332 char *s = tgetstr ("me", address);
4333 if (s != 0)
4334 tty->TS_end_standout_mode = s;
4335 else
4336 tty->TS_standout_mode = 0;
4339 if (tty->TF_teleray)
4341 tty->Wcm->cm_tab = 0;
4342 /* We can't support standout mode, because it uses magic cookies. */
4343 tty->TS_standout_mode = 0;
4344 /* But that means we cannot rely on ^M to go to column zero! */
4345 CR (tty) = 0;
4346 /* LF can't be trusted either -- can alter hpos. */
4347 /* If move at column 0 thru a line with TS_standout_mode. */
4348 Down (tty) = 0;
4351 tty->specified_window = FrameRows (tty);
4353 if (Wcm_init (tty) == -1) /* Can't do cursor motion. */
4355 maybe_fatal (must_succeed, terminal,
4356 "Terminal type \"%s\" is not powerful enough to run Emacs",
4357 "Terminal type \"%s\" is not powerful enough to run Emacs.\n\
4358 It lacks the ability to position the cursor.\n\
4359 If that is not the actual type of terminal you have,\n\
4360 use the Bourne shell command `TERM=... export TERM' (C-shell:\n\
4361 `setenv TERM ...') to specify the correct type. It may be necessary\n"
4362 # ifdef TERMINFO
4363 "to do `unset TERMINFO' (C-shell: `unsetenv TERMINFO') as well.",
4364 # else /* TERMCAP */
4365 "to do `unset TERMCAP' (C-shell: `unsetenv TERMCAP') as well.",
4366 # endif /* TERMINFO */
4367 terminal_type);
4370 if (FrameRows (tty) <= 0 || FrameCols (tty) <= 0)
4371 maybe_fatal (must_succeed, terminal,
4372 "Could not determine the frame size",
4373 "Could not determine the frame size");
4375 tty->delete_in_insert_mode
4376 = tty->TS_delete_mode && tty->TS_insert_mode
4377 && !strcmp (tty->TS_delete_mode, tty->TS_insert_mode);
4379 UseTabs (tty) = tabs_safe_p (fileno (tty->input)) && TabWidth (tty) == 8;
4381 tty->scroll_region_ok
4382 = (tty->Wcm->cm_abs
4383 && (tty->TS_set_window || tty->TS_set_scroll_region || tty->TS_set_scroll_region_1));
4385 tty->line_ins_del_ok
4386 = (((tty->TS_ins_line || tty->TS_ins_multi_lines)
4387 && (tty->TS_del_line || tty->TS_del_multi_lines))
4388 || (tty->scroll_region_ok
4389 && tty->TS_fwd_scroll && tty->TS_rev_scroll));
4391 tty->char_ins_del_ok
4392 = ((tty->TS_ins_char || tty->TS_insert_mode
4393 || tty->TS_pad_inserted_char || tty->TS_ins_multi_chars)
4394 && (tty->TS_del_char || tty->TS_del_multi_chars));
4396 init_baud_rate (fileno (tty->input));
4398 #endif /* not DOS_NT */
4400 /* Init system terminal modes (RAW or CBREAK, etc.). */
4401 init_sys_modes (tty);
4403 return terminal;
4407 static void
4408 vfatal (const char *str, va_list ap)
4410 fprintf (stderr, "emacs: ");
4411 vfprintf (stderr, str, ap);
4412 if (!(strlen (str) > 0 && str[strlen (str) - 1] == '\n'))
4413 fprintf (stderr, "\n");
4414 fflush (stderr);
4415 exit (1);
4419 /* Auxiliary error-handling function for init_tty.
4420 Delete TERMINAL, then call error or fatal with str1 or str2,
4421 respectively, according to whether MUST_SUCCEED is true. */
4423 static void
4424 maybe_fatal (bool must_succeed, struct terminal *terminal,
4425 const char *str1, const char *str2, ...)
4427 va_list ap;
4428 va_start (ap, str2);
4429 if (terminal)
4430 delete_tty (terminal);
4432 if (must_succeed)
4433 vfatal (str2, ap);
4434 else
4435 verror (str1, ap);
4438 void
4439 fatal (const char *str, ...)
4441 va_list ap;
4442 va_start (ap, str);
4443 vfatal (str, ap);
4448 /* Delete the given tty terminal, closing all frames on it. */
4450 static void
4451 delete_tty (struct terminal *terminal)
4453 struct tty_display_info *tty;
4455 /* Protect against recursive calls. delete_frame in
4456 delete_terminal calls us back when it deletes our last frame. */
4457 if (!terminal->name)
4458 return;
4460 eassert (terminal->type == output_termcap);
4462 tty = terminal->display_info.tty;
4464 if (tty == tty_list)
4465 tty_list = tty->next;
4466 else
4468 struct tty_display_info *p;
4469 for (p = tty_list; p && p->next != tty; p = p->next)
4472 if (! p)
4473 /* This should not happen. */
4474 emacs_abort ();
4476 p->next = tty->next;
4477 tty->next = 0;
4480 /* reset_sys_modes needs a valid device, so this call needs to be
4481 before delete_terminal. */
4482 reset_sys_modes (tty);
4484 delete_terminal (terminal);
4486 xfree (tty->name);
4487 xfree (tty->type);
4489 if (tty->input)
4491 delete_keyboard_wait_descriptor (fileno (tty->input));
4492 if (tty->input != stdin)
4493 fclose (tty->input);
4495 if (tty->output && tty->output != stdout && tty->output != tty->input)
4496 fclose (tty->output);
4497 if (tty->termscript)
4498 fclose (tty->termscript);
4500 xfree (tty->old_tty);
4501 xfree (tty->Wcm);
4502 xfree (tty);
4505 void
4506 syms_of_term (void)
4508 DEFVAR_BOOL ("system-uses-terminfo", system_uses_terminfo,
4509 doc: /* Non-nil means the system uses terminfo rather than termcap.
4510 This variable can be used by terminal emulator packages. */);
4511 #ifdef TERMINFO
4512 system_uses_terminfo = 1;
4513 #else
4514 system_uses_terminfo = 0;
4515 #endif
4517 DEFVAR_LISP ("suspend-tty-functions", Vsuspend_tty_functions,
4518 doc: /* Functions run after suspending a tty.
4519 The functions are run with one argument, the terminal object to be suspended.
4520 See `suspend-tty'. */);
4521 Vsuspend_tty_functions = Qnil;
4524 DEFVAR_LISP ("resume-tty-functions", Vresume_tty_functions,
4525 doc: /* Functions run after resuming a tty.
4526 The functions are run with one argument, the terminal object that was revived.
4527 See `resume-tty'. */);
4528 Vresume_tty_functions = Qnil;
4530 DEFVAR_BOOL ("visible-cursor", visible_cursor,
4531 doc: /* Non-nil means to make the cursor very visible.
4532 This only has an effect when running in a text terminal.
4533 What means \"very visible\" is up to your terminal. It may make the cursor
4534 bigger, or it may make it blink, or it may do nothing at all. */);
4535 visible_cursor = 1;
4537 defsubr (&Stty_display_color_p);
4538 defsubr (&Stty_display_color_cells);
4539 defsubr (&Stty_no_underline);
4540 defsubr (&Stty_type);
4541 defsubr (&Scontrolling_tty_p);
4542 defsubr (&Stty_top_frame);
4543 defsubr (&Ssuspend_tty);
4544 defsubr (&Sresume_tty);
4545 #ifdef HAVE_GPM
4546 defsubr (&Sgpm_mouse_start);
4547 defsubr (&Sgpm_mouse_stop);
4548 #endif /* HAVE_GPM */
4550 #ifndef DOS_NT
4551 default_orig_pair = NULL;
4552 default_set_foreground = NULL;
4553 default_set_background = NULL;
4554 #endif /* !DOS_NT */
4556 encode_terminal_src = NULL;
4557 encode_terminal_dst = NULL;
4559 DEFSYM (Qtty_menu_next_item, "tty-menu-next-item");
4560 DEFSYM (Qtty_menu_prev_item, "tty-menu-prev-item");
4561 DEFSYM (Qtty_menu_next_menu, "tty-menu-next-menu");
4562 DEFSYM (Qtty_menu_prev_menu, "tty-menu-prev-menu");
4563 DEFSYM (Qtty_menu_select, "tty-menu-select");
4564 DEFSYM (Qtty_menu_ignore, "tty-menu-ignore");
4565 DEFSYM (Qtty_menu_exit, "tty-menu-exit");
4566 DEFSYM (Qtty_menu_mouse_movement, "tty-menu-mouse-movement");
4567 DEFSYM (Qtty_menu_navigation_map, "tty-menu-navigation-map");