Mercurial > emacs
annotate src/term.c @ 21577:027075cb9a49
(Frequire): Doc fix.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Thu, 16 Apr 1998 05:38:51 +0000 |
parents | fa9ff387d260 |
children | d7c8600f8775 |
rev | line source |
---|---|
253 | 1 /* terminal control module for terminals described by TERMCAP |
11235 | 2 Copyright (C) 1985, 86, 87, 93, 94, 95 Free Software Foundation, Inc. |
253 | 3 |
4 This file is part of GNU Emacs. | |
5 | |
6 GNU Emacs is free software; you can redistribute it and/or modify | |
7 it under the terms of the GNU General Public License as published by | |
621 | 8 the Free Software Foundation; either version 2, or (at your option) |
253 | 9 any later version. |
10 | |
11 GNU Emacs is distributed in the hope that it will be useful, | |
12 but WITHOUT ANY WARRANTY; without even the implied warranty of | |
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
14 GNU General Public License for more details. | |
15 | |
16 You should have received a copy of the GNU General Public License | |
17 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
|
18 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
|
19 Boston, MA 02111-1307, USA. */ |
253 | 20 |
21 | |
7900
60795e826dad
Put stdio.h after config.h.
Richard M. Stallman <rms@gnu.org>
parents:
7649
diff
changeset
|
22 #include <config.h> |
253 | 23 #include <stdio.h> |
24 #include <ctype.h> | |
25 #include "termchar.h" | |
26 #include "termopts.h" | |
27 #include "cm.h" | |
28 #undef NULL | |
29 #include "lisp.h" | |
17046
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
30 #include "charset.h" |
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
31 #include "coding.h" |
765 | 32 #include "frame.h" |
253 | 33 #include "disptab.h" |
34 #include "termhooks.h" | |
533 | 35 #include "keyboard.h" |
21514 | 36 #include "dispextern.h" |
37 #ifdef HAVE_X_WINDOWS | |
38 #include "xterm.h" | |
39 #endif | |
8898 | 40 |
253 | 41 #define max(a, b) ((a) > (b) ? (a) : (b)) |
42 #define min(a, b) ((a) < (b) ? (a) : (b)) | |
43 | |
16094
4199e40152fb
(OUTPUT_IF, OUTPUT): Cast frame height to int.
Richard M. Stallman <rms@gnu.org>
parents:
16093
diff
changeset
|
44 #define OUTPUT(a) tputs (a, (int) (FRAME_HEIGHT (selected_frame) - curY), cmputc) |
253 | 45 #define OUTPUT1(a) tputs (a, 1, cmputc) |
46 #define OUTPUTL(a, lines) tputs (a, lines, cmputc) | |
16094
4199e40152fb
(OUTPUT_IF, OUTPUT): Cast frame height to int.
Richard M. Stallman <rms@gnu.org>
parents:
16093
diff
changeset
|
47 #define OUTPUT_IF(a) { if (a) tputs (a, (int) (FRAME_HEIGHT (selected_frame) - curY), cmputc); } |
253 | 48 #define OUTPUT1_IF(a) { if (a) tputs (a, 1, cmputc); } |
49 | |
15974
61249a8fe735
(Vring_bell_function): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
15094
diff
changeset
|
50 /* Function to use to ring the bell. */ |
61249a8fe735
(Vring_bell_function): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
15094
diff
changeset
|
51 Lisp_Object Vring_bell_function; |
61249a8fe735
(Vring_bell_function): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
15094
diff
changeset
|
52 |
3591
507f64624555
Apply typo patches from Paul Eggert.
Jim Blandy <jimb@redhat.com>
parents:
3489
diff
changeset
|
53 /* Terminal characteristics that higher levels want to look at. |
253 | 54 These are all extern'd in termchar.h */ |
55 | |
56 int must_write_spaces; /* Nonzero means spaces in the text | |
57 must actually be output; can't just skip | |
58 over some columns to leave them blank. */ | |
59 int min_padding_speed; /* Speed below which no padding necessary */ | |
60 | |
61 int line_ins_del_ok; /* Terminal can insert and delete lines */ | |
62 int char_ins_del_ok; /* Terminal can insert and delete chars */ | |
63 int scroll_region_ok; /* Terminal supports setting the | |
64 scroll window */ | |
10261
4fd304db9216
(scroll_region_cost): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
10121
diff
changeset
|
65 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
|
66 measured in characters */ |
765 | 67 int memory_below_frame; /* Terminal remembers lines |
253 | 68 scrolled off bottom */ |
69 int fast_clear_end_of_line; /* Terminal has a `ce' string */ | |
70 | |
765 | 71 /* Nonzero means no need to redraw the entire frame on resuming |
253 | 72 a suspended Emacs. This is useful on terminals with multiple pages, |
73 where one page is used for Emacs and another for all else. */ | |
74 int no_redraw_on_reenter; | |
75 | |
76 /* Hook functions that you can set to snap out the functions in this file. | |
77 These are all extern'd in termhooks.h */ | |
78 | |
21514 | 79 void (*cursor_to_hook) P_ ((int, int)); |
80 void (*raw_cursor_to_hook) P_ ((int, int)); | |
253 | 81 |
21514 | 82 void (*clear_to_end_hook) P_ ((void)); |
83 void (*clear_frame_hook) P_ ((void)); | |
84 void (*clear_end_of_line_hook) P_ ((int)); | |
253 | 85 |
21514 | 86 void (*ins_del_lines_hook) P_ ((int, int)); |
253 | 87 |
21514 | 88 void (*change_line_highlight_hook) P_ ((int, int, int)); |
89 void (*reassert_line_highlight_hook) P_ ((int, int)); | |
253 | 90 |
21514 | 91 void (*insert_glyphs_hook) P_ ((GLYPH *, int)); |
92 void (*write_glyphs_hook) P_ ((GLYPH *, int)); | |
93 void (*delete_glyphs_hook) P_ ((int)); | |
253 | 94 |
21514 | 95 void (*ring_bell_hook) P_ ((void)); |
253 | 96 |
21514 | 97 void (*reset_terminal_modes_hook) P_ ((void)); |
98 void (*set_terminal_modes_hook) P_ ((void)); | |
99 void (*update_begin_hook) P_ ((struct frame *)); | |
100 void (*update_end_hook) P_ ((struct frame *)); | |
101 void (*set_terminal_window_hook) P_ ((int)); | |
253 | 102 |
21514 | 103 int (*read_socket_hook) P_ ((int, struct input_event *, int, int)); |
253 | 104 |
21514 | 105 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
|
106 |
1717
aa7d6d57504b
* frame.h (struct frame): New fields `can_have_scrollbars' and
Jim Blandy <jimb@redhat.com>
parents:
1015
diff
changeset
|
107 /* 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
|
108 |
3f161f6701b1
* term.c (set_vertical_scrollbar_hook, condemn_scrollbars_hook,
Jim Blandy <jimb@redhat.com>
parents:
1717
diff
changeset
|
109 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
|
110 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
|
111 garbage. |
3f161f6701b1
* term.c (set_vertical_scrollbar_hook, condemn_scrollbars_hook,
Jim Blandy <jimb@redhat.com>
parents:
1717
diff
changeset
|
112 |
1994
73ce9dd21093
Use the term `scroll bar', instead of `scrollbar'.
Jim Blandy <jimb@redhat.com>
parents:
1821
diff
changeset
|
113 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
|
114 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
|
115 *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
|
116 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
|
117 |
3f161f6701b1
* term.c (set_vertical_scrollbar_hook, condemn_scrollbars_hook,
Jim Blandy <jimb@redhat.com>
parents:
1717
diff
changeset
|
118 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
|
119 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
|
120 |
3f161f6701b1
* term.c (set_vertical_scrollbar_hook, condemn_scrollbars_hook,
Jim Blandy <jimb@redhat.com>
parents:
1717
diff
changeset
|
121 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
|
122 |
3f161f6701b1
* term.c (set_vertical_scrollbar_hook, condemn_scrollbars_hook,
Jim Blandy <jimb@redhat.com>
parents:
1717
diff
changeset
|
123 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
|
124 event arrives. */ |
21514 | 125 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
|
126 Lisp_Object *bar_window, |
1994
73ce9dd21093
Use the term `scroll bar', instead of `scrollbar'.
Jim Blandy <jimb@redhat.com>
parents:
1821
diff
changeset
|
127 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
|
128 Lisp_Object *x, |
aa7d6d57504b
* frame.h (struct frame): New fields `can_have_scrollbars' and
Jim Blandy <jimb@redhat.com>
parents:
1015
diff
changeset
|
129 Lisp_Object *y, |
21514 | 130 unsigned long *time)); |
253 | 131 |
765 | 132 /* When reading from a minibuffer in a different frame, Emacs wants |
133 to shift the highlight from the selected frame to the minibuffer's | |
134 frame; under X, this means it lies about where the focus is. | |
339 | 135 This hook tells the window system code to re-decide where to put |
136 the highlight. */ | |
21514 | 137 void (*frame_rehighlight_hook) P_ ((FRAME_PTR f)); |
339 | 138 |
1821
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1781
diff
changeset
|
139 /* 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
|
140 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
|
141 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
|
142 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
|
143 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
|
144 anything. |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1781
diff
changeset
|
145 |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1781
diff
changeset
|
146 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
|
147 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
|
148 windows. */ |
21514 | 149 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
|
150 |
1994
73ce9dd21093
Use the term `scroll bar', instead of `scrollbar'.
Jim Blandy <jimb@redhat.com>
parents:
1821
diff
changeset
|
151 /* 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
|
152 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
|
153 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
|
154 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
|
155 have a scroll bar, create one for it. */ |
73ce9dd21093
Use the term `scroll bar', instead of `scrollbar'.
Jim Blandy <jimb@redhat.com>
parents:
1821
diff
changeset
|
156 void (*set_vertical_scroll_bar_hook) |
21514 | 157 P_ ((struct window *window, |
158 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
|
159 |
1781
3f161f6701b1
* term.c (set_vertical_scrollbar_hook, condemn_scrollbars_hook,
Jim Blandy <jimb@redhat.com>
parents:
1717
diff
changeset
|
160 |
1717
aa7d6d57504b
* frame.h (struct frame): New fields `can_have_scrollbars' and
Jim Blandy <jimb@redhat.com>
parents:
1015
diff
changeset
|
161 /* 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
|
162 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
|
163 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
|
164 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
|
165 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
|
166 scroll bars are to be removed, and then save scroll bars from the |
14036 | 167 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
|
168 |
1994
73ce9dd21093
Use the term `scroll bar', instead of `scrollbar'.
Jim Blandy <jimb@redhat.com>
parents:
1821
diff
changeset
|
169 /* 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
|
170 to `*judge_scroll_bars_hook'. A scroll bar may be spared if |
73ce9dd21093
Use the term `scroll bar', instead of `scrollbar'.
Jim Blandy <jimb@redhat.com>
parents:
1821
diff
changeset
|
171 `*redeem_scroll_bar_hook' is applied to its window before the judgement. |
1781
3f161f6701b1
* term.c (set_vertical_scrollbar_hook, condemn_scrollbars_hook,
Jim Blandy <jimb@redhat.com>
parents:
1717
diff
changeset
|
172 |
3f161f6701b1
* term.c (set_vertical_scrollbar_hook, condemn_scrollbars_hook,
Jim Blandy <jimb@redhat.com>
parents:
1717
diff
changeset
|
173 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
|
174 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
|
175 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
|
176 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
|
177 |
1781
3f161f6701b1
* term.c (set_vertical_scrollbar_hook, condemn_scrollbars_hook,
Jim Blandy <jimb@redhat.com>
parents:
1717
diff
changeset
|
178 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
|
179 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
|
180 currently displaying them. */ |
21514 | 181 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
|
182 |
1994
73ce9dd21093
Use the term `scroll bar', instead of `scrollbar'.
Jim Blandy <jimb@redhat.com>
parents:
1821
diff
changeset
|
183 /* 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
|
184 Note that it's okay to redeem a scroll bar that is not condemned. */ |
21514 | 185 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
|
186 |
1994
73ce9dd21093
Use the term `scroll bar', instead of `scrollbar'.
Jim Blandy <jimb@redhat.com>
parents:
1821
diff
changeset
|
187 /* 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
|
188 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
|
189 |
3f161f6701b1
* term.c (set_vertical_scrollbar_hook, condemn_scrollbars_hook,
Jim Blandy <jimb@redhat.com>
parents:
1717
diff
changeset
|
190 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
|
191 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
|
192 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
|
193 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
|
194 |
3f161f6701b1
* term.c (set_vertical_scrollbar_hook, condemn_scrollbars_hook,
Jim Blandy <jimb@redhat.com>
parents:
1717
diff
changeset
|
195 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
|
196 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
|
197 currently displaying them. */ |
21514 | 198 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
|
199 |
aa7d6d57504b
* frame.h (struct frame): New fields `can_have_scrollbars' and
Jim Blandy <jimb@redhat.com>
parents:
1015
diff
changeset
|
200 |
253 | 201 /* Strings, numbers and flags taken from the termcap entry. */ |
202 | |
17290 | 203 char *TS_end_italic_mode; /* termcap "ae" */ |
17046
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
204 char *TS_ins_line; /* "al" */ |
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
205 char *TS_italic_mode; /* "as" */ |
253 | 206 char *TS_ins_multi_lines; /* "AL" (one parameter, # lines to insert) */ |
207 char *TS_bell; /* "bl" */ | |
208 char *TS_clr_to_bottom; /* "cd" */ | |
209 char *TS_clr_line; /* "ce", clear to end of line */ | |
765 | 210 char *TS_clr_frame; /* "cl" */ |
253 | 211 char *TS_set_scroll_region; /* "cs" (2 params, first line and last line) */ |
212 char *TS_set_scroll_region_1; /* "cS" (4 params: total lines, | |
213 lines above scroll region, lines below it, | |
214 total lines again) */ | |
215 char *TS_del_char; /* "dc" */ | |
216 char *TS_del_multi_chars; /* "DC" (one parameter, # chars to delete) */ | |
217 char *TS_del_line; /* "dl" */ | |
218 char *TS_del_multi_lines; /* "DL" (one parameter, # lines to delete) */ | |
219 char *TS_delete_mode; /* "dm", enter character-delete mode */ | |
220 char *TS_end_delete_mode; /* "ed", leave character-delete mode */ | |
221 char *TS_end_insert_mode; /* "ei", leave character-insert mode */ | |
222 char *TS_ins_char; /* "ic" */ | |
223 char *TS_ins_multi_chars; /* "IC" (one parameter, # chars to insert) */ | |
224 char *TS_insert_mode; /* "im", enter character-insert mode */ | |
225 char *TS_pad_inserted_char; /* "ip". Just padding, no commands. */ | |
226 char *TS_end_keypad_mode; /* "ke" */ | |
227 char *TS_keypad_mode; /* "ks" */ | |
17046
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
228 char *TS_bold_mode; /* "md" */ |
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
229 char *TS_end_bold_mode; /* "me" */ |
253 | 230 char *TS_pad_char; /* "pc", char to use as padding */ |
231 char *TS_repeat; /* "rp" (2 params, # times to repeat | |
232 and character to be repeated) */ | |
233 char *TS_end_standout_mode; /* "se" */ | |
234 char *TS_fwd_scroll; /* "sf" */ | |
235 char *TS_standout_mode; /* "so" */ | |
236 char *TS_rev_scroll; /* "sr" */ | |
237 char *TS_end_termcap_modes; /* "te" */ | |
238 char *TS_termcap_modes; /* "ti" */ | |
17046
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
239 char *TS_end_underscore_mode; /* "ue" */ |
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
240 char *TS_underscore_mode; /* "us" */ |
253 | 241 char *TS_visible_bell; /* "vb" */ |
242 char *TS_end_visual_mode; /* "ve" */ | |
243 char *TS_visual_mode; /* "vi" */ | |
244 char *TS_set_window; /* "wi" (4 params, start and end of window, | |
245 each as vpos and hpos) */ | |
246 | |
247 int TF_hazeltine; /* termcap hz flag. */ | |
248 int TF_insmode_motion; /* termcap mi flag: can move while in insert mode. */ | |
249 int TF_standout_motion; /* termcap mi flag: can move while in standout mode. */ | |
250 int TF_underscore; /* termcap ul flag: _ underlines if overstruck on | |
251 nonblank position. Must clear before writing _. */ | |
252 int TF_teleray; /* termcap xt flag: many weird consequences. | |
253 For t1061. */ | |
254 | |
255 int TF_xs; /* Nonzero for "xs". If set together with | |
256 TN_standout_width == 0, it means don't bother | |
257 to write any end-standout cookies. */ | |
258 | |
259 int TN_standout_width; /* termcap sg number: width occupied by standout | |
260 markers */ | |
261 | |
262 static int RPov; /* # chars to start a TS_repeat */ | |
263 | |
264 static int delete_in_insert_mode; /* delete mode == insert mode */ | |
265 | |
266 static int se_is_so; /* 1 if same string both enters and leaves | |
267 standout mode */ | |
268 | |
269 /* internal state */ | |
270 | |
10771
d564078d10c6
(calculate_costs): Update max_frame_height, max_frame_width.
Richard M. Stallman <rms@gnu.org>
parents:
10481
diff
changeset
|
271 /* The largest frame width in any call to calculate_costs. */ |
d564078d10c6
(calculate_costs): Update max_frame_height, max_frame_width.
Richard M. Stallman <rms@gnu.org>
parents:
10481
diff
changeset
|
272 int max_frame_width; |
d564078d10c6
(calculate_costs): Update max_frame_height, max_frame_width.
Richard M. Stallman <rms@gnu.org>
parents:
10481
diff
changeset
|
273 /* The largest frame height in any call to calculate_costs. */ |
d564078d10c6
(calculate_costs): Update max_frame_height, max_frame_width.
Richard M. Stallman <rms@gnu.org>
parents:
10481
diff
changeset
|
274 int max_frame_height; |
d564078d10c6
(calculate_costs): Update max_frame_height, max_frame_width.
Richard M. Stallman <rms@gnu.org>
parents:
10481
diff
changeset
|
275 |
253 | 276 /* Number of chars of space used for standout marker at beginning of line, |
277 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
|
278 The length of these vectors is max_frame_height. |
253 | 279 |
280 Used IFF TN_standout_width >= 0. */ | |
281 | |
282 static char *chars_wasted; | |
283 static char *copybuf; | |
284 | |
285 /* nonzero means supposed to write text in standout mode. */ | |
286 int standout_requested; | |
287 | |
288 int insert_mode; /* Nonzero when in insert mode. */ | |
289 int standout_mode; /* Nonzero when in standout mode. */ | |
290 | |
291 /* Size of window specified by higher levels. | |
765 | 292 This is the number of lines, from the top of frame downwards, |
253 | 293 which can participate in insert-line/delete-line operations. |
294 | |
765 | 295 Effectively it excludes the bottom frame_height - specified_window_size |
253 | 296 lines from those operations. */ |
297 | |
298 int specified_window; | |
299 | |
765 | 300 /* Frame currently being redisplayed; 0 if not currently redisplaying. |
253 | 301 (Direct output does not count). */ |
302 | |
765 | 303 FRAME_PTR updating_frame; |
253 | 304 |
6752
f9236145bad7
(system_uses_terminfo): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
6652
diff
changeset
|
305 /* Provided for lisp packages. */ |
f9236145bad7
(system_uses_terminfo): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
6652
diff
changeset
|
306 static int system_uses_terminfo; |
f9236145bad7
(system_uses_terminfo): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
6652
diff
changeset
|
307 |
253 | 308 char *tparam (); |
8612
86065bec6fc9
(term_init): Added missing argument to tgetstr.
Richard M. Stallman <rms@gnu.org>
parents:
8027
diff
changeset
|
309 |
86065bec6fc9
(term_init): Added missing argument to tgetstr.
Richard M. Stallman <rms@gnu.org>
parents:
8027
diff
changeset
|
310 extern char *tgetstr (); |
253 | 311 |
9797
05d9072c5a38
(term_init) [WINDOWSNT]: Do some Windows-specific
Richard M. Stallman <rms@gnu.org>
parents:
9658
diff
changeset
|
312 |
05d9072c5a38
(term_init) [WINDOWSNT]: Do some Windows-specific
Richard M. Stallman <rms@gnu.org>
parents:
9658
diff
changeset
|
313 #ifdef WINDOWSNT |
05d9072c5a38
(term_init) [WINDOWSNT]: Do some Windows-specific
Richard M. Stallman <rms@gnu.org>
parents:
9658
diff
changeset
|
314 /* 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
|
315 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
|
316 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
|
317 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
|
318 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
|
319 |
05d9072c5a38
(term_init) [WINDOWSNT]: Do some Windows-specific
Richard M. Stallman <rms@gnu.org>
parents:
9658
diff
changeset
|
320 #undef FRAME_TERMCAP_P |
05d9072c5a38
(term_init) [WINDOWSNT]: Do some Windows-specific
Richard M. Stallman <rms@gnu.org>
parents:
9658
diff
changeset
|
321 #define FRAME_TERMCAP_P(_f_) 0 |
05d9072c5a38
(term_init) [WINDOWSNT]: Do some Windows-specific
Richard M. Stallman <rms@gnu.org>
parents:
9658
diff
changeset
|
322 #endif /* WINDOWSNT */ |
05d9072c5a38
(term_init) [WINDOWSNT]: Do some Windows-specific
Richard M. Stallman <rms@gnu.org>
parents:
9658
diff
changeset
|
323 |
21514 | 324 void |
253 | 325 ring_bell () |
326 { | |
15974
61249a8fe735
(Vring_bell_function): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
15094
diff
changeset
|
327 if (! NILP (Vring_bell_function)) |
61249a8fe735
(Vring_bell_function): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
15094
diff
changeset
|
328 { |
61249a8fe735
(Vring_bell_function): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
15094
diff
changeset
|
329 Lisp_Object function; |
61249a8fe735
(Vring_bell_function): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
15094
diff
changeset
|
330 |
61249a8fe735
(Vring_bell_function): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
15094
diff
changeset
|
331 /* Temporarily set the global variable to nil |
61249a8fe735
(Vring_bell_function): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
15094
diff
changeset
|
332 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
|
333 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
|
334 |
61249a8fe735
(Vring_bell_function): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
15094
diff
changeset
|
335 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
|
336 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
|
337 and make the loop of errors happen anyway. */ |
61249a8fe735
(Vring_bell_function): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
15094
diff
changeset
|
338 function = Vring_bell_function; |
61249a8fe735
(Vring_bell_function): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
15094
diff
changeset
|
339 Vring_bell_function = Qnil; |
61249a8fe735
(Vring_bell_function): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
15094
diff
changeset
|
340 |
61249a8fe735
(Vring_bell_function): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
15094
diff
changeset
|
341 call0 (function); |
61249a8fe735
(Vring_bell_function): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
15094
diff
changeset
|
342 |
61249a8fe735
(Vring_bell_function): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
15094
diff
changeset
|
343 Vring_bell_function = function; |
61249a8fe735
(Vring_bell_function): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
15094
diff
changeset
|
344 return; |
61249a8fe735
(Vring_bell_function): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
15094
diff
changeset
|
345 } |
61249a8fe735
(Vring_bell_function): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
15094
diff
changeset
|
346 |
969
16649ee21625
* term.c (FRAME_IS_TERMCAP, FRAME_IS_X, FRAME_HAS_MINIBUF):
Jim Blandy <jimb@redhat.com>
parents:
797
diff
changeset
|
347 if (! FRAME_TERMCAP_P (selected_frame)) |
253 | 348 { |
349 (*ring_bell_hook) (); | |
350 return; | |
351 } | |
352 OUTPUT (TS_visible_bell && visible_bell ? TS_visible_bell : TS_bell); | |
353 } | |
354 | |
21514 | 355 void |
253 | 356 set_terminal_modes () |
357 { | |
969
16649ee21625
* term.c (FRAME_IS_TERMCAP, FRAME_IS_X, FRAME_HAS_MINIBUF):
Jim Blandy <jimb@redhat.com>
parents:
797
diff
changeset
|
358 if (! FRAME_TERMCAP_P (selected_frame)) |
253 | 359 { |
360 (*set_terminal_modes_hook) (); | |
361 return; | |
362 } | |
363 OUTPUT_IF (TS_termcap_modes); | |
364 OUTPUT_IF (TS_visual_mode); | |
365 OUTPUT_IF (TS_keypad_mode); | |
366 losecursor (); | |
367 } | |
368 | |
21514 | 369 void |
253 | 370 reset_terminal_modes () |
371 { | |
969
16649ee21625
* term.c (FRAME_IS_TERMCAP, FRAME_IS_X, FRAME_HAS_MINIBUF):
Jim Blandy <jimb@redhat.com>
parents:
797
diff
changeset
|
372 if (! FRAME_TERMCAP_P (selected_frame)) |
253 | 373 { |
374 (*reset_terminal_modes_hook) (); | |
375 return; | |
376 } | |
377 if (TN_standout_width < 0) | |
378 turn_off_highlight (); | |
379 turn_off_insert (); | |
380 OUTPUT_IF (TS_end_keypad_mode); | |
381 OUTPUT_IF (TS_end_visual_mode); | |
382 OUTPUT_IF (TS_end_termcap_modes); | |
383 /* Output raw CR so kernel can track the cursor hpos. */ | |
384 /* But on magic-cookie terminals this can erase an end-standout marker and | |
765 | 385 cause the rest of the frame to be in standout, so move down first. */ |
253 | 386 if (TN_standout_width >= 0) |
387 cmputc ('\n'); | |
388 cmputc ('\r'); | |
389 } | |
390 | |
21514 | 391 void |
765 | 392 update_begin (f) |
393 FRAME_PTR f; | |
253 | 394 { |
765 | 395 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
|
396 if (! FRAME_TERMCAP_P (updating_frame)) |
765 | 397 (*update_begin_hook) (f); |
253 | 398 } |
399 | |
21514 | 400 void |
765 | 401 update_end (f) |
402 FRAME_PTR f; | |
253 | 403 { |
969
16649ee21625
* term.c (FRAME_IS_TERMCAP, FRAME_IS_X, FRAME_HAS_MINIBUF):
Jim Blandy <jimb@redhat.com>
parents:
797
diff
changeset
|
404 if (! FRAME_TERMCAP_P (updating_frame)) |
253 | 405 { |
7649
eeefa4ac7978
(update_end): Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents:
6752
diff
changeset
|
406 (*update_end_hook) (f); |
5648
bd8a172bf8a0
(update_end): Clear updating_frame before calling hook.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
407 updating_frame = 0; |
253 | 408 return; |
409 } | |
410 turn_off_insert (); | |
411 background_highlight (); | |
412 standout_requested = 0; | |
765 | 413 updating_frame = 0; |
253 | 414 } |
415 | |
21514 | 416 void |
253 | 417 set_terminal_window (size) |
418 int size; | |
419 { | |
969
16649ee21625
* term.c (FRAME_IS_TERMCAP, FRAME_IS_X, FRAME_HAS_MINIBUF):
Jim Blandy <jimb@redhat.com>
parents:
797
diff
changeset
|
420 if (! FRAME_TERMCAP_P (updating_frame)) |
253 | 421 { |
422 (*set_terminal_window_hook) (size); | |
423 return; | |
424 } | |
765 | 425 specified_window = size ? size : FRAME_HEIGHT (selected_frame); |
253 | 426 if (!scroll_region_ok) |
427 return; | |
428 set_scroll_region (0, specified_window); | |
429 } | |
430 | |
21514 | 431 void |
253 | 432 set_scroll_region (start, stop) |
433 int start, stop; | |
434 { | |
435 char *buf; | |
436 if (TS_set_scroll_region) | |
437 { | |
438 buf = tparam (TS_set_scroll_region, 0, 0, start, stop - 1); | |
439 } | |
440 else if (TS_set_scroll_region_1) | |
441 { | |
442 buf = tparam (TS_set_scroll_region_1, 0, 0, | |
765 | 443 FRAME_HEIGHT (selected_frame), start, |
444 FRAME_HEIGHT (selected_frame) - stop, | |
445 FRAME_HEIGHT (selected_frame)); | |
253 | 446 } |
447 else | |
448 { | |
765 | 449 buf = tparam (TS_set_window, 0, 0, start, 0, stop, FRAME_WIDTH (selected_frame)); |
253 | 450 } |
451 OUTPUT (buf); | |
2439
b6c62e4abf59
Put interrupt input blocking in a separate file from xterm.h.
Jim Blandy <jimb@redhat.com>
parents:
2243
diff
changeset
|
452 xfree (buf); |
253 | 453 losecursor (); |
454 } | |
455 | |
21514 | 456 void |
253 | 457 turn_on_insert () |
458 { | |
459 if (!insert_mode) | |
460 OUTPUT (TS_insert_mode); | |
461 insert_mode = 1; | |
462 } | |
463 | |
21514 | 464 void |
253 | 465 turn_off_insert () |
466 { | |
467 if (insert_mode) | |
468 OUTPUT (TS_end_insert_mode); | |
469 insert_mode = 0; | |
470 } | |
471 | |
472 /* Handle highlighting when TN_standout_width (termcap sg) is not specified. | |
473 In these terminals, output is affected by the value of standout | |
474 mode when the output is written. | |
475 | |
476 These functions are called on all terminals, but do nothing | |
477 on terminals whose standout mode does not work that way. */ | |
478 | |
21514 | 479 void |
253 | 480 turn_off_highlight () |
481 { | |
482 if (TN_standout_width < 0) | |
483 { | |
484 if (standout_mode) | |
485 OUTPUT_IF (TS_end_standout_mode); | |
486 standout_mode = 0; | |
487 } | |
488 } | |
489 | |
21514 | 490 void |
253 | 491 turn_on_highlight () |
492 { | |
493 if (TN_standout_width < 0) | |
494 { | |
495 if (!standout_mode) | |
496 OUTPUT_IF (TS_standout_mode); | |
497 standout_mode = 1; | |
498 } | |
499 } | |
500 | |
501 /* Set standout mode to the state it should be in for | |
502 empty space inside windows. What this is, | |
503 depends on the user option inverse-video. */ | |
504 | |
21514 | 505 void |
253 | 506 background_highlight () |
507 { | |
508 if (TN_standout_width >= 0) | |
509 return; | |
510 if (inverse_video) | |
511 turn_on_highlight (); | |
512 else | |
513 turn_off_highlight (); | |
514 } | |
515 | |
516 /* Set standout mode to the mode specified for the text to be output. */ | |
517 | |
21514 | 518 static void |
253 | 519 highlight_if_desired () |
520 { | |
521 if (TN_standout_width >= 0) | |
522 return; | |
523 if (!inverse_video == !standout_requested) | |
524 turn_off_highlight (); | |
525 else | |
526 turn_on_highlight (); | |
527 } | |
528 | |
529 /* Handle standout mode for terminals in which TN_standout_width >= 0. | |
530 On these terminals, standout is controlled by markers that | |
765 | 531 live inside the terminal's memory. TN_standout_width is the width |
253 | 532 that the marker occupies in memory. Standout runs from the marker |
533 to the end of the line on some terminals, or to the next | |
534 turn-off-standout marker (TS_end_standout_mode) string | |
535 on other terminals. */ | |
536 | |
537 /* Write a standout marker or end-standout marker at the front of the line | |
538 at vertical position vpos. */ | |
539 | |
21514 | 540 void |
253 | 541 write_standout_marker (flag, vpos) |
542 int flag, vpos; | |
543 { | |
544 if (flag || (TS_end_standout_mode && !TF_teleray && !se_is_so | |
545 && !(TF_xs && TN_standout_width == 0))) | |
546 { | |
547 cmgoto (vpos, 0); | |
548 cmplus (TN_standout_width); | |
549 OUTPUT (flag ? TS_standout_mode : TS_end_standout_mode); | |
550 chars_wasted[curY] = TN_standout_width | 0100; | |
551 } | |
552 } | |
553 | |
554 /* External interface to control of standout mode. | |
555 Call this when about to modify line at position VPOS | |
556 and not change whether it is highlighted. */ | |
557 | |
21514 | 558 void |
253 | 559 reassert_line_highlight (highlight, vpos) |
560 int highlight; | |
561 int vpos; | |
562 { | |
969
16649ee21625
* term.c (FRAME_IS_TERMCAP, FRAME_IS_X, FRAME_HAS_MINIBUF):
Jim Blandy <jimb@redhat.com>
parents:
797
diff
changeset
|
563 if (! FRAME_TERMCAP_P ((updating_frame ? updating_frame : selected_frame))) |
253 | 564 { |
565 (*reassert_line_highlight_hook) (highlight, vpos); | |
566 return; | |
567 } | |
568 if (TN_standout_width < 0) | |
569 /* Handle terminals where standout takes affect at output time */ | |
570 standout_requested = highlight; | |
571 else if (chars_wasted[vpos] == 0) | |
572 /* For terminals with standout markers, write one on this line | |
573 if there isn't one already. */ | |
574 write_standout_marker (highlight, vpos); | |
575 } | |
576 | |
577 /* Call this when about to modify line at position VPOS | |
578 and change whether it is highlighted. */ | |
579 | |
21514 | 580 void |
253 | 581 change_line_highlight (new_highlight, vpos, first_unused_hpos) |
582 int new_highlight, vpos, first_unused_hpos; | |
583 { | |
584 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
|
585 if (! FRAME_TERMCAP_P (updating_frame)) |
253 | 586 { |
587 (*change_line_highlight_hook) (new_highlight, vpos, first_unused_hpos); | |
588 return; | |
589 } | |
590 | |
591 cursor_to (vpos, 0); | |
592 | |
593 if (TN_standout_width < 0) | |
594 background_highlight (); | |
595 /* If line starts with a marker, delete the marker */ | |
596 else if (TS_clr_line && chars_wasted[curY]) | |
597 { | |
598 turn_off_insert (); | |
599 /* On Teleray, make sure to erase the SO marker. */ | |
600 if (TF_teleray) | |
601 { | |
765 | 602 cmgoto (curY - 1, FRAME_WIDTH (selected_frame) - 4); |
253 | 603 OUTPUT ("\033S"); |
604 curY++; /* ESC S moves to next line where the TS_standout_mode was */ | |
605 curX = 0; | |
606 } | |
607 else | |
608 cmgoto (curY, 0); /* reposition to kill standout marker */ | |
609 } | |
610 clear_end_of_line_raw (first_unused_hpos); | |
611 reassert_line_highlight (new_highlight, curY); | |
612 } | |
613 | |
614 | |
615 /* Move to absolute position, specified origin 0 */ | |
616 | |
21514 | 617 void |
253 | 618 cursor_to (row, col) |
621 | 619 int row, col; |
253 | 620 { |
969
16649ee21625
* term.c (FRAME_IS_TERMCAP, FRAME_IS_X, FRAME_HAS_MINIBUF):
Jim Blandy <jimb@redhat.com>
parents:
797
diff
changeset
|
621 if (! FRAME_TERMCAP_P ((updating_frame |
765 | 622 ? updating_frame |
623 : selected_frame)) | |
253 | 624 && cursor_to_hook) |
625 { | |
626 (*cursor_to_hook) (row, col); | |
627 return; | |
628 } | |
629 | |
12071
f85f23c50344
(cursor_to, clear_to_end_of_line_raw):
Karl Heuer <kwzh@gnu.org>
parents:
11530
diff
changeset
|
630 /* 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
|
631 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
|
632 if (chars_wasted == 0) |
f85f23c50344
(cursor_to, clear_to_end_of_line_raw):
Karl Heuer <kwzh@gnu.org>
parents:
11530
diff
changeset
|
633 return; |
f85f23c50344
(cursor_to, clear_to_end_of_line_raw):
Karl Heuer <kwzh@gnu.org>
parents:
11530
diff
changeset
|
634 |
253 | 635 col += chars_wasted[row] & 077; |
636 if (curY == row && curX == col) | |
637 return; | |
638 if (!TF_standout_motion) | |
639 background_highlight (); | |
640 if (!TF_insmode_motion) | |
641 turn_off_insert (); | |
642 cmgoto (row, col); | |
643 } | |
644 | |
645 /* Similar but don't take any account of the wasted characters. */ | |
646 | |
21514 | 647 void |
253 | 648 raw_cursor_to (row, col) |
621 | 649 int row, col; |
253 | 650 { |
969
16649ee21625
* term.c (FRAME_IS_TERMCAP, FRAME_IS_X, FRAME_HAS_MINIBUF):
Jim Blandy <jimb@redhat.com>
parents:
797
diff
changeset
|
651 if (! FRAME_TERMCAP_P ((updating_frame ? updating_frame : selected_frame))) |
253 | 652 { |
653 (*raw_cursor_to_hook) (row, col); | |
654 return; | |
655 } | |
656 if (curY == row && curX == col) | |
657 return; | |
658 if (!TF_standout_motion) | |
659 background_highlight (); | |
660 if (!TF_insmode_motion) | |
661 turn_off_insert (); | |
662 cmgoto (row, col); | |
663 } | |
664 | |
665 /* Erase operations */ | |
666 | |
765 | 667 /* clear from cursor to end of frame */ |
21514 | 668 void |
253 | 669 clear_to_end () |
670 { | |
671 register int i; | |
672 | |
8806
2d3bfce2e1f0
(clear_to_end): Fix reversed condition.
Karl Heuer <kwzh@gnu.org>
parents:
8612
diff
changeset
|
673 if (clear_to_end_hook && ! FRAME_TERMCAP_P (updating_frame)) |
253 | 674 { |
675 (*clear_to_end_hook) (); | |
676 return; | |
677 } | |
678 if (TS_clr_to_bottom) | |
679 { | |
680 background_highlight (); | |
681 OUTPUT (TS_clr_to_bottom); | |
765 | 682 bzero (chars_wasted + curY, FRAME_HEIGHT (selected_frame) - curY); |
253 | 683 } |
684 else | |
685 { | |
765 | 686 for (i = curY; i < FRAME_HEIGHT (selected_frame); i++) |
253 | 687 { |
688 cursor_to (i, 0); | |
765 | 689 clear_end_of_line_raw (FRAME_WIDTH (selected_frame)); |
253 | 690 } |
691 } | |
692 } | |
693 | |
765 | 694 /* Clear entire frame */ |
253 | 695 |
21514 | 696 void |
765 | 697 clear_frame () |
253 | 698 { |
765 | 699 if (clear_frame_hook |
969
16649ee21625
* term.c (FRAME_IS_TERMCAP, FRAME_IS_X, FRAME_HAS_MINIBUF):
Jim Blandy <jimb@redhat.com>
parents:
797
diff
changeset
|
700 && ! FRAME_TERMCAP_P ((updating_frame ? updating_frame : selected_frame))) |
253 | 701 { |
765 | 702 (*clear_frame_hook) (); |
253 | 703 return; |
704 } | |
765 | 705 if (TS_clr_frame) |
253 | 706 { |
707 background_highlight (); | |
765 | 708 OUTPUT (TS_clr_frame); |
709 bzero (chars_wasted, FRAME_HEIGHT (selected_frame)); | |
253 | 710 cmat (0, 0); |
711 } | |
712 else | |
713 { | |
714 cursor_to (0, 0); | |
715 clear_to_end (); | |
716 } | |
717 } | |
718 | |
719 /* Clear to end of line, but do not clear any standout marker. | |
720 Assumes that the cursor is positioned at a character of real text, | |
721 which implies it cannot be before a standout marker | |
722 unless the marker has zero width. | |
723 | |
724 Note that the cursor may be moved. */ | |
725 | |
21514 | 726 void |
253 | 727 clear_end_of_line (first_unused_hpos) |
728 int first_unused_hpos; | |
729 { | |
1015
58c373be762c
* term.c (term_get_fkeys): Some systems define `static' to be the
Jim Blandy <jimb@redhat.com>
parents:
969
diff
changeset
|
730 static GLYPH buf = SPACEGLYPH; |
969
16649ee21625
* term.c (FRAME_IS_TERMCAP, FRAME_IS_X, FRAME_HAS_MINIBUF):
Jim Blandy <jimb@redhat.com>
parents:
797
diff
changeset
|
731 if (FRAME_TERMCAP_P (selected_frame) |
12071
f85f23c50344
(cursor_to, clear_to_end_of_line_raw):
Karl Heuer <kwzh@gnu.org>
parents:
11530
diff
changeset
|
732 && chars_wasted != 0 |
253 | 733 && TN_standout_width == 0 && curX == 0 && chars_wasted[curY] != 0) |
1015
58c373be762c
* term.c (term_get_fkeys): Some systems define `static' to be the
Jim Blandy <jimb@redhat.com>
parents:
969
diff
changeset
|
734 write_glyphs (&buf, 1); |
253 | 735 clear_end_of_line_raw (first_unused_hpos); |
736 } | |
737 | |
738 /* Clear from cursor to end of line. | |
739 Assume that the line is already clear starting at column first_unused_hpos. | |
740 If the cursor is at a standout marker, erase the marker. | |
741 | |
742 Note that the cursor may be moved, on terminals lacking a `ce' string. */ | |
743 | |
21514 | 744 void |
253 | 745 clear_end_of_line_raw (first_unused_hpos) |
746 int first_unused_hpos; | |
747 { | |
748 register int i; | |
749 | |
750 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
|
751 && ! FRAME_TERMCAP_P ((updating_frame |
765 | 752 ? updating_frame |
753 : selected_frame))) | |
253 | 754 { |
755 (*clear_end_of_line_hook) (first_unused_hpos); | |
756 return; | |
757 } | |
758 | |
12071
f85f23c50344
(cursor_to, clear_to_end_of_line_raw):
Karl Heuer <kwzh@gnu.org>
parents:
11530
diff
changeset
|
759 /* 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
|
760 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
|
761 if (chars_wasted == 0) |
f85f23c50344
(cursor_to, clear_to_end_of_line_raw):
Karl Heuer <kwzh@gnu.org>
parents:
11530
diff
changeset
|
762 return; |
f85f23c50344
(cursor_to, clear_to_end_of_line_raw):
Karl Heuer <kwzh@gnu.org>
parents:
11530
diff
changeset
|
763 |
253 | 764 first_unused_hpos += chars_wasted[curY] & 077; |
765 if (curX >= first_unused_hpos) | |
766 return; | |
767 /* Notice if we are erasing a magic cookie */ | |
768 if (curX == 0) | |
769 chars_wasted[curY] = 0; | |
770 background_highlight (); | |
771 if (TS_clr_line) | |
772 { | |
773 OUTPUT1 (TS_clr_line); | |
774 } | |
775 else | |
776 { /* have to do it the hard way */ | |
777 turn_off_insert (); | |
778 | |
779 /* Do not write in last row last col with Autowrap on. */ | |
765 | 780 if (AutoWrap && curY == FRAME_HEIGHT (selected_frame) - 1 |
781 && first_unused_hpos == FRAME_WIDTH (selected_frame)) | |
253 | 782 first_unused_hpos--; |
783 | |
784 for (i = curX; i < first_unused_hpos; i++) | |
785 { | |
786 if (termscript) | |
787 fputc (' ', termscript); | |
788 putchar (' '); | |
789 } | |
790 cmplus (first_unused_hpos - curX); | |
791 } | |
792 } | |
793 | |
17046
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
794 /* 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
|
795 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
|
796 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
|
797 converted. |
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
798 |
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
799 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
|
800 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
|
801 |
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
802 int |
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
803 encode_terminal_code (src, dst, src_len, dst_len, consumed) |
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
804 GLYPH *src; |
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
805 int src_len; |
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
806 unsigned char *dst; |
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
807 int dst_len, *consumed; |
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
808 { |
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
809 GLYPH *src_start = src, *src_end = src + src_len; |
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
810 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
|
811 register GLYPH g; |
364327df6e7c
(encode_terminal_code): Check validity of character code.
Kenichi Handa <handa@m17n.org>
parents:
17046
diff
changeset
|
812 unsigned int c; |
17046
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
813 unsigned char workbuf[4], *buf; |
20711
9ab8e061c0bf
(encode_terminal_code): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
20223
diff
changeset
|
814 int len; |
17046
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
815 register int tlen = GLYPH_TABLE_LENGTH; |
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
816 register Lisp_Object *tbase = GLYPH_TABLE_BASE; |
20711
9ab8e061c0bf
(encode_terminal_code): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
20223
diff
changeset
|
817 struct coding_system *coding; |
9ab8e061c0bf
(encode_terminal_code): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
20223
diff
changeset
|
818 |
9ab8e061c0bf
(encode_terminal_code): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
20223
diff
changeset
|
819 coding = (CODING_REQUIRE_ENCODING (&terminal_coding) |
9ab8e061c0bf
(encode_terminal_code): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
20223
diff
changeset
|
820 ? &terminal_coding |
9ab8e061c0bf
(encode_terminal_code): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
20223
diff
changeset
|
821 : &safe_terminal_coding); |
17046
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
822 |
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
823 while (src < src_end) |
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
824 { |
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
825 g = *src; |
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
826 /* We must skip glyphs to be padded for a wide character. */ |
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
827 if (! (g & GLYPH_MASK_PADDING)) |
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
828 { |
17180
364327df6e7c
(encode_terminal_code): Check validity of character code.
Kenichi Handa <handa@m17n.org>
parents:
17046
diff
changeset
|
829 if ((c = GLYPH_CHAR (selected_frame, g)) > MAX_CHAR) |
364327df6e7c
(encode_terminal_code): Check validity of character code.
Kenichi Handa <handa@m17n.org>
parents:
17046
diff
changeset
|
830 { |
364327df6e7c
(encode_terminal_code): Check validity of character code.
Kenichi Handa <handa@m17n.org>
parents:
17046
diff
changeset
|
831 c = ' '; |
364327df6e7c
(encode_terminal_code): Check validity of character code.
Kenichi Handa <handa@m17n.org>
parents:
17046
diff
changeset
|
832 g = MAKE_GLYPH (selected_frame, c, |
364327df6e7c
(encode_terminal_code): Check validity of character code.
Kenichi Handa <handa@m17n.org>
parents:
17046
diff
changeset
|
833 GLYPH_FACE (selected_frame, g)); |
364327df6e7c
(encode_terminal_code): Check validity of character code.
Kenichi Handa <handa@m17n.org>
parents:
17046
diff
changeset
|
834 } |
17046
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
835 if (COMPOSITE_CHAR_P (c)) |
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
836 { |
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
837 /* If C is a composite character, we can display |
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
838 only the first component. */ |
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
839 g = cmpchar_table[COMPOSITE_CHAR_ID (c)]->glyph[0], |
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
840 c = GLYPH_CHAR (selected_frame, g); |
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
841 } |
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
842 if (c < tlen) |
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
843 { |
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
844 /* G has an entry in Vglyph_table, |
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
845 so process any alias before testing for simpleness. */ |
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
846 GLYPH_FOLLOW_ALIASES (tbase, tlen, g); |
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
847 c = GLYPH_CHAR (selected_frame, g); |
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
848 } |
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
849 if (GLYPH_SIMPLE_P (tbase, tlen, g)) |
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
850 /* We set the multi-byte form of C at BUF. */ |
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
851 len = CHAR_STRING (c, workbuf, buf); |
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
852 else |
19035 | 853 { |
854 /* We have a string in Vglyph_table. */ | |
855 len = GLYPH_LENGTH (tbase, g); | |
856 buf = GLYPH_STRING (tbase, g); | |
857 } | |
17046
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
858 |
20711
9ab8e061c0bf
(encode_terminal_code): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
20223
diff
changeset
|
859 encode_coding (coding, buf, dst, len, dst_end - dst); |
9ab8e061c0bf
(encode_terminal_code): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
20223
diff
changeset
|
860 if (coding->consumed < len) |
17046
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
861 /* We get a carryover because the remaining output |
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
862 buffer is too short. We must break the loop here |
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
863 without increasing SRC so that the next call of |
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
864 this function start from the same glyph. */ |
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
865 break; |
20711
9ab8e061c0bf
(encode_terminal_code): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
20223
diff
changeset
|
866 dst += coding->produced; |
17046
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
867 } |
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
868 src++; |
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
869 } |
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
870 *consumed = src - src_start; |
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
871 return (dst - dst_start); |
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
872 } |
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
873 |
253 | 874 |
21514 | 875 void |
253 | 876 write_glyphs (string, len) |
877 register GLYPH *string; | |
878 register int len; | |
879 { | |
880 register GLYPH g; | |
881 register int tlen = GLYPH_TABLE_LENGTH; | |
882 register Lisp_Object *tbase = GLYPH_TABLE_BASE; | |
17046
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
883 int produced, consumed; |
253 | 884 |
885 if (write_glyphs_hook | |
969
16649ee21625
* term.c (FRAME_IS_TERMCAP, FRAME_IS_X, FRAME_HAS_MINIBUF):
Jim Blandy <jimb@redhat.com>
parents:
797
diff
changeset
|
886 && ! FRAME_TERMCAP_P ((updating_frame ? updating_frame : selected_frame))) |
253 | 887 { |
888 (*write_glyphs_hook) (string, len); | |
889 return; | |
890 } | |
891 | |
892 highlight_if_desired (); | |
893 turn_off_insert (); | |
894 | |
895 /* Don't dare write in last column of bottom line, if AutoWrap, | |
765 | 896 since that would scroll the whole frame on some terminals. */ |
253 | 897 |
898 if (AutoWrap | |
765 | 899 && curY + 1 == FRAME_HEIGHT (selected_frame) |
253 | 900 && (curX + len - (chars_wasted[curY] & 077) |
765 | 901 == FRAME_WIDTH (selected_frame))) |
253 | 902 len --; |
17046
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
903 if (len <= 0) |
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
904 return; |
253 | 905 |
906 cmplus (len); | |
20711
9ab8e061c0bf
(encode_terminal_code): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
20223
diff
changeset
|
907 /* 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
|
908 the tail. */ |
9ab8e061c0bf
(encode_terminal_code): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
20223
diff
changeset
|
909 terminal_coding.mode &= ~CODING_MODE_LAST_BLOCK; |
17046
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
910 while (len > 0) |
253 | 911 { |
17046
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
912 /* We use shared conversion buffer of the current size (1024 |
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
913 bytes at least). Usually it is sufficient, but if not, we |
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
914 just repeat the loop. */ |
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
915 produced = encode_terminal_code (string, conversion_buffer, |
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
916 len, conversion_buffer_size, &consumed); |
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
917 if (produced > 0) |
253 | 918 { |
17046
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
919 fwrite (conversion_buffer, 1, produced, stdout); |
253 | 920 if (ferror (stdout)) |
921 clearerr (stdout); | |
922 if (termscript) | |
17046
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
923 fwrite (conversion_buffer, 1, produced, termscript); |
253 | 924 } |
17046
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
925 len -= consumed; |
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
926 string += consumed; |
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
927 } |
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
928 /* 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
|
929 if (CODING_REQUIRE_FLUSHING (&terminal_coding)) |
17046
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
930 { |
20711
9ab8e061c0bf
(encode_terminal_code): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
20223
diff
changeset
|
931 terminal_coding.mode |= CODING_MODE_LAST_BLOCK; |
9ab8e061c0bf
(encode_terminal_code): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
20223
diff
changeset
|
932 encode_coding (&terminal_coding, (char *)0, conversion_buffer, |
9ab8e061c0bf
(encode_terminal_code): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
20223
diff
changeset
|
933 0, conversion_buffer_size); |
9ab8e061c0bf
(encode_terminal_code): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
20223
diff
changeset
|
934 if (terminal_coding.produced > 0) |
19277
7ea957cd48e2
(encode_terminal_code): Use safe_terminal_coding if
Kenichi Handa <handa@m17n.org>
parents:
19035
diff
changeset
|
935 { |
20711
9ab8e061c0bf
(encode_terminal_code): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
20223
diff
changeset
|
936 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
|
937 if (ferror (stdout)) |
7ea957cd48e2
(encode_terminal_code): Use safe_terminal_coding if
Kenichi Handa <handa@m17n.org>
parents:
19035
diff
changeset
|
938 clearerr (stdout); |
7ea957cd48e2
(encode_terminal_code): Use safe_terminal_coding if
Kenichi Handa <handa@m17n.org>
parents:
19035
diff
changeset
|
939 if (termscript) |
20711
9ab8e061c0bf
(encode_terminal_code): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
20223
diff
changeset
|
940 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
|
941 termscript); |
19277
7ea957cd48e2
(encode_terminal_code): Use safe_terminal_coding if
Kenichi Handa <handa@m17n.org>
parents:
19035
diff
changeset
|
942 } |
253 | 943 } |
10439
1fcbeb4410f6
(write_glyphs, insert_glyphs): Call checkmagic.
Karl Heuer <kwzh@gnu.org>
parents:
10332
diff
changeset
|
944 cmcheckmagic (); |
253 | 945 } |
946 | |
947 /* If start is zero, insert blanks instead of a string at start */ | |
948 | |
21514 | 949 void |
253 | 950 insert_glyphs (start, len) |
951 register GLYPH *start; | |
952 register int len; | |
953 { | |
954 char *buf; | |
17046
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
955 GLYPH g; |
253 | 956 register int tlen = GLYPH_TABLE_LENGTH; |
957 register Lisp_Object *tbase = GLYPH_TABLE_BASE; | |
958 | |
17046
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
959 if (len <= 0) |
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
960 return; |
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
961 |
969
16649ee21625
* term.c (FRAME_IS_TERMCAP, FRAME_IS_X, FRAME_HAS_MINIBUF):
Jim Blandy <jimb@redhat.com>
parents:
797
diff
changeset
|
962 if (insert_glyphs_hook && ! FRAME_TERMCAP_P (updating_frame)) |
253 | 963 { |
964 (*insert_glyphs_hook) (start, len); | |
965 return; | |
966 } | |
967 highlight_if_desired (); | |
968 | |
969 if (TS_ins_multi_chars) | |
970 { | |
971 buf = tparam (TS_ins_multi_chars, 0, 0, len); | |
972 OUTPUT1 (buf); | |
2439
b6c62e4abf59
Put interrupt input blocking in a separate file from xterm.h.
Jim Blandy <jimb@redhat.com>
parents:
2243
diff
changeset
|
973 xfree (buf); |
253 | 974 if (start) |
975 write_glyphs (start, len); | |
976 return; | |
977 } | |
978 | |
979 turn_on_insert (); | |
980 cmplus (len); | |
20711
9ab8e061c0bf
(encode_terminal_code): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
20223
diff
changeset
|
981 /* 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
|
982 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
|
983 while (len-- > 0) |
253 | 984 { |
17046
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
985 int produced, consumed; |
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
986 |
253 | 987 OUTPUT1_IF (TS_ins_char); |
988 if (!start) | |
989 g = SPACEGLYPH; | |
990 else | |
17046
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
991 { |
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
992 g = *start++; |
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
993 /* 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
|
994 occupies more than one column. */ |
18058
6dde3604dce4
(insert_glyphs): Use &, not &&.
Richard M. Stallman <rms@gnu.org>
parents:
17290
diff
changeset
|
995 while (*start & GLYPH_MASK_PADDING) |
17046
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
996 { |
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
997 OUTPUT1_IF (TS_ins_char); |
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
998 start++, len--; |
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
999 } |
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
1000 } |
253 | 1001 |
17046
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
1002 if (len <= 0) |
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
1003 /* This is the last glyph. */ |
20711
9ab8e061c0bf
(encode_terminal_code): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
20223
diff
changeset
|
1004 terminal_coding.mode |= CODING_MODE_LAST_BLOCK; |
17046
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
1005 |
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
1006 /* We use shared conversion buffer of the current size (1024 |
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
1007 bytes at least). It is surely sufficient for just one glyph. */ |
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
1008 produced = encode_terminal_code (&g, conversion_buffer, |
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
1009 1, conversion_buffer_size, &consumed); |
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
1010 if (produced > 0) |
253 | 1011 { |
17046
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
1012 fwrite (conversion_buffer, 1, produced, stdout); |
253 | 1013 if (ferror (stdout)) |
1014 clearerr (stdout); | |
1015 if (termscript) | |
17046
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
1016 fwrite (conversion_buffer, 1, produced, termscript); |
253 | 1017 } |
1018 | |
10439
1fcbeb4410f6
(write_glyphs, insert_glyphs): Call checkmagic.
Karl Heuer <kwzh@gnu.org>
parents:
10332
diff
changeset
|
1019 OUTPUT1_IF (TS_pad_inserted_char); |
1fcbeb4410f6
(write_glyphs, insert_glyphs): Call checkmagic.
Karl Heuer <kwzh@gnu.org>
parents:
10332
diff
changeset
|
1020 } |
1fcbeb4410f6
(write_glyphs, insert_glyphs): Call checkmagic.
Karl Heuer <kwzh@gnu.org>
parents:
10332
diff
changeset
|
1021 cmcheckmagic (); |
253 | 1022 } |
1023 | |
21514 | 1024 void |
253 | 1025 delete_glyphs (n) |
1026 register int n; | |
1027 { | |
1028 char *buf; | |
1029 register int i; | |
1030 | |
969
16649ee21625
* term.c (FRAME_IS_TERMCAP, FRAME_IS_X, FRAME_HAS_MINIBUF):
Jim Blandy <jimb@redhat.com>
parents:
797
diff
changeset
|
1031 if (delete_glyphs_hook && ! FRAME_TERMCAP_P (updating_frame)) |
253 | 1032 { |
1033 (*delete_glyphs_hook) (n); | |
1034 return; | |
1035 } | |
1036 | |
1037 if (delete_in_insert_mode) | |
1038 { | |
1039 turn_on_insert (); | |
1040 } | |
1041 else | |
1042 { | |
1043 turn_off_insert (); | |
1044 OUTPUT_IF (TS_delete_mode); | |
1045 } | |
1046 | |
1047 if (TS_del_multi_chars) | |
1048 { | |
1049 buf = tparam (TS_del_multi_chars, 0, 0, n); | |
1050 OUTPUT1 (buf); | |
2439
b6c62e4abf59
Put interrupt input blocking in a separate file from xterm.h.
Jim Blandy <jimb@redhat.com>
parents:
2243
diff
changeset
|
1051 xfree (buf); |
253 | 1052 } |
1053 else | |
1054 for (i = 0; i < n; i++) | |
1055 OUTPUT1 (TS_del_char); | |
1056 if (!delete_in_insert_mode) | |
1057 OUTPUT_IF (TS_end_delete_mode); | |
1058 } | |
1059 | |
1060 /* Insert N lines at vpos VPOS. If N is negative, delete -N lines. */ | |
1061 | |
21514 | 1062 void |
253 | 1063 ins_del_lines (vpos, n) |
1064 int vpos, n; | |
1065 { | |
1066 char *multi = n > 0 ? TS_ins_multi_lines : TS_del_multi_lines; | |
1067 char *single = n > 0 ? TS_ins_line : TS_del_line; | |
1068 char *scroll = n > 0 ? TS_rev_scroll : TS_fwd_scroll; | |
1069 | |
1070 register int i = n > 0 ? n : -n; | |
1071 register char *buf; | |
1072 | |
969
16649ee21625
* term.c (FRAME_IS_TERMCAP, FRAME_IS_X, FRAME_HAS_MINIBUF):
Jim Blandy <jimb@redhat.com>
parents:
797
diff
changeset
|
1073 if (ins_del_lines_hook && ! FRAME_TERMCAP_P (updating_frame)) |
253 | 1074 { |
1075 (*ins_del_lines_hook) (vpos, n); | |
1076 return; | |
1077 } | |
1078 | |
1079 /* If the lines below the insertion are being pushed | |
1080 into the end of the window, this is the same as clearing; | |
1081 and we know the lines are already clear, since the matching | |
1082 deletion has already been done. So can ignore this. */ | |
1083 /* If the lines below the deletion are blank lines coming | |
1084 out of the end of the window, don't bother, | |
1085 as there will be a matching inslines later that will flush them. */ | |
1086 if (scroll_region_ok && vpos + i >= specified_window) | |
1087 return; | |
765 | 1088 if (!memory_below_frame && vpos + i >= FRAME_HEIGHT (selected_frame)) |
253 | 1089 return; |
1090 | |
1091 if (multi) | |
1092 { | |
1093 raw_cursor_to (vpos, 0); | |
1094 background_highlight (); | |
1095 buf = tparam (multi, 0, 0, i); | |
1096 OUTPUT (buf); | |
2439
b6c62e4abf59
Put interrupt input blocking in a separate file from xterm.h.
Jim Blandy <jimb@redhat.com>
parents:
2243
diff
changeset
|
1097 xfree (buf); |
253 | 1098 } |
1099 else if (single) | |
1100 { | |
1101 raw_cursor_to (vpos, 0); | |
1102 background_highlight (); | |
1103 while (--i >= 0) | |
1104 OUTPUT (single); | |
1105 if (TF_teleray) | |
1106 curX = 0; | |
1107 } | |
1108 else | |
1109 { | |
1110 set_scroll_region (vpos, specified_window); | |
1111 if (n < 0) | |
1112 raw_cursor_to (specified_window - 1, 0); | |
1113 else | |
1114 raw_cursor_to (vpos, 0); | |
1115 background_highlight (); | |
1116 while (--i >= 0) | |
1117 OUTPUTL (scroll, specified_window - vpos); | |
1118 set_scroll_region (0, specified_window); | |
1119 } | |
1120 | |
1121 if (TN_standout_width >= 0) | |
1122 { | |
21514 | 1123 register int lower_limit |
253 | 1124 = (scroll_region_ok |
1125 ? specified_window | |
765 | 1126 : FRAME_HEIGHT (selected_frame)); |
253 | 1127 |
1128 if (n < 0) | |
1129 { | |
1130 bcopy (&chars_wasted[vpos - n], &chars_wasted[vpos], | |
1131 lower_limit - vpos + n); | |
1132 bzero (&chars_wasted[lower_limit + n], - n); | |
1133 } | |
1134 else | |
1135 { | |
1136 bcopy (&chars_wasted[vpos], ©buf[vpos], lower_limit - vpos - n); | |
1137 bcopy (©buf[vpos], &chars_wasted[vpos + n], | |
1138 lower_limit - vpos - n); | |
1139 bzero (&chars_wasted[vpos], n); | |
1140 } | |
1141 } | |
765 | 1142 if (!scroll_region_ok && memory_below_frame && n < 0) |
253 | 1143 { |
765 | 1144 cursor_to (FRAME_HEIGHT (selected_frame) + n, 0); |
253 | 1145 clear_to_end (); |
1146 } | |
1147 } | |
1148 | |
1149 /* Compute cost of sending "str", in characters, | |
1150 not counting any line-dependent padding. */ | |
1151 | |
1152 int | |
1153 string_cost (str) | |
1154 char *str; | |
1155 { | |
1156 cost = 0; | |
1157 if (str) | |
1158 tputs (str, 0, evalcost); | |
1159 return cost; | |
1160 } | |
1161 | |
1162 /* Compute cost of sending "str", in characters, | |
1163 counting any line-dependent padding at one line. */ | |
1164 | |
1165 static int | |
1166 string_cost_one_line (str) | |
1167 char *str; | |
1168 { | |
1169 cost = 0; | |
1170 if (str) | |
1171 tputs (str, 1, evalcost); | |
1172 return cost; | |
1173 } | |
1174 | |
1175 /* Compute per line amount of line-dependent padding, | |
1176 in tenths of characters. */ | |
1177 | |
1178 int | |
1179 per_line_cost (str) | |
1180 register char *str; | |
1181 { | |
1182 cost = 0; | |
1183 if (str) | |
1184 tputs (str, 0, evalcost); | |
1185 cost = - cost; | |
1186 if (str) | |
1187 tputs (str, 10, evalcost); | |
1188 return cost; | |
1189 } | |
1190 | |
1191 #ifndef old | |
1192 /* 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
|
1193 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
|
1194 The length of this vector is based on max_frame_width. */ |
253 | 1195 |
1196 int *char_ins_del_vector; | |
1197 | |
765 | 1198 #define char_ins_del_cost(f) (&char_ins_del_vector[FRAME_WIDTH ((f))]) |
253 | 1199 #endif |
1200 | |
1201 /* ARGSUSED */ | |
1202 static void | |
765 | 1203 calculate_ins_del_char_costs (frame) |
1204 FRAME_PTR frame; | |
253 | 1205 { |
1206 int ins_startup_cost, del_startup_cost; | |
1207 int ins_cost_per_char, del_cost_per_char; | |
1208 register int i; | |
1209 register int *p; | |
1210 | |
1211 if (TS_ins_multi_chars) | |
1212 { | |
1213 ins_cost_per_char = 0; | |
1214 ins_startup_cost = string_cost_one_line (TS_ins_multi_chars); | |
1215 } | |
1216 else if (TS_ins_char || TS_pad_inserted_char | |
1217 || (TS_insert_mode && TS_end_insert_mode)) | |
1218 { | |
1219 ins_startup_cost = (30 * (string_cost (TS_insert_mode) | |
1220 + string_cost (TS_end_insert_mode))) / 100; | |
1221 ins_cost_per_char = (string_cost_one_line (TS_ins_char) | |
1222 + string_cost_one_line (TS_pad_inserted_char)); | |
1223 } | |
1224 else | |
1225 { | |
1226 ins_startup_cost = 9999; | |
1227 ins_cost_per_char = 0; | |
1228 } | |
1229 | |
1230 if (TS_del_multi_chars) | |
1231 { | |
1232 del_cost_per_char = 0; | |
1233 del_startup_cost = string_cost_one_line (TS_del_multi_chars); | |
1234 } | |
1235 else if (TS_del_char) | |
1236 { | |
1237 del_startup_cost = (string_cost (TS_delete_mode) | |
1238 + string_cost (TS_end_delete_mode)); | |
1239 if (delete_in_insert_mode) | |
1240 del_startup_cost /= 2; | |
1241 del_cost_per_char = string_cost_one_line (TS_del_char); | |
1242 } | |
1243 else | |
1244 { | |
1245 del_startup_cost = 9999; | |
1246 del_cost_per_char = 0; | |
1247 } | |
1248 | |
1249 /* Delete costs are at negative offsets */ | |
765 | 1250 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
|
1251 for (i = FRAME_WIDTH (frame); --i >= 0;) |
253 | 1252 *--p = (del_startup_cost += del_cost_per_char); |
1253 | |
1254 /* Doing nothing is free */ | |
765 | 1255 p = &char_ins_del_cost (frame)[0]; |
253 | 1256 *p++ = 0; |
1257 | |
1258 /* Insert costs are at positive offsets */ | |
765 | 1259 for (i = FRAME_WIDTH (frame); --i >= 0;) |
253 | 1260 *p++ = (ins_startup_cost += ins_cost_per_char); |
1261 } | |
1262 | |
21514 | 1263 void |
765 | 1264 calculate_costs (frame) |
1265 FRAME_PTR frame; | |
253 | 1266 { |
10121
3f9f77a9488d
(calculate_costs): Set FRAME_COST_BAUD_RATE.
Richard M. Stallman <rms@gnu.org>
parents:
9797
diff
changeset
|
1267 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
|
1268 ? TS_set_scroll_region |
3f9f77a9488d
(calculate_costs): Set FRAME_COST_BAUD_RATE.
Richard M. Stallman <rms@gnu.org>
parents:
9797
diff
changeset
|
1269 : TS_set_scroll_region_1); |
253 | 1270 |
10121
3f9f77a9488d
(calculate_costs): Set FRAME_COST_BAUD_RATE.
Richard M. Stallman <rms@gnu.org>
parents:
9797
diff
changeset
|
1271 FRAME_COST_BAUD_RATE (frame) = baud_rate; |
253 | 1272 |
10261
4fd304db9216
(scroll_region_cost): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
10121
diff
changeset
|
1273 scroll_region_cost = string_cost (f); |
253 | 1274 #ifdef HAVE_X_WINDOWS |
969
16649ee21625
* term.c (FRAME_IS_TERMCAP, FRAME_IS_X, FRAME_HAS_MINIBUF):
Jim Blandy <jimb@redhat.com>
parents:
797
diff
changeset
|
1275 if (FRAME_X_P (frame)) |
253 | 1276 { |
765 | 1277 do_line_insertion_deletion_costs (frame, 0, ".5*", 0, ".5*", |
9658
4e0d87055e0c
(calculate_costs): Call x_screen_planes.
Richard M. Stallman <rms@gnu.org>
parents:
9524
diff
changeset
|
1278 0, 0, |
4e0d87055e0c
(calculate_costs): Call x_screen_planes.
Richard M. Stallman <rms@gnu.org>
parents:
9524
diff
changeset
|
1279 x_screen_planes (frame)); |
10261
4fd304db9216
(scroll_region_cost): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
10121
diff
changeset
|
1280 scroll_region_cost = 0; |
253 | 1281 return; |
1282 } | |
1283 #endif | |
1284 | |
1285 /* These variables are only used for terminal stuff. They are allocated | |
765 | 1286 once for the terminal frame of X-windows emacs, but not used afterwards. |
253 | 1287 |
1288 char_ins_del_vector (i.e., char_ins_del_cost) isn't used because | |
1289 X turns off char_ins_del_ok. | |
1290 | |
1291 chars_wasted and copybuf are only used here in term.c in cases where | |
1292 the term hook isn't called. */ | |
1293 | |
10771
d564078d10c6
(calculate_costs): Update max_frame_height, max_frame_width.
Richard M. Stallman <rms@gnu.org>
parents:
10481
diff
changeset
|
1294 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
|
1295 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
|
1296 |
253 | 1297 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
|
1298 chars_wasted = (char *) xrealloc (chars_wasted, max_frame_height); |
253 | 1299 else |
10771
d564078d10c6
(calculate_costs): Update max_frame_height, max_frame_width.
Richard M. Stallman <rms@gnu.org>
parents:
10481
diff
changeset
|
1300 chars_wasted = (char *) xmalloc (max_frame_height); |
253 | 1301 |
1302 if (copybuf != 0) | |
10771
d564078d10c6
(calculate_costs): Update max_frame_height, max_frame_width.
Richard M. Stallman <rms@gnu.org>
parents:
10481
diff
changeset
|
1303 copybuf = (char *) xrealloc (copybuf, max_frame_height); |
253 | 1304 else |
10771
d564078d10c6
(calculate_costs): Update max_frame_height, max_frame_width.
Richard M. Stallman <rms@gnu.org>
parents:
10481
diff
changeset
|
1305 copybuf = (char *) xmalloc (max_frame_height); |
253 | 1306 |
1307 if (char_ins_del_vector != 0) | |
1308 char_ins_del_vector | |
1309 = (int *) xrealloc (char_ins_del_vector, | |
1310 (sizeof (int) | |
10771
d564078d10c6
(calculate_costs): Update max_frame_height, max_frame_width.
Richard M. Stallman <rms@gnu.org>
parents:
10481
diff
changeset
|
1311 + 2 * max_frame_width * sizeof (int))); |
253 | 1312 else |
1313 char_ins_del_vector | |
1314 = (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
|
1315 + 2 * max_frame_width * sizeof (int)); |
253 | 1316 |
10771
d564078d10c6
(calculate_costs): Update max_frame_height, max_frame_width.
Richard M. Stallman <rms@gnu.org>
parents:
10481
diff
changeset
|
1317 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
|
1318 bzero (copybuf, max_frame_height); |
253 | 1319 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
|
1320 + 2 * max_frame_width * sizeof (int))); |
253 | 1321 |
765 | 1322 if (f && (!TS_ins_line && !TS_del_line)) |
1323 do_line_insertion_deletion_costs (frame, | |
253 | 1324 TS_rev_scroll, TS_ins_multi_lines, |
1325 TS_fwd_scroll, TS_del_multi_lines, | |
765 | 1326 f, f, 1); |
253 | 1327 else |
765 | 1328 do_line_insertion_deletion_costs (frame, |
253 | 1329 TS_ins_line, TS_ins_multi_lines, |
1330 TS_del_line, TS_del_multi_lines, | |
1331 0, 0, 1); | |
1332 | |
765 | 1333 calculate_ins_del_char_costs (frame); |
253 | 1334 |
1335 /* Don't use TS_repeat if its padding is worse than sending the chars */ | |
1336 if (TS_repeat && per_line_cost (TS_repeat) * baud_rate < 9000) | |
1337 RPov = string_cost (TS_repeat); | |
1338 else | |
765 | 1339 RPov = FRAME_WIDTH (frame) * 2; |
253 | 1340 |
1341 cmcostinit (); /* set up cursor motion costs */ | |
1342 } | |
1343 | |
1015
58c373be762c
* term.c (term_get_fkeys): Some systems define `static' to be the
Jim Blandy <jimb@redhat.com>
parents:
969
diff
changeset
|
1344 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
|
1345 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
|
1346 }; |
58c373be762c
* term.c (term_get_fkeys): Some systems define `static' to be the
Jim Blandy <jimb@redhat.com>
parents:
969
diff
changeset
|
1347 |
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
|
1348 /* 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
|
1349 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
|
1350 (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
|
1351 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
|
1352 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
|
1353 */ |
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
|
1354 |
1015
58c373be762c
* term.c (term_get_fkeys): Some systems define `static' to be the
Jim Blandy <jimb@redhat.com>
parents:
969
diff
changeset
|
1355 static struct fkey_table keys[] = { |
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
|
1356 "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
|
1357 "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
|
1358 "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
|
1359 "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
|
1360 "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
|
1361 "%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
|
1362 "%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
|
1363 "@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
|
1364 "@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
|
1365 "*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
|
1366 "%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
|
1367 "@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
|
1368 /* |
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
|
1369 * "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
|
1370 */ |
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
|
1371 "&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
|
1372 "%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
|
1373 "%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
|
1374 "@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
|
1375 "@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
|
1376 "%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
|
1377 /* |
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
|
1378 * "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
|
1379 */ |
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
|
1380 "&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
|
1381 /* |
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
|
1382 * "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
|
1383 */ |
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
|
1384 "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
|
1385 "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
|
1386 "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
|
1387 "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
|
1388 "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
|
1389 "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
|
1390 /* |
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
|
1391 * "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
|
1392 */ |
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
|
1393 "@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
|
1394 /* |
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
|
1395 * "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
|
1396 * "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
|
1397 * "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
|
1398 * --- 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
|
1399 */ |
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
|
1400 "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
|
1401 /* |
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
|
1402 * "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
|
1403 */ |
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
|
1404 "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
|
1405 /* |
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
|
1406 * "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
|
1407 */ |
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
|
1408 "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
|
1409 /* |
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
|
1410 * "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
|
1411 */ |
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
|
1412 "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
|
1413 /* |
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
|
1414 * "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
|
1415 */ |
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
|
1416 "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
|
1417 /* |
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
|
1418 * "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
|
1419 */ |
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
|
1420 "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
|
1421 "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
|
1422 "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
|
1423 "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
|
1424 "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
|
1425 "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
|
1426 "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
|
1427 "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
|
1428 "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
|
1429 }; |
58c373be762c
* term.c (term_get_fkeys): Some systems define `static' to be the
Jim Blandy <jimb@redhat.com>
parents:
969
diff
changeset
|
1430 |
6248
0e4319197d29
(term_get_fkeys_data): Variable removed.
Roland McGrath <roland@gnu.org>
parents:
5933
diff
changeset
|
1431 static char **term_get_fkeys_arg; |
0e4319197d29
(term_get_fkeys_data): Variable removed.
Roland McGrath <roland@gnu.org>
parents:
5933
diff
changeset
|
1432 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
|
1433 |
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
|
1434 /* 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
|
1435 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
|
1436 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
|
1437 |
533 | 1438 void |
1439 term_get_fkeys (address) | |
1440 char **address; | |
1441 { | |
6248
0e4319197d29
(term_get_fkeys_data): Variable removed.
Roland McGrath <roland@gnu.org>
parents:
5933
diff
changeset
|
1442 /* 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
|
1443 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
|
1444 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
|
1445 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
|
1446 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
|
1447 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
|
1448 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
|
1449 |
0e4319197d29
(term_get_fkeys_data): Variable removed.
Roland McGrath <roland@gnu.org>
parents:
5933
diff
changeset
|
1450 extern Lisp_Object Fidentity (); |
0e4319197d29
(term_get_fkeys_data): Variable removed.
Roland McGrath <roland@gnu.org>
parents:
5933
diff
changeset
|
1451 term_get_fkeys_arg = address; |
0e4319197d29
(term_get_fkeys_data): Variable removed.
Roland McGrath <roland@gnu.org>
parents:
5933
diff
changeset
|
1452 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
|
1453 } |
0e4319197d29
(term_get_fkeys_data): Variable removed.
Roland McGrath <roland@gnu.org>
parents:
5933
diff
changeset
|
1454 |
0e4319197d29
(term_get_fkeys_data): Variable removed.
Roland McGrath <roland@gnu.org>
parents:
5933
diff
changeset
|
1455 static Lisp_Object |
0e4319197d29
(term_get_fkeys_data): Variable removed.
Roland McGrath <roland@gnu.org>
parents:
5933
diff
changeset
|
1456 term_get_fkeys_1 () |
0e4319197d29
(term_get_fkeys_data): Variable removed.
Roland McGrath <roland@gnu.org>
parents:
5933
diff
changeset
|
1457 { |
533 | 1458 int i; |
1459 | |
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
|
1460 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
|
1461 |
3359
ef29e2a4fc46
(term_get_fkeys): If not initialized, init Vfunction_key_map.
Richard M. Stallman <rms@gnu.org>
parents:
2961
diff
changeset
|
1462 /* 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
|
1463 if (!initialized) |
ef29e2a4fc46
(term_get_fkeys): If not initialized, init Vfunction_key_map.
Richard M. Stallman <rms@gnu.org>
parents:
2961
diff
changeset
|
1464 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
|
1465 |
533 | 1466 for (i = 0; i < (sizeof (keys)/sizeof (keys[0])); i++) |
1467 { | |
1468 char *sequence = tgetstr (keys[i].cap, address); | |
1469 if (sequence) | |
6248
0e4319197d29
(term_get_fkeys_data): Variable removed.
Roland McGrath <roland@gnu.org>
parents:
5933
diff
changeset
|
1470 Fdefine_key (Vfunction_key_map, build_string (sequence), |
0e4319197d29
(term_get_fkeys_data): Variable removed.
Roland McGrath <roland@gnu.org>
parents:
5933
diff
changeset
|
1471 Fmake_vector (make_number (1), |
0e4319197d29
(term_get_fkeys_data): Variable removed.
Roland McGrath <roland@gnu.org>
parents:
5933
diff
changeset
|
1472 intern (keys[i].name))); |
533 | 1473 } |
1015
58c373be762c
* term.c (term_get_fkeys): Some systems define `static' to be the
Jim Blandy <jimb@redhat.com>
parents:
969
diff
changeset
|
1474 |
58c373be762c
* term.c (term_get_fkeys): Some systems define `static' to be the
Jim Blandy <jimb@redhat.com>
parents:
969
diff
changeset
|
1475 /* 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
|
1476 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
|
1477 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
|
1478 "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
|
1479 */ |
58c373be762c
* term.c (term_get_fkeys): Some systems define `static' to be the
Jim Blandy <jimb@redhat.com>
parents:
969
diff
changeset
|
1480 { |
58c373be762c
* term.c (term_get_fkeys): Some systems define `static' to be the
Jim Blandy <jimb@redhat.com>
parents:
969
diff
changeset
|
1481 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
|
1482 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
|
1483 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
|
1484 |
58c373be762c
* term.c (term_get_fkeys): Some systems define `static' to be the
Jim Blandy <jimb@redhat.com>
parents:
969
diff
changeset
|
1485 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
|
1486 { |
6248
0e4319197d29
(term_get_fkeys_data): Variable removed.
Roland McGrath <roland@gnu.org>
parents:
5933
diff
changeset
|
1487 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
|
1488 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
|
1489 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
|
1490 } |
58c373be762c
* term.c (term_get_fkeys): Some systems define `static' to be the
Jim Blandy <jimb@redhat.com>
parents:
969
diff
changeset
|
1491 |
58c373be762c
* term.c (term_get_fkeys): Some systems define `static' to be the
Jim Blandy <jimb@redhat.com>
parents:
969
diff
changeset
|
1492 if (k0) |
6248
0e4319197d29
(term_get_fkeys_data): Variable removed.
Roland McGrath <roland@gnu.org>
parents:
5933
diff
changeset
|
1493 Fdefine_key (Vfunction_key_map, build_string (k0), |
0e4319197d29
(term_get_fkeys_data): Variable removed.
Roland McGrath <roland@gnu.org>
parents:
5933
diff
changeset
|
1494 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
|
1495 } |
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
|
1496 |
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
|
1497 /* 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
|
1498 { |
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
|
1499 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
|
1500 |
3489
5c2b4797aab2
(term_get_fkeys): Use correct names for F10 and up.
Richard M. Stallman <rms@gnu.org>
parents:
3359
diff
changeset
|
1501 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
|
1502 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
|
1503 { |
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
|
1504 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
|
1505 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
|
1506 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
|
1507 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
|
1508 else |
10481
24756aef26e3
(term_get_fkeys_1): Bug fix for function key above f19.
Richard M. Stallman <rms@gnu.org>
parents:
10439
diff
changeset
|
1509 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
|
1510 |
3489
5c2b4797aab2
(term_get_fkeys): Use correct names for F10 and up.
Richard M. Stallman <rms@gnu.org>
parents:
3359
diff
changeset
|
1511 { |
5c2b4797aab2
(term_get_fkeys): Use correct names for F10 and up.
Richard M. Stallman <rms@gnu.org>
parents:
3359
diff
changeset
|
1512 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
|
1513 if (sequence) |
5c2b4797aab2
(term_get_fkeys): Use correct names for F10 and up.
Richard M. Stallman <rms@gnu.org>
parents:
3359
diff
changeset
|
1514 { |
4543
929e4c850e76
(term_get_fkeys_define_1, term_get_fkeys_define): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
4499
diff
changeset
|
1515 sprintf (fkey, "f%d", i); |
6248
0e4319197d29
(term_get_fkeys_data): Variable removed.
Roland McGrath <roland@gnu.org>
parents:
5933
diff
changeset
|
1516 Fdefine_key (Vfunction_key_map, build_string (sequence), |
0e4319197d29
(term_get_fkeys_data): Variable removed.
Roland McGrath <roland@gnu.org>
parents:
5933
diff
changeset
|
1517 Fmake_vector (make_number (1), |
0e4319197d29
(term_get_fkeys_data): Variable removed.
Roland McGrath <roland@gnu.org>
parents:
5933
diff
changeset
|
1518 intern (fkey))); |
3489
5c2b4797aab2
(term_get_fkeys): Use correct names for F10 and up.
Richard M. Stallman <rms@gnu.org>
parents:
3359
diff
changeset
|
1519 } |
5c2b4797aab2
(term_get_fkeys): Use correct names for F10 and up.
Richard M. Stallman <rms@gnu.org>
parents:
3359
diff
changeset
|
1520 } |
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
|
1521 } |
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
|
1522 } |
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
|
1523 |
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
|
1524 /* |
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
|
1525 * 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
|
1526 */ |
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
|
1527 { |
3489
5c2b4797aab2
(term_get_fkeys): Use correct names for F10 and up.
Richard M. Stallman <rms@gnu.org>
parents:
3359
diff
changeset
|
1528 #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
|
1529 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
|
1530 { \ |
5c2b4797aab2
(term_get_fkeys): Use correct names for F10 and up.
Richard M. Stallman <rms@gnu.org>
parents:
3359
diff
changeset
|
1531 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
|
1532 if (sequence) \ |
6248
0e4319197d29
(term_get_fkeys_data): Variable removed.
Roland McGrath <roland@gnu.org>
parents:
5933
diff
changeset
|
1533 Fdefine_key (Vfunction_key_map, build_string (sequence), \ |
0e4319197d29
(term_get_fkeys_data): Variable removed.
Roland McGrath <roland@gnu.org>
parents:
5933
diff
changeset
|
1534 Fmake_vector (make_number (1), \ |
0e4319197d29
(term_get_fkeys_data): Variable removed.
Roland McGrath <roland@gnu.org>
parents:
5933
diff
changeset
|
1535 intern (sym))); \ |
3489
5c2b4797aab2
(term_get_fkeys): Use correct names for F10 and up.
Richard M. Stallman <rms@gnu.org>
parents:
3359
diff
changeset
|
1536 } |
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
|
1537 |
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 /* 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
|
1539 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
|
1540 /* 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
|
1541 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
|
1542 /* 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
|
1543 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
|
1544 /* 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
|
1545 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
|
1546 |
f42e5fd15f6f
(term_get_fkeys_1): Workaround for IBM's dialect of terminfo.
Karl Heuer <kwzh@gnu.org>
parents:
8898
diff
changeset
|
1547 /* 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
|
1548 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
|
1549 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
|
1550 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
|
1551 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
|
1552 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
|
1553 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
|
1554 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
|
1555 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
|
1556 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
|
1557 CONDITIONAL_REASSIGN ("*6", "kU", "select"); |
2224
49bda4cf498c
Supply second arg for tgetstr() calls.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2179
diff
changeset
|
1558 #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
|
1559 } |
533 | 1560 } |
1561 | |
1562 | |
21514 | 1563 void |
253 | 1564 term_init (terminal_type) |
1565 char *terminal_type; | |
1566 { | |
1567 char *area; | |
1568 char **address = &area; | |
1569 char buffer[2044]; | |
1570 register char *p; | |
1571 int status; | |
1572 | |
9797
05d9072c5a38
(term_init) [WINDOWSNT]: Do some Windows-specific
Richard M. Stallman <rms@gnu.org>
parents:
9658
diff
changeset
|
1573 #ifdef WINDOWSNT |
16885
ddd632f61ce3
(term_init): Use new name initialize_w32_display.
Geoff Voelker <voelker@cs.washington.edu>
parents:
16260
diff
changeset
|
1574 initialize_w32_display (); |
9797
05d9072c5a38
(term_init) [WINDOWSNT]: Do some Windows-specific
Richard M. Stallman <rms@gnu.org>
parents:
9658
diff
changeset
|
1575 |
05d9072c5a38
(term_init) [WINDOWSNT]: Do some Windows-specific
Richard M. Stallman <rms@gnu.org>
parents:
9658
diff
changeset
|
1576 Wcm_clear (); |
05d9072c5a38
(term_init) [WINDOWSNT]: Do some Windows-specific
Richard M. Stallman <rms@gnu.org>
parents:
9658
diff
changeset
|
1577 |
05d9072c5a38
(term_init) [WINDOWSNT]: Do some Windows-specific
Richard M. Stallman <rms@gnu.org>
parents:
9658
diff
changeset
|
1578 area = (char *) malloc (2044); |
05d9072c5a38
(term_init) [WINDOWSNT]: Do some Windows-specific
Richard M. Stallman <rms@gnu.org>
parents:
9658
diff
changeset
|
1579 |
05d9072c5a38
(term_init) [WINDOWSNT]: Do some Windows-specific
Richard M. Stallman <rms@gnu.org>
parents:
9658
diff
changeset
|
1580 if (area == 0) |
05d9072c5a38
(term_init) [WINDOWSNT]: Do some Windows-specific
Richard M. Stallman <rms@gnu.org>
parents:
9658
diff
changeset
|
1581 abort (); |
05d9072c5a38
(term_init) [WINDOWSNT]: Do some Windows-specific
Richard M. Stallman <rms@gnu.org>
parents:
9658
diff
changeset
|
1582 |
05d9072c5a38
(term_init) [WINDOWSNT]: Do some Windows-specific
Richard M. Stallman <rms@gnu.org>
parents:
9658
diff
changeset
|
1583 FrameRows = FRAME_HEIGHT (selected_frame); |
05d9072c5a38
(term_init) [WINDOWSNT]: Do some Windows-specific
Richard M. Stallman <rms@gnu.org>
parents:
9658
diff
changeset
|
1584 FrameCols = FRAME_WIDTH (selected_frame); |
05d9072c5a38
(term_init) [WINDOWSNT]: Do some Windows-specific
Richard M. Stallman <rms@gnu.org>
parents:
9658
diff
changeset
|
1585 specified_window = FRAME_HEIGHT (selected_frame); |
05d9072c5a38
(term_init) [WINDOWSNT]: Do some Windows-specific
Richard M. Stallman <rms@gnu.org>
parents:
9658
diff
changeset
|
1586 |
05d9072c5a38
(term_init) [WINDOWSNT]: Do some Windows-specific
Richard M. Stallman <rms@gnu.org>
parents:
9658
diff
changeset
|
1587 delete_in_insert_mode = 1; |
05d9072c5a38
(term_init) [WINDOWSNT]: Do some Windows-specific
Richard M. Stallman <rms@gnu.org>
parents:
9658
diff
changeset
|
1588 |
05d9072c5a38
(term_init) [WINDOWSNT]: Do some Windows-specific
Richard M. Stallman <rms@gnu.org>
parents:
9658
diff
changeset
|
1589 UseTabs = 0; |
05d9072c5a38
(term_init) [WINDOWSNT]: Do some Windows-specific
Richard M. Stallman <rms@gnu.org>
parents:
9658
diff
changeset
|
1590 scroll_region_ok = 0; |
05d9072c5a38
(term_init) [WINDOWSNT]: Do some Windows-specific
Richard M. Stallman <rms@gnu.org>
parents:
9658
diff
changeset
|
1591 |
05d9072c5a38
(term_init) [WINDOWSNT]: Do some Windows-specific
Richard M. Stallman <rms@gnu.org>
parents:
9658
diff
changeset
|
1592 /* 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
|
1593 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
|
1594 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
|
1595 turning it off. */ |
05d9072c5a38
(term_init) [WINDOWSNT]: Do some Windows-specific
Richard M. Stallman <rms@gnu.org>
parents:
9658
diff
changeset
|
1596 |
05d9072c5a38
(term_init) [WINDOWSNT]: Do some Windows-specific
Richard M. Stallman <rms@gnu.org>
parents:
9658
diff
changeset
|
1597 line_ins_del_ok = 0; |
05d9072c5a38
(term_init) [WINDOWSNT]: Do some Windows-specific
Richard M. Stallman <rms@gnu.org>
parents:
9658
diff
changeset
|
1598 char_ins_del_ok = 1; |
05d9072c5a38
(term_init) [WINDOWSNT]: Do some Windows-specific
Richard M. Stallman <rms@gnu.org>
parents:
9658
diff
changeset
|
1599 |
05d9072c5a38
(term_init) [WINDOWSNT]: Do some Windows-specific
Richard M. Stallman <rms@gnu.org>
parents:
9658
diff
changeset
|
1600 baud_rate = 19200; |
05d9072c5a38
(term_init) [WINDOWSNT]: Do some Windows-specific
Richard M. Stallman <rms@gnu.org>
parents:
9658
diff
changeset
|
1601 |
05d9072c5a38
(term_init) [WINDOWSNT]: Do some Windows-specific
Richard M. Stallman <rms@gnu.org>
parents:
9658
diff
changeset
|
1602 FRAME_CAN_HAVE_SCROLL_BARS (selected_frame) = 0; |
16260
4468f3277e80
(term_init): Use new vertical scroll bar enumerated type.
Richard M. Stallman <rms@gnu.org>
parents:
16094
diff
changeset
|
1603 FRAME_VERTICAL_SCROLL_BAR_TYPE (selected_frame) = vertical_scroll_bar_none; |
9797
05d9072c5a38
(term_init) [WINDOWSNT]: Do some Windows-specific
Richard M. Stallman <rms@gnu.org>
parents:
9658
diff
changeset
|
1604 |
05d9072c5a38
(term_init) [WINDOWSNT]: Do some Windows-specific
Richard M. Stallman <rms@gnu.org>
parents:
9658
diff
changeset
|
1605 return; |
05d9072c5a38
(term_init) [WINDOWSNT]: Do some Windows-specific
Richard M. Stallman <rms@gnu.org>
parents:
9658
diff
changeset
|
1606 #endif /* WINDOWSNT */ |
05d9072c5a38
(term_init) [WINDOWSNT]: Do some Windows-specific
Richard M. Stallman <rms@gnu.org>
parents:
9658
diff
changeset
|
1607 |
253 | 1608 Wcm_clear (); |
1609 | |
1610 status = tgetent (buffer, terminal_type); | |
1611 if (status < 0) | |
10824
894369e950f5
(term_init) [TERMINFO]: Make error message more accurate.
Karl Heuer <kwzh@gnu.org>
parents:
10771
diff
changeset
|
1612 { |
894369e950f5
(term_init) [TERMINFO]: Make error message more accurate.
Karl Heuer <kwzh@gnu.org>
parents:
10771
diff
changeset
|
1613 #ifdef TERMINFO |
16894
cd8d6bf6b320
(fatal): Print a newline at the end.
Richard M. Stallman <rms@gnu.org>
parents:
16885
diff
changeset
|
1614 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
|
1615 #else |
16894
cd8d6bf6b320
(fatal): Print a newline at the end.
Richard M. Stallman <rms@gnu.org>
parents:
16885
diff
changeset
|
1616 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
|
1617 #endif |
894369e950f5
(term_init) [TERMINFO]: Make error message more accurate.
Karl Heuer <kwzh@gnu.org>
parents:
10771
diff
changeset
|
1618 } |
253 | 1619 if (status == 0) |
10824
894369e950f5
(term_init) [TERMINFO]: Make error message more accurate.
Karl Heuer <kwzh@gnu.org>
parents:
10771
diff
changeset
|
1620 { |
894369e950f5
(term_init) [TERMINFO]: Make error message more accurate.
Karl Heuer <kwzh@gnu.org>
parents:
10771
diff
changeset
|
1621 #ifdef TERMINFO |
894369e950f5
(term_init) [TERMINFO]: Make error message more accurate.
Karl Heuer <kwzh@gnu.org>
parents:
10771
diff
changeset
|
1622 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
|
1623 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
|
1624 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
|
1625 `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
|
1626 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
|
1627 terminal_type); |
894369e950f5
(term_init) [TERMINFO]: Make error message more accurate.
Karl Heuer <kwzh@gnu.org>
parents:
10771
diff
changeset
|
1628 #else |
894369e950f5
(term_init) [TERMINFO]: Make error message more accurate.
Karl Heuer <kwzh@gnu.org>
parents:
10771
diff
changeset
|
1629 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
|
1630 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
|
1631 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
|
1632 `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
|
1633 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
|
1634 terminal_type); |
894369e950f5
(term_init) [TERMINFO]: Make error message more accurate.
Karl Heuer <kwzh@gnu.org>
parents:
10771
diff
changeset
|
1635 #endif |
894369e950f5
(term_init) [TERMINFO]: Make error message more accurate.
Karl Heuer <kwzh@gnu.org>
parents:
10771
diff
changeset
|
1636 } |
253 | 1637 #ifdef TERMINFO |
1638 area = (char *) malloc (2044); | |
1639 #else | |
1640 area = (char *) malloc (strlen (buffer)); | |
1641 #endif /* not TERMINFO */ | |
1642 if (area == 0) | |
1643 abort (); | |
1644 | |
1645 TS_ins_line = tgetstr ("al", address); | |
1646 TS_ins_multi_lines = tgetstr ("AL", address); | |
1647 TS_bell = tgetstr ("bl", address); | |
1648 BackTab = tgetstr ("bt", address); | |
1649 TS_clr_to_bottom = tgetstr ("cd", address); | |
1650 TS_clr_line = tgetstr ("ce", address); | |
765 | 1651 TS_clr_frame = tgetstr ("cl", address); |
253 | 1652 ColPosition = tgetstr ("ch", address); |
1653 AbsPosition = tgetstr ("cm", address); | |
1654 CR = tgetstr ("cr", address); | |
1655 TS_set_scroll_region = tgetstr ("cs", address); | |
1656 TS_set_scroll_region_1 = tgetstr ("cS", address); | |
1657 RowPosition = tgetstr ("cv", address); | |
1658 TS_del_char = tgetstr ("dc", address); | |
1659 TS_del_multi_chars = tgetstr ("DC", address); | |
1660 TS_del_line = tgetstr ("dl", address); | |
1661 TS_del_multi_lines = tgetstr ("DL", address); | |
1662 TS_delete_mode = tgetstr ("dm", address); | |
1663 TS_end_delete_mode = tgetstr ("ed", address); | |
1664 TS_end_insert_mode = tgetstr ("ei", address); | |
1665 Home = tgetstr ("ho", address); | |
1666 TS_ins_char = tgetstr ("ic", address); | |
1667 TS_ins_multi_chars = tgetstr ("IC", address); | |
1668 TS_insert_mode = tgetstr ("im", address); | |
1669 TS_pad_inserted_char = tgetstr ("ip", address); | |
1670 TS_end_keypad_mode = tgetstr ("ke", address); | |
1671 TS_keypad_mode = tgetstr ("ks", address); | |
1672 LastLine = tgetstr ("ll", address); | |
1673 Right = tgetstr ("nd", address); | |
1674 Down = tgetstr ("do", address); | |
1675 if (!Down) | |
1676 Down = tgetstr ("nl", address); /* Obsolete name for "do" */ | |
1677 #ifdef VMS | |
1678 /* VMS puts a carriage return before each linefeed, | |
1679 so it is not safe to use linefeeds. */ | |
1680 if (Down && Down[0] == '\n' && Down[1] == '\0') | |
1681 Down = 0; | |
1682 #endif /* VMS */ | |
1683 if (tgetflag ("bs")) | |
1684 Left = "\b"; /* can't possibly be longer! */ | |
1685 else /* (Actually, "bs" is obsolete...) */ | |
1686 Left = tgetstr ("le", address); | |
1687 if (!Left) | |
1688 Left = tgetstr ("bc", address); /* Obsolete name for "le" */ | |
1689 TS_pad_char = tgetstr ("pc", address); | |
1690 TS_repeat = tgetstr ("rp", address); | |
1691 TS_end_standout_mode = tgetstr ("se", address); | |
1692 TS_fwd_scroll = tgetstr ("sf", address); | |
1693 TS_standout_mode = tgetstr ("so", address); | |
1694 TS_rev_scroll = tgetstr ("sr", address); | |
1695 Wcm.cm_tab = tgetstr ("ta", address); | |
1696 TS_end_termcap_modes = tgetstr ("te", address); | |
1697 TS_termcap_modes = tgetstr ("ti", address); | |
17046
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
1698 TS_bold_mode = tgetstr ("md", address); |
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
1699 TS_end_bold_mode = tgetstr ("me", address); |
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
1700 TS_underscore_mode = tgetstr ("us", address); |
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
1701 TS_end_underscore_mode = tgetstr ("ue", address); |
253 | 1702 Up = tgetstr ("up", address); |
1703 TS_visible_bell = tgetstr ("vb", address); | |
1704 TS_end_visual_mode = tgetstr ("ve", address); | |
1705 TS_visual_mode = tgetstr ("vs", address); | |
1706 TS_set_window = tgetstr ("wi", address); | |
1707 MultiUp = tgetstr ("UP", address); | |
1708 MultiDown = tgetstr ("DO", address); | |
1709 MultiLeft = tgetstr ("LE", address); | |
1710 MultiRight = tgetstr ("RI", address); | |
1711 | |
11530
a265aaa699e0
(term_init): MagicWrap implies AutoWrap.
Karl Heuer <kwzh@gnu.org>
parents:
11235
diff
changeset
|
1712 MagicWrap = tgetflag ("xn"); |
a265aaa699e0
(term_init): MagicWrap implies AutoWrap.
Karl Heuer <kwzh@gnu.org>
parents:
11235
diff
changeset
|
1713 /* 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
|
1714 the former flag imply the latter. */ |
a265aaa699e0
(term_init): MagicWrap implies AutoWrap.
Karl Heuer <kwzh@gnu.org>
parents:
11235
diff
changeset
|
1715 AutoWrap = MagicWrap || tgetflag ("am"); |
765 | 1716 memory_below_frame = tgetflag ("db"); |
253 | 1717 TF_hazeltine = tgetflag ("hz"); |
1718 must_write_spaces = tgetflag ("in"); | |
1719 meta_key = tgetflag ("km") || tgetflag ("MT"); | |
1720 TF_insmode_motion = tgetflag ("mi"); | |
1721 TF_standout_motion = tgetflag ("ms"); | |
1722 TF_underscore = tgetflag ("ul"); | |
1723 TF_xs = tgetflag ("xs"); | |
1724 TF_teleray = tgetflag ("xt"); | |
1725 | |
533 | 1726 term_get_fkeys (address); |
1727 | |
765 | 1728 /* 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
|
1729 { |
4c74d7f1cfa6
(term_init): Avoid type-mismatch calling get_frame_size.
Richard M. Stallman <rms@gnu.org>
parents:
15974
diff
changeset
|
1730 int height, width; |
4c74d7f1cfa6
(term_init): Avoid type-mismatch calling get_frame_size.
Richard M. Stallman <rms@gnu.org>
parents:
15974
diff
changeset
|
1731 get_frame_size (&width, &height); |
4c74d7f1cfa6
(term_init): Avoid type-mismatch calling get_frame_size.
Richard M. Stallman <rms@gnu.org>
parents:
15974
diff
changeset
|
1732 FRAME_WIDTH (selected_frame) = width; |
4c74d7f1cfa6
(term_init): Avoid type-mismatch calling get_frame_size.
Richard M. Stallman <rms@gnu.org>
parents:
15974
diff
changeset
|
1733 FRAME_HEIGHT (selected_frame) = height; |
4c74d7f1cfa6
(term_init): Avoid type-mismatch calling get_frame_size.
Richard M. Stallman <rms@gnu.org>
parents:
15974
diff
changeset
|
1734 } |
4c74d7f1cfa6
(term_init): Avoid type-mismatch calling get_frame_size.
Richard M. Stallman <rms@gnu.org>
parents:
15974
diff
changeset
|
1735 |
765 | 1736 if (FRAME_WIDTH (selected_frame) <= 0) |
16260
4468f3277e80
(term_init): Use new vertical scroll bar enumerated type.
Richard M. Stallman <rms@gnu.org>
parents:
16094
diff
changeset
|
1737 SET_FRAME_WIDTH (selected_frame, tgetnum ("co")); |
4468f3277e80
(term_init): Use new vertical scroll bar enumerated type.
Richard M. Stallman <rms@gnu.org>
parents:
16094
diff
changeset
|
1738 else |
4468f3277e80
(term_init): Use new vertical scroll bar enumerated type.
Richard M. Stallman <rms@gnu.org>
parents:
16094
diff
changeset
|
1739 /* Keep width and external_width consistent */ |
4468f3277e80
(term_init): Use new vertical scroll bar enumerated type.
Richard M. Stallman <rms@gnu.org>
parents:
16094
diff
changeset
|
1740 SET_FRAME_WIDTH (selected_frame, FRAME_WIDTH (selected_frame)); |
765 | 1741 if (FRAME_HEIGHT (selected_frame) <= 0) |
1742 FRAME_HEIGHT (selected_frame) = tgetnum ("li"); | |
16260
4468f3277e80
(term_init): Use new vertical scroll bar enumerated type.
Richard M. Stallman <rms@gnu.org>
parents:
16094
diff
changeset
|
1743 |
10332
e14daed4a820
(term_init): Fatal error if screen is too small.
Richard M. Stallman <rms@gnu.org>
parents:
10261
diff
changeset
|
1744 if (FRAME_HEIGHT (selected_frame) < 3 |
e14daed4a820
(term_init): Fatal error if screen is too small.
Richard M. Stallman <rms@gnu.org>
parents:
10261
diff
changeset
|
1745 || FRAME_WIDTH (selected_frame) < 3) |
16894
cd8d6bf6b320
(fatal): Print a newline at the end.
Richard M. Stallman <rms@gnu.org>
parents:
16885
diff
changeset
|
1746 fatal ("Screen size %dx%d is too small", |
10332
e14daed4a820
(term_init): Fatal error if screen is too small.
Richard M. Stallman <rms@gnu.org>
parents:
10261
diff
changeset
|
1747 FRAME_HEIGHT (selected_frame), FRAME_WIDTH (selected_frame)); |
e14daed4a820
(term_init): Fatal error if screen is too small.
Richard M. Stallman <rms@gnu.org>
parents:
10261
diff
changeset
|
1748 |
253 | 1749 min_padding_speed = tgetnum ("pb"); |
1750 TN_standout_width = tgetnum ("sg"); | |
1751 TabWidth = tgetnum ("tw"); | |
1752 | |
1753 #ifdef VMS | |
1754 /* These capabilities commonly use ^J. | |
1755 I don't know why, but sending them on VMS does not work; | |
1756 it causes following spaces to be lost, sometimes. | |
1757 For now, the simplest fix is to avoid using these capabilities ever. */ | |
1758 if (Down && Down[0] == '\n') | |
1759 Down = 0; | |
1760 #endif /* VMS */ | |
1761 | |
1762 if (!TS_bell) | |
1763 TS_bell = "\07"; | |
1764 | |
1765 if (!TS_fwd_scroll) | |
1766 TS_fwd_scroll = Down; | |
1767 | |
1768 PC = TS_pad_char ? *TS_pad_char : 0; | |
1769 | |
1770 if (TabWidth < 0) | |
1771 TabWidth = 8; | |
1772 | |
1773 /* Turned off since /etc/termcap seems to have :ta= for most terminals | |
1774 and newer termcap doc does not seem to say there is a default. | |
1775 if (!Wcm.cm_tab) | |
1776 Wcm.cm_tab = "\t"; | |
1777 */ | |
1778 | |
1779 if (TS_standout_mode == 0) | |
1780 { | |
1781 TN_standout_width = tgetnum ("ug"); | |
1782 TS_end_standout_mode = tgetstr ("ue", address); | |
1783 TS_standout_mode = tgetstr ("us", address); | |
1784 } | |
1785 | |
5933
560cee2048ed
(term_init): If no `se', use `me';
Richard M. Stallman <rms@gnu.org>
parents:
5648
diff
changeset
|
1786 /* 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
|
1787 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
|
1788 if (TS_end_standout_mode == 0) |
560cee2048ed
(term_init): If no `se', use `me';
Richard M. Stallman <rms@gnu.org>
parents:
5648
diff
changeset
|
1789 { |
8612
86065bec6fc9
(term_init): Added missing argument to tgetstr.
Richard M. Stallman <rms@gnu.org>
parents:
8027
diff
changeset
|
1790 char *s = tgetstr ("me", address); |
5933
560cee2048ed
(term_init): If no `se', use `me';
Richard M. Stallman <rms@gnu.org>
parents:
5648
diff
changeset
|
1791 if (s != 0) |
560cee2048ed
(term_init): If no `se', use `me';
Richard M. Stallman <rms@gnu.org>
parents:
5648
diff
changeset
|
1792 TS_end_standout_mode = s; |
560cee2048ed
(term_init): If no `se', use `me';
Richard M. Stallman <rms@gnu.org>
parents:
5648
diff
changeset
|
1793 else |
560cee2048ed
(term_init): If no `se', use `me';
Richard M. Stallman <rms@gnu.org>
parents:
5648
diff
changeset
|
1794 TS_standout_mode = 0; |
560cee2048ed
(term_init): If no `se', use `me';
Richard M. Stallman <rms@gnu.org>
parents:
5648
diff
changeset
|
1795 } |
560cee2048ed
(term_init): If no `se', use `me';
Richard M. Stallman <rms@gnu.org>
parents:
5648
diff
changeset
|
1796 |
253 | 1797 if (TF_teleray) |
1798 { | |
1799 Wcm.cm_tab = 0; | |
1800 /* Teleray: most programs want a space in front of TS_standout_mode, | |
1801 but Emacs can do without it (and give one extra column). */ | |
1802 TS_standout_mode = "\033RD"; | |
1803 TN_standout_width = 1; | |
1804 /* But that means we cannot rely on ^M to go to column zero! */ | |
1805 CR = 0; | |
1806 /* LF can't be trusted either -- can alter hpos */ | |
1807 /* if move at column 0 thru a line with TS_standout_mode */ | |
1808 Down = 0; | |
1809 } | |
1810 | |
1811 /* Special handling for certain terminal types known to need it */ | |
1812 | |
1813 if (!strcmp (terminal_type, "supdup")) | |
1814 { | |
765 | 1815 memory_below_frame = 1; |
253 | 1816 Wcm.cm_losewrap = 1; |
1817 } | |
1818 if (!strncmp (terminal_type, "c10", 3) | |
1819 || !strcmp (terminal_type, "perq")) | |
1820 { | |
1821 /* Supply a makeshift :wi string. | |
1822 This string is not valid in general since it works only | |
1823 for windows starting at the upper left corner; | |
1824 but that is all Emacs uses. | |
1825 | |
765 | 1826 This string works only if the frame is using |
253 | 1827 the top of the video memory, because addressing is memory-relative. |
1828 So first check the :ti string to see if that is true. | |
1829 | |
1830 It would be simpler if the :wi string could go in the termcap | |
1831 entry, but it can't because it is not fully valid. | |
1832 If it were in the termcap entry, it would confuse other programs. */ | |
1833 if (!TS_set_window) | |
1834 { | |
1835 p = TS_termcap_modes; | |
1836 while (*p && strcmp (p, "\033v ")) | |
1837 p++; | |
1838 if (*p) | |
1839 TS_set_window = "\033v%C %C %C %C "; | |
1840 } | |
1841 /* Termcap entry often fails to have :in: flag */ | |
1842 must_write_spaces = 1; | |
1843 /* :ti string typically fails to have \E^G! in it */ | |
1844 /* This limits scope of insert-char to one line. */ | |
1845 strcpy (area, TS_termcap_modes); | |
1846 strcat (area, "\033\007!"); | |
1847 TS_termcap_modes = area; | |
1848 area += strlen (area) + 1; | |
1849 p = AbsPosition; | |
1850 /* Change all %+ parameters to %C, to handle | |
1851 values above 96 correctly for the C100. */ | |
1852 while (*p) | |
1853 { | |
1854 if (p[0] == '%' && p[1] == '+') | |
1855 p[1] = 'C'; | |
1856 p++; | |
1857 } | |
1858 } | |
1859 | |
765 | 1860 FrameRows = FRAME_HEIGHT (selected_frame); |
1861 FrameCols = FRAME_WIDTH (selected_frame); | |
1862 specified_window = FRAME_HEIGHT (selected_frame); | |
253 | 1863 |
1864 if (Wcm_init () == -1) /* can't do cursor motion */ | |
1865 #ifdef VMS | |
1866 fatal ("Terminal type \"%s\" is not powerful enough to run Emacs.\n\ | |
1867 It lacks the ability to position the cursor.\n\ | |
1868 If that is not the actual type of terminal you have, use either the\n\ | |
1869 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
|
1870 or `define EMACS_TERM \"terminal type\"' for non-DEC terminals.", |
253 | 1871 terminal_type); |
12412
7f2c068121d8
(term_init): Alternative error messages for TERMCAP/TERMINFO.
Richard M. Stallman <rms@gnu.org>
parents:
12071
diff
changeset
|
1872 #else /* not VMS */ |
7f2c068121d8
(term_init): Alternative error messages for TERMCAP/TERMINFO.
Richard M. Stallman <rms@gnu.org>
parents:
12071
diff
changeset
|
1873 # ifdef TERMINFO |
7f2c068121d8
(term_init): Alternative error messages for TERMCAP/TERMINFO.
Richard M. Stallman <rms@gnu.org>
parents:
12071
diff
changeset
|
1874 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
|
1875 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
|
1876 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
|
1877 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
|
1878 `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
|
1879 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
|
1880 terminal_type); |
7f2c068121d8
(term_init): Alternative error messages for TERMCAP/TERMINFO.
Richard M. Stallman <rms@gnu.org>
parents:
12071
diff
changeset
|
1881 # else /* TERMCAP */ |
253 | 1882 fatal ("Terminal type \"%s\" is not powerful enough to run Emacs.\n\ |
1883 It lacks the ability to position the cursor.\n\ | |
1884 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
|
1885 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
|
1886 `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
|
1887 to do `unset TERMCAP' (C-shell: `unsetenv TERMCAP') as well.", |
253 | 1888 terminal_type); |
12412
7f2c068121d8
(term_init): Alternative error messages for TERMCAP/TERMINFO.
Richard M. Stallman <rms@gnu.org>
parents:
12071
diff
changeset
|
1889 # endif /* TERMINFO */ |
7f2c068121d8
(term_init): Alternative error messages for TERMCAP/TERMINFO.
Richard M. Stallman <rms@gnu.org>
parents:
12071
diff
changeset
|
1890 #endif /*VMS */ |
765 | 1891 if (FRAME_HEIGHT (selected_frame) <= 0 |
1892 || FRAME_WIDTH (selected_frame) <= 0) | |
16894
cd8d6bf6b320
(fatal): Print a newline at the end.
Richard M. Stallman <rms@gnu.org>
parents:
16885
diff
changeset
|
1893 fatal ("The frame size has not been specified"); |
253 | 1894 |
1895 delete_in_insert_mode | |
1896 = TS_delete_mode && TS_insert_mode | |
1897 && !strcmp (TS_delete_mode, TS_insert_mode); | |
1898 | |
1899 se_is_so = (TS_standout_mode | |
1900 && TS_end_standout_mode | |
1901 && !strcmp (TS_standout_mode, TS_end_standout_mode)); | |
1902 | |
1903 /* Remove width of standout marker from usable width of line */ | |
1904 if (TN_standout_width > 0) | |
16260
4468f3277e80
(term_init): Use new vertical scroll bar enumerated type.
Richard M. Stallman <rms@gnu.org>
parents:
16094
diff
changeset
|
1905 SET_FRAME_WIDTH (selected_frame, |
4468f3277e80
(term_init): Use new vertical scroll bar enumerated type.
Richard M. Stallman <rms@gnu.org>
parents:
16094
diff
changeset
|
1906 FRAME_WIDTH (selected_frame) - TN_standout_width); |
253 | 1907 |
1908 UseTabs = tabs_safe_p () && TabWidth == 8; | |
1909 | |
1910 scroll_region_ok | |
1911 = (Wcm.cm_abs | |
1912 && (TS_set_window || TS_set_scroll_region || TS_set_scroll_region_1)); | |
1913 | |
1914 line_ins_del_ok = (((TS_ins_line || TS_ins_multi_lines) | |
1915 && (TS_del_line || TS_del_multi_lines)) | |
1916 || (scroll_region_ok && TS_fwd_scroll && TS_rev_scroll)); | |
1917 | |
1918 char_ins_del_ok = ((TS_ins_char || TS_insert_mode | |
1919 || TS_pad_inserted_char || TS_ins_multi_chars) | |
1920 && (TS_del_char || TS_del_multi_chars)); | |
1921 | |
1922 fast_clear_end_of_line = TS_clr_line != 0; | |
1923 | |
1924 init_baud_rate (); | |
1925 if (read_socket_hook) /* Baudrate is somewhat */ | |
1926 /* meaningless in this case */ | |
1927 baud_rate = 9600; | |
1717
aa7d6d57504b
* frame.h (struct frame): New fields `can_have_scrollbars' and
Jim Blandy <jimb@redhat.com>
parents:
1015
diff
changeset
|
1928 |
1994
73ce9dd21093
Use the term `scroll bar', instead of `scrollbar'.
Jim Blandy <jimb@redhat.com>
parents:
1821
diff
changeset
|
1929 FRAME_CAN_HAVE_SCROLL_BARS (selected_frame) = 0; |
16260
4468f3277e80
(term_init): Use new vertical scroll bar enumerated type.
Richard M. Stallman <rms@gnu.org>
parents:
16094
diff
changeset
|
1930 FRAME_VERTICAL_SCROLL_BAR_TYPE (selected_frame) = vertical_scroll_bar_none; |
253 | 1931 } |
1932 | |
1933 /* VARARGS 1 */ | |
21514 | 1934 void |
253 | 1935 fatal (str, arg1, arg2) |
621 | 1936 char *str, *arg1, *arg2; |
253 | 1937 { |
1938 fprintf (stderr, "emacs: "); | |
1939 fprintf (stderr, str, arg1, arg2); | |
16894
cd8d6bf6b320
(fatal): Print a newline at the end.
Richard M. Stallman <rms@gnu.org>
parents:
16885
diff
changeset
|
1940 fprintf (stderr, "\n"); |
253 | 1941 fflush (stderr); |
1942 exit (1); | |
1943 } | |
6752
f9236145bad7
(system_uses_terminfo): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
6652
diff
changeset
|
1944 |
21514 | 1945 void |
6752
f9236145bad7
(system_uses_terminfo): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
6652
diff
changeset
|
1946 syms_of_term () |
f9236145bad7
(system_uses_terminfo): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
6652
diff
changeset
|
1947 { |
f9236145bad7
(system_uses_terminfo): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
6652
diff
changeset
|
1948 DEFVAR_BOOL ("system-uses-terminfo", &system_uses_terminfo, |
f9236145bad7
(system_uses_terminfo): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
6652
diff
changeset
|
1949 "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
|
1950 This variable can be used by terminal emulator packages."); |
f9236145bad7
(system_uses_terminfo): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
6652
diff
changeset
|
1951 #ifdef TERMINFO |
f9236145bad7
(system_uses_terminfo): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
6652
diff
changeset
|
1952 system_uses_terminfo = 1; |
f9236145bad7
(system_uses_terminfo): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
6652
diff
changeset
|
1953 #else |
f9236145bad7
(system_uses_terminfo): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
6652
diff
changeset
|
1954 system_uses_terminfo = 0; |
f9236145bad7
(system_uses_terminfo): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
6652
diff
changeset
|
1955 #endif |
15974
61249a8fe735
(Vring_bell_function): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
15094
diff
changeset
|
1956 |
61249a8fe735
(Vring_bell_function): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
15094
diff
changeset
|
1957 DEFVAR_LISP ("ring-bell-function", &Vring_bell_function, |
61249a8fe735
(Vring_bell_function): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
15094
diff
changeset
|
1958 "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
|
1959 The function should accept no arguments."); |
61249a8fe735
(Vring_bell_function): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
15094
diff
changeset
|
1960 Vring_bell_function = Qnil; |
6752
f9236145bad7
(system_uses_terminfo): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
6652
diff
changeset
|
1961 } |