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