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