Mercurial > emacs
annotate src/xdisp.c @ 2275:c70f9af7c66a
Added documentation, made the change comment for old versions more
useful.
author | Eric S. Raymond <esr@snark.thyrsus.com> |
---|---|
date | Fri, 19 Mar 1993 23:40:27 +0000 |
parents | 9793d8654e23 |
children | 00e3cc81c1be |
rev | line source |
---|---|
277 | 1 /* Display generation from window structure and buffer text. |
2065
32afcdd08efe
(copy_rope): Expect FROM to be a vector.
Richard M. Stallman <rms@gnu.org>
parents:
1992
diff
changeset
|
2 Copyright (C) 1985, 1986, 1987, 1988, 1993 Free Software Foundation, Inc. |
277 | 3 |
4 This file is part of GNU Emacs. | |
5 | |
6 GNU Emacs is free software; you can redistribute it and/or modify | |
7 it under the terms of the GNU General Public License as published by | |
1785
19755499df90
* window.c (window_internal_width): New function, which accounts
Jim Blandy <jimb@redhat.com>
parents:
1718
diff
changeset
|
8 the Free Software Foundation; either version 2, or (at your option) |
277 | 9 any later version. |
10 | |
11 GNU Emacs is distributed in the hope that it will be useful, | |
12 but WITHOUT ANY WARRANTY; without even the implied warranty of | |
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
14 GNU General Public License for more details. | |
15 | |
16 You should have received a copy of the GNU General Public License | |
17 along with GNU Emacs; see the file COPYING. If not, write to | |
18 the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ | |
19 | |
20 | |
21 #include "config.h" | |
22 #include <stdio.h> | |
23 /*#include <ctype.h>*/ | |
24 #undef NULL | |
25 #include "lisp.h" | |
769 | 26 #include "frame.h" |
277 | 27 #include "window.h" |
28 #include "termchar.h" | |
29 #include "dispextern.h" | |
30 #include "buffer.h" | |
31 #include "indent.h" | |
32 #include "commands.h" | |
33 #include "macros.h" | |
34 #include "disptab.h" | |
1718
f80c1f73f5b9
* xdisp.c: #include "termhooks.h".
Jim Blandy <jimb@redhat.com>
parents:
1656
diff
changeset
|
35 #include "termhooks.h" |
277 | 36 |
37 extern int interrupt_input; | |
38 extern int command_loop_level; | |
39 | |
40 /* Nonzero means print newline before next minibuffer message. */ | |
41 | |
42 int noninteractive_need_newline; | |
43 | |
44 #define min(a, b) ((a) < (b) ? (a) : (b)) | |
45 #define max(a, b) ((a) > (b) ? (a) : (b)) | |
46 | |
47 /* The buffer position of the first character appearing | |
769 | 48 entirely or partially on the current frame line. |
49 Or zero, which disables the optimization for the current frame line. */ | |
277 | 50 static int this_line_bufpos; |
51 | |
52 /* Number of characters past the end of this line, | |
53 including the terminating newline */ | |
54 static int this_line_endpos; | |
55 | |
769 | 56 /* The vertical position of this frame line. */ |
277 | 57 static int this_line_vpos; |
58 | |
769 | 59 /* Hpos value for start of display on this frame line. |
277 | 60 Usually zero, but negative if first character really began |
61 on previous line */ | |
62 static int this_line_start_hpos; | |
63 | |
64 /* Buffer that this_line variables are describing. */ | |
65 static struct buffer *this_line_buffer; | |
66 | |
67 /* Set by try_window_id to the vpos of first of any lines | |
769 | 68 scrolled on to the bottom of the frame. These lines should |
277 | 69 not be included in any general scroll computation. */ |
70 static int scroll_bottom_vpos; | |
71 | |
72 /* Value of echo_area_glyphs when it was last acted on. | |
769 | 73 If this is nonzero, there is a message on the frame |
277 | 74 in the minibuffer and it should be erased as soon |
75 as it is no longer requested to appear. */ | |
76 char *previous_echo_glyphs; | |
77 | |
769 | 78 /* Nonzero means truncate lines in all windows less wide than the frame */ |
277 | 79 int truncate_partial_width_windows; |
80 | |
81 Lisp_Object Vglobal_mode_string; | |
82 | |
83 /* Marker for where to display an arrow on top of the buffer text. */ | |
84 Lisp_Object Voverlay_arrow_position; | |
85 | |
86 /* String to display for the arrow. */ | |
87 Lisp_Object Voverlay_arrow_string; | |
88 | |
89 /* Values of those variables at last redisplay. */ | |
1527
00109911b040
* xdisp.c (redisplay): Use ! EQ to compare the old and new arrow
Jim Blandy <jimb@redhat.com>
parents:
1446
diff
changeset
|
90 static Lisp_Object last_arrow_position, last_arrow_string; |
277 | 91 |
92 /* Nonzero if overlay arrow has been displayed once in this window. */ | |
93 static int overlay_arrow_seen; | |
94 | |
769 | 95 /* If cursor motion alone moves point off frame, |
277 | 96 Try scrolling this many lines up or down if that will bring it back. */ |
97 int scroll_step; | |
98 | |
99 /* Nonzero if try_window_id has made blank lines at window bottom | |
100 since the last redisplay that paused */ | |
101 static int blank_end_of_window; | |
102 | |
103 /* Number of windows showing the buffer of the selected window. | |
104 keyboard.c refers to this. */ | |
105 int buffer_shared; | |
106 | |
769 | 107 /* display_text_line sets these to the frame position (origin 0) of point, |
277 | 108 whether the window is selected or not. |
109 Set one to -1 first to determine whether point was found afterwards. */ | |
110 | |
111 static int cursor_vpos; | |
112 static int cursor_hpos; | |
113 | |
114 int debug_end_pos; | |
115 | |
116 /* Nonzero means display mode line highlighted */ | |
117 int mode_line_inverse_video; | |
118 | |
119 static void echo_area_display (); | |
120 void mark_window_display_accurate (); | |
121 static void redisplay_windows (); | |
122 static void redisplay_window (); | |
123 static void try_window (); | |
124 static int try_window_id (); | |
125 static struct position *display_text_line (); | |
126 static void display_mode_line (); | |
127 static int display_mode_element (); | |
128 static char *fmodetrunc (); | |
129 static char *decode_mode_spec (); | |
130 static int display_string (); | |
2150
cb8205e30dda
(display_menu_bar): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2065
diff
changeset
|
131 static void display_menu_bar (); |
277 | 132 |
133 /* Prompt to display in front of the minibuffer contents */ | |
134 char *minibuf_prompt; | |
135 | |
136 /* Width in columns of current minibuffer prompt. */ | |
137 int minibuf_prompt_width; | |
138 | |
139 /* Message to display instead of minibuffer contents | |
140 This is what the functions error and message make, | |
141 and command echoing uses it as well. | |
142 It overrides the minibuf_prompt as well as the buffer. */ | |
143 char *echo_area_glyphs; | |
144 | |
145 /* true iff we should redraw the mode lines on the next redisplay */ | |
146 int update_mode_lines; | |
147 | |
148 /* Smallest number of characters before the gap | |
149 at any time since last redisplay that finished. | |
150 Valid for current buffer when try_window_id can be called. */ | |
151 int beg_unchanged; | |
152 | |
153 /* Smallest number of characters after the gap | |
154 at any time since last redisplay that finished. | |
155 Valid for current buffer when try_window_id can be called. */ | |
156 int end_unchanged; | |
157 | |
158 /* MODIFF as of last redisplay that finished; | |
159 if it matches MODIFF, beg_unchanged and end_unchanged | |
160 contain no useful information */ | |
161 int unchanged_modified; | |
162 | |
163 /* Nonzero if head_clip or tail_clip of current buffer has changed | |
164 since last redisplay that finished */ | |
165 int clip_changed; | |
166 | |
167 /* Nonzero if window sizes or contents have changed | |
168 since last redisplay that finished */ | |
169 int windows_or_buffers_changed; | |
170 | |
171 | |
1527
00109911b040
* xdisp.c (redisplay): Use ! EQ to compare the old and new arrow
Jim Blandy <jimb@redhat.com>
parents:
1446
diff
changeset
|
172 /* Specify m, a string, as a message in the minibuf. If m is 0, clear out |
00109911b040
* xdisp.c (redisplay): Use ! EQ to compare the old and new arrow
Jim Blandy <jimb@redhat.com>
parents:
1446
diff
changeset
|
173 any existing message, and let the minibuffer text show through. */ |
00109911b040
* xdisp.c (redisplay): Use ! EQ to compare the old and new arrow
Jim Blandy <jimb@redhat.com>
parents:
1446
diff
changeset
|
174 void |
00109911b040
* xdisp.c (redisplay): Use ! EQ to compare the old and new arrow
Jim Blandy <jimb@redhat.com>
parents:
1446
diff
changeset
|
175 message1 (m) |
00109911b040
* xdisp.c (redisplay): Use ! EQ to compare the old and new arrow
Jim Blandy <jimb@redhat.com>
parents:
1446
diff
changeset
|
176 char *m; |
00109911b040
* xdisp.c (redisplay): Use ! EQ to compare the old and new arrow
Jim Blandy <jimb@redhat.com>
parents:
1446
diff
changeset
|
177 { |
00109911b040
* xdisp.c (redisplay): Use ! EQ to compare the old and new arrow
Jim Blandy <jimb@redhat.com>
parents:
1446
diff
changeset
|
178 if (noninteractive) |
00109911b040
* xdisp.c (redisplay): Use ! EQ to compare the old and new arrow
Jim Blandy <jimb@redhat.com>
parents:
1446
diff
changeset
|
179 { |
00109911b040
* xdisp.c (redisplay): Use ! EQ to compare the old and new arrow
Jim Blandy <jimb@redhat.com>
parents:
1446
diff
changeset
|
180 if (noninteractive_need_newline) |
00109911b040
* xdisp.c (redisplay): Use ! EQ to compare the old and new arrow
Jim Blandy <jimb@redhat.com>
parents:
1446
diff
changeset
|
181 putc ('\n', stderr); |
00109911b040
* xdisp.c (redisplay): Use ! EQ to compare the old and new arrow
Jim Blandy <jimb@redhat.com>
parents:
1446
diff
changeset
|
182 noninteractive_need_newline = 0; |
00109911b040
* xdisp.c (redisplay): Use ! EQ to compare the old and new arrow
Jim Blandy <jimb@redhat.com>
parents:
1446
diff
changeset
|
183 fprintf (stderr, "%s\n", m); |
00109911b040
* xdisp.c (redisplay): Use ! EQ to compare the old and new arrow
Jim Blandy <jimb@redhat.com>
parents:
1446
diff
changeset
|
184 fflush (stderr); |
00109911b040
* xdisp.c (redisplay): Use ! EQ to compare the old and new arrow
Jim Blandy <jimb@redhat.com>
parents:
1446
diff
changeset
|
185 } |
00109911b040
* xdisp.c (redisplay): Use ! EQ to compare the old and new arrow
Jim Blandy <jimb@redhat.com>
parents:
1446
diff
changeset
|
186 /* A null message buffer means that the frame hasn't really been |
00109911b040
* xdisp.c (redisplay): Use ! EQ to compare the old and new arrow
Jim Blandy <jimb@redhat.com>
parents:
1446
diff
changeset
|
187 initialized yet. Error messages get reported properly by |
00109911b040
* xdisp.c (redisplay): Use ! EQ to compare the old and new arrow
Jim Blandy <jimb@redhat.com>
parents:
1446
diff
changeset
|
188 cmd_error, so this must be just an informative message; toss it. */ |
00109911b040
* xdisp.c (redisplay): Use ! EQ to compare the old and new arrow
Jim Blandy <jimb@redhat.com>
parents:
1446
diff
changeset
|
189 else if (INTERACTIVE && FRAME_MESSAGE_BUF (selected_frame)) |
00109911b040
* xdisp.c (redisplay): Use ! EQ to compare the old and new arrow
Jim Blandy <jimb@redhat.com>
parents:
1446
diff
changeset
|
190 { |
00109911b040
* xdisp.c (redisplay): Use ! EQ to compare the old and new arrow
Jim Blandy <jimb@redhat.com>
parents:
1446
diff
changeset
|
191 #ifdef MULTI_FRAME |
00109911b040
* xdisp.c (redisplay): Use ! EQ to compare the old and new arrow
Jim Blandy <jimb@redhat.com>
parents:
1446
diff
changeset
|
192 Lisp_Object minibuf_frame; |
00109911b040
* xdisp.c (redisplay): Use ! EQ to compare the old and new arrow
Jim Blandy <jimb@redhat.com>
parents:
1446
diff
changeset
|
193 |
00109911b040
* xdisp.c (redisplay): Use ! EQ to compare the old and new arrow
Jim Blandy <jimb@redhat.com>
parents:
1446
diff
changeset
|
194 choose_minibuf_frame (); |
00109911b040
* xdisp.c (redisplay): Use ! EQ to compare the old and new arrow
Jim Blandy <jimb@redhat.com>
parents:
1446
diff
changeset
|
195 minibuf_frame = WINDOW_FRAME (XWINDOW (minibuf_window)); |
1656
a532c5a23984
* xdisp.c (redisplay): Call FRAME_SAMPLE_VISIBILITY to set the
Jim Blandy <jimb@redhat.com>
parents:
1600
diff
changeset
|
196 FRAME_SAMPLE_VISIBILITY (XFRAME (minibuf_frame)); |
1527
00109911b040
* xdisp.c (redisplay): Use ! EQ to compare the old and new arrow
Jim Blandy <jimb@redhat.com>
parents:
1446
diff
changeset
|
197 if (FRAME_VISIBLE_P (selected_frame) |
00109911b040
* xdisp.c (redisplay): Use ! EQ to compare the old and new arrow
Jim Blandy <jimb@redhat.com>
parents:
1446
diff
changeset
|
198 && ! FRAME_VISIBLE_P (XFRAME (minibuf_frame))) |
00109911b040
* xdisp.c (redisplay): Use ! EQ to compare the old and new arrow
Jim Blandy <jimb@redhat.com>
parents:
1446
diff
changeset
|
199 Fmake_frame_visible (WINDOW_FRAME (XWINDOW (minibuf_window))); |
00109911b040
* xdisp.c (redisplay): Use ! EQ to compare the old and new arrow
Jim Blandy <jimb@redhat.com>
parents:
1446
diff
changeset
|
200 #endif |
00109911b040
* xdisp.c (redisplay): Use ! EQ to compare the old and new arrow
Jim Blandy <jimb@redhat.com>
parents:
1446
diff
changeset
|
201 |
00109911b040
* xdisp.c (redisplay): Use ! EQ to compare the old and new arrow
Jim Blandy <jimb@redhat.com>
parents:
1446
diff
changeset
|
202 if (m) |
00109911b040
* xdisp.c (redisplay): Use ! EQ to compare the old and new arrow
Jim Blandy <jimb@redhat.com>
parents:
1446
diff
changeset
|
203 echo_area_glyphs = m; |
00109911b040
* xdisp.c (redisplay): Use ! EQ to compare the old and new arrow
Jim Blandy <jimb@redhat.com>
parents:
1446
diff
changeset
|
204 else |
00109911b040
* xdisp.c (redisplay): Use ! EQ to compare the old and new arrow
Jim Blandy <jimb@redhat.com>
parents:
1446
diff
changeset
|
205 echo_area_glyphs = previous_echo_glyphs = 0; |
00109911b040
* xdisp.c (redisplay): Use ! EQ to compare the old and new arrow
Jim Blandy <jimb@redhat.com>
parents:
1446
diff
changeset
|
206 |
00109911b040
* xdisp.c (redisplay): Use ! EQ to compare the old and new arrow
Jim Blandy <jimb@redhat.com>
parents:
1446
diff
changeset
|
207 do_pending_window_change (); |
00109911b040
* xdisp.c (redisplay): Use ! EQ to compare the old and new arrow
Jim Blandy <jimb@redhat.com>
parents:
1446
diff
changeset
|
208 echo_area_display (); |
00109911b040
* xdisp.c (redisplay): Use ! EQ to compare the old and new arrow
Jim Blandy <jimb@redhat.com>
parents:
1446
diff
changeset
|
209 update_frame (XFRAME (XWINDOW (minibuf_window)->frame), 1, 1); |
00109911b040
* xdisp.c (redisplay): Use ! EQ to compare the old and new arrow
Jim Blandy <jimb@redhat.com>
parents:
1446
diff
changeset
|
210 do_pending_window_change (); |
00109911b040
* xdisp.c (redisplay): Use ! EQ to compare the old and new arrow
Jim Blandy <jimb@redhat.com>
parents:
1446
diff
changeset
|
211 } |
00109911b040
* xdisp.c (redisplay): Use ! EQ to compare the old and new arrow
Jim Blandy <jimb@redhat.com>
parents:
1446
diff
changeset
|
212 } |
00109911b040
* xdisp.c (redisplay): Use ! EQ to compare the old and new arrow
Jim Blandy <jimb@redhat.com>
parents:
1446
diff
changeset
|
213 |
769 | 214 /* Nonzero if FRAME_MESSAGE_BUF (selected_frame) is being used by print; |
331 | 215 zero if being used by message. */ |
216 int message_buf_print; | |
217 | |
1446
37b3c2981b40
* xdisp.c (message): If M is zero, clear echo_area_glyphs and
Jim Blandy <jimb@redhat.com>
parents:
1124
diff
changeset
|
218 /* Dump an informative message to the minibuf. If m is 0, clear out |
37b3c2981b40
* xdisp.c (message): If M is zero, clear echo_area_glyphs and
Jim Blandy <jimb@redhat.com>
parents:
1124
diff
changeset
|
219 any existing message, and let the minibuffer text show through. */ |
277 | 220 /* VARARGS 1 */ |
221 void | |
222 message (m, a1, a2, a3) | |
223 char *m; | |
224 { | |
225 if (noninteractive) | |
226 { | |
1446
37b3c2981b40
* xdisp.c (message): If M is zero, clear echo_area_glyphs and
Jim Blandy <jimb@redhat.com>
parents:
1124
diff
changeset
|
227 if (m) |
37b3c2981b40
* xdisp.c (message): If M is zero, clear echo_area_glyphs and
Jim Blandy <jimb@redhat.com>
parents:
1124
diff
changeset
|
228 { |
37b3c2981b40
* xdisp.c (message): If M is zero, clear echo_area_glyphs and
Jim Blandy <jimb@redhat.com>
parents:
1124
diff
changeset
|
229 if (noninteractive_need_newline) |
37b3c2981b40
* xdisp.c (message): If M is zero, clear echo_area_glyphs and
Jim Blandy <jimb@redhat.com>
parents:
1124
diff
changeset
|
230 putc ('\n', stderr); |
37b3c2981b40
* xdisp.c (message): If M is zero, clear echo_area_glyphs and
Jim Blandy <jimb@redhat.com>
parents:
1124
diff
changeset
|
231 noninteractive_need_newline = 0; |
37b3c2981b40
* xdisp.c (message): If M is zero, clear echo_area_glyphs and
Jim Blandy <jimb@redhat.com>
parents:
1124
diff
changeset
|
232 fprintf (stderr, m, a1, a2, a3); |
37b3c2981b40
* xdisp.c (message): If M is zero, clear echo_area_glyphs and
Jim Blandy <jimb@redhat.com>
parents:
1124
diff
changeset
|
233 fprintf (stderr, "\n"); |
37b3c2981b40
* xdisp.c (message): If M is zero, clear echo_area_glyphs and
Jim Blandy <jimb@redhat.com>
parents:
1124
diff
changeset
|
234 fflush (stderr); |
37b3c2981b40
* xdisp.c (message): If M is zero, clear echo_area_glyphs and
Jim Blandy <jimb@redhat.com>
parents:
1124
diff
changeset
|
235 } |
277 | 236 } |
1873
c5038f47c602
* xdisp.c (message): Set echo_frame to the frame whose message buf
Jim Blandy <jimb@redhat.com>
parents:
1785
diff
changeset
|
237 else if (INTERACTIVE) |
277 | 238 { |
1873
c5038f47c602
* xdisp.c (message): Set echo_frame to the frame whose message buf
Jim Blandy <jimb@redhat.com>
parents:
1785
diff
changeset
|
239 /* The frame whose minibuffer we're going to display the message on. |
c5038f47c602
* xdisp.c (message): Set echo_frame to the frame whose message buf
Jim Blandy <jimb@redhat.com>
parents:
1785
diff
changeset
|
240 It may be larger than the selected frame, so we need |
c5038f47c602
* xdisp.c (message): Set echo_frame to the frame whose message buf
Jim Blandy <jimb@redhat.com>
parents:
1785
diff
changeset
|
241 to use its buffer, not the selected frame's buffer. */ |
c5038f47c602
* xdisp.c (message): Set echo_frame to the frame whose message buf
Jim Blandy <jimb@redhat.com>
parents:
1785
diff
changeset
|
242 FRAME_PTR echo_frame; |
c5038f47c602
* xdisp.c (message): Set echo_frame to the frame whose message buf
Jim Blandy <jimb@redhat.com>
parents:
1785
diff
changeset
|
243 #ifdef MULTI_FRAME |
c5038f47c602
* xdisp.c (message): Set echo_frame to the frame whose message buf
Jim Blandy <jimb@redhat.com>
parents:
1785
diff
changeset
|
244 choose_minibuf_frame (); |
c5038f47c602
* xdisp.c (message): Set echo_frame to the frame whose message buf
Jim Blandy <jimb@redhat.com>
parents:
1785
diff
changeset
|
245 echo_frame = XFRAME (WINDOW_FRAME (XWINDOW (minibuf_window))); |
c5038f47c602
* xdisp.c (message): Set echo_frame to the frame whose message buf
Jim Blandy <jimb@redhat.com>
parents:
1785
diff
changeset
|
246 #else |
c5038f47c602
* xdisp.c (message): Set echo_frame to the frame whose message buf
Jim Blandy <jimb@redhat.com>
parents:
1785
diff
changeset
|
247 echo_frame = selected_frame; |
c5038f47c602
* xdisp.c (message): Set echo_frame to the frame whose message buf
Jim Blandy <jimb@redhat.com>
parents:
1785
diff
changeset
|
248 #endif |
277 | 249 |
1873
c5038f47c602
* xdisp.c (message): Set echo_frame to the frame whose message buf
Jim Blandy <jimb@redhat.com>
parents:
1785
diff
changeset
|
250 /* A null message buffer means that the frame hasn't really been |
c5038f47c602
* xdisp.c (message): Set echo_frame to the frame whose message buf
Jim Blandy <jimb@redhat.com>
parents:
1785
diff
changeset
|
251 initialized yet. Error messages get reported properly by |
c5038f47c602
* xdisp.c (message): Set echo_frame to the frame whose message buf
Jim Blandy <jimb@redhat.com>
parents:
1785
diff
changeset
|
252 cmd_error, so this must be just an informative message; toss it. */ |
c5038f47c602
* xdisp.c (message): Set echo_frame to the frame whose message buf
Jim Blandy <jimb@redhat.com>
parents:
1785
diff
changeset
|
253 if (FRAME_MESSAGE_BUF (echo_frame)) |
c5038f47c602
* xdisp.c (message): Set echo_frame to the frame whose message buf
Jim Blandy <jimb@redhat.com>
parents:
1785
diff
changeset
|
254 { |
c5038f47c602
* xdisp.c (message): Set echo_frame to the frame whose message buf
Jim Blandy <jimb@redhat.com>
parents:
1785
diff
changeset
|
255 if (m) |
c5038f47c602
* xdisp.c (message): Set echo_frame to the frame whose message buf
Jim Blandy <jimb@redhat.com>
parents:
1785
diff
changeset
|
256 { |
c5038f47c602
* xdisp.c (message): Set echo_frame to the frame whose message buf
Jim Blandy <jimb@redhat.com>
parents:
1785
diff
changeset
|
257 { |
c5038f47c602
* xdisp.c (message): Set echo_frame to the frame whose message buf
Jim Blandy <jimb@redhat.com>
parents:
1785
diff
changeset
|
258 #ifdef NO_ARG_ARRAY |
c5038f47c602
* xdisp.c (message): Set echo_frame to the frame whose message buf
Jim Blandy <jimb@redhat.com>
parents:
1785
diff
changeset
|
259 int a[3]; |
c5038f47c602
* xdisp.c (message): Set echo_frame to the frame whose message buf
Jim Blandy <jimb@redhat.com>
parents:
1785
diff
changeset
|
260 a[0] = a1; |
c5038f47c602
* xdisp.c (message): Set echo_frame to the frame whose message buf
Jim Blandy <jimb@redhat.com>
parents:
1785
diff
changeset
|
261 a[1] = a2; |
c5038f47c602
* xdisp.c (message): Set echo_frame to the frame whose message buf
Jim Blandy <jimb@redhat.com>
parents:
1785
diff
changeset
|
262 a[2] = a3; |
277 | 263 |
1873
c5038f47c602
* xdisp.c (message): Set echo_frame to the frame whose message buf
Jim Blandy <jimb@redhat.com>
parents:
1785
diff
changeset
|
264 doprnt (FRAME_MESSAGE_BUF (echo_frame), |
c5038f47c602
* xdisp.c (message): Set echo_frame to the frame whose message buf
Jim Blandy <jimb@redhat.com>
parents:
1785
diff
changeset
|
265 FRAME_WIDTH (echo_frame), m, 0, 3, a); |
c5038f47c602
* xdisp.c (message): Set echo_frame to the frame whose message buf
Jim Blandy <jimb@redhat.com>
parents:
1785
diff
changeset
|
266 #else |
c5038f47c602
* xdisp.c (message): Set echo_frame to the frame whose message buf
Jim Blandy <jimb@redhat.com>
parents:
1785
diff
changeset
|
267 doprnt (FRAME_MESSAGE_BUF (echo_frame), |
c5038f47c602
* xdisp.c (message): Set echo_frame to the frame whose message buf
Jim Blandy <jimb@redhat.com>
parents:
1785
diff
changeset
|
268 FRAME_WIDTH (echo_frame), m, 0, 3, &a1); |
c5038f47c602
* xdisp.c (message): Set echo_frame to the frame whose message buf
Jim Blandy <jimb@redhat.com>
parents:
1785
diff
changeset
|
269 #endif /* NO_ARG_ARRAY */ |
c5038f47c602
* xdisp.c (message): Set echo_frame to the frame whose message buf
Jim Blandy <jimb@redhat.com>
parents:
1785
diff
changeset
|
270 } |
c5038f47c602
* xdisp.c (message): Set echo_frame to the frame whose message buf
Jim Blandy <jimb@redhat.com>
parents:
1785
diff
changeset
|
271 |
c5038f47c602
* xdisp.c (message): Set echo_frame to the frame whose message buf
Jim Blandy <jimb@redhat.com>
parents:
1785
diff
changeset
|
272 message1 (FRAME_MESSAGE_BUF (echo_frame)); |
c5038f47c602
* xdisp.c (message): Set echo_frame to the frame whose message buf
Jim Blandy <jimb@redhat.com>
parents:
1785
diff
changeset
|
273 } |
c5038f47c602
* xdisp.c (message): Set echo_frame to the frame whose message buf
Jim Blandy <jimb@redhat.com>
parents:
1785
diff
changeset
|
274 else |
c5038f47c602
* xdisp.c (message): Set echo_frame to the frame whose message buf
Jim Blandy <jimb@redhat.com>
parents:
1785
diff
changeset
|
275 message1 (0); |
c5038f47c602
* xdisp.c (message): Set echo_frame to the frame whose message buf
Jim Blandy <jimb@redhat.com>
parents:
1785
diff
changeset
|
276 |
c5038f47c602
* xdisp.c (message): Set echo_frame to the frame whose message buf
Jim Blandy <jimb@redhat.com>
parents:
1785
diff
changeset
|
277 /* Print should start at the beginning of the message |
c5038f47c602
* xdisp.c (message): Set echo_frame to the frame whose message buf
Jim Blandy <jimb@redhat.com>
parents:
1785
diff
changeset
|
278 buffer next time. */ |
c5038f47c602
* xdisp.c (message): Set echo_frame to the frame whose message buf
Jim Blandy <jimb@redhat.com>
parents:
1785
diff
changeset
|
279 message_buf_print = 0; |
1446
37b3c2981b40
* xdisp.c (message): If M is zero, clear echo_area_glyphs and
Jim Blandy <jimb@redhat.com>
parents:
1124
diff
changeset
|
280 } |
277 | 281 } |
282 } | |
283 | |
284 static void | |
285 echo_area_display () | |
286 { | |
287 register int vpos; | |
769 | 288 FRAME_PTR f; |
277 | 289 |
769 | 290 #ifdef MULTI_FRAME |
291 choose_minibuf_frame (); | |
1785
19755499df90
* window.c (window_internal_width): New function, which accounts
Jim Blandy <jimb@redhat.com>
parents:
1718
diff
changeset
|
292 #endif |
19755499df90
* window.c (window_internal_width): New function, which accounts
Jim Blandy <jimb@redhat.com>
parents:
1718
diff
changeset
|
293 |
769 | 294 f = XFRAME (WINDOW_FRAME (XWINDOW (minibuf_window))); |
277 | 295 |
769 | 296 if (! FRAME_VISIBLE_P (f)) |
277 | 297 return; |
298 | |
769 | 299 if (frame_garbaged) |
277 | 300 { |
301 Fredraw_display (); | |
769 | 302 frame_garbaged = 0; |
277 | 303 } |
304 | |
305 if (echo_area_glyphs || minibuf_level == 0) | |
306 { | |
307 vpos = XFASTINT (XWINDOW (minibuf_window)->top); | |
769 | 308 get_display_line (f, vpos, 0); |
277 | 309 display_string (XWINDOW (minibuf_window), vpos, |
310 echo_area_glyphs ? echo_area_glyphs : "", | |
769 | 311 0, 0, 0, FRAME_WIDTH (f)); |
277 | 312 |
313 /* If desired cursor location is on this line, put it at end of text */ | |
769 | 314 if (FRAME_CURSOR_Y (f) == vpos) |
315 FRAME_CURSOR_X (f) = FRAME_DESIRED_GLYPHS (f)->used[vpos]; | |
727 | 316 |
317 /* Fill the rest of the minibuffer window with blank lines. */ | |
318 { | |
319 int i; | |
320 | |
321 for (i = vpos + 1; i < vpos + XWINDOW (minibuf_window)->height; i++) | |
322 { | |
769 | 323 get_display_line (f, i, 0); |
727 | 324 display_string (XWINDOW (minibuf_window), vpos, |
769 | 325 "", 0, 0, 0, FRAME_WIDTH (f)); |
727 | 326 } |
327 } | |
277 | 328 } |
329 else if (!EQ (minibuf_window, selected_window)) | |
330 windows_or_buffers_changed++; | |
331 | |
332 if (EQ (minibuf_window, selected_window)) | |
333 this_line_bufpos = 0; | |
334 | |
335 previous_echo_glyphs = echo_area_glyphs; | |
336 } | |
337 | |
769 | 338 /* Do a frame update, taking possible shortcuts into account. |
277 | 339 This is the main external entry point for redisplay. |
340 | |
341 If the last redisplay displayed an echo area message and that | |
342 message is no longer requested, we clear the echo area | |
343 or bring back the minibuffer if that is in use. | |
344 | |
345 Everyone would like to have a hook here to call eval, | |
346 but that cannot be done safely without a lot of changes elsewhere. | |
347 This can be called from signal handlers; with alarms set up; | |
348 or with synchronous processes running. | |
349 See the function `echo' in keyboard.c. | |
350 See Fcall_process; if you called it from here, it could be | |
351 entered recursively. */ | |
352 | |
353 void | |
354 redisplay () | |
355 { | |
356 register struct window *w = XWINDOW (selected_window); | |
357 register int pause; | |
358 int must_finish = 0; | |
359 int all_windows; | |
360 register int tlbufpos, tlendpos; | |
361 struct position pos; | |
362 extern int input_pending; | |
363 | |
364 if (noninteractive) | |
365 return; | |
366 | |
1656
a532c5a23984
* xdisp.c (redisplay): Call FRAME_SAMPLE_VISIBILITY to set the
Jim Blandy <jimb@redhat.com>
parents:
1600
diff
changeset
|
367 /* Set the visible flags for all frames. |
a532c5a23984
* xdisp.c (redisplay): Call FRAME_SAMPLE_VISIBILITY to set the
Jim Blandy <jimb@redhat.com>
parents:
1600
diff
changeset
|
368 Do this before checking for resized or garbaged frames; they want |
a532c5a23984
* xdisp.c (redisplay): Call FRAME_SAMPLE_VISIBILITY to set the
Jim Blandy <jimb@redhat.com>
parents:
1600
diff
changeset
|
369 to know if their frames are visible. |
a532c5a23984
* xdisp.c (redisplay): Call FRAME_SAMPLE_VISIBILITY to set the
Jim Blandy <jimb@redhat.com>
parents:
1600
diff
changeset
|
370 See the comment in frame.h for FRAME_SAMPLE_VISIBILITY. */ |
a532c5a23984
* xdisp.c (redisplay): Call FRAME_SAMPLE_VISIBILITY to set the
Jim Blandy <jimb@redhat.com>
parents:
1600
diff
changeset
|
371 { |
2252
9793d8654e23
* frame.h (FOR_EACH_FRAME): Change the definition so that
Jim Blandy <jimb@redhat.com>
parents:
2189
diff
changeset
|
372 Lisp_Object tail, frame; |
1656
a532c5a23984
* xdisp.c (redisplay): Call FRAME_SAMPLE_VISIBILITY to set the
Jim Blandy <jimb@redhat.com>
parents:
1600
diff
changeset
|
373 |
2252
9793d8654e23
* frame.h (FOR_EACH_FRAME): Change the definition so that
Jim Blandy <jimb@redhat.com>
parents:
2189
diff
changeset
|
374 FOR_EACH_FRAME (tail, frame) |
9793d8654e23
* frame.h (FOR_EACH_FRAME): Change the definition so that
Jim Blandy <jimb@redhat.com>
parents:
2189
diff
changeset
|
375 FRAME_SAMPLE_VISIBILITY (XFRAME (frame)); |
1656
a532c5a23984
* xdisp.c (redisplay): Call FRAME_SAMPLE_VISIBILITY to set the
Jim Blandy <jimb@redhat.com>
parents:
1600
diff
changeset
|
376 } |
a532c5a23984
* xdisp.c (redisplay): Call FRAME_SAMPLE_VISIBILITY to set the
Jim Blandy <jimb@redhat.com>
parents:
1600
diff
changeset
|
377 |
769 | 378 /* Notice any pending interrupt request to change frame size. */ |
277 | 379 do_pending_window_change (); |
380 | |
769 | 381 if (frame_garbaged) |
277 | 382 { |
383 Fredraw_display (); | |
769 | 384 frame_garbaged = 0; |
277 | 385 } |
386 | |
368 | 387 /* Normally the message* functions will have already displayed and |
769 | 388 updated the echo area, but the frame may have been trashed, or |
368 | 389 the update may have been preempted, so display the echo area |
390 again here. */ | |
277 | 391 if (echo_area_glyphs || previous_echo_glyphs) |
392 { | |
393 echo_area_display (); | |
394 must_finish = 1; | |
395 } | |
396 | |
397 if (clip_changed || windows_or_buffers_changed) | |
398 update_mode_lines++; | |
399 | |
400 /* Detect case that we need to write a star in the mode line. */ | |
401 if (XFASTINT (w->last_modified) < MODIFF | |
402 && XFASTINT (w->last_modified) <= current_buffer->save_modified) | |
403 { | |
404 w->update_mode_line = Qt; | |
405 if (buffer_shared > 1) | |
406 update_mode_lines++; | |
407 } | |
408 | |
769 | 409 FRAME_SCROLL_BOTTOM_VPOS (XFRAME (w->frame)) = -1; |
277 | 410 |
411 all_windows = update_mode_lines || buffer_shared > 1; | |
412 | |
413 /* If specs for an arrow have changed, do thorough redisplay | |
414 to ensure we remove any arrow that should no longer exist. */ | |
1527
00109911b040
* xdisp.c (redisplay): Use ! EQ to compare the old and new arrow
Jim Blandy <jimb@redhat.com>
parents:
1446
diff
changeset
|
415 if (! EQ (Voverlay_arrow_position, last_arrow_position) |
00109911b040
* xdisp.c (redisplay): Use ! EQ to compare the old and new arrow
Jim Blandy <jimb@redhat.com>
parents:
1446
diff
changeset
|
416 || ! EQ (Voverlay_arrow_string, last_arrow_string)) |
277 | 417 all_windows = 1, clip_changed = 1; |
418 | |
419 tlbufpos = this_line_bufpos; | |
420 tlendpos = this_line_endpos; | |
485 | 421 if (!all_windows && tlbufpos > 0 && NILP (w->update_mode_line) |
769 | 422 && FRAME_VISIBLE_P (XFRAME (w->frame)) |
277 | 423 /* Make sure recorded data applies to current buffer, etc */ |
424 && this_line_buffer == current_buffer | |
425 && current_buffer == XBUFFER (w->buffer) | |
485 | 426 && NILP (w->force_start) |
277 | 427 /* Point must be on the line that we have info recorded about */ |
428 && point >= tlbufpos | |
429 && point <= Z - tlendpos | |
430 /* All text outside that line, including its final newline, | |
431 must be unchanged */ | |
432 && (XFASTINT (w->last_modified) >= MODIFF | |
433 || (beg_unchanged >= tlbufpos - 1 | |
434 && GPT >= tlbufpos | |
528 | 435 /* If selective display, can't optimize |
436 if the changes start at the beginning of the line. */ | |
437 && ((XTYPE (current_buffer->selective_display) == Lisp_Int | |
438 && XINT (current_buffer->selective_display) > 0 | |
439 ? (beg_unchanged >= tlbufpos | |
440 && GPT > tlbufpos) | |
441 : 1)) | |
277 | 442 && end_unchanged >= tlendpos |
443 && Z - GPT >= tlendpos))) | |
444 { | |
445 if (tlbufpos > BEGV && FETCH_CHAR (tlbufpos - 1) != '\n' | |
446 && (tlbufpos == ZV | |
447 || FETCH_CHAR (tlbufpos) == '\n')) | |
448 /* Former continuation line has disappeared by becoming empty */ | |
449 goto cancel; | |
450 else if (XFASTINT (w->last_modified) < MODIFF | |
451 || MINI_WINDOW_P (w)) | |
452 { | |
453 cursor_vpos = -1; | |
454 overlay_arrow_seen = 0; | |
455 display_text_line (w, tlbufpos, this_line_vpos, this_line_start_hpos, | |
456 pos_tab_offset (w, tlbufpos)); | |
457 /* If line contains point, is not continued, | |
458 and ends at same distance from eob as before, we win */ | |
459 if (cursor_vpos >= 0 && this_line_bufpos | |
460 && this_line_endpos == tlendpos) | |
461 { | |
769 | 462 if (XFASTINT (w->width) != FRAME_WIDTH (XFRAME (WINDOW_FRAME (w)))) |
277 | 463 preserve_other_columns (w); |
464 goto update; | |
465 } | |
466 else | |
467 goto cancel; | |
468 } | |
469 else if (point == XFASTINT (w->last_point)) | |
470 { | |
471 if (!must_finish) | |
472 { | |
473 do_pending_window_change (); | |
474 return; | |
475 } | |
476 goto update; | |
477 } | |
478 else | |
479 { | |
480 pos = *compute_motion (tlbufpos, 0, | |
481 XINT (w->hscroll) ? 1 - XINT (w->hscroll) : 0, | |
482 point, 2, - (1 << (SHORTBITS - 1)), | |
1785
19755499df90
* window.c (window_internal_width): New function, which accounts
Jim Blandy <jimb@redhat.com>
parents:
1718
diff
changeset
|
483 window_internal_width (w) - 1, |
574 | 484 XINT (w->hscroll), |
485 pos_tab_offset (w, tlbufpos)); | |
277 | 486 if (pos.vpos < 1) |
487 { | |
769 | 488 FRAME_CURSOR_X (selected_frame) |
277 | 489 = XFASTINT (w->left) + max (pos.hpos, 0); |
769 | 490 FRAME_CURSOR_Y (selected_frame) = this_line_vpos; |
277 | 491 goto update; |
492 } | |
493 else | |
494 goto cancel; | |
495 } | |
496 cancel: | |
497 /* Text changed drastically or point moved off of line */ | |
769 | 498 cancel_line (this_line_vpos, selected_frame); |
277 | 499 } |
500 | |
501 this_line_bufpos = 0; | |
502 all_windows |= buffer_shared > 1; | |
503 | |
504 if (all_windows) | |
505 { | |
2252
9793d8654e23
* frame.h (FOR_EACH_FRAME): Change the definition so that
Jim Blandy <jimb@redhat.com>
parents:
2189
diff
changeset
|
506 Lisp_Object tail, frame; |
277 | 507 |
508 /* Recompute # windows showing selected buffer. | |
433 | 509 This will be incremented each time such a window is displayed. */ |
277 | 510 buffer_shared = 0; |
511 | |
2252
9793d8654e23
* frame.h (FOR_EACH_FRAME): Change the definition so that
Jim Blandy <jimb@redhat.com>
parents:
2189
diff
changeset
|
512 FOR_EACH_FRAME (tail, frame) |
1718
f80c1f73f5b9
* xdisp.c: #include "termhooks.h".
Jim Blandy <jimb@redhat.com>
parents:
1656
diff
changeset
|
513 { |
2252
9793d8654e23
* frame.h (FOR_EACH_FRAME): Change the definition so that
Jim Blandy <jimb@redhat.com>
parents:
2189
diff
changeset
|
514 FRAME_PTR f = XFRAME (frame); |
9793d8654e23
* frame.h (FOR_EACH_FRAME): Change the definition so that
Jim Blandy <jimb@redhat.com>
parents:
2189
diff
changeset
|
515 |
1992
37c45885540a
* xdisp.c (redisplay): Protect calls to request_sigio and
Jim Blandy <jimb@redhat.com>
parents:
1873
diff
changeset
|
516 /* Mark all the scroll bars to be removed; we'll redeem the ones |
1718
f80c1f73f5b9
* xdisp.c: #include "termhooks.h".
Jim Blandy <jimb@redhat.com>
parents:
1656
diff
changeset
|
517 we want when we redisplay their windows. */ |
1992
37c45885540a
* xdisp.c (redisplay): Protect calls to request_sigio and
Jim Blandy <jimb@redhat.com>
parents:
1873
diff
changeset
|
518 if (condemn_scroll_bars_hook) |
37c45885540a
* xdisp.c (redisplay): Protect calls to request_sigio and
Jim Blandy <jimb@redhat.com>
parents:
1873
diff
changeset
|
519 (*condemn_scroll_bars_hook) (f); |
1718
f80c1f73f5b9
* xdisp.c: #include "termhooks.h".
Jim Blandy <jimb@redhat.com>
parents:
1656
diff
changeset
|
520 |
f80c1f73f5b9
* xdisp.c: #include "termhooks.h".
Jim Blandy <jimb@redhat.com>
parents:
1656
diff
changeset
|
521 if (FRAME_VISIBLE_P (f)) |
f80c1f73f5b9
* xdisp.c: #include "termhooks.h".
Jim Blandy <jimb@redhat.com>
parents:
1656
diff
changeset
|
522 redisplay_windows (FRAME_ROOT_WINDOW (f)); |
f80c1f73f5b9
* xdisp.c: #include "termhooks.h".
Jim Blandy <jimb@redhat.com>
parents:
1656
diff
changeset
|
523 |
1992
37c45885540a
* xdisp.c (redisplay): Protect calls to request_sigio and
Jim Blandy <jimb@redhat.com>
parents:
1873
diff
changeset
|
524 /* Any scroll bars which redisplay_windows should have nuked |
1718
f80c1f73f5b9
* xdisp.c: #include "termhooks.h".
Jim Blandy <jimb@redhat.com>
parents:
1656
diff
changeset
|
525 should now go away. */ |
1992
37c45885540a
* xdisp.c (redisplay): Protect calls to request_sigio and
Jim Blandy <jimb@redhat.com>
parents:
1873
diff
changeset
|
526 if (judge_scroll_bars_hook) |
37c45885540a
* xdisp.c (redisplay): Protect calls to request_sigio and
Jim Blandy <jimb@redhat.com>
parents:
1873
diff
changeset
|
527 (*judge_scroll_bars_hook) (f); |
1718
f80c1f73f5b9
* xdisp.c: #include "termhooks.h".
Jim Blandy <jimb@redhat.com>
parents:
1656
diff
changeset
|
528 } |
277 | 529 } |
769 | 530 else if (FRAME_VISIBLE_P (selected_frame)) |
277 | 531 { |
532 redisplay_window (selected_window, 1); | |
769 | 533 if (XFASTINT (w->width) != FRAME_WIDTH (selected_frame)) |
277 | 534 preserve_other_columns (w); |
535 } | |
536 | |
537 update: | |
538 /* Prevent various kinds of signals during display update. | |
539 stdio is not robust about handling signals, | |
540 which can cause an apparent I/O error. */ | |
541 if (interrupt_input) | |
542 unrequest_sigio (); | |
543 stop_polling (); | |
544 | |
769 | 545 #ifdef MULTI_FRAME |
277 | 546 if (all_windows) |
547 { | |
548 Lisp_Object tail; | |
549 | |
550 pause = 0; | |
551 | |
769 | 552 for (tail = Vframe_list; CONSP (tail); tail = XCONS (tail)->cdr) |
277 | 553 { |
769 | 554 FRAME_PTR f; |
277 | 555 |
769 | 556 if (XTYPE (XCONS (tail)->car) != Lisp_Frame) |
277 | 557 continue; |
558 | |
769 | 559 f = XFRAME (XCONS (tail)->car); |
1718
f80c1f73f5b9
* xdisp.c: #include "termhooks.h".
Jim Blandy <jimb@redhat.com>
parents:
1656
diff
changeset
|
560 if (FRAME_VISIBLE_P (f)) |
277 | 561 { |
769 | 562 pause |= update_frame (f, 0, 0); |
277 | 563 if (!pause) |
769 | 564 mark_window_display_accurate (f->root_window, 1); |
277 | 565 } |
566 } | |
567 } | |
568 else | |
769 | 569 #endif /* MULTI_FRAME */ |
368 | 570 { |
769 | 571 if (FRAME_VISIBLE_P (selected_frame)) |
572 pause = update_frame (selected_frame, 0, 0); | |
1656
a532c5a23984
* xdisp.c (redisplay): Call FRAME_SAMPLE_VISIBILITY to set the
Jim Blandy <jimb@redhat.com>
parents:
1600
diff
changeset
|
573 |
433 | 574 /* We may have called echo_area_display at the top of this |
769 | 575 function. If the echo area is on another frame, that may |
576 have put text on a frame other than the selected one, so the | |
577 above call to update_frame would not have caught it. Catch | |
433 | 578 it here. */ |
579 { | |
769 | 580 FRAME_PTR mini_frame = |
581 XFRAME (WINDOW_FRAME (XWINDOW (minibuf_window))); | |
433 | 582 |
769 | 583 if (mini_frame != selected_frame) |
584 pause |= update_frame (mini_frame, 0, 0); | |
433 | 585 } |
368 | 586 } |
277 | 587 |
769 | 588 /* If frame does not match, prevent doing single-line-update next time. |
277 | 589 Also, don't forget to check every line to update the arrow. */ |
590 if (pause) | |
591 { | |
592 this_line_bufpos = 0; | |
485 | 593 if (!NILP (last_arrow_position)) |
277 | 594 { |
595 last_arrow_position = Qt; | |
596 last_arrow_string = Qt; | |
597 } | |
769 | 598 /* If we pause after scrolling, some lines in current_frame |
277 | 599 may be null, so preserve_other_columns won't be able to |
600 preserve all the vertical-bar separators. So, avoid using it | |
601 in that case. */ | |
769 | 602 if (XFASTINT (w->width) != FRAME_WIDTH (selected_frame)) |
277 | 603 update_mode_lines = 1; |
604 } | |
605 | |
769 | 606 /* Now text on frame agrees with windows, so |
277 | 607 put info into the windows for partial redisplay to follow */ |
608 | |
609 if (!pause) | |
610 { | |
611 register struct buffer *b = XBUFFER (w->buffer); | |
612 | |
613 blank_end_of_window = 0; | |
614 clip_changed = 0; | |
615 unchanged_modified = BUF_MODIFF (b); | |
616 beg_unchanged = BUF_GPT (b) - BUF_BEG (b); | |
617 end_unchanged = BUF_Z (b) - BUF_GPT (b); | |
618 | |
619 XFASTINT (w->last_point) = BUF_PT (b); | |
769 | 620 XFASTINT (w->last_point_x) = FRAME_CURSOR_X (selected_frame); |
621 XFASTINT (w->last_point_y) = FRAME_CURSOR_Y (selected_frame); | |
277 | 622 |
623 if (all_windows) | |
1017
d42877206c0a
* xdisp.c (display_mode_line): Use x_implicitly_set_name here.
Jim Blandy <jimb@redhat.com>
parents:
973
diff
changeset
|
624 mark_window_display_accurate (FRAME_ROOT_WINDOW (selected_frame), 1); |
277 | 625 else |
626 { | |
627 w->update_mode_line = Qnil; | |
628 XFASTINT (w->last_modified) = BUF_MODIFF (b); | |
629 w->window_end_valid = Qt; | |
630 last_arrow_position = Voverlay_arrow_position; | |
631 last_arrow_string = Voverlay_arrow_string; | |
632 } | |
633 update_mode_lines = 0; | |
634 windows_or_buffers_changed = 0; | |
635 } | |
636 | |
637 /* Start SIGIO interrupts coming again. | |
638 Having them off during the code above | |
639 makes it less likely one will discard output, | |
640 but not impossible, since there might be stuff | |
641 in the system buffer here. | |
642 But it is much hairier to try to do anything about that. */ | |
643 | |
644 if (interrupt_input) | |
645 request_sigio (); | |
646 start_polling (); | |
647 | |
769 | 648 /* Change frame size now if a change is pending. */ |
277 | 649 do_pending_window_change (); |
650 } | |
651 | |
652 /* Redisplay, but leave alone any recent echo area message | |
653 unless another message has been requested in its place. | |
654 | |
655 This is useful in situations where you need to redisplay but no | |
656 user action has occurred, making it inappropriate for the message | |
657 area to be cleared. See tracking_off and | |
658 wait_reading_process_input for examples of these situations. */ | |
659 | |
660 redisplay_preserve_echo_area () | |
661 { | |
662 if (echo_area_glyphs == 0 && previous_echo_glyphs != 0) | |
663 { | |
664 echo_area_glyphs = previous_echo_glyphs; | |
665 redisplay (); | |
666 echo_area_glyphs = 0; | |
667 } | |
668 else | |
669 redisplay (); | |
670 } | |
671 | |
672 void | |
673 mark_window_display_accurate (window, flag) | |
674 Lisp_Object window; | |
675 int flag; | |
676 { | |
677 register struct window *w; | |
678 | |
485 | 679 for (;!NILP (window); window = w->next) |
277 | 680 { |
1527
00109911b040
* xdisp.c (redisplay): Use ! EQ to compare the old and new arrow
Jim Blandy <jimb@redhat.com>
parents:
1446
diff
changeset
|
681 if (XTYPE (window) != Lisp_Window) abort (); |
277 | 682 w = XWINDOW (window); |
683 | |
485 | 684 if (!NILP (w->buffer)) |
277 | 685 XFASTINT (w->last_modified) |
686 = !flag ? 0 | |
687 : XBUFFER (w->buffer) == current_buffer | |
688 ? MODIFF : BUF_MODIFF (XBUFFER (w->buffer)); | |
689 w->window_end_valid = Qt; | |
690 w->update_mode_line = Qnil; | |
691 | |
485 | 692 if (!NILP (w->vchild)) |
277 | 693 mark_window_display_accurate (w->vchild, flag); |
485 | 694 if (!NILP (w->hchild)) |
277 | 695 mark_window_display_accurate (w->hchild, flag); |
696 } | |
697 | |
698 if (flag) | |
699 { | |
700 last_arrow_position = Voverlay_arrow_position; | |
701 last_arrow_string = Voverlay_arrow_string; | |
702 } | |
703 else | |
704 { | |
705 /* t is unequal to any useful value of Voverlay_arrow_... */ | |
706 last_arrow_position = Qt; | |
707 last_arrow_string = Qt; | |
708 } | |
709 } | |
710 | |
711 int do_id = 1; | |
712 | |
713 static void | |
714 redisplay_windows (window) | |
715 Lisp_Object window; | |
716 { | |
485 | 717 for (; !NILP (window); window = XWINDOW (window)->next) |
277 | 718 redisplay_window (window, 0); |
719 } | |
720 | |
721 static void | |
722 redisplay_window (window, just_this_one) | |
723 Lisp_Object window; | |
724 int just_this_one; | |
725 { | |
726 register struct window *w = XWINDOW (window); | |
1718
f80c1f73f5b9
* xdisp.c: #include "termhooks.h".
Jim Blandy <jimb@redhat.com>
parents:
1656
diff
changeset
|
727 FRAME_PTR f = XFRAME (WINDOW_FRAME (w)); |
277 | 728 int height; |
729 register int lpoint = point; | |
730 struct buffer *old = current_buffer; | |
1785
19755499df90
* window.c (window_internal_width): New function, which accounts
Jim Blandy <jimb@redhat.com>
parents:
1718
diff
changeset
|
731 register int width = window_internal_width (w) - 1; |
277 | 732 register int startp; |
733 register int hscroll = XINT (w->hscroll); | |
734 struct position pos; | |
1785
19755499df90
* window.c (window_internal_width): New function, which accounts
Jim Blandy <jimb@redhat.com>
parents:
1718
diff
changeset
|
735 int opoint = point; |
277 | 736 int tem; |
737 int window_needs_modeline; | |
738 | |
769 | 739 if (FRAME_HEIGHT (f) == 0) abort (); /* Some bug zeros some core */ |
277 | 740 |
741 /* If this is a combination window, do its children; that's all. */ | |
742 | |
485 | 743 if (!NILP (w->vchild)) |
277 | 744 { |
745 redisplay_windows (w->vchild); | |
746 return; | |
747 } | |
485 | 748 if (!NILP (w->hchild)) |
277 | 749 { |
750 redisplay_windows (w->hchild); | |
751 return; | |
752 } | |
485 | 753 if (NILP (w->buffer)) |
277 | 754 abort (); |
433 | 755 |
756 height = window_internal_height (w); | |
757 | |
758 if (MINI_WINDOW_P (w)) | |
759 { | |
760 if (w == XWINDOW (minibuf_window)) | |
761 { | |
762 if (echo_area_glyphs) | |
763 /* We've already displayed the echo area glyphs, if any. */ | |
1992
37c45885540a
* xdisp.c (redisplay): Protect calls to request_sigio and
Jim Blandy <jimb@redhat.com>
parents:
1873
diff
changeset
|
764 goto finish_scroll_bars; |
433 | 765 } |
766 else | |
767 { | |
768 /* This is a minibuffer, but it's not the currently active one, so | |
769 clear it. */ | |
769 | 770 int vpos = XFASTINT (XWINDOW (FRAME_MINIBUF_WINDOW (f))->top); |
433 | 771 int i; |
772 | |
773 for (i = 0; i < height; i++) | |
774 { | |
769 | 775 get_display_line (f, vpos + i, 0); |
433 | 776 display_string (w, vpos + i, "", 0, 0, 0, width); |
777 } | |
778 | |
1992
37c45885540a
* xdisp.c (redisplay): Protect calls to request_sigio and
Jim Blandy <jimb@redhat.com>
parents:
1873
diff
changeset
|
779 goto finish_scroll_bars; |
433 | 780 } |
781 } | |
277 | 782 |
783 if (update_mode_lines) | |
784 w->update_mode_line = Qt; | |
785 | |
786 /* Otherwise set up data on this window; select its buffer and point value */ | |
787 | |
788 current_buffer = XBUFFER (w->buffer); | |
789 opoint = point; | |
790 | |
791 /* Count number of windows showing the selected buffer. */ | |
792 | |
793 if (!just_this_one | |
794 && current_buffer == XBUFFER (XWINDOW (selected_window)->buffer)) | |
795 buffer_shared++; | |
796 | |
797 /* POINT refers normally to the selected window. | |
798 For any other window, set up appropriate value. */ | |
799 | |
800 if (!EQ (window, selected_window)) | |
801 { | |
802 SET_PT (marker_position (w->pointm)); | |
803 if (point < BEGV) | |
804 { | |
485 | 805 SET_PT (BEGV); |
277 | 806 Fset_marker (w->pointm, make_number (point), Qnil); |
807 } | |
808 else if (point > (ZV - 1)) | |
809 { | |
485 | 810 SET_PT (ZV); |
277 | 811 Fset_marker (w->pointm, make_number (point), Qnil); |
812 } | |
813 } | |
814 | |
815 /* If window-start is screwed up, choose a new one. */ | |
816 if (XMARKER (w->start)->buffer != current_buffer) | |
817 goto recenter; | |
818 | |
819 startp = marker_position (w->start); | |
820 | |
433 | 821 /* Handle case where place to start displaying has been specified, |
822 unless the specified location is outside the visible range. */ | |
485 | 823 if (!NILP (w->force_start)) |
277 | 824 { |
825 w->update_mode_line = Qt; | |
826 w->force_start = Qnil; | |
827 XFASTINT (w->last_modified) = 0; | |
433 | 828 if (startp < BEGV) startp = BEGV; |
829 if (startp > ZV) startp = ZV; | |
277 | 830 try_window (window, startp); |
831 if (cursor_vpos < 0) | |
832 { | |
833 /* If point does not appear, move point so it does appear */ | |
834 pos = *compute_motion (startp, 0, | |
835 ((EQ (window, minibuf_window) && startp == 1) | |
836 ? minibuf_prompt_width : 0) | |
837 + | |
838 (hscroll ? 1 - hscroll : 0), | |
839 ZV, height / 2, | |
840 - (1 << (SHORTBITS - 1)), | |
841 width, hscroll, pos_tab_offset (w, startp)); | |
842 SET_PT (pos.bufpos); | |
769 | 843 if (w != XWINDOW (FRAME_SELECTED_WINDOW (f))) |
277 | 844 Fset_marker (w->pointm, make_number (point), Qnil); |
845 else | |
846 { | |
847 lpoint = point; | |
769 | 848 FRAME_CURSOR_X (f) = max (0, pos.hpos) + XFASTINT (w->left); |
849 FRAME_CURSOR_Y (f) = pos.vpos + XFASTINT (w->top); | |
277 | 850 } |
851 } | |
852 goto done; | |
853 } | |
854 | |
855 /* Handle case where text has not changed, only point, | |
769 | 856 and it has not moved off the frame */ |
277 | 857 |
858 /* This code is not used for minibuffer for the sake of | |
859 the case of redisplaying to replace an echo area message; | |
860 since in that case the minibuffer contents per se are usually unchanged. | |
861 This code is of no real use in the minibuffer since | |
862 the handling of this_line_bufpos, etc., | |
863 in redisplay handles the same cases. */ | |
864 | |
865 if (XFASTINT (w->last_modified) >= MODIFF | |
866 && point >= startp && !clip_changed | |
769 | 867 && (just_this_one || XFASTINT (w->width) == FRAME_WIDTH (f)) |
277 | 868 && !EQ (window, minibuf_window)) |
869 { | |
870 pos = *compute_motion (startp, 0, (hscroll ? 1 - hscroll : 0), | |
871 point, height + 1, 10000, width, hscroll, | |
872 pos_tab_offset (w, startp)); | |
873 | |
874 if (pos.vpos < height) | |
875 { | |
769 | 876 /* Ok, point is still on frame */ |
877 if (w == XWINDOW (FRAME_SELECTED_WINDOW (f))) | |
277 | 878 { |
879 /* These variables are supposed to be origin 1 */ | |
769 | 880 FRAME_CURSOR_X (f) = max (0, pos.hpos) + XFASTINT (w->left); |
881 FRAME_CURSOR_Y (f) = pos.vpos + XFASTINT (w->top); | |
277 | 882 } |
883 /* This doesn't do the trick, because if a window to the right of | |
884 this one must be redisplayed, this does nothing because there | |
769 | 885 is nothing in DesiredFrame yet, and then the other window is |
277 | 886 redisplayed, making likes that are empty in this window's columns. |
769 | 887 if (XFASTINT (w->width) != FRAME_WIDTH (f)) |
277 | 888 preserve_my_columns (w); |
889 */ | |
890 goto done; | |
891 } | |
892 /* Don't bother trying redisplay with same start; | |
893 we already know it will lose */ | |
894 } | |
895 /* If current starting point was originally the beginning of a line | |
896 but no longer is, find a new starting point. */ | |
485 | 897 else if (!NILP (w->start_at_line_beg) |
277 | 898 && !(startp == BEGV |
899 || FETCH_CHAR (startp - 1) == '\n')) | |
900 { | |
901 goto recenter; | |
902 } | |
903 else if (just_this_one && !MINI_WINDOW_P (w) | |
904 && point >= startp | |
905 && XFASTINT (w->last_modified) | |
906 && ! EQ (w->window_end_valid, Qnil) | |
907 && do_id && !clip_changed | |
908 && !blank_end_of_window | |
769 | 909 && XFASTINT (w->width) == FRAME_WIDTH (f) |
277 | 910 && EQ (last_arrow_position, Voverlay_arrow_position) |
911 && EQ (last_arrow_string, Voverlay_arrow_string) | |
769 | 912 && (tem = try_window_id (FRAME_SELECTED_WINDOW (f))) |
277 | 913 && tem != -2) |
914 { | |
915 /* tem > 0 means success. tem == -1 means choose new start. | |
916 tem == -2 means try again with same start, | |
917 and nothing but whitespace follows the changed stuff. | |
918 tem == 0 means try again with same start. */ | |
919 if (tem > 0) | |
920 goto done; | |
921 } | |
922 else if (startp >= BEGV && startp <= ZV | |
923 /* Avoid starting display at end of buffer! */ | |
433 | 924 && (startp < ZV || startp == BEGV |
277 | 925 || (XFASTINT (w->last_modified) >= MODIFF))) |
926 { | |
927 /* Try to redisplay starting at same place as before */ | |
769 | 928 /* If point has not moved off frame, accept the results */ |
277 | 929 try_window (window, startp); |
930 if (cursor_vpos >= 0) | |
931 goto done; | |
932 else | |
933 cancel_my_columns (w); | |
934 } | |
935 | |
936 XFASTINT (w->last_modified) = 0; | |
937 w->update_mode_line = Qt; | |
938 | |
939 /* Try to scroll by specified few lines */ | |
940 | |
941 if (scroll_step && !clip_changed) | |
942 { | |
943 if (point > startp) | |
944 { | |
945 pos = *vmotion (Z - XFASTINT (w->window_end_pos), | |
946 scroll_step, width, hscroll, window); | |
947 if (pos.vpos >= height) | |
948 goto scroll_fail; | |
949 } | |
950 | |
951 pos = *vmotion (startp, point < startp ? - scroll_step : scroll_step, | |
952 width, hscroll, window); | |
953 | |
954 if (point >= pos.bufpos) | |
955 { | |
956 try_window (window, pos.bufpos); | |
957 if (cursor_vpos >= 0) | |
958 goto done; | |
959 else | |
960 cancel_my_columns (w); | |
961 } | |
962 scroll_fail: ; | |
963 } | |
964 | |
965 /* Finally, just choose place to start which centers point */ | |
966 | |
967 recenter: | |
968 pos = *vmotion (point, - height / 2, width, hscroll, window); | |
969 try_window (window, pos.bufpos); | |
970 | |
971 startp = marker_position (w->start); | |
972 w->start_at_line_beg = | |
973 (startp == BEGV || FETCH_CHAR (startp - 1) == '\n') ? Qt : Qnil; | |
974 | |
975 done: | |
976 /* If window not full width, must redo its mode line | |
977 if the window to its side is being redone */ | |
485 | 978 if ((!NILP (w->update_mode_line) |
769 | 979 || (!just_this_one && width < FRAME_WIDTH (f) - 1)) |
277 | 980 && height != XFASTINT (w->height)) |
981 display_mode_line (w); | |
982 | |
2150
cb8205e30dda
(display_menu_bar): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2065
diff
changeset
|
983 /* When we reach a frame's selected window, redo the frame's menu bar. */ |
cb8205e30dda
(display_menu_bar): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2065
diff
changeset
|
984 if (!NILP (w->update_mode_line) |
cb8205e30dda
(display_menu_bar): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2065
diff
changeset
|
985 && FRAME_MENU_BAR_LINES (f) > 0 |
cb8205e30dda
(display_menu_bar): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2065
diff
changeset
|
986 && EQ (FRAME_SELECTED_WINDOW (f), window)) |
cb8205e30dda
(display_menu_bar): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2065
diff
changeset
|
987 display_menu_bar (w); |
cb8205e30dda
(display_menu_bar): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2065
diff
changeset
|
988 |
1992
37c45885540a
* xdisp.c (redisplay): Protect calls to request_sigio and
Jim Blandy <jimb@redhat.com>
parents:
1873
diff
changeset
|
989 finish_scroll_bars: |
37c45885540a
* xdisp.c (redisplay): Protect calls to request_sigio and
Jim Blandy <jimb@redhat.com>
parents:
1873
diff
changeset
|
990 if (FRAME_HAS_VERTICAL_SCROLL_BARS (f)) |
1785
19755499df90
* window.c (window_internal_width): New function, which accounts
Jim Blandy <jimb@redhat.com>
parents:
1718
diff
changeset
|
991 { |
19755499df90
* window.c (window_internal_width): New function, which accounts
Jim Blandy <jimb@redhat.com>
parents:
1718
diff
changeset
|
992 int start, end, whole; |
19755499df90
* window.c (window_internal_width): New function, which accounts
Jim Blandy <jimb@redhat.com>
parents:
1718
diff
changeset
|
993 |
19755499df90
* window.c (window_internal_width): New function, which accounts
Jim Blandy <jimb@redhat.com>
parents:
1718
diff
changeset
|
994 /* Calculate the start and end positions for the current window. |
19755499df90
* window.c (window_internal_width): New function, which accounts
Jim Blandy <jimb@redhat.com>
parents:
1718
diff
changeset
|
995 Note that minibuffers sometimes aren't displaying any text. */ |
19755499df90
* window.c (window_internal_width): New function, which accounts
Jim Blandy <jimb@redhat.com>
parents:
1718
diff
changeset
|
996 if (! MINI_WINDOW_P (w) |
19755499df90
* window.c (window_internal_width): New function, which accounts
Jim Blandy <jimb@redhat.com>
parents:
1718
diff
changeset
|
997 || (w == XWINDOW (minibuf_window) && ! echo_area_glyphs)) |
19755499df90
* window.c (window_internal_width): New function, which accounts
Jim Blandy <jimb@redhat.com>
parents:
1718
diff
changeset
|
998 { |
19755499df90
* window.c (window_internal_width): New function, which accounts
Jim Blandy <jimb@redhat.com>
parents:
1718
diff
changeset
|
999 start = startp; |
19755499df90
* window.c (window_internal_width): New function, which accounts
Jim Blandy <jimb@redhat.com>
parents:
1718
diff
changeset
|
1000 /* I don't think this is guaranteed to be right. For the |
19755499df90
* window.c (window_internal_width): New function, which accounts
Jim Blandy <jimb@redhat.com>
parents:
1718
diff
changeset
|
1001 moment, we'll pretend it is. */ |
19755499df90
* window.c (window_internal_width): New function, which accounts
Jim Blandy <jimb@redhat.com>
parents:
1718
diff
changeset
|
1002 end = Z - XINT (w->window_end_pos); |
19755499df90
* window.c (window_internal_width): New function, which accounts
Jim Blandy <jimb@redhat.com>
parents:
1718
diff
changeset
|
1003 whole = Z - BEG; |
19755499df90
* window.c (window_internal_width): New function, which accounts
Jim Blandy <jimb@redhat.com>
parents:
1718
diff
changeset
|
1004 } |
19755499df90
* window.c (window_internal_width): New function, which accounts
Jim Blandy <jimb@redhat.com>
parents:
1718
diff
changeset
|
1005 else |
19755499df90
* window.c (window_internal_width): New function, which accounts
Jim Blandy <jimb@redhat.com>
parents:
1718
diff
changeset
|
1006 start = end = whole = 0; |
19755499df90
* window.c (window_internal_width): New function, which accounts
Jim Blandy <jimb@redhat.com>
parents:
1718
diff
changeset
|
1007 |
1992
37c45885540a
* xdisp.c (redisplay): Protect calls to request_sigio and
Jim Blandy <jimb@redhat.com>
parents:
1873
diff
changeset
|
1008 /* Indicate what this scroll bar ought to be displaying now. */ |
37c45885540a
* xdisp.c (redisplay): Protect calls to request_sigio and
Jim Blandy <jimb@redhat.com>
parents:
1873
diff
changeset
|
1009 (*set_vertical_scroll_bar_hook) (w, end - start, whole, start - 1); |
1785
19755499df90
* window.c (window_internal_width): New function, which accounts
Jim Blandy <jimb@redhat.com>
parents:
1718
diff
changeset
|
1010 |
1992
37c45885540a
* xdisp.c (redisplay): Protect calls to request_sigio and
Jim Blandy <jimb@redhat.com>
parents:
1873
diff
changeset
|
1011 /* Note that we actually used the scroll bar attached to this window, |
1785
19755499df90
* window.c (window_internal_width): New function, which accounts
Jim Blandy <jimb@redhat.com>
parents:
1718
diff
changeset
|
1012 so it shouldn't be deleted at the end of redisplay. */ |
1992
37c45885540a
* xdisp.c (redisplay): Protect calls to request_sigio and
Jim Blandy <jimb@redhat.com>
parents:
1873
diff
changeset
|
1013 (*redeem_scroll_bar_hook) (w); |
1785
19755499df90
* window.c (window_internal_width): New function, which accounts
Jim Blandy <jimb@redhat.com>
parents:
1718
diff
changeset
|
1014 } |
19755499df90
* window.c (window_internal_width): New function, which accounts
Jim Blandy <jimb@redhat.com>
parents:
1718
diff
changeset
|
1015 |
277 | 1016 SET_PT (opoint); |
1017 current_buffer = old; | |
1018 SET_PT (lpoint); | |
1019 } | |
1020 | |
1021 /* Do full redisplay on one window, starting at position `pos'. */ | |
1022 | |
1023 static void | |
1024 try_window (window, pos) | |
1025 Lisp_Object window; | |
1026 register int pos; | |
1027 { | |
1028 register struct window *w = XWINDOW (window); | |
1029 register int height = window_internal_height (w); | |
1030 register int vpos = XFASTINT (w->top); | |
1031 register int last_text_vpos = vpos; | |
1032 int tab_offset = pos_tab_offset (w, pos); | |
769 | 1033 FRAME_PTR f = XFRAME (w->frame); |
1785
19755499df90
* window.c (window_internal_width): New function, which accounts
Jim Blandy <jimb@redhat.com>
parents:
1718
diff
changeset
|
1034 int width = window_internal_width (w) - 1; |
277 | 1035 struct position val; |
1036 | |
1037 Fset_marker (w->start, make_number (pos), Qnil); | |
1038 cursor_vpos = -1; | |
1039 overlay_arrow_seen = 0; | |
1040 val.hpos = XINT (w->hscroll) ? 1 - XINT (w->hscroll) : 0; | |
1041 | |
1042 while (--height >= 0) | |
1043 { | |
1044 val = *display_text_line (w, pos, vpos, val.hpos, tab_offset); | |
1045 tab_offset += width; | |
1046 if (val.vpos) tab_offset = 0; | |
1047 vpos++; | |
1048 if (pos != val.bufpos) | |
1049 last_text_vpos | |
1050 /* Next line, unless prev line ended in end of buffer with no cr */ | |
1051 = vpos - (val.vpos && FETCH_CHAR (val.bufpos - 1) != '\n'); | |
1052 pos = val.bufpos; | |
1053 } | |
1054 | |
1055 /* If last line is continued in middle of character, | |
769 | 1056 include the split character in the text considered on the frame */ |
277 | 1057 if (val.hpos < (XINT (w->hscroll) ? 1 - XINT (w->hscroll) : 0)) |
1058 pos++; | |
1059 | |
769 | 1060 /* If bottom just moved off end of frame, change mode line percentage. */ |
277 | 1061 if (XFASTINT (w->window_end_pos) == 0 |
1062 && Z != pos) | |
1063 w->update_mode_line = Qt; | |
1064 | |
769 | 1065 /* Say where last char on frame will be, once redisplay is finished. */ |
277 | 1066 XFASTINT (w->window_end_pos) = Z - pos; |
1067 XFASTINT (w->window_end_vpos) = last_text_vpos - XFASTINT (w->top); | |
1068 /* But that is not valid info until redisplay finishes. */ | |
1069 w->window_end_valid = Qnil; | |
1070 } | |
1071 | |
1072 /* Try to redisplay when buffer is modified locally, | |
1073 computing insert/delete line to preserve text outside | |
1074 the bounds of the changes. | |
1075 Return 1 if successful, 0 if if cannot tell what to do, | |
1076 or -1 to tell caller to find a new window start, | |
1077 or -2 to tell caller to do normal redisplay with same window start. */ | |
1078 | |
1079 static int | |
1080 try_window_id (window) | |
1081 Lisp_Object window; | |
1082 { | |
1083 int pos; | |
1084 register struct window *w = XWINDOW (window); | |
1085 register int height = window_internal_height (w); | |
769 | 1086 FRAME_PTR f = XFRAME (w->frame); |
277 | 1087 int top = XFASTINT (w->top); |
1088 int start = marker_position (w->start); | |
1785
19755499df90
* window.c (window_internal_width): New function, which accounts
Jim Blandy <jimb@redhat.com>
parents:
1718
diff
changeset
|
1089 int width = window_internal_width (w) - 1; |
277 | 1090 int hscroll = XINT (w->hscroll); |
1091 int lmargin = hscroll > 0 ? 1 - hscroll : 0; | |
1092 register int vpos; | |
1093 register int i, tem; | |
1094 int last_text_vpos = 0; | |
1095 int stop_vpos; | |
1096 | |
1097 struct position val, bp, ep, xp, pp; | |
1098 int scroll_amount = 0; | |
1099 int delta; | |
1100 int tab_offset, epto; | |
1101 | |
1102 if (GPT - BEG < beg_unchanged) | |
1103 beg_unchanged = GPT - BEG; | |
1104 if (Z - GPT < end_unchanged) | |
1105 end_unchanged = Z - GPT; | |
1106 | |
1107 if (beg_unchanged + 1 < start) | |
1108 return 0; /* Give up if changes go above top of window */ | |
1109 | |
1110 /* Find position before which nothing is changed. */ | |
1111 bp = *compute_motion (start, 0, lmargin, | |
371 | 1112 beg_unchanged + 1, height + 1, 0, width, hscroll, |
277 | 1113 pos_tab_offset (w, start)); |
1114 if (bp.vpos >= height) | |
368 | 1115 { |
1116 if (point < bp.bufpos && !bp.contin) | |
1117 { | |
769 | 1118 /* All changes are below the frame, and point is on the frame. |
1119 We don't need to change the frame at all. | |
368 | 1120 But we need to update window_end_pos to account for |
1121 any change in buffer size. */ | |
371 | 1122 bp = *compute_motion (start, 0, lmargin, |
1123 Z, height, 0, | |
1124 width, hscroll, pos_tab_offset (w, start)); | |
368 | 1125 XFASTINT (w->window_end_vpos) = height; |
1126 XFASTINT (w->window_end_pos) = Z - bp.bufpos; | |
1127 return 1; | |
1128 } | |
1129 return 0; | |
1130 } | |
277 | 1131 |
1132 vpos = bp.vpos; | |
1133 | |
769 | 1134 /* Find beginning of that frame line. Must display from there. */ |
277 | 1135 bp = *vmotion (bp.bufpos, 0, width, hscroll, window); |
1136 | |
1137 pos = bp.bufpos; | |
1138 val.hpos = lmargin; | |
1139 if (pos < start) | |
1140 return -1; | |
1141 | |
1142 /* If about to start displaying at the beginning of a continuation line, | |
769 | 1143 really start with previous frame line, in case it was not |
277 | 1144 continued when last redisplayed */ |
528 | 1145 if ((bp.contin && bp.bufpos - 1 == beg_unchanged && vpos > 0) |
1146 || | |
1147 /* Likewise if we have to worry about selective display. */ | |
1148 (XTYPE (current_buffer->selective_display) == Lisp_Int | |
1149 && XINT (current_buffer->selective_display) > 0 | |
1150 && bp.bufpos - 1 == beg_unchanged && vpos > 0)) | |
277 | 1151 { |
1152 bp = *vmotion (bp.bufpos, -1, width, hscroll, window); | |
1153 --vpos; | |
1154 pos = bp.bufpos; | |
1155 } | |
1156 | |
1157 if (bp.contin && bp.hpos != lmargin) | |
1158 { | |
1159 val.hpos = bp.prevhpos - width + lmargin; | |
1160 pos--; | |
1161 } | |
1162 | |
1163 bp.vpos = vpos; | |
1164 | |
1165 /* Find first visible newline after which no more is changed. */ | |
1166 tem = find_next_newline (Z - max (end_unchanged, Z - ZV), 1); | |
1167 if (XTYPE (current_buffer->selective_display) == Lisp_Int | |
1168 && XINT (current_buffer->selective_display) > 0) | |
1169 while (tem < ZV - 1 | |
1170 && (position_indentation (tem) | |
1171 >= XINT (current_buffer->selective_display))) | |
1172 tem = find_next_newline (tem, 1); | |
1173 | |
1174 /* Compute the cursor position after that newline. */ | |
1175 ep = *compute_motion (pos, vpos, val.hpos, tem, | |
1176 height, - (1 << (SHORTBITS - 1)), | |
1177 width, hscroll, pos_tab_offset (w, bp.bufpos)); | |
1178 | |
769 | 1179 /* If changes reach past the text available on the frame, |
1180 just display rest of frame. */ | |
277 | 1181 if (ep.bufpos > Z - XFASTINT (w->window_end_pos)) |
1182 stop_vpos = height; | |
1183 else | |
1184 stop_vpos = ep.vpos; | |
1185 | |
1186 /* If no newline before ep, the line ep is on includes some changes | |
1187 that must be displayed. Make sure we don't stop before it. */ | |
1188 /* Also, if changes reach all the way until ep.bufpos, | |
1189 it is possible that something was deleted after the | |
1190 newline before it, so the following line must be redrawn. */ | |
1191 if (stop_vpos == ep.vpos | |
1192 && (ep.bufpos == BEGV | |
1193 || FETCH_CHAR (ep.bufpos - 1) != '\n' | |
1194 || ep.bufpos == Z - end_unchanged)) | |
1195 stop_vpos = ep.vpos + 1; | |
1196 | |
1197 cursor_vpos = -1; | |
1198 overlay_arrow_seen = 0; | |
1199 | |
1200 /* If changes do not reach to bottom of window, | |
1201 figure out how much to scroll the rest of the window */ | |
1202 if (stop_vpos < height) | |
1203 { | |
1204 /* Now determine how far up or down the rest of the window has moved */ | |
1205 epto = pos_tab_offset (w, ep.bufpos); | |
1206 xp = *compute_motion (ep.bufpos, ep.vpos, ep.hpos, | |
1207 Z - XFASTINT (w->window_end_pos), | |
1208 10000, 0, width, hscroll, epto); | |
1209 scroll_amount = xp.vpos - XFASTINT (w->window_end_vpos); | |
1210 | |
769 | 1211 /* Is everything on frame below the changes whitespace? |
277 | 1212 If so, no scrolling is really necessary. */ |
1213 for (i = ep.bufpos; i < xp.bufpos; i++) | |
1214 { | |
1215 tem = FETCH_CHAR (i); | |
1216 if (tem != ' ' && tem != '\n' && tem != '\t') | |
1217 break; | |
1218 } | |
1219 if (i == xp.bufpos) | |
1220 return -2; | |
1221 | |
1222 XFASTINT (w->window_end_vpos) += scroll_amount; | |
1223 | |
769 | 1224 /* Before doing any scrolling, verify that point will be on frame. */ |
277 | 1225 if (point > ep.bufpos && !(point <= xp.bufpos && xp.bufpos < height)) |
1226 { | |
1227 if (point <= xp.bufpos) | |
1228 { | |
1229 pp = *compute_motion (ep.bufpos, ep.vpos, ep.hpos, | |
1230 point, height, - (1 << (SHORTBITS - 1)), | |
1231 width, hscroll, epto); | |
1232 } | |
1233 else | |
1234 { | |
1235 pp = *compute_motion (xp.bufpos, xp.vpos, xp.hpos, | |
1236 point, height, - (1 << (SHORTBITS - 1)), | |
1237 width, hscroll, pos_tab_offset (w, xp.bufpos)); | |
1238 } | |
1239 if (pp.bufpos < point || pp.vpos == height) | |
1240 return 0; | |
1241 cursor_vpos = pp.vpos + top; | |
1242 cursor_hpos = pp.hpos + XFASTINT (w->left); | |
1243 } | |
1244 | |
1245 if (stop_vpos - scroll_amount >= height | |
1246 || ep.bufpos == xp.bufpos) | |
1247 { | |
1248 if (scroll_amount < 0) | |
1249 stop_vpos -= scroll_amount; | |
1250 scroll_amount = 0; | |
1251 /* In this path, we have altered window_end_vpos | |
1252 and not left it negative. | |
1253 We must make sure that, in case display is preempted | |
769 | 1254 before the frame changes to reflect what we do here, |
277 | 1255 further updates will not come to try_window_id |
769 | 1256 and assume the frame and window_end_vpos match. */ |
277 | 1257 blank_end_of_window = 1; |
1258 } | |
1259 else if (!scroll_amount) | |
1260 {} | |
1261 else if (bp.bufpos == Z - end_unchanged) | |
1262 { | |
1263 /* If reprinting everything is nearly as fast as scrolling, | |
1264 don't bother scrolling. Can happen if lines are short. */ | |
769 | 1265 if (scroll_cost (f, bp.vpos + top - scroll_amount, |
277 | 1266 top + height - max (0, scroll_amount), |
1267 scroll_amount) | |
1268 > xp.bufpos - bp.bufpos - 20) | |
1269 /* Return "try normal display with same window-start." | |
1270 Too bad we can't prevent further scroll-thinking. */ | |
1271 return -2; | |
1272 /* If pure deletion, scroll up as many lines as possible. | |
1273 In common case of killing a line, this can save the | |
1274 following line from being overwritten by scrolling | |
1275 and therefore having to be redrawn. */ | |
769 | 1276 tem = scroll_frame_lines (f, bp.vpos + top - scroll_amount, |
277 | 1277 top + height - max (0, scroll_amount), |
1278 scroll_amount); | |
1279 if (!tem) stop_vpos = height; | |
1280 } | |
1281 else if (scroll_amount) | |
1282 { | |
1283 /* If reprinting everything is nearly as fast as scrolling, | |
1284 don't bother scrolling. Can happen if lines are short. */ | |
1285 /* Note that if scroll_amount > 0, xp.bufpos - bp.bufpos is an | |
1286 overestimate of cost of reprinting, since xp.bufpos | |
1287 would end up below the bottom of the window. */ | |
769 | 1288 if (scroll_cost (f, ep.vpos + top - scroll_amount, |
277 | 1289 top + height - max (0, scroll_amount), |
1290 scroll_amount) | |
1291 > xp.bufpos - ep.bufpos - 20) | |
1292 /* Return "try normal display with same window-start." | |
1293 Too bad we can't prevent further scroll-thinking. */ | |
1294 return -2; | |
769 | 1295 tem = scroll_frame_lines (f, ep.vpos + top - scroll_amount, |
277 | 1296 top + height - max (0, scroll_amount), |
1297 scroll_amount); | |
1298 if (!tem) stop_vpos = height; | |
1299 } | |
1300 } | |
1301 | |
1302 /* In any case, do not display past bottom of window */ | |
1303 if (stop_vpos >= height) | |
1304 { | |
1305 stop_vpos = height; | |
1306 scroll_amount = 0; | |
1307 } | |
1308 | |
1309 /* Handle case where pos is before w->start -- | |
1310 can happen if part of line had been clipped and is not clipped now */ | |
1311 if (vpos == 0 && pos < marker_position (w->start)) | |
1312 Fset_marker (w->start, make_number (pos), Qnil); | |
1313 | |
1314 /* Redisplay the lines where the text was changed */ | |
1315 last_text_vpos = vpos; | |
1316 tab_offset = pos_tab_offset (w, pos); | |
1317 /* If we are starting display in mid-character, correct tab_offset | |
1318 to account for passing the line that that character really starts in. */ | |
1319 if (val.hpos < lmargin) | |
1320 tab_offset += width; | |
1321 while (vpos < stop_vpos) | |
1322 { | |
1323 val = *display_text_line (w, pos, top + vpos++, val.hpos, tab_offset); | |
1324 tab_offset += width; | |
1325 if (val.vpos) tab_offset = 0; | |
1326 if (pos != val.bufpos) | |
1327 last_text_vpos | |
1328 /* Next line, unless prev line ended in end of buffer with no cr */ | |
1329 = vpos - (val.vpos && FETCH_CHAR (val.bufpos - 1) != '\n'); | |
1330 pos = val.bufpos; | |
1331 } | |
1332 | |
1333 /* There are two cases: | |
1334 1) we have displayed down to the bottom of the window | |
1335 2) we have scrolled lines below stop_vpos by scroll_amount */ | |
1336 | |
1337 if (vpos == height) | |
1338 { | |
1339 /* If last line is continued in middle of character, | |
769 | 1340 include the split character in the text considered on the frame */ |
277 | 1341 if (val.hpos < lmargin) |
1342 val.bufpos++; | |
1343 XFASTINT (w->window_end_vpos) = last_text_vpos; | |
1344 XFASTINT (w->window_end_pos) = Z - val.bufpos; | |
1345 } | |
1346 | |
1347 /* If scrolling made blank lines at window bottom, | |
1348 redisplay to fill those lines */ | |
1349 if (scroll_amount < 0) | |
1350 { | |
1351 /* Don't consider these lines for general-purpose scrolling. | |
1352 That will save time in the scrolling computation. */ | |
769 | 1353 FRAME_SCROLL_BOTTOM_VPOS (f) = xp.vpos; |
277 | 1354 vpos = xp.vpos; |
1355 pos = xp.bufpos; | |
1356 val.hpos = lmargin; | |
1357 if (pos == ZV) | |
1358 vpos = height + scroll_amount; | |
1359 else if (xp.contin && xp.hpos != lmargin) | |
1360 { | |
1361 val.hpos = xp.prevhpos - width + lmargin; | |
1362 pos--; | |
1363 } | |
1364 | |
1365 blank_end_of_window = 1; | |
1366 tab_offset = pos_tab_offset (w, pos); | |
1367 /* If we are starting display in mid-character, correct tab_offset | |
1368 to account for passing the line that that character starts in. */ | |
1369 if (val.hpos < lmargin) | |
1370 tab_offset += width; | |
1371 | |
1372 while (vpos < height) | |
1373 { | |
1374 val = *display_text_line (w, pos, top + vpos++, val.hpos, tab_offset); | |
1375 tab_offset += width; | |
1376 if (val.vpos) tab_offset = 0; | |
1377 pos = val.bufpos; | |
1378 } | |
1379 | |
1380 /* Here is a case where display_text_line sets cursor_vpos wrong. | |
1381 Make it be fixed up, below. */ | |
1382 if (xp.bufpos == ZV | |
1383 && xp.bufpos == point) | |
1384 cursor_vpos = -1; | |
1385 } | |
1386 | |
769 | 1387 /* If bottom just moved off end of frame, change mode line percentage. */ |
277 | 1388 if (XFASTINT (w->window_end_pos) == 0 |
1389 && Z != val.bufpos) | |
1390 w->update_mode_line = Qt; | |
1391 | |
1392 /* Attempt to adjust end-of-text positions to new bottom line */ | |
1393 if (scroll_amount) | |
1394 { | |
1395 delta = height - xp.vpos; | |
1396 if (delta < 0 | |
1397 || (delta > 0 && xp.bufpos <= ZV) | |
1398 || (delta == 0 && xp.hpos)) | |
1399 { | |
1400 val = *vmotion (Z - XFASTINT (w->window_end_pos), | |
1401 delta, width, hscroll, window); | |
1402 XFASTINT (w->window_end_pos) = Z - val.bufpos; | |
1403 XFASTINT (w->window_end_vpos) += val.vpos; | |
1404 } | |
1405 } | |
1406 | |
1407 w->window_end_valid = Qnil; | |
1408 | |
1409 /* If point was not in a line that was displayed, find it */ | |
1410 if (cursor_vpos < 0) | |
1411 { | |
1412 val = *compute_motion (start, 0, lmargin, point, 10000, 10000, | |
1413 width, hscroll, pos_tab_offset (w, start)); | |
769 | 1414 /* Admit failure if point is off frame now */ |
277 | 1415 if (val.vpos >= height) |
1416 { | |
1417 for (vpos = 0; vpos < height; vpos++) | |
769 | 1418 cancel_line (vpos + top, f); |
277 | 1419 return 0; |
1420 } | |
1421 cursor_vpos = val.vpos + top; | |
1422 cursor_hpos = val.hpos + XFASTINT (w->left); | |
1423 } | |
1424 | |
769 | 1425 FRAME_CURSOR_X (f) = max (0, cursor_hpos); |
1426 FRAME_CURSOR_Y (f) = cursor_vpos; | |
277 | 1427 |
1428 if (debug_end_pos) | |
1429 { | |
1430 val = *compute_motion (start, 0, lmargin, ZV, | |
1431 height, - (1 << (SHORTBITS - 1)), | |
1432 width, hscroll, pos_tab_offset (w, start)); | |
1433 if (val.vpos != XFASTINT (w->window_end_vpos)) | |
1434 abort (); | |
1435 if (XFASTINT (w->window_end_pos) | |
1436 != Z - val.bufpos) | |
1437 abort (); | |
1438 } | |
1439 | |
1440 return 1; | |
1441 } | |
1442 | |
2065
32afcdd08efe
(copy_rope): Expect FROM to be a vector.
Richard M. Stallman <rms@gnu.org>
parents:
1992
diff
changeset
|
1443 /* Copy glyphs from the vector FROM to the rope T. |
301 | 1444 But don't actually copy the parts that would come in before S. |
2065
32afcdd08efe
(copy_rope): Expect FROM to be a vector.
Richard M. Stallman <rms@gnu.org>
parents:
1992
diff
changeset
|
1445 Value is T, advanced past the copied data. */ |
277 | 1446 |
1447 GLYPH * | |
1448 copy_rope (t, s, from) | |
1449 register GLYPH *t; /* Copy to here. */ | |
1450 register GLYPH *s; /* Starting point. */ | |
2065
32afcdd08efe
(copy_rope): Expect FROM to be a vector.
Richard M. Stallman <rms@gnu.org>
parents:
1992
diff
changeset
|
1451 Lisp_Object from; /* Data to copy; known to be a vector. */ |
277 | 1452 { |
2065
32afcdd08efe
(copy_rope): Expect FROM to be a vector.
Richard M. Stallman <rms@gnu.org>
parents:
1992
diff
changeset
|
1453 register int n = XVECTOR (from)->size; |
32afcdd08efe
(copy_rope): Expect FROM to be a vector.
Richard M. Stallman <rms@gnu.org>
parents:
1992
diff
changeset
|
1454 register Lisp_Object *f = XVECTOR (from)->contents; |
32afcdd08efe
(copy_rope): Expect FROM to be a vector.
Richard M. Stallman <rms@gnu.org>
parents:
1992
diff
changeset
|
1455 |
32afcdd08efe
(copy_rope): Expect FROM to be a vector.
Richard M. Stallman <rms@gnu.org>
parents:
1992
diff
changeset
|
1456 while (n--) |
32afcdd08efe
(copy_rope): Expect FROM to be a vector.
Richard M. Stallman <rms@gnu.org>
parents:
1992
diff
changeset
|
1457 { |
32afcdd08efe
(copy_rope): Expect FROM to be a vector.
Richard M. Stallman <rms@gnu.org>
parents:
1992
diff
changeset
|
1458 if (t >= s) *t = *f; |
32afcdd08efe
(copy_rope): Expect FROM to be a vector.
Richard M. Stallman <rms@gnu.org>
parents:
1992
diff
changeset
|
1459 ++t; |
32afcdd08efe
(copy_rope): Expect FROM to be a vector.
Richard M. Stallman <rms@gnu.org>
parents:
1992
diff
changeset
|
1460 ++f; |
32afcdd08efe
(copy_rope): Expect FROM to be a vector.
Richard M. Stallman <rms@gnu.org>
parents:
1992
diff
changeset
|
1461 } |
32afcdd08efe
(copy_rope): Expect FROM to be a vector.
Richard M. Stallman <rms@gnu.org>
parents:
1992
diff
changeset
|
1462 return t; |
32afcdd08efe
(copy_rope): Expect FROM to be a vector.
Richard M. Stallman <rms@gnu.org>
parents:
1992
diff
changeset
|
1463 } |
32afcdd08efe
(copy_rope): Expect FROM to be a vector.
Richard M. Stallman <rms@gnu.org>
parents:
1992
diff
changeset
|
1464 |
32afcdd08efe
(copy_rope): Expect FROM to be a vector.
Richard M. Stallman <rms@gnu.org>
parents:
1992
diff
changeset
|
1465 /* Similar but copy at most LEN glyphs. */ |
32afcdd08efe
(copy_rope): Expect FROM to be a vector.
Richard M. Stallman <rms@gnu.org>
parents:
1992
diff
changeset
|
1466 |
32afcdd08efe
(copy_rope): Expect FROM to be a vector.
Richard M. Stallman <rms@gnu.org>
parents:
1992
diff
changeset
|
1467 GLYPH * |
32afcdd08efe
(copy_rope): Expect FROM to be a vector.
Richard M. Stallman <rms@gnu.org>
parents:
1992
diff
changeset
|
1468 copy_part_of_rope (t, s, from, len) |
32afcdd08efe
(copy_rope): Expect FROM to be a vector.
Richard M. Stallman <rms@gnu.org>
parents:
1992
diff
changeset
|
1469 register GLYPH *t; /* Copy to here. */ |
32afcdd08efe
(copy_rope): Expect FROM to be a vector.
Richard M. Stallman <rms@gnu.org>
parents:
1992
diff
changeset
|
1470 register GLYPH *s; /* Starting point. */ |
32afcdd08efe
(copy_rope): Expect FROM to be a vector.
Richard M. Stallman <rms@gnu.org>
parents:
1992
diff
changeset
|
1471 Lisp_Object from; /* Data to copy; known to be a vector. */ |
32afcdd08efe
(copy_rope): Expect FROM to be a vector.
Richard M. Stallman <rms@gnu.org>
parents:
1992
diff
changeset
|
1472 int len; |
32afcdd08efe
(copy_rope): Expect FROM to be a vector.
Richard M. Stallman <rms@gnu.org>
parents:
1992
diff
changeset
|
1473 { |
32afcdd08efe
(copy_rope): Expect FROM to be a vector.
Richard M. Stallman <rms@gnu.org>
parents:
1992
diff
changeset
|
1474 register int n = XVECTOR (from)->size; |
32afcdd08efe
(copy_rope): Expect FROM to be a vector.
Richard M. Stallman <rms@gnu.org>
parents:
1992
diff
changeset
|
1475 register Lisp_Object *f = XVECTOR (from)->contents; |
32afcdd08efe
(copy_rope): Expect FROM to be a vector.
Richard M. Stallman <rms@gnu.org>
parents:
1992
diff
changeset
|
1476 |
32afcdd08efe
(copy_rope): Expect FROM to be a vector.
Richard M. Stallman <rms@gnu.org>
parents:
1992
diff
changeset
|
1477 if (n > len) |
32afcdd08efe
(copy_rope): Expect FROM to be a vector.
Richard M. Stallman <rms@gnu.org>
parents:
1992
diff
changeset
|
1478 n = len; |
277 | 1479 |
1480 while (n--) | |
1481 { | |
1482 if (t >= s) *t = *f; | |
1483 ++t; | |
1484 ++f; | |
1485 } | |
1486 return t; | |
1487 } | |
1488 | |
1489 /* Display one line of window w, starting at position START in W's buffer. | |
1490 Display starting at horizontal position HPOS, which is normally zero | |
1491 or negative. A negative value causes output up to hpos = 0 to be discarded. | |
1492 This is done for negative hscroll, or when this is a continuation line | |
1493 and the continuation occurred in the middle of a multi-column character. | |
1494 | |
1495 TABOFFSET is an offset for ostensible hpos, used in tab stop calculations. | |
1496 | |
769 | 1497 Display on position VPOS on the frame. (origin 0). |
277 | 1498 |
1499 Returns a STRUCT POSITION giving character to start next line with | |
1500 and where to display it, including a zero or negative hpos. | |
1501 The vpos field is not really a vpos; it is 1 unless the line is continued */ | |
1502 | |
1503 struct position val_display_text_line; | |
1504 | |
1505 static struct position * | |
1506 display_text_line (w, start, vpos, hpos, taboffset) | |
1507 struct window *w; | |
1508 int start; | |
1509 int vpos; | |
1510 int hpos; | |
1511 int taboffset; | |
1512 { | |
1513 register int pos = start; | |
1514 register int c; | |
1515 register GLYPH *p1; | |
1516 int end; | |
1517 register int pause; | |
1518 register unsigned char *p; | |
1519 GLYPH *endp; | |
1520 register GLYPH *startp; | |
1521 register GLYPH *p1prev; | |
769 | 1522 FRAME_PTR f = XFRAME (w->frame); |
277 | 1523 int tab_width = XINT (current_buffer->tab_width); |
485 | 1524 int ctl_arrow = !NILP (current_buffer->ctl_arrow); |
1785
19755499df90
* window.c (window_internal_width): New function, which accounts
Jim Blandy <jimb@redhat.com>
parents:
1718
diff
changeset
|
1525 int width = window_internal_width (w) - 1; |
277 | 1526 struct position val; |
1527 int lastpos; | |
1528 int invis; | |
1529 int hscroll = XINT (w->hscroll); | |
1530 int truncate = hscroll | |
1531 || (truncate_partial_width_windows | |
769 | 1532 && XFASTINT (w->width) < FRAME_WIDTH (f)) |
485 | 1533 || !NILP (current_buffer->truncate_lines); |
277 | 1534 int selective |
1535 = XTYPE (current_buffer->selective_display) == Lisp_Int | |
1536 ? XINT (current_buffer->selective_display) | |
485 | 1537 : !NILP (current_buffer->selective_display) ? -1 : 0; |
277 | 1538 #ifndef old |
485 | 1539 int selective_e = selective && !NILP (current_buffer->selective_display_ellipses); |
277 | 1540 #endif |
769 | 1541 register struct frame_glyphs *desired_glyphs = FRAME_DESIRED_GLYPHS (f); |
277 | 1542 register struct Lisp_Vector *dp = window_display_table (w); |
1543 int selective_rlen | |
2065
32afcdd08efe
(copy_rope): Expect FROM to be a vector.
Richard M. Stallman <rms@gnu.org>
parents:
1992
diff
changeset
|
1544 = (selective && dp && XTYPE (DISP_INVIS_VECTOR (dp)) == Lisp_Vector |
32afcdd08efe
(copy_rope): Expect FROM to be a vector.
Richard M. Stallman <rms@gnu.org>
parents:
1992
diff
changeset
|
1545 ? XVECTOR (DISP_INVIS_VECTOR (dp))->size : 0); |
277 | 1546 GLYPH truncator = (dp == 0 || XTYPE (DISP_TRUNC_GLYPH (dp)) != Lisp_Int |
1547 ? '$' : XINT (DISP_TRUNC_GLYPH (dp))); | |
1548 GLYPH continuer = (dp == 0 || XTYPE (DISP_CONTINUE_GLYPH (dp)) != Lisp_Int | |
1549 ? '\\' : XINT (DISP_CONTINUE_GLYPH (dp))); | |
1550 | |
1551 hpos += XFASTINT (w->left); | |
769 | 1552 get_display_line (f, vpos, XFASTINT (w->left)); |
277 | 1553 if (tab_width <= 0 || tab_width > 20) tab_width = 8; |
1554 | |
1555 if (MINI_WINDOW_P (w) && start == 1 | |
1556 && vpos == XFASTINT (w->top)) | |
1557 { | |
1558 if (minibuf_prompt) | |
1559 hpos = display_string (w, vpos, minibuf_prompt, hpos, | |
1560 (!truncate ? continuer : truncator), | |
1561 -1, -1); | |
1562 minibuf_prompt_width = hpos; | |
1563 } | |
1564 | |
1565 desired_glyphs->bufp[vpos] = pos; | |
1566 p1 = desired_glyphs->glyphs[vpos] + hpos; | |
1567 end = ZV; | |
1568 startp = desired_glyphs->glyphs[vpos] + XFASTINT (w->left); | |
1569 endp = startp + width; | |
1570 | |
1571 /* Loop generating characters. | |
1572 Stop at end of buffer, before newline, | |
1573 or if reach or pass continuation column. */ | |
1574 | |
1575 pause = pos; | |
1576 while (p1 < endp) | |
1577 { | |
1578 p1prev = p1; | |
1579 if (pos == pause) | |
1580 { | |
1581 if (pos == end) | |
1582 break; | |
1583 if (pos == point && cursor_vpos < 0) | |
1584 { | |
1585 cursor_vpos = vpos; | |
1586 cursor_hpos = p1 - startp; | |
1587 } | |
1588 | |
1589 pause = end; | |
1590 if (pos < point && point < pause) | |
1591 pause = point; | |
1592 if (pos < GPT && GPT < pause) | |
1593 pause = GPT; | |
1594 | |
1595 p = &FETCH_CHAR (pos); | |
1596 } | |
1597 c = *p++; | |
1598 if (c >= 040 && c < 0177 | |
2065
32afcdd08efe
(copy_rope): Expect FROM to be a vector.
Richard M. Stallman <rms@gnu.org>
parents:
1992
diff
changeset
|
1599 && (dp == 0 || XTYPE (DISP_CHAR_VECTOR (dp, c)) != Lisp_Vector)) |
277 | 1600 { |
1601 if (p1 >= startp) | |
1602 *p1 = c; | |
1603 p1++; | |
1604 } | |
1605 else if (c == '\n') | |
1606 { | |
1607 invis = 0; | |
1608 while (pos < end | |
1609 && selective > 0 | |
1610 && position_indentation (pos + 1) >= selective) | |
1611 { | |
1612 invis = 1; | |
1613 pos = find_next_newline (pos + 1, 1); | |
1614 if (FETCH_CHAR (pos - 1) == '\n') | |
1615 pos--; | |
1616 } | |
1617 if (invis && selective_rlen > 0 && p1 >= startp) | |
1618 { | |
1619 p1 += selective_rlen; | |
1620 if (p1 - startp > width) | |
1621 p1 = endp; | |
2065
32afcdd08efe
(copy_rope): Expect FROM to be a vector.
Richard M. Stallman <rms@gnu.org>
parents:
1992
diff
changeset
|
1622 copy_part_of_rope (p1prev, p1prev, |
32afcdd08efe
(copy_rope): Expect FROM to be a vector.
Richard M. Stallman <rms@gnu.org>
parents:
1992
diff
changeset
|
1623 XVECTOR (DISP_INVIS_VECTOR (dp))->contents, |
32afcdd08efe
(copy_rope): Expect FROM to be a vector.
Richard M. Stallman <rms@gnu.org>
parents:
1992
diff
changeset
|
1624 (p1 - p1prev)); |
277 | 1625 } |
1626 break; | |
1627 } | |
1628 else if (c == '\t') | |
1629 { | |
1630 do | |
1631 { | |
1632 if (p1 >= startp && p1 < endp) | |
1633 *p1 = SPACEGLYPH; | |
1634 p1++; | |
1635 } | |
1636 while ((p1 - startp + taboffset + hscroll - (hscroll > 0)) | |
1637 % tab_width); | |
1638 } | |
368 | 1639 else if (c == Ctl ('M') && selective == -1) |
277 | 1640 { |
1641 pos = find_next_newline (pos, 1); | |
1642 if (FETCH_CHAR (pos - 1) == '\n') | |
1643 pos--; | |
1644 if (selective_rlen > 0) | |
1645 { | |
1646 p1 += selective_rlen; | |
1647 if (p1 - startp > width) | |
1648 p1 = endp; | |
2065
32afcdd08efe
(copy_rope): Expect FROM to be a vector.
Richard M. Stallman <rms@gnu.org>
parents:
1992
diff
changeset
|
1649 copy_part_of_rope (p1prev, p1prev, |
32afcdd08efe
(copy_rope): Expect FROM to be a vector.
Richard M. Stallman <rms@gnu.org>
parents:
1992
diff
changeset
|
1650 XVECTOR(DISP_INVIS_VECTOR (dp))->contents, |
32afcdd08efe
(copy_rope): Expect FROM to be a vector.
Richard M. Stallman <rms@gnu.org>
parents:
1992
diff
changeset
|
1651 (p1 - p1prev)); |
277 | 1652 } |
1653 break; | |
1654 } | |
2065
32afcdd08efe
(copy_rope): Expect FROM to be a vector.
Richard M. Stallman <rms@gnu.org>
parents:
1992
diff
changeset
|
1655 else if (dp != 0 && XTYPE (DISP_CHAR_VECTOR (dp, c)) == Lisp_Vector) |
277 | 1656 { |
2065
32afcdd08efe
(copy_rope): Expect FROM to be a vector.
Richard M. Stallman <rms@gnu.org>
parents:
1992
diff
changeset
|
1657 p1 = copy_rope (p1, startp, DISP_CHAR_VECTOR (dp, c)); |
277 | 1658 } |
1659 else if (c < 0200 && ctl_arrow) | |
1660 { | |
1661 if (p1 >= startp) | |
1662 *p1 = (dp && XTYPE (DISP_CTRL_GLYPH (dp)) == Lisp_Int | |
1663 ? XINT (DISP_CTRL_GLYPH (dp)) : '^'); | |
1664 p1++; | |
368 | 1665 if (p1 >= startp && p1 < endp) |
277 | 1666 *p1 = c ^ 0100; |
1667 p1++; | |
1668 } | |
1669 else | |
1670 { | |
1671 if (p1 >= startp) | |
1672 *p1 = (dp && XTYPE (DISP_ESCAPE_GLYPH (dp)) == Lisp_Int | |
1673 ? XINT (DISP_ESCAPE_GLYPH (dp)) : '\\'); | |
1674 p1++; | |
368 | 1675 if (p1 >= startp && p1 < endp) |
277 | 1676 *p1 = (c >> 6) + '0'; |
1677 p1++; | |
368 | 1678 if (p1 >= startp && p1 < endp) |
277 | 1679 *p1 = (7 & (c >> 3)) + '0'; |
1680 p1++; | |
368 | 1681 if (p1 >= startp && p1 < endp) |
277 | 1682 *p1 = (7 & c) + '0'; |
1683 p1++; | |
1684 } | |
1685 pos++; | |
1686 } | |
1687 | |
1688 val.hpos = - XINT (w->hscroll); | |
1689 if (val.hpos) | |
1690 val.hpos++; | |
1691 | |
1692 val.vpos = 1; | |
1693 | |
1694 lastpos = pos; | |
1695 | |
1696 /* Handle continuation in middle of a character */ | |
1697 /* by backing up over it */ | |
1698 if (p1 > endp) | |
1699 { | |
1700 /* Start the next line with that same character */ | |
1701 pos--; | |
1702 /* but at a negative hpos, to skip the columns output on this line. */ | |
1703 val.hpos += p1prev - endp; | |
1704 /* Keep in this line everything up to the continuation column. */ | |
1705 p1 = endp; | |
1706 } | |
1707 | |
1708 /* Finish deciding which character to start the next line on, | |
1709 and what hpos to start it at. | |
1710 Also set `lastpos' to the last position which counts as "on this line" | |
1711 for cursor-positioning. */ | |
1712 | |
1713 if (pos < ZV) | |
1714 { | |
1715 if (FETCH_CHAR (pos) == '\n') | |
1716 /* If stopped due to a newline, start next line after it */ | |
1717 pos++; | |
1718 else | |
1719 /* Stopped due to right margin of window */ | |
1720 { | |
1721 if (truncate) | |
1722 { | |
1723 *p1++ = truncator; | |
1724 /* Truncating => start next line after next newline, | |
1725 and point is on this line if it is before the newline, | |
1726 and skip none of first char of next line */ | |
1727 pos = find_next_newline (pos, 1); | |
1728 val.hpos = XINT (w->hscroll) ? 1 - XINT (w->hscroll) : 0; | |
1729 | |
1730 lastpos = pos - (FETCH_CHAR (pos - 1) == '\n'); | |
1731 } | |
1732 else | |
1733 { | |
1734 *p1++ = continuer; | |
1735 val.vpos = 0; | |
1736 lastpos--; | |
1737 } | |
1738 } | |
1739 } | |
1740 | |
1741 /* If point is at eol or in invisible text at eol, | |
769 | 1742 record its frame location now. */ |
277 | 1743 |
1744 if (start <= point && point <= lastpos && cursor_vpos < 0) | |
1745 { | |
1746 cursor_vpos = vpos; | |
1747 cursor_hpos = p1 - startp; | |
1748 } | |
1749 | |
1750 if (cursor_vpos == vpos) | |
1751 { | |
1752 if (cursor_hpos < 0) cursor_hpos = 0; | |
1753 if (cursor_hpos > width) cursor_hpos = width; | |
1754 cursor_hpos += XFASTINT (w->left); | |
769 | 1755 if (w == XWINDOW (FRAME_SELECTED_WINDOW (f))) |
277 | 1756 { |
769 | 1757 FRAME_CURSOR_Y (f) = cursor_vpos; |
1758 FRAME_CURSOR_X (f) = cursor_hpos; | |
277 | 1759 |
1760 if (w == XWINDOW (selected_window)) | |
1761 { | |
1762 /* Line is not continued and did not start | |
1763 in middle of character */ | |
1764 if ((hpos - XFASTINT (w->left) | |
1765 == (XINT (w->hscroll) ? 1 - XINT (w->hscroll) : 0)) | |
1766 && val.vpos) | |
1767 { | |
1768 this_line_bufpos = start; | |
1769 this_line_buffer = current_buffer; | |
1770 this_line_vpos = cursor_vpos; | |
1771 this_line_start_hpos = hpos; | |
1772 this_line_endpos = Z - lastpos; | |
1773 } | |
1774 else | |
1775 this_line_bufpos = 0; | |
1776 } | |
1777 } | |
1778 } | |
1779 | |
1780 /* If hscroll and line not empty, insert truncation-at-left marker */ | |
1781 if (hscroll && lastpos != start) | |
1782 { | |
1783 *startp = truncator; | |
1784 if (p1 <= startp) | |
1785 p1 = startp + 1; | |
1786 } | |
1787 | |
769 | 1788 if (XFASTINT (w->width) + XFASTINT (w->left) != FRAME_WIDTH (f)) |
277 | 1789 { |
1790 endp++; | |
1791 if (p1 < startp) p1 = startp; | |
1792 while (p1 < endp) *p1++ = SPACEGLYPH; | |
1785
19755499df90
* window.c (window_internal_width): New function, which accounts
Jim Blandy <jimb@redhat.com>
parents:
1718
diff
changeset
|
1793 |
1992
37c45885540a
* xdisp.c (redisplay): Protect calls to request_sigio and
Jim Blandy <jimb@redhat.com>
parents:
1873
diff
changeset
|
1794 /* Don't draw vertical bars if we're using scroll bars. They're |
37c45885540a
* xdisp.c (redisplay): Protect calls to request_sigio and
Jim Blandy <jimb@redhat.com>
parents:
1873
diff
changeset
|
1795 covered up by the scroll bars, and it's distracting to see |
37c45885540a
* xdisp.c (redisplay): Protect calls to request_sigio and
Jim Blandy <jimb@redhat.com>
parents:
1873
diff
changeset
|
1796 them when the scroll bar windows are flickering around to be |
1785
19755499df90
* window.c (window_internal_width): New function, which accounts
Jim Blandy <jimb@redhat.com>
parents:
1718
diff
changeset
|
1797 reconfigured. */ |
1992
37c45885540a
* xdisp.c (redisplay): Protect calls to request_sigio and
Jim Blandy <jimb@redhat.com>
parents:
1873
diff
changeset
|
1798 *p1++ = (FRAME_HAS_VERTICAL_SCROLL_BARS (f) |
1785
19755499df90
* window.c (window_internal_width): New function, which accounts
Jim Blandy <jimb@redhat.com>
parents:
1718
diff
changeset
|
1799 ? ' ' : '|'); |
277 | 1800 } |
1801 desired_glyphs->used[vpos] = max (desired_glyphs->used[vpos], | |
1802 p1 - desired_glyphs->glyphs[vpos]); | |
1803 desired_glyphs->glyphs[vpos][desired_glyphs->used[vpos]] = 0; | |
1804 | |
1805 /* If the start of this line is the overlay arrow-position, | |
1806 then put the arrow string into the display-line. */ | |
1807 | |
1808 if (XTYPE (Voverlay_arrow_position) == Lisp_Marker | |
1809 && current_buffer == XMARKER (Voverlay_arrow_position)->buffer | |
1810 && start == marker_position (Voverlay_arrow_position) | |
1811 && XTYPE (Voverlay_arrow_string) == Lisp_String | |
1812 && ! overlay_arrow_seen) | |
1813 { | |
1814 unsigned char *p = XSTRING (Voverlay_arrow_string)->data; | |
1815 int i; | |
1816 int len = XSTRING (Voverlay_arrow_string)->size; | |
1817 | |
1785
19755499df90
* window.c (window_internal_width): New function, which accounts
Jim Blandy <jimb@redhat.com>
parents:
1718
diff
changeset
|
1818 if (len > width) |
19755499df90
* window.c (window_internal_width): New function, which accounts
Jim Blandy <jimb@redhat.com>
parents:
1718
diff
changeset
|
1819 len = width; |
277 | 1820 for (i = 0; i < len; i++) |
1821 startp[i] = p[i]; | |
1822 if (desired_glyphs->used[vpos] < | |
1823 (len + startp - desired_glyphs->glyphs[vpos])) | |
1824 desired_glyphs->used[vpos] = len + startp - desired_glyphs->glyphs[vpos]; | |
1825 | |
1826 overlay_arrow_seen = 1; | |
1827 } | |
1828 | |
1829 val.bufpos = pos; | |
1830 val_display_text_line = val; | |
1831 return &val_display_text_line; | |
1832 } | |
1833 | |
2150
cb8205e30dda
(display_menu_bar): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2065
diff
changeset
|
1834 /* Redisplay the menu bar in the frame for window W. */ |
cb8205e30dda
(display_menu_bar): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2065
diff
changeset
|
1835 |
cb8205e30dda
(display_menu_bar): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2065
diff
changeset
|
1836 static void |
cb8205e30dda
(display_menu_bar): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2065
diff
changeset
|
1837 display_menu_bar (w) |
cb8205e30dda
(display_menu_bar): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2065
diff
changeset
|
1838 struct window *w; |
cb8205e30dda
(display_menu_bar): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2065
diff
changeset
|
1839 { |
cb8205e30dda
(display_menu_bar): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2065
diff
changeset
|
1840 Lisp_Object items, tail; |
cb8205e30dda
(display_menu_bar): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2065
diff
changeset
|
1841 register int vpos = 0; |
cb8205e30dda
(display_menu_bar): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2065
diff
changeset
|
1842 register FRAME_PTR f = XFRAME (WINDOW_FRAME (w)); |
cb8205e30dda
(display_menu_bar): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2065
diff
changeset
|
1843 int maxendcol = FRAME_WIDTH (f); |
cb8205e30dda
(display_menu_bar): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2065
diff
changeset
|
1844 int hpos = 0; |
cb8205e30dda
(display_menu_bar): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2065
diff
changeset
|
1845 |
cb8205e30dda
(display_menu_bar): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2065
diff
changeset
|
1846 if (FRAME_MENU_BAR_LINES (f) <= 0) |
cb8205e30dda
(display_menu_bar): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2065
diff
changeset
|
1847 return; |
cb8205e30dda
(display_menu_bar): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2065
diff
changeset
|
1848 |
cb8205e30dda
(display_menu_bar): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2065
diff
changeset
|
1849 get_display_line (f, vpos, 0); |
cb8205e30dda
(display_menu_bar): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2065
diff
changeset
|
1850 |
2189
cb92d253a599
(display_menu_bar): Assume FRAME_MENU_BAR_ITEMS already set.
Richard M. Stallman <rms@gnu.org>
parents:
2150
diff
changeset
|
1851 for (tail = FRAME_MENU_BAR_ITEMS (f); CONSP (tail); tail = XCONS (tail)->cdr) |
2150
cb8205e30dda
(display_menu_bar): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2065
diff
changeset
|
1852 { |
cb8205e30dda
(display_menu_bar): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2065
diff
changeset
|
1853 Lisp_Object string; |
2189
cb92d253a599
(display_menu_bar): Assume FRAME_MENU_BAR_ITEMS already set.
Richard M. Stallman <rms@gnu.org>
parents:
2150
diff
changeset
|
1854 |
2150
cb8205e30dda
(display_menu_bar): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2065
diff
changeset
|
1855 string = XCONS (XCONS (XCONS (tail)->car)->cdr)->car; |
cb8205e30dda
(display_menu_bar): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2065
diff
changeset
|
1856 |
cb8205e30dda
(display_menu_bar): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2065
diff
changeset
|
1857 /* Record in each item its hpos. */ |
cb8205e30dda
(display_menu_bar): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2065
diff
changeset
|
1858 XFASTINT (XCONS (XCONS (XCONS (tail)->car)->cdr)->cdr) = hpos; |
cb8205e30dda
(display_menu_bar): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2065
diff
changeset
|
1859 |
cb8205e30dda
(display_menu_bar): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2065
diff
changeset
|
1860 if (hpos < maxendcol) |
cb8205e30dda
(display_menu_bar): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2065
diff
changeset
|
1861 hpos = display_string (XWINDOW (FRAME_ROOT_WINDOW (f)), vpos, |
cb8205e30dda
(display_menu_bar): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2065
diff
changeset
|
1862 XSTRING (string)->data, |
2189
cb92d253a599
(display_menu_bar): Assume FRAME_MENU_BAR_ITEMS already set.
Richard M. Stallman <rms@gnu.org>
parents:
2150
diff
changeset
|
1863 hpos, 0, hpos, maxendcol); |
cb92d253a599
(display_menu_bar): Assume FRAME_MENU_BAR_ITEMS already set.
Richard M. Stallman <rms@gnu.org>
parents:
2150
diff
changeset
|
1864 /* Put a gap of 3 spaces between items. */ |
cb92d253a599
(display_menu_bar): Assume FRAME_MENU_BAR_ITEMS already set.
Richard M. Stallman <rms@gnu.org>
parents:
2150
diff
changeset
|
1865 if (hpos < maxendcol) |
cb92d253a599
(display_menu_bar): Assume FRAME_MENU_BAR_ITEMS already set.
Richard M. Stallman <rms@gnu.org>
parents:
2150
diff
changeset
|
1866 { |
cb92d253a599
(display_menu_bar): Assume FRAME_MENU_BAR_ITEMS already set.
Richard M. Stallman <rms@gnu.org>
parents:
2150
diff
changeset
|
1867 int hpos1 = hpos + 3; |
cb92d253a599
(display_menu_bar): Assume FRAME_MENU_BAR_ITEMS already set.
Richard M. Stallman <rms@gnu.org>
parents:
2150
diff
changeset
|
1868 hpos = display_string (w, vpos, "", hpos, 0, |
cb92d253a599
(display_menu_bar): Assume FRAME_MENU_BAR_ITEMS already set.
Richard M. Stallman <rms@gnu.org>
parents:
2150
diff
changeset
|
1869 min (hpos1, maxendcol), maxendcol); |
cb92d253a599
(display_menu_bar): Assume FRAME_MENU_BAR_ITEMS already set.
Richard M. Stallman <rms@gnu.org>
parents:
2150
diff
changeset
|
1870 } |
2150
cb8205e30dda
(display_menu_bar): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2065
diff
changeset
|
1871 } |
cb8205e30dda
(display_menu_bar): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2065
diff
changeset
|
1872 |
cb8205e30dda
(display_menu_bar): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2065
diff
changeset
|
1873 FRAME_DESIRED_GLYPHS (f)->bufp[vpos] = 0; |
cb8205e30dda
(display_menu_bar): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2065
diff
changeset
|
1874 FRAME_DESIRED_GLYPHS (f)->highlight[vpos] = mode_line_inverse_video; |
2189
cb92d253a599
(display_menu_bar): Assume FRAME_MENU_BAR_ITEMS already set.
Richard M. Stallman <rms@gnu.org>
parents:
2150
diff
changeset
|
1875 |
cb92d253a599
(display_menu_bar): Assume FRAME_MENU_BAR_ITEMS already set.
Richard M. Stallman <rms@gnu.org>
parents:
2150
diff
changeset
|
1876 /* Fill out the line with spaces. */ |
cb92d253a599
(display_menu_bar): Assume FRAME_MENU_BAR_ITEMS already set.
Richard M. Stallman <rms@gnu.org>
parents:
2150
diff
changeset
|
1877 if (maxendcol > hpos) |
cb92d253a599
(display_menu_bar): Assume FRAME_MENU_BAR_ITEMS already set.
Richard M. Stallman <rms@gnu.org>
parents:
2150
diff
changeset
|
1878 hpos = display_string (w, vpos, "", hpos, 0, maxendcol, -1); |
2150
cb8205e30dda
(display_menu_bar): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2065
diff
changeset
|
1879 } |
cb8205e30dda
(display_menu_bar): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2065
diff
changeset
|
1880 |
277 | 1881 /* Display the mode line for window w */ |
1882 | |
1883 static void | |
1884 display_mode_line (w) | |
1885 struct window *w; | |
1886 { | |
1887 register int vpos = XFASTINT (w->height) + XFASTINT (w->top) - 1; | |
1888 register int left = XFASTINT (w->left); | |
1889 register int right = XFASTINT (w->width) + left; | |
769 | 1890 register FRAME_PTR f = XFRAME (WINDOW_FRAME (w)); |
277 | 1891 |
769 | 1892 get_display_line (f, vpos, left); |
277 | 1893 display_mode_element (w, vpos, left, 0, right, right, |
1894 current_buffer->mode_line_format); | |
769 | 1895 FRAME_DESIRED_GLYPHS (f)->bufp[vpos] = 0; |
277 | 1896 |
1897 /* Make the mode line inverse video if the entire line | |
1898 is made of mode lines. | |
1899 I.e. if this window is full width, | |
1900 or if it is the child of a full width window | |
1901 (which implies that that window is split side-by-side | |
1902 and the rest of this line is mode lines of the sibling windows). */ | |
769 | 1903 if (XFASTINT (w->width) == FRAME_WIDTH (f) |
1904 || XFASTINT (XWINDOW (w->parent)->width) == FRAME_WIDTH (f)) | |
1905 FRAME_DESIRED_GLYPHS (f)->highlight[vpos] = mode_line_inverse_video; | |
277 | 1906 |
1907 #ifdef HAVE_X_WINDOWS | |
1908 /* I'm trying this out because I saw Unimpress use it, but it's | |
1124
453c24f2bdaa
* xdisp.c (display_mode_line): If the only other frames are
Jim Blandy <jimb@redhat.com>
parents:
1017
diff
changeset
|
1909 possible that this may mess adversely with some window managers. -jla |
277 | 1910 |
1124
453c24f2bdaa
* xdisp.c (display_mode_line): If the only other frames are
Jim Blandy <jimb@redhat.com>
parents:
1017
diff
changeset
|
1911 Wouldn't it be nice to use something like mode-line-format to |
453c24f2bdaa
* xdisp.c (display_mode_line): If the only other frames are
Jim Blandy <jimb@redhat.com>
parents:
1017
diff
changeset
|
1912 describe frame titles? -JimB */ |
453c24f2bdaa
* xdisp.c (display_mode_line): If the only other frames are
Jim Blandy <jimb@redhat.com>
parents:
1017
diff
changeset
|
1913 |
453c24f2bdaa
* xdisp.c (display_mode_line): If the only other frames are
Jim Blandy <jimb@redhat.com>
parents:
1017
diff
changeset
|
1914 /* Change the title of the frame to the name of the buffer displayed |
453c24f2bdaa
* xdisp.c (display_mode_line): If the only other frames are
Jim Blandy <jimb@redhat.com>
parents:
1017
diff
changeset
|
1915 in the currently selected window. Don't do this for minibuffer frames, |
453c24f2bdaa
* xdisp.c (display_mode_line): If the only other frames are
Jim Blandy <jimb@redhat.com>
parents:
1017
diff
changeset
|
1916 and don't do it when there's only one non-minibuffer frame. */ |
973
52267046b144
* xdisp.c (FRAME_IS_TERMCAP, FRAME_IS_X, FRAME_HAS_MINIBUF):
Jim Blandy <jimb@redhat.com>
parents:
831
diff
changeset
|
1917 if (FRAME_X_P (f) |
769 | 1918 && ! FRAME_MINIBUF_ONLY_P (f) |
831 | 1919 && w == XWINDOW (f->selected_window)) |
1124
453c24f2bdaa
* xdisp.c (display_mode_line): If the only other frames are
Jim Blandy <jimb@redhat.com>
parents:
1017
diff
changeset
|
1920 x_implicitly_set_name (f, (EQ (Fnext_frame (WINDOW_FRAME (w), Qnil), |
453c24f2bdaa
* xdisp.c (display_mode_line): If the only other frames are
Jim Blandy <jimb@redhat.com>
parents:
1017
diff
changeset
|
1921 WINDOW_FRAME (w)) |
453c24f2bdaa
* xdisp.c (display_mode_line): If the only other frames are
Jim Blandy <jimb@redhat.com>
parents:
1017
diff
changeset
|
1922 ? Qnil |
453c24f2bdaa
* xdisp.c (display_mode_line): If the only other frames are
Jim Blandy <jimb@redhat.com>
parents:
1017
diff
changeset
|
1923 : XBUFFER (w->buffer)->name), |
1017
d42877206c0a
* xdisp.c (display_mode_line): Use x_implicitly_set_name here.
Jim Blandy <jimb@redhat.com>
parents:
973
diff
changeset
|
1924 Qnil); |
277 | 1925 #endif |
1926 } | |
1927 | |
1928 /* Contribute ELT to the mode line for window W. | |
1929 How it translates into text depends on its data type. | |
1930 | |
1931 VPOS is the position of the mode line being displayed. | |
1932 | |
769 | 1933 HPOS is the position (absolute on frame) where this element's text |
277 | 1934 should start. The output is truncated automatically at the right |
1935 edge of window W. | |
1936 | |
1937 DEPTH is the depth in recursion. It is used to prevent | |
1938 infinite recursion here. | |
1939 | |
1940 MINENDCOL is the hpos before which the element may not end. | |
1941 The element is padded at the right with spaces if nec | |
1942 to reach this column. | |
1943 | |
1944 MAXENDCOL is the hpos past which this element may not extend. | |
1945 If MINENDCOL is > MAXENDCOL, MINENDCOL takes priority. | |
1946 (This is necessary to make nested padding and truncation work.) | |
1947 | |
1948 Returns the hpos of the end of the text generated by ELT. | |
1949 The next element will receive that value as its HPOS arg, | |
1950 so as to concatenate the elements. */ | |
1951 | |
1952 static int | |
1953 display_mode_element (w, vpos, hpos, depth, minendcol, maxendcol, elt) | |
1954 struct window *w; | |
1955 register int vpos, hpos; | |
1956 int depth; | |
1957 int minendcol; | |
1958 register int maxendcol; | |
1959 register Lisp_Object elt; | |
1960 { | |
1961 tail_recurse: | |
1962 if (depth > 10) | |
1963 goto invalid; | |
1964 | |
1965 depth++; | |
1966 | |
1967 #ifdef SWITCH_ENUM_BUG | |
1968 switch ((int) XTYPE (elt)) | |
1969 #else | |
1970 switch (XTYPE (elt)) | |
1971 #endif | |
1972 { | |
1973 case Lisp_String: | |
1974 { | |
1975 /* A string: output it and check for %-constructs within it. */ | |
1976 register unsigned char c; | |
1977 register unsigned char *this = XSTRING (elt)->data; | |
1978 | |
1979 while (hpos < maxendcol && *this) | |
1980 { | |
1981 unsigned char *last = this; | |
1982 while ((c = *this++) != '\0' && c != '%') | |
1983 ; | |
1984 if (this - 1 != last) | |
1985 { | |
1986 register int lim = --this - last + hpos; | |
1987 hpos = display_string (w, vpos, last, hpos, 0, hpos, | |
1988 min (lim, maxendcol)); | |
1989 } | |
1990 else /* c == '%' */ | |
1991 { | |
1992 register int spec_width = 0; | |
1993 | |
1994 /* We can't allow -ve args due to the "%-" construct */ | |
1995 /* Argument specifies minwidth but not maxwidth | |
1996 (maxwidth can be specified by | |
1997 (<negative-number> . <stuff>) mode-line elements) */ | |
1998 | |
1999 while ((c = *this++) >= '0' && c <= '9') | |
2000 { | |
2001 spec_width = spec_width * 10 + (c - '0'); | |
2002 } | |
2003 | |
2004 spec_width += hpos; | |
2005 if (spec_width > maxendcol) | |
2006 spec_width = maxendcol; | |
2007 | |
2008 if (c == 'M') | |
2009 hpos = display_mode_element (w, vpos, hpos, depth, | |
2010 spec_width, maxendcol, | |
2011 Vglobal_mode_string); | |
2012 else if (c != 0) | |
2013 hpos = display_string (w, vpos, | |
2014 decode_mode_spec (w, c, | |
2015 maxendcol - hpos), | |
2016 hpos, 0, spec_width, maxendcol); | |
2017 } | |
2018 } | |
2019 } | |
2020 break; | |
2021 | |
2022 case Lisp_Symbol: | |
2023 /* A symbol: process the value of the symbol recursively | |
2024 as if it appeared here directly. Avoid error if symbol void. | |
2025 Special case: if value of symbol is a string, output the string | |
2026 literally. */ | |
2027 { | |
2028 register Lisp_Object tem; | |
2029 tem = Fboundp (elt); | |
485 | 2030 if (!NILP (tem)) |
277 | 2031 { |
2032 tem = Fsymbol_value (elt); | |
2033 /* If value is a string, output that string literally: | |
2034 don't check for % within it. */ | |
2035 if (XTYPE (tem) == Lisp_String) | |
2036 hpos = display_string (w, vpos, XSTRING (tem)->data, | |
2037 hpos, 0, minendcol, maxendcol); | |
2038 /* Give up right away for nil or t. */ | |
2039 else if (!EQ (tem, elt)) | |
2040 { elt = tem; goto tail_recurse; } | |
2041 } | |
2042 } | |
2043 break; | |
2044 | |
2045 case Lisp_Cons: | |
2046 { | |
2047 register Lisp_Object car, tem; | |
2048 | |
2049 /* A cons cell: three distinct cases. | |
2050 If first element is a string or a cons, process all the elements | |
2051 and effectively concatenate them. | |
2052 If first element is a negative number, truncate displaying cdr to | |
2053 at most that many characters. If positive, pad (with spaces) | |
2054 to at least that many characters. | |
2055 If first element is a symbol, process the cadr or caddr recursively | |
2056 according to whether the symbol's value is non-nil or nil. */ | |
2057 car = XCONS (elt)->car; | |
2058 if (XTYPE (car) == Lisp_Symbol) | |
2059 { | |
2060 tem = Fboundp (car); | |
2061 elt = XCONS (elt)->cdr; | |
2062 if (XTYPE (elt) != Lisp_Cons) | |
2063 goto invalid; | |
2064 /* elt is now the cdr, and we know it is a cons cell. | |
2065 Use its car if CAR has a non-nil value. */ | |
485 | 2066 if (!NILP (tem)) |
277 | 2067 { |
2068 tem = Fsymbol_value (car); | |
485 | 2069 if (!NILP (tem)) |
277 | 2070 { elt = XCONS (elt)->car; goto tail_recurse; } |
2071 } | |
2072 /* Symbol's value is nil (or symbol is unbound) | |
2073 Get the cddr of the original list | |
2074 and if possible find the caddr and use that. */ | |
2075 elt = XCONS (elt)->cdr; | |
485 | 2076 if (NILP (elt)) |
277 | 2077 break; |
2078 else if (XTYPE (elt) != Lisp_Cons) | |
2079 goto invalid; | |
2080 elt = XCONS (elt)->car; | |
2081 goto tail_recurse; | |
2082 } | |
2083 else if (XTYPE (car) == Lisp_Int) | |
2084 { | |
2085 register int lim = XINT (car); | |
2086 elt = XCONS (elt)->cdr; | |
2087 if (lim < 0) | |
2088 /* Negative int means reduce maximum width. | |
2089 DO NOT change MINENDCOL here! | |
2090 (20 -10 . foo) should truncate foo to 10 col | |
2091 and then pad to 20. */ | |
2092 maxendcol = min (maxendcol, hpos - lim); | |
2093 else if (lim > 0) | |
2094 { | |
2095 /* Padding specified. Don't let it be more than | |
2096 current maximum. */ | |
2097 lim += hpos; | |
2098 if (lim > maxendcol) | |
2099 lim = maxendcol; | |
2100 /* If that's more padding than already wanted, queue it. | |
2101 But don't reduce padding already specified even if | |
2102 that is beyond the current truncation point. */ | |
2103 if (lim > minendcol) | |
2104 minendcol = lim; | |
2105 } | |
2106 goto tail_recurse; | |
2107 } | |
2108 else if (XTYPE (car) == Lisp_String || XTYPE (car) == Lisp_Cons) | |
2109 { | |
2110 register int limit = 50; | |
2111 /* LIMIT is to protect against circular lists. */ | |
2112 while (XTYPE (elt) == Lisp_Cons && --limit > 0 | |
2113 && hpos < maxendcol) | |
2114 { | |
2115 hpos = display_mode_element (w, vpos, hpos, depth, | |
2116 hpos, maxendcol, | |
2117 XCONS (elt)->car); | |
2118 elt = XCONS (elt)->cdr; | |
2119 } | |
2120 } | |
2121 } | |
2122 break; | |
2123 | |
2124 default: | |
2125 invalid: | |
2126 return (display_string (w, vpos, "*invalid*", hpos, 0, | |
2127 minendcol, maxendcol)); | |
2128 } | |
2129 | |
2130 end: | |
2131 if (minendcol > hpos) | |
2132 hpos = display_string (w, vpos, "", hpos, 0, minendcol, -1); | |
2133 return hpos; | |
2134 } | |
2135 | |
2136 /* Return a string for the output of a mode line %-spec for window W, | |
2137 generated by character C and width MAXWIDTH. */ | |
2138 | |
1017
d42877206c0a
* xdisp.c (display_mode_line): Use x_implicitly_set_name here.
Jim Blandy <jimb@redhat.com>
parents:
973
diff
changeset
|
2139 static char lots_of_dashes[] = "--------------------------------------------------------------------------------------------------------------------------------------------"; |
d42877206c0a
* xdisp.c (display_mode_line): Use x_implicitly_set_name here.
Jim Blandy <jimb@redhat.com>
parents:
973
diff
changeset
|
2140 |
277 | 2141 static char * |
2142 decode_mode_spec (w, c, maxwidth) | |
2143 struct window *w; | |
2144 register char c; | |
2145 register int maxwidth; | |
2146 { | |
2147 Lisp_Object obj = Qnil; | |
769 | 2148 FRAME_PTR f = XFRAME (WINDOW_FRAME (w)); |
2149 char *decode_mode_spec_buf = (char *) FRAME_TEMP_GLYPHS (f)->total_contents; | |
277 | 2150 |
769 | 2151 if (maxwidth > FRAME_WIDTH (f)) |
2152 maxwidth = FRAME_WIDTH (f); | |
277 | 2153 |
2154 switch (c) | |
2155 { | |
2156 case 'b': | |
2157 obj = current_buffer->name; | |
2158 #if 0 | |
2159 if (maxwidth >= 3 && XSTRING (obj)->size > maxwidth) | |
2160 { | |
2161 bcopy (XSTRING (obj)->data, decode_mode_spec_buf, maxwidth - 1); | |
2162 decode_mode_spec_buf[maxwidth - 1] = '\\'; | |
2163 decode_mode_spec_buf[maxwidth] = '\0'; | |
2164 return decode_mode_spec_buf; | |
2165 } | |
2166 #endif | |
2167 break; | |
2168 | |
2169 case 'f': | |
2170 obj = current_buffer->filename; | |
2171 #if 0 | |
485 | 2172 if (NILP (obj)) |
277 | 2173 return "[none]"; |
2174 else if (XTYPE (obj) == Lisp_String && XSTRING (obj)->size > maxwidth) | |
2175 { | |
2176 bcopy ("...", decode_mode_spec_buf, 3); | |
2177 bcopy (XSTRING (obj)->data + XSTRING (obj)->size - maxwidth + 3, | |
2178 decode_mode_spec_buf + 3, maxwidth - 3); | |
2179 return decode_mode_spec_buf; | |
2180 } | |
2181 #endif | |
2182 break; | |
2183 | |
2184 case 'm': | |
2185 obj = current_buffer->mode_name; | |
2186 break; | |
2187 | |
2188 case 'n': | |
2189 if (BEGV > BEG || ZV < Z) | |
2190 return " Narrow"; | |
2191 break; | |
2192 | |
2193 case '*': | |
485 | 2194 if (!NILP (current_buffer->read_only)) |
277 | 2195 return "%"; |
2196 if (MODIFF > current_buffer->save_modified) | |
2197 return "*"; | |
2198 return "-"; | |
2199 | |
2200 case 's': | |
2201 /* status of process */ | |
2202 obj = Fget_buffer_process (Fcurrent_buffer ()); | |
485 | 2203 if (NILP (obj)) |
277 | 2204 return "no process"; |
2205 obj = Fsymbol_name (Fprocess_status (obj)); | |
2206 break; | |
2207 | |
2208 case 'p': | |
2209 { | |
2210 int pos = marker_position (w->start); | |
2211 int total = ZV - BEGV; | |
2212 | |
2213 if (XFASTINT (w->window_end_pos) <= Z - ZV) | |
2214 { | |
2215 if (pos <= BEGV) | |
2216 return "All"; | |
2217 else | |
2218 return "Bottom"; | |
2219 } | |
2220 else if (pos <= BEGV) | |
2221 return "Top"; | |
2222 else | |
2223 { | |
2224 total = ((pos - BEGV) * 100 + total - 1) / total; | |
2225 /* We can't normally display a 3-digit number, | |
2226 so get us a 2-digit number that is close. */ | |
2227 if (total == 100) | |
2228 total = 99; | |
2229 sprintf (decode_mode_spec_buf, "%2d%%", total); | |
2230 return decode_mode_spec_buf; | |
2231 } | |
2232 } | |
2233 | |
2234 case '%': | |
2235 return "%"; | |
2236 | |
2237 case '[': | |
2238 { | |
2239 int i; | |
2240 char *p; | |
2241 | |
2242 if (command_loop_level > 5) | |
2243 return "[[[... "; | |
2244 p = decode_mode_spec_buf; | |
2245 for (i = 0; i < command_loop_level; i++) | |
2246 *p++ = '['; | |
2247 *p = 0; | |
2248 return decode_mode_spec_buf; | |
2249 } | |
2250 | |
2251 case ']': | |
2252 { | |
2253 int i; | |
2254 char *p; | |
2255 | |
2256 if (command_loop_level > 5) | |
2257 return " ...]]]"; | |
2258 p = decode_mode_spec_buf; | |
2259 for (i = 0; i < command_loop_level; i++) | |
2260 *p++ = ']'; | |
2261 *p = 0; | |
2262 return decode_mode_spec_buf; | |
2263 } | |
2264 | |
2265 case '-': | |
2266 { | |
2267 register char *p; | |
2268 register int i; | |
2269 | |
2270 if (maxwidth < sizeof (lots_of_dashes)) | |
2271 return lots_of_dashes; | |
2272 else | |
2273 { | |
2274 for (p = decode_mode_spec_buf, i = maxwidth; i > 0; i--) | |
2275 *p++ = '-'; | |
2276 *p = '\0'; | |
2277 } | |
2278 return decode_mode_spec_buf; | |
2279 } | |
2280 } | |
2281 | |
2282 if (XTYPE (obj) == Lisp_String) | |
2283 return (char *) XSTRING (obj)->data; | |
2284 else | |
2285 return ""; | |
2286 } | |
2287 | |
2288 /* Display STRING on one line of window W, starting at HPOS. | |
2289 Display at position VPOS. Caller should have done get_display_line. | |
1017
d42877206c0a
* xdisp.c (display_mode_line): Use x_implicitly_set_name here.
Jim Blandy <jimb@redhat.com>
parents:
973
diff
changeset
|
2290 If VPOS == -1, display it as the current frame's title. |
277 | 2291 |
2292 TRUNCATE is GLYPH to display at end if truncated. Zero for none. | |
2293 | |
2294 MINCOL is the first column ok to end at. (Pad with spaces to this col.) | |
2295 MAXCOL is the last column ok to end at. Truncate here. | |
2296 -1 for MINCOL or MAXCOL means no explicit minimum or maximum. | |
769 | 2297 Both count from the left edge of the frame, as does HPOS. |
277 | 2298 The right edge of W is an implicit maximum. |
2299 If TRUNCATE is nonzero, the implicit maximum is one column before the edge. | |
2300 | |
2301 Returns ending hpos */ | |
2302 | |
2303 static int | |
2304 display_string (w, vpos, string, hpos, truncate, mincol, maxcol) | |
2305 struct window *w; | |
2306 unsigned char *string; | |
2307 int vpos, hpos; | |
2308 GLYPH truncate; | |
2309 int mincol, maxcol; | |
2310 { | |
2311 register int c; | |
2312 register GLYPH *p1; | |
2313 int hscroll = XINT (w->hscroll); | |
1600
775c2ab9800f
* xdisp.c (display_string): Use w's buffer's value of
Jim Blandy <jimb@redhat.com>
parents:
1527
diff
changeset
|
2314 int tab_width = XINT (XBUFFER (w->buffer)->tab_width); |
277 | 2315 register GLYPH *start; |
2316 register GLYPH *end; | |
1785
19755499df90
* window.c (window_internal_width): New function, which accounts
Jim Blandy <jimb@redhat.com>
parents:
1718
diff
changeset
|
2317 FRAME_PTR f = XFRAME (WINDOW_FRAME (w)); |
19755499df90
* window.c (window_internal_width): New function, which accounts
Jim Blandy <jimb@redhat.com>
parents:
1718
diff
changeset
|
2318 struct frame_glyphs *desired_glyphs = FRAME_DESIRED_GLYPHS (f); |
277 | 2319 GLYPH *p1start = desired_glyphs->glyphs[vpos] + hpos; |
2320 int window_width = XFASTINT (w->width); | |
2321 | |
2322 /* Use the standard display table, not the window's display table. | |
2323 We don't want the mode line in rot13. */ | |
2324 register struct Lisp_Vector *dp = 0; | |
2325 | |
2326 if (XTYPE (Vstandard_display_table) == Lisp_Vector | |
2327 && XVECTOR (Vstandard_display_table)->size == DISP_TABLE_SIZE) | |
2328 dp = XVECTOR (Vstandard_display_table); | |
2329 | |
2330 if (tab_width <= 0 || tab_width > 20) tab_width = 8; | |
2331 | |
2332 p1 = p1start; | |
2333 start = desired_glyphs->glyphs[vpos] + XFASTINT (w->left); | |
2334 end = start + window_width - (truncate != 0); | |
2335 | |
1785
19755499df90
* window.c (window_internal_width): New function, which accounts
Jim Blandy <jimb@redhat.com>
parents:
1718
diff
changeset
|
2336 if ((window_width + XFASTINT (w->left)) != FRAME_WIDTH (f)) |
19755499df90
* window.c (window_internal_width): New function, which accounts
Jim Blandy <jimb@redhat.com>
parents:
1718
diff
changeset
|
2337 { |
1992
37c45885540a
* xdisp.c (redisplay): Protect calls to request_sigio and
Jim Blandy <jimb@redhat.com>
parents:
1873
diff
changeset
|
2338 if (FRAME_HAS_VERTICAL_SCROLL_BARS (f)) |
1785
19755499df90
* window.c (window_internal_width): New function, which accounts
Jim Blandy <jimb@redhat.com>
parents:
1718
diff
changeset
|
2339 { |
19755499df90
* window.c (window_internal_width): New function, which accounts
Jim Blandy <jimb@redhat.com>
parents:
1718
diff
changeset
|
2340 int i; |
19755499df90
* window.c (window_internal_width): New function, which accounts
Jim Blandy <jimb@redhat.com>
parents:
1718
diff
changeset
|
2341 |
1992
37c45885540a
* xdisp.c (redisplay): Protect calls to request_sigio and
Jim Blandy <jimb@redhat.com>
parents:
1873
diff
changeset
|
2342 for (i = 0; i < VERTICAL_SCROLL_BAR_WIDTH; i++) |
1785
19755499df90
* window.c (window_internal_width): New function, which accounts
Jim Blandy <jimb@redhat.com>
parents:
1718
diff
changeset
|
2343 *end-- = ' '; |
19755499df90
* window.c (window_internal_width): New function, which accounts
Jim Blandy <jimb@redhat.com>
parents:
1718
diff
changeset
|
2344 } |
19755499df90
* window.c (window_internal_width): New function, which accounts
Jim Blandy <jimb@redhat.com>
parents:
1718
diff
changeset
|
2345 else |
19755499df90
* window.c (window_internal_width): New function, which accounts
Jim Blandy <jimb@redhat.com>
parents:
1718
diff
changeset
|
2346 *end-- = '|'; |
19755499df90
* window.c (window_internal_width): New function, which accounts
Jim Blandy <jimb@redhat.com>
parents:
1718
diff
changeset
|
2347 } |
277 | 2348 |
2349 if (maxcol >= 0 && end - desired_glyphs->glyphs[vpos] > maxcol) | |
2350 end = desired_glyphs->glyphs[vpos] + maxcol; | |
2351 if (maxcol >= 0 && mincol > maxcol) | |
2352 mincol = maxcol; | |
2353 | |
2354 while (p1 < end) | |
2355 { | |
2356 c = *string++; | |
2357 if (!c) break; | |
2358 if (c >= 040 && c < 0177 | |
2065
32afcdd08efe
(copy_rope): Expect FROM to be a vector.
Richard M. Stallman <rms@gnu.org>
parents:
1992
diff
changeset
|
2359 && (dp == 0 || XTYPE (DISP_CHAR_VECTOR (dp, c)) != Lisp_Vector)) |
277 | 2360 { |
2361 if (p1 >= start) | |
2362 *p1 = c; | |
2363 p1++; | |
2364 } | |
2365 else if (c == '\t') | |
2366 { | |
2367 do | |
2368 { | |
2369 if (p1 >= start && p1 < end) | |
2370 *p1 = SPACEGLYPH; | |
2371 p1++; | |
2372 } | |
2373 while ((p1 - start + hscroll - (hscroll > 0)) % tab_width); | |
2374 } | |
2065
32afcdd08efe
(copy_rope): Expect FROM to be a vector.
Richard M. Stallman <rms@gnu.org>
parents:
1992
diff
changeset
|
2375 else if (dp != 0 && XTYPE (DISP_CHAR_VECTOR (dp, c)) == Lisp_Vector) |
32afcdd08efe
(copy_rope): Expect FROM to be a vector.
Richard M. Stallman <rms@gnu.org>
parents:
1992
diff
changeset
|
2376 p1 = copy_rope (p1, start, DISP_CHAR_VECTOR (dp, c)); |
1527
00109911b040
* xdisp.c (redisplay): Use ! EQ to compare the old and new arrow
Jim Blandy <jimb@redhat.com>
parents:
1446
diff
changeset
|
2377 else if (c < 0200 && ! NILP (buffer_defaults.ctl_arrow)) |
277 | 2378 { |
2379 if (p1 >= start) | |
2380 *p1 = (dp && XTYPE (DISP_CTRL_GLYPH (dp)) == Lisp_Int | |
2381 ? XINT (DISP_CTRL_GLYPH (dp)) : '^'); | |
2382 p1++; | |
368 | 2383 if (p1 >= start && p1 < end) |
277 | 2384 *p1 = c ^ 0100; |
2385 p1++; | |
2386 } | |
2387 else | |
2388 { | |
2389 if (p1 >= start) | |
2390 *p1 = (dp && XTYPE (DISP_ESCAPE_GLYPH (dp)) == Lisp_Int | |
2391 ? XINT (DISP_ESCAPE_GLYPH (dp)) : '\\'); | |
2392 p1++; | |
368 | 2393 if (p1 >= start && p1 < end) |
277 | 2394 *p1 = (c >> 6) + '0'; |
2395 p1++; | |
368 | 2396 if (p1 >= start && p1 < end) |
277 | 2397 *p1 = (7 & (c >> 3)) + '0'; |
2398 p1++; | |
368 | 2399 if (p1 >= start && p1 < end) |
277 | 2400 *p1 = (7 & c) + '0'; |
2401 p1++; | |
2402 } | |
2403 } | |
2404 | |
2405 if (c) | |
2406 { | |
2407 p1 = end; | |
2408 if (truncate) *p1++ = truncate; | |
2409 } | |
2410 else if (mincol >= 0) | |
2411 { | |
2412 end = desired_glyphs->glyphs[vpos] + mincol; | |
2413 while (p1 < end) | |
2414 *p1++ = SPACEGLYPH; | |
2415 } | |
2416 | |
2417 { | |
2418 register int len = p1 - desired_glyphs->glyphs[vpos]; | |
2419 | |
2420 if (len > desired_glyphs->used[vpos]) | |
2421 desired_glyphs->used[vpos] = len; | |
2422 desired_glyphs->glyphs[vpos][desired_glyphs->used[vpos]] = 0; | |
2423 | |
2424 return len; | |
2425 } | |
2426 } | |
2427 | |
2428 void | |
2429 syms_of_xdisp () | |
2430 { | |
2431 staticpro (&last_arrow_position); | |
2432 staticpro (&last_arrow_string); | |
2433 last_arrow_position = Qnil; | |
2434 last_arrow_string = Qnil; | |
2435 | |
2436 DEFVAR_LISP ("global-mode-string", &Vglobal_mode_string, | |
782
a6d00bdb2b60
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
781
diff
changeset
|
2437 "String (or mode line construct) included (normally) in `mode-line-format'."); |
277 | 2438 Vglobal_mode_string = Qnil; |
2439 | |
2440 DEFVAR_LISP ("overlay-arrow-position", &Voverlay_arrow_position, | |
2441 "Marker for where to display an arrow on top of the buffer text.\n\ | |
2442 This must be the beginning of a line in order to work.\n\ | |
2443 See also `overlay-arrow-string'."); | |
2444 Voverlay_arrow_position = Qnil; | |
2445 | |
2446 DEFVAR_LISP ("overlay-arrow-string", &Voverlay_arrow_string, | |
2447 "String to display as an arrow. See also `overlay-arrow-position'."); | |
2448 Voverlay_arrow_string = Qnil; | |
2449 | |
2450 DEFVAR_INT ("scroll-step", &scroll_step, | |
2451 "*The number of lines to try scrolling a window by when point moves out.\n\ | |
769 | 2452 If that fails to bring point back on frame, point is centered instead.\n\ |
2453 If this is zero, point is always centered after it moves off frame."); | |
277 | 2454 |
2455 DEFVAR_INT ("debug-end-pos", &debug_end_pos, "Don't ask"); | |
2456 | |
2457 DEFVAR_BOOL ("truncate-partial-width-windows", | |
2458 &truncate_partial_width_windows, | |
769 | 2459 "*Non-nil means truncate lines in all windows less than full frame wide."); |
277 | 2460 truncate_partial_width_windows = 1; |
2461 | |
2462 DEFVAR_BOOL ("mode-line-inverse-video", &mode_line_inverse_video, | |
2463 "*Non-nil means use inverse video for the mode line."); | |
2464 mode_line_inverse_video = 1; | |
2465 } | |
2466 | |
2467 /* initialize the window system */ | |
2468 init_xdisp () | |
2469 { | |
2470 Lisp_Object root_window; | |
2471 #ifndef COMPILER_REGISTER_BUG | |
2472 register | |
2473 #endif /* COMPILER_REGISTER_BUG */ | |
2474 struct window *mini_w; | |
2475 | |
2476 this_line_bufpos = 0; | |
2477 | |
2478 mini_w = XWINDOW (minibuf_window); | |
1017
d42877206c0a
* xdisp.c (display_mode_line): Use x_implicitly_set_name here.
Jim Blandy <jimb@redhat.com>
parents:
973
diff
changeset
|
2479 root_window = FRAME_ROOT_WINDOW (XFRAME (WINDOW_FRAME (mini_w))); |
277 | 2480 |
2481 echo_area_glyphs = 0; | |
2482 previous_echo_glyphs = 0; | |
2483 | |
2484 if (!noninteractive) | |
2485 { | |
769 | 2486 FRAME_PTR f = XFRAME (WINDOW_FRAME (XWINDOW (root_window))); |
277 | 2487 XFASTINT (XWINDOW (root_window)->top) = 0; |
769 | 2488 set_window_height (root_window, FRAME_HEIGHT (f) - 1, 0); |
2489 XFASTINT (mini_w->top) = FRAME_HEIGHT (f) - 1; | |
277 | 2490 set_window_height (minibuf_window, 1, 0); |
2491 | |
769 | 2492 XFASTINT (XWINDOW (root_window)->width) = FRAME_WIDTH (f); |
2493 XFASTINT (mini_w->width) = FRAME_WIDTH (f); | |
277 | 2494 } |
2495 } |