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