Attempt to fix crashes per bug #15575.
[bpt/emacs.git] / src / term.c
1 /* Terminal control module for terminals described by TERMCAP
2 Copyright (C) 1985-1987, 1993-1995, 1998, 2000-2013 Free Software
3 Foundation, Inc.
4
5 This file is part of GNU Emacs.
6
7 GNU Emacs is free software: you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation, either version 3 of the License, or
10 (at your option) any later version.
11
12 GNU Emacs is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
19
20 /* New redisplay, TTY faces by Gerd Moellmann <gerd@gnu.org>. */
21
22 #include <config.h>
23 #include <errno.h>
24 #include <fcntl.h>
25 #include <stdio.h>
26 #include <sys/file.h>
27 #include <sys/time.h>
28 #include <unistd.h>
29
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
53
54 #ifdef USE_X_TOOLKIT
55 #include "../lwlib/lwlib.h"
56 #endif
57
58 #include "cm.h"
59 #ifdef HAVE_X_WINDOWS
60 #include "xterm.h"
61 #endif
62
63 #include "menu.h"
64
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
72
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);
90
91
92 #define OUTPUT(tty, a) \
93 emacs_tputs ((tty), a, \
94 FRAME_LINES (XFRAME (selected_frame)) - curY (tty), \
95 cmputc)
96
97 #define OUTPUT1(tty, a) emacs_tputs ((tty), a, 1, cmputc)
98 #define OUTPUTL(tty, a, lines) emacs_tputs ((tty), a, lines, cmputc)
99
100 #define OUTPUT_IF(tty, a) \
101 do { \
102 if (a) \
103 OUTPUT (tty, a); \
104 } while (0)
105
106 #define OUTPUT1_IF(tty, a) do { if (a) emacs_tputs ((tty), a, 1, cmputc); } while (0)
107
108 /* Display space properties */
109
110 /* Chain of all tty device parameters. */
111 struct tty_display_info *tty_list;
112
113 /* Meaning of bits in no_color_video. Each bit set means that the
114 corresponding attribute cannot be combined with colors. */
115
116 enum no_color_bit
117 {
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
126 };
127
128 /* internal state */
129
130 /* The largest frame width in any call to calculate_costs. */
131
132 static int max_frame_cols;
133
134 \f
135
136 #ifdef HAVE_GPM
137 #include <sys/fcntl.h>
138
139 /* The device for which we have enabled gpm support (or NULL). */
140 struct tty_display_info *gpm_tty = NULL;
141
142 /* Last recorded mouse coordinates. */
143 static int last_mouse_x, last_mouse_y;
144 #endif /* HAVE_GPM */
145
146 /* Ring the bell on a tty. */
147
148 static void
149 tty_ring_bell (struct frame *f)
150 {
151 struct tty_display_info *tty = FRAME_TTY (f);
152
153 if (tty->output)
154 {
155 OUTPUT (tty, (tty->TS_visible_bell && visible_bell
156 ? tty->TS_visible_bell
157 : tty->TS_bell));
158 fflush (tty->output);
159 }
160 }
161
162 /* Set up termcap modes for Emacs. */
163
164 static void
165 tty_set_terminal_modes (struct terminal *terminal)
166 {
167 struct tty_display_info *tty = terminal->display_info.tty;
168
169 if (tty->output)
170 {
171 if (tty->TS_termcap_modes)
172 OUTPUT (tty, tty->TS_termcap_modes);
173 else
174 {
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');
181 }
182
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);
187 }
188 }
189
190 /* Reset termcap modes before exiting Emacs. */
191
192 static void
193 tty_reset_terminal_modes (struct terminal *terminal)
194 {
195 struct tty_display_info *tty = terminal->display_info.tty;
196
197 if (tty->output)
198 {
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);
209 }
210 }
211
212 /* Flag the end of a display update on a termcap terminal. */
213
214 static void
215 tty_update_end (struct frame *f)
216 {
217 struct tty_display_info *tty = FRAME_TTY (f);
218
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 }
224
225 /* The implementation of set_terminal_window for termcap frames. */
226
227 static void
228 tty_set_terminal_window (struct frame *f, int size)
229 {
230 struct tty_display_info *tty = FRAME_TTY (f);
231
232 tty->specified_window = size ? size : FRAME_LINES (f);
233 if (FRAME_SCROLL_REGION_OK (f))
234 tty_set_scroll_region (f, 0, tty->specified_window);
235 }
236
237 static void
238 tty_set_scroll_region (struct frame *f, int start, int stop)
239 {
240 char *buf;
241 struct tty_display_info *tty = FRAME_TTY (f);
242
243 if (tty->TS_set_scroll_region)
244 buf = tparam (tty->TS_set_scroll_region, 0, 0, start, stop - 1, 0, 0);
245 else if (tty->TS_set_scroll_region_1)
246 buf = tparam (tty->TS_set_scroll_region_1, 0, 0,
247 FRAME_LINES (f), start,
248 FRAME_LINES (f) - stop,
249 FRAME_LINES (f));
250 else
251 buf = tparam (tty->TS_set_window, 0, 0, start, 0, stop, FRAME_COLS (f));
252
253 OUTPUT (tty, buf);
254 xfree (buf);
255 losecursor (tty);
256 }
257
258 \f
259 static void
260 tty_turn_on_insert (struct tty_display_info *tty)
261 {
262 if (!tty->insert_mode)
263 OUTPUT (tty, tty->TS_insert_mode);
264 tty->insert_mode = 1;
265 }
266
267 void
268 tty_turn_off_insert (struct tty_display_info *tty)
269 {
270 if (tty->insert_mode)
271 OUTPUT (tty, tty->TS_end_insert_mode);
272 tty->insert_mode = 0;
273 }
274 \f
275 /* Handle highlighting. */
276
277 static void
278 tty_turn_off_highlight (struct tty_display_info *tty)
279 {
280 if (tty->standout_mode)
281 OUTPUT_IF (tty, tty->TS_end_standout_mode);
282 tty->standout_mode = 0;
283 }
284
285 static void
286 tty_turn_on_highlight (struct tty_display_info *tty)
287 {
288 if (!tty->standout_mode)
289 OUTPUT_IF (tty, tty->TS_standout_mode);
290 tty->standout_mode = 1;
291 }
292
293 static void
294 tty_toggle_highlight (struct tty_display_info *tty)
295 {
296 if (tty->standout_mode)
297 tty_turn_off_highlight (tty);
298 else
299 tty_turn_on_highlight (tty);
300 }
301
302
303 /* Make cursor invisible. */
304
305 static void
306 tty_hide_cursor (struct tty_display_info *tty)
307 {
308 if (tty->cursor_hidden == 0)
309 {
310 tty->cursor_hidden = 1;
311 #ifdef WINDOWSNT
312 w32con_hide_cursor ();
313 #else
314 OUTPUT_IF (tty, tty->TS_cursor_invisible);
315 #endif
316 }
317 }
318
319
320 /* Ensure that cursor is visible. */
321
322 static void
323 tty_show_cursor (struct tty_display_info *tty)
324 {
325 if (tty->cursor_hidden)
326 {
327 tty->cursor_hidden = 0;
328 #ifdef WINDOWSNT
329 w32con_show_cursor ();
330 #else
331 OUTPUT_IF (tty, tty->TS_cursor_normal);
332 if (visible_cursor)
333 OUTPUT_IF (tty, tty->TS_cursor_visible);
334 #endif
335 }
336 }
337
338
339 /* Set standout mode to the state it should be in for
340 empty space inside windows. What this is,
341 depends on the user option inverse-video. */
342
343 static void
344 tty_background_highlight (struct tty_display_info *tty)
345 {
346 if (inverse_video)
347 tty_turn_on_highlight (tty);
348 else
349 tty_turn_off_highlight (tty);
350 }
351
352 /* Set standout mode to the mode specified for the text to be output. */
353
354 static void
355 tty_highlight_if_desired (struct tty_display_info *tty)
356 {
357 if (inverse_video)
358 tty_turn_on_highlight (tty);
359 else
360 tty_turn_off_highlight (tty);
361 }
362 \f
363
364 /* Move cursor to row/column position VPOS/HPOS. HPOS/VPOS are
365 frame-relative coordinates. */
366
367 static void
368 tty_cursor_to (struct frame *f, int vpos, int hpos)
369 {
370 struct tty_display_info *tty = FRAME_TTY (f);
371
372 /* Detect the case where we are called from reset_sys_modes
373 and the costs have never been calculated. Do nothing. */
374 if (! tty->costs_set)
375 return;
376
377 if (curY (tty) == vpos
378 && curX (tty) == hpos)
379 return;
380 if (!tty->TF_standout_motion)
381 tty_background_highlight (tty);
382 if (!tty->TF_insmode_motion)
383 tty_turn_off_insert (tty);
384 cmgoto (tty, vpos, hpos);
385 }
386
387 /* Similar but don't take any account of the wasted characters. */
388
389 static void
390 tty_raw_cursor_to (struct frame *f, int row, int col)
391 {
392 struct tty_display_info *tty = FRAME_TTY (f);
393
394 if (curY (tty) == row
395 && curX (tty) == col)
396 return;
397 if (!tty->TF_standout_motion)
398 tty_background_highlight (tty);
399 if (!tty->TF_insmode_motion)
400 tty_turn_off_insert (tty);
401 cmgoto (tty, row, col);
402 }
403 \f
404 /* Erase operations */
405
406 /* Clear from cursor to end of frame on a termcap device. */
407
408 static void
409 tty_clear_to_end (struct frame *f)
410 {
411 register int i;
412 struct tty_display_info *tty = FRAME_TTY (f);
413
414 if (tty->TS_clr_to_bottom)
415 {
416 tty_background_highlight (tty);
417 OUTPUT (tty, tty->TS_clr_to_bottom);
418 }
419 else
420 {
421 for (i = curY (tty); i < FRAME_LINES (f); i++)
422 {
423 cursor_to (f, i, 0);
424 clear_end_of_line (f, FRAME_COLS (f));
425 }
426 }
427 }
428
429 /* Clear an entire termcap frame. */
430
431 static void
432 tty_clear_frame (struct frame *f)
433 {
434 struct tty_display_info *tty = FRAME_TTY (f);
435
436 if (tty->TS_clr_frame)
437 {
438 tty_background_highlight (tty);
439 OUTPUT (tty, tty->TS_clr_frame);
440 cmat (tty, 0, 0);
441 }
442 else
443 {
444 cursor_to (f, 0, 0);
445 clear_to_end (f);
446 }
447 }
448
449 /* An implementation of clear_end_of_line for termcap frames.
450
451 Note that the cursor may be moved, on terminals lacking a `ce' string. */
452
453 static void
454 tty_clear_end_of_line (struct frame *f, int first_unused_hpos)
455 {
456 register int i;
457 struct tty_display_info *tty = FRAME_TTY (f);
458
459 /* Detect the case where we are called from reset_sys_modes
460 and the costs have never been calculated. Do nothing. */
461 if (! tty->costs_set)
462 return;
463
464 if (curX (tty) >= first_unused_hpos)
465 return;
466 tty_background_highlight (tty);
467 if (tty->TS_clr_line)
468 {
469 OUTPUT1 (tty, tty->TS_clr_line);
470 }
471 else
472 { /* have to do it the hard way */
473 tty_turn_off_insert (tty);
474
475 /* Do not write in last row last col with Auto-wrap on. */
476 if (AutoWrap (tty)
477 && curY (tty) == FrameRows (tty) - 1
478 && first_unused_hpos == FrameCols (tty))
479 first_unused_hpos--;
480
481 for (i = curX (tty); i < first_unused_hpos; i++)
482 {
483 if (tty->termscript)
484 fputc (' ', tty->termscript);
485 fputc (' ', tty->output);
486 }
487 cmplus (tty, first_unused_hpos - curX (tty));
488 }
489 }
490 \f
491 /* Buffers to store the source and result of code conversion for terminal. */
492 static unsigned char *encode_terminal_src;
493 static unsigned char *encode_terminal_dst;
494 /* Allocated sizes of the above buffers. */
495 static ptrdiff_t encode_terminal_src_size;
496 static ptrdiff_t encode_terminal_dst_size;
497
498 /* Encode SRC_LEN glyphs starting at SRC to terminal output codes.
499 Set CODING->produced to the byte-length of the resulting byte
500 sequence, and return a pointer to that byte sequence. */
501
502 unsigned char *
503 encode_terminal_code (struct glyph *src, int src_len, struct coding_system *coding)
504 {
505 struct glyph *src_end = src + src_len;
506 unsigned char *buf;
507 ptrdiff_t nchars, nbytes, required;
508 ptrdiff_t tlen = GLYPH_TABLE_LENGTH;
509 register Lisp_Object *tbase = GLYPH_TABLE_BASE;
510 Lisp_Object charset_list;
511
512 /* Allocate sufficient size of buffer to store all characters in
513 multibyte-form. But, it may be enlarged on demand if
514 Vglyph_table contains a string or a composite glyph is
515 encountered. */
516 if (min (PTRDIFF_MAX, SIZE_MAX) / MAX_MULTIBYTE_LENGTH < src_len)
517 memory_full (SIZE_MAX);
518 required = src_len;
519 required *= MAX_MULTIBYTE_LENGTH;
520 if (encode_terminal_src_size < required)
521 {
522 encode_terminal_src = xrealloc (encode_terminal_src, required);
523 encode_terminal_src_size = required;
524 }
525
526 charset_list = coding_charset_list (coding);
527
528 buf = encode_terminal_src;
529 nchars = 0;
530 while (src < src_end)
531 {
532 if (src->type == COMPOSITE_GLYPH)
533 {
534 struct composition *cmp IF_LINT (= NULL);
535 Lisp_Object gstring IF_LINT (= Qnil);
536 int i;
537
538 nbytes = buf - encode_terminal_src;
539 if (src->u.cmp.automatic)
540 {
541 gstring = composition_gstring_from_id (src->u.cmp.id);
542 required = src->slice.cmp.to - src->slice.cmp.from + 1;
543 }
544 else
545 {
546 cmp = composition_table[src->u.cmp.id];
547 required = cmp->glyph_len;
548 required *= MAX_MULTIBYTE_LENGTH;
549 }
550
551 if (encode_terminal_src_size - nbytes < required)
552 {
553 encode_terminal_src =
554 xpalloc (encode_terminal_src, &encode_terminal_src_size,
555 required - (encode_terminal_src_size - nbytes),
556 -1, 1);
557 buf = encode_terminal_src + nbytes;
558 }
559
560 if (src->u.cmp.automatic)
561 for (i = src->slice.cmp.from; i <= src->slice.cmp.to; i++)
562 {
563 Lisp_Object g = LGSTRING_GLYPH (gstring, i);
564 int c = LGLYPH_CHAR (g);
565
566 if (! char_charset (c, charset_list, NULL))
567 c = '?';
568 buf += CHAR_STRING (c, buf);
569 nchars++;
570 }
571 else
572 for (i = 0; i < cmp->glyph_len; i++)
573 {
574 int c = COMPOSITION_GLYPH (cmp, i);
575
576 /* TAB in a composition means display glyphs with
577 padding space on the left or right. */
578 if (c == '\t')
579 continue;
580 if (char_charset (c, charset_list, NULL))
581 {
582 if (CHAR_WIDTH (c) == 0
583 && i > 0 && COMPOSITION_GLYPH (cmp, i - 1) == '\t')
584 /* Should be left-padded */
585 {
586 buf += CHAR_STRING (' ', buf);
587 nchars++;
588 }
589 }
590 else
591 c = '?';
592 buf += CHAR_STRING (c, buf);
593 nchars++;
594 }
595 }
596 /* We must skip glyphs to be padded for a wide character. */
597 else if (! CHAR_GLYPH_PADDING_P (*src))
598 {
599 GLYPH g;
600 int c IF_LINT (= 0);
601 Lisp_Object string;
602
603 string = Qnil;
604 SET_GLYPH_FROM_CHAR_GLYPH (g, src[0]);
605
606 if (GLYPH_INVALID_P (g) || GLYPH_SIMPLE_P (tbase, tlen, g))
607 {
608 /* This glyph doesn't have an entry in Vglyph_table. */
609 c = src->u.ch;
610 }
611 else
612 {
613 /* This glyph has an entry in Vglyph_table,
614 so process any alias before testing for simpleness. */
615 GLYPH_FOLLOW_ALIASES (tbase, tlen, g);
616
617 if (GLYPH_SIMPLE_P (tbase, tlen, g))
618 /* We set the multi-byte form of a character in G
619 (that should be an ASCII character) at WORKBUF. */
620 c = GLYPH_CHAR (g);
621 else
622 /* We have a string in Vglyph_table. */
623 string = tbase[GLYPH_CHAR (g)];
624 }
625
626 if (NILP (string))
627 {
628 nbytes = buf - encode_terminal_src;
629 if (encode_terminal_src_size - nbytes < MAX_MULTIBYTE_LENGTH)
630 {
631 encode_terminal_src =
632 xpalloc (encode_terminal_src, &encode_terminal_src_size,
633 MAX_MULTIBYTE_LENGTH, -1, 1);
634 buf = encode_terminal_src + nbytes;
635 }
636 if (CHAR_BYTE8_P (c)
637 || char_charset (c, charset_list, NULL))
638 {
639 /* Store the multibyte form of C at BUF. */
640 buf += CHAR_STRING (c, buf);
641 nchars++;
642 }
643 else
644 {
645 /* C is not encodable. */
646 *buf++ = '?';
647 nchars++;
648 while (src + 1 < src_end && CHAR_GLYPH_PADDING_P (src[1]))
649 {
650 *buf++ = '?';
651 nchars++;
652 src++;
653 }
654 }
655 }
656 else
657 {
658 if (! STRING_MULTIBYTE (string))
659 string = string_to_multibyte (string);
660 nbytes = buf - encode_terminal_src;
661 if (encode_terminal_src_size - nbytes < SBYTES (string))
662 {
663 encode_terminal_src =
664 xpalloc (encode_terminal_src, &encode_terminal_src_size,
665 (SBYTES (string)
666 - (encode_terminal_src_size - nbytes)),
667 -1, 1);
668 buf = encode_terminal_src + nbytes;
669 }
670 memcpy (buf, SDATA (string), SBYTES (string));
671 buf += SBYTES (string);
672 nchars += SCHARS (string);
673 }
674 }
675 src++;
676 }
677
678 if (nchars == 0)
679 {
680 coding->produced = 0;
681 return NULL;
682 }
683
684 nbytes = buf - encode_terminal_src;
685 coding->source = encode_terminal_src;
686 if (encode_terminal_dst_size == 0)
687 {
688 encode_terminal_dst = xrealloc (encode_terminal_dst,
689 encode_terminal_src_size);
690 encode_terminal_dst_size = encode_terminal_src_size;
691 }
692 coding->destination = encode_terminal_dst;
693 coding->dst_bytes = encode_terminal_dst_size;
694 encode_coding_object (coding, Qnil, 0, 0, nchars, nbytes, Qnil);
695 /* coding->destination may have been reallocated. */
696 encode_terminal_dst = coding->destination;
697 encode_terminal_dst_size = coding->dst_bytes;
698
699 return (encode_terminal_dst);
700 }
701
702
703
704 /* An implementation of write_glyphs for termcap frames. */
705
706 static void
707 tty_write_glyphs (struct frame *f, struct glyph *string, int len)
708 {
709 unsigned char *conversion_buffer;
710 struct coding_system *coding;
711 int n, stringlen;
712
713 struct tty_display_info *tty = FRAME_TTY (f);
714
715 tty_turn_off_insert (tty);
716 tty_hide_cursor (tty);
717
718 /* Don't dare write in last column of bottom line, if Auto-Wrap,
719 since that would scroll the whole frame on some terminals. */
720
721 if (AutoWrap (tty)
722 && curY (tty) + 1 == FRAME_LINES (f)
723 && (curX (tty) + len) == FRAME_COLS (f))
724 len --;
725 if (len <= 0)
726 return;
727
728 cmplus (tty, len);
729
730 /* If terminal_coding does any conversion, use it, otherwise use
731 safe_terminal_coding. We can't use CODING_REQUIRE_ENCODING here
732 because it always return 1 if the member src_multibyte is 1. */
733 coding = (FRAME_TERMINAL_CODING (f)->common_flags & CODING_REQUIRE_ENCODING_MASK
734 ? FRAME_TERMINAL_CODING (f) : &safe_terminal_coding);
735 /* The mode bit CODING_MODE_LAST_BLOCK should be set to 1 only at
736 the tail. */
737 coding->mode &= ~CODING_MODE_LAST_BLOCK;
738
739 for (stringlen = len; stringlen != 0; stringlen -= n)
740 {
741 /* Identify a run of glyphs with the same face. */
742 int face_id = string->face_id;
743
744 for (n = 1; n < stringlen; ++n)
745 if (string[n].face_id != face_id)
746 break;
747
748 /* Turn appearance modes of the face of the run on. */
749 tty_highlight_if_desired (tty);
750 turn_on_face (f, face_id);
751
752 if (n == stringlen)
753 /* This is the last run. */
754 coding->mode |= CODING_MODE_LAST_BLOCK;
755 conversion_buffer = encode_terminal_code (string, n, coding);
756 if (coding->produced > 0)
757 {
758 block_input ();
759 fwrite (conversion_buffer, 1, coding->produced, tty->output);
760 if (ferror (tty->output))
761 clearerr (tty->output);
762 if (tty->termscript)
763 fwrite (conversion_buffer, 1, coding->produced, tty->termscript);
764 unblock_input ();
765 }
766 string += n;
767
768 /* Turn appearance modes off. */
769 turn_off_face (f, face_id);
770 tty_turn_off_highlight (tty);
771 }
772
773 cmcheckmagic (tty);
774 }
775
776 #ifdef HAVE_GPM /* Only used by GPM code. */
777
778 static void
779 tty_write_glyphs_with_face (register struct frame *f, register struct glyph *string,
780 register int len, register int face_id)
781 {
782 unsigned char *conversion_buffer;
783 struct coding_system *coding;
784
785 struct tty_display_info *tty = FRAME_TTY (f);
786
787 tty_turn_off_insert (tty);
788 tty_hide_cursor (tty);
789
790 /* Don't dare write in last column of bottom line, if Auto-Wrap,
791 since that would scroll the whole frame on some terminals. */
792
793 if (AutoWrap (tty)
794 && curY (tty) + 1 == FRAME_LINES (f)
795 && (curX (tty) + len) == FRAME_COLS (f))
796 len --;
797 if (len <= 0)
798 return;
799
800 cmplus (tty, len);
801
802 /* If terminal_coding does any conversion, use it, otherwise use
803 safe_terminal_coding. We can't use CODING_REQUIRE_ENCODING here
804 because it always return 1 if the member src_multibyte is 1. */
805 coding = (FRAME_TERMINAL_CODING (f)->common_flags & CODING_REQUIRE_ENCODING_MASK
806 ? FRAME_TERMINAL_CODING (f) : &safe_terminal_coding);
807 /* The mode bit CODING_MODE_LAST_BLOCK should be set to 1 only at
808 the tail. */
809 coding->mode &= ~CODING_MODE_LAST_BLOCK;
810
811 /* Turn appearance modes of the face. */
812 tty_highlight_if_desired (tty);
813 turn_on_face (f, face_id);
814
815 coding->mode |= CODING_MODE_LAST_BLOCK;
816 conversion_buffer = encode_terminal_code (string, len, coding);
817 if (coding->produced > 0)
818 {
819 block_input ();
820 fwrite (conversion_buffer, 1, coding->produced, tty->output);
821 if (ferror (tty->output))
822 clearerr (tty->output);
823 if (tty->termscript)
824 fwrite (conversion_buffer, 1, coding->produced, tty->termscript);
825 unblock_input ();
826 }
827
828 /* Turn appearance modes off. */
829 turn_off_face (f, face_id);
830 tty_turn_off_highlight (tty);
831
832 cmcheckmagic (tty);
833 }
834 #endif
835
836 /* An implementation of insert_glyphs for termcap frames. */
837
838 static void
839 tty_insert_glyphs (struct frame *f, struct glyph *start, int len)
840 {
841 char *buf;
842 struct glyph *glyph = NULL;
843 unsigned char *conversion_buffer;
844 unsigned char space[1];
845 struct coding_system *coding;
846
847 struct tty_display_info *tty = FRAME_TTY (f);
848
849 if (tty->TS_ins_multi_chars)
850 {
851 buf = tparam (tty->TS_ins_multi_chars, 0, 0, len, 0, 0, 0);
852 OUTPUT1 (tty, buf);
853 xfree (buf);
854 if (start)
855 write_glyphs (f, start, len);
856 return;
857 }
858
859 tty_turn_on_insert (tty);
860 cmplus (tty, len);
861
862 if (! start)
863 space[0] = SPACEGLYPH;
864
865 /* If terminal_coding does any conversion, use it, otherwise use
866 safe_terminal_coding. We can't use CODING_REQUIRE_ENCODING here
867 because it always return 1 if the member src_multibyte is 1. */
868 coding = (FRAME_TERMINAL_CODING (f)->common_flags & CODING_REQUIRE_ENCODING_MASK
869 ? FRAME_TERMINAL_CODING (f) : &safe_terminal_coding);
870 /* The mode bit CODING_MODE_LAST_BLOCK should be set to 1 only at
871 the tail. */
872 coding->mode &= ~CODING_MODE_LAST_BLOCK;
873
874 while (len-- > 0)
875 {
876 OUTPUT1_IF (tty, tty->TS_ins_char);
877 if (!start)
878 {
879 conversion_buffer = space;
880 coding->produced = 1;
881 }
882 else
883 {
884 tty_highlight_if_desired (tty);
885 turn_on_face (f, start->face_id);
886 glyph = start;
887 ++start;
888 /* We must open sufficient space for a character which
889 occupies more than one column. */
890 while (len && CHAR_GLYPH_PADDING_P (*start))
891 {
892 OUTPUT1_IF (tty, tty->TS_ins_char);
893 start++, len--;
894 }
895
896 if (len <= 0)
897 /* This is the last glyph. */
898 coding->mode |= CODING_MODE_LAST_BLOCK;
899
900 conversion_buffer = encode_terminal_code (glyph, 1, coding);
901 }
902
903 if (coding->produced > 0)
904 {
905 block_input ();
906 fwrite (conversion_buffer, 1, coding->produced, tty->output);
907 if (ferror (tty->output))
908 clearerr (tty->output);
909 if (tty->termscript)
910 fwrite (conversion_buffer, 1, coding->produced, tty->termscript);
911 unblock_input ();
912 }
913
914 OUTPUT1_IF (tty, tty->TS_pad_inserted_char);
915 if (start)
916 {
917 turn_off_face (f, glyph->face_id);
918 tty_turn_off_highlight (tty);
919 }
920 }
921
922 cmcheckmagic (tty);
923 }
924
925 /* An implementation of delete_glyphs for termcap frames. */
926
927 static void
928 tty_delete_glyphs (struct frame *f, int n)
929 {
930 char *buf;
931 register int i;
932
933 struct tty_display_info *tty = FRAME_TTY (f);
934
935 if (tty->delete_in_insert_mode)
936 {
937 tty_turn_on_insert (tty);
938 }
939 else
940 {
941 tty_turn_off_insert (tty);
942 OUTPUT_IF (tty, tty->TS_delete_mode);
943 }
944
945 if (tty->TS_del_multi_chars)
946 {
947 buf = tparam (tty->TS_del_multi_chars, 0, 0, n, 0, 0, 0);
948 OUTPUT1 (tty, buf);
949 xfree (buf);
950 }
951 else
952 for (i = 0; i < n; i++)
953 OUTPUT1 (tty, tty->TS_del_char);
954 if (!tty->delete_in_insert_mode)
955 OUTPUT_IF (tty, tty->TS_end_delete_mode);
956 }
957 \f
958 /* An implementation of ins_del_lines for termcap frames. */
959
960 static void
961 tty_ins_del_lines (struct frame *f, int vpos, int n)
962 {
963 struct tty_display_info *tty = FRAME_TTY (f);
964 const char *multi =
965 n > 0 ? tty->TS_ins_multi_lines : tty->TS_del_multi_lines;
966 const char *single = n > 0 ? tty->TS_ins_line : tty->TS_del_line;
967 const char *scroll = n > 0 ? tty->TS_rev_scroll : tty->TS_fwd_scroll;
968
969 int i = eabs (n);
970 char *buf;
971
972 /* If the lines below the insertion are being pushed
973 into the end of the window, this is the same as clearing;
974 and we know the lines are already clear, since the matching
975 deletion has already been done. So can ignore this. */
976 /* If the lines below the deletion are blank lines coming
977 out of the end of the window, don't bother,
978 as there will be a matching inslines later that will flush them. */
979 if (FRAME_SCROLL_REGION_OK (f)
980 && vpos + i >= tty->specified_window)
981 return;
982 if (!FRAME_MEMORY_BELOW_FRAME (f)
983 && vpos + i >= FRAME_LINES (f))
984 return;
985
986 if (multi)
987 {
988 raw_cursor_to (f, vpos, 0);
989 tty_background_highlight (tty);
990 buf = tparam (multi, 0, 0, i, 0, 0, 0);
991 OUTPUT (tty, buf);
992 xfree (buf);
993 }
994 else if (single)
995 {
996 raw_cursor_to (f, vpos, 0);
997 tty_background_highlight (tty);
998 while (--i >= 0)
999 OUTPUT (tty, single);
1000 if (tty->TF_teleray)
1001 curX (tty) = 0;
1002 }
1003 else
1004 {
1005 tty_set_scroll_region (f, vpos, tty->specified_window);
1006 if (n < 0)
1007 raw_cursor_to (f, tty->specified_window - 1, 0);
1008 else
1009 raw_cursor_to (f, vpos, 0);
1010 tty_background_highlight (tty);
1011 while (--i >= 0)
1012 OUTPUTL (tty, scroll, tty->specified_window - vpos);
1013 tty_set_scroll_region (f, 0, tty->specified_window);
1014 }
1015
1016 if (!FRAME_SCROLL_REGION_OK (f)
1017 && FRAME_MEMORY_BELOW_FRAME (f)
1018 && n < 0)
1019 {
1020 cursor_to (f, FRAME_LINES (f) + n, 0);
1021 clear_to_end (f);
1022 }
1023 }
1024 \f
1025 /* Compute cost of sending "str", in characters,
1026 not counting any line-dependent padding. */
1027
1028 int
1029 string_cost (const char *str)
1030 {
1031 cost = 0;
1032 if (str)
1033 tputs (str, 0, evalcost);
1034 return cost;
1035 }
1036
1037 /* Compute cost of sending "str", in characters,
1038 counting any line-dependent padding at one line. */
1039
1040 static int
1041 string_cost_one_line (const char *str)
1042 {
1043 cost = 0;
1044 if (str)
1045 tputs (str, 1, evalcost);
1046 return cost;
1047 }
1048
1049 /* Compute per line amount of line-dependent padding,
1050 in tenths of characters. */
1051
1052 int
1053 per_line_cost (const char *str)
1054 {
1055 cost = 0;
1056 if (str)
1057 tputs (str, 0, evalcost);
1058 cost = - cost;
1059 if (str)
1060 tputs (str, 10, evalcost);
1061 return cost;
1062 }
1063
1064 /* char_ins_del_cost[n] is cost of inserting N characters.
1065 char_ins_del_cost[-n] is cost of deleting N characters.
1066 The length of this vector is based on max_frame_cols. */
1067
1068 int *char_ins_del_vector;
1069
1070 #define char_ins_del_cost(f) (&char_ins_del_vector[FRAME_COLS ((f))])
1071
1072 /* ARGSUSED */
1073 static void
1074 calculate_ins_del_char_costs (struct frame *f)
1075 {
1076 struct tty_display_info *tty = FRAME_TTY (f);
1077 int ins_startup_cost, del_startup_cost;
1078 int ins_cost_per_char, del_cost_per_char;
1079 register int i;
1080 register int *p;
1081
1082 if (tty->TS_ins_multi_chars)
1083 {
1084 ins_cost_per_char = 0;
1085 ins_startup_cost = string_cost_one_line (tty->TS_ins_multi_chars);
1086 }
1087 else if (tty->TS_ins_char || tty->TS_pad_inserted_char
1088 || (tty->TS_insert_mode && tty->TS_end_insert_mode))
1089 {
1090 ins_startup_cost = (30 * (string_cost (tty->TS_insert_mode)
1091 + string_cost (tty->TS_end_insert_mode))) / 100;
1092 ins_cost_per_char = (string_cost_one_line (tty->TS_ins_char)
1093 + string_cost_one_line (tty->TS_pad_inserted_char));
1094 }
1095 else
1096 {
1097 ins_startup_cost = 9999;
1098 ins_cost_per_char = 0;
1099 }
1100
1101 if (tty->TS_del_multi_chars)
1102 {
1103 del_cost_per_char = 0;
1104 del_startup_cost = string_cost_one_line (tty->TS_del_multi_chars);
1105 }
1106 else if (tty->TS_del_char)
1107 {
1108 del_startup_cost = (string_cost (tty->TS_delete_mode)
1109 + string_cost (tty->TS_end_delete_mode));
1110 if (tty->delete_in_insert_mode)
1111 del_startup_cost /= 2;
1112 del_cost_per_char = string_cost_one_line (tty->TS_del_char);
1113 }
1114 else
1115 {
1116 del_startup_cost = 9999;
1117 del_cost_per_char = 0;
1118 }
1119
1120 /* Delete costs are at negative offsets */
1121 p = &char_ins_del_cost (f)[0];
1122 for (i = FRAME_COLS (f); --i >= 0;)
1123 *--p = (del_startup_cost += del_cost_per_char);
1124
1125 /* Doing nothing is free */
1126 p = &char_ins_del_cost (f)[0];
1127 *p++ = 0;
1128
1129 /* Insert costs are at positive offsets */
1130 for (i = FRAME_COLS (f); --i >= 0;)
1131 *p++ = (ins_startup_cost += ins_cost_per_char);
1132 }
1133
1134 void
1135 calculate_costs (struct frame *frame)
1136 {
1137 FRAME_COST_BAUD_RATE (frame) = baud_rate;
1138
1139 if (FRAME_TERMCAP_P (frame))
1140 {
1141 struct tty_display_info *tty = FRAME_TTY (frame);
1142 register const char *f = (tty->TS_set_scroll_region
1143 ? tty->TS_set_scroll_region
1144 : tty->TS_set_scroll_region_1);
1145
1146 FRAME_SCROLL_REGION_COST (frame) = string_cost (f);
1147
1148 tty->costs_set = 1;
1149
1150 /* These variables are only used for terminal stuff. They are
1151 allocated once for the terminal frame of X-windows emacs, but not
1152 used afterwards.
1153
1154 char_ins_del_vector (i.e., char_ins_del_cost) isn't used because
1155 X turns off char_ins_del_ok. */
1156
1157 max_frame_cols = max (max_frame_cols, FRAME_COLS (frame));
1158 if ((min (PTRDIFF_MAX, SIZE_MAX) / sizeof (int) - 1) / 2
1159 < max_frame_cols)
1160 memory_full (SIZE_MAX);
1161
1162 char_ins_del_vector =
1163 xrealloc (char_ins_del_vector,
1164 (sizeof (int) + 2 * sizeof (int) * max_frame_cols));
1165
1166 memset (char_ins_del_vector, 0,
1167 (sizeof (int) + 2 * sizeof (int) * max_frame_cols));
1168
1169
1170 if (f && (!tty->TS_ins_line && !tty->TS_del_line))
1171 do_line_insertion_deletion_costs (frame,
1172 tty->TS_rev_scroll, tty->TS_ins_multi_lines,
1173 tty->TS_fwd_scroll, tty->TS_del_multi_lines,
1174 f, f, 1);
1175 else
1176 do_line_insertion_deletion_costs (frame,
1177 tty->TS_ins_line, tty->TS_ins_multi_lines,
1178 tty->TS_del_line, tty->TS_del_multi_lines,
1179 0, 0, 1);
1180
1181 calculate_ins_del_char_costs (frame);
1182
1183 /* Don't use TS_repeat if its padding is worse than sending the chars */
1184 if (tty->TS_repeat && per_line_cost (tty->TS_repeat) * baud_rate < 9000)
1185 tty->RPov = string_cost (tty->TS_repeat);
1186 else
1187 tty->RPov = FRAME_COLS (frame) * 2;
1188
1189 cmcostinit (FRAME_TTY (frame)); /* set up cursor motion costs */
1190 }
1191 }
1192 \f
1193 struct fkey_table {
1194 const char *cap, *name;
1195 };
1196
1197 /* Termcap capability names that correspond directly to X keysyms.
1198 Some of these (marked "terminfo") aren't supplied by old-style
1199 (Berkeley) termcap entries. They're listed in X keysym order;
1200 except we put the keypad keys first, so that if they clash with
1201 other keys (as on the IBM PC keyboard) they get overridden.
1202 */
1203
1204 static const struct fkey_table keys[] =
1205 {
1206 {"kh", "home"}, /* termcap */
1207 {"kl", "left"}, /* termcap */
1208 {"ku", "up"}, /* termcap */
1209 {"kr", "right"}, /* termcap */
1210 {"kd", "down"}, /* termcap */
1211 {"%8", "prior"}, /* terminfo */
1212 {"%5", "next"}, /* terminfo */
1213 {"@7", "end"}, /* terminfo */
1214 {"@1", "begin"}, /* terminfo */
1215 {"*6", "select"}, /* terminfo */
1216 {"%9", "print"}, /* terminfo */
1217 {"@4", "execute"}, /* terminfo --- actually the `command' key */
1218 /*
1219 * "insert" --- see below
1220 */
1221 {"&8", "undo"}, /* terminfo */
1222 {"%0", "redo"}, /* terminfo */
1223 {"%7", "menu"}, /* terminfo --- actually the `options' key */
1224 {"@0", "find"}, /* terminfo */
1225 {"@2", "cancel"}, /* terminfo */
1226 {"%1", "help"}, /* terminfo */
1227 /*
1228 * "break" goes here, but can't be reliably intercepted with termcap
1229 */
1230 {"&4", "reset"}, /* terminfo --- actually `restart' */
1231 /*
1232 * "system" and "user" --- no termcaps
1233 */
1234 {"kE", "clearline"}, /* terminfo */
1235 {"kA", "insertline"}, /* terminfo */
1236 {"kL", "deleteline"}, /* terminfo */
1237 {"kI", "insertchar"}, /* terminfo */
1238 {"kD", "deletechar"}, /* terminfo */
1239 {"kB", "backtab"}, /* terminfo */
1240 /*
1241 * "kp_backtab", "kp-space", "kp-tab" --- no termcaps
1242 */
1243 {"@8", "kp-enter"}, /* terminfo */
1244 /*
1245 * "kp-f1", "kp-f2", "kp-f3" "kp-f4",
1246 * "kp-multiply", "kp-add", "kp-separator",
1247 * "kp-subtract", "kp-decimal", "kp-divide", "kp-0";
1248 * --- no termcaps for any of these.
1249 */
1250 {"K4", "kp-1"}, /* terminfo */
1251 /*
1252 * "kp-2" --- no termcap
1253 */
1254 {"K5", "kp-3"}, /* terminfo */
1255 /*
1256 * "kp-4" --- no termcap
1257 */
1258 {"K2", "kp-5"}, /* terminfo */
1259 /*
1260 * "kp-6" --- no termcap
1261 */
1262 {"K1", "kp-7"}, /* terminfo */
1263 /*
1264 * "kp-8" --- no termcap
1265 */
1266 {"K3", "kp-9"}, /* terminfo */
1267 /*
1268 * "kp-equal" --- no termcap
1269 */
1270 {"k1", "f1"},
1271 {"k2", "f2"},
1272 {"k3", "f3"},
1273 {"k4", "f4"},
1274 {"k5", "f5"},
1275 {"k6", "f6"},
1276 {"k7", "f7"},
1277 {"k8", "f8"},
1278 {"k9", "f9"},
1279
1280 {"&0", "S-cancel"}, /*shifted cancel key*/
1281 {"&9", "S-begin"}, /*shifted begin key*/
1282 {"*0", "S-find"}, /*shifted find key*/
1283 {"*1", "S-execute"}, /*shifted execute? actually shifted command key*/
1284 {"*4", "S-delete"}, /*shifted delete-character key*/
1285 {"*7", "S-end"}, /*shifted end key*/
1286 {"*8", "S-clearline"}, /*shifted clear-to end-of-line key*/
1287 {"#1", "S-help"}, /*shifted help key*/
1288 {"#2", "S-home"}, /*shifted home key*/
1289 {"#3", "S-insert"}, /*shifted insert-character key*/
1290 {"#4", "S-left"}, /*shifted left-arrow key*/
1291 {"%d", "S-menu"}, /*shifted menu? actually shifted options key*/
1292 {"%c", "S-next"}, /*shifted next key*/
1293 {"%e", "S-prior"}, /*shifted previous key*/
1294 {"%f", "S-print"}, /*shifted print key*/
1295 {"%g", "S-redo"}, /*shifted redo key*/
1296 {"%i", "S-right"}, /*shifted right-arrow key*/
1297 {"!3", "S-undo"} /*shifted undo key*/
1298 };
1299
1300 #ifndef DOS_NT
1301 static char **term_get_fkeys_address;
1302 static KBOARD *term_get_fkeys_kboard;
1303 static Lisp_Object term_get_fkeys_1 (void);
1304
1305 /* Find the escape codes sent by the function keys for Vinput_decode_map.
1306 This function scans the termcap function key sequence entries, and
1307 adds entries to Vinput_decode_map for each function key it finds. */
1308
1309 static void
1310 term_get_fkeys (char **address, KBOARD *kboard)
1311 {
1312 /* We run the body of the function (term_get_fkeys_1) and ignore all Lisp
1313 errors during the call. The only errors should be from Fdefine_key
1314 when given a key sequence containing an invalid prefix key. If the
1315 termcap defines function keys which use a prefix that is already bound
1316 to a command by the default bindings, we should silently ignore that
1317 function key specification, rather than giving the user an error and
1318 refusing to run at all on such a terminal. */
1319
1320 term_get_fkeys_address = address;
1321 term_get_fkeys_kboard = kboard;
1322 internal_condition_case (term_get_fkeys_1, Qerror, Fidentity);
1323 }
1324
1325 static Lisp_Object
1326 term_get_fkeys_1 (void)
1327 {
1328 int i;
1329
1330 char **address = term_get_fkeys_address;
1331 KBOARD *kboard = term_get_fkeys_kboard;
1332
1333 /* This can happen if CANNOT_DUMP or with strange options. */
1334 if (!KEYMAPP (KVAR (kboard, Vinput_decode_map)))
1335 kset_input_decode_map (kboard, Fmake_sparse_keymap (Qnil));
1336
1337 for (i = 0; i < (sizeof (keys) / sizeof (keys[0])); i++)
1338 {
1339 char *sequence = tgetstr (keys[i].cap, address);
1340 if (sequence)
1341 Fdefine_key (KVAR (kboard, Vinput_decode_map), build_string (sequence),
1342 Fmake_vector (make_number (1),
1343 intern (keys[i].name)));
1344 }
1345
1346 /* The uses of the "k0" capability are inconsistent; sometimes it
1347 describes F10, whereas othertimes it describes F0 and "k;" describes F10.
1348 We will attempt to politely accommodate both systems by testing for
1349 "k;", and if it is present, assuming that "k0" denotes F0, otherwise F10.
1350 */
1351 {
1352 const char *k_semi = tgetstr ("k;", address);
1353 const char *k0 = tgetstr ("k0", address);
1354 const char *k0_name = "f10";
1355
1356 if (k_semi)
1357 {
1358 if (k0)
1359 /* Define f0 first, so that f10 takes precedence in case the
1360 key sequences happens to be the same. */
1361 Fdefine_key (KVAR (kboard, Vinput_decode_map), build_string (k0),
1362 Fmake_vector (make_number (1), intern ("f0")));
1363 Fdefine_key (KVAR (kboard, Vinput_decode_map), build_string (k_semi),
1364 Fmake_vector (make_number (1), intern ("f10")));
1365 }
1366 else if (k0)
1367 Fdefine_key (KVAR (kboard, Vinput_decode_map), build_string (k0),
1368 Fmake_vector (make_number (1), intern (k0_name)));
1369 }
1370
1371 /* Set up cookies for numbered function keys above f10. */
1372 {
1373 char fcap[3], fkey[4];
1374
1375 fcap[0] = 'F'; fcap[2] = '\0';
1376 for (i = 11; i < 64; i++)
1377 {
1378 if (i <= 19)
1379 fcap[1] = '1' + i - 11;
1380 else if (i <= 45)
1381 fcap[1] = 'A' + i - 20;
1382 else
1383 fcap[1] = 'a' + i - 46;
1384
1385 {
1386 char *sequence = tgetstr (fcap, address);
1387 if (sequence)
1388 {
1389 sprintf (fkey, "f%d", i);
1390 Fdefine_key (KVAR (kboard, Vinput_decode_map), build_string (sequence),
1391 Fmake_vector (make_number (1),
1392 intern (fkey)));
1393 }
1394 }
1395 }
1396 }
1397
1398 /*
1399 * Various mappings to try and get a better fit.
1400 */
1401 {
1402 #define CONDITIONAL_REASSIGN(cap1, cap2, sym) \
1403 if (!tgetstr (cap1, address)) \
1404 { \
1405 char *sequence = tgetstr (cap2, address); \
1406 if (sequence) \
1407 Fdefine_key (KVAR (kboard, Vinput_decode_map), build_string (sequence), \
1408 Fmake_vector (make_number (1), \
1409 intern (sym))); \
1410 }
1411
1412 /* if there's no key_next keycap, map key_npage to `next' keysym */
1413 CONDITIONAL_REASSIGN ("%5", "kN", "next");
1414 /* if there's no key_prev keycap, map key_ppage to `previous' keysym */
1415 CONDITIONAL_REASSIGN ("%8", "kP", "prior");
1416 /* if there's no key_dc keycap, map key_ic to `insert' keysym */
1417 CONDITIONAL_REASSIGN ("kD", "kI", "insert");
1418 /* if there's no key_end keycap, map key_ll to 'end' keysym */
1419 CONDITIONAL_REASSIGN ("@7", "kH", "end");
1420
1421 /* IBM has their own non-standard dialect of terminfo.
1422 If the standard name isn't found, try the IBM name. */
1423 CONDITIONAL_REASSIGN ("kB", "KO", "backtab");
1424 CONDITIONAL_REASSIGN ("@4", "kJ", "execute"); /* actually "action" */
1425 CONDITIONAL_REASSIGN ("@4", "kc", "execute"); /* actually "command" */
1426 CONDITIONAL_REASSIGN ("%7", "ki", "menu");
1427 CONDITIONAL_REASSIGN ("@7", "kw", "end");
1428 CONDITIONAL_REASSIGN ("F1", "k<", "f11");
1429 CONDITIONAL_REASSIGN ("F2", "k>", "f12");
1430 CONDITIONAL_REASSIGN ("%1", "kq", "help");
1431 CONDITIONAL_REASSIGN ("*6", "kU", "select");
1432 #undef CONDITIONAL_REASSIGN
1433 }
1434
1435 return Qnil;
1436 }
1437 #endif /* not DOS_NT */
1438
1439 \f
1440 /***********************************************************************
1441 Character Display Information
1442 ***********************************************************************/
1443 static void append_glyph (struct it *);
1444 static void append_composite_glyph (struct it *);
1445 static void produce_composite_glyph (struct it *);
1446 static void append_glyphless_glyph (struct it *, int, const char *);
1447 static void produce_glyphless_glyph (struct it *, Lisp_Object);
1448
1449 /* Append glyphs to IT's glyph_row. Called from produce_glyphs for
1450 terminal frames if IT->glyph_row != NULL. IT->char_to_display is
1451 the character for which to produce glyphs; IT->face_id contains the
1452 character's face. Padding glyphs are appended if IT->c has a
1453 IT->pixel_width > 1. */
1454
1455 static void
1456 append_glyph (struct it *it)
1457 {
1458 struct glyph *glyph, *end;
1459 int i;
1460
1461 eassert (it->glyph_row);
1462 glyph = (it->glyph_row->glyphs[it->area]
1463 + it->glyph_row->used[it->area]);
1464 end = it->glyph_row->glyphs[1 + it->area];
1465
1466 /* If the glyph row is reversed, we need to prepend the glyph rather
1467 than append it. */
1468 if (it->glyph_row->reversed_p && it->area == TEXT_AREA)
1469 {
1470 struct glyph *g;
1471 int move_by = it->pixel_width;
1472
1473 /* Make room for the new glyphs. */
1474 if (move_by > end - glyph) /* don't overstep end of this area */
1475 move_by = end - glyph;
1476 for (g = glyph - 1; g >= it->glyph_row->glyphs[it->area]; g--)
1477 g[move_by] = *g;
1478 glyph = it->glyph_row->glyphs[it->area];
1479 end = glyph + move_by;
1480 }
1481
1482 /* BIDI Note: we put the glyphs of a "multi-pixel" character left to
1483 right, even in the REVERSED_P case, since (a) all of its u.ch are
1484 identical, and (b) the PADDING_P flag needs to be set for the
1485 leftmost one, because we write to the terminal left-to-right. */
1486 for (i = 0;
1487 i < it->pixel_width && glyph < end;
1488 ++i)
1489 {
1490 glyph->type = CHAR_GLYPH;
1491 glyph->pixel_width = 1;
1492 glyph->u.ch = it->char_to_display;
1493 glyph->face_id = it->face_id;
1494 glyph->padding_p = i > 0;
1495 glyph->charpos = CHARPOS (it->position);
1496 glyph->object = it->object;
1497 if (it->bidi_p)
1498 {
1499 glyph->resolved_level = it->bidi_it.resolved_level;
1500 if ((it->bidi_it.type & 7) != it->bidi_it.type)
1501 emacs_abort ();
1502 glyph->bidi_type = it->bidi_it.type;
1503 }
1504 else
1505 {
1506 glyph->resolved_level = 0;
1507 glyph->bidi_type = UNKNOWN_BT;
1508 }
1509
1510 ++it->glyph_row->used[it->area];
1511 ++glyph;
1512 }
1513 }
1514
1515 /* For external use. */
1516 void
1517 tty_append_glyph (struct it *it)
1518 {
1519 append_glyph (it);
1520 }
1521
1522
1523 /* Produce glyphs for the display element described by IT. *IT
1524 specifies what we want to produce a glyph for (character, image, ...),
1525 and where in the glyph matrix we currently are (glyph row and hpos).
1526 produce_glyphs fills in output fields of *IT with information such as the
1527 pixel width and height of a character, and maybe output actual glyphs at
1528 the same time if IT->glyph_row is non-null. For an overview, see
1529 the explanation in dispextern.h, before the definition of the
1530 display_element_type enumeration.
1531
1532 produce_glyphs also stores the result of glyph width, ascent
1533 etc. computations in *IT.
1534
1535 IT->glyph_row may be null, in which case produce_glyphs does not
1536 actually fill in the glyphs. This is used in the move_* functions
1537 in xdisp.c for text width and height computations.
1538
1539 Callers usually don't call produce_glyphs directly;
1540 instead they use the macro PRODUCE_GLYPHS. */
1541
1542 void
1543 produce_glyphs (struct it *it)
1544 {
1545 /* If a hook is installed, let it do the work. */
1546
1547 /* Nothing but characters are supported on terminal frames. */
1548 eassert (it->what == IT_CHARACTER
1549 || it->what == IT_COMPOSITION
1550 || it->what == IT_STRETCH
1551 || it->what == IT_GLYPHLESS);
1552
1553 if (it->what == IT_STRETCH)
1554 {
1555 produce_stretch_glyph (it);
1556 goto done;
1557 }
1558
1559 if (it->what == IT_COMPOSITION)
1560 {
1561 produce_composite_glyph (it);
1562 goto done;
1563 }
1564
1565 if (it->what == IT_GLYPHLESS)
1566 {
1567 produce_glyphless_glyph (it, Qnil);
1568 goto done;
1569 }
1570
1571 if (it->char_to_display >= 040 && it->char_to_display < 0177)
1572 {
1573 it->pixel_width = it->nglyphs = 1;
1574 if (it->glyph_row)
1575 append_glyph (it);
1576 }
1577 else if (it->char_to_display == '\n')
1578 it->pixel_width = it->nglyphs = 0;
1579 else if (it->char_to_display == '\t')
1580 {
1581 int absolute_x = (it->current_x
1582 + it->continuation_lines_width);
1583 int next_tab_x
1584 = (((1 + absolute_x + it->tab_width - 1)
1585 / it->tab_width)
1586 * it->tab_width);
1587 int nspaces;
1588
1589 /* If part of the TAB has been displayed on the previous line
1590 which is continued now, continuation_lines_width will have
1591 been incremented already by the part that fitted on the
1592 continued line. So, we will get the right number of spaces
1593 here. */
1594 nspaces = next_tab_x - absolute_x;
1595
1596 if (it->glyph_row)
1597 {
1598 int n = nspaces;
1599
1600 it->char_to_display = ' ';
1601 it->pixel_width = it->len = 1;
1602
1603 while (n--)
1604 append_glyph (it);
1605 }
1606
1607 it->pixel_width = nspaces;
1608 it->nglyphs = nspaces;
1609 }
1610 else if (CHAR_BYTE8_P (it->char_to_display))
1611 {
1612 /* Coming here means that we must send the raw 8-bit byte as is
1613 to the terminal. Although there's no way to know how many
1614 columns it occupies on a screen, it is a good assumption that
1615 a single byte code has 1-column width. */
1616 it->pixel_width = it->nglyphs = 1;
1617 if (it->glyph_row)
1618 append_glyph (it);
1619 }
1620 else
1621 {
1622 Lisp_Object charset_list = FRAME_TERMINAL (it->f)->charset_list;
1623
1624 if (char_charset (it->char_to_display, charset_list, NULL))
1625 {
1626 it->pixel_width = CHAR_WIDTH (it->char_to_display);
1627 it->nglyphs = it->pixel_width;
1628 if (it->glyph_row)
1629 append_glyph (it);
1630 }
1631 else
1632 {
1633 Lisp_Object acronym = lookup_glyphless_char_display (-1, it);
1634
1635 eassert (it->what == IT_GLYPHLESS);
1636 produce_glyphless_glyph (it, acronym);
1637 }
1638 }
1639
1640 done:
1641 /* Advance current_x by the pixel width as a convenience for
1642 the caller. */
1643 if (it->area == TEXT_AREA)
1644 it->current_x += it->pixel_width;
1645 it->ascent = it->max_ascent = it->phys_ascent = it->max_phys_ascent = 0;
1646 it->descent = it->max_descent = it->phys_descent = it->max_phys_descent = 1;
1647 }
1648
1649 /* Append glyphs to IT's glyph_row for the composition IT->cmp_id.
1650 Called from produce_composite_glyph for terminal frames if
1651 IT->glyph_row != NULL. IT->face_id contains the character's
1652 face. */
1653
1654 static void
1655 append_composite_glyph (struct it *it)
1656 {
1657 struct glyph *glyph;
1658
1659 eassert (it->glyph_row);
1660 glyph = it->glyph_row->glyphs[it->area] + it->glyph_row->used[it->area];
1661 if (glyph < it->glyph_row->glyphs[1 + it->area])
1662 {
1663 /* If the glyph row is reversed, we need to prepend the glyph
1664 rather than append it. */
1665 if (it->glyph_row->reversed_p && it->area == TEXT_AREA)
1666 {
1667 struct glyph *g;
1668
1669 /* Make room for the new glyph. */
1670 for (g = glyph - 1; g >= it->glyph_row->glyphs[it->area]; g--)
1671 g[1] = *g;
1672 glyph = it->glyph_row->glyphs[it->area];
1673 }
1674 glyph->type = COMPOSITE_GLYPH;
1675 glyph->pixel_width = it->pixel_width;
1676 glyph->u.cmp.id = it->cmp_it.id;
1677 if (it->cmp_it.ch < 0)
1678 {
1679 glyph->u.cmp.automatic = 0;
1680 glyph->u.cmp.id = it->cmp_it.id;
1681 }
1682 else
1683 {
1684 glyph->u.cmp.automatic = 1;
1685 glyph->u.cmp.id = it->cmp_it.id;
1686 glyph->slice.cmp.from = it->cmp_it.from;
1687 glyph->slice.cmp.to = it->cmp_it.to - 1;
1688 }
1689
1690 glyph->face_id = it->face_id;
1691 glyph->padding_p = 0;
1692 glyph->charpos = CHARPOS (it->position);
1693 glyph->object = it->object;
1694 if (it->bidi_p)
1695 {
1696 glyph->resolved_level = it->bidi_it.resolved_level;
1697 if ((it->bidi_it.type & 7) != it->bidi_it.type)
1698 emacs_abort ();
1699 glyph->bidi_type = it->bidi_it.type;
1700 }
1701 else
1702 {
1703 glyph->resolved_level = 0;
1704 glyph->bidi_type = UNKNOWN_BT;
1705 }
1706
1707 ++it->glyph_row->used[it->area];
1708 ++glyph;
1709 }
1710 }
1711
1712
1713 /* Produce a composite glyph for iterator IT. IT->cmp_id is the ID of
1714 the composition. We simply produces components of the composition
1715 assuming that the terminal has a capability to layout/render it
1716 correctly. */
1717
1718 static void
1719 produce_composite_glyph (struct it *it)
1720 {
1721 if (it->cmp_it.ch < 0)
1722 {
1723 struct composition *cmp = composition_table[it->cmp_it.id];
1724
1725 it->pixel_width = cmp->width;
1726 }
1727 else
1728 {
1729 Lisp_Object gstring = composition_gstring_from_id (it->cmp_it.id);
1730
1731 it->pixel_width = composition_gstring_width (gstring, it->cmp_it.from,
1732 it->cmp_it.to, NULL);
1733 }
1734 it->nglyphs = 1;
1735 if (it->glyph_row)
1736 append_composite_glyph (it);
1737 }
1738
1739
1740 /* Append a glyph for a glyphless character to IT->glyph_row. FACE_ID
1741 is a face ID to be used for the glyph. What is actually appended
1742 are glyphs of type CHAR_GLYPH whose characters are in STR (which
1743 comes from it->nglyphs bytes). */
1744
1745 static void
1746 append_glyphless_glyph (struct it *it, int face_id, const char *str)
1747 {
1748 struct glyph *glyph, *end;
1749 int i;
1750
1751 eassert (it->glyph_row);
1752 glyph = it->glyph_row->glyphs[it->area] + it->glyph_row->used[it->area];
1753 end = it->glyph_row->glyphs[1 + it->area];
1754
1755 /* If the glyph row is reversed, we need to prepend the glyph rather
1756 than append it. */
1757 if (it->glyph_row->reversed_p && it->area == TEXT_AREA)
1758 {
1759 struct glyph *g;
1760 int move_by = it->pixel_width;
1761
1762 /* Make room for the new glyphs. */
1763 if (move_by > end - glyph) /* don't overstep end of this area */
1764 move_by = end - glyph;
1765 for (g = glyph - 1; g >= it->glyph_row->glyphs[it->area]; g--)
1766 g[move_by] = *g;
1767 glyph = it->glyph_row->glyphs[it->area];
1768 end = glyph + move_by;
1769 }
1770
1771 if (glyph >= end)
1772 return;
1773 glyph->type = CHAR_GLYPH;
1774 glyph->pixel_width = 1;
1775 glyph->face_id = face_id;
1776 glyph->padding_p = 0;
1777 glyph->charpos = CHARPOS (it->position);
1778 glyph->object = it->object;
1779 if (it->bidi_p)
1780 {
1781 glyph->resolved_level = it->bidi_it.resolved_level;
1782 if ((it->bidi_it.type & 7) != it->bidi_it.type)
1783 emacs_abort ();
1784 glyph->bidi_type = it->bidi_it.type;
1785 }
1786 else
1787 {
1788 glyph->resolved_level = 0;
1789 glyph->bidi_type = UNKNOWN_BT;
1790 }
1791
1792 /* BIDI Note: we put the glyphs of characters left to right, even in
1793 the REVERSED_P case because we write to the terminal
1794 left-to-right. */
1795 for (i = 0; i < it->nglyphs && glyph < end; ++i)
1796 {
1797 if (i > 0)
1798 glyph[0] = glyph[-1];
1799 glyph->u.ch = str[i];
1800 ++it->glyph_row->used[it->area];
1801 ++glyph;
1802 }
1803 }
1804
1805 /* Produce glyphs for a glyphless character for iterator IT.
1806 IT->glyphless_method specifies which method to use for displaying
1807 the character. See the description of enum
1808 glyphless_display_method in dispextern.h for the details.
1809
1810 ACRONYM, if non-nil, is an acronym string for the character.
1811
1812 The glyphs actually produced are of type CHAR_GLYPH. */
1813
1814 static void
1815 produce_glyphless_glyph (struct it *it, Lisp_Object acronym)
1816 {
1817 int len, face_id = merge_glyphless_glyph_face (it);
1818 char buf[sizeof "\\x" + max (6, (sizeof it->c * CHAR_BIT + 3) / 4)];
1819 char const *str = " ";
1820
1821 if (it->glyphless_method == GLYPHLESS_DISPLAY_THIN_SPACE)
1822 {
1823 /* As there's no way to produce a thin space, we produce a space
1824 of canonical width. */
1825 len = 1;
1826 }
1827 else if (it->glyphless_method == GLYPHLESS_DISPLAY_EMPTY_BOX)
1828 {
1829 len = CHAR_WIDTH (it->c);
1830 if (len == 0)
1831 len = 1;
1832 else if (len > 4)
1833 len = 4;
1834 len = sprintf (buf, "[%.*s]", len, str);
1835 str = buf;
1836 }
1837 else
1838 {
1839 if (it->glyphless_method == GLYPHLESS_DISPLAY_ACRONYM)
1840 {
1841 if (! STRINGP (acronym) && CHAR_TABLE_P (Vglyphless_char_display))
1842 acronym = CHAR_TABLE_REF (Vglyphless_char_display, it->c);
1843 if (CONSP (acronym))
1844 acronym = XCDR (acronym);
1845 buf[0] = '[';
1846 str = STRINGP (acronym) ? SSDATA (acronym) : "";
1847 for (len = 0; len < 6 && str[len] && ASCII_BYTE_P (str[len]); len++)
1848 buf[1 + len] = str[len];
1849 buf[1 + len] = ']';
1850 len += 2;
1851 }
1852 else
1853 {
1854 eassert (it->glyphless_method == GLYPHLESS_DISPLAY_HEX_CODE);
1855 len = (it->c < 0x10000 ? sprintf (buf, "\\u%04X", it->c)
1856 : it->c <= MAX_UNICODE_CHAR ? sprintf (buf, "\\U%06X", it->c)
1857 : sprintf (buf, "\\x%06X", it->c));
1858 }
1859 str = buf;
1860 }
1861
1862 it->pixel_width = len;
1863 it->nglyphs = len;
1864 if (it->glyph_row)
1865 append_glyphless_glyph (it, face_id, str);
1866 }
1867
1868 \f
1869 /***********************************************************************
1870 Faces
1871 ***********************************************************************/
1872
1873 /* Value is non-zero if attribute ATTR may be used. ATTR should be
1874 one of the enumerators from enum no_color_bit, or a bit set built
1875 from them. Some display attributes may not be used together with
1876 color; the termcap capability `NC' specifies which ones. */
1877
1878 #define MAY_USE_WITH_COLORS_P(tty, ATTR) \
1879 (tty->TN_max_colors > 0 \
1880 ? (tty->TN_no_color_video & (ATTR)) == 0 \
1881 : 1)
1882
1883 /* Turn appearances of face FACE_ID on tty frame F on.
1884 FACE_ID is a realized face ID number, in the face cache. */
1885
1886 static void
1887 turn_on_face (struct frame *f, int face_id)
1888 {
1889 struct face *face = FACE_FROM_ID (f, face_id);
1890 long fg = face->foreground;
1891 long bg = face->background;
1892 struct tty_display_info *tty = FRAME_TTY (f);
1893
1894 /* Do this first because TS_end_standout_mode may be the same
1895 as TS_exit_attribute_mode, which turns all appearances off. */
1896 if (MAY_USE_WITH_COLORS_P (tty, NC_REVERSE))
1897 {
1898 if (tty->TN_max_colors > 0)
1899 {
1900 if (fg >= 0 && bg >= 0)
1901 {
1902 /* If the terminal supports colors, we can set them
1903 below without using reverse video. The face's fg
1904 and bg colors are set as they should appear on
1905 the screen, i.e. they take the inverse-video'ness
1906 of the face already into account. */
1907 }
1908 else if (inverse_video)
1909 {
1910 if (fg == FACE_TTY_DEFAULT_FG_COLOR
1911 || bg == FACE_TTY_DEFAULT_BG_COLOR)
1912 tty_toggle_highlight (tty);
1913 }
1914 else
1915 {
1916 if (fg == FACE_TTY_DEFAULT_BG_COLOR
1917 || bg == FACE_TTY_DEFAULT_FG_COLOR)
1918 tty_toggle_highlight (tty);
1919 }
1920 }
1921 else
1922 {
1923 /* If we can't display colors, use reverse video
1924 if the face specifies that. */
1925 if (inverse_video)
1926 {
1927 if (fg == FACE_TTY_DEFAULT_FG_COLOR
1928 || bg == FACE_TTY_DEFAULT_BG_COLOR)
1929 tty_toggle_highlight (tty);
1930 }
1931 else
1932 {
1933 if (fg == FACE_TTY_DEFAULT_BG_COLOR
1934 || bg == FACE_TTY_DEFAULT_FG_COLOR)
1935 tty_toggle_highlight (tty);
1936 }
1937 }
1938 }
1939
1940 if (face->tty_bold_p && MAY_USE_WITH_COLORS_P (tty, NC_BOLD))
1941 OUTPUT1_IF (tty, tty->TS_enter_bold_mode);
1942
1943 if (face->tty_italic_p && MAY_USE_WITH_COLORS_P (tty, NC_ITALIC))
1944 {
1945 if (tty->TS_enter_italic_mode)
1946 OUTPUT1 (tty, tty->TS_enter_italic_mode);
1947 else
1948 /* Italics mode is unavailable on many terminals. In that
1949 case, map slant to dimmed text; we want italic text to
1950 appear different and dimming is not otherwise used. */
1951 OUTPUT1 (tty, tty->TS_enter_dim_mode);
1952 }
1953
1954 if (face->tty_underline_p && MAY_USE_WITH_COLORS_P (tty, NC_UNDERLINE))
1955 OUTPUT1_IF (tty, tty->TS_enter_underline_mode);
1956
1957 if (tty->TN_max_colors > 0)
1958 {
1959 const char *ts;
1960 char *p;
1961
1962 ts = tty->standout_mode ? tty->TS_set_background : tty->TS_set_foreground;
1963 if (fg >= 0 && ts)
1964 {
1965 p = tparam (ts, NULL, 0, fg, 0, 0, 0);
1966 OUTPUT (tty, p);
1967 xfree (p);
1968 }
1969
1970 ts = tty->standout_mode ? tty->TS_set_foreground : tty->TS_set_background;
1971 if (bg >= 0 && ts)
1972 {
1973 p = tparam (ts, NULL, 0, bg, 0, 0, 0);
1974 OUTPUT (tty, p);
1975 xfree (p);
1976 }
1977 }
1978 }
1979
1980
1981 /* Turn off appearances of face FACE_ID on tty frame F. */
1982
1983 static void
1984 turn_off_face (struct frame *f, int face_id)
1985 {
1986 struct face *face = FACE_FROM_ID (f, face_id);
1987 struct tty_display_info *tty = FRAME_TTY (f);
1988
1989 eassert (face != NULL);
1990
1991 if (tty->TS_exit_attribute_mode)
1992 {
1993 /* Capability "me" will turn off appearance modes double-bright,
1994 half-bright, reverse-video, standout, underline. It may or
1995 may not turn off alt-char-mode. */
1996 if (face->tty_bold_p
1997 || face->tty_italic_p
1998 || face->tty_reverse_p
1999 || face->tty_underline_p)
2000 {
2001 OUTPUT1_IF (tty, tty->TS_exit_attribute_mode);
2002 if (strcmp (tty->TS_exit_attribute_mode, tty->TS_end_standout_mode) == 0)
2003 tty->standout_mode = 0;
2004 }
2005 }
2006 else
2007 {
2008 /* If we don't have "me" we can only have those appearances
2009 that have exit sequences defined. */
2010 if (face->tty_underline_p)
2011 OUTPUT_IF (tty, tty->TS_exit_underline_mode);
2012 }
2013
2014 /* Switch back to default colors. */
2015 if (tty->TN_max_colors > 0
2016 && ((face->foreground != FACE_TTY_DEFAULT_COLOR
2017 && face->foreground != FACE_TTY_DEFAULT_FG_COLOR)
2018 || (face->background != FACE_TTY_DEFAULT_COLOR
2019 && face->background != FACE_TTY_DEFAULT_BG_COLOR)))
2020 OUTPUT1_IF (tty, tty->TS_orig_pair);
2021 }
2022
2023
2024 /* Return true if the terminal on frame F supports all of the
2025 capabilities in CAPS simultaneously, with foreground and background
2026 colors FG and BG. */
2027
2028 bool
2029 tty_capable_p (struct tty_display_info *tty, unsigned int caps,
2030 unsigned long fg, unsigned long bg)
2031 {
2032 #define TTY_CAPABLE_P_TRY(tty, cap, TS, NC_bit) \
2033 if ((caps & (cap)) && (!(TS) || !MAY_USE_WITH_COLORS_P(tty, NC_bit))) \
2034 return 0;
2035
2036 TTY_CAPABLE_P_TRY (tty, TTY_CAP_INVERSE, tty->TS_standout_mode, NC_REVERSE);
2037 TTY_CAPABLE_P_TRY (tty, TTY_CAP_UNDERLINE, tty->TS_enter_underline_mode, NC_UNDERLINE);
2038 TTY_CAPABLE_P_TRY (tty, TTY_CAP_BOLD, tty->TS_enter_bold_mode, NC_BOLD);
2039 TTY_CAPABLE_P_TRY (tty, TTY_CAP_DIM, tty->TS_enter_dim_mode, NC_DIM);
2040 TTY_CAPABLE_P_TRY (tty, TTY_CAP_ITALIC, tty->TS_enter_italic_mode, NC_ITALIC);
2041
2042 /* We can do it! */
2043 return 1;
2044 }
2045
2046 /* Return non-zero if the terminal is capable to display colors. */
2047
2048 DEFUN ("tty-display-color-p", Ftty_display_color_p, Stty_display_color_p,
2049 0, 1, 0,
2050 doc: /* Return non-nil if the tty device TERMINAL can display colors.
2051
2052 TERMINAL can be a terminal object, a frame, or nil (meaning the
2053 selected frame's terminal). This function always returns nil if
2054 TERMINAL does not refer to a text terminal. */)
2055 (Lisp_Object terminal)
2056 {
2057 struct terminal *t = get_tty_terminal (terminal, 0);
2058 if (!t)
2059 return Qnil;
2060 else
2061 return t->display_info.tty->TN_max_colors > 0 ? Qt : Qnil;
2062 }
2063
2064 /* Return the number of supported colors. */
2065 DEFUN ("tty-display-color-cells", Ftty_display_color_cells,
2066 Stty_display_color_cells, 0, 1, 0,
2067 doc: /* Return the number of colors supported by the tty device TERMINAL.
2068
2069 TERMINAL can be a terminal object, a frame, or nil (meaning the
2070 selected frame's terminal). This function always returns 0 if
2071 TERMINAL does not refer to a text terminal. */)
2072 (Lisp_Object terminal)
2073 {
2074 struct terminal *t = get_tty_terminal (terminal, 0);
2075 if (!t)
2076 return make_number (0);
2077 else
2078 return make_number (t->display_info.tty->TN_max_colors);
2079 }
2080
2081 #ifndef DOS_NT
2082
2083 /* Declare here rather than in the function, as in the rest of Emacs,
2084 to work around an HPUX compiler bug (?). See
2085 http://lists.gnu.org/archive/html/emacs-devel/2007-08/msg00410.html */
2086 static int default_max_colors;
2087 static int default_max_pairs;
2088 static int default_no_color_video;
2089 static char *default_orig_pair;
2090 static char *default_set_foreground;
2091 static char *default_set_background;
2092
2093 /* Save or restore the default color-related capabilities of this
2094 terminal. */
2095 static void
2096 tty_default_color_capabilities (struct tty_display_info *tty, bool save)
2097 {
2098
2099 if (save)
2100 {
2101 xfree (default_orig_pair);
2102 default_orig_pair = tty->TS_orig_pair ? xstrdup (tty->TS_orig_pair) : NULL;
2103
2104 xfree (default_set_foreground);
2105 default_set_foreground = tty->TS_set_foreground ? xstrdup (tty->TS_set_foreground)
2106 : NULL;
2107
2108 xfree (default_set_background);
2109 default_set_background = tty->TS_set_background ? xstrdup (tty->TS_set_background)
2110 : NULL;
2111
2112 default_max_colors = tty->TN_max_colors;
2113 default_max_pairs = tty->TN_max_pairs;
2114 default_no_color_video = tty->TN_no_color_video;
2115 }
2116 else
2117 {
2118 tty->TS_orig_pair = default_orig_pair;
2119 tty->TS_set_foreground = default_set_foreground;
2120 tty->TS_set_background = default_set_background;
2121 tty->TN_max_colors = default_max_colors;
2122 tty->TN_max_pairs = default_max_pairs;
2123 tty->TN_no_color_video = default_no_color_video;
2124 }
2125 }
2126
2127 /* Setup one of the standard tty color schemes according to MODE.
2128 MODE's value is generally the number of colors which we want to
2129 support; zero means set up for the default capabilities, the ones
2130 we saw at init_tty time; -1 means turn off color support. */
2131 static void
2132 tty_setup_colors (struct tty_display_info *tty, int mode)
2133 {
2134 /* Canonicalize all negative values of MODE. */
2135 if (mode < -1)
2136 mode = -1;
2137
2138 switch (mode)
2139 {
2140 case -1: /* no colors at all */
2141 tty->TN_max_colors = 0;
2142 tty->TN_max_pairs = 0;
2143 tty->TN_no_color_video = 0;
2144 tty->TS_set_foreground = tty->TS_set_background = tty->TS_orig_pair = NULL;
2145 break;
2146 case 0: /* default colors, if any */
2147 default:
2148 tty_default_color_capabilities (tty, 0);
2149 break;
2150 case 8: /* 8 standard ANSI colors */
2151 tty->TS_orig_pair = "\033[0m";
2152 #ifdef TERMINFO
2153 tty->TS_set_foreground = "\033[3%p1%dm";
2154 tty->TS_set_background = "\033[4%p1%dm";
2155 #else
2156 tty->TS_set_foreground = "\033[3%dm";
2157 tty->TS_set_background = "\033[4%dm";
2158 #endif
2159 tty->TN_max_colors = 8;
2160 tty->TN_max_pairs = 64;
2161 tty->TN_no_color_video = 0;
2162 break;
2163 }
2164 }
2165
2166 void
2167 set_tty_color_mode (struct tty_display_info *tty, struct frame *f)
2168 {
2169 Lisp_Object tem, val;
2170 Lisp_Object color_mode;
2171 int mode;
2172 Lisp_Object tty_color_mode_alist
2173 = Fintern_soft (build_string ("tty-color-mode-alist"), Qnil);
2174
2175 tem = assq_no_quit (Qtty_color_mode, f->param_alist);
2176 val = CONSP (tem) ? XCDR (tem) : Qnil;
2177
2178 if (INTEGERP (val))
2179 color_mode = val;
2180 else if (SYMBOLP (tty_color_mode_alist))
2181 {
2182 tem = Fassq (val, Fsymbol_value (tty_color_mode_alist));
2183 color_mode = CONSP (tem) ? XCDR (tem) : Qnil;
2184 }
2185 else
2186 color_mode = Qnil;
2187
2188 mode = TYPE_RANGED_INTEGERP (int, color_mode) ? XINT (color_mode) : 0;
2189
2190 if (mode != tty->previous_color_mode)
2191 {
2192 tty->previous_color_mode = mode;
2193 tty_setup_colors (tty , mode);
2194 /* This recomputes all the faces given the new color definitions. */
2195 safe_call (1, intern ("tty-set-up-initial-frame-faces"));
2196 }
2197 }
2198
2199 #endif /* !DOS_NT */
2200
2201 \f
2202
2203 /* Return the tty display object specified by TERMINAL. */
2204
2205 static struct terminal *
2206 get_tty_terminal (Lisp_Object terminal, bool throw)
2207 {
2208 struct terminal *t = get_terminal (terminal, throw);
2209
2210 if (t && t->type != output_termcap && t->type != output_msdos_raw)
2211 {
2212 if (throw)
2213 error ("Device %d is not a termcap terminal device", t->id);
2214 else
2215 return NULL;
2216 }
2217
2218 return t;
2219 }
2220
2221 /* Return an active termcap device that uses the tty device with the
2222 given name.
2223
2224 This function ignores suspended devices.
2225
2226 Returns NULL if the named terminal device is not opened. */
2227
2228 struct terminal *
2229 get_named_tty (const char *name)
2230 {
2231 struct terminal *t;
2232
2233 eassert (name);
2234
2235 for (t = terminal_list; t; t = t->next_terminal)
2236 {
2237 if ((t->type == output_termcap || t->type == output_msdos_raw)
2238 && !strcmp (t->display_info.tty->name, name)
2239 && TERMINAL_ACTIVE_P (t))
2240 return t;
2241 }
2242
2243 return 0;
2244 }
2245
2246 \f
2247 DEFUN ("tty-type", Ftty_type, Stty_type, 0, 1, 0,
2248 doc: /* Return the type of the tty device that TERMINAL uses.
2249 Returns nil if TERMINAL is not on a tty device.
2250
2251 TERMINAL can be a terminal object, a frame, or nil (meaning the
2252 selected frame's terminal). */)
2253 (Lisp_Object terminal)
2254 {
2255 struct terminal *t = get_terminal (terminal, 1);
2256
2257 if (t->type != output_termcap && t->type != output_msdos_raw)
2258 return Qnil;
2259
2260 if (t->display_info.tty->type)
2261 return build_string (t->display_info.tty->type);
2262 else
2263 return Qnil;
2264 }
2265
2266 DEFUN ("controlling-tty-p", Fcontrolling_tty_p, Scontrolling_tty_p, 0, 1, 0,
2267 doc: /* Return non-nil if TERMINAL is the controlling tty of the Emacs process.
2268
2269 TERMINAL can be a terminal object, a frame, or nil (meaning the
2270 selected frame's terminal). This function always returns nil if
2271 TERMINAL is not on a tty device. */)
2272 (Lisp_Object terminal)
2273 {
2274 struct terminal *t = get_terminal (terminal, 1);
2275
2276 if ((t->type != output_termcap && t->type != output_msdos_raw)
2277 || strcmp (t->display_info.tty->name, DEV_TTY) != 0)
2278 return Qnil;
2279 else
2280 return Qt;
2281 }
2282
2283 DEFUN ("tty-no-underline", Ftty_no_underline, Stty_no_underline, 0, 1, 0,
2284 doc: /* Declare that the tty used by TERMINAL does not handle underlining.
2285 This is used to override the terminfo data, for certain terminals that
2286 do not really do underlining, but say that they do. This function has
2287 no effect if used on a non-tty terminal.
2288
2289 TERMINAL can be a terminal object, a frame or nil (meaning the
2290 selected frame's terminal). This function always returns nil if
2291 TERMINAL does not refer to a text terminal. */)
2292 (Lisp_Object terminal)
2293 {
2294 struct terminal *t = get_terminal (terminal, 1);
2295
2296 if (t->type == output_termcap)
2297 t->display_info.tty->TS_enter_underline_mode = 0;
2298 return Qnil;
2299 }
2300
2301 DEFUN ("tty-top-frame", Ftty_top_frame, Stty_top_frame, 0, 1, 0,
2302 doc: /* Return the topmost terminal frame on TERMINAL.
2303 TERMINAL can be a terminal object, a frame or nil (meaning the
2304 selected frame's terminal). This function returns nil if TERMINAL
2305 does not refer to a text terminal. Otherwise, it returns the
2306 top-most frame on the text terminal. */)
2307 (Lisp_Object terminal)
2308 {
2309 struct terminal *t = get_terminal (terminal, 1);
2310
2311 if (t->type == output_termcap)
2312 return t->display_info.tty->top_frame;
2313 return Qnil;
2314 }
2315
2316 \f
2317
2318 DEFUN ("suspend-tty", Fsuspend_tty, Ssuspend_tty, 0, 1, 0,
2319 doc: /* Suspend the terminal device TTY.
2320
2321 The device is restored to its default state, and Emacs ceases all
2322 access to the tty device. Frames that use the device are not deleted,
2323 but input is not read from them and if they change, their display is
2324 not updated.
2325
2326 TTY may be a terminal object, a frame, or nil for the terminal device
2327 of the currently selected frame.
2328
2329 This function runs `suspend-tty-functions' after suspending the
2330 device. The functions are run with one arg, the id of the suspended
2331 terminal device.
2332
2333 `suspend-tty' does nothing if it is called on a device that is already
2334 suspended.
2335
2336 A suspended tty may be resumed by calling `resume-tty' on it. */)
2337 (Lisp_Object tty)
2338 {
2339 struct terminal *t = get_tty_terminal (tty, 1);
2340 FILE *f;
2341
2342 if (!t)
2343 error ("Unknown tty device");
2344
2345 f = t->display_info.tty->input;
2346
2347 if (f)
2348 {
2349 /* First run `suspend-tty-functions' and then clean up the tty
2350 state because `suspend-tty-functions' might need to change
2351 the tty state. */
2352 Lisp_Object args[2];
2353 args[0] = intern ("suspend-tty-functions");
2354 XSETTERMINAL (args[1], t);
2355 Frun_hook_with_args (2, args);
2356
2357 reset_sys_modes (t->display_info.tty);
2358 delete_keyboard_wait_descriptor (fileno (f));
2359
2360 #ifndef MSDOS
2361 fclose (f);
2362 if (f != t->display_info.tty->output)
2363 fclose (t->display_info.tty->output);
2364 #endif
2365
2366 t->display_info.tty->input = 0;
2367 t->display_info.tty->output = 0;
2368
2369 if (FRAMEP (t->display_info.tty->top_frame))
2370 SET_FRAME_VISIBLE (XFRAME (t->display_info.tty->top_frame), 0);
2371
2372 }
2373
2374 /* Clear display hooks to prevent further output. */
2375 clear_tty_hooks (t);
2376
2377 return Qnil;
2378 }
2379
2380 DEFUN ("resume-tty", Fresume_tty, Sresume_tty, 0, 1, 0,
2381 doc: /* Resume the previously suspended terminal device TTY.
2382 The terminal is opened and reinitialized. Frames that are on the
2383 suspended terminal are revived.
2384
2385 It is an error to resume a terminal while another terminal is active
2386 on the same device.
2387
2388 This function runs `resume-tty-functions' after resuming the terminal.
2389 The functions are run with one arg, the id of the resumed terminal
2390 device.
2391
2392 `resume-tty' does nothing if it is called on a device that is not
2393 suspended.
2394
2395 TTY may be a terminal object, a frame, or nil (meaning the selected
2396 frame's terminal). */)
2397 (Lisp_Object tty)
2398 {
2399 struct terminal *t = get_tty_terminal (tty, 1);
2400 int fd;
2401
2402 if (!t)
2403 error ("Unknown tty device");
2404
2405 if (!t->display_info.tty->input)
2406 {
2407 if (get_named_tty (t->display_info.tty->name))
2408 error ("Cannot resume display while another display is active on the same device");
2409
2410 #ifdef MSDOS
2411 t->display_info.tty->output = stdout;
2412 t->display_info.tty->input = stdin;
2413 #else /* !MSDOS */
2414 fd = emacs_open (t->display_info.tty->name, O_RDWR | O_NOCTTY, 0);
2415 t->display_info.tty->input = t->display_info.tty->output
2416 = fd < 0 ? 0 : fdopen (fd, "w+");
2417
2418 if (! t->display_info.tty->input)
2419 {
2420 int open_errno = errno;
2421 emacs_close (fd);
2422 report_file_errno ("Cannot reopen tty device",
2423 build_string (t->display_info.tty->name),
2424 open_errno);
2425 }
2426
2427 if (!O_IGNORE_CTTY && strcmp (t->display_info.tty->name, DEV_TTY) != 0)
2428 dissociate_if_controlling_tty (fd);
2429 #endif
2430
2431 add_keyboard_wait_descriptor (fd);
2432
2433 if (FRAMEP (t->display_info.tty->top_frame))
2434 {
2435 struct frame *f = XFRAME (t->display_info.tty->top_frame);
2436 int width, height;
2437 int old_height = FRAME_COLS (f);
2438 int old_width = FRAME_LINES (f);
2439
2440 /* Check if terminal/window size has changed while the frame
2441 was suspended. */
2442 get_tty_size (fileno (t->display_info.tty->input), &width, &height);
2443 if (width != old_width || height != old_height)
2444 change_frame_size (f, height, width, 0, 0, 0);
2445 SET_FRAME_VISIBLE (XFRAME (t->display_info.tty->top_frame), 1);
2446 }
2447
2448 set_tty_hooks (t);
2449 init_sys_modes (t->display_info.tty);
2450
2451 {
2452 /* Run `resume-tty-functions'. */
2453 Lisp_Object args[2];
2454 args[0] = intern ("resume-tty-functions");
2455 XSETTERMINAL (args[1], t);
2456 Frun_hook_with_args (2, args);
2457 }
2458 }
2459
2460 set_tty_hooks (t);
2461
2462 return Qnil;
2463 }
2464
2465 \f
2466 /***********************************************************************
2467 Mouse
2468 ***********************************************************************/
2469
2470 #ifdef HAVE_GPM
2471
2472 #ifndef HAVE_WINDOW_SYSTEM
2473 void
2474 term_mouse_moveto (int x, int y)
2475 {
2476 /* TODO: how to set mouse position?
2477 const char *name;
2478 int fd;
2479 name = (const char *) ttyname (0);
2480 fd = emacs_open (name, O_WRONLY, 0);
2481 SOME_FUNCTION (x, y, fd);
2482 emacs_close (fd);
2483 last_mouse_x = x;
2484 last_mouse_y = y; */
2485 }
2486 #endif /* HAVE_WINDOW_SYSTEM */
2487
2488 /* Implementation of draw_row_with_mouse_face for TTY/GPM. */
2489 void
2490 tty_draw_row_with_mouse_face (struct window *w, struct glyph_row *row,
2491 int start_hpos, int end_hpos,
2492 enum draw_glyphs_face draw)
2493 {
2494 int nglyphs = end_hpos - start_hpos;
2495 struct frame *f = XFRAME (WINDOW_FRAME (w));
2496 struct tty_display_info *tty = FRAME_TTY (f);
2497 int face_id = tty->mouse_highlight.mouse_face_face_id;
2498 int save_x, save_y, pos_x, pos_y;
2499
2500 if (end_hpos >= row->used[TEXT_AREA])
2501 nglyphs = row->used[TEXT_AREA] - start_hpos;
2502
2503 pos_y = row->y + WINDOW_TOP_EDGE_Y (w);
2504 pos_x = row->used[LEFT_MARGIN_AREA] + start_hpos + WINDOW_LEFT_EDGE_X (w);
2505
2506 /* Save current cursor co-ordinates. */
2507 save_y = curY (tty);
2508 save_x = curX (tty);
2509 cursor_to (f, pos_y, pos_x);
2510
2511 if (draw == DRAW_MOUSE_FACE)
2512 tty_write_glyphs_with_face (f, row->glyphs[TEXT_AREA] + start_hpos,
2513 nglyphs, face_id);
2514 else if (draw == DRAW_NORMAL_TEXT)
2515 write_glyphs (f, row->glyphs[TEXT_AREA] + start_hpos, nglyphs);
2516
2517 cursor_to (f, save_y, save_x);
2518 }
2519
2520 static bool
2521 term_mouse_movement (struct frame *frame, Gpm_Event *event)
2522 {
2523 /* Has the mouse moved off the glyph it was on at the last sighting? */
2524 if (event->x != last_mouse_x || event->y != last_mouse_y)
2525 {
2526 frame->mouse_moved = 1;
2527 note_mouse_highlight (frame, event->x, event->y);
2528 /* Remember which glyph we're now on. */
2529 last_mouse_x = event->x;
2530 last_mouse_y = event->y;
2531 return 1;
2532 }
2533 return 0;
2534 }
2535
2536 /* Return the Time that corresponds to T. Wrap around on overflow. */
2537 static Time
2538 timeval_to_Time (struct timeval const *t)
2539 {
2540 Time s_1000, ms;
2541
2542 s_1000 = t->tv_sec;
2543 s_1000 *= 1000;
2544 ms = t->tv_usec / 1000;
2545 return s_1000 + ms;
2546 }
2547
2548 /* Return the current position of the mouse.
2549
2550 Set *f to the frame the mouse is in, or zero if the mouse is in no
2551 Emacs frame. If it is set to zero, all the other arguments are
2552 garbage.
2553
2554 Set *bar_window to Qnil, and *x and *y to the column and
2555 row of the character cell the mouse is over.
2556
2557 Set *timeptr to the time the mouse was at the returned position.
2558
2559 This clears mouse_moved until the next motion
2560 event arrives. */
2561 static void
2562 term_mouse_position (struct frame **fp, int insist, Lisp_Object *bar_window,
2563 enum scroll_bar_part *part, Lisp_Object *x,
2564 Lisp_Object *y, Time *timeptr)
2565 {
2566 struct timeval now;
2567
2568 *fp = SELECTED_FRAME ();
2569 (*fp)->mouse_moved = 0;
2570
2571 *bar_window = Qnil;
2572 *part = 0;
2573
2574 XSETINT (*x, last_mouse_x);
2575 XSETINT (*y, last_mouse_y);
2576 gettimeofday(&now, 0);
2577 *timeptr = timeval_to_Time (&now);
2578 }
2579
2580 /* Prepare a mouse-event in *RESULT for placement in the input queue.
2581
2582 If the event is a button press, then note that we have grabbed
2583 the mouse. */
2584
2585 static Lisp_Object
2586 term_mouse_click (struct input_event *result, Gpm_Event *event,
2587 struct frame *f)
2588 {
2589 struct timeval now;
2590 int i, j;
2591
2592 result->kind = GPM_CLICK_EVENT;
2593 for (i = 0, j = GPM_B_LEFT; i < 3; i++, j >>= 1 )
2594 {
2595 if (event->buttons & j) {
2596 result->code = i; /* button number */
2597 break;
2598 }
2599 }
2600 gettimeofday(&now, 0);
2601 result->timestamp = timeval_to_Time (&now);
2602
2603 if (event->type & GPM_UP)
2604 result->modifiers = up_modifier;
2605 else if (event->type & GPM_DOWN)
2606 result->modifiers = down_modifier;
2607 else
2608 result->modifiers = 0;
2609
2610 if (event->type & GPM_SINGLE)
2611 result->modifiers |= click_modifier;
2612
2613 if (event->type & GPM_DOUBLE)
2614 result->modifiers |= double_modifier;
2615
2616 if (event->type & GPM_TRIPLE)
2617 result->modifiers |= triple_modifier;
2618
2619 if (event->type & GPM_DRAG)
2620 result->modifiers |= drag_modifier;
2621
2622 if (!(event->type & (GPM_MOVE | GPM_DRAG))) {
2623
2624 /* 1 << KG_SHIFT */
2625 if (event->modifiers & (1 << 0))
2626 result->modifiers |= shift_modifier;
2627
2628 /* 1 << KG_CTRL */
2629 if (event->modifiers & (1 << 2))
2630 result->modifiers |= ctrl_modifier;
2631
2632 /* 1 << KG_ALT || KG_ALTGR */
2633 if (event->modifiers & (1 << 3)
2634 || event->modifiers & (1 << 1))
2635 result->modifiers |= meta_modifier;
2636 }
2637
2638 XSETINT (result->x, event->x);
2639 XSETINT (result->y, event->y);
2640 XSETFRAME (result->frame_or_window, f);
2641 result->arg = Qnil;
2642 return Qnil;
2643 }
2644
2645 int
2646 handle_one_term_event (struct tty_display_info *tty, Gpm_Event *event, struct input_event* hold_quit)
2647 {
2648 struct frame *f = XFRAME (tty->top_frame);
2649 struct input_event ie;
2650 bool do_help = 0;
2651 int count = 0;
2652
2653 EVENT_INIT (ie);
2654 ie.kind = NO_EVENT;
2655 ie.arg = Qnil;
2656
2657 if (event->type & (GPM_MOVE | GPM_DRAG)) {
2658 previous_help_echo_string = help_echo_string;
2659 help_echo_string = Qnil;
2660
2661 Gpm_DrawPointer (event->x, event->y, fileno (tty->output));
2662
2663 if (!term_mouse_movement (f, event))
2664 help_echo_string = previous_help_echo_string;
2665
2666 /* If the contents of the global variable help_echo_string
2667 has changed, generate a HELP_EVENT. */
2668 if (!NILP (help_echo_string)
2669 || !NILP (previous_help_echo_string))
2670 do_help = 1;
2671
2672 goto done;
2673 }
2674 else {
2675 f->mouse_moved = 0;
2676 term_mouse_click (&ie, event, f);
2677 }
2678
2679 done:
2680 if (ie.kind != NO_EVENT)
2681 {
2682 kbd_buffer_store_event_hold (&ie, hold_quit);
2683 count++;
2684 }
2685
2686 if (do_help
2687 && !(hold_quit && hold_quit->kind != NO_EVENT))
2688 {
2689 Lisp_Object frame;
2690
2691 if (f)
2692 XSETFRAME (frame, f);
2693 else
2694 frame = Qnil;
2695
2696 gen_help_event (help_echo_string, frame, help_echo_window,
2697 help_echo_object, help_echo_pos);
2698 count++;
2699 }
2700
2701 return count;
2702 }
2703
2704 DEFUN ("gpm-mouse-start", Fgpm_mouse_start, Sgpm_mouse_start,
2705 0, 0, 0,
2706 doc: /* Open a connection to Gpm.
2707 Gpm-mouse can only be activated for one tty at a time. */)
2708 (void)
2709 {
2710 struct frame *f = SELECTED_FRAME ();
2711 struct tty_display_info *tty
2712 = ((f)->output_method == output_termcap
2713 ? (f)->terminal->display_info.tty : NULL);
2714 Gpm_Connect connection;
2715
2716 if (!tty)
2717 error ("Gpm-mouse only works in the GNU/Linux console");
2718 if (gpm_tty == tty)
2719 return Qnil; /* Already activated, nothing to do. */
2720 if (gpm_tty)
2721 error ("Gpm-mouse can only be activated for one tty at a time");
2722
2723 connection.eventMask = ~0;
2724 connection.defaultMask = ~GPM_HARD;
2725 connection.maxMod = ~0;
2726 connection.minMod = 0;
2727 gpm_zerobased = 1;
2728
2729 if (Gpm_Open (&connection, 0) < 0)
2730 error ("Gpm-mouse failed to connect to the gpm daemon");
2731 else
2732 {
2733 gpm_tty = tty;
2734 /* `init_sys_modes' arranges for mouse movements sent through gpm_fd
2735 to generate SIGIOs. Apparently we need to call reset_sys_modes
2736 before calling init_sys_modes. */
2737 reset_sys_modes (tty);
2738 init_sys_modes (tty);
2739 add_gpm_wait_descriptor (gpm_fd);
2740 return Qnil;
2741 }
2742 }
2743
2744 void
2745 close_gpm (int fd)
2746 {
2747 if (fd >= 0)
2748 delete_gpm_wait_descriptor (fd);
2749 while (Gpm_Close()); /* close all the stack */
2750 gpm_tty = NULL;
2751 }
2752
2753 DEFUN ("gpm-mouse-stop", Fgpm_mouse_stop, Sgpm_mouse_stop,
2754 0, 0, 0,
2755 doc: /* Close a connection to Gpm. */)
2756 (void)
2757 {
2758 struct frame *f = SELECTED_FRAME ();
2759 struct tty_display_info *tty
2760 = ((f)->output_method == output_termcap
2761 ? (f)->terminal->display_info.tty : NULL);
2762
2763 if (!tty || gpm_tty != tty)
2764 return Qnil; /* Not activated on this terminal, nothing to do. */
2765
2766 close_gpm (gpm_fd);
2767 return Qnil;
2768 }
2769 #endif /* HAVE_GPM */
2770
2771 \f
2772 /***********************************************************************
2773 Menus
2774 ***********************************************************************/
2775
2776 #if defined (HAVE_MENUS) && !defined (MSDOS)
2777
2778 /* TTY menu implementation and main ideas are borrowed from msdos.c.
2779
2780 However, unlike on MSDOS, where the menu text is drawn directly to
2781 the display video memory, on a TTY we use display_string (see
2782 display_tty_menu_item in xdisp.c) to put the glyphs produced from
2783 the menu items directly into the frame's 'desired_matrix' glyph
2784 matrix, and then call update_frame_with_menu to deliver the results
2785 to the glass. The previous contents of the screen, in the form of
2786 the current_matrix, is stashed away, and used to restore screen
2787 contents when the menu selection changes or when the final
2788 selection is made and the menu should be popped down.
2789
2790 The idea of this implementation was suggested by Gerd Moellmann. */
2791
2792 #define TTYM_FAILURE -1
2793 #define TTYM_SUCCESS 1
2794 #define TTYM_NO_SELECT 2
2795 #define TTYM_IA_SELECT 3
2796 #define TTYM_NEXT 4
2797 #define TTYM_PREV 5
2798
2799 /* These hold text of the current and the previous menu help messages. */
2800 static const char *menu_help_message, *prev_menu_help_message;
2801 /* Pane number and item number of the menu item which generated the
2802 last menu help message. */
2803 static int menu_help_paneno, menu_help_itemno;
2804
2805 static Lisp_Object Qtty_menu_navigation_map, Qtty_menu_exit;
2806 static Lisp_Object Qtty_menu_prev_item, Qtty_menu_next_item;
2807 static Lisp_Object Qtty_menu_next_menu, Qtty_menu_prev_menu;
2808 static Lisp_Object Qtty_menu_select, Qtty_menu_ignore;
2809 static Lisp_Object Qtty_menu_mouse_movement;
2810
2811 typedef struct tty_menu_struct
2812 {
2813 int count;
2814 char **text;
2815 struct tty_menu_struct **submenu;
2816 int *panenumber; /* Also used as enabled flag. */
2817 ptrdiff_t allocated;
2818 int panecount;
2819 int width;
2820 const char **help_text;
2821 } tty_menu;
2822
2823 /* Create a brand new menu structure. */
2824
2825 static tty_menu *
2826 tty_menu_create (void)
2827 {
2828 return xzalloc (sizeof *tty_menu_create ());
2829 }
2830
2831 /* Allocate some (more) memory for MENU ensuring that there is room for one
2832 more item. */
2833
2834 static void
2835 tty_menu_make_room (tty_menu *menu)
2836 {
2837 if (menu->allocated == menu->count)
2838 {
2839 ptrdiff_t allocated = menu->allocated;
2840 menu->text = xpalloc (menu->text, &allocated, 1, -1, sizeof *menu->text);
2841 menu->text = xrealloc (menu->text, allocated * sizeof *menu->text);
2842 menu->submenu = xrealloc (menu->submenu,
2843 allocated * sizeof *menu->submenu);
2844 menu->panenumber = xrealloc (menu->panenumber,
2845 allocated * sizeof *menu->panenumber);
2846 menu->help_text = xrealloc (menu->help_text,
2847 allocated * sizeof *menu->help_text);
2848 menu->allocated = allocated;
2849 }
2850 }
2851
2852 /* Search the given menu structure for a given pane number. */
2853
2854 static tty_menu *
2855 tty_menu_search_pane (tty_menu *menu, int pane)
2856 {
2857 int i;
2858 tty_menu *try;
2859
2860 for (i = 0; i < menu->count; i++)
2861 if (menu->submenu[i])
2862 {
2863 if (pane == menu->panenumber[i])
2864 return menu->submenu[i];
2865 if ((try = tty_menu_search_pane (menu->submenu[i], pane)))
2866 return try;
2867 }
2868 return (tty_menu *) 0;
2869 }
2870
2871 /* Determine how much screen space a given menu needs. */
2872
2873 static void
2874 tty_menu_calc_size (tty_menu *menu, int *width, int *height)
2875 {
2876 int i, h2, w2, maxsubwidth, maxheight;
2877
2878 maxsubwidth = menu->width;
2879 maxheight = menu->count;
2880 for (i = 0; i < menu->count; i++)
2881 {
2882 if (menu->submenu[i])
2883 {
2884 tty_menu_calc_size (menu->submenu[i], &w2, &h2);
2885 if (w2 > maxsubwidth) maxsubwidth = w2;
2886 if (i + h2 > maxheight) maxheight = i + h2;
2887 }
2888 }
2889 *width = maxsubwidth;
2890 *height = maxheight;
2891 }
2892
2893 static void
2894 mouse_get_xy (int *x, int *y)
2895 {
2896 struct frame *sf = SELECTED_FRAME ();
2897 Lisp_Object lmx = Qnil, lmy = Qnil, lisp_dummy;
2898 enum scroll_bar_part part_dummy;
2899 Time time_dummy;
2900
2901 if (FRAME_TERMINAL (sf)->mouse_position_hook)
2902 (*FRAME_TERMINAL (sf)->mouse_position_hook) (&sf, -1,
2903 &lisp_dummy, &part_dummy,
2904 &lmx, &lmy,
2905 &time_dummy);
2906 if (!NILP (lmx))
2907 {
2908 *x = XINT (lmx);
2909 *y = XINT (lmy);
2910 }
2911 }
2912
2913 /* Display MENU at (X,Y) using FACES. */
2914
2915 static void
2916 tty_menu_display (tty_menu *menu, int x, int y, int pn, int *faces,
2917 int mx, int my, int disp_help)
2918 {
2919 int i, face, width, enabled, mousehere, row, col;
2920 struct frame *sf = SELECTED_FRAME ();
2921 struct tty_display_info *tty = FRAME_TTY (sf);
2922
2923 menu_help_message = NULL;
2924
2925 width = menu->width;
2926 col = cursorX (tty);
2927 row = cursorY (tty);
2928 for (i = 0; i < menu->count; i++)
2929 {
2930 int max_width = width + 2; /* +2 for padding blanks on each side */
2931
2932 cursor_to (sf, y + i, x);
2933 if (menu->submenu[i])
2934 max_width += 2; /* for displaying " >" after the item */
2935 enabled
2936 = (!menu->submenu[i] && menu->panenumber[i]) || (menu->submenu[i]);
2937 mousehere = (y + i == my && x <= mx && mx < x + max_width);
2938 face = faces[enabled + mousehere * 2];
2939 /* Display the menu help string for the i-th menu item even if
2940 the menu item is currently disabled. That's what the GUI
2941 code does. */
2942 if (disp_help && enabled + mousehere * 2 >= 2)
2943 {
2944 menu_help_message = menu->help_text[i];
2945 menu_help_paneno = pn - 1;
2946 menu_help_itemno = i;
2947 }
2948 display_tty_menu_item (menu->text[i], max_width, face, x, y + i,
2949 menu->submenu[i] != NULL);
2950 }
2951 update_frame_with_menu (sf);
2952 cursor_to (sf, row, col);
2953 }
2954
2955 /* --------------------------- X Menu emulation ---------------------- */
2956
2957 /* Create a new pane and place it on the outer-most level. */
2958
2959 static int
2960 tty_menu_add_pane (tty_menu *menu, const char *txt)
2961 {
2962 int len;
2963 const unsigned char *p;
2964
2965 tty_menu_make_room (menu);
2966 menu->submenu[menu->count] = tty_menu_create ();
2967 menu->text[menu->count] = (char *)txt;
2968 menu->panenumber[menu->count] = ++menu->panecount;
2969 menu->help_text[menu->count] = NULL;
2970 menu->count++;
2971
2972 /* Update the menu width, if necessary. */
2973 for (len = 0, p = (unsigned char *) txt; *p; )
2974 {
2975 int ch_len;
2976 int ch = STRING_CHAR_AND_LENGTH (p, ch_len);
2977
2978 len += CHAR_WIDTH (ch);
2979 p += ch_len;
2980 }
2981
2982 if (len > menu->width)
2983 menu->width = len;
2984
2985 return menu->panecount;
2986 }
2987
2988 /* Create a new item in a menu pane. */
2989
2990 static int
2991 tty_menu_add_selection (tty_menu *menu, int pane,
2992 char *txt, int enable, char const *help_text)
2993 {
2994 int len;
2995 unsigned char *p;
2996
2997 if (pane)
2998 if (!(menu = tty_menu_search_pane (menu, pane)))
2999 return TTYM_FAILURE;
3000 tty_menu_make_room (menu);
3001 menu->submenu[menu->count] = (tty_menu *) 0;
3002 menu->text[menu->count] = txt;
3003 menu->panenumber[menu->count] = enable;
3004 menu->help_text[menu->count] = help_text;
3005 menu->count++;
3006
3007 /* Update the menu width, if necessary. */
3008 for (len = 0, p = (unsigned char *) txt; *p; )
3009 {
3010 int ch_len;
3011 int ch = STRING_CHAR_AND_LENGTH (p, ch_len);
3012
3013 len += CHAR_WIDTH (ch);
3014 p += ch_len;
3015 }
3016
3017 if (len > menu->width)
3018 menu->width = len;
3019
3020 return TTYM_SUCCESS;
3021 }
3022
3023 /* Decide where the menu would be placed if requested at (X,Y). */
3024
3025 static void
3026 tty_menu_locate (tty_menu *menu, int x, int y,
3027 int *ulx, int *uly, int *width, int *height)
3028 {
3029 tty_menu_calc_size (menu, width, height);
3030 *ulx = x + 1;
3031 *uly = y;
3032 *width += 2;
3033 }
3034
3035 struct tty_menu_state
3036 {
3037 struct glyph_matrix *screen_behind;
3038 tty_menu *menu;
3039 int pane;
3040 int x, y;
3041 };
3042
3043 /* Save away the contents of frame F's current frame matrix, and
3044 enable all its rows. Value is a glyph matrix holding the contents
3045 of F's current frame matrix with all its glyph rows enabled. */
3046
3047 static struct glyph_matrix *
3048 save_and_enable_current_matrix (struct frame *f)
3049 {
3050 int i;
3051 struct glyph_matrix *saved = xzalloc (sizeof *saved);
3052 saved->nrows = f->current_matrix->nrows;
3053 saved->rows = xzalloc (saved->nrows * sizeof *saved->rows);
3054
3055 for (i = 0; i < saved->nrows; ++i)
3056 {
3057 struct glyph_row *from = f->current_matrix->rows + i;
3058 struct glyph_row *to = saved->rows + i;
3059 ptrdiff_t nbytes = from->used[TEXT_AREA] * sizeof (struct glyph);
3060
3061 to->glyphs[TEXT_AREA] = xmalloc (nbytes);
3062 memcpy (to->glyphs[TEXT_AREA], from->glyphs[TEXT_AREA], nbytes);
3063 to->used[TEXT_AREA] = from->used[TEXT_AREA];
3064 /* Make sure every row is enabled, or else update_frame will not
3065 redraw them. (Rows that are identical to what is already on
3066 screen will not be redrawn anyway.) */
3067 to->enabled_p = 1;
3068 to->hash = from->hash;
3069 }
3070
3071 return saved;
3072 }
3073
3074 /* Restore the contents of frame F's desired frame matrix from SAVED,
3075 and free memory associated with SAVED. */
3076
3077 static void
3078 restore_desired_matrix (struct frame *f, struct glyph_matrix *saved)
3079 {
3080 int i;
3081
3082 for (i = 0; i < saved->nrows; ++i)
3083 {
3084 struct glyph_row *from = saved->rows + i;
3085 struct glyph_row *to = f->desired_matrix->rows + i;
3086 ptrdiff_t nbytes = from->used[TEXT_AREA] * sizeof (struct glyph);
3087
3088 eassert (to->glyphs[TEXT_AREA] != from->glyphs[TEXT_AREA]);
3089 memcpy (to->glyphs[TEXT_AREA], from->glyphs[TEXT_AREA], nbytes);
3090 to->used[TEXT_AREA] = from->used[TEXT_AREA];
3091 to->enabled_p = from->enabled_p;
3092 to->hash = from->hash;
3093 }
3094 }
3095
3096 static void
3097 free_saved_screen (struct glyph_matrix *saved)
3098 {
3099 int i;
3100
3101 if (!saved)
3102 return; /* already freed */
3103
3104 for (i = 0; i < saved->nrows; ++i)
3105 {
3106 struct glyph_row *from = saved->rows + i;
3107
3108 xfree (from->glyphs[TEXT_AREA]);
3109 }
3110
3111 xfree (saved->rows);
3112 xfree (saved);
3113 }
3114
3115 /* Update the display of frame F from its saved contents. */
3116 static void
3117 screen_update (struct frame *f, struct glyph_matrix *mtx)
3118 {
3119 restore_desired_matrix (f, mtx);
3120 update_frame_with_menu (f);
3121 }
3122
3123 /* Read user input and return X and Y coordinates where that input
3124 puts us. We only consider mouse movement and click events and
3125 keyboard movement commands; the rest are ignored.
3126
3127 Value is -1 if C-g was pressed, 1 if an item was selected, 2 or 3
3128 if we need to move to the next or previous menu-bar menu, zero
3129 otherwise. */
3130 static int
3131 read_menu_input (struct frame *sf, int *x, int *y, int min_y, int max_y,
3132 bool *first_time)
3133 {
3134 if (*first_time)
3135 {
3136 *first_time = false;
3137 sf->mouse_moved = 1;
3138 }
3139 else
3140 {
3141 Lisp_Object cmd;
3142 int usable_input = 1;
3143 int st = 0;
3144 struct tty_display_info *tty = FRAME_TTY (sf);
3145 Lisp_Object saved_mouse_tracking = do_mouse_tracking;
3146
3147 /* Signal the keyboard reading routines we are displaying a menu
3148 on this terminal. */
3149 tty->showing_menu = 1;
3150 /* We want mouse movements be reported by read_menu_command. */
3151 do_mouse_tracking = Qt;
3152 do {
3153 cmd = read_menu_command ();
3154 } while (NILP (cmd));
3155 tty->showing_menu = 0;
3156 do_mouse_tracking = saved_mouse_tracking;
3157
3158 if (EQ (cmd, Qt) || EQ (cmd, Qtty_menu_exit))
3159 return -1;
3160 if (EQ (cmd, Qtty_menu_mouse_movement))
3161 mouse_get_xy (x, y);
3162 else if (EQ (cmd, Qtty_menu_next_menu))
3163 {
3164 usable_input = 0;
3165 st = 2;
3166 }
3167 else if (EQ (cmd, Qtty_menu_prev_menu))
3168 {
3169 usable_input = 0;
3170 st = 3;
3171 }
3172 else if (EQ (cmd, Qtty_menu_next_item))
3173 {
3174 if (*y < max_y)
3175 *y += 1;
3176 }
3177 else if (EQ (cmd, Qtty_menu_prev_item))
3178 {
3179 if (*y > min_y)
3180 *y -= 1;
3181 }
3182 else if (EQ (cmd, Qtty_menu_select))
3183 st = 1;
3184 else if (!EQ (cmd, Qtty_menu_ignore))
3185 usable_input = 0;
3186 if (usable_input)
3187 sf->mouse_moved = 1;
3188 return st;
3189 }
3190 return 0;
3191 }
3192
3193 /* Display menu, wait for user's response, and return that response. */
3194 static int
3195 tty_menu_activate (tty_menu *menu, int *pane, int *selidx,
3196 int x0, int y0, char **txt,
3197 void (*help_callback)(char const *, int, int),
3198 int kbd_navigation)
3199 {
3200 struct tty_menu_state *state;
3201 int statecount, x, y, i, leave, onepane;
3202 int result IF_LINT (= 0);
3203 int title_faces[4]; /* face to display the menu title */
3204 int faces[4], buffers_num_deleted = 0;
3205 struct frame *sf = SELECTED_FRAME ();
3206 struct tty_display_info *tty = FRAME_TTY (sf);
3207 bool first_time;
3208 Lisp_Object selectface;
3209
3210 /* Don't allow non-positive x0 and y0, lest the menu will wrap
3211 around the display. */
3212 if (x0 <= 0)
3213 x0 = 1;
3214 if (y0 <= 0)
3215 y0 = 1;
3216
3217 state = alloca (menu->panecount * sizeof (struct tty_menu_state));
3218 memset (state, 0, sizeof (*state));
3219 faces[0]
3220 = lookup_derived_face (sf, intern ("tty-menu-disabled-face"),
3221 DEFAULT_FACE_ID, 1);
3222 faces[1]
3223 = lookup_derived_face (sf, intern ("tty-menu-enabled-face"),
3224 DEFAULT_FACE_ID, 1);
3225 selectface = intern ("tty-menu-selected-face");
3226 faces[2] = lookup_derived_face (sf, selectface,
3227 faces[0], 1);
3228 faces[3] = lookup_derived_face (sf, selectface,
3229 faces[1], 1);
3230
3231 /* Make sure the menu title is always displayed with
3232 `tty-menu-selected-face', no matter where the mouse pointer is. */
3233 for (i = 0; i < 4; i++)
3234 title_faces[i] = faces[3];
3235
3236 statecount = 1;
3237
3238 /* Don't let the title for the "Buffers" popup menu include a
3239 digit (which is ugly).
3240
3241 This is a terrible kludge, but I think the "Buffers" case is
3242 the only one where the title includes a number, so it doesn't
3243 seem to be necessary to make this more general. */
3244 if (strncmp (menu->text[0], "Buffers 1", 9) == 0)
3245 {
3246 menu->text[0][7] = '\0';
3247 buffers_num_deleted = 1;
3248 }
3249
3250 /* Force update of the current frame, so that the desired and the
3251 current matrices are identical. */
3252 update_frame_with_menu (sf);
3253 state[0].menu = menu;
3254 state[0].screen_behind = save_and_enable_current_matrix (sf);
3255
3256 /* Display the menu title. We subtract 1 from x0 and y0 because we
3257 want to interpret them as zero-based column and row coordinates,
3258 and also because we want the first item of the menu, not its
3259 title, to appear at x0,y0. */
3260 tty_menu_display (menu, x0 - 1, y0 - 1, 1, title_faces, x0 - 1, y0 - 1, 0);
3261
3262 /* Turn off the cursor. Otherwise it shows through the menu
3263 panes, which is ugly. */
3264 tty_hide_cursor (tty);
3265 if (buffers_num_deleted)
3266 menu->text[0][7] = ' ';
3267 if ((onepane = menu->count == 1 && menu->submenu[0]))
3268 {
3269 menu->width = menu->submenu[0]->width;
3270 state[0].menu = menu->submenu[0];
3271 }
3272 else
3273 {
3274 state[0].menu = menu;
3275 }
3276 state[0].x = x0 - 1;
3277 state[0].y = y0;
3278 state[0].pane = onepane;
3279
3280 x = state[0].x;
3281 y = state[0].y;
3282 first_time = true;
3283
3284 leave = 0;
3285 while (!leave)
3286 {
3287 int input_status;
3288 int min_y = state[0].y, max_y = min_y + state[0].menu->count - 1;
3289
3290 input_status = read_menu_input (sf, &x, &y, min_y, max_y, &first_time);
3291 if (input_status)
3292 {
3293 leave = 1;
3294 if (input_status == -1)
3295 {
3296 /* Remove the last help-echo, so that it doesn't
3297 re-appear after "Quit". */
3298 show_help_echo (Qnil, Qnil, Qnil, Qnil);
3299 result = TTYM_NO_SELECT;
3300 }
3301 else if (input_status == 2)
3302 {
3303 if (kbd_navigation)
3304 result = TTYM_NEXT;
3305 else
3306 leave = 0;
3307 }
3308 else if (input_status == 3)
3309 {
3310 if (kbd_navigation)
3311 result = TTYM_PREV;
3312 else
3313 leave = 0;
3314 }
3315 }
3316 if (sf->mouse_moved && input_status != -1)
3317 {
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)
3322 {
3323 int dy = y - state[i].y;
3324 if (0 <= dy && dy < state[i].menu->count)
3325 {
3326 if (!state[i].menu->submenu[dy])
3327 {
3328 if (state[i].menu->panenumber[dy])
3329 result = TTYM_SUCCESS;
3330 else
3331 result = TTYM_IA_SELECT;
3332 }
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)
3341 {
3342 statecount--;
3343 screen_update (sf, state[statecount].screen_behind);
3344 state[statecount].screen_behind = NULL;
3345 }
3346 if (i == statecount - 1 && state[i].menu->submenu[dy])
3347 {
3348 tty_menu_display (state[i].menu,
3349 state[i].x,
3350 state[i].y,
3351 state[i].pane,
3352 faces, x, y, 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++;
3361 }
3362 }
3363 }
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, 1);
3369 tty_hide_cursor (tty);
3370 fflush (tty->output);
3371 }
3372
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)
3377 {
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;
3383 }
3384 }
3385
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);
3392
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;
3402 }
3403
3404 /* Dispose of a menu. */
3405
3406 static void
3407 tty_menu_destroy (tty_menu *menu)
3408 {
3409 int i;
3410 if (menu->allocated)
3411 {
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);
3419 }
3420 xfree (menu);
3421 menu_help_message = prev_menu_help_message = NULL;
3422 }
3423
3424 /* Show help HELP_STRING, or clear help if HELP_STRING is null.
3425
3426 PANE is the pane number, and ITEM is the menu item number in
3427 the menu (currently not used). */
3428
3429 static void
3430 tty_menu_help_callback (char const *help_string, int pane, int item)
3431 {
3432 Lisp_Object *first_item;
3433 Lisp_Object pane_name;
3434 Lisp_Object menu_object;
3435
3436 first_item = XVECTOR (menu_items)->u.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];
3444
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));
3449 }
3450
3451 static void
3452 tty_pop_down_menu (Lisp_Object arg)
3453 {
3454 tty_menu *menu = XSAVE_POINTER (arg, 0);
3455
3456 block_input ();
3457 tty_menu_destroy (menu);
3458 unblock_input ();
3459 }
3460
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)
3464 {
3465 int i = 0;
3466
3467 eassert (FRAME_TERMCAP_P (f) && FRAME_LIVE_P (f));
3468 if (FRAME_TERMCAP_P (f) && FRAME_LIVE_P (f))
3469 {
3470 Lisp_Object items = FRAME_MENU_BAR_ITEMS (f);
3471
3472 while (i < ASIZE (items))
3473 {
3474 Lisp_Object str;
3475
3476 str = AREF (items, i + 1);
3477 if (NILP (str))
3478 break;
3479 i += 4;
3480 }
3481 i -= 4; /* went one too far */
3482 }
3483 return i;
3484 }
3485
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)
3493 {
3494 eassert (FRAME_TERMCAP_P (f) && FRAME_LIVE_P (f));
3495 if (FRAME_TERMCAP_P (f) && FRAME_LIVE_P (f))
3496 {
3497 Lisp_Object items = FRAME_MENU_BAR_ITEMS (f);
3498 int last_i = tty_menu_last_menubar_item (f);
3499 int i, prev_x;
3500
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)
3505 {
3506 Lisp_Object pos, str;
3507 int ix;
3508
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)))
3518 {
3519 /* Found current item. Now compute the X coordinate of
3520 the previous or next item. */
3521 if (which == TTYM_NEXT)
3522 {
3523 if (i < last_i)
3524 *x = XINT (AREF (items, i + 4 + 3));
3525 else
3526 *x = 0; /* wrap around to the first item */
3527 }
3528 else if (prev_x < 0)
3529 {
3530 /* Wrap around to the last item. */
3531 *x = XINT (AREF (items, last_i + 3));
3532 }
3533 else
3534 *x = prev_x;
3535 return;
3536 }
3537 prev_x = ix;
3538 }
3539 }
3540 }
3541
3542 Lisp_Object
3543 tty_menu_show (struct frame *f, int x, int y, int for_click, int keymaps,
3544 Lisp_Object title, int kbd_navigation, const char **error_name)
3545 {
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 = SPECPDL_INDEX ();
3556
3557 if (! FRAME_TERMCAP_P (f))
3558 emacs_abort ();
3559
3560 *error_name = 0;
3561 if (menu_items_n_panes == 0)
3562 return Qnil;
3563
3564 if (menu_items_used <= MENU_ITEMS_PANE_LENGTH)
3565 {
3566 *error_name = "Empty menu";
3567 return Qnil;
3568 }
3569
3570 /* Make the menu on that window. */
3571 menu = tty_menu_create ();
3572 if (menu == NULL)
3573 {
3574 *error_name = "Can't create menu";
3575 return Qnil;
3576 }
3577
3578 /* Don't GC while we prepare and show the menu, because we give the
3579 menu functions pointers to the contents of strings. */
3580 inhibit_garbage_collection ();
3581
3582 /* Adjust coordinates to be root-window-relative. */
3583 item_x = x += f->left_pos;
3584 item_y = y += f->top_pos;
3585
3586 /* Create all the necessary panes and their items. */
3587 maxwidth = maxlines = lines = i = 0;
3588 lpane = TTYM_FAILURE;
3589 while (i < menu_items_used)
3590 {
3591 if (EQ (AREF (menu_items, i), Qt))
3592 {
3593 /* Create a new pane. */
3594 Lisp_Object pane_name, prefix;
3595 const char *pane_string;
3596
3597 maxlines = max (maxlines, lines);
3598 lines = 0;
3599 pane_name = AREF (menu_items, i + MENU_ITEMS_PANE_NAME);
3600 prefix = AREF (menu_items, i + MENU_ITEMS_PANE_PREFIX);
3601 pane_string = (NILP (pane_name)
3602 ? "" : SSDATA (pane_name));
3603 if (keymaps && !NILP (prefix))
3604 pane_string++;
3605
3606 lpane = tty_menu_add_pane (menu, pane_string);
3607 if (lpane == TTYM_FAILURE)
3608 {
3609 tty_menu_destroy (menu);
3610 *error_name = "Can't create pane";
3611 return Qnil;
3612 }
3613 i += MENU_ITEMS_PANE_LENGTH;
3614
3615 /* Find the width of the widest item in this pane. */
3616 j = i;
3617 while (j < menu_items_used)
3618 {
3619 Lisp_Object item;
3620 item = AREF (menu_items, j);
3621 if (EQ (item, Qt))
3622 break;
3623 if (NILP (item))
3624 {
3625 j++;
3626 continue;
3627 }
3628 width = SBYTES (item);
3629 if (width > maxwidth)
3630 maxwidth = width;
3631
3632 j += MENU_ITEMS_ITEM_LENGTH;
3633 }
3634 }
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
3640 {
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;
3645
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;
3651
3652 if (!NILP (descrip))
3653 {
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;
3662 }
3663 else
3664 item_data = SSDATA (item_name);
3665
3666 if (lpane == TTYM_FAILURE
3667 || (tty_menu_add_selection (menu, lpane, item_data,
3668 !NILP (enable), help_string)
3669 == TTYM_FAILURE))
3670 {
3671 tty_menu_destroy (menu);
3672 *error_name = "Can't add selection to menu";
3673 return Qnil;
3674 }
3675 i += MENU_ITEMS_ITEM_LENGTH;
3676 lines++;
3677 }
3678 }
3679
3680 maxlines = max (maxlines, lines);
3681
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)
3691 {
3692 x -= (ulx + width) - dispwidth;
3693 ulx = dispwidth - width;
3694 }
3695 if (uly+height > dispheight)
3696 {
3697 y -= (uly + height) - dispheight;
3698 uly = dispheight - height;
3699 }
3700
3701 if (FRAME_HAS_MINIBUF_P (f) && uly+height > dispheight - 2)
3702 {
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))
3706 {
3707 y -= WINDOW_TOTAL_LINES (XWINDOW (echo_area_window)) + 1;
3708 uly -= WINDOW_TOTAL_LINES (XWINDOW (echo_area_window)) + 1;
3709 }
3710 else
3711 {
3712 y -= 2;
3713 uly -= 2;
3714 }
3715 }
3716
3717 if (ulx < 0) x -= ulx;
3718 if (uly < 0) y -= uly;
3719
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)
3726 {
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);
3732 }
3733 #endif
3734
3735 pane = selidx = 0;
3736
3737 record_unwind_protect (tty_pop_down_menu, make_save_ptr (menu));
3738
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;
3744
3745 switch (status)
3746 {
3747 case TTYM_SUCCESS:
3748 /* Find the item number SELIDX in pane number PANE. */
3749 i = 0;
3750 while (i < menu_items_used)
3751 {
3752 if (EQ (AREF (menu_items, i), Qt))
3753 {
3754 if (pane == 0)
3755 pane_prefix
3756 = AREF (menu_items, i + MENU_ITEMS_PANE_PREFIX);
3757 pane--;
3758 i += MENU_ITEMS_PANE_LENGTH;
3759 }
3760 else
3761 {
3762 if (pane == -1)
3763 {
3764 if (selidx == 0)
3765 {
3766 entry
3767 = AREF (menu_items, i + MENU_ITEMS_ITEM_VALUE);
3768 if (keymaps != 0)
3769 {
3770 entry = Fcons (entry, Qnil);
3771 if (!NILP (pane_prefix))
3772 entry = Fcons (pane_prefix, entry);
3773 }
3774 break;
3775 }
3776 selidx--;
3777 }
3778 i += MENU_ITEMS_ITEM_LENGTH;
3779 }
3780 }
3781 break;
3782
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;
3788
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;
3799 }
3800
3801 unbind_to (specpdl_count, Qnil);
3802
3803 return entry;
3804 }
3805
3806 #endif /* HAVE_MENUS && !MSDOS */
3807
3808 \f
3809 #ifndef MSDOS
3810 /***********************************************************************
3811 Initialization
3812 ***********************************************************************/
3813
3814 /* Initialize the tty-dependent part of frame F. The frame must
3815 already have its device initialized. */
3816
3817 void
3818 create_tty_output (struct frame *f)
3819 {
3820 struct tty_output *t = xzalloc (sizeof *t);
3821
3822 eassert (FRAME_TERMCAP_P (f));
3823
3824 t->display_info = FRAME_TERMINAL (f)->display_info.tty;
3825
3826 f->output_data.tty = t;
3827 }
3828
3829 /* Delete frame F's face cache, and its tty-dependent part. */
3830
3831 static void
3832 tty_free_frame_resources (struct frame *f)
3833 {
3834 eassert (FRAME_TERMCAP_P (f));
3835
3836 if (FRAME_FACE_CACHE (f))
3837 free_frame_faces (f);
3838
3839 xfree (f->output_data.tty);
3840 }
3841
3842 #else /* MSDOS */
3843
3844 /* Delete frame F's face cache. */
3845
3846 static void
3847 tty_free_frame_resources (struct frame *f)
3848 {
3849 eassert (FRAME_TERMCAP_P (f) || FRAME_MSDOS_P (f));
3850
3851 if (FRAME_FACE_CACHE (f))
3852 free_frame_faces (f);
3853 }
3854 #endif /* MSDOS */
3855 \f
3856 /* Reset the hooks in TERMINAL. */
3857
3858 static void
3859 clear_tty_hooks (struct terminal *terminal)
3860 {
3861 terminal->rif = 0;
3862 terminal->cursor_to_hook = 0;
3863 terminal->raw_cursor_to_hook = 0;
3864 terminal->clear_to_end_hook = 0;
3865 terminal->clear_frame_hook = 0;
3866 terminal->clear_end_of_line_hook = 0;
3867 terminal->ins_del_lines_hook = 0;
3868 terminal->insert_glyphs_hook = 0;
3869 terminal->write_glyphs_hook = 0;
3870 terminal->delete_glyphs_hook = 0;
3871 terminal->ring_bell_hook = 0;
3872 terminal->reset_terminal_modes_hook = 0;
3873 terminal->set_terminal_modes_hook = 0;
3874 terminal->update_begin_hook = 0;
3875 terminal->update_end_hook = 0;
3876 terminal->set_terminal_window_hook = 0;
3877 terminal->mouse_position_hook = 0;
3878 terminal->frame_rehighlight_hook = 0;
3879 terminal->frame_raise_lower_hook = 0;
3880 terminal->fullscreen_hook = 0;
3881 terminal->set_vertical_scroll_bar_hook = 0;
3882 terminal->condemn_scroll_bars_hook = 0;
3883 terminal->redeem_scroll_bar_hook = 0;
3884 terminal->judge_scroll_bars_hook = 0;
3885 terminal->read_socket_hook = 0;
3886 terminal->frame_up_to_date_hook = 0;
3887
3888 /* Leave these two set, or suspended frames are not deleted
3889 correctly. */
3890 terminal->delete_frame_hook = &tty_free_frame_resources;
3891 terminal->delete_terminal_hook = &delete_tty;
3892 }
3893
3894 /* Initialize hooks in TERMINAL with the values needed for a tty. */
3895
3896 static void
3897 set_tty_hooks (struct terminal *terminal)
3898 {
3899 terminal->rif = 0; /* ttys don't support window-based redisplay. */
3900
3901 terminal->cursor_to_hook = &tty_cursor_to;
3902 terminal->raw_cursor_to_hook = &tty_raw_cursor_to;
3903
3904 terminal->clear_to_end_hook = &tty_clear_to_end;
3905 terminal->clear_frame_hook = &tty_clear_frame;
3906 terminal->clear_end_of_line_hook = &tty_clear_end_of_line;
3907
3908 terminal->ins_del_lines_hook = &tty_ins_del_lines;
3909
3910 terminal->insert_glyphs_hook = &tty_insert_glyphs;
3911 terminal->write_glyphs_hook = &tty_write_glyphs;
3912 terminal->delete_glyphs_hook = &tty_delete_glyphs;
3913
3914 terminal->ring_bell_hook = &tty_ring_bell;
3915
3916 terminal->reset_terminal_modes_hook = &tty_reset_terminal_modes;
3917 terminal->set_terminal_modes_hook = &tty_set_terminal_modes;
3918 terminal->update_begin_hook = 0; /* Not needed. */
3919 terminal->update_end_hook = &tty_update_end;
3920 terminal->set_terminal_window_hook = &tty_set_terminal_window;
3921
3922 terminal->mouse_position_hook = 0; /* Not needed. */
3923 terminal->frame_rehighlight_hook = 0; /* Not needed. */
3924 terminal->frame_raise_lower_hook = 0; /* Not needed. */
3925
3926 terminal->set_vertical_scroll_bar_hook = 0; /* Not needed. */
3927 terminal->condemn_scroll_bars_hook = 0; /* Not needed. */
3928 terminal->redeem_scroll_bar_hook = 0; /* Not needed. */
3929 terminal->judge_scroll_bars_hook = 0; /* Not needed. */
3930
3931 terminal->read_socket_hook = &tty_read_avail_input; /* keyboard.c */
3932 terminal->frame_up_to_date_hook = 0; /* Not needed. */
3933
3934 terminal->delete_frame_hook = &tty_free_frame_resources;
3935 terminal->delete_terminal_hook = &delete_tty;
3936 }
3937
3938 /* If FD is the controlling terminal, drop it. */
3939 static void
3940 dissociate_if_controlling_tty (int fd)
3941 {
3942 /* If tcgetpgrp succeeds, fd is the controlling terminal,
3943 so dissociate it by invoking setsid. */
3944 if (tcgetpgrp (fd) >= 0 && setsid () < 0)
3945 {
3946 #ifdef TIOCNOTTY
3947 /* setsid failed, presumably because Emacs is already a process
3948 group leader. Fall back on the obsolescent way to dissociate
3949 a controlling tty. */
3950 block_tty_out_signal ();
3951 ioctl (fd, TIOCNOTTY, 0);
3952 unblock_tty_out_signal ();
3953 #endif
3954 }
3955 }
3956
3957 /* Create a termcap display on the tty device with the given name and
3958 type.
3959
3960 If NAME is NULL, then use the controlling tty, i.e., "/dev/tty".
3961 Otherwise NAME should be a path to the tty device file,
3962 e.g. "/dev/pts/7".
3963
3964 TERMINAL_TYPE is the termcap type of the device, e.g. "vt100".
3965
3966 If MUST_SUCCEED is true, then all errors are fatal. */
3967
3968 struct terminal *
3969 init_tty (const char *name, const char *terminal_type, bool must_succeed)
3970 {
3971 char *area;
3972 char **address = &area;
3973 int status;
3974 struct tty_display_info *tty = NULL;
3975 struct terminal *terminal = NULL;
3976 bool ctty = false; /* True if asked to open controlling tty. */
3977
3978 if (!terminal_type)
3979 maybe_fatal (must_succeed, 0,
3980 "Unknown terminal type",
3981 "Unknown terminal type");
3982
3983 if (name == NULL)
3984 name = DEV_TTY;
3985 if (!strcmp (name, DEV_TTY))
3986 ctty = 1;
3987
3988 /* If we already have a terminal on the given device, use that. If
3989 all such terminals are suspended, create a new one instead. */
3990 /* XXX Perhaps this should be made explicit by having init_tty
3991 always create a new terminal and separating terminal and frame
3992 creation on Lisp level. */
3993 terminal = get_named_tty (name);
3994 if (terminal)
3995 return terminal;
3996
3997 terminal = create_terminal ();
3998 #ifdef MSDOS
3999 if (been_here > 0)
4000 maybe_fatal (0, 0, "Attempt to create another terminal %s", "",
4001 name, "");
4002 been_here = 1;
4003 tty = &the_only_display_info;
4004 #else
4005 tty = xzalloc (sizeof *tty);
4006 #endif
4007 tty->top_frame = Qnil;
4008 tty->next = tty_list;
4009 tty_list = tty;
4010
4011 terminal->type = output_termcap;
4012 terminal->display_info.tty = tty;
4013 tty->terminal = terminal;
4014
4015 tty->Wcm = xmalloc (sizeof *tty->Wcm);
4016 Wcm_clear (tty);
4017
4018 encode_terminal_src_size = 0;
4019 encode_terminal_dst_size = 0;
4020
4021
4022 #ifndef DOS_NT
4023 set_tty_hooks (terminal);
4024
4025 {
4026 /* Open the terminal device. */
4027
4028 /* If !ctty, don't recognize it as our controlling terminal, and
4029 don't make it the controlling tty if we don't have one now.
4030
4031 Alas, O_IGNORE_CTTY is a GNU extension that seems to be only
4032 defined on Hurd. On other systems, we need to explicitly
4033 dissociate ourselves from the controlling tty when we want to
4034 open a frame on the same terminal. */
4035 int flags = O_RDWR | O_NOCTTY | (ctty ? 0 : O_IGNORE_CTTY);
4036 int fd = emacs_open (name, flags, 0);
4037 tty->input = tty->output = fd < 0 || ! isatty (fd) ? 0 : fdopen (fd, "w+");
4038
4039 if (! tty->input)
4040 {
4041 char const *diagnostic
4042 = tty->input ? "Not a tty device: %s" : "Could not open file: %s";
4043 emacs_close (fd);
4044 maybe_fatal (must_succeed, terminal, diagnostic, diagnostic, name);
4045 }
4046
4047 tty->name = xstrdup (name);
4048 terminal->name = xstrdup (name);
4049
4050 if (!O_IGNORE_CTTY && !ctty)
4051 dissociate_if_controlling_tty (fd);
4052 }
4053
4054 tty->type = xstrdup (terminal_type);
4055
4056 add_keyboard_wait_descriptor (fileno (tty->input));
4057
4058 Wcm_clear (tty);
4059
4060 /* On some systems, tgetent tries to access the controlling
4061 terminal. */
4062 block_tty_out_signal ();
4063 status = tgetent (tty->termcap_term_buffer, terminal_type);
4064 if (tty->termcap_term_buffer[TERMCAP_BUFFER_SIZE - 1])
4065 emacs_abort ();
4066 unblock_tty_out_signal ();
4067
4068 if (status < 0)
4069 {
4070 #ifdef TERMINFO
4071 maybe_fatal (must_succeed, terminal,
4072 "Cannot open terminfo database file",
4073 "Cannot open terminfo database file");
4074 #else
4075 maybe_fatal (must_succeed, terminal,
4076 "Cannot open termcap database file",
4077 "Cannot open termcap database file");
4078 #endif
4079 }
4080 if (status == 0)
4081 {
4082 maybe_fatal (must_succeed, terminal,
4083 "Terminal type %s is not defined",
4084 "Terminal type %s is not defined.\n\
4085 If that is not the actual type of terminal you have,\n\
4086 use the Bourne shell command `TERM=... export TERM' (C-shell:\n\
4087 `setenv TERM ...') to specify the correct type. It may be necessary\n"
4088 #ifdef TERMINFO
4089 "to do `unset TERMINFO' (C-shell: `unsetenv TERMINFO') as well.",
4090 #else
4091 "to do `unset TERMCAP' (C-shell: `unsetenv TERMCAP') as well.",
4092 #endif
4093 terminal_type);
4094 }
4095
4096 area = tty->termcap_strings_buffer;
4097 tty->TS_ins_line = tgetstr ("al", address);
4098 tty->TS_ins_multi_lines = tgetstr ("AL", address);
4099 tty->TS_bell = tgetstr ("bl", address);
4100 BackTab (tty) = tgetstr ("bt", address);
4101 tty->TS_clr_to_bottom = tgetstr ("cd", address);
4102 tty->TS_clr_line = tgetstr ("ce", address);
4103 tty->TS_clr_frame = tgetstr ("cl", address);
4104 ColPosition (tty) = NULL; /* tgetstr ("ch", address); */
4105 AbsPosition (tty) = tgetstr ("cm", address);
4106 CR (tty) = tgetstr ("cr", address);
4107 tty->TS_set_scroll_region = tgetstr ("cs", address);
4108 tty->TS_set_scroll_region_1 = tgetstr ("cS", address);
4109 RowPosition (tty) = tgetstr ("cv", address);
4110 tty->TS_del_char = tgetstr ("dc", address);
4111 tty->TS_del_multi_chars = tgetstr ("DC", address);
4112 tty->TS_del_line = tgetstr ("dl", address);
4113 tty->TS_del_multi_lines = tgetstr ("DL", address);
4114 tty->TS_delete_mode = tgetstr ("dm", address);
4115 tty->TS_end_delete_mode = tgetstr ("ed", address);
4116 tty->TS_end_insert_mode = tgetstr ("ei", address);
4117 Home (tty) = tgetstr ("ho", address);
4118 tty->TS_ins_char = tgetstr ("ic", address);
4119 tty->TS_ins_multi_chars = tgetstr ("IC", address);
4120 tty->TS_insert_mode = tgetstr ("im", address);
4121 tty->TS_pad_inserted_char = tgetstr ("ip", address);
4122 tty->TS_end_keypad_mode = tgetstr ("ke", address);
4123 tty->TS_keypad_mode = tgetstr ("ks", address);
4124 LastLine (tty) = tgetstr ("ll", address);
4125 Right (tty) = tgetstr ("nd", address);
4126 Down (tty) = tgetstr ("do", address);
4127 if (!Down (tty))
4128 Down (tty) = tgetstr ("nl", address); /* Obsolete name for "do". */
4129 if (tgetflag ("bs"))
4130 Left (tty) = "\b"; /* Can't possibly be longer! */
4131 else /* (Actually, "bs" is obsolete...) */
4132 Left (tty) = tgetstr ("le", address);
4133 if (!Left (tty))
4134 Left (tty) = tgetstr ("bc", address); /* Obsolete name for "le". */
4135 tty->TS_pad_char = tgetstr ("pc", address);
4136 tty->TS_repeat = tgetstr ("rp", address);
4137 tty->TS_end_standout_mode = tgetstr ("se", address);
4138 tty->TS_fwd_scroll = tgetstr ("sf", address);
4139 tty->TS_standout_mode = tgetstr ("so", address);
4140 tty->TS_rev_scroll = tgetstr ("sr", address);
4141 tty->Wcm->cm_tab = tgetstr ("ta", address);
4142 tty->TS_end_termcap_modes = tgetstr ("te", address);
4143 tty->TS_termcap_modes = tgetstr ("ti", address);
4144 Up (tty) = tgetstr ("up", address);
4145 tty->TS_visible_bell = tgetstr ("vb", address);
4146 tty->TS_cursor_normal = tgetstr ("ve", address);
4147 tty->TS_cursor_visible = tgetstr ("vs", address);
4148 tty->TS_cursor_invisible = tgetstr ("vi", address);
4149 tty->TS_set_window = tgetstr ("wi", address);
4150
4151 tty->TS_enter_underline_mode = tgetstr ("us", address);
4152 tty->TS_exit_underline_mode = tgetstr ("ue", address);
4153 tty->TS_enter_bold_mode = tgetstr ("md", address);
4154 tty->TS_enter_italic_mode = tgetstr ("ZH", address);
4155 tty->TS_enter_dim_mode = tgetstr ("mh", address);
4156 tty->TS_enter_reverse_mode = tgetstr ("mr", address);
4157 tty->TS_enter_alt_charset_mode = tgetstr ("as", address);
4158 tty->TS_exit_alt_charset_mode = tgetstr ("ae", address);
4159 tty->TS_exit_attribute_mode = tgetstr ("me", address);
4160
4161 MultiUp (tty) = tgetstr ("UP", address);
4162 MultiDown (tty) = tgetstr ("DO", address);
4163 MultiLeft (tty) = tgetstr ("LE", address);
4164 MultiRight (tty) = tgetstr ("RI", address);
4165
4166 /* SVr4/ANSI color support. If "op" isn't available, don't support
4167 color because we can't switch back to the default foreground and
4168 background. */
4169 tty->TS_orig_pair = tgetstr ("op", address);
4170 if (tty->TS_orig_pair)
4171 {
4172 tty->TS_set_foreground = tgetstr ("AF", address);
4173 tty->TS_set_background = tgetstr ("AB", address);
4174 if (!tty->TS_set_foreground)
4175 {
4176 /* SVr4. */
4177 tty->TS_set_foreground = tgetstr ("Sf", address);
4178 tty->TS_set_background = tgetstr ("Sb", address);
4179 }
4180
4181 tty->TN_max_colors = tgetnum ("Co");
4182 tty->TN_max_pairs = tgetnum ("pa");
4183
4184 tty->TN_no_color_video = tgetnum ("NC");
4185 if (tty->TN_no_color_video == -1)
4186 tty->TN_no_color_video = 0;
4187 }
4188
4189 tty_default_color_capabilities (tty, 1);
4190
4191 MagicWrap (tty) = tgetflag ("xn");
4192 /* Since we make MagicWrap terminals look like AutoWrap, we need to have
4193 the former flag imply the latter. */
4194 AutoWrap (tty) = MagicWrap (tty) || tgetflag ("am");
4195 terminal->memory_below_frame = tgetflag ("db");
4196 tty->TF_hazeltine = tgetflag ("hz");
4197 terminal->must_write_spaces = tgetflag ("in");
4198 tty->meta_key = tgetflag ("km") || tgetflag ("MT");
4199 tty->TF_insmode_motion = tgetflag ("mi");
4200 tty->TF_standout_motion = tgetflag ("ms");
4201 tty->TF_underscore = tgetflag ("ul");
4202 tty->TF_teleray = tgetflag ("xt");
4203
4204 #else /* DOS_NT */
4205 #ifdef WINDOWSNT
4206 {
4207 struct frame *f = XFRAME (selected_frame);
4208 int height, width;
4209
4210 initialize_w32_display (terminal, &width, &height);
4211
4212 FrameRows (tty) = height;
4213 FrameCols (tty) = width;
4214 tty->specified_window = height;
4215
4216 FRAME_VERTICAL_SCROLL_BAR_TYPE (f) = vertical_scroll_bar_none;
4217 terminal->char_ins_del_ok = 1;
4218 baud_rate = 19200;
4219 }
4220 #else /* MSDOS */
4221 {
4222 int height, width;
4223 if (strcmp (terminal_type, "internal") == 0)
4224 terminal->type = output_msdos_raw;
4225 initialize_msdos_display (terminal);
4226
4227 get_tty_size (fileno (tty->input), &width, &height);
4228 FrameCols (tty) = width;
4229 FrameRows (tty) = height;
4230 terminal->char_ins_del_ok = 0;
4231 init_baud_rate (fileno (tty->input));
4232 }
4233 #endif /* MSDOS */
4234 tty->output = stdout;
4235 tty->input = stdin;
4236 /* The following two are inaccessible from w32console.c. */
4237 terminal->delete_frame_hook = &tty_free_frame_resources;
4238 terminal->delete_terminal_hook = &delete_tty;
4239
4240 tty->name = xstrdup (name);
4241 terminal->name = xstrdup (name);
4242 tty->type = xstrdup (terminal_type);
4243
4244 add_keyboard_wait_descriptor (0);
4245
4246 tty->delete_in_insert_mode = 1;
4247
4248 UseTabs (tty) = 0;
4249 terminal->scroll_region_ok = 0;
4250
4251 /* Seems to insert lines when it's not supposed to, messing up the
4252 display. In doing a trace, it didn't seem to be called much, so I
4253 don't think we're losing anything by turning it off. */
4254 terminal->line_ins_del_ok = 0;
4255
4256 tty->TN_max_colors = 16; /* Must be non-zero for tty-display-color-p. */
4257 #endif /* DOS_NT */
4258
4259 #ifdef HAVE_GPM
4260 terminal->mouse_position_hook = term_mouse_position;
4261 tty->mouse_highlight.mouse_face_window = Qnil;
4262 #endif
4263
4264 terminal->kboard = allocate_kboard (Qnil);
4265 terminal->kboard->reference_count++;
4266 /* Don't let the initial kboard remain current longer than necessary.
4267 That would cause problems if a file loaded on startup tries to
4268 prompt in the mini-buffer. */
4269 if (current_kboard == initial_kboard)
4270 current_kboard = terminal->kboard;
4271 #ifndef DOS_NT
4272 term_get_fkeys (address, terminal->kboard);
4273
4274 /* Get frame size from system, or else from termcap. */
4275 {
4276 int height, width;
4277 get_tty_size (fileno (tty->input), &width, &height);
4278 FrameCols (tty) = width;
4279 FrameRows (tty) = height;
4280 }
4281
4282 if (FrameCols (tty) <= 0)
4283 FrameCols (tty) = tgetnum ("co");
4284 if (FrameRows (tty) <= 0)
4285 FrameRows (tty) = tgetnum ("li");
4286
4287 if (FrameRows (tty) < 3 || FrameCols (tty) < 3)
4288 maybe_fatal (must_succeed, terminal,
4289 "Screen size %dx%d is too small",
4290 "Screen size %dx%d is too small",
4291 FrameCols (tty), FrameRows (tty));
4292
4293 TabWidth (tty) = tgetnum ("tw");
4294
4295 if (!tty->TS_bell)
4296 tty->TS_bell = "\07";
4297
4298 if (!tty->TS_fwd_scroll)
4299 tty->TS_fwd_scroll = Down (tty);
4300
4301 PC = tty->TS_pad_char ? *tty->TS_pad_char : 0;
4302
4303 if (TabWidth (tty) < 0)
4304 TabWidth (tty) = 8;
4305
4306 /* Turned off since /etc/termcap seems to have :ta= for most terminals
4307 and newer termcap doc does not seem to say there is a default.
4308 if (!tty->Wcm->cm_tab)
4309 tty->Wcm->cm_tab = "\t";
4310 */
4311
4312 /* We don't support standout modes that use `magic cookies', so
4313 turn off any that do. */
4314 if (tty->TS_standout_mode && tgetnum ("sg") >= 0)
4315 {
4316 tty->TS_standout_mode = 0;
4317 tty->TS_end_standout_mode = 0;
4318 }
4319 if (tty->TS_enter_underline_mode && tgetnum ("ug") >= 0)
4320 {
4321 tty->TS_enter_underline_mode = 0;
4322 tty->TS_exit_underline_mode = 0;
4323 }
4324
4325 /* If there's no standout mode, try to use underlining instead. */
4326 if (tty->TS_standout_mode == 0)
4327 {
4328 tty->TS_standout_mode = tty->TS_enter_underline_mode;
4329 tty->TS_end_standout_mode = tty->TS_exit_underline_mode;
4330 }
4331
4332 /* If no `se' string, try using a `me' string instead.
4333 If that fails, we can't use standout mode at all. */
4334 if (tty->TS_end_standout_mode == 0)
4335 {
4336 char *s = tgetstr ("me", address);
4337 if (s != 0)
4338 tty->TS_end_standout_mode = s;
4339 else
4340 tty->TS_standout_mode = 0;
4341 }
4342
4343 if (tty->TF_teleray)
4344 {
4345 tty->Wcm->cm_tab = 0;
4346 /* We can't support standout mode, because it uses magic cookies. */
4347 tty->TS_standout_mode = 0;
4348 /* But that means we cannot rely on ^M to go to column zero! */
4349 CR (tty) = 0;
4350 /* LF can't be trusted either -- can alter hpos. */
4351 /* If move at column 0 thru a line with TS_standout_mode. */
4352 Down (tty) = 0;
4353 }
4354
4355 tty->specified_window = FrameRows (tty);
4356
4357 if (Wcm_init (tty) == -1) /* Can't do cursor motion. */
4358 {
4359 maybe_fatal (must_succeed, terminal,
4360 "Terminal type \"%s\" is not powerful enough to run Emacs",
4361 "Terminal type \"%s\" is not powerful enough to run Emacs.\n\
4362 It lacks the ability to position the cursor.\n\
4363 If that is not the actual type of terminal you have,\n\
4364 use the Bourne shell command `TERM=... export TERM' (C-shell:\n\
4365 `setenv TERM ...') to specify the correct type. It may be necessary\n"
4366 # ifdef TERMINFO
4367 "to do `unset TERMINFO' (C-shell: `unsetenv TERMINFO') as well.",
4368 # else /* TERMCAP */
4369 "to do `unset TERMCAP' (C-shell: `unsetenv TERMCAP') as well.",
4370 # endif /* TERMINFO */
4371 terminal_type);
4372 }
4373
4374 if (FrameRows (tty) <= 0 || FrameCols (tty) <= 0)
4375 maybe_fatal (must_succeed, terminal,
4376 "Could not determine the frame size",
4377 "Could not determine the frame size");
4378
4379 tty->delete_in_insert_mode
4380 = tty->TS_delete_mode && tty->TS_insert_mode
4381 && !strcmp (tty->TS_delete_mode, tty->TS_insert_mode);
4382
4383 UseTabs (tty) = tabs_safe_p (fileno (tty->input)) && TabWidth (tty) == 8;
4384
4385 terminal->scroll_region_ok
4386 = (tty->Wcm->cm_abs
4387 && (tty->TS_set_window || tty->TS_set_scroll_region || tty->TS_set_scroll_region_1));
4388
4389 terminal->line_ins_del_ok
4390 = (((tty->TS_ins_line || tty->TS_ins_multi_lines)
4391 && (tty->TS_del_line || tty->TS_del_multi_lines))
4392 || (terminal->scroll_region_ok
4393 && tty->TS_fwd_scroll && tty->TS_rev_scroll));
4394
4395 terminal->char_ins_del_ok
4396 = ((tty->TS_ins_char || tty->TS_insert_mode
4397 || tty->TS_pad_inserted_char || tty->TS_ins_multi_chars)
4398 && (tty->TS_del_char || tty->TS_del_multi_chars));
4399
4400 terminal->fast_clear_end_of_line = tty->TS_clr_line != 0;
4401
4402 init_baud_rate (fileno (tty->input));
4403
4404 #endif /* not DOS_NT */
4405
4406 /* Init system terminal modes (RAW or CBREAK, etc.). */
4407 init_sys_modes (tty);
4408
4409 return terminal;
4410 }
4411
4412
4413 static void
4414 vfatal (const char *str, va_list ap)
4415 {
4416 fprintf (stderr, "emacs: ");
4417 vfprintf (stderr, str, ap);
4418 if (!(strlen (str) > 0 && str[strlen (str) - 1] == '\n'))
4419 fprintf (stderr, "\n");
4420 fflush (stderr);
4421 exit (1);
4422 }
4423
4424
4425 /* Auxiliary error-handling function for init_tty.
4426 Delete TERMINAL, then call error or fatal with str1 or str2,
4427 respectively, according to whether MUST_SUCCEED is true. */
4428
4429 static void
4430 maybe_fatal (bool must_succeed, struct terminal *terminal,
4431 const char *str1, const char *str2, ...)
4432 {
4433 va_list ap;
4434 va_start (ap, str2);
4435 if (terminal)
4436 delete_tty (terminal);
4437
4438 if (must_succeed)
4439 vfatal (str2, ap);
4440 else
4441 verror (str1, ap);
4442 }
4443
4444 void
4445 fatal (const char *str, ...)
4446 {
4447 va_list ap;
4448 va_start (ap, str);
4449 vfatal (str, ap);
4450 }
4451
4452 \f
4453
4454 /* Delete the given tty terminal, closing all frames on it. */
4455
4456 static void
4457 delete_tty (struct terminal *terminal)
4458 {
4459 struct tty_display_info *tty;
4460
4461 /* Protect against recursive calls. delete_frame in
4462 delete_terminal calls us back when it deletes our last frame. */
4463 if (!terminal->name)
4464 return;
4465
4466 eassert (terminal->type == output_termcap);
4467
4468 tty = terminal->display_info.tty;
4469
4470 if (tty == tty_list)
4471 tty_list = tty->next;
4472 else
4473 {
4474 struct tty_display_info *p;
4475 for (p = tty_list; p && p->next != tty; p = p->next)
4476 ;
4477
4478 if (! p)
4479 /* This should not happen. */
4480 emacs_abort ();
4481
4482 p->next = tty->next;
4483 tty->next = 0;
4484 }
4485
4486 /* reset_sys_modes needs a valid device, so this call needs to be
4487 before delete_terminal. */
4488 reset_sys_modes (tty);
4489
4490 delete_terminal (terminal);
4491
4492 xfree (tty->name);
4493 xfree (tty->type);
4494
4495 if (tty->input)
4496 {
4497 delete_keyboard_wait_descriptor (fileno (tty->input));
4498 if (tty->input != stdin)
4499 fclose (tty->input);
4500 }
4501 if (tty->output && tty->output != stdout && tty->output != tty->input)
4502 fclose (tty->output);
4503 if (tty->termscript)
4504 fclose (tty->termscript);
4505
4506 xfree (tty->old_tty);
4507 xfree (tty->Wcm);
4508 xfree (tty);
4509 }
4510
4511 void
4512 syms_of_term (void)
4513 {
4514 DEFVAR_BOOL ("system-uses-terminfo", system_uses_terminfo,
4515 doc: /* Non-nil means the system uses terminfo rather than termcap.
4516 This variable can be used by terminal emulator packages. */);
4517 #ifdef TERMINFO
4518 system_uses_terminfo = 1;
4519 #else
4520 system_uses_terminfo = 0;
4521 #endif
4522
4523 DEFVAR_LISP ("suspend-tty-functions", Vsuspend_tty_functions,
4524 doc: /* Functions run after suspending a tty.
4525 The functions are run with one argument, the terminal object to be suspended.
4526 See `suspend-tty'. */);
4527 Vsuspend_tty_functions = Qnil;
4528
4529
4530 DEFVAR_LISP ("resume-tty-functions", Vresume_tty_functions,
4531 doc: /* Functions run after resuming a tty.
4532 The functions are run with one argument, the terminal object that was revived.
4533 See `resume-tty'. */);
4534 Vresume_tty_functions = Qnil;
4535
4536 DEFVAR_BOOL ("visible-cursor", visible_cursor,
4537 doc: /* Non-nil means to make the cursor very visible.
4538 This only has an effect when running in a text terminal.
4539 What means \"very visible\" is up to your terminal. It may make the cursor
4540 bigger, or it may make it blink, or it may do nothing at all. */);
4541 visible_cursor = 1;
4542
4543 defsubr (&Stty_display_color_p);
4544 defsubr (&Stty_display_color_cells);
4545 defsubr (&Stty_no_underline);
4546 defsubr (&Stty_type);
4547 defsubr (&Scontrolling_tty_p);
4548 defsubr (&Stty_top_frame);
4549 defsubr (&Ssuspend_tty);
4550 defsubr (&Sresume_tty);
4551 #ifdef HAVE_GPM
4552 defsubr (&Sgpm_mouse_start);
4553 defsubr (&Sgpm_mouse_stop);
4554 #endif /* HAVE_GPM */
4555
4556 #ifndef DOS_NT
4557 default_orig_pair = NULL;
4558 default_set_foreground = NULL;
4559 default_set_background = NULL;
4560 #endif /* !DOS_NT */
4561
4562 encode_terminal_src = NULL;
4563 encode_terminal_dst = NULL;
4564
4565 DEFSYM (Qtty_menu_next_item, "tty-menu-next-item");
4566 DEFSYM (Qtty_menu_prev_item, "tty-menu-prev-item");
4567 DEFSYM (Qtty_menu_next_menu, "tty-menu-next-menu");
4568 DEFSYM (Qtty_menu_prev_menu, "tty-menu-prev-menu");
4569 DEFSYM (Qtty_menu_select, "tty-menu-select");
4570 DEFSYM (Qtty_menu_ignore, "tty-menu-ignore");
4571 DEFSYM (Qtty_menu_exit, "tty-menu-exit");
4572 DEFSYM (Qtty_menu_mouse_movement, "tty-menu-mouse-movement");
4573 DEFSYM (Qtty_menu_navigation_map, "tty-menu-navigation-map");
4574 }