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