Tweak previous change (don't init statics).
[bpt/emacs.git] / src / term.c
CommitLineData
d284f58f 1/* Terminal control module for terminals described by TERMCAP
0b5538bd 2 Copyright (C) 1985, 1986, 1987, 1993, 1994, 1995, 1998, 2000, 2001,
4e6835db 3 2002, 2003, 2004, 2005, 2006, 2007 Free Software Foundation, Inc.
08a24c47
JB
4
5This file is part of GNU Emacs.
6
7GNU Emacs is free software; you can redistribute it and/or modify
8it under the terms of the GNU General Public License as published by
684d6f5b 9the Free Software Foundation; either version 3, or (at your option)
08a24c47
JB
10any later version.
11
12GNU Emacs is distributed in the hope that it will be useful,
13but WITHOUT ANY WARRANTY; without even the implied warranty of
14MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15GNU General Public License for more details.
16
17You should have received a copy of the GNU General Public License
18along with GNU Emacs; see the file COPYING. If not, write to
4fc5845f
LK
19the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
20Boston, MA 02110-1301, USA. */
08a24c47 21
d284f58f 22/* New redisplay, TTY faces by Gerd Moellmann <gerd@gnu.org>. */
08a24c47 23
565620a5 24#include <config.h>
08a24c47
JB
25#include <stdio.h>
26#include <ctype.h>
a168702a 27#include <string.h>
7ee72033 28
08a24c47
JB
29#include "termchar.h"
30#include "termopts.h"
08a24c47 31#include "lisp.h"
a4decb7f
KH
32#include "charset.h"
33#include "coding.h"
2538fae4 34#include "keyboard.h"
ff11dfa1 35#include "frame.h"
08a24c47
JB
36#include "disptab.h"
37#include "termhooks.h"
dfcf069d 38#include "dispextern.h"
a168702a 39#include "window.h"
8feddab4 40#include "keymap.h"
1a935bfd 41#include "blockinput.h"
a168702a 42
ff23e1dd
GM
43/* For now, don't try to include termcap.h. On some systems,
44 configure finds a non-standard termcap.h that the main build
45 won't find. */
46
47#if defined HAVE_TERMCAP_H && 0
b0f61f15 48#include <termcap.h>
46d1b2bc
DL
49#else
50extern void tputs P_ ((const char *, int, int (*)(int)));
51extern int tgetent P_ ((char *, const char *));
52extern int tgetflag P_ ((char *id));
53extern int tgetnum P_ ((char *id));
b0f61f15
GM
54#endif
55
eccec691 56#include "cm.h"
dfcf069d
AS
57#ifdef HAVE_X_WINDOWS
58#include "xterm.h"
59#endif
e0f712ba 60#ifdef MAC_OS
1a578e9b
AC
61#include "macterm.h"
62#endif
c8951b18 63
a168702a
GM
64static void turn_on_face P_ ((struct frame *, int face_id));
65static void turn_off_face P_ ((struct frame *, int face_id));
66static void tty_show_cursor P_ ((void));
67static void tty_hide_cursor P_ ((void));
68
e52f4e08 69#define OUTPUT(a) \
9882535b 70 tputs (a, (int) (FRAME_LINES (XFRAME (selected_frame)) - curY), cmputc)
08a24c47
JB
71#define OUTPUT1(a) tputs (a, 1, cmputc)
72#define OUTPUTL(a, lines) tputs (a, lines, cmputc)
a168702a 73
b0f61f15
GM
74#define OUTPUT_IF(a) \
75 do { \
76 if (a) \
9882535b 77 tputs (a, (int) (FRAME_LINES (XFRAME (selected_frame)) \
b0f61f15
GM
78 - curY), cmputc); \
79 } while (0)
177c0ea7 80
b0f61f15 81#define OUTPUT1_IF(a) do { if (a) tputs (a, 1, cmputc); } while (0)
08a24c47 82
f46c2aff
KS
83/* Display space properties */
84
85extern Lisp_Object Qspace, QCalign_to, QCwidth;
86
c291d9ef 87/* Function to use to ring the bell. */
a168702a 88
c291d9ef
RS
89Lisp_Object Vring_bell_function;
90
0db017c0
SM
91/* If true, use "vs", otherwise use "ve" to make the cursor visible. */
92
93static int visible_cursor;
94
eb8c3be9 95/* Terminal characteristics that higher levels want to look at.
08a24c47
JB
96 These are all extern'd in termchar.h */
97
08a24c47
JB
98int must_write_spaces; /* Nonzero means spaces in the text
99 must actually be output; can't just skip
100 over some columns to leave them blank. */
101int min_padding_speed; /* Speed below which no padding necessary */
102
103int line_ins_del_ok; /* Terminal can insert and delete lines */
104int char_ins_del_ok; /* Terminal can insert and delete chars */
105int scroll_region_ok; /* Terminal supports setting the
106 scroll window */
be7cd44f
RS
107int scroll_region_cost; /* Cost of setting a scroll window,
108 measured in characters */
ff11dfa1 109int memory_below_frame; /* Terminal remembers lines
08a24c47
JB
110 scrolled off bottom */
111int fast_clear_end_of_line; /* Terminal has a `ce' string */
112
ff11dfa1 113/* Nonzero means no need to redraw the entire frame on resuming
08a24c47
JB
114 a suspended Emacs. This is useful on terminals with multiple pages,
115 where one page is used for Emacs and another for all else. */
a168702a 116
08a24c47
JB
117int no_redraw_on_reenter;
118
119/* Hook functions that you can set to snap out the functions in this file.
120 These are all extern'd in termhooks.h */
121
dfcf069d
AS
122void (*cursor_to_hook) P_ ((int, int));
123void (*raw_cursor_to_hook) P_ ((int, int));
dfcf069d
AS
124void (*clear_to_end_hook) P_ ((void));
125void (*clear_frame_hook) P_ ((void));
126void (*clear_end_of_line_hook) P_ ((int));
08a24c47 127
dfcf069d 128void (*ins_del_lines_hook) P_ ((int, int));
08a24c47 129
dfcf069d 130void (*delete_glyphs_hook) P_ ((int));
08a24c47 131
dfcf069d 132void (*ring_bell_hook) P_ ((void));
08a24c47 133
dfcf069d
AS
134void (*reset_terminal_modes_hook) P_ ((void));
135void (*set_terminal_modes_hook) P_ ((void));
136void (*update_begin_hook) P_ ((struct frame *));
137void (*update_end_hook) P_ ((struct frame *));
138void (*set_terminal_window_hook) P_ ((int));
a168702a
GM
139void (*insert_glyphs_hook) P_ ((struct glyph *, int));
140void (*write_glyphs_hook) P_ ((struct glyph *, int));
141void (*delete_glyphs_hook) P_ ((int));
08a24c47 142
a4ab7d75 143int (*read_socket_hook) P_ ((int, int, struct input_event *));
08a24c47 144
dfcf069d 145void (*frame_up_to_date_hook) P_ ((struct frame *));
55cc089c 146
20a558dc 147/* Return the current position of the mouse.
371fbaeb
JB
148
149 Set *f to the frame the mouse is in, or zero if the mouse is in no
150 Emacs frame. If it is set to zero, all the other arguments are
151 garbage.
152
a3c87d4e
JB
153 If the motion started in a scroll bar, set *bar_window to the
154 scroll bar's window, *part to the part the mouse is currently over,
155 *x to the position of the mouse along the scroll bar, and *y to the
156 overall length of the scroll bar.
371fbaeb
JB
157
158 Otherwise, set *bar_window to Qnil, and *x and *y to the column and
159 row of the character cell the mouse is over.
160
161 Set *time to the time the mouse was at the returned position.
162
163 This should clear mouse_moved until the next motion
164 event arrives. */
d284f58f 165
dfcf069d 166void (*mouse_position_hook) P_ ((FRAME_PTR *f, int insist,
371fbaeb 167 Lisp_Object *bar_window,
a3c87d4e 168 enum scroll_bar_part *part,
20a558dc
JB
169 Lisp_Object *x,
170 Lisp_Object *y,
dfcf069d 171 unsigned long *time));
08a24c47 172
ff11dfa1 173/* When reading from a minibuffer in a different frame, Emacs wants
a168702a 174 to shift the highlight from the selected frame to the mini-buffer's
ff11dfa1 175 frame; under X, this means it lies about where the focus is.
2e146aa4
JB
176 This hook tells the window system code to re-decide where to put
177 the highlight. */
d284f58f 178
dfcf069d 179void (*frame_rehighlight_hook) P_ ((FRAME_PTR f));
2e146aa4 180
dbc4e1c1
JB
181/* If we're displaying frames using a window system that can stack
182 frames on top of each other, this hook allows you to bring a frame
183 to the front, or bury it behind all the other windows. If this
184 hook is zero, that means the device we're displaying on doesn't
185 support overlapping frames, so there's no need to raise or lower
186 anything.
187
188 If RAISE is non-zero, F is brought to the front, before all other
189 windows. If RAISE is zero, F is sent to the back, behind all other
190 windows. */
d284f58f 191
dfcf069d 192void (*frame_raise_lower_hook) P_ ((FRAME_PTR f, int raise));
dbc4e1c1 193
3d644e94
JD
194/* If the value of the frame parameter changed, whis hook is called.
195 For example, if going from fullscreen to not fullscreen this hook
196 may do something OS dependent, like extended window manager hints on X11. */
197void (*fullscreen_hook) P_ ((struct frame *f));
198
a3c87d4e 199/* Set the vertical scroll bar for WINDOW to have its upper left corner
371fbaeb
JB
200 at (TOP, LEFT), and be LENGTH rows high. Set its handle to
201 indicate that we are displaying PORTION characters out of a total
202 of WHOLE characters, starting at POSITION. If WINDOW doesn't yet
a3c87d4e 203 have a scroll bar, create one for it. */
a168702a 204
a3c87d4e 205void (*set_vertical_scroll_bar_hook)
dfcf069d
AS
206 P_ ((struct window *window,
207 int portion, int whole, int position));
20a558dc 208
371fbaeb 209
20a558dc 210/* The following three hooks are used when we're doing a thorough
a3c87d4e 211 redisplay of the frame. We don't explicitly know which scroll bars
20a558dc
JB
212 are going to be deleted, because keeping track of when windows go
213 away is a real pain - can you say set-window-configuration?
214 Instead, we just assert at the beginning of redisplay that *all*
a3c87d4e 215 scroll bars are to be removed, and then save scroll bars from the
8e6208c5 216 fiery pit when we actually redisplay their window. */
20a558dc 217
a3c87d4e
JB
218/* Arrange for all scroll bars on FRAME to be removed at the next call
219 to `*judge_scroll_bars_hook'. A scroll bar may be spared if
177c0ea7 220 `*redeem_scroll_bar_hook' is applied to its window before the judgment.
20a558dc 221
371fbaeb 222 This should be applied to each frame each time its window tree is
a3c87d4e
JB
223 redisplayed, even if it is not displaying scroll bars at the moment;
224 if the HAS_SCROLL_BARS flag has just been turned off, only calling
225 this and the judge_scroll_bars_hook will get rid of them.
371fbaeb
JB
226
227 If non-zero, this hook should be safe to apply to any frame,
a3c87d4e 228 whether or not it can support scroll bars, and whether or not it is
371fbaeb 229 currently displaying them. */
d284f58f 230
dfcf069d 231void (*condemn_scroll_bars_hook) P_ ((FRAME_PTR frame));
371fbaeb 232
a3c87d4e
JB
233/* Unmark WINDOW's scroll bar for deletion in this judgement cycle.
234 Note that it's okay to redeem a scroll bar that is not condemned. */
d284f58f 235
dfcf069d 236void (*redeem_scroll_bar_hook) P_ ((struct window *window));
20a558dc 237
a3c87d4e 238/* Remove all scroll bars on FRAME that haven't been saved since the
177c0ea7 239 last call to `*condemn_scroll_bars_hook'.
20a558dc 240
371fbaeb 241 This should be applied to each frame after each time its window
a3c87d4e
JB
242 tree is redisplayed, even if it is not displaying scroll bars at the
243 moment; if the HAS_SCROLL_BARS flag has just been turned off, only
244 calling this and condemn_scroll_bars_hook will get rid of them.
371fbaeb
JB
245
246 If non-zero, this hook should be safe to apply to any frame,
a3c87d4e 247 whether or not it can support scroll bars, and whether or not it is
371fbaeb 248 currently displaying them. */
d284f58f 249
dfcf069d 250void (*judge_scroll_bars_hook) P_ ((FRAME_PTR FRAME));
20a558dc 251
08a24c47
JB
252/* Strings, numbers and flags taken from the termcap entry. */
253
a4decb7f 254char *TS_ins_line; /* "al" */
08a24c47
JB
255char *TS_ins_multi_lines; /* "AL" (one parameter, # lines to insert) */
256char *TS_bell; /* "bl" */
257char *TS_clr_to_bottom; /* "cd" */
258char *TS_clr_line; /* "ce", clear to end of line */
ff11dfa1 259char *TS_clr_frame; /* "cl" */
08a24c47
JB
260char *TS_set_scroll_region; /* "cs" (2 params, first line and last line) */
261char *TS_set_scroll_region_1; /* "cS" (4 params: total lines,
262 lines above scroll region, lines below it,
263 total lines again) */
264char *TS_del_char; /* "dc" */
265char *TS_del_multi_chars; /* "DC" (one parameter, # chars to delete) */
266char *TS_del_line; /* "dl" */
267char *TS_del_multi_lines; /* "DL" (one parameter, # lines to delete) */
268char *TS_delete_mode; /* "dm", enter character-delete mode */
269char *TS_end_delete_mode; /* "ed", leave character-delete mode */
270char *TS_end_insert_mode; /* "ei", leave character-insert mode */
271char *TS_ins_char; /* "ic" */
272char *TS_ins_multi_chars; /* "IC" (one parameter, # chars to insert) */
273char *TS_insert_mode; /* "im", enter character-insert mode */
274char *TS_pad_inserted_char; /* "ip". Just padding, no commands. */
275char *TS_end_keypad_mode; /* "ke" */
276char *TS_keypad_mode; /* "ks" */
277char *TS_pad_char; /* "pc", char to use as padding */
278char *TS_repeat; /* "rp" (2 params, # times to repeat
279 and character to be repeated) */
280char *TS_end_standout_mode; /* "se" */
281char *TS_fwd_scroll; /* "sf" */
282char *TS_standout_mode; /* "so" */
283char *TS_rev_scroll; /* "sr" */
284char *TS_end_termcap_modes; /* "te" */
285char *TS_termcap_modes; /* "ti" */
286char *TS_visible_bell; /* "vb" */
a168702a
GM
287char *TS_cursor_normal; /* "ve" */
288char *TS_cursor_visible; /* "vs" */
289char *TS_cursor_invisible; /* "vi" */
08a24c47
JB
290char *TS_set_window; /* "wi" (4 params, start and end of window,
291 each as vpos and hpos) */
292
4e6ba4a4
GM
293/* Value of the "NC" (no_color_video) capability, or 0 if not
294 present. */
295
296static int TN_no_color_video;
297
298/* Meaning of bits in no_color_video. Each bit set means that the
299 corresponding attribute cannot be combined with colors. */
300
301enum no_color_bit
302{
303 NC_STANDOUT = 1 << 0,
304 NC_UNDERLINE = 1 << 1,
305 NC_REVERSE = 1 << 2,
306 NC_BLINK = 1 << 3,
307 NC_DIM = 1 << 4,
308 NC_BOLD = 1 << 5,
309 NC_INVIS = 1 << 6,
310 NC_PROTECT = 1 << 7,
311 NC_ALT_CHARSET = 1 << 8
312};
313
a168702a
GM
314/* "md" -- turn on bold (extra bright mode). */
315
316char *TS_enter_bold_mode;
317
318/* "mh" -- turn on half-bright mode. */
319
320char *TS_enter_dim_mode;
321
322/* "mb" -- enter blinking mode. */
323
324char *TS_enter_blink_mode;
325
326/* "mr" -- enter reverse video mode. */
327
328char *TS_enter_reverse_mode;
329
330/* "us"/"ue" -- start/end underlining. */
331
332char *TS_exit_underline_mode, *TS_enter_underline_mode;
333
a168702a
GM
334/* "as"/"ae" -- start/end alternate character set. Not really
335 supported, yet. */
336
337char *TS_enter_alt_charset_mode, *TS_exit_alt_charset_mode;
338
339/* "me" -- switch appearances off. */
340
341char *TS_exit_attribute_mode;
342
343/* "Co" -- number of colors. */
344
345int TN_max_colors;
346
347/* "pa" -- max. number of color pairs on screen. Not handled yet.
348 Could be a problem if not equal to TN_max_colors * TN_max_colors. */
349
350int TN_max_pairs;
351
352/* "op" -- SVr4 set default pair to its original value. */
353
354char *TS_orig_pair;
355
356/* "AF"/"AB" or "Sf"/"Sb"-- set ANSI or SVr4 foreground/background color.
357 1 param, the color index. */
358
359char *TS_set_foreground, *TS_set_background;
360
08a24c47
JB
361int TF_hazeltine; /* termcap hz flag. */
362int TF_insmode_motion; /* termcap mi flag: can move while in insert mode. */
363int TF_standout_motion; /* termcap mi flag: can move while in standout mode. */
a168702a
GM
364int TF_underscore; /* termcap ul flag: _ underlines if over-struck on
365 non-blank position. Must clear before writing _. */
08a24c47
JB
366int TF_teleray; /* termcap xt flag: many weird consequences.
367 For t1061. */
368
08a24c47
JB
369static int RPov; /* # chars to start a TS_repeat */
370
371static int delete_in_insert_mode; /* delete mode == insert mode */
372
373static int se_is_so; /* 1 if same string both enters and leaves
374 standout mode */
375
376/* internal state */
377
8dd0c7cb 378/* The largest frame width in any call to calculate_costs. */
a168702a 379
9882535b 380int max_frame_cols;
a168702a 381
8dd0c7cb 382/* The largest frame height in any call to calculate_costs. */
a168702a 383
9882535b 384int max_frame_lines;
8dd0c7cb 385
646e4dff 386static int costs_set; /* Nonzero if costs have been calculated. */
08a24c47
JB
387
388int insert_mode; /* Nonzero when in insert mode. */
389int standout_mode; /* Nonzero when in standout mode. */
390
391/* Size of window specified by higher levels.
ff11dfa1 392 This is the number of lines, from the top of frame downwards,
08a24c47
JB
393 which can participate in insert-line/delete-line operations.
394
9882535b 395 Effectively it excludes the bottom frame_lines - specified_window_size
08a24c47
JB
396 lines from those operations. */
397
398int specified_window;
399
ff11dfa1 400/* Frame currently being redisplayed; 0 if not currently redisplaying.
08a24c47
JB
401 (Direct output does not count). */
402
ff11dfa1 403FRAME_PTR updating_frame;
08a24c47 404
07c57952 405/* Provided for lisp packages. */
a168702a 406
07c57952
KH
407static int system_uses_terminfo;
408
d284f58f
GM
409/* Flag used in tty_show/hide_cursor. */
410
411static int tty_cursor_hidden;
412
08a24c47 413char *tparam ();
e4bfb3b6
RS
414
415extern char *tgetstr ();
08a24c47 416\f
cb28b9c2 417
1a89b7c6
AI
418#ifdef WINDOWSNT
419/* We aren't X windows, but we aren't termcap either. This makes me
420 uncertain as to what value to use for frame.output_method. For
421 this file, we'll define FRAME_TERMCAP_P to be zero so that our
422 output hooks get called instead of the termcap functions. Probably
423 the best long-term solution is to define an output_windows_nt... */
424
425#undef FRAME_TERMCAP_P
426#define FRAME_TERMCAP_P(_f_) 0
427#endif /* WINDOWSNT */
428
dfcf069d 429void
08a24c47
JB
430ring_bell ()
431{
d284f58f 432 if (!NILP (Vring_bell_function))
c291d9ef
RS
433 {
434 Lisp_Object function;
435
436 /* Temporarily set the global variable to nil
437 so that if we get an error, it stays nil
438 and we don't call it over and over.
439
440 We don't specbind it, because that would carefully
441 restore the bad value if there's an error
442 and make the loop of errors happen anyway. */
177c0ea7 443
c291d9ef
RS
444 function = Vring_bell_function;
445 Vring_bell_function = Qnil;
446
447 call0 (function);
448
449 Vring_bell_function = function;
08a24c47 450 }
d284f58f
GM
451 else if (!FRAME_TERMCAP_P (XFRAME (selected_frame)))
452 (*ring_bell_hook) ();
453 else
454 OUTPUT (TS_visible_bell && visible_bell ? TS_visible_bell : TS_bell);
08a24c47
JB
455}
456
dfcf069d 457void
08a24c47
JB
458set_terminal_modes ()
459{
d284f58f 460 if (FRAME_TERMCAP_P (XFRAME (selected_frame)))
08a24c47 461 {
3ae9c96a
RS
462 if (TS_termcap_modes)
463 OUTPUT (TS_termcap_modes);
464 else
465 {
466 /* Output enough newlines to scroll all the old screen contents
467 off the screen, so it won't be overwritten and lost. */
468 int i;
469 for (i = 0; i < FRAME_LINES (XFRAME (selected_frame)); i++)
470 putchar ('\n');
471 }
472
0db017c0 473 OUTPUT_IF (visible_cursor ? TS_cursor_visible : TS_cursor_normal);
d284f58f
GM
474 OUTPUT_IF (TS_keypad_mode);
475 losecursor ();
08a24c47 476 }
d284f58f
GM
477 else
478 (*set_terminal_modes_hook) ();
08a24c47
JB
479}
480
dfcf069d 481void
08a24c47
JB
482reset_terminal_modes ()
483{
d284f58f 484 if (FRAME_TERMCAP_P (XFRAME (selected_frame)))
08a24c47 485 {
54800acb 486 turn_off_highlight ();
d284f58f
GM
487 turn_off_insert ();
488 OUTPUT_IF (TS_end_keypad_mode);
489 OUTPUT_IF (TS_cursor_normal);
490 OUTPUT_IF (TS_end_termcap_modes);
491 OUTPUT_IF (TS_orig_pair);
492 /* Output raw CR so kernel can track the cursor hpos. */
d284f58f 493 cmputc ('\r');
08a24c47 494 }
d284f58f
GM
495 else if (reset_terminal_modes_hook)
496 (*reset_terminal_modes_hook) ();
08a24c47
JB
497}
498
dfcf069d 499void
ff11dfa1 500update_begin (f)
d284f58f 501 struct frame *f;
08a24c47 502{
ff11dfa1 503 updating_frame = f;
d284f58f
GM
504 if (!FRAME_TERMCAP_P (f))
505 update_begin_hook (f);
08a24c47
JB
506}
507
dfcf069d 508void
ff11dfa1 509update_end (f)
d284f58f 510 struct frame *f;
08a24c47 511{
d284f58f 512 if (FRAME_TERMCAP_P (f))
08a24c47 513 {
d284f58f
GM
514 if (!XWINDOW (selected_window)->cursor_off_p)
515 tty_show_cursor ();
516 turn_off_insert ();
517 background_highlight ();
08a24c47 518 }
d284f58f
GM
519 else
520 update_end_hook (f);
177c0ea7 521
d284f58f 522 updating_frame = NULL;
08a24c47
JB
523}
524
dfcf069d 525void
08a24c47
JB
526set_terminal_window (size)
527 int size;
528{
d284f58f 529 if (FRAME_TERMCAP_P (updating_frame))
08a24c47 530 {
9882535b 531 specified_window = size ? size : FRAME_LINES (updating_frame);
d284f58f
GM
532 if (scroll_region_ok)
533 set_scroll_region (0, specified_window);
08a24c47 534 }
d284f58f
GM
535 else
536 set_terminal_window_hook (size);
08a24c47
JB
537}
538
dfcf069d 539void
08a24c47
JB
540set_scroll_region (start, stop)
541 int start, stop;
542{
543 char *buf;
e52f4e08 544 struct frame *sf = XFRAME (selected_frame);
177c0ea7 545
08a24c47 546 if (TS_set_scroll_region)
d284f58f 547 buf = tparam (TS_set_scroll_region, 0, 0, start, stop - 1);
08a24c47 548 else if (TS_set_scroll_region_1)
d284f58f 549 buf = tparam (TS_set_scroll_region_1, 0, 0,
9882535b
KS
550 FRAME_LINES (sf), start,
551 FRAME_LINES (sf) - stop,
552 FRAME_LINES (sf));
08a24c47 553 else
9882535b 554 buf = tparam (TS_set_window, 0, 0, start, 0, stop, FRAME_COLS (sf));
177c0ea7 555
08a24c47 556 OUTPUT (buf);
9ac0d9e0 557 xfree (buf);
08a24c47
JB
558 losecursor ();
559}
d284f58f 560
08a24c47 561\f
d284f58f 562static void
08a24c47
JB
563turn_on_insert ()
564{
565 if (!insert_mode)
566 OUTPUT (TS_insert_mode);
567 insert_mode = 1;
568}
569
dfcf069d 570void
08a24c47
JB
571turn_off_insert ()
572{
573 if (insert_mode)
574 OUTPUT (TS_end_insert_mode);
575 insert_mode = 0;
576}
577\f
54800acb 578/* Handle highlighting. */
08a24c47 579
dfcf069d 580void
08a24c47
JB
581turn_off_highlight ()
582{
54800acb
MB
583 if (standout_mode)
584 OUTPUT_IF (TS_end_standout_mode);
585 standout_mode = 0;
08a24c47
JB
586}
587
d284f58f 588static void
08a24c47
JB
589turn_on_highlight ()
590{
54800acb
MB
591 if (!standout_mode)
592 OUTPUT_IF (TS_standout_mode);
593 standout_mode = 1;
08a24c47
JB
594}
595
86a7d192
GM
596static void
597toggle_highlight ()
598{
599 if (standout_mode)
600 turn_off_highlight ();
601 else
602 turn_on_highlight ();
603}
604
a168702a
GM
605
606/* Make cursor invisible. */
607
608static void
609tty_hide_cursor ()
610{
d284f58f
GM
611 if (tty_cursor_hidden == 0)
612 {
613 tty_cursor_hidden = 1;
614 OUTPUT_IF (TS_cursor_invisible);
615 }
a168702a
GM
616}
617
618
619/* Ensure that cursor is visible. */
620
621static void
622tty_show_cursor ()
623{
d284f58f
GM
624 if (tty_cursor_hidden)
625 {
626 tty_cursor_hidden = 0;
627 OUTPUT_IF (TS_cursor_normal);
0db017c0
SM
628 if (visible_cursor)
629 OUTPUT_IF (TS_cursor_visible);
d284f58f 630 }
a168702a
GM
631}
632
633
08a24c47
JB
634/* Set standout mode to the state it should be in for
635 empty space inside windows. What this is,
636 depends on the user option inverse-video. */
637
dfcf069d 638void
08a24c47
JB
639background_highlight ()
640{
08a24c47
JB
641 if (inverse_video)
642 turn_on_highlight ();
643 else
644 turn_off_highlight ();
645}
646
647/* Set standout mode to the mode specified for the text to be output. */
648
dfcf069d 649static void
08a24c47
JB
650highlight_if_desired ()
651{
8ede64a5 652 if (inverse_video)
08a24c47 653 turn_on_highlight ();
8ede64a5
MB
654 else
655 turn_off_highlight ();
08a24c47
JB
656}
657\f
658
a168702a
GM
659/* Move cursor to row/column position VPOS/HPOS. HPOS/VPOS are
660 frame-relative coordinates. */
08a24c47 661
dfcf069d 662void
a168702a
GM
663cursor_to (vpos, hpos)
664 int vpos, hpos;
08a24c47 665{
e52f4e08 666 struct frame *f = updating_frame ? updating_frame : XFRAME (selected_frame);
177c0ea7 667
e52f4e08 668 if (! FRAME_TERMCAP_P (f) && cursor_to_hook)
08a24c47 669 {
a168702a 670 (*cursor_to_hook) (vpos, hpos);
08a24c47
JB
671 return;
672 }
673
36cae867
KH
674 /* Detect the case where we are called from reset_sys_modes
675 and the costs have never been calculated. Do nothing. */
8ede64a5 676 if (! costs_set)
36cae867
KH
677 return;
678
a168702a 679 if (curY == vpos && curX == hpos)
08a24c47
JB
680 return;
681 if (!TF_standout_motion)
682 background_highlight ();
683 if (!TF_insmode_motion)
684 turn_off_insert ();
a168702a 685 cmgoto (vpos, hpos);
08a24c47
JB
686}
687
688/* Similar but don't take any account of the wasted characters. */
689
dfcf069d 690void
08a24c47 691raw_cursor_to (row, col)
4746118a 692 int row, col;
08a24c47 693{
e52f4e08
GM
694 struct frame *f = updating_frame ? updating_frame : XFRAME (selected_frame);
695 if (! FRAME_TERMCAP_P (f))
08a24c47
JB
696 {
697 (*raw_cursor_to_hook) (row, col);
698 return;
699 }
700 if (curY == row && curX == col)
701 return;
702 if (!TF_standout_motion)
703 background_highlight ();
704 if (!TF_insmode_motion)
705 turn_off_insert ();
706 cmgoto (row, col);
707}
708\f
709/* Erase operations */
710
ff11dfa1 711/* clear from cursor to end of frame */
dfcf069d 712void
08a24c47
JB
713clear_to_end ()
714{
715 register int i;
716
759d9005 717 if (clear_to_end_hook && ! FRAME_TERMCAP_P (updating_frame))
08a24c47
JB
718 {
719 (*clear_to_end_hook) ();
720 return;
721 }
722 if (TS_clr_to_bottom)
723 {
724 background_highlight ();
725 OUTPUT (TS_clr_to_bottom);
08a24c47
JB
726 }
727 else
728 {
9882535b 729 for (i = curY; i < FRAME_LINES (XFRAME (selected_frame)); i++)
08a24c47
JB
730 {
731 cursor_to (i, 0);
9882535b 732 clear_end_of_line (FRAME_COLS (XFRAME (selected_frame)));
08a24c47
JB
733 }
734 }
735}
736
ff11dfa1 737/* Clear entire frame */
08a24c47 738
dfcf069d 739void
ff11dfa1 740clear_frame ()
08a24c47 741{
e52f4e08 742 struct frame *sf = XFRAME (selected_frame);
177c0ea7 743
ff11dfa1 744 if (clear_frame_hook
e52f4e08 745 && ! FRAME_TERMCAP_P ((updating_frame ? updating_frame : sf)))
08a24c47 746 {
ff11dfa1 747 (*clear_frame_hook) ();
08a24c47
JB
748 return;
749 }
ff11dfa1 750 if (TS_clr_frame)
08a24c47
JB
751 {
752 background_highlight ();
ff11dfa1 753 OUTPUT (TS_clr_frame);
08a24c47
JB
754 cmat (0, 0);
755 }
756 else
757 {
758 cursor_to (0, 0);
759 clear_to_end ();
760 }
761}
762
08a24c47
JB
763/* Clear from cursor to end of line.
764 Assume that the line is already clear starting at column first_unused_hpos.
08a24c47
JB
765
766 Note that the cursor may be moved, on terminals lacking a `ce' string. */
767
dfcf069d 768void
8ede64a5 769clear_end_of_line (first_unused_hpos)
08a24c47
JB
770 int first_unused_hpos;
771{
772 register int i;
773
774 if (clear_end_of_line_hook
1820044b 775 && ! FRAME_TERMCAP_P ((updating_frame
ff11dfa1 776 ? updating_frame
e52f4e08 777 : XFRAME (selected_frame))))
08a24c47
JB
778 {
779 (*clear_end_of_line_hook) (first_unused_hpos);
780 return;
781 }
782
36cae867
KH
783 /* Detect the case where we are called from reset_sys_modes
784 and the costs have never been calculated. Do nothing. */
8ede64a5 785 if (! costs_set)
36cae867
KH
786 return;
787
08a24c47
JB
788 if (curX >= first_unused_hpos)
789 return;
08a24c47
JB
790 background_highlight ();
791 if (TS_clr_line)
792 {
793 OUTPUT1 (TS_clr_line);
794 }
795 else
796 { /* have to do it the hard way */
e52f4e08 797 struct frame *sf = XFRAME (selected_frame);
08a24c47
JB
798 turn_off_insert ();
799
a168702a 800 /* Do not write in last row last col with Auto-wrap on. */
9882535b
KS
801 if (AutoWrap && curY == FRAME_LINES (sf) - 1
802 && first_unused_hpos == FRAME_COLS (sf))
08a24c47
JB
803 first_unused_hpos--;
804
805 for (i = curX; i < first_unused_hpos; i++)
806 {
807 if (termscript)
808 fputc (' ', termscript);
809 putchar (' ');
810 }
811 cmplus (first_unused_hpos - curX);
812 }
813}
814\f
af645abf
KH
815/* Buffer to store the source and result of code conversion for terminal. */
816static unsigned char *encode_terminal_buf;
817/* Allocated size of the above buffer. */
818static int encode_terminal_bufsize;
a4decb7f 819
af645abf
KH
820/* Encode SRC_LEN glyphs starting at SRC to terminal output codes.
821 Set CODING->produced to the byte-length of the resulting byte
822 sequence, and return a pointer to that byte sequence. */
a4decb7f 823
302db699 824unsigned char *
af645abf 825encode_terminal_code (src, src_len, coding)
a168702a 826 struct glyph *src;
a4decb7f 827 int src_len;
af645abf 828 struct coding_system *coding;
a4decb7f 829{
feef4f84 830 struct glyph *src_end = src + src_len;
085d5908 831 register GLYPH g;
af645abf
KH
832 unsigned char *buf;
833 int nchars, nbytes, required;
a4decb7f
KH
834 register int tlen = GLYPH_TABLE_LENGTH;
835 register Lisp_Object *tbase = GLYPH_TABLE_BASE;
6589fd67 836
af645abf
KH
837 /* Allocate sufficient size of buffer to store all characters in
838 multibyte-form. But, it may be enlarged on demand if
839 Vglyph_table contains a string. */
840 required = MAX_MULTIBYTE_LENGTH * src_len;
841 if (encode_terminal_bufsize < required)
842 {
af645abf
KH
843 if (encode_terminal_bufsize == 0)
844 encode_terminal_buf = xmalloc (required);
845 else
846 encode_terminal_buf = xrealloc (encode_terminal_buf, required);
d6d31e57 847 encode_terminal_bufsize = required;
af645abf 848 }
a4decb7f 849
af645abf
KH
850 buf = encode_terminal_buf;
851 nchars = 0;
a4decb7f
KH
852 while (src < src_end)
853 {
a4decb7f 854 /* We must skip glyphs to be padded for a wide character. */
a168702a 855 if (! CHAR_GLYPH_PADDING_P (*src))
a4decb7f 856 {
32de38e4
KH
857 g = GLYPH_FROM_CHAR_GLYPH (src[0]);
858
859 if (g < 0 || g >= tlen)
085d5908 860 {
32de38e4 861 /* This glyph doesn't has an entry in Vglyph_table. */
af645abf
KH
862 if (CHAR_VALID_P (src->u.ch, 0))
863 buf += CHAR_STRING (src->u.ch, buf);
32de38e4 864 else
af645abf
KH
865 *buf++ = SPACEGLYPH;
866 nchars++;
085d5908 867 }
32de38e4 868 else
a4decb7f 869 {
32de38e4 870 /* This glyph has an entry in Vglyph_table,
a4decb7f
KH
871 so process any alias before testing for simpleness. */
872 GLYPH_FOLLOW_ALIASES (tbase, tlen, g);
32de38e4
KH
873
874 if (GLYPH_SIMPLE_P (tbase, tlen, g))
875 {
af645abf
KH
876 int c = FAST_GLYPH_CHAR (g);
877
878 if (CHAR_VALID_P (c, 0))
879 buf += CHAR_STRING (c, buf);
880 else
881 *buf++ = SPACEGLYPH;
882 nchars++;
32de38e4
KH
883 }
884 else
885 {
886 /* We have a string in Vglyph_table. */
af645abf
KH
887 Lisp_Object string;
888
889 string = tbase[g];
890 if (! STRING_MULTIBYTE (string))
891 string = string_to_multibyte (string);
892 nbytes = buf - encode_terminal_buf;
fd4a9f8f 893 if (encode_terminal_bufsize < nbytes + SBYTES (string))
af645abf
KH
894 {
895 encode_terminal_bufsize = nbytes + SBYTES (string);
896 encode_terminal_buf = xrealloc (encode_terminal_buf,
897 encode_terminal_bufsize);
898 buf = encode_terminal_buf + nbytes;
899 }
900 bcopy (SDATA (string), buf, SBYTES (string));
901 buf += SBYTES (string);
902 nchars += SCHARS (string);
32de38e4 903 }
171d7f24 904 }
a4decb7f
KH
905 }
906 src++;
907 }
177c0ea7 908
af645abf
KH
909 nbytes = buf - encode_terminal_buf;
910 coding->src_multibyte = 1;
911 coding->dst_multibyte = 0;
912 if (SYMBOLP (coding->pre_write_conversion)
913 && ! NILP (Ffboundp (coding->pre_write_conversion)))
914 {
feef4f84 915 run_pre_write_conversin_on_c_str (&encode_terminal_buf,
af645abf
KH
916 &encode_terminal_bufsize,
917 nchars, nbytes, coding);
918 nchars = coding->produced_char;
919 nbytes = coding->produced;
920 }
921 required = nbytes + encoding_buffer_size (coding, nbytes);
922 if (encode_terminal_bufsize < required)
923 {
924 encode_terminal_bufsize = required;
925 encode_terminal_buf = xrealloc (encode_terminal_buf, required);
926 }
a4decb7f 927
af645abf
KH
928 encode_coding (coding, encode_terminal_buf, encode_terminal_buf + nbytes,
929 nbytes, encode_terminal_bufsize - nbytes);
930 return encode_terminal_buf + nbytes;
931}
08a24c47 932
dfcf069d 933void
08a24c47 934write_glyphs (string, len)
a168702a 935 register struct glyph *string;
08a24c47
JB
936 register int len;
937{
e52f4e08
GM
938 struct frame *sf = XFRAME (selected_frame);
939 struct frame *f = updating_frame ? updating_frame : sf;
af645abf
KH
940 unsigned char *conversion_buffer;
941 struct coding_system *coding;
08a24c47
JB
942
943 if (write_glyphs_hook
a168702a 944 && ! FRAME_TERMCAP_P (f))
08a24c47
JB
945 {
946 (*write_glyphs_hook) (string, len);
947 return;
948 }
949
08a24c47 950 turn_off_insert ();
d284f58f 951 tty_hide_cursor ();
08a24c47 952
a168702a 953 /* Don't dare write in last column of bottom line, if Auto-Wrap,
ff11dfa1 954 since that would scroll the whole frame on some terminals. */
08a24c47
JB
955
956 if (AutoWrap
9882535b
KS
957 && curY + 1 == FRAME_LINES (sf)
958 && (curX + len) == FRAME_COLS (sf))
08a24c47 959 len --;
a4decb7f
KH
960 if (len <= 0)
961 return;
08a24c47
JB
962
963 cmplus (len);
177c0ea7 964
af645abf
KH
965 /* If terminal_coding does any conversion, use it, otherwise use
966 safe_terminal_coding. We can't use CODING_REQUIRE_ENCODING here
967 because it always return 1 if the member src_multibyte is 1. */
968 coding = (terminal_coding.common_flags & CODING_REQUIRE_ENCODING_MASK
969 ? &terminal_coding : &safe_terminal_coding);
6589fd67
KH
970 /* The mode bit CODING_MODE_LAST_BLOCK should be set to 1 only at
971 the tail. */
af645abf 972 coding->mode &= ~CODING_MODE_LAST_BLOCK;
177c0ea7 973
a4decb7f 974 while (len > 0)
08a24c47 975 {
a168702a 976 /* Identify a run of glyphs with the same face. */
32de38e4 977 int face_id = string->face_id;
a168702a 978 int n;
177c0ea7 979
a168702a 980 for (n = 1; n < len; ++n)
32de38e4 981 if (string[n].face_id != face_id)
a168702a
GM
982 break;
983
984 /* Turn appearance modes of the face of the run on. */
2535aa8c 985 highlight_if_desired ();
a168702a
GM
986 turn_on_face (f, face_id);
987
af645abf
KH
988 if (n == len)
989 /* This is the last run. */
990 coding->mode |= CODING_MODE_LAST_BLOCK;
991 conversion_buffer = encode_terminal_code (string, n, coding);
992 if (coding->produced > 0)
08a24c47 993 {
1a935bfd 994 BLOCK_INPUT;
af645abf
KH
995 fwrite (conversion_buffer, 1, coding->produced, stdout);
996 if (ferror (stdout))
997 clearerr (stdout);
998 if (termscript)
999 fwrite (conversion_buffer, 1, coding->produced, termscript);
1a935bfd 1000 UNBLOCK_INPUT;
08a24c47 1001 }
af645abf
KH
1002 len -= n;
1003 string += n;
a168702a
GM
1004
1005 /* Turn appearance modes off. */
1006 turn_off_face (f, face_id);
65aa5e85 1007 turn_off_highlight ();
a4decb7f 1008 }
177c0ea7 1009
9a6b6f92 1010 cmcheckmagic ();
08a24c47
JB
1011}
1012
1013/* If start is zero, insert blanks instead of a string at start */
177c0ea7 1014
dfcf069d 1015void
08a24c47 1016insert_glyphs (start, len)
a168702a 1017 register struct glyph *start;
08a24c47
JB
1018 register int len;
1019{
1020 char *buf;
6bbd7a29 1021 struct glyph *glyph = NULL;
e52f4e08 1022 struct frame *f, *sf;
af645abf
KH
1023 unsigned char *conversion_buffer;
1024 unsigned char space[1];
1025 struct coding_system *coding;
08a24c47 1026
a4decb7f
KH
1027 if (len <= 0)
1028 return;
1029
a168702a 1030 if (insert_glyphs_hook)
08a24c47
JB
1031 {
1032 (*insert_glyphs_hook) (start, len);
1033 return;
1034 }
a168702a 1035
e52f4e08
GM
1036 sf = XFRAME (selected_frame);
1037 f = updating_frame ? updating_frame : sf;
08a24c47
JB
1038
1039 if (TS_ins_multi_chars)
1040 {
1041 buf = tparam (TS_ins_multi_chars, 0, 0, len);
1042 OUTPUT1 (buf);
9ac0d9e0 1043 xfree (buf);
08a24c47
JB
1044 if (start)
1045 write_glyphs (start, len);
1046 return;
1047 }
1048
1049 turn_on_insert ();
1050 cmplus (len);
af645abf
KH
1051
1052 if (! start)
1053 space[0] = SPACEGLYPH;
1054
1055 /* If terminal_coding does any conversion, use it, otherwise use
1056 safe_terminal_coding. We can't use CODING_REQUIRE_ENCODING here
1057 because it always return 1 if the member src_multibyte is 1. */
1058 coding = (terminal_coding.common_flags & CODING_REQUIRE_ENCODING_MASK
1059 ? &terminal_coding : &safe_terminal_coding);
1060 /* The mode bit CODING_MODE_LAST_BLOCK should be set to 1 only at
1061 the tail. */
1062 coding->mode &= ~CODING_MODE_LAST_BLOCK;
1063
07109bf9 1064 while (len-- > 0)
08a24c47
JB
1065 {
1066 OUTPUT1_IF (TS_ins_char);
1067 if (!start)
32de38e4 1068 {
af645abf
KH
1069 conversion_buffer = space;
1070 coding->produced = 1;
32de38e4 1071 }
08a24c47 1072 else
08a24c47 1073 {
65aa5e85 1074 highlight_if_desired ();
32de38e4 1075 turn_on_face (f, start->face_id);
816be8b8 1076 glyph = start;
a168702a 1077 ++start;
a4decb7f
KH
1078 /* We must open sufficient space for a character which
1079 occupies more than one column. */
a168702a 1080 while (len && CHAR_GLYPH_PADDING_P (*start))
a4decb7f
KH
1081 {
1082 OUTPUT1_IF (TS_ins_char);
1083 start++, len--;
1084 }
a4decb7f 1085
32de38e4
KH
1086 if (len <= 0)
1087 /* This is the last glyph. */
af645abf 1088 coding->mode |= CODING_MODE_LAST_BLOCK;
32de38e4 1089
af645abf 1090 conversion_buffer = encode_terminal_code (glyph, 1, coding);
32de38e4 1091 }
a4decb7f 1092
af645abf 1093 if (coding->produced > 0)
08a24c47 1094 {
1a935bfd 1095 BLOCK_INPUT;
af645abf 1096 fwrite (conversion_buffer, 1, coding->produced, stdout);
08a24c47
JB
1097 if (ferror (stdout))
1098 clearerr (stdout);
1099 if (termscript)
af645abf 1100 fwrite (conversion_buffer, 1, coding->produced, termscript);
1a935bfd 1101 UNBLOCK_INPUT;
08a24c47
JB
1102 }
1103
9a6b6f92 1104 OUTPUT1_IF (TS_pad_inserted_char);
32de38e4 1105 if (start)
65aa5e85
GM
1106 {
1107 turn_off_face (f, glyph->face_id);
1108 turn_off_highlight ();
1109 }
9a6b6f92 1110 }
177c0ea7 1111
9a6b6f92 1112 cmcheckmagic ();
08a24c47
JB
1113}
1114
dfcf069d 1115void
08a24c47
JB
1116delete_glyphs (n)
1117 register int n;
1118{
1119 char *buf;
1120 register int i;
1121
1820044b 1122 if (delete_glyphs_hook && ! FRAME_TERMCAP_P (updating_frame))
08a24c47
JB
1123 {
1124 (*delete_glyphs_hook) (n);
1125 return;
1126 }
1127
1128 if (delete_in_insert_mode)
1129 {
1130 turn_on_insert ();
1131 }
1132 else
1133 {
1134 turn_off_insert ();
1135 OUTPUT_IF (TS_delete_mode);
1136 }
1137
1138 if (TS_del_multi_chars)
1139 {
1140 buf = tparam (TS_del_multi_chars, 0, 0, n);
1141 OUTPUT1 (buf);
9ac0d9e0 1142 xfree (buf);
08a24c47
JB
1143 }
1144 else
1145 for (i = 0; i < n; i++)
1146 OUTPUT1 (TS_del_char);
1147 if (!delete_in_insert_mode)
1148 OUTPUT_IF (TS_end_delete_mode);
1149}
1150\f
1151/* Insert N lines at vpos VPOS. If N is negative, delete -N lines. */
1152
dfcf069d 1153void
08a24c47
JB
1154ins_del_lines (vpos, n)
1155 int vpos, n;
1156{
1157 char *multi = n > 0 ? TS_ins_multi_lines : TS_del_multi_lines;
1158 char *single = n > 0 ? TS_ins_line : TS_del_line;
1159 char *scroll = n > 0 ? TS_rev_scroll : TS_fwd_scroll;
e52f4e08 1160 struct frame *sf;
08a24c47
JB
1161
1162 register int i = n > 0 ? n : -n;
1163 register char *buf;
1164
1820044b 1165 if (ins_del_lines_hook && ! FRAME_TERMCAP_P (updating_frame))
08a24c47
JB
1166 {
1167 (*ins_del_lines_hook) (vpos, n);
1168 return;
1169 }
1170
e52f4e08 1171 sf = XFRAME (selected_frame);
177c0ea7 1172
08a24c47
JB
1173 /* If the lines below the insertion are being pushed
1174 into the end of the window, this is the same as clearing;
1175 and we know the lines are already clear, since the matching
1176 deletion has already been done. So can ignore this. */
1177 /* If the lines below the deletion are blank lines coming
1178 out of the end of the window, don't bother,
1179 as there will be a matching inslines later that will flush them. */
1180 if (scroll_region_ok && vpos + i >= specified_window)
1181 return;
9882535b 1182 if (!memory_below_frame && vpos + i >= FRAME_LINES (sf))
08a24c47
JB
1183 return;
1184
1185 if (multi)
1186 {
1187 raw_cursor_to (vpos, 0);
1188 background_highlight ();
1189 buf = tparam (multi, 0, 0, i);
1190 OUTPUT (buf);
9ac0d9e0 1191 xfree (buf);
08a24c47
JB
1192 }
1193 else if (single)
1194 {
1195 raw_cursor_to (vpos, 0);
1196 background_highlight ();
1197 while (--i >= 0)
1198 OUTPUT (single);
1199 if (TF_teleray)
1200 curX = 0;
1201 }
1202 else
1203 {
1204 set_scroll_region (vpos, specified_window);
1205 if (n < 0)
1206 raw_cursor_to (specified_window - 1, 0);
1207 else
1208 raw_cursor_to (vpos, 0);
1209 background_highlight ();
1210 while (--i >= 0)
1211 OUTPUTL (scroll, specified_window - vpos);
1212 set_scroll_region (0, specified_window);
1213 }
1214
ff11dfa1 1215 if (!scroll_region_ok && memory_below_frame && n < 0)
08a24c47 1216 {
9882535b 1217 cursor_to (FRAME_LINES (sf) + n, 0);
08a24c47
JB
1218 clear_to_end ();
1219 }
1220}
1221\f
1222/* Compute cost of sending "str", in characters,
1223 not counting any line-dependent padding. */
1224
1225int
1226string_cost (str)
1227 char *str;
1228{
1229 cost = 0;
1230 if (str)
1231 tputs (str, 0, evalcost);
1232 return cost;
1233}
1234
1235/* Compute cost of sending "str", in characters,
1236 counting any line-dependent padding at one line. */
1237
1238static int
1239string_cost_one_line (str)
1240 char *str;
1241{
1242 cost = 0;
1243 if (str)
1244 tputs (str, 1, evalcost);
1245 return cost;
1246}
1247
1248/* Compute per line amount of line-dependent padding,
1249 in tenths of characters. */
1250
1251int
1252per_line_cost (str)
1253 register char *str;
1254{
1255 cost = 0;
1256 if (str)
1257 tputs (str, 0, evalcost);
1258 cost = - cost;
1259 if (str)
1260 tputs (str, 10, evalcost);
1261 return cost;
1262}
1263
1264#ifndef old
1265/* char_ins_del_cost[n] is cost of inserting N characters.
8dd0c7cb 1266 char_ins_del_cost[-n] is cost of deleting N characters.
9882535b 1267 The length of this vector is based on max_frame_cols. */
08a24c47
JB
1268
1269int *char_ins_del_vector;
1270
9882535b 1271#define char_ins_del_cost(f) (&char_ins_del_vector[FRAME_COLS ((f))])
08a24c47
JB
1272#endif
1273
1274/* ARGSUSED */
1275static void
ff11dfa1
JB
1276calculate_ins_del_char_costs (frame)
1277 FRAME_PTR frame;
08a24c47
JB
1278{
1279 int ins_startup_cost, del_startup_cost;
1280 int ins_cost_per_char, del_cost_per_char;
1281 register int i;
1282 register int *p;
1283
1284 if (TS_ins_multi_chars)
1285 {
1286 ins_cost_per_char = 0;
1287 ins_startup_cost = string_cost_one_line (TS_ins_multi_chars);
1288 }
1289 else if (TS_ins_char || TS_pad_inserted_char
1290 || (TS_insert_mode && TS_end_insert_mode))
1291 {
1292 ins_startup_cost = (30 * (string_cost (TS_insert_mode)
1293 + string_cost (TS_end_insert_mode))) / 100;
1294 ins_cost_per_char = (string_cost_one_line (TS_ins_char)
1295 + string_cost_one_line (TS_pad_inserted_char));
1296 }
1297 else
1298 {
1299 ins_startup_cost = 9999;
1300 ins_cost_per_char = 0;
1301 }
1302
1303 if (TS_del_multi_chars)
1304 {
1305 del_cost_per_char = 0;
1306 del_startup_cost = string_cost_one_line (TS_del_multi_chars);
1307 }
1308 else if (TS_del_char)
1309 {
1310 del_startup_cost = (string_cost (TS_delete_mode)
1311 + string_cost (TS_end_delete_mode));
1312 if (delete_in_insert_mode)
1313 del_startup_cost /= 2;
1314 del_cost_per_char = string_cost_one_line (TS_del_char);
1315 }
1316 else
1317 {
1318 del_startup_cost = 9999;
1319 del_cost_per_char = 0;
1320 }
1321
1322 /* Delete costs are at negative offsets */
ff11dfa1 1323 p = &char_ins_del_cost (frame)[0];
9882535b 1324 for (i = FRAME_COLS (frame); --i >= 0;)
08a24c47
JB
1325 *--p = (del_startup_cost += del_cost_per_char);
1326
1327 /* Doing nothing is free */
ff11dfa1 1328 p = &char_ins_del_cost (frame)[0];
08a24c47
JB
1329 *p++ = 0;
1330
1331 /* Insert costs are at positive offsets */
9882535b 1332 for (i = FRAME_COLS (frame); --i >= 0;)
08a24c47
JB
1333 *p++ = (ins_startup_cost += ins_cost_per_char);
1334}
1335
dfcf069d 1336void
ff11dfa1
JB
1337calculate_costs (frame)
1338 FRAME_PTR frame;
08a24c47 1339{
9f732a77
RS
1340 register char *f = (TS_set_scroll_region
1341 ? TS_set_scroll_region
1342 : TS_set_scroll_region_1);
08a24c47 1343
9f732a77 1344 FRAME_COST_BAUD_RATE (frame) = baud_rate;
08a24c47 1345
be7cd44f 1346 scroll_region_cost = string_cost (f);
08a24c47
JB
1347
1348 /* These variables are only used for terminal stuff. They are allocated
ff11dfa1 1349 once for the terminal frame of X-windows emacs, but not used afterwards.
08a24c47
JB
1350
1351 char_ins_del_vector (i.e., char_ins_del_cost) isn't used because
8ede64a5 1352 X turns off char_ins_del_ok. */
08a24c47 1353
9882535b
KS
1354 max_frame_lines = max (max_frame_lines, FRAME_LINES (frame));
1355 max_frame_cols = max (max_frame_cols, FRAME_COLS (frame));
8dd0c7cb 1356
8ede64a5 1357 costs_set = 1;
08a24c47
JB
1358
1359 if (char_ins_del_vector != 0)
1360 char_ins_del_vector
1361 = (int *) xrealloc (char_ins_del_vector,
1362 (sizeof (int)
9882535b 1363 + 2 * max_frame_cols * sizeof (int)));
08a24c47
JB
1364 else
1365 char_ins_del_vector
1366 = (int *) xmalloc (sizeof (int)
9882535b 1367 + 2 * max_frame_cols * sizeof (int));
08a24c47 1368
08a24c47 1369 bzero (char_ins_del_vector, (sizeof (int)
9882535b 1370 + 2 * max_frame_cols * sizeof (int)));
08a24c47 1371
ff11dfa1
JB
1372 if (f && (!TS_ins_line && !TS_del_line))
1373 do_line_insertion_deletion_costs (frame,
08a24c47
JB
1374 TS_rev_scroll, TS_ins_multi_lines,
1375 TS_fwd_scroll, TS_del_multi_lines,
ff11dfa1 1376 f, f, 1);
08a24c47 1377 else
ff11dfa1 1378 do_line_insertion_deletion_costs (frame,
08a24c47
JB
1379 TS_ins_line, TS_ins_multi_lines,
1380 TS_del_line, TS_del_multi_lines,
1381 0, 0, 1);
1382
ff11dfa1 1383 calculate_ins_del_char_costs (frame);
08a24c47
JB
1384
1385 /* Don't use TS_repeat if its padding is worse than sending the chars */
1386 if (TS_repeat && per_line_cost (TS_repeat) * baud_rate < 9000)
1387 RPov = string_cost (TS_repeat);
1388 else
9882535b 1389 RPov = FRAME_COLS (frame) * 2;
08a24c47
JB
1390
1391 cmcostinit (); /* set up cursor motion costs */
1392}
1393\f
a796ac82
JB
1394struct fkey_table {
1395 char *cap, *name;
1396};
1397
01d8deb0
ER
1398 /* Termcap capability names that correspond directly to X keysyms.
1399 Some of these (marked "terminfo") aren't supplied by old-style
1400 (Berkeley) termcap entries. They're listed in X keysym order;
1401 except we put the keypad keys first, so that if they clash with
1402 other keys (as on the IBM PC keyboard) they get overridden.
1403 */
1404
a168702a
GM
1405static struct fkey_table keys[] =
1406{
8103ad1a
PJ
1407 {"kh", "home"}, /* termcap */
1408 {"kl", "left"}, /* termcap */
1409 {"ku", "up"}, /* termcap */
1410 {"kr", "right"}, /* termcap */
1411 {"kd", "down"}, /* termcap */
1412 {"%8", "prior"}, /* terminfo */
1413 {"%5", "next"}, /* terminfo */
1414 {"@7", "end"}, /* terminfo */
1415 {"@1", "begin"}, /* terminfo */
1416 {"*6", "select"}, /* terminfo */
1417 {"%9", "print"}, /* terminfo */
1418 {"@4", "execute"}, /* terminfo --- actually the `command' key */
01d8deb0
ER
1419 /*
1420 * "insert" --- see below
1421 */
8103ad1a
PJ
1422 {"&8", "undo"}, /* terminfo */
1423 {"%0", "redo"}, /* terminfo */
1424 {"%7", "menu"}, /* terminfo --- actually the `options' key */
1425 {"@0", "find"}, /* terminfo */
1426 {"@2", "cancel"}, /* terminfo */
1427 {"%1", "help"}, /* terminfo */
01d8deb0
ER
1428 /*
1429 * "break" goes here, but can't be reliably intercepted with termcap
1430 */
8103ad1a 1431 {"&4", "reset"}, /* terminfo --- actually `restart' */
01d8deb0
ER
1432 /*
1433 * "system" and "user" --- no termcaps
1434 */
8103ad1a
PJ
1435 {"kE", "clearline"}, /* terminfo */
1436 {"kA", "insertline"}, /* terminfo */
1437 {"kL", "deleteline"}, /* terminfo */
1438 {"kI", "insertchar"}, /* terminfo */
1439 {"kD", "deletechar"}, /* terminfo */
1440 {"kB", "backtab"}, /* terminfo */
01d8deb0
ER
1441 /*
1442 * "kp_backtab", "kp-space", "kp-tab" --- no termcaps
1443 */
8103ad1a 1444 {"@8", "kp-enter"}, /* terminfo */
01d8deb0
ER
1445 /*
1446 * "kp-f1", "kp-f2", "kp-f3" "kp-f4",
1447 * "kp-multiply", "kp-add", "kp-separator",
1448 * "kp-subtract", "kp-decimal", "kp-divide", "kp-0";
1449 * --- no termcaps for any of these.
1450 */
8103ad1a 1451 {"K4", "kp-1"}, /* terminfo */
01d8deb0
ER
1452 /*
1453 * "kp-2" --- no termcap
1454 */
8103ad1a 1455 {"K5", "kp-3"}, /* terminfo */
01d8deb0
ER
1456 /*
1457 * "kp-4" --- no termcap
1458 */
8103ad1a 1459 {"K2", "kp-5"}, /* terminfo */
01d8deb0
ER
1460 /*
1461 * "kp-6" --- no termcap
1462 */
8103ad1a 1463 {"K1", "kp-7"}, /* terminfo */
01d8deb0
ER
1464 /*
1465 * "kp-8" --- no termcap
1466 */
8103ad1a 1467 {"K3", "kp-9"}, /* terminfo */
01d8deb0
ER
1468 /*
1469 * "kp-equal" --- no termcap
1470 */
8103ad1a
PJ
1471 {"k1", "f1"},
1472 {"k2", "f2"},
1473 {"k3", "f3"},
1474 {"k4", "f4"},
1475 {"k5", "f5"},
1476 {"k6", "f6"},
1477 {"k7", "f7"},
1478 {"k8", "f8"},
60ec7b7e
DN
1479 {"k9", "f9"},
1480
1481 {"&0", "S-cancel"}, /*shifted cancel key*/
1482 {"&9", "S-begin"}, /*shifted begin key*/
1483 {"*0", "S-find"}, /*shifted find key*/
1484 {"*1", "S-execute"}, /*shifted execute? actually shifted command key*/
1485 {"*4", "S-delete"}, /*shifted delete-character key*/
1486 {"*7", "S-end"}, /*shifted end key*/
1487 {"*8", "S-clearline"}, /*shifted clear-to end-of-line key*/
1488 {"#1", "S-help"}, /*shifted help key*/
1489 {"#2", "S-home"}, /*shifted home key*/
1490 {"#3", "S-insert"}, /*shifted insert-character key*/
1491 {"#4", "S-left"}, /*shifted left-arrow key*/
1492 {"%d", "S-menu"}, /*shifted menu? actually shifted options key*/
1493 {"%c", "S-next"}, /*shifted next key*/
1494 {"%e", "S-prior"}, /*shifted previous key*/
1495 {"%f", "S-print"}, /*shifted print key*/
1496 {"%g", "S-redo"}, /*shifted redo key*/
1497 {"%i", "S-right"}, /*shifted right-arrow key*/
1498 {"!3", "S-undo"} /*shifted undo key*/
a796ac82
JB
1499 };
1500
f2a00342
RM
1501static char **term_get_fkeys_arg;
1502static Lisp_Object term_get_fkeys_1 ();
465db27b 1503
01d8deb0 1504/* Find the escape codes sent by the function keys for Vfunction_key_map.
177c0ea7 1505 This function scans the termcap function key sequence entries, and
01d8deb0
ER
1506 adds entries to Vfunction_key_map for each function key it finds. */
1507
5c2c7893
JB
1508void
1509term_get_fkeys (address)
1510 char **address;
f2a00342
RM
1511{
1512 /* We run the body of the function (term_get_fkeys_1) and ignore all Lisp
1513 errors during the call. The only errors should be from Fdefine_key
1514 when given a key sequence containing an invalid prefix key. If the
1515 termcap defines function keys which use a prefix that is already bound
1516 to a command by the default bindings, we should silently ignore that
1517 function key specification, rather than giving the user an error and
1518 refusing to run at all on such a terminal. */
1519
1520 extern Lisp_Object Fidentity ();
f2a00342
RM
1521 term_get_fkeys_arg = address;
1522 internal_condition_case (term_get_fkeys_1, Qerror, Fidentity);
1523}
1524
1525static Lisp_Object
1526term_get_fkeys_1 ()
5c2c7893 1527{
5c2c7893
JB
1528 int i;
1529
37085233 1530 char **address = term_get_fkeys_arg;
f778aff2 1531
3e65092f
RS
1532 /* This can happen if CANNOT_DUMP or with strange options. */
1533 if (!initialized)
1534 Vfunction_key_map = Fmake_sparse_keymap (Qnil);
1535
5c2c7893
JB
1536 for (i = 0; i < (sizeof (keys)/sizeof (keys[0])); i++)
1537 {
1538 char *sequence = tgetstr (keys[i].cap, address);
1539 if (sequence)
f2a00342
RM
1540 Fdefine_key (Vfunction_key_map, build_string (sequence),
1541 Fmake_vector (make_number (1),
1542 intern (keys[i].name)));
5c2c7893 1543 }
a796ac82
JB
1544
1545 /* The uses of the "k0" capability are inconsistent; sometimes it
1546 describes F10, whereas othertimes it describes F0 and "k;" describes F10.
eb8c3be9 1547 We will attempt to politely accommodate both systems by testing for
a796ac82
JB
1548 "k;", and if it is present, assuming that "k0" denotes F0, otherwise F10.
1549 */
1550 {
1551 char *k_semi = tgetstr ("k;", address);
1552 char *k0 = tgetstr ("k0", address);
1553 char *k0_name = "f10";
1554
1555 if (k_semi)
1556 {
95c11956
SM
1557 if (k0)
1558 /* Define f0 first, so that f10 takes precedence in case the
1559 key sequences happens to be the same. */
1560 Fdefine_key (Vfunction_key_map, build_string (k0),
1561 Fmake_vector (make_number (1), intern ("f0")));
f2a00342
RM
1562 Fdefine_key (Vfunction_key_map, build_string (k_semi),
1563 Fmake_vector (make_number (1), intern ("f10")));
a796ac82 1564 }
95c11956 1565 else if (k0)
f2a00342
RM
1566 Fdefine_key (Vfunction_key_map, build_string (k0),
1567 Fmake_vector (make_number (1), intern (k0_name)));
a796ac82 1568 }
01d8deb0
ER
1569
1570 /* Set up cookies for numbered function keys above f10. */
1571 {
1572 char fcap[3], fkey[4];
1573
fc4f24da 1574 fcap[0] = 'F'; fcap[2] = '\0';
01d8deb0
ER
1575 for (i = 11; i < 64; i++)
1576 {
1577 if (i <= 19)
1578 fcap[1] = '1' + i - 11;
1579 else if (i <= 45)
b59ab95c 1580 fcap[1] = 'A' + i - 20;
01d8deb0 1581 else
b59ab95c 1582 fcap[1] = 'a' + i - 46;
01d8deb0 1583
fc4f24da
RS
1584 {
1585 char *sequence = tgetstr (fcap, address);
1586 if (sequence)
1587 {
465db27b 1588 sprintf (fkey, "f%d", i);
f2a00342
RM
1589 Fdefine_key (Vfunction_key_map, build_string (sequence),
1590 Fmake_vector (make_number (1),
1591 intern (fkey)));
fc4f24da
RS
1592 }
1593 }
01d8deb0
ER
1594 }
1595 }
1596
1597 /*
1598 * Various mappings to try and get a better fit.
1599 */
1600 {
fc4f24da
RS
1601#define CONDITIONAL_REASSIGN(cap1, cap2, sym) \
1602 if (!tgetstr (cap1, address)) \
1603 { \
1604 char *sequence = tgetstr (cap2, address); \
1605 if (sequence) \
f2a00342
RM
1606 Fdefine_key (Vfunction_key_map, build_string (sequence), \
1607 Fmake_vector (make_number (1), \
1608 intern (sym))); \
fc4f24da 1609 }
177c0ea7 1610
01d8deb0 1611 /* if there's no key_next keycap, map key_npage to `next' keysym */
27b61785 1612 CONDITIONAL_REASSIGN ("%5", "kN", "next");
01d8deb0 1613 /* if there's no key_prev keycap, map key_ppage to `previous' keysym */
381d11a1 1614 CONDITIONAL_REASSIGN ("%8", "kP", "prior");
01d8deb0 1615 /* if there's no key_dc keycap, map key_ic to `insert' keysym */
27b61785 1616 CONDITIONAL_REASSIGN ("kD", "kI", "insert");
403c995b
RS
1617 /* if there's no key_end keycap, map key_ll to 'end' keysym */
1618 CONDITIONAL_REASSIGN ("@7", "kH", "end");
0a7f697a
KH
1619
1620 /* IBM has their own non-standard dialect of terminfo.
1621 If the standard name isn't found, try the IBM name. */
1622 CONDITIONAL_REASSIGN ("kB", "KO", "backtab");
1623 CONDITIONAL_REASSIGN ("@4", "kJ", "execute"); /* actually "action" */
1624 CONDITIONAL_REASSIGN ("@4", "kc", "execute"); /* actually "command" */
1625 CONDITIONAL_REASSIGN ("%7", "ki", "menu");
1626 CONDITIONAL_REASSIGN ("@7", "kw", "end");
1627 CONDITIONAL_REASSIGN ("F1", "k<", "f11");
1628 CONDITIONAL_REASSIGN ("F2", "k>", "f12");
1629 CONDITIONAL_REASSIGN ("%1", "kq", "help");
1630 CONDITIONAL_REASSIGN ("*6", "kU", "select");
1dd40212 1631#undef CONDITIONAL_REASSIGN
01d8deb0 1632 }
a168702a
GM
1633
1634 return Qnil;
5c2c7893
JB
1635}
1636
1637\f
a168702a
GM
1638/***********************************************************************
1639 Character Display Information
1640 ***********************************************************************/
1641
47021b11
KS
1642/* Avoid name clash with functions defined in xterm.c */
1643#ifdef static
1644#define append_glyph append_glyph_term
1645#define produce_stretch_glyph produce_stretch_glyph_term
1646#endif
1647
a168702a 1648static void append_glyph P_ ((struct it *));
f46c2aff 1649static void produce_stretch_glyph P_ ((struct it *));
a168702a
GM
1650
1651
1652/* Append glyphs to IT's glyph_row. Called from produce_glyphs for
d2b4c17d
KH
1653 terminal frames if IT->glyph_row != NULL. IT->char_to_display is
1654 the character for which to produce glyphs; IT->face_id contains the
1655 character's face. Padding glyphs are appended if IT->c has a
1656 IT->pixel_width > 1. */
177c0ea7 1657
a168702a
GM
1658static void
1659append_glyph (it)
1660 struct it *it;
1661{
1662 struct glyph *glyph, *end;
1663 int i;
1664
1665 xassert (it->glyph_row);
1666 glyph = (it->glyph_row->glyphs[it->area]
1667 + it->glyph_row->used[it->area]);
1668 end = it->glyph_row->glyphs[1 + it->area];
1669
177c0ea7
JB
1670 for (i = 0;
1671 i < it->pixel_width && glyph < end;
a168702a
GM
1672 ++i)
1673 {
1674 glyph->type = CHAR_GLYPH;
d13f3e2e 1675 glyph->pixel_width = 1;
d2b4c17d 1676 glyph->u.ch = it->char_to_display;
32de38e4
KH
1677 glyph->face_id = it->face_id;
1678 glyph->padding_p = i > 0;
a168702a
GM
1679 glyph->charpos = CHARPOS (it->position);
1680 glyph->object = it->object;
177c0ea7 1681
a168702a
GM
1682 ++it->glyph_row->used[it->area];
1683 ++glyph;
1684 }
1685}
1686
1687
b50fe468
RS
1688/* Produce glyphs for the display element described by IT. *IT
1689 specifies what we want to produce a glyph for (character, image, ...),
1690 and where in the glyph matrix we currently are (glyph row and hpos).
1691 produce_glyphs fills in output fields of *IT with information such as the
1692 pixel width and height of a character, and maybe output actual glyphs at
a168702a 1693 the same time if IT->glyph_row is non-null. See the explanation of
b50fe468
RS
1694 struct display_iterator in dispextern.h for an overview.
1695
1696 produce_glyphs also stores the result of glyph width, ascent
1697 etc. computations in *IT.
1698
1699 IT->glyph_row may be null, in which case produce_glyphs does not
1700 actually fill in the glyphs. This is used in the move_* functions
1701 in xdisp.c for text width and height computations.
1702
1703 Callers usually don't call produce_glyphs directly;
1704 instead they use the macro PRODUCE_GLYPHS. */
a168702a 1705
177c0ea7 1706void
a168702a
GM
1707produce_glyphs (it)
1708 struct it *it;
1709{
1710 /* If a hook is installed, let it do the work. */
1711 xassert (it->what == IT_CHARACTER
c7cba11d 1712 || it->what == IT_COMPOSITION
a168702a 1713 || it->what == IT_STRETCH);
177c0ea7 1714
f46c2aff
KS
1715 if (it->what == IT_STRETCH)
1716 {
1717 produce_stretch_glyph (it);
1718 goto done;
1719 }
1720
c7cba11d
KH
1721 /* Nothing but characters are supported on terminal frames. For a
1722 composition sequence, it->c is the first character of the
1723 sequence. */
1724 xassert (it->what == IT_CHARACTER
1725 || it->what == IT_COMPOSITION);
a168702a 1726
d2b4c17d
KH
1727 /* Maybe translate single-byte characters to multibyte. */
1728 it->char_to_display = it->c;
1729
a168702a
GM
1730 if (it->c >= 040 && it->c < 0177)
1731 {
1732 it->pixel_width = it->nglyphs = 1;
1733 if (it->glyph_row)
1734 append_glyph (it);
1735 }
1736 else if (it->c == '\n')
1737 it->pixel_width = it->nglyphs = 0;
1738 else if (it->c == '\t')
1739 {
2efdbcdd 1740 int absolute_x = (it->current_x
a168702a 1741 + it->continuation_lines_width);
177c0ea7
JB
1742 int next_tab_x
1743 = (((1 + absolute_x + it->tab_width - 1)
a168702a
GM
1744 / it->tab_width)
1745 * it->tab_width);
1746 int nspaces;
1747
1748 /* If part of the TAB has been displayed on the previous line
1749 which is continued now, continuation_lines_width will have
1750 been incremented already by the part that fitted on the
1751 continued line. So, we will get the right number of spaces
1752 here. */
1753 nspaces = next_tab_x - absolute_x;
177c0ea7 1754
a168702a
GM
1755 if (it->glyph_row)
1756 {
1757 int n = nspaces;
177c0ea7 1758
d2b4c17d 1759 it->char_to_display = ' ';
a168702a 1760 it->pixel_width = it->len = 1;
177c0ea7 1761
a168702a
GM
1762 while (n--)
1763 append_glyph (it);
a168702a
GM
1764 }
1765
1766 it->pixel_width = nspaces;
1767 it->nglyphs = nspaces;
1768 }
add44890
EZ
1769 else if (SINGLE_BYTE_CHAR_P (it->c))
1770 {
d2b4c17d
KH
1771 if (unibyte_display_via_language_environment
1772 && (it->c >= 0240
1773 || !NILP (Vnonascii_translation_table)))
1774 {
1775 int charset;
1776
1777 it->char_to_display = unibyte_char_to_multibyte (it->c);
1778 charset = CHAR_CHARSET (it->char_to_display);
1779 it->pixel_width = CHARSET_WIDTH (charset);
1780 it->nglyphs = it->pixel_width;
1781 if (it->glyph_row)
1782 append_glyph (it);
1783 }
1784 else
1785 {
1786 /* Coming here means that it->c is from display table, thus we
1787 must send the code as is to the terminal. Although there's
1788 no way to know how many columns it occupies on a screen, it
1789 is a good assumption that a single byte code has 1-column
1790 width. */
1791 it->pixel_width = it->nglyphs = 1;
1792 if (it->glyph_row)
1793 append_glyph (it);
1794 }
add44890 1795 }
a168702a
GM
1796 else
1797 {
c7cba11d
KH
1798 /* A multi-byte character. The display width is fixed for all
1799 characters of the set. Some of the glyphs may have to be
1800 ignored because they are already displayed in a continued
1801 line. */
a168702a
GM
1802 int charset = CHAR_CHARSET (it->c);
1803
c7cba11d 1804 it->pixel_width = CHARSET_WIDTH (charset);
a168702a 1805 it->nglyphs = it->pixel_width;
177c0ea7 1806
a168702a
GM
1807 if (it->glyph_row)
1808 append_glyph (it);
1809 }
1810
f46c2aff 1811 done:
177c0ea7 1812 /* Advance current_x by the pixel width as a convenience for
a168702a
GM
1813 the caller. */
1814 if (it->area == TEXT_AREA)
1815 it->current_x += it->pixel_width;
cfe8a05e
GM
1816 it->ascent = it->max_ascent = it->phys_ascent = it->max_phys_ascent = 0;
1817 it->descent = it->max_descent = it->phys_descent = it->max_phys_descent = 1;
a168702a
GM
1818}
1819
1820
f46c2aff
KS
1821/* Produce a stretch glyph for iterator IT. IT->object is the value
1822 of the glyph property displayed. The value must be a list
1823 `(space KEYWORD VALUE ...)' with the following KEYWORD/VALUE pairs
1824 being recognized:
1825
1826 1. `:width WIDTH' specifies that the space should be WIDTH *
1827 canonical char width wide. WIDTH may be an integer or floating
1828 point number.
1829
1830 2. `:align-to HPOS' specifies that the space should be wide enough
1831 to reach HPOS, a value in canonical character units. */
1832
1833static void
1834produce_stretch_glyph (it)
1835 struct it *it;
1836{
1837 /* (space :width WIDTH ...) */
1838 Lisp_Object prop, plist;
1839 int width = 0, align_to = -1;
1840 int zero_width_ok_p = 0;
1841 double tem;
1842
1843 /* List should start with `space'. */
1844 xassert (CONSP (it->object) && EQ (XCAR (it->object), Qspace));
1845 plist = XCDR (it->object);
1846
1847 /* Compute the width of the stretch. */
1848 if ((prop = Fplist_get (plist, QCwidth), !NILP (prop))
1849 && calc_pixel_width_or_height (&tem, it, prop, 0, 1, 0))
1850 {
1851 /* Absolute width `:width WIDTH' specified and valid. */
1852 zero_width_ok_p = 1;
1853 width = (int)(tem + 0.5);
1854 }
1855 else if ((prop = Fplist_get (plist, QCalign_to), !NILP (prop))
1856 && calc_pixel_width_or_height (&tem, it, prop, 0, 1, &align_to))
1857 {
1858 if (it->glyph_row == NULL || !it->glyph_row->mode_line_p)
feef4f84 1859 align_to = (align_to < 0
f46c2aff
KS
1860 ? 0
1861 : align_to - window_box_left_offset (it->w, TEXT_AREA));
1862 else if (align_to < 0)
1863 align_to = window_box_left_offset (it->w, TEXT_AREA);
1864 width = max (0, (int)(tem + 0.5) + align_to - it->current_x);
1865 zero_width_ok_p = 1;
1866 }
1867 else
1868 /* Nothing specified -> width defaults to canonical char width. */
1869 width = FRAME_COLUMN_WIDTH (it->f);
1870
1871 if (width <= 0 && (width < 0 || !zero_width_ok_p))
1872 width = 1;
1873
1874 if (width > 0 && it->glyph_row)
1875 {
1876 Lisp_Object o_object = it->object;
1877 Lisp_Object object = it->stack[it->sp - 1].string;
1878 int n = width;
f46c2aff
KS
1879
1880 if (!STRINGP (object))
1881 object = it->w->buffer;
1882 it->object = object;
d2b4c17d 1883 it->char_to_display = ' ';
f46c2aff
KS
1884 it->pixel_width = it->len = 1;
1885 while (n--)
1886 append_glyph (it);
1887 it->object = o_object;
f46c2aff
KS
1888 }
1889 it->pixel_width = width;
1890 it->nglyphs = width;
1891}
1892
1893
a168702a
GM
1894/* Get information about special display element WHAT in an
1895 environment described by IT. WHAT is one of IT_TRUNCATION or
1896 IT_CONTINUATION. Maybe produce glyphs for WHAT if IT has a
1897 non-null glyph_row member. This function ensures that fields like
1898 face_id, c, len of IT are left untouched. */
1899
1900void
1901produce_special_glyphs (it, what)
1902 struct it *it;
1903 enum display_element_type what;
1904{
1905 struct it temp_it;
072d84a6 1906 GLYPH glyph;
177c0ea7 1907
a168702a
GM
1908 temp_it = *it;
1909 temp_it.dp = NULL;
1910 temp_it.what = IT_CHARACTER;
1911 temp_it.len = 1;
7c752c80 1912 temp_it.object = make_number (0);
a168702a
GM
1913 bzero (&temp_it.current, sizeof temp_it.current);
1914
1915 if (what == IT_CONTINUATION)
1916 {
1917 /* Continuation glyph. */
1918 if (it->dp
1919 && INTEGERP (DISP_CONTINUE_GLYPH (it->dp))
1920 && GLYPH_CHAR_VALID_P (XINT (DISP_CONTINUE_GLYPH (it->dp))))
1921 {
072d84a6
RS
1922 glyph = XINT (DISP_CONTINUE_GLYPH (it->dp));
1923 glyph = spec_glyph_lookup_face (XWINDOW (it->window), glyph);
a168702a
GM
1924 }
1925 else
072d84a6 1926 glyph = '\\';
a168702a
GM
1927 }
1928 else if (what == IT_TRUNCATION)
1929 {
1930 /* Truncation glyph. */
1931 if (it->dp
1932 && INTEGERP (DISP_TRUNC_GLYPH (it->dp))
1933 && GLYPH_CHAR_VALID_P (XINT (DISP_TRUNC_GLYPH (it->dp))))
1934 {
072d84a6
RS
1935 glyph = XINT (DISP_TRUNC_GLYPH (it->dp));
1936 glyph = spec_glyph_lookup_face (XWINDOW (it->window), glyph);
a168702a
GM
1937 }
1938 else
072d84a6 1939 glyph = '$';
a168702a
GM
1940 }
1941 else
1942 abort ();
072d84a6
RS
1943
1944 temp_it.c = FAST_GLYPH_CHAR (glyph);
1945 temp_it.face_id = FAST_GLYPH_FACE (glyph);
1946 temp_it.len = CHAR_BYTES (temp_it.c);
1947
1948 produce_glyphs (&temp_it);
1949 it->pixel_width = temp_it.pixel_width;
1950 it->nglyphs = temp_it.pixel_width;
a168702a
GM
1951}
1952
1953
a168702a
GM
1954\f
1955/***********************************************************************
1956 Faces
1957 ***********************************************************************/
1958
4e6ba4a4
GM
1959/* Value is non-zero if attribute ATTR may be used. ATTR should be
1960 one of the enumerators from enum no_color_bit, or a bit set built
1961 from them. Some display attributes may not be used together with
1962 color; the termcap capability `NC' specifies which ones. */
1963
1964#define MAY_USE_WITH_COLORS_P(ATTR) \
1965 (TN_max_colors > 0 \
1966 ? (TN_no_color_video & (ATTR)) == 0 \
1967 : 1)
a168702a 1968
072d84a6
RS
1969/* Turn appearances of face FACE_ID on tty frame F on.
1970 FACE_ID is a realized face ID number, in the face cache. */
a168702a
GM
1971
1972static void
1973turn_on_face (f, face_id)
1974 struct frame *f;
1975 int face_id;
1976{
1977 struct face *face = FACE_FROM_ID (f, face_id);
86a7d192
GM
1978 long fg = face->foreground;
1979 long bg = face->background;
a168702a 1980
86a7d192
GM
1981 /* Do this first because TS_end_standout_mode may be the same
1982 as TS_exit_attribute_mode, which turns all appearances off. */
1983 if (MAY_USE_WITH_COLORS_P (NC_REVERSE))
1984 {
1985 if (TN_max_colors > 0)
1986 {
1987 if (fg >= 0 && bg >= 0)
1988 {
1989 /* If the terminal supports colors, we can set them
1990 below without using reverse video. The face's fg
1991 and bg colors are set as they should appear on
1992 the screen, i.e. they take the inverse-video'ness
1993 of the face already into account. */
1994 }
1995 else if (inverse_video)
1996 {
1997 if (fg == FACE_TTY_DEFAULT_FG_COLOR
1998 || bg == FACE_TTY_DEFAULT_BG_COLOR)
1999 toggle_highlight ();
2000 }
2001 else
2002 {
2003 if (fg == FACE_TTY_DEFAULT_BG_COLOR
2004 || bg == FACE_TTY_DEFAULT_FG_COLOR)
2005 toggle_highlight ();
2006 }
2007 }
2008 else
2009 {
2010 /* If we can't display colors, use reverse video
2011 if the face specifies that. */
37526b42
GM
2012 if (inverse_video)
2013 {
2014 if (fg == FACE_TTY_DEFAULT_FG_COLOR
2015 || bg == FACE_TTY_DEFAULT_BG_COLOR)
2016 toggle_highlight ();
2017 }
2018 else
2019 {
2020 if (fg == FACE_TTY_DEFAULT_BG_COLOR
2021 || bg == FACE_TTY_DEFAULT_FG_COLOR)
2022 toggle_highlight ();
2023 }
86a7d192
GM
2024 }
2025 }
a168702a
GM
2026
2027 if (face->tty_bold_p)
4e6ba4a4
GM
2028 {
2029 if (MAY_USE_WITH_COLORS_P (NC_BOLD))
2030 OUTPUT1_IF (TS_enter_bold_mode);
2031 }
a168702a 2032 else if (face->tty_dim_p)
4e6ba4a4
GM
2033 if (MAY_USE_WITH_COLORS_P (NC_DIM))
2034 OUTPUT1_IF (TS_enter_dim_mode);
a168702a
GM
2035
2036 /* Alternate charset and blinking not yet used. */
4e6ba4a4
GM
2037 if (face->tty_alt_charset_p
2038 && MAY_USE_WITH_COLORS_P (NC_ALT_CHARSET))
a168702a
GM
2039 OUTPUT1_IF (TS_enter_alt_charset_mode);
2040
4e6ba4a4
GM
2041 if (face->tty_blinking_p
2042 && MAY_USE_WITH_COLORS_P (NC_BLINK))
a168702a
GM
2043 OUTPUT1_IF (TS_enter_blink_mode);
2044
54800acb 2045 if (face->tty_underline_p && MAY_USE_WITH_COLORS_P (NC_UNDERLINE))
a168702a
GM
2046 OUTPUT1_IF (TS_enter_underline_mode);
2047
a168702a
GM
2048 if (TN_max_colors > 0)
2049 {
753d161b 2050 char *ts, *p;
177c0ea7 2051
753d161b
JL
2052 ts = standout_mode ? TS_set_background : TS_set_foreground;
2053 if (fg >= 0 && ts)
a168702a 2054 {
753d161b 2055 p = tparam (ts, NULL, 0, (int) fg);
a168702a
GM
2056 OUTPUT (p);
2057 xfree (p);
2058 }
2059
753d161b
JL
2060 ts = standout_mode ? TS_set_foreground : TS_set_background;
2061 if (bg >= 0 && ts)
a168702a 2062 {
753d161b 2063 p = tparam (ts, NULL, 0, (int) bg);
a168702a
GM
2064 OUTPUT (p);
2065 xfree (p);
2066 }
2067 }
2068}
177c0ea7 2069
a168702a
GM
2070
2071/* Turn off appearances of face FACE_ID on tty frame F. */
2072
2073static void
2074turn_off_face (f, face_id)
2075 struct frame *f;
2076 int face_id;
2077{
2078 struct face *face = FACE_FROM_ID (f, face_id);
a168702a
GM
2079
2080 xassert (face != NULL);
2081
2082 if (TS_exit_attribute_mode)
2083 {
2084 /* Capability "me" will turn off appearance modes double-bright,
2085 half-bright, reverse-video, standout, underline. It may or
2086 may not turn off alt-char-mode. */
2087 if (face->tty_bold_p
2088 || face->tty_dim_p
2089 || face->tty_reverse_p
2090 || face->tty_alt_charset_p
2091 || face->tty_blinking_p
2092 || face->tty_underline_p)
65aa5e85
GM
2093 {
2094 OUTPUT1_IF (TS_exit_attribute_mode);
2095 if (strcmp (TS_exit_attribute_mode, TS_end_standout_mode) == 0)
2096 standout_mode = 0;
2097 }
a168702a
GM
2098
2099 if (face->tty_alt_charset_p)
2100 OUTPUT_IF (TS_exit_alt_charset_mode);
2101 }
2102 else
2103 {
2104 /* If we don't have "me" we can only have those appearances
2105 that have exit sequences defined. */
2106 if (face->tty_alt_charset_p)
2107 OUTPUT_IF (TS_exit_alt_charset_mode);
2108
54800acb 2109 if (face->tty_underline_p)
a168702a
GM
2110 OUTPUT_IF (TS_exit_underline_mode);
2111 }
2112
2113 /* Switch back to default colors. */
2114 if (TN_max_colors > 0
f9d2fdc4
EZ
2115 && ((face->foreground != FACE_TTY_DEFAULT_COLOR
2116 && face->foreground != FACE_TTY_DEFAULT_FG_COLOR)
2117 || (face->background != FACE_TTY_DEFAULT_COLOR
2118 && face->background != FACE_TTY_DEFAULT_BG_COLOR)))
a168702a
GM
2119 OUTPUT1_IF (TS_orig_pair);
2120}
177c0ea7
JB
2121
2122
b63a55ac
MB
2123/* Return non-zero if the terminal on frame F supports all of the
2124 capabilities in CAPS simultaneously, with foreground and background
2125 colors FG and BG. */
2126
4a8130f2
MB
2127int
2128tty_capable_p (f, caps, fg, bg)
b63a55ac
MB
2129 struct frame *f;
2130 unsigned caps;
2131 unsigned long fg, bg;
2132{
2133#define TTY_CAPABLE_P_TRY(cap, TS, NC_bit) \
2134 if ((caps & (cap)) && (!(TS) || !MAY_USE_WITH_COLORS_P(NC_bit))) \
2135 return 0;
2136
2137 TTY_CAPABLE_P_TRY (TTY_CAP_INVERSE, TS_standout_mode, NC_REVERSE);
2138 TTY_CAPABLE_P_TRY (TTY_CAP_UNDERLINE, TS_enter_underline_mode, NC_UNDERLINE);
2139 TTY_CAPABLE_P_TRY (TTY_CAP_BOLD, TS_enter_bold_mode, NC_BOLD);
2140 TTY_CAPABLE_P_TRY (TTY_CAP_DIM, TS_enter_dim_mode, NC_DIM);
2141 TTY_CAPABLE_P_TRY (TTY_CAP_BLINK, TS_enter_blink_mode, NC_BLINK);
2142 TTY_CAPABLE_P_TRY (TTY_CAP_ALT_CHARSET, TS_enter_alt_charset_mode, NC_ALT_CHARSET);
2143
2144 /* We can do it! */
2145 return 1;
2146}
2147
2148
a168702a
GM
2149/* Return non-zero if the terminal is capable to display colors. */
2150
2151DEFUN ("tty-display-color-p", Ftty_display_color_p, Stty_display_color_p,
981e4297 2152 0, 1, 0,
99fdd6bc
EZ
2153 doc: /* Return non-nil if TTY can display colors on DISPLAY. */)
2154 (display)
2155 Lisp_Object display;
a168702a
GM
2156{
2157 return TN_max_colors > 0 ? Qt : Qnil;
2158}
2159
bfa62f96
EZ
2160/* Return the number of supported colors. */
2161DEFUN ("tty-display-color-cells", Ftty_display_color_cells,
2162 Stty_display_color_cells, 0, 1, 0,
99fdd6bc
EZ
2163 doc: /* Return the number of colors supported by TTY on DISPLAY. */)
2164 (display)
2165 Lisp_Object display;
bfa62f96
EZ
2166{
2167 return make_number (TN_max_colors);
2168}
2169
ace28297 2170#ifndef WINDOWSNT
a168702a 2171
af9f81a0
GM
2172/* Declare here rather than in the function, as in the rest of Emacs,
2173 to work around an HPUX compiler bug (?). See
e7f059db 2174 http://lists.gnu.org/archive/html/emacs-devel/2007-08/msg00410.html */
af9f81a0
GM
2175static int default_max_colors;
2176static int default_max_pairs;
2177static int default_no_color_video;
2178static char *default_orig_pair;
2179static char *default_set_foreground;
2180static char *default_set_background;
0c984824 2181
ace28297
EZ
2182/* Save or restore the default color-related capabilities of this
2183 terminal. */
2184static void
2185tty_default_color_capabilities (save)
2186 int save;
2187{
ace28297
EZ
2188
2189 if (save)
2190 {
2191 if (default_orig_pair)
2192 xfree (default_orig_pair);
2193 default_orig_pair = TS_orig_pair ? xstrdup (TS_orig_pair) : NULL;
2194
2195 if (default_set_foreground)
2196 xfree (default_set_foreground);
2197 default_set_foreground = TS_set_foreground ? xstrdup (TS_set_foreground)
2198 : NULL;
2199
2200 if (default_set_background)
2201 xfree (default_set_background);
2202 default_set_background = TS_set_background ? xstrdup (TS_set_background)
2203 : NULL;
2204
2205 default_max_colors = TN_max_colors;
2206 default_max_pairs = TN_max_pairs;
2207 default_no_color_video = TN_no_color_video;
2208 }
2209 else
2210 {
2211 TS_orig_pair = default_orig_pair;
2212 TS_set_foreground = default_set_foreground;
2213 TS_set_background = default_set_background;
2214 TN_max_colors = default_max_colors;
2215 TN_max_pairs = default_max_pairs;
2216 TN_no_color_video = default_no_color_video;
2217 }
2218}
2219
2220/* Setup one of the standard tty color schemes according to MODE.
2221 MODE's value is generally the number of colors which we want to
2222 support; zero means set up for the default capabilities, the ones
2223 we saw at term_init time; -1 means turn off color support. */
2224void
2225tty_setup_colors (mode)
2226 int mode;
2227{
40409f05
EZ
2228 /* Canonicalize all negative values of MODE. */
2229 if (mode < -1)
2230 mode = -1;
2231
ace28297
EZ
2232 switch (mode)
2233 {
2234 case -1: /* no colors at all */
2235 TN_max_colors = 0;
2236 TN_max_pairs = 0;
2237 TN_no_color_video = 0;
2238 TS_set_foreground = TS_set_background = TS_orig_pair = NULL;
2239 break;
2240 case 0: /* default colors, if any */
2241 default:
2242 tty_default_color_capabilities (0);
2243 break;
2244 case 8: /* 8 standard ANSI colors */
2245 TS_orig_pair = "\033[0m";
2246#ifdef TERMINFO
2247 TS_set_foreground = "\033[3%p1%dm";
2248 TS_set_background = "\033[4%p1%dm";
2249#else
2250 TS_set_foreground = "\033[3%dm";
2251 TS_set_background = "\033[4%dm";
2252#endif
2253 TN_max_colors = 8;
2254 TN_max_pairs = 64;
2255 TN_no_color_video = 0;
2256 break;
2257 }
2258}
2259
2260void
2261set_tty_color_mode (f, val)
2262 struct frame *f;
2263 Lisp_Object val;
2264{
dfc7a077 2265 Lisp_Object color_mode_spec, current_mode_spec;
ace28297
EZ
2266 Lisp_Object color_mode, current_mode;
2267 int mode, old_mode;
2268 extern Lisp_Object Qtty_color_mode;
2269 Lisp_Object tty_color_mode_alist;
2270
2271 tty_color_mode_alist = Fintern_soft (build_string ("tty-color-mode-alist"),
2272 Qnil);
2273
9ac61a89 2274 if (INTEGERP (val))
ace28297
EZ
2275 color_mode = val;
2276 else
2277 {
2278 if (NILP (tty_color_mode_alist))
2279 color_mode_spec = Qnil;
2280 else
2281 color_mode_spec = Fassq (val, XSYMBOL (tty_color_mode_alist)->value);
ace28297
EZ
2282
2283 if (CONSP (color_mode_spec))
2284 color_mode = XCDR (color_mode_spec);
2285 else
2286 color_mode = Qnil;
2287 }
545d91d5
RS
2288
2289 current_mode_spec = assq_no_quit (Qtty_color_mode, f->param_alist);
2290
ace28297
EZ
2291 if (CONSP (current_mode_spec))
2292 current_mode = XCDR (current_mode_spec);
2293 else
2294 current_mode = Qnil;
9ac61a89 2295 if (INTEGERP (color_mode))
ace28297
EZ
2296 mode = XINT (color_mode);
2297 else
2298 mode = 0; /* meaning default */
9ac61a89 2299 if (INTEGERP (current_mode))
ace28297
EZ
2300 old_mode = XINT (current_mode);
2301 else
2302 old_mode = 0;
2303
2304 if (mode != old_mode)
2305 {
2306 tty_setup_colors (mode);
2307 /* This recomputes all the faces given the new color
2308 definitions. */
2309 call0 (intern ("tty-set-up-initial-frame-faces"));
2310 redraw_frame (f);
2311 }
2312}
2313
2314#endif /* !WINDOWSNT */
a168702a
GM
2315
2316\f
2317/***********************************************************************
2318 Initialization
2319 ***********************************************************************/
2320
dfcf069d 2321void
08a24c47
JB
2322term_init (terminal_type)
2323 char *terminal_type;
2324{
2325 char *area;
2326 char **address = &area;
3a06a6d9 2327 char *buffer = NULL;
5846981b 2328 int buffer_size = 4096;
08a24c47
JB
2329 register char *p;
2330 int status;
e52f4e08 2331 struct frame *sf = XFRAME (selected_frame);
08a24c47 2332
af645abf
KH
2333 encode_terminal_bufsize = 0;
2334
cb28b9c2 2335#ifdef WINDOWSNT
29f27c39 2336 initialize_w32_display ();
cb28b9c2
RS
2337
2338 Wcm_clear ();
cb28b9c2 2339
a678d9ff 2340 area = (char *) xmalloc (2044);
cb28b9c2 2341
9882535b
KS
2342 FrameRows = FRAME_LINES (sf);
2343 FrameCols = FRAME_COLS (sf);
2344 specified_window = FRAME_LINES (sf);
cb28b9c2
RS
2345
2346 delete_in_insert_mode = 1;
2347
2348 UseTabs = 0;
2349 scroll_region_ok = 0;
2350
2351 /* Seems to insert lines when it's not supposed to, messing
2352 up the display. In doing a trace, it didn't seem to be
2353 called much, so I don't think we're losing anything by
2354 turning it off. */
2355
2356 line_ins_del_ok = 0;
2357 char_ins_del_ok = 1;
2358
2359 baud_rate = 19200;
2360
e52f4e08
GM
2361 FRAME_CAN_HAVE_SCROLL_BARS (sf) = 0;
2362 FRAME_VERTICAL_SCROLL_BAR_TYPE (sf) = vertical_scroll_bar_none;
acfcd5cd 2363 TN_max_colors = 16; /* Required to be non-zero for tty-display-color-p */
cb28b9c2
RS
2364
2365 return;
eccec691 2366#else /* not WINDOWSNT */
cb28b9c2 2367
08a24c47 2368 Wcm_clear ();
08a24c47 2369
3a06a6d9 2370 buffer = (char *) xmalloc (buffer_size);
08a24c47
JB
2371 status = tgetent (buffer, terminal_type);
2372 if (status < 0)
b0347178
KH
2373 {
2374#ifdef TERMINFO
e12c1054 2375 fatal ("Cannot open terminfo database file");
b0347178 2376#else
e12c1054 2377 fatal ("Cannot open termcap database file");
b0347178
KH
2378#endif
2379 }
08a24c47 2380 if (status == 0)
b0347178
KH
2381 {
2382#ifdef TERMINFO
2383 fatal ("Terminal type %s is not defined.\n\
2384If that is not the actual type of terminal you have,\n\
2385use the Bourne shell command `TERM=... export TERM' (C-shell:\n\
2386`setenv TERM ...') to specify the correct type. It may be necessary\n\
e12c1054 2387to do `unset TERMINFO' (C-shell: `unsetenv TERMINFO') as well.",
b0347178
KH
2388 terminal_type);
2389#else
2390 fatal ("Terminal type %s is not defined.\n\
c5a9c3e6
RS
2391If that is not the actual type of terminal you have,\n\
2392use the Bourne shell command `TERM=... export TERM' (C-shell:\n\
2393`setenv TERM ...') to specify the correct type. It may be necessary\n\
e12c1054 2394to do `unset TERMCAP' (C-shell: `unsetenv TERMCAP') as well.",
b0347178
KH
2395 terminal_type);
2396#endif
2397 }
3a06a6d9 2398
f730033e 2399#ifndef TERMINFO
3a06a6d9 2400 if (strlen (buffer) >= buffer_size)
08a24c47 2401 abort ();
f730033e 2402 buffer_size = strlen (buffer);
3dd3a502 2403#endif
f730033e 2404 area = (char *) xmalloc (buffer_size);
08a24c47
JB
2405
2406 TS_ins_line = tgetstr ("al", address);
2407 TS_ins_multi_lines = tgetstr ("AL", address);
2408 TS_bell = tgetstr ("bl", address);
2409 BackTab = tgetstr ("bt", address);
2410 TS_clr_to_bottom = tgetstr ("cd", address);
2411 TS_clr_line = tgetstr ("ce", address);
ff11dfa1 2412 TS_clr_frame = tgetstr ("cl", address);
2efdbcdd 2413 ColPosition = NULL; /* tgetstr ("ch", address); */
08a24c47
JB
2414 AbsPosition = tgetstr ("cm", address);
2415 CR = tgetstr ("cr", address);
2416 TS_set_scroll_region = tgetstr ("cs", address);
2417 TS_set_scroll_region_1 = tgetstr ("cS", address);
2418 RowPosition = tgetstr ("cv", address);
2419 TS_del_char = tgetstr ("dc", address);
2420 TS_del_multi_chars = tgetstr ("DC", address);
2421 TS_del_line = tgetstr ("dl", address);
2422 TS_del_multi_lines = tgetstr ("DL", address);
2423 TS_delete_mode = tgetstr ("dm", address);
2424 TS_end_delete_mode = tgetstr ("ed", address);
2425 TS_end_insert_mode = tgetstr ("ei", address);
2426 Home = tgetstr ("ho", address);
2427 TS_ins_char = tgetstr ("ic", address);
2428 TS_ins_multi_chars = tgetstr ("IC", address);
2429 TS_insert_mode = tgetstr ("im", address);
2430 TS_pad_inserted_char = tgetstr ("ip", address);
2431 TS_end_keypad_mode = tgetstr ("ke", address);
2432 TS_keypad_mode = tgetstr ("ks", address);
2433 LastLine = tgetstr ("ll", address);
2434 Right = tgetstr ("nd", address);
2435 Down = tgetstr ("do", address);
2436 if (!Down)
2437 Down = tgetstr ("nl", address); /* Obsolete name for "do" */
2438#ifdef VMS
2439 /* VMS puts a carriage return before each linefeed,
2440 so it is not safe to use linefeeds. */
2441 if (Down && Down[0] == '\n' && Down[1] == '\0')
2442 Down = 0;
2443#endif /* VMS */
2444 if (tgetflag ("bs"))
2445 Left = "\b"; /* can't possibly be longer! */
2446 else /* (Actually, "bs" is obsolete...) */
2447 Left = tgetstr ("le", address);
2448 if (!Left)
2449 Left = tgetstr ("bc", address); /* Obsolete name for "le" */
2450 TS_pad_char = tgetstr ("pc", address);
2451 TS_repeat = tgetstr ("rp", address);
2452 TS_end_standout_mode = tgetstr ("se", address);
2453 TS_fwd_scroll = tgetstr ("sf", address);
2454 TS_standout_mode = tgetstr ("so", address);
2455 TS_rev_scroll = tgetstr ("sr", address);
2456 Wcm.cm_tab = tgetstr ("ta", address);
2457 TS_end_termcap_modes = tgetstr ("te", address);
2458 TS_termcap_modes = tgetstr ("ti", address);
2459 Up = tgetstr ("up", address);
2460 TS_visible_bell = tgetstr ("vb", address);
a168702a
GM
2461 TS_cursor_normal = tgetstr ("ve", address);
2462 TS_cursor_visible = tgetstr ("vs", address);
2463 TS_cursor_invisible = tgetstr ("vi", address);
08a24c47 2464 TS_set_window = tgetstr ("wi", address);
177c0ea7 2465
a168702a
GM
2466 TS_enter_underline_mode = tgetstr ("us", address);
2467 TS_exit_underline_mode = tgetstr ("ue", address);
a168702a
GM
2468 TS_enter_bold_mode = tgetstr ("md", address);
2469 TS_enter_dim_mode = tgetstr ("mh", address);
2470 TS_enter_blink_mode = tgetstr ("mb", address);
2471 TS_enter_reverse_mode = tgetstr ("mr", address);
2472 TS_enter_alt_charset_mode = tgetstr ("as", address);
2473 TS_exit_alt_charset_mode = tgetstr ("ae", address);
2474 TS_exit_attribute_mode = tgetstr ("me", address);
177c0ea7 2475
08a24c47
JB
2476 MultiUp = tgetstr ("UP", address);
2477 MultiDown = tgetstr ("DO", address);
2478 MultiLeft = tgetstr ("LE", address);
2479 MultiRight = tgetstr ("RI", address);
2480
e7f90eab
GM
2481 /* SVr4/ANSI color suppert. If "op" isn't available, don't support
2482 color because we can't switch back to the default foreground and
2483 background. */
a168702a 2484 TS_orig_pair = tgetstr ("op", address);
e7f90eab 2485 if (TS_orig_pair)
a168702a 2486 {
e7f90eab
GM
2487 TS_set_foreground = tgetstr ("AF", address);
2488 TS_set_background = tgetstr ("AB", address);
2489 if (!TS_set_foreground)
2490 {
2491 /* SVr4. */
2492 TS_set_foreground = tgetstr ("Sf", address);
2493 TS_set_background = tgetstr ("Sb", address);
2494 }
177c0ea7 2495
e7f90eab
GM
2496 TN_max_colors = tgetnum ("Co");
2497 TN_max_pairs = tgetnum ("pa");
177c0ea7 2498
4e6ba4a4
GM
2499 TN_no_color_video = tgetnum ("NC");
2500 if (TN_no_color_video == -1)
2501 TN_no_color_video = 0;
a168702a 2502 }
a168702a 2503
ace28297
EZ
2504 tty_default_color_capabilities (1);
2505
e4058338
KH
2506 MagicWrap = tgetflag ("xn");
2507 /* Since we make MagicWrap terminals look like AutoWrap, we need to have
2508 the former flag imply the latter. */
2509 AutoWrap = MagicWrap || tgetflag ("am");
ff11dfa1 2510 memory_below_frame = tgetflag ("db");
08a24c47
JB
2511 TF_hazeltine = tgetflag ("hz");
2512 must_write_spaces = tgetflag ("in");
2513 meta_key = tgetflag ("km") || tgetflag ("MT");
2514 TF_insmode_motion = tgetflag ("mi");
2515 TF_standout_motion = tgetflag ("ms");
2516 TF_underscore = tgetflag ("ul");
08a24c47
JB
2517 TF_teleray = tgetflag ("xt");
2518
5c2c7893
JB
2519 term_get_fkeys (address);
2520
ff11dfa1 2521 /* Get frame size from system, or else from termcap. */
3b12ce12
RS
2522 {
2523 int height, width;
2524 get_frame_size (&width, &height);
9882535b
KS
2525 FRAME_COLS (sf) = width;
2526 FRAME_LINES (sf) = height;
3b12ce12
RS
2527 }
2528
9882535b
KS
2529 if (FRAME_COLS (sf) <= 0)
2530 SET_FRAME_COLS (sf, tgetnum ("co"));
1efd8636
RS
2531 else
2532 /* Keep width and external_width consistent */
9882535b
KS
2533 SET_FRAME_COLS (sf, FRAME_COLS (sf));
2534 if (FRAME_LINES (sf) <= 0)
2535 FRAME_LINES (sf) = tgetnum ("li");
177c0ea7 2536
9882535b 2537 if (FRAME_LINES (sf) < 3 || FRAME_COLS (sf) < 3)
e12c1054 2538 fatal ("Screen size %dx%d is too small",
9882535b 2539 FRAME_LINES (sf), FRAME_COLS (sf));
ee7a2de4 2540
08a24c47 2541 min_padding_speed = tgetnum ("pb");
08a24c47
JB
2542 TabWidth = tgetnum ("tw");
2543
2544#ifdef VMS
2545 /* These capabilities commonly use ^J.
2546 I don't know why, but sending them on VMS does not work;
2547 it causes following spaces to be lost, sometimes.
2548 For now, the simplest fix is to avoid using these capabilities ever. */
2549 if (Down && Down[0] == '\n')
2550 Down = 0;
2551#endif /* VMS */
2552
2553 if (!TS_bell)
2554 TS_bell = "\07";
2555
2556 if (!TS_fwd_scroll)
2557 TS_fwd_scroll = Down;
2558
2559 PC = TS_pad_char ? *TS_pad_char : 0;
2560
2561 if (TabWidth < 0)
2562 TabWidth = 8;
177c0ea7 2563
08a24c47
JB
2564/* Turned off since /etc/termcap seems to have :ta= for most terminals
2565 and newer termcap doc does not seem to say there is a default.
2566 if (!Wcm.cm_tab)
2567 Wcm.cm_tab = "\t";
2568*/
2569
54800acb
MB
2570 /* We don't support standout modes that use `magic cookies', so
2571 turn off any that do. */
2572 if (TS_standout_mode && tgetnum ("sg") >= 0)
2573 {
2574 TS_standout_mode = 0;
2575 TS_end_standout_mode = 0;
2576 }
2577 if (TS_enter_underline_mode && tgetnum ("ug") >= 0)
2578 {
2579 TS_enter_underline_mode = 0;
2580 TS_exit_underline_mode = 0;
2581 }
2582
2583 /* If there's no standout mode, try to use underlining instead. */
08a24c47
JB
2584 if (TS_standout_mode == 0)
2585 {
54800acb
MB
2586 TS_standout_mode = TS_enter_underline_mode;
2587 TS_end_standout_mode = TS_exit_underline_mode;
08a24c47
JB
2588 }
2589
afd359c4
RS
2590 /* If no `se' string, try using a `me' string instead.
2591 If that fails, we can't use standout mode at all. */
2592 if (TS_end_standout_mode == 0)
2593 {
e4bfb3b6 2594 char *s = tgetstr ("me", address);
afd359c4
RS
2595 if (s != 0)
2596 TS_end_standout_mode = s;
2597 else
2598 TS_standout_mode = 0;
2599 }
2600
08a24c47
JB
2601 if (TF_teleray)
2602 {
2603 Wcm.cm_tab = 0;
54800acb
MB
2604 /* We can't support standout mode, because it uses magic cookies. */
2605 TS_standout_mode = 0;
08a24c47
JB
2606 /* But that means we cannot rely on ^M to go to column zero! */
2607 CR = 0;
2608 /* LF can't be trusted either -- can alter hpos */
2609 /* if move at column 0 thru a line with TS_standout_mode */
2610 Down = 0;
2611 }
2612
2613 /* Special handling for certain terminal types known to need it */
2614
2615 if (!strcmp (terminal_type, "supdup"))
2616 {
ff11dfa1 2617 memory_below_frame = 1;
08a24c47
JB
2618 Wcm.cm_losewrap = 1;
2619 }
2620 if (!strncmp (terminal_type, "c10", 3)
2621 || !strcmp (terminal_type, "perq"))
2622 {
2623 /* Supply a makeshift :wi string.
2624 This string is not valid in general since it works only
2625 for windows starting at the upper left corner;
2626 but that is all Emacs uses.
2627
ff11dfa1 2628 This string works only if the frame is using
08a24c47
JB
2629 the top of the video memory, because addressing is memory-relative.
2630 So first check the :ti string to see if that is true.
2631
2632 It would be simpler if the :wi string could go in the termcap
2633 entry, but it can't because it is not fully valid.
2634 If it were in the termcap entry, it would confuse other programs. */
2635 if (!TS_set_window)
2636 {
2637 p = TS_termcap_modes;
2638 while (*p && strcmp (p, "\033v "))
2639 p++;
2640 if (*p)
2641 TS_set_window = "\033v%C %C %C %C ";
2642 }
2643 /* Termcap entry often fails to have :in: flag */
2644 must_write_spaces = 1;
2645 /* :ti string typically fails to have \E^G! in it */
2646 /* This limits scope of insert-char to one line. */
2647 strcpy (area, TS_termcap_modes);
2648 strcat (area, "\033\007!");
2649 TS_termcap_modes = area;
2650 area += strlen (area) + 1;
2651 p = AbsPosition;
2652 /* Change all %+ parameters to %C, to handle
2653 values above 96 correctly for the C100. */
2654 while (*p)
2655 {
2656 if (p[0] == '%' && p[1] == '+')
2657 p[1] = 'C';
2658 p++;
2659 }
2660 }
2661
9882535b
KS
2662 FrameRows = FRAME_LINES (sf);
2663 FrameCols = FRAME_COLS (sf);
2664 specified_window = FRAME_LINES (sf);
08a24c47
JB
2665
2666 if (Wcm_init () == -1) /* can't do cursor motion */
2667#ifdef VMS
2668 fatal ("Terminal type \"%s\" is not powerful enough to run Emacs.\n\
2669It lacks the ability to position the cursor.\n\
2670If that is not the actual type of terminal you have, use either the\n\
2671DCL command `SET TERMINAL/DEVICE= ...' for DEC-compatible terminals,\n\
e12c1054 2672or `define EMACS_TERM \"terminal type\"' for non-DEC terminals.",
08a24c47 2673 terminal_type);
37dad45a
RS
2674#else /* not VMS */
2675# ifdef TERMINFO
2676 fatal ("Terminal type \"%s\" is not powerful enough to run Emacs.\n\
2677It lacks the ability to position the cursor.\n\
2678If that is not the actual type of terminal you have,\n\
2679use the Bourne shell command `TERM=... export TERM' (C-shell:\n\
2680`setenv TERM ...') to specify the correct type. It may be necessary\n\
e12c1054 2681to do `unset TERMINFO' (C-shell: `unsetenv TERMINFO') as well.",
37dad45a
RS
2682 terminal_type);
2683# else /* TERMCAP */
08a24c47
JB
2684 fatal ("Terminal type \"%s\" is not powerful enough to run Emacs.\n\
2685It lacks the ability to position the cursor.\n\
2686If that is not the actual type of terminal you have,\n\
c5a9c3e6
RS
2687use the Bourne shell command `TERM=... export TERM' (C-shell:\n\
2688`setenv TERM ...') to specify the correct type. It may be necessary\n\
e12c1054 2689to do `unset TERMCAP' (C-shell: `unsetenv TERMCAP') as well.",
08a24c47 2690 terminal_type);
37dad45a
RS
2691# endif /* TERMINFO */
2692#endif /*VMS */
9882535b
KS
2693 if (FRAME_LINES (sf) <= 0
2694 || FRAME_COLS (sf) <= 0)
e12c1054 2695 fatal ("The frame size has not been specified");
08a24c47
JB
2696
2697 delete_in_insert_mode
2698 = TS_delete_mode && TS_insert_mode
2699 && !strcmp (TS_delete_mode, TS_insert_mode);
2700
2701 se_is_so = (TS_standout_mode
2702 && TS_end_standout_mode
2703 && !strcmp (TS_standout_mode, TS_end_standout_mode));
2704
08a24c47
JB
2705 UseTabs = tabs_safe_p () && TabWidth == 8;
2706
2707 scroll_region_ok
2708 = (Wcm.cm_abs
2709 && (TS_set_window || TS_set_scroll_region || TS_set_scroll_region_1));
2710
2711 line_ins_del_ok = (((TS_ins_line || TS_ins_multi_lines)
2712 && (TS_del_line || TS_del_multi_lines))
2713 || (scroll_region_ok && TS_fwd_scroll && TS_rev_scroll));
2714
2715 char_ins_del_ok = ((TS_ins_char || TS_insert_mode
2716 || TS_pad_inserted_char || TS_ins_multi_chars)
2717 && (TS_del_char || TS_del_multi_chars));
2718
2719 fast_clear_end_of_line = TS_clr_line != 0;
2720
2721 init_baud_rate ();
2722 if (read_socket_hook) /* Baudrate is somewhat */
2723 /* meaningless in this case */
2724 baud_rate = 9600;
20a558dc 2725
e52f4e08
GM
2726 FRAME_CAN_HAVE_SCROLL_BARS (sf) = 0;
2727 FRAME_VERTICAL_SCROLL_BAR_TYPE (sf) = vertical_scroll_bar_none;
eccec691 2728#endif /* WINDOWSNT */
3a06a6d9
RS
2729
2730 xfree (buffer);
08a24c47
JB
2731}
2732
2733/* VARARGS 1 */
dfcf069d 2734void
eb27c2ca
DN
2735fatal (str, arg1, arg2)
2736 char *str, *arg1, *arg2;
08a24c47
JB
2737{
2738 fprintf (stderr, "emacs: ");
eb27c2ca
DN
2739 fprintf (stderr, str, arg1, arg2);
2740 fprintf (stderr, "\n");
08a24c47
JB
2741 fflush (stderr);
2742 exit (1);
2743}
07c57952 2744
072d84a6
RS
2745DEFUN ("tty-no-underline", Ftty_no_underline, Stty_no_underline, 0, 0, 0,
2746 doc: /* Declare that this terminal does not handle underlining.
2747This is used to override the terminfo data, for certain terminals that
2748do not really do underlining, but say that they do. */)
2749 ()
2750{
2751 TS_enter_underline_mode = 0;
2752 return Qnil;
2753}
2754
dfcf069d 2755void
07c57952
KH
2756syms_of_term ()
2757{
7ee72033
MB
2758 DEFVAR_BOOL ("system-uses-terminfo", &system_uses_terminfo,
2759 doc: /* Non-nil means the system uses terminfo rather than termcap.
228299fa 2760This variable can be used by terminal emulator packages. */);
07c57952
KH
2761#ifdef TERMINFO
2762 system_uses_terminfo = 1;
2763#else
2764 system_uses_terminfo = 0;
2765#endif
c291d9ef 2766
7ee72033
MB
2767 DEFVAR_LISP ("ring-bell-function", &Vring_bell_function,
2768 doc: /* Non-nil means call this function to ring the bell.
228299fa 2769The function should accept no arguments. */);
c291d9ef 2770 Vring_bell_function = Qnil;
a168702a 2771
0db017c0
SM
2772 DEFVAR_BOOL ("visible-cursor", &visible_cursor,
2773 doc: /* Non-nil means to make the cursor very visible.
2774This only has an effect when running in a text terminal.
2775What means \"very visible\" is up to your terminal. It may make the cursor
2776bigger, or it may make it blink, or it may do nothing at all. */);
2777 visible_cursor = 1;
2778
a168702a 2779 defsubr (&Stty_display_color_p);
bfa62f96 2780 defsubr (&Stty_display_color_cells);
072d84a6 2781 defsubr (&Stty_no_underline);
3d644e94
JD
2782
2783 fullscreen_hook = NULL;
07c57952 2784}
a168702a 2785
ab5796a9
MB
2786/* arch-tag: 498e7449-6f2e-45e2-91dd-b7d4ca488193
2787 (do not change this comment) */