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