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