1 /* Terminal control module for terminals described by TERMCAP
2 Copyright (C) 1985-1987, 1993-1995, 1998, 2000-2014 Free Software
5 This file is part of GNU Emacs.
7 GNU Emacs is free software: you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation, either version 3 of the License, or
10 (at your option) any later version.
12 GNU Emacs is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
20 /* New redisplay, TTY faces by Gerd Moellmann <gerd@gnu.org>. */
33 #include "character.h"
37 #include "composite.h"
41 #include "termhooks.h"
42 #include "dispextern.h"
45 #include "blockinput.h"
46 #include "syssignal.h"
48 #include "intervals.h"
51 static int been_here
= -1;
55 #include "../lwlib/lwlib.h"
65 /* The name of the default console device. */
67 #define DEV_TTY "CONOUT$"
70 #define DEV_TTY "/dev/tty"
73 static void tty_set_scroll_region (struct frame
*f
, int start
, int stop
);
74 static void turn_on_face (struct frame
*, int face_id
);
75 static void turn_off_face (struct frame
*, int face_id
);
76 static void tty_turn_off_highlight (struct tty_display_info
*);
77 static void tty_show_cursor (struct tty_display_info
*);
78 static void tty_hide_cursor (struct tty_display_info
*);
79 static void tty_background_highlight (struct tty_display_info
*tty
);
80 static void clear_tty_hooks (struct terminal
*terminal
);
81 static void set_tty_hooks (struct terminal
*terminal
);
82 static void dissociate_if_controlling_tty (int fd
);
83 static void delete_tty (struct terminal
*);
84 static _Noreturn
void maybe_fatal (bool, struct terminal
*,
85 const char *, const char *, ...)
86 ATTRIBUTE_FORMAT_PRINTF (3, 5) ATTRIBUTE_FORMAT_PRINTF (4, 5);
87 static _Noreturn
void vfatal (const char *str
, va_list ap
)
88 ATTRIBUTE_FORMAT_PRINTF (1, 0);
91 #define OUTPUT(tty, a) \
92 emacs_tputs ((tty), a, \
93 FRAME_TOTAL_LINES (XFRAME (selected_frame)) - curY (tty), \
96 #define OUTPUT1(tty, a) emacs_tputs ((tty), a, 1, cmputc)
97 #define OUTPUTL(tty, a, lines) emacs_tputs ((tty), a, lines, cmputc)
99 #define OUTPUT_IF(tty, a) \
105 #define OUTPUT1_IF(tty, a) do { if (a) emacs_tputs ((tty), a, 1, cmputc); } while (0)
107 /* Display space properties. */
109 /* Chain of all tty device parameters. */
110 struct tty_display_info
*tty_list
;
112 /* Meaning of bits in no_color_video. Each bit set means that the
113 corresponding attribute cannot be combined with colors. */
117 NC_STANDOUT
= 1 << 0,
118 NC_UNDERLINE
= 1 << 1,
129 /* The largest frame width in any call to calculate_costs. */
131 static int max_frame_cols
;
133 static Lisp_Object Qtty_mode_set_strings
;
134 static Lisp_Object Qtty_mode_reset_strings
;
139 #include <sys/fcntl.h>
141 /* The device for which we have enabled gpm support (or NULL). */
142 struct tty_display_info
*gpm_tty
= NULL
;
144 /* Last recorded mouse coordinates. */
145 static int last_mouse_x
, last_mouse_y
;
146 #endif /* HAVE_GPM */
148 /* Ring the bell on a tty. */
151 tty_ring_bell (struct frame
*f
)
153 struct tty_display_info
*tty
= FRAME_TTY (f
);
157 OUTPUT (tty
, (tty
->TS_visible_bell
&& visible_bell
158 ? tty
->TS_visible_bell
160 fflush (tty
->output
);
164 /* Set up termcap modes for Emacs. */
167 tty_send_additional_strings (struct terminal
*terminal
, Lisp_Object sym
)
169 Lisp_Object lisp_terminal
;
170 Lisp_Object extra_codes
;
171 struct tty_display_info
*tty
= terminal
->display_info
.tty
;
173 XSETTERMINAL (lisp_terminal
, terminal
);
174 for (extra_codes
= Fterminal_parameter (lisp_terminal
, sym
);
176 extra_codes
= XCDR (extra_codes
))
178 Lisp_Object string
= XCAR (extra_codes
);
179 if (STRINGP (string
))
181 fwrite (SDATA (string
), 1, SBYTES (string
), tty
->output
);
183 fwrite (SDATA (string
), 1, SBYTES (string
), tty
->termscript
);
189 tty_set_terminal_modes (struct terminal
*terminal
)
191 struct tty_display_info
*tty
= terminal
->display_info
.tty
;
195 if (tty
->TS_termcap_modes
)
196 OUTPUT (tty
, tty
->TS_termcap_modes
);
199 /* Output enough newlines to scroll all the old screen contents
200 off the screen, so it won't be overwritten and lost. */
203 for (i
= 0; i
< FRAME_TOTAL_LINES (XFRAME (selected_frame
)); i
++)
207 OUTPUT_IF (tty
, visible_cursor
? tty
->TS_cursor_visible
: tty
->TS_cursor_normal
);
208 OUTPUT_IF (tty
, tty
->TS_keypad_mode
);
210 tty_send_additional_strings (terminal
, Qtty_mode_set_strings
);
211 fflush (tty
->output
);
215 /* Reset termcap modes before exiting Emacs. */
218 tty_reset_terminal_modes (struct terminal
*terminal
)
220 struct tty_display_info
*tty
= terminal
->display_info
.tty
;
224 tty_send_additional_strings (terminal
, Qtty_mode_reset_strings
);
225 tty_turn_off_highlight (tty
);
226 tty_turn_off_insert (tty
);
227 OUTPUT_IF (tty
, tty
->TS_end_keypad_mode
);
228 OUTPUT_IF (tty
, tty
->TS_cursor_normal
);
229 OUTPUT_IF (tty
, tty
->TS_end_termcap_modes
);
230 OUTPUT_IF (tty
, tty
->TS_orig_pair
);
231 /* Output raw CR so kernel can track the cursor hpos. */
234 fflush (tty
->output
);
238 /* Flag the end of a display update on a termcap terminal. */
241 tty_update_end (struct frame
*f
)
243 struct tty_display_info
*tty
= FRAME_TTY (f
);
245 if (!XWINDOW (selected_window
)->cursor_off_p
)
246 tty_show_cursor (tty
);
247 tty_turn_off_insert (tty
);
248 tty_background_highlight (tty
);
249 fflush (tty
->output
);
252 /* The implementation of set_terminal_window for termcap frames. */
255 tty_set_terminal_window (struct frame
*f
, int size
)
257 struct tty_display_info
*tty
= FRAME_TTY (f
);
259 tty
->specified_window
= size
? size
: FRAME_TOTAL_LINES (f
);
260 if (FRAME_SCROLL_REGION_OK (f
))
261 tty_set_scroll_region (f
, 0, tty
->specified_window
);
265 tty_set_scroll_region (struct frame
*f
, int start
, int stop
)
268 struct tty_display_info
*tty
= FRAME_TTY (f
);
270 if (tty
->TS_set_scroll_region
)
271 buf
= tparam (tty
->TS_set_scroll_region
, 0, 0, start
, stop
- 1, 0, 0);
272 else if (tty
->TS_set_scroll_region_1
)
273 buf
= tparam (tty
->TS_set_scroll_region_1
, 0, 0,
274 FRAME_TOTAL_LINES (f
), start
,
275 FRAME_TOTAL_LINES (f
) - stop
,
276 FRAME_TOTAL_LINES (f
));
278 buf
= tparam (tty
->TS_set_window
, 0, 0, start
, 0, stop
, FRAME_COLS (f
));
287 tty_turn_on_insert (struct tty_display_info
*tty
)
289 if (!tty
->insert_mode
)
290 OUTPUT (tty
, tty
->TS_insert_mode
);
291 tty
->insert_mode
= 1;
295 tty_turn_off_insert (struct tty_display_info
*tty
)
297 if (tty
->insert_mode
)
298 OUTPUT (tty
, tty
->TS_end_insert_mode
);
299 tty
->insert_mode
= 0;
302 /* Handle highlighting. */
305 tty_turn_off_highlight (struct tty_display_info
*tty
)
307 if (tty
->standout_mode
)
308 OUTPUT_IF (tty
, tty
->TS_end_standout_mode
);
309 tty
->standout_mode
= 0;
313 tty_turn_on_highlight (struct tty_display_info
*tty
)
315 if (!tty
->standout_mode
)
316 OUTPUT_IF (tty
, tty
->TS_standout_mode
);
317 tty
->standout_mode
= 1;
321 tty_toggle_highlight (struct tty_display_info
*tty
)
323 if (tty
->standout_mode
)
324 tty_turn_off_highlight (tty
);
326 tty_turn_on_highlight (tty
);
330 /* Make cursor invisible. */
333 tty_hide_cursor (struct tty_display_info
*tty
)
335 if (tty
->cursor_hidden
== 0)
337 tty
->cursor_hidden
= 1;
339 w32con_hide_cursor ();
341 OUTPUT_IF (tty
, tty
->TS_cursor_invisible
);
347 /* Ensure that cursor is visible. */
350 tty_show_cursor (struct tty_display_info
*tty
)
352 if (tty
->cursor_hidden
)
354 tty
->cursor_hidden
= 0;
356 w32con_show_cursor ();
358 OUTPUT_IF (tty
, tty
->TS_cursor_normal
);
360 OUTPUT_IF (tty
, tty
->TS_cursor_visible
);
366 /* Set standout mode to the state it should be in for
367 empty space inside windows. What this is,
368 depends on the user option inverse-video. */
371 tty_background_highlight (struct tty_display_info
*tty
)
374 tty_turn_on_highlight (tty
);
376 tty_turn_off_highlight (tty
);
379 /* Set standout mode to the mode specified for the text to be output. */
382 tty_highlight_if_desired (struct tty_display_info
*tty
)
385 tty_turn_on_highlight (tty
);
387 tty_turn_off_highlight (tty
);
391 /* Move cursor to row/column position VPOS/HPOS. HPOS/VPOS are
392 frame-relative coordinates. */
395 tty_cursor_to (struct frame
*f
, int vpos
, int hpos
)
397 struct tty_display_info
*tty
= FRAME_TTY (f
);
399 /* Detect the case where we are called from reset_sys_modes
400 and the costs have never been calculated. Do nothing. */
401 if (! tty
->costs_set
)
404 if (curY (tty
) == vpos
405 && curX (tty
) == hpos
)
407 if (!tty
->TF_standout_motion
)
408 tty_background_highlight (tty
);
409 if (!tty
->TF_insmode_motion
)
410 tty_turn_off_insert (tty
);
411 cmgoto (tty
, vpos
, hpos
);
414 /* Similar but don't take any account of the wasted characters. */
417 tty_raw_cursor_to (struct frame
*f
, int row
, int col
)
419 struct tty_display_info
*tty
= FRAME_TTY (f
);
421 if (curY (tty
) == row
422 && curX (tty
) == col
)
424 if (!tty
->TF_standout_motion
)
425 tty_background_highlight (tty
);
426 if (!tty
->TF_insmode_motion
)
427 tty_turn_off_insert (tty
);
428 cmgoto (tty
, row
, col
);
431 /* Erase operations */
433 /* Clear from cursor to end of frame on a termcap device. */
436 tty_clear_to_end (struct frame
*f
)
439 struct tty_display_info
*tty
= FRAME_TTY (f
);
441 if (tty
->TS_clr_to_bottom
)
443 tty_background_highlight (tty
);
444 OUTPUT (tty
, tty
->TS_clr_to_bottom
);
448 for (i
= curY (tty
); i
< FRAME_TOTAL_LINES (f
); i
++)
451 clear_end_of_line (f
, FRAME_COLS (f
));
456 /* Clear an entire termcap frame. */
459 tty_clear_frame (struct frame
*f
)
461 struct tty_display_info
*tty
= FRAME_TTY (f
);
463 if (tty
->TS_clr_frame
)
465 tty_background_highlight (tty
);
466 OUTPUT (tty
, tty
->TS_clr_frame
);
476 /* An implementation of clear_end_of_line for termcap frames.
478 Note that the cursor may be moved, on terminals lacking a `ce' string. */
481 tty_clear_end_of_line (struct frame
*f
, int first_unused_hpos
)
484 struct tty_display_info
*tty
= FRAME_TTY (f
);
486 /* Detect the case where we are called from reset_sys_modes
487 and the costs have never been calculated. Do nothing. */
488 if (! tty
->costs_set
)
491 if (curX (tty
) >= first_unused_hpos
)
493 tty_background_highlight (tty
);
494 if (tty
->TS_clr_line
)
496 OUTPUT1 (tty
, tty
->TS_clr_line
);
499 { /* have to do it the hard way */
500 tty_turn_off_insert (tty
);
502 /* Do not write in last row last col with Auto-wrap on. */
504 && curY (tty
) == FrameRows (tty
) - 1
505 && first_unused_hpos
== FrameCols (tty
))
508 for (i
= curX (tty
); i
< first_unused_hpos
; i
++)
511 fputc (' ', tty
->termscript
);
512 fputc (' ', tty
->output
);
514 cmplus (tty
, first_unused_hpos
- curX (tty
));
518 /* Buffers to store the source and result of code conversion for terminal. */
519 static unsigned char *encode_terminal_src
;
520 static unsigned char *encode_terminal_dst
;
521 /* Allocated sizes of the above buffers. */
522 static ptrdiff_t encode_terminal_src_size
;
523 static ptrdiff_t encode_terminal_dst_size
;
525 /* Encode SRC_LEN glyphs starting at SRC to terminal output codes.
526 Set CODING->produced to the byte-length of the resulting byte
527 sequence, and return a pointer to that byte sequence. */
530 encode_terminal_code (struct glyph
*src
, int src_len
,
531 struct coding_system
*coding
)
533 struct glyph
*src_end
= src
+ src_len
;
535 ptrdiff_t nchars
, nbytes
, required
;
536 ptrdiff_t tlen
= GLYPH_TABLE_LENGTH
;
537 register Lisp_Object
*tbase
= GLYPH_TABLE_BASE
;
538 Lisp_Object charset_list
;
540 /* Allocate sufficient size of buffer to store all characters in
541 multibyte-form. But, it may be enlarged on demand if
542 Vglyph_table contains a string or a composite glyph is
544 if (min (PTRDIFF_MAX
, SIZE_MAX
) / MAX_MULTIBYTE_LENGTH
< src_len
)
545 memory_full (SIZE_MAX
);
547 required
*= MAX_MULTIBYTE_LENGTH
;
548 if (encode_terminal_src_size
< required
)
550 encode_terminal_src
= xrealloc (encode_terminal_src
, required
);
551 encode_terminal_src_size
= required
;
554 charset_list
= coding_charset_list (coding
);
556 buf
= encode_terminal_src
;
558 while (src
< src_end
)
560 if (src
->type
== COMPOSITE_GLYPH
)
562 struct composition
*cmp
IF_LINT (= NULL
);
563 Lisp_Object gstring
IF_LINT (= Qnil
);
566 nbytes
= buf
- encode_terminal_src
;
567 if (src
->u
.cmp
.automatic
)
569 gstring
= composition_gstring_from_id (src
->u
.cmp
.id
);
570 required
= src
->slice
.cmp
.to
- src
->slice
.cmp
.from
+ 1;
574 cmp
= composition_table
[src
->u
.cmp
.id
];
575 required
= cmp
->glyph_len
;
576 required
*= MAX_MULTIBYTE_LENGTH
;
579 if (encode_terminal_src_size
- nbytes
< required
)
581 encode_terminal_src
=
582 xpalloc (encode_terminal_src
, &encode_terminal_src_size
,
583 required
- (encode_terminal_src_size
- nbytes
),
585 buf
= encode_terminal_src
+ nbytes
;
588 if (src
->u
.cmp
.automatic
)
589 for (i
= src
->slice
.cmp
.from
; i
<= src
->slice
.cmp
.to
; i
++)
591 Lisp_Object g
= LGSTRING_GLYPH (gstring
, i
);
592 int c
= LGLYPH_CHAR (g
);
594 if (! char_charset (c
, charset_list
, NULL
))
596 buf
+= CHAR_STRING (c
, buf
);
600 for (i
= 0; i
< cmp
->glyph_len
; i
++)
602 int c
= COMPOSITION_GLYPH (cmp
, i
);
604 /* TAB in a composition means display glyphs with
605 padding space on the left or right. */
608 if (char_charset (c
, charset_list
, NULL
))
610 if (CHAR_WIDTH (c
) == 0
611 && i
> 0 && COMPOSITION_GLYPH (cmp
, i
- 1) == '\t')
612 /* Should be left-padded */
614 buf
+= CHAR_STRING (' ', buf
);
620 buf
+= CHAR_STRING (c
, buf
);
624 /* We must skip glyphs to be padded for a wide character. */
625 else if (! CHAR_GLYPH_PADDING_P (*src
))
632 SET_GLYPH_FROM_CHAR_GLYPH (g
, src
[0]);
634 if (GLYPH_INVALID_P (g
) || GLYPH_SIMPLE_P (tbase
, tlen
, g
))
636 /* This glyph doesn't have an entry in Vglyph_table. */
641 /* This glyph has an entry in Vglyph_table,
642 so process any alias before testing for simpleness. */
643 GLYPH_FOLLOW_ALIASES (tbase
, tlen
, g
);
645 if (GLYPH_SIMPLE_P (tbase
, tlen
, g
))
646 /* We set the multi-byte form of a character in G
647 (that should be an ASCII character) at WORKBUF. */
650 /* We have a string in Vglyph_table. */
651 string
= tbase
[GLYPH_CHAR (g
)];
656 nbytes
= buf
- encode_terminal_src
;
657 if (encode_terminal_src_size
- nbytes
< MAX_MULTIBYTE_LENGTH
)
659 encode_terminal_src
=
660 xpalloc (encode_terminal_src
, &encode_terminal_src_size
,
661 MAX_MULTIBYTE_LENGTH
, -1, 1);
662 buf
= encode_terminal_src
+ nbytes
;
665 || char_charset (c
, charset_list
, NULL
))
667 /* Store the multibyte form of C at BUF. */
668 buf
+= CHAR_STRING (c
, buf
);
673 /* C is not encodable. */
676 while (src
+ 1 < src_end
&& CHAR_GLYPH_PADDING_P (src
[1]))
686 if (! STRING_MULTIBYTE (string
))
687 string
= string_to_multibyte (string
);
688 nbytes
= buf
- encode_terminal_src
;
689 if (encode_terminal_src_size
- nbytes
< SBYTES (string
))
691 encode_terminal_src
=
692 xpalloc (encode_terminal_src
, &encode_terminal_src_size
,
694 - (encode_terminal_src_size
- nbytes
)),
696 buf
= encode_terminal_src
+ nbytes
;
698 memcpy (buf
, SDATA (string
), SBYTES (string
));
699 buf
+= SBYTES (string
);
700 nchars
+= SCHARS (string
);
708 coding
->produced
= 0;
712 nbytes
= buf
- encode_terminal_src
;
713 coding
->source
= encode_terminal_src
;
714 if (encode_terminal_dst_size
== 0)
716 encode_terminal_dst
= xrealloc (encode_terminal_dst
,
717 encode_terminal_src_size
);
718 encode_terminal_dst_size
= encode_terminal_src_size
;
720 coding
->destination
= encode_terminal_dst
;
721 coding
->dst_bytes
= encode_terminal_dst_size
;
722 encode_coding_object (coding
, Qnil
, 0, 0, nchars
, nbytes
, Qnil
);
723 /* coding->destination may have been reallocated. */
724 encode_terminal_dst
= coding
->destination
;
725 encode_terminal_dst_size
= coding
->dst_bytes
;
727 return (encode_terminal_dst
);
732 /* An implementation of write_glyphs for termcap frames. */
735 tty_write_glyphs (struct frame
*f
, struct glyph
*string
, int len
)
737 unsigned char *conversion_buffer
;
738 struct coding_system
*coding
;
741 struct tty_display_info
*tty
= FRAME_TTY (f
);
743 tty_turn_off_insert (tty
);
744 tty_hide_cursor (tty
);
746 /* Don't dare write in last column of bottom line, if Auto-Wrap,
747 since that would scroll the whole frame on some terminals. */
750 && curY (tty
) + 1 == FRAME_TOTAL_LINES (f
)
751 && (curX (tty
) + len
) == FRAME_COLS (f
))
758 /* If terminal_coding does any conversion, use it, otherwise use
759 safe_terminal_coding. We can't use CODING_REQUIRE_ENCODING here
760 because it always return 1 if the member src_multibyte is 1. */
761 coding
= (FRAME_TERMINAL_CODING (f
)->common_flags
& CODING_REQUIRE_ENCODING_MASK
762 ? FRAME_TERMINAL_CODING (f
) : &safe_terminal_coding
);
763 /* The mode bit CODING_MODE_LAST_BLOCK should be set to 1 only at
765 coding
->mode
&= ~CODING_MODE_LAST_BLOCK
;
767 for (stringlen
= len
; stringlen
!= 0; stringlen
-= n
)
769 /* Identify a run of glyphs with the same face. */
770 int face_id
= string
->face_id
;
772 for (n
= 1; n
< stringlen
; ++n
)
773 if (string
[n
].face_id
!= face_id
)
776 /* Turn appearance modes of the face of the run on. */
777 tty_highlight_if_desired (tty
);
778 turn_on_face (f
, face_id
);
781 /* This is the last run. */
782 coding
->mode
|= CODING_MODE_LAST_BLOCK
;
783 conversion_buffer
= encode_terminal_code (string
, n
, coding
);
784 if (coding
->produced
> 0)
787 fwrite (conversion_buffer
, 1, coding
->produced
, tty
->output
);
788 if (ferror (tty
->output
))
789 clearerr (tty
->output
);
791 fwrite (conversion_buffer
, 1, coding
->produced
, tty
->termscript
);
796 /* Turn appearance modes off. */
797 turn_off_face (f
, face_id
);
798 tty_turn_off_highlight (tty
);
804 #ifdef HAVE_GPM /* Only used by GPM code. */
807 tty_write_glyphs_with_face (register struct frame
*f
, register struct glyph
*string
,
808 register int len
, register int face_id
)
810 unsigned char *conversion_buffer
;
811 struct coding_system
*coding
;
813 struct tty_display_info
*tty
= FRAME_TTY (f
);
815 tty_turn_off_insert (tty
);
816 tty_hide_cursor (tty
);
818 /* Don't dare write in last column of bottom line, if Auto-Wrap,
819 since that would scroll the whole frame on some terminals. */
822 && curY (tty
) + 1 == FRAME_TOTAL_LINES (f
)
823 && (curX (tty
) + len
) == FRAME_COLS (f
))
830 /* If terminal_coding does any conversion, use it, otherwise use
831 safe_terminal_coding. We can't use CODING_REQUIRE_ENCODING here
832 because it always return 1 if the member src_multibyte is 1. */
833 coding
= (FRAME_TERMINAL_CODING (f
)->common_flags
& CODING_REQUIRE_ENCODING_MASK
834 ? FRAME_TERMINAL_CODING (f
) : &safe_terminal_coding
);
835 /* The mode bit CODING_MODE_LAST_BLOCK should be set to 1 only at
837 coding
->mode
&= ~CODING_MODE_LAST_BLOCK
;
839 /* Turn appearance modes of the face. */
840 tty_highlight_if_desired (tty
);
841 turn_on_face (f
, face_id
);
843 coding
->mode
|= CODING_MODE_LAST_BLOCK
;
844 conversion_buffer
= encode_terminal_code (string
, len
, coding
);
845 if (coding
->produced
> 0)
848 fwrite (conversion_buffer
, 1, coding
->produced
, tty
->output
);
849 if (ferror (tty
->output
))
850 clearerr (tty
->output
);
852 fwrite (conversion_buffer
, 1, coding
->produced
, tty
->termscript
);
856 /* Turn appearance modes off. */
857 turn_off_face (f
, face_id
);
858 tty_turn_off_highlight (tty
);
864 /* An implementation of insert_glyphs for termcap frames. */
867 tty_insert_glyphs (struct frame
*f
, struct glyph
*start
, int len
)
870 struct glyph
*glyph
= NULL
;
871 unsigned char *conversion_buffer
;
872 unsigned char space
[1];
873 struct coding_system
*coding
;
875 struct tty_display_info
*tty
= FRAME_TTY (f
);
877 if (tty
->TS_ins_multi_chars
)
879 buf
= tparam (tty
->TS_ins_multi_chars
, 0, 0, len
, 0, 0, 0);
883 write_glyphs (f
, start
, len
);
887 tty_turn_on_insert (tty
);
891 space
[0] = SPACEGLYPH
;
893 /* If terminal_coding does any conversion, use it, otherwise use
894 safe_terminal_coding. We can't use CODING_REQUIRE_ENCODING here
895 because it always return 1 if the member src_multibyte is 1. */
896 coding
= (FRAME_TERMINAL_CODING (f
)->common_flags
& CODING_REQUIRE_ENCODING_MASK
897 ? FRAME_TERMINAL_CODING (f
) : &safe_terminal_coding
);
898 /* The mode bit CODING_MODE_LAST_BLOCK should be set to 1 only at
900 coding
->mode
&= ~CODING_MODE_LAST_BLOCK
;
904 OUTPUT1_IF (tty
, tty
->TS_ins_char
);
907 conversion_buffer
= space
;
908 coding
->produced
= 1;
912 tty_highlight_if_desired (tty
);
913 turn_on_face (f
, start
->face_id
);
916 /* We must open sufficient space for a character which
917 occupies more than one column. */
918 while (len
&& CHAR_GLYPH_PADDING_P (*start
))
920 OUTPUT1_IF (tty
, tty
->TS_ins_char
);
925 /* This is the last glyph. */
926 coding
->mode
|= CODING_MODE_LAST_BLOCK
;
928 conversion_buffer
= encode_terminal_code (glyph
, 1, coding
);
931 if (coding
->produced
> 0)
934 fwrite (conversion_buffer
, 1, coding
->produced
, tty
->output
);
935 if (ferror (tty
->output
))
936 clearerr (tty
->output
);
938 fwrite (conversion_buffer
, 1, coding
->produced
, tty
->termscript
);
942 OUTPUT1_IF (tty
, tty
->TS_pad_inserted_char
);
945 turn_off_face (f
, glyph
->face_id
);
946 tty_turn_off_highlight (tty
);
953 /* An implementation of delete_glyphs for termcap frames. */
956 tty_delete_glyphs (struct frame
*f
, int n
)
961 struct tty_display_info
*tty
= FRAME_TTY (f
);
963 if (tty
->delete_in_insert_mode
)
965 tty_turn_on_insert (tty
);
969 tty_turn_off_insert (tty
);
970 OUTPUT_IF (tty
, tty
->TS_delete_mode
);
973 if (tty
->TS_del_multi_chars
)
975 buf
= tparam (tty
->TS_del_multi_chars
, 0, 0, n
, 0, 0, 0);
980 for (i
= 0; i
< n
; i
++)
981 OUTPUT1 (tty
, tty
->TS_del_char
);
982 if (!tty
->delete_in_insert_mode
)
983 OUTPUT_IF (tty
, tty
->TS_end_delete_mode
);
986 /* An implementation of ins_del_lines for termcap frames. */
989 tty_ins_del_lines (struct frame
*f
, int vpos
, int n
)
991 struct tty_display_info
*tty
= FRAME_TTY (f
);
993 n
> 0 ? tty
->TS_ins_multi_lines
: tty
->TS_del_multi_lines
;
994 const char *single
= n
> 0 ? tty
->TS_ins_line
: tty
->TS_del_line
;
995 const char *scroll
= n
> 0 ? tty
->TS_rev_scroll
: tty
->TS_fwd_scroll
;
1000 /* If the lines below the insertion are being pushed
1001 into the end of the window, this is the same as clearing;
1002 and we know the lines are already clear, since the matching
1003 deletion has already been done. So can ignore this. */
1004 /* If the lines below the deletion are blank lines coming
1005 out of the end of the window, don't bother,
1006 as there will be a matching inslines later that will flush them. */
1007 if (FRAME_SCROLL_REGION_OK (f
)
1008 && vpos
+ i
>= tty
->specified_window
)
1010 if (!FRAME_MEMORY_BELOW_FRAME (f
)
1011 && vpos
+ i
>= FRAME_TOTAL_LINES (f
))
1016 raw_cursor_to (f
, vpos
, 0);
1017 tty_background_highlight (tty
);
1018 buf
= tparam (multi
, 0, 0, i
, 0, 0, 0);
1024 raw_cursor_to (f
, vpos
, 0);
1025 tty_background_highlight (tty
);
1027 OUTPUT (tty
, single
);
1028 if (tty
->TF_teleray
)
1033 tty_set_scroll_region (f
, vpos
, tty
->specified_window
);
1035 raw_cursor_to (f
, tty
->specified_window
- 1, 0);
1037 raw_cursor_to (f
, vpos
, 0);
1038 tty_background_highlight (tty
);
1040 OUTPUTL (tty
, scroll
, tty
->specified_window
- vpos
);
1041 tty_set_scroll_region (f
, 0, tty
->specified_window
);
1044 if (!FRAME_SCROLL_REGION_OK (f
)
1045 && FRAME_MEMORY_BELOW_FRAME (f
)
1048 cursor_to (f
, FRAME_TOTAL_LINES (f
) + n
, 0);
1053 /* Compute cost of sending "str", in characters,
1054 not counting any line-dependent padding. */
1057 string_cost (const char *str
)
1061 tputs (str
, 0, evalcost
);
1065 /* Compute cost of sending "str", in characters,
1066 counting any line-dependent padding at one line. */
1069 string_cost_one_line (const char *str
)
1073 tputs (str
, 1, evalcost
);
1077 /* Compute per line amount of line-dependent padding,
1078 in tenths of characters. */
1081 per_line_cost (const char *str
)
1085 tputs (str
, 0, evalcost
);
1088 tputs (str
, 10, evalcost
);
1092 /* char_ins_del_cost[n] is cost of inserting N characters.
1093 char_ins_del_cost[-n] is cost of deleting N characters.
1094 The length of this vector is based on max_frame_cols. */
1096 int *char_ins_del_vector
;
1098 #define char_ins_del_cost(f) (&char_ins_del_vector[FRAME_COLS ((f))])
1102 calculate_ins_del_char_costs (struct frame
*f
)
1104 struct tty_display_info
*tty
= FRAME_TTY (f
);
1105 int ins_startup_cost
, del_startup_cost
;
1106 int ins_cost_per_char
, del_cost_per_char
;
1110 if (tty
->TS_ins_multi_chars
)
1112 ins_cost_per_char
= 0;
1113 ins_startup_cost
= string_cost_one_line (tty
->TS_ins_multi_chars
);
1115 else if (tty
->TS_ins_char
|| tty
->TS_pad_inserted_char
1116 || (tty
->TS_insert_mode
&& tty
->TS_end_insert_mode
))
1118 ins_startup_cost
= (30 * (string_cost (tty
->TS_insert_mode
)
1119 + string_cost (tty
->TS_end_insert_mode
))) / 100;
1120 ins_cost_per_char
= (string_cost_one_line (tty
->TS_ins_char
)
1121 + string_cost_one_line (tty
->TS_pad_inserted_char
));
1125 ins_startup_cost
= 9999;
1126 ins_cost_per_char
= 0;
1129 if (tty
->TS_del_multi_chars
)
1131 del_cost_per_char
= 0;
1132 del_startup_cost
= string_cost_one_line (tty
->TS_del_multi_chars
);
1134 else if (tty
->TS_del_char
)
1136 del_startup_cost
= (string_cost (tty
->TS_delete_mode
)
1137 + string_cost (tty
->TS_end_delete_mode
));
1138 if (tty
->delete_in_insert_mode
)
1139 del_startup_cost
/= 2;
1140 del_cost_per_char
= string_cost_one_line (tty
->TS_del_char
);
1144 del_startup_cost
= 9999;
1145 del_cost_per_char
= 0;
1148 /* Delete costs are at negative offsets */
1149 p
= &char_ins_del_cost (f
)[0];
1150 for (i
= FRAME_COLS (f
); --i
>= 0;)
1151 *--p
= (del_startup_cost
+= del_cost_per_char
);
1153 /* Doing nothing is free */
1154 p
= &char_ins_del_cost (f
)[0];
1157 /* Insert costs are at positive offsets */
1158 for (i
= FRAME_COLS (f
); --i
>= 0;)
1159 *p
++ = (ins_startup_cost
+= ins_cost_per_char
);
1163 calculate_costs (struct frame
*frame
)
1165 FRAME_COST_BAUD_RATE (frame
) = baud_rate
;
1167 if (FRAME_TERMCAP_P (frame
))
1169 struct tty_display_info
*tty
= FRAME_TTY (frame
);
1170 register const char *f
= (tty
->TS_set_scroll_region
1171 ? tty
->TS_set_scroll_region
1172 : tty
->TS_set_scroll_region_1
);
1174 FRAME_SCROLL_REGION_COST (frame
) = string_cost (f
);
1178 /* These variables are only used for terminal stuff. They are
1179 allocated once for the terminal frame of X-windows emacs, but not
1182 char_ins_del_vector (i.e., char_ins_del_cost) isn't used because
1183 X turns off char_ins_del_ok. */
1185 max_frame_cols
= max (max_frame_cols
, FRAME_COLS (frame
));
1186 if ((min (PTRDIFF_MAX
, SIZE_MAX
) / sizeof (int) - 1) / 2
1188 memory_full (SIZE_MAX
);
1190 char_ins_del_vector
=
1191 xrealloc (char_ins_del_vector
,
1192 (sizeof (int) + 2 * sizeof (int) * max_frame_cols
));
1194 memset (char_ins_del_vector
, 0,
1195 (sizeof (int) + 2 * sizeof (int) * max_frame_cols
));
1198 if (f
&& (!tty
->TS_ins_line
&& !tty
->TS_del_line
))
1199 do_line_insertion_deletion_costs (frame
,
1200 tty
->TS_rev_scroll
, tty
->TS_ins_multi_lines
,
1201 tty
->TS_fwd_scroll
, tty
->TS_del_multi_lines
,
1204 do_line_insertion_deletion_costs (frame
,
1205 tty
->TS_ins_line
, tty
->TS_ins_multi_lines
,
1206 tty
->TS_del_line
, tty
->TS_del_multi_lines
,
1209 calculate_ins_del_char_costs (frame
);
1211 /* Don't use TS_repeat if its padding is worse than sending the chars */
1212 if (tty
->TS_repeat
&& per_line_cost (tty
->TS_repeat
) * baud_rate
< 9000)
1213 tty
->RPov
= string_cost (tty
->TS_repeat
);
1215 tty
->RPov
= FRAME_COLS (frame
) * 2;
1217 cmcostinit (FRAME_TTY (frame
)); /* set up cursor motion costs */
1222 const char *cap
, *name
;
1225 /* Termcap capability names that correspond directly to X keysyms.
1226 Some of these (marked "terminfo") aren't supplied by old-style
1227 (Berkeley) termcap entries. They're listed in X keysym order;
1228 except we put the keypad keys first, so that if they clash with
1229 other keys (as on the IBM PC keyboard) they get overridden.
1232 static const struct fkey_table keys
[] =
1234 {"kh", "home"}, /* termcap */
1235 {"kl", "left"}, /* termcap */
1236 {"ku", "up"}, /* termcap */
1237 {"kr", "right"}, /* termcap */
1238 {"kd", "down"}, /* termcap */
1239 {"%8", "prior"}, /* terminfo */
1240 {"%5", "next"}, /* terminfo */
1241 {"@7", "end"}, /* terminfo */
1242 {"@1", "begin"}, /* terminfo */
1243 {"*6", "select"}, /* terminfo */
1244 {"%9", "print"}, /* terminfo */
1245 {"@4", "execute"}, /* terminfo --- actually the `command' key */
1247 * "insert" --- see below
1249 {"&8", "undo"}, /* terminfo */
1250 {"%0", "redo"}, /* terminfo */
1251 {"%7", "menu"}, /* terminfo --- actually the `options' key */
1252 {"@0", "find"}, /* terminfo */
1253 {"@2", "cancel"}, /* terminfo */
1254 {"%1", "help"}, /* terminfo */
1256 * "break" goes here, but can't be reliably intercepted with termcap
1258 {"&4", "reset"}, /* terminfo --- actually `restart' */
1260 * "system" and "user" --- no termcaps
1262 {"kE", "clearline"}, /* terminfo */
1263 {"kA", "insertline"}, /* terminfo */
1264 {"kL", "deleteline"}, /* terminfo */
1265 {"kI", "insertchar"}, /* terminfo */
1266 {"kD", "deletechar"}, /* terminfo */
1267 {"kB", "backtab"}, /* terminfo */
1269 * "kp_backtab", "kp-space", "kp-tab" --- no termcaps
1271 {"@8", "kp-enter"}, /* terminfo */
1273 * "kp-f1", "kp-f2", "kp-f3" "kp-f4",
1274 * "kp-multiply", "kp-add", "kp-separator",
1275 * "kp-subtract", "kp-decimal", "kp-divide", "kp-0";
1276 * --- no termcaps for any of these.
1278 {"K4", "kp-1"}, /* terminfo */
1280 * "kp-2" --- no termcap
1282 {"K5", "kp-3"}, /* terminfo */
1284 * "kp-4" --- no termcap
1286 {"K2", "kp-5"}, /* terminfo */
1288 * "kp-6" --- no termcap
1290 {"K1", "kp-7"}, /* terminfo */
1292 * "kp-8" --- no termcap
1294 {"K3", "kp-9"}, /* terminfo */
1296 * "kp-equal" --- no termcap
1308 {"&0", "S-cancel"}, /*shifted cancel key*/
1309 {"&9", "S-begin"}, /*shifted begin key*/
1310 {"*0", "S-find"}, /*shifted find key*/
1311 {"*1", "S-execute"}, /*shifted execute? actually shifted command key*/
1312 {"*4", "S-delete"}, /*shifted delete-character key*/
1313 {"*7", "S-end"}, /*shifted end key*/
1314 {"*8", "S-clearline"}, /*shifted clear-to end-of-line key*/
1315 {"#1", "S-help"}, /*shifted help key*/
1316 {"#2", "S-home"}, /*shifted home key*/
1317 {"#3", "S-insert"}, /*shifted insert-character key*/
1318 {"#4", "S-left"}, /*shifted left-arrow key*/
1319 {"%d", "S-menu"}, /*shifted menu? actually shifted options key*/
1320 {"%c", "S-next"}, /*shifted next key*/
1321 {"%e", "S-prior"}, /*shifted previous key*/
1322 {"%f", "S-print"}, /*shifted print key*/
1323 {"%g", "S-redo"}, /*shifted redo key*/
1324 {"%i", "S-right"}, /*shifted right-arrow key*/
1325 {"!3", "S-undo"} /*shifted undo key*/
1329 static char **term_get_fkeys_address
;
1330 static KBOARD
*term_get_fkeys_kboard
;
1331 static Lisp_Object
term_get_fkeys_1 (void);
1333 /* Find the escape codes sent by the function keys for Vinput_decode_map.
1334 This function scans the termcap function key sequence entries, and
1335 adds entries to Vinput_decode_map for each function key it finds. */
1338 term_get_fkeys (char **address
, KBOARD
*kboard
)
1340 /* We run the body of the function (term_get_fkeys_1) and ignore all Lisp
1341 errors during the call. The only errors should be from Fdefine_key
1342 when given a key sequence containing an invalid prefix key. If the
1343 termcap defines function keys which use a prefix that is already bound
1344 to a command by the default bindings, we should silently ignore that
1345 function key specification, rather than giving the user an error and
1346 refusing to run at all on such a terminal. */
1348 term_get_fkeys_address
= address
;
1349 term_get_fkeys_kboard
= kboard
;
1350 internal_condition_case (term_get_fkeys_1
, Qerror
, Fidentity
);
1354 term_get_fkeys_1 (void)
1358 char **address
= term_get_fkeys_address
;
1359 KBOARD
*kboard
= term_get_fkeys_kboard
;
1361 /* This can happen if CANNOT_DUMP or with strange options. */
1362 if (!KEYMAPP (KVAR (kboard
, Vinput_decode_map
)))
1363 kset_input_decode_map (kboard
, Fmake_sparse_keymap (Qnil
));
1365 for (i
= 0; i
< ARRAYELTS (keys
); i
++)
1367 char *sequence
= tgetstr (keys
[i
].cap
, address
);
1369 Fdefine_key (KVAR (kboard
, Vinput_decode_map
), build_string (sequence
),
1370 Fmake_vector (make_number (1),
1371 intern (keys
[i
].name
)));
1374 /* The uses of the "k0" capability are inconsistent; sometimes it
1375 describes F10, whereas othertimes it describes F0 and "k;" describes F10.
1376 We will attempt to politely accommodate both systems by testing for
1377 "k;", and if it is present, assuming that "k0" denotes F0, otherwise F10.
1380 const char *k_semi
= tgetstr ("k;", address
);
1381 const char *k0
= tgetstr ("k0", address
);
1382 const char *k0_name
= "f10";
1387 /* Define f0 first, so that f10 takes precedence in case the
1388 key sequences happens to be the same. */
1389 Fdefine_key (KVAR (kboard
, Vinput_decode_map
), build_string (k0
),
1390 Fmake_vector (make_number (1), intern ("f0")));
1391 Fdefine_key (KVAR (kboard
, Vinput_decode_map
), build_string (k_semi
),
1392 Fmake_vector (make_number (1), intern ("f10")));
1395 Fdefine_key (KVAR (kboard
, Vinput_decode_map
), build_string (k0
),
1396 Fmake_vector (make_number (1), intern (k0_name
)));
1399 /* Set up cookies for numbered function keys above f10. */
1401 char fcap
[3], fkey
[4];
1403 fcap
[0] = 'F'; fcap
[2] = '\0';
1404 for (i
= 11; i
< 64; i
++)
1407 fcap
[1] = '1' + i
- 11;
1409 fcap
[1] = 'A' + i
- 20;
1411 fcap
[1] = 'a' + i
- 46;
1414 char *sequence
= tgetstr (fcap
, address
);
1417 sprintf (fkey
, "f%d", i
);
1418 Fdefine_key (KVAR (kboard
, Vinput_decode_map
), build_string (sequence
),
1419 Fmake_vector (make_number (1),
1427 * Various mappings to try and get a better fit.
1430 #define CONDITIONAL_REASSIGN(cap1, cap2, sym) \
1431 if (!tgetstr (cap1, address)) \
1433 char *sequence = tgetstr (cap2, address); \
1435 Fdefine_key (KVAR (kboard, Vinput_decode_map), build_string (sequence), \
1436 Fmake_vector (make_number (1), \
1440 /* if there's no key_next keycap, map key_npage to `next' keysym */
1441 CONDITIONAL_REASSIGN ("%5", "kN", "next");
1442 /* if there's no key_prev keycap, map key_ppage to `previous' keysym */
1443 CONDITIONAL_REASSIGN ("%8", "kP", "prior");
1444 /* if there's no key_dc keycap, map key_ic to `insert' keysym */
1445 CONDITIONAL_REASSIGN ("kD", "kI", "insert");
1446 /* if there's no key_end keycap, map key_ll to 'end' keysym */
1447 CONDITIONAL_REASSIGN ("@7", "kH", "end");
1448 #undef CONDITIONAL_REASSIGN
1453 #endif /* not DOS_NT */
1456 /***********************************************************************
1457 Character Display Information
1458 ***********************************************************************/
1459 static void append_glyph (struct it
*);
1460 static void append_composite_glyph (struct it
*);
1461 static void produce_composite_glyph (struct it
*);
1462 static void append_glyphless_glyph (struct it
*, int, const char *);
1463 static void produce_glyphless_glyph (struct it
*, Lisp_Object
);
1465 /* Append glyphs to IT's glyph_row. Called from produce_glyphs for
1466 terminal frames if IT->glyph_row != NULL. IT->char_to_display is
1467 the character for which to produce glyphs; IT->face_id contains the
1468 character's face. Padding glyphs are appended if IT->c has a
1469 IT->pixel_width > 1. */
1472 append_glyph (struct it
*it
)
1474 struct glyph
*glyph
, *end
;
1477 eassert (it
->glyph_row
);
1478 glyph
= (it
->glyph_row
->glyphs
[it
->area
]
1479 + it
->glyph_row
->used
[it
->area
]);
1480 end
= it
->glyph_row
->glyphs
[1 + it
->area
];
1482 /* If the glyph row is reversed, we need to prepend the glyph rather
1484 if (it
->glyph_row
->reversed_p
&& it
->area
== TEXT_AREA
)
1487 int move_by
= it
->pixel_width
;
1489 /* Make room for the new glyphs. */
1490 if (move_by
> end
- glyph
) /* don't overstep end of this area */
1491 move_by
= end
- glyph
;
1492 for (g
= glyph
- 1; g
>= it
->glyph_row
->glyphs
[it
->area
]; g
--)
1494 glyph
= it
->glyph_row
->glyphs
[it
->area
];
1495 end
= glyph
+ move_by
;
1498 /* BIDI Note: we put the glyphs of a "multi-pixel" character left to
1499 right, even in the REVERSED_P case, since (a) all of its u.ch are
1500 identical, and (b) the PADDING_P flag needs to be set for the
1501 leftmost one, because we write to the terminal left-to-right. */
1503 i
< it
->pixel_width
&& glyph
< end
;
1506 glyph
->type
= CHAR_GLYPH
;
1507 glyph
->pixel_width
= 1;
1508 glyph
->u
.ch
= it
->char_to_display
;
1509 glyph
->face_id
= it
->face_id
;
1510 glyph
->padding_p
= i
> 0;
1511 glyph
->charpos
= CHARPOS (it
->position
);
1512 glyph
->object
= it
->object
;
1515 glyph
->resolved_level
= it
->bidi_it
.resolved_level
;
1516 eassert ((it
->bidi_it
.type
& 7) == it
->bidi_it
.type
);
1517 glyph
->bidi_type
= it
->bidi_it
.type
;
1521 glyph
->resolved_level
= 0;
1522 glyph
->bidi_type
= UNKNOWN_BT
;
1525 ++it
->glyph_row
->used
[it
->area
];
1530 /* For external use. */
1532 tty_append_glyph (struct it
*it
)
1538 /* Produce glyphs for the display element described by IT. *IT
1539 specifies what we want to produce a glyph for (character, image, ...),
1540 and where in the glyph matrix we currently are (glyph row and hpos).
1541 produce_glyphs fills in output fields of *IT with information such as the
1542 pixel width and height of a character, and maybe output actual glyphs at
1543 the same time if IT->glyph_row is non-null. For an overview, see
1544 the explanation in dispextern.h, before the definition of the
1545 display_element_type enumeration.
1547 produce_glyphs also stores the result of glyph width, ascent
1548 etc. computations in *IT.
1550 IT->glyph_row may be null, in which case produce_glyphs does not
1551 actually fill in the glyphs. This is used in the move_* functions
1552 in xdisp.c for text width and height computations.
1554 Callers usually don't call produce_glyphs directly;
1555 instead they use the macro PRODUCE_GLYPHS. */
1558 produce_glyphs (struct it
*it
)
1560 /* If a hook is installed, let it do the work. */
1562 /* Nothing but characters are supported on terminal frames. */
1563 eassert (it
->what
== IT_CHARACTER
1564 || it
->what
== IT_COMPOSITION
1565 || it
->what
== IT_STRETCH
1566 || it
->what
== IT_GLYPHLESS
);
1568 if (it
->what
== IT_STRETCH
)
1570 produce_stretch_glyph (it
);
1574 if (it
->what
== IT_COMPOSITION
)
1576 produce_composite_glyph (it
);
1580 if (it
->what
== IT_GLYPHLESS
)
1582 produce_glyphless_glyph (it
, Qnil
);
1586 if (it
->char_to_display
>= 040 && it
->char_to_display
< 0177)
1588 it
->pixel_width
= it
->nglyphs
= 1;
1592 else if (it
->char_to_display
== '\n')
1593 it
->pixel_width
= it
->nglyphs
= 0;
1594 else if (it
->char_to_display
== '\t')
1596 int absolute_x
= (it
->current_x
1597 + it
->continuation_lines_width
);
1599 = (((1 + absolute_x
+ it
->tab_width
- 1)
1604 /* If part of the TAB has been displayed on the previous line
1605 which is continued now, continuation_lines_width will have
1606 been incremented already by the part that fitted on the
1607 continued line. So, we will get the right number of spaces
1609 nspaces
= next_tab_x
- absolute_x
;
1615 it
->char_to_display
= ' ';
1616 it
->pixel_width
= it
->len
= 1;
1622 it
->pixel_width
= nspaces
;
1623 it
->nglyphs
= nspaces
;
1625 else if (CHAR_BYTE8_P (it
->char_to_display
))
1627 /* Coming here means that we must send the raw 8-bit byte as is
1628 to the terminal. Although there's no way to know how many
1629 columns it occupies on a screen, it is a good assumption that
1630 a single byte code has 1-column width. */
1631 it
->pixel_width
= it
->nglyphs
= 1;
1637 Lisp_Object charset_list
= FRAME_TERMINAL (it
->f
)->charset_list
;
1639 if (char_charset (it
->char_to_display
, charset_list
, NULL
))
1641 it
->pixel_width
= CHAR_WIDTH (it
->char_to_display
);
1642 it
->nglyphs
= it
->pixel_width
;
1648 Lisp_Object acronym
= lookup_glyphless_char_display (-1, it
);
1650 eassert (it
->what
== IT_GLYPHLESS
);
1651 produce_glyphless_glyph (it
, acronym
);
1656 /* Advance current_x by the pixel width as a convenience for
1658 if (it
->area
== TEXT_AREA
)
1659 it
->current_x
+= it
->pixel_width
;
1660 it
->ascent
= it
->max_ascent
= it
->phys_ascent
= it
->max_phys_ascent
= 0;
1661 it
->descent
= it
->max_descent
= it
->phys_descent
= it
->max_phys_descent
= 1;
1664 /* Append glyphs to IT's glyph_row for the composition IT->cmp_id.
1665 Called from produce_composite_glyph for terminal frames if
1666 IT->glyph_row != NULL. IT->face_id contains the character's
1670 append_composite_glyph (struct it
*it
)
1672 struct glyph
*glyph
;
1674 eassert (it
->glyph_row
);
1675 glyph
= it
->glyph_row
->glyphs
[it
->area
] + it
->glyph_row
->used
[it
->area
];
1676 if (glyph
< it
->glyph_row
->glyphs
[1 + it
->area
])
1678 /* If the glyph row is reversed, we need to prepend the glyph
1679 rather than append it. */
1680 if (it
->glyph_row
->reversed_p
&& it
->area
== TEXT_AREA
)
1684 /* Make room for the new glyph. */
1685 for (g
= glyph
- 1; g
>= it
->glyph_row
->glyphs
[it
->area
]; g
--)
1687 glyph
= it
->glyph_row
->glyphs
[it
->area
];
1689 glyph
->type
= COMPOSITE_GLYPH
;
1690 glyph
->pixel_width
= it
->pixel_width
;
1691 glyph
->u
.cmp
.id
= it
->cmp_it
.id
;
1692 if (it
->cmp_it
.ch
< 0)
1694 glyph
->u
.cmp
.automatic
= 0;
1695 glyph
->u
.cmp
.id
= it
->cmp_it
.id
;
1699 glyph
->u
.cmp
.automatic
= 1;
1700 glyph
->u
.cmp
.id
= it
->cmp_it
.id
;
1701 glyph
->slice
.cmp
.from
= it
->cmp_it
.from
;
1702 glyph
->slice
.cmp
.to
= it
->cmp_it
.to
- 1;
1705 glyph
->face_id
= it
->face_id
;
1706 glyph
->padding_p
= 0;
1707 glyph
->charpos
= CHARPOS (it
->position
);
1708 glyph
->object
= it
->object
;
1711 glyph
->resolved_level
= it
->bidi_it
.resolved_level
;
1712 eassert ((it
->bidi_it
.type
& 7) == it
->bidi_it
.type
);
1713 glyph
->bidi_type
= it
->bidi_it
.type
;
1717 glyph
->resolved_level
= 0;
1718 glyph
->bidi_type
= UNKNOWN_BT
;
1721 ++it
->glyph_row
->used
[it
->area
];
1727 /* Produce a composite glyph for iterator IT. IT->cmp_id is the ID of
1728 the composition. We simply produces components of the composition
1729 assuming that the terminal has a capability to layout/render it
1733 produce_composite_glyph (struct it
*it
)
1735 if (it
->cmp_it
.ch
< 0)
1737 struct composition
*cmp
= composition_table
[it
->cmp_it
.id
];
1739 it
->pixel_width
= cmp
->pixel_width
;
1743 Lisp_Object gstring
= composition_gstring_from_id (it
->cmp_it
.id
);
1745 it
->pixel_width
= composition_gstring_width (gstring
, it
->cmp_it
.from
,
1746 it
->cmp_it
.to
, NULL
);
1750 append_composite_glyph (it
);
1754 /* Append a glyph for a glyphless character to IT->glyph_row. FACE_ID
1755 is a face ID to be used for the glyph. What is actually appended
1756 are glyphs of type CHAR_GLYPH whose characters are in STR (which
1757 comes from it->nglyphs bytes). */
1760 append_glyphless_glyph (struct it
*it
, int face_id
, const char *str
)
1762 struct glyph
*glyph
, *end
;
1765 eassert (it
->glyph_row
);
1766 glyph
= it
->glyph_row
->glyphs
[it
->area
] + it
->glyph_row
->used
[it
->area
];
1767 end
= it
->glyph_row
->glyphs
[1 + it
->area
];
1769 /* If the glyph row is reversed, we need to prepend the glyph rather
1771 if (it
->glyph_row
->reversed_p
&& it
->area
== TEXT_AREA
)
1774 int move_by
= it
->pixel_width
;
1776 /* Make room for the new glyphs. */
1777 if (move_by
> end
- glyph
) /* don't overstep end of this area */
1778 move_by
= end
- glyph
;
1779 for (g
= glyph
- 1; g
>= it
->glyph_row
->glyphs
[it
->area
]; g
--)
1781 glyph
= it
->glyph_row
->glyphs
[it
->area
];
1782 end
= glyph
+ move_by
;
1787 glyph
->type
= CHAR_GLYPH
;
1788 glyph
->pixel_width
= 1;
1789 glyph
->face_id
= face_id
;
1790 glyph
->padding_p
= 0;
1791 glyph
->charpos
= CHARPOS (it
->position
);
1792 glyph
->object
= it
->object
;
1795 glyph
->resolved_level
= it
->bidi_it
.resolved_level
;
1796 eassert ((it
->bidi_it
.type
& 7) == it
->bidi_it
.type
);
1797 glyph
->bidi_type
= it
->bidi_it
.type
;
1801 glyph
->resolved_level
= 0;
1802 glyph
->bidi_type
= UNKNOWN_BT
;
1805 /* BIDI Note: we put the glyphs of characters left to right, even in
1806 the REVERSED_P case because we write to the terminal
1808 for (i
= 0; i
< it
->nglyphs
&& glyph
< end
; ++i
)
1811 glyph
[0] = glyph
[-1];
1812 glyph
->u
.ch
= str
[i
];
1813 ++it
->glyph_row
->used
[it
->area
];
1818 /* Produce glyphs for a glyphless character for iterator IT.
1819 IT->glyphless_method specifies which method to use for displaying
1820 the character. See the description of enum
1821 glyphless_display_method in dispextern.h for the details.
1823 ACRONYM, if non-nil, is an acronym string for the character.
1825 The glyphs actually produced are of type CHAR_GLYPH. */
1828 produce_glyphless_glyph (struct it
*it
, Lisp_Object acronym
)
1830 int len
, face_id
= merge_glyphless_glyph_face (it
);
1831 char buf
[sizeof "\\x" + max (6, (sizeof it
->c
* CHAR_BIT
+ 3) / 4)];
1832 char const *str
= " ";
1834 if (it
->glyphless_method
== GLYPHLESS_DISPLAY_THIN_SPACE
)
1836 /* As there's no way to produce a thin space, we produce a space
1837 of canonical width. */
1840 else if (it
->glyphless_method
== GLYPHLESS_DISPLAY_EMPTY_BOX
)
1842 len
= CHAR_WIDTH (it
->c
);
1847 len
= sprintf (buf
, "[%.*s]", len
, str
);
1852 if (it
->glyphless_method
== GLYPHLESS_DISPLAY_ACRONYM
)
1854 if (! STRINGP (acronym
) && CHAR_TABLE_P (Vglyphless_char_display
))
1855 acronym
= CHAR_TABLE_REF (Vglyphless_char_display
, it
->c
);
1856 if (CONSP (acronym
))
1857 acronym
= XCDR (acronym
);
1859 str
= STRINGP (acronym
) ? SSDATA (acronym
) : "";
1860 for (len
= 0; len
< 6 && str
[len
] && ASCII_CHAR_P (str
[len
]); len
++)
1861 buf
[1 + len
] = str
[len
];
1867 eassert (it
->glyphless_method
== GLYPHLESS_DISPLAY_HEX_CODE
);
1868 len
= (it
->c
< 0x10000 ? sprintf (buf
, "\\u%04X", it
->c
)
1869 : it
->c
<= MAX_UNICODE_CHAR
? sprintf (buf
, "\\U%06X", it
->c
)
1870 : sprintf (buf
, "\\x%06X", it
->c
));
1875 it
->pixel_width
= len
;
1878 append_glyphless_glyph (it
, face_id
, str
);
1882 /***********************************************************************
1884 ***********************************************************************/
1886 /* Value is non-zero if attribute ATTR may be used. ATTR should be
1887 one of the enumerators from enum no_color_bit, or a bit set built
1888 from them. Some display attributes may not be used together with
1889 color; the termcap capability `NC' specifies which ones. */
1891 #define MAY_USE_WITH_COLORS_P(tty, ATTR) \
1892 (tty->TN_max_colors > 0 \
1893 ? (tty->TN_no_color_video & (ATTR)) == 0 \
1896 /* Turn appearances of face FACE_ID on tty frame F on.
1897 FACE_ID is a realized face ID number, in the face cache. */
1900 turn_on_face (struct frame
*f
, int face_id
)
1902 struct face
*face
= FACE_FROM_ID (f
, face_id
);
1903 unsigned long fg
= face
->foreground
;
1904 unsigned long bg
= face
->background
;
1905 struct tty_display_info
*tty
= FRAME_TTY (f
);
1907 /* Use reverse video if the face specifies that.
1908 Do this first because TS_end_standout_mode may be the same
1909 as TS_exit_attribute_mode, which turns all appearances off. */
1910 if (MAY_USE_WITH_COLORS_P (tty
, NC_REVERSE
)
1912 ? fg
== FACE_TTY_DEFAULT_FG_COLOR
|| bg
== FACE_TTY_DEFAULT_BG_COLOR
1913 : fg
== FACE_TTY_DEFAULT_BG_COLOR
|| bg
== FACE_TTY_DEFAULT_FG_COLOR
))
1914 tty_toggle_highlight (tty
);
1916 if (face
->tty_bold_p
&& MAY_USE_WITH_COLORS_P (tty
, NC_BOLD
))
1917 OUTPUT1_IF (tty
, tty
->TS_enter_bold_mode
);
1919 if (face
->tty_italic_p
&& MAY_USE_WITH_COLORS_P (tty
, NC_ITALIC
))
1921 if (tty
->TS_enter_italic_mode
)
1922 OUTPUT1 (tty
, tty
->TS_enter_italic_mode
);
1924 /* Italics mode is unavailable on many terminals. In that
1925 case, map slant to dimmed text; we want italic text to
1926 appear different and dimming is not otherwise used. */
1927 OUTPUT1 (tty
, tty
->TS_enter_dim_mode
);
1930 if (face
->tty_underline_p
&& MAY_USE_WITH_COLORS_P (tty
, NC_UNDERLINE
))
1931 OUTPUT1_IF (tty
, tty
->TS_enter_underline_mode
);
1933 if (tty
->TN_max_colors
> 0)
1938 ts
= tty
->standout_mode
? tty
->TS_set_background
: tty
->TS_set_foreground
;
1939 if (face_tty_specified_color (fg
) && ts
)
1941 p
= tparam (ts
, NULL
, 0, fg
, 0, 0, 0);
1946 ts
= tty
->standout_mode
? tty
->TS_set_foreground
: tty
->TS_set_background
;
1947 if (face_tty_specified_color (bg
) && ts
)
1949 p
= tparam (ts
, NULL
, 0, bg
, 0, 0, 0);
1957 /* Turn off appearances of face FACE_ID on tty frame F. */
1960 turn_off_face (struct frame
*f
, int face_id
)
1962 struct face
*face
= FACE_FROM_ID (f
, face_id
);
1963 struct tty_display_info
*tty
= FRAME_TTY (f
);
1965 eassert (face
!= NULL
);
1967 if (tty
->TS_exit_attribute_mode
)
1969 /* Capability "me" will turn off appearance modes double-bright,
1970 half-bright, reverse-video, standout, underline. It may or
1971 may not turn off alt-char-mode. */
1972 if (face
->tty_bold_p
1973 || face
->tty_italic_p
1974 || face
->tty_reverse_p
1975 || face
->tty_underline_p
)
1977 OUTPUT1_IF (tty
, tty
->TS_exit_attribute_mode
);
1978 if (strcmp (tty
->TS_exit_attribute_mode
, tty
->TS_end_standout_mode
) == 0)
1979 tty
->standout_mode
= 0;
1984 /* If we don't have "me" we can only have those appearances
1985 that have exit sequences defined. */
1986 if (face
->tty_underline_p
)
1987 OUTPUT_IF (tty
, tty
->TS_exit_underline_mode
);
1990 /* Switch back to default colors. */
1991 if (tty
->TN_max_colors
> 0
1992 && ((face
->foreground
!= FACE_TTY_DEFAULT_COLOR
1993 && face
->foreground
!= FACE_TTY_DEFAULT_FG_COLOR
)
1994 || (face
->background
!= FACE_TTY_DEFAULT_COLOR
1995 && face
->background
!= FACE_TTY_DEFAULT_BG_COLOR
)))
1996 OUTPUT1_IF (tty
, tty
->TS_orig_pair
);
2000 /* Return true if the terminal on frame F supports all of the
2001 capabilities in CAPS simultaneously. */
2004 tty_capable_p (struct tty_display_info
*tty
, unsigned int caps
)
2006 #define TTY_CAPABLE_P_TRY(tty, cap, TS, NC_bit) \
2007 if ((caps & (cap)) && (!(TS) || !MAY_USE_WITH_COLORS_P(tty, NC_bit))) \
2010 TTY_CAPABLE_P_TRY (tty
, TTY_CAP_INVERSE
, tty
->TS_standout_mode
, NC_REVERSE
);
2011 TTY_CAPABLE_P_TRY (tty
, TTY_CAP_UNDERLINE
, tty
->TS_enter_underline_mode
, NC_UNDERLINE
);
2012 TTY_CAPABLE_P_TRY (tty
, TTY_CAP_BOLD
, tty
->TS_enter_bold_mode
, NC_BOLD
);
2013 TTY_CAPABLE_P_TRY (tty
, TTY_CAP_DIM
, tty
->TS_enter_dim_mode
, NC_DIM
);
2014 TTY_CAPABLE_P_TRY (tty
, TTY_CAP_ITALIC
, tty
->TS_enter_italic_mode
, NC_ITALIC
);
2020 /* Return non-zero if the terminal is capable to display colors. */
2022 DEFUN ("tty-display-color-p", Ftty_display_color_p
, Stty_display_color_p
,
2024 doc
: /* Return non-nil if the tty device TERMINAL can display colors.
2026 TERMINAL can be a terminal object, a frame, or nil (meaning the
2027 selected frame's terminal). This function always returns nil if
2028 TERMINAL does not refer to a text terminal. */)
2029 (Lisp_Object terminal
)
2031 struct terminal
*t
= decode_tty_terminal (terminal
);
2033 return (t
&& t
->display_info
.tty
->TN_max_colors
> 0) ? Qt
: Qnil
;
2036 /* Return the number of supported colors. */
2037 DEFUN ("tty-display-color-cells", Ftty_display_color_cells
,
2038 Stty_display_color_cells
, 0, 1, 0,
2039 doc
: /* Return the number of colors supported by the tty device TERMINAL.
2041 TERMINAL can be a terminal object, a frame, or nil (meaning the
2042 selected frame's terminal). This function always returns 0 if
2043 TERMINAL does not refer to a text terminal. */)
2044 (Lisp_Object terminal
)
2046 struct terminal
*t
= decode_tty_terminal (terminal
);
2048 return make_number (t
? t
->display_info
.tty
->TN_max_colors
: 0);
2053 /* Declare here rather than in the function, as in the rest of Emacs,
2054 to work around an HPUX compiler bug (?). See
2055 http://lists.gnu.org/archive/html/emacs-devel/2007-08/msg00410.html */
2056 static int default_max_colors
;
2057 static int default_max_pairs
;
2058 static int default_no_color_video
;
2059 static char *default_orig_pair
;
2060 static char *default_set_foreground
;
2061 static char *default_set_background
;
2063 /* Save or restore the default color-related capabilities of this
2066 tty_default_color_capabilities (struct tty_display_info
*tty
, bool save
)
2071 dupstring (&default_orig_pair
, tty
->TS_orig_pair
);
2072 dupstring (&default_set_foreground
, tty
->TS_set_foreground
);
2073 dupstring (&default_set_background
, tty
->TS_set_background
);
2074 default_max_colors
= tty
->TN_max_colors
;
2075 default_max_pairs
= tty
->TN_max_pairs
;
2076 default_no_color_video
= tty
->TN_no_color_video
;
2080 tty
->TS_orig_pair
= default_orig_pair
;
2081 tty
->TS_set_foreground
= default_set_foreground
;
2082 tty
->TS_set_background
= default_set_background
;
2083 tty
->TN_max_colors
= default_max_colors
;
2084 tty
->TN_max_pairs
= default_max_pairs
;
2085 tty
->TN_no_color_video
= default_no_color_video
;
2089 /* Setup one of the standard tty color schemes according to MODE.
2090 MODE's value is generally the number of colors which we want to
2091 support; zero means set up for the default capabilities, the ones
2092 we saw at init_tty time; -1 means turn off color support. */
2094 tty_setup_colors (struct tty_display_info
*tty
, int mode
)
2096 /* Canonicalize all negative values of MODE. */
2102 case -1: /* no colors at all */
2103 tty
->TN_max_colors
= 0;
2104 tty
->TN_max_pairs
= 0;
2105 tty
->TN_no_color_video
= 0;
2106 tty
->TS_set_foreground
= tty
->TS_set_background
= tty
->TS_orig_pair
= NULL
;
2108 case 0: /* default colors, if any */
2110 tty_default_color_capabilities (tty
, 0);
2112 case 8: /* 8 standard ANSI colors */
2113 tty
->TS_orig_pair
= "\033[0m";
2115 tty
->TS_set_foreground
= "\033[3%p1%dm";
2116 tty
->TS_set_background
= "\033[4%p1%dm";
2118 tty
->TS_set_foreground
= "\033[3%dm";
2119 tty
->TS_set_background
= "\033[4%dm";
2121 tty
->TN_max_colors
= 8;
2122 tty
->TN_max_pairs
= 64;
2123 tty
->TN_no_color_video
= 0;
2129 set_tty_color_mode (struct tty_display_info
*tty
, struct frame
*f
)
2131 Lisp_Object tem
, val
;
2132 Lisp_Object color_mode
;
2134 Lisp_Object tty_color_mode_alist
2135 = Fintern_soft (build_string ("tty-color-mode-alist"), Qnil
);
2137 tem
= assq_no_quit (Qtty_color_mode
, f
->param_alist
);
2138 val
= CONSP (tem
) ? XCDR (tem
) : Qnil
;
2142 else if (SYMBOLP (tty_color_mode_alist
))
2144 tem
= Fassq (val
, Fsymbol_value (tty_color_mode_alist
));
2145 color_mode
= CONSP (tem
) ? XCDR (tem
) : Qnil
;
2150 mode
= TYPE_RANGED_INTEGERP (int, color_mode
) ? XINT (color_mode
) : 0;
2152 if (mode
!= tty
->previous_color_mode
)
2154 tty
->previous_color_mode
= mode
;
2155 tty_setup_colors (tty
, mode
);
2156 /* This recomputes all the faces given the new color definitions. */
2157 safe_call (1, intern ("tty-set-up-initial-frame-faces"));
2161 #endif /* !DOS_NT */
2163 DEFUN ("tty-type", Ftty_type
, Stty_type
, 0, 1, 0,
2164 doc
: /* Return the type of the tty device that TERMINAL uses.
2165 Returns nil if TERMINAL is not on a tty device.
2167 TERMINAL can be a terminal object, a frame, or nil (meaning the
2168 selected frame's terminal). */)
2169 (Lisp_Object terminal
)
2171 struct terminal
*t
= decode_tty_terminal (terminal
);
2173 return (t
&& t
->display_info
.tty
->type
2174 ? build_string (t
->display_info
.tty
->type
) : Qnil
);
2177 DEFUN ("controlling-tty-p", Fcontrolling_tty_p
, Scontrolling_tty_p
, 0, 1, 0,
2178 doc
: /* Return non-nil if TERMINAL is the controlling tty of the Emacs process.
2180 TERMINAL can be a terminal object, a frame, or nil (meaning the
2181 selected frame's terminal). This function always returns nil if
2182 TERMINAL is not on a tty device. */)
2183 (Lisp_Object terminal
)
2185 struct terminal
*t
= decode_tty_terminal (terminal
);
2187 return (t
&& !strcmp (t
->display_info
.tty
->name
, DEV_TTY
) ? Qt
: Qnil
);
2190 DEFUN ("tty-no-underline", Ftty_no_underline
, Stty_no_underline
, 0, 1, 0,
2191 doc
: /* Declare that the tty used by TERMINAL does not handle underlining.
2192 This is used to override the terminfo data, for certain terminals that
2193 do not really do underlining, but say that they do. This function has
2194 no effect if used on a non-tty terminal.
2196 TERMINAL can be a terminal object, a frame or nil (meaning the
2197 selected frame's terminal). This function always returns nil if
2198 TERMINAL does not refer to a text terminal. */)
2199 (Lisp_Object terminal
)
2201 struct terminal
*t
= decode_live_terminal (terminal
);
2203 if (t
->type
== output_termcap
)
2204 t
->display_info
.tty
->TS_enter_underline_mode
= 0;
2208 DEFUN ("tty-top-frame", Ftty_top_frame
, Stty_top_frame
, 0, 1, 0,
2209 doc
: /* Return the topmost terminal frame on TERMINAL.
2210 TERMINAL can be a terminal object, a frame or nil (meaning the
2211 selected frame's terminal). This function returns nil if TERMINAL
2212 does not refer to a text terminal. Otherwise, it returns the
2213 top-most frame on the text terminal. */)
2214 (Lisp_Object terminal
)
2216 struct terminal
*t
= decode_live_terminal (terminal
);
2218 if (t
->type
== output_termcap
)
2219 return t
->display_info
.tty
->top_frame
;
2225 DEFUN ("suspend-tty", Fsuspend_tty
, Ssuspend_tty
, 0, 1, 0,
2226 doc
: /* Suspend the terminal device TTY.
2228 The device is restored to its default state, and Emacs ceases all
2229 access to the tty device. Frames that use the device are not deleted,
2230 but input is not read from them and if they change, their display is
2233 TTY may be a terminal object, a frame, or nil for the terminal device
2234 of the currently selected frame.
2236 This function runs `suspend-tty-functions' after suspending the
2237 device. The functions are run with one arg, the id of the suspended
2240 `suspend-tty' does nothing if it is called on a device that is already
2243 A suspended tty may be resumed by calling `resume-tty' on it. */)
2246 struct terminal
*t
= decode_tty_terminal (tty
);
2250 error ("Attempt to suspend a non-text terminal device");
2252 f
= t
->display_info
.tty
->input
;
2256 /* First run `suspend-tty-functions' and then clean up the tty
2257 state because `suspend-tty-functions' might need to change
2259 Lisp_Object args
[2];
2260 args
[0] = intern ("suspend-tty-functions");
2261 XSETTERMINAL (args
[1], t
);
2262 Frun_hook_with_args (2, args
);
2264 reset_sys_modes (t
->display_info
.tty
);
2265 delete_keyboard_wait_descriptor (fileno (f
));
2269 if (f
!= t
->display_info
.tty
->output
)
2270 fclose (t
->display_info
.tty
->output
);
2273 t
->display_info
.tty
->input
= 0;
2274 t
->display_info
.tty
->output
= 0;
2276 if (FRAMEP (t
->display_info
.tty
->top_frame
))
2277 SET_FRAME_VISIBLE (XFRAME (t
->display_info
.tty
->top_frame
), 0);
2281 /* Clear display hooks to prevent further output. */
2282 clear_tty_hooks (t
);
2287 DEFUN ("resume-tty", Fresume_tty
, Sresume_tty
, 0, 1, 0,
2288 doc
: /* Resume the previously suspended terminal device TTY.
2289 The terminal is opened and reinitialized. Frames that are on the
2290 suspended terminal are revived.
2292 It is an error to resume a terminal while another terminal is active
2295 This function runs `resume-tty-functions' after resuming the terminal.
2296 The functions are run with one arg, the id of the resumed terminal
2299 `resume-tty' does nothing if it is called on a device that is not
2302 TTY may be a terminal object, a frame, or nil (meaning the selected
2303 frame's terminal). */)
2306 struct terminal
*t
= decode_tty_terminal (tty
);
2310 error ("Attempt to resume a non-text terminal device");
2312 if (!t
->display_info
.tty
->input
)
2314 if (get_named_terminal (t
->display_info
.tty
->name
))
2315 error ("Cannot resume display while another display is active on the same device");
2318 t
->display_info
.tty
->output
= stdout
;
2319 t
->display_info
.tty
->input
= stdin
;
2321 fd
= emacs_open (t
->display_info
.tty
->name
, O_RDWR
| O_NOCTTY
, 0);
2322 t
->display_info
.tty
->input
= t
->display_info
.tty
->output
2323 = fd
< 0 ? 0 : fdopen (fd
, "w+");
2325 if (! t
->display_info
.tty
->input
)
2327 int open_errno
= errno
;
2329 report_file_errno ("Cannot reopen tty device",
2330 build_string (t
->display_info
.tty
->name
),
2334 if (!O_IGNORE_CTTY
&& strcmp (t
->display_info
.tty
->name
, DEV_TTY
) != 0)
2335 dissociate_if_controlling_tty (fd
);
2338 add_keyboard_wait_descriptor (fd
);
2340 if (FRAMEP (t
->display_info
.tty
->top_frame
))
2342 struct frame
*f
= XFRAME (t
->display_info
.tty
->top_frame
);
2344 int old_height
= FRAME_COLS (f
);
2345 int old_width
= FRAME_TOTAL_LINES (f
);
2347 /* Check if terminal/window size has changed while the frame
2349 get_tty_size (fileno (t
->display_info
.tty
->input
), &width
, &height
);
2350 if (width
!= old_width
|| height
!= old_height
)
2351 change_frame_size (f
, width
, height
- FRAME_MENU_BAR_LINES (f
),
2353 SET_FRAME_VISIBLE (XFRAME (t
->display_info
.tty
->top_frame
), 1);
2357 init_sys_modes (t
->display_info
.tty
);
2360 /* Run `resume-tty-functions'. */
2361 Lisp_Object args
[2];
2362 args
[0] = intern ("resume-tty-functions");
2363 XSETTERMINAL (args
[1], t
);
2364 Frun_hook_with_args (2, args
);
2374 /***********************************************************************
2376 ***********************************************************************/
2380 #ifndef HAVE_WINDOW_SYSTEM
2382 term_mouse_moveto (int x
, int y
)
2384 /* TODO: how to set mouse position?
2387 name = (const char *) ttyname (0);
2388 fd = emacs_open (name, O_WRONLY, 0);
2389 SOME_FUNCTION (x, y, fd);
2392 last_mouse_y = y; */
2394 #endif /* HAVE_WINDOW_SYSTEM */
2396 /* Implementation of draw_row_with_mouse_face for TTY/GPM. */
2398 tty_draw_row_with_mouse_face (struct window
*w
, struct glyph_row
*row
,
2399 int start_hpos
, int end_hpos
,
2400 enum draw_glyphs_face draw
)
2402 int nglyphs
= end_hpos
- start_hpos
;
2403 struct frame
*f
= XFRAME (WINDOW_FRAME (w
));
2404 struct tty_display_info
*tty
= FRAME_TTY (f
);
2405 int face_id
= tty
->mouse_highlight
.mouse_face_face_id
;
2406 int save_x
, save_y
, pos_x
, pos_y
;
2408 if (end_hpos
>= row
->used
[TEXT_AREA
])
2409 nglyphs
= row
->used
[TEXT_AREA
] - start_hpos
;
2411 pos_y
= row
->y
+ WINDOW_TOP_EDGE_Y (w
);
2412 pos_x
= row
->used
[LEFT_MARGIN_AREA
] + start_hpos
+ WINDOW_LEFT_EDGE_X (w
);
2414 /* Save current cursor co-ordinates. */
2415 save_y
= curY (tty
);
2416 save_x
= curX (tty
);
2417 cursor_to (f
, pos_y
, pos_x
);
2419 if (draw
== DRAW_MOUSE_FACE
)
2420 tty_write_glyphs_with_face (f
, row
->glyphs
[TEXT_AREA
] + start_hpos
,
2422 else if (draw
== DRAW_NORMAL_TEXT
)
2423 write_glyphs (f
, row
->glyphs
[TEXT_AREA
] + start_hpos
, nglyphs
);
2425 cursor_to (f
, save_y
, save_x
);
2429 term_mouse_movement (struct frame
*frame
, Gpm_Event
*event
)
2431 /* Has the mouse moved off the glyph it was on at the last sighting? */
2432 if (event
->x
!= last_mouse_x
|| event
->y
!= last_mouse_y
)
2434 frame
->mouse_moved
= 1;
2435 note_mouse_highlight (frame
, event
->x
, event
->y
);
2436 /* Remember which glyph we're now on. */
2437 last_mouse_x
= event
->x
;
2438 last_mouse_y
= event
->y
;
2444 /* Return the Time that corresponds to T. Wrap around on overflow. */
2446 timeval_to_Time (struct timeval
const *t
)
2452 ms
= t
->tv_usec
/ 1000;
2456 /* Return the current position of the mouse.
2458 Set *f to the frame the mouse is in, or zero if the mouse is in no
2459 Emacs frame. If it is set to zero, all the other arguments are
2462 Set *bar_window to Qnil, and *x and *y to the column and
2463 row of the character cell the mouse is over.
2465 Set *timeptr to the time the mouse was at the returned position.
2467 This clears mouse_moved until the next motion
2470 term_mouse_position (struct frame
**fp
, int insist
, Lisp_Object
*bar_window
,
2471 enum scroll_bar_part
*part
, Lisp_Object
*x
,
2472 Lisp_Object
*y
, Time
*timeptr
)
2476 *fp
= SELECTED_FRAME ();
2477 (*fp
)->mouse_moved
= 0;
2480 *part
= scroll_bar_above_handle
;
2482 XSETINT (*x
, last_mouse_x
);
2483 XSETINT (*y
, last_mouse_y
);
2484 gettimeofday(&now
, 0);
2485 *timeptr
= timeval_to_Time (&now
);
2488 /* Prepare a mouse-event in *RESULT for placement in the input queue.
2490 If the event is a button press, then note that we have grabbed
2494 term_mouse_click (struct input_event
*result
, Gpm_Event
*event
,
2500 result
->kind
= GPM_CLICK_EVENT
;
2501 for (i
= 0, j
= GPM_B_LEFT
; i
< 3; i
++, j
>>= 1 )
2503 if (event
->buttons
& j
) {
2504 result
->code
= i
; /* button number */
2508 gettimeofday(&now
, 0);
2509 result
->timestamp
= timeval_to_Time (&now
);
2511 if (event
->type
& GPM_UP
)
2512 result
->modifiers
= up_modifier
;
2513 else if (event
->type
& GPM_DOWN
)
2514 result
->modifiers
= down_modifier
;
2516 result
->modifiers
= 0;
2518 if (event
->type
& GPM_SINGLE
)
2519 result
->modifiers
|= click_modifier
;
2521 if (event
->type
& GPM_DOUBLE
)
2522 result
->modifiers
|= double_modifier
;
2524 if (event
->type
& GPM_TRIPLE
)
2525 result
->modifiers
|= triple_modifier
;
2527 if (event
->type
& GPM_DRAG
)
2528 result
->modifiers
|= drag_modifier
;
2530 if (!(event
->type
& (GPM_MOVE
| GPM_DRAG
))) {
2533 if (event
->modifiers
& (1 << 0))
2534 result
->modifiers
|= shift_modifier
;
2537 if (event
->modifiers
& (1 << 2))
2538 result
->modifiers
|= ctrl_modifier
;
2540 /* 1 << KG_ALT || KG_ALTGR */
2541 if (event
->modifiers
& (1 << 3)
2542 || event
->modifiers
& (1 << 1))
2543 result
->modifiers
|= meta_modifier
;
2546 XSETINT (result
->x
, event
->x
);
2547 XSETINT (result
->y
, event
->y
);
2548 XSETFRAME (result
->frame_or_window
, f
);
2554 handle_one_term_event (struct tty_display_info
*tty
, Gpm_Event
*event
, struct input_event
* hold_quit
)
2556 struct frame
*f
= XFRAME (tty
->top_frame
);
2557 struct input_event ie
;
2565 if (event
->type
& (GPM_MOVE
| GPM_DRAG
)) {
2566 previous_help_echo_string
= help_echo_string
;
2567 help_echo_string
= Qnil
;
2569 Gpm_DrawPointer (event
->x
, event
->y
, fileno (tty
->output
));
2571 if (!term_mouse_movement (f
, event
))
2572 help_echo_string
= previous_help_echo_string
;
2574 /* If the contents of the global variable help_echo_string
2575 has changed, generate a HELP_EVENT. */
2576 if (!NILP (help_echo_string
)
2577 || !NILP (previous_help_echo_string
))
2584 term_mouse_click (&ie
, event
, f
);
2588 if (ie
.kind
!= NO_EVENT
)
2590 kbd_buffer_store_event_hold (&ie
, hold_quit
);
2595 && !(hold_quit
&& hold_quit
->kind
!= NO_EVENT
))
2600 XSETFRAME (frame
, f
);
2604 gen_help_event (help_echo_string
, frame
, help_echo_window
,
2605 help_echo_object
, help_echo_pos
);
2612 DEFUN ("gpm-mouse-start", Fgpm_mouse_start
, Sgpm_mouse_start
,
2614 doc
: /* Open a connection to Gpm.
2615 Gpm-mouse can only be activated for one tty at a time. */)
2618 struct frame
*f
= SELECTED_FRAME ();
2619 struct tty_display_info
*tty
2620 = ((f
)->output_method
== output_termcap
2621 ? (f
)->terminal
->display_info
.tty
: NULL
);
2622 Gpm_Connect connection
;
2625 error ("Gpm-mouse only works in the GNU/Linux console");
2627 return Qnil
; /* Already activated, nothing to do. */
2629 error ("Gpm-mouse can only be activated for one tty at a time");
2631 connection
.eventMask
= ~0;
2632 connection
.defaultMask
= ~GPM_HARD
;
2633 connection
.maxMod
= ~0;
2634 connection
.minMod
= 0;
2637 if (Gpm_Open (&connection
, 0) < 0)
2638 error ("Gpm-mouse failed to connect to the gpm daemon");
2642 /* `init_sys_modes' arranges for mouse movements sent through gpm_fd
2643 to generate SIGIOs. Apparently we need to call reset_sys_modes
2644 before calling init_sys_modes. */
2645 reset_sys_modes (tty
);
2646 init_sys_modes (tty
);
2647 add_gpm_wait_descriptor (gpm_fd
);
2656 delete_gpm_wait_descriptor (fd
);
2657 while (Gpm_Close()); /* close all the stack */
2661 DEFUN ("gpm-mouse-stop", Fgpm_mouse_stop
, Sgpm_mouse_stop
,
2663 doc
: /* Close a connection to Gpm. */)
2666 struct frame
*f
= SELECTED_FRAME ();
2667 struct tty_display_info
*tty
2668 = ((f
)->output_method
== output_termcap
2669 ? (f
)->terminal
->display_info
.tty
: NULL
);
2671 if (!tty
|| gpm_tty
!= tty
)
2672 return Qnil
; /* Not activated on this terminal, nothing to do. */
2677 #endif /* HAVE_GPM */
2680 /***********************************************************************
2682 ***********************************************************************/
2684 #if !defined (MSDOS)
2686 /* TTY menu implementation and main ideas are borrowed from msdos.c.
2688 However, unlike on MSDOS, where the menu text is drawn directly to
2689 the display video memory, on a TTY we use display_string (see
2690 display_tty_menu_item in xdisp.c) to put the glyphs produced from
2691 the menu items into the frame's 'desired_matrix' glyph matrix, and
2692 then call update_frame_with_menu to deliver the results to the
2693 glass. The previous contents of the screen, in the form of the
2694 current_matrix, is stashed away, and used to restore screen
2695 contents when the menu selection changes or when the final
2696 selection is made and the menu should be popped down.
2698 The idea of this implementation was suggested by Gerd Moellmann. */
2700 #define TTYM_FAILURE -1
2701 #define TTYM_SUCCESS 1
2702 #define TTYM_NO_SELECT 2
2703 #define TTYM_IA_SELECT 3
2707 /* These hold text of the current and the previous menu help messages. */
2708 static const char *menu_help_message
, *prev_menu_help_message
;
2709 /* Pane number and item number of the menu item which generated the
2710 last menu help message. */
2711 static int menu_help_paneno
, menu_help_itemno
;
2713 static Lisp_Object Qtty_menu_navigation_map
, Qtty_menu_exit
;
2714 static Lisp_Object Qtty_menu_prev_item
, Qtty_menu_next_item
;
2715 static Lisp_Object Qtty_menu_next_menu
, Qtty_menu_prev_menu
;
2716 static Lisp_Object Qtty_menu_select
, Qtty_menu_ignore
;
2717 static Lisp_Object Qtty_menu_mouse_movement
;
2719 typedef struct tty_menu_struct
2723 struct tty_menu_struct
**submenu
;
2724 int *panenumber
; /* Also used as enabled flag. */
2725 ptrdiff_t allocated
;
2728 const char **help_text
;
2731 /* Create a brand new menu structure. */
2734 tty_menu_create (void)
2736 return xzalloc (sizeof *tty_menu_create ());
2739 /* Allocate some (more) memory for MENU ensuring that there is room for one
2743 tty_menu_make_room (tty_menu
*menu
)
2745 if (menu
->allocated
== menu
->count
)
2747 ptrdiff_t allocated
= menu
->allocated
;
2748 menu
->text
= xpalloc (menu
->text
, &allocated
, 1, -1, sizeof *menu
->text
);
2749 menu
->text
= xrealloc (menu
->text
, allocated
* sizeof *menu
->text
);
2750 menu
->submenu
= xrealloc (menu
->submenu
,
2751 allocated
* sizeof *menu
->submenu
);
2752 menu
->panenumber
= xrealloc (menu
->panenumber
,
2753 allocated
* sizeof *menu
->panenumber
);
2754 menu
->help_text
= xrealloc (menu
->help_text
,
2755 allocated
* sizeof *menu
->help_text
);
2756 menu
->allocated
= allocated
;
2760 /* Search the given menu structure for a given pane number. */
2763 tty_menu_search_pane (tty_menu
*menu
, int pane
)
2768 for (i
= 0; i
< menu
->count
; i
++)
2769 if (menu
->submenu
[i
])
2771 if (pane
== menu
->panenumber
[i
])
2772 return menu
->submenu
[i
];
2773 try = tty_menu_search_pane (menu
->submenu
[i
], pane
);
2777 return (tty_menu
*) 0;
2780 /* Determine how much screen space a given menu needs. */
2783 tty_menu_calc_size (tty_menu
*menu
, int *width
, int *height
)
2785 int i
, h2
, w2
, maxsubwidth
, maxheight
;
2787 maxsubwidth
= menu
->width
;
2788 maxheight
= menu
->count
;
2789 for (i
= 0; i
< menu
->count
; i
++)
2791 if (menu
->submenu
[i
])
2793 tty_menu_calc_size (menu
->submenu
[i
], &w2
, &h2
);
2794 if (w2
> maxsubwidth
) maxsubwidth
= w2
;
2795 if (i
+ h2
> maxheight
) maxheight
= i
+ h2
;
2798 *width
= maxsubwidth
;
2799 *height
= maxheight
;
2803 mouse_get_xy (int *x
, int *y
)
2805 struct frame
*sf
= SELECTED_FRAME ();
2806 Lisp_Object lmx
= Qnil
, lmy
= Qnil
, lisp_dummy
;
2807 enum scroll_bar_part part_dummy
;
2810 if (FRAME_TERMINAL (sf
)->mouse_position_hook
)
2811 (*FRAME_TERMINAL (sf
)->mouse_position_hook
) (&sf
, -1,
2812 &lisp_dummy
, &part_dummy
,
2822 /* Display MENU at (X,Y) using FACES, starting with FIRST_ITEM
2826 tty_menu_display (tty_menu
*menu
, int x
, int y
, int pn
, int *faces
,
2827 int mx
, int my
, int first_item
, bool disp_help
)
2829 int i
, face
, width
, enabled
, mousehere
, row
, col
;
2830 struct frame
*sf
= SELECTED_FRAME ();
2831 struct tty_display_info
*tty
= FRAME_TTY (sf
);
2832 /* Don't try to display more menu items than the console can display
2833 using the available screen lines. Exclude the echo area line, as
2834 it will be overwritten by the help-echo anyway. */
2835 int max_items
= min (menu
->count
- first_item
, FRAME_TOTAL_LINES (sf
) - 1 - y
);
2837 menu_help_message
= NULL
;
2839 width
= menu
->width
;
2840 col
= cursorX (tty
);
2841 row
= cursorY (tty
);
2842 for (i
= 0; i
< max_items
; i
++)
2844 int max_width
= width
+ 2; /* +2 for padding blanks on each side */
2845 int j
= i
+ first_item
;
2847 if (menu
->submenu
[j
])
2848 max_width
+= 2; /* for displaying " >" after the item */
2850 = (!menu
->submenu
[j
] && menu
->panenumber
[j
]) || (menu
->submenu
[j
]);
2851 mousehere
= (y
+ i
== my
&& x
<= mx
&& mx
< x
+ max_width
);
2852 face
= faces
[enabled
+ mousehere
* 2];
2853 /* Display the menu help string for the i-th menu item even if
2854 the menu item is currently disabled. That's what the GUI
2856 if (disp_help
&& enabled
+ mousehere
* 2 >= 2)
2858 menu_help_message
= menu
->help_text
[j
];
2859 menu_help_paneno
= pn
- 1;
2860 menu_help_itemno
= j
;
2862 /* Take note of the coordinates of the active menu item, to
2863 display the cursor there. */
2869 display_tty_menu_item (menu
->text
[j
], max_width
, face
, x
, y
+ i
,
2870 menu
->submenu
[j
] != NULL
);
2872 update_frame_with_menu (sf
, row
, col
);
2875 /* --------------------------- X Menu emulation ---------------------- */
2877 /* Create a new pane and place it on the outer-most level. */
2880 tty_menu_add_pane (tty_menu
*menu
, const char *txt
)
2884 tty_menu_make_room (menu
);
2885 menu
->submenu
[menu
->count
] = tty_menu_create ();
2886 menu
->text
[menu
->count
] = (char *)txt
;
2887 menu
->panenumber
[menu
->count
] = ++menu
->panecount
;
2888 menu
->help_text
[menu
->count
] = NULL
;
2891 /* Update the menu width, if necessary. */
2892 len
= menu_item_width ((const unsigned char *) txt
);
2893 if (len
> menu
->width
)
2896 return menu
->panecount
;
2899 /* Create a new item in a menu pane. */
2902 tty_menu_add_selection (tty_menu
*menu
, int pane
,
2903 char *txt
, bool enable
, char const *help_text
)
2909 menu
= tty_menu_search_pane (menu
, pane
);
2913 tty_menu_make_room (menu
);
2914 menu
->submenu
[menu
->count
] = (tty_menu
*) 0;
2915 menu
->text
[menu
->count
] = txt
;
2916 menu
->panenumber
[menu
->count
] = enable
;
2917 menu
->help_text
[menu
->count
] = help_text
;
2920 /* Update the menu width, if necessary. */
2921 len
= menu_item_width ((const unsigned char *) txt
);
2922 if (len
> menu
->width
)
2928 /* Decide where the menu would be placed if requested at (X,Y). */
2931 tty_menu_locate (tty_menu
*menu
, int x
, int y
,
2932 int *ulx
, int *uly
, int *width
, int *height
)
2934 tty_menu_calc_size (menu
, width
, height
);
2940 struct tty_menu_state
2942 struct glyph_matrix
*screen_behind
;
2948 /* Save away the contents of frame F's current frame matrix, and
2949 enable all its rows. Value is a glyph matrix holding the contents
2950 of F's current frame matrix with all its glyph rows enabled. */
2952 static struct glyph_matrix
*
2953 save_and_enable_current_matrix (struct frame
*f
)
2956 struct glyph_matrix
*saved
= xzalloc (sizeof *saved
);
2957 saved
->nrows
= f
->current_matrix
->nrows
;
2958 saved
->rows
= xzalloc (saved
->nrows
* sizeof *saved
->rows
);
2960 for (i
= 0; i
< saved
->nrows
; ++i
)
2962 struct glyph_row
*from
= f
->current_matrix
->rows
+ i
;
2963 struct glyph_row
*to
= saved
->rows
+ i
;
2964 ptrdiff_t nbytes
= from
->used
[TEXT_AREA
] * sizeof (struct glyph
);
2966 to
->glyphs
[TEXT_AREA
] = xmalloc (nbytes
);
2967 memcpy (to
->glyphs
[TEXT_AREA
], from
->glyphs
[TEXT_AREA
], nbytes
);
2968 to
->used
[TEXT_AREA
] = from
->used
[TEXT_AREA
];
2969 /* Make sure every row is enabled, or else update_frame will not
2970 redraw them. (Rows that are identical to what is already on
2971 screen will not be redrawn anyway.) */
2972 to
->enabled_p
= true;
2973 to
->hash
= from
->hash
;
2979 /* Restore the contents of frame F's desired frame matrix from SAVED,
2980 and free memory associated with SAVED. */
2983 restore_desired_matrix (struct frame
*f
, struct glyph_matrix
*saved
)
2987 for (i
= 0; i
< saved
->nrows
; ++i
)
2989 struct glyph_row
*from
= saved
->rows
+ i
;
2990 struct glyph_row
*to
= f
->desired_matrix
->rows
+ i
;
2991 ptrdiff_t nbytes
= from
->used
[TEXT_AREA
] * sizeof (struct glyph
);
2993 eassert (to
->glyphs
[TEXT_AREA
] != from
->glyphs
[TEXT_AREA
]);
2994 memcpy (to
->glyphs
[TEXT_AREA
], from
->glyphs
[TEXT_AREA
], nbytes
);
2995 to
->used
[TEXT_AREA
] = from
->used
[TEXT_AREA
];
2996 to
->enabled_p
= from
->enabled_p
;
2997 to
->hash
= from
->hash
;
3002 free_saved_screen (struct glyph_matrix
*saved
)
3007 return; /* Already freed! */
3009 for (i
= 0; i
< saved
->nrows
; ++i
)
3011 struct glyph_row
*from
= saved
->rows
+ i
;
3013 xfree (from
->glyphs
[TEXT_AREA
]);
3016 xfree (saved
->rows
);
3020 /* Update the display of frame F from its saved contents. */
3022 screen_update (struct frame
*f
, struct glyph_matrix
*mtx
)
3024 restore_desired_matrix (f
, mtx
);
3025 update_frame_with_menu (f
, -1, -1);
3031 MI_ITEM_SELECTED
= 1,
3034 MI_SCROLL_FORWARD
= 4,
3038 /* Read user input and return X and Y coordinates where that input
3039 puts us. We only consider mouse movement and click events, and
3040 keyboard movement commands; the rest are ignored. */
3042 read_menu_input (struct frame
*sf
, int *x
, int *y
, int min_y
, int max_y
,
3047 *first_time
= false;
3048 sf
->mouse_moved
= 1;
3053 bool usable_input
= 1;
3054 mi_result st
= MI_CONTINUE
;
3055 struct tty_display_info
*tty
= FRAME_TTY (sf
);
3056 Lisp_Object saved_mouse_tracking
= do_mouse_tracking
;
3058 /* Signal the keyboard reading routines we are displaying a menu
3059 on this terminal. */
3060 tty
->showing_menu
= 1;
3061 /* We want mouse movements be reported by read_menu_command. */
3062 do_mouse_tracking
= Qt
;
3064 cmd
= read_menu_command ();
3065 } while (NILP (cmd
));
3066 tty
->showing_menu
= 0;
3067 do_mouse_tracking
= saved_mouse_tracking
;
3069 if (EQ (cmd
, Qt
) || EQ (cmd
, Qtty_menu_exit
)
3070 /* If some input switched frames under our feet, exit the
3071 menu, since the menu faces are no longer valid, and the
3072 menu is no longer relevant anyway. */
3073 || sf
!= SELECTED_FRAME ())
3074 return MI_QUIT_MENU
;
3075 if (EQ (cmd
, Qtty_menu_mouse_movement
))
3076 mouse_get_xy (x
, y
);
3077 else if (EQ (cmd
, Qtty_menu_next_menu
))
3082 else if (EQ (cmd
, Qtty_menu_prev_menu
))
3087 else if (EQ (cmd
, Qtty_menu_next_item
))
3092 st
= MI_SCROLL_FORWARD
;
3094 else if (EQ (cmd
, Qtty_menu_prev_item
))
3099 st
= MI_SCROLL_BACK
;
3101 else if (EQ (cmd
, Qtty_menu_select
))
3102 st
= MI_ITEM_SELECTED
;
3103 else if (!EQ (cmd
, Qtty_menu_ignore
))
3106 sf
->mouse_moved
= 1;
3112 /* Display menu, wait for user's response, and return that response. */
3114 tty_menu_activate (tty_menu
*menu
, int *pane
, int *selidx
,
3115 int x0
, int y0
, char **txt
,
3116 void (*help_callback
)(char const *, int, int),
3117 bool kbd_navigation
)
3119 struct tty_menu_state
*state
;
3120 int statecount
, x
, y
, i
;
3121 bool leave
, onepane
;
3122 int result
IF_LINT (= 0);
3123 int title_faces
[4]; /* Face to display the menu title. */
3124 int faces
[4], buffers_num_deleted
= 0;
3125 struct frame
*sf
= SELECTED_FRAME ();
3126 struct tty_display_info
*tty
= FRAME_TTY (sf
);
3128 Lisp_Object selectface
;
3133 /* Don't allow non-positive x0 and y0, lest the menu will wrap
3134 around the display. */
3140 SAFE_NALLOCA (state
, 1, menu
->panecount
);
3141 memset (state
, 0, sizeof (*state
));
3143 = lookup_derived_face (sf
, intern ("tty-menu-disabled-face"),
3144 DEFAULT_FACE_ID
, 1);
3146 = lookup_derived_face (sf
, intern ("tty-menu-enabled-face"),
3147 DEFAULT_FACE_ID
, 1);
3148 selectface
= intern ("tty-menu-selected-face");
3149 faces
[2] = lookup_derived_face (sf
, selectface
,
3151 faces
[3] = lookup_derived_face (sf
, selectface
,
3154 /* Make sure the menu title is always displayed with
3155 `tty-menu-selected-face', no matter where the mouse pointer is. */
3156 for (i
= 0; i
< 4; i
++)
3157 title_faces
[i
] = faces
[3];
3161 /* Don't let the title for the "Buffers" popup menu include a
3162 digit (which is ugly).
3164 This is a terrible kludge, but I think the "Buffers" case is
3165 the only one where the title includes a number, so it doesn't
3166 seem to be necessary to make this more general. */
3167 if (strncmp (menu
->text
[0], "Buffers 1", 9) == 0)
3169 menu
->text
[0][7] = '\0';
3170 buffers_num_deleted
= 1;
3173 /* Force update of the current frame, so that the desired and the
3174 current matrices are identical. */
3175 update_frame_with_menu (sf
, -1, -1);
3176 state
[0].menu
= menu
;
3177 state
[0].screen_behind
= save_and_enable_current_matrix (sf
);
3179 /* Display the menu title. We subtract 1 from x0 and y0 because we
3180 want to interpret them as zero-based column and row coordinates,
3181 and also because we want the first item of the menu, not its
3182 title, to appear at x0,y0. */
3183 tty_menu_display (menu
, x0
- 1, y0
- 1, 1, title_faces
, x0
- 1, y0
- 1, 0, 0);
3185 /* Turn off the cursor. Otherwise it shows through the menu
3186 panes, which is ugly. */
3187 col
= cursorX (tty
);
3188 row
= cursorY (tty
);
3189 tty_hide_cursor (tty
);
3191 if (buffers_num_deleted
)
3192 menu
->text
[0][7] = ' ';
3193 onepane
= menu
->count
== 1 && menu
->submenu
[0];
3196 menu
->width
= menu
->submenu
[0]->width
;
3197 state
[0].menu
= menu
->submenu
[0];
3201 state
[0].menu
= menu
;
3203 state
[0].x
= x0
- 1;
3205 state
[0].pane
= onepane
;
3214 mi_result input_status
;
3215 int min_y
= state
[0].y
;
3216 int max_y
= min (min_y
+ state
[0].menu
->count
, FRAME_TOTAL_LINES (sf
) - 1) - 1;
3218 input_status
= read_menu_input (sf
, &x
, &y
, min_y
, max_y
, &first_time
);
3222 switch (input_status
)
3225 /* Remove the last help-echo, so that it doesn't
3226 re-appear after "Quit". */
3227 show_help_echo (Qnil
, Qnil
, Qnil
, Qnil
);
3228 result
= TTYM_NO_SELECT
;
3242 case MI_SCROLL_FORWARD
:
3243 if (y
- min_y
== state
[0].menu
->count
- 1 - first_item
)
3252 case MI_SCROLL_BACK
:
3253 if (first_item
== 0)
3256 first_item
= state
[0].menu
->count
- 1 - (y
- min_y
);
3263 /* MI_ITEM_SELECTED is handled below, so nothing to do. */
3267 if (sf
->mouse_moved
&& input_status
!= MI_QUIT_MENU
)
3269 sf
->mouse_moved
= 0;
3270 result
= TTYM_IA_SELECT
;
3271 for (i
= 0; i
< statecount
; i
++)
3272 if (state
[i
].x
<= x
&& x
< state
[i
].x
+ state
[i
].menu
->width
+ 2)
3274 int dy
= y
- state
[i
].y
+ first_item
;
3275 if (0 <= dy
&& dy
< state
[i
].menu
->count
)
3277 if (!state
[i
].menu
->submenu
[dy
])
3279 if (state
[i
].menu
->panenumber
[dy
])
3280 result
= TTYM_SUCCESS
;
3282 result
= TTYM_IA_SELECT
;
3284 *pane
= state
[i
].pane
- 1;
3286 /* We hit some part of a menu, so drop extra menus that
3287 have been opened. That does not include an open and
3289 if (i
!= statecount
- 2
3290 || state
[i
].menu
->submenu
[dy
] != state
[i
+ 1].menu
)
3291 while (i
!= statecount
- 1)
3294 screen_update (sf
, state
[statecount
].screen_behind
);
3295 state
[statecount
].screen_behind
= NULL
;
3297 if (i
== statecount
- 1 && state
[i
].menu
->submenu
[dy
])
3299 tty_menu_display (state
[i
].menu
,
3303 faces
, x
, y
, first_item
, 1);
3304 state
[statecount
].menu
= state
[i
].menu
->submenu
[dy
];
3305 state
[statecount
].pane
= state
[i
].menu
->panenumber
[dy
];
3306 state
[statecount
].screen_behind
3307 = save_and_enable_current_matrix (sf
);
3309 = state
[i
].x
+ state
[i
].menu
->width
+ 2;
3310 state
[statecount
].y
= y
;
3315 tty_menu_display (state
[statecount
- 1].menu
,
3316 state
[statecount
- 1].x
,
3317 state
[statecount
- 1].y
,
3318 state
[statecount
- 1].pane
,
3319 faces
, x
, y
, first_item
, 1);
3320 /* The call to display help-echo below will move the cursor,
3321 so remember its current position as computed by
3322 tty_menu_display. */
3323 col
= cursorX (tty
);
3324 row
= cursorY (tty
);
3327 /* Display the help-echo message for the currently-selected menu
3329 if ((menu_help_message
|| prev_menu_help_message
)
3330 && menu_help_message
!= prev_menu_help_message
)
3332 help_callback (menu_help_message
,
3333 menu_help_paneno
, menu_help_itemno
);
3334 /* Move the cursor to the beginning of the current menu
3335 item, so that screen readers and other accessibility aids
3336 know where the active region is. */
3337 cursor_to (sf
, row
, col
);
3338 prev_menu_help_message
= menu_help_message
;
3340 /* Both tty_menu_display and help_callback invoke update_end,
3341 which calls tty_show_cursor. Re-hide it, so it doesn't show
3342 through the menus. */
3343 tty_hide_cursor (tty
);
3344 fflush (tty
->output
);
3347 sf
->mouse_moved
= 0;
3348 screen_update (sf
, state
[0].screen_behind
);
3349 while (statecount
--)
3350 free_saved_screen (state
[statecount
].screen_behind
);
3351 tty_show_cursor (tty
); /* Turn cursor back on. */
3352 fflush (tty
->output
);
3354 /* Clean up any mouse events that are waiting inside Emacs event queue.
3355 These events are likely to be generated before the menu was even
3356 displayed, probably because the user pressed and released the button
3357 (which invoked the menu) too quickly. If we don't remove these events,
3358 Emacs will process them after we return and surprise the user. */
3359 discard_mouse_events ();
3360 if (!kbd_buffer_events_waiting ())
3361 clear_input_pending ();
3366 /* Dispose of a menu. */
3369 tty_menu_destroy (tty_menu
*menu
)
3372 if (menu
->allocated
)
3374 for (i
= 0; i
< menu
->count
; i
++)
3375 if (menu
->submenu
[i
])
3376 tty_menu_destroy (menu
->submenu
[i
]);
3378 xfree (menu
->submenu
);
3379 xfree (menu
->panenumber
);
3380 xfree (menu
->help_text
);
3383 menu_help_message
= prev_menu_help_message
= NULL
;
3386 /* Show help HELP_STRING, or clear help if HELP_STRING is null.
3388 PANE is the pane number, and ITEM is the menu item number in
3389 the menu (currently not used). */
3392 tty_menu_help_callback (char const *help_string
, int pane
, int item
)
3394 Lisp_Object
*first_item
;
3395 Lisp_Object pane_name
;
3396 Lisp_Object menu_object
;
3398 first_item
= XVECTOR (menu_items
)->contents
;
3399 if (EQ (first_item
[0], Qt
))
3400 pane_name
= first_item
[MENU_ITEMS_PANE_NAME
];
3401 else if (EQ (first_item
[0], Qquote
))
3402 /* This shouldn't happen, see xmenu_show. */
3403 pane_name
= empty_unibyte_string
;
3405 pane_name
= first_item
[MENU_ITEMS_ITEM_NAME
];
3407 /* (menu-item MENU-NAME PANE-NUMBER) */
3408 menu_object
= list3 (Qmenu_item
, pane_name
, make_number (pane
));
3409 show_help_echo (help_string
? build_string (help_string
) : Qnil
,
3410 Qnil
, menu_object
, make_number (item
));
3414 tty_pop_down_menu (Lisp_Object arg
)
3416 tty_menu
*menu
= XSAVE_POINTER (arg
, 0);
3419 tty_menu_destroy (menu
);
3423 /* Return the zero-based index of the last menu-bar item on frame F. */
3425 tty_menu_last_menubar_item (struct frame
*f
)
3429 eassert (FRAME_TERMCAP_P (f
) && FRAME_LIVE_P (f
));
3430 if (FRAME_TERMCAP_P (f
) && FRAME_LIVE_P (f
))
3432 Lisp_Object items
= FRAME_MENU_BAR_ITEMS (f
);
3434 while (i
< ASIZE (items
))
3438 str
= AREF (items
, i
+ 1);
3443 i
-= 4; /* Went one too far! */
3448 /* Find in frame F's menu bar the menu item that is next or previous
3449 to the item at X/Y, and return that item's position in X/Y. WHICH
3450 says which one--next or previous--item to look for. X and Y are
3451 measured in character cells. This should only be called on TTY
3454 tty_menu_new_item_coords (struct frame
*f
, int which
, int *x
, int *y
)
3456 eassert (FRAME_TERMCAP_P (f
) && FRAME_LIVE_P (f
));
3457 if (FRAME_TERMCAP_P (f
) && FRAME_LIVE_P (f
))
3459 Lisp_Object items
= FRAME_MENU_BAR_ITEMS (f
);
3460 int last_i
= tty_menu_last_menubar_item (f
);
3463 /* This loop assumes a single menu-bar line, and will fail to
3464 find an item if it is not in the first line. Note that
3465 make_lispy_event in keyboard.c makes the same assumption. */
3466 for (i
= 0, prev_x
= -1; i
< ASIZE (items
); i
+= 4)
3468 Lisp_Object pos
, str
;
3471 str
= AREF (items
, i
+ 1);
3472 pos
= AREF (items
, i
+ 3);
3477 /* We use <= so the blank between 2 items on a TTY is
3478 considered part of the previous item. */
3479 && *x
<= ix
+ menu_item_width (SDATA (str
)))
3481 /* Found current item. Now compute the X coordinate of
3482 the previous or next item. */
3483 if (which
== TTYM_NEXT
)
3486 *x
= XINT (AREF (items
, i
+ 4 + 3));
3488 *x
= 0; /* Wrap around to the first item. */
3490 else if (prev_x
< 0)
3492 /* Wrap around to the last item. */
3493 *x
= XINT (AREF (items
, last_i
+ 3));
3504 /* WINDOWSNT uses this as menu_show_hook, see w32console.c. */
3506 tty_menu_show (struct frame
*f
, int x
, int y
, int menuflags
,
3507 Lisp_Object title
, const char **error_name
)
3510 int pane
, selidx
, lpane
, status
;
3511 Lisp_Object entry
, pane_prefix
;
3513 int ulx
, uly
, width
, height
;
3515 int dispwidth
, dispheight
;
3516 int i
, j
, lines
, maxlines
;
3518 ptrdiff_t specpdl_count
;
3520 eassert (FRAME_TERMCAP_P (f
));
3523 if (menu_items_n_panes
== 0)
3526 if (menu_items_used
<= MENU_ITEMS_PANE_LENGTH
)
3528 *error_name
= "Empty menu";
3532 /* Make the menu on that window. */
3533 menu
= tty_menu_create ();
3535 /* Don't GC while we prepare and show the menu, because we give the
3536 menu functions pointers to the contents of strings. */
3537 specpdl_count
= inhibit_garbage_collection ();
3539 /* Avoid crashes if, e.g., another client will connect while we
3541 temporarily_switch_to_single_kboard (f
);
3543 /* Adjust coordinates to be root-window-relative. */
3544 item_x
= x
+= f
->left_pos
;
3545 item_y
= y
+= f
->top_pos
;
3547 /* Create all the necessary panes and their items. */
3549 maxwidth
= maxlines
= lines
= i
= 0;
3550 lpane
= TTYM_FAILURE
;
3551 while (i
< menu_items_used
)
3553 if (EQ (AREF (menu_items
, i
), Qt
))
3555 /* Create a new pane. */
3556 Lisp_Object pane_name
, prefix
;
3557 const char *pane_string
;
3559 maxlines
= max (maxlines
, lines
);
3561 pane_name
= AREF (menu_items
, i
+ MENU_ITEMS_PANE_NAME
);
3562 prefix
= AREF (menu_items
, i
+ MENU_ITEMS_PANE_PREFIX
);
3563 pane_string
= (NILP (pane_name
)
3564 ? "" : SSDATA (pane_name
));
3565 if ((menuflags
& MENU_KEYMAPS
) && !NILP (prefix
))
3568 lpane
= tty_menu_add_pane (menu
, pane_string
);
3569 if (lpane
== TTYM_FAILURE
)
3571 tty_menu_destroy (menu
);
3572 *error_name
= "Can't create pane";
3576 i
+= MENU_ITEMS_PANE_LENGTH
;
3578 /* Find the width of the widest item in this pane. */
3580 while (j
< menu_items_used
)
3583 item
= AREF (menu_items
, j
);
3591 width
= SBYTES (item
);
3592 if (width
> maxwidth
)
3595 j
+= MENU_ITEMS_ITEM_LENGTH
;
3598 /* Ignore a nil in the item list.
3599 It's meaningful only for dialog boxes. */
3600 else if (EQ (AREF (menu_items
, i
), Qquote
))
3604 /* Create a new item within current pane. */
3605 Lisp_Object item_name
, enable
, descrip
, help
;
3607 char const *help_string
;
3609 item_name
= AREF (menu_items
, i
+ MENU_ITEMS_ITEM_NAME
);
3610 enable
= AREF (menu_items
, i
+ MENU_ITEMS_ITEM_ENABLE
);
3611 descrip
= AREF (menu_items
, i
+ MENU_ITEMS_ITEM_EQUIV_KEY
);
3612 help
= AREF (menu_items
, i
+ MENU_ITEMS_ITEM_HELP
);
3613 help_string
= STRINGP (help
) ? SSDATA (help
) : NULL
;
3615 if (!NILP (descrip
))
3617 item_data
= SAFE_ALLOCA (maxwidth
+ SBYTES (descrip
) + 1);
3618 memcpy (item_data
, SSDATA (item_name
), SBYTES (item_name
));
3619 for (j
= SCHARS (item_name
); j
< maxwidth
; j
++)
3621 memcpy (item_data
+ j
, SSDATA (descrip
), SBYTES (descrip
));
3622 item_data
[j
+ SBYTES (descrip
)] = 0;
3625 item_data
= SSDATA (item_name
);
3627 if (lpane
== TTYM_FAILURE
3628 || (! tty_menu_add_selection (menu
, lpane
, item_data
,
3629 !NILP (enable
), help_string
)))
3631 tty_menu_destroy (menu
);
3632 *error_name
= "Can't add selection to menu";
3636 i
+= MENU_ITEMS_ITEM_LENGTH
;
3641 maxlines
= max (maxlines
, lines
);
3643 /* All set and ready to fly. */
3644 dispwidth
= f
->text_cols
;
3645 dispheight
= f
->text_lines
;
3646 x
= min (x
, dispwidth
);
3647 y
= min (y
, dispheight
);
3650 tty_menu_locate (menu
, x
, y
, &ulx
, &uly
, &width
, &height
);
3651 if (ulx
+ width
> dispwidth
)
3653 x
-= (ulx
+ width
) - dispwidth
;
3654 ulx
= dispwidth
- width
;
3656 if (uly
+ height
> dispheight
)
3658 y
-= (uly
+ height
) - dispheight
;
3659 uly
= dispheight
- height
;
3662 if (FRAME_HAS_MINIBUF_P (f
) && uly
+ height
> dispheight
- 2)
3664 /* Move the menu away of the echo area, to avoid overwriting the
3665 menu with help echo messages or vice versa. */
3666 if (BUFFERP (echo_area_buffer
[0]) && WINDOWP (echo_area_window
))
3668 y
-= WINDOW_TOTAL_LINES (XWINDOW (echo_area_window
)) + 1;
3669 uly
-= WINDOW_TOTAL_LINES (XWINDOW (echo_area_window
)) + 1;
3678 if (ulx
< 0) x
-= ulx
;
3679 if (uly
< 0) y
-= uly
;
3682 /* This code doesn't make sense on a TTY, since it can easily annul
3683 the adjustments above that carefully avoid truncation of the menu
3684 items. I think it was written to fix some problem that only
3688 /* If position was not given by a mouse click, adjust so upper left
3689 corner of the menu as a whole ends up at given coordinates. This
3690 is what x-popup-menu says in its documentation. */
3692 y
+= 1.5 * height
/ (maxlines
+ 2);
3698 record_unwind_protect (tty_pop_down_menu
, make_save_ptr (menu
));
3700 specbind (Qoverriding_terminal_local_map
,
3701 Fsymbol_value (Qtty_menu_navigation_map
));
3702 status
= tty_menu_activate (menu
, &pane
, &selidx
, x
, y
, &datap
,
3703 tty_menu_help_callback
,
3704 menuflags
& MENU_KBD_NAVIGATION
);
3705 entry
= pane_prefix
= Qnil
;
3710 /* Find the item number SELIDX in pane number PANE. */
3712 while (i
< menu_items_used
)
3714 if (EQ (AREF (menu_items
, i
), Qt
))
3718 = AREF (menu_items
, i
+ MENU_ITEMS_PANE_PREFIX
);
3720 i
+= MENU_ITEMS_PANE_LENGTH
;
3729 = AREF (menu_items
, i
+ MENU_ITEMS_ITEM_VALUE
);
3730 if (menuflags
& MENU_KEYMAPS
)
3732 entry
= Fcons (entry
, Qnil
);
3733 if (!NILP (pane_prefix
))
3734 entry
= Fcons (pane_prefix
, entry
);
3740 i
+= MENU_ITEMS_ITEM_LENGTH
;
3747 tty_menu_new_item_coords (f
, status
, &item_x
, &item_y
);
3748 entry
= Fcons (make_number (item_x
), make_number (item_y
));
3752 *error_name
= "Can't activate menu";
3753 case TTYM_IA_SELECT
:
3755 case TTYM_NO_SELECT
:
3756 /* If the selected frame was changed while we displayed a menu,
3757 throw to top level in order to undo any temporary settings
3758 made by TTY menu code. */
3759 if (f
!= SELECTED_FRAME ())
3761 /* Make "Cancel" equivalent to C-g unless FOR_CLICK (which means
3762 the menu was invoked with a mouse event as POSITION). */
3763 if (!(menuflags
& MENU_FOR_CLICK
))
3764 Fsignal (Qquit
, Qnil
);
3771 unbind_to (specpdl_count
, Qnil
);
3779 /***********************************************************************
3781 ***********************************************************************/
3783 /* Initialize the tty-dependent part of frame F. The frame must
3784 already have its device initialized. */
3787 create_tty_output (struct frame
*f
)
3789 struct tty_output
*t
= xzalloc (sizeof *t
);
3791 eassert (FRAME_TERMCAP_P (f
));
3793 t
->display_info
= FRAME_TERMINAL (f
)->display_info
.tty
;
3795 f
->output_data
.tty
= t
;
3798 /* Delete frame F's face cache, and its tty-dependent part. */
3801 tty_free_frame_resources (struct frame
*f
)
3803 eassert (FRAME_TERMCAP_P (f
));
3804 free_frame_faces (f
);
3805 xfree (f
->output_data
.tty
);
3810 /* Delete frame F's face cache. */
3813 tty_free_frame_resources (struct frame
*f
)
3815 eassert (FRAME_TERMCAP_P (f
) || FRAME_MSDOS_P (f
));
3816 free_frame_faces (f
);
3820 /* Reset the hooks in TERMINAL. */
3823 clear_tty_hooks (struct terminal
*terminal
)
3826 terminal
->cursor_to_hook
= 0;
3827 terminal
->raw_cursor_to_hook
= 0;
3828 terminal
->clear_to_end_hook
= 0;
3829 terminal
->clear_frame_hook
= 0;
3830 terminal
->clear_end_of_line_hook
= 0;
3831 terminal
->ins_del_lines_hook
= 0;
3832 terminal
->insert_glyphs_hook
= 0;
3833 terminal
->write_glyphs_hook
= 0;
3834 terminal
->delete_glyphs_hook
= 0;
3835 terminal
->ring_bell_hook
= 0;
3836 terminal
->reset_terminal_modes_hook
= 0;
3837 terminal
->set_terminal_modes_hook
= 0;
3838 terminal
->update_begin_hook
= 0;
3839 terminal
->update_end_hook
= 0;
3840 terminal
->set_terminal_window_hook
= 0;
3841 terminal
->mouse_position_hook
= 0;
3842 terminal
->frame_rehighlight_hook
= 0;
3843 terminal
->frame_raise_lower_hook
= 0;
3844 terminal
->fullscreen_hook
= 0;
3845 terminal
->menu_show_hook
= 0;
3846 terminal
->set_vertical_scroll_bar_hook
= 0;
3847 terminal
->set_horizontal_scroll_bar_hook
= 0;
3848 terminal
->condemn_scroll_bars_hook
= 0;
3849 terminal
->redeem_scroll_bar_hook
= 0;
3850 terminal
->judge_scroll_bars_hook
= 0;
3851 terminal
->read_socket_hook
= 0;
3852 terminal
->frame_up_to_date_hook
= 0;
3854 /* Leave these two set, or suspended frames are not deleted
3856 terminal
->delete_frame_hook
= &tty_free_frame_resources
;
3857 terminal
->delete_terminal_hook
= &delete_tty
;
3860 /* Initialize hooks in TERMINAL with the values needed for a tty. */
3863 set_tty_hooks (struct terminal
*terminal
)
3865 terminal
->cursor_to_hook
= &tty_cursor_to
;
3866 terminal
->raw_cursor_to_hook
= &tty_raw_cursor_to
;
3867 terminal
->clear_to_end_hook
= &tty_clear_to_end
;
3868 terminal
->clear_frame_hook
= &tty_clear_frame
;
3869 terminal
->clear_end_of_line_hook
= &tty_clear_end_of_line
;
3870 terminal
->ins_del_lines_hook
= &tty_ins_del_lines
;
3871 terminal
->insert_glyphs_hook
= &tty_insert_glyphs
;
3872 terminal
->write_glyphs_hook
= &tty_write_glyphs
;
3873 terminal
->delete_glyphs_hook
= &tty_delete_glyphs
;
3874 terminal
->ring_bell_hook
= &tty_ring_bell
;
3875 terminal
->reset_terminal_modes_hook
= &tty_reset_terminal_modes
;
3876 terminal
->set_terminal_modes_hook
= &tty_set_terminal_modes
;
3877 terminal
->update_end_hook
= &tty_update_end
;
3879 terminal
->menu_show_hook
= &x_menu_show
;
3881 terminal
->menu_show_hook
= &tty_menu_show
;
3883 terminal
->set_terminal_window_hook
= &tty_set_terminal_window
;
3884 terminal
->read_socket_hook
= &tty_read_avail_input
; /* keyboard.c */
3885 terminal
->delete_frame_hook
= &tty_free_frame_resources
;
3886 terminal
->delete_terminal_hook
= &delete_tty
;
3887 /* Other hooks are NULL by default. */
3890 /* If FD is the controlling terminal, drop it. */
3892 dissociate_if_controlling_tty (int fd
)
3894 /* If tcgetpgrp succeeds, fd is the controlling terminal,
3895 so dissociate it by invoking setsid. */
3896 if (tcgetpgrp (fd
) >= 0 && setsid () < 0)
3899 /* setsid failed, presumably because Emacs is already a process
3900 group leader. Fall back on the obsolescent way to dissociate
3901 a controlling tty. */
3903 block_tty_out_signal (&oldset
);
3904 ioctl (fd
, TIOCNOTTY
, 0);
3905 unblock_tty_out_signal (&oldset
);
3910 /* Create a termcap display on the tty device with the given name and
3913 If NAME is NULL, then use the controlling tty, i.e., "/dev/tty".
3914 Otherwise NAME should be a path to the tty device file,
3917 TERMINAL_TYPE is the termcap type of the device, e.g. "vt100".
3919 If MUST_SUCCEED is true, then all errors are fatal. */
3922 init_tty (const char *name
, const char *terminal_type
, bool must_succeed
)
3925 char **address
= &area
;
3927 struct tty_display_info
*tty
= NULL
;
3928 struct terminal
*terminal
= NULL
;
3930 bool ctty
= false; /* True if asked to open controlling tty. */
3933 maybe_fatal (must_succeed
, 0,
3934 "Unknown terminal type",
3935 "Unknown terminal type");
3939 if (!strcmp (name
, DEV_TTY
))
3942 /* If we already have a terminal on the given device, use that. If
3943 all such terminals are suspended, create a new one instead. */
3944 /* XXX Perhaps this should be made explicit by having init_tty
3945 always create a new terminal and separating terminal and frame
3946 creation on Lisp level. */
3947 terminal
= get_named_terminal (name
);
3951 terminal
= create_terminal (output_termcap
, NULL
);
3954 maybe_fatal (0, 0, "Attempt to create another terminal %s", "",
3957 tty
= &the_only_display_info
;
3959 tty
= xzalloc (sizeof *tty
);
3961 tty
->top_frame
= Qnil
;
3962 tty
->next
= tty_list
;
3965 terminal
->display_info
.tty
= tty
;
3966 tty
->terminal
= terminal
;
3968 tty
->Wcm
= xmalloc (sizeof *tty
->Wcm
);
3971 encode_terminal_src_size
= 0;
3972 encode_terminal_dst_size
= 0;
3976 set_tty_hooks (terminal
);
3979 /* Open the terminal device. */
3981 /* If !ctty, don't recognize it as our controlling terminal, and
3982 don't make it the controlling tty if we don't have one now.
3984 Alas, O_IGNORE_CTTY is a GNU extension that seems to be only
3985 defined on Hurd. On other systems, we need to explicitly
3986 dissociate ourselves from the controlling tty when we want to
3987 open a frame on the same terminal. */
3988 int flags
= O_RDWR
| O_NOCTTY
| (ctty
? 0 : O_IGNORE_CTTY
);
3989 int fd
= emacs_open (name
, flags
, 0);
3990 tty
->input
= tty
->output
3991 = ((fd
< 0 || ! isatty (fd
))
3993 : fdopen (fd
, "w+"));
3997 char const *diagnostic
3998 = (fd
< 0) ? "Could not open file: %s" : "Not a tty device: %s";
4000 maybe_fatal (must_succeed
, terminal
, diagnostic
, diagnostic
, name
);
4003 tty
->name
= xstrdup (name
);
4004 terminal
->name
= xstrdup (name
);
4006 if (!O_IGNORE_CTTY
&& !ctty
)
4007 dissociate_if_controlling_tty (fd
);
4010 tty
->type
= xstrdup (terminal_type
);
4012 add_keyboard_wait_descriptor (fileno (tty
->input
));
4016 /* On some systems, tgetent tries to access the controlling
4018 block_tty_out_signal (&oldset
);
4019 status
= tgetent (tty
->termcap_term_buffer
, terminal_type
);
4020 if (tty
->termcap_term_buffer
[TERMCAP_BUFFER_SIZE
- 1])
4022 unblock_tty_out_signal (&oldset
);
4027 maybe_fatal (must_succeed
, terminal
,
4028 "Cannot open terminfo database file",
4029 "Cannot open terminfo database file");
4031 maybe_fatal (must_succeed
, terminal
,
4032 "Cannot open termcap database file",
4033 "Cannot open termcap database file");
4038 maybe_fatal (must_succeed
, terminal
,
4039 "Terminal type %s is not defined",
4040 "Terminal type %s is not defined.\n\
4041 If that is not the actual type of terminal you have,\n\
4042 use the Bourne shell command `TERM=... export TERM' (C-shell:\n\
4043 `setenv TERM ...') to specify the correct type. It may be necessary\n"
4045 "to do `unset TERMINFO' (C-shell: `unsetenv TERMINFO') as well.",
4047 "to do `unset TERMCAP' (C-shell: `unsetenv TERMCAP') as well.",
4052 area
= tty
->termcap_strings_buffer
;
4053 tty
->TS_ins_line
= tgetstr ("al", address
);
4054 tty
->TS_ins_multi_lines
= tgetstr ("AL", address
);
4055 tty
->TS_bell
= tgetstr ("bl", address
);
4056 BackTab (tty
) = tgetstr ("bt", address
);
4057 tty
->TS_clr_to_bottom
= tgetstr ("cd", address
);
4058 tty
->TS_clr_line
= tgetstr ("ce", address
);
4059 tty
->TS_clr_frame
= tgetstr ("cl", address
);
4060 ColPosition (tty
) = NULL
; /* tgetstr ("ch", address); */
4061 AbsPosition (tty
) = tgetstr ("cm", address
);
4062 CR (tty
) = tgetstr ("cr", address
);
4063 tty
->TS_set_scroll_region
= tgetstr ("cs", address
);
4064 tty
->TS_set_scroll_region_1
= tgetstr ("cS", address
);
4065 RowPosition (tty
) = tgetstr ("cv", address
);
4066 tty
->TS_del_char
= tgetstr ("dc", address
);
4067 tty
->TS_del_multi_chars
= tgetstr ("DC", address
);
4068 tty
->TS_del_line
= tgetstr ("dl", address
);
4069 tty
->TS_del_multi_lines
= tgetstr ("DL", address
);
4070 tty
->TS_delete_mode
= tgetstr ("dm", address
);
4071 tty
->TS_end_delete_mode
= tgetstr ("ed", address
);
4072 tty
->TS_end_insert_mode
= tgetstr ("ei", address
);
4073 Home (tty
) = tgetstr ("ho", address
);
4074 tty
->TS_ins_char
= tgetstr ("ic", address
);
4075 tty
->TS_ins_multi_chars
= tgetstr ("IC", address
);
4076 tty
->TS_insert_mode
= tgetstr ("im", address
);
4077 tty
->TS_pad_inserted_char
= tgetstr ("ip", address
);
4078 tty
->TS_end_keypad_mode
= tgetstr ("ke", address
);
4079 tty
->TS_keypad_mode
= tgetstr ("ks", address
);
4080 LastLine (tty
) = tgetstr ("ll", address
);
4081 Right (tty
) = tgetstr ("nd", address
);
4082 Down (tty
) = tgetstr ("do", address
);
4084 Down (tty
) = tgetstr ("nl", address
); /* Obsolete name for "do". */
4085 if (tgetflag ("bs"))
4086 Left (tty
) = "\b"; /* Can't possibly be longer! */
4087 else /* (Actually, "bs" is obsolete...) */
4088 Left (tty
) = tgetstr ("le", address
);
4090 Left (tty
) = tgetstr ("bc", address
); /* Obsolete name for "le". */
4091 tty
->TS_pad_char
= tgetstr ("pc", address
);
4092 tty
->TS_repeat
= tgetstr ("rp", address
);
4093 tty
->TS_end_standout_mode
= tgetstr ("se", address
);
4094 tty
->TS_fwd_scroll
= tgetstr ("sf", address
);
4095 tty
->TS_standout_mode
= tgetstr ("so", address
);
4096 tty
->TS_rev_scroll
= tgetstr ("sr", address
);
4097 tty
->Wcm
->cm_tab
= tgetstr ("ta", address
);
4098 tty
->TS_end_termcap_modes
= tgetstr ("te", address
);
4099 tty
->TS_termcap_modes
= tgetstr ("ti", address
);
4100 Up (tty
) = tgetstr ("up", address
);
4101 tty
->TS_visible_bell
= tgetstr ("vb", address
);
4102 tty
->TS_cursor_normal
= tgetstr ("ve", address
);
4103 tty
->TS_cursor_visible
= tgetstr ("vs", address
);
4104 tty
->TS_cursor_invisible
= tgetstr ("vi", address
);
4105 tty
->TS_set_window
= tgetstr ("wi", address
);
4107 tty
->TS_enter_underline_mode
= tgetstr ("us", address
);
4108 tty
->TS_exit_underline_mode
= tgetstr ("ue", address
);
4109 tty
->TS_enter_bold_mode
= tgetstr ("md", address
);
4110 tty
->TS_enter_italic_mode
= tgetstr ("ZH", address
);
4111 tty
->TS_enter_dim_mode
= tgetstr ("mh", address
);
4112 tty
->TS_enter_reverse_mode
= tgetstr ("mr", address
);
4113 tty
->TS_enter_alt_charset_mode
= tgetstr ("as", address
);
4114 tty
->TS_exit_alt_charset_mode
= tgetstr ("ae", address
);
4115 tty
->TS_exit_attribute_mode
= tgetstr ("me", address
);
4117 MultiUp (tty
) = tgetstr ("UP", address
);
4118 MultiDown (tty
) = tgetstr ("DO", address
);
4119 MultiLeft (tty
) = tgetstr ("LE", address
);
4120 MultiRight (tty
) = tgetstr ("RI", address
);
4122 /* SVr4/ANSI color support. If "op" isn't available, don't support
4123 color because we can't switch back to the default foreground and
4125 tty
->TS_orig_pair
= tgetstr ("op", address
);
4126 if (tty
->TS_orig_pair
)
4128 tty
->TS_set_foreground
= tgetstr ("AF", address
);
4129 tty
->TS_set_background
= tgetstr ("AB", address
);
4130 if (!tty
->TS_set_foreground
)
4133 tty
->TS_set_foreground
= tgetstr ("Sf", address
);
4134 tty
->TS_set_background
= tgetstr ("Sb", address
);
4137 tty
->TN_max_colors
= tgetnum ("Co");
4138 tty
->TN_max_pairs
= tgetnum ("pa");
4140 tty
->TN_no_color_video
= tgetnum ("NC");
4141 if (tty
->TN_no_color_video
== -1)
4142 tty
->TN_no_color_video
= 0;
4145 tty_default_color_capabilities (tty
, 1);
4147 MagicWrap (tty
) = tgetflag ("xn");
4148 /* Since we make MagicWrap terminals look like AutoWrap, we need to have
4149 the former flag imply the latter. */
4150 AutoWrap (tty
) = MagicWrap (tty
) || tgetflag ("am");
4151 tty
->memory_below_frame
= tgetflag ("db");
4152 tty
->TF_hazeltine
= tgetflag ("hz");
4153 tty
->must_write_spaces
= tgetflag ("in");
4154 tty
->meta_key
= tgetflag ("km") || tgetflag ("MT");
4155 tty
->TF_insmode_motion
= tgetflag ("mi");
4156 tty
->TF_standout_motion
= tgetflag ("ms");
4157 tty
->TF_underscore
= tgetflag ("ul");
4158 tty
->TF_teleray
= tgetflag ("xt");
4163 struct frame
*f
= XFRAME (selected_frame
);
4166 initialize_w32_display (terminal
, &width
, &height
);
4168 FrameRows (tty
) = height
;
4169 FrameCols (tty
) = width
;
4170 tty
->specified_window
= height
;
4172 FRAME_VERTICAL_SCROLL_BAR_TYPE (f
) = vertical_scroll_bar_none
;
4173 FRAME_HAS_HORIZONTAL_SCROLL_BARS (f
) = 0;
4174 tty
->char_ins_del_ok
= 1;
4180 if (strcmp (terminal_type
, "internal") == 0)
4181 terminal
->type
= output_msdos_raw
;
4182 initialize_msdos_display (terminal
);
4184 get_tty_size (fileno (tty
->input
), &width
, &height
);
4185 FrameCols (tty
) = width
;
4186 FrameRows (tty
) = height
;
4187 tty
->char_ins_del_ok
= 0;
4188 init_baud_rate (fileno (tty
->input
));
4191 tty
->output
= stdout
;
4193 /* The following two are inaccessible from w32console.c. */
4194 terminal
->delete_frame_hook
= &tty_free_frame_resources
;
4195 terminal
->delete_terminal_hook
= &delete_tty
;
4197 tty
->name
= xstrdup (name
);
4198 terminal
->name
= xstrdup (name
);
4199 tty
->type
= xstrdup (terminal_type
);
4201 add_keyboard_wait_descriptor (0);
4203 tty
->delete_in_insert_mode
= 1;
4206 tty
->scroll_region_ok
= 0;
4208 /* Seems to insert lines when it's not supposed to, messing up the
4209 display. In doing a trace, it didn't seem to be called much, so I
4210 don't think we're losing anything by turning it off. */
4211 tty
->line_ins_del_ok
= 0;
4213 tty
->TN_max_colors
= 16; /* Must be non-zero for tty-display-color-p. */
4217 terminal
->mouse_position_hook
= term_mouse_position
;
4218 tty
->mouse_highlight
.mouse_face_window
= Qnil
;
4221 terminal
->kboard
= allocate_kboard (Qnil
);
4222 terminal
->kboard
->reference_count
++;
4223 /* Don't let the initial kboard remain current longer than necessary.
4224 That would cause problems if a file loaded on startup tries to
4225 prompt in the mini-buffer. */
4226 if (current_kboard
== initial_kboard
)
4227 current_kboard
= terminal
->kboard
;
4229 term_get_fkeys (address
, terminal
->kboard
);
4231 /* Get frame size from system, or else from termcap. */
4234 get_tty_size (fileno (tty
->input
), &width
, &height
);
4235 FrameCols (tty
) = width
;
4236 FrameRows (tty
) = height
;
4239 if (FrameCols (tty
) <= 0)
4240 FrameCols (tty
) = tgetnum ("co");
4241 if (FrameRows (tty
) <= 0)
4242 FrameRows (tty
) = tgetnum ("li");
4244 if (FrameRows (tty
) < 3 || FrameCols (tty
) < 3)
4245 maybe_fatal (must_succeed
, terminal
,
4246 "Screen size %dx%d is too small",
4247 "Screen size %dx%d is too small",
4248 FrameCols (tty
), FrameRows (tty
));
4250 TabWidth (tty
) = tgetnum ("tw");
4253 tty
->TS_bell
= "\07";
4255 if (!tty
->TS_fwd_scroll
)
4256 tty
->TS_fwd_scroll
= Down (tty
);
4258 PC
= tty
->TS_pad_char
? *tty
->TS_pad_char
: 0;
4260 if (TabWidth (tty
) < 0)
4263 /* Turned off since /etc/termcap seems to have :ta= for most terminals
4264 and newer termcap doc does not seem to say there is a default.
4265 if (!tty->Wcm->cm_tab)
4266 tty->Wcm->cm_tab = "\t";
4269 /* We don't support standout modes that use `magic cookies', so
4270 turn off any that do. */
4271 if (tty
->TS_standout_mode
&& tgetnum ("sg") >= 0)
4273 tty
->TS_standout_mode
= 0;
4274 tty
->TS_end_standout_mode
= 0;
4276 if (tty
->TS_enter_underline_mode
&& tgetnum ("ug") >= 0)
4278 tty
->TS_enter_underline_mode
= 0;
4279 tty
->TS_exit_underline_mode
= 0;
4282 /* If there's no standout mode, try to use underlining instead. */
4283 if (tty
->TS_standout_mode
== 0)
4285 tty
->TS_standout_mode
= tty
->TS_enter_underline_mode
;
4286 tty
->TS_end_standout_mode
= tty
->TS_exit_underline_mode
;
4289 /* If no `se' string, try using a `me' string instead.
4290 If that fails, we can't use standout mode at all. */
4291 if (tty
->TS_end_standout_mode
== 0)
4293 char *s
= tgetstr ("me", address
);
4295 tty
->TS_end_standout_mode
= s
;
4297 tty
->TS_standout_mode
= 0;
4300 if (tty
->TF_teleray
)
4302 tty
->Wcm
->cm_tab
= 0;
4303 /* We can't support standout mode, because it uses magic cookies. */
4304 tty
->TS_standout_mode
= 0;
4305 /* But that means we cannot rely on ^M to go to column zero! */
4307 /* LF can't be trusted either -- can alter hpos. */
4308 /* If move at column 0 thru a line with TS_standout_mode. */
4312 tty
->specified_window
= FrameRows (tty
);
4314 if (Wcm_init (tty
) == -1) /* Can't do cursor motion. */
4316 maybe_fatal (must_succeed
, terminal
,
4317 "Terminal type \"%s\" is not powerful enough to run Emacs",
4318 "Terminal type \"%s\" is not powerful enough to run Emacs.\n\
4319 It lacks the ability to position the cursor.\n\
4320 If that is not the actual type of terminal you have,\n\
4321 use the Bourne shell command `TERM=... export TERM' (C-shell:\n\
4322 `setenv TERM ...') to specify the correct type. It may be necessary\n"
4324 "to do `unset TERMINFO' (C-shell: `unsetenv TERMINFO') as well.",
4325 # else /* TERMCAP */
4326 "to do `unset TERMCAP' (C-shell: `unsetenv TERMCAP') as well.",
4327 # endif /* TERMINFO */
4331 if (FrameRows (tty
) <= 0 || FrameCols (tty
) <= 0)
4332 maybe_fatal (must_succeed
, terminal
,
4333 "Could not determine the frame size",
4334 "Could not determine the frame size");
4336 tty
->delete_in_insert_mode
4337 = tty
->TS_delete_mode
&& tty
->TS_insert_mode
4338 && !strcmp (tty
->TS_delete_mode
, tty
->TS_insert_mode
);
4340 UseTabs (tty
) = tabs_safe_p (fileno (tty
->input
)) && TabWidth (tty
) == 8;
4342 tty
->scroll_region_ok
4344 && (tty
->TS_set_window
|| tty
->TS_set_scroll_region
|| tty
->TS_set_scroll_region_1
));
4346 tty
->line_ins_del_ok
4347 = (((tty
->TS_ins_line
|| tty
->TS_ins_multi_lines
)
4348 && (tty
->TS_del_line
|| tty
->TS_del_multi_lines
))
4349 || (tty
->scroll_region_ok
4350 && tty
->TS_fwd_scroll
&& tty
->TS_rev_scroll
));
4352 tty
->char_ins_del_ok
4353 = ((tty
->TS_ins_char
|| tty
->TS_insert_mode
4354 || tty
->TS_pad_inserted_char
|| tty
->TS_ins_multi_chars
)
4355 && (tty
->TS_del_char
|| tty
->TS_del_multi_chars
));
4357 init_baud_rate (fileno (tty
->input
));
4359 #endif /* not DOS_NT */
4361 /* Init system terminal modes (RAW or CBREAK, etc.). */
4362 init_sys_modes (tty
);
4369 vfatal (const char *str
, va_list ap
)
4371 fprintf (stderr
, "emacs: ");
4372 vfprintf (stderr
, str
, ap
);
4373 if (!(strlen (str
) > 0 && str
[strlen (str
) - 1] == '\n'))
4374 fprintf (stderr
, "\n");
4380 /* Auxiliary error-handling function for init_tty.
4381 Delete TERMINAL, then call error or fatal with str1 or str2,
4382 respectively, according to whether MUST_SUCCEED is true. */
4385 maybe_fatal (bool must_succeed
, struct terminal
*terminal
,
4386 const char *str1
, const char *str2
, ...)
4389 va_start (ap
, str2
);
4391 delete_tty (terminal
);
4400 fatal (const char *str
, ...)
4409 /* Delete the given tty terminal, closing all frames on it. */
4412 delete_tty (struct terminal
*terminal
)
4414 struct tty_display_info
*tty
;
4416 /* Protect against recursive calls. delete_frame in
4417 delete_terminal calls us back when it deletes our last frame. */
4418 if (!terminal
->name
)
4421 eassert (terminal
->type
== output_termcap
);
4423 tty
= terminal
->display_info
.tty
;
4425 if (tty
== tty_list
)
4426 tty_list
= tty
->next
;
4429 struct tty_display_info
*p
;
4430 for (p
= tty_list
; p
&& p
->next
!= tty
; p
= p
->next
)
4434 /* This should not happen. */
4437 p
->next
= tty
->next
;
4441 /* reset_sys_modes needs a valid device, so this call needs to be
4442 before delete_terminal. */
4443 reset_sys_modes (tty
);
4445 delete_terminal (terminal
);
4452 delete_keyboard_wait_descriptor (fileno (tty
->input
));
4453 if (tty
->input
!= stdin
)
4454 fclose (tty
->input
);
4456 if (tty
->output
&& tty
->output
!= stdout
&& tty
->output
!= tty
->input
)
4457 fclose (tty
->output
);
4458 if (tty
->termscript
)
4459 fclose (tty
->termscript
);
4461 xfree (tty
->old_tty
);
4469 DEFVAR_BOOL ("system-uses-terminfo", system_uses_terminfo
,
4470 doc
: /* Non-nil means the system uses terminfo rather than termcap.
4471 This variable can be used by terminal emulator packages. */);
4473 system_uses_terminfo
= 1;
4475 system_uses_terminfo
= 0;
4478 DEFVAR_LISP ("suspend-tty-functions", Vsuspend_tty_functions
,
4479 doc
: /* Functions run after suspending a tty.
4480 The functions are run with one argument, the terminal object to be suspended.
4481 See `suspend-tty'. */);
4482 Vsuspend_tty_functions
= Qnil
;
4485 DEFVAR_LISP ("resume-tty-functions", Vresume_tty_functions
,
4486 doc
: /* Functions run after resuming a tty.
4487 The functions are run with one argument, the terminal object that was revived.
4488 See `resume-tty'. */);
4489 Vresume_tty_functions
= Qnil
;
4491 DEFVAR_BOOL ("visible-cursor", visible_cursor
,
4492 doc
: /* Non-nil means to make the cursor very visible.
4493 This only has an effect when running in a text terminal.
4494 What means \"very visible\" is up to your terminal. It may make the cursor
4495 bigger, or it may make it blink, or it may do nothing at all. */);
4498 defsubr (&Stty_display_color_p
);
4499 defsubr (&Stty_display_color_cells
);
4500 defsubr (&Stty_no_underline
);
4501 defsubr (&Stty_type
);
4502 defsubr (&Scontrolling_tty_p
);
4503 defsubr (&Stty_top_frame
);
4504 defsubr (&Ssuspend_tty
);
4505 defsubr (&Sresume_tty
);
4507 defsubr (&Sgpm_mouse_start
);
4508 defsubr (&Sgpm_mouse_stop
);
4509 #endif /* HAVE_GPM */
4512 default_orig_pair
= NULL
;
4513 default_set_foreground
= NULL
;
4514 default_set_background
= NULL
;
4515 #endif /* !DOS_NT */
4517 encode_terminal_src
= NULL
;
4518 encode_terminal_dst
= NULL
;
4520 DEFSYM (Qtty_mode_set_strings
, "tty-mode-set-strings");
4521 DEFSYM (Qtty_mode_reset_strings
, "tty-mode-reset-strings");
4524 DEFSYM (Qtty_menu_next_item
, "tty-menu-next-item");
4525 DEFSYM (Qtty_menu_prev_item
, "tty-menu-prev-item");
4526 DEFSYM (Qtty_menu_next_menu
, "tty-menu-next-menu");
4527 DEFSYM (Qtty_menu_prev_menu
, "tty-menu-prev-menu");
4528 DEFSYM (Qtty_menu_select
, "tty-menu-select");
4529 DEFSYM (Qtty_menu_ignore
, "tty-menu-ignore");
4530 DEFSYM (Qtty_menu_exit
, "tty-menu-exit");
4531 DEFSYM (Qtty_menu_mouse_movement
, "tty-menu-mouse-movement");
4532 DEFSYM (Qtty_menu_navigation_map
, "tty-menu-navigation-map");