Mercurial > emacs
annotate src/term.c @ 3426:7ecee84713e6
(do-install): Partially rewrite using `if'.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Wed, 02 Jun 1993 05:16:03 +0000 |
parents | ef29e2a4fc46 |
children | 5c2b4797aab2 |
rev | line source |
---|---|
253 | 1 /* terminal control module for terminals described by TERMCAP |
2961 | 2 Copyright (C) 1985, 1986, 1987, 1993 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 | |
18 the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ | |
19 | |
20 | |
21 #include <stdio.h> | |
22 #include <ctype.h> | |
23 #include "config.h" | |
24 #include "termchar.h" | |
25 #include "termopts.h" | |
26 #include "cm.h" | |
27 #undef NULL | |
28 #include "lisp.h" | |
765 | 29 #include "frame.h" |
253 | 30 #include "disptab.h" |
31 #include "termhooks.h" | |
533 | 32 #include "keyboard.h" |
253 | 33 |
34 #define max(a, b) ((a) > (b) ? (a) : (b)) | |
35 #define min(a, b) ((a) < (b) ? (a) : (b)) | |
36 | |
765 | 37 #define OUTPUT(a) tputs (a, FRAME_HEIGHT (selected_frame) - curY, cmputc) |
253 | 38 #define OUTPUT1(a) tputs (a, 1, cmputc) |
39 #define OUTPUTL(a, lines) tputs (a, lines, cmputc) | |
765 | 40 #define OUTPUT_IF(a) { if (a) tputs (a, FRAME_HEIGHT (selected_frame) - curY, cmputc); } |
253 | 41 #define OUTPUT1_IF(a) { if (a) tputs (a, 1, cmputc); } |
42 | |
43 /* Terminal charateristics that higher levels want to look at. | |
44 These are all extern'd in termchar.h */ | |
45 | |
46 int must_write_spaces; /* Nonzero means spaces in the text | |
47 must actually be output; can't just skip | |
48 over some columns to leave them blank. */ | |
49 int min_padding_speed; /* Speed below which no padding necessary */ | |
50 | |
51 int line_ins_del_ok; /* Terminal can insert and delete lines */ | |
52 int char_ins_del_ok; /* Terminal can insert and delete chars */ | |
53 int scroll_region_ok; /* Terminal supports setting the | |
54 scroll window */ | |
765 | 55 int memory_below_frame; /* Terminal remembers lines |
253 | 56 scrolled off bottom */ |
57 int fast_clear_end_of_line; /* Terminal has a `ce' string */ | |
58 | |
59 int dont_calculate_costs; /* Nonzero means don't bother computing */ | |
60 /* various cost tables; we won't use them. */ | |
61 | |
765 | 62 /* Nonzero means no need to redraw the entire frame on resuming |
253 | 63 a suspended Emacs. This is useful on terminals with multiple pages, |
64 where one page is used for Emacs and another for all else. */ | |
65 int no_redraw_on_reenter; | |
66 | |
67 /* Hook functions that you can set to snap out the functions in this file. | |
68 These are all extern'd in termhooks.h */ | |
69 | |
70 int (*cursor_to_hook) (); | |
71 int (*raw_cursor_to_hook) (); | |
72 | |
73 int (*clear_to_end_hook) (); | |
765 | 74 int (*clear_frame_hook) (); |
253 | 75 int (*clear_end_of_line_hook) (); |
76 | |
77 int (*ins_del_lines_hook) (); | |
78 | |
79 int (*change_line_highlight_hook) (); | |
80 int (*reassert_line_highlight_hook) (); | |
81 | |
82 int (*insert_glyphs_hook) (); | |
83 int (*write_glyphs_hook) (); | |
84 int (*delete_glyphs_hook) (); | |
85 | |
86 int (*ring_bell_hook) (); | |
87 | |
88 int (*reset_terminal_modes_hook) (); | |
89 int (*set_terminal_modes_hook) (); | |
90 int (*update_begin_hook) (); | |
91 int (*update_end_hook) (); | |
92 int (*set_terminal_window_hook) (); | |
93 | |
94 int (*read_socket_hook) (); | |
95 | |
1717
aa7d6d57504b
* frame.h (struct frame): New fields `can_have_scrollbars' and
Jim Blandy <jimb@redhat.com>
parents:
1015
diff
changeset
|
96 /* 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
|
97 |
3f161f6701b1
* term.c (set_vertical_scrollbar_hook, condemn_scrollbars_hook,
Jim Blandy <jimb@redhat.com>
parents:
1717
diff
changeset
|
98 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
|
99 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
|
100 garbage. |
3f161f6701b1
* term.c (set_vertical_scrollbar_hook, condemn_scrollbars_hook,
Jim Blandy <jimb@redhat.com>
parents:
1717
diff
changeset
|
101 |
1994
73ce9dd21093
Use the term `scroll bar', instead of `scrollbar'.
Jim Blandy <jimb@redhat.com>
parents:
1821
diff
changeset
|
102 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
|
103 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
|
104 *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
|
105 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
|
106 |
3f161f6701b1
* term.c (set_vertical_scrollbar_hook, condemn_scrollbars_hook,
Jim Blandy <jimb@redhat.com>
parents:
1717
diff
changeset
|
107 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
|
108 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
|
109 |
3f161f6701b1
* term.c (set_vertical_scrollbar_hook, condemn_scrollbars_hook,
Jim Blandy <jimb@redhat.com>
parents:
1717
diff
changeset
|
110 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
|
111 |
3f161f6701b1
* term.c (set_vertical_scrollbar_hook, condemn_scrollbars_hook,
Jim Blandy <jimb@redhat.com>
parents:
1717
diff
changeset
|
112 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
|
113 event arrives. */ |
765 | 114 void (*mouse_position_hook) ( /* FRAME_PTR *f, |
1781
3f161f6701b1
* term.c (set_vertical_scrollbar_hook, condemn_scrollbars_hook,
Jim Blandy <jimb@redhat.com>
parents:
1717
diff
changeset
|
115 Lisp_Object *bar_window, |
1994
73ce9dd21093
Use the term `scroll bar', instead of `scrollbar'.
Jim Blandy <jimb@redhat.com>
parents:
1821
diff
changeset
|
116 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
|
117 Lisp_Object *x, |
aa7d6d57504b
* frame.h (struct frame): New fields `can_have_scrollbars' and
Jim Blandy <jimb@redhat.com>
parents:
1015
diff
changeset
|
118 Lisp_Object *y, |
aa7d6d57504b
* frame.h (struct frame): New fields `can_have_scrollbars' and
Jim Blandy <jimb@redhat.com>
parents:
1015
diff
changeset
|
119 unsigned long *time */ ); |
253 | 120 |
765 | 121 /* When reading from a minibuffer in a different frame, Emacs wants |
122 to shift the highlight from the selected frame to the minibuffer's | |
123 frame; under X, this means it lies about where the focus is. | |
339 | 124 This hook tells the window system code to re-decide where to put |
125 the highlight. */ | |
765 | 126 void (*frame_rehighlight_hook) ( /* FRAME_PTR f */ ); |
339 | 127 |
1821
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1781
diff
changeset
|
128 /* 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
|
129 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
|
130 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
|
131 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
|
132 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
|
133 anything. |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1781
diff
changeset
|
134 |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1781
diff
changeset
|
135 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
|
136 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
|
137 windows. */ |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1781
diff
changeset
|
138 void (*frame_raise_lower_hook) ( /* FRAME_PTR f, int raise */ ); |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1781
diff
changeset
|
139 |
1994
73ce9dd21093
Use the term `scroll bar', instead of `scrollbar'.
Jim Blandy <jimb@redhat.com>
parents:
1821
diff
changeset
|
140 /* 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
|
141 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
|
142 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
|
143 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
|
144 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
|
145 void (*set_vertical_scroll_bar_hook) |
1781
3f161f6701b1
* term.c (set_vertical_scrollbar_hook, condemn_scrollbars_hook,
Jim Blandy <jimb@redhat.com>
parents:
1717
diff
changeset
|
146 ( /* struct window *window, |
1717
aa7d6d57504b
* frame.h (struct frame): New fields `can_have_scrollbars' and
Jim Blandy <jimb@redhat.com>
parents:
1015
diff
changeset
|
147 int portion, int whole, int position */ ); |
aa7d6d57504b
* frame.h (struct frame): New fields `can_have_scrollbars' and
Jim Blandy <jimb@redhat.com>
parents:
1015
diff
changeset
|
148 |
1781
3f161f6701b1
* term.c (set_vertical_scrollbar_hook, condemn_scrollbars_hook,
Jim Blandy <jimb@redhat.com>
parents:
1717
diff
changeset
|
149 |
1717
aa7d6d57504b
* frame.h (struct frame): New fields `can_have_scrollbars' and
Jim Blandy <jimb@redhat.com>
parents:
1015
diff
changeset
|
150 /* 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
|
151 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
|
152 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
|
153 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
|
154 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
|
155 scroll bars are to be removed, and then save scroll bars from the |
1717
aa7d6d57504b
* frame.h (struct frame): New fields `can_have_scrollbars' and
Jim Blandy <jimb@redhat.com>
parents:
1015
diff
changeset
|
156 firey pit when we actually redisplay their window. */ |
aa7d6d57504b
* frame.h (struct frame): New fields `can_have_scrollbars' and
Jim Blandy <jimb@redhat.com>
parents:
1015
diff
changeset
|
157 |
1994
73ce9dd21093
Use the term `scroll bar', instead of `scrollbar'.
Jim Blandy <jimb@redhat.com>
parents:
1821
diff
changeset
|
158 /* 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
|
159 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
|
160 `*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
|
161 |
3f161f6701b1
* term.c (set_vertical_scrollbar_hook, condemn_scrollbars_hook,
Jim Blandy <jimb@redhat.com>
parents:
1717
diff
changeset
|
162 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
|
163 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
|
164 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
|
165 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
|
166 |
1781
3f161f6701b1
* term.c (set_vertical_scrollbar_hook, condemn_scrollbars_hook,
Jim Blandy <jimb@redhat.com>
parents:
1717
diff
changeset
|
167 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
|
168 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
|
169 currently displaying them. */ |
1994
73ce9dd21093
Use the term `scroll bar', instead of `scrollbar'.
Jim Blandy <jimb@redhat.com>
parents:
1821
diff
changeset
|
170 void (*condemn_scroll_bars_hook)( /* FRAME_PTR *frame */ ); |
1781
3f161f6701b1
* term.c (set_vertical_scrollbar_hook, condemn_scrollbars_hook,
Jim Blandy <jimb@redhat.com>
parents:
1717
diff
changeset
|
171 |
1994
73ce9dd21093
Use the term `scroll bar', instead of `scrollbar'.
Jim Blandy <jimb@redhat.com>
parents:
1821
diff
changeset
|
172 /* 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
|
173 Note that it's okay to redeem a scroll bar that is not condemned. */ |
73ce9dd21093
Use the term `scroll bar', instead of `scrollbar'.
Jim Blandy <jimb@redhat.com>
parents:
1821
diff
changeset
|
174 void (*redeem_scroll_bar_hook)( /* struct window *window */ ); |
1717
aa7d6d57504b
* frame.h (struct frame): New fields `can_have_scrollbars' and
Jim Blandy <jimb@redhat.com>
parents:
1015
diff
changeset
|
175 |
1994
73ce9dd21093
Use the term `scroll bar', instead of `scrollbar'.
Jim Blandy <jimb@redhat.com>
parents:
1821
diff
changeset
|
176 /* 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
|
177 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
|
178 |
3f161f6701b1
* term.c (set_vertical_scrollbar_hook, condemn_scrollbars_hook,
Jim Blandy <jimb@redhat.com>
parents:
1717
diff
changeset
|
179 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
|
180 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
|
181 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
|
182 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
|
183 |
3f161f6701b1
* term.c (set_vertical_scrollbar_hook, condemn_scrollbars_hook,
Jim Blandy <jimb@redhat.com>
parents:
1717
diff
changeset
|
184 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
|
185 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
|
186 currently displaying them. */ |
1994
73ce9dd21093
Use the term `scroll bar', instead of `scrollbar'.
Jim Blandy <jimb@redhat.com>
parents:
1821
diff
changeset
|
187 void (*judge_scroll_bars_hook)( /* FRAME_PTR *FRAME */ ); |
1717
aa7d6d57504b
* frame.h (struct frame): New fields `can_have_scrollbars' and
Jim Blandy <jimb@redhat.com>
parents:
1015
diff
changeset
|
188 |
aa7d6d57504b
* frame.h (struct frame): New fields `can_have_scrollbars' and
Jim Blandy <jimb@redhat.com>
parents:
1015
diff
changeset
|
189 |
253 | 190 /* Strings, numbers and flags taken from the termcap entry. */ |
191 | |
192 char *TS_ins_line; /* termcap "al" */ | |
193 char *TS_ins_multi_lines; /* "AL" (one parameter, # lines to insert) */ | |
194 char *TS_bell; /* "bl" */ | |
195 char *TS_clr_to_bottom; /* "cd" */ | |
196 char *TS_clr_line; /* "ce", clear to end of line */ | |
765 | 197 char *TS_clr_frame; /* "cl" */ |
253 | 198 char *TS_set_scroll_region; /* "cs" (2 params, first line and last line) */ |
199 char *TS_set_scroll_region_1; /* "cS" (4 params: total lines, | |
200 lines above scroll region, lines below it, | |
201 total lines again) */ | |
202 char *TS_del_char; /* "dc" */ | |
203 char *TS_del_multi_chars; /* "DC" (one parameter, # chars to delete) */ | |
204 char *TS_del_line; /* "dl" */ | |
205 char *TS_del_multi_lines; /* "DL" (one parameter, # lines to delete) */ | |
206 char *TS_delete_mode; /* "dm", enter character-delete mode */ | |
207 char *TS_end_delete_mode; /* "ed", leave character-delete mode */ | |
208 char *TS_end_insert_mode; /* "ei", leave character-insert mode */ | |
209 char *TS_ins_char; /* "ic" */ | |
210 char *TS_ins_multi_chars; /* "IC" (one parameter, # chars to insert) */ | |
211 char *TS_insert_mode; /* "im", enter character-insert mode */ | |
212 char *TS_pad_inserted_char; /* "ip". Just padding, no commands. */ | |
213 char *TS_end_keypad_mode; /* "ke" */ | |
214 char *TS_keypad_mode; /* "ks" */ | |
215 char *TS_pad_char; /* "pc", char to use as padding */ | |
216 char *TS_repeat; /* "rp" (2 params, # times to repeat | |
217 and character to be repeated) */ | |
218 char *TS_end_standout_mode; /* "se" */ | |
219 char *TS_fwd_scroll; /* "sf" */ | |
220 char *TS_standout_mode; /* "so" */ | |
221 char *TS_rev_scroll; /* "sr" */ | |
222 char *TS_end_termcap_modes; /* "te" */ | |
223 char *TS_termcap_modes; /* "ti" */ | |
224 char *TS_visible_bell; /* "vb" */ | |
225 char *TS_end_visual_mode; /* "ve" */ | |
226 char *TS_visual_mode; /* "vi" */ | |
227 char *TS_set_window; /* "wi" (4 params, start and end of window, | |
228 each as vpos and hpos) */ | |
229 | |
230 int TF_hazeltine; /* termcap hz flag. */ | |
231 int TF_insmode_motion; /* termcap mi flag: can move while in insert mode. */ | |
232 int TF_standout_motion; /* termcap mi flag: can move while in standout mode. */ | |
233 int TF_underscore; /* termcap ul flag: _ underlines if overstruck on | |
234 nonblank position. Must clear before writing _. */ | |
235 int TF_teleray; /* termcap xt flag: many weird consequences. | |
236 For t1061. */ | |
237 | |
238 int TF_xs; /* Nonzero for "xs". If set together with | |
239 TN_standout_width == 0, it means don't bother | |
240 to write any end-standout cookies. */ | |
241 | |
242 int TN_standout_width; /* termcap sg number: width occupied by standout | |
243 markers */ | |
244 | |
245 static int RPov; /* # chars to start a TS_repeat */ | |
246 | |
247 static int delete_in_insert_mode; /* delete mode == insert mode */ | |
248 | |
249 static int se_is_so; /* 1 if same string both enters and leaves | |
250 standout mode */ | |
251 | |
252 /* internal state */ | |
253 | |
254 /* Number of chars of space used for standout marker at beginning of line, | |
255 or'd with 0100. Zero if no standout marker at all. | |
256 | |
257 Used IFF TN_standout_width >= 0. */ | |
258 | |
259 static char *chars_wasted; | |
260 static char *copybuf; | |
261 | |
262 /* nonzero means supposed to write text in standout mode. */ | |
263 int standout_requested; | |
264 | |
265 int insert_mode; /* Nonzero when in insert mode. */ | |
266 int standout_mode; /* Nonzero when in standout mode. */ | |
267 | |
268 /* Size of window specified by higher levels. | |
765 | 269 This is the number of lines, from the top of frame downwards, |
253 | 270 which can participate in insert-line/delete-line operations. |
271 | |
765 | 272 Effectively it excludes the bottom frame_height - specified_window_size |
253 | 273 lines from those operations. */ |
274 | |
275 int specified_window; | |
276 | |
765 | 277 /* Frame currently being redisplayed; 0 if not currently redisplaying. |
253 | 278 (Direct output does not count). */ |
279 | |
765 | 280 FRAME_PTR updating_frame; |
253 | 281 |
282 char *tparam (); | |
283 | |
284 ring_bell () | |
285 { | |
969
16649ee21625
* term.c (FRAME_IS_TERMCAP, FRAME_IS_X, FRAME_HAS_MINIBUF):
Jim Blandy <jimb@redhat.com>
parents:
797
diff
changeset
|
286 if (! FRAME_TERMCAP_P (selected_frame)) |
253 | 287 { |
288 (*ring_bell_hook) (); | |
289 return; | |
290 } | |
291 OUTPUT (TS_visible_bell && visible_bell ? TS_visible_bell : TS_bell); | |
292 } | |
293 | |
294 set_terminal_modes () | |
295 { | |
969
16649ee21625
* term.c (FRAME_IS_TERMCAP, FRAME_IS_X, FRAME_HAS_MINIBUF):
Jim Blandy <jimb@redhat.com>
parents:
797
diff
changeset
|
296 if (! FRAME_TERMCAP_P (selected_frame)) |
253 | 297 { |
298 (*set_terminal_modes_hook) (); | |
299 return; | |
300 } | |
301 OUTPUT_IF (TS_termcap_modes); | |
302 OUTPUT_IF (TS_visual_mode); | |
303 OUTPUT_IF (TS_keypad_mode); | |
304 losecursor (); | |
305 } | |
306 | |
307 reset_terminal_modes () | |
308 { | |
969
16649ee21625
* term.c (FRAME_IS_TERMCAP, FRAME_IS_X, FRAME_HAS_MINIBUF):
Jim Blandy <jimb@redhat.com>
parents:
797
diff
changeset
|
309 if (! FRAME_TERMCAP_P (selected_frame)) |
253 | 310 { |
311 (*reset_terminal_modes_hook) (); | |
312 return; | |
313 } | |
314 if (TN_standout_width < 0) | |
315 turn_off_highlight (); | |
316 turn_off_insert (); | |
317 OUTPUT_IF (TS_end_keypad_mode); | |
318 OUTPUT_IF (TS_end_visual_mode); | |
319 OUTPUT_IF (TS_end_termcap_modes); | |
320 /* Output raw CR so kernel can track the cursor hpos. */ | |
321 /* But on magic-cookie terminals this can erase an end-standout marker and | |
765 | 322 cause the rest of the frame to be in standout, so move down first. */ |
253 | 323 if (TN_standout_width >= 0) |
324 cmputc ('\n'); | |
325 cmputc ('\r'); | |
326 } | |
327 | |
765 | 328 update_begin (f) |
329 FRAME_PTR f; | |
253 | 330 { |
765 | 331 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
|
332 if (! FRAME_TERMCAP_P (updating_frame)) |
765 | 333 (*update_begin_hook) (f); |
253 | 334 } |
335 | |
765 | 336 update_end (f) |
337 FRAME_PTR f; | |
253 | 338 { |
969
16649ee21625
* term.c (FRAME_IS_TERMCAP, FRAME_IS_X, FRAME_HAS_MINIBUF):
Jim Blandy <jimb@redhat.com>
parents:
797
diff
changeset
|
339 if (! FRAME_TERMCAP_P (updating_frame)) |
253 | 340 { |
765 | 341 (*update_end_hook) (f); |
342 updating_frame = 0; | |
253 | 343 return; |
344 } | |
345 turn_off_insert (); | |
346 background_highlight (); | |
347 standout_requested = 0; | |
765 | 348 updating_frame = 0; |
253 | 349 } |
350 | |
351 set_terminal_window (size) | |
352 int size; | |
353 { | |
969
16649ee21625
* term.c (FRAME_IS_TERMCAP, FRAME_IS_X, FRAME_HAS_MINIBUF):
Jim Blandy <jimb@redhat.com>
parents:
797
diff
changeset
|
354 if (! FRAME_TERMCAP_P (updating_frame)) |
253 | 355 { |
356 (*set_terminal_window_hook) (size); | |
357 return; | |
358 } | |
765 | 359 specified_window = size ? size : FRAME_HEIGHT (selected_frame); |
253 | 360 if (!scroll_region_ok) |
361 return; | |
362 set_scroll_region (0, specified_window); | |
363 } | |
364 | |
365 set_scroll_region (start, stop) | |
366 int start, stop; | |
367 { | |
368 char *buf; | |
369 if (TS_set_scroll_region) | |
370 { | |
371 buf = tparam (TS_set_scroll_region, 0, 0, start, stop - 1); | |
372 } | |
373 else if (TS_set_scroll_region_1) | |
374 { | |
375 buf = tparam (TS_set_scroll_region_1, 0, 0, | |
765 | 376 FRAME_HEIGHT (selected_frame), start, |
377 FRAME_HEIGHT (selected_frame) - stop, | |
378 FRAME_HEIGHT (selected_frame)); | |
253 | 379 } |
380 else | |
381 { | |
765 | 382 buf = tparam (TS_set_window, 0, 0, start, 0, stop, FRAME_WIDTH (selected_frame)); |
253 | 383 } |
384 OUTPUT (buf); | |
2439
b6c62e4abf59
Put interrupt input blocking in a separate file from xterm.h.
Jim Blandy <jimb@redhat.com>
parents:
2243
diff
changeset
|
385 xfree (buf); |
253 | 386 losecursor (); |
387 } | |
388 | |
389 turn_on_insert () | |
390 { | |
391 if (!insert_mode) | |
392 OUTPUT (TS_insert_mode); | |
393 insert_mode = 1; | |
394 } | |
395 | |
396 turn_off_insert () | |
397 { | |
398 if (insert_mode) | |
399 OUTPUT (TS_end_insert_mode); | |
400 insert_mode = 0; | |
401 } | |
402 | |
403 /* Handle highlighting when TN_standout_width (termcap sg) is not specified. | |
404 In these terminals, output is affected by the value of standout | |
405 mode when the output is written. | |
406 | |
407 These functions are called on all terminals, but do nothing | |
408 on terminals whose standout mode does not work that way. */ | |
409 | |
410 turn_off_highlight () | |
411 { | |
412 if (TN_standout_width < 0) | |
413 { | |
414 if (standout_mode) | |
415 OUTPUT_IF (TS_end_standout_mode); | |
416 standout_mode = 0; | |
417 } | |
418 } | |
419 | |
420 turn_on_highlight () | |
421 { | |
422 if (TN_standout_width < 0) | |
423 { | |
424 if (!standout_mode) | |
425 OUTPUT_IF (TS_standout_mode); | |
426 standout_mode = 1; | |
427 } | |
428 } | |
429 | |
430 /* Set standout mode to the state it should be in for | |
431 empty space inside windows. What this is, | |
432 depends on the user option inverse-video. */ | |
433 | |
434 background_highlight () | |
435 { | |
436 if (TN_standout_width >= 0) | |
437 return; | |
438 if (inverse_video) | |
439 turn_on_highlight (); | |
440 else | |
441 turn_off_highlight (); | |
442 } | |
443 | |
444 /* Set standout mode to the mode specified for the text to be output. */ | |
445 | |
446 static | |
447 highlight_if_desired () | |
448 { | |
449 if (TN_standout_width >= 0) | |
450 return; | |
451 if (!inverse_video == !standout_requested) | |
452 turn_off_highlight (); | |
453 else | |
454 turn_on_highlight (); | |
455 } | |
456 | |
457 /* Handle standout mode for terminals in which TN_standout_width >= 0. | |
458 On these terminals, standout is controlled by markers that | |
765 | 459 live inside the terminal's memory. TN_standout_width is the width |
253 | 460 that the marker occupies in memory. Standout runs from the marker |
461 to the end of the line on some terminals, or to the next | |
462 turn-off-standout marker (TS_end_standout_mode) string | |
463 on other terminals. */ | |
464 | |
465 /* Write a standout marker or end-standout marker at the front of the line | |
466 at vertical position vpos. */ | |
467 | |
468 write_standout_marker (flag, vpos) | |
469 int flag, vpos; | |
470 { | |
471 if (flag || (TS_end_standout_mode && !TF_teleray && !se_is_so | |
472 && !(TF_xs && TN_standout_width == 0))) | |
473 { | |
474 cmgoto (vpos, 0); | |
475 cmplus (TN_standout_width); | |
476 OUTPUT (flag ? TS_standout_mode : TS_end_standout_mode); | |
477 chars_wasted[curY] = TN_standout_width | 0100; | |
478 } | |
479 } | |
480 | |
481 /* External interface to control of standout mode. | |
482 Call this when about to modify line at position VPOS | |
483 and not change whether it is highlighted. */ | |
484 | |
485 reassert_line_highlight (highlight, vpos) | |
486 int highlight; | |
487 int vpos; | |
488 { | |
969
16649ee21625
* term.c (FRAME_IS_TERMCAP, FRAME_IS_X, FRAME_HAS_MINIBUF):
Jim Blandy <jimb@redhat.com>
parents:
797
diff
changeset
|
489 if (! FRAME_TERMCAP_P ((updating_frame ? updating_frame : selected_frame))) |
253 | 490 { |
491 (*reassert_line_highlight_hook) (highlight, vpos); | |
492 return; | |
493 } | |
494 if (TN_standout_width < 0) | |
495 /* Handle terminals where standout takes affect at output time */ | |
496 standout_requested = highlight; | |
497 else if (chars_wasted[vpos] == 0) | |
498 /* For terminals with standout markers, write one on this line | |
499 if there isn't one already. */ | |
500 write_standout_marker (highlight, vpos); | |
501 } | |
502 | |
503 /* Call this when about to modify line at position VPOS | |
504 and change whether it is highlighted. */ | |
505 | |
506 change_line_highlight (new_highlight, vpos, first_unused_hpos) | |
507 int new_highlight, vpos, first_unused_hpos; | |
508 { | |
509 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
|
510 if (! FRAME_TERMCAP_P (updating_frame)) |
253 | 511 { |
512 (*change_line_highlight_hook) (new_highlight, vpos, first_unused_hpos); | |
513 return; | |
514 } | |
515 | |
516 cursor_to (vpos, 0); | |
517 | |
518 if (TN_standout_width < 0) | |
519 background_highlight (); | |
520 /* If line starts with a marker, delete the marker */ | |
521 else if (TS_clr_line && chars_wasted[curY]) | |
522 { | |
523 turn_off_insert (); | |
524 /* On Teleray, make sure to erase the SO marker. */ | |
525 if (TF_teleray) | |
526 { | |
765 | 527 cmgoto (curY - 1, FRAME_WIDTH (selected_frame) - 4); |
253 | 528 OUTPUT ("\033S"); |
529 curY++; /* ESC S moves to next line where the TS_standout_mode was */ | |
530 curX = 0; | |
531 } | |
532 else | |
533 cmgoto (curY, 0); /* reposition to kill standout marker */ | |
534 } | |
535 clear_end_of_line_raw (first_unused_hpos); | |
536 reassert_line_highlight (new_highlight, curY); | |
537 } | |
538 | |
539 | |
540 /* Move to absolute position, specified origin 0 */ | |
541 | |
542 cursor_to (row, col) | |
621 | 543 int row, col; |
253 | 544 { |
969
16649ee21625
* term.c (FRAME_IS_TERMCAP, FRAME_IS_X, FRAME_HAS_MINIBUF):
Jim Blandy <jimb@redhat.com>
parents:
797
diff
changeset
|
545 if (! FRAME_TERMCAP_P ((updating_frame |
765 | 546 ? updating_frame |
547 : selected_frame)) | |
253 | 548 && cursor_to_hook) |
549 { | |
550 (*cursor_to_hook) (row, col); | |
551 return; | |
552 } | |
553 | |
554 col += chars_wasted[row] & 077; | |
555 if (curY == row && curX == col) | |
556 return; | |
557 if (!TF_standout_motion) | |
558 background_highlight (); | |
559 if (!TF_insmode_motion) | |
560 turn_off_insert (); | |
561 cmgoto (row, col); | |
562 } | |
563 | |
564 /* Similar but don't take any account of the wasted characters. */ | |
565 | |
566 raw_cursor_to (row, col) | |
621 | 567 int row, col; |
253 | 568 { |
969
16649ee21625
* term.c (FRAME_IS_TERMCAP, FRAME_IS_X, FRAME_HAS_MINIBUF):
Jim Blandy <jimb@redhat.com>
parents:
797
diff
changeset
|
569 if (! FRAME_TERMCAP_P ((updating_frame ? updating_frame : selected_frame))) |
253 | 570 { |
571 (*raw_cursor_to_hook) (row, col); | |
572 return; | |
573 } | |
574 if (curY == row && curX == col) | |
575 return; | |
576 if (!TF_standout_motion) | |
577 background_highlight (); | |
578 if (!TF_insmode_motion) | |
579 turn_off_insert (); | |
580 cmgoto (row, col); | |
581 } | |
582 | |
583 /* Erase operations */ | |
584 | |
765 | 585 /* clear from cursor to end of frame */ |
253 | 586 clear_to_end () |
587 { | |
588 register int i; | |
589 | |
969
16649ee21625
* term.c (FRAME_IS_TERMCAP, FRAME_IS_X, FRAME_HAS_MINIBUF):
Jim Blandy <jimb@redhat.com>
parents:
797
diff
changeset
|
590 if (clear_to_end_hook && FRAME_TERMCAP_P (updating_frame)) |
253 | 591 { |
592 (*clear_to_end_hook) (); | |
593 return; | |
594 } | |
595 if (TS_clr_to_bottom) | |
596 { | |
597 background_highlight (); | |
598 OUTPUT (TS_clr_to_bottom); | |
765 | 599 bzero (chars_wasted + curY, FRAME_HEIGHT (selected_frame) - curY); |
253 | 600 } |
601 else | |
602 { | |
765 | 603 for (i = curY; i < FRAME_HEIGHT (selected_frame); i++) |
253 | 604 { |
605 cursor_to (i, 0); | |
765 | 606 clear_end_of_line_raw (FRAME_WIDTH (selected_frame)); |
253 | 607 } |
608 } | |
609 } | |
610 | |
765 | 611 /* Clear entire frame */ |
253 | 612 |
765 | 613 clear_frame () |
253 | 614 { |
765 | 615 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
|
616 && ! FRAME_TERMCAP_P ((updating_frame ? updating_frame : selected_frame))) |
253 | 617 { |
765 | 618 (*clear_frame_hook) (); |
253 | 619 return; |
620 } | |
765 | 621 if (TS_clr_frame) |
253 | 622 { |
623 background_highlight (); | |
765 | 624 OUTPUT (TS_clr_frame); |
625 bzero (chars_wasted, FRAME_HEIGHT (selected_frame)); | |
253 | 626 cmat (0, 0); |
627 } | |
628 else | |
629 { | |
630 cursor_to (0, 0); | |
631 clear_to_end (); | |
632 } | |
633 } | |
634 | |
635 /* Clear to end of line, but do not clear any standout marker. | |
636 Assumes that the cursor is positioned at a character of real text, | |
637 which implies it cannot be before a standout marker | |
638 unless the marker has zero width. | |
639 | |
640 Note that the cursor may be moved. */ | |
641 | |
642 clear_end_of_line (first_unused_hpos) | |
643 int first_unused_hpos; | |
644 { | |
1015
58c373be762c
* term.c (term_get_fkeys): Some systems define `static' to be the
Jim Blandy <jimb@redhat.com>
parents:
969
diff
changeset
|
645 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
|
646 if (FRAME_TERMCAP_P (selected_frame) |
253 | 647 && 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
|
648 write_glyphs (&buf, 1); |
253 | 649 clear_end_of_line_raw (first_unused_hpos); |
650 } | |
651 | |
652 /* Clear from cursor to end of line. | |
653 Assume that the line is already clear starting at column first_unused_hpos. | |
654 If the cursor is at a standout marker, erase the marker. | |
655 | |
656 Note that the cursor may be moved, on terminals lacking a `ce' string. */ | |
657 | |
658 clear_end_of_line_raw (first_unused_hpos) | |
659 int first_unused_hpos; | |
660 { | |
661 register int i; | |
662 | |
663 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
|
664 && ! FRAME_TERMCAP_P ((updating_frame |
765 | 665 ? updating_frame |
666 : selected_frame))) | |
253 | 667 { |
668 (*clear_end_of_line_hook) (first_unused_hpos); | |
669 return; | |
670 } | |
671 | |
672 first_unused_hpos += chars_wasted[curY] & 077; | |
673 if (curX >= first_unused_hpos) | |
674 return; | |
675 /* Notice if we are erasing a magic cookie */ | |
676 if (curX == 0) | |
677 chars_wasted[curY] = 0; | |
678 background_highlight (); | |
679 if (TS_clr_line) | |
680 { | |
681 OUTPUT1 (TS_clr_line); | |
682 } | |
683 else | |
684 { /* have to do it the hard way */ | |
685 turn_off_insert (); | |
686 | |
687 /* Do not write in last row last col with Autowrap on. */ | |
765 | 688 if (AutoWrap && curY == FRAME_HEIGHT (selected_frame) - 1 |
689 && first_unused_hpos == FRAME_WIDTH (selected_frame)) | |
253 | 690 first_unused_hpos--; |
691 | |
692 for (i = curX; i < first_unused_hpos; i++) | |
693 { | |
694 if (termscript) | |
695 fputc (' ', termscript); | |
696 putchar (' '); | |
697 } | |
698 cmplus (first_unused_hpos - curX); | |
699 } | |
700 } | |
701 | |
702 | |
703 write_glyphs (string, len) | |
704 register GLYPH *string; | |
705 register int len; | |
706 { | |
707 register GLYPH g; | |
708 register int tlen = GLYPH_TABLE_LENGTH; | |
709 register Lisp_Object *tbase = GLYPH_TABLE_BASE; | |
710 | |
711 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
|
712 && ! FRAME_TERMCAP_P ((updating_frame ? updating_frame : selected_frame))) |
253 | 713 { |
714 (*write_glyphs_hook) (string, len); | |
715 return; | |
716 } | |
717 | |
718 highlight_if_desired (); | |
719 turn_off_insert (); | |
720 | |
721 /* Don't dare write in last column of bottom line, if AutoWrap, | |
765 | 722 since that would scroll the whole frame on some terminals. */ |
253 | 723 |
724 if (AutoWrap | |
765 | 725 && curY + 1 == FRAME_HEIGHT (selected_frame) |
253 | 726 && (curX + len - (chars_wasted[curY] & 077) |
765 | 727 == FRAME_WIDTH (selected_frame))) |
253 | 728 len --; |
729 | |
730 cmplus (len); | |
731 while (--len >= 0) | |
732 { | |
733 g = *string++; | |
734 /* Check quickly for G beyond length of table. | |
735 That implies it isn't an alias and is simple. */ | |
736 if (g >= tlen) | |
737 { | |
738 simple: | |
739 putc (g & 0xff, stdout); | |
740 if (ferror (stdout)) | |
741 clearerr (stdout); | |
742 if (termscript) | |
743 putc (g & 0xff, termscript); | |
744 } | |
745 else | |
746 { | |
747 /* G has an entry in Vglyph_table, | |
748 so process any alias and then test for simpleness. */ | |
749 while (GLYPH_ALIAS_P (tbase, tlen, g)) | |
750 g = GLYPH_ALIAS (tbase, g); | |
751 if (GLYPH_SIMPLE_P (tbase, tlen, g)) | |
752 goto simple; | |
753 else | |
754 { | |
755 /* Here if G (or its definition as an alias) is not simple. */ | |
756 fwrite (GLYPH_STRING (tbase, g), 1, GLYPH_LENGTH (tbase, g), | |
757 stdout); | |
758 if (ferror (stdout)) | |
759 clearerr (stdout); | |
760 if (termscript) | |
761 fwrite (GLYPH_STRING (tbase, g), 1, GLYPH_LENGTH (tbase, g), | |
762 termscript); | |
763 } | |
764 } | |
765 } | |
766 } | |
767 | |
768 /* If start is zero, insert blanks instead of a string at start */ | |
769 | |
770 insert_glyphs (start, len) | |
771 register GLYPH *start; | |
772 register int len; | |
773 { | |
774 char *buf; | |
775 register GLYPH g; | |
776 register int tlen = GLYPH_TABLE_LENGTH; | |
777 register Lisp_Object *tbase = GLYPH_TABLE_BASE; | |
778 | |
969
16649ee21625
* term.c (FRAME_IS_TERMCAP, FRAME_IS_X, FRAME_HAS_MINIBUF):
Jim Blandy <jimb@redhat.com>
parents:
797
diff
changeset
|
779 if (insert_glyphs_hook && ! FRAME_TERMCAP_P (updating_frame)) |
253 | 780 { |
781 (*insert_glyphs_hook) (start, len); | |
782 return; | |
783 } | |
784 highlight_if_desired (); | |
785 | |
786 if (TS_ins_multi_chars) | |
787 { | |
788 buf = tparam (TS_ins_multi_chars, 0, 0, len); | |
789 OUTPUT1 (buf); | |
2439
b6c62e4abf59
Put interrupt input blocking in a separate file from xterm.h.
Jim Blandy <jimb@redhat.com>
parents:
2243
diff
changeset
|
790 xfree (buf); |
253 | 791 if (start) |
792 write_glyphs (start, len); | |
793 return; | |
794 } | |
795 | |
796 turn_on_insert (); | |
797 cmplus (len); | |
798 while (--len >= 0) | |
799 { | |
800 OUTPUT1_IF (TS_ins_char); | |
801 if (!start) | |
802 g = SPACEGLYPH; | |
803 else | |
804 g = *start++; | |
805 | |
806 if (GLYPH_SIMPLE_P (tbase, tlen, g)) | |
807 { | |
808 putc (g & 0xff, stdout); | |
809 if (ferror (stdout)) | |
810 clearerr (stdout); | |
811 if (termscript) | |
812 putc (g & 0xff, termscript); | |
813 } | |
814 else | |
815 { | |
816 fwrite (GLYPH_STRING (tbase, g), 1, GLYPH_LENGTH (tbase, g), stdout); | |
817 if (ferror (stdout)) | |
818 clearerr (stdout); | |
819 if (termscript) | |
820 fwrite (GLYPH_STRING (tbase, g), 1, GLYPH_LENGTH (tbase, g), | |
821 termscript); | |
822 } | |
823 | |
824 OUTPUT1_IF (TS_pad_inserted_char); | |
825 } | |
826 } | |
827 | |
828 delete_glyphs (n) | |
829 register int n; | |
830 { | |
831 char *buf; | |
832 register int i; | |
833 | |
969
16649ee21625
* term.c (FRAME_IS_TERMCAP, FRAME_IS_X, FRAME_HAS_MINIBUF):
Jim Blandy <jimb@redhat.com>
parents:
797
diff
changeset
|
834 if (delete_glyphs_hook && ! FRAME_TERMCAP_P (updating_frame)) |
253 | 835 { |
836 (*delete_glyphs_hook) (n); | |
837 return; | |
838 } | |
839 | |
840 if (delete_in_insert_mode) | |
841 { | |
842 turn_on_insert (); | |
843 } | |
844 else | |
845 { | |
846 turn_off_insert (); | |
847 OUTPUT_IF (TS_delete_mode); | |
848 } | |
849 | |
850 if (TS_del_multi_chars) | |
851 { | |
852 buf = tparam (TS_del_multi_chars, 0, 0, n); | |
853 OUTPUT1 (buf); | |
2439
b6c62e4abf59
Put interrupt input blocking in a separate file from xterm.h.
Jim Blandy <jimb@redhat.com>
parents:
2243
diff
changeset
|
854 xfree (buf); |
253 | 855 } |
856 else | |
857 for (i = 0; i < n; i++) | |
858 OUTPUT1 (TS_del_char); | |
859 if (!delete_in_insert_mode) | |
860 OUTPUT_IF (TS_end_delete_mode); | |
861 } | |
862 | |
863 /* Insert N lines at vpos VPOS. If N is negative, delete -N lines. */ | |
864 | |
865 ins_del_lines (vpos, n) | |
866 int vpos, n; | |
867 { | |
868 char *multi = n > 0 ? TS_ins_multi_lines : TS_del_multi_lines; | |
869 char *single = n > 0 ? TS_ins_line : TS_del_line; | |
870 char *scroll = n > 0 ? TS_rev_scroll : TS_fwd_scroll; | |
871 | |
872 register int i = n > 0 ? n : -n; | |
873 register char *buf; | |
874 | |
969
16649ee21625
* term.c (FRAME_IS_TERMCAP, FRAME_IS_X, FRAME_HAS_MINIBUF):
Jim Blandy <jimb@redhat.com>
parents:
797
diff
changeset
|
875 if (ins_del_lines_hook && ! FRAME_TERMCAP_P (updating_frame)) |
253 | 876 { |
877 (*ins_del_lines_hook) (vpos, n); | |
878 return; | |
879 } | |
880 | |
881 /* If the lines below the insertion are being pushed | |
882 into the end of the window, this is the same as clearing; | |
883 and we know the lines are already clear, since the matching | |
884 deletion has already been done. So can ignore this. */ | |
885 /* If the lines below the deletion are blank lines coming | |
886 out of the end of the window, don't bother, | |
887 as there will be a matching inslines later that will flush them. */ | |
888 if (scroll_region_ok && vpos + i >= specified_window) | |
889 return; | |
765 | 890 if (!memory_below_frame && vpos + i >= FRAME_HEIGHT (selected_frame)) |
253 | 891 return; |
892 | |
893 if (multi) | |
894 { | |
895 raw_cursor_to (vpos, 0); | |
896 background_highlight (); | |
897 buf = tparam (multi, 0, 0, i); | |
898 OUTPUT (buf); | |
2439
b6c62e4abf59
Put interrupt input blocking in a separate file from xterm.h.
Jim Blandy <jimb@redhat.com>
parents:
2243
diff
changeset
|
899 xfree (buf); |
253 | 900 } |
901 else if (single) | |
902 { | |
903 raw_cursor_to (vpos, 0); | |
904 background_highlight (); | |
905 while (--i >= 0) | |
906 OUTPUT (single); | |
907 if (TF_teleray) | |
908 curX = 0; | |
909 } | |
910 else | |
911 { | |
912 set_scroll_region (vpos, specified_window); | |
913 if (n < 0) | |
914 raw_cursor_to (specified_window - 1, 0); | |
915 else | |
916 raw_cursor_to (vpos, 0); | |
917 background_highlight (); | |
918 while (--i >= 0) | |
919 OUTPUTL (scroll, specified_window - vpos); | |
920 set_scroll_region (0, specified_window); | |
921 } | |
922 | |
923 if (TN_standout_width >= 0) | |
924 { | |
925 register lower_limit | |
926 = (scroll_region_ok | |
927 ? specified_window | |
765 | 928 : FRAME_HEIGHT (selected_frame)); |
253 | 929 |
930 if (n < 0) | |
931 { | |
932 bcopy (&chars_wasted[vpos - n], &chars_wasted[vpos], | |
933 lower_limit - vpos + n); | |
934 bzero (&chars_wasted[lower_limit + n], - n); | |
935 } | |
936 else | |
937 { | |
938 bcopy (&chars_wasted[vpos], ©buf[vpos], lower_limit - vpos - n); | |
939 bcopy (©buf[vpos], &chars_wasted[vpos + n], | |
940 lower_limit - vpos - n); | |
941 bzero (&chars_wasted[vpos], n); | |
942 } | |
943 } | |
765 | 944 if (!scroll_region_ok && memory_below_frame && n < 0) |
253 | 945 { |
765 | 946 cursor_to (FRAME_HEIGHT (selected_frame) + n, 0); |
253 | 947 clear_to_end (); |
948 } | |
949 } | |
950 | |
951 /* Compute cost of sending "str", in characters, | |
952 not counting any line-dependent padding. */ | |
953 | |
954 int | |
955 string_cost (str) | |
956 char *str; | |
957 { | |
958 cost = 0; | |
959 if (str) | |
960 tputs (str, 0, evalcost); | |
961 return cost; | |
962 } | |
963 | |
964 /* Compute cost of sending "str", in characters, | |
965 counting any line-dependent padding at one line. */ | |
966 | |
967 static int | |
968 string_cost_one_line (str) | |
969 char *str; | |
970 { | |
971 cost = 0; | |
972 if (str) | |
973 tputs (str, 1, evalcost); | |
974 return cost; | |
975 } | |
976 | |
977 /* Compute per line amount of line-dependent padding, | |
978 in tenths of characters. */ | |
979 | |
980 int | |
981 per_line_cost (str) | |
982 register char *str; | |
983 { | |
984 cost = 0; | |
985 if (str) | |
986 tputs (str, 0, evalcost); | |
987 cost = - cost; | |
988 if (str) | |
989 tputs (str, 10, evalcost); | |
990 return cost; | |
991 } | |
992 | |
993 #ifndef old | |
994 /* char_ins_del_cost[n] is cost of inserting N characters. | |
995 char_ins_del_cost[-n] is cost of deleting N characters. */ | |
996 | |
997 int *char_ins_del_vector; | |
998 | |
765 | 999 #define char_ins_del_cost(f) (&char_ins_del_vector[FRAME_WIDTH ((f))]) |
253 | 1000 #endif |
1001 | |
1002 /* ARGSUSED */ | |
1003 static void | |
765 | 1004 calculate_ins_del_char_costs (frame) |
1005 FRAME_PTR frame; | |
253 | 1006 { |
1007 int ins_startup_cost, del_startup_cost; | |
1008 int ins_cost_per_char, del_cost_per_char; | |
1009 register int i; | |
1010 register int *p; | |
1011 | |
1012 if (TS_ins_multi_chars) | |
1013 { | |
1014 ins_cost_per_char = 0; | |
1015 ins_startup_cost = string_cost_one_line (TS_ins_multi_chars); | |
1016 } | |
1017 else if (TS_ins_char || TS_pad_inserted_char | |
1018 || (TS_insert_mode && TS_end_insert_mode)) | |
1019 { | |
1020 ins_startup_cost = (30 * (string_cost (TS_insert_mode) | |
1021 + string_cost (TS_end_insert_mode))) / 100; | |
1022 ins_cost_per_char = (string_cost_one_line (TS_ins_char) | |
1023 + string_cost_one_line (TS_pad_inserted_char)); | |
1024 } | |
1025 else | |
1026 { | |
1027 ins_startup_cost = 9999; | |
1028 ins_cost_per_char = 0; | |
1029 } | |
1030 | |
1031 if (TS_del_multi_chars) | |
1032 { | |
1033 del_cost_per_char = 0; | |
1034 del_startup_cost = string_cost_one_line (TS_del_multi_chars); | |
1035 } | |
1036 else if (TS_del_char) | |
1037 { | |
1038 del_startup_cost = (string_cost (TS_delete_mode) | |
1039 + string_cost (TS_end_delete_mode)); | |
1040 if (delete_in_insert_mode) | |
1041 del_startup_cost /= 2; | |
1042 del_cost_per_char = string_cost_one_line (TS_del_char); | |
1043 } | |
1044 else | |
1045 { | |
1046 del_startup_cost = 9999; | |
1047 del_cost_per_char = 0; | |
1048 } | |
1049 | |
1050 /* Delete costs are at negative offsets */ | |
765 | 1051 p = &char_ins_del_cost (frame)[0]; |
1052 for (i = FRAME_WIDTH (selected_frame); --i >= 0;) | |
253 | 1053 *--p = (del_startup_cost += del_cost_per_char); |
1054 | |
1055 /* Doing nothing is free */ | |
765 | 1056 p = &char_ins_del_cost (frame)[0]; |
253 | 1057 *p++ = 0; |
1058 | |
1059 /* Insert costs are at positive offsets */ | |
765 | 1060 for (i = FRAME_WIDTH (frame); --i >= 0;) |
253 | 1061 *p++ = (ins_startup_cost += ins_cost_per_char); |
1062 } | |
1063 | |
1064 #ifdef HAVE_X_WINDOWS | |
797 | 1065 extern int x_screen_planes; |
253 | 1066 #endif |
1067 | |
2179
327106b23181
Add extern declaration for do_line_insertion_deletion_costs.
Jim Blandy <jimb@redhat.com>
parents:
2158
diff
changeset
|
1068 extern do_line_insertion_deletion_costs (); |
327106b23181
Add extern declaration for do_line_insertion_deletion_costs.
Jim Blandy <jimb@redhat.com>
parents:
2158
diff
changeset
|
1069 |
765 | 1070 calculate_costs (frame) |
1071 FRAME_PTR frame; | |
253 | 1072 { |
765 | 1073 register char *f = TS_set_scroll_region ? |
253 | 1074 TS_set_scroll_region |
1075 : TS_set_scroll_region_1; | |
1076 | |
1077 if (dont_calculate_costs) | |
1078 return; | |
1079 | |
1080 #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
|
1081 if (FRAME_X_P (frame)) |
253 | 1082 { |
765 | 1083 do_line_insertion_deletion_costs (frame, 0, ".5*", 0, ".5*", |
797 | 1084 0, 0, x_screen_planes); |
253 | 1085 return; |
1086 } | |
1087 #endif | |
1088 | |
1089 /* These variables are only used for terminal stuff. They are allocated | |
765 | 1090 once for the terminal frame of X-windows emacs, but not used afterwards. |
253 | 1091 |
1092 char_ins_del_vector (i.e., char_ins_del_cost) isn't used because | |
1093 X turns off char_ins_del_ok. | |
1094 | |
1095 chars_wasted and copybuf are only used here in term.c in cases where | |
1096 the term hook isn't called. */ | |
1097 | |
1098 if (chars_wasted != 0) | |
765 | 1099 chars_wasted = (char *) xrealloc (chars_wasted, FRAME_HEIGHT (frame)); |
253 | 1100 else |
765 | 1101 chars_wasted = (char *) xmalloc (FRAME_HEIGHT (frame)); |
253 | 1102 |
1103 if (copybuf != 0) | |
765 | 1104 copybuf = (char *) xrealloc (copybuf, FRAME_HEIGHT (frame)); |
253 | 1105 else |
765 | 1106 copybuf = (char *) xmalloc (FRAME_HEIGHT (frame)); |
253 | 1107 |
1108 if (char_ins_del_vector != 0) | |
1109 char_ins_del_vector | |
1110 = (int *) xrealloc (char_ins_del_vector, | |
1111 (sizeof (int) | |
765 | 1112 + 2 * FRAME_WIDTH (frame) * sizeof (int))); |
253 | 1113 else |
1114 char_ins_del_vector | |
1115 = (int *) xmalloc (sizeof (int) | |
765 | 1116 + 2 * FRAME_WIDTH (frame) * sizeof (int)); |
253 | 1117 |
765 | 1118 bzero (chars_wasted, FRAME_HEIGHT (frame)); |
1119 bzero (copybuf, FRAME_HEIGHT (frame)); | |
253 | 1120 bzero (char_ins_del_vector, (sizeof (int) |
765 | 1121 + 2 * FRAME_WIDTH (frame) * sizeof (int))); |
253 | 1122 |
765 | 1123 if (f && (!TS_ins_line && !TS_del_line)) |
1124 do_line_insertion_deletion_costs (frame, | |
253 | 1125 TS_rev_scroll, TS_ins_multi_lines, |
1126 TS_fwd_scroll, TS_del_multi_lines, | |
765 | 1127 f, f, 1); |
253 | 1128 else |
765 | 1129 do_line_insertion_deletion_costs (frame, |
253 | 1130 TS_ins_line, TS_ins_multi_lines, |
1131 TS_del_line, TS_del_multi_lines, | |
1132 0, 0, 1); | |
1133 | |
765 | 1134 calculate_ins_del_char_costs (frame); |
253 | 1135 |
1136 /* Don't use TS_repeat if its padding is worse than sending the chars */ | |
1137 if (TS_repeat && per_line_cost (TS_repeat) * baud_rate < 9000) | |
1138 RPov = string_cost (TS_repeat); | |
1139 else | |
765 | 1140 RPov = FRAME_WIDTH (frame) * 2; |
253 | 1141 |
1142 cmcostinit (); /* set up cursor motion costs */ | |
1143 } | |
1144 | |
1015
58c373be762c
* term.c (term_get_fkeys): Some systems define `static' to be the
Jim Blandy <jimb@redhat.com>
parents:
969
diff
changeset
|
1145 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
|
1146 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
|
1147 }; |
58c373be762c
* term.c (term_get_fkeys): Some systems define `static' to be the
Jim Blandy <jimb@redhat.com>
parents:
969
diff
changeset
|
1148 |
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
|
1149 /* 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
|
1150 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
|
1151 (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
|
1152 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
|
1153 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
|
1154 */ |
8e4d2d1e7c66
Added lots more cookies to fkey_table[], and code to do even more.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1994
diff
changeset
|
1155 |
1015
58c373be762c
* term.c (term_get_fkeys): Some systems define `static' to be the
Jim Blandy <jimb@redhat.com>
parents:
969
diff
changeset
|
1156 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
|
1157 "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
|
1158 "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
|
1159 "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
|
1160 "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
|
1161 "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
|
1162 "%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
|
1163 "%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
|
1164 "@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
|
1165 "@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
|
1166 "*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
|
1167 "%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
|
1168 "@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
|
1169 /* |
8e4d2d1e7c66
Added lots more cookies to fkey_table[], and code to do even more.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1994
diff
changeset
|
1170 * "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
|
1171 */ |
8e4d2d1e7c66
Added lots more cookies to fkey_table[], and code to do even more.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1994
diff
changeset
|
1172 "&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
|
1173 "%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
|
1174 "%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
|
1175 "@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
|
1176 "@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
|
1177 "%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
|
1178 /* |
8e4d2d1e7c66
Added lots more cookies to fkey_table[], and code to do even more.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1994
diff
changeset
|
1179 * "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
|
1180 */ |
8e4d2d1e7c66
Added lots more cookies to fkey_table[], and code to do even more.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1994
diff
changeset
|
1181 "&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
|
1182 /* |
8e4d2d1e7c66
Added lots more cookies to fkey_table[], and code to do even more.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1994
diff
changeset
|
1183 * "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
|
1184 */ |
8e4d2d1e7c66
Added lots more cookies to fkey_table[], and code to do even more.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1994
diff
changeset
|
1185 "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
|
1186 "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
|
1187 "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
|
1188 "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
|
1189 "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
|
1190 "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
|
1191 /* |
8e4d2d1e7c66
Added lots more cookies to fkey_table[], and code to do even more.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1994
diff
changeset
|
1192 * "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
|
1193 */ |
8e4d2d1e7c66
Added lots more cookies to fkey_table[], and code to do even more.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1994
diff
changeset
|
1194 "@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
|
1195 /* |
8e4d2d1e7c66
Added lots more cookies to fkey_table[], and code to do even more.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1994
diff
changeset
|
1196 * "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
|
1197 * "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
|
1198 * "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
|
1199 * --- 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
|
1200 */ |
8e4d2d1e7c66
Added lots more cookies to fkey_table[], and code to do even more.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1994
diff
changeset
|
1201 "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
|
1202 /* |
8e4d2d1e7c66
Added lots more cookies to fkey_table[], and code to do even more.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1994
diff
changeset
|
1203 * "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
|
1204 */ |
8e4d2d1e7c66
Added lots more cookies to fkey_table[], and code to do even more.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1994
diff
changeset
|
1205 "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
|
1206 /* |
8e4d2d1e7c66
Added lots more cookies to fkey_table[], and code to do even more.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1994
diff
changeset
|
1207 * "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
|
1208 */ |
8e4d2d1e7c66
Added lots more cookies to fkey_table[], and code to do even more.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1994
diff
changeset
|
1209 "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
|
1210 /* |
8e4d2d1e7c66
Added lots more cookies to fkey_table[], and code to do even more.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1994
diff
changeset
|
1211 * "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
|
1212 */ |
8e4d2d1e7c66
Added lots more cookies to fkey_table[], and code to do even more.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1994
diff
changeset
|
1213 "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
|
1214 /* |
8e4d2d1e7c66
Added lots more cookies to fkey_table[], and code to do even more.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1994
diff
changeset
|
1215 * "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
|
1216 */ |
8e4d2d1e7c66
Added lots more cookies to fkey_table[], and code to do even more.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1994
diff
changeset
|
1217 "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
|
1218 /* |
8e4d2d1e7c66
Added lots more cookies to fkey_table[], and code to do even more.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1994
diff
changeset
|
1219 * "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
|
1220 */ |
8e4d2d1e7c66
Added lots more cookies to fkey_table[], and code to do even more.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1994
diff
changeset
|
1221 "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
|
1222 "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
|
1223 "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
|
1224 "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
|
1225 "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
|
1226 "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
|
1227 "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
|
1228 "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
|
1229 "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
|
1230 }; |
58c373be762c
* term.c (term_get_fkeys): Some systems define `static' to be the
Jim Blandy <jimb@redhat.com>
parents:
969
diff
changeset
|
1231 |
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
|
1232 /* 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
|
1233 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
|
1234 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
|
1235 |
533 | 1236 void |
1237 term_get_fkeys (address) | |
1238 char **address; | |
1239 { | |
1240 extern char *tgetstr (); | |
1241 int i; | |
1242 | |
3359
ef29e2a4fc46
(term_get_fkeys): If not initialized, init Vfunction_key_map.
Richard M. Stallman <rms@gnu.org>
parents:
2961
diff
changeset
|
1243 /* 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
|
1244 if (!initialized) |
ef29e2a4fc46
(term_get_fkeys): If not initialized, init Vfunction_key_map.
Richard M. Stallman <rms@gnu.org>
parents:
2961
diff
changeset
|
1245 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
|
1246 |
533 | 1247 for (i = 0; i < (sizeof (keys)/sizeof (keys[0])); i++) |
1248 { | |
1249 char *sequence = tgetstr (keys[i].cap, address); | |
1250 if (sequence) | |
1251 Fdefine_key (Vfunction_key_map, | |
1252 build_string (sequence), | |
1253 Fmake_vector (make_number (1), intern (keys[i].name))); | |
1254 } | |
1015
58c373be762c
* term.c (term_get_fkeys): Some systems define `static' to be the
Jim Blandy <jimb@redhat.com>
parents:
969
diff
changeset
|
1255 |
58c373be762c
* term.c (term_get_fkeys): Some systems define `static' to be the
Jim Blandy <jimb@redhat.com>
parents:
969
diff
changeset
|
1256 /* 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
|
1257 describes F10, whereas othertimes it describes F0 and "k;" describes F10. |
58c373be762c
* term.c (term_get_fkeys): Some systems define `static' to be the
Jim Blandy <jimb@redhat.com>
parents:
969
diff
changeset
|
1258 We will attempt to politely accomodate both systems by testing for |
58c373be762c
* term.c (term_get_fkeys): Some systems define `static' to be the
Jim Blandy <jimb@redhat.com>
parents:
969
diff
changeset
|
1259 "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
|
1260 */ |
58c373be762c
* term.c (term_get_fkeys): Some systems define `static' to be the
Jim Blandy <jimb@redhat.com>
parents:
969
diff
changeset
|
1261 { |
58c373be762c
* term.c (term_get_fkeys): Some systems define `static' to be the
Jim Blandy <jimb@redhat.com>
parents:
969
diff
changeset
|
1262 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
|
1263 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
|
1264 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
|
1265 |
58c373be762c
* term.c (term_get_fkeys): Some systems define `static' to be the
Jim Blandy <jimb@redhat.com>
parents:
969
diff
changeset
|
1266 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
|
1267 { |
58c373be762c
* term.c (term_get_fkeys): Some systems define `static' to be the
Jim Blandy <jimb@redhat.com>
parents:
969
diff
changeset
|
1268 Fdefine_key (Vfunction_key_map, |
58c373be762c
* term.c (term_get_fkeys): Some systems define `static' to be the
Jim Blandy <jimb@redhat.com>
parents:
969
diff
changeset
|
1269 build_string (k_semi), |
58c373be762c
* term.c (term_get_fkeys): Some systems define `static' to be the
Jim Blandy <jimb@redhat.com>
parents:
969
diff
changeset
|
1270 Fmake_vector (make_number (1), intern ("f10"))); |
58c373be762c
* term.c (term_get_fkeys): Some systems define `static' to be the
Jim Blandy <jimb@redhat.com>
parents:
969
diff
changeset
|
1271 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
|
1272 } |
58c373be762c
* term.c (term_get_fkeys): Some systems define `static' to be the
Jim Blandy <jimb@redhat.com>
parents:
969
diff
changeset
|
1273 |
58c373be762c
* term.c (term_get_fkeys): Some systems define `static' to be the
Jim Blandy <jimb@redhat.com>
parents:
969
diff
changeset
|
1274 if (k0) |
58c373be762c
* term.c (term_get_fkeys): Some systems define `static' to be the
Jim Blandy <jimb@redhat.com>
parents:
969
diff
changeset
|
1275 Fdefine_key (Vfunction_key_map, |
58c373be762c
* term.c (term_get_fkeys): Some systems define `static' to be the
Jim Blandy <jimb@redhat.com>
parents:
969
diff
changeset
|
1276 build_string (k0), |
58c373be762c
* term.c (term_get_fkeys): Some systems define `static' to be the
Jim Blandy <jimb@redhat.com>
parents:
969
diff
changeset
|
1277 Fmake_vector (make_number (1), intern (k0_name))); |
58c373be762c
* term.c (term_get_fkeys): Some systems define `static' to be the
Jim Blandy <jimb@redhat.com>
parents:
969
diff
changeset
|
1278 } |
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
|
1279 |
8e4d2d1e7c66
Added lots more cookies to fkey_table[], and code to do even more.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1994
diff
changeset
|
1280 /* 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
|
1281 { |
8e4d2d1e7c66
Added lots more cookies to fkey_table[], and code to do even more.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1994
diff
changeset
|
1282 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
|
1283 |
8e4d2d1e7c66
Added lots more cookies to fkey_table[], and code to do even more.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1994
diff
changeset
|
1284 fcap[0] = 'k'; fcap[2] = '\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
|
1285 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
|
1286 { |
8e4d2d1e7c66
Added lots more cookies to fkey_table[], and code to do even more.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1994
diff
changeset
|
1287 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
|
1288 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
|
1289 else if (i <= 45) |
8e4d2d1e7c66
Added lots more cookies to fkey_table[], and code to do even more.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1994
diff
changeset
|
1290 fcap[1] = 'A' + 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
|
1291 else |
8e4d2d1e7c66
Added lots more cookies to fkey_table[], and code to do even more.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1994
diff
changeset
|
1292 fcap[1] = 'a' + 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
|
1293 |
2243
23228edebc59
Fix spacing conventions.
Richard M. Stallman <rms@gnu.org>
parents:
2239
diff
changeset
|
1294 if (tgetstr (fcap, address)) |
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
|
1295 { |
2243
23228edebc59
Fix spacing conventions.
Richard M. Stallman <rms@gnu.org>
parents:
2239
diff
changeset
|
1296 (void) sprintf (fkey, "f%d", i); |
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
|
1297 Fdefine_key (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
|
1298 build_string (fcap), |
8e4d2d1e7c66
Added lots more cookies to fkey_table[], and code to do even more.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1994
diff
changeset
|
1299 Fmake_vector (make_number (1), intern (fkey))); |
8e4d2d1e7c66
Added lots more cookies to fkey_table[], and code to do even more.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1994
diff
changeset
|
1300 } |
8e4d2d1e7c66
Added lots more cookies to fkey_table[], and code to do even more.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1994
diff
changeset
|
1301 } |
8e4d2d1e7c66
Added lots more cookies to fkey_table[], and code to do even more.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1994
diff
changeset
|
1302 } |
8e4d2d1e7c66
Added lots more cookies to fkey_table[], and code to do even more.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1994
diff
changeset
|
1303 |
8e4d2d1e7c66
Added lots more cookies to fkey_table[], and code to do even more.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1994
diff
changeset
|
1304 /* |
8e4d2d1e7c66
Added lots more cookies to fkey_table[], and code to do even more.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1994
diff
changeset
|
1305 * 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
|
1306 */ |
8e4d2d1e7c66
Added lots more cookies to fkey_table[], and code to do even more.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1994
diff
changeset
|
1307 { |
2243
23228edebc59
Fix spacing conventions.
Richard M. Stallman <rms@gnu.org>
parents:
2239
diff
changeset
|
1308 #define CONDITIONAL_REASSIGN(cap1, cap2, sym) \ |
23228edebc59
Fix spacing conventions.
Richard M. Stallman <rms@gnu.org>
parents:
2239
diff
changeset
|
1309 if (!tgetstr (cap1, address) && tgetstr (cap2, address)) \ |
23228edebc59
Fix spacing conventions.
Richard M. Stallman <rms@gnu.org>
parents:
2239
diff
changeset
|
1310 Fdefine_key (Vfunction_key_map, \ |
23228edebc59
Fix spacing conventions.
Richard M. Stallman <rms@gnu.org>
parents:
2239
diff
changeset
|
1311 build_string (cap2), \ |
23228edebc59
Fix spacing conventions.
Richard M. Stallman <rms@gnu.org>
parents:
2239
diff
changeset
|
1312 Fmake_vector (make_number (1), intern (sym))) |
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
|
1313 |
8e4d2d1e7c66
Added lots more cookies to fkey_table[], and code to do even more.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1994
diff
changeset
|
1314 /* 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
|
1315 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
|
1316 /* if there's no key_prev keycap, map key_ppage to `previous' keysym */ |
2243
23228edebc59
Fix spacing conventions.
Richard M. Stallman <rms@gnu.org>
parents:
2239
diff
changeset
|
1317 CONDITIONAL_REASSIGN ("%8", "kP", "previous"); |
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
|
1318 /* 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
|
1319 CONDITIONAL_REASSIGN ("kD", "kI", "insert"); |
2224
49bda4cf498c
Supply second arg for tgetstr() calls.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2179
diff
changeset
|
1320 #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
|
1321 } |
533 | 1322 } |
1323 | |
1324 | |
253 | 1325 term_init (terminal_type) |
1326 char *terminal_type; | |
1327 { | |
1328 char *area; | |
1329 char **address = &area; | |
1330 char buffer[2044]; | |
1331 register char *p; | |
1332 int status; | |
1333 | |
1334 extern char *tgetstr (); | |
1335 | |
1336 Wcm_clear (); | |
1337 dont_calculate_costs = 0; | |
1338 | |
1339 status = tgetent (buffer, terminal_type); | |
1340 if (status < 0) | |
1341 fatal ("Cannot open termcap database file.\n"); | |
1342 if (status == 0) | |
1343 fatal ("Terminal type %s is not defined.\n", terminal_type); | |
1344 | |
1345 #ifdef TERMINFO | |
1346 area = (char *) malloc (2044); | |
1347 #else | |
1348 area = (char *) malloc (strlen (buffer)); | |
1349 #endif /* not TERMINFO */ | |
1350 if (area == 0) | |
1351 abort (); | |
1352 | |
1353 TS_ins_line = tgetstr ("al", address); | |
1354 TS_ins_multi_lines = tgetstr ("AL", address); | |
1355 TS_bell = tgetstr ("bl", address); | |
1356 BackTab = tgetstr ("bt", address); | |
1357 TS_clr_to_bottom = tgetstr ("cd", address); | |
1358 TS_clr_line = tgetstr ("ce", address); | |
765 | 1359 TS_clr_frame = tgetstr ("cl", address); |
253 | 1360 ColPosition = tgetstr ("ch", address); |
1361 AbsPosition = tgetstr ("cm", address); | |
1362 CR = tgetstr ("cr", address); | |
1363 TS_set_scroll_region = tgetstr ("cs", address); | |
1364 TS_set_scroll_region_1 = tgetstr ("cS", address); | |
1365 RowPosition = tgetstr ("cv", address); | |
1366 TS_del_char = tgetstr ("dc", address); | |
1367 TS_del_multi_chars = tgetstr ("DC", address); | |
1368 TS_del_line = tgetstr ("dl", address); | |
1369 TS_del_multi_lines = tgetstr ("DL", address); | |
1370 TS_delete_mode = tgetstr ("dm", address); | |
1371 TS_end_delete_mode = tgetstr ("ed", address); | |
1372 TS_end_insert_mode = tgetstr ("ei", address); | |
1373 Home = tgetstr ("ho", address); | |
1374 TS_ins_char = tgetstr ("ic", address); | |
1375 TS_ins_multi_chars = tgetstr ("IC", address); | |
1376 TS_insert_mode = tgetstr ("im", address); | |
1377 TS_pad_inserted_char = tgetstr ("ip", address); | |
1378 TS_end_keypad_mode = tgetstr ("ke", address); | |
1379 TS_keypad_mode = tgetstr ("ks", address); | |
1380 LastLine = tgetstr ("ll", address); | |
1381 Right = tgetstr ("nd", address); | |
1382 Down = tgetstr ("do", address); | |
1383 if (!Down) | |
1384 Down = tgetstr ("nl", address); /* Obsolete name for "do" */ | |
1385 #ifdef VMS | |
1386 /* VMS puts a carriage return before each linefeed, | |
1387 so it is not safe to use linefeeds. */ | |
1388 if (Down && Down[0] == '\n' && Down[1] == '\0') | |
1389 Down = 0; | |
1390 #endif /* VMS */ | |
1391 if (tgetflag ("bs")) | |
1392 Left = "\b"; /* can't possibly be longer! */ | |
1393 else /* (Actually, "bs" is obsolete...) */ | |
1394 Left = tgetstr ("le", address); | |
1395 if (!Left) | |
1396 Left = tgetstr ("bc", address); /* Obsolete name for "le" */ | |
1397 TS_pad_char = tgetstr ("pc", address); | |
1398 TS_repeat = tgetstr ("rp", address); | |
1399 TS_end_standout_mode = tgetstr ("se", address); | |
1400 TS_fwd_scroll = tgetstr ("sf", address); | |
1401 TS_standout_mode = tgetstr ("so", address); | |
1402 TS_rev_scroll = tgetstr ("sr", address); | |
1403 Wcm.cm_tab = tgetstr ("ta", address); | |
1404 TS_end_termcap_modes = tgetstr ("te", address); | |
1405 TS_termcap_modes = tgetstr ("ti", address); | |
1406 Up = tgetstr ("up", address); | |
1407 TS_visible_bell = tgetstr ("vb", address); | |
1408 TS_end_visual_mode = tgetstr ("ve", address); | |
1409 TS_visual_mode = tgetstr ("vs", address); | |
1410 TS_set_window = tgetstr ("wi", address); | |
1411 MultiUp = tgetstr ("UP", address); | |
1412 MultiDown = tgetstr ("DO", address); | |
1413 MultiLeft = tgetstr ("LE", address); | |
1414 MultiRight = tgetstr ("RI", address); | |
1415 | |
1416 AutoWrap = tgetflag ("am"); | |
765 | 1417 memory_below_frame = tgetflag ("db"); |
253 | 1418 TF_hazeltine = tgetflag ("hz"); |
1419 must_write_spaces = tgetflag ("in"); | |
1420 meta_key = tgetflag ("km") || tgetflag ("MT"); | |
1421 TF_insmode_motion = tgetflag ("mi"); | |
1422 TF_standout_motion = tgetflag ("ms"); | |
1423 TF_underscore = tgetflag ("ul"); | |
1424 MagicWrap = tgetflag ("xn"); | |
1425 TF_xs = tgetflag ("xs"); | |
1426 TF_teleray = tgetflag ("xt"); | |
1427 | |
533 | 1428 term_get_fkeys (address); |
1429 | |
765 | 1430 /* Get frame size from system, or else from termcap. */ |
1431 get_frame_size (&FRAME_WIDTH (selected_frame), | |
1432 &FRAME_HEIGHT (selected_frame)); | |
1433 if (FRAME_WIDTH (selected_frame) <= 0) | |
1434 FRAME_WIDTH (selected_frame) = tgetnum ("co"); | |
1435 if (FRAME_HEIGHT (selected_frame) <= 0) | |
1436 FRAME_HEIGHT (selected_frame) = tgetnum ("li"); | |
253 | 1437 |
1438 min_padding_speed = tgetnum ("pb"); | |
1439 TN_standout_width = tgetnum ("sg"); | |
1440 TabWidth = tgetnum ("tw"); | |
1441 | |
1442 #ifdef VMS | |
1443 /* These capabilities commonly use ^J. | |
1444 I don't know why, but sending them on VMS does not work; | |
1445 it causes following spaces to be lost, sometimes. | |
1446 For now, the simplest fix is to avoid using these capabilities ever. */ | |
1447 if (Down && Down[0] == '\n') | |
1448 Down = 0; | |
1449 #endif /* VMS */ | |
1450 | |
1451 if (!TS_bell) | |
1452 TS_bell = "\07"; | |
1453 | |
1454 if (!TS_fwd_scroll) | |
1455 TS_fwd_scroll = Down; | |
1456 | |
1457 PC = TS_pad_char ? *TS_pad_char : 0; | |
1458 | |
1459 if (TabWidth < 0) | |
1460 TabWidth = 8; | |
1461 | |
1462 /* Turned off since /etc/termcap seems to have :ta= for most terminals | |
1463 and newer termcap doc does not seem to say there is a default. | |
1464 if (!Wcm.cm_tab) | |
1465 Wcm.cm_tab = "\t"; | |
1466 */ | |
1467 | |
1468 if (TS_standout_mode == 0) | |
1469 { | |
1470 TN_standout_width = tgetnum ("ug"); | |
1471 TS_end_standout_mode = tgetstr ("ue", address); | |
1472 TS_standout_mode = tgetstr ("us", address); | |
1473 } | |
1474 | |
1475 if (TF_teleray) | |
1476 { | |
1477 Wcm.cm_tab = 0; | |
1478 /* Teleray: most programs want a space in front of TS_standout_mode, | |
1479 but Emacs can do without it (and give one extra column). */ | |
1480 TS_standout_mode = "\033RD"; | |
1481 TN_standout_width = 1; | |
1482 /* But that means we cannot rely on ^M to go to column zero! */ | |
1483 CR = 0; | |
1484 /* LF can't be trusted either -- can alter hpos */ | |
1485 /* if move at column 0 thru a line with TS_standout_mode */ | |
1486 Down = 0; | |
1487 } | |
1488 | |
1489 /* Special handling for certain terminal types known to need it */ | |
1490 | |
1491 if (!strcmp (terminal_type, "supdup")) | |
1492 { | |
765 | 1493 memory_below_frame = 1; |
253 | 1494 Wcm.cm_losewrap = 1; |
1495 } | |
1496 if (!strncmp (terminal_type, "c10", 3) | |
1497 || !strcmp (terminal_type, "perq")) | |
1498 { | |
1499 /* Supply a makeshift :wi string. | |
1500 This string is not valid in general since it works only | |
1501 for windows starting at the upper left corner; | |
1502 but that is all Emacs uses. | |
1503 | |
765 | 1504 This string works only if the frame is using |
253 | 1505 the top of the video memory, because addressing is memory-relative. |
1506 So first check the :ti string to see if that is true. | |
1507 | |
1508 It would be simpler if the :wi string could go in the termcap | |
1509 entry, but it can't because it is not fully valid. | |
1510 If it were in the termcap entry, it would confuse other programs. */ | |
1511 if (!TS_set_window) | |
1512 { | |
1513 p = TS_termcap_modes; | |
1514 while (*p && strcmp (p, "\033v ")) | |
1515 p++; | |
1516 if (*p) | |
1517 TS_set_window = "\033v%C %C %C %C "; | |
1518 } | |
1519 /* Termcap entry often fails to have :in: flag */ | |
1520 must_write_spaces = 1; | |
1521 /* :ti string typically fails to have \E^G! in it */ | |
1522 /* This limits scope of insert-char to one line. */ | |
1523 strcpy (area, TS_termcap_modes); | |
1524 strcat (area, "\033\007!"); | |
1525 TS_termcap_modes = area; | |
1526 area += strlen (area) + 1; | |
1527 p = AbsPosition; | |
1528 /* Change all %+ parameters to %C, to handle | |
1529 values above 96 correctly for the C100. */ | |
1530 while (*p) | |
1531 { | |
1532 if (p[0] == '%' && p[1] == '+') | |
1533 p[1] = 'C'; | |
1534 p++; | |
1535 } | |
1536 } | |
1537 | |
765 | 1538 FrameRows = FRAME_HEIGHT (selected_frame); |
1539 FrameCols = FRAME_WIDTH (selected_frame); | |
1540 specified_window = FRAME_HEIGHT (selected_frame); | |
253 | 1541 |
1542 if (Wcm_init () == -1) /* can't do cursor motion */ | |
1543 #ifdef VMS | |
1544 fatal ("Terminal type \"%s\" is not powerful enough to run Emacs.\n\ | |
1545 It lacks the ability to position the cursor.\n\ | |
1546 If that is not the actual type of terminal you have, use either the\n\ | |
1547 DCL command `SET TERMINAL/DEVICE= ...' for DEC-compatible terminals,\n\ | |
1548 or `define EMACS_TERM \"terminal type\"' for non-DEC terminals.\n", | |
1549 terminal_type); | |
1550 #else | |
1551 fatal ("Terminal type \"%s\" is not powerful enough to run Emacs.\n\ | |
1552 It lacks the ability to position the cursor.\n\ | |
1553 If that is not the actual type of terminal you have,\n\ | |
1554 use the C-shell command `setenv TERM ...' to specify the correct type.\n\ | |
1555 It may be necessary to do `unsetenv TERMCAP' as well.\n", | |
1556 terminal_type); | |
1557 #endif | |
765 | 1558 if (FRAME_HEIGHT (selected_frame) <= 0 |
1559 || FRAME_WIDTH (selected_frame) <= 0) | |
1560 fatal ("The frame size has not been specified."); | |
253 | 1561 |
1562 delete_in_insert_mode | |
1563 = TS_delete_mode && TS_insert_mode | |
1564 && !strcmp (TS_delete_mode, TS_insert_mode); | |
1565 | |
1566 se_is_so = (TS_standout_mode | |
1567 && TS_end_standout_mode | |
1568 && !strcmp (TS_standout_mode, TS_end_standout_mode)); | |
1569 | |
1570 /* Remove width of standout marker from usable width of line */ | |
1571 if (TN_standout_width > 0) | |
765 | 1572 FRAME_WIDTH (selected_frame) -= TN_standout_width; |
253 | 1573 |
1574 UseTabs = tabs_safe_p () && TabWidth == 8; | |
1575 | |
1576 scroll_region_ok | |
1577 = (Wcm.cm_abs | |
1578 && (TS_set_window || TS_set_scroll_region || TS_set_scroll_region_1)); | |
1579 | |
1580 line_ins_del_ok = (((TS_ins_line || TS_ins_multi_lines) | |
1581 && (TS_del_line || TS_del_multi_lines)) | |
1582 || (scroll_region_ok && TS_fwd_scroll && TS_rev_scroll)); | |
1583 | |
1584 char_ins_del_ok = ((TS_ins_char || TS_insert_mode | |
1585 || TS_pad_inserted_char || TS_ins_multi_chars) | |
1586 && (TS_del_char || TS_del_multi_chars)); | |
1587 | |
1588 fast_clear_end_of_line = TS_clr_line != 0; | |
1589 | |
1590 init_baud_rate (); | |
1591 if (read_socket_hook) /* Baudrate is somewhat */ | |
1592 /* meaningless in this case */ | |
1593 baud_rate = 9600; | |
1717
aa7d6d57504b
* frame.h (struct frame): New fields `can_have_scrollbars' and
Jim Blandy <jimb@redhat.com>
parents:
1015
diff
changeset
|
1594 |
1994
73ce9dd21093
Use the term `scroll bar', instead of `scrollbar'.
Jim Blandy <jimb@redhat.com>
parents:
1821
diff
changeset
|
1595 FRAME_CAN_HAVE_SCROLL_BARS (selected_frame) = 0; |
73ce9dd21093
Use the term `scroll bar', instead of `scrollbar'.
Jim Blandy <jimb@redhat.com>
parents:
1821
diff
changeset
|
1596 FRAME_HAS_VERTICAL_SCROLL_BARS (selected_frame) = 0; |
253 | 1597 } |
1598 | |
1599 /* VARARGS 1 */ | |
1600 fatal (str, arg1, arg2) | |
621 | 1601 char *str, *arg1, *arg2; |
253 | 1602 { |
1603 fprintf (stderr, "emacs: "); | |
1604 fprintf (stderr, str, arg1, arg2); | |
1605 fflush (stderr); | |
1606 exit (1); | |
1607 } |