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