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