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