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