428
|
1 /* Display generation from window structure and buffer text.
|
|
2 Copyright (C) 1994, 1995, 1996 Board of Trustees, University of Illinois.
|
|
3 Copyright (C) 1995 Free Software Foundation, Inc.
|
771
|
4 Copyright (C) 1995, 1996, 2000, 2001, 2002 Ben Wing.
|
428
|
5 Copyright (C) 1995 Sun Microsystems, Inc.
|
|
6 Copyright (C) 1996 Chuck Thompson.
|
|
7
|
|
8 This file is part of XEmacs.
|
|
9
|
|
10 XEmacs is free software; you can redistribute it and/or modify it
|
|
11 under the terms of the GNU General Public License as published by the
|
|
12 Free Software Foundation; either version 2, or (at your option) any
|
|
13 later version.
|
|
14
|
|
15 XEmacs is distributed in the hope that it will be useful, but WITHOUT
|
|
16 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
17 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
|
18 for more details.
|
|
19
|
|
20 You should have received a copy of the GNU General Public License
|
|
21 along with XEmacs; see the file COPYING. If not, write to
|
|
22 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
23 Boston, MA 02111-1307, USA. */
|
|
24
|
|
25 /* Synched up with: Not in FSF. */
|
|
26
|
|
27 /* Author: Chuck Thompson */
|
|
28
|
|
29 /* Fixed up by Ben Wing for Mule */
|
|
30
|
|
31 /* This file has been Mule-ized. */
|
|
32
|
|
33 /*****************************************************************************
|
|
34 The Golden Rules of Redisplay
|
|
35
|
|
36 First: It Is Better To Be Correct Than Fast
|
|
37 Second: Thou Shalt Not Run Elisp From Within Redisplay
|
|
38 Third: It Is Better To Be Fast Than Not To Be
|
|
39 ****************************************************************************/
|
|
40
|
|
41 #include <config.h>
|
|
42 #include "lisp.h"
|
|
43
|
|
44 #include "buffer.h"
|
|
45 #include "commands.h"
|
|
46 #include "debug.h"
|
|
47 #include "device.h"
|
|
48 #include "elhash.h"
|
|
49 #include "extents.h"
|
|
50 #include "faces.h"
|
|
51 #include "frame.h"
|
|
52 #include "glyphs.h"
|
|
53 #include "gutter.h"
|
|
54 #include "insdel.h"
|
|
55 #include "menubar.h"
|
|
56 #include "objects.h"
|
|
57 #include "process.h"
|
|
58 #include "redisplay.h"
|
|
59 #include "toolbar.h"
|
|
60 #include "window.h"
|
|
61 #include "line-number.h"
|
|
62 #include "file-coding.h"
|
|
63
|
442
|
64 #include "sysfile.h"
|
|
65
|
428
|
66 #ifdef HAVE_TTY
|
|
67 #include "console-tty.h"
|
|
68 #endif /* HAVE_TTY */
|
|
69
|
|
70 /* Note: We have to be careful throughout this code to properly handle
|
665
|
71 and differentiate between Intbytes and Emchars.
|
|
72
|
|
73 Since strings are generally composed of Intbytes, I've taken the tack
|
|
74 that any contiguous set of Intbytes is called a "string", while
|
428
|
75 any contiguous set of Emchars is called an "array". */
|
|
76
|
|
77 /* Return value to indicate a failure by an add_*_rune routine to add
|
|
78 a rune, but no propagation information needs to be returned. */
|
|
79 #define ADD_FAILED (prop_block_dynarr *) 1
|
|
80
|
|
81 #define BEGIN_GLYPHS 0
|
|
82 #define END_GLYPHS 1
|
|
83 #define LEFT_GLYPHS 2
|
|
84 #define RIGHT_GLYPHS 3
|
|
85
|
|
86 #define VERTICAL_CLIP(w, display) \
|
442
|
87 ((WINDOW_TTY_P (w) | (!display && scroll_on_clipped_lines)) \
|
428
|
88 ? INT_MAX \
|
442
|
89 : vertical_clip)
|
428
|
90
|
|
91 /* The following structures are completely private to redisplay.c so
|
|
92 we put them here instead of in a header file, for modularity. */
|
|
93
|
826
|
94 /* NOTE: Bytexpos's not Charxpos's in this structure. */
|
428
|
95
|
|
96 typedef struct position_redisplay_data_type
|
|
97 {
|
|
98 /* This information is normally filled in by the create_*_block
|
|
99 routines and is used by the add_*_rune routines. */
|
|
100 Lisp_Object window;
|
|
101 /* if we are working with strings rather than buffers we need a
|
|
102 handle to the string */
|
|
103 Lisp_Object string;
|
|
104 struct device *d;
|
|
105 struct display_block *db;
|
|
106 struct display_line *dl;
|
|
107 Emchar ch; /* Character that is to be added. This is
|
|
108 used to communicate this information to
|
|
109 add_emchar_rune(). */
|
|
110 Lisp_Object last_charset; /* The charset of the previous character.
|
|
111 Used to optimize some lookups -- we
|
|
112 only have to do some things when
|
|
113 the charset changes. */
|
|
114 face_index last_findex; /* The face index of the previous character.
|
|
115 Needed to ensure the validity of the
|
|
116 last_charset optimization. */
|
|
117
|
|
118 int last_char_width; /* The width of the previous character. */
|
|
119 int font_is_bogus; /* If true, it means we couldn't instantiate
|
|
120 the font for this charset, so we substitute
|
|
121 ~'s from the ASCII charset. */
|
826
|
122 Bytexpos byte_charpos; /* Position of character we are processing. This
|
|
123 is a Bytexpos, meaning it refers to bytes (not
|
|
124 chars) and can refer to either buffers (1-based)
|
|
125 or strings (0-based). We need to be careful
|
|
126 when doing anything that references the text in
|
|
127 the buffer or string. */
|
|
128 Bytexpos byte_endpos; /* ????? Unknown, under-used. */
|
428
|
129 int pixpos;
|
|
130 int max_pixpos;
|
|
131 int blank_width; /* Width of the blank that is to be added.
|
|
132 This is used to communicate this information
|
|
133 to add_blank_rune().
|
|
134
|
|
135 This is also used rather cheesily to
|
|
136 communicate the width of the eol-cursor-size
|
|
137 blank that exists at the end of the line.
|
|
138 add_emchar_rune() is called cheesily with
|
|
139 the non-printing char '\n', which is stuck
|
|
140 in the output routines with its width being
|
|
141 BLANK_WIDTH. */
|
826
|
142 Bytexpos byte_cursor_charpos; /* This stores the buffer position of the
|
|
143 cursor. */
|
428
|
144 unsigned int cursor_type :3;
|
|
145 int cursor_x; /* rune block cursor is at */
|
|
146 int start_col; /* Number of character columns (each column has
|
|
147 a width of the default char width) that still
|
|
148 need to be skipped. This is used for horizontal
|
|
149 scrolling, where a certain number of columns
|
|
150 (those off the left side of the screen) need
|
|
151 to be skipped before anything is displayed. */
|
826
|
152 Bytexpos byte_start_col_enabled;
|
428
|
153 int start_col_xoffset; /* Number of pixels that still need to
|
819
|
154 be skipped. This is used for
|
|
155 horizontal scrolling of glyphs, where we want
|
|
156 to be able to scroll over part of the glyph. */
|
428
|
157
|
|
158 int hscroll_glyph_width_adjust; /* how much the width of the hscroll
|
|
159 glyph differs from space_width (w).
|
|
160 0 if no hscroll glyph was used,
|
|
161 i.e. the window is not scrolled
|
|
162 horizontally. Used in tab
|
|
163 calculations. */
|
|
164
|
|
165 /* Information about the face the text should be displayed in and
|
|
166 any begin-glyphs and end-glyphs. */
|
|
167 struct extent_fragment *ef;
|
|
168 face_index findex;
|
|
169
|
819
|
170 /* The height of a pixmap may either be predetermined if the user has set a
|
|
171 baseline value, or it may be dependent on whatever the line ascent and
|
|
172 descent values end up being, based just on font and pixmap-ascent
|
|
173 information. In the first case we can immediately update the values, thus
|
|
174 their inclusion here. In the last case we cannot determine the actual
|
|
175 contribution to the line height until we have finished laying out all text
|
|
176 on the line. Thus we propagate the max height of such pixmaps and do a
|
|
177 final calculation (in calculate_baseline()) after all text has been added
|
|
178 to the line. */
|
428
|
179 int new_ascent;
|
|
180 int new_descent;
|
|
181 int max_pixmap_height;
|
819
|
182 int need_baseline_computation;
|
|
183 int end_glyph_width; /* Well, it is the kitchen sink after all ... */
|
428
|
184
|
|
185 Lisp_Object result_str; /* String where we put the result of
|
|
186 generating a formatted string in the modeline. */
|
|
187 int is_modeline; /* Non-zero if we're generating the modeline. */
|
|
188 Charcount modeline_charpos; /* Number of chars used in result_str so far;
|
|
189 corresponds to bytepos. */
|
|
190 Bytecount bytepos; /* Number of bytes used in result_str so far.
|
|
191 We don't actually copy the bytes into result_str
|
|
192 until the end because we don't know how big the
|
|
193 string is going to be until then. */
|
|
194 } pos_data;
|
|
195
|
|
196 enum prop_type
|
|
197 {
|
|
198 PROP_STRING,
|
|
199 PROP_CHAR,
|
|
200 PROP_MINIBUF_PROMPT,
|
819
|
201 PROP_BLANK,
|
|
202 PROP_GLYPH
|
428
|
203 };
|
|
204
|
|
205 /* Data that should be propagated to the next line. Either a single
|
819
|
206 Emchar, a string of Intbyte's or a glyph.
|
428
|
207
|
|
208 The actual data that is propagated ends up as a Dynarr of these
|
|
209 blocks.
|
|
210
|
819
|
211 prop_blocks are used to indicate that data that was supposed to go
|
|
212 on the previous line couldn't actually be displayed. Generally this
|
|
213 shouldn't happen if we are clipping the end of lines. If we are
|
|
214 wrapping then we need to display the propagation data before moving
|
|
215 on. Its questionable whether we should wrap or clip glyphs in this
|
|
216 instance. Most e-lisp relies on clipping so we preserve this
|
|
217 behavior.
|
|
218
|
665
|
219 #### It's unclean that both Emchars and Intbytes are here.
|
428
|
220 */
|
|
221
|
|
222 typedef struct prop_block prop_block;
|
|
223 struct prop_block
|
|
224 {
|
|
225 enum prop_type type;
|
|
226
|
|
227 union data
|
|
228 {
|
|
229 struct
|
|
230 {
|
665
|
231 Intbyte *str;
|
428
|
232 Bytecount len; /* length of the string. */
|
|
233 } p_string;
|
|
234
|
|
235 struct
|
|
236 {
|
|
237 Emchar ch;
|
826
|
238 Bytebpos byte_cursor_charpos; /* NOTE: is in Bytebpos's */
|
428
|
239 unsigned int cursor_type :3;
|
|
240 } p_char;
|
|
241
|
|
242 struct
|
|
243 {
|
|
244 int width;
|
|
245 face_index findex;
|
|
246 } p_blank;
|
819
|
247
|
|
248 struct
|
|
249 {
|
|
250 /* Not used as yet, but could be used to wrap rather than clip glyphs. */
|
|
251 int width;
|
|
252 Lisp_Object glyph;
|
|
253 } p_glyph;
|
|
254
|
428
|
255 } data;
|
|
256 };
|
|
257
|
|
258 typedef struct
|
|
259 {
|
|
260 Dynarr_declare (prop_block);
|
|
261 } prop_block_dynarr;
|
|
262
|
|
263
|
|
264 static Charcount generate_fstring_runes (struct window *w, pos_data *data,
|
|
265 Charcount pos, Charcount min_pos,
|
|
266 Charcount max_pos, Lisp_Object elt,
|
|
267 int depth, int max_pixsize,
|
438
|
268 face_index findex, int type,
|
|
269 Charcount *offset,
|
|
270 Lisp_Object cur_ext);
|
428
|
271 static prop_block_dynarr *add_glyph_rune (pos_data *data,
|
|
272 struct glyph_block *gb,
|
|
273 int pos_type, int allow_cursor,
|
|
274 struct glyph_cachel *cachel);
|
665
|
275 static Bytebpos create_text_block (struct window *w, struct display_line *dl,
|
826
|
276 Bytebpos byte_start_pos,
|
|
277 prop_block_dynarr **prop,
|
|
278 int type);
|
428
|
279 static int create_overlay_glyph_block (struct window *w,
|
|
280 struct display_line *dl);
|
|
281 static void create_left_glyph_block (struct window *w,
|
|
282 struct display_line *dl,
|
|
283 int overlay_width);
|
|
284 static void create_right_glyph_block (struct window *w,
|
|
285 struct display_line *dl);
|
|
286 static void redisplay_windows (Lisp_Object window, int skip_selected);
|
|
287 static void decode_mode_spec (struct window *w, Emchar spec, int type);
|
|
288 static void free_display_line (struct display_line *dl);
|
826
|
289 static void update_line_start_cache (struct window *w, Charbpos from,
|
|
290 Charbpos to, Charbpos point,
|
|
291 int no_regen);
|
665
|
292 static int point_visible (struct window *w, Charbpos point, int type);
|
819
|
293 static void calculate_yoffset (struct display_line *dl,
|
|
294 struct display_block *fixup);
|
|
295 static void calculate_baseline (pos_data *data);
|
428
|
296
|
800
|
297 static void sledgehammer_check_redisplay_structs (void);
|
|
298
|
428
|
299 /* This used to be 10 but 30 seems to give much better performance. */
|
|
300 #define INIT_MAX_PREEMPTS 30
|
|
301 static int max_preempts;
|
|
302
|
|
303 #define REDISPLAY_PREEMPTION_CHECK \
|
|
304 ((void) \
|
|
305 (preempted = \
|
|
306 (!disable_preemption && \
|
|
307 ((preemption_count < max_preempts) || !NILP (Vexecuting_macro)) && \
|
|
308 (!INTERACTIVE || detect_input_pending ()))))
|
|
309
|
|
310 /*
|
|
311 * Redisplay global variables.
|
|
312 */
|
|
313
|
|
314 /* We need a third set of display structures for the cursor motion
|
|
315 routines. We used to just give each window a third set. However,
|
|
316 we always fully regenerate the structures when needed so there
|
|
317 isn't any reason we need more than a single set. */
|
|
318 display_line_dynarr *cmotion_display_lines;
|
|
319
|
|
320 /* We store the extents that we need to generate in a Dynarr and then
|
|
321 frob them all on at the end of generating the string. We do it
|
|
322 this way rather than adding them as we generate the string because
|
|
323 we don't store the text into the resulting string until we're done
|
|
324 (to avoid having to resize the string multiple times), and we don't
|
|
325 want to go around adding extents to a string when the extents might
|
|
326 stretch off the end of the string. */
|
|
327 static EXTENT_dynarr *formatted_string_extent_dynarr;
|
|
328 static Bytecount_dynarr *formatted_string_extent_start_dynarr;
|
|
329 static Bytecount_dynarr *formatted_string_extent_end_dynarr;
|
|
330
|
|
331
|
|
332 /* #### probably temporary */
|
458
|
333 Fixnum cache_adjustment;
|
428
|
334
|
|
335 /* This holds a string representing the text corresponding to a single
|
|
336 modeline % spec. */
|
665
|
337 static Intbyte_dynarr *mode_spec_intbyte_string;
|
428
|
338
|
|
339 int in_display; /* 1 if in redisplay. */
|
|
340
|
|
341 int disable_preemption; /* Used for debugging redisplay and for
|
|
342 force-redisplay. */
|
|
343
|
|
344 /* We only allow max_preempts preemptions before we force a redisplay. */
|
|
345 static int preemption_count;
|
|
346
|
|
347 /* Minimum pixel height of clipped bottom display line. */
|
458
|
348 Fixnum vertical_clip;
|
428
|
349
|
|
350 /* Minimum visible pixel width of clipped glyphs at right margin. */
|
458
|
351 Fixnum horizontal_clip;
|
428
|
352
|
|
353 /* Nonzero means reading single-character input with prompt
|
|
354 so put cursor on minibuffer after the prompt. */
|
|
355 int cursor_in_echo_area;
|
|
356 Lisp_Object Qcursor_in_echo_area;
|
|
357
|
|
358 /* Nonzero means truncate lines in all windows less wide than the frame */
|
|
359 int truncate_partial_width_windows;
|
|
360
|
|
361 /* non-nil if a buffer has changed since the last time redisplay completed */
|
|
362 int buffers_changed;
|
|
363 int buffers_changed_set;
|
|
364
|
|
365 /* non-nil if hscroll has changed somewhere or a buffer has been
|
|
366 narrowed or widened */
|
|
367 int clip_changed;
|
|
368 int clip_changed_set;
|
|
369
|
|
370 /* non-nil if any extent has changed since the last time redisplay completed */
|
|
371 int extents_changed;
|
|
372 int extents_changed_set;
|
|
373
|
|
374 /* non-nil if any face has changed since the last time redisplay completed */
|
|
375 int faces_changed;
|
|
376
|
|
377 /* Nonzero means some frames have been marked as garbaged */
|
|
378 int frame_changed;
|
|
379
|
|
380 /* non-zero if any of the builtin display glyphs (continuation,
|
|
381 hscroll, control-arrow, etc) is in need of updating
|
|
382 somewhere. */
|
|
383 int glyphs_changed;
|
|
384 int glyphs_changed_set;
|
|
385
|
442
|
386 /* non-zero if any subwindow has been deleted. */
|
428
|
387 int subwindows_changed;
|
|
388 int subwindows_changed_set;
|
|
389
|
|
390 /* non-zero if any displayed subwindow is in need of updating
|
|
391 somewhere. */
|
|
392 int subwindows_state_changed;
|
|
393 int subwindows_state_changed_set;
|
|
394
|
|
395 /* This variable is 1 if the icon has to be updated.
|
|
396 It is set to 1 when `frame-icon-glyph' changes. */
|
|
397 int icon_changed;
|
|
398 int icon_changed_set;
|
|
399
|
|
400 /* This variable is 1 if the menubar widget has to be updated.
|
|
401 It is set to 1 by set-menubar-dirty-flag and cleared when the widget
|
|
402 has been updated. */
|
|
403 int menubar_changed;
|
|
404 int menubar_changed_set;
|
|
405
|
|
406 /* true iff we should redraw the modelines on the next redisplay */
|
|
407 int modeline_changed;
|
|
408 int modeline_changed_set;
|
|
409
|
|
410 /* non-nil if point has changed in some buffer since the last time
|
|
411 redisplay completed */
|
|
412 int point_changed;
|
|
413 int point_changed_set;
|
|
414
|
|
415 /* non-nil if some frame has changed its size */
|
|
416 int size_changed;
|
|
417
|
|
418 /* non-nil if some device has signaled that it wants to change size */
|
|
419 int asynch_device_change_pending;
|
|
420
|
|
421 /* non-nil if any toolbar has changed */
|
|
422 int toolbar_changed;
|
|
423 int toolbar_changed_set;
|
|
424
|
|
425 /* non-nil if any gutter has changed */
|
|
426 int gutter_changed;
|
|
427 int gutter_changed_set;
|
|
428
|
|
429 /* non-nil if any window has changed since the last time redisplay completed */
|
|
430 int windows_changed;
|
|
431
|
|
432 /* non-nil if any frame's window structure has changed since the last
|
|
433 time redisplay completed */
|
|
434 int windows_structure_changed;
|
|
435
|
|
436 /* If non-nil, use vertical bar cursor. */
|
|
437 Lisp_Object Vbar_cursor;
|
|
438 Lisp_Object Qbar_cursor;
|
|
439
|
442
|
440 Lisp_Object Vvisible_bell; /* If true and the terminal will support it
|
|
441 then the frame will flash instead of
|
|
442 beeping when an error occurs */
|
428
|
443
|
|
444 /* Nonzero means no need to redraw the entire frame on resuming
|
|
445 a suspended Emacs. This is useful on terminals with multiple pages,
|
|
446 where one page is used for Emacs and another for all else. */
|
|
447 int no_redraw_on_reenter;
|
|
448
|
|
449 Lisp_Object Vwindow_system; /* nil or a symbol naming the window system
|
|
450 under which emacs is running
|
|
451 ('x is the only current possibility) */
|
|
452 Lisp_Object Vinitial_window_system;
|
|
453
|
|
454 Lisp_Object Vglobal_mode_string;
|
|
455
|
|
456 /* The number of lines scroll a window by when point leaves the window; if
|
|
457 it is <=0 then point is centered in the window */
|
458
|
458 Fixnum scroll_step;
|
428
|
459
|
|
460 /* Scroll up to this many lines, to bring point back on screen. */
|
458
|
461 Fixnum scroll_conservatively;
|
428
|
462
|
|
463 /* Marker for where to display an arrow on top of the buffer text. */
|
|
464 Lisp_Object Voverlay_arrow_position;
|
|
465 /* String to display for the arrow. */
|
|
466 Lisp_Object Voverlay_arrow_string;
|
|
467
|
|
468 Lisp_Object Vwindow_size_change_functions;
|
|
469 Lisp_Object Vwindow_scroll_functions;
|
|
470 Lisp_Object Qredisplay_end_trigger_functions, Vredisplay_end_trigger_functions;
|
|
471
|
442
|
472 Lisp_Object Qbuffer_list_changed_hook, Vbuffer_list_changed_hook;
|
|
473
|
|
474
|
428
|
475 #define INHIBIT_REDISPLAY_HOOKS /* #### Until we've thought about
|
|
476 this more. */
|
|
477 #ifndef INHIBIT_REDISPLAY_HOOKS
|
|
478 /* #### Chuck says: I think this needs more thought.
|
|
479 Think about this for 19.14. */
|
|
480 Lisp_Object Vpre_redisplay_hook, Vpost_redisplay_hook;
|
|
481 Lisp_Object Qpre_redisplay_hook, Qpost_redisplay_hook;
|
|
482 #endif /* INHIBIT_REDISPLAY_HOOKS */
|
|
483
|
458
|
484 static Fixnum last_display_warning_tick;
|
|
485 static Fixnum display_warning_tick;
|
428
|
486 Lisp_Object Qdisplay_warning_buffer;
|
|
487 int inhibit_warning_display;
|
|
488
|
|
489 Lisp_Object Vleft_margin_width, Vright_margin_width;
|
|
490 Lisp_Object Vminimum_line_ascent, Vminimum_line_descent;
|
|
491 Lisp_Object Vuse_left_overflow, Vuse_right_overflow;
|
|
492 Lisp_Object Vtext_cursor_visible_p;
|
|
493
|
|
494 int column_number_start_at_one;
|
|
495
|
442
|
496 Lisp_Object Qtop_bottom;
|
|
497
|
444
|
498 #define WINDOW_SCROLLED(w) ((w)->hscroll > 0 || (w)->left_xoffset)
|
428
|
499
|
|
500
|
|
501 /***************************************************************************/
|
|
502 /* */
|
|
503 /* low-level interfaces onto device routines */
|
|
504 /* */
|
|
505 /***************************************************************************/
|
|
506
|
|
507 static int
|
|
508 redisplay_text_width_emchar_string (struct window *w, int findex,
|
|
509 Emchar *str, Charcount len)
|
|
510 {
|
|
511 unsigned char charsets[NUM_LEADING_BYTES];
|
|
512 Lisp_Object window;
|
|
513
|
|
514 find_charsets_in_emchar_string (charsets, str, len);
|
793
|
515 window = wrap_window (w);
|
428
|
516 ensure_face_cachel_complete (WINDOW_FACE_CACHEL (w, findex), window,
|
|
517 charsets);
|
|
518 return DEVMETH (XDEVICE (FRAME_DEVICE (XFRAME (WINDOW_FRAME (w)))),
|
|
519 text_width, (XFRAME (WINDOW_FRAME (w)),
|
|
520 WINDOW_FACE_CACHEL (w, findex), str, len));
|
|
521 }
|
|
522
|
|
523 static Emchar_dynarr *rtw_emchar_dynarr;
|
|
524
|
|
525 int
|
|
526 redisplay_text_width_string (struct window *w, int findex,
|
665
|
527 Intbyte *nonreloc, Lisp_Object reloc,
|
428
|
528 Bytecount offset, Bytecount len)
|
|
529 {
|
|
530 if (!rtw_emchar_dynarr)
|
|
531 rtw_emchar_dynarr = Dynarr_new (Emchar);
|
|
532 Dynarr_reset (rtw_emchar_dynarr);
|
|
533
|
|
534 fixup_internal_substring (nonreloc, reloc, offset, &len);
|
|
535 if (STRINGP (reloc))
|
|
536 nonreloc = XSTRING_DATA (reloc);
|
665
|
537 convert_intbyte_string_into_emchar_dynarr (nonreloc, len, rtw_emchar_dynarr);
|
428
|
538 return redisplay_text_width_emchar_string
|
|
539 (w, findex, Dynarr_atp (rtw_emchar_dynarr, 0),
|
|
540 Dynarr_length (rtw_emchar_dynarr));
|
|
541 }
|
|
542
|
|
543 int
|
|
544 redisplay_frame_text_width_string (struct frame *f, Lisp_Object face,
|
665
|
545 Intbyte *nonreloc, Lisp_Object reloc,
|
428
|
546 Bytecount offset, Bytecount len)
|
|
547 {
|
|
548 unsigned char charsets[NUM_LEADING_BYTES];
|
|
549 Lisp_Object frame;
|
|
550 struct face_cachel cachel;
|
|
551
|
|
552 if (!rtw_emchar_dynarr)
|
|
553 rtw_emchar_dynarr = Dynarr_new (Emchar);
|
|
554 Dynarr_reset (rtw_emchar_dynarr);
|
|
555
|
|
556 fixup_internal_substring (nonreloc, reloc, offset, &len);
|
|
557 if (STRINGP (reloc))
|
|
558 nonreloc = XSTRING_DATA (reloc);
|
665
|
559 convert_intbyte_string_into_emchar_dynarr (nonreloc, len, rtw_emchar_dynarr);
|
|
560 find_charsets_in_intbyte_string (charsets, nonreloc, len);
|
428
|
561 reset_face_cachel (&cachel);
|
|
562 cachel.face = face;
|
793
|
563 frame = wrap_frame (f);
|
428
|
564 ensure_face_cachel_complete (&cachel, frame, charsets);
|
|
565 return DEVMETH (XDEVICE (FRAME_DEVICE (f)),
|
|
566 text_width, (f, &cachel, Dynarr_atp (rtw_emchar_dynarr, 0),
|
|
567 Dynarr_length (rtw_emchar_dynarr)));
|
|
568 }
|
|
569
|
|
570 /* Return the display block from DL of the given TYPE. A display line
|
|
571 can have only one display block of each possible type. If DL does
|
|
572 not have a block of type TYPE, one will be created and added to DL. */
|
|
573
|
|
574 struct display_block *
|
|
575 get_display_block_from_line (struct display_line *dl, enum display_type type)
|
|
576 {
|
|
577 int elt;
|
|
578 struct display_block db;
|
|
579
|
|
580 /* Check if this display line already has a block of the desired type and
|
|
581 if so, return it. */
|
|
582 if (dl->display_blocks)
|
|
583 {
|
|
584 for (elt = 0; elt < Dynarr_length (dl->display_blocks); elt++)
|
|
585 {
|
|
586 if (Dynarr_at (dl->display_blocks, elt).type == type)
|
|
587 return Dynarr_atp (dl->display_blocks, elt);
|
|
588 }
|
|
589
|
|
590 /* There isn't an active block of the desired type, but there
|
|
591 might still be allocated blocks we need to reuse. */
|
|
592 if (elt < Dynarr_largest (dl->display_blocks))
|
|
593 {
|
|
594 struct display_block *dbp = Dynarr_atp (dl->display_blocks, elt);
|
|
595
|
|
596 /* 'add' the block to the list */
|
|
597 Dynarr_increment (dl->display_blocks);
|
|
598
|
|
599 /* initialize and return */
|
|
600 dbp->type = type;
|
|
601 return dbp;
|
|
602 }
|
|
603 }
|
|
604 else
|
|
605 {
|
|
606 /* This line doesn't have any display blocks, so initialize the display
|
|
607 bock array. */
|
|
608 dl->display_blocks = Dynarr_new (display_block);
|
|
609 }
|
|
610
|
|
611 /* The line doesn't have a block of the desired type so go ahead and create
|
|
612 one and add it to the line. */
|
|
613 xzero (db);
|
|
614 db.type = type;
|
|
615 db.runes = Dynarr_new (rune);
|
|
616 Dynarr_add (dl->display_blocks, db);
|
|
617
|
|
618 /* Return the newly added display block. */
|
|
619 elt = Dynarr_length (dl->display_blocks) - 1;
|
|
620
|
|
621 return Dynarr_atp (dl->display_blocks, elt);
|
|
622 }
|
|
623
|
|
624 static int
|
|
625 tab_char_width (struct window *w)
|
|
626 {
|
|
627 struct buffer *b = XBUFFER (w->buffer);
|
|
628 int char_tab_width = XINT (b->tab_width);
|
|
629
|
|
630 if (char_tab_width <= 0 || char_tab_width > 1000) char_tab_width = 8;
|
|
631
|
|
632 return char_tab_width;
|
|
633 }
|
|
634
|
|
635 static int
|
|
636 space_width (struct window *w)
|
|
637 {
|
|
638 /* While tabs are traditional composed of spaces, for variable-width
|
|
639 fonts the space character tends to give too narrow a value. So
|
|
640 we use 'n' instead. Except that we don't. We use the default
|
|
641 character width for the default face. If this is actually
|
|
642 defined by the font then it is probably the best thing to
|
|
643 actually use. If it isn't, we have assumed it is 'n' and have
|
|
644 already calculated its width. Thus we can avoid a call to
|
|
645 XTextWidth on X frames by just querying the default width. */
|
|
646 return XFONT_INSTANCE
|
|
647 (WINDOW_FACE_CACHEL_FONT (w, DEFAULT_INDEX, Vcharset_ascii))->width;
|
|
648 }
|
|
649
|
|
650 static int
|
|
651 tab_pix_width (struct window *w)
|
|
652 {
|
|
653 return space_width (w) * tab_char_width (w);
|
|
654 }
|
|
655
|
|
656 /* Given a pixel position in a window, return the pixel location of
|
|
657 the next tabstop. Tabs are calculated from the left window edge in
|
|
658 terms of spaces displayed in the default face. Formerly the space
|
|
659 width was determined using the currently active face. That method
|
|
660 leads to tabstops which do not line up. */
|
|
661
|
|
662 static int
|
|
663 next_tab_position (struct window *w, int start_pixpos, int left_pixpos)
|
|
664 {
|
|
665 int n_pos = left_pixpos;
|
|
666 int pix_tab_width = tab_pix_width (w);
|
|
667
|
|
668 /* Adjust n_pos for any hscrolling which has happened. */
|
|
669 if (WINDOW_SCROLLED (w))
|
|
670 n_pos -= space_width (w) * (w->hscroll - 1) + w->left_xoffset;
|
|
671
|
|
672 while (n_pos <= start_pixpos)
|
|
673 n_pos += pix_tab_width;
|
|
674
|
|
675 return n_pos;
|
|
676 }
|
|
677
|
|
678 /* For the given window, calculate the outside and margin boundaries for a
|
|
679 display line. The whitespace boundaries must be calculated by the text
|
|
680 layout routines. */
|
|
681
|
|
682 layout_bounds
|
|
683 calculate_display_line_boundaries (struct window *w, int modeline)
|
|
684 {
|
|
685 layout_bounds bounds;
|
|
686
|
|
687 /* Set the outermost boundaries which are the boundaries of the
|
|
688 window itself minus the gutters (and minus the scrollbars if this
|
|
689 is for the modeline). */
|
|
690 if (!modeline)
|
|
691 {
|
|
692 bounds.left_out = WINDOW_TEXT_LEFT (w);
|
|
693 bounds.right_out = WINDOW_TEXT_RIGHT (w);
|
|
694 }
|
|
695 else
|
|
696 {
|
|
697 bounds.left_out = WINDOW_MODELINE_LEFT (w);
|
|
698 bounds.right_out = WINDOW_MODELINE_RIGHT (w);
|
|
699 }
|
|
700
|
|
701 /* The inner boundaries mark where the glyph margins are located. */
|
|
702 bounds.left_in = bounds.left_out + window_left_margin_width (w);
|
|
703 bounds.right_in = bounds.right_out - window_right_margin_width (w);
|
|
704
|
|
705 /* We cannot fully calculate the whitespace boundaries as they
|
|
706 depend on the contents of the line being displayed. */
|
|
707 bounds.left_white = bounds.left_in;
|
|
708 bounds.right_white = bounds.right_in;
|
|
709
|
|
710 return bounds;
|
|
711 }
|
|
712
|
819
|
713 /* This takes a display_block and its containing line and corrects the yoffset
|
|
714 of each glyph in the block to cater for the ascent of the line as a
|
|
715 whole. Must be called *after* the line-ascent is known! */
|
|
716
|
|
717 static void
|
|
718 calculate_yoffset (struct display_line *dl, struct display_block *fixup)
|
|
719 {
|
|
720 int i;
|
|
721 for (i=0; i<Dynarr_length (fixup->runes); i++)
|
|
722 {
|
|
723 struct rune *r = Dynarr_atp (fixup->runes,i);
|
|
724 if (r->type == RUNE_DGLYPH)
|
|
725 {
|
|
726 if (r->object.dglyph.ascent < dl->ascent)
|
|
727 r->object.dglyph.yoffset = dl->ascent - r->object.dglyph.ascent +
|
|
728 r->object.dglyph.descent;
|
|
729 }
|
|
730 }
|
|
731 }
|
|
732
|
|
733 /* Calculate the textual baseline (the ascent and descent values for the
|
|
734 display_line as a whole).
|
|
735
|
|
736 If the baseline is completely blank, or contains no manually positioned
|
|
737 glyphs, then the textual baseline is simply the baseline of the default font.
|
|
738 (The `contains no manually positioned glyphs' part is actually done for
|
|
739 us by `add_emchar_rune'.)
|
|
740
|
|
741 If the baseline contains pixmaps, and they're all manually positioned, then
|
|
742 the textual baseline location is constrained that way, and we need do no
|
|
743 work.
|
|
744
|
|
745 If the baseline contains pixmaps, and at least one is automatically
|
|
746 positioned, then the textual ascent is the largest ascent on the line, and
|
|
747 the textual descent is the largest descent (which is how things are set up at
|
|
748 entry to this function anyway): except that if the max_ascent + max_descent
|
|
749 is too small for the height of the line (say you've adjusted the baseline of
|
|
750 a short glyph, and there's a tall one next to it), then take the ascent and
|
|
751 descent for the line individually from the largest of the explicitly set
|
|
752 ascent/descent, and the rescaled ascent/descent of the default font, scaled
|
|
753 such that the largest glyph will fit.
|
|
754
|
|
755 This means that if you have a short glyph (but taller than the default
|
|
756 font's descent) forced right under the baseline, and a really tall
|
|
757 automatically positioned glyph, that the descent for the line is just big
|
|
758 enough for the manually positioned short glyph, and the tall one uses as
|
|
759 much of that space as the default font would were it as tall as the tall
|
|
760 glyph; but that the ascent is big enough for the tall glyph to fit.
|
|
761
|
|
762 This behaviour means that under no circumstances will changing the baseline
|
|
763 of a short glyph cause a tall glyph to move around; nor will it move the
|
|
764 textual baseline more than necessary. (Changing a tall glyph's baseline
|
|
765 might move the text's baseline arbitrarily, of course.) */
|
|
766
|
|
767 static void
|
|
768 calculate_baseline (pos_data *data)
|
|
769 {
|
|
770 /* Blank line: baseline is default font's baseline. */
|
|
771
|
|
772 if (!data->new_ascent && !data->new_descent)
|
|
773 {
|
|
774 /* We've got a blank line so initialize these values from the default
|
|
775 face. */
|
|
776 default_face_font_info (data->window, &data->new_ascent,
|
|
777 &data->new_descent, 0, 0, 0);
|
|
778 }
|
|
779
|
|
780 /* No automatically positioned glyphs? Return at once. */
|
|
781 if (!data->need_baseline_computation)
|
|
782 return;
|
|
783
|
|
784 /* Is the tallest glyph on the line automatically positioned?
|
|
785 If it's manually positioned, or it's automatically positioned
|
|
786 and there's enough room for it anyway, we need do no more work. */
|
|
787 if (data->max_pixmap_height > data->new_ascent + data->new_descent)
|
|
788 {
|
|
789 int default_font_ascent, default_font_descent, default_font_height;
|
|
790 int scaled_default_font_ascent, scaled_default_font_descent;
|
|
791
|
|
792 default_face_font_info (data->window, &default_font_ascent,
|
|
793 &default_font_descent, &default_font_height,
|
|
794 0, 0);
|
|
795
|
|
796 scaled_default_font_ascent = data->max_pixmap_height *
|
|
797 default_font_ascent / default_font_height;
|
|
798
|
|
799 data->new_ascent = max (data->new_ascent, scaled_default_font_ascent);
|
|
800
|
|
801 /* The ascent may have expanded now. Do we still need to grow the descent,
|
|
802 or are things big enough?
|
|
803
|
|
804 The +1 caters for the baseline row itself. */
|
|
805 if (data->max_pixmap_height > data->new_ascent + data->new_descent)
|
|
806 {
|
|
807 scaled_default_font_descent = (data->max_pixmap_height *
|
|
808 default_font_descent / default_font_height) + 1;
|
|
809
|
|
810 data->new_descent = max (data->new_descent, scaled_default_font_descent);
|
|
811 }
|
|
812 }
|
|
813 }
|
|
814
|
428
|
815 /* Given a display line and a starting position, ensure that the
|
|
816 contents of the display line accurately represent the visual
|
|
817 representation of the buffer contents starting from the given
|
|
818 position when displayed in the given window. The display line ends
|
|
819 when the contents of the line reach the right boundary of the given
|
|
820 window. */
|
|
821
|
665
|
822 static Charbpos
|
428
|
823 generate_display_line (struct window *w, struct display_line *dl, int bounds,
|
665
|
824 Charbpos start_pos, prop_block_dynarr **prop,
|
428
|
825 int type)
|
|
826 {
|
826
|
827 Charbpos ret_charpos;
|
428
|
828 int overlay_width;
|
|
829 struct buffer *b = XBUFFER (WINDOW_BUFFER (w));
|
|
830
|
|
831 /* If our caller hasn't already set the boundaries, then do so now. */
|
|
832 if (!bounds)
|
|
833 dl->bounds = calculate_display_line_boundaries (w, 0);
|
|
834
|
|
835 /* Reset what this line is using. */
|
|
836 if (dl->display_blocks)
|
|
837 Dynarr_reset (dl->display_blocks);
|
|
838 if (dl->left_glyphs)
|
|
839 {
|
|
840 Dynarr_free (dl->left_glyphs);
|
|
841 dl->left_glyphs = 0;
|
|
842 }
|
|
843 if (dl->right_glyphs)
|
|
844 {
|
|
845 Dynarr_free (dl->right_glyphs);
|
|
846 dl->right_glyphs = 0;
|
|
847 }
|
|
848
|
|
849 /* We aren't generating a modeline at the moment. */
|
|
850 dl->modeline = 0;
|
|
851
|
|
852 /* Create a display block for the text region of the line. */
|
|
853 {
|
|
854 /* #### urk urk urk!!! Chuck fix this shit! */
|
665
|
855 Bytebpos hacked_up_bytebpos =
|
|
856 create_text_block (w, dl, charbpos_to_bytebpos (b, start_pos),
|
428
|
857 prop, type);
|
826
|
858 if (hacked_up_bytebpos > BYTE_BUF_ZV (b))
|
|
859 ret_charpos = BUF_ZV (b) + 1;
|
428
|
860 else
|
826
|
861 ret_charpos = bytebpos_to_charbpos (b, hacked_up_bytebpos);
|
428
|
862 }
|
826
|
863 dl->charpos = start_pos;
|
|
864 if (dl->end_charpos < dl->charpos)
|
|
865 dl->end_charpos = dl->charpos;
|
428
|
866
|
|
867 if (MARKERP (Voverlay_arrow_position)
|
|
868 && EQ (w->buffer, Fmarker_buffer (Voverlay_arrow_position))
|
|
869 && start_pos == marker_position (Voverlay_arrow_position)
|
|
870 && (STRINGP (Voverlay_arrow_string)
|
|
871 || GLYPHP (Voverlay_arrow_string)))
|
|
872 {
|
|
873 overlay_width = create_overlay_glyph_block (w, dl);
|
|
874 }
|
|
875 else
|
|
876 overlay_width = 0;
|
|
877
|
|
878 /* If there are left glyphs associated with any character in the
|
|
879 text block, then create a display block to handle them. */
|
|
880 if (dl->left_glyphs != NULL && Dynarr_length (dl->left_glyphs))
|
|
881 create_left_glyph_block (w, dl, overlay_width);
|
|
882
|
|
883 /* If there are right glyphs associated with any character in the
|
|
884 text block, then create a display block to handle them. */
|
|
885 if (dl->right_glyphs != NULL && Dynarr_length (dl->right_glyphs))
|
|
886 create_right_glyph_block (w, dl);
|
|
887
|
|
888 /* In the future additional types of display blocks may be generated
|
|
889 here. */
|
|
890
|
826
|
891 w->last_redisplay_pos = ret_charpos;
|
|
892
|
|
893 return ret_charpos;
|
428
|
894 }
|
|
895
|
|
896 /* Adds an hscroll glyph to a display block. If this is called, then
|
|
897 the block had better be empty.
|
|
898
|
|
899 Yes, there are multiple places where this function is called but
|
|
900 that is the way it has to be. Each calling function has to deal
|
826
|
901 with byte_start_col_enabled a little differently depending on the
|
428
|
902 object being worked with. */
|
|
903
|
|
904 static prop_block_dynarr *
|
|
905 add_hscroll_rune (pos_data *data)
|
|
906 {
|
|
907 struct glyph_block gb;
|
|
908 prop_block_dynarr *retval;
|
826
|
909 Bytebpos byte_old_cursor_charpos = data->byte_cursor_charpos;
|
647
|
910 int old_cursor_type = data->cursor_type;
|
826
|
911 Bytebpos byte_old_charpos = data->byte_charpos;
|
428
|
912
|
|
913 if (data->cursor_type == CURSOR_ON
|
826
|
914 && data->byte_cursor_charpos >= data->byte_start_col_enabled
|
|
915 && data->byte_cursor_charpos <= data->byte_charpos)
|
|
916 {
|
|
917 data->byte_cursor_charpos = data->byte_start_col_enabled;
|
428
|
918 }
|
|
919 else
|
|
920 {
|
|
921 data->cursor_type = NO_CURSOR;
|
|
922 }
|
|
923
|
826
|
924 data->byte_endpos = data->byte_charpos;
|
|
925 data->byte_charpos = data->byte_start_col_enabled;
|
428
|
926
|
|
927 gb.extent = Qnil;
|
|
928 gb.glyph = Vhscroll_glyph;
|
|
929 {
|
|
930 int oldpixpos = data->pixpos;
|
442
|
931 retval = add_glyph_rune (data, &gb, BEGIN_GLYPHS, 0,
|
428
|
932 GLYPH_CACHEL (XWINDOW (data->window),
|
|
933 HSCROLL_GLYPH_INDEX));
|
|
934 data->hscroll_glyph_width_adjust =
|
|
935 data->pixpos - oldpixpos - space_width (XWINDOW (data->window));
|
|
936 }
|
826
|
937 data->byte_endpos = 0;
|
|
938 data->byte_cursor_charpos = byte_old_cursor_charpos;
|
428
|
939 data->cursor_type = old_cursor_type;
|
826
|
940 data->byte_charpos = byte_old_charpos;
|
|
941
|
|
942 data->byte_start_col_enabled = 0;
|
428
|
943 return retval;
|
|
944 }
|
|
945
|
793
|
946 /* Adds a character rune to a display block. If there is not enough room
|
|
947 to fit the rune on the display block (as determined by the MAX_PIXPOS)
|
|
948 then it adds nothing and returns ADD_FAILED. If
|
|
949 NO_CONTRIBUTE_TO_LINE_HEIGHT is non-zero, don't allow the char's height
|
|
950 to affect the total line height. (See add_intbyte_string_runes()). */
|
428
|
951
|
|
952 static prop_block_dynarr *
|
793
|
953 add_emchar_rune_1 (pos_data *data, int no_contribute_to_line_height)
|
428
|
954 {
|
|
955 struct rune rb, *crb;
|
|
956 int width, local;
|
|
957
|
|
958 if (data->start_col)
|
|
959 {
|
|
960 data->start_col--;
|
|
961
|
|
962 if (data->start_col)
|
|
963 return NULL;
|
|
964 }
|
|
965
|
826
|
966 if (data->byte_start_col_enabled)
|
428
|
967 {
|
|
968 return add_hscroll_rune (data);
|
|
969 }
|
|
970
|
|
971 if (data->ch == '\n')
|
|
972 {
|
|
973 data->font_is_bogus = 0;
|
|
974 /* Cheesy end-of-line pseudo-character. */
|
|
975 width = data->blank_width;
|
|
976 }
|
|
977 else
|
|
978 {
|
826
|
979 Lisp_Object charset = emchar_charset (data->ch);
|
428
|
980 if (!EQ (charset, data->last_charset) ||
|
|
981 data->findex != data->last_findex)
|
|
982 {
|
|
983 /* OK, we need to do things the hard way. */
|
|
984 struct window *w = XWINDOW (data->window);
|
|
985 struct face_cachel *cachel = WINDOW_FACE_CACHEL (w, data->findex);
|
|
986 Lisp_Object font_instance =
|
|
987 ensure_face_cachel_contains_charset (cachel, data->window,
|
|
988 charset);
|
440
|
989 Lisp_Font_Instance *fi;
|
428
|
990
|
|
991 if (EQ (font_instance, Vthe_null_font_instance))
|
|
992 {
|
|
993 font_instance = FACE_CACHEL_FONT (cachel, Vcharset_ascii);
|
|
994 data->font_is_bogus = 1;
|
|
995 }
|
|
996 else
|
|
997 data->font_is_bogus = 0;
|
|
998
|
|
999 fi = XFONT_INSTANCE (font_instance);
|
771
|
1000 if (!fi->proportional_p || data->font_is_bogus)
|
|
1001 {
|
|
1002 Emchar ch = data->font_is_bogus ? '~' : data->ch;
|
|
1003
|
|
1004 data->last_char_width =
|
|
1005 redisplay_text_width_emchar_string (XWINDOW (data->window),
|
|
1006 data->findex, &ch, 1);
|
|
1007 }
|
428
|
1008 else
|
|
1009 data->last_char_width = -1;
|
819
|
1010
|
793
|
1011 if (!no_contribute_to_line_height)
|
|
1012 {
|
|
1013 data->new_ascent = max (data->new_ascent, (int) fi->ascent);
|
|
1014 data->new_descent = max (data->new_descent, (int) fi->descent);
|
|
1015 }
|
819
|
1016
|
428
|
1017 data->last_charset = charset;
|
|
1018 data->last_findex = data->findex;
|
|
1019 }
|
|
1020
|
|
1021 width = data->last_char_width;
|
771
|
1022 if (width < 0) /* proportional fonts */
|
|
1023 width = redisplay_text_width_emchar_string (XWINDOW (data->window),
|
|
1024 data->findex,
|
|
1025 &data->ch, 1);
|
428
|
1026 }
|
|
1027
|
|
1028 if (data->max_pixpos != -1 && (data->pixpos + width > data->max_pixpos))
|
|
1029 {
|
|
1030 return ADD_FAILED;
|
|
1031 }
|
|
1032
|
|
1033 if (Dynarr_length (data->db->runes) < Dynarr_largest (data->db->runes))
|
|
1034 {
|
|
1035 crb = Dynarr_atp (data->db->runes, Dynarr_length (data->db->runes));
|
|
1036 local = 0;
|
|
1037 }
|
|
1038 else
|
|
1039 {
|
|
1040 crb = &rb;
|
|
1041 local = 1;
|
|
1042 }
|
|
1043
|
|
1044 crb->findex = data->findex;
|
|
1045 crb->xpos = data->pixpos;
|
|
1046 crb->width = width;
|
826
|
1047 if (data->byte_charpos)
|
428
|
1048 {
|
|
1049 if (NILP (data->string))
|
826
|
1050 crb->charpos =
|
793
|
1051 bytebpos_to_charbpos (XBUFFER (WINDOW_BUFFER
|
|
1052 (XWINDOW (data->window))),
|
826
|
1053 data->byte_charpos);
|
428
|
1054 else
|
826
|
1055 crb->charpos =
|
|
1056 string_index_byte_to_char (data->string, data->byte_charpos);
|
428
|
1057 }
|
|
1058 else if (data->is_modeline)
|
826
|
1059 crb->charpos = data->modeline_charpos;
|
428
|
1060 else
|
442
|
1061 /* Text but not in buffer */
|
826
|
1062 crb->charpos = 0;
|
428
|
1063 crb->type = RUNE_CHAR;
|
|
1064 crb->object.chr.ch = data->font_is_bogus ? '~' : data->ch;
|
|
1065 crb->endpos = 0;
|
|
1066
|
|
1067 if (data->cursor_type == CURSOR_ON)
|
|
1068 {
|
826
|
1069 if (data->byte_charpos == data->byte_cursor_charpos)
|
428
|
1070 {
|
|
1071 crb->cursor_type = CURSOR_ON;
|
|
1072 data->cursor_x = Dynarr_length (data->db->runes);
|
|
1073 }
|
|
1074 else
|
|
1075 crb->cursor_type = CURSOR_OFF;
|
|
1076 }
|
|
1077 else if (data->cursor_type == NEXT_CURSOR)
|
|
1078 {
|
|
1079 crb->cursor_type = CURSOR_ON;
|
|
1080 data->cursor_x = Dynarr_length (data->db->runes);
|
|
1081 data->cursor_type = NO_CURSOR;
|
|
1082 }
|
|
1083 else if (data->cursor_type == IGNORE_CURSOR)
|
|
1084 crb->cursor_type = IGNORE_CURSOR;
|
|
1085 else
|
|
1086 crb->cursor_type = CURSOR_OFF;
|
|
1087
|
|
1088 if (local)
|
|
1089 Dynarr_add (data->db->runes, *crb);
|
|
1090 else
|
|
1091 Dynarr_increment (data->db->runes);
|
|
1092
|
|
1093 data->pixpos += width;
|
|
1094
|
|
1095 return NULL;
|
|
1096 }
|
|
1097
|
793
|
1098 static prop_block_dynarr *
|
|
1099 add_emchar_rune (pos_data *data)
|
|
1100 {
|
|
1101 return add_emchar_rune_1 (data, 0);
|
|
1102 }
|
|
1103
|
|
1104 /* Given a string C_STRING of length C_LENGTH, call add_emchar_rune for
|
|
1105 each character in the string. Propagate any left-over data unless
|
|
1106 NO_PROP is non-zero. If NO_CONTRIBUTE_TO_LINE_HEIGHT is non-zero, don't
|
|
1107 allow this character to increase the total height of the line. (This is
|
|
1108 used when the character is part of a text glyph. In that case, the
|
|
1109 glyph code itself adjusts the line height as necessary, depending on
|
|
1110 whether glyph-contrib-p is true.) */
|
428
|
1111
|
|
1112 static prop_block_dynarr *
|
665
|
1113 add_intbyte_string_runes (pos_data *data, Intbyte *c_string,
|
793
|
1114 Bytecount c_length, int no_prop,
|
|
1115 int no_contribute_to_line_height)
|
428
|
1116 {
|
665
|
1117 Intbyte *pos, *end = c_string + c_length;
|
428
|
1118 prop_block_dynarr *prop;
|
|
1119
|
|
1120 /* #### This function is too simplistic. It needs to do the same
|
|
1121 sort of character interpretation (display-table lookup,
|
|
1122 ctl-arrow checking), etc. that create_text_block() does.
|
|
1123 The functionality to do this in that routine needs to be
|
|
1124 modularized. */
|
|
1125
|
|
1126 for (pos = c_string; pos < end;)
|
|
1127 {
|
665
|
1128 Intbyte *old_pos = pos;
|
464
|
1129
|
428
|
1130 data->ch = charptr_emchar (pos);
|
|
1131
|
793
|
1132 prop = add_emchar_rune_1 (data, no_contribute_to_line_height);
|
428
|
1133
|
|
1134 if (prop)
|
|
1135 {
|
|
1136 if (no_prop)
|
|
1137 return ADD_FAILED;
|
|
1138 else
|
|
1139 {
|
|
1140 struct prop_block pb;
|
|
1141 Bytecount len = end - pos;
|
|
1142 prop = Dynarr_new (prop_block);
|
|
1143
|
|
1144 pb.type = PROP_STRING;
|
665
|
1145 pb.data.p_string.str = xnew_array (Intbyte, len);
|
428
|
1146 strncpy ((char *) pb.data.p_string.str, (char *) pos, len);
|
|
1147 pb.data.p_string.len = len;
|
|
1148
|
|
1149 Dynarr_add (prop, pb);
|
|
1150 return prop;
|
|
1151 }
|
|
1152 }
|
|
1153 INC_CHARPTR (pos);
|
|
1154 assert (pos <= end);
|
464
|
1155 /* #### Duplicate code from add_string_to_fstring_db_runes
|
|
1156 should we do more?*/
|
|
1157 data->bytepos += pos - old_pos;
|
428
|
1158 }
|
|
1159
|
|
1160 return NULL;
|
|
1161 }
|
|
1162
|
|
1163 /* Add a single rune of the specified width. The area covered by this
|
|
1164 rune will be displayed in the foreground color of the associated
|
|
1165 face. */
|
|
1166
|
|
1167 static prop_block_dynarr *
|
|
1168 add_blank_rune (pos_data *data, struct window *w, int char_tab_width)
|
|
1169 {
|
|
1170 struct rune rb;
|
|
1171
|
|
1172 /* If data->start_col is not 0 then this call to add_blank_rune must have
|
|
1173 been to add it as a tab. */
|
|
1174 if (data->start_col)
|
|
1175 {
|
|
1176 /* assert (w != NULL) */
|
|
1177 prop_block_dynarr *retval;
|
|
1178
|
|
1179 /* If we have still not fully scrolled horizontally, subtract
|
|
1180 the width of this tab and return. */
|
|
1181 if (char_tab_width < data->start_col)
|
|
1182 {
|
|
1183 data->start_col -= char_tab_width;
|
|
1184 return NULL;
|
|
1185 }
|
|
1186 else if (char_tab_width == data->start_col)
|
|
1187 data->blank_width = 0;
|
|
1188 else
|
|
1189 {
|
|
1190 int spcwid = space_width (w);
|
|
1191
|
|
1192 if (spcwid >= data->blank_width)
|
|
1193 data->blank_width = 0;
|
|
1194 else
|
|
1195 data->blank_width -= spcwid;
|
|
1196 }
|
|
1197
|
|
1198 data->start_col = 0;
|
|
1199 retval = add_hscroll_rune (data);
|
|
1200
|
|
1201 /* Could be caused by the handling of the hscroll rune. */
|
|
1202 if (retval != NULL || !data->blank_width)
|
|
1203 return retval;
|
|
1204 }
|
|
1205
|
|
1206 /* Blank runes are always calculated to fit. */
|
|
1207 assert (data->pixpos + data->blank_width <= data->max_pixpos);
|
|
1208
|
|
1209 rb.findex = data->findex;
|
|
1210 rb.xpos = data->pixpos;
|
|
1211 rb.width = data->blank_width;
|
826
|
1212 if (data->byte_charpos)
|
|
1213 rb.charpos =
|
665
|
1214 bytebpos_to_charbpos (XBUFFER (WINDOW_BUFFER (XWINDOW (data->window))),
|
826
|
1215 data->byte_charpos);
|
428
|
1216 else
|
|
1217 /* #### and this is really correct too? */
|
826
|
1218 rb.charpos = 0;
|
428
|
1219 rb.endpos = 0;
|
|
1220 rb.type = RUNE_BLANK;
|
|
1221
|
|
1222 if (data->cursor_type == CURSOR_ON)
|
|
1223 {
|
826
|
1224 if (data->byte_charpos == data->byte_cursor_charpos)
|
428
|
1225 {
|
|
1226 rb.cursor_type = CURSOR_ON;
|
|
1227 data->cursor_x = Dynarr_length (data->db->runes);
|
|
1228 }
|
|
1229 else
|
|
1230 rb.cursor_type = CURSOR_OFF;
|
|
1231 }
|
|
1232 else if (data->cursor_type == NEXT_CURSOR)
|
|
1233 {
|
|
1234 rb.cursor_type = CURSOR_ON;
|
|
1235 data->cursor_x = Dynarr_length (data->db->runes);
|
|
1236 data->cursor_type = NO_CURSOR;
|
|
1237 }
|
|
1238 else
|
|
1239 rb.cursor_type = CURSOR_OFF;
|
|
1240
|
|
1241 Dynarr_add (data->db->runes, rb);
|
|
1242 data->pixpos += data->blank_width;
|
|
1243
|
|
1244 return NULL;
|
|
1245 }
|
|
1246
|
|
1247 /* Add runes representing a character in octal. */
|
|
1248
|
|
1249 #define ADD_NEXT_OCTAL_RUNE_CHAR do \
|
|
1250 { \
|
|
1251 if (add_failed || (add_failed = add_emchar_rune (data))) \
|
|
1252 { \
|
|
1253 struct prop_block pb; \
|
|
1254 if (!prop) \
|
|
1255 prop = Dynarr_new (prop_block); \
|
|
1256 \
|
|
1257 pb.type = PROP_CHAR; \
|
|
1258 pb.data.p_char.ch = data->ch; \
|
|
1259 pb.data.p_char.cursor_type = data->cursor_type; \
|
|
1260 Dynarr_add (prop, pb); \
|
|
1261 } \
|
|
1262 } while (0)
|
|
1263
|
|
1264 static prop_block_dynarr *
|
|
1265 add_octal_runes (pos_data *data)
|
|
1266 {
|
819
|
1267 prop_block_dynarr *add_failed, *prop = 0;
|
428
|
1268 Emchar orig_char = data->ch;
|
647
|
1269 int orig_cursor_type = data->cursor_type;
|
428
|
1270
|
|
1271 /* Initialize */
|
|
1272 add_failed = NULL;
|
|
1273
|
|
1274 if (data->start_col)
|
|
1275 data->start_col--;
|
|
1276
|
|
1277 if (!data->start_col)
|
|
1278 {
|
826
|
1279 if (data->byte_start_col_enabled)
|
428
|
1280 {
|
|
1281 add_failed = add_hscroll_rune (data);
|
|
1282 }
|
|
1283 else
|
|
1284 {
|
|
1285 struct glyph_block gb;
|
|
1286 struct window *w = XWINDOW (data->window);
|
|
1287
|
|
1288 gb.extent = Qnil;
|
|
1289 gb.glyph = Voctal_escape_glyph;
|
|
1290 add_failed =
|
|
1291 add_glyph_rune (data, &gb, BEGIN_GLYPHS, 1,
|
|
1292 GLYPH_CACHEL (w, OCT_ESC_GLYPH_INDEX));
|
|
1293 }
|
|
1294 }
|
|
1295
|
|
1296 /* We only propagate information if the glyph was partially
|
|
1297 added. */
|
|
1298 if (add_failed)
|
|
1299 return add_failed;
|
|
1300
|
|
1301 data->cursor_type = IGNORE_CURSOR;
|
|
1302
|
|
1303 if (data->ch >= 0x100)
|
|
1304 {
|
|
1305 /* If the character is an extended Mule character, it could have
|
|
1306 up to 19 bits. For the moment, we treat it as a seven-digit
|
|
1307 octal number. This is not that pretty, but whatever. */
|
|
1308 data->ch = (7 & (orig_char >> 18)) + '0';
|
|
1309 ADD_NEXT_OCTAL_RUNE_CHAR;
|
|
1310
|
|
1311 data->ch = (7 & (orig_char >> 15)) + '0';
|
|
1312 ADD_NEXT_OCTAL_RUNE_CHAR;
|
|
1313
|
|
1314 data->ch = (7 & (orig_char >> 12)) + '0';
|
|
1315 ADD_NEXT_OCTAL_RUNE_CHAR;
|
|
1316
|
|
1317 data->ch = (7 & (orig_char >> 9)) + '0';
|
|
1318 ADD_NEXT_OCTAL_RUNE_CHAR;
|
|
1319 }
|
|
1320
|
|
1321 data->ch = (7 & (orig_char >> 6)) + '0';
|
|
1322 ADD_NEXT_OCTAL_RUNE_CHAR;
|
|
1323
|
|
1324 data->ch = (7 & (orig_char >> 3)) + '0';
|
|
1325 ADD_NEXT_OCTAL_RUNE_CHAR;
|
|
1326
|
|
1327 data->ch = (7 & orig_char) + '0';
|
|
1328 ADD_NEXT_OCTAL_RUNE_CHAR;
|
|
1329
|
|
1330 data->cursor_type = orig_cursor_type;
|
819
|
1331 return NULL;
|
428
|
1332 }
|
|
1333
|
|
1334 #undef ADD_NEXT_OCTAL_RUNE_CHAR
|
|
1335
|
|
1336 /* Add runes representing a control character to a display block. */
|
|
1337
|
|
1338 static prop_block_dynarr *
|
|
1339 add_control_char_runes (pos_data *data, struct buffer *b)
|
|
1340 {
|
|
1341 if (!NILP (b->ctl_arrow))
|
|
1342 {
|
|
1343 prop_block_dynarr *prop;
|
|
1344 Emchar orig_char = data->ch;
|
647
|
1345 int old_cursor_type = data->cursor_type;
|
428
|
1346
|
|
1347 /* Initialize */
|
|
1348 prop = NULL;
|
|
1349
|
|
1350 if (data->start_col)
|
|
1351 data->start_col--;
|
|
1352
|
|
1353 if (!data->start_col)
|
|
1354 {
|
826
|
1355 if (data->byte_start_col_enabled)
|
428
|
1356 {
|
|
1357 prop_block_dynarr *retval;
|
|
1358
|
|
1359 retval = add_hscroll_rune (data);
|
|
1360 if (retval)
|
|
1361 return retval;
|
|
1362 }
|
|
1363 else
|
|
1364 {
|
|
1365 struct glyph_block gb;
|
|
1366 struct window *w = XWINDOW (data->window);
|
|
1367
|
|
1368 gb.extent = Qnil;
|
|
1369 gb.glyph = Vcontrol_arrow_glyph;
|
|
1370
|
|
1371 /* We only propagate information if the glyph was partially
|
|
1372 added. */
|
|
1373 if (add_glyph_rune (data, &gb, BEGIN_GLYPHS, 1,
|
|
1374 GLYPH_CACHEL (w, CONTROL_GLYPH_INDEX)))
|
|
1375 return ADD_FAILED;
|
|
1376 }
|
|
1377 }
|
|
1378
|
|
1379 if (orig_char == 0177)
|
|
1380 data->ch = '?';
|
|
1381 else
|
|
1382 data->ch = orig_char ^ 0100;
|
|
1383 data->cursor_type = IGNORE_CURSOR;
|
|
1384
|
|
1385 if (add_emchar_rune (data))
|
|
1386 {
|
|
1387 struct prop_block pb;
|
|
1388 if (!prop)
|
|
1389 prop = Dynarr_new (prop_block);
|
|
1390
|
|
1391 pb.type = PROP_CHAR;
|
|
1392 pb.data.p_char.ch = data->ch;
|
|
1393 pb.data.p_char.cursor_type = data->cursor_type;
|
|
1394 Dynarr_add (prop, pb);
|
|
1395 }
|
|
1396
|
|
1397 data->cursor_type = old_cursor_type;
|
|
1398 return prop;
|
|
1399 }
|
|
1400 else
|
|
1401 {
|
|
1402 return add_octal_runes (data);
|
|
1403 }
|
|
1404 }
|
|
1405
|
|
1406 static prop_block_dynarr *
|
|
1407 add_disp_table_entry_runes_1 (pos_data *data, Lisp_Object entry)
|
|
1408 {
|
|
1409 prop_block_dynarr *prop = NULL;
|
|
1410
|
|
1411 if (STRINGP (entry))
|
|
1412 {
|
665
|
1413 prop = add_intbyte_string_runes (data,
|
428
|
1414 XSTRING_DATA (entry),
|
|
1415 XSTRING_LENGTH (entry),
|
793
|
1416 0, 0);
|
428
|
1417 }
|
|
1418 else if (GLYPHP (entry))
|
|
1419 {
|
|
1420 if (data->start_col)
|
|
1421 data->start_col--;
|
|
1422
|
826
|
1423 if (!data->start_col && data->byte_start_col_enabled)
|
428
|
1424 {
|
|
1425 prop = add_hscroll_rune (data);
|
|
1426 }
|
|
1427 else
|
|
1428 {
|
|
1429 struct glyph_block gb;
|
|
1430
|
|
1431 gb.glyph = entry;
|
|
1432 gb.extent = Qnil;
|
|
1433 prop = add_glyph_rune (data, &gb, BEGIN_GLYPHS, 0, 0);
|
|
1434 }
|
|
1435 }
|
|
1436 else if (CHAR_OR_CHAR_INTP (entry))
|
|
1437 {
|
|
1438 data->ch = XCHAR_OR_CHAR_INT (entry);
|
|
1439 prop = add_emchar_rune (data);
|
|
1440 }
|
|
1441 else if (CONSP (entry))
|
|
1442 {
|
|
1443 if (EQ (XCAR (entry), Qformat)
|
|
1444 && CONSP (XCDR (entry))
|
|
1445 && STRINGP (XCAR (XCDR (entry))))
|
|
1446 {
|
|
1447 Lisp_Object format = XCAR (XCDR (entry));
|
665
|
1448 Bytebpos len = XSTRING_LENGTH (format);
|
|
1449 Intbyte *src = XSTRING_DATA (format), *end = src + len;
|
|
1450 Intbyte *result = alloca_array (Intbyte, len);
|
|
1451 Intbyte *dst = result;
|
428
|
1452
|
|
1453 while (src < end)
|
|
1454 {
|
|
1455 Emchar c = charptr_emchar (src);
|
|
1456 INC_CHARPTR (src);
|
|
1457 if (c != '%' || src == end)
|
|
1458 dst += set_charptr_emchar (dst, c);
|
|
1459 else
|
|
1460 {
|
|
1461 c = charptr_emchar (src);
|
|
1462 INC_CHARPTR (src);
|
|
1463 switch (c)
|
|
1464 {
|
|
1465 /*case 'x':
|
|
1466 dst += long_to_string_base ((char *)dst, data->ch, 16);
|
|
1467 break;*/
|
|
1468 case '%':
|
|
1469 dst += set_charptr_emchar (dst, '%');
|
|
1470 break;
|
442
|
1471 /* #### unimplemented */
|
428
|
1472 }
|
|
1473 }
|
|
1474 }
|
793
|
1475 prop = add_intbyte_string_runes (data, result, dst - result, 0, 0);
|
428
|
1476 }
|
|
1477 }
|
|
1478
|
|
1479 /* Else blow it off because someone added a bad entry and we don't
|
|
1480 have any safe way of signaling an error. */
|
|
1481 return prop;
|
|
1482 }
|
|
1483
|
|
1484 /* Given a display table entry, call the appropriate functions to
|
|
1485 display each element of the entry. */
|
|
1486
|
|
1487 static prop_block_dynarr *
|
|
1488 add_disp_table_entry_runes (pos_data *data, Lisp_Object entry)
|
|
1489 {
|
|
1490 prop_block_dynarr *prop = NULL;
|
|
1491 if (VECTORP (entry))
|
|
1492 {
|
440
|
1493 Lisp_Vector *de = XVECTOR (entry);
|
428
|
1494 EMACS_INT len = vector_length (de);
|
|
1495 int elt;
|
|
1496
|
|
1497 for (elt = 0; elt < len; elt++)
|
|
1498 {
|
|
1499 if (NILP (vector_data (de)[elt]))
|
|
1500 continue;
|
|
1501 else
|
|
1502 prop = add_disp_table_entry_runes_1 (data, vector_data (de)[elt]);
|
|
1503 /* Else blow it off because someone added a bad entry and we
|
|
1504 don't have any safe way of signaling an error. Hey, this
|
|
1505 comment sounds familiar. */
|
|
1506
|
|
1507 /* #### Still need to add any remaining elements to the
|
|
1508 propagation information. */
|
|
1509 if (prop)
|
|
1510 return prop;
|
|
1511 }
|
|
1512 }
|
|
1513 else
|
|
1514 prop = add_disp_table_entry_runes_1 (data, entry);
|
|
1515 return prop;
|
|
1516 }
|
|
1517
|
|
1518 /* Add runes which were propagated from the previous line. */
|
|
1519
|
|
1520 static prop_block_dynarr *
|
|
1521 add_propagation_runes (prop_block_dynarr **prop, pos_data *data)
|
|
1522 {
|
|
1523 /* #### Remember to handle start_col parameter of data when the rest of
|
|
1524 this is finished. */
|
|
1525 /* #### Chuck -- I've redone this function a bit. It looked like the
|
|
1526 case of not all the propagation blocks being added was not handled
|
|
1527 well. */
|
|
1528 /* #### Chuck -- I also think the double indirection of PROP is kind
|
|
1529 of bogus. A cleaner solution is just to check for
|
|
1530 Dynarr_length (prop) > 0. */
|
|
1531 /* #### This function also doesn't even pay attention to ADD_FAILED!
|
|
1532 This is seriously fucked! Seven ####'s in 130 lines -- is that a
|
|
1533 record? */
|
|
1534 int elt;
|
|
1535 prop_block_dynarr *add_failed;
|
826
|
1536 Bytebpos byte_old_cursor_charpos = data->byte_cursor_charpos;
|
647
|
1537 int old_cursor_type = data->cursor_type;
|
428
|
1538
|
|
1539 for (elt = 0; elt < Dynarr_length (*prop); elt++)
|
|
1540 {
|
|
1541 struct prop_block *pb = Dynarr_atp (*prop, elt);
|
|
1542
|
|
1543 switch (pb->type)
|
|
1544 {
|
|
1545 case PROP_CHAR:
|
|
1546 data->ch = pb->data.p_char.ch;
|
826
|
1547 data->byte_cursor_charpos = pb->data.p_char.byte_cursor_charpos;
|
428
|
1548 data->cursor_type = pb->data.p_char.cursor_type;
|
|
1549 add_failed = add_emchar_rune (data);
|
|
1550
|
|
1551 if (add_failed)
|
|
1552 goto oops_no_more_space;
|
|
1553 break;
|
|
1554 case PROP_STRING:
|
|
1555 if (pb->data.p_string.str)
|
|
1556 xfree (pb->data.p_string.str);
|
|
1557 /* #### bogus bogus -- this doesn't do anything!
|
665
|
1558 Should probably call add_intbyte_string_runes(),
|
428
|
1559 once that function is fixed. */
|
|
1560 break;
|
|
1561 case PROP_MINIBUF_PROMPT:
|
|
1562 {
|
|
1563 face_index old_findex = data->findex;
|
826
|
1564 Bytebpos byte_old_charpos = data->byte_charpos;
|
428
|
1565
|
|
1566 data->findex = DEFAULT_INDEX;
|
826
|
1567 data->byte_charpos = 0;
|
428
|
1568 data->cursor_type = NO_CURSOR;
|
|
1569
|
|
1570 while (pb->data.p_string.len > 0)
|
|
1571 {
|
|
1572 data->ch = charptr_emchar (pb->data.p_string.str);
|
|
1573 add_failed = add_emchar_rune (data);
|
|
1574
|
|
1575 if (add_failed)
|
|
1576 {
|
|
1577 data->findex = old_findex;
|
826
|
1578 data->byte_charpos = byte_old_charpos;
|
428
|
1579 goto oops_no_more_space;
|
|
1580 }
|
|
1581 else
|
|
1582 {
|
|
1583 /* Complicated equivalent of ptr++, len-- */
|
665
|
1584 Intbyte *oldpos = pb->data.p_string.str;
|
428
|
1585 INC_CHARPTR (pb->data.p_string.str);
|
|
1586 pb->data.p_string.len -= pb->data.p_string.str - oldpos;
|
|
1587 }
|
|
1588 }
|
|
1589
|
|
1590 data->findex = old_findex;
|
|
1591 /* ##### FIXME FIXME FIXME -- Upon successful return from
|
826
|
1592 this function, data->byte_charpos is automatically incremented.
|
428
|
1593 However, we don't want that to happen if we were adding
|
|
1594 the minibuffer prompt. */
|
|
1595 {
|
|
1596 struct buffer *buf =
|
|
1597 XBUFFER (WINDOW_BUFFER (XWINDOW (data->window)));
|
|
1598 /* #### Chuck fix this shit or I'm gonna scream! */
|
826
|
1599 if (byte_old_charpos > BYTE_BUF_BEGV (buf))
|
|
1600 data->byte_charpos = prev_bytebpos (buf, byte_old_charpos);
|
428
|
1601 else
|
|
1602 /* #### is this correct? Does anyone know?
|
|
1603 Does anyone care? Is this a cheesy hack or what? */
|
826
|
1604 data->byte_charpos = BYTE_BUF_BEGV (buf) - 1;
|
428
|
1605 }
|
|
1606 }
|
|
1607 break;
|
|
1608 case PROP_BLANK:
|
|
1609 {
|
|
1610 /* #### I think it's unnecessary and misleading to preserve
|
|
1611 the blank_width, as it implies that the value carries
|
|
1612 over from one rune to the next, which is wrong. */
|
|
1613 int old_width = data->blank_width;
|
|
1614 face_index old_findex = data->findex;
|
|
1615
|
|
1616 data->findex = pb->data.p_blank.findex;
|
|
1617 data->blank_width = pb->data.p_blank.width;
|
826
|
1618 data->byte_cursor_charpos = 0;
|
428
|
1619 data->cursor_type = IGNORE_CURSOR;
|
|
1620
|
|
1621 if (data->pixpos + data->blank_width > data->max_pixpos)
|
|
1622 data->blank_width = data->max_pixpos - data->pixpos;
|
|
1623
|
|
1624 /* We pass a bogus value of char_tab_width. It shouldn't
|
|
1625 matter because unless something is really screwed up
|
|
1626 this call won't cause that arg to be used. */
|
|
1627 add_failed = add_blank_rune (data, XWINDOW (data->window), 0);
|
|
1628
|
|
1629 /* This can happen in the case where we have a tab which
|
|
1630 is wider than the window. */
|
|
1631 if (data->blank_width != pb->data.p_blank.width)
|
|
1632 {
|
|
1633 pb->data.p_blank.width -= data->blank_width;
|
|
1634 add_failed = ADD_FAILED;
|
|
1635 }
|
|
1636
|
|
1637 data->findex = old_findex;
|
|
1638 data->blank_width = old_width;
|
|
1639
|
|
1640 if (add_failed)
|
|
1641 goto oops_no_more_space;
|
|
1642 }
|
|
1643 break;
|
|
1644 default:
|
|
1645 abort ();
|
|
1646 }
|
|
1647 }
|
|
1648
|
|
1649 oops_no_more_space:
|
|
1650
|
826
|
1651 data->byte_cursor_charpos = byte_old_cursor_charpos;
|
428
|
1652 data->cursor_type = old_cursor_type;
|
|
1653 if (elt < Dynarr_length (*prop))
|
|
1654 {
|
|
1655 Dynarr_delete_many (*prop, 0, elt);
|
|
1656 return *prop;
|
|
1657 }
|
|
1658 else
|
|
1659 {
|
|
1660 Dynarr_free (*prop);
|
|
1661 return NULL;
|
|
1662 }
|
|
1663 }
|
|
1664
|
|
1665 /* Add 'text layout glyphs at position POS_TYPE that are contained to
|
|
1666 the display block, but add all other types to the appropriate list
|
|
1667 of the display line. They will be added later by different
|
|
1668 routines. */
|
|
1669
|
|
1670 static prop_block_dynarr *
|
|
1671 add_glyph_rune (pos_data *data, struct glyph_block *gb, int pos_type,
|
|
1672 int allow_cursor, struct glyph_cachel *cachel)
|
|
1673 {
|
|
1674 struct window *w = XWINDOW (data->window);
|
|
1675
|
440
|
1676 /* If window faces changed, and glyph instance is text, then
|
|
1677 glyph sizes might have changed too */
|
|
1678 invalidate_glyph_geometry_maybe (gb->glyph, w);
|
|
1679
|
442
|
1680 /* This makes sure the glyph is in the cachels.
|
|
1681
|
|
1682 #### We do this to make sure the glyph is in the glyph cachels,
|
|
1683 so that the dirty flag can be reset after redisplay has
|
|
1684 finished. We should do this some other way, maybe by iterating
|
|
1685 over the window cache of subwindows. */
|
|
1686 get_glyph_cachel_index (w, gb->glyph);
|
|
1687
|
428
|
1688 /* A nil extent indicates a special glyph (ex. truncator). */
|
|
1689 if (NILP (gb->extent)
|
|
1690 || (pos_type == BEGIN_GLYPHS &&
|
|
1691 extent_begin_glyph_layout (XEXTENT (gb->extent)) == GL_TEXT)
|
|
1692 || (pos_type == END_GLYPHS &&
|
442
|
1693 extent_end_glyph_layout (XEXTENT (gb->extent)) == GL_TEXT)
|
|
1694 || pos_type == LEFT_GLYPHS || pos_type == RIGHT_GLYPHS)
|
428
|
1695 {
|
|
1696 struct rune rb;
|
|
1697 int width;
|
|
1698 int xoffset = 0;
|
|
1699 int ascent, descent;
|
|
1700 Lisp_Object baseline;
|
|
1701 Lisp_Object face;
|
442
|
1702 Lisp_Object instance;
|
|
1703 face_index findex;
|
819
|
1704 prop_block_dynarr *retval = 0;
|
428
|
1705
|
|
1706 if (cachel)
|
|
1707 width = cachel->width;
|
|
1708 else
|
438
|
1709 width = glyph_width (gb->glyph, data->window);
|
428
|
1710
|
|
1711 if (!width)
|
|
1712 return NULL;
|
|
1713
|
|
1714 if (data->start_col || data->start_col_xoffset)
|
|
1715 {
|
|
1716 int glyph_char_width = width / space_width (w);
|
|
1717
|
|
1718 /* If we still have not fully scrolled horizontally after
|
|
1719 taking into account the width of the glyph, subtract its
|
|
1720 width and return. */
|
|
1721 if (glyph_char_width < data->start_col)
|
|
1722 {
|
|
1723 data->start_col -= glyph_char_width;
|
|
1724 return NULL;
|
|
1725 }
|
|
1726 else if (glyph_char_width == data->start_col)
|
|
1727 width = 0;
|
|
1728 else
|
|
1729 {
|
|
1730 xoffset = space_width (w) * data->start_col;
|
|
1731 width -= xoffset;
|
|
1732
|
|
1733 /* #### Can this happen? */
|
|
1734 if (width < 0)
|
|
1735 width = 0;
|
|
1736 }
|
|
1737
|
|
1738 data->start_col = 0;
|
|
1739 retval = add_hscroll_rune (data);
|
|
1740
|
|
1741 /* Could be caused by the handling of the hscroll rune. */
|
|
1742 if (retval != NULL || !width)
|
|
1743 return retval;
|
|
1744 }
|
|
1745 else
|
|
1746 xoffset = 0;
|
|
1747
|
|
1748 if (data->pixpos + width > data->max_pixpos)
|
|
1749 {
|
|
1750 /* If this is the first object we are attempting to add to
|
819
|
1751 the line then we ignore the horizontal_clip threshold.
|
|
1752 Otherwise we will loop until the bottom of the window
|
|
1753 continually failing to add this glyph because it is wider
|
|
1754 than the window. We could alternatively just completely
|
|
1755 ignore the glyph and proceed from there but I think that
|
|
1756 this is a better solution.
|
|
1757
|
|
1758 This does, however, create a different problem in that we
|
|
1759 can end up adding the object to every single line, never
|
|
1760 getting any further - for instance an extent with a long
|
|
1761 start-glyph that covers multitple following
|
|
1762 characters. */
|
428
|
1763 if (Dynarr_length (data->db->runes)
|
|
1764 && data->max_pixpos - data->pixpos < horizontal_clip)
|
|
1765 return ADD_FAILED;
|
819
|
1766 else {
|
|
1767 struct prop_block pb;
|
|
1768
|
|
1769 /* We need to account for the width of the end-of-line
|
|
1770 glyph if there is nothing more in the line to display,
|
|
1771 since we will not display it in this instance. It seems
|
|
1772 kind of gross doing it here, but otherwise we have to
|
|
1773 search the runes in create_text_block(). */
|
|
1774 if (data->ch == '\n')
|
|
1775 data->max_pixpos += data->end_glyph_width;
|
428
|
1776 width = data->max_pixpos - data->pixpos;
|
819
|
1777 /* Add the glyph we are displaying, but clipping, to the
|
|
1778 propagation data so that we don't try and do it
|
|
1779 again. */
|
|
1780 retval = Dynarr_new (prop_block);
|
|
1781 pb.type = PROP_GLYPH;
|
|
1782 pb.data.p_glyph.glyph = gb->glyph;
|
|
1783 pb.data.p_glyph.width = width;
|
|
1784 Dynarr_add (retval, pb);
|
|
1785 }
|
428
|
1786 }
|
|
1787
|
|
1788 if (cachel)
|
|
1789 {
|
|
1790 ascent = cachel->ascent;
|
|
1791 descent = cachel->descent;
|
|
1792 }
|
|
1793 else
|
|
1794 {
|
438
|
1795 ascent = glyph_ascent (gb->glyph, data->window);
|
|
1796 descent = glyph_descent (gb->glyph, data->window);
|
428
|
1797 }
|
|
1798
|
|
1799 baseline = glyph_baseline (gb->glyph, data->window);
|
|
1800
|
819
|
1801 rb.object.dglyph.descent = 0; /* Gets reset lower down, if it is known. */
|
|
1802
|
428
|
1803 if (glyph_contrib_p (gb->glyph, data->window))
|
|
1804 {
|
|
1805 /* A pixmap that has not had a baseline explicitly set. Its
|
|
1806 contribution will be determined later. */
|
|
1807 if (NILP (baseline))
|
|
1808 {
|
|
1809 int height = ascent + descent;
|
819
|
1810 data->need_baseline_computation = 1;
|
428
|
1811 data->max_pixmap_height = max (data->max_pixmap_height, height);
|
|
1812 }
|
|
1813
|
|
1814 /* A string so determine contribution normally. */
|
|
1815 else if (EQ (baseline, Qt))
|
|
1816 {
|
|
1817 data->new_ascent = max (data->new_ascent, ascent);
|
|
1818 data->new_descent = max (data->new_descent, descent);
|
|
1819 }
|
|
1820
|
|
1821 /* A pixmap with an explicitly set baseline. We determine the
|
|
1822 contribution here. */
|
|
1823 else if (INTP (baseline))
|
|
1824 {
|
|
1825 int height = ascent + descent;
|
|
1826 int pix_ascent, pix_descent;
|
|
1827
|
|
1828 pix_ascent = height * XINT (baseline) / 100;
|
|
1829 pix_descent = height - pix_ascent;
|
|
1830
|
|
1831 data->new_ascent = max (data->new_ascent, pix_ascent);
|
|
1832 data->new_descent = max (data->new_descent, pix_descent);
|
819
|
1833 data->max_pixmap_height = max (data->max_pixmap_height, height);
|
|
1834
|
|
1835 rb.object.dglyph.descent = pix_descent;
|
428
|
1836 }
|
|
1837
|
|
1838 /* Otherwise something is screwed up. */
|
|
1839 else
|
|
1840 abort ();
|
|
1841 }
|
|
1842
|
|
1843 face = glyph_face (gb->glyph, data->window);
|
|
1844 if (NILP (face))
|
442
|
1845 findex = data->findex;
|
428
|
1846 else
|
442
|
1847 findex = get_builtin_face_cache_index (w, face);
|
|
1848
|
|
1849 instance = glyph_image_instance (gb->glyph, data->window,
|
793
|
1850 ERROR_ME_DEBUG_WARN, 1);
|
442
|
1851 if (TEXT_IMAGE_INSTANCEP (instance))
|
|
1852 {
|
|
1853 Lisp_Object string = XIMAGE_INSTANCE_TEXT_STRING (instance);
|
|
1854 face_index orig_findex = data->findex;
|
826
|
1855 Bytebpos orig_charpos = data->byte_charpos;
|
|
1856 Bytebpos orig_start_col_enabled = data->byte_start_col_enabled;
|
442
|
1857
|
|
1858 data->findex = findex;
|
826
|
1859 data->byte_start_col_enabled = 0;
|
442
|
1860 if (!allow_cursor)
|
826
|
1861 data->byte_charpos = 0;
|
665
|
1862 add_intbyte_string_runes (data, XSTRING_DATA (string),
|
793
|
1863 XSTRING_LENGTH (string), 0, 1);
|
442
|
1864 data->findex = orig_findex;
|
826
|
1865 data->byte_charpos = orig_charpos;
|
|
1866 data->byte_start_col_enabled = orig_start_col_enabled;
|
819
|
1867 return retval;
|
442
|
1868 }
|
|
1869
|
|
1870 rb.findex = findex;
|
428
|
1871 rb.xpos = data->pixpos;
|
|
1872 rb.width = width;
|
826
|
1873 rb.charpos = 0; /* glyphs are never "at" anywhere */
|
|
1874 if (data->byte_endpos)
|
428
|
1875 /* #### is this necessary at all? */
|
665
|
1876 rb.endpos = bytebpos_to_charbpos (XBUFFER (WINDOW_BUFFER (w)),
|
826
|
1877 data->byte_endpos);
|
428
|
1878 else
|
|
1879 rb.endpos = 0;
|
|
1880 rb.type = RUNE_DGLYPH;
|
|
1881 rb.object.dglyph.glyph = gb->glyph;
|
|
1882 rb.object.dglyph.extent = gb->extent;
|
|
1883 rb.object.dglyph.xoffset = xoffset;
|
819
|
1884 rb.object.dglyph.ascent = ascent;
|
|
1885 rb.object.dglyph.yoffset = 0; /* Until we know better, assume that it has
|
|
1886 a normal (textual) baseline. */
|
428
|
1887
|
|
1888 if (allow_cursor)
|
|
1889 {
|
826
|
1890 rb.charpos = bytebpos_to_charbpos (XBUFFER (WINDOW_BUFFER (w)),
|
|
1891 data->byte_charpos);
|
428
|
1892
|
|
1893 if (data->cursor_type == CURSOR_ON)
|
|
1894 {
|
826
|
1895 if (data->byte_charpos == data->byte_cursor_charpos)
|
428
|
1896 {
|
|
1897 rb.cursor_type = CURSOR_ON;
|
|
1898 data->cursor_x = Dynarr_length (data->db->runes);
|
|
1899 }
|
|
1900 else
|
|
1901 rb.cursor_type = CURSOR_OFF;
|
|
1902 }
|
|
1903 else if (data->cursor_type == NEXT_CURSOR)
|
|
1904 {
|
|
1905 rb.cursor_type = CURSOR_ON;
|
|
1906 data->cursor_x = Dynarr_length (data->db->runes);
|
|
1907 data->cursor_type = NO_CURSOR;
|
|
1908 }
|
|
1909 else if (data->cursor_type == IGNORE_CURSOR)
|
|
1910 rb.cursor_type = IGNORE_CURSOR;
|
|
1911 else if (data->cursor_type == NO_CURSOR)
|
|
1912 rb.cursor_type = NO_CURSOR;
|
|
1913 else
|
|
1914 rb.cursor_type = CURSOR_OFF;
|
|
1915 }
|
|
1916 else
|
|
1917 rb.cursor_type = CURSOR_OFF;
|
|
1918
|
|
1919 Dynarr_add (data->db->runes, rb);
|
|
1920 data->pixpos += width;
|
|
1921
|
819
|
1922 return retval;
|
428
|
1923 }
|
|
1924 else
|
|
1925 {
|
|
1926 if (!NILP (glyph_face (gb->glyph, data->window)))
|
|
1927 gb->findex =
|
|
1928 get_builtin_face_cache_index (w, glyph_face (gb->glyph,
|
|
1929 data->window));
|
|
1930 else
|
|
1931 gb->findex = data->findex;
|
|
1932
|
|
1933 if (pos_type == BEGIN_GLYPHS)
|
|
1934 {
|
|
1935 if (!data->dl->left_glyphs)
|
|
1936 data->dl->left_glyphs = Dynarr_new (glyph_block);
|
|
1937 Dynarr_add (data->dl->left_glyphs, *gb);
|
|
1938 return NULL;
|
|
1939 }
|
|
1940 else if (pos_type == END_GLYPHS)
|
|
1941 {
|
|
1942 if (!data->dl->right_glyphs)
|
|
1943 data->dl->right_glyphs = Dynarr_new (glyph_block);
|
|
1944 Dynarr_add (data->dl->right_glyphs, *gb);
|
|
1945 return NULL;
|
|
1946 }
|
|
1947 else
|
|
1948 abort (); /* there are no unknown types */
|
|
1949 }
|
|
1950
|
819
|
1951 return NULL;
|
428
|
1952 }
|
|
1953
|
|
1954 /* Add all glyphs at position POS_TYPE that are contained in the given
|
|
1955 data. */
|
|
1956
|
|
1957 static prop_block_dynarr *
|
|
1958 add_glyph_runes (pos_data *data, int pos_type)
|
|
1959 {
|
|
1960 /* #### This still needs to handle the start_col parameter. Duh, Chuck,
|
|
1961 why didn't you just modify add_glyph_rune in the first place? */
|
|
1962 int elt;
|
|
1963 glyph_block_dynarr *glyph_arr = (pos_type == BEGIN_GLYPHS
|
|
1964 ? data->ef->begin_glyphs
|
|
1965 : data->ef->end_glyphs);
|
|
1966 prop_block_dynarr *prop;
|
|
1967
|
|
1968 for (elt = 0; elt < Dynarr_length (glyph_arr); elt++)
|
|
1969 {
|
|
1970 prop = add_glyph_rune (data, Dynarr_atp (glyph_arr, elt), pos_type, 0,
|
|
1971 0);
|
|
1972
|
|
1973 if (prop)
|
|
1974 {
|
|
1975 /* #### Add some propagation information. */
|
|
1976 return prop;
|
|
1977 }
|
|
1978 }
|
|
1979
|
|
1980 Dynarr_reset (glyph_arr);
|
|
1981
|
|
1982 return NULL;
|
|
1983 }
|
|
1984
|
|
1985 /* Given a position for a buffer in a window, ensure that the given
|
|
1986 display line DL accurately represents the text on a line starting
|
|
1987 at the given position.
|
|
1988
|
826
|
1989 NOTE NOTE NOTE NOTE: This function works with and returns Bytebpos's.
|
428
|
1990 You must do appropriate conversion. */
|
|
1991
|
665
|
1992 static Bytebpos
|
428
|
1993 create_text_block (struct window *w, struct display_line *dl,
|
826
|
1994 Bytebpos byte_start_pos, prop_block_dynarr **prop,
|
428
|
1995 int type)
|
|
1996 {
|
|
1997 struct frame *f = XFRAME (w->frame);
|
|
1998 struct buffer *b = XBUFFER (w->buffer);
|
|
1999 struct device *d = XDEVICE (f->device);
|
|
2000
|
|
2001 pos_data data;
|
|
2002
|
|
2003 /* Don't display anything in the minibuffer if this window is not on
|
|
2004 a selected frame. We consider all other windows to be active
|
|
2005 minibuffers as it simplifies the coding. */
|
|
2006 int active_minibuffer = (!MINI_WINDOW_P (w) ||
|
|
2007 (f == device_selected_frame (d)) ||
|
|
2008 is_surrogate_for_selected_frame (f));
|
|
2009
|
|
2010 int truncate_win = window_truncation_on (w);
|
|
2011
|
|
2012 /* If the buffer's value of selective_display is an integer then
|
|
2013 only lines that start with less than selective_display columns of
|
|
2014 space will be displayed. If selective_display is t then all text
|
|
2015 after a ^M is invisible. */
|
|
2016 int selective = (INTP (b->selective_display)
|
|
2017 ? XINT (b->selective_display)
|
434
|
2018 : (!NILP (b->selective_display) ? -1 : 0));
|
428
|
2019
|
|
2020 /* The variable ctl-arrow allows the user to specify what characters
|
|
2021 can actually be displayed and which octal should be used for.
|
|
2022 #### This variable should probably have some rethought done to
|
|
2023 it.
|
|
2024
|
|
2025 #### It would also be really nice if you could specify that
|
|
2026 the characters come out in hex instead of in octal. Mule
|
|
2027 does that by adding a ctl-hexa variable similar to ctl-arrow,
|
|
2028 but that's bogus -- we need a more general solution. I
|
|
2029 think you need to extend the concept of display tables
|
|
2030 into a more general conversion mechanism. Ideally you
|
|
2031 could specify a Lisp function that converts characters,
|
|
2032 but this violates the Second Golden Rule and besides would
|
|
2033 make things way way way way slow.
|
|
2034
|
|
2035 So instead, we extend the display-table concept, which was
|
|
2036 historically limited to 256-byte vectors, to one of the
|
|
2037 following:
|
|
2038
|
|
2039 a) A 256-entry vector, for backward compatibility;
|
|
2040 b) char-table, mapping characters to values;
|
|
2041 c) range-table, mapping ranges of characters to values;
|
|
2042 d) a list of the above.
|
|
2043
|
|
2044 The (d) option allows you to specify multiple display tables
|
|
2045 instead of just one. Each display table can specify conversions
|
|
2046 for some characters and leave others unchanged. The way the
|
|
2047 character gets displayed is determined by the first display table
|
|
2048 with a binding for that character. This way, you could call a
|
|
2049 function `enable-hex-display' that adds a hex display-table to
|
|
2050 the list of display tables for the current buffer.
|
|
2051
|
|
2052 #### ...not yet implemented... Also, we extend the concept of
|
|
2053 "mapping" to include a printf-like spec. Thus you can make all
|
|
2054 extended characters show up as hex with a display table like
|
|
2055 this:
|
|
2056
|
|
2057 #s(range-table data ((256 524288) (format "%x")))
|
|
2058
|
|
2059 Since more than one display table is possible, you have
|
|
2060 great flexibility in mapping ranges of characters. */
|
|
2061 Emchar printable_min = (CHAR_OR_CHAR_INTP (b->ctl_arrow)
|
|
2062 ? XCHAR_OR_CHAR_INT (b->ctl_arrow)
|
|
2063 : ((EQ (b->ctl_arrow, Qt) || EQ (b->ctl_arrow, Qnil))
|
|
2064 ? 255 : 160));
|
|
2065
|
|
2066 Lisp_Object face_dt, window_dt;
|
|
2067
|
|
2068 /* The text display block for this display line. */
|
|
2069 struct display_block *db = get_display_block_from_line (dl, TEXT);
|
|
2070
|
|
2071 /* The first time through the main loop we need to force the glyph
|
|
2072 data to be updated. */
|
|
2073 int initial = 1;
|
|
2074
|
|
2075 /* Apparently the new extent_fragment_update returns an end position
|
|
2076 equal to the position passed in if there are no more runs to be
|
|
2077 displayed. */
|
|
2078 int no_more_frags = 0;
|
|
2079
|
|
2080 Lisp_Object synch_minibuffers_value =
|
|
2081 symbol_value_in_buffer (Qsynchronize_minibuffers, w->buffer);
|
|
2082
|
|
2083 dl->used_prop_data = 0;
|
|
2084 dl->num_chars = 0;
|
442
|
2085 dl->line_continuation = 0;
|
428
|
2086
|
|
2087 xzero (data);
|
|
2088 data.ef = extent_fragment_new (w->buffer, f);
|
|
2089
|
|
2090 /* These values are used by all of the rune addition routines. We add
|
|
2091 them to this structure for ease of passing. */
|
|
2092 data.d = d;
|
793
|
2093 data.window = wrap_window (w);
|
428
|
2094 data.string = Qnil;
|
|
2095 data.db = db;
|
|
2096 data.dl = dl;
|
|
2097
|
826
|
2098 data.byte_charpos = byte_start_pos;
|
428
|
2099 data.pixpos = dl->bounds.left_in;
|
|
2100 data.last_charset = Qunbound;
|
|
2101 data.last_findex = DEFAULT_INDEX;
|
|
2102 data.result_str = Qnil;
|
|
2103
|
|
2104 /* Set the right boundary adjusting it to take into account any end
|
|
2105 glyph. Save the width of the end glyph for later use. */
|
|
2106 data.max_pixpos = dl->bounds.right_in;
|
|
2107 if (truncate_win)
|
819
|
2108 data.end_glyph_width = GLYPH_CACHEL_WIDTH (w, TRUN_GLYPH_INDEX);
|
428
|
2109 else
|
819
|
2110 data.end_glyph_width = GLYPH_CACHEL_WIDTH (w, CONT_GLYPH_INDEX);
|
|
2111 data.max_pixpos -= data.end_glyph_width;
|
428
|
2112
|
|
2113 if (cursor_in_echo_area && MINI_WINDOW_P (w) && echo_area_active (f))
|
|
2114 {
|
826
|
2115 data.byte_cursor_charpos = BYTE_BUF_ZV (b);
|
428
|
2116 data.cursor_type = CURSOR_ON;
|
|
2117 }
|
|
2118 else if (MINI_WINDOW_P (w) && !active_minibuffer)
|
|
2119 data.cursor_type = NO_CURSOR;
|
|
2120 else if (w == XWINDOW (FRAME_SELECTED_WINDOW (f)) &&
|
|
2121 EQ(DEVICE_CONSOLE(d), Vselected_console) &&
|
|
2122 d == XDEVICE(CONSOLE_SELECTED_DEVICE(XCONSOLE(DEVICE_CONSOLE(d))))&&
|
|
2123 f == XFRAME(DEVICE_SELECTED_FRAME(d)))
|
|
2124 {
|
826
|
2125 data.byte_cursor_charpos = BYTE_BUF_PT (b);
|
428
|
2126 data.cursor_type = CURSOR_ON;
|
|
2127 }
|
|
2128 else if (w == XWINDOW (FRAME_SELECTED_WINDOW (f)))
|
|
2129 {
|
826
|
2130 data.byte_cursor_charpos = byte_marker_position (w->pointm[type]);
|
428
|
2131 data.cursor_type = CURSOR_ON;
|
|
2132 }
|
|
2133 else
|
|
2134 data.cursor_type = NO_CURSOR;
|
|
2135 data.cursor_x = -1;
|
|
2136
|
|
2137 data.start_col = w->hscroll;
|
|
2138 data.start_col_xoffset = w->left_xoffset;
|
826
|
2139 data.byte_start_col_enabled = (w->hscroll ? byte_start_pos : 0);
|
428
|
2140 data.hscroll_glyph_width_adjust = 0;
|
|
2141
|
|
2142 /* We regenerate the line from the very beginning. */
|
|
2143 Dynarr_reset (db->runes);
|
|
2144
|
|
2145 /* Why is this less than or equal and not just less than? If the
|
|
2146 starting position is already equal to the maximum we can't add
|
|
2147 anything else, right? Wrong. We might still have a newline to
|
|
2148 add. A newline can use the room allocated for an end glyph since
|
|
2149 if we add it we know we aren't going to be adding any end
|
|
2150 glyph. */
|
|
2151
|
|
2152 /* #### Chuck -- I think this condition should be while (1).
|
|
2153 Otherwise if (e.g.) there is one begin-glyph and one end-glyph
|
|
2154 and the begin-glyph ends exactly at the end of the window, the
|
|
2155 end-glyph and text might not be displayed. while (1) ensures
|
|
2156 that the loop terminates only when either (a) there is
|
|
2157 propagation data or (b) the end-of-line or end-of-buffer is hit.
|
|
2158
|
|
2159 #### Also I think you need to ensure that the operation
|
|
2160 "add begin glyphs; add end glyphs; add text" is atomic and
|
|
2161 can't get interrupted in the middle. If you run off the end
|
|
2162 of the line during that operation, then you keep accumulating
|
|
2163 propagation data until you're done. Otherwise, if the (e.g.)
|
|
2164 there's a begin glyph at a particular position and attempting
|
|
2165 to display that glyph results in window-end being hit and
|
|
2166 propagation data being generated, then the character at that
|
|
2167 position won't be displayed.
|
|
2168
|
|
2169 #### See also the comment after the end of this loop, below.
|
|
2170 */
|
|
2171 while (data.pixpos <= data.max_pixpos
|
|
2172 && (active_minibuffer || !NILP (synch_minibuffers_value)))
|
|
2173 {
|
|
2174 /* #### This check probably should not be necessary. */
|
826
|
2175 if (data.byte_charpos > BYTE_BUF_ZV (b))
|
428
|
2176 {
|
|
2177 /* #### urk! More of this lossage! */
|
826
|
2178 data.byte_charpos--;
|
428
|
2179 goto done;
|
|
2180 }
|
|
2181
|
|
2182 /* If selective display was an integer and we aren't working on
|
|
2183 a continuation line then find the next line we are actually
|
|
2184 supposed to display. */
|
|
2185 if (selective > 0
|
826
|
2186 && (data.byte_charpos == BYTE_BUF_BEGV (b)
|
|
2187 || BUF_FETCH_CHAR (b, prev_bytebpos (b, data.byte_charpos)) == '\n'))
|
|
2188 {
|
|
2189 while (byte_spaces_at_point (b, data.byte_charpos) >= selective)
|
428
|
2190 {
|
826
|
2191 data.byte_charpos =
|
|
2192 byte_find_next_newline_no_quit (b, data.byte_charpos, 1);
|
|
2193 if (data.byte_charpos >= BYTE_BUF_ZV (b))
|
428
|
2194 {
|
826
|
2195 data.byte_charpos = BYTE_BUF_ZV (b);
|
428
|
2196 goto done;
|
|
2197 }
|
|
2198 }
|
|
2199 }
|
|
2200
|
|
2201 /* Check for face changes. */
|
826
|
2202 if (initial || (!no_more_frags && data.byte_charpos == data.ef->end))
|
428
|
2203 {
|
819
|
2204 Lisp_Object last_glyph = Qnil;
|
|
2205
|
|
2206 /* Deal with glyphs that we have already displayed. The
|
|
2207 theory is that if we end up with a PROP_GLYPH in the
|
|
2208 propagation data then we are clipping the glyph and there
|
|
2209 can be no propagation data before that point. The theory
|
|
2210 works because we always recalculate the extent-fragments
|
|
2211 for propagated data, we never actually propagate the
|
|
2212 fragments that still need to be displayed. */
|
|
2213 if (*prop && Dynarr_atp (*prop, 0)->type == PROP_GLYPH)
|
|
2214 {
|
|
2215 last_glyph = Dynarr_atp (*prop, 0)->data.p_glyph.glyph;
|
|
2216 Dynarr_free (*prop);
|
|
2217 *prop = 0;
|
|
2218 }
|
428
|
2219 /* Now compute the face and begin/end-glyph information. */
|
|
2220 data.findex =
|
665
|
2221 /* Remember that the extent-fragment routines deal in Bytebpos's. */
|
826
|
2222 extent_fragment_update (w, data.ef, data.byte_charpos, last_glyph);
|
428
|
2223
|
|
2224 get_display_tables (w, data.findex, &face_dt, &window_dt);
|
|
2225
|
826
|
2226 if (data.byte_charpos == data.ef->end)
|
428
|
2227 no_more_frags = 1;
|
|
2228 }
|
|
2229 initial = 0;
|
|
2230
|
|
2231 /* Determine what is next to be displayed. We first handle any
|
665
|
2232 glyphs returned by glyphs_at_charbpos. If there are no glyphs to
|
428
|
2233 display then we determine what to do based on the character at the
|
|
2234 current buffer position. */
|
|
2235
|
|
2236 /* If the current position is covered by an invisible extent, do
|
|
2237 nothing (except maybe add some ellipses).
|
|
2238
|
|
2239 #### The behavior of begin and end-glyphs at the edge of an
|
|
2240 invisible extent should be investigated further. This is
|
|
2241 fairly low priority though. */
|
|
2242 if (data.ef->invisible)
|
|
2243 {
|
|
2244 /* #### Chuck, perhaps you could look at this code? I don't
|
|
2245 really know what I'm doing. */
|
|
2246 if (*prop)
|
|
2247 {
|
|
2248 Dynarr_free (*prop);
|
|
2249 *prop = 0;
|
|
2250 }
|
|
2251
|
|
2252 /* The extent fragment code only sets this when we should
|
|
2253 really display the ellipses. It makes sure the ellipses
|
|
2254 don't get displayed more than once in a row. */
|
|
2255 if (data.ef->invisible_ellipses)
|
|
2256 {
|
|
2257 struct glyph_block gb;
|
|
2258
|
|
2259 data.ef->invisible_ellipses_already_displayed = 1;
|
|
2260 data.ef->invisible_ellipses = 0;
|
|
2261 gb.extent = Qnil;
|
|
2262 gb.glyph = Vinvisible_text_glyph;
|
|
2263 *prop = add_glyph_rune (&data, &gb, BEGIN_GLYPHS, 0,
|
|
2264 GLYPH_CACHEL (w, INVIS_GLYPH_INDEX));
|
|
2265 /* Perhaps they shouldn't propagate if the very next thing
|
|
2266 is to display a newline (for compatibility with
|
|
2267 selective-display-ellipses)? Maybe that's too
|
|
2268 abstruse. */
|
|
2269 if (*prop)
|
|
2270 goto done;
|
|
2271 }
|
|
2272
|
|
2273 /* If point is in an invisible region we place it on the
|
|
2274 next visible character. */
|
|
2275 if (data.cursor_type == CURSOR_ON
|
826
|
2276 && data.byte_charpos == data.byte_cursor_charpos)
|
428
|
2277 {
|
|
2278 data.cursor_type = NEXT_CURSOR;
|
|
2279 }
|
|
2280
|
|
2281 /* #### What if we we're dealing with a display table? */
|
|
2282 if (data.start_col)
|
|
2283 data.start_col--;
|
|
2284
|
826
|
2285 if (data.byte_charpos == BYTE_BUF_ZV (b))
|
428
|
2286 goto done;
|
|
2287 else
|
826
|
2288 INC_BYTEBPOS (b, data.byte_charpos);
|
428
|
2289 }
|
|
2290
|
|
2291 /* If there is propagation data, then it represents the current
|
819
|
2292 buffer position being displayed. Add them and advance the
|
|
2293 position counter. This might also add the minibuffer
|
|
2294 prompt. */
|
428
|
2295 else if (*prop)
|
|
2296 {
|
|
2297 dl->used_prop_data = 1;
|
|
2298 *prop = add_propagation_runes (prop, &data);
|
|
2299
|
|
2300 if (*prop)
|
|
2301 goto done; /* gee, a really narrow window */
|
826
|
2302 else if (data.byte_charpos == BYTE_BUF_ZV (b))
|
428
|
2303 goto done;
|
826
|
2304 else if (data.byte_charpos < BYTE_BUF_BEGV (b))
|
428
|
2305 /* #### urk urk urk! Aborts are not very fun! Fix this please! */
|
826
|
2306 data.byte_charpos = BYTE_BUF_BEGV (b);
|
428
|
2307 else
|
826
|
2308 INC_BYTEBPOS (b, data.byte_charpos);
|
428
|
2309 }
|
|
2310
|
|
2311 /* If there are end glyphs, add them to the line. These are
|
|
2312 the end glyphs for the previous run of text. We add them
|
|
2313 here rather than doing them at the end of handling the
|
|
2314 previous run so that glyphs at the beginning and end of
|
|
2315 a line are handled correctly. */
|
819
|
2316 else if (Dynarr_length (data.ef->end_glyphs) > 0
|
|
2317 || Dynarr_length (data.ef->begin_glyphs) > 0)
|
|
2318 {
|
|
2319 glyph_block_dynarr* tmpglyphs = 0;
|
|
2320 /* #### I think this is safe, but could be wrong. */
|
826
|
2321 data.ch = BYTE_BUF_FETCH_CHAR (b, data.byte_charpos);
|
819
|
2322
|
|
2323 if (Dynarr_length (data.ef->end_glyphs) > 0)
|
|
2324 {
|
|
2325 *prop = add_glyph_runes (&data, END_GLYPHS);
|
|
2326 tmpglyphs = data.ef->end_glyphs;
|
|
2327 }
|
|
2328
|
|
2329 /* If there are begin glyphs, add them to the line. */
|
|
2330 if (!*prop && Dynarr_length (data.ef->begin_glyphs) > 0)
|
|
2331 {
|
|
2332 *prop = add_glyph_runes (&data, BEGIN_GLYPHS);
|
|
2333 tmpglyphs = data.ef->begin_glyphs;
|
|
2334 }
|
|
2335
|
|
2336 if (*prop)
|
|
2337 {
|
|
2338 /* If we just clipped a glyph and we are at the end of a
|
|
2339 line and there are more glyphs to display then do
|
|
2340 appropriate processing to not get a continuation
|
|
2341 glyph. */
|
|
2342 if (*prop != ADD_FAILED
|
|
2343 && Dynarr_atp (*prop, 0)->type == PROP_GLYPH
|
|
2344 && data.ch == '\n')
|
|
2345 {
|
|
2346 /* If there are no more glyphs then do the normal
|
|
2347 processing.
|
|
2348
|
|
2349 #### This doesn't actually work if the same glyph is
|
|
2350 present more than once in the block. To solve
|
|
2351 this we would have to carry the index around
|
|
2352 which might be problematic since the fragment is
|
|
2353 recalculated for each line. */
|
|
2354 if (EQ (Dynarr_end (tmpglyphs)->glyph,
|
|
2355 Dynarr_atp (*prop, 0)->data.p_glyph.glyph))
|
|
2356 {
|
|
2357 Dynarr_free (*prop);
|
|
2358 *prop = 0;
|
|
2359 }
|
|
2360 else {
|
|
2361 data.blank_width = DEVMETH (d, eol_cursor_width, ());
|
|
2362 add_emchar_rune (&data); /* discard prop data. */
|
|
2363 goto done;
|
|
2364 }
|
|
2365 }
|
|
2366 else
|
|
2367 goto done;
|
|
2368 }
|
428
|
2369 }
|
|
2370
|
|
2371 /* If at end-of-buffer, we've already processed begin and
|
|
2372 end-glyphs at this point and there's no text to process,
|
|
2373 so we're done. */
|
826
|
2374 else if (data.byte_charpos == BYTE_BUF_ZV (b))
|
428
|
2375 goto done;
|
|
2376
|
|
2377 else
|
|
2378 {
|
|
2379 Lisp_Object entry = Qnil;
|
|
2380 /* Get the character at the current buffer position. */
|
826
|
2381 data.ch = BYTE_BUF_FETCH_CHAR (b, data.byte_charpos);
|
428
|
2382 if (!NILP (face_dt) || !NILP (window_dt))
|
|
2383 entry = display_table_entry (data.ch, face_dt, window_dt);
|
|
2384
|
|
2385 /* If there is a display table entry for it, hand it off to
|
|
2386 add_disp_table_entry_runes and let it worry about it. */
|
|
2387 if (!NILP (entry) && !EQ (entry, make_char (data.ch)))
|
|
2388 {
|
|
2389 *prop = add_disp_table_entry_runes (&data, entry);
|
|
2390
|
|
2391 if (*prop)
|
|
2392 goto done;
|
|
2393 }
|
|
2394
|
|
2395 /* Check if we have hit a newline character. If so, add a marker
|
|
2396 to the line and end this loop. */
|
|
2397 else if (data.ch == '\n')
|
|
2398 {
|
|
2399 /* We aren't going to be adding an end glyph so give its
|
|
2400 space back in order to make sure that the cursor can
|
|
2401 fit. */
|
819
|
2402 data.max_pixpos += data.end_glyph_width;
|
428
|
2403
|
|
2404 if (selective > 0
|
826
|
2405 && (byte_spaces_at_point
|
|
2406 (b, next_bytebpos (b, data.byte_charpos))
|
428
|
2407 >= selective))
|
|
2408 {
|
|
2409 if (!NILP (b->selective_display_ellipses))
|
|
2410 {
|
|
2411 struct glyph_block gb;
|
|
2412
|
|
2413 gb.extent = Qnil;
|
|
2414 gb.glyph = Vinvisible_text_glyph;
|
|
2415 add_glyph_rune (&data, &gb, BEGIN_GLYPHS, 0,
|
|
2416 GLYPH_CACHEL (w, INVIS_GLYPH_INDEX));
|
|
2417 }
|
|
2418 else
|
|
2419 {
|
|
2420 /* Cheesy, cheesy, cheesy. We mark the end of the
|
|
2421 line with a special "character rune" whose width
|
|
2422 is the EOL cursor width and whose character is
|
|
2423 the non-printing character '\n'. */
|
|
2424 data.blank_width = DEVMETH (d, eol_cursor_width, ());
|
|
2425 *prop = add_emchar_rune (&data);
|
|
2426 }
|
|
2427
|
826
|
2428 /* We need to set data.byte_charpos to the start of the
|
428
|
2429 next visible region in order to make this line
|
|
2430 appear to contain all of the invisible area.
|
|
2431 Otherwise, the line cache won't work
|
|
2432 correctly. */
|
826
|
2433 INC_BYTEBPOS (b, data.byte_charpos);
|
|
2434 while (byte_spaces_at_point (b, data.byte_charpos) >= selective)
|
428
|
2435 {
|
826
|
2436 data.byte_charpos =
|
|
2437 byte_find_next_newline_no_quit (b, data.byte_charpos, 1);
|
|
2438 if (data.byte_charpos >= BYTE_BUF_ZV (b))
|
428
|
2439 {
|
826
|
2440 data.byte_charpos = BYTE_BUF_ZV (b);
|
428
|
2441 break;
|
|
2442 }
|
|
2443 }
|
826
|
2444 if (BYTE_BUF_FETCH_CHAR
|
|
2445 (b, prev_bytebpos (b, data.byte_charpos)) == '\n')
|
|
2446 DEC_BYTEBPOS (b, data.byte_charpos);
|
428
|
2447 }
|
|
2448 else
|
|
2449 {
|
|
2450 data.blank_width = DEVMETH (d, eol_cursor_width, ());
|
|
2451 *prop = add_emchar_rune (&data);
|
|
2452 }
|
|
2453
|
|
2454 goto done;
|
|
2455 }
|
|
2456
|
|
2457 /* If the current character is ^M, and selective display is
|
|
2458 enabled, then add the invisible-text-glyph if
|
|
2459 selective-display-ellipses is set. In any case, this
|
|
2460 line is done. */
|
|
2461 else if (data.ch == (('M' & 037)) && selective == -1)
|
|
2462 {
|
826
|
2463 Bytebpos byte_next_charpos;
|
428
|
2464
|
|
2465 /* Find the buffer position at the end of the line. */
|
826
|
2466 byte_next_charpos =
|
|
2467 byte_find_next_newline_no_quit (b, data.byte_charpos, 1);
|
|
2468 if (BYTE_BUF_FETCH_CHAR (b, prev_bytebpos (b, byte_next_charpos))
|
428
|
2469 == '\n')
|
826
|
2470 DEC_BYTEBPOS (b, byte_next_charpos);
|
428
|
2471
|
|
2472 /* If the cursor is somewhere in the elided text make
|
|
2473 sure that the cursor gets drawn appropriately. */
|
|
2474 if (data.cursor_type == CURSOR_ON
|
826
|
2475 && (data.byte_cursor_charpos >= data.byte_charpos &&
|
|
2476 data.byte_cursor_charpos < byte_next_charpos))
|
428
|
2477 {
|
|
2478 data.cursor_type = NEXT_CURSOR;
|
|
2479 }
|
|
2480
|
|
2481 /* We won't be adding a truncation or continuation glyph
|
|
2482 so give up the room allocated for them. */
|
819
|
2483 data.max_pixpos += data.end_glyph_width;
|
428
|
2484
|
|
2485 if (!NILP (b->selective_display_ellipses))
|
|
2486 {
|
|
2487 /* We don't propagate anything from the invisible
|
|
2488 text glyph if it fails to fit. This is
|
|
2489 intentional. */
|
|
2490 struct glyph_block gb;
|
|
2491
|
|
2492 gb.extent = Qnil;
|
|
2493 gb.glyph = Vinvisible_text_glyph;
|
|
2494 add_glyph_rune (&data, &gb, BEGIN_GLYPHS, 1,
|
|
2495 GLYPH_CACHEL (w, INVIS_GLYPH_INDEX));
|
|
2496 }
|
|
2497
|
|
2498 /* Set the buffer position to the end of the line. We
|
|
2499 need to do this before potentially adding a newline
|
|
2500 so that the cursor flag will get set correctly (if
|
|
2501 needed). */
|
826
|
2502 data.byte_charpos = byte_next_charpos;
|
428
|
2503
|
|
2504 if (NILP (b->selective_display_ellipses)
|
826
|
2505 || data.byte_cursor_charpos == byte_next_charpos)
|
428
|
2506 {
|
|
2507 /* We have to at least add a newline character so
|
|
2508 that the cursor shows up properly. */
|
|
2509 data.ch = '\n';
|
|
2510 data.blank_width = DEVMETH (d, eol_cursor_width, ());
|
|
2511 data.findex = DEFAULT_INDEX;
|
|
2512 data.start_col = 0;
|
|
2513 data.start_col_xoffset = 0;
|
826
|
2514 data.byte_start_col_enabled = 0;
|
428
|
2515
|
|
2516 add_emchar_rune (&data);
|
|
2517 }
|
|
2518
|
|
2519 /* This had better be a newline but doing it this way
|
|
2520 we'll see obvious incorrect results if it isn't. No
|
|
2521 need to abort here. */
|
826
|
2522 data.ch = BYTE_BUF_FETCH_CHAR (b, data.byte_charpos);
|
428
|
2523
|
|
2524 goto done;
|
|
2525 }
|
|
2526
|
|
2527 /* If the current character is considered to be printable, then
|
|
2528 just add it. */
|
|
2529 else if (data.ch >= printable_min)
|
|
2530 {
|
|
2531 *prop = add_emchar_rune (&data);
|
|
2532 if (*prop)
|
|
2533 goto done;
|
|
2534 }
|
|
2535
|
|
2536 /* If the current character is a tab, determine the next tab
|
|
2537 starting position and add a blank rune which extends from the
|
|
2538 current pixel position to that starting position. */
|
|
2539 else if (data.ch == '\t')
|
|
2540 {
|
|
2541 int tab_start_pixpos = data.pixpos;
|
|
2542 int next_tab_start;
|
|
2543 int char_tab_width;
|
|
2544 int prop_width = 0;
|
|
2545
|
|
2546 if (data.start_col > 1)
|
434
|
2547 tab_start_pixpos -= (space_width (w) * (data.start_col - 1))
|
428
|
2548 + data.start_col_xoffset;
|
|
2549
|
|
2550 next_tab_start =
|
|
2551 next_tab_position (w, tab_start_pixpos,
|
|
2552 dl->bounds.left_in +
|
|
2553 data.hscroll_glyph_width_adjust);
|
|
2554 if (next_tab_start > data.max_pixpos)
|
|
2555 {
|
|
2556 prop_width = next_tab_start - data.max_pixpos;
|
|
2557 next_tab_start = data.max_pixpos;
|
|
2558 }
|
|
2559 data.blank_width = next_tab_start - data.pixpos;
|
|
2560 char_tab_width =
|
|
2561 (next_tab_start - tab_start_pixpos) / space_width (w);
|
|
2562
|
|
2563 *prop = add_blank_rune (&data, w, char_tab_width);
|
|
2564
|
|
2565 /* add_blank_rune is only supposed to be called with
|
|
2566 sizes guaranteed to fit in the available space. */
|
|
2567 assert (!(*prop));
|
|
2568
|
|
2569 if (prop_width)
|
|
2570 {
|
|
2571 struct prop_block pb;
|
|
2572 *prop = Dynarr_new (prop_block);
|
|
2573
|
|
2574 pb.type = PROP_BLANK;
|
|
2575 pb.data.p_blank.width = prop_width;
|
|
2576 pb.data.p_blank.findex = data.findex;
|
|
2577 Dynarr_add (*prop, pb);
|
|
2578
|
|
2579 goto done;
|
|
2580 }
|
|
2581 }
|
|
2582
|
|
2583 /* If character is a control character, pass it off to
|
|
2584 add_control_char_runes.
|
|
2585
|
|
2586 The is_*() routines have undefined results on
|
|
2587 arguments outside of the range [-1, 255]. (This
|
|
2588 often bites people who carelessly use `char' instead
|
|
2589 of `unsigned char'.)
|
|
2590 */
|
665
|
2591 else if (data.ch < 0x100 && iscntrl ((Intbyte) data.ch))
|
428
|
2592 {
|
|
2593 *prop = add_control_char_runes (&data, b);
|
|
2594
|
|
2595 if (*prop)
|
|
2596 goto done;
|
|
2597 }
|
|
2598
|
|
2599 /* If the character is above the ASCII range and we have not
|
|
2600 already handled it, then print it as an octal number. */
|
|
2601 else if (data.ch >= 0200)
|
|
2602 {
|
|
2603 *prop = add_octal_runes (&data);
|
|
2604
|
|
2605 if (*prop)
|
|
2606 goto done;
|
|
2607 }
|
|
2608
|
|
2609 /* Assume the current character is considered to be printable,
|
|
2610 then just add it. */
|
|
2611 else
|
|
2612 {
|
|
2613 *prop = add_emchar_rune (&data);
|
|
2614 if (*prop)
|
|
2615 goto done;
|
|
2616 }
|
|
2617
|
826
|
2618 INC_BYTEBPOS (b, data.byte_charpos);
|
428
|
2619 }
|
|
2620 }
|
|
2621
|
|
2622 done:
|
|
2623
|
|
2624 /* Determine the starting point of the next line if we did not hit the
|
|
2625 end of the buffer. */
|
826
|
2626 if (data.byte_charpos < BYTE_BUF_ZV (b)
|
428
|
2627 && (active_minibuffer || !NILP (synch_minibuffers_value)))
|
|
2628 {
|
|
2629 /* #### This check is not correct. If the line terminated
|
|
2630 due to a begin-glyph or end-glyph hitting window-end, then
|
826
|
2631 data.ch will not point to the character at data.byte_charpos. If
|
428
|
2632 you make the two changes mentioned at the top of this loop,
|
|
2633 you should be able to say '(if (*prop))'. That should also
|
826
|
2634 make it possible to eliminate the data.byte_charpos < BYTE_BUF_ZV (b)
|
428
|
2635 check. */
|
|
2636
|
|
2637 /* The common case is that the line ended because we hit a newline.
|
|
2638 In that case, the next character is just the next buffer
|
|
2639 position. */
|
|
2640 if (data.ch == '\n')
|
|
2641 {
|
|
2642 /* If data.start_col_enabled is still true, then the window is
|
|
2643 scrolled far enough so that nothing on this line is visible.
|
|
2644 We need to stick a truncation glyph at the beginning of the
|
|
2645 line in that case unless the line is completely blank. */
|
826
|
2646 if (data.byte_start_col_enabled)
|
428
|
2647 {
|
|
2648 if (data.cursor_type == CURSOR_ON)
|
|
2649 {
|
826
|
2650 if (data.byte_cursor_charpos >= byte_start_pos
|
|
2651 && data.byte_cursor_charpos <= data.byte_charpos)
|
|
2652 data.byte_cursor_charpos = data.byte_charpos;
|
428
|
2653 }
|
|
2654 data.findex = DEFAULT_INDEX;
|
|
2655 data.start_col = 0;
|
826
|
2656 data.byte_start_col_enabled = 0;
|
|
2657
|
|
2658 if (data.byte_charpos != byte_start_pos)
|
428
|
2659 {
|
|
2660 struct glyph_block gb;
|
|
2661
|
|
2662 gb.extent = Qnil;
|
|
2663 gb.glyph = Vhscroll_glyph;
|
|
2664 add_glyph_rune (&data, &gb, BEGIN_GLYPHS, 0,
|
|
2665 GLYPH_CACHEL (w, HSCROLL_GLYPH_INDEX));
|
|
2666 }
|
|
2667 else
|
|
2668 {
|
|
2669 /* This duplicates code down below to add a newline to
|
|
2670 the end of an otherwise empty line.*/
|
|
2671 data.ch = '\n';
|
|
2672 data.blank_width = DEVMETH (d, eol_cursor_width, ());
|
|
2673
|
|
2674 add_emchar_rune (&data);
|
|
2675 }
|
|
2676 }
|
|
2677
|
826
|
2678 INC_BYTEBPOS (b, data.byte_charpos);
|
428
|
2679 }
|
|
2680
|
|
2681 /* Otherwise we have a buffer line which cannot fit on one display
|
|
2682 line. */
|
|
2683 else
|
|
2684 {
|
|
2685 struct glyph_block gb;
|
|
2686 struct glyph_cachel *cachel;
|
|
2687
|
|
2688 /* If the line is to be truncated then we actually have to look
|
|
2689 for the next newline. We also add the end-of-line glyph which
|
|
2690 we know will fit because we adjusted the right border before
|
|
2691 we starting laying out the line. */
|
819
|
2692 data.max_pixpos += data.end_glyph_width;
|
428
|
2693 data.findex = DEFAULT_INDEX;
|
|
2694 gb.extent = Qnil;
|
|
2695
|
|
2696 if (truncate_win)
|
|
2697 {
|
826
|
2698 Bytebpos byte_pos;
|
428
|
2699
|
|
2700 /* Now find the start of the next line. */
|
826
|
2701 byte_pos = byte_find_next_newline_no_quit (b, data.byte_charpos, 1);
|
428
|
2702
|
|
2703 /* If the cursor is past the truncation line then we
|
|
2704 make it appear on the truncation glyph. If we've hit
|
|
2705 the end of the buffer then we also make the cursor
|
|
2706 appear unless eob is immediately preceded by a
|
|
2707 newline. In that case the cursor should actually
|
|
2708 appear on the next line. */
|
|
2709 if (data.cursor_type == CURSOR_ON
|
826
|
2710 && data.byte_cursor_charpos >= data.byte_charpos
|
|
2711 && (data.byte_cursor_charpos < byte_pos ||
|
|
2712 (byte_pos == BYTE_BUF_ZV (b)
|
|
2713 && (byte_pos == BYTE_BUF_BEGV (b)
|
|
2714 || (BYTE_BUF_FETCH_CHAR (b, prev_bytebpos (b, byte_pos))
|
428
|
2715 != '\n')))))
|
826
|
2716 data.byte_cursor_charpos = byte_pos;
|
428
|
2717 else
|
|
2718 data.cursor_type = NO_CURSOR;
|
|
2719
|
826
|
2720 data.byte_charpos = byte_pos;
|
428
|
2721 gb.glyph = Vtruncation_glyph;
|
|
2722 cachel = GLYPH_CACHEL (w, TRUN_GLYPH_INDEX);
|
|
2723 }
|
|
2724 else
|
|
2725 {
|
|
2726 /* The cursor can never be on the continuation glyph. */
|
|
2727 data.cursor_type = NO_CURSOR;
|
|
2728
|
826
|
2729 /* data.byte_charpos is already at the start of the next line. */
|
428
|
2730
|
442
|
2731 dl->line_continuation = 1;
|
428
|
2732 gb.glyph = Vcontinuation_glyph;
|
|
2733 cachel = GLYPH_CACHEL (w, CONT_GLYPH_INDEX);
|
|
2734 }
|
|
2735
|
442
|
2736 add_glyph_rune (&data, &gb, BEGIN_GLYPHS, 0, cachel);
|
428
|
2737
|
826
|
2738 if (truncate_win && data.byte_charpos == BYTE_BUF_ZV (b)
|
|
2739 && BYTE_BUF_FETCH_CHAR (b, prev_bytebpos (b, BYTE_BUF_ZV (b))) != '\n')
|
428
|
2740 /* #### Damn this losing shit. */
|
826
|
2741 data.byte_charpos++;
|
428
|
2742 }
|
|
2743 }
|
|
2744 else if ((active_minibuffer || !NILP (synch_minibuffers_value))
|
826
|
2745 && (!echo_area_active (f) || data.byte_charpos == BYTE_BUF_ZV (b)))
|
428
|
2746 {
|
|
2747 /* We need to add a marker to the end of the line since there is no
|
|
2748 newline character in order for the cursor to get drawn. We label
|
|
2749 it as a newline so that it gets handled correctly by the
|
|
2750 whitespace routines below. */
|
|
2751
|
|
2752 data.ch = '\n';
|
|
2753 data.blank_width = DEVMETH (d, eol_cursor_width, ());
|
|
2754 data.findex = DEFAULT_INDEX;
|
|
2755 data.start_col = 0;
|
|
2756 data.start_col_xoffset = 0;
|
826
|
2757 data.byte_start_col_enabled = 0;
|
428
|
2758
|
|
2759 data.max_pixpos += data.blank_width;
|
|
2760 add_emchar_rune (&data);
|
|
2761 data.max_pixpos -= data.blank_width;
|
|
2762
|
|
2763 /* #### urk! Chuck, this shit is bad news. Going around
|
|
2764 manipulating invalid positions is guaranteed to result in
|
|
2765 trouble sooner or later. */
|
826
|
2766 data.byte_charpos = BYTE_BUF_ZV (b) + 1;
|
428
|
2767 }
|
|
2768
|
|
2769 /* Calculate left whitespace boundary. */
|
|
2770 {
|
|
2771 int elt = 0;
|
|
2772
|
|
2773 /* Whitespace past a newline is considered right whitespace. */
|
|
2774 while (elt < Dynarr_length (db->runes))
|
|
2775 {
|
|
2776 struct rune *rb = Dynarr_atp (db->runes, elt);
|
|
2777
|
|
2778 if ((rb->type == RUNE_CHAR && rb->object.chr.ch == ' ')
|
|
2779 || rb->type == RUNE_BLANK)
|
|
2780 {
|
|
2781 dl->bounds.left_white += rb->width;
|
|
2782 elt++;
|
|
2783 }
|
|
2784 else
|
|
2785 elt = Dynarr_length (db->runes);
|
|
2786 }
|
|
2787 }
|
|
2788
|
|
2789 /* Calculate right whitespace boundary. */
|
|
2790 {
|
|
2791 int elt = Dynarr_length (db->runes) - 1;
|
|
2792 int done = 0;
|
|
2793
|
|
2794 while (!done && elt >= 0)
|
|
2795 {
|
|
2796 struct rune *rb = Dynarr_atp (db->runes, elt);
|
|
2797
|
|
2798 if (!(rb->type == RUNE_CHAR && rb->object.chr.ch < 0x100
|
|
2799 && isspace (rb->object.chr.ch))
|
|
2800 && !rb->type == RUNE_BLANK)
|
|
2801 {
|
|
2802 dl->bounds.right_white = rb->xpos + rb->width;
|
|
2803 done = 1;
|
|
2804 }
|
|
2805
|
|
2806 elt--;
|
|
2807
|
|
2808 }
|
|
2809
|
|
2810 /* The line is blank so everything is considered to be right
|
|
2811 whitespace. */
|
|
2812 if (!done)
|
|
2813 dl->bounds.right_white = dl->bounds.left_in;
|
|
2814 }
|
|
2815
|
|
2816 /* Set the display blocks bounds. */
|
|
2817 db->start_pos = dl->bounds.left_in;
|
|
2818 if (Dynarr_length (db->runes))
|
|
2819 {
|
|
2820 struct rune *rb = Dynarr_atp (db->runes, Dynarr_length (db->runes) - 1);
|
|
2821
|
|
2822 db->end_pos = rb->xpos + rb->width;
|
|
2823 }
|
|
2824 else
|
|
2825 db->end_pos = dl->bounds.right_white;
|
|
2826
|
819
|
2827 calculate_baseline (&data);
|
428
|
2828
|
|
2829 dl->ascent = data.new_ascent;
|
|
2830 dl->descent = data.new_descent;
|
|
2831
|
|
2832 {
|
|
2833 unsigned short ascent = (unsigned short) XINT (w->minimum_line_ascent);
|
|
2834
|
|
2835 if (dl->ascent < ascent)
|
|
2836 dl->ascent = ascent;
|
|
2837 }
|
|
2838 {
|
|
2839 unsigned short descent = (unsigned short) XINT (w->minimum_line_descent);
|
|
2840
|
|
2841 if (dl->descent < descent)
|
|
2842 dl->descent = descent;
|
|
2843 }
|
|
2844
|
819
|
2845 calculate_yoffset (dl, db);
|
|
2846
|
428
|
2847 dl->cursor_elt = data.cursor_x;
|
|
2848 /* #### lossage lossage lossage! Fix this shit! */
|
826
|
2849 if (data.byte_charpos > BYTE_BUF_ZV (b))
|
|
2850 dl->end_charpos = BUF_ZV (b);
|
428
|
2851 else
|
826
|
2852 dl->end_charpos = bytebpos_to_charbpos (b, data.byte_charpos) - 1;
|
428
|
2853 if (truncate_win)
|
826
|
2854 data.dl->num_chars = column_at_point (b, dl->end_charpos, 0);
|
428
|
2855 else
|
|
2856 /* This doesn't correctly take into account tabs and control
|
|
2857 characters but if the window isn't being truncated then this
|
|
2858 value isn't going to end up being used anyhow. */
|
826
|
2859 data.dl->num_chars = dl->end_charpos - dl->charpos;
|
428
|
2860
|
|
2861 /* #### handle horizontally scrolled line with text none of which
|
|
2862 was actually laid out. */
|
|
2863
|
|
2864 /* #### handle any remainder of overlay arrow */
|
|
2865
|
|
2866 if (*prop == ADD_FAILED)
|
|
2867 *prop = NULL;
|
|
2868
|
|
2869 if (truncate_win && *prop)
|
|
2870 {
|
|
2871 Dynarr_free (*prop);
|
|
2872 *prop = NULL;
|
|
2873 }
|
|
2874
|
|
2875 extent_fragment_delete (data.ef);
|
|
2876
|
|
2877 /* #### If we started at EOB, then make sure we return a value past
|
|
2878 it so that regenerate_window will exit properly. This is bogus.
|
|
2879 The main loop should get fixed so that it isn't necessary to call
|
|
2880 this function if we are already at EOB. */
|
|
2881
|
826
|
2882 if (data.byte_charpos == BYTE_BUF_ZV (b) && byte_start_pos == BYTE_BUF_ZV (b))
|
|
2883 return data.byte_charpos + 1; /* Yuck! */
|
428
|
2884 else
|
826
|
2885 return data.byte_charpos;
|
428
|
2886 }
|
|
2887
|
|
2888 /* Display the overlay arrow at the beginning of the given line. */
|
|
2889
|
|
2890 static int
|
|
2891 create_overlay_glyph_block (struct window *w, struct display_line *dl)
|
|
2892 {
|
|
2893 struct frame *f = XFRAME (w->frame);
|
|
2894 struct device *d = XDEVICE (f->device);
|
|
2895 pos_data data;
|
|
2896
|
|
2897 /* If Voverlay_arrow_string isn't valid then just fail silently. */
|
|
2898 if (!STRINGP (Voverlay_arrow_string) && !GLYPHP (Voverlay_arrow_string))
|
|
2899 return 0;
|
|
2900
|
|
2901 xzero (data);
|
|
2902 data.ef = NULL;
|
|
2903 data.d = d;
|
793
|
2904 data.window = wrap_window (w);
|
428
|
2905 data.db = get_display_block_from_line (dl, OVERWRITE);
|
|
2906 data.dl = dl;
|
|
2907 data.pixpos = dl->bounds.left_in;
|
|
2908 data.max_pixpos = dl->bounds.right_in;
|
|
2909 data.cursor_type = NO_CURSOR;
|
|
2910 data.cursor_x = -1;
|
|
2911 data.findex = DEFAULT_INDEX;
|
|
2912 data.last_charset = Qunbound;
|
|
2913 data.last_findex = DEFAULT_INDEX;
|
|
2914 data.result_str = Qnil;
|
|
2915 data.string = Qnil;
|
|
2916
|
|
2917 Dynarr_reset (data.db->runes);
|
|
2918
|
|
2919 if (STRINGP (Voverlay_arrow_string))
|
|
2920 {
|
665
|
2921 add_intbyte_string_runes
|
428
|
2922 (&data,
|
|
2923 XSTRING_DATA (Voverlay_arrow_string),
|
|
2924 XSTRING_LENGTH (Voverlay_arrow_string),
|
793
|
2925 1, 0);
|
428
|
2926 }
|
|
2927 else if (GLYPHP (Voverlay_arrow_string))
|
|
2928 {
|
|
2929 struct glyph_block gb;
|
|
2930
|
|
2931 gb.glyph = Voverlay_arrow_string;
|
|
2932 gb.extent = Qnil;
|
|
2933 add_glyph_rune (&data, &gb, BEGIN_GLYPHS, 0, 0);
|
|
2934 }
|
819
|
2935
|
428
|
2936 if (data.max_pixmap_height)
|
|
2937 {
|
|
2938 int height = data.new_ascent + data.new_descent;
|
|
2939 int pix_ascent, pix_descent;
|
819
|
2940
|
428
|
2941 pix_descent = data.max_pixmap_height * data.new_descent / height;
|
|
2942 pix_ascent = data.max_pixmap_height - pix_descent;
|
819
|
2943 calculate_baseline (&data);
|
428
|
2944
|
|
2945 data.new_ascent = max (data.new_ascent, pix_ascent);
|
|
2946 data.new_descent = max (data.new_descent, pix_descent);
|
|
2947 }
|
|
2948
|
|
2949 dl->ascent = data.new_ascent;
|
|
2950 dl->descent = data.new_descent;
|
|
2951
|
|
2952 data.db->start_pos = dl->bounds.left_in;
|
|
2953 data.db->end_pos = data.pixpos;
|
|
2954
|
819
|
2955 calculate_yoffset (dl, data.db);
|
|
2956
|
428
|
2957 return data.pixpos - dl->bounds.left_in;
|
|
2958 }
|
|
2959
|
|
2960 /* Add a type of glyph to a margin display block. */
|
|
2961
|
|
2962 static int
|
|
2963 add_margin_runes (struct display_line *dl, struct display_block *db, int start,
|
|
2964 int count, enum glyph_layout layout, int side, Lisp_Object window)
|
|
2965 {
|
|
2966 glyph_block_dynarr *gbd = (side == LEFT_GLYPHS
|
|
2967 ? dl->left_glyphs
|
|
2968 : dl->right_glyphs);
|
|
2969 int elt, end;
|
|
2970 int reverse;
|
442
|
2971 struct window *w = XWINDOW (window);
|
|
2972 struct frame *f = XFRAME (w->frame);
|
|
2973 struct device *d = XDEVICE (f->device);
|
|
2974 pos_data data;
|
|
2975
|
|
2976 xzero (data);
|
|
2977 data.d = d;
|
|
2978 data.window = window;
|
|
2979 data.db = db;
|
|
2980 data.dl = dl;
|
|
2981 data.pixpos = start;
|
|
2982 data.cursor_type = NO_CURSOR;
|
|
2983 data.cursor_x = -1;
|
|
2984 data.last_charset = Qunbound;
|
|
2985 data.last_findex = DEFAULT_INDEX;
|
|
2986 data.result_str = Qnil;
|
|
2987 data.string = Qnil;
|
|
2988 data.new_ascent = dl->ascent;
|
|
2989 data.new_descent = dl->descent;
|
428
|
2990
|
|
2991 if ((layout == GL_WHITESPACE && side == LEFT_GLYPHS)
|
|
2992 || (layout == GL_INSIDE_MARGIN && side == RIGHT_GLYPHS))
|
|
2993 {
|
|
2994 reverse = 1;
|
|
2995 elt = Dynarr_length (gbd) - 1;
|
|
2996 end = 0;
|
|
2997 }
|
|
2998 else
|
|
2999 {
|
|
3000 reverse = 0;
|
|
3001 elt = 0;
|
|
3002 end = Dynarr_length (gbd);
|
|
3003 }
|
|
3004
|
|
3005 while (count && ((!reverse && elt < end) || (reverse && elt >= end)))
|
|
3006 {
|
|
3007 struct glyph_block *gb = Dynarr_atp (gbd, elt);
|
|
3008
|
|
3009 if (NILP (gb->extent))
|
|
3010 abort (); /* these should have been handled in add_glyph_rune */
|
|
3011
|
|
3012 if (gb->active &&
|
|
3013 ((side == LEFT_GLYPHS &&
|
|
3014 extent_begin_glyph_layout (XEXTENT (gb->extent)) == layout)
|
|
3015 || (side == RIGHT_GLYPHS &&
|
|
3016 extent_end_glyph_layout (XEXTENT (gb->extent)) == layout)))
|
|
3017 {
|
442
|
3018 data.findex = gb->findex;
|
|
3019 data.max_pixpos = data.pixpos + gb->width;
|
|
3020 add_glyph_rune (&data, gb, side, 0, NULL);
|
428
|
3021 count--;
|
|
3022 gb->active = 0;
|
|
3023 }
|
|
3024
|
|
3025 (reverse ? elt-- : elt++);
|
|
3026 }
|
|
3027
|
819
|
3028 calculate_baseline (&data);
|
442
|
3029
|
|
3030 dl->ascent = data.new_ascent;
|
|
3031 dl->descent = data.new_descent;
|
|
3032
|
819
|
3033 calculate_yoffset (dl, data.db);
|
|
3034
|
442
|
3035 return data.pixpos;
|
428
|
3036 }
|
|
3037
|
|
3038 /* Add a blank to a margin display block. */
|
|
3039
|
|
3040 static void
|
|
3041 add_margin_blank (struct display_line *dl, struct display_block *db,
|
|
3042 struct window *w, int xpos, int width, int side)
|
|
3043 {
|
|
3044 struct rune rb;
|
|
3045
|
|
3046 rb.findex = (side == LEFT_GLYPHS
|
|
3047 ? get_builtin_face_cache_index (w, Vleft_margin_face)
|
|
3048 : get_builtin_face_cache_index (w, Vright_margin_face));
|
|
3049 rb.xpos = xpos;
|
|
3050 rb.width = width;
|
826
|
3051 rb.charpos = -1;
|
428
|
3052 rb.endpos = 0;
|
|
3053 rb.type = RUNE_BLANK;
|
|
3054 rb.cursor_type = CURSOR_OFF;
|
|
3055
|
|
3056 Dynarr_add (db->runes, rb);
|
|
3057 }
|
|
3058
|
|
3059 /* Display glyphs in the left outside margin, left inside margin and
|
|
3060 left whitespace area. */
|
|
3061
|
|
3062 static void
|
|
3063 create_left_glyph_block (struct window *w, struct display_line *dl,
|
|
3064 int overlay_width)
|
|
3065 {
|
|
3066 Lisp_Object window;
|
|
3067
|
|
3068 int use_overflow = (NILP (w->use_left_overflow) ? 0 : 1);
|
|
3069 int elt, end_xpos;
|
|
3070 int out_end, in_out_start, in_in_end, white_out_start, white_in_start;
|
|
3071 int out_cnt, in_out_cnt, in_in_cnt, white_out_cnt, white_in_cnt;
|
|
3072 int left_in_start = dl->bounds.left_in;
|
|
3073 int left_in_end = dl->bounds.left_in + overlay_width;
|
|
3074
|
|
3075 struct display_block *odb, *idb;
|
|
3076
|
793
|
3077 window = wrap_window (w);
|
428
|
3078
|
|
3079 /* We have to add the glyphs to the line in the order outside,
|
|
3080 inside, whitespace. However the precedence dictates that we
|
|
3081 determine how many will fit in the reverse order. */
|
|
3082
|
|
3083 /* Determine how many whitespace glyphs we can display and where
|
|
3084 they should start. */
|
|
3085 white_in_start = dl->bounds.left_white;
|
|
3086 white_out_start = left_in_start;
|
|
3087 white_out_cnt = white_in_cnt = 0;
|
|
3088 elt = 0;
|
|
3089
|
|
3090 while (elt < Dynarr_length (dl->left_glyphs))
|
|
3091 {
|
|
3092 struct glyph_block *gb = Dynarr_atp (dl->left_glyphs, elt);
|
|
3093
|
|
3094 if (NILP (gb->extent))
|
|
3095 abort (); /* these should have been handled in add_glyph_rune */
|
|
3096
|
|
3097 if (extent_begin_glyph_layout (XEXTENT (gb->extent)) == GL_WHITESPACE)
|
|
3098 {
|
|
3099 int width;
|
|
3100
|
438
|
3101 width = glyph_width (gb->glyph, window);
|
428
|
3102
|
|
3103 if (white_in_start - width >= left_in_end)
|
|
3104 {
|
|
3105 white_in_cnt++;
|
|
3106 white_in_start -= width;
|
|
3107 gb->width = width;
|
|
3108 gb->active = 1;
|
|
3109 }
|
|
3110 else if (use_overflow
|
|
3111 && (white_out_start - width > dl->bounds.left_out))
|
|
3112 {
|
|
3113 white_out_cnt++;
|
|
3114 white_out_start -= width;
|
|
3115 gb->width = width;
|
|
3116 gb->active = 1;
|
|
3117 }
|
|
3118 else
|
|
3119 gb->active = 0;
|
|
3120 }
|
|
3121
|
|
3122 elt++;
|
|
3123 }
|
|
3124
|
|
3125 /* Determine how many inside margin glyphs we can display and where
|
|
3126 they should start. The inside margin glyphs get whatever space
|
|
3127 is left after the whitespace glyphs have been displayed. These
|
|
3128 are tricky to calculate since if we decide to use the overflow
|
|
3129 area we basically have to start over. So for these we build up a
|
|
3130 list of just the inside margin glyphs and manipulate it to
|
|
3131 determine the needed info. */
|
|
3132 {
|
|
3133 glyph_block_dynarr *ib;
|
|
3134 int avail_in, avail_out;
|
|
3135 int done = 0;
|
|
3136 int marker = 0;
|
|
3137 int used_in, used_out;
|
|
3138
|
|
3139 elt = 0;
|
|
3140 used_in = used_out = 0;
|
|
3141 ib = Dynarr_new (glyph_block);
|
|
3142 while (elt < Dynarr_length (dl->left_glyphs))
|
|
3143 {
|
|
3144 struct glyph_block *gb = Dynarr_atp (dl->left_glyphs, elt);
|
|
3145
|
|
3146 if (NILP (gb->extent))
|
|
3147 abort (); /* these should have been handled in add_glyph_rune */
|
|
3148
|
|
3149 if (extent_begin_glyph_layout (XEXTENT (gb->extent)) ==
|
|
3150 GL_INSIDE_MARGIN)
|
|
3151 {
|
438
|
3152 gb->width = glyph_width (gb->glyph, window);
|
428
|
3153 used_in += gb->width;
|
|
3154 Dynarr_add (ib, *gb);
|
|
3155 }
|
|
3156
|
|
3157 elt++;
|
|
3158 }
|
|
3159
|
|
3160 if (white_out_cnt)
|
|
3161 avail_in = 0;
|
|
3162 else
|
|
3163 {
|
|
3164 avail_in = white_in_start - left_in_end;
|
|
3165 if (avail_in < 0)
|
|
3166 avail_in = 0;
|
|
3167 }
|
|
3168
|
|
3169 if (!use_overflow)
|
|
3170 avail_out = 0;
|
|
3171 else
|
|
3172 avail_out = white_out_start - dl->bounds.left_out;
|
|
3173
|
|
3174 marker = 0;
|
|
3175 while (!done && marker < Dynarr_length (ib))
|
|
3176 {
|
|
3177 int width = Dynarr_atp (ib, marker)->width;
|
|
3178
|
|
3179 /* If everything now fits in the available inside margin
|
|
3180 space, we're done. */
|
|
3181 if (used_in <= avail_in)
|
|
3182 done = 1;
|
|
3183 else
|
|
3184 {
|
|
3185 /* Otherwise see if we have room to move a glyph to the
|
|
3186 outside. */
|
|
3187 if (used_out + width <= avail_out)
|
|
3188 {
|
|
3189 used_out += width;
|
|
3190 used_in -= width;
|
|
3191 }
|
|
3192 else
|
|
3193 done = 1;
|
|
3194 }
|
|
3195
|
|
3196 if (!done)
|
|
3197 marker++;
|
|
3198 }
|
|
3199
|
|
3200 /* At this point we now know that everything from marker on goes in
|
|
3201 the inside margin and everything before it goes in the outside
|
|
3202 margin. The stuff going into the outside margin is guaranteed
|
|
3203 to fit, but we may have to trim some stuff from the inside. */
|
|
3204
|
|
3205 in_in_end = left_in_end;
|
|
3206 in_out_start = white_out_start;
|
|
3207 in_out_cnt = in_in_cnt = 0;
|
|
3208
|
|
3209 Dynarr_free (ib);
|
|
3210 elt = 0;
|
|
3211 while (elt < Dynarr_length (dl->left_glyphs))
|
|
3212 {
|
|
3213 struct glyph_block *gb = Dynarr_atp (dl->left_glyphs, elt);
|
|
3214
|
|
3215 if (NILP (gb->extent))
|
|
3216 abort (); /* these should have been handled in add_glyph_rune */
|
|
3217
|
|
3218 if (extent_begin_glyph_layout (XEXTENT (gb->extent)) ==
|
|
3219 GL_INSIDE_MARGIN)
|
|
3220 {
|
438
|
3221 int width = glyph_width (gb->glyph, window);
|
428
|
3222
|
|
3223 if (used_out)
|
|
3224 {
|
|
3225 in_out_cnt++;
|
|
3226 in_out_start -= width;
|
|
3227 gb->width = width;
|
|
3228 gb->active = 1;
|
|
3229 used_out -= width;
|
|
3230 }
|
|
3231 else if (in_in_end + width < white_in_start)
|
|
3232 {
|
|
3233 in_in_cnt++;
|
|
3234 in_in_end += width;
|
|
3235 gb->width = width;
|
|
3236 gb->active = 1;
|
|
3237 }
|
|
3238 else
|
|
3239 gb->active = 0;
|
|
3240 }
|
|
3241
|
|
3242 elt++;
|
|
3243 }
|
|
3244 }
|
|
3245
|
|
3246 /* Determine how many outside margin glyphs we can display. They
|
|
3247 always start at the left outside margin and can only use the
|
|
3248 outside margin space. */
|
|
3249 out_end = dl->bounds.left_out;
|
|
3250 out_cnt = 0;
|
|
3251 elt = 0;
|
|
3252
|
|
3253 while (elt < Dynarr_length (dl->left_glyphs))
|
|
3254 {
|
|
3255 struct glyph_block *gb = Dynarr_atp (dl->left_glyphs, elt);
|
|
3256
|
|
3257 if (NILP (gb->extent))
|
|
3258 abort (); /* these should have been handled in add_glyph_rune */
|
|
3259
|
|
3260 if (extent_begin_glyph_layout (XEXTENT (gb->extent)) ==
|
|
3261 GL_OUTSIDE_MARGIN)
|
|
3262 {
|
438
|
3263 int width = glyph_width (gb->glyph, window);
|
428
|
3264
|
|
3265 if (out_end + width <= in_out_start)
|
|
3266 {
|
|
3267 out_cnt++;
|
|
3268 out_end += width;
|
|
3269 gb->width = width;
|
|
3270 gb->active = 1;
|
|
3271 }
|
|
3272 else
|
|
3273 gb->active = 0;
|
|
3274 }
|
|
3275
|
|
3276 elt++;
|
|
3277 }
|
|
3278
|
|
3279 /* Now that we know where everything goes, we add the glyphs as
|
|
3280 runes to the appropriate display blocks. */
|
|
3281 if (out_cnt || in_out_cnt || white_out_cnt)
|
|
3282 {
|
|
3283 odb = get_display_block_from_line (dl, LEFT_OUTSIDE_MARGIN);
|
|
3284 odb->start_pos = dl->bounds.left_out;
|
|
3285 /* #### We should stop adding a blank to account for the space
|
|
3286 between the end of the glyphs and the margin and instead set
|
|
3287 this accordingly. */
|
|
3288 odb->end_pos = dl->bounds.left_in;
|
|
3289 Dynarr_reset (odb->runes);
|
|
3290 }
|
|
3291 else
|
|
3292 odb = 0;
|
|
3293
|
|
3294 if (in_in_cnt || white_in_cnt)
|
|
3295 {
|
|
3296 idb = get_display_block_from_line (dl, LEFT_INSIDE_MARGIN);
|
|
3297 idb->start_pos = dl->bounds.left_in;
|
|
3298 /* #### See above comment for odb->end_pos */
|
|
3299 idb->end_pos = dl->bounds.left_white;
|
|
3300 Dynarr_reset (idb->runes);
|
|
3301 }
|
|
3302 else
|
|
3303 idb = 0;
|
|
3304
|
|
3305 /* First add the outside margin glyphs. */
|
|
3306 if (out_cnt)
|
|
3307 end_xpos = add_margin_runes (dl, odb, dl->bounds.left_out, out_cnt,
|
|
3308 GL_OUTSIDE_MARGIN, LEFT_GLYPHS, window);
|
|
3309 else
|
|
3310 end_xpos = dl->bounds.left_out;
|
|
3311
|
|
3312 /* There may be blank space between the outside margin glyphs and
|
|
3313 the inside margin glyphs. If so, add a blank. */
|
|
3314 if (in_out_cnt && (in_out_start - end_xpos))
|
|
3315 {
|
|
3316 add_margin_blank (dl, odb, w, end_xpos, in_out_start - end_xpos,
|
|
3317 LEFT_GLYPHS);
|
|
3318 }
|
|
3319
|
|
3320 /* Next add the inside margin glyphs which are actually in the
|
|
3321 outside margin. */
|
|
3322 if (in_out_cnt)
|
|
3323 {
|
|
3324 end_xpos = add_margin_runes (dl, odb, in_out_start, in_out_cnt,
|
|
3325 GL_INSIDE_MARGIN, LEFT_GLYPHS, window);
|
|
3326 }
|
|
3327
|
|
3328 /* If we didn't add any inside margin glyphs to the outside margin,
|
|
3329 but are adding whitespace glyphs, then we need to add a blank
|
|
3330 here. */
|
|
3331 if (!in_out_cnt && white_out_cnt && (white_out_start - end_xpos))
|
|
3332 {
|
|
3333 add_margin_blank (dl, odb, w, end_xpos, white_out_start - end_xpos,
|
|
3334 LEFT_GLYPHS);
|
|
3335 }
|
|
3336
|
|
3337 /* Next add the whitespace margin glyphs which are actually in the
|
|
3338 outside margin. */
|
|
3339 if (white_out_cnt)
|
|
3340 {
|
|
3341 end_xpos = add_margin_runes (dl, odb, white_out_start, white_out_cnt,
|
|
3342 GL_WHITESPACE, LEFT_GLYPHS, window);
|
|
3343 }
|
|
3344
|
|
3345 /* We take care of clearing between the end of the glyphs and the
|
|
3346 start of the inside margin for lines which have glyphs. */
|
|
3347 if (odb && (left_in_start - end_xpos))
|
|
3348 {
|
|
3349 add_margin_blank (dl, odb, w, end_xpos, left_in_start - end_xpos,
|
|
3350 LEFT_GLYPHS);
|
|
3351 }
|
|
3352
|
|
3353 /* Next add the inside margin glyphs which are actually in the
|
|
3354 inside margin. */
|
|
3355 if (in_in_cnt)
|
|
3356 {
|
|
3357 end_xpos = add_margin_runes (dl, idb, left_in_end, in_in_cnt,
|
|
3358 GL_INSIDE_MARGIN, LEFT_GLYPHS, window);
|
|
3359 }
|
|
3360 else
|
|
3361 end_xpos = left_in_end;
|
|
3362
|
|
3363 /* Make sure that the area between the end of the inside margin
|
|
3364 glyphs and the whitespace glyphs is cleared. */
|
|
3365 if (idb && (white_in_start - end_xpos > 0))
|
|
3366 {
|
|
3367 add_margin_blank (dl, idb, w, end_xpos, white_in_start - end_xpos,
|
|
3368 LEFT_GLYPHS);
|
|
3369 }
|
|
3370
|
|
3371 /* Next add the whitespace margin glyphs which are actually in the
|
|
3372 inside margin. */
|
|
3373 if (white_in_cnt)
|
|
3374 {
|
|
3375 add_margin_runes (dl, idb, white_in_start, white_in_cnt, GL_WHITESPACE,
|
|
3376 LEFT_GLYPHS, window);
|
|
3377 }
|
|
3378
|
|
3379 /* Whitespace glyphs always end right next to the text block so
|
|
3380 there is nothing we have to make sure is cleared after them. */
|
|
3381 }
|
|
3382
|
|
3383 /* Display glyphs in the right outside margin, right inside margin and
|
|
3384 right whitespace area. */
|
|
3385
|
|
3386 static void
|
|
3387 create_right_glyph_block (struct window *w, struct display_line *dl)
|
|
3388 {
|
|
3389 Lisp_Object window;
|
|
3390
|
|
3391 int use_overflow = (NILP (w->use_right_overflow) ? 0 : 1);
|
|
3392 int elt, end_xpos;
|
|
3393 int out_start, in_out_end, in_in_start, white_out_end, white_in_end;
|
|
3394 int out_cnt, in_out_cnt, in_in_cnt, white_out_cnt, white_in_cnt;
|
|
3395
|
|
3396 struct display_block *odb, *idb;
|
|
3397
|
793
|
3398 window = wrap_window (w);
|
428
|
3399
|
|
3400 /* We have to add the glyphs to the line in the order outside,
|
|
3401 inside, whitespace. However the precedence dictates that we
|
|
3402 determine how many will fit in the reverse order. */
|
|
3403
|
|
3404 /* Determine how many whitespace glyphs we can display and where
|
|
3405 they should start. */
|
|
3406 white_in_end = dl->bounds.right_white;
|
|
3407 white_out_end = dl->bounds.right_in;
|
|
3408 white_out_cnt = white_in_cnt = 0;
|
|
3409 elt = 0;
|
|
3410
|
|
3411 while (elt < Dynarr_length (dl->right_glyphs))
|
|
3412 {
|
|
3413 struct glyph_block *gb = Dynarr_atp (dl->right_glyphs, elt);
|
|
3414
|
|
3415 if (NILP (gb->extent))
|
|
3416 abort (); /* these should have been handled in add_glyph_rune */
|
|
3417
|
|
3418 if (extent_end_glyph_layout (XEXTENT (gb->extent)) == GL_WHITESPACE)
|
|
3419 {
|
438
|
3420 int width = glyph_width (gb->glyph, window);
|
428
|
3421
|
|
3422 if (white_in_end + width <= dl->bounds.right_in)
|
|
3423 {
|
|
3424 white_in_cnt++;
|
|
3425 white_in_end += width;
|
|
3426 gb->width = width;
|
|
3427 gb->active = 1;
|
|
3428 }
|
|
3429 else if (use_overflow
|
|
3430 && (white_out_end + width <= dl->bounds.right_out))
|
|
3431 {
|
|
3432 white_out_cnt++;
|
|
3433 white_out_end += width;
|
|
3434 gb->width = width;
|
|
3435 gb->active = 1;
|
|
3436 }
|
|
3437 else
|
|
3438 gb->active = 0;
|
|
3439 }
|
|
3440
|
|
3441 elt++;
|
|
3442 }
|
|
3443
|
|
3444 /* Determine how many inside margin glyphs we can display and where
|
|
3445 they should start. The inside margin glyphs get whatever space
|
|
3446 is left after the whitespace glyphs have been displayed. These
|
|
3447 are tricky to calculate since if we decide to use the overflow
|
|
3448 area we basically have to start over. So for these we build up a
|
|
3449 list of just the inside margin glyphs and manipulate it to
|
|
3450 determine the needed info. */
|
|
3451 {
|
|
3452 glyph_block_dynarr *ib;
|
|
3453 int avail_in, avail_out;
|
|
3454 int done = 0;
|
|
3455 int marker = 0;
|
|
3456 int used_in, used_out;
|
|
3457
|
|
3458 elt = 0;
|
|
3459 used_in = used_out = 0;
|
|
3460 ib = Dynarr_new (glyph_block);
|
|
3461 while (elt < Dynarr_length (dl->right_glyphs))
|
|
3462 {
|
|
3463 struct glyph_block *gb = Dynarr_atp (dl->right_glyphs, elt);
|
|
3464
|
|
3465 if (NILP (gb->extent))
|
|
3466 abort (); /* these should have been handled in add_glyph_rune */
|
|
3467
|
|
3468 if (extent_end_glyph_layout (XEXTENT (gb->extent)) == GL_INSIDE_MARGIN)
|
|
3469 {
|
438
|
3470 gb->width = glyph_width (gb->glyph, window);
|
428
|
3471 used_in += gb->width;
|
|
3472 Dynarr_add (ib, *gb);
|
|
3473 }
|
|
3474
|
|
3475 elt++;
|
|
3476 }
|
|
3477
|
|
3478 if (white_out_cnt)
|
|
3479 avail_in = 0;
|
|
3480 else
|
|
3481 avail_in = dl->bounds.right_in - white_in_end;
|
|
3482
|
|
3483 if (!use_overflow)
|
|
3484 avail_out = 0;
|
|
3485 else
|
|
3486 avail_out = dl->bounds.right_out - white_out_end;
|
|
3487
|
|
3488 marker = 0;
|
|
3489 while (!done && marker < Dynarr_length (ib))
|
|
3490 {
|
|
3491 int width = Dynarr_atp (ib, marker)->width;
|
|
3492
|
|
3493 /* If everything now fits in the available inside margin
|
|
3494 space, we're done. */
|
|
3495 if (used_in <= avail_in)
|
|
3496 done = 1;
|
|
3497 else
|
|
3498 {
|
|
3499 /* Otherwise see if we have room to move a glyph to the
|
|
3500 outside. */
|
|
3501 if (used_out + width <= avail_out)
|
|
3502 {
|
|
3503 used_out += width;
|
|
3504 used_in -= width;
|
|
3505 }
|
|
3506 else
|
|
3507 done = 1;
|
|
3508 }
|
|
3509
|
|
3510 if (!done)
|
|
3511 marker++;
|
|
3512 }
|
|
3513
|
|
3514 /* At this point we now know that everything from marker on goes in
|
|
3515 the inside margin and everything before it goes in the outside
|
|
3516 margin. The stuff going into the outside margin is guaranteed
|
|
3517 to fit, but we may have to trim some stuff from the inside. */
|
|
3518
|
|
3519 in_in_start = dl->bounds.right_in;
|
|
3520 in_out_end = dl->bounds.right_in;
|
|
3521 in_out_cnt = in_in_cnt = 0;
|
|
3522
|
|
3523 Dynarr_free (ib);
|
|
3524 elt = 0;
|
|
3525 while (elt < Dynarr_length (dl->right_glyphs))
|
|
3526 {
|
|
3527 struct glyph_block *gb = Dynarr_atp (dl->right_glyphs, elt);
|
|
3528
|
|
3529 if (NILP (gb->extent))
|
|
3530 abort (); /* these should have been handled in add_glyph_rune */
|
|
3531
|
|
3532 if (extent_end_glyph_layout (XEXTENT (gb->extent)) == GL_INSIDE_MARGIN)
|
|
3533 {
|
438
|
3534 int width = glyph_width (gb->glyph, window);
|
428
|
3535
|
|
3536 if (used_out)
|
|
3537 {
|
|
3538 in_out_cnt++;
|
|
3539 in_out_end += width;
|
|
3540 gb->width = width;
|
|
3541 gb->active = 1;
|
|
3542 used_out -= width;
|
|
3543 }
|
|
3544 else if (in_in_start - width >= white_in_end)
|
|
3545 {
|
|
3546 in_in_cnt++;
|
|
3547 in_in_start -= width;
|
|
3548 gb->width = width;
|
|
3549 gb->active = 1;
|
|
3550 }
|
|
3551 else
|
|
3552 gb->active = 0;
|
|
3553 }
|
|
3554
|
|
3555 elt++;
|
|
3556 }
|
|
3557 }
|
|
3558
|
|
3559 /* Determine how many outside margin glyphs we can display. They
|
|
3560 always start at the right outside margin and can only use the
|
|
3561 outside margin space. */
|
|
3562 out_start = dl->bounds.right_out;
|
|
3563 out_cnt = 0;
|
|
3564 elt = 0;
|
|
3565
|
|
3566 while (elt < Dynarr_length (dl->right_glyphs))
|
|
3567 {
|
|
3568 struct glyph_block *gb = Dynarr_atp (dl->right_glyphs, elt);
|
|
3569
|
|
3570 if (NILP (gb->extent))
|
|
3571 abort (); /* these should have been handled in add_glyph_rune */
|
|
3572
|
|
3573 if (extent_end_glyph_layout (XEXTENT (gb->extent)) == GL_OUTSIDE_MARGIN)
|
|
3574 {
|
438
|
3575 int width = glyph_width (gb->glyph, window);
|
428
|
3576
|
|
3577 if (out_start - width >= in_out_end)
|
|
3578 {
|
|
3579 out_cnt++;
|
|
3580 out_start -= width;
|
|
3581 gb->width = width;
|
|
3582 gb->active = 1;
|
|
3583 }
|
|
3584 else
|
|
3585 gb->active = 0;
|
|
3586 }
|
|
3587
|
|
3588 elt++;
|
|
3589 }
|
|
3590
|
|
3591 /* Now that we now where everything goes, we add the glyphs as runes
|
|
3592 to the appropriate display blocks. */
|
|
3593 if (out_cnt || in_out_cnt || white_out_cnt)
|
|
3594 {
|
|
3595 odb = get_display_block_from_line (dl, RIGHT_OUTSIDE_MARGIN);
|
|
3596 /* #### See comments before odb->start_pos init in
|
|
3597 create_left_glyph_block */
|
|
3598 odb->start_pos = dl->bounds.right_in;
|
|
3599 odb->end_pos = dl->bounds.right_out;
|
|
3600 Dynarr_reset (odb->runes);
|
|
3601 }
|
|
3602 else
|
|
3603 odb = 0;
|
|
3604
|
|
3605 if (in_in_cnt || white_in_cnt)
|
|
3606 {
|
|
3607 idb = get_display_block_from_line (dl, RIGHT_INSIDE_MARGIN);
|
|
3608 idb->start_pos = dl->bounds.right_white;
|
|
3609 /* #### See comments before odb->start_pos init in
|
|
3610 create_left_glyph_block */
|
|
3611 idb->end_pos = dl->bounds.right_in;
|
|
3612 Dynarr_reset (idb->runes);
|
|
3613 }
|
|
3614 else
|
|
3615 idb = 0;
|
|
3616
|
|
3617 /* First add the whitespace margin glyphs which are actually in the
|
|
3618 inside margin. */
|
|
3619 if (white_in_cnt)
|
|
3620 {
|
|
3621 end_xpos = add_margin_runes (dl, idb, dl->bounds.right_white,
|
|
3622 white_in_cnt, GL_WHITESPACE, RIGHT_GLYPHS,
|
|
3623 window);
|
|
3624 }
|
|
3625 else
|
|
3626 end_xpos = dl->bounds.right_white;
|
|
3627
|
|
3628 /* Make sure that the area between the end of the whitespace glyphs
|
|
3629 and the inside margin glyphs is cleared. */
|
|
3630 if (in_in_cnt && (in_in_start - end_xpos))
|
|
3631 {
|
|
3632 add_margin_blank (dl, idb, w, end_xpos, in_in_start - end_xpos,
|
|
3633 RIGHT_GLYPHS);
|
|
3634 }
|
|
3635
|
|
3636 /* Next add the inside margin glyphs which are actually in the
|
|
3637 inside margin. */
|
|
3638 if (in_in_cnt)
|
|
3639 {
|
|
3640 end_xpos = add_margin_runes (dl, idb, in_in_start, in_in_cnt,
|
|
3641 GL_INSIDE_MARGIN, RIGHT_GLYPHS, window);
|
|
3642 }
|
|
3643
|
|
3644 /* If we didn't add any inside margin glyphs then make sure the rest
|
|
3645 of the inside margin area gets cleared. */
|
|
3646 if (idb && (dl->bounds.right_in - end_xpos))
|
|
3647 {
|
|
3648 add_margin_blank (dl, idb, w, end_xpos, dl->bounds.right_in - end_xpos,
|
|
3649 RIGHT_GLYPHS);
|
|
3650 }
|
|
3651
|
|
3652 /* Next add any whitespace glyphs in the outside margin. */
|
|
3653 if (white_out_cnt)
|
|
3654 {
|
|
3655 end_xpos = add_margin_runes (dl, odb, dl->bounds.right_in, white_out_cnt,
|
|
3656 GL_WHITESPACE, RIGHT_GLYPHS, window);
|
|
3657 }
|
|
3658 else
|
|
3659 end_xpos = dl->bounds.right_in;
|
|
3660
|
|
3661 /* Next add any inside margin glyphs in the outside margin. */
|
|
3662 if (in_out_cnt)
|
|
3663 {
|
|
3664 end_xpos = add_margin_runes (dl, odb, end_xpos, in_out_cnt,
|
|
3665 GL_INSIDE_MARGIN, RIGHT_GLYPHS, window);
|
|
3666 }
|
|
3667
|
|
3668 /* There may be space between any whitespace or inside margin glyphs
|
|
3669 in the outside margin and the actual outside margin glyphs. */
|
|
3670 if (odb && (out_start - end_xpos))
|
|
3671 {
|
|
3672 add_margin_blank (dl, odb, w, end_xpos, out_start - end_xpos,
|
|
3673 RIGHT_GLYPHS);
|
|
3674 }
|
|
3675
|
|
3676 /* Finally, add the outside margin glyphs. */
|
|
3677 if (out_cnt)
|
|
3678 {
|
|
3679 add_margin_runes (dl, odb, out_start, out_cnt, GL_OUTSIDE_MARGIN,
|
|
3680 RIGHT_GLYPHS, window);
|
|
3681 }
|
|
3682 }
|
|
3683
|
|
3684
|
|
3685 /***************************************************************************/
|
|
3686 /* */
|
|
3687 /* modeline routines */
|
|
3688 /* */
|
|
3689 /***************************************************************************/
|
|
3690
|
438
|
3691 /* This function is also used in frame.c by `generate_title_string' */
|
|
3692 void
|
|
3693 generate_formatted_string_db (Lisp_Object format_str, Lisp_Object result_str,
|
|
3694 struct window *w, struct display_line *dl,
|
|
3695 struct display_block *db, face_index findex,
|
|
3696 int min_pixpos, int max_pixpos, int type)
|
|
3697 {
|
|
3698 struct frame *f = XFRAME (w->frame);
|
|
3699 struct device *d = XDEVICE (f->device);
|
|
3700
|
|
3701 pos_data data;
|
|
3702 int c_pixpos;
|
|
3703 Charcount offset = 0;
|
|
3704
|
|
3705 xzero (data);
|
|
3706 data.d = d;
|
|
3707 data.db = db;
|
|
3708 data.dl = dl;
|
|
3709 data.findex = findex;
|
|
3710 data.pixpos = min_pixpos;
|
|
3711 data.max_pixpos = max_pixpos;
|
|
3712 data.cursor_type = NO_CURSOR;
|
|
3713 data.last_charset = Qunbound;
|
|
3714 data.last_findex = DEFAULT_INDEX;
|
|
3715 data.result_str = result_str;
|
|
3716 data.is_modeline = 1;
|
|
3717 data.string = Qnil;
|
793
|
3718 data.window = wrap_window (w);
|
438
|
3719
|
|
3720 Dynarr_reset (formatted_string_extent_dynarr);
|
|
3721 Dynarr_reset (formatted_string_extent_start_dynarr);
|
|
3722 Dynarr_reset (formatted_string_extent_end_dynarr);
|
|
3723
|
|
3724 /* result_str is nil when we're building a frame or icon title. Otherwise,
|
|
3725 we're building a modeline, so the offset starts at the modeline
|
442
|
3726 horizontal scrolling amount */
|
438
|
3727 if (! NILP (result_str))
|
|
3728 offset = w->modeline_hscroll;
|
|
3729 generate_fstring_runes (w, &data, 0, 0, -1, format_str, 0,
|
|
3730 max_pixpos - min_pixpos, findex, type, &offset,
|
|
3731 Qnil);
|
|
3732
|
|
3733 if (Dynarr_length (db->runes))
|
|
3734 {
|
|
3735 struct rune *rb =
|
|
3736 Dynarr_atp (db->runes, Dynarr_length (db->runes) - 1);
|
|
3737 c_pixpos = rb->xpos + rb->width;
|
|
3738 }
|
|
3739 else
|
|
3740 c_pixpos = min_pixpos;
|
|
3741
|
|
3742 /* If we don't reach the right side of the window, add a blank rune
|
|
3743 to make up the difference. This usually only occurs if the
|
|
3744 modeline face is using a proportional width font or a fixed width
|
|
3745 font of a different size from the default face font. */
|
|
3746
|
|
3747 if (c_pixpos < max_pixpos)
|
|
3748 {
|
|
3749 data.pixpos = c_pixpos;
|
|
3750 data.blank_width = max_pixpos - data.pixpos;
|
|
3751
|
|
3752 add_blank_rune (&data, NULL, 0);
|
|
3753 }
|
|
3754
|
|
3755 /* Now create the result string and frob the extents into it. */
|
|
3756 if (!NILP (result_str))
|
|
3757 {
|
|
3758 int elt;
|
|
3759 Bytecount len;
|
665
|
3760 Intbyte *strdata;
|
438
|
3761 struct buffer *buf = XBUFFER (WINDOW_BUFFER (w));
|
|
3762
|
442
|
3763 in_modeline_generation = 1;
|
|
3764
|
771
|
3765 sledgehammer_check_ascii_begin (result_str);
|
438
|
3766 detach_all_extents (result_str);
|
793
|
3767 resize_string (result_str, -1,
|
438
|
3768 data.bytepos - XSTRING_LENGTH (result_str));
|
|
3769
|
|
3770 strdata = XSTRING_DATA (result_str);
|
|
3771
|
|
3772 for (elt = 0, len = 0; elt < Dynarr_length (db->runes); elt++)
|
|
3773 {
|
|
3774 if (Dynarr_atp (db->runes, elt)->type == RUNE_CHAR)
|
|
3775 {
|
|
3776 len += (set_charptr_emchar
|
|
3777 (strdata + len, Dynarr_atp (db->runes,
|
|
3778 elt)->object.chr.ch));
|
|
3779 }
|
|
3780 }
|
|
3781
|
771
|
3782 init_string_ascii_begin (result_str);
|
|
3783 bump_string_modiff (result_str);
|
|
3784 sledgehammer_check_ascii_begin (result_str);
|
|
3785
|
438
|
3786 for (elt = 0; elt < Dynarr_length (formatted_string_extent_dynarr);
|
|
3787 elt++)
|
|
3788 {
|
|
3789 Lisp_Object extent = Qnil;
|
|
3790 Lisp_Object child;
|
|
3791
|
793
|
3792 extent = wrap_extent (Dynarr_at (formatted_string_extent_dynarr, elt));
|
438
|
3793 child = Fgethash (extent, buf->modeline_extent_table, Qnil);
|
|
3794 if (NILP (child))
|
|
3795 {
|
|
3796 child = Fmake_extent (Qnil, Qnil, result_str);
|
|
3797 Fputhash (extent, child, buf->modeline_extent_table);
|
|
3798 }
|
|
3799 Fset_extent_parent (child, extent);
|
|
3800 set_extent_endpoints
|
|
3801 (XEXTENT (child),
|
|
3802 Dynarr_at (formatted_string_extent_start_dynarr, elt),
|
|
3803 Dynarr_at (formatted_string_extent_end_dynarr, elt),
|
|
3804 result_str);
|
|
3805 }
|
442
|
3806
|
|
3807 in_modeline_generation = 0;
|
438
|
3808 }
|
|
3809 }
|
|
3810
|
428
|
3811 /* Ensure that the given display line DL accurately represents the
|
|
3812 modeline for the given window. */
|
|
3813 static void
|
|
3814 generate_modeline (struct window *w, struct display_line *dl, int type)
|
|
3815 {
|
|
3816 struct buffer *b = XBUFFER (w->buffer);
|
|
3817 struct frame *f = XFRAME (w->frame);
|
|
3818 struct device *d = XDEVICE (f->device);
|
|
3819
|
|
3820 /* Unlike display line and rune pointers, this one can't change underneath
|
|
3821 our feet. */
|
|
3822 struct display_block *db = get_display_block_from_line (dl, TEXT);
|
|
3823 int max_pixpos, min_pixpos, ypos_adj;
|
|
3824 Lisp_Object font_inst;
|
|
3825
|
|
3826 /* This will actually determine incorrect inside boundaries for the
|
|
3827 modeline since it ignores the margins. However being aware of this fact
|
|
3828 we never use those values anywhere so it doesn't matter. */
|
|
3829 dl->bounds = calculate_display_line_boundaries (w, 1);
|
|
3830
|
|
3831 /* We are generating a modeline. */
|
|
3832 dl->modeline = 1;
|
|
3833 dl->cursor_elt = -1;
|
|
3834
|
|
3835 /* Reset the runes on the modeline. */
|
|
3836 Dynarr_reset (db->runes);
|
|
3837
|
|
3838 if (!WINDOW_HAS_MODELINE_P (w))
|
|
3839 {
|
|
3840 struct rune rb;
|
|
3841
|
|
3842 /* If there is a horizontal scrollbar, don't add anything. */
|
|
3843 if (window_scrollbar_height (w))
|
|
3844 return;
|
|
3845
|
|
3846 dl->ascent = DEVMETH (d, divider_height, ());
|
|
3847 dl->descent = 0;
|
|
3848 /* The modeline is at the bottom of the gutters. */
|
|
3849 dl->ypos = WINDOW_BOTTOM (w);
|
|
3850
|
|
3851 rb.findex = MODELINE_INDEX;
|
|
3852 rb.xpos = dl->bounds.left_out;
|
|
3853 rb.width = dl->bounds.right_out - dl->bounds.left_out;
|
826
|
3854 rb.charpos = 0;
|
428
|
3855 rb.endpos = 0;
|
|
3856 rb.type = RUNE_HLINE;
|
|
3857 rb.object.hline.thickness = 1;
|
|
3858 rb.object.hline.yoffset = 0;
|
|
3859 rb.cursor_type = NO_CURSOR;
|
|
3860
|
|
3861 if (!EQ (Qzero, w->modeline_shadow_thickness)
|
|
3862 && FRAME_WIN_P (f))
|
|
3863 {
|
|
3864 int shadow_thickness = MODELINE_SHADOW_THICKNESS (w);
|
|
3865
|
|
3866 dl->ypos -= shadow_thickness;
|
|
3867 rb.xpos += shadow_thickness;
|
|
3868 rb.width -= 2 * shadow_thickness;
|
|
3869 }
|
|
3870
|
|
3871 Dynarr_add (db->runes, rb);
|
|
3872 return;
|
|
3873 }
|
|
3874
|
|
3875 /* !!#### not right; needs to compute the max height of
|
|
3876 all the charsets */
|
|
3877 font_inst = WINDOW_FACE_CACHEL_FONT (w, MODELINE_INDEX, Vcharset_ascii);
|
|
3878
|
|
3879 dl->ascent = XFONT_INSTANCE (font_inst)->ascent;
|
|
3880 dl->descent = XFONT_INSTANCE (font_inst)->descent;
|
|
3881
|
|
3882 min_pixpos = dl->bounds.left_out;
|
|
3883 max_pixpos = dl->bounds.right_out;
|
|
3884
|
|
3885 if (!EQ (Qzero, w->modeline_shadow_thickness) && FRAME_WIN_P (f))
|
|
3886 {
|
|
3887 int shadow_thickness = MODELINE_SHADOW_THICKNESS (w);
|
|
3888
|
|
3889 ypos_adj = shadow_thickness;
|
|
3890 min_pixpos += shadow_thickness;
|
|
3891 max_pixpos -= shadow_thickness;
|
|
3892 }
|
|
3893 else
|
|
3894 ypos_adj = 0;
|
|
3895
|
|
3896 generate_formatted_string_db (b->modeline_format,
|
|
3897 b->generated_modeline_string, w, dl, db,
|
|
3898 MODELINE_INDEX, min_pixpos, max_pixpos, type);
|
|
3899
|
|
3900 /* The modeline is at the bottom of the gutters. We have to wait to
|
|
3901 set this until we've generated the modeline in order to account
|
|
3902 for any embedded faces. */
|
|
3903 dl->ypos = WINDOW_BOTTOM (w) - dl->descent - ypos_adj;
|
|
3904 }
|
|
3905
|
|
3906 static Charcount
|
665
|
3907 add_string_to_fstring_db_runes (pos_data *data, const Intbyte *str,
|
771
|
3908 Charcount pos, Charcount min_pos,
|
|
3909 Charcount max_pos)
|
428
|
3910 {
|
|
3911 /* This function has been Mule-ized. */
|
|
3912 Charcount end;
|
665
|
3913 const Intbyte *cur_pos = str;
|
428
|
3914 struct display_block *db = data->db;
|
|
3915
|
|
3916 data->blank_width = space_width (XWINDOW (data->window));
|
|
3917 while (Dynarr_length (db->runes) < pos)
|
|
3918 add_blank_rune (data, NULL, 0);
|
|
3919
|
|
3920 end = (Dynarr_length (db->runes) +
|
442
|
3921 bytecount_to_charcount (str, strlen ((const char *) str)));
|
428
|
3922 if (max_pos != -1)
|
|
3923 end = min (max_pos, end);
|
|
3924
|
|
3925 while (pos < end && *cur_pos)
|
|
3926 {
|
665
|
3927 const Intbyte *old_cur_pos = cur_pos;
|
428
|
3928 int succeeded;
|
|
3929
|
|
3930 data->ch = charptr_emchar (cur_pos);
|
|
3931 succeeded = (add_emchar_rune (data) != ADD_FAILED);
|
|
3932 INC_CHARPTR (cur_pos);
|
|
3933 if (succeeded)
|
|
3934 {
|
|
3935 pos++;
|
|
3936 data->modeline_charpos++;
|
|
3937 data->bytepos += cur_pos - old_cur_pos;
|
|
3938 }
|
|
3939 }
|
|
3940
|
|
3941 while (Dynarr_length (db->runes) < min_pos &&
|
|
3942 (data->pixpos + data->blank_width <= data->max_pixpos))
|
|
3943 add_blank_rune (data, NULL, 0);
|
|
3944
|
|
3945 return Dynarr_length (db->runes);
|
|
3946 }
|
|
3947
|
|
3948 /* #### Urk! Should also handle begin-glyphs and end-glyphs in
|
|
3949 modeline extents. */
|
|
3950 static Charcount
|
|
3951 add_glyph_to_fstring_db_runes (pos_data *data, Lisp_Object glyph,
|
438
|
3952 Charcount pos, Charcount min_pos,
|
|
3953 Charcount max_pos, Lisp_Object extent)
|
428
|
3954 {
|
|
3955 /* This function has been Mule-ized. */
|
|
3956 Charcount end;
|
|
3957 struct display_block *db = data->db;
|
|
3958 struct glyph_block gb;
|
|
3959
|
|
3960 data->blank_width = space_width (XWINDOW (data->window));
|
|
3961 while (Dynarr_length (db->runes) < pos)
|
|
3962 add_blank_rune (data, NULL, 0);
|
|
3963
|
|
3964 end = Dynarr_length (db->runes) + 1;
|
|
3965 if (max_pos != -1)
|
|
3966 end = min (max_pos, end);
|
|
3967
|
|
3968 gb.glyph = glyph;
|
438
|
3969 gb.extent = extent;
|
428
|
3970 add_glyph_rune (data, &gb, BEGIN_GLYPHS, 0, 0);
|
|
3971 pos++;
|
|
3972
|
|
3973 while (Dynarr_length (db->runes) < pos &&
|
|
3974 (data->pixpos + data->blank_width <= data->max_pixpos))
|
|
3975 add_blank_rune (data, NULL, 0);
|
|
3976
|
|
3977 return Dynarr_length (db->runes);
|
|
3978 }
|
|
3979
|
|
3980 /* If max_pos is == -1, it is considered to be infinite. The same is
|
|
3981 true of max_pixsize. */
|
|
3982 #define SET_CURRENT_MODE_CHARS_PIXSIZE \
|
|
3983 if (Dynarr_length (data->db->runes)) \
|
|
3984 cur_pixsize = data->pixpos - Dynarr_atp (data->db->runes, 0)->xpos; \
|
|
3985 else \
|
|
3986 cur_pixsize = 0;
|
|
3987
|
|
3988 /* Note that this function does "positions" in terms of characters and
|
|
3989 not in terms of columns. This is necessary to make the formatting
|
|
3990 work correctly when proportional width fonts are used in the
|
|
3991 modeline. */
|
|
3992 static Charcount
|
|
3993 generate_fstring_runes (struct window *w, pos_data *data, Charcount pos,
|
|
3994 Charcount min_pos, Charcount max_pos,
|
|
3995 Lisp_Object elt, int depth, int max_pixsize,
|
438
|
3996 face_index findex, int type, Charcount *offset,
|
|
3997 Lisp_Object cur_ext)
|
428
|
3998 {
|
|
3999 /* This function has been Mule-ized. */
|
|
4000 /* #### The other losing things in this function are:
|
|
4001
|
|
4002 -- C zero-terminated-string lossage.
|
|
4003 -- Non-printable characters should be converted into something
|
|
4004 appropriate (e.g. ^F) instead of blindly being printed anyway.
|
|
4005 */
|
|
4006
|
|
4007 tail_recurse:
|
|
4008 if (depth > 10)
|
|
4009 goto invalid;
|
|
4010
|
|
4011 depth++;
|
|
4012
|
|
4013 if (STRINGP (elt))
|
|
4014 {
|
|
4015 /* A string. Add to the display line and check for %-constructs
|
|
4016 within it. */
|
|
4017
|
665
|
4018 Intbyte *this = XSTRING_DATA (elt);
|
428
|
4019
|
|
4020 while ((pos < max_pos || max_pos == -1) && *this)
|
|
4021 {
|
665
|
4022 Intbyte *last = this;
|
428
|
4023
|
|
4024 while (*this && *this != '%')
|
|
4025 this++;
|
|
4026
|
|
4027 if (this != last)
|
|
4028 {
|
438
|
4029 /* No %-construct */
|
428
|
4030 Charcount size =
|
438
|
4031 bytecount_to_charcount (last, this - last);
|
|
4032
|
|
4033 if (size <= *offset)
|
|
4034 *offset -= size;
|
|
4035 else
|
|
4036 {
|
|
4037 Charcount tmp_max = (max_pos == -1 ? pos + size - *offset :
|
|
4038 min (pos + size - *offset, max_pos));
|
665
|
4039 const Intbyte *tmp_last = charptr_n_addr (last, *offset);
|
438
|
4040
|
|
4041 pos = add_string_to_fstring_db_runes (data, tmp_last,
|
|
4042 pos, pos, tmp_max);
|
|
4043 *offset = 0;
|
|
4044 }
|
428
|
4045 }
|
|
4046 else /* *this == '%' */
|
|
4047 {
|
|
4048 Charcount spec_width = 0;
|
|
4049
|
|
4050 this++; /* skip over '%' */
|
|
4051
|
|
4052 /* We can't allow -ve args due to the "%-" construct.
|
|
4053 * Argument specifies minwidth but not maxwidth
|
|
4054 * (maxwidth can be specified by
|
|
4055 * (<negative-number> . <stuff>) modeline elements)
|
|
4056 */
|
|
4057 while (isdigit (*this))
|
|
4058 {
|
|
4059 spec_width = spec_width * 10 + (*this - '0');
|
|
4060 this++;
|
|
4061 }
|
|
4062 spec_width += pos;
|
|
4063
|
|
4064 if (*this == 'M')
|
|
4065 {
|
|
4066 pos = generate_fstring_runes (w, data, pos, spec_width,
|
|
4067 max_pos, Vglobal_mode_string,
|
|
4068 depth, max_pixsize, findex,
|
438
|
4069 type, offset, cur_ext);
|
428
|
4070 }
|
|
4071 else if (*this == '-')
|
|
4072 {
|
|
4073 Charcount num_to_add;
|
|
4074
|
|
4075 if (max_pixsize < 0)
|
|
4076 num_to_add = 0;
|
|
4077 else if (max_pos != -1)
|
|
4078 num_to_add = max_pos - pos;
|
|
4079 else
|
|
4080 {
|
|
4081 int cur_pixsize;
|
|
4082 int dash_pixsize;
|
665
|
4083 Intbyte ch = '-';
|
428
|
4084 SET_CURRENT_MODE_CHARS_PIXSIZE;
|
|
4085
|
|
4086 dash_pixsize =
|
|
4087 redisplay_text_width_string (w, findex, &ch, Qnil, 0,
|
|
4088 1);
|
|
4089
|
|
4090 num_to_add = (max_pixsize - cur_pixsize) / dash_pixsize;
|
|
4091 num_to_add++;
|
|
4092 }
|
|
4093
|
|
4094 while (num_to_add--)
|
|
4095 pos = add_string_to_fstring_db_runes
|
665
|
4096 (data, (const Intbyte *) "-", pos, pos, max_pos);
|
428
|
4097 }
|
|
4098 else if (*this != 0)
|
|
4099 {
|
438
|
4100 Emchar ch = charptr_emchar (this);
|
665
|
4101 Intbyte *str;
|
438
|
4102 Charcount size;
|
|
4103
|
428
|
4104 decode_mode_spec (w, ch, type);
|
|
4105
|
665
|
4106 str = Dynarr_atp (mode_spec_intbyte_string, 0);
|
438
|
4107 size = bytecount_to_charcount
|
|
4108 /* Skip the null character added by `decode_mode_spec' */
|
665
|
4109 (str, Dynarr_length (mode_spec_intbyte_string)) - 1;
|
438
|
4110
|
|
4111 if (size <= *offset)
|
|
4112 *offset -= size;
|
|
4113 else
|
|
4114 {
|
665
|
4115 const Intbyte *tmp_str = charptr_n_addr (str, *offset);
|
438
|
4116
|
440
|
4117 /* #### NOTE: I don't understand why a tmp_max is not
|
438
|
4118 computed and used here as in the plain string case
|
|
4119 above. -- dv */
|
|
4120 pos = add_string_to_fstring_db_runes (data, tmp_str,
|
|
4121 pos, pos,
|
|
4122 max_pos);
|
|
4123 *offset = 0;
|
|
4124 }
|
428
|
4125 }
|
|
4126
|
|
4127 /* NOT this++. There could be any sort of character at
|
|
4128 the current position. */
|
|
4129 INC_CHARPTR (this);
|
|
4130 }
|
|
4131
|
|
4132 if (max_pixsize > 0)
|
|
4133 {
|
|
4134 int cur_pixsize;
|
|
4135 SET_CURRENT_MODE_CHARS_PIXSIZE;
|
|
4136
|
|
4137 if (cur_pixsize >= max_pixsize)
|
|
4138 break;
|
|
4139 }
|
|
4140 }
|
|
4141 }
|
|
4142 else if (SYMBOLP (elt))
|
|
4143 {
|
|
4144 /* A symbol: process the value of the symbol recursively
|
|
4145 as if it appeared here directly. */
|
|
4146 Lisp_Object tem = symbol_value_in_buffer (elt, w->buffer);
|
|
4147
|
|
4148 if (!UNBOUNDP (tem))
|
|
4149 {
|
438
|
4150 /* If value is a string, output that string literally:
|
428
|
4151 don't check for % within it. */
|
|
4152 if (STRINGP (tem))
|
|
4153 {
|
665
|
4154 Intbyte *str = XSTRING_DATA (tem);
|
826
|
4155 Charcount size = string_char_length (tem);
|
438
|
4156
|
|
4157 if (size <= *offset)
|
|
4158 *offset -= size;
|
|
4159 else
|
|
4160 {
|
665
|
4161 const Intbyte *tmp_str = charptr_n_addr (str, *offset);
|
438
|
4162
|
440
|
4163 /* #### NOTE: I don't understand why a tmp_max is not
|
438
|
4164 computed and used here as in the plain string case
|
|
4165 above. -- dv */
|
|
4166 pos = add_string_to_fstring_db_runes (data, tmp_str, pos,
|
|
4167 min_pos, max_pos);
|
|
4168 *offset = 0;
|
|
4169 }
|
428
|
4170 }
|
|
4171 /* Give up right away for nil or t. */
|
|
4172 else if (!EQ (tem, elt))
|
|
4173 {
|
|
4174 elt = tem;
|
|
4175 goto tail_recurse;
|
|
4176 }
|
|
4177 }
|
|
4178 }
|
|
4179 else if (GENERIC_SPECIFIERP (elt))
|
|
4180 {
|
|
4181 Lisp_Object window, tem;
|
793
|
4182 window = wrap_window (w);
|
428
|
4183 tem = specifier_instance_no_quit (elt, Qunbound, window,
|
793
|
4184 ERROR_ME_DEBUG_WARN, 0, Qzero);
|
428
|
4185 if (!UNBOUNDP (tem))
|
|
4186 {
|
|
4187 elt = tem;
|
|
4188 goto tail_recurse;
|
|
4189 }
|
|
4190 }
|
|
4191 else if (CONSP (elt))
|
|
4192 {
|
|
4193 /* A cons cell: four distinct cases.
|
438
|
4194 * - If first element is a string or a cons, process all the elements
|
|
4195 * and effectively concatenate them.
|
|
4196 * - If first element is a negative number, truncate displaying cdr to
|
|
4197 * at most that many characters. If positive, pad (with spaces)
|
|
4198 * to at least that many characters.
|
771
|
4199 * - If first element is another symbol or a boolean specifier, process
|
|
4200 * the cadr or caddr recursively according to whether the symbol's
|
|
4201 * value or specifier's instance is non-nil or nil.
|
|
4202 * - If first element is , process the cadr or caddr
|
|
4203 * recursively according to whether the instance of the specifier in
|
|
4204 * the modeline's window is non-nil or nil.
|
442
|
4205 * - If first element is an extent, process the cdr recursively
|
|
4206 * and handle the extent's face.
|
428
|
4207 */
|
438
|
4208
|
428
|
4209 Lisp_Object car, tem;
|
|
4210
|
|
4211 car = XCAR (elt);
|
771
|
4212 if (SYMBOLP (car) || BOOLEAN_SPECIFIERP (car))
|
438
|
4213 {
|
|
4214 elt = XCDR (elt);
|
|
4215 if (!CONSP (elt))
|
|
4216 goto invalid;
|
|
4217
|
771
|
4218 if (SYMBOLP (car))
|
|
4219 tem = symbol_value_in_buffer (car, w->buffer);
|
|
4220 else
|
|
4221 tem = specifier_instance_no_quit (car, Qunbound, wrap_window (w),
|
793
|
4222 ERROR_ME_DEBUG_WARN, 0, Qzero);
|
438
|
4223 /* elt is now the cdr, and we know it is a cons cell.
|
|
4224 Use its car if CAR has a non-nil value. */
|
771
|
4225 if (!UNBOUNDP (tem) && !NILP (tem))
|
438
|
4226 {
|
771
|
4227 elt = XCAR (elt);
|
|
4228 goto tail_recurse;
|
438
|
4229 }
|
771
|
4230 /* Symbol's value or specifier's instance is nil or unbound
|
438
|
4231 * Get the cddr of the original list
|
|
4232 * and if possible find the caddr and use that.
|
|
4233 */
|
|
4234 elt = XCDR (elt);
|
|
4235 if (NILP (elt))
|
|
4236 ;
|
|
4237 else if (!CONSP (elt))
|
|
4238 goto invalid;
|
|
4239 else
|
|
4240 {
|
|
4241 elt = XCAR (elt);
|
|
4242 goto tail_recurse;
|
|
4243 }
|
|
4244 }
|
428
|
4245 else if (INTP (car))
|
|
4246 {
|
|
4247 Charcount lim = XINT (car);
|
|
4248
|
|
4249 elt = XCDR (elt);
|
|
4250
|
|
4251 if (lim < 0)
|
|
4252 {
|
|
4253 /* Negative int means reduce maximum width.
|
|
4254 * DO NOT change MIN_PIXPOS here!
|
|
4255 * (20 -10 . foo) should truncate foo to 10 col
|
|
4256 * and then pad to 20.
|
|
4257 */
|
|
4258 if (max_pos == -1)
|
|
4259 max_pos = pos - lim;
|
|
4260 else
|
|
4261 max_pos = min (max_pos, pos - lim);
|
|
4262 }
|
|
4263 else if (lim > 0)
|
|
4264 {
|
|
4265 /* Padding specified. Don't let it be more than
|
|
4266 * current maximum.
|
|
4267 */
|
|
4268 lim += pos;
|
|
4269 if (max_pos != -1 && lim > max_pos)
|
|
4270 lim = max_pos;
|
|
4271 /* If that's more padding than already wanted, queue it.
|
|
4272 * But don't reduce padding already specified even if
|
|
4273 * that is beyond the current truncation point.
|
|
4274 */
|
|
4275 if (lim > min_pos)
|
|
4276 min_pos = lim;
|
|
4277 }
|
|
4278 goto tail_recurse;
|
|
4279 }
|
|
4280 else if (STRINGP (car) || CONSP (car))
|
|
4281 {
|
|
4282 int limit = 50;
|
438
|
4283
|
428
|
4284 /* LIMIT is to protect against circular lists. */
|
|
4285 while (CONSP (elt) && --limit > 0
|
|
4286 && (pos < max_pos || max_pos == -1))
|
|
4287 {
|
|
4288 pos = generate_fstring_runes (w, data, pos, pos, max_pos,
|
438
|
4289 XCAR (elt), depth, max_pixsize,
|
|
4290 findex, type, offset, cur_ext);
|
428
|
4291 elt = XCDR (elt);
|
|
4292 }
|
|
4293 }
|
|
4294 else if (EXTENTP (car))
|
|
4295 {
|
|
4296 struct extent *ext = XEXTENT (car);
|
|
4297
|
|
4298 if (EXTENT_LIVE_P (ext))
|
|
4299 {
|
|
4300 face_index old_findex = data->findex;
|
|
4301 Lisp_Object face;
|
|
4302 Lisp_Object font_inst;
|
|
4303 face_index new_findex;
|
|
4304 Bytecount start = data->bytepos;
|
|
4305
|
|
4306 face = extent_face (ext);
|
|
4307 if (FACEP (face))
|
|
4308 {
|
|
4309 /* #### needs to merge faces, sigh */
|
|
4310 /* #### needs to handle list of faces */
|
|
4311 new_findex = get_builtin_face_cache_index (w, face);
|
|
4312 /* !!#### not right; needs to compute the max height of
|
|
4313 all the charsets */
|
|
4314 font_inst = WINDOW_FACE_CACHEL_FONT (w, new_findex,
|
|
4315 Vcharset_ascii);
|
|
4316
|
|
4317 data->dl->ascent = max (data->dl->ascent,
|
|
4318 XFONT_INSTANCE (font_inst)->ascent);
|
|
4319 data->dl->descent = max (data->dl->descent,
|
|
4320 XFONT_INSTANCE (font_inst)->
|
|
4321 descent);
|
|
4322 }
|
|
4323 else
|
|
4324 new_findex = old_findex;
|
|
4325
|
|
4326 data->findex = new_findex;
|
|
4327 pos = generate_fstring_runes (w, data, pos, pos, max_pos,
|
|
4328 XCDR (elt), depth - 1,
|
438
|
4329 max_pixsize, new_findex, type,
|
|
4330 offset, car);
|
428
|
4331 data->findex = old_findex;
|
|
4332 Dynarr_add (formatted_string_extent_dynarr, ext);
|
|
4333 Dynarr_add (formatted_string_extent_start_dynarr, start);
|
|
4334 Dynarr_add (formatted_string_extent_end_dynarr, data->bytepos);
|
|
4335 }
|
|
4336 }
|
|
4337 }
|
|
4338 else if (GLYPHP (elt))
|
|
4339 {
|
438
|
4340 /* Glyphs are considered as one character with respect to the modeline
|
|
4341 horizontal scrolling facility. -- dv */
|
|
4342 if (*offset > 0)
|
|
4343 *offset -= 1;
|
|
4344 else
|
|
4345 pos = add_glyph_to_fstring_db_runes (data, elt, pos, pos, max_pos,
|
|
4346 cur_ext);
|
428
|
4347 }
|
|
4348 else
|
|
4349 {
|
|
4350 invalid:
|
438
|
4351 {
|
|
4352 char *str = GETTEXT ("*invalid*");
|
|
4353 Charcount size = (Charcount) strlen (str); /* is this ok ?? -- dv */
|
|
4354
|
|
4355 if (size <= *offset)
|
|
4356 *offset -= size;
|
|
4357 else
|
|
4358 {
|
665
|
4359 const Intbyte *tmp_str =
|
|
4360 charptr_n_addr ((const Intbyte *) str, *offset);
|
438
|
4361
|
440
|
4362 /* #### NOTE: I don't understand why a tmp_max is not computed and
|
438
|
4363 used here as in the plain string case above. -- dv */
|
|
4364 pos = add_string_to_fstring_db_runes (data, tmp_str, pos,
|
|
4365 min_pos, max_pos);
|
|
4366 *offset = 0;
|
|
4367 }
|
|
4368 }
|
428
|
4369 }
|
|
4370
|
|
4371 if (min_pos > pos)
|
|
4372 {
|
665
|
4373 add_string_to_fstring_db_runes (data, (const Intbyte *) "", pos,
|
438
|
4374 min_pos, -1);
|
428
|
4375 }
|
|
4376
|
|
4377 return pos;
|
|
4378 }
|
|
4379
|
|
4380 /* Update just the modeline. Assumes the desired display structs. If
|
|
4381 they do not have a modeline block, it does nothing. */
|
|
4382 static void
|
|
4383 regenerate_modeline (struct window *w)
|
|
4384 {
|
|
4385 display_line_dynarr *dla = window_display_lines (w, DESIRED_DISP);
|
|
4386
|
|
4387 if (!Dynarr_length (dla) || !Dynarr_atp (dla, 0)->modeline)
|
|
4388 return;
|
|
4389 else
|
|
4390 {
|
|
4391 generate_modeline (w, Dynarr_atp (dla, 0), DESIRED_DISP);
|
|
4392 redisplay_update_line (w, 0, 0, 0);
|
|
4393 }
|
|
4394 }
|
|
4395
|
|
4396 /* Make sure that modeline display line is present in the given
|
|
4397 display structs if the window has a modeline and update that
|
|
4398 line. Returns true if a modeline was needed. */
|
|
4399 static int
|
|
4400 ensure_modeline_generated (struct window *w, int type)
|
|
4401 {
|
|
4402 int need_modeline;
|
|
4403
|
|
4404 /* minibuffer windows don't have modelines */
|
|
4405 if (MINI_WINDOW_P (w))
|
|
4406 need_modeline = 0;
|
|
4407 /* windows which haven't had it turned off do */
|
|
4408 else if (WINDOW_HAS_MODELINE_P (w))
|
|
4409 need_modeline = 1;
|
|
4410 /* windows which have it turned off don't have a divider if there is
|
|
4411 a horizontal scrollbar */
|
|
4412 else if (window_scrollbar_height (w))
|
|
4413 need_modeline = 0;
|
|
4414 /* and in this case there is none */
|
|
4415 else
|
|
4416 need_modeline = 1;
|
|
4417
|
|
4418 if (need_modeline)
|
|
4419 {
|
|
4420 display_line_dynarr *dla;
|
|
4421
|
|
4422 dla = window_display_lines (w, type);
|
|
4423
|
|
4424 /* We don't care if there is a display line which is not
|
|
4425 currently a modeline because it is definitely going to become
|
|
4426 one if we have gotten to this point. */
|
|
4427 if (Dynarr_length (dla) == 0)
|
|
4428 {
|
|
4429 if (Dynarr_largest (dla) > 0)
|
800
|
4430 Dynarr_increment (dla);
|
428
|
4431 else
|
|
4432 {
|
|
4433 struct display_line modeline;
|
|
4434 xzero (modeline);
|
|
4435 Dynarr_add (dla, modeline);
|
|
4436 }
|
|
4437 }
|
|
4438
|
|
4439 /* If we're adding a new place marker go ahead and generate the
|
|
4440 modeline so that it is available for use by
|
|
4441 window_modeline_height. */
|
|
4442 generate_modeline (w, Dynarr_atp (dla, 0), type);
|
|
4443 }
|
|
4444
|
|
4445 return need_modeline;
|
|
4446 }
|
|
4447
|
|
4448 /* #### Kludge or not a kludge. I tend towards the former. */
|
|
4449 int
|
|
4450 real_current_modeline_height (struct window *w)
|
|
4451 {
|
|
4452 Fset_marker (w->start[CMOTION_DISP], w->start[CURRENT_DISP], w->buffer);
|
|
4453 Fset_marker (w->pointm[CMOTION_DISP], w->pointm[CURRENT_DISP], w->buffer);
|
|
4454
|
|
4455 if (ensure_modeline_generated (w, CMOTION_DISP))
|
|
4456 {
|
|
4457 display_line_dynarr *dla = window_display_lines (w, CMOTION_DISP);
|
|
4458
|
|
4459 if (Dynarr_length (dla))
|
|
4460 {
|
|
4461 if (Dynarr_atp (dla, 0)->modeline)
|
|
4462 return (Dynarr_atp (dla, 0)->ascent +
|
|
4463 Dynarr_atp (dla, 0)->descent);
|
|
4464 }
|
|
4465 }
|
|
4466 return 0;
|
|
4467 }
|
|
4468
|
|
4469
|
|
4470 /***************************************************************************/
|
819
|
4471 /* */
|
826
|
4472 /* displayable string routines */
|
819
|
4473 /* */
|
428
|
4474 /***************************************************************************/
|
|
4475
|
|
4476 /* Given a position for a string in a window, ensure that the given
|
|
4477 display line DL accurately represents the text on a line starting
|
|
4478 at the given position.
|
|
4479
|
|
4480 Yes, this is duplicating the code of create_text_block, but it
|
|
4481 looked just too hard to change create_text_block to handle strings
|
|
4482 *and* buffers. We already make a distinction between the two
|
|
4483 elsewhere in the code so I think unifying them would require a
|
|
4484 complete MULE rewrite. Besides, the other distinction is that these
|
|
4485 functions cover text that the user *cannot edit* so we can remove
|
|
4486 everything to do with cursors, minibuffers etc. Eventually the
|
|
4487 modeline routines should be modified to use this code as it copes
|
|
4488 with many more types of display situation. */
|
|
4489
|
665
|
4490 static Charbpos
|
428
|
4491 create_string_text_block (struct window *w, Lisp_Object disp_string,
|
|
4492 struct display_line *dl,
|
826
|
4493 Charcount start_pos,
|
428
|
4494 prop_block_dynarr **prop,
|
|
4495 face_index default_face)
|
|
4496 {
|
|
4497 struct frame *f = XFRAME (w->frame);
|
|
4498 /* Note that a lot of the buffer controlled stuff has been left in
|
|
4499 because you might well want to make use of it (selective display
|
|
4500 etc), its just the buffer text that we do not use. However, it
|
|
4501 seems to be possible for buffer to be nil sometimes so protect
|
|
4502 against this case. */
|
|
4503 struct buffer *b = BUFFERP (w->buffer) ? XBUFFER (w->buffer) : 0;
|
|
4504 struct device *d = XDEVICE (f->device);
|
|
4505
|
|
4506 /* we're working with these a lot so precalculate them */
|
|
4507 Bytecount slen = XSTRING_LENGTH (disp_string);
|
826
|
4508 Bytecount byte_string_zv = slen;
|
|
4509 Bytecount byte_start_pos = string_index_char_to_byte (disp_string, start_pos);
|
428
|
4510
|
|
4511 pos_data data;
|
|
4512
|
|
4513 int truncate_win = b ? window_truncation_on (w) : 0;
|
|
4514
|
442
|
4515 /* We're going to ditch selective display for static text, it's an
|
|
4516 FSF thing and invisible extents are the way to go here.
|
|
4517 Implementing it also relies on a number of buffer-specific
|
428
|
4518 functions that we don't have the luxury of being able to use
|
|
4519 here. */
|
|
4520
|
|
4521 /* The variable ctl-arrow allows the user to specify what characters
|
|
4522 can actually be displayed and which octal should be used for.
|
|
4523 #### This variable should probably have some rethought done to
|
|
4524 it.
|
|
4525
|
|
4526 #### It would also be really nice if you could specify that
|
|
4527 the characters come out in hex instead of in octal. Mule
|
|
4528 does that by adding a ctl-hexa variable similar to ctl-arrow,
|
|
4529 but that's bogus -- we need a more general solution. I
|
|
4530 think you need to extend the concept of display tables
|
|
4531 into a more general conversion mechanism. Ideally you
|
|
4532 could specify a Lisp function that converts characters,
|
|
4533 but this violates the Second Golden Rule and besides would
|
|
4534 make things way way way way slow.
|
|
4535
|
|
4536 So instead, we extend the display-table concept, which was
|
|
4537 historically limited to 256-byte vectors, to one of the
|
|
4538 following:
|
|
4539
|
|
4540 a) A 256-entry vector, for backward compatibility;
|
|
4541 b) char-table, mapping characters to values;
|
|
4542 c) range-table, mapping ranges of characters to values;
|
|
4543 d) a list of the above.
|
|
4544
|
|
4545 The (d) option allows you to specify multiple display tables
|
|
4546 instead of just one. Each display table can specify conversions
|
|
4547 for some characters and leave others unchanged. The way the
|
|
4548 character gets displayed is determined by the first display table
|
|
4549 with a binding for that character. This way, you could call a
|
|
4550 function `enable-hex-display' that adds a hex display-table to
|
|
4551 the list of display tables for the current buffer.
|
|
4552
|
|
4553 #### ...not yet implemented... Also, we extend the concept of
|
|
4554 "mapping" to include a printf-like spec. Thus you can make all
|
|
4555 extended characters show up as hex with a display table like
|
|
4556 this:
|
|
4557
|
|
4558 #s(range-table data ((256 524288) (format "%x")))
|
|
4559
|
|
4560 Since more than one display table is possible, you have
|
|
4561 great flexibility in mapping ranges of characters. */
|
|
4562 Emchar printable_min = b ? (CHAR_OR_CHAR_INTP (b->ctl_arrow)
|
|
4563 ? XCHAR_OR_CHAR_INT (b->ctl_arrow)
|
|
4564 : ((EQ (b->ctl_arrow, Qt) || EQ (b->ctl_arrow, Qnil))
|
|
4565 ? 255 : 160)) : 255;
|
|
4566
|
|
4567 Lisp_Object face_dt, window_dt;
|
|
4568
|
|
4569 /* The text display block for this display line. */
|
|
4570 struct display_block *db = get_display_block_from_line (dl, TEXT);
|
|
4571
|
|
4572 /* The first time through the main loop we need to force the glyph
|
|
4573 data to be updated. */
|
|
4574 int initial = 1;
|
|
4575
|
|
4576 /* Apparently the new extent_fragment_update returns an end position
|
|
4577 equal to the position passed in if there are no more runs to be
|
|
4578 displayed. */
|
|
4579 int no_more_frags = 0;
|
|
4580
|
|
4581 dl->used_prop_data = 0;
|
|
4582 dl->num_chars = 0;
|
442
|
4583 dl->line_continuation = 0;
|
428
|
4584
|
|
4585 /* set up faces to use for clearing areas, used by
|
|
4586 output_display_line */
|
|
4587 dl->default_findex = default_face;
|
|
4588 if (default_face)
|
|
4589 {
|
|
4590 dl->left_margin_findex = default_face;
|
|
4591 dl->right_margin_findex = default_face;
|
|
4592 }
|
|
4593 else
|
|
4594 {
|
434
|
4595 dl->left_margin_findex =
|
428
|
4596 get_builtin_face_cache_index (w, Vleft_margin_face);
|
434
|
4597 dl->right_margin_findex =
|
428
|
4598 get_builtin_face_cache_index (w, Vright_margin_face);
|
|
4599 }
|
|
4600
|
|
4601 xzero (data);
|
|
4602 data.ef = extent_fragment_new (disp_string, f);
|
|
4603
|
|
4604 /* These values are used by all of the rune addition routines. We add
|
|
4605 them to this structure for ease of passing. */
|
|
4606 data.d = d;
|
793
|
4607 data.window = wrap_window (w);
|
428
|
4608 data.db = db;
|
|
4609 data.dl = dl;
|
|
4610
|
826
|
4611 data.byte_charpos = byte_start_pos;
|
428
|
4612 data.pixpos = dl->bounds.left_in;
|
|
4613 data.last_charset = Qunbound;
|
|
4614 data.last_findex = default_face;
|
|
4615 data.result_str = Qnil;
|
|
4616 data.string = disp_string;
|
|
4617
|
|
4618 /* Set the right boundary adjusting it to take into account any end
|
|
4619 glyph. Save the width of the end glyph for later use. */
|
|
4620 data.max_pixpos = dl->bounds.right_in;
|
819
|
4621 data.max_pixpos -= data.end_glyph_width;
|
428
|
4622
|
|
4623 data.cursor_type = NO_CURSOR;
|
|
4624 data.cursor_x = -1;
|
|
4625
|
|
4626 data.start_col = 0;
|
|
4627 /* I don't think we want this, string areas should not scroll with
|
434
|
4628 the window
|
428
|
4629 data.start_col = w->hscroll;
|
826
|
4630 data.byte_start_col_enabled = (w->hscroll ? byte_start_pos : 0);
|
428
|
4631 */
|
826
|
4632 data.byte_start_col_enabled = 0;
|
428
|
4633 data.hscroll_glyph_width_adjust = 0;
|
|
4634
|
|
4635 /* We regenerate the line from the very beginning. */
|
|
4636 Dynarr_reset (db->runes);
|
|
4637
|
|
4638 /* Why is this less than or equal and not just less than? If the
|
|
4639 starting position is already equal to the maximum we can't add
|
|
4640 anything else, right? Wrong. We might still have a newline to
|
|
4641 add. A newline can use the room allocated for an end glyph since
|
|
4642 if we add it we know we aren't going to be adding any end
|
|
4643 glyph. */
|
|
4644
|
|
4645 /* #### Chuck -- I think this condition should be while (1).
|
|
4646 Otherwise if (e.g.) there is one begin-glyph and one end-glyph
|
|
4647 and the begin-glyph ends exactly at the end of the window, the
|
|
4648 end-glyph and text might not be displayed. while (1) ensures
|
|
4649 that the loop terminates only when either (a) there is
|
|
4650 propagation data or (b) the end-of-line or end-of-buffer is hit.
|
|
4651
|
|
4652 #### Also I think you need to ensure that the operation
|
|
4653 "add begin glyphs; add end glyphs; add text" is atomic and
|
|
4654 can't get interrupted in the middle. If you run off the end
|
|
4655 of the line during that operation, then you keep accumulating
|
|
4656 propagation data until you're done. Otherwise, if the (e.g.)
|
|
4657 there's a begin glyph at a particular position and attempting
|
|
4658 to display that glyph results in window-end being hit and
|
|
4659 propagation data being generated, then the character at that
|
|
4660 position won't be displayed.
|
|
4661
|
|
4662 #### See also the comment after the end of this loop, below.
|
|
4663 */
|
|
4664 while (data.pixpos <= data.max_pixpos)
|
|
4665 {
|
|
4666 /* #### This check probably should not be necessary. */
|
826
|
4667 if (data.byte_charpos > byte_string_zv)
|
428
|
4668 {
|
|
4669 /* #### urk! More of this lossage! */
|
826
|
4670 data.byte_charpos--;
|
428
|
4671 goto done;
|
|
4672 }
|
|
4673
|
|
4674 /* Check for face changes. */
|
826
|
4675 if (initial || (!no_more_frags && data.byte_charpos == data.ef->end))
|
428
|
4676 {
|
819
|
4677 Lisp_Object last_glyph = Qnil;
|
|
4678 /* Deal with clipped glyphs that we have already displayed. */
|
|
4679 if (*prop && Dynarr_atp (*prop, 0)->type == PROP_GLYPH)
|
|
4680 {
|
|
4681 last_glyph = Dynarr_atp (*prop, 0)->data.p_glyph.glyph;
|
|
4682 Dynarr_free (*prop);
|
|
4683 *prop = 0;
|
|
4684 }
|
428
|
4685 /* Now compute the face and begin/end-glyph information. */
|
|
4686 data.findex =
|
793
|
4687 /* Remember that the extent-fragment routines deal in
|
826
|
4688 Bytexpos's. */
|
|
4689 extent_fragment_update (w, data.ef, data.byte_charpos, last_glyph);
|
428
|
4690 /* This is somewhat cheesy but the alternative is to
|
|
4691 propagate default_face into extent_fragment_update. */
|
|
4692 if (data.findex == DEFAULT_INDEX)
|
|
4693 data.findex = default_face;
|
|
4694
|
|
4695 get_display_tables (w, data.findex, &face_dt, &window_dt);
|
|
4696
|
826
|
4697 if (data.byte_charpos == data.ef->end)
|
428
|
4698 no_more_frags = 1;
|
|
4699 }
|
|
4700 initial = 0;
|
|
4701
|
|
4702 /* Determine what is next to be displayed. We first handle any
|
665
|
4703 glyphs returned by glyphs_at_charbpos. If there are no glyphs to
|
428
|
4704 display then we determine what to do based on the character at the
|
|
4705 current buffer position. */
|
|
4706
|
|
4707 /* If the current position is covered by an invisible extent, do
|
|
4708 nothing (except maybe add some ellipses).
|
|
4709
|
|
4710 #### The behavior of begin and end-glyphs at the edge of an
|
|
4711 invisible extent should be investigated further. This is
|
|
4712 fairly low priority though. */
|
|
4713 if (data.ef->invisible)
|
|
4714 {
|
|
4715 /* #### Chuck, perhaps you could look at this code? I don't
|
|
4716 really know what I'm doing. */
|
|
4717 if (*prop)
|
|
4718 {
|
|
4719 Dynarr_free (*prop);
|
|
4720 *prop = 0;
|
|
4721 }
|
|
4722
|
|
4723 /* The extent fragment code only sets this when we should
|
|
4724 really display the ellipses. It makes sure the ellipses
|
|
4725 don't get displayed more than once in a row. */
|
|
4726 if (data.ef->invisible_ellipses)
|
|
4727 {
|
|
4728 struct glyph_block gb;
|
|
4729
|
|
4730 data.ef->invisible_ellipses_already_displayed = 1;
|
|
4731 data.ef->invisible_ellipses = 0;
|
|
4732 gb.extent = Qnil;
|
|
4733 gb.glyph = Vinvisible_text_glyph;
|
|
4734 *prop = add_glyph_rune (&data, &gb, BEGIN_GLYPHS, 0,
|
|
4735 GLYPH_CACHEL (w, INVIS_GLYPH_INDEX));
|
|
4736 /* Perhaps they shouldn't propagate if the very next thing
|
|
4737 is to display a newline (for compatibility with
|
|
4738 selective-display-ellipses)? Maybe that's too
|
|
4739 abstruse. */
|
|
4740 if (*prop)
|
|
4741 goto done;
|
|
4742 }
|
|
4743
|
638
|
4744 /* #### What if we're dealing with a display table? */
|
428
|
4745 if (data.start_col)
|
|
4746 data.start_col--;
|
|
4747
|
826
|
4748 if (data.byte_charpos == byte_string_zv)
|
428
|
4749 goto done;
|
|
4750 else
|
826
|
4751 INC_BYTECOUNT (XSTRING_DATA (disp_string), data.byte_charpos);
|
428
|
4752 }
|
|
4753
|
|
4754 /* If there is propagation data, then it represents the current
|
|
4755 buffer position being displayed. Add them and advance the
|
|
4756 position counter. This might also add the minibuffer
|
|
4757 prompt. */
|
|
4758 else if (*prop)
|
|
4759 {
|
|
4760 dl->used_prop_data = 1;
|
|
4761 *prop = add_propagation_runes (prop, &data);
|
|
4762
|
|
4763 if (*prop)
|
|
4764 goto done; /* gee, a really narrow window */
|
826
|
4765 else if (data.byte_charpos == byte_string_zv)
|
428
|
4766 goto done;
|
826
|
4767 else if (data.byte_charpos < 0)
|
428
|
4768 /* #### urk urk urk! Aborts are not very fun! Fix this please! */
|
826
|
4769 data.byte_charpos = 0;
|
428
|
4770 else
|
826
|
4771 INC_BYTECOUNT (XSTRING_DATA (disp_string), data.byte_charpos);
|
428
|
4772 }
|
|
4773
|
|
4774 /* If there are end glyphs, add them to the line. These are
|
|
4775 the end glyphs for the previous run of text. We add them
|
|
4776 here rather than doing them at the end of handling the
|
|
4777 previous run so that glyphs at the beginning and end of
|
|
4778 a line are handled correctly. */
|
|
4779 else if (Dynarr_length (data.ef->end_glyphs) > 0)
|
|
4780 {
|
826
|
4781 data.ch = string_emchar (disp_string, data.byte_charpos);
|
428
|
4782 *prop = add_glyph_runes (&data, END_GLYPHS);
|
819
|
4783
|
|
4784 if (*prop) {
|
428
|
4785 goto done;
|
819
|
4786 }
|
428
|
4787 }
|
|
4788
|
|
4789 /* If there are begin glyphs, add them to the line. */
|
|
4790 else if (Dynarr_length (data.ef->begin_glyphs) > 0)
|
|
4791 {
|
826
|
4792 data.ch = string_emchar (disp_string, data.byte_charpos);
|
428
|
4793 *prop = add_glyph_runes (&data, BEGIN_GLYPHS);
|
819
|
4794
|
|
4795 if (*prop) {
|
428
|
4796 goto done;
|
819
|
4797 }
|
428
|
4798 }
|
|
4799
|
|
4800 /* If at end-of-buffer, we've already processed begin and
|
|
4801 end-glyphs at this point and there's no text to process,
|
|
4802 so we're done. */
|
826
|
4803 else if (data.byte_charpos == byte_string_zv)
|
428
|
4804 goto done;
|
|
4805
|
|
4806 else
|
|
4807 {
|
|
4808 Lisp_Object entry = Qnil;
|
|
4809 /* Get the character at the current buffer position. */
|
826
|
4810 data.ch = string_emchar (disp_string, data.byte_charpos);
|
428
|
4811 if (!NILP (face_dt) || !NILP (window_dt))
|
|
4812 entry = display_table_entry (data.ch, face_dt, window_dt);
|
|
4813
|
|
4814 /* If there is a display table entry for it, hand it off to
|
|
4815 add_disp_table_entry_runes and let it worry about it. */
|
|
4816 if (!NILP (entry) && !EQ (entry, make_char (data.ch)))
|
|
4817 {
|
|
4818 *prop = add_disp_table_entry_runes (&data, entry);
|
|
4819
|
|
4820 if (*prop)
|
|
4821 goto done;
|
|
4822 }
|
|
4823
|
|
4824 /* Check if we have hit a newline character. If so, add a marker
|
|
4825 to the line and end this loop. */
|
|
4826 else if (data.ch == '\n')
|
|
4827 {
|
|
4828 /* We aren't going to be adding an end glyph so give its
|
|
4829 space back in order to make sure that the cursor can
|
|
4830 fit. */
|
819
|
4831 data.max_pixpos += data.end_glyph_width;
|
428
|
4832 goto done;
|
|
4833 }
|
|
4834
|
|
4835 /* If the current character is considered to be printable, then
|
|
4836 just add it. */
|
|
4837 else if (data.ch >= printable_min)
|
|
4838 {
|
|
4839 *prop = add_emchar_rune (&data);
|
|
4840 if (*prop)
|
|
4841 goto done;
|
|
4842 }
|
|
4843
|
|
4844 /* If the current character is a tab, determine the next tab
|
|
4845 starting position and add a blank rune which extends from the
|
|
4846 current pixel position to that starting position. */
|
|
4847 else if (data.ch == '\t')
|
|
4848 {
|
|
4849 int tab_start_pixpos = data.pixpos;
|
|
4850 int next_tab_start;
|
|
4851 int char_tab_width;
|
|
4852 int prop_width = 0;
|
|
4853
|
|
4854 if (data.start_col > 1)
|
|
4855 tab_start_pixpos -= (space_width (w) * (data.start_col - 1));
|
|
4856
|
|
4857 next_tab_start =
|
|
4858 next_tab_position (w, tab_start_pixpos,
|
|
4859 dl->bounds.left_in +
|
|
4860 data.hscroll_glyph_width_adjust);
|
|
4861 if (next_tab_start > data.max_pixpos)
|
|
4862 {
|
|
4863 prop_width = next_tab_start - data.max_pixpos;
|
|
4864 next_tab_start = data.max_pixpos;
|
|
4865 }
|
|
4866 data.blank_width = next_tab_start - data.pixpos;
|
|
4867 char_tab_width =
|
|
4868 (next_tab_start - tab_start_pixpos) / space_width (w);
|
|
4869
|
|
4870 *prop = add_blank_rune (&data, w, char_tab_width);
|
|
4871
|
|
4872 /* add_blank_rune is only supposed to be called with
|
819
|
4873 sizes guaranteed to fit in the available space. */
|
428
|
4874 assert (!(*prop));
|
|
4875
|
|
4876 if (prop_width)
|
|
4877 {
|
|
4878 struct prop_block pb;
|
|
4879 *prop = Dynarr_new (prop_block);
|
|
4880
|
|
4881 pb.type = PROP_BLANK;
|
|
4882 pb.data.p_blank.width = prop_width;
|
|
4883 pb.data.p_blank.findex = data.findex;
|
|
4884 Dynarr_add (*prop, pb);
|
|
4885
|
|
4886 goto done;
|
|
4887 }
|
|
4888 }
|
|
4889
|
|
4890 /* If character is a control character, pass it off to
|
|
4891 add_control_char_runes.
|
|
4892
|
|
4893 The is_*() routines have undefined results on
|
|
4894 arguments outside of the range [-1, 255]. (This
|
|
4895 often bites people who carelessly use `char' instead
|
|
4896 of `unsigned char'.)
|
|
4897 */
|
665
|
4898 else if (data.ch < 0x100 && iscntrl ((Intbyte) data.ch))
|
428
|
4899 {
|
|
4900 *prop = add_control_char_runes (&data, b);
|
|
4901
|
|
4902 if (*prop)
|
|
4903 goto done;
|
|
4904 }
|
|
4905
|
|
4906 /* If the character is above the ASCII range and we have not
|
|
4907 already handled it, then print it as an octal number. */
|
|
4908 else if (data.ch >= 0200)
|
|
4909 {
|
|
4910 *prop = add_octal_runes (&data);
|
|
4911
|
|
4912 if (*prop)
|
|
4913 goto done;
|
|
4914 }
|
|
4915
|
|
4916 /* Assume the current character is considered to be printable,
|
|
4917 then just add it. */
|
|
4918 else
|
|
4919 {
|
|
4920 *prop = add_emchar_rune (&data);
|
|
4921 if (*prop)
|
|
4922 goto done;
|
|
4923 }
|
|
4924
|
826
|
4925 INC_BYTECOUNT (XSTRING_DATA (disp_string), data.byte_charpos);
|
428
|
4926 }
|
|
4927 }
|
|
4928
|
819
|
4929 done:
|
428
|
4930
|
|
4931 /* Determine the starting point of the next line if we did not hit the
|
|
4932 end of the buffer. */
|
826
|
4933 if (data.byte_charpos < byte_string_zv)
|
428
|
4934 {
|
|
4935 /* #### This check is not correct. If the line terminated
|
|
4936 due to a begin-glyph or end-glyph hitting window-end, then
|
826
|
4937 data.ch will not point to the character at data.byte_charpos. If
|
428
|
4938 you make the two changes mentioned at the top of this loop,
|
|
4939 you should be able to say '(if (*prop))'. That should also
|
826
|
4940 make it possible to eliminate the data.byte_charpos < BYTE_BUF_ZV (b)
|
428
|
4941 check. */
|
|
4942
|
|
4943 /* The common case is that the line ended because we hit a newline.
|
|
4944 In that case, the next character is just the next buffer
|
|
4945 position. */
|
|
4946 if (data.ch == '\n')
|
|
4947 {
|
826
|
4948 INC_BYTECOUNT (XSTRING_DATA (disp_string), data.byte_charpos);
|
428
|
4949 }
|
|
4950
|
|
4951 /* Otherwise we have a buffer line which cannot fit on one display
|
|
4952 line. */
|
|
4953 else
|
|
4954 {
|
|
4955 struct glyph_block gb;
|
|
4956 struct glyph_cachel *cachel;
|
|
4957
|
|
4958 /* If the line is to be truncated then we actually have to look
|
|
4959 for the next newline. We also add the end-of-line glyph which
|
|
4960 we know will fit because we adjusted the right border before
|
|
4961 we starting laying out the line. */
|
819
|
4962 data.max_pixpos += data.end_glyph_width;
|
428
|
4963 data.findex = default_face;
|
|
4964 gb.extent = Qnil;
|
|
4965
|
|
4966 if (truncate_win)
|
|
4967 {
|
826
|
4968 Bytecount byte_pos;
|
428
|
4969
|
|
4970 /* Now find the start of the next line. */
|
826
|
4971 byte_pos = byte_find_next_emchar_in_string (disp_string, '\n',
|
|
4972 data.byte_charpos, 1);
|
428
|
4973
|
|
4974 data.cursor_type = NO_CURSOR;
|
826
|
4975 data.byte_charpos = byte_pos;
|
428
|
4976 gb.glyph = Vtruncation_glyph;
|
|
4977 cachel = GLYPH_CACHEL (w, TRUN_GLYPH_INDEX);
|
|
4978 }
|
|
4979 else
|
|
4980 {
|
|
4981 /* The cursor can never be on the continuation glyph. */
|
|
4982 data.cursor_type = NO_CURSOR;
|
|
4983
|
826
|
4984 /* data.byte_charpos is already at the start of the next line. */
|
428
|
4985
|
442
|
4986 dl->line_continuation = 1;
|
428
|
4987 gb.glyph = Vcontinuation_glyph;
|
|
4988 cachel = GLYPH_CACHEL (w, CONT_GLYPH_INDEX);
|
|
4989 }
|
|
4990
|
819
|
4991 if (data.end_glyph_width)
|
428
|
4992 add_glyph_rune (&data, &gb, BEGIN_GLYPHS, 0, cachel);
|
|
4993
|
826
|
4994 if (truncate_win && data.byte_charpos == byte_string_zv)
|
428
|
4995 {
|
793
|
4996 const Intbyte *endb = charptr_n_addr (XSTRING_DATA (disp_string),
|
826
|
4997 byte_string_zv);
|
428
|
4998 DEC_CHARPTR (endb);
|
|
4999 if (charptr_emchar (endb) != '\n')
|
|
5000 {
|
|
5001 /* #### Damn this losing shit. */
|
826
|
5002 data.byte_charpos++;
|
428
|
5003 }
|
|
5004 }
|
|
5005 }
|
|
5006 }
|
826
|
5007 else if (data.byte_charpos == byte_string_zv)
|
428
|
5008 {
|
|
5009 /* create_text_block () adds a bogus \n marker here which screws
|
|
5010 up subwindow display. Since we never have a cursor in the
|
|
5011 gutter we can safely ignore it. */
|
|
5012 }
|
|
5013 /* Calculate left whitespace boundary. */
|
|
5014 {
|
|
5015 int elt = 0;
|
|
5016
|
|
5017 /* Whitespace past a newline is considered right whitespace. */
|
|
5018 while (elt < Dynarr_length (db->runes))
|
|
5019 {
|
|
5020 struct rune *rb = Dynarr_atp (db->runes, elt);
|
|
5021
|
|
5022 if ((rb->type == RUNE_CHAR && rb->object.chr.ch == ' ')
|
|
5023 || rb->type == RUNE_BLANK)
|
|
5024 {
|
|
5025 dl->bounds.left_white += rb->width;
|
|
5026 elt++;
|
|
5027 }
|
|
5028 else
|
|
5029 elt = Dynarr_length (db->runes);
|
|
5030 }
|
|
5031 }
|
|
5032
|
|
5033 /* Calculate right whitespace boundary. */
|
|
5034 {
|
|
5035 int elt = Dynarr_length (db->runes) - 1;
|
|
5036 int done = 0;
|
|
5037
|
|
5038 while (!done && elt >= 0)
|
|
5039 {
|
|
5040 struct rune *rb = Dynarr_atp (db->runes, elt);
|
|
5041
|
|
5042 if (!(rb->type == RUNE_CHAR && rb->object.chr.ch < 0x100
|
|
5043 && isspace (rb->object.chr.ch))
|
|
5044 && !rb->type == RUNE_BLANK)
|
|
5045 {
|
|
5046 dl->bounds.right_white = rb->xpos + rb->width;
|
|
5047 done = 1;
|
|
5048 }
|
|
5049
|
|
5050 elt--;
|
|
5051
|
|
5052 }
|
|
5053
|
|
5054 /* The line is blank so everything is considered to be right
|
|
5055 whitespace. */
|
|
5056 if (!done)
|
|
5057 dl->bounds.right_white = dl->bounds.left_in;
|
|
5058 }
|
|
5059
|
|
5060 /* Set the display blocks bounds. */
|
|
5061 db->start_pos = dl->bounds.left_in;
|
|
5062 if (Dynarr_length (db->runes))
|
|
5063 {
|
|
5064 struct rune *rb = Dynarr_atp (db->runes, Dynarr_length (db->runes) - 1);
|
|
5065
|
|
5066 db->end_pos = rb->xpos + rb->width;
|
|
5067 }
|
|
5068 else
|
|
5069 db->end_pos = dl->bounds.right_white;
|
|
5070
|
819
|
5071 calculate_baseline (&data);
|
428
|
5072
|
|
5073 dl->ascent = data.new_ascent;
|
|
5074 dl->descent = data.new_descent;
|
|
5075
|
|
5076 {
|
|
5077 unsigned short ascent = (unsigned short) XINT (w->minimum_line_ascent);
|
|
5078
|
|
5079 if (dl->ascent < ascent)
|
|
5080 dl->ascent = ascent;
|
|
5081 }
|
|
5082 {
|
|
5083 unsigned short descent = (unsigned short) XINT (w->minimum_line_descent);
|
|
5084
|
|
5085 if (dl->descent < descent)
|
|
5086 dl->descent = descent;
|
|
5087 }
|
|
5088
|
819
|
5089 calculate_yoffset (dl, db);
|
|
5090
|
428
|
5091 dl->cursor_elt = data.cursor_x;
|
|
5092 /* #### lossage lossage lossage! Fix this shit! */
|
826
|
5093 if (data.byte_charpos > byte_string_zv)
|
|
5094 dl->end_charpos = buffer_or_string_bytexpos_to_charxpos (disp_string,
|
|
5095 byte_string_zv);
|
428
|
5096 else
|
826
|
5097 dl->end_charpos =
|
|
5098 buffer_or_string_bytexpos_to_charxpos (disp_string,
|
|
5099 data.byte_charpos) - 1;
|
428
|
5100 if (truncate_win)
|
434
|
5101 data.dl->num_chars =
|
826
|
5102 string_column_at_point (disp_string, dl->end_charpos,
|
793
|
5103 b ? XINT (b->tab_width) : 8);
|
428
|
5104 else
|
|
5105 /* This doesn't correctly take into account tabs and control
|
|
5106 characters but if the window isn't being truncated then this
|
|
5107 value isn't going to end up being used anyhow. */
|
826
|
5108 data.dl->num_chars = dl->end_charpos - dl->charpos;
|
428
|
5109
|
|
5110 /* #### handle horizontally scrolled line with text none of which
|
|
5111 was actually laid out. */
|
|
5112
|
|
5113 /* #### handle any remainder of overlay arrow */
|
|
5114
|
|
5115 if (*prop == ADD_FAILED)
|
|
5116 *prop = NULL;
|
|
5117
|
|
5118 if (truncate_win && *prop)
|
|
5119 {
|
|
5120 Dynarr_free (*prop);
|
|
5121 *prop = NULL;
|
|
5122 }
|
|
5123
|
|
5124 extent_fragment_delete (data.ef);
|
|
5125
|
|
5126 /* #### If we started at EOB, then make sure we return a value past
|
|
5127 it so that regenerate_window will exit properly. This is bogus.
|
|
5128 The main loop should get fixed so that it isn't necessary to call
|
|
5129 this function if we are already at EOB. */
|
|
5130
|
826
|
5131 if (data.byte_charpos == byte_string_zv && byte_start_pos == byte_string_zv)
|
793
|
5132 return string_index_byte_to_char (disp_string,
|
826
|
5133 data.byte_charpos) + 1; /* Yuck! */
|
428
|
5134 else
|
826
|
5135 return string_index_byte_to_char (disp_string, data.byte_charpos);
|
428
|
5136 }
|
|
5137
|
|
5138 /* Given a display line and a starting position, ensure that the
|
|
5139 contents of the display line accurately represent the visual
|
|
5140 representation of the buffer contents starting from the given
|
|
5141 position when displayed in the given window. The display line ends
|
|
5142 when the contents of the line reach the right boundary of the given
|
434
|
5143 window.
|
|
5144
|
428
|
5145 This is very similar to generate_display_line but with the same
|
|
5146 limitations as create_string_text_block. I have taken the liberty
|
665
|
5147 of fixing the bytebpos stuff though.*/
|
|
5148
|
|
5149 static Charbpos
|
428
|
5150 generate_string_display_line (struct window *w, Lisp_Object disp_string,
|
|
5151 struct display_line *dl,
|
826
|
5152 Charcount start_pos,
|
428
|
5153 prop_block_dynarr **prop,
|
|
5154 face_index default_face)
|
|
5155 {
|
826
|
5156 Charcount ret_charcount;
|
428
|
5157
|
|
5158 /* you must set bounds before calling this. */
|
434
|
5159
|
428
|
5160 /* Reset what this line is using. */
|
|
5161 if (dl->display_blocks)
|
|
5162 Dynarr_reset (dl->display_blocks);
|
|
5163 if (dl->left_glyphs)
|
|
5164 {
|
|
5165 Dynarr_free (dl->left_glyphs);
|
|
5166 dl->left_glyphs = 0;
|
|
5167 }
|
|
5168 if (dl->right_glyphs)
|
|
5169 {
|
|
5170 Dynarr_free (dl->right_glyphs);
|
|
5171 dl->right_glyphs = 0;
|
|
5172 }
|
|
5173
|
|
5174 /* We aren't generating a modeline at the moment. */
|
|
5175 dl->modeline = 0;
|
|
5176
|
|
5177 /* Create a display block for the text region of the line. */
|
826
|
5178 ret_charcount = create_string_text_block (w, disp_string, dl, start_pos,
|
|
5179 prop, default_face);
|
|
5180 dl->charpos = start_pos;
|
|
5181 if (dl->end_charpos < dl->charpos)
|
|
5182 dl->end_charpos = dl->charpos;
|
428
|
5183
|
|
5184 /* If there are left glyphs associated with any character in the
|
|
5185 text block, then create a display block to handle them. */
|
|
5186 if (dl->left_glyphs != NULL && Dynarr_length (dl->left_glyphs))
|
|
5187 create_left_glyph_block (w, dl, 0);
|
|
5188
|
|
5189 /* If there are right glyphs associated with any character in the
|
|
5190 text block, then create a display block to handle them. */
|
|
5191 if (dl->right_glyphs != NULL && Dynarr_length (dl->right_glyphs))
|
|
5192 create_right_glyph_block (w, dl);
|
|
5193
|
826
|
5194 return ret_charcount;
|
428
|
5195 }
|
|
5196
|
|
5197 /* This is ripped off from regenerate_window. All we want to do is
|
|
5198 loop through elements in the string creating display lines until we
|
|
5199 have covered the provided area. Simple really. */
|
|
5200 void
|
|
5201 generate_displayable_area (struct window *w, Lisp_Object disp_string,
|
|
5202 int xpos, int ypos, int width, int height,
|
|
5203 display_line_dynarr* dla,
|
826
|
5204 Charcount start_pos,
|
428
|
5205 face_index default_face)
|
|
5206 {
|
|
5207 int yend = ypos + height;
|
|
5208 Charcount s_zv;
|
|
5209
|
|
5210 prop_block_dynarr *prop = 0;
|
|
5211 layout_bounds bounds;
|
|
5212 assert (dla);
|
|
5213
|
|
5214 Dynarr_reset (dla);
|
|
5215 /* if there's nothing to do then do nothing. code after this assumes
|
|
5216 there is something to do. */
|
|
5217 if (NILP (disp_string))
|
|
5218 return;
|
|
5219
|
826
|
5220 s_zv = string_char_length (disp_string);
|
428
|
5221
|
|
5222 bounds.left_out = xpos;
|
|
5223 bounds.right_out = xpos + width;
|
|
5224 /* The inner boundaries mark where the glyph margins are located. */
|
|
5225 bounds.left_in = bounds.left_out + window_left_margin_width (w);
|
|
5226 bounds.right_in = bounds.right_out - window_right_margin_width (w);
|
|
5227 /* We cannot fully calculate the whitespace boundaries as they
|
|
5228 depend on the contents of the line being displayed. */
|
|
5229 bounds.left_white = bounds.left_in;
|
|
5230 bounds.right_white = bounds.right_in;
|
|
5231
|
|
5232 while (ypos < yend)
|
|
5233 {
|
|
5234 struct display_line dl;
|
|
5235 struct display_line *dlp;
|
826
|
5236 Charcount next_pos;
|
428
|
5237 int local;
|
|
5238
|
|
5239 if (Dynarr_length (dla) < Dynarr_largest (dla))
|
|
5240 {
|
|
5241 dlp = Dynarr_atp (dla, Dynarr_length (dla));
|
|
5242 local = 0;
|
|
5243 }
|
|
5244 else
|
|
5245 {
|
|
5246
|
|
5247 xzero (dl);
|
|
5248 dlp = &dl;
|
|
5249 local = 1;
|
|
5250 }
|
|
5251
|
|
5252 dlp->bounds = bounds;
|
|
5253 dlp->offset = 0;
|
|
5254 next_pos = generate_string_display_line (w, disp_string, dlp, start_pos,
|
|
5255 &prop, default_face);
|
|
5256 /* we need to make sure that we continue along the line if there
|
|
5257 is more left to display otherwise we just end up redisplaying
|
|
5258 the same chunk over and over again. */
|
|
5259 if (next_pos == start_pos && next_pos < s_zv)
|
|
5260 start_pos++;
|
|
5261 else
|
|
5262 start_pos = next_pos;
|
|
5263
|
|
5264 dlp->ypos = ypos + dlp->ascent;
|
|
5265 ypos = dlp->ypos + dlp->descent;
|
|
5266
|
|
5267 if (ypos > yend)
|
|
5268 {
|
|
5269 int visible_height = dlp->ascent + dlp->descent;
|
|
5270
|
|
5271 dlp->clip = (ypos - yend);
|
|
5272 visible_height -= dlp->clip;
|
|
5273
|
|
5274 if (visible_height < VERTICAL_CLIP (w, 1))
|
|
5275 {
|
|
5276 if (local)
|
|
5277 free_display_line (dlp);
|
|
5278 break;
|
|
5279 }
|
|
5280 }
|
|
5281 else
|
|
5282 dlp->clip = 0;
|
|
5283
|
|
5284 Dynarr_add (dla, *dlp);
|
|
5285
|
|
5286 /* #### This type of check needs to be done down in the
|
|
5287 generate_display_line call. */
|
|
5288 if (start_pos >= s_zv)
|
|
5289 break;
|
|
5290 }
|
|
5291
|
|
5292 if (prop)
|
|
5293 Dynarr_free (prop);
|
|
5294 }
|
|
5295
|
|
5296
|
|
5297 /***************************************************************************/
|
|
5298 /* */
|
|
5299 /* window-regeneration routines */
|
|
5300 /* */
|
|
5301 /***************************************************************************/
|
|
5302
|
|
5303 /* For a given window and starting position in the buffer it contains,
|
|
5304 ensure that the TYPE display lines accurately represent the
|
|
5305 presentation of the window. We pass the buffer instead of getting
|
|
5306 it from the window since redisplay_window may have temporarily
|
|
5307 changed it to the echo area buffer. */
|
|
5308
|
|
5309 static void
|
665
|
5310 regenerate_window (struct window *w, Charbpos start_pos, Charbpos point, int type)
|
428
|
5311 {
|
|
5312 struct frame *f = XFRAME (w->frame);
|
|
5313 struct buffer *b = XBUFFER (w->buffer);
|
|
5314 int ypos = WINDOW_TEXT_TOP (w);
|
|
5315 int yend; /* set farther down */
|
|
5316 int yclip = WINDOW_TEXT_TOP_CLIP (w);
|
442
|
5317 int force;
|
428
|
5318
|
|
5319 prop_block_dynarr *prop;
|
|
5320 layout_bounds bounds;
|
|
5321 display_line_dynarr *dla;
|
|
5322 int need_modeline;
|
|
5323
|
|
5324 /* The lines had better exist by this point. */
|
|
5325 if (!(dla = window_display_lines (w, type)))
|
|
5326 abort ();
|
|
5327 Dynarr_reset (dla);
|
|
5328 w->max_line_len = 0;
|
|
5329
|
|
5330 /* Normally these get updated in redisplay_window but it is possible
|
|
5331 for this function to get called from some other points where that
|
|
5332 update may not have occurred. This acts as a safety check. */
|
|
5333 if (!Dynarr_length (w->face_cachels))
|
|
5334 reset_face_cachels (w);
|
|
5335 if (!Dynarr_length (w->glyph_cachels))
|
|
5336 reset_glyph_cachels (w);
|
|
5337
|
|
5338 Fset_marker (w->start[type], make_int (start_pos), w->buffer);
|
|
5339 Fset_marker (w->pointm[type], make_int (point), w->buffer);
|
|
5340 w->last_point_x[type] = -1;
|
|
5341 w->last_point_y[type] = -1;
|
|
5342
|
|
5343 /* Make sure a modeline is in the structs if needed. */
|
|
5344 need_modeline = ensure_modeline_generated (w, type);
|
|
5345
|
|
5346 /* Wait until here to set this so that the structs have a modeline
|
|
5347 generated in the case where one didn't exist. */
|
|
5348 yend = WINDOW_TEXT_BOTTOM (w);
|
|
5349
|
|
5350 bounds = calculate_display_line_boundaries (w, 0);
|
|
5351
|
|
5352 /* 97/3/14 jhod: stuff added here to support pre-prompts (used for input systems) */
|
|
5353 if (MINI_WINDOW_P (w)
|
|
5354 && (!NILP (Vminibuf_prompt) || !NILP (Vminibuf_preprompt))
|
|
5355 && !echo_area_active (f)
|
|
5356 && start_pos == BUF_BEGV (b))
|
|
5357 {
|
|
5358 struct prop_block pb;
|
|
5359 Lisp_Object string;
|
|
5360 prop = Dynarr_new (prop_block);
|
|
5361
|
|
5362 string = concat2(Vminibuf_preprompt, Vminibuf_prompt);
|
|
5363 pb.type = PROP_MINIBUF_PROMPT;
|
|
5364 pb.data.p_string.str = XSTRING_DATA(string);
|
|
5365 pb.data.p_string.len = XSTRING_LENGTH(string);
|
|
5366 Dynarr_add (prop, pb);
|
|
5367 }
|
|
5368 else
|
|
5369 prop = 0;
|
|
5370
|
442
|
5371 /* When we are computing things for scrolling purposes, make
|
|
5372 sure at least one line is always generated */
|
|
5373 force = (type == CMOTION_DISP);
|
|
5374
|
|
5375 /* Make sure this is set always */
|
|
5376 /* Note the conversion at end */
|
|
5377 w->window_end_pos[type] = start_pos;
|
|
5378 while (ypos < yend || force)
|
428
|
5379 {
|
|
5380 struct display_line dl;
|
|
5381 struct display_line *dlp;
|
|
5382 int local;
|
|
5383
|
|
5384 if (Dynarr_length (dla) < Dynarr_largest (dla))
|
|
5385 {
|
|
5386 dlp = Dynarr_atp (dla, Dynarr_length (dla));
|
|
5387 local = 0;
|
|
5388 }
|
|
5389 else
|
|
5390 {
|
|
5391
|
|
5392 xzero (dl);
|
|
5393 dlp = &dl;
|
|
5394 local = 1;
|
|
5395 }
|
|
5396
|
|
5397 dlp->bounds = bounds;
|
|
5398 dlp->offset = 0;
|
|
5399 start_pos = generate_display_line (w, dlp, 1, start_pos, &prop, type);
|
|
5400
|
|
5401 if (yclip > dlp->ascent)
|
|
5402 {
|
|
5403 /* this should never happen, but if it does just display the
|
|
5404 whole line */
|
|
5405 yclip = 0;
|
|
5406 }
|
|
5407
|
|
5408 dlp->ypos = (ypos + dlp->ascent) - yclip;
|
|
5409 ypos = dlp->ypos + dlp->descent;
|
|
5410
|
|
5411 /* See if we've been asked to start midway through a line, for
|
|
5412 partial display line scrolling. */
|
434
|
5413 if (yclip)
|
428
|
5414 {
|
|
5415 dlp->top_clip = yclip;
|
|
5416 yclip = 0;
|
|
5417 }
|
|
5418 else
|
|
5419 dlp->top_clip = 0;
|
|
5420
|
|
5421 if (ypos > yend)
|
|
5422 {
|
|
5423 int visible_height = dlp->ascent + dlp->descent;
|
|
5424
|
|
5425 dlp->clip = (ypos - yend);
|
|
5426 /* Although this seems strange we could have a single very
|
|
5427 tall line visible for which we need to account for both
|
|
5428 the top clip and the bottom clip. */
|
|
5429 visible_height -= (dlp->clip + dlp->top_clip);
|
|
5430
|
442
|
5431 if (visible_height < VERTICAL_CLIP (w, 1) && !force)
|
428
|
5432 {
|
|
5433 if (local)
|
|
5434 free_display_line (dlp);
|
|
5435 break;
|
|
5436 }
|
|
5437 }
|
|
5438 else
|
|
5439 dlp->clip = 0;
|
|
5440
|
|
5441 if (dlp->cursor_elt != -1)
|
|
5442 {
|
|
5443 /* #### This check is steaming crap. Have to get things
|
|
5444 fixed so when create_text_block hits EOB, we're done,
|
|
5445 period. */
|
|
5446 if (w->last_point_x[type] == -1)
|
|
5447 {
|
|
5448 w->last_point_x[type] = dlp->cursor_elt;
|
|
5449 w->last_point_y[type] = Dynarr_length (dla);
|
|
5450 }
|
|
5451 else
|
|
5452 {
|
|
5453 /* #### This means that we've added a cursor at EOB
|
|
5454 twice. Yuck oh yuck. */
|
|
5455 struct display_block *db =
|
|
5456 get_display_block_from_line (dlp, TEXT);
|
|
5457
|
|
5458 Dynarr_atp (db->runes, dlp->cursor_elt)->cursor_type = NO_CURSOR;
|
|
5459 dlp->cursor_elt = -1;
|
|
5460 }
|
|
5461 }
|
|
5462
|
|
5463 if (dlp->num_chars > w->max_line_len)
|
|
5464 w->max_line_len = dlp->num_chars;
|
|
5465
|
|
5466 Dynarr_add (dla, *dlp);
|
|
5467
|
|
5468 /* #### This isn't right, but it is close enough for now. */
|
|
5469 w->window_end_pos[type] = start_pos;
|
|
5470
|
|
5471 /* #### This type of check needs to be done down in the
|
|
5472 generate_display_line call. */
|
|
5473 if (start_pos > BUF_ZV (b))
|
|
5474 break;
|
442
|
5475
|
|
5476 force = 0;
|
428
|
5477 }
|
|
5478
|
|
5479 if (prop)
|
|
5480 Dynarr_free (prop);
|
|
5481
|
|
5482 /* #### More not quite right, but close enough. */
|
442
|
5483 /* Ben sez: apparently window_end_pos[] is measured
|
428
|
5484 as the number of characters between the window end and the
|
|
5485 end of the buffer? This seems rather weirdo. What's
|
442
|
5486 the justification for this?
|
|
5487
|
|
5488 JV sez: Because BUF_Z (b) would be a good initial value, however
|
|
5489 that can change. This representation allows initalizing with 0.
|
|
5490 */
|
428
|
5491 w->window_end_pos[type] = BUF_Z (b) - w->window_end_pos[type];
|
|
5492
|
|
5493 if (need_modeline)
|
|
5494 {
|
|
5495 /* We know that this is the right thing to use because we put it
|
|
5496 there when we first started working in this function. */
|
|
5497 generate_modeline (w, Dynarr_atp (dla, 0), type);
|
|
5498 }
|
|
5499 }
|
|
5500
|
826
|
5501 #define REGEN_INC_FIND_START_END \
|
|
5502 do { \
|
|
5503 /* Determine start and end of lines. */ \
|
|
5504 if (!Dynarr_length (cdla)) \
|
|
5505 return 0; \
|
|
5506 else \
|
|
5507 { \
|
428
|
5508 if (Dynarr_atp (cdla, 0)->modeline && Dynarr_atp (ddla, 0)->modeline) \
|
826
|
5509 { \
|
|
5510 dla_start = 1; \
|
|
5511 } \
|
|
5512 else if (!Dynarr_atp (cdla, 0)->modeline \
|
|
5513 && !Dynarr_atp (ddla, 0)->modeline) \
|
|
5514 { \
|
|
5515 dla_start = 0; \
|
|
5516 } \
|
|
5517 else \
|
|
5518 abort (); /* structs differ */ \
|
|
5519 \
|
|
5520 dla_end = Dynarr_length (cdla) - 1; \
|
|
5521 } \
|
|
5522 \
|
|
5523 start_pos = (Dynarr_atp (cdla, dla_start)->charpos \
|
|
5524 + Dynarr_atp (cdla, dla_start)->offset); \
|
|
5525 /* If this isn't true, then startp has changed and we need to do a \
|
|
5526 full regen. */ \
|
|
5527 if (startp != start_pos) \
|
|
5528 return 0; \
|
|
5529 \
|
|
5530 /* Point is outside the visible region so give up. */ \
|
|
5531 if (pointm < start_pos) \
|
|
5532 return 0; \
|
|
5533 \
|
428
|
5534 } while (0)
|
|
5535
|
|
5536 /* This attempts to incrementally update the display structures. It
|
|
5537 returns a boolean indicating success or failure. This function is
|
|
5538 very similar to regenerate_window_incrementally and is in fact only
|
|
5539 called from that function. However, because of the nature of the
|
|
5540 changes it deals with it sometimes makes different assumptions
|
|
5541 which can lead to success which are much more difficult to make
|
|
5542 when dealing with buffer changes. */
|
|
5543
|
|
5544 static int
|
665
|
5545 regenerate_window_extents_only_changed (struct window *w, Charbpos startp,
|
|
5546 Charbpos pointm,
|
428
|
5547 Charcount beg_unchanged,
|
|
5548 Charcount end_unchanged)
|
|
5549 {
|
|
5550 struct buffer *b = XBUFFER (w->buffer);
|
|
5551 display_line_dynarr *cdla = window_display_lines (w, CURRENT_DISP);
|
|
5552 display_line_dynarr *ddla = window_display_lines (w, DESIRED_DISP);
|
|
5553
|
|
5554 int dla_start = 0;
|
|
5555 int dla_end, line;
|
|
5556 int first_line, last_line;
|
665
|
5557 Charbpos start_pos;
|
428
|
5558 /* Don't define this in the loop where it is used because we
|
|
5559 definitely want its value to survive between passes. */
|
|
5560 prop_block_dynarr *prop = NULL;
|
|
5561
|
|
5562 /* If we don't have any buffer change recorded but the modiff flag has
|
|
5563 been incremented, then fail. I'm not sure of the exact circumstances
|
|
5564 under which this can happen, but I believe that it is probably a
|
|
5565 reasonable happening. */
|
|
5566 if (!point_visible (w, pointm, CURRENT_DISP)
|
|
5567 || XINT (w->last_modified[CURRENT_DISP]) < BUF_MODIFF (b))
|
|
5568 return 0;
|
|
5569
|
|
5570 /* If the cursor is moved we attempt to update it. If we succeed we
|
|
5571 go ahead and proceed with the optimization attempt. */
|
|
5572 if (!EQ (Fmarker_buffer (w->last_point[CURRENT_DISP]), w->buffer)
|
|
5573 || pointm != marker_position (w->last_point[CURRENT_DISP]))
|
|
5574 {
|
|
5575 struct frame *f = XFRAME (w->frame);
|
|
5576 struct device *d = XDEVICE (f->device);
|
|
5577 struct frame *sel_f = device_selected_frame (d);
|
|
5578 int success = 0;
|
|
5579
|
|
5580 if (w->last_point_x[CURRENT_DISP] != -1
|
|
5581 && w->last_point_y[CURRENT_DISP] != -1)
|
|
5582 {
|
|
5583
|
|
5584 if (redisplay_move_cursor (w, pointm, WINDOW_TTY_P (w)))
|
|
5585 {
|
|
5586 /* Always regenerate the modeline in case it is
|
|
5587 displaying the current line or column. */
|
|
5588 regenerate_modeline (w);
|
|
5589 success = 1;
|
|
5590 }
|
|
5591 }
|
|
5592 else if (w != XWINDOW (FRAME_SELECTED_WINDOW (sel_f)))
|
|
5593 {
|
|
5594 if (f->modeline_changed)
|
|
5595 regenerate_modeline (w);
|
|
5596 success = 1;
|
|
5597 }
|
|
5598
|
|
5599 if (!success)
|
|
5600 return 0;
|
|
5601 }
|
|
5602
|
|
5603 if (beg_unchanged == -1 && end_unchanged == -1)
|
|
5604 return 1;
|
|
5605
|
|
5606 /* assert: There are no buffer modifications or they are all below the
|
|
5607 visible region. We assume that regenerate_window_incrementally has
|
|
5608 not called us unless this is true. */
|
|
5609
|
|
5610 REGEN_INC_FIND_START_END;
|
|
5611
|
|
5612 /* If the changed are starts before the visible area, give up. */
|
|
5613 if (beg_unchanged < startp)
|
|
5614 return 0;
|
|
5615
|
|
5616 /* Find what display line the extent changes first affect. */
|
|
5617 line = dla_start;
|
|
5618 while (line <= dla_end)
|
|
5619 {
|
|
5620 struct display_line *dl = Dynarr_atp (cdla, line);
|
826
|
5621 Charbpos lstart = dl->charpos + dl->offset;
|
|
5622 Charbpos lend = dl->end_charpos + dl->offset;
|
428
|
5623
|
|
5624 if (beg_unchanged >= lstart && beg_unchanged <= lend)
|
|
5625 break;
|
|
5626
|
|
5627 line++;
|
|
5628 }
|
|
5629
|
|
5630 /* If the changes are below the visible area then if point hasn't
|
|
5631 moved return success otherwise fail in order to be safe. */
|
|
5632 if (line > dla_end)
|
|
5633 {
|
|
5634 if (EQ (Fmarker_buffer (w->last_point[CURRENT_DISP]), w->buffer)
|
|
5635 && pointm == marker_position (w->last_point[CURRENT_DISP]))
|
|
5636 return 1;
|
|
5637 else
|
|
5638 return 0;
|
|
5639 }
|
|
5640
|
|
5641 /* At this point we know what line the changes first affect. We now
|
|
5642 begin redrawing lines as long as we are still in the affected
|
|
5643 region and the line's size and positioning don't change.
|
|
5644 Otherwise we fail. If we fail we will have altered the desired
|
|
5645 structs which could lead to an assertion failure. However, if we
|
|
5646 fail the next thing that is going to happen is a full regen so we
|
|
5647 will actually end up being safe. */
|
|
5648 w->last_modified[DESIRED_DISP] = make_int (BUF_MODIFF (b));
|
|
5649 w->last_facechange[DESIRED_DISP] = make_int (BUF_FACECHANGE (b));
|
|
5650 Fset_marker (w->last_start[DESIRED_DISP], make_int (startp), w->buffer);
|
|
5651 Fset_marker (w->last_point[DESIRED_DISP], make_int (pointm), w->buffer);
|
|
5652
|
|
5653 first_line = last_line = line;
|
|
5654 while (line <= dla_end)
|
|
5655 {
|
665
|
5656 Charbpos old_start, old_end, new_start;
|
428
|
5657 struct display_line *cdl = Dynarr_atp (cdla, line);
|
|
5658 struct display_line *ddl = Dynarr_atp (ddla, line);
|
|
5659 struct display_block *db;
|
|
5660 int initial_size;
|
|
5661
|
826
|
5662 assert (cdl->charpos == ddl->charpos);
|
|
5663 assert (cdl->end_charpos == ddl->end_charpos);
|
428
|
5664 assert (cdl->offset == ddl->offset);
|
|
5665
|
|
5666 db = get_display_block_from_line (ddl, TEXT);
|
|
5667 initial_size = Dynarr_length (db->runes);
|
826
|
5668 old_start = ddl->charpos + ddl->offset;
|
|
5669 old_end = ddl->end_charpos + ddl->offset;
|
428
|
5670
|
|
5671 /* If this is the first line being updated and it used
|
|
5672 propagation data, fail. Otherwise we'll be okay because
|
|
5673 we'll have the necessary propagation data. */
|
|
5674 if (line == first_line && ddl->used_prop_data)
|
|
5675 return 0;
|
|
5676
|
826
|
5677 new_start = generate_display_line (w, ddl, 0, ddl->charpos + ddl->offset,
|
428
|
5678 &prop, DESIRED_DISP);
|
|
5679 ddl->offset = 0;
|
|
5680
|
|
5681 /* #### If there is propagated stuff the fail. We could
|
|
5682 probably actually deal with this if the line had propagated
|
|
5683 information when originally created by a full
|
|
5684 regeneration. */
|
|
5685 if (prop)
|
|
5686 {
|
|
5687 Dynarr_free (prop);
|
|
5688 return 0;
|
|
5689 }
|
|
5690
|
|
5691 /* If any line position parameters have changed or a
|
|
5692 cursor has disappeared or disappeared, fail. */
|
|
5693 db = get_display_block_from_line (ddl, TEXT);
|
|
5694 if (cdl->ypos != ddl->ypos
|
|
5695 || cdl->ascent != ddl->ascent
|
|
5696 || cdl->descent != ddl->descent
|
|
5697 || cdl->top_clip != ddl->top_clip
|
|
5698 || (cdl->cursor_elt != -1 && ddl->cursor_elt == -1)
|
|
5699 || (cdl->cursor_elt == -1 && ddl->cursor_elt != -1)
|
826
|
5700 || old_start != ddl->charpos
|
|
5701 || old_end != ddl->end_charpos
|
428
|
5702 || initial_size != Dynarr_length (db->runes))
|
|
5703 {
|
|
5704 return 0;
|
|
5705 }
|
|
5706
|
|
5707 if (ddl->cursor_elt != -1)
|
|
5708 {
|
|
5709 w->last_point_x[DESIRED_DISP] = ddl->cursor_elt;
|
|
5710 w->last_point_y[DESIRED_DISP] = line;
|
|
5711 }
|
|
5712
|
|
5713 last_line = line;
|
|
5714
|
|
5715 /* If the extent changes end on the line we just updated then
|
|
5716 we're done. Otherwise go on to the next line. */
|
826
|
5717 if (end_unchanged <= ddl->end_charpos)
|
428
|
5718 break;
|
|
5719 else
|
|
5720 line++;
|
|
5721 }
|
|
5722
|
|
5723 redisplay_update_line (w, first_line, last_line, 1);
|
|
5724 return 1;
|
|
5725 }
|
|
5726
|
|
5727 /* Attempt to update the display data structures based on knowledge of
|
|
5728 the changed region in the buffer. Returns a boolean indicating
|
|
5729 success or failure. If this function returns a failure then a
|
|
5730 regenerate_window _must_ be performed next in order to maintain
|
|
5731 invariants located here. */
|
|
5732
|
|
5733 static int
|
665
|
5734 regenerate_window_incrementally (struct window *w, Charbpos startp,
|
|
5735 Charbpos pointm)
|
428
|
5736 {
|
|
5737 struct buffer *b = XBUFFER (w->buffer);
|
|
5738 display_line_dynarr *cdla = window_display_lines (w, CURRENT_DISP);
|
|
5739 display_line_dynarr *ddla = window_display_lines (w, DESIRED_DISP);
|
|
5740 Charcount beg_unchanged, end_unchanged;
|
|
5741 Charcount extent_beg_unchanged, extent_end_unchanged;
|
|
5742
|
|
5743 int dla_start = 0;
|
|
5744 int dla_end, line;
|
665
|
5745 Charbpos start_pos;
|
428
|
5746
|
|
5747 /* If this function is called, the current and desired structures
|
|
5748 had better be identical. If they are not, then that is a bug. */
|
|
5749 assert (Dynarr_length (cdla) == Dynarr_length (ddla));
|
|
5750
|
|
5751 /* We don't handle minibuffer windows yet. The minibuffer prompt
|
|
5752 screws us up. */
|
|
5753 if (MINI_WINDOW_P (w))
|
|
5754 return 0;
|
|
5755
|
|
5756 extent_beg_unchanged = BUF_EXTENT_BEGIN_UNCHANGED (b);
|
|
5757 extent_end_unchanged = (BUF_EXTENT_END_UNCHANGED (b) == -1
|
|
5758 ? -1
|
|
5759 : BUF_Z (b) - BUF_EXTENT_END_UNCHANGED (b));
|
|
5760
|
|
5761 /* If nothing has changed in the buffer, then make sure point is ok
|
|
5762 and succeed. */
|
|
5763 if (BUF_BEGIN_UNCHANGED (b) == -1 && BUF_END_UNCHANGED (b) == -1)
|
|
5764 return regenerate_window_extents_only_changed (w, startp, pointm,
|
|
5765 extent_beg_unchanged,
|
|
5766 extent_end_unchanged);
|
|
5767
|
|
5768 /* We can't deal with deleted newlines. */
|
|
5769 if (BUF_NEWLINE_WAS_DELETED (b))
|
|
5770 return 0;
|
|
5771
|
|
5772 beg_unchanged = BUF_BEGIN_UNCHANGED (b);
|
|
5773 end_unchanged = (BUF_END_UNCHANGED (b) == -1
|
|
5774 ? -1
|
|
5775 : BUF_Z (b) - BUF_END_UNCHANGED (b));
|
|
5776
|
|
5777 REGEN_INC_FIND_START_END;
|
|
5778
|
|
5779 /* If the changed area starts before the visible area, give up. */
|
|
5780 if (beg_unchanged < startp)
|
|
5781 return 0;
|
|
5782
|
|
5783 /* Find what display line the buffer changes first affect. */
|
|
5784 line = dla_start;
|
|
5785 while (line <= dla_end)
|
|
5786 {
|
|
5787 struct display_line *dl = Dynarr_atp (cdla, line);
|
826
|
5788 Charbpos lstart = dl->charpos + dl->offset;
|
|
5789 Charbpos lend = dl->end_charpos + dl->offset;
|
428
|
5790
|
|
5791 if (beg_unchanged >= lstart && beg_unchanged <= lend)
|
|
5792 break;
|
|
5793
|
|
5794 line++;
|
|
5795 }
|
|
5796
|
|
5797 /* If the changes are below the visible area then if point hasn't
|
|
5798 moved return success otherwise fail in order to be safe. */
|
|
5799 if (line > dla_end)
|
|
5800 return regenerate_window_extents_only_changed (w, startp, pointm,
|
|
5801 extent_beg_unchanged,
|
|
5802 extent_end_unchanged);
|
|
5803 else
|
|
5804 /* At this point we know what line the changes first affect. We
|
|
5805 now redraw that line. If the changes are contained within it
|
|
5806 we are going to succeed and can update just that one line.
|
|
5807 Otherwise we fail. If we fail we will have altered the desired
|
|
5808 structs which could lead to an assertion failure. However, if
|
|
5809 we fail the next thing that is going to happen is a full regen
|
|
5810 so we will actually end up being safe. */
|
|
5811 {
|
665
|
5812 Charbpos new_start;
|
428
|
5813 prop_block_dynarr *prop = NULL;
|
|
5814 struct display_line *cdl = Dynarr_atp (cdla, line);
|
|
5815 struct display_line *ddl = Dynarr_atp (ddla, line);
|
|
5816
|
826
|
5817 assert (cdl->charpos == ddl->charpos);
|
|
5818 assert (cdl->end_charpos == ddl->end_charpos);
|
428
|
5819 assert (cdl->offset == ddl->offset);
|
|
5820
|
442
|
5821 /* If the line continues to next display line, fail. */
|
|
5822 if (ddl->line_continuation)
|
|
5823 return 0;
|
428
|
5824
|
|
5825 /* If the line was generated using propagation data, fail. */
|
|
5826 if (ddl->used_prop_data)
|
|
5827 return 0;
|
|
5828
|
826
|
5829 new_start = generate_display_line (w, ddl, 0, ddl->charpos + ddl->offset,
|
428
|
5830 &prop, DESIRED_DISP);
|
|
5831 ddl->offset = 0;
|
|
5832
|
|
5833 /* If there is propagated stuff then it is pretty much a
|
|
5834 guarantee that more than just the one line is affected. */
|
|
5835 if (prop)
|
|
5836 {
|
|
5837 Dynarr_free (prop);
|
|
5838 return 0;
|
|
5839 }
|
|
5840
|
442
|
5841 /* If the line continues to next display line, fail. */
|
|
5842 if (ddl->line_continuation)
|
|
5843 return 0;
|
428
|
5844
|
|
5845 /* If any line position parameters have changed or a
|
|
5846 cursor has disappeared or disappeared, fail. */
|
|
5847 if (cdl->ypos != ddl->ypos
|
|
5848 || cdl->ascent != ddl->ascent
|
|
5849 || cdl->descent != ddl->descent
|
|
5850 || cdl->top_clip != ddl->top_clip
|
|
5851 || (cdl->cursor_elt != -1 && ddl->cursor_elt == -1)
|
|
5852 || (cdl->cursor_elt == -1 && ddl->cursor_elt != -1))
|
|
5853 {
|
|
5854 return 0;
|
|
5855 }
|
|
5856
|
|
5857 /* If the changed area also ends on this line, then we may be in
|
|
5858 business. Update everything and return success. */
|
826
|
5859 if (end_unchanged >= ddl->charpos && end_unchanged <= ddl->end_charpos)
|
428
|
5860 {
|
|
5861 w->last_modified[DESIRED_DISP] = make_int (BUF_MODIFF (b));
|
|
5862 w->last_facechange[DESIRED_DISP] = make_int (BUF_FACECHANGE (b));
|
|
5863 Fset_marker (w->last_start[DESIRED_DISP], make_int (startp),
|
|
5864 w->buffer);
|
|
5865 Fset_marker (w->last_point[DESIRED_DISP], make_int (pointm),
|
|
5866 w->buffer);
|
|
5867
|
|
5868 if (ddl->cursor_elt != -1)
|
|
5869 {
|
|
5870 w->last_point_x[DESIRED_DISP] = ddl->cursor_elt;
|
|
5871 w->last_point_y[DESIRED_DISP] = line;
|
|
5872 }
|
|
5873
|
|
5874 redisplay_update_line (w, line, line, 1);
|
|
5875 regenerate_modeline (w);
|
|
5876
|
|
5877 /* #### For now we just flush the cache until this has been
|
|
5878 tested. After that is done, this should correct the
|
|
5879 cache directly. */
|
|
5880 Dynarr_reset (w->line_start_cache);
|
|
5881
|
|
5882 /* Adjust the extent changed boundaries to remove any
|
|
5883 overlap with the buffer changes since we've just
|
|
5884 successfully updated that area. */
|
|
5885 if (extent_beg_unchanged != -1
|
|
5886 && extent_beg_unchanged >= beg_unchanged
|
|
5887 && extent_beg_unchanged < end_unchanged)
|
|
5888 extent_beg_unchanged = end_unchanged;
|
|
5889
|
|
5890 if (extent_end_unchanged != -1
|
|
5891 && extent_end_unchanged >= beg_unchanged
|
|
5892 && extent_end_unchanged < end_unchanged)
|
|
5893 extent_end_unchanged = beg_unchanged - 1;
|
|
5894
|
|
5895 if (extent_end_unchanged <= extent_beg_unchanged)
|
|
5896 extent_beg_unchanged = extent_end_unchanged = -1;
|
|
5897
|
|
5898 /* This could lead to odd results if it fails, but since the
|
|
5899 buffer changes update succeeded this probably will to.
|
|
5900 We already know that the extent changes start at or after
|
|
5901 the line because we checked before entering the loop. */
|
|
5902 if (extent_beg_unchanged != -1
|
|
5903 && extent_end_unchanged != -1
|
826
|
5904 && ((extent_beg_unchanged < ddl->charpos)
|
|
5905 || (extent_end_unchanged > ddl->end_charpos)))
|
428
|
5906 return regenerate_window_extents_only_changed (w, startp, pointm,
|
|
5907 extent_beg_unchanged,
|
|
5908 extent_end_unchanged);
|
|
5909 else
|
|
5910 return 1;
|
|
5911 }
|
|
5912 }
|
|
5913
|
|
5914 /* Oh, well. */
|
|
5915 return 0;
|
|
5916 }
|
|
5917
|
|
5918 /* Given a window and a point, update the given display lines such
|
|
5919 that point is displayed in the middle of the window.
|
|
5920 Return the window's new start position. */
|
|
5921
|
665
|
5922 static Charbpos
|
|
5923 regenerate_window_point_center (struct window *w, Charbpos point, int type)
|
428
|
5924 {
|
665
|
5925 Charbpos startp;
|
428
|
5926
|
|
5927 /* We need to make sure that the modeline is generated so that the
|
|
5928 window height can be calculated correctly. */
|
|
5929 ensure_modeline_generated (w, type);
|
|
5930
|
|
5931 startp = start_with_line_at_pixpos (w, point, window_half_pixpos (w));
|
|
5932 regenerate_window (w, startp, point, type);
|
|
5933 Fset_marker (w->start[type], make_int (startp), w->buffer);
|
|
5934
|
|
5935 return startp;
|
|
5936 }
|
|
5937
|
|
5938 /* Given a window and a set of display lines, return a boolean
|
|
5939 indicating whether the given point is contained within. */
|
|
5940
|
|
5941 static int
|
665
|
5942 point_visible (struct window *w, Charbpos point, int type)
|
428
|
5943 {
|
|
5944 struct buffer *b = XBUFFER (w->buffer);
|
|
5945 display_line_dynarr *dla = window_display_lines (w, type);
|
|
5946 int first_line;
|
|
5947
|
|
5948 if (Dynarr_length (dla) && Dynarr_atp (dla, 0)->modeline)
|
|
5949 first_line = 1;
|
|
5950 else
|
|
5951 first_line = 0;
|
|
5952
|
|
5953 if (Dynarr_length (dla) > first_line)
|
|
5954 {
|
665
|
5955 Charbpos start, end;
|
428
|
5956 struct display_line *dl = Dynarr_atp (dla, first_line);
|
|
5957
|
826
|
5958 start = dl->charpos;
|
428
|
5959 end = BUF_Z (b) - w->window_end_pos[type] - 1;
|
|
5960
|
|
5961 if (point >= start && point <= end)
|
|
5962 {
|
|
5963 if (!MINI_WINDOW_P (w) && scroll_on_clipped_lines)
|
|
5964 {
|
|
5965 dl = Dynarr_atp (dla, Dynarr_length (dla) - 1);
|
|
5966
|
826
|
5967 if (point >= (dl->charpos + dl->offset)
|
|
5968 && point <= (dl->end_charpos + dl->offset))
|
428
|
5969 return !dl->clip;
|
|
5970 else
|
|
5971 return 1;
|
|
5972 }
|
|
5973 else
|
|
5974 return 1;
|
|
5975 }
|
|
5976 else
|
|
5977 return 0;
|
|
5978 }
|
|
5979 else
|
|
5980 return 0;
|
|
5981 }
|
|
5982
|
|
5983 /* Return pixel position the middle of the window, not including the
|
|
5984 modeline and any potential horizontal scrollbar. */
|
|
5985
|
|
5986 int
|
|
5987 window_half_pixpos (struct window *w)
|
|
5988 {
|
|
5989 return WINDOW_TEXT_TOP (w) + (WINDOW_TEXT_HEIGHT (w) >> 1);
|
|
5990 }
|
|
5991
|
|
5992 /* Return the display line which is currently in the middle of the
|
|
5993 window W for display lines TYPE. */
|
|
5994
|
|
5995 int
|
665
|
5996 line_at_center (struct window *w, int type, Charbpos start, Charbpos point)
|
428
|
5997 {
|
|
5998 display_line_dynarr *dla;
|
|
5999 int half;
|
|
6000 int elt;
|
|
6001 int first_elt = (MINI_WINDOW_P (w) ? 0 : 1);
|
|
6002
|
|
6003 if (type == CMOTION_DISP)
|
|
6004 regenerate_window (w, start, point, type);
|
|
6005
|
|
6006 dla = window_display_lines (w, type);
|
|
6007 half = window_half_pixpos (w);
|
|
6008
|
|
6009 for (elt = first_elt; elt < Dynarr_length (dla); elt++)
|
|
6010 {
|
|
6011 struct display_line *dl = Dynarr_atp (dla, elt);
|
|
6012 int line_bot = dl->ypos + dl->descent;
|
|
6013
|
|
6014 if (line_bot > half)
|
|
6015 return elt;
|
|
6016 }
|
|
6017
|
|
6018 /* We may not have a line at the middle if the end of the buffer is
|
|
6019 being displayed. */
|
|
6020 return -1;
|
|
6021 }
|
|
6022
|
|
6023 /* Return a value for point that would place it at the beginning of
|
|
6024 the line which is in the middle of the window. */
|
|
6025
|
665
|
6026 Charbpos
|
|
6027 point_at_center (struct window *w, int type, Charbpos start, Charbpos point)
|
428
|
6028 {
|
|
6029 /* line_at_center will regenerate the display structures, if necessary. */
|
|
6030 int line = line_at_center (w, type, start, point);
|
|
6031
|
|
6032 if (line == -1)
|
|
6033 return BUF_ZV (XBUFFER (w->buffer));
|
|
6034 else
|
|
6035 {
|
|
6036 display_line_dynarr *dla = window_display_lines (w, type);
|
|
6037 struct display_line *dl = Dynarr_atp (dla, line);
|
|
6038
|
826
|
6039 return dl->charpos;
|
428
|
6040 }
|
|
6041 }
|
|
6042
|
|
6043 /* For a given window, ensure that the current visual representation
|
|
6044 is accurate. */
|
|
6045
|
|
6046 static void
|
|
6047 redisplay_window (Lisp_Object window, int skip_selected)
|
|
6048 {
|
|
6049 struct window *w = XWINDOW (window);
|
|
6050 struct frame *f = XFRAME (w->frame);
|
|
6051 struct device *d = XDEVICE (f->device);
|
|
6052 Lisp_Object old_buffer = w->buffer;
|
|
6053 Lisp_Object the_buffer = w->buffer;
|
|
6054 struct buffer *b;
|
|
6055 int echo_active = 0;
|
|
6056 int startp = 1;
|
|
6057 int pointm;
|
|
6058 int old_startp = 1;
|
|
6059 int old_pointm = 1;
|
|
6060 int selected_in_its_frame;
|
|
6061 int selected_globally;
|
|
6062 int skip_output = 0;
|
|
6063 int truncation_changed;
|
|
6064 int inactive_minibuffer =
|
|
6065 (MINI_WINDOW_P (w) &&
|
|
6066 (f != device_selected_frame (d)) &&
|
|
6067 !is_surrogate_for_selected_frame (f));
|
|
6068
|
|
6069 /* #### In the new world this function actually does a bunch of
|
|
6070 optimizations such as buffer-based scrolling, but none of that is
|
|
6071 implemented yet. */
|
|
6072
|
|
6073 /* If this is a combination window, do its children; that's all.
|
|
6074 The selected window is always a leaf so we don't check for
|
|
6075 skip_selected here. */
|
|
6076 if (!NILP (w->vchild))
|
|
6077 {
|
|
6078 redisplay_windows (w->vchild, skip_selected);
|
|
6079 return;
|
|
6080 }
|
|
6081 if (!NILP (w->hchild))
|
|
6082 {
|
|
6083 redisplay_windows (w->hchild, skip_selected);
|
|
6084 return;
|
|
6085 }
|
|
6086
|
|
6087 /* Is this window the selected window on its frame? */
|
|
6088 selected_in_its_frame = (w == XWINDOW (FRAME_SELECTED_WINDOW (f)));
|
|
6089 selected_globally =
|
|
6090 selected_in_its_frame &&
|
|
6091 EQ(DEVICE_CONSOLE(d), Vselected_console) &&
|
|
6092 XDEVICE(CONSOLE_SELECTED_DEVICE(XCONSOLE(DEVICE_CONSOLE(d)))) == d &&
|
|
6093 XFRAME(DEVICE_SELECTED_FRAME(d)) == f;
|
|
6094 if (skip_selected && selected_in_its_frame)
|
|
6095 return;
|
|
6096
|
|
6097 /* It is possible that the window is not fully initialized yet. */
|
|
6098 if (NILP (w->buffer))
|
|
6099 return;
|
|
6100
|
|
6101 if (MINI_WINDOW_P (w) && echo_area_active (f))
|
|
6102 {
|
|
6103 w->buffer = the_buffer = Vecho_area_buffer;
|
|
6104 echo_active = 1;
|
|
6105 }
|
|
6106
|
|
6107 b = XBUFFER (w->buffer);
|
|
6108
|
|
6109 if (echo_active)
|
|
6110 {
|
|
6111 old_pointm = selected_globally
|
|
6112 ? BUF_PT (b)
|
|
6113 : marker_position (w->pointm[CURRENT_DISP]);
|
|
6114 pointm = 1;
|
|
6115 }
|
|
6116 else
|
|
6117 {
|
|
6118 if (selected_globally)
|
|
6119 {
|
|
6120 pointm = BUF_PT (b);
|
|
6121 }
|
|
6122 else
|
|
6123 {
|
|
6124 pointm = marker_position (w->pointm[CURRENT_DISP]);
|
|
6125
|
|
6126 if (pointm < BUF_BEGV (b))
|
|
6127 pointm = BUF_BEGV (b);
|
|
6128 else if (pointm > BUF_ZV (b))
|
|
6129 pointm = BUF_ZV (b);
|
|
6130 }
|
|
6131 }
|
|
6132 Fset_marker (w->pointm[DESIRED_DISP], make_int (pointm), the_buffer);
|
|
6133
|
|
6134 /* If the buffer has changed we have to invalidate all of our face
|
|
6135 cache elements. */
|
|
6136 if ((!echo_active && b != window_display_buffer (w))
|
|
6137 || !Dynarr_length (w->face_cachels)
|
|
6138 || f->faces_changed)
|
|
6139 reset_face_cachels (w);
|
|
6140 else
|
|
6141 mark_face_cachels_as_not_updated (w);
|
|
6142
|
|
6143 /* Ditto the glyph cache elements, although we do *not* invalidate
|
|
6144 the cache purely because glyphs have changed - this is now
|
|
6145 handled by the dirty flag.*/
|
|
6146 if ((!echo_active && b != window_display_buffer (w))
|
440
|
6147 || !Dynarr_length (w->glyph_cachels) || f->faces_changed)
|
428
|
6148 reset_glyph_cachels (w);
|
|
6149 else
|
|
6150 mark_glyph_cachels_as_not_updated (w);
|
|
6151
|
|
6152 /* If the marker's buffer is not the window's buffer, then we need
|
|
6153 to find a new starting position. */
|
|
6154 if (!MINI_WINDOW_P (w)
|
|
6155 && !EQ (Fmarker_buffer (w->start[CURRENT_DISP]), w->buffer))
|
|
6156 {
|
|
6157 startp = regenerate_window_point_center (w, pointm, DESIRED_DISP);
|
|
6158
|
|
6159 goto regeneration_done;
|
|
6160 }
|
|
6161
|
|
6162 if (echo_active)
|
|
6163 {
|
|
6164 old_startp = marker_position (w->start[CURRENT_DISP]);
|
|
6165 startp = 1;
|
|
6166 }
|
|
6167 else
|
|
6168 {
|
|
6169 startp = marker_position (w->start[CURRENT_DISP]);
|
|
6170 if (startp < BUF_BEGV (b))
|
|
6171 startp = BUF_BEGV (b);
|
|
6172 else if (startp > BUF_ZV (b))
|
|
6173 startp = BUF_ZV (b);
|
|
6174 }
|
|
6175 Fset_marker (w->start[DESIRED_DISP], make_int (startp), the_buffer);
|
|
6176
|
|
6177 truncation_changed = (find_window_mirror (w)->truncate_win !=
|
647
|
6178 (unsigned int) window_truncation_on (w));
|
428
|
6179
|
|
6180 /* If w->force_start is set, then some function set w->start and we
|
|
6181 should display from there and change point, if necessary, to
|
|
6182 ensure that it is visible. */
|
|
6183 if (w->force_start || inactive_minibuffer)
|
|
6184 {
|
|
6185 w->force_start = 0;
|
|
6186 w->last_modified[DESIRED_DISP] = Qzero;
|
|
6187 w->last_facechange[DESIRED_DISP] = Qzero;
|
|
6188
|
|
6189 regenerate_window (w, startp, pointm, DESIRED_DISP);
|
|
6190
|
|
6191 if (!point_visible (w, pointm, DESIRED_DISP) && !inactive_minibuffer)
|
|
6192 {
|
|
6193 pointm = point_at_center (w, DESIRED_DISP, 0, 0);
|
|
6194
|
|
6195 if (selected_globally)
|
|
6196 BUF_SET_PT (b, pointm);
|
|
6197
|
|
6198 Fset_marker (w->pointm[DESIRED_DISP], make_int (pointm),
|
|
6199 the_buffer);
|
|
6200
|
|
6201 /* #### BUFU amounts of overkill just to get the cursor
|
|
6202 location marked properly. FIX ME FIX ME FIX ME */
|
|
6203 regenerate_window (w, startp, pointm, DESIRED_DISP);
|
|
6204 }
|
|
6205
|
|
6206 goto regeneration_done;
|
|
6207 }
|
|
6208
|
|
6209 /* If nothing has changed since the last redisplay, then we just
|
|
6210 need to make sure that point is still visible. */
|
|
6211 if (XINT (w->last_modified[CURRENT_DISP]) >= BUF_MODIFF (b)
|
|
6212 && XINT (w->last_facechange[CURRENT_DISP]) >= BUF_FACECHANGE (b)
|
|
6213 && pointm >= startp
|
|
6214 /* This check is to make sure we restore the minibuffer after a
|
|
6215 temporary change to the echo area. */
|
|
6216 && !(MINI_WINDOW_P (w) && f->buffers_changed)
|
|
6217 && !f->frame_changed
|
|
6218 && !truncation_changed
|
442
|
6219 /* check whether start is really at the beginning of a line GE */
|
428
|
6220 && (!w->start_at_line_beg || beginning_of_line_p (b, startp))
|
|
6221 )
|
|
6222 {
|
|
6223 /* Check if the cursor has actually moved. */
|
|
6224 if (EQ (Fmarker_buffer (w->last_point[CURRENT_DISP]), w->buffer)
|
|
6225 && pointm == marker_position (w->last_point[CURRENT_DISP])
|
|
6226 && selected_globally
|
|
6227 && !w->windows_changed
|
|
6228 && !f->clip_changed
|
|
6229 && !f->extents_changed
|
|
6230 && !f->faces_changed
|
|
6231 && !f->glyphs_changed
|
|
6232 && !f->subwindows_changed
|
442
|
6233 /* && !f->subwindows_state_changed*/
|
428
|
6234 && !f->point_changed
|
|
6235 && !f->windows_structure_changed)
|
|
6236 {
|
|
6237 /* If not, we're done. */
|
|
6238 if (f->modeline_changed)
|
|
6239 regenerate_modeline (w);
|
|
6240
|
|
6241 skip_output = 1;
|
|
6242 goto regeneration_done;
|
|
6243 }
|
|
6244 else
|
|
6245 {
|
|
6246 /* If the new point is visible in the redisplay structures,
|
|
6247 then let the output update routines handle it, otherwise
|
|
6248 do things the hard way. */
|
|
6249 if (!w->windows_changed
|
|
6250 && !f->clip_changed
|
|
6251 && !f->extents_changed
|
|
6252 && !f->faces_changed
|
|
6253 && !f->glyphs_changed
|
|
6254 && !f->subwindows_changed
|
442
|
6255 /* && !f->subwindows_state_changed*/
|
428
|
6256 && !f->windows_structure_changed)
|
|
6257 {
|
|
6258 if (point_visible (w, pointm, CURRENT_DISP)
|
|
6259 && w->last_point_x[CURRENT_DISP] != -1
|
|
6260 && w->last_point_y[CURRENT_DISP] != -1)
|
|
6261 {
|
|
6262 if (redisplay_move_cursor (w, pointm, FRAME_TTY_P (f)))
|
|
6263 {
|
|
6264 /* Always regenerate in case it is displaying
|
|
6265 the current line or column. */
|
|
6266 regenerate_modeline (w);
|
|
6267
|
|
6268 skip_output = 1;
|
|
6269 goto regeneration_done;
|
|
6270 }
|
|
6271 }
|
|
6272 else if (!selected_in_its_frame && !f->point_changed)
|
|
6273 {
|
|
6274 if (f->modeline_changed)
|
|
6275 regenerate_modeline (w);
|
|
6276
|
|
6277 skip_output = 1;
|
|
6278 goto regeneration_done;
|
|
6279 }
|
|
6280 }
|
|
6281
|
|
6282 /* If we weren't able to take the shortcut method, then use
|
|
6283 the brute force method. */
|
|
6284 regenerate_window (w, startp, pointm, DESIRED_DISP);
|
|
6285
|
|
6286 if (point_visible (w, pointm, DESIRED_DISP))
|
|
6287 goto regeneration_done;
|
|
6288 }
|
|
6289 }
|
|
6290
|
|
6291 /* Check if the starting point is no longer at the beginning of a
|
|
6292 line, in which case find a new starting point. We also recenter
|
|
6293 if our start position is equal to point-max. Otherwise we'll end
|
|
6294 up with a blank window. */
|
|
6295 else if (((w->start_at_line_beg || MINI_WINDOW_P (w))
|
|
6296 && !(startp == BUF_BEGV (b)
|
|
6297 || BUF_FETCH_CHAR (b, startp - 1) == '\n'))
|
|
6298 || (pointm == startp &&
|
|
6299 EQ (Fmarker_buffer (w->last_start[CURRENT_DISP]), w->buffer) &&
|
|
6300 startp < marker_position (w->last_start[CURRENT_DISP]))
|
|
6301 || (startp == BUF_ZV (b)))
|
|
6302 {
|
|
6303 startp = regenerate_window_point_center (w, pointm, DESIRED_DISP);
|
|
6304
|
|
6305 goto regeneration_done;
|
|
6306 }
|
|
6307 /* See if we can update the data structures locally based on
|
|
6308 knowledge of what changed in the buffer. */
|
|
6309 else if (!w->windows_changed
|
|
6310 && !f->clip_changed
|
|
6311 && !f->faces_changed
|
|
6312 && !f->glyphs_changed
|
|
6313 && !f->subwindows_changed
|
442
|
6314 /* && !f->subwindows_state_changed*/
|
428
|
6315 && !f->windows_structure_changed
|
|
6316 && !f->frame_changed
|
|
6317 && !truncation_changed
|
|
6318 && pointm >= startp
|
|
6319 && regenerate_window_incrementally (w, startp, pointm))
|
|
6320 {
|
|
6321 if (f->modeline_changed
|
|
6322 || XINT (w->last_modified[CURRENT_DISP]) < BUF_MODIFF (b)
|
|
6323 || XINT (w->last_facechange[CURRENT_DISP]) < BUF_FACECHANGE (b))
|
|
6324 regenerate_modeline (w);
|
|
6325
|
|
6326 skip_output = 1;
|
|
6327 goto regeneration_done;
|
|
6328 }
|
|
6329 /* #### This is where a check for structure based scrolling would go. */
|
|
6330 /* If all else fails, try just regenerating and see what happens. */
|
|
6331 else
|
|
6332 {
|
|
6333 regenerate_window (w, startp, pointm, DESIRED_DISP);
|
|
6334
|
|
6335 if (point_visible (w, pointm, DESIRED_DISP))
|
|
6336 goto regeneration_done;
|
|
6337 }
|
|
6338
|
|
6339 /* We still haven't gotten the window regenerated with point
|
|
6340 visible. Next we try scrolling a little and see if point comes
|
|
6341 back onto the screen. */
|
|
6342 if (scroll_step > 0)
|
|
6343 {
|
|
6344 int scrolled = scroll_conservatively;
|
|
6345 for (; scrolled >= 0; scrolled -= scroll_step)
|
|
6346 {
|
|
6347 startp = vmotion (w, startp,
|
|
6348 (pointm < startp) ? -scroll_step : scroll_step, 0);
|
|
6349 regenerate_window (w, startp, pointm, DESIRED_DISP);
|
|
6350
|
|
6351 if (point_visible (w, pointm, DESIRED_DISP))
|
|
6352 goto regeneration_done;
|
|
6353 }
|
|
6354 }
|
|
6355
|
|
6356 /* We still haven't managed to get the screen drawn with point on
|
|
6357 the screen, so just center it and be done with it. */
|
|
6358 startp = regenerate_window_point_center (w, pointm, DESIRED_DISP);
|
|
6359
|
|
6360
|
|
6361 regeneration_done:
|
|
6362
|
|
6363 /* If the window's frame is changed then reset the current display
|
|
6364 lines in order to force a full repaint. */
|
|
6365 if (f->frame_changed)
|
|
6366 {
|
|
6367 display_line_dynarr *cla = window_display_lines (w, CURRENT_DISP);
|
|
6368
|
|
6369 Dynarr_reset (cla);
|
|
6370 }
|
|
6371
|
|
6372 /* Must do this before calling redisplay_output_window because it
|
|
6373 sets some markers on the window. */
|
|
6374 if (echo_active)
|
|
6375 {
|
|
6376 w->buffer = old_buffer;
|
|
6377 Fset_marker (w->pointm[DESIRED_DISP], make_int (old_pointm), old_buffer);
|
|
6378 Fset_marker (w->start[DESIRED_DISP], make_int (old_startp), old_buffer);
|
|
6379 }
|
|
6380
|
|
6381 /* These also have to be set before calling redisplay_output_window
|
|
6382 since it sets the CURRENT_DISP values based on them. */
|
|
6383 w->last_modified[DESIRED_DISP] = make_int (BUF_MODIFF (b));
|
|
6384 w->last_facechange[DESIRED_DISP] = make_int (BUF_FACECHANGE (b));
|
|
6385 Fset_marker (w->last_start[DESIRED_DISP], make_int (startp), w->buffer);
|
|
6386 Fset_marker (w->last_point[DESIRED_DISP], make_int (pointm), w->buffer);
|
|
6387
|
|
6388 if (!skip_output)
|
|
6389 {
|
665
|
6390 Charbpos start = marker_position (w->start[DESIRED_DISP]);
|
|
6391 Charbpos end = (w->window_end_pos[DESIRED_DISP] == -1
|
428
|
6392 ? BUF_ZV (b)
|
|
6393 : BUF_Z (b) - w->window_end_pos[DESIRED_DISP] - 1);
|
|
6394 /* Don't pollute the cache if not sure if we are correct */
|
|
6395 if (w->start_at_line_beg)
|
|
6396 update_line_start_cache (w, start, end, pointm, 1);
|
|
6397 redisplay_output_window (w);
|
|
6398 /*
|
|
6399 * If we just displayed the echo area, the line start cache is
|
|
6400 * no longer valid, because the minibuffer window is associated
|
|
6401 * with the window now.
|
|
6402 */
|
|
6403 if (echo_active)
|
|
6404 w->line_cache_last_updated = make_int (-1);
|
|
6405 }
|
|
6406
|
|
6407 /* #### This should be dependent on face changes and will need to be
|
|
6408 somewhere else once tty updates occur on a per-frame basis. */
|
|
6409 mark_face_cachels_as_clean (w);
|
|
6410
|
438
|
6411 /* The glyph cachels only get dirty if someone changed something.
|
|
6412 Since redisplay has now effectively ended we can reset the dirty
|
|
6413 flag since everything must be up-to-date. */
|
428
|
6414 if (glyphs_changed)
|
|
6415 mark_glyph_cachels_as_clean (w);
|
|
6416
|
|
6417 w->windows_changed = 0;
|
|
6418 }
|
|
6419
|
|
6420 /* Call buffer_reset_changes for all buffers present in any window
|
|
6421 currently visible in all frames on all devices. #### There has to
|
|
6422 be a better way to do this. */
|
|
6423
|
|
6424 static int
|
|
6425 reset_buffer_changes_mapfun (struct window *w, void *ignored_closure)
|
|
6426 {
|
|
6427 buffer_reset_changes (XBUFFER (w->buffer));
|
|
6428 return 0;
|
|
6429 }
|
|
6430
|
|
6431 static void
|
|
6432 reset_buffer_changes (void)
|
|
6433 {
|
|
6434 Lisp_Object frmcons, devcons, concons;
|
|
6435
|
|
6436 FRAME_LOOP_NO_BREAK (frmcons, devcons, concons)
|
|
6437 {
|
|
6438 struct frame *f = XFRAME (XCAR (frmcons));
|
|
6439
|
|
6440 if (FRAME_REPAINT_P (f))
|
|
6441 map_windows (f, reset_buffer_changes_mapfun, 0);
|
|
6442 }
|
|
6443 }
|
|
6444
|
|
6445 /* Ensure that all windows underneath the given window in the window
|
|
6446 hierarchy are correctly displayed. */
|
|
6447
|
|
6448 static void
|
|
6449 redisplay_windows (Lisp_Object window, int skip_selected)
|
|
6450 {
|
|
6451 for (; !NILP (window) ; window = XWINDOW (window)->next)
|
|
6452 {
|
|
6453 redisplay_window (window, skip_selected);
|
|
6454 }
|
|
6455 }
|
|
6456
|
|
6457 static int
|
|
6458 call_redisplay_end_triggers (struct window *w, void *closure)
|
|
6459 {
|
665
|
6460 Charbpos lrpos = w->last_redisplay_pos;
|
428
|
6461 w->last_redisplay_pos = 0;
|
|
6462 if (!NILP (w->buffer)
|
|
6463 && !NILP (w->redisplay_end_trigger)
|
|
6464 && lrpos > 0)
|
|
6465 {
|
665
|
6466 Charbpos pos;
|
428
|
6467
|
|
6468 if (MARKERP (w->redisplay_end_trigger)
|
|
6469 && XMARKER (w->redisplay_end_trigger)->buffer != 0)
|
|
6470 pos = marker_position (w->redisplay_end_trigger);
|
|
6471 else if (INTP (w->redisplay_end_trigger))
|
|
6472 pos = XINT (w->redisplay_end_trigger);
|
|
6473 else
|
|
6474 {
|
|
6475 w->redisplay_end_trigger = Qnil;
|
|
6476 return 0;
|
|
6477 }
|
|
6478
|
|
6479 if (lrpos >= pos)
|
|
6480 {
|
793
|
6481 Lisp_Object window = wrap_window (w);
|
|
6482
|
428
|
6483 va_run_hook_with_args_in_buffer (XBUFFER (w->buffer),
|
|
6484 Qredisplay_end_trigger_functions,
|
|
6485 2, window,
|
|
6486 w->redisplay_end_trigger);
|
|
6487 w->redisplay_end_trigger = Qnil;
|
|
6488 }
|
|
6489 }
|
|
6490
|
|
6491 return 0;
|
|
6492 }
|
|
6493
|
|
6494 /* Ensure that all windows on the given frame are correctly displayed. */
|
|
6495
|
442
|
6496 int
|
428
|
6497 redisplay_frame (struct frame *f, int preemption_check)
|
|
6498 {
|
|
6499 struct device *d = XDEVICE (f->device);
|
|
6500
|
545
|
6501 if (preemption_check
|
|
6502 && !DEVICE_IMPL_FLAG (d, XDEVIMPF_DONT_PREEMPT_REDISPLAY))
|
428
|
6503 {
|
|
6504 /* The preemption check itself takes a lot of time,
|
|
6505 so normally don't do it here. We do it if called
|
|
6506 from Lisp, though (`redisplay-frame'). */
|
|
6507 int preempted;
|
|
6508
|
|
6509 REDISPLAY_PREEMPTION_CHECK;
|
|
6510 if (preempted)
|
|
6511 return 1;
|
|
6512 }
|
|
6513
|
442
|
6514 if (!internal_equal (f->old_buffer_alist, f->buffer_alist, 0))
|
|
6515 {
|
|
6516 Lisp_Object frame;
|
|
6517
|
|
6518 f->old_buffer_alist = Freplace_list (f->old_buffer_alist,
|
|
6519 f->buffer_alist);
|
793
|
6520 frame = wrap_frame (f);
|
442
|
6521 va_run_hook_with_args (Qbuffer_list_changed_hook, 1, frame);
|
|
6522 }
|
|
6523
|
428
|
6524 /* Before we put a hold on frame size changes, attempt to process
|
|
6525 any which are already pending. */
|
|
6526 if (f->size_change_pending)
|
|
6527 change_frame_size (f, f->new_height, f->new_width, 0);
|
|
6528
|
|
6529 /* If frame size might need to be changed, due to changed size
|
|
6530 of toolbars, scrollbars etc, change it now */
|
|
6531 if (f->size_slipped)
|
|
6532 {
|
|
6533 adjust_frame_size (f);
|
|
6534 assert (!f->size_slipped);
|
|
6535 }
|
|
6536
|
|
6537 /* The menubar, toolbar, and icon updates must be done before
|
|
6538 hold_frame_size_changes is called and we are officially
|
|
6539 'in_display'. They may eval lisp code which may call Fsignal.
|
|
6540 If in_display is set Fsignal will abort. */
|
|
6541
|
|
6542 #ifdef HAVE_MENUBARS
|
|
6543 /* Update the menubar. It is done first since it could change
|
|
6544 the menubar's visibility. This way we avoid having flashing
|
|
6545 caused by an Expose event generated by the visibility change
|
|
6546 being handled. */
|
|
6547 update_frame_menubars (f);
|
|
6548 #endif /* HAVE_MENUBARS */
|
|
6549 #ifdef HAVE_TOOLBARS
|
|
6550 /* Update the toolbars. */
|
|
6551 update_frame_toolbars (f);
|
|
6552 #endif /* HAVE_TOOLBARS */
|
442
|
6553 /* Gutter update proper has to be done inside display when no frame
|
|
6554 size changes can occur, thus we separately update the gutter
|
|
6555 geometry here if it needs it. */
|
|
6556 update_frame_gutter_geometry (f);
|
428
|
6557
|
|
6558 /* If we clear the frame we have to force its contents to be redrawn. */
|
|
6559 if (f->clear)
|
|
6560 f->frame_changed = 1;
|
|
6561
|
442
|
6562 /* Invalidate the subwindow caches. We use subwindows_changed here
|
|
6563 to cause subwindows to get instantiated. This is because
|
428
|
6564 subwindows_state_changed is less strict - dealing with things
|
|
6565 like the clicked state of button. We have to do this before
|
|
6566 redisplaying the gutters as subwindows get unmapped in the
|
|
6567 process.*/
|
442
|
6568 if (f->frame_changed)
|
|
6569 reset_frame_subwindow_instance_cache (f);
|
|
6570
|
|
6571 if (f->frame_changed || f->subwindows_changed)
|
|
6572 {
|
428
|
6573 /* we have to do this so the gutter gets regenerated. */
|
|
6574 reset_gutter_display_lines (f);
|
|
6575 }
|
|
6576
|
|
6577 hold_frame_size_changes ();
|
|
6578
|
|
6579 /* ----------------- BEGIN CRITICAL REDISPLAY SECTION ---------------- */
|
|
6580 /* Within this section, we are defenseless and assume that the
|
|
6581 following cannot happen:
|
|
6582
|
|
6583 1) garbage collection
|
|
6584 2) Lisp code evaluation
|
|
6585 3) frame size changes
|
|
6586
|
|
6587 We ensure (3) by calling hold_frame_size_changes(), which
|
|
6588 will cause any pending frame size changes to get put on hold
|
|
6589 till after the end of the critical section. (1) follows
|
|
6590 automatically if (2) is met. #### Unfortunately, there are
|
|
6591 some places where Lisp code can be called within this section.
|
|
6592 We need to remove them.
|
|
6593
|
|
6594 If Fsignal() is called during this critical section, we
|
|
6595 will abort().
|
|
6596
|
|
6597 If garbage collection is called during this critical section,
|
|
6598 we simply return. #### We should abort instead.
|
|
6599
|
|
6600 #### If a frame-size change does occur we should probably
|
|
6601 actually be preempting redisplay. */
|
|
6602
|
442
|
6603 MAYBE_DEVMETH (d, frame_output_begin, (f));
|
|
6604
|
|
6605 /* We can now update the gutters, safe in the knowledge that our
|
|
6606 efforts won't get undone. */
|
|
6607
|
|
6608 /* This can call lisp, but redisplay is protected by binding
|
|
6609 inhibit_quit. More importantly the code involving display lines
|
|
6610 *assumes* that GC will not happen and so does not GCPRO
|
|
6611 anything. Since we use this code the whole time with the gutters
|
|
6612 we cannot allow GC to happen when manipulating the gutters. */
|
|
6613 update_frame_gutters (f);
|
|
6614
|
428
|
6615 /* Erase the frame before outputting its contents. */
|
|
6616 if (f->clear)
|
|
6617 {
|
442
|
6618 MAYBE_DEVMETH (d, clear_frame, (f));
|
428
|
6619 }
|
|
6620
|
|
6621 /* Do the selected window first. */
|
|
6622 redisplay_window (FRAME_SELECTED_WINDOW (f), 0);
|
|
6623
|
|
6624 /* Then do the rest. */
|
|
6625 redisplay_windows (f->root_window, 1);
|
|
6626
|
442
|
6627 MAYBE_DEVMETH (d, frame_output_end, (f));
|
428
|
6628
|
|
6629 update_frame_title (f);
|
|
6630
|
|
6631 CLASS_RESET_CHANGED_FLAGS (f);
|
|
6632 f->window_face_cache_reset = 0;
|
|
6633 f->echo_area_garbaged = 0;
|
|
6634 f->clear = 0;
|
|
6635
|
|
6636 if (!f->size_change_pending)
|
|
6637 f->size_changed = 0;
|
|
6638
|
|
6639 /* ----------------- END CRITICAL REDISPLAY SECTION ---------------- */
|
|
6640
|
|
6641 /* Allow frame size changes to occur again.
|
|
6642
|
|
6643 #### what happens if changes to other frames happen? */
|
|
6644 unhold_one_frame_size_changes (f);
|
|
6645
|
|
6646 map_windows (f, call_redisplay_end_triggers, 0);
|
|
6647 return 0;
|
|
6648 }
|
|
6649
|
440
|
6650 /* Ensure that all frames on the given device are correctly displayed.
|
|
6651 If AUTOMATIC is non-zero, and the device implementation indicates
|
|
6652 no automatic redisplay, as printers do, then the device is not
|
|
6653 redisplayed. AUTOMATIC is set to zero when called from lisp
|
|
6654 functions (redraw-device) and (redisplay-device), and to non-zero
|
|
6655 when called from "lazy" redisplay();
|
|
6656 */
|
428
|
6657
|
|
6658 static int
|
440
|
6659 redisplay_device (struct device *d, int automatic)
|
428
|
6660 {
|
|
6661 Lisp_Object frame, frmcons;
|
|
6662 int size_change_failed = 0;
|
|
6663 struct frame *f;
|
|
6664
|
545
|
6665 if (automatic && DEVICE_IMPL_FLAG (d, XDEVIMPF_NO_AUTO_REDISPLAY))
|
440
|
6666 return 0;
|
|
6667
|
428
|
6668 if (DEVICE_STREAM_P (d)) /* nothing to do */
|
|
6669 return 0;
|
|
6670
|
|
6671 /* It is possible that redisplay has been called before the
|
545
|
6672 device is fully initialized, or that the console implementation
|
|
6673 allows frameless devices. If so then continue with the next
|
|
6674 device. */
|
428
|
6675 if (NILP (DEVICE_SELECTED_FRAME (d)))
|
|
6676 return 0;
|
|
6677
|
545
|
6678 if (!DEVICE_IMPL_FLAG (d, XDEVIMPF_DONT_PREEMPT_REDISPLAY))
|
|
6679 {
|
|
6680 int preempted;
|
|
6681 REDISPLAY_PREEMPTION_CHECK;
|
|
6682 if (preempted)
|
|
6683 return 1;
|
|
6684 }
|
428
|
6685
|
|
6686 /* Always do the selected frame first. */
|
|
6687 frame = DEVICE_SELECTED_FRAME (d);
|
|
6688
|
|
6689 f = XFRAME (frame);
|
|
6690
|
|
6691 if (f->icon_changed || f->windows_changed)
|
|
6692 update_frame_icon (f);
|
|
6693
|
|
6694 if (FRAME_REPAINT_P (f))
|
|
6695 {
|
|
6696 if (CLASS_REDISPLAY_FLAGS_CHANGEDP(f))
|
|
6697 {
|
588
|
6698 int preempted = redisplay_frame (f, 1);
|
545
|
6699 if (preempted)
|
|
6700 return 1;
|
|
6701 }
|
428
|
6702
|
|
6703 /* If the frame redisplay did not get preempted, then this flag
|
|
6704 should have gotten set to 0. It might be possible for that
|
|
6705 not to happen if a size change event were to occur at an odd
|
|
6706 time. To make sure we don't miss anything we simply don't
|
|
6707 reset the top level flags until the condition ends up being
|
|
6708 in the right state. */
|
|
6709 if (f->size_changed)
|
|
6710 size_change_failed = 1;
|
|
6711 }
|
|
6712
|
|
6713 DEVICE_FRAME_LOOP (frmcons, d)
|
|
6714 {
|
|
6715 f = XFRAME (XCAR (frmcons));
|
|
6716
|
|
6717 if (f == XFRAME (DEVICE_SELECTED_FRAME (d)))
|
|
6718 continue;
|
|
6719
|
|
6720 if (f->icon_changed || f->windows_changed)
|
|
6721 update_frame_icon (f);
|
|
6722
|
|
6723 if (FRAME_REPAINT_P (f))
|
|
6724 {
|
430
|
6725 if (CLASS_REDISPLAY_FLAGS_CHANGEDP (f))
|
428
|
6726 {
|
588
|
6727 int preempted = redisplay_frame (f, 1);
|
545
|
6728 if (preempted)
|
|
6729 return 1;
|
428
|
6730 }
|
|
6731
|
|
6732 if (f->size_change_pending)
|
|
6733 size_change_failed = 1;
|
|
6734 }
|
|
6735 }
|
|
6736
|
|
6737 /* If we get here then we redisplayed all of our frames without
|
|
6738 getting preempted so mark ourselves as clean. */
|
|
6739 CLASS_RESET_CHANGED_FLAGS (d);
|
|
6740
|
|
6741 if (!size_change_failed)
|
|
6742 d->size_changed = 0;
|
|
6743
|
|
6744 return 0;
|
|
6745 }
|
|
6746
|
|
6747 static Lisp_Object
|
|
6748 restore_profiling_redisplay_flag (Lisp_Object val)
|
|
6749 {
|
|
6750 profiling_redisplay_flag = XINT (val);
|
|
6751 return Qnil;
|
|
6752 }
|
|
6753
|
|
6754 /* Ensure that all windows on all frames on all devices are displaying
|
|
6755 the current contents of their respective buffers. */
|
|
6756
|
|
6757 static void
|
|
6758 redisplay_without_hooks (void)
|
|
6759 {
|
|
6760 Lisp_Object devcons, concons;
|
|
6761 int size_change_failed = 0;
|
|
6762 int count = specpdl_depth ();
|
|
6763
|
|
6764 if (profiling_active)
|
|
6765 {
|
|
6766 record_unwind_protect (restore_profiling_redisplay_flag,
|
|
6767 make_int (profiling_redisplay_flag));
|
|
6768 profiling_redisplay_flag = 1;
|
|
6769 }
|
|
6770
|
|
6771 if (asynch_device_change_pending)
|
|
6772 handle_asynch_device_change ();
|
|
6773
|
|
6774 if (!GLOBAL_REDISPLAY_FLAGS_CHANGEDP &&
|
430
|
6775 !disable_preemption && preemption_count < max_preempts)
|
428
|
6776 goto done;
|
|
6777
|
|
6778 DEVICE_LOOP_NO_BREAK (devcons, concons)
|
|
6779 {
|
|
6780 struct device *d = XDEVICE (XCAR (devcons));
|
|
6781 int preempted;
|
|
6782
|
430
|
6783 if (CLASS_REDISPLAY_FLAGS_CHANGEDP (d))
|
428
|
6784 {
|
440
|
6785 preempted = redisplay_device (d, 1);
|
428
|
6786
|
|
6787 if (preempted)
|
|
6788 {
|
|
6789 preemption_count++;
|
|
6790 RESET_CHANGED_SET_FLAGS;
|
|
6791 goto done;
|
|
6792 }
|
|
6793
|
|
6794 /* See comment in redisplay_device. */
|
|
6795 if (d->size_changed)
|
|
6796 size_change_failed = 1;
|
|
6797 }
|
|
6798 }
|
|
6799 preemption_count = 0;
|
|
6800
|
|
6801 /* Mark redisplay as accurate */
|
|
6802 GLOBAL_RESET_CHANGED_FLAGS;
|
|
6803 RESET_CHANGED_SET_FLAGS;
|
|
6804
|
|
6805 if (faces_changed)
|
|
6806 {
|
|
6807 mark_all_faces_as_clean ();
|
|
6808 faces_changed = 0;
|
|
6809 }
|
|
6810
|
|
6811 if (!size_change_failed)
|
|
6812 size_changed = 0;
|
|
6813
|
|
6814 reset_buffer_changes ();
|
|
6815
|
|
6816 done:
|
771
|
6817 unbind_to (count);
|
800
|
6818 #ifdef ERROR_CHECK_DISPLAY
|
|
6819 sledgehammer_check_redisplay_structs ();
|
|
6820 #endif /* ERROR_CHECK_DISPLAY */
|
428
|
6821 }
|
|
6822
|
|
6823 void
|
|
6824 redisplay (void)
|
|
6825 {
|
|
6826 if (last_display_warning_tick != display_warning_tick &&
|
|
6827 !inhibit_warning_display)
|
|
6828 {
|
|
6829 /* If an error occurs during this function, oh well.
|
|
6830 If we report another warning, we could get stuck in an
|
|
6831 infinite loop reporting warnings. */
|
|
6832 call0_trapping_errors (0, Qdisplay_warning_buffer);
|
|
6833 last_display_warning_tick = display_warning_tick;
|
|
6834 }
|
|
6835 /* The run_hook_trapping_errors functions are smart enough not
|
|
6836 to do any evalling if the hook function is empty, so there
|
|
6837 should not be any significant time loss. All places in the
|
|
6838 C code that call redisplay() are prepared to handle GCing,
|
|
6839 so we should be OK. */
|
|
6840 #ifndef INHIBIT_REDISPLAY_HOOKS
|
|
6841 run_hook_trapping_errors ("Error in pre-redisplay-hook",
|
|
6842 Qpre_redisplay_hook);
|
|
6843 #endif /* INHIBIT_REDISPLAY_HOOKS */
|
|
6844
|
|
6845 redisplay_without_hooks ();
|
|
6846
|
|
6847 #ifndef INHIBIT_REDISPLAY_HOOKS
|
|
6848 run_hook_trapping_errors ("Error in post-redisplay-hook",
|
|
6849 Qpost_redisplay_hook);
|
|
6850 #endif /* INHIBIT_REDISPLAY_HOOKS */
|
|
6851 }
|
|
6852
|
|
6853
|
|
6854 /* Efficiently determine the window line number, and return a pointer
|
|
6855 to its printed representation. Do this regardless of whether
|
|
6856 line-number-mode is on. The first line in the buffer is counted as
|
|
6857 1. If narrowing is in effect, the lines are counted from the
|
|
6858 beginning of the visible portion of the buffer. */
|
|
6859 static char *
|
|
6860 window_line_number (struct window *w, int type)
|
|
6861 {
|
|
6862 struct device *d = XDEVICE (XFRAME (w->frame)->device);
|
|
6863 struct buffer *b = XBUFFER (w->buffer);
|
|
6864 /* Be careful in the order of these tests. The first clause will
|
|
6865 fail if DEVICE_SELECTED_FRAME == Qnil (since w->frame cannot be).
|
|
6866 This can occur when the frame title is computed really early */
|
665
|
6867 Charbpos pos =
|
428
|
6868 ((EQ(DEVICE_SELECTED_FRAME(d), w->frame) &&
|
|
6869 (w == XWINDOW (FRAME_SELECTED_WINDOW (device_selected_frame(d)))) &&
|
|
6870 EQ(DEVICE_CONSOLE(d), Vselected_console) &&
|
|
6871 XDEVICE(CONSOLE_SELECTED_DEVICE(XCONSOLE(DEVICE_CONSOLE(d)))) == d )
|
|
6872 ? BUF_PT (b)
|
|
6873 : marker_position (w->pointm[type]));
|
|
6874 EMACS_INT line;
|
|
6875
|
|
6876 line = buffer_line_number (b, pos, 1);
|
|
6877
|
603
|
6878 {
|
|
6879 static char window_line_number_buf[DECIMAL_PRINT_SIZE (long)];
|
|
6880
|
|
6881 long_to_string (window_line_number_buf, line + 1);
|
|
6882
|
|
6883 return window_line_number_buf;
|
|
6884 }
|
428
|
6885 }
|
|
6886
|
|
6887
|
|
6888 /* Given a character representing an object in a modeline
|
|
6889 specification, return a string (stored into the global array
|
665
|
6890 `mode_spec_intbyte_string') with the information that object
|
428
|
6891 represents.
|
|
6892
|
|
6893 This function is largely unchanged from previous versions of the
|
|
6894 redisplay engine.
|
|
6895
|
|
6896 Warning! This code is also used for frame titles and can be called
|
|
6897 very early in the device/frame update process! JV
|
|
6898 */
|
|
6899
|
|
6900 static void
|
|
6901 decode_mode_spec (struct window *w, Emchar spec, int type)
|
|
6902 {
|
|
6903 Lisp_Object obj = Qnil;
|
442
|
6904 const char *str = NULL;
|
428
|
6905 struct buffer *b = XBUFFER (w->buffer);
|
|
6906
|
665
|
6907 Dynarr_reset (mode_spec_intbyte_string);
|
428
|
6908
|
|
6909 switch (spec)
|
|
6910 {
|
|
6911 /* print buffer name */
|
|
6912 case 'b':
|
|
6913 obj = b->name;
|
|
6914 break;
|
|
6915
|
|
6916 /* print visited file name */
|
|
6917 case 'f':
|
|
6918 obj = b->filename;
|
|
6919 break;
|
|
6920
|
|
6921 /* print the current column */
|
|
6922 case 'c':
|
|
6923 {
|
665
|
6924 Charbpos pt = (w == XWINDOW (Fselected_window (Qnil)))
|
428
|
6925 ? BUF_PT (b)
|
|
6926 : marker_position (w->pointm[type]);
|
|
6927 int col = column_at_point (b, pt, 1) + !!column_number_start_at_one;
|
603
|
6928 char buf[DECIMAL_PRINT_SIZE (long)];
|
428
|
6929
|
|
6930 long_to_string (buf, col);
|
|
6931
|
665
|
6932 Dynarr_add_many (mode_spec_intbyte_string,
|
|
6933 (const Intbyte *) buf, strlen (buf));
|
428
|
6934
|
|
6935 goto decode_mode_spec_done;
|
|
6936 }
|
|
6937 /* print the file coding system */
|
|
6938 case 'C':
|
|
6939 {
|
|
6940 Lisp_Object codesys = b->buffer_file_coding_system;
|
|
6941 /* Be very careful here not to get an error. */
|
|
6942 if (NILP (codesys) || SYMBOLP (codesys) || CODING_SYSTEMP (codesys))
|
|
6943 {
|
771
|
6944 codesys = find_coding_system_for_text_file (codesys, 0);
|
428
|
6945 if (CODING_SYSTEMP (codesys))
|
|
6946 obj = XCODING_SYSTEM_MNEMONIC (codesys);
|
|
6947 }
|
|
6948 }
|
|
6949 break;
|
|
6950
|
|
6951 /* print the current line number */
|
|
6952 case 'l':
|
|
6953 str = window_line_number (w, type);
|
|
6954 break;
|
|
6955
|
|
6956 /* print value of mode-name (obsolete) */
|
|
6957 case 'm':
|
|
6958 obj = b->mode_name;
|
|
6959 break;
|
|
6960
|
|
6961 /* print hyphen and frame number, if != 1 */
|
|
6962 case 'N':
|
|
6963 #ifdef HAVE_TTY
|
|
6964 {
|
|
6965 struct frame *f = XFRAME (w->frame);
|
|
6966 if (FRAME_TTY_P (f) && f->order_count > 1 && f->order_count <= 99999999)
|
|
6967 {
|
|
6968 /* Naughty, naughty */
|
|
6969 char * writable_str = alloca_array (char, 10);
|
|
6970 sprintf (writable_str, "-%d", f->order_count);
|
|
6971 str = writable_str;
|
|
6972 }
|
|
6973 }
|
|
6974 #endif /* HAVE_TTY */
|
|
6975 break;
|
|
6976
|
|
6977 /* print Narrow if appropriate */
|
|
6978 case 'n':
|
|
6979 if (BUF_BEGV (b) > BUF_BEG (b)
|
|
6980 || BUF_ZV (b) < BUF_Z (b))
|
|
6981 str = " Narrow";
|
|
6982 break;
|
|
6983
|
|
6984 /* print %, * or hyphen, if buffer is read-only, modified or neither */
|
|
6985 case '*':
|
|
6986 str = (!NILP (b->read_only)
|
|
6987 ? "%"
|
|
6988 : ((BUF_MODIFF (b) > BUF_SAVE_MODIFF (b))
|
|
6989 ? "*"
|
|
6990 : "-"));
|
|
6991 break;
|
|
6992
|
|
6993 /* print * or hyphen -- XEmacs change to allow a buffer to be
|
|
6994 read-only but still indicate whether it is modified. */
|
|
6995 case '+':
|
|
6996 str = ((BUF_MODIFF (b) > BUF_SAVE_MODIFF (b))
|
|
6997 ? "*"
|
|
6998 : (!NILP (b->read_only)
|
|
6999 ? "%"
|
|
7000 : "-"));
|
|
7001 break;
|
|
7002
|
|
7003 /* #### defined in 19.29 decode_mode_spec, but not in
|
|
7004 modeline-format doc string. */
|
|
7005 /* This differs from %* in that it ignores read-only-ness. */
|
|
7006 case '&':
|
|
7007 str = ((BUF_MODIFF (b) > BUF_SAVE_MODIFF (b))
|
|
7008 ? "*"
|
|
7009 : "-");
|
|
7010 break;
|
|
7011
|
|
7012 /* print process status */
|
|
7013 case 's':
|
|
7014 obj = Fget_buffer_process (w->buffer);
|
|
7015 if (NILP (obj))
|
|
7016 str = GETTEXT ("no process");
|
|
7017 else
|
|
7018 obj = Fsymbol_name (Fprocess_status (obj));
|
|
7019 break;
|
|
7020
|
|
7021 /* Print name of selected frame. */
|
|
7022 case 'S':
|
|
7023 obj = XFRAME (w->frame)->name;
|
|
7024 break;
|
|
7025
|
|
7026 /* indicate TEXT or BINARY */
|
|
7027 case 't':
|
|
7028 /* #### NT does not use this any more. Now what? */
|
|
7029 str = "T";
|
|
7030 break;
|
|
7031
|
|
7032 /* print percent of buffer above top of window, or Top, Bot or All */
|
|
7033 case 'p':
|
|
7034 {
|
665
|
7035 Charbpos pos = marker_position (w->start[type]);
|
428
|
7036
|
|
7037 /* This had better be while the desired lines are being done. */
|
|
7038 if (w->window_end_pos[type] <= BUF_Z (b) - BUF_ZV (b))
|
|
7039 {
|
|
7040 if (pos <= BUF_BEGV (b))
|
|
7041 str = "All";
|
|
7042 else
|
|
7043 str = "Bottom";
|
|
7044 }
|
|
7045 else if (pos <= BUF_BEGV (b))
|
|
7046 str = "Top";
|
|
7047 else
|
|
7048 {
|
|
7049 /* This hard limit is ok since the string it will hold has a
|
|
7050 fixed maximum length of 3. But just to be safe... */
|
|
7051 char buf[10];
|
|
7052 Charcount chars = pos - BUF_BEGV (b);
|
|
7053 Charcount total = BUF_ZV (b) - BUF_BEGV (b);
|
|
7054
|
|
7055 /* Avoid overflow on big buffers */
|
|
7056 int percent = total > LONG_MAX/200 ?
|
|
7057 (chars + total/200) / (total / 100) :
|
|
7058 (chars * 100 + total/2) / total;
|
|
7059
|
|
7060 /* We can't normally display a 3-digit number, so get us a
|
|
7061 2-digit number that is close. */
|
|
7062 if (percent == 100)
|
|
7063 percent = 99;
|
|
7064
|
|
7065 sprintf (buf, "%d%%", percent);
|
665
|
7066 Dynarr_add_many (mode_spec_intbyte_string, (Intbyte *) buf,
|
428
|
7067 strlen (buf));
|
|
7068
|
|
7069 goto decode_mode_spec_done;
|
|
7070 }
|
|
7071 break;
|
|
7072 }
|
|
7073
|
|
7074 /* print percent of buffer above bottom of window, perhaps plus
|
|
7075 Top, or print Bottom or All */
|
|
7076 case 'P':
|
|
7077 {
|
665
|
7078 Charbpos toppos = marker_position (w->start[type]);
|
|
7079 Charbpos botpos = BUF_Z (b) - w->window_end_pos[type];
|
428
|
7080
|
|
7081 /* botpos is only accurate as of the last redisplay, so we can
|
|
7082 only treat it as a hint. In particular, after erase-buffer,
|
|
7083 botpos may be negative. */
|
|
7084 if (botpos < toppos)
|
|
7085 botpos = toppos;
|
|
7086
|
|
7087 if (botpos >= BUF_ZV (b))
|
|
7088 {
|
|
7089 if (toppos <= BUF_BEGV (b))
|
|
7090 str = "All";
|
|
7091 else
|
|
7092 str = "Bottom";
|
|
7093 }
|
|
7094 else
|
|
7095 {
|
|
7096 /* This hard limit is ok since the string it will hold has a
|
|
7097 fixed maximum length of around 6. But just to be safe... */
|
|
7098 char buf[10];
|
|
7099 Charcount chars = botpos - BUF_BEGV (b);
|
|
7100 Charcount total = BUF_ZV (b) - BUF_BEGV (b);
|
|
7101
|
|
7102 /* Avoid overflow on big buffers */
|
|
7103 int percent = total > LONG_MAX/200 ?
|
|
7104 (chars + total/200) / (total / 100) :
|
|
7105 (chars * 100 + total/2) / max (total, 1);
|
|
7106
|
|
7107 /* We can't normally display a 3-digit number, so get us a
|
|
7108 2-digit number that is close. */
|
|
7109 if (percent == 100)
|
|
7110 percent = 99;
|
|
7111
|
|
7112 if (toppos <= BUF_BEGV (b))
|
|
7113 sprintf (buf, "Top%d%%", percent);
|
|
7114 else
|
|
7115 sprintf (buf, "%d%%", percent);
|
|
7116
|
665
|
7117 Dynarr_add_many (mode_spec_intbyte_string, (Intbyte *) buf,
|
428
|
7118 strlen (buf));
|
|
7119
|
|
7120 goto decode_mode_spec_done;
|
|
7121 }
|
|
7122 break;
|
|
7123 }
|
|
7124
|
|
7125 /* print % */
|
|
7126 case '%':
|
|
7127 str = "%";
|
|
7128 break;
|
|
7129
|
|
7130 /* print one [ for each recursive editing level. */
|
|
7131 case '[':
|
|
7132 {
|
|
7133 int i;
|
|
7134
|
|
7135 if (command_loop_level > 5)
|
|
7136 {
|
|
7137 str = "[[[... ";
|
|
7138 break;
|
|
7139 }
|
|
7140
|
|
7141 for (i = 0; i < command_loop_level; i++)
|
665
|
7142 Dynarr_add (mode_spec_intbyte_string, '[');
|
428
|
7143
|
|
7144 goto decode_mode_spec_done;
|
|
7145 }
|
|
7146
|
|
7147 /* print one ] for each recursive editing level. */
|
|
7148 case ']':
|
|
7149 {
|
|
7150 int i;
|
|
7151
|
|
7152 if (command_loop_level > 5)
|
|
7153 {
|
|
7154 str = "...]]]";
|
|
7155 break;
|
|
7156 }
|
|
7157
|
|
7158 for (i = 0; i < command_loop_level; i++)
|
665
|
7159 Dynarr_add (mode_spec_intbyte_string, ']');
|
428
|
7160
|
|
7161 goto decode_mode_spec_done;
|
|
7162 }
|
|
7163
|
|
7164 /* print infinitely many dashes -- handle at top level now */
|
|
7165 case '-':
|
|
7166 break;
|
|
7167
|
|
7168 }
|
|
7169
|
|
7170 if (STRINGP (obj))
|
665
|
7171 Dynarr_add_many (mode_spec_intbyte_string,
|
428
|
7172 XSTRING_DATA (obj),
|
|
7173 XSTRING_LENGTH (obj));
|
|
7174 else if (str)
|
665
|
7175 Dynarr_add_many (mode_spec_intbyte_string, (Intbyte *) str, strlen (str));
|
428
|
7176
|
|
7177 decode_mode_spec_done:
|
665
|
7178 Dynarr_add (mode_spec_intbyte_string, '\0');
|
428
|
7179 }
|
|
7180
|
|
7181 /* Given a display line, free all of its data structures. */
|
|
7182
|
|
7183 static void
|
|
7184 free_display_line (struct display_line *dl)
|
|
7185 {
|
|
7186 int block;
|
|
7187
|
|
7188 if (dl->display_blocks)
|
|
7189 {
|
|
7190 for (block = 0; block < Dynarr_largest (dl->display_blocks); block++)
|
|
7191 {
|
|
7192 struct display_block *db = Dynarr_atp (dl->display_blocks, block);
|
|
7193
|
|
7194 Dynarr_free (db->runes);
|
|
7195 }
|
|
7196
|
|
7197 Dynarr_free (dl->display_blocks);
|
|
7198 dl->display_blocks = NULL;
|
|
7199 }
|
|
7200
|
|
7201 if (dl->left_glyphs)
|
|
7202 {
|
|
7203 Dynarr_free (dl->left_glyphs);
|
|
7204 dl->left_glyphs = NULL;
|
|
7205 }
|
|
7206
|
|
7207 if (dl->right_glyphs)
|
|
7208 {
|
|
7209 Dynarr_free (dl->right_glyphs);
|
|
7210 dl->right_glyphs = NULL;
|
|
7211 }
|
|
7212 }
|
|
7213
|
|
7214
|
|
7215 /* Given an array of display lines, free them and all data structures
|
|
7216 contained within them. */
|
|
7217
|
|
7218 void
|
|
7219 free_display_lines (display_line_dynarr *dla)
|
|
7220 {
|
|
7221 int line;
|
|
7222
|
|
7223 for (line = 0; line < Dynarr_largest (dla); line++)
|
|
7224 {
|
|
7225 free_display_line (Dynarr_atp (dla, line));
|
|
7226 }
|
|
7227
|
|
7228 Dynarr_free (dla);
|
|
7229 }
|
|
7230
|
|
7231 /* Call internal free routine for each set of display lines. */
|
|
7232
|
|
7233 void
|
|
7234 free_display_structs (struct window_mirror *mir)
|
|
7235 {
|
|
7236 if (mir->current_display_lines)
|
|
7237 {
|
|
7238 free_display_lines (mir->current_display_lines);
|
|
7239 mir->current_display_lines = 0;
|
|
7240 }
|
|
7241
|
|
7242 if (mir->desired_display_lines)
|
|
7243 {
|
|
7244 free_display_lines (mir->desired_display_lines);
|
|
7245 mir->desired_display_lines = 0;
|
|
7246 }
|
|
7247 }
|
|
7248
|
|
7249
|
|
7250 static void
|
|
7251 mark_glyph_block_dynarr (glyph_block_dynarr *gba)
|
|
7252 {
|
|
7253 if (gba)
|
|
7254 {
|
|
7255 glyph_block *gb = Dynarr_atp (gba, 0);
|
|
7256 glyph_block *gb_last = Dynarr_atp (gba, Dynarr_length (gba));
|
|
7257
|
|
7258 for (; gb < gb_last; gb++)
|
|
7259 {
|
|
7260 if (!NILP (gb->glyph))
|
|
7261 mark_object (gb->glyph);
|
|
7262 if (!NILP (gb->extent))
|
|
7263 mark_object (gb->extent);
|
|
7264 }
|
|
7265 }
|
|
7266 }
|
|
7267
|
442
|
7268 /* See the comment in image_instantiate_cache_result as to why marking
|
|
7269 the glyph will also mark the image_instance. */
|
|
7270 void
|
428
|
7271 mark_redisplay_structs (display_line_dynarr *dla)
|
|
7272 {
|
|
7273 display_line *dl = Dynarr_atp (dla, 0);
|
|
7274 display_line *dl_last = Dynarr_atp (dla, Dynarr_length (dla));
|
|
7275
|
|
7276 for (; dl < dl_last; dl++)
|
|
7277 {
|
|
7278 display_block_dynarr *dba = dl->display_blocks;
|
|
7279 display_block *db = Dynarr_atp (dba, 0);
|
|
7280 display_block *db_last = Dynarr_atp (dba, Dynarr_length (dba));
|
|
7281
|
|
7282 for (; db < db_last; db++)
|
|
7283 {
|
|
7284 rune_dynarr *ra = db->runes;
|
|
7285 rune *r = Dynarr_atp (ra, 0);
|
|
7286 rune *r_last = Dynarr_atp (ra, Dynarr_length (ra));
|
|
7287
|
|
7288 for (; r < r_last; r++)
|
|
7289 {
|
|
7290 if (r->type == RUNE_DGLYPH)
|
|
7291 {
|
|
7292 if (!NILP (r->object.dglyph.glyph))
|
|
7293 mark_object (r->object.dglyph.glyph);
|
|
7294 if (!NILP (r->object.dglyph.extent))
|
|
7295 mark_object (r->object.dglyph.extent);
|
|
7296 }
|
|
7297 }
|
|
7298 }
|
|
7299
|
|
7300 mark_glyph_block_dynarr (dl->left_glyphs);
|
|
7301 mark_glyph_block_dynarr (dl->right_glyphs);
|
|
7302 }
|
|
7303 }
|
|
7304
|
|
7305
|
|
7306 /*****************************************************************************
|
|
7307 Line Start Cache Description and Rationale
|
|
7308
|
|
7309 The traditional scrolling code in Emacs breaks in a variable height world.
|
|
7310 It depends on the key assumption that the number of lines that can be
|
|
7311 displayed at any given time is fixed. This led to a complete separation
|
|
7312 of the scrolling code from the redisplay code. In order to fully support
|
|
7313 variable height lines, the scrolling code must actually be tightly
|
|
7314 integrated with redisplay. Only redisplay can determine how many lines
|
|
7315 will be displayed on a screen for any given starting point.
|
|
7316
|
|
7317 What is ideally wanted is a complete list of the starting buffer position
|
|
7318 for every possible display line of a buffer along with the height of that
|
|
7319 display line. Maintaining such a full list would be very expensive. We
|
|
7320 settle for having it include information for all areas which we happen to
|
|
7321 generate anyhow (i.e. the region currently being displayed) and for those
|
|
7322 areas we need to work with.
|
|
7323
|
|
7324 In order to ensure that the cache accurately represents what redisplay
|
|
7325 would actually show, it is necessary to invalidate it in many situations.
|
|
7326 If the buffer changes, the starting positions may no longer be correct.
|
|
7327 If a face or an extent has changed then the line heights may have altered.
|
|
7328 These events happen frequently enough that the cache can end up being
|
|
7329 constantly disabled. With this potentially constant invalidation when is
|
|
7330 the cache ever useful?
|
|
7331
|
|
7332 Even if the cache is invalidated before every single usage, it is
|
|
7333 necessary. Scrolling often requires knowledge about display lines which
|
|
7334 are actually above or below the visible region. The cache provides a
|
|
7335 convenient light-weight method of storing this information for multiple
|
|
7336 display regions. This knowledge is necessary for the scrolling code to
|
|
7337 always obey the First Golden Rule of Redisplay.
|
|
7338
|
|
7339 If the cache already contains all of the information that the scrolling
|
|
7340 routines happen to need so that it doesn't have to go generate it, then we
|
|
7341 are able to obey the Third Golden Rule of Redisplay. The first thing we
|
|
7342 do to help out the cache is to always add the displayed region. This
|
|
7343 region had to be generated anyway, so the cache ends up getting the
|
|
7344 information basically for free. In those cases where a user is simply
|
|
7345 scrolling around viewing a buffer there is a high probability that this is
|
|
7346 sufficient to always provide the needed information. The second thing we
|
|
7347 can do is be smart about invalidating the cache.
|
|
7348
|
|
7349 TODO -- Be smart about invalidating the cache. Potential places:
|
|
7350
|
|
7351 + Insertions at end-of-line which don't cause line-wraps do not alter the
|
|
7352 starting positions of any display lines. These types of buffer
|
|
7353 modifications should not invalidate the cache. This is actually a large
|
|
7354 optimization for redisplay speed as well.
|
|
7355
|
|
7356 + Buffer modifications frequently only affect the display of lines at and
|
|
7357 below where they occur. In these situations we should only invalidate
|
|
7358 the part of the cache starting at where the modification occurs.
|
|
7359
|
|
7360 In case you're wondering, the Second Golden Rule of Redisplay is not
|
|
7361 applicable.
|
|
7362 ****************************************************************************/
|
|
7363
|
|
7364 /* This will get used quite a bit so we don't want to be constantly
|
|
7365 allocating and freeing it. */
|
|
7366 static line_start_cache_dynarr *internal_cache;
|
|
7367
|
|
7368 /* Makes internal_cache represent the TYPE display structs and only
|
|
7369 the TYPE display structs. */
|
|
7370
|
|
7371 static void
|
|
7372 update_internal_cache_list (struct window *w, int type)
|
|
7373 {
|
|
7374 int line;
|
|
7375 display_line_dynarr *dla = window_display_lines (w, type);
|
|
7376
|
|
7377 Dynarr_reset (internal_cache);
|
|
7378 for (line = 0; line < Dynarr_length (dla); line++)
|
|
7379 {
|
|
7380 struct display_line *dl = Dynarr_atp (dla, line);
|
|
7381
|
|
7382 if (dl->modeline)
|
|
7383 continue;
|
|
7384 else
|
|
7385 {
|
|
7386 struct line_start_cache lsc;
|
434
|
7387
|
826
|
7388 lsc.start = dl->charpos;
|
|
7389 lsc.end = dl->end_charpos;
|
428
|
7390 lsc.height = dl->ascent + dl->descent;
|
|
7391
|
|
7392 Dynarr_add (internal_cache, lsc);
|
|
7393 }
|
|
7394 }
|
|
7395 }
|
|
7396
|
|
7397 /* Reset the line cache if necessary. This should be run at the
|
|
7398 beginning of any function which access the cache. */
|
|
7399
|
|
7400 static void
|
|
7401 validate_line_start_cache (struct window *w)
|
|
7402 {
|
|
7403 struct buffer *b = XBUFFER (w->buffer);
|
|
7404 struct frame *f = XFRAME (w->frame);
|
|
7405
|
|
7406 if (!w->line_cache_validation_override)
|
|
7407 {
|
|
7408 /* f->extents_changed used to be in here because extent face and
|
|
7409 size changes can cause text shifting. However, the extent
|
|
7410 covering the region is constantly having its face set and
|
|
7411 priority altered by the mouse code. This means that the line
|
|
7412 start cache is constantly being invalidated. This is bad
|
|
7413 since the mouse code also triggers heavy usage of the cache.
|
|
7414 Since it is an unlikely that f->extents being changed
|
|
7415 indicates that the cache really needs to be updated and if it
|
|
7416 does redisplay will catch it pretty quickly we no longer
|
|
7417 invalidate the cache if it is set. This greatly speeds up
|
|
7418 dragging out regions with the mouse. */
|
|
7419 if (XINT (w->line_cache_last_updated) < BUF_MODIFF (b)
|
|
7420 || f->faces_changed
|
|
7421 || f->clip_changed)
|
|
7422 {
|
|
7423 Dynarr_reset (w->line_start_cache);
|
|
7424 }
|
|
7425 }
|
|
7426 }
|
|
7427
|
|
7428 /* Return the very first buffer position contained in the given
|
|
7429 window's cache, or -1 if the cache is empty. Assumes that the
|
|
7430 cache is valid. */
|
|
7431
|
665
|
7432 static Charbpos
|
428
|
7433 line_start_cache_start (struct window *w)
|
|
7434 {
|
|
7435 line_start_cache_dynarr *cache = w->line_start_cache;
|
|
7436
|
|
7437 if (!Dynarr_length (cache))
|
|
7438 return -1;
|
|
7439 else
|
|
7440 return Dynarr_atp (cache, 0)->start;
|
|
7441 }
|
|
7442
|
|
7443 /* Return the very last buffer position contained in the given
|
|
7444 window's cache, or -1 if the cache is empty. Assumes that the
|
|
7445 cache is valid. */
|
|
7446
|
665
|
7447 static Charbpos
|
428
|
7448 line_start_cache_end (struct window *w)
|
|
7449 {
|
|
7450 line_start_cache_dynarr *cache = w->line_start_cache;
|
|
7451
|
|
7452 if (!Dynarr_length (cache))
|
|
7453 return -1;
|
|
7454 else
|
|
7455 return Dynarr_atp (cache, Dynarr_length (cache) - 1)->end;
|
|
7456 }
|
|
7457
|
|
7458 /* Return the index of the line POINT is contained within in window
|
|
7459 W's line start cache. It will enlarge the cache or move the cache
|
|
7460 window in order to have POINT be present in the cache. MIN_PAST is
|
|
7461 a guarantee of the number of entries in the cache present on either
|
|
7462 side of POINT (unless a buffer boundary is hit). If MIN_PAST is -1
|
|
7463 then it will be treated as 0, but the cache window will not be
|
|
7464 allowed to shift. Returns -1 if POINT cannot be found in the cache
|
|
7465 for any reason. */
|
|
7466
|
|
7467 int
|
665
|
7468 point_in_line_start_cache (struct window *w, Charbpos point, int min_past)
|
428
|
7469 {
|
|
7470 struct buffer *b = XBUFFER (w->buffer);
|
|
7471 line_start_cache_dynarr *cache = w->line_start_cache;
|
647
|
7472 int top, bottom, pos;
|
428
|
7473
|
|
7474 validate_line_start_cache (w);
|
|
7475 w->line_cache_validation_override++;
|
|
7476
|
|
7477 /* Let functions pass in negative values, but we still treat -1
|
|
7478 specially. */
|
|
7479 /* #### bogosity alert */
|
|
7480 if (min_past < 0 && min_past != -1)
|
|
7481 min_past = -min_past;
|
|
7482
|
|
7483 if (!Dynarr_length (cache) || line_start_cache_start (w) > point
|
|
7484 || line_start_cache_end (w) < point)
|
|
7485 {
|
|
7486 int loop;
|
|
7487 int win_char_height = window_char_height (w, 1);
|
|
7488
|
|
7489 /* Occasionally we get here with a 0 height
|
|
7490 window. find_next_newline_no_quit will abort if we pass it a
|
|
7491 count of 0 so handle that case. */
|
|
7492 if (!win_char_height)
|
|
7493 win_char_height = 1;
|
|
7494
|
|
7495 if (!Dynarr_length (cache))
|
|
7496 {
|
665
|
7497 Charbpos from = find_next_newline_no_quit (b, point, -1);
|
|
7498 Charbpos to = find_next_newline_no_quit (b, from, win_char_height);
|
428
|
7499
|
|
7500 update_line_start_cache (w, from, to, point, 0);
|
|
7501
|
|
7502 if (!Dynarr_length (cache))
|
|
7503 {
|
|
7504 w->line_cache_validation_override--;
|
|
7505 return -1;
|
|
7506 }
|
|
7507 }
|
|
7508
|
|
7509 assert (Dynarr_length (cache));
|
|
7510
|
|
7511 loop = 0;
|
|
7512 while (line_start_cache_start (w) > point
|
|
7513 && (loop < cache_adjustment || min_past == -1))
|
|
7514 {
|
665
|
7515 Charbpos from, to;
|
428
|
7516
|
|
7517 from = line_start_cache_start (w);
|
|
7518 if (from <= BUF_BEGV (b))
|
|
7519 break;
|
|
7520
|
|
7521 from = find_next_newline_no_quit (b, from, -win_char_height);
|
|
7522 to = line_start_cache_end (w);
|
|
7523
|
|
7524 update_line_start_cache (w, from, to, point, 0);
|
|
7525 loop++;
|
|
7526 }
|
|
7527
|
|
7528 if (line_start_cache_start (w) > point)
|
|
7529 {
|
665
|
7530 Charbpos from, to;
|
428
|
7531
|
|
7532 from = find_next_newline_no_quit (b, point, -1);
|
|
7533 if (from >= BUF_ZV (b))
|
|
7534 {
|
|
7535 to = find_next_newline_no_quit (b, from, -win_char_height);
|
|
7536 from = to;
|
|
7537 to = BUF_ZV (b);
|
|
7538 }
|
|
7539 else
|
|
7540 to = find_next_newline_no_quit (b, from, win_char_height);
|
|
7541
|
|
7542 update_line_start_cache (w, from, to, point, 0);
|
|
7543 }
|
|
7544
|
|
7545 loop = 0;
|
|
7546 while (line_start_cache_end (w) < point
|
|
7547 && (loop < cache_adjustment || min_past == -1))
|
|
7548 {
|
665
|
7549 Charbpos from, to;
|
428
|
7550
|
|
7551 to = line_start_cache_end (w);
|
|
7552 if (to >= BUF_ZV (b))
|
|
7553 break;
|
|
7554
|
|
7555 from = line_start_cache_end (w);
|
|
7556 to = find_next_newline_no_quit (b, from, win_char_height);
|
|
7557
|
|
7558 update_line_start_cache (w, from, to, point, 0);
|
|
7559 loop++;
|
|
7560 }
|
|
7561
|
|
7562 if (line_start_cache_end (w) < point)
|
|
7563 {
|
665
|
7564 Charbpos from, to;
|
428
|
7565
|
|
7566 from = find_next_newline_no_quit (b, point, -1);
|
|
7567 if (from >= BUF_ZV (b))
|
|
7568 {
|
|
7569 to = find_next_newline_no_quit (b, from, -win_char_height);
|
|
7570 from = to;
|
|
7571 to = BUF_ZV (b);
|
|
7572 }
|
|
7573 else
|
|
7574 to = find_next_newline_no_quit (b, from, win_char_height);
|
|
7575
|
|
7576 update_line_start_cache (w, from, to, point, 0);
|
|
7577 }
|
|
7578 }
|
|
7579
|
|
7580 assert (Dynarr_length (cache));
|
|
7581
|
|
7582 if (min_past == -1)
|
|
7583 min_past = 0;
|
|
7584
|
|
7585 /* This could happen if the buffer is narrowed. */
|
|
7586 if (line_start_cache_start (w) > point
|
|
7587 || line_start_cache_end (w) < point)
|
|
7588 {
|
|
7589 w->line_cache_validation_override--;
|
|
7590 return -1;
|
|
7591 }
|
|
7592
|
|
7593 find_point_loop:
|
|
7594
|
|
7595 top = Dynarr_length (cache) - 1;
|
|
7596 bottom = 0;
|
|
7597
|
|
7598 while (1)
|
|
7599 {
|
647
|
7600 int new_pos;
|
665
|
7601 Charbpos start, end;
|
428
|
7602
|
|
7603 pos = (bottom + top + 1) >> 1;
|
|
7604 start = Dynarr_atp (cache, pos)->start;
|
|
7605 end = Dynarr_atp (cache, pos)->end;
|
|
7606
|
|
7607 if (point >= start && point <= end)
|
|
7608 {
|
|
7609 if (pos < min_past && line_start_cache_start (w) > BUF_BEGV (b))
|
|
7610 {
|
665
|
7611 Charbpos from =
|
428
|
7612 find_next_newline_no_quit (b, line_start_cache_start (w),
|
|
7613 -min_past - 1);
|
665
|
7614 Charbpos to = line_start_cache_end (w);
|
428
|
7615
|
|
7616 update_line_start_cache (w, from, to, point, 0);
|
|
7617 goto find_point_loop;
|
|
7618 }
|
|
7619 else if ((Dynarr_length (cache) - pos - 1) < min_past
|
|
7620 && line_start_cache_end (w) < BUF_ZV (b))
|
|
7621 {
|
665
|
7622 Charbpos from = line_start_cache_end (w);
|
|
7623 Charbpos to = find_next_newline_no_quit (b, from,
|
428
|
7624 (min_past
|
|
7625 ? min_past
|
|
7626 : 1));
|
|
7627
|
|
7628 update_line_start_cache (w, from, to, point, 0);
|
|
7629 goto find_point_loop;
|
|
7630 }
|
|
7631 else
|
|
7632 {
|
|
7633 w->line_cache_validation_override--;
|
|
7634 return pos;
|
|
7635 }
|
|
7636 }
|
|
7637 else if (point > end)
|
|
7638 bottom = pos + 1;
|
|
7639 else if (point < start)
|
|
7640 top = pos - 1;
|
|
7641 else
|
|
7642 abort ();
|
|
7643
|
|
7644 new_pos = (bottom + top + 1) >> 1;
|
|
7645 if (pos == new_pos)
|
|
7646 {
|
|
7647 w->line_cache_validation_override--;
|
|
7648 return -1;
|
|
7649 }
|
|
7650 }
|
|
7651 }
|
|
7652
|
|
7653 /* Return a boolean indicating if POINT would be visible in window W
|
|
7654 if display of the window was to begin at STARTP. */
|
|
7655
|
|
7656 int
|
665
|
7657 point_would_be_visible (struct window *w, Charbpos startp, Charbpos point)
|
428
|
7658 {
|
|
7659 struct buffer *b = XBUFFER (w->buffer);
|
430
|
7660 int pixpos = -WINDOW_TEXT_TOP_CLIP(w);
|
428
|
7661 int bottom = WINDOW_TEXT_HEIGHT (w);
|
|
7662 int start_elt;
|
|
7663
|
|
7664 /* If point is before the intended start it obviously can't be visible. */
|
|
7665 if (point < startp)
|
|
7666 return 0;
|
|
7667
|
|
7668 /* If point or start are not in the accessible buffer range, then
|
|
7669 fail. */
|
|
7670 if (startp < BUF_BEGV (b) || startp > BUF_ZV (b)
|
|
7671 || point < BUF_BEGV (b) || point > BUF_ZV (b))
|
|
7672 return 0;
|
|
7673
|
|
7674 validate_line_start_cache (w);
|
|
7675 w->line_cache_validation_override++;
|
|
7676
|
|
7677 start_elt = point_in_line_start_cache (w, startp, 0);
|
|
7678 if (start_elt == -1)
|
|
7679 {
|
|
7680 w->line_cache_validation_override--;
|
|
7681 return 0;
|
|
7682 }
|
|
7683
|
|
7684 assert (line_start_cache_start (w) <= startp
|
|
7685 && line_start_cache_end (w) >= startp);
|
|
7686
|
|
7687 while (1)
|
|
7688 {
|
|
7689 int height;
|
|
7690
|
|
7691 /* Expand the cache if necessary. */
|
|
7692 if (start_elt == Dynarr_length (w->line_start_cache))
|
|
7693 {
|
665
|
7694 Charbpos old_startp =
|
428
|
7695 Dynarr_atp (w->line_start_cache, start_elt - 1)->start;
|
|
7696
|
|
7697 start_elt = point_in_line_start_cache (w, old_startp,
|
|
7698 window_char_height (w, 0));
|
|
7699
|
|
7700 /* We've already actually processed old_startp, so increment
|
|
7701 immediately. */
|
|
7702 start_elt++;
|
|
7703
|
|
7704 /* If this happens we didn't add any extra elements. Bummer. */
|
|
7705 if (start_elt == Dynarr_length (w->line_start_cache))
|
|
7706 {
|
|
7707 w->line_cache_validation_override--;
|
|
7708 return 0;
|
|
7709 }
|
|
7710 }
|
|
7711
|
|
7712 height = Dynarr_atp (w->line_start_cache, start_elt)->height;
|
|
7713
|
|
7714 if (pixpos + height > bottom)
|
|
7715 {
|
|
7716 if (bottom - pixpos < VERTICAL_CLIP (w, 0))
|
|
7717 {
|
|
7718 w->line_cache_validation_override--;
|
|
7719 return 0;
|
|
7720 }
|
|
7721 }
|
|
7722
|
|
7723 pixpos += height;
|
|
7724 if (point <= Dynarr_atp (w->line_start_cache, start_elt)->end)
|
|
7725 {
|
|
7726 w->line_cache_validation_override--;
|
|
7727 return 1;
|
|
7728 }
|
|
7729
|
|
7730 start_elt++;
|
|
7731 }
|
|
7732 }
|
|
7733
|
|
7734 /* For the given window W, if display starts at STARTP, what will be
|
|
7735 the buffer position at the beginning or end of the last line
|
|
7736 displayed. The end of the last line is also know as the window end
|
|
7737 position.
|
|
7738
|
442
|
7739 WARNING: It is possible that redisplay failed to layout any lines for the
|
|
7740 windows. Under normal circumstances this is rare. However it seems that it
|
|
7741 does occur in the following situation: A mouse event has come in and we
|
|
7742 need to compute its location in a window. That code (in
|
|
7743 pixel_to_glyph_translation) already can handle 0 as an error return value.
|
|
7744
|
428
|
7745 #### With a little work this could probably be reworked as just a
|
|
7746 call to start_with_line_at_pixpos. */
|
|
7747
|
665
|
7748 static Charbpos
|
|
7749 start_end_of_last_line (struct window *w, Charbpos startp, int end,
|
442
|
7750 int may_error)
|
428
|
7751 {
|
|
7752 struct buffer *b = XBUFFER (w->buffer);
|
|
7753 line_start_cache_dynarr *cache = w->line_start_cache;
|
|
7754 int pixpos = 0;
|
|
7755 int bottom = WINDOW_TEXT_HEIGHT (w);
|
665
|
7756 Charbpos cur_start;
|
428
|
7757 int start_elt;
|
|
7758
|
|
7759 validate_line_start_cache (w);
|
|
7760 w->line_cache_validation_override++;
|
|
7761
|
|
7762 if (startp < BUF_BEGV (b))
|
|
7763 startp = BUF_BEGV (b);
|
|
7764 else if (startp > BUF_ZV (b))
|
|
7765 startp = BUF_ZV (b);
|
|
7766 cur_start = startp;
|
|
7767
|
|
7768 start_elt = point_in_line_start_cache (w, cur_start, 0);
|
|
7769 if (start_elt == -1)
|
442
|
7770 return may_error ? 0 : startp;
|
428
|
7771
|
|
7772 while (1)
|
|
7773 {
|
|
7774 int height = Dynarr_atp (cache, start_elt)->height;
|
|
7775
|
|
7776 cur_start = Dynarr_atp (cache, start_elt)->start;
|
|
7777
|
|
7778 if (pixpos + height > bottom)
|
|
7779 {
|
|
7780 /* Adjust for any possible clip. */
|
|
7781 if (bottom - pixpos < VERTICAL_CLIP (w, 0))
|
|
7782 start_elt--;
|
|
7783
|
|
7784 if (start_elt < 0)
|
|
7785 {
|
|
7786 w->line_cache_validation_override--;
|
|
7787 if (end)
|
|
7788 return BUF_ZV (b);
|
|
7789 else
|
|
7790 return BUF_BEGV (b);
|
|
7791 }
|
|
7792 else
|
|
7793 {
|
|
7794 w->line_cache_validation_override--;
|
|
7795 if (end)
|
|
7796 return Dynarr_atp (cache, start_elt)->end;
|
|
7797 else
|
|
7798 return Dynarr_atp (cache, start_elt)->start;
|
|
7799 }
|
|
7800 }
|
|
7801
|
|
7802 pixpos += height;
|
|
7803 start_elt++;
|
|
7804 if (start_elt == Dynarr_length (cache))
|
|
7805 {
|
665
|
7806 Charbpos from = line_start_cache_end (w);
|
428
|
7807 int win_char_height = window_char_height (w, 0);
|
665
|
7808 Charbpos to = find_next_newline_no_quit (b, from,
|
428
|
7809 (win_char_height
|
|
7810 ? win_char_height
|
|
7811 : 1));
|
|
7812
|
|
7813 /* We've hit the end of the bottom so that's what it is. */
|
|
7814 if (from >= BUF_ZV (b))
|
|
7815 {
|
|
7816 w->line_cache_validation_override--;
|
|
7817 return BUF_ZV (b);
|
|
7818 }
|
|
7819
|
|
7820 update_line_start_cache (w, from, to, BUF_PT (b), 0);
|
|
7821
|
|
7822 /* Updating the cache invalidates any current indexes. */
|
|
7823 start_elt = point_in_line_start_cache (w, cur_start, -1) + 1;
|
|
7824 }
|
|
7825 }
|
|
7826 }
|
|
7827
|
|
7828 /* For the given window W, if display starts at STARTP, what will be
|
|
7829 the buffer position at the beginning of the last line displayed. */
|
|
7830
|
665
|
7831 Charbpos
|
|
7832 start_of_last_line (struct window *w, Charbpos startp)
|
428
|
7833 {
|
442
|
7834 return start_end_of_last_line (w, startp, 0 , 0);
|
428
|
7835 }
|
|
7836
|
|
7837 /* For the given window W, if display starts at STARTP, what will be
|
|
7838 the buffer position at the end of the last line displayed. This is
|
|
7839 also know as the window end position. */
|
|
7840
|
665
|
7841 Charbpos
|
|
7842 end_of_last_line (struct window *w, Charbpos startp)
|
428
|
7843 {
|
442
|
7844 return start_end_of_last_line (w, startp, 1, 0);
|
428
|
7845 }
|
|
7846
|
665
|
7847 static Charbpos
|
|
7848 end_of_last_line_may_error (struct window *w, Charbpos startp)
|
442
|
7849 {
|
|
7850 return start_end_of_last_line (w, startp, 1, 1);
|
|
7851 }
|
|
7852
|
|
7853
|
428
|
7854 /* For window W, what does the starting position have to be so that
|
|
7855 the line containing POINT will cover pixel position PIXPOS. */
|
|
7856
|
665
|
7857 Charbpos
|
|
7858 start_with_line_at_pixpos (struct window *w, Charbpos point, int pixpos)
|
428
|
7859 {
|
|
7860 struct buffer *b = XBUFFER (w->buffer);
|
|
7861 int cur_elt;
|
665
|
7862 Charbpos cur_pos, prev_pos = point;
|
428
|
7863 int point_line_height;
|
|
7864 int pixheight = pixpos - WINDOW_TEXT_TOP (w);
|
|
7865
|
|
7866 validate_line_start_cache (w);
|
|
7867 w->line_cache_validation_override++;
|
|
7868
|
|
7869 cur_elt = point_in_line_start_cache (w, point, 0);
|
|
7870 /* #### See comment in update_line_start_cache about big minibuffers. */
|
|
7871 if (cur_elt < 0)
|
|
7872 {
|
|
7873 w->line_cache_validation_override--;
|
|
7874 return point;
|
|
7875 }
|
|
7876
|
|
7877 point_line_height = Dynarr_atp (w->line_start_cache, cur_elt)->height;
|
|
7878
|
|
7879 while (1)
|
|
7880 {
|
|
7881 cur_pos = Dynarr_atp (w->line_start_cache, cur_elt)->start;
|
|
7882
|
|
7883 pixheight -= Dynarr_atp (w->line_start_cache, cur_elt)->height;
|
|
7884
|
|
7885 /* Do not take into account the value of vertical_clip here.
|
|
7886 That is the responsibility of the calling functions. */
|
|
7887 if (pixheight < 0)
|
|
7888 {
|
|
7889 w->line_cache_validation_override--;
|
|
7890 if (-pixheight > point_line_height)
|
|
7891 /* We can't make the target line cover pixpos, so put it
|
|
7892 above pixpos. That way it will at least be visible. */
|
|
7893 return prev_pos;
|
|
7894 else
|
|
7895 return cur_pos;
|
|
7896 }
|
|
7897
|
|
7898 cur_elt--;
|
|
7899 while (cur_elt < 0)
|
|
7900 {
|
665
|
7901 Charbpos from, to;
|
428
|
7902 int win_char_height;
|
|
7903
|
|
7904 if (cur_pos <= BUF_BEGV (b))
|
|
7905 {
|
|
7906 w->line_cache_validation_override--;
|
|
7907 return BUF_BEGV (b);
|
|
7908 }
|
|
7909
|
|
7910 win_char_height = window_char_height (w, 0);
|
|
7911 if (!win_char_height)
|
|
7912 win_char_height = 1;
|
|
7913
|
|
7914 from = find_next_newline_no_quit (b, cur_pos, -win_char_height);
|
|
7915 to = line_start_cache_end (w);
|
|
7916 update_line_start_cache (w, from, to, point, 0);
|
|
7917
|
|
7918 cur_elt = point_in_line_start_cache (w, cur_pos, 2) - 1;
|
|
7919 assert (cur_elt >= -1);
|
|
7920 /* This used to be cur_elt>=0 under the assumption that if
|
|
7921 point is in the top line and not at BUF_BEGV, then
|
434
|
7922 setting the window_start to a newline before the start of
|
428
|
7923 the first line will always cause scrolling.
|
|
7924
|
|
7925 However in my (jv) opinion this is wrong. That new line
|
|
7926 can be hidden in various ways: invisible extents, an
|
|
7927 explicit window-start not at a newline character etc.
|
|
7928 The existence of those are indeed known to create crashes
|
|
7929 on that assert. So we have no option but to continue the
|
|
7930 search if we found point at the top of the line_start_cache
|
|
7931 again. */
|
434
|
7932 cur_pos = Dynarr_atp (w->line_start_cache,0)->start;
|
428
|
7933 }
|
|
7934 prev_pos = cur_pos;
|
|
7935 }
|
|
7936 }
|
|
7937
|
|
7938 /* For window W, what does the starting position have to be so that
|
|
7939 the line containing point is on display line LINE. If LINE is
|
|
7940 positive it is considered to be the number of lines from the top of
|
|
7941 the window (0 is the top line). If it is negative the number is
|
|
7942 considered to be the number of lines from the bottom (-1 is the
|
|
7943 bottom line). */
|
|
7944
|
665
|
7945 Charbpos
|
|
7946 start_with_point_on_display_line (struct window *w, Charbpos point, int line)
|
428
|
7947 {
|
|
7948 validate_line_start_cache (w);
|
|
7949 w->line_cache_validation_override++;
|
|
7950
|
|
7951 if (line >= 0)
|
|
7952 {
|
|
7953 int cur_elt = point_in_line_start_cache (w, point, line);
|
|
7954
|
|
7955 if (cur_elt - line < 0)
|
|
7956 cur_elt = 0; /* Hit the top */
|
|
7957 else
|
|
7958 cur_elt -= line;
|
|
7959
|
|
7960 w->line_cache_validation_override--;
|
|
7961 return Dynarr_atp (w->line_start_cache, cur_elt)->start;
|
|
7962 }
|
|
7963 else
|
|
7964 {
|
|
7965 /* The calculated value of pixpos is correct for the bottom line
|
|
7966 or what we want when line is -1. Therefore we subtract one
|
|
7967 because we have already handled one line. */
|
|
7968 int new_line = -line - 1;
|
|
7969 int cur_elt = point_in_line_start_cache (w, point, new_line);
|
|
7970 int pixpos = WINDOW_TEXT_BOTTOM (w);
|
665
|
7971 Charbpos retval, search_point;
|
428
|
7972
|
|
7973 /* If scroll_on_clipped_lines is false, the last "visible" line of
|
|
7974 the window covers the pixel at WINDOW_TEXT_BOTTOM (w) - 1.
|
|
7975 If s_o_c_l is true, then we don't want to count a clipped
|
|
7976 line, so back up from the bottom by the height of the line
|
|
7977 containing point. */
|
|
7978 if (scroll_on_clipped_lines)
|
|
7979 pixpos -= Dynarr_atp (w->line_start_cache, cur_elt)->height;
|
|
7980 else
|
|
7981 pixpos -= 1;
|
|
7982
|
|
7983 if (cur_elt + new_line >= Dynarr_length (w->line_start_cache))
|
|
7984 {
|
|
7985 /* Hit the bottom of the buffer. */
|
|
7986 int adjustment =
|
|
7987 (cur_elt + new_line) - Dynarr_length (w->line_start_cache) + 1;
|
|
7988 Lisp_Object window;
|
|
7989 int defheight;
|
|
7990
|
793
|
7991 window = wrap_window (w);
|
428
|
7992 default_face_height_and_width (window, &defheight, 0);
|
|
7993
|
|
7994 cur_elt = Dynarr_length (w->line_start_cache) - 1;
|
|
7995
|
|
7996 pixpos -= (adjustment * defheight);
|
|
7997 if (pixpos < WINDOW_TEXT_TOP (w))
|
|
7998 pixpos = WINDOW_TEXT_TOP (w);
|
|
7999 }
|
|
8000 else
|
|
8001 cur_elt = cur_elt + new_line;
|
|
8002
|
|
8003 search_point = Dynarr_atp (w->line_start_cache, cur_elt)->start;
|
|
8004
|
|
8005 retval = start_with_line_at_pixpos (w, search_point, pixpos);
|
|
8006 w->line_cache_validation_override--;
|
|
8007 return retval;
|
|
8008 }
|
|
8009 }
|
|
8010
|
|
8011 /* This is used to speed up vertical scrolling by caching the known
|
|
8012 buffer starting positions for display lines. This allows the
|
|
8013 scrolling routines to avoid costly calls to regenerate_window. If
|
|
8014 NO_REGEN is true then it will only add the values in the DESIRED
|
|
8015 display structs which are in the given range.
|
|
8016
|
|
8017 Note also that the FROM/TO values are minimums. It is possible
|
|
8018 that this function will actually add information outside of the
|
|
8019 lines containing those positions. This can't hurt but it could
|
|
8020 possibly help.
|
|
8021
|
|
8022 #### We currently force the cache to have only 1 contiguous region.
|
|
8023 It might help to make the cache a dynarr of caches so that we can
|
|
8024 cover more areas. This might, however, turn out to be a lot of
|
|
8025 overhead for too little gain. */
|
|
8026
|
|
8027 static void
|
665
|
8028 update_line_start_cache (struct window *w, Charbpos from, Charbpos to,
|
|
8029 Charbpos point, int no_regen)
|
428
|
8030 {
|
|
8031 struct buffer *b = XBUFFER (w->buffer);
|
|
8032 line_start_cache_dynarr *cache = w->line_start_cache;
|
665
|
8033 Charbpos low_bound, high_bound;
|
428
|
8034
|
|
8035 validate_line_start_cache (w);
|
|
8036 w->line_cache_validation_override++;
|
|
8037
|
|
8038 if (from < BUF_BEGV (b))
|
|
8039 from = BUF_BEGV (b);
|
|
8040 if (to > BUF_ZV (b))
|
|
8041 to = BUF_ZV (b);
|
|
8042
|
|
8043 if (from > to)
|
|
8044 {
|
|
8045 w->line_cache_validation_override--;
|
|
8046 return;
|
|
8047 }
|
|
8048
|
|
8049 if (Dynarr_length (cache))
|
|
8050 {
|
|
8051 low_bound = line_start_cache_start (w);
|
|
8052 high_bound = line_start_cache_end (w);
|
|
8053
|
|
8054 /* Check to see if the desired range is already in the cache. */
|
|
8055 if (from >= low_bound && to <= high_bound)
|
|
8056 {
|
|
8057 w->line_cache_validation_override--;
|
|
8058 return;
|
|
8059 }
|
|
8060
|
|
8061 /* Check to make sure that the desired range is adjacent to the
|
|
8062 current cache. If not, invalidate the cache. */
|
|
8063 if (to < low_bound || from > high_bound)
|
|
8064 {
|
|
8065 Dynarr_reset (cache);
|
|
8066 low_bound = high_bound = -1;
|
|
8067 }
|
|
8068 }
|
|
8069 else
|
|
8070 {
|
|
8071 low_bound = high_bound = -1;
|
|
8072 }
|
|
8073
|
|
8074 w->line_cache_last_updated = make_int (BUF_MODIFF (b));
|
|
8075
|
|
8076 /* This could be integrated into the next two sections, but it is easier
|
|
8077 to follow what's going on by having it separate. */
|
|
8078 if (no_regen)
|
|
8079 {
|
665
|
8080 Charbpos start, end;
|
428
|
8081
|
|
8082 update_internal_cache_list (w, DESIRED_DISP);
|
|
8083 if (!Dynarr_length (internal_cache))
|
|
8084 {
|
|
8085 w->line_cache_validation_override--;
|
|
8086 return;
|
|
8087 }
|
|
8088
|
|
8089 start = Dynarr_atp (internal_cache, 0)->start;
|
|
8090 end =
|
|
8091 Dynarr_atp (internal_cache, Dynarr_length (internal_cache) - 1)->end;
|
|
8092
|
|
8093 /* We aren't allowed to generate additional information to fill in
|
|
8094 gaps, so if the DESIRED structs don't overlap the cache, reset the
|
|
8095 cache. */
|
|
8096 if (Dynarr_length (cache))
|
|
8097 {
|
|
8098 if (end < low_bound || start > high_bound)
|
|
8099 Dynarr_reset (cache);
|
|
8100
|
|
8101 /* #### What should really happen if what we are doing is
|
|
8102 extending a line (the last line)? */
|
|
8103 if (Dynarr_length (cache) == 1
|
|
8104 && Dynarr_length (internal_cache) == 1)
|
|
8105 Dynarr_reset (cache);
|
|
8106 }
|
|
8107
|
|
8108 if (!Dynarr_length (cache))
|
|
8109 {
|
|
8110 Dynarr_add_many (cache, Dynarr_atp (internal_cache, 0),
|
|
8111 Dynarr_length (internal_cache));
|
|
8112 w->line_cache_validation_override--;
|
|
8113 return;
|
|
8114 }
|
|
8115
|
|
8116 /* An extra check just in case the calling function didn't pass in
|
|
8117 the bounds of the DESIRED structs in the first place. */
|
|
8118 if (start >= low_bound && end <= high_bound)
|
|
8119 {
|
|
8120 w->line_cache_validation_override--;
|
|
8121 return;
|
|
8122 }
|
|
8123
|
|
8124 /* At this point we know that the internal cache partially overlaps
|
|
8125 the main cache. */
|
|
8126 if (start < low_bound)
|
|
8127 {
|
|
8128 int ic_elt = Dynarr_length (internal_cache) - 1;
|
|
8129 while (ic_elt >= 0)
|
|
8130 {
|
|
8131 if (Dynarr_atp (internal_cache, ic_elt)->start < low_bound)
|
|
8132 break;
|
|
8133 else
|
|
8134 ic_elt--;
|
|
8135 }
|
|
8136
|
|
8137 if (!(ic_elt >= 0))
|
|
8138 {
|
|
8139 Dynarr_reset (cache);
|
|
8140 Dynarr_add_many (cache, Dynarr_atp (internal_cache, 0),
|
|
8141 Dynarr_length (internal_cache));
|
|
8142 w->line_cache_validation_override--;
|
|
8143 return;
|
|
8144 }
|
|
8145
|
|
8146 Dynarr_insert_many_at_start (cache, Dynarr_atp (internal_cache, 0),
|
|
8147 ic_elt + 1);
|
|
8148 }
|
|
8149
|
|
8150 if (end > high_bound)
|
|
8151 {
|
|
8152 int ic_elt = 0;
|
|
8153
|
|
8154 while (ic_elt < Dynarr_length (internal_cache))
|
|
8155 {
|
|
8156 if (Dynarr_atp (internal_cache, ic_elt)->start > high_bound)
|
|
8157 break;
|
|
8158 else
|
|
8159 ic_elt++;
|
|
8160 }
|
|
8161
|
|
8162 if (!(ic_elt < Dynarr_length (internal_cache)))
|
|
8163 {
|
|
8164 Dynarr_reset (cache);
|
|
8165 Dynarr_add_many (cache, Dynarr_atp (internal_cache, 0),
|
|
8166 Dynarr_length (internal_cache));
|
|
8167 w->line_cache_validation_override--;
|
|
8168 return;
|
|
8169 }
|
|
8170
|
|
8171 Dynarr_add_many (cache, Dynarr_atp (internal_cache, ic_elt),
|
|
8172 Dynarr_length (internal_cache) - ic_elt);
|
|
8173 }
|
|
8174
|
|
8175 w->line_cache_validation_override--;
|
|
8176 return;
|
|
8177 }
|
|
8178
|
|
8179 if (!Dynarr_length (cache) || from < low_bound)
|
|
8180 {
|
665
|
8181 Charbpos startp = find_next_newline_no_quit (b, from, -1);
|
428
|
8182 int marker = 0;
|
|
8183 int old_lb = low_bound;
|
|
8184
|
|
8185 while (startp < old_lb || low_bound == -1)
|
|
8186 {
|
|
8187 int ic_elt;
|
665
|
8188 Charbpos new_startp;
|
428
|
8189
|
|
8190 regenerate_window (w, startp, point, CMOTION_DISP);
|
|
8191 update_internal_cache_list (w, CMOTION_DISP);
|
|
8192
|
|
8193 /* If this assert is triggered then regenerate_window failed
|
442
|
8194 to layout a single line. This is not possible since we
|
|
8195 force at least a single line to be layout for CMOTION_DISP */
|
|
8196 assert (Dynarr_length (internal_cache));
|
428
|
8197 assert (startp == Dynarr_atp (internal_cache, 0)->start);
|
|
8198
|
|
8199 ic_elt = Dynarr_length (internal_cache) - 1;
|
|
8200 if (low_bound != -1)
|
|
8201 {
|
|
8202 while (ic_elt >= 0)
|
|
8203 {
|
|
8204 if (Dynarr_atp (internal_cache, ic_elt)->start < old_lb)
|
|
8205 break;
|
|
8206 else
|
|
8207 ic_elt--;
|
|
8208 }
|
|
8209 }
|
|
8210 assert (ic_elt >= 0);
|
|
8211
|
|
8212 new_startp = Dynarr_atp (internal_cache, ic_elt)->end + 1;
|
|
8213
|
|
8214 /*
|
|
8215 * Handle invisible text properly:
|
|
8216 * If the last line we're inserting has the same end as the
|
|
8217 * line before which it will be added, merge the two lines.
|
|
8218 */
|
|
8219 if (Dynarr_length (cache) &&
|
|
8220 Dynarr_atp (internal_cache, ic_elt)->end ==
|
|
8221 Dynarr_atp (cache, marker)->end)
|
|
8222 {
|
|
8223 Dynarr_atp (cache, marker)->start
|
|
8224 = Dynarr_atp (internal_cache, ic_elt)->start;
|
|
8225 Dynarr_atp (cache, marker)->height
|
|
8226 = Dynarr_atp (internal_cache, ic_elt)->height;
|
|
8227 ic_elt--;
|
|
8228 }
|
|
8229
|
|
8230 if (ic_elt >= 0) /* we still have lines to add.. */
|
|
8231 {
|
|
8232 Dynarr_insert_many (cache, Dynarr_atp (internal_cache, 0),
|
|
8233 ic_elt + 1, marker);
|
|
8234 marker += (ic_elt + 1);
|
|
8235 }
|
|
8236
|
|
8237 if (startp < low_bound || low_bound == -1)
|
|
8238 low_bound = startp;
|
|
8239 startp = new_startp;
|
|
8240 if (startp > BUF_ZV (b))
|
|
8241 {
|
|
8242 w->line_cache_validation_override--;
|
|
8243 return;
|
|
8244 }
|
|
8245 }
|
|
8246 }
|
|
8247
|
|
8248 assert (Dynarr_length (cache));
|
|
8249 assert (from >= low_bound);
|
|
8250
|
|
8251 /* Readjust the high_bound to account for any changes made while
|
|
8252 correcting the low_bound. */
|
|
8253 high_bound = Dynarr_atp (cache, Dynarr_length (cache) - 1)->end;
|
|
8254
|
|
8255 if (to > high_bound)
|
|
8256 {
|
665
|
8257 Charbpos startp = Dynarr_atp (cache, Dynarr_length (cache) - 1)->end + 1;
|
428
|
8258
|
|
8259 do
|
|
8260 {
|
|
8261 regenerate_window (w, startp, point, CMOTION_DISP);
|
|
8262 update_internal_cache_list (w, CMOTION_DISP);
|
|
8263
|
|
8264 /* See comment above about regenerate_window failing. */
|
|
8265 assert (Dynarr_length (internal_cache));
|
|
8266
|
|
8267 Dynarr_add_many (cache, Dynarr_atp (internal_cache, 0),
|
|
8268 Dynarr_length (internal_cache));
|
|
8269 high_bound = Dynarr_atp (cache, Dynarr_length (cache) - 1)->end;
|
|
8270 startp = high_bound + 1;
|
|
8271 }
|
|
8272 while (to > high_bound);
|
|
8273 }
|
|
8274
|
|
8275 w->line_cache_validation_override--;
|
|
8276 assert (to <= high_bound);
|
|
8277 }
|
|
8278
|
|
8279
|
|
8280 /* Given x and y coordinates in characters, relative to a window,
|
|
8281 return the pixel location corresponding to those coordinates. The
|
|
8282 pixel location returned is the center of the given character
|
|
8283 position. The pixel values are generated relative to the window,
|
|
8284 not the frame.
|
|
8285
|
|
8286 The modeline is considered to be part of the window. */
|
|
8287
|
|
8288 void
|
|
8289 glyph_to_pixel_translation (struct window *w, int char_x, int char_y,
|
|
8290 int *pix_x, int *pix_y)
|
|
8291 {
|
|
8292 display_line_dynarr *dla = window_display_lines (w, CURRENT_DISP);
|
|
8293 int num_disp_lines, modeline;
|
|
8294 Lisp_Object window;
|
|
8295 int defheight, defwidth;
|
|
8296
|
793
|
8297 window = wrap_window (w);
|
428
|
8298 default_face_height_and_width (window, &defheight, &defwidth);
|
|
8299
|
|
8300 /* If we get a bogus value indicating somewhere above or to the left of
|
|
8301 the window, use the first window line or character position
|
|
8302 instead. */
|
|
8303 if (char_y < 0)
|
|
8304 char_y = 0;
|
|
8305 if (char_x < 0)
|
|
8306 char_x = 0;
|
|
8307
|
|
8308 num_disp_lines = Dynarr_length (dla);
|
|
8309 modeline = 0;
|
|
8310 if (num_disp_lines)
|
|
8311 {
|
|
8312 if (Dynarr_atp (dla, 0)->modeline)
|
|
8313 {
|
|
8314 num_disp_lines--;
|
|
8315 modeline = 1;
|
|
8316 }
|
|
8317 }
|
|
8318
|
|
8319 /* First check if the y position intersects the display lines. */
|
|
8320 if (char_y < num_disp_lines)
|
|
8321 {
|
|
8322 struct display_line *dl = Dynarr_atp (dla, char_y + modeline);
|
|
8323 struct display_block *db = get_display_block_from_line (dl, TEXT);
|
|
8324
|
|
8325 *pix_y = (dl->ypos - dl->ascent +
|
647
|
8326 ((dl->ascent + dl->descent - dl->clip) >> 1));
|
428
|
8327
|
|
8328 if (char_x < Dynarr_length (db->runes))
|
|
8329 {
|
|
8330 struct rune *rb = Dynarr_atp (db->runes, char_x);
|
|
8331
|
|
8332 *pix_x = rb->xpos + (rb->width >> 1);
|
|
8333 }
|
|
8334 else
|
|
8335 {
|
|
8336 int last_rune = Dynarr_length (db->runes) - 1;
|
|
8337 struct rune *rb = Dynarr_atp (db->runes, last_rune);
|
|
8338
|
|
8339 char_x -= last_rune;
|
|
8340
|
|
8341 *pix_x = rb->xpos + rb->width;
|
|
8342 *pix_x += ((char_x - 1) * defwidth);
|
|
8343 *pix_x += (defwidth >> 1);
|
|
8344 }
|
|
8345 }
|
|
8346 else
|
|
8347 {
|
|
8348 /* It didn't intersect, so extrapolate. #### For now, we include the
|
|
8349 modeline in this since we don't have true character positions in
|
|
8350 it. */
|
|
8351
|
|
8352 if (!Dynarr_length (w->face_cachels))
|
|
8353 reset_face_cachels (w);
|
|
8354
|
|
8355 char_y -= num_disp_lines;
|
|
8356
|
|
8357 if (Dynarr_length (dla))
|
|
8358 {
|
|
8359 struct display_line *dl = Dynarr_atp (dla, Dynarr_length (dla) - 1);
|
|
8360 *pix_y = dl->ypos + dl->descent - dl->clip;
|
|
8361 }
|
|
8362 else
|
|
8363 *pix_y = WINDOW_TEXT_TOP (w);
|
|
8364
|
|
8365 *pix_y += (char_y * defheight);
|
|
8366 *pix_y += (defheight >> 1);
|
|
8367
|
|
8368 *pix_x = WINDOW_TEXT_LEFT (w);
|
|
8369 /* Don't adjust by one because this is still the unadjusted value. */
|
|
8370 *pix_x += (char_x * defwidth);
|
|
8371 *pix_x += (defwidth >> 1);
|
|
8372 }
|
|
8373
|
|
8374 if (*pix_x > w->pixel_left + w->pixel_width)
|
|
8375 *pix_x = w->pixel_left + w->pixel_width;
|
|
8376 if (*pix_y > w->pixel_top + w->pixel_height)
|
|
8377 *pix_y = w->pixel_top + w->pixel_height;
|
|
8378
|
|
8379 *pix_x -= w->pixel_left;
|
|
8380 *pix_y -= w->pixel_top;
|
|
8381 }
|
|
8382
|
|
8383 /* Given a display line and a position, determine if there is a glyph
|
|
8384 there and return information about it if there is. */
|
|
8385
|
|
8386 static void
|
|
8387 get_position_object (struct display_line *dl, Lisp_Object *obj1,
|
|
8388 Lisp_Object *obj2, int x_coord, int *low_x_coord,
|
|
8389 int *high_x_coord)
|
|
8390 {
|
|
8391 struct display_block *db;
|
|
8392 int elt;
|
|
8393 int block =
|
|
8394 get_next_display_block (dl->bounds, dl->display_blocks, x_coord, 0);
|
|
8395
|
|
8396 /* We use get_next_display_block to get the actual display block
|
|
8397 that would be displayed at x_coord. */
|
|
8398
|
|
8399 if (block == NO_BLOCK)
|
|
8400 return;
|
|
8401 else
|
|
8402 db = Dynarr_atp (dl->display_blocks, block);
|
|
8403
|
|
8404 for (elt = 0; elt < Dynarr_length (db->runes); elt++)
|
|
8405 {
|
|
8406 struct rune *rb = Dynarr_atp (db->runes, elt);
|
|
8407
|
|
8408 if (rb->xpos <= x_coord && x_coord < (rb->xpos + rb->width))
|
|
8409 {
|
|
8410 if (rb->type == RUNE_DGLYPH)
|
|
8411 {
|
|
8412 *obj1 = rb->object.dglyph.glyph;
|
|
8413 *obj2 = rb->object.dglyph.extent;
|
|
8414 }
|
|
8415 else
|
|
8416 {
|
|
8417 *obj1 = Qnil;
|
|
8418 *obj2 = Qnil;
|
|
8419 }
|
|
8420
|
|
8421 if (low_x_coord)
|
|
8422 *low_x_coord = rb->xpos;
|
|
8423 if (high_x_coord)
|
|
8424 *high_x_coord = rb->xpos + rb->width;
|
|
8425
|
|
8426 return;
|
|
8427 }
|
|
8428 }
|
|
8429 }
|
|
8430
|
|
8431 #define UPDATE_CACHE_RETURN \
|
|
8432 do { \
|
|
8433 d->pixel_to_glyph_cache.valid = 1; \
|
|
8434 d->pixel_to_glyph_cache.low_x_coord = low_x_coord; \
|
|
8435 d->pixel_to_glyph_cache.high_x_coord = high_x_coord; \
|
|
8436 d->pixel_to_glyph_cache.low_y_coord = low_y_coord; \
|
|
8437 d->pixel_to_glyph_cache.high_y_coord = high_y_coord; \
|
|
8438 d->pixel_to_glyph_cache.frame = f; \
|
|
8439 d->pixel_to_glyph_cache.col = *col; \
|
|
8440 d->pixel_to_glyph_cache.row = *row; \
|
|
8441 d->pixel_to_glyph_cache.obj_x = *obj_x; \
|
|
8442 d->pixel_to_glyph_cache.obj_y = *obj_y; \
|
|
8443 d->pixel_to_glyph_cache.w = *w; \
|
826
|
8444 d->pixel_to_glyph_cache.charpos = *charpos; \
|
428
|
8445 d->pixel_to_glyph_cache.closest = *closest; \
|
|
8446 d->pixel_to_glyph_cache.modeline_closest = *modeline_closest; \
|
|
8447 d->pixel_to_glyph_cache.obj1 = *obj1; \
|
|
8448 d->pixel_to_glyph_cache.obj2 = *obj2; \
|
|
8449 d->pixel_to_glyph_cache.retval = position; \
|
|
8450 RETURN_SANS_WARNINGS position; \
|
|
8451 } while (0)
|
|
8452
|
|
8453 /* Given x and y coordinates in pixels relative to a frame, return
|
|
8454 information about what is located under those coordinates.
|
|
8455
|
|
8456 The return value will be one of:
|
|
8457
|
|
8458 OVER_TOOLBAR: over one of the 4 frame toolbars
|
|
8459 OVER_MODELINE: over a modeline
|
|
8460 OVER_BORDER: over an internal border
|
|
8461 OVER_NOTHING: over the text area, but not over text
|
|
8462 OVER_OUTSIDE: outside of the frame border
|
|
8463 OVER_TEXT: over text in the text area
|
|
8464
|
|
8465 OBJ1 is one of
|
|
8466
|
|
8467 -- a toolbar button
|
|
8468 -- a glyph
|
|
8469 -- nil if the coordinates are not over a glyph or a toolbar button.
|
|
8470
|
|
8471 OBJ2 is one of
|
|
8472
|
|
8473 -- an extent, if the coordinates are over a glyph in the text area
|
|
8474 -- nil otherwise.
|
|
8475
|
|
8476 If the coordinates are over a glyph, OBJ_X and OBJ_Y give the
|
|
8477 equivalent coordinates relative to the upper-left corner of the glyph.
|
|
8478
|
|
8479 If the coordinates are over a character, OBJ_X and OBJ_Y give the
|
|
8480 equivalent coordinates relative to the upper-left corner of the character.
|
|
8481
|
|
8482 Otherwise, OBJ_X and OBJ_Y are undefined.
|
|
8483 */
|
|
8484
|
|
8485 int
|
|
8486 pixel_to_glyph_translation (struct frame *f, int x_coord, int y_coord,
|
|
8487 int *col, int *row, int *obj_x, int *obj_y,
|
826
|
8488 struct window **w, Charbpos *charpos,
|
665
|
8489 Charbpos *closest, Charcount *modeline_closest,
|
428
|
8490 Lisp_Object *obj1, Lisp_Object *obj2)
|
|
8491 {
|
|
8492 struct device *d;
|
|
8493 struct pixel_to_glyph_translation_cache *cache;
|
|
8494 Lisp_Object window;
|
|
8495 int frm_left, frm_right, frm_top, frm_bottom;
|
|
8496 int low_x_coord, high_x_coord, low_y_coord, high_y_coord;
|
|
8497 int position = OVER_NOTHING;
|
|
8498 int device_check_failed = 0;
|
|
8499 display_line_dynarr *dla;
|
|
8500
|
|
8501 /* This is a safety valve in case this got called with a frame in
|
|
8502 the middle of being deleted. */
|
|
8503 if (!DEVICEP (f->device) || !DEVICE_LIVE_P (XDEVICE (f->device)))
|
|
8504 {
|
|
8505 device_check_failed = 1;
|
|
8506 d = NULL, cache = NULL; /* Warning suppression */
|
|
8507 }
|
|
8508 else
|
|
8509 {
|
|
8510 d = XDEVICE (f->device);
|
|
8511 cache = &d->pixel_to_glyph_cache;
|
|
8512 }
|
|
8513
|
|
8514 if (!device_check_failed
|
|
8515 && cache->valid
|
|
8516 && cache->frame == f
|
|
8517 && cache->low_x_coord <= x_coord
|
|
8518 && cache->high_x_coord > x_coord
|
|
8519 && cache->low_y_coord <= y_coord
|
|
8520 && cache->high_y_coord > y_coord)
|
|
8521 {
|
|
8522 *col = cache->col;
|
|
8523 *row = cache->row;
|
|
8524 *obj_x = cache->obj_x;
|
|
8525 *obj_y = cache->obj_y;
|
|
8526 *w = cache->w;
|
826
|
8527 *charpos = cache->charpos;
|
428
|
8528 *closest = cache->closest;
|
|
8529 *modeline_closest = cache->modeline_closest;
|
|
8530 *obj1 = cache->obj1;
|
|
8531 *obj2 = cache->obj2;
|
|
8532
|
|
8533 return cache->retval;
|
|
8534 }
|
|
8535 else
|
|
8536 {
|
|
8537 *col = 0;
|
|
8538 *row = 0;
|
|
8539 *obj_x = 0;
|
|
8540 *obj_y = 0;
|
|
8541 *w = 0;
|
826
|
8542 *charpos = 0;
|
428
|
8543 *closest = 0;
|
|
8544 *modeline_closest = -1;
|
|
8545 *obj1 = Qnil;
|
|
8546 *obj2 = Qnil;
|
|
8547
|
|
8548 low_x_coord = x_coord;
|
|
8549 high_x_coord = x_coord + 1;
|
|
8550 low_y_coord = y_coord;
|
|
8551 high_y_coord = y_coord + 1;
|
|
8552 }
|
|
8553
|
|
8554 if (device_check_failed)
|
|
8555 return OVER_NOTHING;
|
|
8556
|
|
8557 frm_left = FRAME_LEFT_BORDER_END (f);
|
|
8558 frm_right = FRAME_RIGHT_BORDER_START (f);
|
|
8559 frm_top = FRAME_TOP_BORDER_END (f);
|
|
8560 frm_bottom = FRAME_BOTTOM_BORDER_START (f);
|
|
8561
|
|
8562 /* Check if the mouse is outside of the text area actually used by
|
|
8563 redisplay. */
|
|
8564 if (y_coord < frm_top)
|
|
8565 {
|
|
8566 if (y_coord >= FRAME_TOP_BORDER_START (f))
|
|
8567 {
|
|
8568 low_y_coord = FRAME_TOP_BORDER_START (f);
|
|
8569 high_y_coord = frm_top;
|
|
8570 position = OVER_BORDER;
|
|
8571 }
|
|
8572 else if (y_coord >= 0)
|
|
8573 {
|
|
8574 low_y_coord = 0;
|
|
8575 high_y_coord = FRAME_TOP_BORDER_START (f);
|
|
8576 position = OVER_TOOLBAR;
|
|
8577 }
|
|
8578 else
|
|
8579 {
|
|
8580 low_y_coord = y_coord;
|
|
8581 high_y_coord = 0;
|
|
8582 position = OVER_OUTSIDE;
|
|
8583 }
|
|
8584 }
|
|
8585 else if (y_coord >= frm_bottom)
|
|
8586 {
|
|
8587 if (y_coord < FRAME_BOTTOM_BORDER_END (f))
|
|
8588 {
|
|
8589 low_y_coord = frm_bottom;
|
|
8590 high_y_coord = FRAME_BOTTOM_BORDER_END (f);
|
|
8591 position = OVER_BORDER;
|
|
8592 }
|
|
8593 else if (y_coord < FRAME_PIXHEIGHT (f))
|
|
8594 {
|
|
8595 low_y_coord = FRAME_BOTTOM_BORDER_END (f);
|
|
8596 high_y_coord = FRAME_PIXHEIGHT (f);
|
|
8597 position = OVER_TOOLBAR;
|
|
8598 }
|
|
8599 else
|
|
8600 {
|
|
8601 low_y_coord = FRAME_PIXHEIGHT (f);
|
|
8602 high_y_coord = y_coord;
|
|
8603 position = OVER_OUTSIDE;
|
|
8604 }
|
|
8605 }
|
|
8606
|
|
8607 if (position != OVER_TOOLBAR && position != OVER_BORDER)
|
|
8608 {
|
|
8609 if (x_coord < frm_left)
|
|
8610 {
|
|
8611 if (x_coord >= FRAME_LEFT_BORDER_START (f))
|
|
8612 {
|
|
8613 low_x_coord = FRAME_LEFT_BORDER_START (f);
|
|
8614 high_x_coord = frm_left;
|
|
8615 position = OVER_BORDER;
|
|
8616 }
|
|
8617 else if (x_coord >= 0)
|
|
8618 {
|
|
8619 low_x_coord = 0;
|
|
8620 high_x_coord = FRAME_LEFT_BORDER_START (f);
|
|
8621 position = OVER_TOOLBAR;
|
|
8622 }
|
|
8623 else
|
|
8624 {
|
|
8625 low_x_coord = x_coord;
|
|
8626 high_x_coord = 0;
|
|
8627 position = OVER_OUTSIDE;
|
|
8628 }
|
|
8629 }
|
|
8630 else if (x_coord >= frm_right)
|
|
8631 {
|
|
8632 if (x_coord < FRAME_RIGHT_BORDER_END (f))
|
|
8633 {
|
|
8634 low_x_coord = frm_right;
|
|
8635 high_x_coord = FRAME_RIGHT_BORDER_END (f);
|
|
8636 position = OVER_BORDER;
|
|
8637 }
|
|
8638 else if (x_coord < FRAME_PIXWIDTH (f))
|
|
8639 {
|
|
8640 low_x_coord = FRAME_RIGHT_BORDER_END (f);
|
|
8641 high_x_coord = FRAME_PIXWIDTH (f);
|
|
8642 position = OVER_TOOLBAR;
|
|
8643 }
|
|
8644 else
|
|
8645 {
|
|
8646 low_x_coord = FRAME_PIXWIDTH (f);
|
|
8647 high_x_coord = x_coord;
|
|
8648 position = OVER_OUTSIDE;
|
|
8649 }
|
|
8650 }
|
|
8651 }
|
|
8652
|
|
8653 #ifdef HAVE_TOOLBARS
|
|
8654 if (position == OVER_TOOLBAR)
|
|
8655 {
|
|
8656 *obj1 = toolbar_button_at_pixpos (f, x_coord, y_coord);
|
|
8657 *obj2 = Qnil;
|
|
8658 *w = 0;
|
|
8659 UPDATE_CACHE_RETURN;
|
|
8660 }
|
|
8661 #endif /* HAVE_TOOLBARS */
|
|
8662
|
|
8663 /* We still have to return the window the pointer is next to and its
|
|
8664 relative y position even if it is outside the x boundary. */
|
|
8665 if (x_coord < frm_left)
|
|
8666 x_coord = frm_left;
|
|
8667 else if (x_coord > frm_right)
|
|
8668 x_coord = frm_right;
|
|
8669
|
|
8670 /* Same in reverse. */
|
|
8671 if (y_coord < frm_top)
|
|
8672 y_coord = frm_top;
|
|
8673 else if (y_coord > frm_bottom)
|
|
8674 y_coord = frm_bottom;
|
|
8675
|
|
8676 /* Find what window the given coordinates are actually in. */
|
|
8677 window = f->root_window;
|
|
8678 *w = find_window_by_pixel_pos (x_coord, y_coord, window);
|
|
8679
|
|
8680 /* If we didn't find a window, we're done. */
|
|
8681 if (!*w)
|
|
8682 {
|
|
8683 UPDATE_CACHE_RETURN;
|
|
8684 }
|
|
8685 else if (position != OVER_NOTHING)
|
|
8686 {
|
|
8687 *closest = 0;
|
|
8688 *modeline_closest = -1;
|
|
8689
|
|
8690 if (high_y_coord <= frm_top || high_y_coord >= frm_bottom)
|
|
8691 {
|
|
8692 *w = 0;
|
|
8693 UPDATE_CACHE_RETURN;
|
|
8694 }
|
|
8695 }
|
|
8696
|
|
8697 /* Check if the window is a minibuffer but isn't active. */
|
|
8698 if (MINI_WINDOW_P (*w) && !minibuf_level)
|
|
8699 {
|
|
8700 /* Must reset the window value since some callers will ignore
|
|
8701 the return value if it is set. */
|
|
8702 *w = 0;
|
|
8703 UPDATE_CACHE_RETURN;
|
|
8704 }
|
|
8705
|
|
8706 /* See if the point is over window vertical divider */
|
|
8707 if (window_needs_vertical_divider (*w))
|
|
8708 {
|
|
8709 int div_x_high = WINDOW_RIGHT (*w);
|
|
8710 int div_x_low = div_x_high - window_divider_width (*w);
|
|
8711 int div_y_high = WINDOW_BOTTOM (*w);
|
|
8712 int div_y_low = WINDOW_TOP (*w);
|
|
8713
|
|
8714 if (div_x_low < x_coord && x_coord <= div_x_high &&
|
|
8715 div_y_low < y_coord && y_coord <= div_y_high)
|
|
8716 {
|
|
8717 low_x_coord = div_x_low;
|
|
8718 high_x_coord = div_x_high;
|
|
8719 low_y_coord = div_y_low;
|
|
8720 high_y_coord = div_y_high;
|
|
8721 position = OVER_V_DIVIDER;
|
|
8722 UPDATE_CACHE_RETURN;
|
|
8723 }
|
|
8724 }
|
|
8725
|
|
8726 dla = window_display_lines (*w, CURRENT_DISP);
|
|
8727
|
|
8728 for (*row = 0; *row < Dynarr_length (dla); (*row)++)
|
|
8729 {
|
|
8730 int really_over_nothing = 0;
|
|
8731 struct display_line *dl = Dynarr_atp (dla, *row);
|
|
8732
|
|
8733 if ((int) (dl->ypos - dl->ascent) <= y_coord
|
|
8734 && y_coord <= (int) (dl->ypos + dl->descent))
|
|
8735 {
|
|
8736 int check_margin_glyphs = 0;
|
|
8737 struct display_block *db = get_display_block_from_line (dl, TEXT);
|
|
8738 struct rune *rb = 0;
|
|
8739
|
|
8740 if (x_coord < dl->bounds.left_white
|
|
8741 || x_coord >= dl->bounds.right_white)
|
|
8742 check_margin_glyphs = 1;
|
|
8743
|
|
8744 low_y_coord = dl->ypos - dl->ascent;
|
|
8745 high_y_coord = dl->ypos + dl->descent + 1;
|
|
8746
|
|
8747 if (position == OVER_BORDER
|
|
8748 || position == OVER_OUTSIDE
|
|
8749 || check_margin_glyphs)
|
|
8750 {
|
|
8751 int x_check, left_bound;
|
|
8752
|
|
8753 if (check_margin_glyphs)
|
|
8754 {
|
|
8755 x_check = x_coord;
|
|
8756 left_bound = dl->bounds.left_white;
|
|
8757 }
|
|
8758 else
|
|
8759 {
|
|
8760 x_check = high_x_coord;
|
|
8761 left_bound = frm_left;
|
|
8762 }
|
|
8763
|
|
8764 if (Dynarr_length (db->runes))
|
|
8765 {
|
|
8766 if (x_check <= left_bound)
|
|
8767 {
|
|
8768 if (dl->modeline)
|
826
|
8769 *modeline_closest = Dynarr_atp (db->runes, 0)->charpos;
|
428
|
8770 else
|
826
|
8771 *closest = Dynarr_atp (db->runes, 0)->charpos;
|
428
|
8772 }
|
|
8773 else
|
|
8774 {
|
|
8775 if (dl->modeline)
|
|
8776 *modeline_closest =
|
|
8777 Dynarr_atp (db->runes,
|
826
|
8778 Dynarr_length (db->runes) - 1)->charpos;
|
428
|
8779 else
|
|
8780 *closest =
|
|
8781 Dynarr_atp (db->runes,
|
826
|
8782 Dynarr_length (db->runes) - 1)->charpos;
|
428
|
8783 }
|
|
8784
|
|
8785 if (dl->modeline)
|
|
8786 *modeline_closest += dl->offset;
|
|
8787 else
|
|
8788 *closest += dl->offset;
|
|
8789 }
|
|
8790 else
|
|
8791 {
|
|
8792 /* #### What should be here. */
|
|
8793 if (dl->modeline)
|
|
8794 *modeline_closest = 0;
|
|
8795 else
|
|
8796 *closest = 0;
|
|
8797 }
|
|
8798
|
|
8799 if (check_margin_glyphs)
|
|
8800 {
|
|
8801 if (x_coord < dl->bounds.left_in
|
|
8802 || x_coord >= dl->bounds.right_in)
|
|
8803 {
|
|
8804 /* If we are over the outside margins then we
|
|
8805 know the loop over the text block isn't going
|
|
8806 to accomplish anything. So we go ahead and
|
|
8807 set what information we can right here and
|
|
8808 return. */
|
|
8809 (*row)--;
|
|
8810 *obj_y = y_coord - (dl->ypos - dl->ascent);
|
|
8811 get_position_object (dl, obj1, obj2, x_coord,
|
|
8812 &low_x_coord, &high_x_coord);
|
|
8813
|
|
8814 UPDATE_CACHE_RETURN;
|
|
8815 }
|
|
8816 }
|
|
8817 else
|
|
8818 UPDATE_CACHE_RETURN;
|
|
8819 }
|
|
8820
|
|
8821 for (*col = 0; *col <= Dynarr_length (db->runes); (*col)++)
|
|
8822 {
|
|
8823 int past_end = (*col == Dynarr_length (db->runes));
|
|
8824
|
|
8825 if (!past_end)
|
|
8826 rb = Dynarr_atp (db->runes, *col);
|
|
8827
|
|
8828 if (past_end ||
|
|
8829 (rb->xpos <= x_coord && x_coord < rb->xpos + rb->width))
|
|
8830 {
|
|
8831 if (past_end)
|
|
8832 {
|
|
8833 (*col)--;
|
|
8834 rb = Dynarr_atp (db->runes, *col);
|
|
8835 }
|
|
8836
|
826
|
8837 *charpos = rb->charpos + dl->offset;
|
428
|
8838 low_x_coord = rb->xpos;
|
|
8839 high_x_coord = rb->xpos + rb->width;
|
|
8840
|
|
8841 if (rb->type == RUNE_DGLYPH)
|
|
8842 {
|
|
8843 int elt = *col + 1;
|
|
8844
|
|
8845 /* Find the first character after the glyph. */
|
|
8846 while (elt < Dynarr_length (db->runes))
|
|
8847 {
|
|
8848 if (Dynarr_atp (db->runes, elt)->type != RUNE_DGLYPH)
|
|
8849 {
|
|
8850 if (dl->modeline)
|
|
8851 *modeline_closest =
|
826
|
8852 (Dynarr_atp (db->runes, elt)->charpos +
|
428
|
8853 dl->offset);
|
|
8854 else
|
|
8855 *closest =
|
826
|
8856 (Dynarr_atp (db->runes, elt)->charpos +
|
428
|
8857 dl->offset);
|
|
8858 break;
|
|
8859 }
|
|
8860
|
|
8861 elt++;
|
|
8862 }
|
|
8863
|
|
8864 /* In this case we failed to find a non-glyph
|
|
8865 character so we return the last position
|
|
8866 displayed on the line. */
|
|
8867 if (elt == Dynarr_length (db->runes))
|
|
8868 {
|
|
8869 if (dl->modeline)
|
826
|
8870 *modeline_closest = dl->end_charpos + dl->offset;
|
428
|
8871 else
|
826
|
8872 *closest = dl->end_charpos + dl->offset;
|
428
|
8873 really_over_nothing = 1;
|
|
8874 }
|
|
8875 }
|
|
8876 else
|
|
8877 {
|
|
8878 if (dl->modeline)
|
826
|
8879 *modeline_closest = rb->charpos + dl->offset;
|
428
|
8880 else
|
826
|
8881 *closest = rb->charpos + dl->offset;
|
428
|
8882 }
|
|
8883
|
|
8884 if (dl->modeline)
|
|
8885 {
|
|
8886 *row = window_displayed_height (*w);
|
|
8887
|
|
8888 if (position == OVER_NOTHING)
|
|
8889 position = OVER_MODELINE;
|
|
8890
|
|
8891 if (rb->type == RUNE_DGLYPH)
|
|
8892 {
|
|
8893 *obj1 = rb->object.dglyph.glyph;
|
|
8894 *obj2 = rb->object.dglyph.extent;
|
|
8895 }
|
|
8896 else if (rb->type == RUNE_CHAR)
|
|
8897 {
|
|
8898 *obj1 = Qnil;
|
|
8899 *obj2 = Qnil;
|
|
8900 }
|
|
8901 else
|
|
8902 {
|
|
8903 *obj1 = Qnil;
|
|
8904 *obj2 = Qnil;
|
|
8905 }
|
|
8906
|
|
8907 UPDATE_CACHE_RETURN;
|
|
8908 }
|
|
8909 else if (past_end
|
|
8910 || (rb->type == RUNE_CHAR
|
|
8911 && rb->object.chr.ch == '\n'))
|
|
8912 {
|
|
8913 (*row)--;
|
|
8914 /* At this point we may have glyphs in the right
|
|
8915 inside margin. */
|
|
8916 if (check_margin_glyphs)
|
|
8917 get_position_object (dl, obj1, obj2, x_coord,
|
|
8918 &low_x_coord, &high_x_coord);
|
|
8919 UPDATE_CACHE_RETURN;
|
|
8920 }
|
|
8921 else
|
|
8922 {
|
|
8923 (*row)--;
|
|
8924 if (rb->type == RUNE_DGLYPH)
|
|
8925 {
|
|
8926 *obj1 = rb->object.dglyph.glyph;
|
|
8927 *obj2 = rb->object.dglyph.extent;
|
|
8928 }
|
|
8929 else if (rb->type == RUNE_CHAR)
|
|
8930 {
|
|
8931 *obj1 = Qnil;
|
|
8932 *obj2 = Qnil;
|
|
8933 }
|
|
8934 else
|
|
8935 {
|
|
8936 *obj1 = Qnil;
|
|
8937 *obj2 = Qnil;
|
|
8938 }
|
|
8939
|
|
8940 *obj_x = x_coord - rb->xpos;
|
|
8941 *obj_y = y_coord - (dl->ypos - dl->ascent);
|
|
8942
|
|
8943 /* At this point we may have glyphs in the left
|
|
8944 inside margin. */
|
|
8945 if (check_margin_glyphs)
|
|
8946 get_position_object (dl, obj1, obj2, x_coord, 0, 0);
|
|
8947
|
|
8948 if (position == OVER_NOTHING && !really_over_nothing)
|
|
8949 position = OVER_TEXT;
|
|
8950
|
|
8951 UPDATE_CACHE_RETURN;
|
|
8952 }
|
|
8953 }
|
|
8954 }
|
|
8955 }
|
|
8956 }
|
|
8957
|
|
8958 *row = Dynarr_length (dla) - 1;
|
|
8959 if (FRAME_WIN_P (f))
|
|
8960 {
|
|
8961 int bot_elt = Dynarr_length (dla) - 1;
|
|
8962
|
|
8963 if (bot_elt >= 0)
|
|
8964 {
|
|
8965 struct display_line *dl = Dynarr_atp (dla, bot_elt);
|
|
8966 int adj_area = y_coord - (dl->ypos + dl->descent);
|
|
8967 Lisp_Object lwin;
|
|
8968 int defheight;
|
|
8969
|
793
|
8970 lwin = wrap_window (*w);
|
428
|
8971 default_face_height_and_width (lwin, 0, &defheight);
|
|
8972
|
|
8973 *row += (adj_area / defheight);
|
|
8974 }
|
|
8975 }
|
|
8976
|
|
8977 /* #### This should be checked out some more to determine what
|
|
8978 should really be going on. */
|
|
8979 if (!MARKERP ((*w)->start[CURRENT_DISP]))
|
|
8980 *closest = 0;
|
|
8981 else
|
442
|
8982 *closest = end_of_last_line_may_error (*w,
|
428
|
8983 marker_position ((*w)->start[CURRENT_DISP]));
|
|
8984 *col = 0;
|
|
8985 UPDATE_CACHE_RETURN;
|
|
8986 }
|
|
8987 #undef UPDATE_CACHE_RETURN
|
|
8988
|
|
8989
|
|
8990 /***************************************************************************/
|
|
8991 /* */
|
|
8992 /* Lisp functions */
|
|
8993 /* */
|
|
8994 /***************************************************************************/
|
|
8995
|
|
8996 DEFUN ("redisplay-echo-area", Fredisplay_echo_area, 0, 0, 0, /*
|
|
8997 Ensure that all minibuffers are correctly showing the echo area.
|
|
8998 */
|
|
8999 ())
|
|
9000 {
|
|
9001 Lisp_Object devcons, concons;
|
|
9002
|
|
9003 DEVICE_LOOP_NO_BREAK (devcons, concons)
|
|
9004 {
|
|
9005 struct device *d = XDEVICE (XCAR (devcons));
|
|
9006 Lisp_Object frmcons;
|
|
9007
|
|
9008 DEVICE_FRAME_LOOP (frmcons, d)
|
|
9009 {
|
|
9010 struct frame *f = XFRAME (XCAR (frmcons));
|
|
9011
|
|
9012 if (FRAME_REPAINT_P (f) && FRAME_HAS_MINIBUF_P (f))
|
|
9013 {
|
|
9014 Lisp_Object window = FRAME_MINIBUF_WINDOW (f);
|
442
|
9015
|
|
9016 MAYBE_DEVMETH (d, frame_output_begin, (f));
|
|
9017
|
428
|
9018 /*
|
|
9019 * If the frame size has changed, there may be random
|
|
9020 * chud on the screen left from previous messages
|
|
9021 * because redisplay_frame hasn't been called yet.
|
|
9022 * Clear the screen to get rid of the potential mess.
|
|
9023 */
|
|
9024 if (f->echo_area_garbaged)
|
|
9025 {
|
442
|
9026 MAYBE_DEVMETH (d, clear_frame, (f));
|
428
|
9027 f->echo_area_garbaged = 0;
|
|
9028 }
|
|
9029 redisplay_window (window, 0);
|
442
|
9030 MAYBE_DEVMETH (d, frame_output_end, (f));
|
|
9031
|
428
|
9032 call_redisplay_end_triggers (XWINDOW (window), 0);
|
|
9033 }
|
|
9034 }
|
|
9035 }
|
|
9036
|
|
9037 return Qnil;
|
|
9038 }
|
|
9039
|
|
9040 static Lisp_Object
|
|
9041 restore_disable_preemption_value (Lisp_Object value)
|
|
9042 {
|
|
9043 disable_preemption = XINT (value);
|
|
9044 return Qnil;
|
|
9045 }
|
|
9046
|
|
9047 DEFUN ("redraw-frame", Fredraw_frame, 0, 2, 0, /*
|
|
9048 Clear frame FRAME and output again what is supposed to appear on it.
|
|
9049 FRAME defaults to the selected frame if omitted.
|
|
9050 Normally, redisplay is preempted as normal if input arrives. However,
|
|
9051 if optional second arg NO-PREEMPT is non-nil, redisplay will not stop for
|
|
9052 input and is guaranteed to proceed to completion.
|
|
9053 */
|
|
9054 (frame, no_preempt))
|
|
9055 {
|
|
9056 struct frame *f = decode_frame (frame);
|
|
9057 int count = specpdl_depth ();
|
|
9058
|
|
9059 if (!NILP (no_preempt))
|
|
9060 {
|
|
9061 record_unwind_protect (restore_disable_preemption_value,
|
|
9062 make_int (disable_preemption));
|
|
9063 disable_preemption++;
|
|
9064 }
|
|
9065
|
|
9066 f->clear = 1;
|
|
9067 redisplay_frame (f, 1);
|
|
9068
|
442
|
9069 /* See the comment in Fredisplay_frame. */
|
|
9070 RESET_CHANGED_SET_FLAGS;
|
|
9071
|
771
|
9072 return unbind_to (count);
|
428
|
9073 }
|
|
9074
|
|
9075 DEFUN ("redisplay-frame", Fredisplay_frame, 0, 2, 0, /*
|
|
9076 Ensure that FRAME's contents are correctly displayed.
|
|
9077 This differs from `redraw-frame' in that it only redraws what needs to
|
|
9078 be updated, as opposed to unconditionally clearing and redrawing
|
|
9079 the frame.
|
|
9080 FRAME defaults to the selected frame if omitted.
|
|
9081 Normally, redisplay is preempted as normal if input arrives. However,
|
|
9082 if optional second arg NO-PREEMPT is non-nil, redisplay will not stop for
|
|
9083 input and is guaranteed to proceed to completion.
|
|
9084 */
|
|
9085 (frame, no_preempt))
|
|
9086 {
|
|
9087 struct frame *f = decode_frame (frame);
|
|
9088 int count = specpdl_depth ();
|
|
9089
|
|
9090 if (!NILP (no_preempt))
|
|
9091 {
|
|
9092 record_unwind_protect (restore_disable_preemption_value,
|
|
9093 make_int (disable_preemption));
|
|
9094 disable_preemption++;
|
|
9095 }
|
|
9096
|
|
9097 redisplay_frame (f, 1);
|
|
9098
|
442
|
9099 /* If we don't reset the global redisplay flags here, subsequent
|
|
9100 changes to the display will not get registered by redisplay
|
|
9101 because it thinks it already has registered changes. If you
|
|
9102 really knew what you were doing you could confuse redisplay by
|
|
9103 calling Fredisplay_frame while updating another frame. We assume
|
|
9104 that if you know what you are doing you will not be that
|
|
9105 stupid. */
|
|
9106 RESET_CHANGED_SET_FLAGS;
|
|
9107
|
771
|
9108 return unbind_to (count);
|
428
|
9109 }
|
|
9110
|
|
9111 DEFUN ("redraw-device", Fredraw_device, 0, 2, 0, /*
|
|
9112 Clear device DEVICE and output again what is supposed to appear on it.
|
|
9113 DEVICE defaults to the selected device if omitted.
|
|
9114 Normally, redisplay is preempted as normal if input arrives. However,
|
|
9115 if optional second arg NO-PREEMPT is non-nil, redisplay will not stop for
|
|
9116 input and is guaranteed to proceed to completion.
|
|
9117 */
|
|
9118 (device, no_preempt))
|
|
9119 {
|
|
9120 struct device *d = decode_device (device);
|
|
9121 Lisp_Object frmcons;
|
|
9122 int count = specpdl_depth ();
|
|
9123
|
|
9124 if (!NILP (no_preempt))
|
|
9125 {
|
|
9126 record_unwind_protect (restore_disable_preemption_value,
|
|
9127 make_int (disable_preemption));
|
|
9128 disable_preemption++;
|
|
9129 }
|
|
9130
|
|
9131 DEVICE_FRAME_LOOP (frmcons, d)
|
|
9132 {
|
|
9133 XFRAME (XCAR (frmcons))->clear = 1;
|
|
9134 }
|
440
|
9135 redisplay_device (d, 0);
|
428
|
9136
|
442
|
9137 /* See the comment in Fredisplay_frame. */
|
|
9138 RESET_CHANGED_SET_FLAGS;
|
|
9139
|
771
|
9140 return unbind_to (count);
|
428
|
9141 }
|
|
9142
|
|
9143 DEFUN ("redisplay-device", Fredisplay_device, 0, 2, 0, /*
|
|
9144 Ensure that DEVICE's contents are correctly displayed.
|
|
9145 This differs from `redraw-device' in that it only redraws what needs to
|
|
9146 be updated, as opposed to unconditionally clearing and redrawing
|
|
9147 the device.
|
|
9148 DEVICE defaults to the selected device if omitted.
|
|
9149 Normally, redisplay is preempted as normal if input arrives. However,
|
|
9150 if optional second arg NO-PREEMPT is non-nil, redisplay will not stop for
|
|
9151 input and is guaranteed to proceed to completion.
|
|
9152 */
|
|
9153 (device, no_preempt))
|
|
9154 {
|
|
9155 struct device *d = decode_device (device);
|
|
9156 int count = specpdl_depth ();
|
|
9157
|
|
9158 if (!NILP (no_preempt))
|
|
9159 {
|
|
9160 record_unwind_protect (restore_disable_preemption_value,
|
|
9161 make_int (disable_preemption));
|
|
9162 disable_preemption++;
|
|
9163 }
|
|
9164
|
440
|
9165 redisplay_device (d, 0);
|
428
|
9166
|
442
|
9167 /* See the comment in Fredisplay_frame. */
|
|
9168 RESET_CHANGED_SET_FLAGS;
|
|
9169
|
771
|
9170 return unbind_to (count);
|
428
|
9171 }
|
|
9172
|
|
9173 /* Big lie. Big lie. This will force all modelines to be updated
|
|
9174 regardless if the all flag is set or not. It remains in existence
|
|
9175 solely for backwards compatibility. */
|
|
9176 DEFUN ("redraw-modeline", Fredraw_modeline, 0, 1, 0, /*
|
|
9177 Force the modeline of the current buffer to be redisplayed.
|
|
9178 With optional non-nil ALL, force redisplay of all modelines.
|
|
9179 */
|
|
9180 (all))
|
|
9181 {
|
|
9182 MARK_MODELINE_CHANGED;
|
|
9183 return Qnil;
|
|
9184 }
|
|
9185
|
|
9186 DEFUN ("force-cursor-redisplay", Fforce_cursor_redisplay, 0, 1, 0, /*
|
|
9187 Force an immediate update of the cursor on FRAME.
|
|
9188 FRAME defaults to the selected frame if omitted.
|
|
9189 */
|
|
9190 (frame))
|
|
9191 {
|
|
9192 redisplay_redraw_cursor (decode_frame (frame), 1);
|
|
9193 return Qnil;
|
|
9194 }
|
|
9195
|
|
9196
|
|
9197 /***************************************************************************/
|
|
9198 /* */
|
|
9199 /* Lisp-variable change triggers */
|
|
9200 /* */
|
|
9201 /***************************************************************************/
|
|
9202
|
|
9203 static void
|
|
9204 margin_width_changed_in_frame (Lisp_Object specifier, struct frame *f,
|
|
9205 Lisp_Object oldval)
|
|
9206 {
|
|
9207 /* Nothing to be done? */
|
|
9208 }
|
|
9209
|
|
9210 int
|
|
9211 redisplay_variable_changed (Lisp_Object sym, Lisp_Object *val,
|
|
9212 Lisp_Object in_object, int flags)
|
|
9213 {
|
|
9214 /* #### clip_changed should really be renamed something like
|
|
9215 global_redisplay_change. */
|
|
9216 MARK_CLIP_CHANGED;
|
|
9217 return 0;
|
|
9218 }
|
|
9219
|
|
9220 /* This is called if the built-in glyphs have their properties
|
|
9221 changed. */
|
|
9222 void
|
|
9223 redisplay_glyph_changed (Lisp_Object glyph, Lisp_Object property,
|
|
9224 Lisp_Object locale)
|
|
9225 {
|
|
9226 if (WINDOWP (locale))
|
|
9227 {
|
|
9228 MARK_FRAME_GLYPHS_CHANGED (XFRAME (WINDOW_FRAME (XWINDOW (locale))));
|
|
9229 }
|
|
9230 else if (FRAMEP (locale))
|
|
9231 {
|
|
9232 MARK_FRAME_GLYPHS_CHANGED (XFRAME (locale));
|
|
9233 }
|
|
9234 else if (DEVICEP (locale))
|
|
9235 {
|
|
9236 Lisp_Object frmcons;
|
|
9237 DEVICE_FRAME_LOOP (frmcons, XDEVICE (locale))
|
|
9238 MARK_FRAME_GLYPHS_CHANGED (XFRAME (XCAR (frmcons)));
|
|
9239 }
|
|
9240 else if (CONSOLEP (locale))
|
|
9241 {
|
|
9242 Lisp_Object frmcons, devcons;
|
|
9243 CONSOLE_FRAME_LOOP_NO_BREAK (frmcons, devcons, XCONSOLE (locale))
|
|
9244 MARK_FRAME_GLYPHS_CHANGED (XFRAME (XCAR (frmcons)));
|
|
9245 }
|
|
9246 else /* global or buffer */
|
|
9247 {
|
|
9248 Lisp_Object frmcons, devcons, concons;
|
|
9249 FRAME_LOOP_NO_BREAK (frmcons, devcons, concons)
|
|
9250 MARK_FRAME_GLYPHS_CHANGED (XFRAME (XCAR (frmcons)));
|
|
9251 }
|
|
9252 }
|
|
9253
|
|
9254 static void
|
|
9255 text_cursor_visible_p_changed (Lisp_Object specifier, struct window *w,
|
|
9256 Lisp_Object oldval)
|
|
9257 {
|
|
9258 if (XFRAME (w->frame)->init_finished)
|
|
9259 Fforce_cursor_redisplay (w->frame);
|
|
9260 }
|
|
9261
|
|
9262 #ifdef MEMORY_USAGE_STATS
|
|
9263
|
|
9264
|
|
9265 /***************************************************************************/
|
|
9266 /* */
|
|
9267 /* memory usage computation */
|
|
9268 /* */
|
|
9269 /***************************************************************************/
|
|
9270
|
|
9271 static int
|
|
9272 compute_rune_dynarr_usage (rune_dynarr *dyn, struct overhead_stats *ovstats)
|
|
9273 {
|
|
9274 return dyn ? Dynarr_memory_usage (dyn, ovstats) : 0;
|
|
9275 }
|
|
9276
|
|
9277 static int
|
|
9278 compute_display_block_dynarr_usage (display_block_dynarr *dyn,
|
|
9279 struct overhead_stats *ovstats)
|
|
9280 {
|
|
9281 int total, i;
|
|
9282
|
|
9283 if (!dyn)
|
|
9284 return 0;
|
|
9285
|
|
9286 total = Dynarr_memory_usage (dyn, ovstats);
|
|
9287 for (i = 0; i < Dynarr_largest (dyn); i++)
|
|
9288 total += compute_rune_dynarr_usage (Dynarr_at (dyn, i).runes, ovstats);
|
|
9289
|
|
9290 return total;
|
|
9291 }
|
|
9292
|
|
9293 static int
|
|
9294 compute_glyph_block_dynarr_usage (glyph_block_dynarr *dyn,
|
|
9295 struct overhead_stats *ovstats)
|
|
9296 {
|
|
9297 return dyn ? Dynarr_memory_usage (dyn, ovstats) : 0;
|
|
9298 }
|
|
9299
|
|
9300 int
|
|
9301 compute_display_line_dynarr_usage (display_line_dynarr *dyn,
|
|
9302 struct overhead_stats *ovstats)
|
|
9303 {
|
|
9304 int total, i;
|
|
9305
|
|
9306 if (!dyn)
|
|
9307 return 0;
|
|
9308
|
|
9309 total = Dynarr_memory_usage (dyn, ovstats);
|
|
9310 for (i = 0; i < Dynarr_largest (dyn); i++)
|
|
9311 {
|
|
9312 struct display_line *dl = &Dynarr_at (dyn, i);
|
|
9313 total += compute_display_block_dynarr_usage(dl->display_blocks, ovstats);
|
|
9314 total += compute_glyph_block_dynarr_usage (dl->left_glyphs, ovstats);
|
|
9315 total += compute_glyph_block_dynarr_usage (dl->right_glyphs, ovstats);
|
|
9316 }
|
|
9317
|
|
9318 return total;
|
|
9319 }
|
|
9320
|
|
9321 int
|
|
9322 compute_line_start_cache_dynarr_usage (line_start_cache_dynarr *dyn,
|
|
9323 struct overhead_stats *ovstats)
|
|
9324 {
|
|
9325 return dyn ? Dynarr_memory_usage (dyn, ovstats) : 0;
|
|
9326 }
|
|
9327
|
|
9328 #endif /* MEMORY_USAGE_STATS */
|
|
9329
|
800
|
9330 static int
|
|
9331 sledgehammer_check_redisplay_structs_1 (struct window *w, void *closure)
|
|
9332 {
|
|
9333 int i, j;
|
|
9334 display_line_dynarr *dl;
|
|
9335
|
|
9336 dl = window_display_lines (w, CURRENT_DISP);
|
|
9337
|
|
9338 for (i = 0; i < Dynarr_largest (dl); i++)
|
|
9339 for (j = i + 1; j < Dynarr_largest (dl); j++)
|
|
9340 assert (Dynarr_atp (dl, i)->display_blocks !=
|
|
9341 Dynarr_atp (dl, j)->display_blocks);
|
|
9342
|
|
9343 dl = window_display_lines (w, DESIRED_DISP);
|
|
9344
|
|
9345 for (i = 0; i < Dynarr_largest (dl); i++)
|
|
9346 for (j = i + 1; j < Dynarr_largest (dl); j++)
|
|
9347 assert (Dynarr_atp (dl, i)->display_blocks !=
|
|
9348 Dynarr_atp (dl, j)->display_blocks);
|
|
9349
|
|
9350 return 0;
|
|
9351 }
|
|
9352
|
|
9353 static void
|
|
9354 sledgehammer_check_redisplay_structs (void)
|
|
9355 {
|
|
9356 map_windows (0, sledgehammer_check_redisplay_structs_1, NULL);
|
|
9357 }
|
|
9358
|
428
|
9359
|
|
9360 /***************************************************************************/
|
|
9361 /* */
|
|
9362 /* initialization */
|
|
9363 /* */
|
|
9364 /***************************************************************************/
|
|
9365
|
|
9366 void
|
|
9367 init_redisplay (void)
|
|
9368 {
|
|
9369 disable_preemption = 0;
|
|
9370 preemption_count = 0;
|
|
9371 max_preempts = INIT_MAX_PREEMPTS;
|
|
9372
|
|
9373 #ifndef PDUMP
|
|
9374 if (!initialized)
|
|
9375 #endif
|
|
9376 {
|
440
|
9377 if (!cmotion_display_lines)
|
|
9378 cmotion_display_lines = Dynarr_new (display_line);
|
665
|
9379 if (!mode_spec_intbyte_string)
|
|
9380 mode_spec_intbyte_string = Dynarr_new (Intbyte);
|
440
|
9381 if (!formatted_string_extent_dynarr)
|
|
9382 formatted_string_extent_dynarr = Dynarr_new (EXTENT);
|
|
9383 if (!formatted_string_extent_start_dynarr)
|
|
9384 formatted_string_extent_start_dynarr = Dynarr_new (Bytecount);
|
|
9385 if (!formatted_string_extent_end_dynarr)
|
|
9386 formatted_string_extent_end_dynarr = Dynarr_new (Bytecount);
|
|
9387 if (!internal_cache)
|
|
9388 internal_cache = Dynarr_new (line_start_cache);
|
428
|
9389 }
|
|
9390
|
|
9391 /* window system is nil when in -batch mode */
|
|
9392 if (!initialized || noninteractive)
|
|
9393 return;
|
|
9394
|
|
9395 /* If the user wants to use a window system, we shouldn't bother
|
|
9396 initializing the terminal. This is especially important when the
|
|
9397 terminal is so dumb that emacs gives up before and doesn't bother
|
|
9398 using the window system.
|
|
9399
|
|
9400 If the DISPLAY environment variable is set, try to use X, and die
|
|
9401 with an error message if that doesn't work. */
|
|
9402
|
|
9403 #ifdef HAVE_X_WINDOWS
|
|
9404 if (!strcmp (display_use, "x"))
|
|
9405 {
|
|
9406 /* Some stuff checks this way early. */
|
|
9407 Vwindow_system = Qx;
|
|
9408 Vinitial_window_system = Qx;
|
|
9409 return;
|
|
9410 }
|
|
9411 #endif /* HAVE_X_WINDOWS */
|
|
9412
|
462
|
9413 #ifdef HAVE_GTK
|
|
9414 if (!strcmp (display_use, "gtk"))
|
|
9415 {
|
|
9416 Vwindow_system = Qgtk;
|
|
9417 Vinitial_window_system = Qgtk;
|
|
9418 return;
|
|
9419 }
|
|
9420 #endif
|
|
9421
|
428
|
9422 #ifdef HAVE_MS_WINDOWS
|
|
9423 if (!strcmp (display_use, "mswindows"))
|
|
9424 {
|
|
9425 /* Some stuff checks this way early. */
|
|
9426 Vwindow_system = Qmswindows;
|
|
9427 Vinitial_window_system = Qmswindows;
|
|
9428 return;
|
|
9429 }
|
|
9430 #endif /* HAVE_MS_WINDOWS */
|
|
9431
|
|
9432 #ifdef HAVE_TTY
|
|
9433 /* If no window system has been specified, try to use the terminal. */
|
|
9434 if (!isatty (0))
|
|
9435 {
|
|
9436 stderr_out ("XEmacs: standard input is not a tty\n");
|
|
9437 exit (1);
|
|
9438 }
|
|
9439
|
|
9440 /* Look at the TERM variable */
|
771
|
9441 if (!egetenv ("TERM"))
|
428
|
9442 {
|
|
9443 stderr_out ("Please set the environment variable TERM; see tset(1).\n");
|
|
9444 exit (1);
|
|
9445 }
|
|
9446
|
|
9447 Vinitial_window_system = Qtty;
|
|
9448 return;
|
|
9449 #else /* not HAVE_TTY */
|
|
9450 /* No DISPLAY specified, and no TTY support. */
|
|
9451 stderr_out ("XEmacs: Cannot open display.\n\
|
|
9452 Please set the environmental variable DISPLAY to an appropriate value.\n");
|
|
9453 exit (1);
|
|
9454 #endif
|
|
9455 /* Unreached. */
|
|
9456 }
|
|
9457
|
|
9458 void
|
|
9459 syms_of_redisplay (void)
|
|
9460 {
|
563
|
9461 DEFSYMBOL (Qcursor_in_echo_area);
|
428
|
9462 #ifndef INHIBIT_REDISPLAY_HOOKS
|
563
|
9463 DEFSYMBOL (Qpre_redisplay_hook);
|
|
9464 DEFSYMBOL (Qpost_redisplay_hook);
|
428
|
9465 #endif /* INHIBIT_REDISPLAY_HOOKS */
|
563
|
9466 DEFSYMBOL (Qdisplay_warning_buffer);
|
|
9467 DEFSYMBOL (Qbar_cursor);
|
|
9468 DEFSYMBOL (Qredisplay_end_trigger_functions);
|
|
9469 DEFSYMBOL (Qtop_bottom);
|
|
9470 DEFSYMBOL (Qbuffer_list_changed_hook);
|
428
|
9471
|
|
9472 DEFSUBR (Fredisplay_echo_area);
|
|
9473 DEFSUBR (Fredraw_frame);
|
|
9474 DEFSUBR (Fredisplay_frame);
|
|
9475 DEFSUBR (Fredraw_device);
|
|
9476 DEFSUBR (Fredisplay_device);
|
|
9477 DEFSUBR (Fredraw_modeline);
|
|
9478 DEFSUBR (Fforce_cursor_redisplay);
|
|
9479 }
|
|
9480
|
|
9481 void
|
|
9482 vars_of_redisplay (void)
|
|
9483 {
|
|
9484
|
|
9485 #if 0
|
|
9486 staticpro (&last_arrow_position);
|
|
9487 staticpro (&last_arrow_string);
|
|
9488 last_arrow_position = Qnil;
|
|
9489 last_arrow_string = Qnil;
|
|
9490 #endif /* 0 */
|
|
9491
|
|
9492 /* #### Probably temporary */
|
|
9493 DEFVAR_INT ("redisplay-cache-adjustment", &cache_adjustment /*
|
|
9494 \(Temporary) Setting this will impact the performance of the internal
|
|
9495 line start cache.
|
|
9496 */ );
|
|
9497 cache_adjustment = 2;
|
|
9498
|
|
9499 DEFVAR_INT_MAGIC ("pixel-vertical-clip-threshold", &vertical_clip /*
|
|
9500 Minimum pixel height for clipped bottom display line.
|
|
9501 A clipped line shorter than this won't be displayed.
|
|
9502 */ ,
|
|
9503 redisplay_variable_changed);
|
|
9504 vertical_clip = 5;
|
|
9505
|
|
9506 DEFVAR_INT_MAGIC ("pixel-horizontal-clip-threshold", &horizontal_clip /*
|
|
9507 Minimum visible area for clipped glyphs at right boundary.
|
|
9508 Clipped glyphs shorter than this won't be displayed.
|
|
9509 Only pixmap glyph instances are currently allowed to be clipped.
|
|
9510 */ ,
|
|
9511 redisplay_variable_changed);
|
|
9512 horizontal_clip = 5;
|
|
9513
|
|
9514 DEFVAR_LISP ("global-mode-string", &Vglobal_mode_string /*
|
|
9515 String displayed by modeline-format's "%m" specification.
|
|
9516 */ );
|
|
9517 Vglobal_mode_string = Qnil;
|
|
9518
|
|
9519 DEFVAR_LISP_MAGIC ("overlay-arrow-position", &Voverlay_arrow_position /*
|
|
9520 Marker for where to display an arrow on top of the buffer text.
|
|
9521 This must be the beginning of a line in order to work.
|
|
9522 See also `overlay-arrow-string'.
|
|
9523 */ ,
|
|
9524 redisplay_variable_changed);
|
|
9525 Voverlay_arrow_position = Qnil;
|
|
9526
|
|
9527 DEFVAR_LISP_MAGIC ("overlay-arrow-string", &Voverlay_arrow_string /*
|
442
|
9528 String or glyph to display as an arrow. See also `overlay-arrow-position'.
|
444
|
9529 \(Note that despite the name of this variable, it can be set to a glyph as
|
442
|
9530 well as a string.)
|
428
|
9531 */ ,
|
|
9532 redisplay_variable_changed);
|
|
9533 Voverlay_arrow_string = Qnil;
|
|
9534
|
|
9535 DEFVAR_INT ("scroll-step", &scroll_step /*
|
|
9536 *The number of lines to try scrolling a window by when point moves out.
|
|
9537 If that fails to bring point back on frame, point is centered instead.
|
|
9538 If this is zero, point is always centered after it moves off screen.
|
|
9539 */ );
|
|
9540 scroll_step = 0;
|
|
9541
|
|
9542 DEFVAR_INT ("scroll-conservatively", &scroll_conservatively /*
|
|
9543 *Scroll up to this many lines, to bring point back on screen.
|
|
9544 */ );
|
|
9545 scroll_conservatively = 0;
|
|
9546
|
|
9547 DEFVAR_BOOL_MAGIC ("truncate-partial-width-windows",
|
|
9548 &truncate_partial_width_windows /*
|
|
9549 *Non-nil means truncate lines in all windows less than full frame wide.
|
|
9550 */ ,
|
|
9551 redisplay_variable_changed);
|
|
9552 truncate_partial_width_windows = 1;
|
|
9553
|
442
|
9554 DEFVAR_LISP ("visible-bell", &Vvisible_bell /*
|
|
9555 *Non-nil substitutes a visual signal for the audible bell.
|
|
9556
|
|
9557 Default behavior is to flash the whole screen. On some platforms,
|
|
9558 special effects are available using the following values:
|
|
9559
|
|
9560 'display Flash the whole screen (ie, the default behavior).
|
|
9561 'top-bottom Flash only the top and bottom lines of the selected frame.
|
|
9562
|
|
9563 When effects are unavailable on a platform, the visual bell is the
|
|
9564 default, whole screen. (Currently only X supports any special effects.)
|
428
|
9565 */ );
|
442
|
9566 Vvisible_bell = Qnil;
|
428
|
9567
|
|
9568 DEFVAR_BOOL ("no-redraw-on-reenter", &no_redraw_on_reenter /*
|
|
9569 *Non-nil means no need to redraw entire frame after suspending.
|
|
9570 A non-nil value is useful if the terminal can automatically preserve
|
|
9571 Emacs's frame display when you reenter Emacs.
|
|
9572 It is up to you to set this variable if your terminal can do that.
|
|
9573 */ );
|
|
9574 no_redraw_on_reenter = 0;
|
|
9575
|
|
9576 DEFVAR_LISP ("window-system", &Vwindow_system /*
|
|
9577 A symbol naming the window-system under which Emacs is running,
|
|
9578 such as `x', or nil if emacs is running on an ordinary terminal.
|
|
9579
|
|
9580 Do not use this variable, except for GNU Emacs compatibility, as it
|
|
9581 gives wrong values in a multi-device environment. Use `console-type'
|
|
9582 instead.
|
|
9583 */ );
|
|
9584 Vwindow_system = Qnil;
|
|
9585
|
|
9586 /* #### Temporary shit until window-system is eliminated. */
|
|
9587 DEFVAR_CONST_LISP ("initial-window-system", &Vinitial_window_system /*
|
|
9588 DON'T TOUCH
|
|
9589 */ );
|
|
9590 Vinitial_window_system = Qnil;
|
|
9591
|
|
9592 DEFVAR_BOOL ("cursor-in-echo-area", &cursor_in_echo_area /*
|
|
9593 Non-nil means put cursor in minibuffer, at end of any message there.
|
|
9594 */ );
|
|
9595 cursor_in_echo_area = 0;
|
|
9596
|
|
9597 /* #### Shouldn't this be generalized as follows:
|
|
9598
|
|
9599 if nil, use block cursor.
|
|
9600 if a number, use a bar cursor of that width.
|
|
9601 Otherwise, use a 1-pixel bar cursor.
|
|
9602
|
|
9603 #### Or better yet, this variable should be trashed entirely
|
|
9604 (use a Lisp-magic variable to maintain compatibility)
|
|
9605 and a specifier `cursor-shape' added, which allows a block
|
|
9606 cursor, a bar cursor, a flashing block or bar cursor,
|
|
9607 maybe a caret cursor, etc. */
|
|
9608
|
|
9609 DEFVAR_LISP ("bar-cursor", &Vbar_cursor /*
|
448
|
9610 *Use vertical bar cursor if non-nil. If t width is 1 pixel, otherwise 2.
|
428
|
9611 */ );
|
|
9612 Vbar_cursor = Qnil;
|
|
9613
|
|
9614 #ifndef INHIBIT_REDISPLAY_HOOKS
|
|
9615 xxDEFVAR_LISP ("pre-redisplay-hook", &Vpre_redisplay_hook /*
|
|
9616 Function or functions to run before every redisplay.
|
|
9617 */ );
|
|
9618 Vpre_redisplay_hook = Qnil;
|
|
9619
|
|
9620 xxDEFVAR_LISP ("post-redisplay-hook", &Vpost_redisplay_hook /*
|
|
9621 Function or functions to run after every redisplay.
|
|
9622 */ );
|
|
9623 Vpost_redisplay_hook = Qnil;
|
|
9624 #endif /* INHIBIT_REDISPLAY_HOOKS */
|
|
9625
|
442
|
9626 DEFVAR_LISP ("buffer-list-changed-hook", &Vbuffer_list_changed_hook /*
|
|
9627 Function or functions to call when a frame's buffer list has changed.
|
|
9628 This is called during redisplay, before redisplaying each frame.
|
|
9629 Functions on this hook are called with one argument, the frame.
|
|
9630 */ );
|
|
9631 Vbuffer_list_changed_hook = Qnil;
|
|
9632
|
428
|
9633 DEFVAR_INT ("display-warning-tick", &display_warning_tick /*
|
|
9634 Bump this to tell the C code to call `display-warning-buffer'
|
|
9635 at next redisplay. You should not normally change this; the function
|
|
9636 `display-warning' automatically does this at appropriate times.
|
|
9637 */ );
|
|
9638 display_warning_tick = 0;
|
|
9639
|
|
9640 DEFVAR_BOOL ("inhibit-warning-display", &inhibit_warning_display /*
|
|
9641 Non-nil means inhibit display of warning messages.
|
|
9642 You should *bind* this, not set it. Any pending warning messages
|
|
9643 will be displayed when the binding no longer applies.
|
|
9644 */ );
|
|
9645 /* reset to 0 by startup.el after the splash screen has displayed.
|
|
9646 This way, the warnings don't obliterate the splash screen. */
|
|
9647 inhibit_warning_display = 1;
|
|
9648
|
|
9649 DEFVAR_LISP ("window-size-change-functions",
|
|
9650 &Vwindow_size_change_functions /*
|
|
9651 Not currently implemented.
|
|
9652 Functions called before redisplay, if window sizes have changed.
|
|
9653 The value should be a list of functions that take one argument.
|
|
9654 Just before redisplay, for each frame, if any of its windows have changed
|
|
9655 size since the last redisplay, or have been split or deleted,
|
|
9656 all the functions in the list are called, with the frame as argument.
|
|
9657 */ );
|
|
9658 Vwindow_size_change_functions = Qnil;
|
|
9659
|
|
9660 DEFVAR_LISP ("window-scroll-functions", &Vwindow_scroll_functions /*
|
|
9661 Not currently implemented.
|
|
9662 Functions to call before redisplaying a window with scrolling.
|
|
9663 Each function is called with two arguments, the window
|
|
9664 and its new display-start position. Note that the value of `window-end'
|
|
9665 is not valid when these functions are called.
|
|
9666 */ );
|
|
9667 Vwindow_scroll_functions = Qnil;
|
|
9668
|
|
9669 DEFVAR_LISP ("redisplay-end-trigger-functions",
|
|
9670 &Vredisplay_end_trigger_functions /*
|
|
9671 See `set-window-redisplay-end-trigger'.
|
|
9672 */ );
|
|
9673 Vredisplay_end_trigger_functions = Qnil;
|
|
9674
|
|
9675 DEFVAR_BOOL ("column-number-start-at-one", &column_number_start_at_one /*
|
|
9676 *Non-nil means column display number starts at 1.
|
|
9677 */ );
|
|
9678 column_number_start_at_one = 0;
|
|
9679 }
|
|
9680
|
|
9681 void
|
|
9682 specifier_vars_of_redisplay (void)
|
|
9683 {
|
|
9684 DEFVAR_SPECIFIER ("left-margin-width", &Vleft_margin_width /*
|
|
9685 *Width of left margin.
|
|
9686 This is a specifier; use `set-specifier' to change it.
|
|
9687 */ );
|
|
9688 Vleft_margin_width = Fmake_specifier (Qnatnum);
|
|
9689 set_specifier_fallback (Vleft_margin_width, list1 (Fcons (Qnil, Qzero)));
|
|
9690 set_specifier_caching (Vleft_margin_width,
|
438
|
9691 offsetof (struct window, left_margin_width),
|
428
|
9692 some_window_value_changed,
|
438
|
9693 offsetof (struct frame, left_margin_width),
|
444
|
9694 margin_width_changed_in_frame, 0);
|
428
|
9695
|
|
9696 DEFVAR_SPECIFIER ("right-margin-width", &Vright_margin_width /*
|
|
9697 *Width of right margin.
|
|
9698 This is a specifier; use `set-specifier' to change it.
|
|
9699 */ );
|
|
9700 Vright_margin_width = Fmake_specifier (Qnatnum);
|
|
9701 set_specifier_fallback (Vright_margin_width, list1 (Fcons (Qnil, Qzero)));
|
|
9702 set_specifier_caching (Vright_margin_width,
|
438
|
9703 offsetof (struct window, right_margin_width),
|
428
|
9704 some_window_value_changed,
|
438
|
9705 offsetof (struct frame, right_margin_width),
|
444
|
9706 margin_width_changed_in_frame, 0);
|
428
|
9707
|
|
9708 DEFVAR_SPECIFIER ("minimum-line-ascent", &Vminimum_line_ascent /*
|
|
9709 *Minimum ascent height of lines.
|
|
9710 This is a specifier; use `set-specifier' to change it.
|
|
9711 */ );
|
|
9712 Vminimum_line_ascent = Fmake_specifier (Qnatnum);
|
|
9713 set_specifier_fallback (Vminimum_line_ascent, list1 (Fcons (Qnil, Qzero)));
|
|
9714 set_specifier_caching (Vminimum_line_ascent,
|
438
|
9715 offsetof (struct window, minimum_line_ascent),
|
428
|
9716 some_window_value_changed,
|
444
|
9717 0, 0, 0);
|
428
|
9718
|
|
9719 DEFVAR_SPECIFIER ("minimum-line-descent", &Vminimum_line_descent /*
|
|
9720 *Minimum descent height of lines.
|
|
9721 This is a specifier; use `set-specifier' to change it.
|
|
9722 */ );
|
|
9723 Vminimum_line_descent = Fmake_specifier (Qnatnum);
|
|
9724 set_specifier_fallback (Vminimum_line_descent, list1 (Fcons (Qnil, Qzero)));
|
|
9725 set_specifier_caching (Vminimum_line_descent,
|
438
|
9726 offsetof (struct window, minimum_line_descent),
|
428
|
9727 some_window_value_changed,
|
444
|
9728 0, 0, 0);
|
428
|
9729
|
|
9730 DEFVAR_SPECIFIER ("use-left-overflow", &Vuse_left_overflow /*
|
|
9731 *Non-nil means use the left outside margin as extra whitespace when
|
|
9732 displaying 'whitespace or 'inside-margin glyphs.
|
|
9733 This is a specifier; use `set-specifier' to change it.
|
|
9734 */ );
|
|
9735 Vuse_left_overflow = Fmake_specifier (Qboolean);
|
|
9736 set_specifier_fallback (Vuse_left_overflow, list1 (Fcons (Qnil, Qnil)));
|
|
9737 set_specifier_caching (Vuse_left_overflow,
|
438
|
9738 offsetof (struct window, use_left_overflow),
|
428
|
9739 some_window_value_changed,
|
444
|
9740 0, 0, 0);
|
428
|
9741
|
|
9742 DEFVAR_SPECIFIER ("use-right-overflow", &Vuse_right_overflow /*
|
|
9743 *Non-nil means use the right outside margin as extra whitespace when
|
|
9744 displaying 'whitespace or 'inside-margin glyphs.
|
|
9745 This is a specifier; use `set-specifier' to change it.
|
|
9746 */ );
|
|
9747 Vuse_right_overflow = Fmake_specifier (Qboolean);
|
|
9748 set_specifier_fallback (Vuse_right_overflow, list1 (Fcons (Qnil, Qnil)));
|
|
9749 set_specifier_caching (Vuse_right_overflow,
|
438
|
9750 offsetof (struct window, use_right_overflow),
|
428
|
9751 some_window_value_changed,
|
444
|
9752 0, 0, 0);
|
428
|
9753
|
|
9754 DEFVAR_SPECIFIER ("text-cursor-visible-p", &Vtext_cursor_visible_p /*
|
|
9755 *Non-nil means the text cursor is visible (this is usually the case).
|
|
9756 This is a specifier; use `set-specifier' to change it.
|
|
9757 */ );
|
|
9758 Vtext_cursor_visible_p = Fmake_specifier (Qboolean);
|
|
9759 set_specifier_fallback (Vtext_cursor_visible_p, list1 (Fcons (Qnil, Qt)));
|
|
9760 set_specifier_caching (Vtext_cursor_visible_p,
|
438
|
9761 offsetof (struct window, text_cursor_visible_p),
|
428
|
9762 text_cursor_visible_p_changed,
|
444
|
9763 0, 0, 0);
|
428
|
9764
|
|
9765 }
|