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