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