Mercurial > emacs
annotate src/term.c @ 30848:fc80dcfc32cd
(write_glyphs): Also turn off inverse video after turning
off other appearances in case TS_exit_attribute_mode is not equal
to TS_end_standout_mode.
(insert_glyphs): Turn inverse video on/off for each run of glyphs
with the same face.
(turn_off_face): Reset standout_mode only if
TS_exit_attribute_mode has been output and TS_exit_attribute_mode
is equal to TS_end_standout_mode.
| author | Gerd Moellmann <gerd@gnu.org> |
|---|---|
| date | Wed, 16 Aug 2000 12:12:30 +0000 |
| parents | b590724d8c48 |
| children | 6a0caa788013 |
| rev | line source |
|---|---|
| 253 | 1 /* terminal control module for terminals described by TERMCAP |
| 25002 | 2 Copyright (C) 1985, 86, 87, 93, 94, 95, 98 |
| 3 Free Software Foundation, Inc. | |
| 253 | 4 |
| 5 This file is part of GNU Emacs. | |
| 6 | |
| 7 GNU Emacs is free software; you can redistribute it and/or modify | |
| 8 it under the terms of the GNU General Public License as published by | |
| 621 | 9 the Free Software Foundation; either version 2, or (at your option) |
| 253 | 10 any later version. |
| 11 | |
| 12 GNU Emacs is distributed in the hope that it will be useful, | |
| 13 but WITHOUT ANY WARRANTY; without even the implied warranty of | |
| 14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
| 15 GNU General Public License for more details. | |
| 16 | |
| 17 You should have received a copy of the GNU General Public License | |
| 18 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
|
19 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
|
20 Boston, MA 02111-1307, USA. */ |
| 253 | 21 |
| 25002 | 22 /* New redisplay, TTY faces by Gerd Moellmann <gerd@acm.org>. */ |
| 23 | |
| 253 | 24 |
|
7900
60795e826dad
Put stdio.h after config.h.
Richard M. Stallman <rms@gnu.org>
parents:
7649
diff
changeset
|
25 #include <config.h> |
| 253 | 26 #include <stdio.h> |
| 27 #include <ctype.h> | |
| 25002 | 28 #include <string.h> |
| 253 | 29 #include "termchar.h" |
| 30 #include "termopts.h" | |
| 31 #include "lisp.h" | |
|
17046
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
32 #include "charset.h" |
|
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
33 #include "coding.h" |
| 765 | 34 #include "frame.h" |
| 253 | 35 #include "disptab.h" |
| 36 #include "termhooks.h" | |
| 533 | 37 #include "keyboard.h" |
| 21514 | 38 #include "dispextern.h" |
| 25002 | 39 #include "window.h" |
| 40 | |
|
25727
46fe79182b54
(OUTPUT_IF, OUTPUT1_IF): Use do-while.
Gerd Moellmann <gerd@gnu.org>
parents:
25675
diff
changeset
|
41 #ifdef HAVE_TERMCAP_H |
|
46fe79182b54
(OUTPUT_IF, OUTPUT1_IF): Use do-while.
Gerd Moellmann <gerd@gnu.org>
parents:
25675
diff
changeset
|
42 #include <termcap.h> |
|
29929
bb7557f86f5b
[!HAVE_TERMCAP_H]: Declare tputs, tgetent, tgetflag, tgetnum.
Dave Love <fx@gnu.org>
parents:
29462
diff
changeset
|
43 #else |
|
bb7557f86f5b
[!HAVE_TERMCAP_H]: Declare tputs, tgetent, tgetflag, tgetnum.
Dave Love <fx@gnu.org>
parents:
29462
diff
changeset
|
44 extern void tputs P_ ((const char *, int, int (*)(int))); |
|
bb7557f86f5b
[!HAVE_TERMCAP_H]: Declare tputs, tgetent, tgetflag, tgetnum.
Dave Love <fx@gnu.org>
parents:
29462
diff
changeset
|
45 extern int tgetent P_ ((char *, const char *)); |
|
bb7557f86f5b
[!HAVE_TERMCAP_H]: Declare tputs, tgetent, tgetflag, tgetnum.
Dave Love <fx@gnu.org>
parents:
29462
diff
changeset
|
46 extern int tgetflag P_ ((char *id)); |
|
bb7557f86f5b
[!HAVE_TERMCAP_H]: Declare tputs, tgetent, tgetflag, tgetnum.
Dave Love <fx@gnu.org>
parents:
29462
diff
changeset
|
47 extern int tgetnum P_ ((char *id)); |
|
25727
46fe79182b54
(OUTPUT_IF, OUTPUT1_IF): Use do-while.
Gerd Moellmann <gerd@gnu.org>
parents:
25675
diff
changeset
|
48 #endif |
|
46fe79182b54
(OUTPUT_IF, OUTPUT1_IF): Use do-while.
Gerd Moellmann <gerd@gnu.org>
parents:
25675
diff
changeset
|
49 |
|
21827
87c7f4bd99da
Include cm.h after dispextern.h to avoid name conflicts
Geoff Voelker <voelker@cs.washington.edu>
parents:
21624
diff
changeset
|
50 #include "cm.h" |
| 21514 | 51 #ifdef HAVE_X_WINDOWS |
| 52 #include "xterm.h" | |
| 53 #endif | |
| 8898 | 54 |
| 25002 | 55 static void turn_on_face P_ ((struct frame *, int face_id)); |
| 56 static void turn_off_face P_ ((struct frame *, int face_id)); | |
| 57 static void tty_show_cursor P_ ((void)); | |
| 58 static void tty_hide_cursor P_ ((void)); | |
| 59 | |
| 253 | 60 #define max(a, b) ((a) > (b) ? (a) : (b)) |
| 61 #define min(a, b) ((a) < (b) ? (a) : (b)) | |
| 62 | |
|
25675
992d0d097e54
(OUTPUT): Change for Lisp_Object selected_frame.
Gerd Moellmann <gerd@gnu.org>
parents:
25187
diff
changeset
|
63 #define OUTPUT(a) \ |
|
992d0d097e54
(OUTPUT): Change for Lisp_Object selected_frame.
Gerd Moellmann <gerd@gnu.org>
parents:
25187
diff
changeset
|
64 tputs (a, (int) (FRAME_HEIGHT (XFRAME (selected_frame)) - curY), cmputc) |
| 253 | 65 #define OUTPUT1(a) tputs (a, 1, cmputc) |
| 66 #define OUTPUTL(a, lines) tputs (a, lines, cmputc) | |
| 25002 | 67 |
|
25727
46fe79182b54
(OUTPUT_IF, OUTPUT1_IF): Use do-while.
Gerd Moellmann <gerd@gnu.org>
parents:
25675
diff
changeset
|
68 #define OUTPUT_IF(a) \ |
|
46fe79182b54
(OUTPUT_IF, OUTPUT1_IF): Use do-while.
Gerd Moellmann <gerd@gnu.org>
parents:
25675
diff
changeset
|
69 do { \ |
|
46fe79182b54
(OUTPUT_IF, OUTPUT1_IF): Use do-while.
Gerd Moellmann <gerd@gnu.org>
parents:
25675
diff
changeset
|
70 if (a) \ |
|
46fe79182b54
(OUTPUT_IF, OUTPUT1_IF): Use do-while.
Gerd Moellmann <gerd@gnu.org>
parents:
25675
diff
changeset
|
71 tputs (a, (int) (FRAME_HEIGHT (XFRAME (selected_frame)) \ |
|
46fe79182b54
(OUTPUT_IF, OUTPUT1_IF): Use do-while.
Gerd Moellmann <gerd@gnu.org>
parents:
25675
diff
changeset
|
72 - curY), cmputc); \ |
|
46fe79182b54
(OUTPUT_IF, OUTPUT1_IF): Use do-while.
Gerd Moellmann <gerd@gnu.org>
parents:
25675
diff
changeset
|
73 } while (0) |
| 25002 | 74 |
|
25727
46fe79182b54
(OUTPUT_IF, OUTPUT1_IF): Use do-while.
Gerd Moellmann <gerd@gnu.org>
parents:
25675
diff
changeset
|
75 #define OUTPUT1_IF(a) do { if (a) tputs (a, 1, cmputc); } while (0) |
| 253 | 76 |
|
15974
61249a8fe735
(Vring_bell_function): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
15094
diff
changeset
|
77 /* Function to use to ring the bell. */ |
| 25002 | 78 |
|
15974
61249a8fe735
(Vring_bell_function): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
15094
diff
changeset
|
79 Lisp_Object Vring_bell_function; |
|
61249a8fe735
(Vring_bell_function): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
15094
diff
changeset
|
80 |
|
3591
507f64624555
Apply typo patches from Paul Eggert.
Jim Blandy <jimb@redhat.com>
parents:
3489
diff
changeset
|
81 /* Terminal characteristics that higher levels want to look at. |
| 253 | 82 These are all extern'd in termchar.h */ |
| 83 | |
| 84 int must_write_spaces; /* Nonzero means spaces in the text | |
| 85 must actually be output; can't just skip | |
| 86 over some columns to leave them blank. */ | |
| 87 int min_padding_speed; /* Speed below which no padding necessary */ | |
| 88 | |
| 89 int line_ins_del_ok; /* Terminal can insert and delete lines */ | |
| 90 int char_ins_del_ok; /* Terminal can insert and delete chars */ | |
| 91 int scroll_region_ok; /* Terminal supports setting the | |
| 92 scroll window */ | |
|
10261
4fd304db9216
(scroll_region_cost): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
10121
diff
changeset
|
93 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
|
94 measured in characters */ |
| 765 | 95 int memory_below_frame; /* Terminal remembers lines |
| 253 | 96 scrolled off bottom */ |
| 97 int fast_clear_end_of_line; /* Terminal has a `ce' string */ | |
| 98 | |
| 765 | 99 /* Nonzero means no need to redraw the entire frame on resuming |
| 253 | 100 a suspended Emacs. This is useful on terminals with multiple pages, |
| 101 where one page is used for Emacs and another for all else. */ | |
| 25002 | 102 |
| 253 | 103 int no_redraw_on_reenter; |
| 104 | |
| 105 /* Hook functions that you can set to snap out the functions in this file. | |
| 106 These are all extern'd in termhooks.h */ | |
| 107 | |
| 21514 | 108 void (*cursor_to_hook) P_ ((int, int)); |
| 109 void (*raw_cursor_to_hook) P_ ((int, int)); | |
| 110 void (*clear_to_end_hook) P_ ((void)); | |
| 111 void (*clear_frame_hook) P_ ((void)); | |
| 112 void (*clear_end_of_line_hook) P_ ((int)); | |
| 253 | 113 |
| 21514 | 114 void (*ins_del_lines_hook) P_ ((int, int)); |
| 253 | 115 |
| 25002 | 116 void (*change_line_highlight_hook) P_ ((int, int, int, int)); |
| 21514 | 117 void (*reassert_line_highlight_hook) P_ ((int, int)); |
| 253 | 118 |
| 21514 | 119 void (*delete_glyphs_hook) P_ ((int)); |
| 253 | 120 |
| 21514 | 121 void (*ring_bell_hook) P_ ((void)); |
| 253 | 122 |
| 21514 | 123 void (*reset_terminal_modes_hook) P_ ((void)); |
| 124 void (*set_terminal_modes_hook) P_ ((void)); | |
| 125 void (*update_begin_hook) P_ ((struct frame *)); | |
| 126 void (*update_end_hook) P_ ((struct frame *)); | |
| 127 void (*set_terminal_window_hook) P_ ((int)); | |
| 25002 | 128 void (*insert_glyphs_hook) P_ ((struct glyph *, int)); |
| 129 void (*write_glyphs_hook) P_ ((struct glyph *, int)); | |
| 130 void (*delete_glyphs_hook) P_ ((int)); | |
| 253 | 131 |
| 21514 | 132 int (*read_socket_hook) P_ ((int, struct input_event *, int, int)); |
| 253 | 133 |
| 21514 | 134 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
|
135 |
|
1717
aa7d6d57504b
* frame.h (struct frame): New fields `can_have_scrollbars' and
Jim Blandy <jimb@redhat.com>
parents:
1015
diff
changeset
|
136 /* 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
|
137 |
|
3f161f6701b1
* term.c (set_vertical_scrollbar_hook, condemn_scrollbars_hook,
Jim Blandy <jimb@redhat.com>
parents:
1717
diff
changeset
|
138 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
|
139 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
|
140 garbage. |
|
3f161f6701b1
* term.c (set_vertical_scrollbar_hook, condemn_scrollbars_hook,
Jim Blandy <jimb@redhat.com>
parents:
1717
diff
changeset
|
141 |
|
1994
73ce9dd21093
Use the term `scroll bar', instead of `scrollbar'.
Jim Blandy <jimb@redhat.com>
parents:
1821
diff
changeset
|
142 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
|
143 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
|
144 *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
|
145 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
|
146 |
|
3f161f6701b1
* term.c (set_vertical_scrollbar_hook, condemn_scrollbars_hook,
Jim Blandy <jimb@redhat.com>
parents:
1717
diff
changeset
|
147 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
|
148 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
|
149 |
|
3f161f6701b1
* term.c (set_vertical_scrollbar_hook, condemn_scrollbars_hook,
Jim Blandy <jimb@redhat.com>
parents:
1717
diff
changeset
|
150 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
|
151 |
|
3f161f6701b1
* term.c (set_vertical_scrollbar_hook, condemn_scrollbars_hook,
Jim Blandy <jimb@redhat.com>
parents:
1717
diff
changeset
|
152 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
|
153 event arrives. */ |
| 21514 | 154 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
|
155 Lisp_Object *bar_window, |
|
1994
73ce9dd21093
Use the term `scroll bar', instead of `scrollbar'.
Jim Blandy <jimb@redhat.com>
parents:
1821
diff
changeset
|
156 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
|
157 Lisp_Object *x, |
|
aa7d6d57504b
* frame.h (struct frame): New fields `can_have_scrollbars' and
Jim Blandy <jimb@redhat.com>
parents:
1015
diff
changeset
|
158 Lisp_Object *y, |
| 21514 | 159 unsigned long *time)); |
| 253 | 160 |
| 765 | 161 /* When reading from a minibuffer in a different frame, Emacs wants |
| 25002 | 162 to shift the highlight from the selected frame to the mini-buffer's |
| 765 | 163 frame; under X, this means it lies about where the focus is. |
| 339 | 164 This hook tells the window system code to re-decide where to put |
| 165 the highlight. */ | |
| 21514 | 166 void (*frame_rehighlight_hook) P_ ((FRAME_PTR f)); |
| 339 | 167 |
|
1821
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1781
diff
changeset
|
168 /* 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
|
169 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
|
170 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
|
171 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
|
172 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
|
173 anything. |
|
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1781
diff
changeset
|
174 |
|
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1781
diff
changeset
|
175 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
|
176 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
|
177 windows. */ |
| 21514 | 178 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
|
179 |
|
1994
73ce9dd21093
Use the term `scroll bar', instead of `scrollbar'.
Jim Blandy <jimb@redhat.com>
parents:
1821
diff
changeset
|
180 /* 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
|
181 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
|
182 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
|
183 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
|
184 have a scroll bar, create one for it. */ |
| 25002 | 185 |
|
1994
73ce9dd21093
Use the term `scroll bar', instead of `scrollbar'.
Jim Blandy <jimb@redhat.com>
parents:
1821
diff
changeset
|
186 void (*set_vertical_scroll_bar_hook) |
| 21514 | 187 P_ ((struct window *window, |
| 188 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
|
189 |
|
1781
3f161f6701b1
* term.c (set_vertical_scrollbar_hook, condemn_scrollbars_hook,
Jim Blandy <jimb@redhat.com>
parents:
1717
diff
changeset
|
190 |
|
1717
aa7d6d57504b
* frame.h (struct frame): New fields `can_have_scrollbars' and
Jim Blandy <jimb@redhat.com>
parents:
1015
diff
changeset
|
191 /* 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
|
192 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
|
193 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
|
194 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
|
195 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
|
196 scroll bars are to be removed, and then save scroll bars from the |
| 14036 | 197 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
|
198 |
|
1994
73ce9dd21093
Use the term `scroll bar', instead of `scrollbar'.
Jim Blandy <jimb@redhat.com>
parents:
1821
diff
changeset
|
199 /* 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
|
200 to `*judge_scroll_bars_hook'. A scroll bar may be spared if |
| 25002 | 201 `*redeem_scroll_bar_hook' is applied to its window before the judgment. |
|
1781
3f161f6701b1
* term.c (set_vertical_scrollbar_hook, condemn_scrollbars_hook,
Jim Blandy <jimb@redhat.com>
parents:
1717
diff
changeset
|
202 |
|
3f161f6701b1
* term.c (set_vertical_scrollbar_hook, condemn_scrollbars_hook,
Jim Blandy <jimb@redhat.com>
parents:
1717
diff
changeset
|
203 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
|
204 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
|
205 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
|
206 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
|
207 |
|
1781
3f161f6701b1
* term.c (set_vertical_scrollbar_hook, condemn_scrollbars_hook,
Jim Blandy <jimb@redhat.com>
parents:
1717
diff
changeset
|
208 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
|
209 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
|
210 currently displaying them. */ |
| 21514 | 211 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
|
212 |
|
1994
73ce9dd21093
Use the term `scroll bar', instead of `scrollbar'.
Jim Blandy <jimb@redhat.com>
parents:
1821
diff
changeset
|
213 /* 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
|
214 Note that it's okay to redeem a scroll bar that is not condemned. */ |
| 21514 | 215 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
|
216 |
|
1994
73ce9dd21093
Use the term `scroll bar', instead of `scrollbar'.
Jim Blandy <jimb@redhat.com>
parents:
1821
diff
changeset
|
217 /* 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
|
218 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
|
219 |
|
3f161f6701b1
* term.c (set_vertical_scrollbar_hook, condemn_scrollbars_hook,
Jim Blandy <jimb@redhat.com>
parents:
1717
diff
changeset
|
220 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
|
221 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
|
222 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
|
223 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
|
224 |
|
3f161f6701b1
* term.c (set_vertical_scrollbar_hook, condemn_scrollbars_hook,
Jim Blandy <jimb@redhat.com>
parents:
1717
diff
changeset
|
225 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
|
226 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
|
227 currently displaying them. */ |
| 21514 | 228 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
|
229 |
| 25002 | 230 /* Hook to call in estimate_mode_line_height, if any. */ |
| 231 | |
| 232 int (* estimate_mode_line_height_hook) P_ ((struct frame *f, enum face_id)); | |
| 233 | |
|
1717
aa7d6d57504b
* frame.h (struct frame): New fields `can_have_scrollbars' and
Jim Blandy <jimb@redhat.com>
parents:
1015
diff
changeset
|
234 |
| 253 | 235 /* Strings, numbers and flags taken from the termcap entry. */ |
| 236 | |
|
17046
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
237 char *TS_ins_line; /* "al" */ |
| 253 | 238 char *TS_ins_multi_lines; /* "AL" (one parameter, # lines to insert) */ |
| 239 char *TS_bell; /* "bl" */ | |
| 240 char *TS_clr_to_bottom; /* "cd" */ | |
| 241 char *TS_clr_line; /* "ce", clear to end of line */ | |
| 765 | 242 char *TS_clr_frame; /* "cl" */ |
| 253 | 243 char *TS_set_scroll_region; /* "cs" (2 params, first line and last line) */ |
| 244 char *TS_set_scroll_region_1; /* "cS" (4 params: total lines, | |
| 245 lines above scroll region, lines below it, | |
| 246 total lines again) */ | |
| 247 char *TS_del_char; /* "dc" */ | |
| 248 char *TS_del_multi_chars; /* "DC" (one parameter, # chars to delete) */ | |
| 249 char *TS_del_line; /* "dl" */ | |
| 250 char *TS_del_multi_lines; /* "DL" (one parameter, # lines to delete) */ | |
| 251 char *TS_delete_mode; /* "dm", enter character-delete mode */ | |
| 252 char *TS_end_delete_mode; /* "ed", leave character-delete mode */ | |
| 253 char *TS_end_insert_mode; /* "ei", leave character-insert mode */ | |
| 254 char *TS_ins_char; /* "ic" */ | |
| 255 char *TS_ins_multi_chars; /* "IC" (one parameter, # chars to insert) */ | |
| 256 char *TS_insert_mode; /* "im", enter character-insert mode */ | |
| 257 char *TS_pad_inserted_char; /* "ip". Just padding, no commands. */ | |
| 258 char *TS_end_keypad_mode; /* "ke" */ | |
| 259 char *TS_keypad_mode; /* "ks" */ | |
| 260 char *TS_pad_char; /* "pc", char to use as padding */ | |
| 261 char *TS_repeat; /* "rp" (2 params, # times to repeat | |
| 262 and character to be repeated) */ | |
| 263 char *TS_end_standout_mode; /* "se" */ | |
| 264 char *TS_fwd_scroll; /* "sf" */ | |
| 265 char *TS_standout_mode; /* "so" */ | |
| 266 char *TS_rev_scroll; /* "sr" */ | |
| 267 char *TS_end_termcap_modes; /* "te" */ | |
| 268 char *TS_termcap_modes; /* "ti" */ | |
| 269 char *TS_visible_bell; /* "vb" */ | |
| 25002 | 270 char *TS_cursor_normal; /* "ve" */ |
| 271 char *TS_cursor_visible; /* "vs" */ | |
| 272 char *TS_cursor_invisible; /* "vi" */ | |
| 253 | 273 char *TS_set_window; /* "wi" (4 params, start and end of window, |
| 274 each as vpos and hpos) */ | |
| 275 | |
|
28465
113efc964095
(TN_no_color_video): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
28200
diff
changeset
|
276 /* Value of the "NC" (no_color_video) capability, or 0 if not |
|
113efc964095
(TN_no_color_video): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
28200
diff
changeset
|
277 present. */ |
|
113efc964095
(TN_no_color_video): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
28200
diff
changeset
|
278 |
|
113efc964095
(TN_no_color_video): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
28200
diff
changeset
|
279 static int TN_no_color_video; |
|
113efc964095
(TN_no_color_video): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
28200
diff
changeset
|
280 |
|
113efc964095
(TN_no_color_video): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
28200
diff
changeset
|
281 /* Meaning of bits in no_color_video. Each bit set means that the |
|
113efc964095
(TN_no_color_video): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
28200
diff
changeset
|
282 corresponding attribute cannot be combined with colors. */ |
|
113efc964095
(TN_no_color_video): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
28200
diff
changeset
|
283 |
|
113efc964095
(TN_no_color_video): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
28200
diff
changeset
|
284 enum no_color_bit |
|
113efc964095
(TN_no_color_video): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
28200
diff
changeset
|
285 { |
|
113efc964095
(TN_no_color_video): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
28200
diff
changeset
|
286 NC_STANDOUT = 1 << 0, |
|
113efc964095
(TN_no_color_video): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
28200
diff
changeset
|
287 NC_UNDERLINE = 1 << 1, |
|
113efc964095
(TN_no_color_video): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
28200
diff
changeset
|
288 NC_REVERSE = 1 << 2, |
|
113efc964095
(TN_no_color_video): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
28200
diff
changeset
|
289 NC_BLINK = 1 << 3, |
|
113efc964095
(TN_no_color_video): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
28200
diff
changeset
|
290 NC_DIM = 1 << 4, |
|
113efc964095
(TN_no_color_video): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
28200
diff
changeset
|
291 NC_BOLD = 1 << 5, |
|
113efc964095
(TN_no_color_video): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
28200
diff
changeset
|
292 NC_INVIS = 1 << 6, |
|
113efc964095
(TN_no_color_video): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
28200
diff
changeset
|
293 NC_PROTECT = 1 << 7, |
|
113efc964095
(TN_no_color_video): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
28200
diff
changeset
|
294 NC_ALT_CHARSET = 1 << 8 |
|
113efc964095
(TN_no_color_video): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
28200
diff
changeset
|
295 }; |
|
113efc964095
(TN_no_color_video): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
28200
diff
changeset
|
296 |
| 25002 | 297 /* "md" -- turn on bold (extra bright mode). */ |
| 298 | |
| 299 char *TS_enter_bold_mode; | |
| 300 | |
| 301 /* "mh" -- turn on half-bright mode. */ | |
| 302 | |
| 303 char *TS_enter_dim_mode; | |
| 304 | |
| 305 /* "mb" -- enter blinking mode. */ | |
| 306 | |
| 307 char *TS_enter_blink_mode; | |
| 308 | |
| 309 /* "mr" -- enter reverse video mode. */ | |
| 310 | |
| 311 char *TS_enter_reverse_mode; | |
| 312 | |
| 313 /* "us"/"ue" -- start/end underlining. */ | |
| 314 | |
| 315 char *TS_exit_underline_mode, *TS_enter_underline_mode; | |
| 316 | |
| 317 /* "ug" -- number of blanks left by underline. */ | |
| 318 | |
| 319 int TN_magic_cookie_glitch_ul; | |
| 320 | |
| 321 /* "as"/"ae" -- start/end alternate character set. Not really | |
| 322 supported, yet. */ | |
| 323 | |
| 324 char *TS_enter_alt_charset_mode, *TS_exit_alt_charset_mode; | |
| 325 | |
| 326 /* "me" -- switch appearances off. */ | |
| 327 | |
| 328 char *TS_exit_attribute_mode; | |
| 329 | |
| 330 /* "Co" -- number of colors. */ | |
| 331 | |
| 332 int TN_max_colors; | |
| 333 | |
| 334 /* "pa" -- max. number of color pairs on screen. Not handled yet. | |
| 335 Could be a problem if not equal to TN_max_colors * TN_max_colors. */ | |
| 336 | |
| 337 int TN_max_pairs; | |
| 338 | |
| 339 /* "op" -- SVr4 set default pair to its original value. */ | |
| 340 | |
| 341 char *TS_orig_pair; | |
| 342 | |
| 343 /* "AF"/"AB" or "Sf"/"Sb"-- set ANSI or SVr4 foreground/background color. | |
| 344 1 param, the color index. */ | |
| 345 | |
| 346 char *TS_set_foreground, *TS_set_background; | |
| 347 | |
| 253 | 348 int TF_hazeltine; /* termcap hz flag. */ |
| 349 int TF_insmode_motion; /* termcap mi flag: can move while in insert mode. */ | |
| 350 int TF_standout_motion; /* termcap mi flag: can move while in standout mode. */ | |
| 25002 | 351 int TF_underscore; /* termcap ul flag: _ underlines if over-struck on |
| 352 non-blank position. Must clear before writing _. */ | |
| 253 | 353 int TF_teleray; /* termcap xt flag: many weird consequences. |
| 354 For t1061. */ | |
| 355 | |
| 356 int TF_xs; /* Nonzero for "xs". If set together with | |
| 357 TN_standout_width == 0, it means don't bother | |
| 358 to write any end-standout cookies. */ | |
| 359 | |
| 360 int TN_standout_width; /* termcap sg number: width occupied by standout | |
| 361 markers */ | |
| 362 | |
| 363 static int RPov; /* # chars to start a TS_repeat */ | |
| 364 | |
| 365 static int delete_in_insert_mode; /* delete mode == insert mode */ | |
| 366 | |
| 367 static int se_is_so; /* 1 if same string both enters and leaves | |
| 368 standout mode */ | |
| 369 | |
| 370 /* internal state */ | |
| 371 | |
|
10771
d564078d10c6
(calculate_costs): Update max_frame_height, max_frame_width.
Richard M. Stallman <rms@gnu.org>
parents:
10481
diff
changeset
|
372 /* The largest frame width in any call to calculate_costs. */ |
| 25002 | 373 |
|
10771
d564078d10c6
(calculate_costs): Update max_frame_height, max_frame_width.
Richard M. Stallman <rms@gnu.org>
parents:
10481
diff
changeset
|
374 int max_frame_width; |
| 25002 | 375 |
|
10771
d564078d10c6
(calculate_costs): Update max_frame_height, max_frame_width.
Richard M. Stallman <rms@gnu.org>
parents:
10481
diff
changeset
|
376 /* The largest frame height in any call to calculate_costs. */ |
| 25002 | 377 |
|
10771
d564078d10c6
(calculate_costs): Update max_frame_height, max_frame_width.
Richard M. Stallman <rms@gnu.org>
parents:
10481
diff
changeset
|
378 int max_frame_height; |
|
d564078d10c6
(calculate_costs): Update max_frame_height, max_frame_width.
Richard M. Stallman <rms@gnu.org>
parents:
10481
diff
changeset
|
379 |
| 253 | 380 /* Number of chars of space used for standout marker at beginning of line, |
| 381 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
|
382 The length of these vectors is max_frame_height. |
| 253 | 383 |
| 384 Used IFF TN_standout_width >= 0. */ | |
| 385 | |
| 386 static char *chars_wasted; | |
| 387 static char *copybuf; | |
| 388 | |
| 389 /* nonzero means supposed to write text in standout mode. */ | |
| 25002 | 390 |
| 253 | 391 int standout_requested; |
| 392 | |
| 393 int insert_mode; /* Nonzero when in insert mode. */ | |
| 394 int standout_mode; /* Nonzero when in standout mode. */ | |
| 395 | |
| 396 /* Size of window specified by higher levels. | |
| 765 | 397 This is the number of lines, from the top of frame downwards, |
| 253 | 398 which can participate in insert-line/delete-line operations. |
| 399 | |
| 765 | 400 Effectively it excludes the bottom frame_height - specified_window_size |
| 253 | 401 lines from those operations. */ |
| 402 | |
| 403 int specified_window; | |
| 404 | |
| 765 | 405 /* Frame currently being redisplayed; 0 if not currently redisplaying. |
| 253 | 406 (Direct output does not count). */ |
| 407 | |
| 765 | 408 FRAME_PTR updating_frame; |
| 253 | 409 |
|
6752
f9236145bad7
(system_uses_terminfo): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
6652
diff
changeset
|
410 /* Provided for lisp packages. */ |
| 25002 | 411 |
|
6752
f9236145bad7
(system_uses_terminfo): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
6652
diff
changeset
|
412 static int system_uses_terminfo; |
|
f9236145bad7
(system_uses_terminfo): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
6652
diff
changeset
|
413 |
| 253 | 414 char *tparam (); |
|
8612
86065bec6fc9
(term_init): Added missing argument to tgetstr.
Richard M. Stallman <rms@gnu.org>
parents:
8027
diff
changeset
|
415 |
|
86065bec6fc9
(term_init): Added missing argument to tgetstr.
Richard M. Stallman <rms@gnu.org>
parents:
8027
diff
changeset
|
416 extern char *tgetstr (); |
| 253 | 417 |
|
9797
05d9072c5a38
(term_init) [WINDOWSNT]: Do some Windows-specific
Richard M. Stallman <rms@gnu.org>
parents:
9658
diff
changeset
|
418 |
|
05d9072c5a38
(term_init) [WINDOWSNT]: Do some Windows-specific
Richard M. Stallman <rms@gnu.org>
parents:
9658
diff
changeset
|
419 #ifdef WINDOWSNT |
| 25002 | 420 |
|
9797
05d9072c5a38
(term_init) [WINDOWSNT]: Do some Windows-specific
Richard M. Stallman <rms@gnu.org>
parents:
9658
diff
changeset
|
421 /* 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
|
422 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
|
423 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
|
424 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
|
425 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
|
426 |
|
05d9072c5a38
(term_init) [WINDOWSNT]: Do some Windows-specific
Richard M. Stallman <rms@gnu.org>
parents:
9658
diff
changeset
|
427 #undef FRAME_TERMCAP_P |
|
05d9072c5a38
(term_init) [WINDOWSNT]: Do some Windows-specific
Richard M. Stallman <rms@gnu.org>
parents:
9658
diff
changeset
|
428 #define FRAME_TERMCAP_P(_f_) 0 |
|
05d9072c5a38
(term_init) [WINDOWSNT]: Do some Windows-specific
Richard M. Stallman <rms@gnu.org>
parents:
9658
diff
changeset
|
429 #endif /* WINDOWSNT */ |
|
05d9072c5a38
(term_init) [WINDOWSNT]: Do some Windows-specific
Richard M. Stallman <rms@gnu.org>
parents:
9658
diff
changeset
|
430 |
| 21514 | 431 void |
| 253 | 432 ring_bell () |
| 433 { | |
|
15974
61249a8fe735
(Vring_bell_function): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
15094
diff
changeset
|
434 if (! NILP (Vring_bell_function)) |
|
61249a8fe735
(Vring_bell_function): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
15094
diff
changeset
|
435 { |
|
61249a8fe735
(Vring_bell_function): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
15094
diff
changeset
|
436 Lisp_Object function; |
|
61249a8fe735
(Vring_bell_function): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
15094
diff
changeset
|
437 |
|
61249a8fe735
(Vring_bell_function): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
15094
diff
changeset
|
438 /* Temporarily set the global variable to nil |
|
61249a8fe735
(Vring_bell_function): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
15094
diff
changeset
|
439 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
|
440 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
|
441 |
|
61249a8fe735
(Vring_bell_function): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
15094
diff
changeset
|
442 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
|
443 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
|
444 and make the loop of errors happen anyway. */ |
|
61249a8fe735
(Vring_bell_function): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
15094
diff
changeset
|
445 function = Vring_bell_function; |
|
61249a8fe735
(Vring_bell_function): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
15094
diff
changeset
|
446 Vring_bell_function = Qnil; |
|
61249a8fe735
(Vring_bell_function): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
15094
diff
changeset
|
447 |
|
61249a8fe735
(Vring_bell_function): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
15094
diff
changeset
|
448 call0 (function); |
|
61249a8fe735
(Vring_bell_function): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
15094
diff
changeset
|
449 |
|
61249a8fe735
(Vring_bell_function): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
15094
diff
changeset
|
450 Vring_bell_function = function; |
|
61249a8fe735
(Vring_bell_function): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
15094
diff
changeset
|
451 return; |
|
61249a8fe735
(Vring_bell_function): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
15094
diff
changeset
|
452 } |
|
61249a8fe735
(Vring_bell_function): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
15094
diff
changeset
|
453 |
|
25675
992d0d097e54
(OUTPUT): Change for Lisp_Object selected_frame.
Gerd Moellmann <gerd@gnu.org>
parents:
25187
diff
changeset
|
454 if (! FRAME_TERMCAP_P (XFRAME (selected_frame))) |
| 253 | 455 { |
| 456 (*ring_bell_hook) (); | |
| 457 return; | |
| 458 } | |
| 459 OUTPUT (TS_visible_bell && visible_bell ? TS_visible_bell : TS_bell); | |
| 460 } | |
| 461 | |
| 21514 | 462 void |
| 253 | 463 set_terminal_modes () |
| 464 { | |
|
25675
992d0d097e54
(OUTPUT): Change for Lisp_Object selected_frame.
Gerd Moellmann <gerd@gnu.org>
parents:
25187
diff
changeset
|
465 if (! FRAME_TERMCAP_P (XFRAME (selected_frame))) |
| 253 | 466 { |
| 467 (*set_terminal_modes_hook) (); | |
| 468 return; | |
| 469 } | |
| 470 OUTPUT_IF (TS_termcap_modes); | |
| 25002 | 471 OUTPUT_IF (TS_cursor_visible); |
| 253 | 472 OUTPUT_IF (TS_keypad_mode); |
| 473 losecursor (); | |
| 474 } | |
| 475 | |
| 21514 | 476 void |
| 253 | 477 reset_terminal_modes () |
| 478 { | |
|
25675
992d0d097e54
(OUTPUT): Change for Lisp_Object selected_frame.
Gerd Moellmann <gerd@gnu.org>
parents:
25187
diff
changeset
|
479 if (! FRAME_TERMCAP_P (XFRAME (selected_frame))) |
| 253 | 480 { |
|
21624
d7c8600f8775
(reset_terminal_modes): Only invoke hook if defined.
Geoff Voelker <voelker@cs.washington.edu>
parents:
21514
diff
changeset
|
481 if (reset_terminal_modes_hook) |
|
d7c8600f8775
(reset_terminal_modes): Only invoke hook if defined.
Geoff Voelker <voelker@cs.washington.edu>
parents:
21514
diff
changeset
|
482 (*reset_terminal_modes_hook) (); |
| 253 | 483 return; |
| 484 } | |
| 485 if (TN_standout_width < 0) | |
| 486 turn_off_highlight (); | |
| 487 turn_off_insert (); | |
| 488 OUTPUT_IF (TS_end_keypad_mode); | |
| 25002 | 489 OUTPUT_IF (TS_cursor_normal); |
| 253 | 490 OUTPUT_IF (TS_end_termcap_modes); |
| 25002 | 491 OUTPUT_IF (TS_orig_pair); |
| 253 | 492 /* Output raw CR so kernel can track the cursor hpos. */ |
| 493 /* But on magic-cookie terminals this can erase an end-standout marker and | |
| 765 | 494 cause the rest of the frame to be in standout, so move down first. */ |
| 253 | 495 if (TN_standout_width >= 0) |
| 496 cmputc ('\n'); | |
| 497 cmputc ('\r'); | |
| 498 } | |
| 499 | |
| 21514 | 500 void |
| 765 | 501 update_begin (f) |
| 502 FRAME_PTR f; | |
| 253 | 503 { |
| 765 | 504 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
|
505 if (! FRAME_TERMCAP_P (updating_frame)) |
| 765 | 506 (*update_begin_hook) (f); |
| 25002 | 507 else |
| 508 tty_hide_cursor (); | |
| 253 | 509 } |
| 510 | |
| 21514 | 511 void |
| 765 | 512 update_end (f) |
| 513 FRAME_PTR f; | |
| 253 | 514 { |
|
969
16649ee21625
* term.c (FRAME_IS_TERMCAP, FRAME_IS_X, FRAME_HAS_MINIBUF):
Jim Blandy <jimb@redhat.com>
parents:
797
diff
changeset
|
515 if (! FRAME_TERMCAP_P (updating_frame)) |
| 253 | 516 { |
|
7649
eeefa4ac7978
(update_end): Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents:
6752
diff
changeset
|
517 (*update_end_hook) (f); |
|
5648
bd8a172bf8a0
(update_end): Clear updating_frame before calling hook.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
518 updating_frame = 0; |
| 253 | 519 return; |
| 520 } | |
| 25002 | 521 |
| 522 if (!XWINDOW (selected_window)->cursor_off_p) | |
| 523 tty_show_cursor (); | |
| 524 | |
| 253 | 525 turn_off_insert (); |
| 526 background_highlight (); | |
| 527 standout_requested = 0; | |
| 765 | 528 updating_frame = 0; |
| 253 | 529 } |
| 530 | |
| 21514 | 531 void |
| 253 | 532 set_terminal_window (size) |
| 533 int size; | |
| 534 { | |
|
969
16649ee21625
* term.c (FRAME_IS_TERMCAP, FRAME_IS_X, FRAME_HAS_MINIBUF):
Jim Blandy <jimb@redhat.com>
parents:
797
diff
changeset
|
535 if (! FRAME_TERMCAP_P (updating_frame)) |
| 253 | 536 { |
| 537 (*set_terminal_window_hook) (size); | |
| 538 return; | |
| 539 } | |
|
25675
992d0d097e54
(OUTPUT): Change for Lisp_Object selected_frame.
Gerd Moellmann <gerd@gnu.org>
parents:
25187
diff
changeset
|
540 specified_window = size ? size : FRAME_HEIGHT (XFRAME (selected_frame)); |
| 253 | 541 if (!scroll_region_ok) |
| 542 return; | |
| 543 set_scroll_region (0, specified_window); | |
| 544 } | |
| 545 | |
| 21514 | 546 void |
| 253 | 547 set_scroll_region (start, stop) |
| 548 int start, stop; | |
| 549 { | |
| 550 char *buf; | |
|
25675
992d0d097e54
(OUTPUT): Change for Lisp_Object selected_frame.
Gerd Moellmann <gerd@gnu.org>
parents:
25187
diff
changeset
|
551 struct frame *sf = XFRAME (selected_frame); |
|
992d0d097e54
(OUTPUT): Change for Lisp_Object selected_frame.
Gerd Moellmann <gerd@gnu.org>
parents:
25187
diff
changeset
|
552 |
| 253 | 553 if (TS_set_scroll_region) |
| 554 { | |
| 555 buf = tparam (TS_set_scroll_region, 0, 0, start, stop - 1); | |
| 556 } | |
| 557 else if (TS_set_scroll_region_1) | |
| 558 { | |
| 559 buf = tparam (TS_set_scroll_region_1, 0, 0, | |
|
25675
992d0d097e54
(OUTPUT): Change for Lisp_Object selected_frame.
Gerd Moellmann <gerd@gnu.org>
parents:
25187
diff
changeset
|
560 FRAME_HEIGHT (sf), start, |
|
992d0d097e54
(OUTPUT): Change for Lisp_Object selected_frame.
Gerd Moellmann <gerd@gnu.org>
parents:
25187
diff
changeset
|
561 FRAME_HEIGHT (sf) - stop, |
|
992d0d097e54
(OUTPUT): Change for Lisp_Object selected_frame.
Gerd Moellmann <gerd@gnu.org>
parents:
25187
diff
changeset
|
562 FRAME_HEIGHT (sf)); |
| 253 | 563 } |
| 564 else | |
| 565 { | |
|
25675
992d0d097e54
(OUTPUT): Change for Lisp_Object selected_frame.
Gerd Moellmann <gerd@gnu.org>
parents:
25187
diff
changeset
|
566 buf = tparam (TS_set_window, 0, 0, start, 0, stop, FRAME_WIDTH (sf)); |
| 253 | 567 } |
| 568 OUTPUT (buf); | |
|
2439
b6c62e4abf59
Put interrupt input blocking in a separate file from xterm.h.
Jim Blandy <jimb@redhat.com>
parents:
2243
diff
changeset
|
569 xfree (buf); |
| 253 | 570 losecursor (); |
| 571 } | |
| 572 | |
| 21514 | 573 void |
| 253 | 574 turn_on_insert () |
| 575 { | |
| 576 if (!insert_mode) | |
| 577 OUTPUT (TS_insert_mode); | |
| 578 insert_mode = 1; | |
| 579 } | |
| 580 | |
| 21514 | 581 void |
| 253 | 582 turn_off_insert () |
| 583 { | |
| 584 if (insert_mode) | |
| 585 OUTPUT (TS_end_insert_mode); | |
| 586 insert_mode = 0; | |
| 587 } | |
| 588 | |
| 589 /* Handle highlighting when TN_standout_width (termcap sg) is not specified. | |
| 590 In these terminals, output is affected by the value of standout | |
| 591 mode when the output is written. | |
| 592 | |
| 593 These functions are called on all terminals, but do nothing | |
| 594 on terminals whose standout mode does not work that way. */ | |
| 595 | |
| 21514 | 596 void |
| 253 | 597 turn_off_highlight () |
| 598 { | |
| 599 if (TN_standout_width < 0) | |
| 600 { | |
| 601 if (standout_mode) | |
| 602 OUTPUT_IF (TS_end_standout_mode); | |
| 603 standout_mode = 0; | |
| 604 } | |
| 605 } | |
| 606 | |
| 21514 | 607 void |
| 253 | 608 turn_on_highlight () |
| 609 { | |
| 610 if (TN_standout_width < 0) | |
| 611 { | |
| 612 if (!standout_mode) | |
| 613 OUTPUT_IF (TS_standout_mode); | |
| 614 standout_mode = 1; | |
| 615 } | |
| 616 } | |
| 617 | |
| 25002 | 618 |
| 619 /* Make cursor invisible. */ | |
| 620 | |
| 621 static void | |
| 622 tty_hide_cursor () | |
| 623 { | |
| 624 OUTPUT_IF (TS_cursor_invisible); | |
| 625 } | |
| 626 | |
| 627 | |
| 628 /* Ensure that cursor is visible. */ | |
| 629 | |
| 630 static void | |
| 631 tty_show_cursor () | |
| 632 { | |
| 633 OUTPUT_IF (TS_cursor_normal); | |
| 634 OUTPUT_IF (TS_cursor_visible); | |
| 635 } | |
| 636 | |
| 637 | |
| 253 | 638 /* Set standout mode to the state it should be in for |
| 639 empty space inside windows. What this is, | |
| 640 depends on the user option inverse-video. */ | |
| 641 | |
| 21514 | 642 void |
| 253 | 643 background_highlight () |
| 644 { | |
| 645 if (TN_standout_width >= 0) | |
| 646 return; | |
| 647 if (inverse_video) | |
| 648 turn_on_highlight (); | |
| 649 else | |
| 650 turn_off_highlight (); | |
| 651 } | |
| 652 | |
| 653 /* Set standout mode to the mode specified for the text to be output. */ | |
| 654 | |
| 21514 | 655 static void |
| 253 | 656 highlight_if_desired () |
| 657 { | |
| 658 if (TN_standout_width >= 0) | |
| 659 return; | |
| 660 if (!inverse_video == !standout_requested) | |
| 661 turn_off_highlight (); | |
| 662 else | |
| 663 turn_on_highlight (); | |
| 664 } | |
| 665 | |
| 666 /* Handle standout mode for terminals in which TN_standout_width >= 0. | |
| 667 On these terminals, standout is controlled by markers that | |
| 765 | 668 live inside the terminal's memory. TN_standout_width is the width |
| 253 | 669 that the marker occupies in memory. Standout runs from the marker |
| 670 to the end of the line on some terminals, or to the next | |
| 671 turn-off-standout marker (TS_end_standout_mode) string | |
| 672 on other terminals. */ | |
| 673 | |
| 674 /* Write a standout marker or end-standout marker at the front of the line | |
| 675 at vertical position vpos. */ | |
| 676 | |
| 21514 | 677 void |
| 253 | 678 write_standout_marker (flag, vpos) |
| 679 int flag, vpos; | |
| 680 { | |
| 681 if (flag || (TS_end_standout_mode && !TF_teleray && !se_is_so | |
| 682 && !(TF_xs && TN_standout_width == 0))) | |
| 683 { | |
| 684 cmgoto (vpos, 0); | |
| 685 cmplus (TN_standout_width); | |
| 686 OUTPUT (flag ? TS_standout_mode : TS_end_standout_mode); | |
| 687 chars_wasted[curY] = TN_standout_width | 0100; | |
| 688 } | |
| 689 } | |
| 690 | |
| 691 /* External interface to control of standout mode. | |
| 692 Call this when about to modify line at position VPOS | |
| 693 and not change whether it is highlighted. */ | |
| 694 | |
| 21514 | 695 void |
| 253 | 696 reassert_line_highlight (highlight, vpos) |
| 697 int highlight; | |
| 698 int vpos; | |
| 699 { | |
|
25675
992d0d097e54
(OUTPUT): Change for Lisp_Object selected_frame.
Gerd Moellmann <gerd@gnu.org>
parents:
25187
diff
changeset
|
700 struct frame *f = updating_frame ? updating_frame : XFRAME (selected_frame); |
|
992d0d097e54
(OUTPUT): Change for Lisp_Object selected_frame.
Gerd Moellmann <gerd@gnu.org>
parents:
25187
diff
changeset
|
701 if (! FRAME_TERMCAP_P (f)) |
| 253 | 702 { |
| 703 (*reassert_line_highlight_hook) (highlight, vpos); | |
| 704 return; | |
| 705 } | |
| 706 if (TN_standout_width < 0) | |
| 707 /* Handle terminals where standout takes affect at output time */ | |
| 708 standout_requested = highlight; | |
| 25002 | 709 else if (chars_wasted && chars_wasted[vpos] == 0) |
| 253 | 710 /* For terminals with standout markers, write one on this line |
| 711 if there isn't one already. */ | |
| 712 write_standout_marker (highlight, vpos); | |
| 713 } | |
| 714 | |
| 715 /* Call this when about to modify line at position VPOS | |
| 716 and change whether it is highlighted. */ | |
| 717 | |
| 21514 | 718 void |
| 25002 | 719 change_line_highlight (new_highlight, vpos, y, first_unused_hpos) |
| 720 int new_highlight, vpos, y, first_unused_hpos; | |
| 253 | 721 { |
| 722 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
|
723 if (! FRAME_TERMCAP_P (updating_frame)) |
| 253 | 724 { |
| 25002 | 725 (*change_line_highlight_hook) (new_highlight, vpos, y, first_unused_hpos); |
| 253 | 726 return; |
| 727 } | |
| 728 | |
| 729 cursor_to (vpos, 0); | |
| 730 | |
| 731 if (TN_standout_width < 0) | |
| 732 background_highlight (); | |
| 733 /* If line starts with a marker, delete the marker */ | |
| 734 else if (TS_clr_line && chars_wasted[curY]) | |
| 735 { | |
| 736 turn_off_insert (); | |
| 737 /* On Teleray, make sure to erase the SO marker. */ | |
| 738 if (TF_teleray) | |
| 739 { | |
|
25675
992d0d097e54
(OUTPUT): Change for Lisp_Object selected_frame.
Gerd Moellmann <gerd@gnu.org>
parents:
25187
diff
changeset
|
740 cmgoto (curY - 1, FRAME_WIDTH (XFRAME (selected_frame)) - 4); |
| 253 | 741 OUTPUT ("\033S"); |
| 742 curY++; /* ESC S moves to next line where the TS_standout_mode was */ | |
| 743 curX = 0; | |
| 744 } | |
| 745 else | |
| 746 cmgoto (curY, 0); /* reposition to kill standout marker */ | |
| 747 } | |
| 748 clear_end_of_line_raw (first_unused_hpos); | |
| 749 reassert_line_highlight (new_highlight, curY); | |
| 750 } | |
| 751 | |
| 752 | |
| 25002 | 753 /* Move cursor to row/column position VPOS/HPOS. HPOS/VPOS are |
| 754 frame-relative coordinates. */ | |
| 253 | 755 |
| 21514 | 756 void |
| 25002 | 757 cursor_to (vpos, hpos) |
| 758 int vpos, hpos; | |
| 253 | 759 { |
|
25675
992d0d097e54
(OUTPUT): Change for Lisp_Object selected_frame.
Gerd Moellmann <gerd@gnu.org>
parents:
25187
diff
changeset
|
760 struct frame *f = updating_frame ? updating_frame : XFRAME (selected_frame); |
|
992d0d097e54
(OUTPUT): Change for Lisp_Object selected_frame.
Gerd Moellmann <gerd@gnu.org>
parents:
25187
diff
changeset
|
761 |
|
992d0d097e54
(OUTPUT): Change for Lisp_Object selected_frame.
Gerd Moellmann <gerd@gnu.org>
parents:
25187
diff
changeset
|
762 if (! FRAME_TERMCAP_P (f) && cursor_to_hook) |
| 253 | 763 { |
| 25002 | 764 (*cursor_to_hook) (vpos, hpos); |
| 253 | 765 return; |
| 766 } | |
| 767 | |
|
12071
f85f23c50344
(cursor_to, clear_to_end_of_line_raw):
Karl Heuer <kwzh@gnu.org>
parents:
11530
diff
changeset
|
768 /* 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
|
769 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
|
770 if (chars_wasted == 0) |
|
f85f23c50344
(cursor_to, clear_to_end_of_line_raw):
Karl Heuer <kwzh@gnu.org>
parents:
11530
diff
changeset
|
771 return; |
|
f85f23c50344
(cursor_to, clear_to_end_of_line_raw):
Karl Heuer <kwzh@gnu.org>
parents:
11530
diff
changeset
|
772 |
| 25002 | 773 hpos += chars_wasted[vpos] & 077; |
| 774 if (curY == vpos && curX == hpos) | |
| 253 | 775 return; |
| 776 if (!TF_standout_motion) | |
| 777 background_highlight (); | |
| 778 if (!TF_insmode_motion) | |
| 779 turn_off_insert (); | |
| 25002 | 780 cmgoto (vpos, hpos); |
| 253 | 781 } |
| 782 | |
| 783 /* Similar but don't take any account of the wasted characters. */ | |
| 784 | |
| 21514 | 785 void |
| 253 | 786 raw_cursor_to (row, col) |
| 621 | 787 int row, col; |
| 253 | 788 { |
|
25675
992d0d097e54
(OUTPUT): Change for Lisp_Object selected_frame.
Gerd Moellmann <gerd@gnu.org>
parents:
25187
diff
changeset
|
789 struct frame *f = updating_frame ? updating_frame : XFRAME (selected_frame); |
|
992d0d097e54
(OUTPUT): Change for Lisp_Object selected_frame.
Gerd Moellmann <gerd@gnu.org>
parents:
25187
diff
changeset
|
790 if (! FRAME_TERMCAP_P (f)) |
| 253 | 791 { |
| 792 (*raw_cursor_to_hook) (row, col); | |
| 793 return; | |
| 794 } | |
| 795 if (curY == row && curX == col) | |
| 796 return; | |
| 797 if (!TF_standout_motion) | |
| 798 background_highlight (); | |
| 799 if (!TF_insmode_motion) | |
| 800 turn_off_insert (); | |
| 801 cmgoto (row, col); | |
| 802 } | |
| 803 | |
| 804 /* Erase operations */ | |
| 805 | |
| 765 | 806 /* clear from cursor to end of frame */ |
| 21514 | 807 void |
| 253 | 808 clear_to_end () |
| 809 { | |
| 810 register int i; | |
| 811 | |
|
8806
2d3bfce2e1f0
(clear_to_end): Fix reversed condition.
Karl Heuer <kwzh@gnu.org>
parents:
8612
diff
changeset
|
812 if (clear_to_end_hook && ! FRAME_TERMCAP_P (updating_frame)) |
| 253 | 813 { |
| 814 (*clear_to_end_hook) (); | |
| 815 return; | |
| 816 } | |
| 817 if (TS_clr_to_bottom) | |
| 818 { | |
| 819 background_highlight (); | |
| 820 OUTPUT (TS_clr_to_bottom); | |
|
25675
992d0d097e54
(OUTPUT): Change for Lisp_Object selected_frame.
Gerd Moellmann <gerd@gnu.org>
parents:
25187
diff
changeset
|
821 bzero (chars_wasted + curY, |
|
992d0d097e54
(OUTPUT): Change for Lisp_Object selected_frame.
Gerd Moellmann <gerd@gnu.org>
parents:
25187
diff
changeset
|
822 FRAME_HEIGHT (XFRAME (selected_frame)) - curY); |
| 253 | 823 } |
| 824 else | |
| 825 { | |
|
25675
992d0d097e54
(OUTPUT): Change for Lisp_Object selected_frame.
Gerd Moellmann <gerd@gnu.org>
parents:
25187
diff
changeset
|
826 for (i = curY; i < FRAME_HEIGHT (XFRAME (selected_frame)); i++) |
| 253 | 827 { |
| 828 cursor_to (i, 0); | |
|
25675
992d0d097e54
(OUTPUT): Change for Lisp_Object selected_frame.
Gerd Moellmann <gerd@gnu.org>
parents:
25187
diff
changeset
|
829 clear_end_of_line_raw (FRAME_WIDTH (XFRAME (selected_frame))); |
| 253 | 830 } |
| 831 } | |
| 832 } | |
| 833 | |
| 765 | 834 /* Clear entire frame */ |
| 253 | 835 |
| 21514 | 836 void |
| 765 | 837 clear_frame () |
| 253 | 838 { |
|
25675
992d0d097e54
(OUTPUT): Change for Lisp_Object selected_frame.
Gerd Moellmann <gerd@gnu.org>
parents:
25187
diff
changeset
|
839 struct frame *sf = XFRAME (selected_frame); |
|
992d0d097e54
(OUTPUT): Change for Lisp_Object selected_frame.
Gerd Moellmann <gerd@gnu.org>
parents:
25187
diff
changeset
|
840 |
| 765 | 841 if (clear_frame_hook |
|
25675
992d0d097e54
(OUTPUT): Change for Lisp_Object selected_frame.
Gerd Moellmann <gerd@gnu.org>
parents:
25187
diff
changeset
|
842 && ! FRAME_TERMCAP_P ((updating_frame ? updating_frame : sf))) |
| 253 | 843 { |
| 765 | 844 (*clear_frame_hook) (); |
| 253 | 845 return; |
| 846 } | |
| 765 | 847 if (TS_clr_frame) |
| 253 | 848 { |
| 849 background_highlight (); | |
| 765 | 850 OUTPUT (TS_clr_frame); |
|
25675
992d0d097e54
(OUTPUT): Change for Lisp_Object selected_frame.
Gerd Moellmann <gerd@gnu.org>
parents:
25187
diff
changeset
|
851 bzero (chars_wasted, FRAME_HEIGHT (sf)); |
| 253 | 852 cmat (0, 0); |
| 853 } | |
| 854 else | |
| 855 { | |
| 856 cursor_to (0, 0); | |
| 857 clear_to_end (); | |
| 858 } | |
| 859 } | |
| 860 | |
| 861 /* Clear to end of line, but do not clear any standout marker. | |
| 862 Assumes that the cursor is positioned at a character of real text, | |
| 863 which implies it cannot be before a standout marker | |
| 864 unless the marker has zero width. | |
| 865 | |
| 866 Note that the cursor may be moved. */ | |
| 867 | |
| 21514 | 868 void |
| 253 | 869 clear_end_of_line (first_unused_hpos) |
| 870 int first_unused_hpos; | |
| 871 { | |
|
25675
992d0d097e54
(OUTPUT): Change for Lisp_Object selected_frame.
Gerd Moellmann <gerd@gnu.org>
parents:
25187
diff
changeset
|
872 if (FRAME_TERMCAP_P (XFRAME (selected_frame)) |
|
12071
f85f23c50344
(cursor_to, clear_to_end_of_line_raw):
Karl Heuer <kwzh@gnu.org>
parents:
11530
diff
changeset
|
873 && chars_wasted != 0 |
| 253 | 874 && TN_standout_width == 0 && curX == 0 && chars_wasted[curY] != 0) |
| 25002 | 875 write_glyphs (&space_glyph, 1); |
| 253 | 876 clear_end_of_line_raw (first_unused_hpos); |
| 877 } | |
| 878 | |
| 879 /* Clear from cursor to end of line. | |
| 880 Assume that the line is already clear starting at column first_unused_hpos. | |
| 881 If the cursor is at a standout marker, erase the marker. | |
| 882 | |
| 883 Note that the cursor may be moved, on terminals lacking a `ce' string. */ | |
| 884 | |
| 21514 | 885 void |
| 253 | 886 clear_end_of_line_raw (first_unused_hpos) |
| 887 int first_unused_hpos; | |
| 888 { | |
| 889 register int i; | |
| 890 | |
| 891 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
|
892 && ! FRAME_TERMCAP_P ((updating_frame |
| 765 | 893 ? updating_frame |
|
25675
992d0d097e54
(OUTPUT): Change for Lisp_Object selected_frame.
Gerd Moellmann <gerd@gnu.org>
parents:
25187
diff
changeset
|
894 : XFRAME (selected_frame)))) |
| 253 | 895 { |
| 896 (*clear_end_of_line_hook) (first_unused_hpos); | |
| 897 return; | |
| 898 } | |
| 899 | |
|
12071
f85f23c50344
(cursor_to, clear_to_end_of_line_raw):
Karl Heuer <kwzh@gnu.org>
parents:
11530
diff
changeset
|
900 /* 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
|
901 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
|
902 if (chars_wasted == 0) |
|
f85f23c50344
(cursor_to, clear_to_end_of_line_raw):
Karl Heuer <kwzh@gnu.org>
parents:
11530
diff
changeset
|
903 return; |
|
f85f23c50344
(cursor_to, clear_to_end_of_line_raw):
Karl Heuer <kwzh@gnu.org>
parents:
11530
diff
changeset
|
904 |
| 253 | 905 first_unused_hpos += chars_wasted[curY] & 077; |
| 906 if (curX >= first_unused_hpos) | |
| 907 return; | |
| 908 /* Notice if we are erasing a magic cookie */ | |
| 909 if (curX == 0) | |
| 910 chars_wasted[curY] = 0; | |
| 911 background_highlight (); | |
| 912 if (TS_clr_line) | |
| 913 { | |
| 914 OUTPUT1 (TS_clr_line); | |
| 915 } | |
| 916 else | |
| 917 { /* have to do it the hard way */ | |
|
25675
992d0d097e54
(OUTPUT): Change for Lisp_Object selected_frame.
Gerd Moellmann <gerd@gnu.org>
parents:
25187
diff
changeset
|
918 struct frame *sf = XFRAME (selected_frame); |
| 253 | 919 turn_off_insert (); |
| 920 | |
| 25002 | 921 /* Do not write in last row last col with Auto-wrap on. */ |
|
25675
992d0d097e54
(OUTPUT): Change for Lisp_Object selected_frame.
Gerd Moellmann <gerd@gnu.org>
parents:
25187
diff
changeset
|
922 if (AutoWrap && curY == FRAME_HEIGHT (sf) - 1 |
|
992d0d097e54
(OUTPUT): Change for Lisp_Object selected_frame.
Gerd Moellmann <gerd@gnu.org>
parents:
25187
diff
changeset
|
923 && first_unused_hpos == FRAME_WIDTH (sf)) |
| 253 | 924 first_unused_hpos--; |
| 925 | |
| 926 for (i = curX; i < first_unused_hpos; i++) | |
| 927 { | |
| 928 if (termscript) | |
| 929 fputc (' ', termscript); | |
| 930 putchar (' '); | |
| 931 } | |
| 932 cmplus (first_unused_hpos - curX); | |
| 933 } | |
| 934 } | |
| 935 | |
|
17046
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
936 /* 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
|
937 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
|
938 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
|
939 converted. |
|
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 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
|
942 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
|
943 |
|
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
944 int |
|
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
945 encode_terminal_code (src, dst, src_len, dst_len, consumed) |
| 25002 | 946 struct glyph *src; |
|
17046
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
947 int src_len; |
|
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
948 unsigned char *dst; |
|
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
949 int dst_len, *consumed; |
|
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
950 { |
| 25002 | 951 struct glyph *src_start = src, *src_end = src + src_len; |
|
17046
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
952 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
|
953 register GLYPH g; |
|
364327df6e7c
(encode_terminal_code): Check validity of character code.
Kenichi Handa <handa@m17n.org>
parents:
17046
diff
changeset
|
954 unsigned int c; |
|
26871
aaf45e665b14
(encode_terminal_code): Delete codes for a composite
Kenichi Handa <handa@m17n.org>
parents:
26425
diff
changeset
|
955 unsigned char workbuf[MAX_MULTIBYTE_LENGTH], *buf; |
|
20711
9ab8e061c0bf
(encode_terminal_code): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
20223
diff
changeset
|
956 int len; |
|
17046
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
957 register int tlen = GLYPH_TABLE_LENGTH; |
|
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
958 register Lisp_Object *tbase = GLYPH_TABLE_BASE; |
|
24263
e81f007b15fa
(encode_terminal_code): Fix previous change.
Kenichi Handa <handa@m17n.org>
parents:
23338
diff
changeset
|
959 int result; |
|
20711
9ab8e061c0bf
(encode_terminal_code): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
20223
diff
changeset
|
960 struct coding_system *coding; |
|
9ab8e061c0bf
(encode_terminal_code): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
20223
diff
changeset
|
961 |
|
29448
348aa1a6a062
(encode_terminal_code): Change the way to check if
Kenichi Handa <handa@m17n.org>
parents:
29263
diff
changeset
|
962 /* If terminal_coding does any conversion, use it, otherwise use |
|
348aa1a6a062
(encode_terminal_code): Change the way to check if
Kenichi Handa <handa@m17n.org>
parents:
29263
diff
changeset
|
963 safe_terminal_coding. We can't use CODING_REQUIRE_ENCODING here |
|
348aa1a6a062
(encode_terminal_code): Change the way to check if
Kenichi Handa <handa@m17n.org>
parents:
29263
diff
changeset
|
964 because it always return 1 if the member src_multibyte is 1. */ |
|
348aa1a6a062
(encode_terminal_code): Change the way to check if
Kenichi Handa <handa@m17n.org>
parents:
29263
diff
changeset
|
965 coding = (terminal_coding.common_flags & CODING_REQUIRE_ENCODING_MASK |
|
20711
9ab8e061c0bf
(encode_terminal_code): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
20223
diff
changeset
|
966 ? &terminal_coding |
|
9ab8e061c0bf
(encode_terminal_code): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
20223
diff
changeset
|
967 : &safe_terminal_coding); |
|
17046
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
968 |
|
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
969 while (src < src_end) |
|
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
970 { |
|
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
971 /* We must skip glyphs to be padded for a wide character. */ |
| 25002 | 972 if (! CHAR_GLYPH_PADDING_P (*src)) |
|
17046
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
973 { |
|
26999
5d0057e6170e
(encode_terminal_code): Adjusted for the change of struct
Kenichi Handa <handa@m17n.org>
parents:
26902
diff
changeset
|
974 g = GLYPH_FROM_CHAR_GLYPH (src[0]); |
|
5d0057e6170e
(encode_terminal_code): Adjusted for the change of struct
Kenichi Handa <handa@m17n.org>
parents:
26902
diff
changeset
|
975 |
|
5d0057e6170e
(encode_terminal_code): Adjusted for the change of struct
Kenichi Handa <handa@m17n.org>
parents:
26902
diff
changeset
|
976 if (g < 0 || g >= tlen) |
|
17046
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
977 { |
|
26999
5d0057e6170e
(encode_terminal_code): Adjusted for the change of struct
Kenichi Handa <handa@m17n.org>
parents:
26902
diff
changeset
|
978 /* This glyph doesn't has an entry in Vglyph_table. */ |
|
5d0057e6170e
(encode_terminal_code): Adjusted for the change of struct
Kenichi Handa <handa@m17n.org>
parents:
26902
diff
changeset
|
979 if (! CHAR_VALID_P (src->u.ch, 0)) |
|
5d0057e6170e
(encode_terminal_code): Adjusted for the change of struct
Kenichi Handa <handa@m17n.org>
parents:
26902
diff
changeset
|
980 { |
|
5d0057e6170e
(encode_terminal_code): Adjusted for the change of struct
Kenichi Handa <handa@m17n.org>
parents:
26902
diff
changeset
|
981 len = 1; |
|
5d0057e6170e
(encode_terminal_code): Adjusted for the change of struct
Kenichi Handa <handa@m17n.org>
parents:
26902
diff
changeset
|
982 buf = " "; |
|
29097
8b0db3f5a010
(encode_terminal_code): Set coding->src_multibyte properly.
Kenichi Handa <handa@m17n.org>
parents:
29019
diff
changeset
|
983 coding->src_multibyte = 0; |
|
26999
5d0057e6170e
(encode_terminal_code): Adjusted for the change of struct
Kenichi Handa <handa@m17n.org>
parents:
26902
diff
changeset
|
984 } |
|
5d0057e6170e
(encode_terminal_code): Adjusted for the change of struct
Kenichi Handa <handa@m17n.org>
parents:
26902
diff
changeset
|
985 else |
|
5d0057e6170e
(encode_terminal_code): Adjusted for the change of struct
Kenichi Handa <handa@m17n.org>
parents:
26902
diff
changeset
|
986 { |
|
5d0057e6170e
(encode_terminal_code): Adjusted for the change of struct
Kenichi Handa <handa@m17n.org>
parents:
26902
diff
changeset
|
987 len = CHAR_STRING (src->u.ch, workbuf); |
|
5d0057e6170e
(encode_terminal_code): Adjusted for the change of struct
Kenichi Handa <handa@m17n.org>
parents:
26902
diff
changeset
|
988 buf = workbuf; |
|
29097
8b0db3f5a010
(encode_terminal_code): Set coding->src_multibyte properly.
Kenichi Handa <handa@m17n.org>
parents:
29019
diff
changeset
|
989 coding->src_multibyte = 1; |
|
26999
5d0057e6170e
(encode_terminal_code): Adjusted for the change of struct
Kenichi Handa <handa@m17n.org>
parents:
26902
diff
changeset
|
990 } |
|
26871
aaf45e665b14
(encode_terminal_code): Delete codes for a composite
Kenichi Handa <handa@m17n.org>
parents:
26425
diff
changeset
|
991 } |
|
17046
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
992 else |
| 19035 | 993 { |
|
26999
5d0057e6170e
(encode_terminal_code): Adjusted for the change of struct
Kenichi Handa <handa@m17n.org>
parents:
26902
diff
changeset
|
994 /* This glyph has an entry in Vglyph_table, |
|
5d0057e6170e
(encode_terminal_code): Adjusted for the change of struct
Kenichi Handa <handa@m17n.org>
parents:
26902
diff
changeset
|
995 so process any alias before testing for simpleness. */ |
|
5d0057e6170e
(encode_terminal_code): Adjusted for the change of struct
Kenichi Handa <handa@m17n.org>
parents:
26902
diff
changeset
|
996 GLYPH_FOLLOW_ALIASES (tbase, tlen, g); |
|
5d0057e6170e
(encode_terminal_code): Adjusted for the change of struct
Kenichi Handa <handa@m17n.org>
parents:
26902
diff
changeset
|
997 |
|
5d0057e6170e
(encode_terminal_code): Adjusted for the change of struct
Kenichi Handa <handa@m17n.org>
parents:
26902
diff
changeset
|
998 if (GLYPH_SIMPLE_P (tbase, tlen, g)) |
|
5d0057e6170e
(encode_terminal_code): Adjusted for the change of struct
Kenichi Handa <handa@m17n.org>
parents:
26902
diff
changeset
|
999 { |
|
27128
5cd86a04d3ef
(encode_terminal_code): Fix the previous change.
Kenichi Handa <handa@m17n.org>
parents:
27087
diff
changeset
|
1000 /* We set the multi-byte form of a character in G |
|
5cd86a04d3ef
(encode_terminal_code): Fix the previous change.
Kenichi Handa <handa@m17n.org>
parents:
27087
diff
changeset
|
1001 (that should be an ASCII character) at |
|
5cd86a04d3ef
(encode_terminal_code): Fix the previous change.
Kenichi Handa <handa@m17n.org>
parents:
27087
diff
changeset
|
1002 WORKBUF. */ |
|
5cd86a04d3ef
(encode_terminal_code): Fix the previous change.
Kenichi Handa <handa@m17n.org>
parents:
27087
diff
changeset
|
1003 workbuf[0] = FAST_GLYPH_CHAR (g); |
|
5cd86a04d3ef
(encode_terminal_code): Fix the previous change.
Kenichi Handa <handa@m17n.org>
parents:
27087
diff
changeset
|
1004 len = 1; |
|
26999
5d0057e6170e
(encode_terminal_code): Adjusted for the change of struct
Kenichi Handa <handa@m17n.org>
parents:
26902
diff
changeset
|
1005 buf = workbuf; |
|
29097
8b0db3f5a010
(encode_terminal_code): Set coding->src_multibyte properly.
Kenichi Handa <handa@m17n.org>
parents:
29019
diff
changeset
|
1006 coding->src_multibyte = 0; |
|
26999
5d0057e6170e
(encode_terminal_code): Adjusted for the change of struct
Kenichi Handa <handa@m17n.org>
parents:
26902
diff
changeset
|
1007 } |
|
5d0057e6170e
(encode_terminal_code): Adjusted for the change of struct
Kenichi Handa <handa@m17n.org>
parents:
26902
diff
changeset
|
1008 else |
|
5d0057e6170e
(encode_terminal_code): Adjusted for the change of struct
Kenichi Handa <handa@m17n.org>
parents:
26902
diff
changeset
|
1009 { |
|
5d0057e6170e
(encode_terminal_code): Adjusted for the change of struct
Kenichi Handa <handa@m17n.org>
parents:
26902
diff
changeset
|
1010 /* We have a string in Vglyph_table. */ |
|
5d0057e6170e
(encode_terminal_code): Adjusted for the change of struct
Kenichi Handa <handa@m17n.org>
parents:
26902
diff
changeset
|
1011 len = GLYPH_LENGTH (tbase, g); |
|
5d0057e6170e
(encode_terminal_code): Adjusted for the change of struct
Kenichi Handa <handa@m17n.org>
parents:
26902
diff
changeset
|
1012 buf = GLYPH_STRING (tbase, g); |
|
29097
8b0db3f5a010
(encode_terminal_code): Set coding->src_multibyte properly.
Kenichi Handa <handa@m17n.org>
parents:
29019
diff
changeset
|
1013 coding->src_multibyte = STRING_MULTIBYTE (tbase[g]); |
|
26999
5d0057e6170e
(encode_terminal_code): Adjusted for the change of struct
Kenichi Handa <handa@m17n.org>
parents:
26902
diff
changeset
|
1014 } |
| 19035 | 1015 } |
|
17046
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
1016 |
|
24263
e81f007b15fa
(encode_terminal_code): Fix previous change.
Kenichi Handa <handa@m17n.org>
parents:
23338
diff
changeset
|
1017 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
|
1018 len -= coding->consumed; |
|
20711
9ab8e061c0bf
(encode_terminal_code): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
20223
diff
changeset
|
1019 dst += coding->produced; |
|
24263
e81f007b15fa
(encode_terminal_code): Fix previous change.
Kenichi Handa <handa@m17n.org>
parents:
23338
diff
changeset
|
1020 if (result == CODING_FINISH_INSUFFICIENT_DST |
|
e81f007b15fa
(encode_terminal_code): Fix previous change.
Kenichi Handa <handa@m17n.org>
parents:
23338
diff
changeset
|
1021 || (result == CODING_FINISH_INSUFFICIENT_SRC |
|
e81f007b15fa
(encode_terminal_code): Fix previous change.
Kenichi Handa <handa@m17n.org>
parents:
23338
diff
changeset
|
1022 && len > dst_end - dst)) |
|
e81f007b15fa
(encode_terminal_code): Fix previous change.
Kenichi Handa <handa@m17n.org>
parents:
23338
diff
changeset
|
1023 /* 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
|
1024 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
|
1025 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
|
1026 break; |
|
e81f007b15fa
(encode_terminal_code): Fix previous change.
Kenichi Handa <handa@m17n.org>
parents:
23338
diff
changeset
|
1027 |
|
23338
0a2b76b09162
(encode_terminal_code): Handle raw 8-bit codes correctly.
Kenichi Handa <handa@m17n.org>
parents:
23066
diff
changeset
|
1028 if (len > 0) |
|
0a2b76b09162
(encode_terminal_code): Handle raw 8-bit codes correctly.
Kenichi Handa <handa@m17n.org>
parents:
23066
diff
changeset
|
1029 { |
|
24263
e81f007b15fa
(encode_terminal_code): Fix previous change.
Kenichi Handa <handa@m17n.org>
parents:
23338
diff
changeset
|
1030 /* 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
|
1031 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
|
1032 buf += coding->consumed; |
|
e81f007b15fa
(encode_terminal_code): Fix previous change.
Kenichi Handa <handa@m17n.org>
parents:
23338
diff
changeset
|
1033 while (len--) |
|
e81f007b15fa
(encode_terminal_code): Fix previous change.
Kenichi Handa <handa@m17n.org>
parents:
23338
diff
changeset
|
1034 *dst++ = *buf++; |
|
23338
0a2b76b09162
(encode_terminal_code): Handle raw 8-bit codes correctly.
Kenichi Handa <handa@m17n.org>
parents:
23066
diff
changeset
|
1035 } |
|
17046
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
1036 } |
|
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
1037 src++; |
|
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
1038 } |
| 25002 | 1039 |
|
17046
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
1040 *consumed = src - src_start; |
|
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
1041 return (dst - dst_start); |
|
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
1042 } |
|
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
1043 |
| 253 | 1044 |
| 21514 | 1045 void |
| 253 | 1046 write_glyphs (string, len) |
| 25002 | 1047 register struct glyph *string; |
| 253 | 1048 register int len; |
| 1049 { | |
|
17046
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
1050 int produced, consumed; |
|
25675
992d0d097e54
(OUTPUT): Change for Lisp_Object selected_frame.
Gerd Moellmann <gerd@gnu.org>
parents:
25187
diff
changeset
|
1051 struct frame *sf = XFRAME (selected_frame); |
|
992d0d097e54
(OUTPUT): Change for Lisp_Object selected_frame.
Gerd Moellmann <gerd@gnu.org>
parents:
25187
diff
changeset
|
1052 struct frame *f = updating_frame ? updating_frame : sf; |
|
30836
b590724d8c48
(write_glyphs): Use a locally declared conversion_buffer.
Kenichi Handa <handa@m17n.org>
parents:
30821
diff
changeset
|
1053 unsigned char conversion_buffer[1024]; |
|
b590724d8c48
(write_glyphs): Use a locally declared conversion_buffer.
Kenichi Handa <handa@m17n.org>
parents:
30821
diff
changeset
|
1054 int conversion_buffer_size = sizeof conversion_buffer; |
| 253 | 1055 |
| 1056 if (write_glyphs_hook | |
| 25002 | 1057 && ! FRAME_TERMCAP_P (f)) |
| 253 | 1058 { |
| 1059 (*write_glyphs_hook) (string, len); | |
| 1060 return; | |
| 1061 } | |
| 1062 | |
| 1063 turn_off_insert (); | |
| 1064 | |
| 25002 | 1065 /* Don't dare write in last column of bottom line, if Auto-Wrap, |
| 765 | 1066 since that would scroll the whole frame on some terminals. */ |
| 253 | 1067 |
| 1068 if (AutoWrap | |
|
25675
992d0d097e54
(OUTPUT): Change for Lisp_Object selected_frame.
Gerd Moellmann <gerd@gnu.org>
parents:
25187
diff
changeset
|
1069 && curY + 1 == FRAME_HEIGHT (sf) |
|
992d0d097e54
(OUTPUT): Change for Lisp_Object selected_frame.
Gerd Moellmann <gerd@gnu.org>
parents:
25187
diff
changeset
|
1070 && (curX + len - (chars_wasted[curY] & 077) == FRAME_WIDTH (sf))) |
| 253 | 1071 len --; |
|
17046
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
1072 if (len <= 0) |
|
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
1073 return; |
| 253 | 1074 |
| 1075 cmplus (len); | |
| 25002 | 1076 |
|
20711
9ab8e061c0bf
(encode_terminal_code): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
20223
diff
changeset
|
1077 /* 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
|
1078 the tail. */ |
|
9ab8e061c0bf
(encode_terminal_code): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
20223
diff
changeset
|
1079 terminal_coding.mode &= ~CODING_MODE_LAST_BLOCK; |
| 25002 | 1080 |
|
17046
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
1081 while (len > 0) |
| 253 | 1082 { |
| 25002 | 1083 /* Identify a run of glyphs with the same face. */ |
|
26999
5d0057e6170e
(encode_terminal_code): Adjusted for the change of struct
Kenichi Handa <handa@m17n.org>
parents:
26902
diff
changeset
|
1084 int face_id = string->face_id; |
| 25002 | 1085 int n; |
| 1086 | |
| 1087 for (n = 1; n < len; ++n) | |
|
26999
5d0057e6170e
(encode_terminal_code): Adjusted for the change of struct
Kenichi Handa <handa@m17n.org>
parents:
26902
diff
changeset
|
1088 if (string[n].face_id != face_id) |
| 25002 | 1089 break; |
| 1090 | |
| 1091 /* Turn appearance modes of the face of the run on. */ | |
|
30821
593b589de709
(turn_off_face): Reset standout_mode when resetting
Gerd Moellmann <gerd@gnu.org>
parents:
29929
diff
changeset
|
1092 highlight_if_desired (); |
| 25002 | 1093 turn_on_face (f, face_id); |
| 1094 | |
| 1095 while (n > 0) | |
| 253 | 1096 { |
|
30836
b590724d8c48
(write_glyphs): Use a locally declared conversion_buffer.
Kenichi Handa <handa@m17n.org>
parents:
30821
diff
changeset
|
1097 /* We use a fixed size (1024 bytes) of conversion buffer. |
|
b590724d8c48
(write_glyphs): Use a locally declared conversion_buffer.
Kenichi Handa <handa@m17n.org>
parents:
30821
diff
changeset
|
1098 Usually it is sufficient, but if not, we just repeat the |
|
b590724d8c48
(write_glyphs): Use a locally declared conversion_buffer.
Kenichi Handa <handa@m17n.org>
parents:
30821
diff
changeset
|
1099 loop. */ |
| 25002 | 1100 produced = encode_terminal_code (string, conversion_buffer, |
| 1101 n, conversion_buffer_size, | |
| 1102 &consumed); | |
| 1103 if (produced > 0) | |
| 1104 { | |
| 1105 fwrite (conversion_buffer, 1, produced, stdout); | |
| 1106 if (ferror (stdout)) | |
| 1107 clearerr (stdout); | |
| 1108 if (termscript) | |
| 1109 fwrite (conversion_buffer, 1, produced, termscript); | |
| 1110 } | |
| 1111 len -= consumed; | |
| 1112 n -= consumed; | |
| 1113 string += consumed; | |
| 253 | 1114 } |
| 25002 | 1115 |
| 1116 /* Turn appearance modes off. */ | |
| 1117 turn_off_face (f, face_id); | |
|
30848
fc80dcfc32cd
(write_glyphs): Also turn off inverse video after turning
Gerd Moellmann <gerd@gnu.org>
parents:
30836
diff
changeset
|
1118 turn_off_highlight (); |
|
17046
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
1119 } |
| 25002 | 1120 |
|
17046
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
1121 /* 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
|
1122 if (CODING_REQUIRE_FLUSHING (&terminal_coding)) |
|
17046
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
1123 { |
|
20711
9ab8e061c0bf
(encode_terminal_code): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
20223
diff
changeset
|
1124 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
|
1125 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
|
1126 0, conversion_buffer_size); |
|
9ab8e061c0bf
(encode_terminal_code): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
20223
diff
changeset
|
1127 if (terminal_coding.produced > 0) |
|
19277
7ea957cd48e2
(encode_terminal_code): Use safe_terminal_coding if
Kenichi Handa <handa@m17n.org>
parents:
19035
diff
changeset
|
1128 { |
|
20711
9ab8e061c0bf
(encode_terminal_code): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
20223
diff
changeset
|
1129 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
|
1130 if (ferror (stdout)) |
|
7ea957cd48e2
(encode_terminal_code): Use safe_terminal_coding if
Kenichi Handa <handa@m17n.org>
parents:
19035
diff
changeset
|
1131 clearerr (stdout); |
|
7ea957cd48e2
(encode_terminal_code): Use safe_terminal_coding if
Kenichi Handa <handa@m17n.org>
parents:
19035
diff
changeset
|
1132 if (termscript) |
|
20711
9ab8e061c0bf
(encode_terminal_code): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
20223
diff
changeset
|
1133 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
|
1134 termscript); |
|
19277
7ea957cd48e2
(encode_terminal_code): Use safe_terminal_coding if
Kenichi Handa <handa@m17n.org>
parents:
19035
diff
changeset
|
1135 } |
| 253 | 1136 } |
| 25002 | 1137 |
|
10439
1fcbeb4410f6
(write_glyphs, insert_glyphs): Call checkmagic.
Karl Heuer <kwzh@gnu.org>
parents:
10332
diff
changeset
|
1138 cmcheckmagic (); |
| 253 | 1139 } |
| 1140 | |
| 1141 /* If start is zero, insert blanks instead of a string at start */ | |
| 1142 | |
| 21514 | 1143 void |
| 253 | 1144 insert_glyphs (start, len) |
| 25002 | 1145 register struct glyph *start; |
| 253 | 1146 register int len; |
| 1147 { | |
| 1148 char *buf; | |
|
26999
5d0057e6170e
(encode_terminal_code): Adjusted for the change of struct
Kenichi Handa <handa@m17n.org>
parents:
26902
diff
changeset
|
1149 struct glyph *glyph; |
|
25675
992d0d097e54
(OUTPUT): Change for Lisp_Object selected_frame.
Gerd Moellmann <gerd@gnu.org>
parents:
25187
diff
changeset
|
1150 struct frame *f, *sf; |
| 253 | 1151 |
|
17046
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
1152 if (len <= 0) |
|
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
1153 return; |
|
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
1154 |
| 25002 | 1155 if (insert_glyphs_hook) |
| 253 | 1156 { |
| 1157 (*insert_glyphs_hook) (start, len); | |
| 1158 return; | |
| 1159 } | |
| 25002 | 1160 |
|
25675
992d0d097e54
(OUTPUT): Change for Lisp_Object selected_frame.
Gerd Moellmann <gerd@gnu.org>
parents:
25187
diff
changeset
|
1161 sf = XFRAME (selected_frame); |
|
992d0d097e54
(OUTPUT): Change for Lisp_Object selected_frame.
Gerd Moellmann <gerd@gnu.org>
parents:
25187
diff
changeset
|
1162 f = updating_frame ? updating_frame : sf; |
| 253 | 1163 |
| 1164 if (TS_ins_multi_chars) | |
| 1165 { | |
| 1166 buf = tparam (TS_ins_multi_chars, 0, 0, len); | |
| 1167 OUTPUT1 (buf); | |
|
2439
b6c62e4abf59
Put interrupt input blocking in a separate file from xterm.h.
Jim Blandy <jimb@redhat.com>
parents:
2243
diff
changeset
|
1168 xfree (buf); |
| 253 | 1169 if (start) |
| 1170 write_glyphs (start, len); | |
| 1171 return; | |
| 1172 } | |
| 1173 | |
| 1174 turn_on_insert (); | |
| 1175 cmplus (len); | |
|
20711
9ab8e061c0bf
(encode_terminal_code): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
20223
diff
changeset
|
1176 /* 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
|
1177 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
|
1178 while (len-- > 0) |
| 253 | 1179 { |
|
17046
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
1180 int produced, consumed; |
|
30836
b590724d8c48
(write_glyphs): Use a locally declared conversion_buffer.
Kenichi Handa <handa@m17n.org>
parents:
30821
diff
changeset
|
1181 unsigned char conversion_buffer[1024]; |
|
b590724d8c48
(write_glyphs): Use a locally declared conversion_buffer.
Kenichi Handa <handa@m17n.org>
parents:
30821
diff
changeset
|
1182 int conversion_buffer_size = sizeof conversion_buffer; |
|
17046
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
1183 |
| 253 | 1184 OUTPUT1_IF (TS_ins_char); |
| 1185 if (!start) | |
|
26999
5d0057e6170e
(encode_terminal_code): Adjusted for the change of struct
Kenichi Handa <handa@m17n.org>
parents:
26902
diff
changeset
|
1186 { |
|
5d0057e6170e
(encode_terminal_code): Adjusted for the change of struct
Kenichi Handa <handa@m17n.org>
parents:
26902
diff
changeset
|
1187 conversion_buffer[0] = SPACEGLYPH; |
|
5d0057e6170e
(encode_terminal_code): Adjusted for the change of struct
Kenichi Handa <handa@m17n.org>
parents:
26902
diff
changeset
|
1188 produced = 1; |
|
5d0057e6170e
(encode_terminal_code): Adjusted for the change of struct
Kenichi Handa <handa@m17n.org>
parents:
26902
diff
changeset
|
1189 } |
| 253 | 1190 else |
|
17046
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
1191 { |
|
30848
fc80dcfc32cd
(write_glyphs): Also turn off inverse video after turning
Gerd Moellmann <gerd@gnu.org>
parents:
30836
diff
changeset
|
1192 highlight_if_desired (); |
|
26999
5d0057e6170e
(encode_terminal_code): Adjusted for the change of struct
Kenichi Handa <handa@m17n.org>
parents:
26902
diff
changeset
|
1193 turn_on_face (f, start->face_id); |
|
27085
59913a531d4e
(insert_glyphs): Pass glyph, not &glyph, to
Eli Zaretskii <eliz@gnu.org>
parents:
26999
diff
changeset
|
1194 glyph = start; |
| 25002 | 1195 ++start; |
|
17046
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
1196 /* 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
|
1197 occupies more than one column. */ |
| 25002 | 1198 while (len && CHAR_GLYPH_PADDING_P (*start)) |
|
17046
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
1199 { |
|
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
1200 OUTPUT1_IF (TS_ins_char); |
|
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
1201 start++, len--; |
|
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
1202 } |
|
26999
5d0057e6170e
(encode_terminal_code): Adjusted for the change of struct
Kenichi Handa <handa@m17n.org>
parents:
26902
diff
changeset
|
1203 |
|
5d0057e6170e
(encode_terminal_code): Adjusted for the change of struct
Kenichi Handa <handa@m17n.org>
parents:
26902
diff
changeset
|
1204 if (len <= 0) |
|
5d0057e6170e
(encode_terminal_code): Adjusted for the change of struct
Kenichi Handa <handa@m17n.org>
parents:
26902
diff
changeset
|
1205 /* This is the last glyph. */ |
|
5d0057e6170e
(encode_terminal_code): Adjusted for the change of struct
Kenichi Handa <handa@m17n.org>
parents:
26902
diff
changeset
|
1206 terminal_coding.mode |= CODING_MODE_LAST_BLOCK; |
|
5d0057e6170e
(encode_terminal_code): Adjusted for the change of struct
Kenichi Handa <handa@m17n.org>
parents:
26902
diff
changeset
|
1207 |
|
30836
b590724d8c48
(write_glyphs): Use a locally declared conversion_buffer.
Kenichi Handa <handa@m17n.org>
parents:
30821
diff
changeset
|
1208 /* The size of conversion buffer (1024 bytes) is surely |
|
b590724d8c48
(write_glyphs): Use a locally declared conversion_buffer.
Kenichi Handa <handa@m17n.org>
parents:
30821
diff
changeset
|
1209 sufficient for just one glyph. */ |
|
27085
59913a531d4e
(insert_glyphs): Pass glyph, not &glyph, to
Eli Zaretskii <eliz@gnu.org>
parents:
26999
diff
changeset
|
1210 produced = encode_terminal_code (glyph, conversion_buffer, 1, |
|
26999
5d0057e6170e
(encode_terminal_code): Adjusted for the change of struct
Kenichi Handa <handa@m17n.org>
parents:
26902
diff
changeset
|
1211 conversion_buffer_size, &consumed); |
|
17046
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
1212 } |
| 253 | 1213 |
|
17046
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
1214 if (produced > 0) |
| 253 | 1215 { |
|
17046
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
1216 fwrite (conversion_buffer, 1, produced, stdout); |
| 253 | 1217 if (ferror (stdout)) |
| 1218 clearerr (stdout); | |
| 1219 if (termscript) | |
|
17046
84b0e9794a87
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16894
diff
changeset
|
1220 fwrite (conversion_buffer, 1, produced, termscript); |
| 253 | 1221 } |
| 1222 | |
|
10439
1fcbeb4410f6
(write_glyphs, insert_glyphs): Call checkmagic.
Karl Heuer <kwzh@gnu.org>
parents:
10332
diff
changeset
|
1223 OUTPUT1_IF (TS_pad_inserted_char); |
|
26999
5d0057e6170e
(encode_terminal_code): Adjusted for the change of struct
Kenichi Handa <handa@m17n.org>
parents:
26902
diff
changeset
|
1224 if (start) |
|
30848
fc80dcfc32cd
(write_glyphs): Also turn off inverse video after turning
Gerd Moellmann <gerd@gnu.org>
parents:
30836
diff
changeset
|
1225 { |
|
fc80dcfc32cd
(write_glyphs): Also turn off inverse video after turning
Gerd Moellmann <gerd@gnu.org>
parents:
30836
diff
changeset
|
1226 turn_off_face (f, glyph->face_id); |
|
fc80dcfc32cd
(write_glyphs): Also turn off inverse video after turning
Gerd Moellmann <gerd@gnu.org>
parents:
30836
diff
changeset
|
1227 turn_off_highlight (); |
|
fc80dcfc32cd
(write_glyphs): Also turn off inverse video after turning
Gerd Moellmann <gerd@gnu.org>
parents:
30836
diff
changeset
|
1228 } |
|
10439
1fcbeb4410f6
(write_glyphs, insert_glyphs): Call checkmagic.
Karl Heuer <kwzh@gnu.org>
parents:
10332
diff
changeset
|
1229 } |
| 25002 | 1230 |
|
10439
1fcbeb4410f6
(write_glyphs, insert_glyphs): Call checkmagic.
Karl Heuer <kwzh@gnu.org>
parents:
10332
diff
changeset
|
1231 cmcheckmagic (); |
| 253 | 1232 } |
| 1233 | |
| 21514 | 1234 void |
| 253 | 1235 delete_glyphs (n) |
| 1236 register int n; | |
| 1237 { | |
| 1238 char *buf; | |
| 1239 register int i; | |
| 1240 | |
|
969
16649ee21625
* term.c (FRAME_IS_TERMCAP, FRAME_IS_X, FRAME_HAS_MINIBUF):
Jim Blandy <jimb@redhat.com>
parents:
797
diff
changeset
|
1241 if (delete_glyphs_hook && ! FRAME_TERMCAP_P (updating_frame)) |
| 253 | 1242 { |
| 1243 (*delete_glyphs_hook) (n); | |
| 1244 return; | |
| 1245 } | |
| 1246 | |
| 1247 if (delete_in_insert_mode) | |
| 1248 { | |
| 1249 turn_on_insert (); | |
| 1250 } | |
| 1251 else | |
| 1252 { | |
| 1253 turn_off_insert (); | |
| 1254 OUTPUT_IF (TS_delete_mode); | |
| 1255 } | |
| 1256 | |
| 1257 if (TS_del_multi_chars) | |
| 1258 { | |
| 1259 buf = tparam (TS_del_multi_chars, 0, 0, n); | |
| 1260 OUTPUT1 (buf); | |
|
2439
b6c62e4abf59
Put interrupt input blocking in a separate file from xterm.h.
Jim Blandy <jimb@redhat.com>
parents:
2243
diff
changeset
|
1261 xfree (buf); |
| 253 | 1262 } |
| 1263 else | |
| 1264 for (i = 0; i < n; i++) | |
| 1265 OUTPUT1 (TS_del_char); | |
| 1266 if (!delete_in_insert_mode) | |
| 1267 OUTPUT_IF (TS_end_delete_mode); | |
| 1268 } | |
| 1269 | |
| 1270 /* Insert N lines at vpos VPOS. If N is negative, delete -N lines. */ | |
| 1271 | |
| 21514 | 1272 void |
| 253 | 1273 ins_del_lines (vpos, n) |
| 1274 int vpos, n; | |
| 1275 { | |
| 1276 char *multi = n > 0 ? TS_ins_multi_lines : TS_del_multi_lines; | |
| 1277 char *single = n > 0 ? TS_ins_line : TS_del_line; | |
| 1278 char *scroll = n > 0 ? TS_rev_scroll : TS_fwd_scroll; | |
|
25675
992d0d097e54
(OUTPUT): Change for Lisp_Object selected_frame.
Gerd Moellmann <gerd@gnu.org>
parents:
25187
diff
changeset
|
1279 struct frame *sf; |
| 253 | 1280 |
| 1281 register int i = n > 0 ? n : -n; | |
| 1282 register char *buf; | |
| 1283 | |
|
969
16649ee21625
* term.c (FRAME_IS_TERMCAP, FRAME_IS_X, FRAME_HAS_MINIBUF):
Jim Blandy <jimb@redhat.com>
parents:
797
diff
changeset
|
1284 if (ins_del_lines_hook && ! FRAME_TERMCAP_P (updating_frame)) |
| 253 | 1285 { |
| 1286 (*ins_del_lines_hook) (vpos, n); | |
| 1287 return; | |
| 1288 } | |
| 1289 | |
|
25675
992d0d097e54
(OUTPUT): Change for Lisp_Object selected_frame.
Gerd Moellmann <gerd@gnu.org>
parents:
25187
diff
changeset
|
1290 sf = XFRAME (selected_frame); |
|
992d0d097e54
(OUTPUT): Change for Lisp_Object selected_frame.
Gerd Moellmann <gerd@gnu.org>
parents:
25187
diff
changeset
|
1291 |
| 253 | 1292 /* If the lines below the insertion are being pushed |
| 1293 into the end of the window, this is the same as clearing; | |
| 1294 and we know the lines are already clear, since the matching | |
| 1295 deletion has already been done. So can ignore this. */ | |
| 1296 /* If the lines below the deletion are blank lines coming | |
| 1297 out of the end of the window, don't bother, | |
| 1298 as there will be a matching inslines later that will flush them. */ | |
| 1299 if (scroll_region_ok && vpos + i >= specified_window) | |
| 1300 return; | |
|
25675
992d0d097e54
(OUTPUT): Change for Lisp_Object selected_frame.
Gerd Moellmann <gerd@gnu.org>
parents:
25187
diff
changeset
|
1301 if (!memory_below_frame && vpos + i >= FRAME_HEIGHT (sf)) |
| 253 | 1302 return; |
| 1303 | |
| 1304 if (multi) | |
| 1305 { | |
| 1306 raw_cursor_to (vpos, 0); | |
| 1307 background_highlight (); | |
| 1308 buf = tparam (multi, 0, 0, i); | |
| 1309 OUTPUT (buf); | |
|
2439
b6c62e4abf59
Put interrupt input blocking in a separate file from xterm.h.
Jim Blandy <jimb@redhat.com>
parents:
2243
diff
changeset
|
1310 xfree (buf); |
| 253 | 1311 } |
| 1312 else if (single) | |
| 1313 { | |
| 1314 raw_cursor_to (vpos, 0); | |
| 1315 background_highlight (); | |
| 1316 while (--i >= 0) | |
| 1317 OUTPUT (single); | |
| 1318 if (TF_teleray) | |
| 1319 curX = 0; | |
| 1320 } | |
| 1321 else | |
| 1322 { | |
| 1323 set_scroll_region (vpos, specified_window); | |
| 1324 if (n < 0) | |
| 1325 raw_cursor_to (specified_window - 1, 0); | |
| 1326 else | |
| 1327 raw_cursor_to (vpos, 0); | |
| 1328 background_highlight (); | |
| 1329 while (--i >= 0) | |
| 1330 OUTPUTL (scroll, specified_window - vpos); | |
| 1331 set_scroll_region (0, specified_window); | |
| 1332 } | |
| 1333 | |
| 1334 if (TN_standout_width >= 0) | |
| 1335 { | |
| 21514 | 1336 register int lower_limit |
| 253 | 1337 = (scroll_region_ok |
| 1338 ? specified_window | |
|
25675
992d0d097e54
(OUTPUT): Change for Lisp_Object selected_frame.
Gerd Moellmann <gerd@gnu.org>
parents:
25187
diff
changeset
|
1339 : FRAME_HEIGHT (sf)); |
| 253 | 1340 |
| 1341 if (n < 0) | |
| 1342 { | |
| 1343 bcopy (&chars_wasted[vpos - n], &chars_wasted[vpos], | |
| 1344 lower_limit - vpos + n); | |
| 1345 bzero (&chars_wasted[lower_limit + n], - n); | |
| 1346 } | |
| 1347 else | |
| 1348 { | |
| 1349 bcopy (&chars_wasted[vpos], ©buf[vpos], lower_limit - vpos - n); | |
| 1350 bcopy (©buf[vpos], &chars_wasted[vpos + n], | |
| 1351 lower_limit - vpos - n); | |
| 1352 bzero (&chars_wasted[vpos], n); | |
| 1353 } | |
| 1354 } | |
| 765 | 1355 if (!scroll_region_ok && memory_below_frame && n < 0) |
| 253 | 1356 { |
|
25675
992d0d097e54
(OUTPUT): Change for Lisp_Object selected_frame.
Gerd Moellmann <gerd@gnu.org>
parents:
25187
diff
changeset
|
1357 cursor_to (FRAME_HEIGHT (sf) + n, 0); |
| 253 | 1358 clear_to_end (); |
| 1359 } | |
| 1360 } | |
| 1361 | |
| 1362 /* Compute cost of sending "str", in characters, | |
| 1363 not counting any line-dependent padding. */ | |
| 1364 | |
| 1365 int | |
| 1366 string_cost (str) | |
| 1367 char *str; | |
| 1368 { | |
| 1369 cost = 0; | |
| 1370 if (str) | |
| 1371 tputs (str, 0, evalcost); | |
| 1372 return cost; | |
| 1373 } | |
| 1374 | |
| 1375 /* Compute cost of sending "str", in characters, | |
| 1376 counting any line-dependent padding at one line. */ | |
| 1377 | |
| 1378 static int | |
| 1379 string_cost_one_line (str) | |
| 1380 char *str; | |
| 1381 { | |
| 1382 cost = 0; | |
| 1383 if (str) | |
| 1384 tputs (str, 1, evalcost); | |
| 1385 return cost; | |
| 1386 } | |
| 1387 | |
| 1388 /* Compute per line amount of line-dependent padding, | |
| 1389 in tenths of characters. */ | |
| 1390 | |
| 1391 int | |
| 1392 per_line_cost (str) | |
| 1393 register char *str; | |
| 1394 { | |
| 1395 cost = 0; | |
| 1396 if (str) | |
| 1397 tputs (str, 0, evalcost); | |
| 1398 cost = - cost; | |
| 1399 if (str) | |
| 1400 tputs (str, 10, evalcost); | |
| 1401 return cost; | |
| 1402 } | |
| 1403 | |
| 1404 #ifndef old | |
| 1405 /* 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
|
1406 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
|
1407 The length of this vector is based on max_frame_width. */ |
| 253 | 1408 |
| 1409 int *char_ins_del_vector; | |
| 1410 | |
| 765 | 1411 #define char_ins_del_cost(f) (&char_ins_del_vector[FRAME_WIDTH ((f))]) |
| 253 | 1412 #endif |
| 1413 | |
| 1414 /* ARGSUSED */ | |
| 1415 static void | |
| 765 | 1416 calculate_ins_del_char_costs (frame) |
| 1417 FRAME_PTR frame; | |
| 253 | 1418 { |
| 1419 int ins_startup_cost, del_startup_cost; | |
| 1420 int ins_cost_per_char, del_cost_per_char; | |
| 1421 register int i; | |
| 1422 register int *p; | |
| 1423 | |
| 1424 if (TS_ins_multi_chars) | |
| 1425 { | |
| 1426 ins_cost_per_char = 0; | |
| 1427 ins_startup_cost = string_cost_one_line (TS_ins_multi_chars); | |
| 1428 } | |
| 1429 else if (TS_ins_char || TS_pad_inserted_char | |
| 1430 || (TS_insert_mode && TS_end_insert_mode)) | |
| 1431 { | |
| 1432 ins_startup_cost = (30 * (string_cost (TS_insert_mode) | |
| 1433 + string_cost (TS_end_insert_mode))) / 100; | |
| 1434 ins_cost_per_char = (string_cost_one_line (TS_ins_char) | |
| 1435 + string_cost_one_line (TS_pad_inserted_char)); | |
| 1436 } | |
| 1437 else | |
| 1438 { | |
| 1439 ins_startup_cost = 9999; | |
| 1440 ins_cost_per_char = 0; | |
| 1441 } | |
| 1442 | |
| 1443 if (TS_del_multi_chars) | |
| 1444 { | |
| 1445 del_cost_per_char = 0; | |
| 1446 del_startup_cost = string_cost_one_line (TS_del_multi_chars); | |
| 1447 } | |
| 1448 else if (TS_del_char) | |
| 1449 { | |
| 1450 del_startup_cost = (string_cost (TS_delete_mode) | |
| 1451 + string_cost (TS_end_delete_mode)); | |
| 1452 if (delete_in_insert_mode) | |
| 1453 del_startup_cost /= 2; | |
| 1454 del_cost_per_char = string_cost_one_line (TS_del_char); | |
| 1455 } | |
| 1456 else | |
| 1457 { | |
| 1458 del_startup_cost = 9999; | |
| 1459 del_cost_per_char = 0; | |
| 1460 } | |
| 1461 | |
| 1462 /* Delete costs are at negative offsets */ | |
| 765 | 1463 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
|
1464 for (i = FRAME_WIDTH (frame); --i >= 0;) |
| 253 | 1465 *--p = (del_startup_cost += del_cost_per_char); |
| 1466 | |
| 1467 /* Doing nothing is free */ | |
| 765 | 1468 p = &char_ins_del_cost (frame)[0]; |
| 253 | 1469 *p++ = 0; |
| 1470 | |
| 1471 /* Insert costs are at positive offsets */ | |
| 765 | 1472 for (i = FRAME_WIDTH (frame); --i >= 0;) |
| 253 | 1473 *p++ = (ins_startup_cost += ins_cost_per_char); |
| 1474 } | |
| 1475 | |
| 21514 | 1476 void |
| 765 | 1477 calculate_costs (frame) |
| 1478 FRAME_PTR frame; | |
| 253 | 1479 { |
|
10121
3f9f77a9488d
(calculate_costs): Set FRAME_COST_BAUD_RATE.
Richard M. Stallman <rms@gnu.org>
parents:
9797
diff
changeset
|
1480 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
|
1481 ? TS_set_scroll_region |
|
3f9f77a9488d
(calculate_costs): Set FRAME_COST_BAUD_RATE.
Richard M. Stallman <rms@gnu.org>
parents:
9797
diff
changeset
|
1482 : TS_set_scroll_region_1); |
| 253 | 1483 |
|
10121
3f9f77a9488d
(calculate_costs): Set FRAME_COST_BAUD_RATE.
Richard M. Stallman <rms@gnu.org>
parents:
9797
diff
changeset
|
1484 FRAME_COST_BAUD_RATE (frame) = baud_rate; |
| 253 | 1485 |
|
10261
4fd304db9216
(scroll_region_cost): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
10121
diff
changeset
|
1486 scroll_region_cost = string_cost (f); |
| 253 | 1487 |
| 1488 /* These variables are only used for terminal stuff. They are allocated | |
| 765 | 1489 once for the terminal frame of X-windows emacs, but not used afterwards. |
| 253 | 1490 |
| 1491 char_ins_del_vector (i.e., char_ins_del_cost) isn't used because | |
| 1492 X turns off char_ins_del_ok. | |
| 1493 | |
| 1494 chars_wasted and copybuf are only used here in term.c in cases where | |
| 1495 the term hook isn't called. */ | |
| 1496 | |
|
10771
d564078d10c6
(calculate_costs): Update max_frame_height, max_frame_width.
Richard M. Stallman <rms@gnu.org>
parents:
10481
diff
changeset
|
1497 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
|
1498 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
|
1499 |
| 253 | 1500 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
|
1501 chars_wasted = (char *) xrealloc (chars_wasted, max_frame_height); |
| 253 | 1502 else |
|
10771
d564078d10c6
(calculate_costs): Update max_frame_height, max_frame_width.
Richard M. Stallman <rms@gnu.org>
parents:
10481
diff
changeset
|
1503 chars_wasted = (char *) xmalloc (max_frame_height); |
| 253 | 1504 |
| 1505 if (copybuf != 0) | |
|
10771
d564078d10c6
(calculate_costs): Update max_frame_height, max_frame_width.
Richard M. Stallman <rms@gnu.org>
parents:
10481
diff
changeset
|
1506 copybuf = (char *) xrealloc (copybuf, max_frame_height); |
| 253 | 1507 else |
|
10771
d564078d10c6
(calculate_costs): Update max_frame_height, max_frame_width.
Richard M. Stallman <rms@gnu.org>
parents:
10481
diff
changeset
|
1508 copybuf = (char *) xmalloc (max_frame_height); |
| 253 | 1509 |
| 1510 if (char_ins_del_vector != 0) | |
| 1511 char_ins_del_vector | |
| 1512 = (int *) xrealloc (char_ins_del_vector, | |
| 1513 (sizeof (int) | |
|
10771
d564078d10c6
(calculate_costs): Update max_frame_height, max_frame_width.
Richard M. Stallman <rms@gnu.org>
parents:
10481
diff
changeset
|
1514 + 2 * max_frame_width * sizeof (int))); |
| 253 | 1515 else |
| 1516 char_ins_del_vector | |
| 1517 = (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
|
1518 + 2 * max_frame_width * sizeof (int)); |
| 253 | 1519 |
|
10771
d564078d10c6
(calculate_costs): Update max_frame_height, max_frame_width.
Richard M. Stallman <rms@gnu.org>
parents:
10481
diff
changeset
|
1520 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
|
1521 bzero (copybuf, max_frame_height); |
| 253 | 1522 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
|
1523 + 2 * max_frame_width * sizeof (int))); |
| 253 | 1524 |
| 765 | 1525 if (f && (!TS_ins_line && !TS_del_line)) |
| 1526 do_line_insertion_deletion_costs (frame, | |
| 253 | 1527 TS_rev_scroll, TS_ins_multi_lines, |
| 1528 TS_fwd_scroll, TS_del_multi_lines, | |
| 765 | 1529 f, f, 1); |
| 253 | 1530 else |
| 765 | 1531 do_line_insertion_deletion_costs (frame, |
| 253 | 1532 TS_ins_line, TS_ins_multi_lines, |
| 1533 TS_del_line, TS_del_multi_lines, | |
| 1534 0, 0, 1); | |
| 1535 | |
| 765 | 1536 calculate_ins_del_char_costs (frame); |
| 253 | 1537 |
| 1538 /* Don't use TS_repeat if its padding is worse than sending the chars */ | |
| 1539 if (TS_repeat && per_line_cost (TS_repeat) * baud_rate < 9000) | |
| 1540 RPov = string_cost (TS_repeat); | |
| 1541 else | |
| 765 | 1542 RPov = FRAME_WIDTH (frame) * 2; |
| 253 | 1543 |
| 1544 cmcostinit (); /* set up cursor motion costs */ | |
| 1545 } | |
| 1546 | |
|
1015
58c373be762c
* term.c (term_get_fkeys): Some systems define `static' to be the
Jim Blandy <jimb@redhat.com>
parents:
969
diff
changeset
|
1547 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
|
1548 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
|
1549 }; |
|
58c373be762c
* term.c (term_get_fkeys): Some systems define `static' to be the
Jim Blandy <jimb@redhat.com>
parents:
969
diff
changeset
|
1550 |
|
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
|
1551 /* 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
|
1552 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
|
1553 (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
|
1554 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
|
1555 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
|
1556 */ |
|
8e4d2d1e7c66
Added lots more cookies to fkey_table[], and code to do even more.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1994
diff
changeset
|
1557 |
| 25002 | 1558 static struct fkey_table keys[] = |
| 1559 { | |
|
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
|
1560 "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
|
1561 "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
|
1562 "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
|
1563 "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
|
1564 "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
|
1565 "%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
|
1566 "%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
|
1567 "@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
|
1568 "@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
|
1569 "*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
|
1570 "%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
|
1571 "@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
|
1572 /* |
|
8e4d2d1e7c66
Added lots more cookies to fkey_table[], and code to do even more.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1994
diff
changeset
|
1573 * "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
|
1574 */ |
|
8e4d2d1e7c66
Added lots more cookies to fkey_table[], and code to do even more.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1994
diff
changeset
|
1575 "&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
|
1576 "%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
|
1577 "%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
|
1578 "@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
|
1579 "@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
|
1580 "%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
|
1581 /* |
|
8e4d2d1e7c66
Added lots more cookies to fkey_table[], and code to do even more.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1994
diff
changeset
|
1582 * "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
|
1583 */ |
|
8e4d2d1e7c66
Added lots more cookies to fkey_table[], and code to do even more.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1994
diff
changeset
|
1584 "&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
|
1585 /* |
|
8e4d2d1e7c66
Added lots more cookies to fkey_table[], and code to do even more.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1994
diff
changeset
|
1586 * "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
|
1587 */ |
|
8e4d2d1e7c66
Added lots more cookies to fkey_table[], and code to do even more.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1994
diff
changeset
|
1588 "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
|
1589 "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
|
1590 "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
|
1591 "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
|
1592 "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
|
1593 "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
|
1594 /* |
|
8e4d2d1e7c66
Added lots more cookies to fkey_table[], and code to do even more.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1994
diff
changeset
|
1595 * "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
|
1596 */ |
|
8e4d2d1e7c66
Added lots more cookies to fkey_table[], and code to do even more.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1994
diff
changeset
|
1597 "@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
|
1598 /* |
|
8e4d2d1e7c66
Added lots more cookies to fkey_table[], and code to do even more.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1994
diff
changeset
|
1599 * "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
|
1600 * "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
|
1601 * "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
|
1602 * --- 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
|
1603 */ |
|
8e4d2d1e7c66
Added lots more cookies to fkey_table[], and code to do even more.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1994
diff
changeset
|
1604 "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
|
1605 /* |
|
8e4d2d1e7c66
Added lots more cookies to fkey_table[], and code to do even more.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1994
diff
changeset
|
1606 * "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
|
1607 */ |
|
8e4d2d1e7c66
Added lots more cookies to fkey_table[], and code to do even more.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1994
diff
changeset
|
1608 "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
|
1609 /* |
|
8e4d2d1e7c66
Added lots more cookies to fkey_table[], and code to do even more.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1994
diff
changeset
|
1610 * "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
|
1611 */ |
|
8e4d2d1e7c66
Added lots more cookies to fkey_table[], and code to do even more.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1994
diff
changeset
|
1612 "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
|
1613 /* |
|
8e4d2d1e7c66
Added lots more cookies to fkey_table[], and code to do even more.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1994
diff
changeset
|
1614 * "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
|
1615 */ |
|
8e4d2d1e7c66
Added lots more cookies to fkey_table[], and code to do even more.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1994
diff
changeset
|
1616 "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
|
1617 /* |
|
8e4d2d1e7c66
Added lots more cookies to fkey_table[], and code to do even more.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1994
diff
changeset
|
1618 * "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
|
1619 */ |
|
8e4d2d1e7c66
Added lots more cookies to fkey_table[], and code to do even more.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1994
diff
changeset
|
1620 "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
|
1621 /* |
|
8e4d2d1e7c66
Added lots more cookies to fkey_table[], and code to do even more.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1994
diff
changeset
|
1622 * "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
|
1623 */ |
|
8e4d2d1e7c66
Added lots more cookies to fkey_table[], and code to do even more.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1994
diff
changeset
|
1624 "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
|
1625 "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
|
1626 "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
|
1627 "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
|
1628 "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
|
1629 "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
|
1630 "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
|
1631 "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
|
1632 "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
|
1633 }; |
|
58c373be762c
* term.c (term_get_fkeys): Some systems define `static' to be the
Jim Blandy <jimb@redhat.com>
parents:
969
diff
changeset
|
1634 |
|
6248
0e4319197d29
(term_get_fkeys_data): Variable removed.
Roland McGrath <roland@gnu.org>
parents:
5933
diff
changeset
|
1635 static char **term_get_fkeys_arg; |
|
0e4319197d29
(term_get_fkeys_data): Variable removed.
Roland McGrath <roland@gnu.org>
parents:
5933
diff
changeset
|
1636 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
|
1637 |
|
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
|
1638 /* 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
|
1639 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
|
1640 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
|
1641 |
| 533 | 1642 void |
| 1643 term_get_fkeys (address) | |
| 1644 char **address; | |
| 1645 { | |
|
6248
0e4319197d29
(term_get_fkeys_data): Variable removed.
Roland McGrath <roland@gnu.org>
parents:
5933
diff
changeset
|
1646 /* 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
|
1647 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
|
1648 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
|
1649 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
|
1650 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
|
1651 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
|
1652 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
|
1653 |
|
0e4319197d29
(term_get_fkeys_data): Variable removed.
Roland McGrath <roland@gnu.org>
parents:
5933
diff
changeset
|
1654 extern Lisp_Object Fidentity (); |
|
0e4319197d29
(term_get_fkeys_data): Variable removed.
Roland McGrath <roland@gnu.org>
parents:
5933
diff
changeset
|
1655 term_get_fkeys_arg = address; |
|
0e4319197d29
(term_get_fkeys_data): Variable removed.
Roland McGrath <roland@gnu.org>
parents:
5933
diff
changeset
|
1656 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
|
1657 } |
|
0e4319197d29
(term_get_fkeys_data): Variable removed.
Roland McGrath <roland@gnu.org>
parents:
5933
diff
changeset
|
1658 |
|
0e4319197d29
(term_get_fkeys_data): Variable removed.
Roland McGrath <roland@gnu.org>
parents:
5933
diff
changeset
|
1659 static Lisp_Object |
|
0e4319197d29
(term_get_fkeys_data): Variable removed.
Roland McGrath <roland@gnu.org>
parents:
5933
diff
changeset
|
1660 term_get_fkeys_1 () |
|
0e4319197d29
(term_get_fkeys_data): Variable removed.
Roland McGrath <roland@gnu.org>
parents:
5933
diff
changeset
|
1661 { |
| 533 | 1662 int i; |
| 1663 | |
|
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
|
1664 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
|
1665 |
|
3359
ef29e2a4fc46
(term_get_fkeys): If not initialized, init Vfunction_key_map.
Richard M. Stallman <rms@gnu.org>
parents:
2961
diff
changeset
|
1666 /* 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
|
1667 if (!initialized) |
|
ef29e2a4fc46
(term_get_fkeys): If not initialized, init Vfunction_key_map.
Richard M. Stallman <rms@gnu.org>
parents:
2961
diff
changeset
|
1668 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
|
1669 |
| 533 | 1670 for (i = 0; i < (sizeof (keys)/sizeof (keys[0])); i++) |
| 1671 { | |
| 1672 char *sequence = tgetstr (keys[i].cap, address); | |
| 1673 if (sequence) | |
|
6248
0e4319197d29
(term_get_fkeys_data): Variable removed.
Roland McGrath <roland@gnu.org>
parents:
5933
diff
changeset
|
1674 Fdefine_key (Vfunction_key_map, build_string (sequence), |
|
0e4319197d29
(term_get_fkeys_data): Variable removed.
Roland McGrath <roland@gnu.org>
parents:
5933
diff
changeset
|
1675 Fmake_vector (make_number (1), |
|
0e4319197d29
(term_get_fkeys_data): Variable removed.
Roland McGrath <roland@gnu.org>
parents:
5933
diff
changeset
|
1676 intern (keys[i].name))); |
| 533 | 1677 } |
|
1015
58c373be762c
* term.c (term_get_fkeys): Some systems define `static' to be the
Jim Blandy <jimb@redhat.com>
parents:
969
diff
changeset
|
1678 |
|
58c373be762c
* term.c (term_get_fkeys): Some systems define `static' to be the
Jim Blandy <jimb@redhat.com>
parents:
969
diff
changeset
|
1679 /* 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
|
1680 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
|
1681 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
|
1682 "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
|
1683 */ |
|
58c373be762c
* term.c (term_get_fkeys): Some systems define `static' to be the
Jim Blandy <jimb@redhat.com>
parents:
969
diff
changeset
|
1684 { |
|
58c373be762c
* term.c (term_get_fkeys): Some systems define `static' to be the
Jim Blandy <jimb@redhat.com>
parents:
969
diff
changeset
|
1685 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
|
1686 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
|
1687 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
|
1688 |
|
58c373be762c
* term.c (term_get_fkeys): Some systems define `static' to be the
Jim Blandy <jimb@redhat.com>
parents:
969
diff
changeset
|
1689 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
|
1690 { |
|
6248
0e4319197d29
(term_get_fkeys_data): Variable removed.
Roland McGrath <roland@gnu.org>
parents:
5933
diff
changeset
|
1691 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
|
1692 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
|
1693 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
|
1694 } |
|
58c373be762c
* term.c (term_get_fkeys): Some systems define `static' to be the
Jim Blandy <jimb@redhat.com>
parents:
969
diff
changeset
|
1695 |
|
58c373be762c
* term.c (term_get_fkeys): Some systems define `static' to be the
Jim Blandy <jimb@redhat.com>
parents:
969
diff
changeset
|
1696 if (k0) |
|
6248
0e4319197d29
(term_get_fkeys_data): Variable removed.
Roland McGrath <roland@gnu.org>
parents:
5933
diff
changeset
|
1697 Fdefine_key (Vfunction_key_map, build_string (k0), |
|
0e4319197d29
(term_get_fkeys_data): Variable removed.
Roland McGrath <roland@gnu.org>
parents:
5933
diff
changeset
|
1698 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
|
1699 } |
|
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
|
1700 |
|
8e4d2d1e7c66
Added lots more cookies to fkey_table[], and code to do even more.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1994
diff
changeset
|
1701 /* 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
|
1702 { |
|
8e4d2d1e7c66
Added lots more cookies to fkey_table[], and code to do even more.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1994
diff
changeset
|
1703 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
|
1704 |
|
3489
5c2b4797aab2
(term_get_fkeys): Use correct names for F10 and up.
Richard M. Stallman <rms@gnu.org>
parents:
3359
diff
changeset
|
1705 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
|
1706 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
|
1707 { |
|
8e4d2d1e7c66
Added lots more cookies to fkey_table[], and code to do even more.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1994
diff
changeset
|
1708 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
|
1709 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
|
1710 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
|
1711 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
|
1712 else |
|
10481
24756aef26e3
(term_get_fkeys_1): Bug fix for function key above f19.
Richard M. Stallman <rms@gnu.org>
parents:
10439
diff
changeset
|
1713 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
|
1714 |
|
3489
5c2b4797aab2
(term_get_fkeys): Use correct names for F10 and up.
Richard M. Stallman <rms@gnu.org>
parents:
3359
diff
changeset
|
1715 { |
|
5c2b4797aab2
(term_get_fkeys): Use correct names for F10 and up.
Richard M. Stallman <rms@gnu.org>
parents:
3359
diff
changeset
|
1716 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
|
1717 if (sequence) |
|
5c2b4797aab2
(term_get_fkeys): Use correct names for F10 and up.
Richard M. Stallman <rms@gnu.org>
parents:
3359
diff
changeset
|
1718 { |
|
4543
929e4c850e76
(term_get_fkeys_define_1, term_get_fkeys_define): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
4499
diff
changeset
|
1719 sprintf (fkey, "f%d", i); |
|
6248
0e4319197d29
(term_get_fkeys_data): Variable removed.
Roland McGrath <roland@gnu.org>
parents:
5933
diff
changeset
|
1720 Fdefine_key (Vfunction_key_map, build_string (sequence), |
|
0e4319197d29
(term_get_fkeys_data): Variable removed.
Roland McGrath <roland@gnu.org>
parents:
5933
diff
changeset
|
1721 Fmake_vector (make_number (1), |
|
0e4319197d29
(term_get_fkeys_data): Variable removed.
Roland McGrath <roland@gnu.org>
parents:
5933
diff
changeset
|
1722 intern (fkey))); |
|
3489
5c2b4797aab2
(term_get_fkeys): Use correct names for F10 and up.
Richard M. Stallman <rms@gnu.org>
parents:
3359
diff
changeset
|
1723 } |
|
5c2b4797aab2
(term_get_fkeys): Use correct names for F10 and up.
Richard M. Stallman <rms@gnu.org>
parents:
3359
diff
changeset
|
1724 } |
|
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
|
1725 } |
|
8e4d2d1e7c66
Added lots more cookies to fkey_table[], and code to do even more.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1994
diff
changeset
|
1726 } |
|
8e4d2d1e7c66
Added lots more cookies to fkey_table[], and code to do even more.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1994
diff
changeset
|
1727 |
|
8e4d2d1e7c66
Added lots more cookies to fkey_table[], and code to do even more.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1994
diff
changeset
|
1728 /* |
|
8e4d2d1e7c66
Added lots more cookies to fkey_table[], and code to do even more.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1994
diff
changeset
|
1729 * 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
|
1730 */ |
|
8e4d2d1e7c66
Added lots more cookies to fkey_table[], and code to do even more.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1994
diff
changeset
|
1731 { |
|
3489
5c2b4797aab2
(term_get_fkeys): Use correct names for F10 and up.
Richard M. Stallman <rms@gnu.org>
parents:
3359
diff
changeset
|
1732 #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
|
1733 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
|
1734 { \ |
|
5c2b4797aab2
(term_get_fkeys): Use correct names for F10 and up.
Richard M. Stallman <rms@gnu.org>
parents:
3359
diff
changeset
|
1735 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
|
1736 if (sequence) \ |
|
6248
0e4319197d29
(term_get_fkeys_data): Variable removed.
Roland McGrath <roland@gnu.org>
parents:
5933
diff
changeset
|
1737 Fdefine_key (Vfunction_key_map, build_string (sequence), \ |
|
0e4319197d29
(term_get_fkeys_data): Variable removed.
Roland McGrath <roland@gnu.org>
parents:
5933
diff
changeset
|
1738 Fmake_vector (make_number (1), \ |
|
0e4319197d29
(term_get_fkeys_data): Variable removed.
Roland McGrath <roland@gnu.org>
parents:
5933
diff
changeset
|
1739 intern (sym))); \ |
|
3489
5c2b4797aab2
(term_get_fkeys): Use correct names for F10 and up.
Richard M. Stallman <rms@gnu.org>
parents:
3359
diff
changeset
|
1740 } |
|
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
|
1741 |
|
8e4d2d1e7c66
Added lots more cookies to fkey_table[], and code to do even more.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1994
diff
changeset
|
1742 /* 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
|
1743 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
|
1744 /* 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
|
1745 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
|
1746 /* 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
|
1747 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
|
1748 /* 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
|
1749 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
|
1750 |
|
f42e5fd15f6f
(term_get_fkeys_1): Workaround for IBM's dialect of terminfo.
Karl Heuer <kwzh@gnu.org>
parents:
8898
diff
changeset
|
1751 /* 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
|
1752 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
|
1753 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
|
1754 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
|
1755 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
|
1756 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
|
1757 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
|
1758 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
|
1759 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
|
1760 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
|
1761 CONDITIONAL_REASSIGN ("*6", "kU", "select"); |
|
2224
49bda4cf498c
Supply second arg for tgetstr() calls.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2179
diff
changeset
|
1762 #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
|
1763 } |
| 25002 | 1764 |
| 1765 return Qnil; | |
| 533 | 1766 } |
| 1767 | |
| 1768 | |
| 25002 | 1769 /*********************************************************************** |
| 1770 Character Display Information | |
| 1771 ***********************************************************************/ | |
| 1772 | |
| 1773 static void append_glyph P_ ((struct it *)); | |
| 1774 | |
| 1775 | |
| 1776 /* Append glyphs to IT's glyph_row. Called from produce_glyphs for | |
| 1777 terminal frames if IT->glyph_row != NULL. IT->c is the character | |
| 1778 for which to produce glyphs; IT->face_id contains the character's | |
| 1779 face. Padding glyphs are appended if IT->c has a IT->pixel_width > | |
| 1780 1. */ | |
| 1781 | |
| 1782 static void | |
| 1783 append_glyph (it) | |
| 1784 struct it *it; | |
| 1785 { | |
| 1786 struct glyph *glyph, *end; | |
| 1787 int i; | |
| 1788 | |
| 1789 xassert (it->glyph_row); | |
| 1790 glyph = (it->glyph_row->glyphs[it->area] | |
| 1791 + it->glyph_row->used[it->area]); | |
| 1792 end = it->glyph_row->glyphs[1 + it->area]; | |
| 1793 | |
| 1794 for (i = 0; | |
| 1795 i < it->pixel_width && glyph < end; | |
| 1796 ++i) | |
| 1797 { | |
| 1798 glyph->type = CHAR_GLYPH; | |
|
29462
3306af2e4f3d
(append_glyph): Revert change of 2000-06-06.
Gerd Moellmann <gerd@gnu.org>
parents:
29448
diff
changeset
|
1799 glyph->pixel_width = 1; |
|
26999
5d0057e6170e
(encode_terminal_code): Adjusted for the change of struct
Kenichi Handa <handa@m17n.org>
parents:
26902
diff
changeset
|
1800 glyph->u.ch = it->c; |
|
5d0057e6170e
(encode_terminal_code): Adjusted for the change of struct
Kenichi Handa <handa@m17n.org>
parents:
26902
diff
changeset
|
1801 glyph->face_id = it->face_id; |
|
5d0057e6170e
(encode_terminal_code): Adjusted for the change of struct
Kenichi Handa <handa@m17n.org>
parents:
26902
diff
changeset
|
1802 glyph->padding_p = i > 0; |
| 25002 | 1803 glyph->charpos = CHARPOS (it->position); |
| 1804 glyph->object = it->object; | |
| 1805 | |
| 1806 ++it->glyph_row->used[it->area]; | |
| 1807 ++glyph; | |
| 1808 } | |
| 1809 } | |
| 1810 | |
| 1811 | |
| 1812 /* Produce glyphs for the display element described by IT. The | |
| 1813 function fills output fields of IT with pixel information like the | |
| 1814 pixel width and height of a character, and maybe produces glyphs at | |
| 1815 the same time if IT->glyph_row is non-null. See the explanation of | |
| 1816 struct display_iterator in dispextern.h for an overview. */ | |
| 1817 | |
| 1818 void | |
| 1819 produce_glyphs (it) | |
| 1820 struct it *it; | |
| 1821 { | |
| 1822 /* If a hook is installed, let it do the work. */ | |
| 1823 xassert (it->what == IT_CHARACTER | |
|
26871
aaf45e665b14
(encode_terminal_code): Delete codes for a composite
Kenichi Handa <handa@m17n.org>
parents:
26425
diff
changeset
|
1824 || it->what == IT_COMPOSITION |
| 25002 | 1825 || it->what == IT_IMAGE |
| 1826 || it->what == IT_STRETCH); | |
| 1827 | |
|
26871
aaf45e665b14
(encode_terminal_code): Delete codes for a composite
Kenichi Handa <handa@m17n.org>
parents:
26425
diff
changeset
|
1828 /* Nothing but characters are supported on terminal frames. For a |
|
aaf45e665b14
(encode_terminal_code): Delete codes for a composite
Kenichi Handa <handa@m17n.org>
parents:
26425
diff
changeset
|
1829 composition sequence, it->c is the first character of the |
|
aaf45e665b14
(encode_terminal_code): Delete codes for a composite
Kenichi Handa <handa@m17n.org>
parents:
26425
diff
changeset
|
1830 sequence. */ |
|
aaf45e665b14
(encode_terminal_code): Delete codes for a composite
Kenichi Handa <handa@m17n.org>
parents:
26425
diff
changeset
|
1831 xassert (it->what == IT_CHARACTER |
|
aaf45e665b14
(encode_terminal_code): Delete codes for a composite
Kenichi Handa <handa@m17n.org>
parents:
26425
diff
changeset
|
1832 || it->what == IT_COMPOSITION); |
| 25002 | 1833 |
| 1834 if (it->c >= 040 && it->c < 0177) | |
| 1835 { | |
| 1836 it->pixel_width = it->nglyphs = 1; | |
| 1837 if (it->glyph_row) | |
| 1838 append_glyph (it); | |
| 1839 } | |
| 1840 else if (it->c == '\n') | |
| 1841 it->pixel_width = it->nglyphs = 0; | |
| 1842 else if (it->c == '\t') | |
| 1843 { | |
|
28685
b4310b6f3b5e
(produce_glyphs): Remove reference to struct it's prompt_width.
Gerd Moellmann <gerd@gnu.org>
parents:
28507
diff
changeset
|
1844 int absolute_x = (it->current_x |
| 25002 | 1845 + it->continuation_lines_width); |
| 1846 int next_tab_x | |
| 1847 = (((1 + absolute_x + it->tab_width - 1) | |
| 1848 / it->tab_width) | |
| 1849 * it->tab_width); | |
| 1850 int nspaces; | |
| 1851 | |
| 1852 /* If part of the TAB has been displayed on the previous line | |
| 1853 which is continued now, continuation_lines_width will have | |
| 1854 been incremented already by the part that fitted on the | |
| 1855 continued line. So, we will get the right number of spaces | |
| 1856 here. */ | |
| 1857 nspaces = next_tab_x - absolute_x; | |
| 1858 | |
| 1859 if (it->glyph_row) | |
| 1860 { | |
| 1861 int n = nspaces; | |
| 1862 | |
| 1863 it->c = ' '; | |
| 1864 it->pixel_width = it->len = 1; | |
| 1865 | |
| 1866 while (n--) | |
| 1867 append_glyph (it); | |
| 1868 | |
| 1869 it->c = '\t'; | |
| 1870 } | |
| 1871 | |
| 1872 it->pixel_width = nspaces; | |
| 1873 it->nglyphs = nspaces; | |
| 1874 } | |
|
29262
b7059c9f98ac
(produce_glyphs): Don't treat eight-bit-* charsets as multibyte.
Eli Zaretskii <eliz@gnu.org>
parents:
29097
diff
changeset
|
1875 else if (SINGLE_BYTE_CHAR_P (it->c)) |
|
b7059c9f98ac
(produce_glyphs): Don't treat eight-bit-* charsets as multibyte.
Eli Zaretskii <eliz@gnu.org>
parents:
29097
diff
changeset
|
1876 { |
|
29263
167d236e633b
Correct a typo in a comment.
Eli Zaretskii <eliz@gnu.org>
parents:
29262
diff
changeset
|
1877 /* Coming here means that it->c is from display table, thus we |
|
29262
b7059c9f98ac
(produce_glyphs): Don't treat eight-bit-* charsets as multibyte.
Eli Zaretskii <eliz@gnu.org>
parents:
29097
diff
changeset
|
1878 must send the code as is to the terminal. Although there's |
|
b7059c9f98ac
(produce_glyphs): Don't treat eight-bit-* charsets as multibyte.
Eli Zaretskii <eliz@gnu.org>
parents:
29097
diff
changeset
|
1879 no way to know how many columns it occupies on a screen, it |
|
b7059c9f98ac
(produce_glyphs): Don't treat eight-bit-* charsets as multibyte.
Eli Zaretskii <eliz@gnu.org>
parents:
29097
diff
changeset
|
1880 is a good assumption that a single byte code has 1-column |
|
b7059c9f98ac
(produce_glyphs): Don't treat eight-bit-* charsets as multibyte.
Eli Zaretskii <eliz@gnu.org>
parents:
29097
diff
changeset
|
1881 width. */ |
|
b7059c9f98ac
(produce_glyphs): Don't treat eight-bit-* charsets as multibyte.
Eli Zaretskii <eliz@gnu.org>
parents:
29097
diff
changeset
|
1882 it->pixel_width = it->nglyphs = 1; |
|
b7059c9f98ac
(produce_glyphs): Don't treat eight-bit-* charsets as multibyte.
Eli Zaretskii <eliz@gnu.org>
parents:
29097
diff
changeset
|
1883 if (it->glyph_row) |
|
b7059c9f98ac
(produce_glyphs): Don't treat eight-bit-* charsets as multibyte.
Eli Zaretskii <eliz@gnu.org>
parents:
29097
diff
changeset
|
1884 append_glyph (it); |
|
b7059c9f98ac
(produce_glyphs): Don't treat eight-bit-* charsets as multibyte.
Eli Zaretskii <eliz@gnu.org>
parents:
29097
diff
changeset
|
1885 } |
| 25002 | 1886 else |
| 1887 { | |
|
26871
aaf45e665b14
(encode_terminal_code): Delete codes for a composite
Kenichi Handa <handa@m17n.org>
parents:
26425
diff
changeset
|
1888 /* A multi-byte character. The display width is fixed for all |
|
aaf45e665b14
(encode_terminal_code): Delete codes for a composite
Kenichi Handa <handa@m17n.org>
parents:
26425
diff
changeset
|
1889 characters of the set. Some of the glyphs may have to be |
|
aaf45e665b14
(encode_terminal_code): Delete codes for a composite
Kenichi Handa <handa@m17n.org>
parents:
26425
diff
changeset
|
1890 ignored because they are already displayed in a continued |
|
aaf45e665b14
(encode_terminal_code): Delete codes for a composite
Kenichi Handa <handa@m17n.org>
parents:
26425
diff
changeset
|
1891 line. */ |
| 25002 | 1892 int charset = CHAR_CHARSET (it->c); |
| 1893 | |
|
26871
aaf45e665b14
(encode_terminal_code): Delete codes for a composite
Kenichi Handa <handa@m17n.org>
parents:
26425
diff
changeset
|
1894 it->pixel_width = CHARSET_WIDTH (charset); |
| 25002 | 1895 it->nglyphs = it->pixel_width; |
| 1896 | |
| 1897 if (it->glyph_row) | |
| 1898 append_glyph (it); | |
| 1899 } | |
| 1900 | |
| 1901 /* Advance current_x by the pixel width as a convenience for | |
| 1902 the caller. */ | |
| 1903 if (it->area == TEXT_AREA) | |
| 1904 it->current_x += it->pixel_width; | |
|
25187
39feb68ed3c7
(produce_glyphs): Set iterator's physical height
Gerd Moellmann <gerd@gnu.org>
parents:
25002
diff
changeset
|
1905 it->ascent = it->max_ascent = it->phys_ascent = it->max_phys_ascent = 0; |
|
39feb68ed3c7
(produce_glyphs): Set iterator's physical height
Gerd Moellmann <gerd@gnu.org>
parents:
25002
diff
changeset
|
1906 it->descent = it->max_descent = it->phys_descent = it->max_phys_descent = 1; |
| 25002 | 1907 } |
| 1908 | |
| 1909 | |
| 1910 /* Get information about special display element WHAT in an | |
| 1911 environment described by IT. WHAT is one of IT_TRUNCATION or | |
| 1912 IT_CONTINUATION. Maybe produce glyphs for WHAT if IT has a | |
| 1913 non-null glyph_row member. This function ensures that fields like | |
| 1914 face_id, c, len of IT are left untouched. */ | |
| 1915 | |
| 1916 void | |
| 1917 produce_special_glyphs (it, what) | |
| 1918 struct it *it; | |
| 1919 enum display_element_type what; | |
| 1920 { | |
| 1921 struct it temp_it; | |
| 1922 | |
| 1923 temp_it = *it; | |
| 1924 temp_it.dp = NULL; | |
| 1925 temp_it.what = IT_CHARACTER; | |
| 1926 temp_it.len = 1; | |
|
28507
b6f06a755c7d
make_number/XINT/XUINT conversions; EQ/== fixes; ==Qnil -> NILP
Ken Raeburn <raeburn@raeburn.org>
parents:
28465
diff
changeset
|
1927 temp_it.object = make_number (0); |
| 25002 | 1928 bzero (&temp_it.current, sizeof temp_it.current); |
| 1929 | |
| 1930 if (what == IT_CONTINUATION) | |
| 1931 { | |
| 1932 /* Continuation glyph. */ | |
| 1933 if (it->dp | |
| 1934 && INTEGERP (DISP_CONTINUE_GLYPH (it->dp)) | |
| 1935 && GLYPH_CHAR_VALID_P (XINT (DISP_CONTINUE_GLYPH (it->dp)))) | |
| 1936 { | |
| 1937 temp_it.c = FAST_GLYPH_CHAR (XINT (DISP_CONTINUE_GLYPH (it->dp))); | |
|
29019
50e144ba4af7
(produce_special_glyphs): Use CHAR_BYTES instead of
Kenichi Handa <handa@m17n.org>
parents:
28685
diff
changeset
|
1938 temp_it.len = CHAR_BYTES (temp_it.c); |
| 25002 | 1939 } |
| 1940 else | |
| 1941 temp_it.c = '\\'; | |
| 1942 | |
| 1943 produce_glyphs (&temp_it); | |
| 1944 it->pixel_width = temp_it.pixel_width; | |
| 1945 it->nglyphs = temp_it.pixel_width; | |
| 1946 } | |
| 1947 else if (what == IT_TRUNCATION) | |
| 1948 { | |
| 1949 /* Truncation glyph. */ | |
| 1950 if (it->dp | |
| 1951 && INTEGERP (DISP_TRUNC_GLYPH (it->dp)) | |
| 1952 && GLYPH_CHAR_VALID_P (XINT (DISP_TRUNC_GLYPH (it->dp)))) | |
| 1953 { | |
| 1954 temp_it.c = FAST_GLYPH_CHAR (XINT (DISP_TRUNC_GLYPH (it->dp))); | |
|
29019
50e144ba4af7
(produce_special_glyphs): Use CHAR_BYTES instead of
Kenichi Handa <handa@m17n.org>
parents:
28685
diff
changeset
|
1955 temp_it.len = CHAR_BYTES (temp_it.c); |
| 25002 | 1956 } |
| 1957 else | |
| 1958 temp_it.c = '$'; | |
| 1959 | |
| 1960 produce_glyphs (&temp_it); | |
| 1961 it->pixel_width = temp_it.pixel_width; | |
| 1962 it->nglyphs = temp_it.pixel_width; | |
| 1963 } | |
| 1964 else | |
| 1965 abort (); | |
| 1966 } | |
| 1967 | |
| 1968 | |
| 1969 /* Return an estimation of the pixel height of mode or top lines on | |
| 1970 frame F. FACE_ID specifies what line's height to estimate. */ | |
| 1971 | |
| 1972 int | |
| 1973 estimate_mode_line_height (f, face_id) | |
| 1974 struct frame *f; | |
| 1975 enum face_id face_id; | |
| 1976 { | |
| 1977 if (estimate_mode_line_height_hook) | |
| 1978 return estimate_mode_line_height_hook (f, face_id); | |
| 1979 else | |
| 1980 return 1; | |
| 1981 } | |
| 1982 | |
| 1983 | |
| 1984 | |
| 1985 /*********************************************************************** | |
| 1986 Faces | |
| 1987 ***********************************************************************/ | |
| 1988 | |
|
28465
113efc964095
(TN_no_color_video): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
28200
diff
changeset
|
1989 /* Value is non-zero if attribute ATTR may be used. ATTR should be |
|
113efc964095
(TN_no_color_video): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
28200
diff
changeset
|
1990 one of the enumerators from enum no_color_bit, or a bit set built |
|
113efc964095
(TN_no_color_video): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
28200
diff
changeset
|
1991 from them. Some display attributes may not be used together with |
|
113efc964095
(TN_no_color_video): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
28200
diff
changeset
|
1992 color; the termcap capability `NC' specifies which ones. */ |
|
113efc964095
(TN_no_color_video): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
28200
diff
changeset
|
1993 |
|
113efc964095
(TN_no_color_video): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
28200
diff
changeset
|
1994 #define MAY_USE_WITH_COLORS_P(ATTR) \ |
|
113efc964095
(TN_no_color_video): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
28200
diff
changeset
|
1995 (TN_max_colors > 0 \ |
|
113efc964095
(TN_no_color_video): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
28200
diff
changeset
|
1996 ? (TN_no_color_video & (ATTR)) == 0 \ |
|
113efc964095
(TN_no_color_video): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
28200
diff
changeset
|
1997 : 1) |
| 25002 | 1998 |
| 1999 /* Turn appearances of face FACE_ID on tty frame F on. */ | |
| 2000 | |
| 2001 static void | |
| 2002 turn_on_face (f, face_id) | |
| 2003 struct frame *f; | |
| 2004 int face_id; | |
| 2005 { | |
| 2006 struct face *face = FACE_FROM_ID (f, face_id); | |
| 2007 | |
| 2008 xassert (face != NULL); | |
| 2009 | |
| 2010 if (face->tty_bold_p) | |
|
28465
113efc964095
(TN_no_color_video): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
28200
diff
changeset
|
2011 { |
|
113efc964095
(TN_no_color_video): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
28200
diff
changeset
|
2012 if (MAY_USE_WITH_COLORS_P (NC_BOLD)) |
|
113efc964095
(TN_no_color_video): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
28200
diff
changeset
|
2013 OUTPUT1_IF (TS_enter_bold_mode); |
|
113efc964095
(TN_no_color_video): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
28200
diff
changeset
|
2014 } |
| 25002 | 2015 else if (face->tty_dim_p) |
|
28465
113efc964095
(TN_no_color_video): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
28200
diff
changeset
|
2016 if (MAY_USE_WITH_COLORS_P (NC_DIM)) |
|
113efc964095
(TN_no_color_video): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
28200
diff
changeset
|
2017 OUTPUT1_IF (TS_enter_dim_mode); |
| 25002 | 2018 |
| 2019 /* Alternate charset and blinking not yet used. */ | |
|
28465
113efc964095
(TN_no_color_video): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
28200
diff
changeset
|
2020 if (face->tty_alt_charset_p |
|
113efc964095
(TN_no_color_video): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
28200
diff
changeset
|
2021 && MAY_USE_WITH_COLORS_P (NC_ALT_CHARSET)) |
| 25002 | 2022 OUTPUT1_IF (TS_enter_alt_charset_mode); |
| 2023 | |
|
28465
113efc964095
(TN_no_color_video): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
28200
diff
changeset
|
2024 if (face->tty_blinking_p |
|
113efc964095
(TN_no_color_video): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
28200
diff
changeset
|
2025 && MAY_USE_WITH_COLORS_P (NC_BLINK)) |
| 25002 | 2026 OUTPUT1_IF (TS_enter_blink_mode); |
| 2027 | |
| 2028 if (face->tty_underline_p | |
| 2029 /* Don't underline if that's difficult. */ | |
|
28465
113efc964095
(TN_no_color_video): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
28200
diff
changeset
|
2030 && TN_magic_cookie_glitch_ul <= 0 |
|
113efc964095
(TN_no_color_video): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
28200
diff
changeset
|
2031 && MAY_USE_WITH_COLORS_P (NC_UNDERLINE)) |
| 25002 | 2032 OUTPUT1_IF (TS_enter_underline_mode); |
| 2033 | |
|
28465
113efc964095
(TN_no_color_video): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
28200
diff
changeset
|
2034 if (MAY_USE_WITH_COLORS_P (NC_REVERSE)) |
|
113efc964095
(TN_no_color_video): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
28200
diff
changeset
|
2035 if (face->tty_reverse_p |
|
113efc964095
(TN_no_color_video): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
28200
diff
changeset
|
2036 || face->foreground == FACE_TTY_DEFAULT_BG_COLOR |
|
113efc964095
(TN_no_color_video): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
28200
diff
changeset
|
2037 || face->background == FACE_TTY_DEFAULT_FG_COLOR) |
|
113efc964095
(TN_no_color_video): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
28200
diff
changeset
|
2038 OUTPUT1_IF (TS_enter_reverse_mode); |
| 25002 | 2039 |
| 2040 if (TN_max_colors > 0) | |
| 2041 { | |
| 2042 char *p; | |
| 2043 | |
| 2044 if (face->foreground != FACE_TTY_DEFAULT_COLOR | |
|
26902
264b83a3a688
Changes for separate unspecified foreground and background colors
Eli Zaretskii <eliz@gnu.org>
parents:
26871
diff
changeset
|
2045 && face->foreground != FACE_TTY_DEFAULT_FG_COLOR |
|
264b83a3a688
Changes for separate unspecified foreground and background colors
Eli Zaretskii <eliz@gnu.org>
parents:
26871
diff
changeset
|
2046 && face->foreground != FACE_TTY_DEFAULT_BG_COLOR |
| 25002 | 2047 && TS_set_foreground) |
| 2048 { | |
| 2049 p = tparam (TS_set_foreground, NULL, 0, (int) face->foreground); | |
| 2050 OUTPUT (p); | |
| 2051 xfree (p); | |
| 2052 } | |
| 2053 | |
| 2054 if (face->background != FACE_TTY_DEFAULT_COLOR | |
|
26902
264b83a3a688
Changes for separate unspecified foreground and background colors
Eli Zaretskii <eliz@gnu.org>
parents:
26871
diff
changeset
|
2055 && face->background != FACE_TTY_DEFAULT_BG_COLOR |
|
264b83a3a688
Changes for separate unspecified foreground and background colors
Eli Zaretskii <eliz@gnu.org>
parents:
26871
diff
changeset
|
2056 && face->background != FACE_TTY_DEFAULT_FG_COLOR |
| 25002 | 2057 && TS_set_background) |
| 2058 { | |
| 2059 p = tparam (TS_set_background, NULL, 0, (int) face->background); | |
| 2060 OUTPUT (p); | |
| 2061 xfree (p); | |
| 2062 } | |
| 2063 } | |
| 2064 } | |
| 2065 | |
| 2066 | |
| 2067 /* Turn off appearances of face FACE_ID on tty frame F. */ | |
| 2068 | |
| 2069 static void | |
| 2070 turn_off_face (f, face_id) | |
| 2071 struct frame *f; | |
| 2072 int face_id; | |
| 2073 { | |
| 2074 struct face *face = FACE_FROM_ID (f, face_id); | |
| 2075 | |
| 2076 xassert (face != NULL); | |
| 2077 | |
| 2078 if (TS_exit_attribute_mode) | |
| 2079 { | |
| 2080 /* Capability "me" will turn off appearance modes double-bright, | |
| 2081 half-bright, reverse-video, standout, underline. It may or | |
| 2082 may not turn off alt-char-mode. */ | |
| 2083 if (face->tty_bold_p | |
| 2084 || face->tty_dim_p | |
| 2085 || face->tty_reverse_p | |
| 2086 || face->tty_alt_charset_p | |
| 2087 || face->tty_blinking_p | |
| 2088 || face->tty_underline_p) | |
|
30848
fc80dcfc32cd
(write_glyphs): Also turn off inverse video after turning
Gerd Moellmann <gerd@gnu.org>
parents:
30836
diff
changeset
|
2089 { |
|
fc80dcfc32cd
(write_glyphs): Also turn off inverse video after turning
Gerd Moellmann <gerd@gnu.org>
parents:
30836
diff
changeset
|
2090 OUTPUT1_IF (TS_exit_attribute_mode); |
|
fc80dcfc32cd
(write_glyphs): Also turn off inverse video after turning
Gerd Moellmann <gerd@gnu.org>
parents:
30836
diff
changeset
|
2091 if (strcmp (TS_exit_attribute_mode, TS_end_standout_mode) == 0) |
|
fc80dcfc32cd
(write_glyphs): Also turn off inverse video after turning
Gerd Moellmann <gerd@gnu.org>
parents:
30836
diff
changeset
|
2092 standout_mode = 0; |
|
fc80dcfc32cd
(write_glyphs): Also turn off inverse video after turning
Gerd Moellmann <gerd@gnu.org>
parents:
30836
diff
changeset
|
2093 } |
| 25002 | 2094 |
| 2095 if (face->tty_alt_charset_p) | |
| 2096 OUTPUT_IF (TS_exit_alt_charset_mode); | |
| 2097 } | |
| 2098 else | |
| 2099 { | |
| 2100 /* If we don't have "me" we can only have those appearances | |
| 2101 that have exit sequences defined. */ | |
| 2102 if (face->tty_alt_charset_p) | |
| 2103 OUTPUT_IF (TS_exit_alt_charset_mode); | |
| 2104 | |
| 2105 if (face->tty_underline_p | |
| 2106 /* We don't underline if that's difficult. */ | |
| 2107 && TN_magic_cookie_glitch_ul <= 0) | |
| 2108 OUTPUT_IF (TS_exit_underline_mode); | |
| 2109 } | |
| 2110 | |
| 2111 /* Switch back to default colors. */ | |
| 2112 if (TN_max_colors > 0 | |
|
26902
264b83a3a688
Changes for separate unspecified foreground and background colors
Eli Zaretskii <eliz@gnu.org>
parents:
26871
diff
changeset
|
2113 && ((face->foreground != FACE_TTY_DEFAULT_COLOR |
|
264b83a3a688
Changes for separate unspecified foreground and background colors
Eli Zaretskii <eliz@gnu.org>
parents:
26871
diff
changeset
|
2114 && face->foreground != FACE_TTY_DEFAULT_FG_COLOR) |
|
264b83a3a688
Changes for separate unspecified foreground and background colors
Eli Zaretskii <eliz@gnu.org>
parents:
26871
diff
changeset
|
2115 || (face->background != FACE_TTY_DEFAULT_COLOR |
|
264b83a3a688
Changes for separate unspecified foreground and background colors
Eli Zaretskii <eliz@gnu.org>
parents:
26871
diff
changeset
|
2116 && face->background != FACE_TTY_DEFAULT_BG_COLOR))) |
| 25002 | 2117 OUTPUT1_IF (TS_orig_pair); |
| 2118 } | |
| 2119 | |
| 2120 | |
| 2121 /* Return non-zero if the terminal is capable to display colors. */ | |
| 2122 | |
| 2123 DEFUN ("tty-display-color-p", Ftty_display_color_p, Stty_display_color_p, | |
|
27087
8de2d17323c2
(Ftty_display_color_p): Accept an optional argument FRAME.
Eli Zaretskii <eliz@gnu.org>
parents:
27085
diff
changeset
|
2124 0, 1, 0, |
|
8de2d17323c2
(Ftty_display_color_p): Accept an optional argument FRAME.
Eli Zaretskii <eliz@gnu.org>
parents:
27085
diff
changeset
|
2125 "Return non-nil if TTY can display colors on FRAME.") |
|
8de2d17323c2
(Ftty_display_color_p): Accept an optional argument FRAME.
Eli Zaretskii <eliz@gnu.org>
parents:
27085
diff
changeset
|
2126 (frame) |
|
8de2d17323c2
(Ftty_display_color_p): Accept an optional argument FRAME.
Eli Zaretskii <eliz@gnu.org>
parents:
27085
diff
changeset
|
2127 Lisp_Object frame; |
| 25002 | 2128 { |
| 2129 return TN_max_colors > 0 ? Qt : Qnil; | |
| 2130 } | |
| 2131 | |
| 2132 | |
| 2133 | |
| 2134 | |
| 2135 /*********************************************************************** | |
| 2136 Initialization | |
| 2137 ***********************************************************************/ | |
| 2138 | |
| 21514 | 2139 void |
| 253 | 2140 term_init (terminal_type) |
| 2141 char *terminal_type; | |
| 2142 { | |
| 2143 char *area; | |
| 2144 char **address = &area; | |
| 2145 char buffer[2044]; | |
| 2146 register char *p; | |
| 2147 int status; | |
|
25675
992d0d097e54
(OUTPUT): Change for Lisp_Object selected_frame.
Gerd Moellmann <gerd@gnu.org>
parents:
25187
diff
changeset
|
2148 struct frame *sf = XFRAME (selected_frame); |
| 253 | 2149 |
|
9797
05d9072c5a38
(term_init) [WINDOWSNT]: Do some Windows-specific
Richard M. Stallman <rms@gnu.org>
parents:
9658
diff
changeset
|
2150 #ifdef WINDOWSNT |
|
16885
ddd632f61ce3
(term_init): Use new name initialize_w32_display.
Geoff Voelker <voelker@cs.washington.edu>
parents:
16260
diff
changeset
|
2151 initialize_w32_display (); |
|
9797
05d9072c5a38
(term_init) [WINDOWSNT]: Do some Windows-specific
Richard M. Stallman <rms@gnu.org>
parents:
9658
diff
changeset
|
2152 |
|
05d9072c5a38
(term_init) [WINDOWSNT]: Do some Windows-specific
Richard M. Stallman <rms@gnu.org>
parents:
9658
diff
changeset
|
2153 Wcm_clear (); |
|
05d9072c5a38
(term_init) [WINDOWSNT]: Do some Windows-specific
Richard M. Stallman <rms@gnu.org>
parents:
9658
diff
changeset
|
2154 |
|
24431
00398ed56396
(term_init): Use xmalloc, not malloc.
Karl Heuer <kwzh@gnu.org>
parents:
24263
diff
changeset
|
2155 area = (char *) xmalloc (2044); |
|
9797
05d9072c5a38
(term_init) [WINDOWSNT]: Do some Windows-specific
Richard M. Stallman <rms@gnu.org>
parents:
9658
diff
changeset
|
2156 |
|
05d9072c5a38
(term_init) [WINDOWSNT]: Do some Windows-specific
Richard M. Stallman <rms@gnu.org>
parents:
9658
diff
changeset
|
2157 if (area == 0) |
|
05d9072c5a38
(term_init) [WINDOWSNT]: Do some Windows-specific
Richard M. Stallman <rms@gnu.org>
parents:
9658
diff
changeset
|
2158 abort (); |
|
05d9072c5a38
(term_init) [WINDOWSNT]: Do some Windows-specific
Richard M. Stallman <rms@gnu.org>
parents:
9658
diff
changeset
|
2159 |
|
25675
992d0d097e54
(OUTPUT): Change for Lisp_Object selected_frame.
Gerd Moellmann <gerd@gnu.org>
parents:
25187
diff
changeset
|
2160 FrameRows = FRAME_HEIGHT (sf); |
|
992d0d097e54
(OUTPUT): Change for Lisp_Object selected_frame.
Gerd Moellmann <gerd@gnu.org>
parents:
25187
diff
changeset
|
2161 FrameCols = FRAME_WIDTH (sf); |
|
992d0d097e54
(OUTPUT): Change for Lisp_Object selected_frame.
Gerd Moellmann <gerd@gnu.org>
parents:
25187
diff
changeset
|
2162 specified_window = FRAME_HEIGHT (sf); |
|
9797
05d9072c5a38
(term_init) [WINDOWSNT]: Do some Windows-specific
Richard M. Stallman <rms@gnu.org>
parents:
9658
diff
changeset
|
2163 |
|
05d9072c5a38
(term_init) [WINDOWSNT]: Do some Windows-specific
Richard M. Stallman <rms@gnu.org>
parents:
9658
diff
changeset
|
2164 delete_in_insert_mode = 1; |
|
05d9072c5a38
(term_init) [WINDOWSNT]: Do some Windows-specific
Richard M. Stallman <rms@gnu.org>
parents:
9658
diff
changeset
|
2165 |
|
05d9072c5a38
(term_init) [WINDOWSNT]: Do some Windows-specific
Richard M. Stallman <rms@gnu.org>
parents:
9658
diff
changeset
|
2166 UseTabs = 0; |
|
05d9072c5a38
(term_init) [WINDOWSNT]: Do some Windows-specific
Richard M. Stallman <rms@gnu.org>
parents:
9658
diff
changeset
|
2167 scroll_region_ok = 0; |
|
05d9072c5a38
(term_init) [WINDOWSNT]: Do some Windows-specific
Richard M. Stallman <rms@gnu.org>
parents:
9658
diff
changeset
|
2168 |
|
05d9072c5a38
(term_init) [WINDOWSNT]: Do some Windows-specific
Richard M. Stallman <rms@gnu.org>
parents:
9658
diff
changeset
|
2169 /* 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
|
2170 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
|
2171 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
|
2172 turning it off. */ |
|
05d9072c5a38
(term_init) [WINDOWSNT]: Do some Windows-specific
Richard M. Stallman <rms@gnu.org>
parents:
9658
diff
changeset
|
2173 |
|
05d9072c5a38
(term_init) [WINDOWSNT]: Do some Windows-specific
Richard M. Stallman <rms@gnu.org>
parents:
9658
diff
changeset
|
2174 line_ins_del_ok = 0; |
|
05d9072c5a38
(term_init) [WINDOWSNT]: Do some Windows-specific
Richard M. Stallman <rms@gnu.org>
parents:
9658
diff
changeset
|
2175 char_ins_del_ok = 1; |
|
05d9072c5a38
(term_init) [WINDOWSNT]: Do some Windows-specific
Richard M. Stallman <rms@gnu.org>
parents:
9658
diff
changeset
|
2176 |
|
05d9072c5a38
(term_init) [WINDOWSNT]: Do some Windows-specific
Richard M. Stallman <rms@gnu.org>
parents:
9658
diff
changeset
|
2177 baud_rate = 19200; |
|
05d9072c5a38
(term_init) [WINDOWSNT]: Do some Windows-specific
Richard M. Stallman <rms@gnu.org>
parents:
9658
diff
changeset
|
2178 |
|
25675
992d0d097e54
(OUTPUT): Change for Lisp_Object selected_frame.
Gerd Moellmann <gerd@gnu.org>
parents:
25187
diff
changeset
|
2179 FRAME_CAN_HAVE_SCROLL_BARS (sf) = 0; |
|
992d0d097e54
(OUTPUT): Change for Lisp_Object selected_frame.
Gerd Moellmann <gerd@gnu.org>
parents:
25187
diff
changeset
|
2180 FRAME_VERTICAL_SCROLL_BAR_TYPE (sf) = vertical_scroll_bar_none; |
|
27519
fd4d74bc1e42
(term_init) [WINDOWSNT]: Initialize TN_max_colors.
Jason Rumney <jasonr@gnu.org>
parents:
27128
diff
changeset
|
2181 TN_max_colors = 16; /* Required to be non-zero for tty-display-color-p */ |
|
9797
05d9072c5a38
(term_init) [WINDOWSNT]: Do some Windows-specific
Richard M. Stallman <rms@gnu.org>
parents:
9658
diff
changeset
|
2182 |
|
05d9072c5a38
(term_init) [WINDOWSNT]: Do some Windows-specific
Richard M. Stallman <rms@gnu.org>
parents:
9658
diff
changeset
|
2183 return; |
|
21827
87c7f4bd99da
Include cm.h after dispextern.h to avoid name conflicts
Geoff Voelker <voelker@cs.washington.edu>
parents:
21624
diff
changeset
|
2184 #else /* not WINDOWSNT */ |
|
9797
05d9072c5a38
(term_init) [WINDOWSNT]: Do some Windows-specific
Richard M. Stallman <rms@gnu.org>
parents:
9658
diff
changeset
|
2185 |
| 253 | 2186 Wcm_clear (); |
| 2187 | |
| 2188 status = tgetent (buffer, terminal_type); | |
| 2189 if (status < 0) | |
|
10824
894369e950f5
(term_init) [TERMINFO]: Make error message more accurate.
Karl Heuer <kwzh@gnu.org>
parents:
10771
diff
changeset
|
2190 { |
|
894369e950f5
(term_init) [TERMINFO]: Make error message more accurate.
Karl Heuer <kwzh@gnu.org>
parents:
10771
diff
changeset
|
2191 #ifdef TERMINFO |
|
16894
cd8d6bf6b320
(fatal): Print a newline at the end.
Richard M. Stallman <rms@gnu.org>
parents:
16885
diff
changeset
|
2192 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
|
2193 #else |
|
16894
cd8d6bf6b320
(fatal): Print a newline at the end.
Richard M. Stallman <rms@gnu.org>
parents:
16885
diff
changeset
|
2194 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
|
2195 #endif |
|
894369e950f5
(term_init) [TERMINFO]: Make error message more accurate.
Karl Heuer <kwzh@gnu.org>
parents:
10771
diff
changeset
|
2196 } |
| 253 | 2197 if (status == 0) |
|
10824
894369e950f5
(term_init) [TERMINFO]: Make error message more accurate.
Karl Heuer <kwzh@gnu.org>
parents:
10771
diff
changeset
|
2198 { |
|
894369e950f5
(term_init) [TERMINFO]: Make error message more accurate.
Karl Heuer <kwzh@gnu.org>
parents:
10771
diff
changeset
|
2199 #ifdef TERMINFO |
|
894369e950f5
(term_init) [TERMINFO]: Make error message more accurate.
Karl Heuer <kwzh@gnu.org>
parents:
10771
diff
changeset
|
2200 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
|
2201 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
|
2202 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
|
2203 `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
|
2204 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
|
2205 terminal_type); |
|
894369e950f5
(term_init) [TERMINFO]: Make error message more accurate.
Karl Heuer <kwzh@gnu.org>
parents:
10771
diff
changeset
|
2206 #else |
|
894369e950f5
(term_init) [TERMINFO]: Make error message more accurate.
Karl Heuer <kwzh@gnu.org>
parents:
10771
diff
changeset
|
2207 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
|
2208 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
|
2209 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
|
2210 `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
|
2211 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
|
2212 terminal_type); |
|
894369e950f5
(term_init) [TERMINFO]: Make error message more accurate.
Karl Heuer <kwzh@gnu.org>
parents:
10771
diff
changeset
|
2213 #endif |
|
894369e950f5
(term_init) [TERMINFO]: Make error message more accurate.
Karl Heuer <kwzh@gnu.org>
parents:
10771
diff
changeset
|
2214 } |
| 253 | 2215 #ifdef TERMINFO |
|
24431
00398ed56396
(term_init): Use xmalloc, not malloc.
Karl Heuer <kwzh@gnu.org>
parents:
24263
diff
changeset
|
2216 area = (char *) xmalloc (2044); |
| 253 | 2217 #else |
|
24431
00398ed56396
(term_init): Use xmalloc, not malloc.
Karl Heuer <kwzh@gnu.org>
parents:
24263
diff
changeset
|
2218 area = (char *) xmalloc (strlen (buffer)); |
| 253 | 2219 #endif /* not TERMINFO */ |
| 2220 if (area == 0) | |
| 2221 abort (); | |
| 2222 | |
| 2223 TS_ins_line = tgetstr ("al", address); | |
| 2224 TS_ins_multi_lines = tgetstr ("AL", address); | |
| 2225 TS_bell = tgetstr ("bl", address); | |
| 2226 BackTab = tgetstr ("bt", address); | |
| 2227 TS_clr_to_bottom = tgetstr ("cd", address); | |
| 2228 TS_clr_line = tgetstr ("ce", address); | |
| 765 | 2229 TS_clr_frame = tgetstr ("cl", address); |
|
28685
b4310b6f3b5e
(produce_glyphs): Remove reference to struct it's prompt_width.
Gerd Moellmann <gerd@gnu.org>
parents:
28507
diff
changeset
|
2230 ColPosition = NULL; /* tgetstr ("ch", address); */ |
| 253 | 2231 AbsPosition = tgetstr ("cm", address); |
| 2232 CR = tgetstr ("cr", address); | |
| 2233 TS_set_scroll_region = tgetstr ("cs", address); | |
| 2234 TS_set_scroll_region_1 = tgetstr ("cS", address); | |
| 2235 RowPosition = tgetstr ("cv", address); | |
| 2236 TS_del_char = tgetstr ("dc", address); | |
| 2237 TS_del_multi_chars = tgetstr ("DC", address); | |
| 2238 TS_del_line = tgetstr ("dl", address); | |
| 2239 TS_del_multi_lines = tgetstr ("DL", address); | |
| 2240 TS_delete_mode = tgetstr ("dm", address); | |
| 2241 TS_end_delete_mode = tgetstr ("ed", address); | |
| 2242 TS_end_insert_mode = tgetstr ("ei", address); | |
| 2243 Home = tgetstr ("ho", address); | |
| 2244 TS_ins_char = tgetstr ("ic", address); | |
| 2245 TS_ins_multi_chars = tgetstr ("IC", address); | |
| 2246 TS_insert_mode = tgetstr ("im", address); | |
| 2247 TS_pad_inserted_char = tgetstr ("ip", address); | |
| 2248 TS_end_keypad_mode = tgetstr ("ke", address); | |
| 2249 TS_keypad_mode = tgetstr ("ks", address); | |
| 2250 LastLine = tgetstr ("ll", address); | |
| 2251 Right = tgetstr ("nd", address); | |
| 2252 Down = tgetstr ("do", address); | |
| 2253 if (!Down) | |
| 2254 Down = tgetstr ("nl", address); /* Obsolete name for "do" */ | |
| 2255 #ifdef VMS | |
| 2256 /* VMS puts a carriage return before each linefeed, | |
| 2257 so it is not safe to use linefeeds. */ | |
| 2258 if (Down && Down[0] == '\n' && Down[1] == '\0') | |
| 2259 Down = 0; | |
| 2260 #endif /* VMS */ | |
| 2261 if (tgetflag ("bs")) | |
| 2262 Left = "\b"; /* can't possibly be longer! */ | |
| 2263 else /* (Actually, "bs" is obsolete...) */ | |
| 2264 Left = tgetstr ("le", address); | |
| 2265 if (!Left) | |
| 2266 Left = tgetstr ("bc", address); /* Obsolete name for "le" */ | |
| 2267 TS_pad_char = tgetstr ("pc", address); | |
| 2268 TS_repeat = tgetstr ("rp", address); | |
| 2269 TS_end_standout_mode = tgetstr ("se", address); | |
| 2270 TS_fwd_scroll = tgetstr ("sf", address); | |
| 2271 TS_standout_mode = tgetstr ("so", address); | |
| 2272 TS_rev_scroll = tgetstr ("sr", address); | |
| 2273 Wcm.cm_tab = tgetstr ("ta", address); | |
| 2274 TS_end_termcap_modes = tgetstr ("te", address); | |
| 2275 TS_termcap_modes = tgetstr ("ti", address); | |
| 2276 Up = tgetstr ("up", address); | |
| 2277 TS_visible_bell = tgetstr ("vb", address); | |
| 25002 | 2278 TS_cursor_normal = tgetstr ("ve", address); |
| 2279 TS_cursor_visible = tgetstr ("vs", address); | |
| 2280 TS_cursor_invisible = tgetstr ("vi", address); | |
| 253 | 2281 TS_set_window = tgetstr ("wi", address); |
| 25002 | 2282 |
| 2283 TS_enter_underline_mode = tgetstr ("us", address); | |
| 2284 TS_exit_underline_mode = tgetstr ("ue", address); | |
| 2285 TN_magic_cookie_glitch_ul = tgetnum ("ug"); | |
| 2286 TS_enter_bold_mode = tgetstr ("md", address); | |
| 2287 TS_enter_dim_mode = tgetstr ("mh", address); | |
| 2288 TS_enter_blink_mode = tgetstr ("mb", address); | |
| 2289 TS_enter_reverse_mode = tgetstr ("mr", address); | |
| 2290 TS_enter_alt_charset_mode = tgetstr ("as", address); | |
| 2291 TS_exit_alt_charset_mode = tgetstr ("ae", address); | |
| 2292 TS_exit_attribute_mode = tgetstr ("me", address); | |
| 2293 | |
| 253 | 2294 MultiUp = tgetstr ("UP", address); |
| 2295 MultiDown = tgetstr ("DO", address); | |
| 2296 MultiLeft = tgetstr ("LE", address); | |
| 2297 MultiRight = tgetstr ("RI", address); | |
| 2298 | |
|
26425
08c26156186a
(term_init): If "op" isn't available, don't support color
Gerd Moellmann <gerd@gnu.org>
parents:
25727
diff
changeset
|
2299 /* SVr4/ANSI color suppert. If "op" isn't available, don't support |
|
08c26156186a
(term_init): If "op" isn't available, don't support color
Gerd Moellmann <gerd@gnu.org>
parents:
25727
diff
changeset
|
2300 color because we can't switch back to the default foreground and |
|
08c26156186a
(term_init): If "op" isn't available, don't support color
Gerd Moellmann <gerd@gnu.org>
parents:
25727
diff
changeset
|
2301 background. */ |
| 25002 | 2302 TS_orig_pair = tgetstr ("op", address); |
|
26425
08c26156186a
(term_init): If "op" isn't available, don't support color
Gerd Moellmann <gerd@gnu.org>
parents:
25727
diff
changeset
|
2303 if (TS_orig_pair) |
| 25002 | 2304 { |
|
26425
08c26156186a
(term_init): If "op" isn't available, don't support color
Gerd Moellmann <gerd@gnu.org>
parents:
25727
diff
changeset
|
2305 TS_set_foreground = tgetstr ("AF", address); |
|
08c26156186a
(term_init): If "op" isn't available, don't support color
Gerd Moellmann <gerd@gnu.org>
parents:
25727
diff
changeset
|
2306 TS_set_background = tgetstr ("AB", address); |
|
08c26156186a
(term_init): If "op" isn't available, don't support color
Gerd Moellmann <gerd@gnu.org>
parents:
25727
diff
changeset
|
2307 if (!TS_set_foreground) |
|
08c26156186a
(term_init): If "op" isn't available, don't support color
Gerd Moellmann <gerd@gnu.org>
parents:
25727
diff
changeset
|
2308 { |
|
08c26156186a
(term_init): If "op" isn't available, don't support color
Gerd Moellmann <gerd@gnu.org>
parents:
25727
diff
changeset
|
2309 /* SVr4. */ |
|
08c26156186a
(term_init): If "op" isn't available, don't support color
Gerd Moellmann <gerd@gnu.org>
parents:
25727
diff
changeset
|
2310 TS_set_foreground = tgetstr ("Sf", address); |
|
08c26156186a
(term_init): If "op" isn't available, don't support color
Gerd Moellmann <gerd@gnu.org>
parents:
25727
diff
changeset
|
2311 TS_set_background = tgetstr ("Sb", address); |
|
08c26156186a
(term_init): If "op" isn't available, don't support color
Gerd Moellmann <gerd@gnu.org>
parents:
25727
diff
changeset
|
2312 } |
|
28465
113efc964095
(TN_no_color_video): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
28200
diff
changeset
|
2313 |
|
26425
08c26156186a
(term_init): If "op" isn't available, don't support color
Gerd Moellmann <gerd@gnu.org>
parents:
25727
diff
changeset
|
2314 TN_max_colors = tgetnum ("Co"); |
|
08c26156186a
(term_init): If "op" isn't available, don't support color
Gerd Moellmann <gerd@gnu.org>
parents:
25727
diff
changeset
|
2315 TN_max_pairs = tgetnum ("pa"); |
|
28465
113efc964095
(TN_no_color_video): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
28200
diff
changeset
|
2316 |
|
113efc964095
(TN_no_color_video): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
28200
diff
changeset
|
2317 TN_no_color_video = tgetnum ("NC"); |
|
113efc964095
(TN_no_color_video): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
28200
diff
changeset
|
2318 if (TN_no_color_video == -1) |
|
113efc964095
(TN_no_color_video): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
28200
diff
changeset
|
2319 TN_no_color_video = 0; |
| 25002 | 2320 } |
| 2321 | |
|
11530
a265aaa699e0
(term_init): MagicWrap implies AutoWrap.
Karl Heuer <kwzh@gnu.org>
parents:
11235
diff
changeset
|
2322 MagicWrap = tgetflag ("xn"); |
|
a265aaa699e0
(term_init): MagicWrap implies AutoWrap.
Karl Heuer <kwzh@gnu.org>
parents:
11235
diff
changeset
|
2323 /* 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
|
2324 the former flag imply the latter. */ |
|
a265aaa699e0
(term_init): MagicWrap implies AutoWrap.
Karl Heuer <kwzh@gnu.org>
parents:
11235
diff
changeset
|
2325 AutoWrap = MagicWrap || tgetflag ("am"); |
| 765 | 2326 memory_below_frame = tgetflag ("db"); |
| 253 | 2327 TF_hazeltine = tgetflag ("hz"); |
| 2328 must_write_spaces = tgetflag ("in"); | |
| 2329 meta_key = tgetflag ("km") || tgetflag ("MT"); | |
| 2330 TF_insmode_motion = tgetflag ("mi"); | |
| 2331 TF_standout_motion = tgetflag ("ms"); | |
| 2332 TF_underscore = tgetflag ("ul"); | |
| 2333 TF_xs = tgetflag ("xs"); | |
| 2334 TF_teleray = tgetflag ("xt"); | |
| 2335 | |
| 533 | 2336 term_get_fkeys (address); |
| 2337 | |
| 765 | 2338 /* 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
|
2339 { |
|
4c74d7f1cfa6
(term_init): Avoid type-mismatch calling get_frame_size.
Richard M. Stallman <rms@gnu.org>
parents:
15974
diff
changeset
|
2340 int height, width; |
|
4c74d7f1cfa6
(term_init): Avoid type-mismatch calling get_frame_size.
Richard M. Stallman <rms@gnu.org>
parents:
15974
diff
changeset
|
2341 get_frame_size (&width, &height); |
|
25675
992d0d097e54
(OUTPUT): Change for Lisp_Object selected_frame.
Gerd Moellmann <gerd@gnu.org>
parents:
25187
diff
changeset
|
2342 FRAME_WIDTH (sf) = width; |
|
992d0d097e54
(OUTPUT): Change for Lisp_Object selected_frame.
Gerd Moellmann <gerd@gnu.org>
parents:
25187
diff
changeset
|
2343 FRAME_HEIGHT (sf) = height; |
|
16093
4c74d7f1cfa6
(term_init): Avoid type-mismatch calling get_frame_size.
Richard M. Stallman <rms@gnu.org>
parents:
15974
diff
changeset
|
2344 } |
|
4c74d7f1cfa6
(term_init): Avoid type-mismatch calling get_frame_size.
Richard M. Stallman <rms@gnu.org>
parents:
15974
diff
changeset
|
2345 |
|
25675
992d0d097e54
(OUTPUT): Change for Lisp_Object selected_frame.
Gerd Moellmann <gerd@gnu.org>
parents:
25187
diff
changeset
|
2346 if (FRAME_WIDTH (sf) <= 0) |
|
992d0d097e54
(OUTPUT): Change for Lisp_Object selected_frame.
Gerd Moellmann <gerd@gnu.org>
parents:
25187
diff
changeset
|
2347 SET_FRAME_WIDTH (sf, tgetnum ("co")); |
|
16260
4468f3277e80
(term_init): Use new vertical scroll bar enumerated type.
Richard M. Stallman <rms@gnu.org>
parents:
16094
diff
changeset
|
2348 else |
|
4468f3277e80
(term_init): Use new vertical scroll bar enumerated type.
Richard M. Stallman <rms@gnu.org>
parents:
16094
diff
changeset
|
2349 /* Keep width and external_width consistent */ |
|
25675
992d0d097e54
(OUTPUT): Change for Lisp_Object selected_frame.
Gerd Moellmann <gerd@gnu.org>
parents:
25187
diff
changeset
|
2350 SET_FRAME_WIDTH (sf, FRAME_WIDTH (sf)); |
|
992d0d097e54
(OUTPUT): Change for Lisp_Object selected_frame.
Gerd Moellmann <gerd@gnu.org>
parents:
25187
diff
changeset
|
2351 if (FRAME_HEIGHT (sf) <= 0) |
|
992d0d097e54
(OUTPUT): Change for Lisp_Object selected_frame.
Gerd Moellmann <gerd@gnu.org>
parents:
25187
diff
changeset
|
2352 FRAME_HEIGHT (sf) = tgetnum ("li"); |
|
16260
4468f3277e80
(term_init): Use new vertical scroll bar enumerated type.
Richard M. Stallman <rms@gnu.org>
parents:
16094
diff
changeset
|
2353 |
|
25675
992d0d097e54
(OUTPUT): Change for Lisp_Object selected_frame.
Gerd Moellmann <gerd@gnu.org>
parents:
25187
diff
changeset
|
2354 if (FRAME_HEIGHT (sf) < 3 || FRAME_WIDTH (sf) < 3) |
|
16894
cd8d6bf6b320
(fatal): Print a newline at the end.
Richard M. Stallman <rms@gnu.org>
parents:
16885
diff
changeset
|
2355 fatal ("Screen size %dx%d is too small", |
|
25675
992d0d097e54
(OUTPUT): Change for Lisp_Object selected_frame.
Gerd Moellmann <gerd@gnu.org>
parents:
25187
diff
changeset
|
2356 FRAME_HEIGHT (sf), FRAME_WIDTH (sf)); |
|
10332
e14daed4a820
(term_init): Fatal error if screen is too small.
Richard M. Stallman <rms@gnu.org>
parents:
10261
diff
changeset
|
2357 |
| 253 | 2358 min_padding_speed = tgetnum ("pb"); |
| 2359 TN_standout_width = tgetnum ("sg"); | |
| 2360 TabWidth = tgetnum ("tw"); | |
| 2361 | |
| 2362 #ifdef VMS | |
| 2363 /* These capabilities commonly use ^J. | |
| 2364 I don't know why, but sending them on VMS does not work; | |
| 2365 it causes following spaces to be lost, sometimes. | |
| 2366 For now, the simplest fix is to avoid using these capabilities ever. */ | |
| 2367 if (Down && Down[0] == '\n') | |
| 2368 Down = 0; | |
| 2369 #endif /* VMS */ | |
| 2370 | |
| 2371 if (!TS_bell) | |
| 2372 TS_bell = "\07"; | |
| 2373 | |
| 2374 if (!TS_fwd_scroll) | |
| 2375 TS_fwd_scroll = Down; | |
| 2376 | |
| 2377 PC = TS_pad_char ? *TS_pad_char : 0; | |
| 2378 | |
| 2379 if (TabWidth < 0) | |
| 2380 TabWidth = 8; | |
| 2381 | |
| 2382 /* Turned off since /etc/termcap seems to have :ta= for most terminals | |
| 2383 and newer termcap doc does not seem to say there is a default. | |
| 2384 if (!Wcm.cm_tab) | |
| 2385 Wcm.cm_tab = "\t"; | |
| 2386 */ | |
| 2387 | |
| 2388 if (TS_standout_mode == 0) | |
| 2389 { | |
| 2390 TN_standout_width = tgetnum ("ug"); | |
| 2391 TS_end_standout_mode = tgetstr ("ue", address); | |
| 2392 TS_standout_mode = tgetstr ("us", address); | |
| 2393 } | |
| 2394 | |
|
5933
560cee2048ed
(term_init): If no `se', use `me';
Richard M. Stallman <rms@gnu.org>
parents:
5648
diff
changeset
|
2395 /* 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
|
2396 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
|
2397 if (TS_end_standout_mode == 0) |
|
560cee2048ed
(term_init): If no `se', use `me';
Richard M. Stallman <rms@gnu.org>
parents:
5648
diff
changeset
|
2398 { |
|
8612
86065bec6fc9
(term_init): Added missing argument to tgetstr.
Richard M. Stallman <rms@gnu.org>
parents:
8027
diff
changeset
|
2399 char *s = tgetstr ("me", address); |
|
5933
560cee2048ed
(term_init): If no `se', use `me';
Richard M. Stallman <rms@gnu.org>
parents:
5648
diff
changeset
|
2400 if (s != 0) |
|
560cee2048ed
(term_init): If no `se', use `me';
Richard M. Stallman <rms@gnu.org>
parents:
5648
diff
changeset
|
2401 TS_end_standout_mode = s; |
|
560cee2048ed
(term_init): If no `se', use `me';
Richard M. Stallman <rms@gnu.org>
parents:
5648
diff
changeset
|
2402 else |
|
560cee2048ed
(term_init): If no `se', use `me';
Richard M. Stallman <rms@gnu.org>
parents:
5648
diff
changeset
|
2403 TS_standout_mode = 0; |
|
560cee2048ed
(term_init): If no `se', use `me';
Richard M. Stallman <rms@gnu.org>
parents:
5648
diff
changeset
|
2404 } |
|
560cee2048ed
(term_init): If no `se', use `me';
Richard M. Stallman <rms@gnu.org>
parents:
5648
diff
changeset
|
2405 |
| 253 | 2406 if (TF_teleray) |
| 2407 { | |
| 2408 Wcm.cm_tab = 0; | |
| 2409 /* Teleray: most programs want a space in front of TS_standout_mode, | |
| 2410 but Emacs can do without it (and give one extra column). */ | |
| 2411 TS_standout_mode = "\033RD"; | |
| 2412 TN_standout_width = 1; | |
| 2413 /* But that means we cannot rely on ^M to go to column zero! */ | |
| 2414 CR = 0; | |
| 2415 /* LF can't be trusted either -- can alter hpos */ | |
| 2416 /* if move at column 0 thru a line with TS_standout_mode */ | |
| 2417 Down = 0; | |
| 2418 } | |
| 2419 | |
| 2420 /* Special handling for certain terminal types known to need it */ | |
| 2421 | |
| 2422 if (!strcmp (terminal_type, "supdup")) | |
| 2423 { | |
| 765 | 2424 memory_below_frame = 1; |
| 253 | 2425 Wcm.cm_losewrap = 1; |
| 2426 } | |
| 2427 if (!strncmp (terminal_type, "c10", 3) | |
| 2428 || !strcmp (terminal_type, "perq")) | |
| 2429 { | |
| 2430 /* Supply a makeshift :wi string. | |
| 2431 This string is not valid in general since it works only | |
| 2432 for windows starting at the upper left corner; | |
| 2433 but that is all Emacs uses. | |
| 2434 | |
| 765 | 2435 This string works only if the frame is using |
| 253 | 2436 the top of the video memory, because addressing is memory-relative. |
| 2437 So first check the :ti string to see if that is true. | |
| 2438 | |
| 2439 It would be simpler if the :wi string could go in the termcap | |
| 2440 entry, but it can't because it is not fully valid. | |
| 2441 If it were in the termcap entry, it would confuse other programs. */ | |
| 2442 if (!TS_set_window) | |
| 2443 { | |
| 2444 p = TS_termcap_modes; | |
| 2445 while (*p && strcmp (p, "\033v ")) | |
| 2446 p++; | |
| 2447 if (*p) | |
| 2448 TS_set_window = "\033v%C %C %C %C "; | |
| 2449 } | |
| 2450 /* Termcap entry often fails to have :in: flag */ | |
| 2451 must_write_spaces = 1; | |
| 2452 /* :ti string typically fails to have \E^G! in it */ | |
| 2453 /* This limits scope of insert-char to one line. */ | |
| 2454 strcpy (area, TS_termcap_modes); | |
| 2455 strcat (area, "\033\007!"); | |
| 2456 TS_termcap_modes = area; | |
| 2457 area += strlen (area) + 1; | |
| 2458 p = AbsPosition; | |
| 2459 /* Change all %+ parameters to %C, to handle | |
| 2460 values above 96 correctly for the C100. */ | |
| 2461 while (*p) | |
| 2462 { | |
| 2463 if (p[0] == '%' && p[1] == '+') | |
| 2464 p[1] = 'C'; | |
| 2465 p++; | |
| 2466 } | |
| 2467 } | |
| 2468 | |
|
25675
992d0d097e54
(OUTPUT): Change for Lisp_Object selected_frame.
Gerd Moellmann <gerd@gnu.org>
parents:
25187
diff
changeset
|
2469 FrameRows = FRAME_HEIGHT (sf); |
|
992d0d097e54
(OUTPUT): Change for Lisp_Object selected_frame.
Gerd Moellmann <gerd@gnu.org>
parents:
25187
diff
changeset
|
2470 FrameCols = FRAME_WIDTH (sf); |
|
992d0d097e54
(OUTPUT): Change for Lisp_Object selected_frame.
Gerd Moellmann <gerd@gnu.org>
parents:
25187
diff
changeset
|
2471 specified_window = FRAME_HEIGHT (sf); |
| 253 | 2472 |
| 2473 if (Wcm_init () == -1) /* can't do cursor motion */ | |
| 2474 #ifdef VMS | |
| 2475 fatal ("Terminal type \"%s\" is not powerful enough to run Emacs.\n\ | |
| 2476 It lacks the ability to position the cursor.\n\ | |
| 2477 If that is not the actual type of terminal you have, use either the\n\ | |
| 2478 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
|
2479 or `define EMACS_TERM \"terminal type\"' for non-DEC terminals.", |
| 253 | 2480 terminal_type); |
|
12412
7f2c068121d8
(term_init): Alternative error messages for TERMCAP/TERMINFO.
Richard M. Stallman <rms@gnu.org>
parents:
12071
diff
changeset
|
2481 #else /* not VMS */ |
|
7f2c068121d8
(term_init): Alternative error messages for TERMCAP/TERMINFO.
Richard M. Stallman <rms@gnu.org>
parents:
12071
diff
changeset
|
2482 # ifdef TERMINFO |
|
7f2c068121d8
(term_init): Alternative error messages for TERMCAP/TERMINFO.
Richard M. Stallman <rms@gnu.org>
parents:
12071
diff
changeset
|
2483 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
|
2484 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
|
2485 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
|
2486 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
|
2487 `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
|
2488 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
|
2489 terminal_type); |
|
7f2c068121d8
(term_init): Alternative error messages for TERMCAP/TERMINFO.
Richard M. Stallman <rms@gnu.org>
parents:
12071
diff
changeset
|
2490 # else /* TERMCAP */ |
| 253 | 2491 fatal ("Terminal type \"%s\" is not powerful enough to run Emacs.\n\ |
| 2492 It lacks the ability to position the cursor.\n\ | |
| 2493 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
|
2494 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
|
2495 `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
|
2496 to do `unset TERMCAP' (C-shell: `unsetenv TERMCAP') as well.", |
| 253 | 2497 terminal_type); |
|
12412
7f2c068121d8
(term_init): Alternative error messages for TERMCAP/TERMINFO.
Richard M. Stallman <rms@gnu.org>
parents:
12071
diff
changeset
|
2498 # endif /* TERMINFO */ |
|
7f2c068121d8
(term_init): Alternative error messages for TERMCAP/TERMINFO.
Richard M. Stallman <rms@gnu.org>
parents:
12071
diff
changeset
|
2499 #endif /*VMS */ |
|
25675
992d0d097e54
(OUTPUT): Change for Lisp_Object selected_frame.
Gerd Moellmann <gerd@gnu.org>
parents:
25187
diff
changeset
|
2500 if (FRAME_HEIGHT (sf) <= 0 |
|
992d0d097e54
(OUTPUT): Change for Lisp_Object selected_frame.
Gerd Moellmann <gerd@gnu.org>
parents:
25187
diff
changeset
|
2501 || FRAME_WIDTH (sf) <= 0) |
|
16894
cd8d6bf6b320
(fatal): Print a newline at the end.
Richard M. Stallman <rms@gnu.org>
parents:
16885
diff
changeset
|
2502 fatal ("The frame size has not been specified"); |
| 253 | 2503 |
| 2504 delete_in_insert_mode | |
| 2505 = TS_delete_mode && TS_insert_mode | |
| 2506 && !strcmp (TS_delete_mode, TS_insert_mode); | |
| 2507 | |
| 2508 se_is_so = (TS_standout_mode | |
| 2509 && TS_end_standout_mode | |
| 2510 && !strcmp (TS_standout_mode, TS_end_standout_mode)); | |
| 2511 | |
| 2512 /* Remove width of standout marker from usable width of line */ | |
| 2513 if (TN_standout_width > 0) | |
|
25675
992d0d097e54
(OUTPUT): Change for Lisp_Object selected_frame.
Gerd Moellmann <gerd@gnu.org>
parents:
25187
diff
changeset
|
2514 SET_FRAME_WIDTH (sf, FRAME_WIDTH (sf) - TN_standout_width); |
| 253 | 2515 |
| 2516 UseTabs = tabs_safe_p () && TabWidth == 8; | |
| 2517 | |
| 2518 scroll_region_ok | |
| 2519 = (Wcm.cm_abs | |
| 2520 && (TS_set_window || TS_set_scroll_region || TS_set_scroll_region_1)); | |
| 2521 | |
| 2522 line_ins_del_ok = (((TS_ins_line || TS_ins_multi_lines) | |
| 2523 && (TS_del_line || TS_del_multi_lines)) | |
| 2524 || (scroll_region_ok && TS_fwd_scroll && TS_rev_scroll)); | |
| 2525 | |
| 2526 char_ins_del_ok = ((TS_ins_char || TS_insert_mode | |
| 2527 || TS_pad_inserted_char || TS_ins_multi_chars) | |
| 2528 && (TS_del_char || TS_del_multi_chars)); | |
| 2529 | |
| 2530 fast_clear_end_of_line = TS_clr_line != 0; | |
| 2531 | |
| 2532 init_baud_rate (); | |
| 2533 if (read_socket_hook) /* Baudrate is somewhat */ | |
| 2534 /* meaningless in this case */ | |
| 2535 baud_rate = 9600; | |
|
1717
aa7d6d57504b
* frame.h (struct frame): New fields `can_have_scrollbars' and
Jim Blandy <jimb@redhat.com>
parents:
1015
diff
changeset
|
2536 |
|
25675
992d0d097e54
(OUTPUT): Change for Lisp_Object selected_frame.
Gerd Moellmann <gerd@gnu.org>
parents:
25187
diff
changeset
|
2537 FRAME_CAN_HAVE_SCROLL_BARS (sf) = 0; |
|
992d0d097e54
(OUTPUT): Change for Lisp_Object selected_frame.
Gerd Moellmann <gerd@gnu.org>
parents:
25187
diff
changeset
|
2538 FRAME_VERTICAL_SCROLL_BAR_TYPE (sf) = 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
|
2539 #endif /* WINDOWSNT */ |
| 253 | 2540 } |
| 2541 | |
| 2542 /* VARARGS 1 */ | |
| 21514 | 2543 void |
| 253 | 2544 fatal (str, arg1, arg2) |
| 621 | 2545 char *str, *arg1, *arg2; |
| 253 | 2546 { |
| 2547 fprintf (stderr, "emacs: "); | |
| 2548 fprintf (stderr, str, arg1, arg2); | |
|
16894
cd8d6bf6b320
(fatal): Print a newline at the end.
Richard M. Stallman <rms@gnu.org>
parents:
16885
diff
changeset
|
2549 fprintf (stderr, "\n"); |
| 253 | 2550 fflush (stderr); |
| 2551 exit (1); | |
| 2552 } | |
|
6752
f9236145bad7
(system_uses_terminfo): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
6652
diff
changeset
|
2553 |
| 21514 | 2554 void |
|
6752
f9236145bad7
(system_uses_terminfo): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
6652
diff
changeset
|
2555 syms_of_term () |
|
f9236145bad7
(system_uses_terminfo): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
6652
diff
changeset
|
2556 { |
|
f9236145bad7
(system_uses_terminfo): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
6652
diff
changeset
|
2557 DEFVAR_BOOL ("system-uses-terminfo", &system_uses_terminfo, |
|
f9236145bad7
(system_uses_terminfo): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
6652
diff
changeset
|
2558 "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
|
2559 This variable can be used by terminal emulator packages."); |
|
f9236145bad7
(system_uses_terminfo): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
6652
diff
changeset
|
2560 #ifdef TERMINFO |
|
f9236145bad7
(system_uses_terminfo): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
6652
diff
changeset
|
2561 system_uses_terminfo = 1; |
|
f9236145bad7
(system_uses_terminfo): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
6652
diff
changeset
|
2562 #else |
|
f9236145bad7
(system_uses_terminfo): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
6652
diff
changeset
|
2563 system_uses_terminfo = 0; |
|
f9236145bad7
(system_uses_terminfo): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
6652
diff
changeset
|
2564 #endif |
|
15974
61249a8fe735
(Vring_bell_function): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
15094
diff
changeset
|
2565 |
|
61249a8fe735
(Vring_bell_function): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
15094
diff
changeset
|
2566 DEFVAR_LISP ("ring-bell-function", &Vring_bell_function, |
|
61249a8fe735
(Vring_bell_function): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
15094
diff
changeset
|
2567 "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
|
2568 The function should accept no arguments."); |
|
61249a8fe735
(Vring_bell_function): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
15094
diff
changeset
|
2569 Vring_bell_function = Qnil; |
| 25002 | 2570 |
| 2571 defsubr (&Stty_display_color_p); | |
|
6752
f9236145bad7
(system_uses_terminfo): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
6652
diff
changeset
|
2572 } |
| 25002 | 2573 |
