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