Fix redisplay of frame after loading new fonts
[emacs.git] / src / xdisp.c
blobc2f0b747c6ea2bc72fa3f999de035299053de237
1 /* Display generation from window structure and buffer text.
3 Copyright (C) 1985-1988, 1993-1995, 1997-2015 Free Software Foundation,
4 Inc.
6 This file is part of GNU Emacs.
8 GNU Emacs is free software: you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation, either version 3 of the License, or
11 (at your option) any later version.
13 GNU Emacs is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
21 /* New redisplay written by Gerd Moellmann <gerd@gnu.org>.
23 Redisplay.
25 Emacs separates the task of updating the display from code
26 modifying global state, e.g. buffer text. This way functions
27 operating on buffers don't also have to be concerned with updating
28 the display.
30 Updating the display is triggered by the Lisp interpreter when it
31 decides it's time to do it. This is done either automatically for
32 you as part of the interpreter's command loop or as the result of
33 calling Lisp functions like `sit-for'. The C function `redisplay'
34 in xdisp.c is the only entry into the inner redisplay code.
36 The following diagram shows how redisplay code is invoked. As you
37 can see, Lisp calls redisplay and vice versa. Under window systems
38 like X, some portions of the redisplay code are also called
39 asynchronously during mouse movement or expose events. It is very
40 important that these code parts do NOT use the C library (malloc,
41 free) because many C libraries under Unix are not reentrant. They
42 may also NOT call functions of the Lisp interpreter which could
43 change the interpreter's state. If you don't follow these rules,
44 you will encounter bugs which are very hard to explain.
46 +--------------+ redisplay +----------------+
47 | Lisp machine |---------------->| Redisplay code |<--+
48 +--------------+ (xdisp.c) +----------------+ |
49 ^ | |
50 +----------------------------------+ |
51 Don't use this path when called |
52 asynchronously! |
54 expose_window (asynchronous) |
56 X expose events -----+
58 What does redisplay do? Obviously, it has to figure out somehow what
59 has been changed since the last time the display has been updated,
60 and to make these changes visible. Preferably it would do that in
61 a moderately intelligent way, i.e. fast.
63 Changes in buffer text can be deduced from window and buffer
64 structures, and from some global variables like `beg_unchanged' and
65 `end_unchanged'. The contents of the display are additionally
66 recorded in a `glyph matrix', a two-dimensional matrix of glyph
67 structures. Each row in such a matrix corresponds to a line on the
68 display, and each glyph in a row corresponds to a column displaying
69 a character, an image, or what else. This matrix is called the
70 `current glyph matrix' or `current matrix' in redisplay
71 terminology.
73 For buffer parts that have been changed since the last update, a
74 second glyph matrix is constructed, the so called `desired glyph
75 matrix' or short `desired matrix'. Current and desired matrix are
76 then compared to find a cheap way to update the display, e.g. by
77 reusing part of the display by scrolling lines.
79 You will find a lot of redisplay optimizations when you start
80 looking at the innards of redisplay. The overall goal of all these
81 optimizations is to make redisplay fast because it is done
82 frequently. Some of these optimizations are implemented by the
83 following functions:
85 . try_cursor_movement
87 This function tries to update the display if the text in the
88 window did not change and did not scroll, only point moved, and
89 it did not move off the displayed portion of the text.
91 . try_window_reusing_current_matrix
93 This function reuses the current matrix of a window when text
94 has not changed, but the window start changed (e.g., due to
95 scrolling).
97 . try_window_id
99 This function attempts to redisplay a window by reusing parts of
100 its existing display. It finds and reuses the part that was not
101 changed, and redraws the rest. (The "id" part in the function's
102 name stands for "insert/delete", not for "identification" or
103 somesuch.)
105 . try_window
107 This function performs the full redisplay of a single window
108 assuming that its fonts were not changed and that the cursor
109 will not end up in the scroll margins. (Loading fonts requires
110 re-adjustment of dimensions of glyph matrices, which makes this
111 method impossible to use.)
113 These optimizations are tried in sequence (some can be skipped if
114 it is known that they are not applicable). If none of the
115 optimizations were successful, redisplay calls redisplay_windows,
116 which performs a full redisplay of all windows.
118 Note that there's one more important optimization up Emacs's
119 sleeve, but it is related to actually redrawing the potentially
120 changed portions of the window/frame, not to reproducing the
121 desired matrices of those potentially changed portions. Namely,
122 the function update_frame and its subroutines, which you will find
123 in dispnew.c, compare the desired matrices with the current
124 matrices, and only redraw the portions that changed. So it could
125 happen that the functions in this file for some reason decide that
126 the entire desired matrix needs to be regenerated from scratch, and
127 still only parts of the Emacs display, or even nothing at all, will
128 be actually delivered to the glass, because update_frame has found
129 that the new and the old screen contents are similar or identical.
131 Desired matrices.
133 Desired matrices are always built per Emacs window. The function
134 `display_line' is the central function to look at if you are
135 interested. It constructs one row in a desired matrix given an
136 iterator structure containing both a buffer position and a
137 description of the environment in which the text is to be
138 displayed. But this is too early, read on.
140 Characters and pixmaps displayed for a range of buffer text depend
141 on various settings of buffers and windows, on overlays and text
142 properties, on display tables, on selective display. The good news
143 is that all this hairy stuff is hidden behind a small set of
144 interface functions taking an iterator structure (struct it)
145 argument.
147 Iteration over things to be displayed is then simple. It is
148 started by initializing an iterator with a call to init_iterator,
149 passing it the buffer position where to start iteration. For
150 iteration over strings, pass -1 as the position to init_iterator,
151 and call reseat_to_string when the string is ready, to initialize
152 the iterator for that string. Thereafter, calls to
153 get_next_display_element fill the iterator structure with relevant
154 information about the next thing to display. Calls to
155 set_iterator_to_next move the iterator to the next thing.
157 Besides this, an iterator also contains information about the
158 display environment in which glyphs for display elements are to be
159 produced. It has fields for the width and height of the display,
160 the information whether long lines are truncated or continued, a
161 current X and Y position, and lots of other stuff you can better
162 see in dispextern.h.
164 Glyphs in a desired matrix are normally constructed in a loop
165 calling get_next_display_element and then PRODUCE_GLYPHS. The call
166 to PRODUCE_GLYPHS will fill the iterator structure with pixel
167 information about the element being displayed and at the same time
168 produce glyphs for it. If the display element fits on the line
169 being displayed, set_iterator_to_next is called next, otherwise the
170 glyphs produced are discarded. The function display_line is the
171 workhorse of filling glyph rows in the desired matrix with glyphs.
172 In addition to producing glyphs, it also handles line truncation
173 and continuation, word wrap, and cursor positioning (for the
174 latter, see also set_cursor_from_row).
176 Frame matrices.
178 That just couldn't be all, could it? What about terminal types not
179 supporting operations on sub-windows of the screen? To update the
180 display on such a terminal, window-based glyph matrices are not
181 well suited. To be able to reuse part of the display (scrolling
182 lines up and down), we must instead have a view of the whole
183 screen. This is what `frame matrices' are for. They are a trick.
185 Frames on terminals like above have a glyph pool. Windows on such
186 a frame sub-allocate their glyph memory from their frame's glyph
187 pool. The frame itself is given its own glyph matrices. By
188 coincidence---or maybe something else---rows in window glyph
189 matrices are slices of corresponding rows in frame matrices. Thus
190 writing to window matrices implicitly updates a frame matrix which
191 provides us with the view of the whole screen that we originally
192 wanted to have without having to move many bytes around. To be
193 honest, there is a little bit more done, but not much more. If you
194 plan to extend that code, take a look at dispnew.c. The function
195 build_frame_matrix is a good starting point.
197 Bidirectional display.
199 Bidirectional display adds quite some hair to this already complex
200 design. The good news are that a large portion of that hairy stuff
201 is hidden in bidi.c behind only 3 interfaces. bidi.c implements a
202 reordering engine which is called by set_iterator_to_next and
203 returns the next character to display in the visual order. See
204 commentary on bidi.c for more details. As far as redisplay is
205 concerned, the effect of calling bidi_move_to_visually_next, the
206 main interface of the reordering engine, is that the iterator gets
207 magically placed on the buffer or string position that is to be
208 displayed next. In other words, a linear iteration through the
209 buffer/string is replaced with a non-linear one. All the rest of
210 the redisplay is oblivious to the bidi reordering.
212 Well, almost oblivious---there are still complications, most of
213 them due to the fact that buffer and string positions no longer
214 change monotonously with glyph indices in a glyph row. Moreover,
215 for continued lines, the buffer positions may not even be
216 monotonously changing with vertical positions. Also, accounting
217 for face changes, overlays, etc. becomes more complex because
218 non-linear iteration could potentially skip many positions with
219 changes, and then cross them again on the way back...
221 One other prominent effect of bidirectional display is that some
222 paragraphs of text need to be displayed starting at the right
223 margin of the window---the so-called right-to-left, or R2L
224 paragraphs. R2L paragraphs are displayed with R2L glyph rows,
225 which have their reversed_p flag set. The bidi reordering engine
226 produces characters in such rows starting from the character which
227 should be the rightmost on display. PRODUCE_GLYPHS then reverses
228 the order, when it fills up the glyph row whose reversed_p flag is
229 set, by prepending each new glyph to what is already there, instead
230 of appending it. When the glyph row is complete, the function
231 extend_face_to_end_of_line fills the empty space to the left of the
232 leftmost character with special glyphs, which will display as,
233 well, empty. On text terminals, these special glyphs are simply
234 blank characters. On graphics terminals, there's a single stretch
235 glyph of a suitably computed width. Both the blanks and the
236 stretch glyph are given the face of the background of the line.
237 This way, the terminal-specific back-end can still draw the glyphs
238 left to right, even for R2L lines.
240 Bidirectional display and character compositions
242 Some scripts cannot be displayed by drawing each character
243 individually, because adjacent characters change each other's shape
244 on display. For example, Arabic and Indic scripts belong to this
245 category.
247 Emacs display supports this by providing "character compositions",
248 most of which is implemented in composite.c. During the buffer
249 scan that delivers characters to PRODUCE_GLYPHS, if the next
250 character to be delivered is a composed character, the iteration
251 calls composition_reseat_it and next_element_from_composition. If
252 they succeed to compose the character with one or more of the
253 following characters, the whole sequence of characters that where
254 composed is recorded in the `struct composition_it' object that is
255 part of the buffer iterator. The composed sequence could produce
256 one or more font glyphs (called "grapheme clusters") on the screen.
257 Each of these grapheme clusters is then delivered to PRODUCE_GLYPHS
258 in the direction corresponding to the current bidi scan direction
259 (recorded in the scan_dir member of the `struct bidi_it' object
260 that is part of the buffer iterator). In particular, if the bidi
261 iterator currently scans the buffer backwards, the grapheme
262 clusters are delivered back to front. This reorders the grapheme
263 clusters as appropriate for the current bidi context. Note that
264 this means that the grapheme clusters are always stored in the
265 LGSTRING object (see composite.c) in the logical order.
267 Moving an iterator in bidirectional text
268 without producing glyphs
270 Note one important detail mentioned above: that the bidi reordering
271 engine, driven by the iterator, produces characters in R2L rows
272 starting at the character that will be the rightmost on display.
273 As far as the iterator is concerned, the geometry of such rows is
274 still left to right, i.e. the iterator "thinks" the first character
275 is at the leftmost pixel position. The iterator does not know that
276 PRODUCE_GLYPHS reverses the order of the glyphs that the iterator
277 delivers. This is important when functions from the move_it_*
278 family are used to get to certain screen position or to match
279 screen coordinates with buffer coordinates: these functions use the
280 iterator geometry, which is left to right even in R2L paragraphs.
281 This works well with most callers of move_it_*, because they need
282 to get to a specific column, and columns are still numbered in the
283 reading order, i.e. the rightmost character in a R2L paragraph is
284 still column zero. But some callers do not get well with this; a
285 notable example is mouse clicks that need to find the character
286 that corresponds to certain pixel coordinates. See
287 buffer_posn_from_coords in dispnew.c for how this is handled. */
289 #include <config.h>
290 #include <stdio.h>
291 #include <limits.h>
293 #include "lisp.h"
294 #include "atimer.h"
295 #include "keyboard.h"
296 #include "frame.h"
297 #include "window.h"
298 #include "termchar.h"
299 #include "dispextern.h"
300 #include "character.h"
301 #include "buffer.h"
302 #include "charset.h"
303 #include "indent.h"
304 #include "commands.h"
305 #include "keymap.h"
306 #include "macros.h"
307 #include "disptab.h"
308 #include "termhooks.h"
309 #include "termopts.h"
310 #include "intervals.h"
311 #include "coding.h"
312 #include "process.h"
313 #include "region-cache.h"
314 #include "font.h"
315 #include "fontset.h"
316 #include "blockinput.h"
317 #ifdef HAVE_WINDOW_SYSTEM
318 #include TERM_HEADER
319 #endif /* HAVE_WINDOW_SYSTEM */
321 #ifndef FRAME_X_OUTPUT
322 #define FRAME_X_OUTPUT(f) ((f)->output_data.x)
323 #endif
325 #define INFINITY 10000000
327 /* Holds the list (error). */
328 static Lisp_Object list_of_error;
330 #ifdef HAVE_WINDOW_SYSTEM
332 /* Test if overflow newline into fringe. Called with iterator IT
333 at or past right window margin, and with IT->current_x set. */
335 #define IT_OVERFLOW_NEWLINE_INTO_FRINGE(IT) \
336 (!NILP (Voverflow_newline_into_fringe) \
337 && FRAME_WINDOW_P ((IT)->f) \
338 && ((IT)->bidi_it.paragraph_dir == R2L \
339 ? (WINDOW_LEFT_FRINGE_WIDTH ((IT)->w) > 0) \
340 : (WINDOW_RIGHT_FRINGE_WIDTH ((IT)->w) > 0)) \
341 && (IT)->current_x == (IT)->last_visible_x)
343 #else /* !HAVE_WINDOW_SYSTEM */
344 #define IT_OVERFLOW_NEWLINE_INTO_FRINGE(it) false
345 #endif /* HAVE_WINDOW_SYSTEM */
347 /* Test if the display element loaded in IT, or the underlying buffer
348 or string character, is a space or a TAB character. This is used
349 to determine where word wrapping can occur. */
351 #define IT_DISPLAYING_WHITESPACE(it) \
352 ((it->what == IT_CHARACTER && (it->c == ' ' || it->c == '\t')) \
353 || ((STRINGP (it->string) \
354 && (SREF (it->string, IT_STRING_BYTEPOS (*it)) == ' ' \
355 || SREF (it->string, IT_STRING_BYTEPOS (*it)) == '\t')) \
356 || (it->s \
357 && (it->s[IT_BYTEPOS (*it)] == ' ' \
358 || it->s[IT_BYTEPOS (*it)] == '\t')) \
359 || (IT_BYTEPOS (*it) < ZV_BYTE \
360 && (*BYTE_POS_ADDR (IT_BYTEPOS (*it)) == ' ' \
361 || *BYTE_POS_ADDR (IT_BYTEPOS (*it)) == '\t')))) \
363 /* True means print newline to stdout before next mini-buffer message. */
365 bool noninteractive_need_newline;
367 /* True means print newline to message log before next message. */
369 static bool message_log_need_newline;
371 /* Three markers that message_dolog uses.
372 It could allocate them itself, but that causes trouble
373 in handling memory-full errors. */
374 static Lisp_Object message_dolog_marker1;
375 static Lisp_Object message_dolog_marker2;
376 static Lisp_Object message_dolog_marker3;
378 /* The buffer position of the first character appearing entirely or
379 partially on the line of the selected window which contains the
380 cursor; <= 0 if not known. Set by set_cursor_from_row, used for
381 redisplay optimization in redisplay_internal. */
383 static struct text_pos this_line_start_pos;
385 /* Number of characters past the end of the line above, including the
386 terminating newline. */
388 static struct text_pos this_line_end_pos;
390 /* The vertical positions and the height of this line. */
392 static int this_line_vpos;
393 static int this_line_y;
394 static int this_line_pixel_height;
396 /* X position at which this display line starts. Usually zero;
397 negative if first character is partially visible. */
399 static int this_line_start_x;
401 /* The smallest character position seen by move_it_* functions as they
402 move across display lines. Used to set MATRIX_ROW_START_CHARPOS of
403 hscrolled lines, see display_line. */
405 static struct text_pos this_line_min_pos;
407 /* Buffer that this_line_.* variables are referring to. */
409 static struct buffer *this_line_buffer;
411 /* True if an overlay arrow has been displayed in this window. */
413 static bool overlay_arrow_seen;
415 /* Vector containing glyphs for an ellipsis `...'. */
417 static Lisp_Object default_invis_vector[3];
419 /* This is the window where the echo area message was displayed. It
420 is always a mini-buffer window, but it may not be the same window
421 currently active as a mini-buffer. */
423 Lisp_Object echo_area_window;
425 /* List of pairs (MESSAGE . MULTIBYTE). The function save_message
426 pushes the current message and the value of
427 message_enable_multibyte on the stack, the function restore_message
428 pops the stack and displays MESSAGE again. */
430 static Lisp_Object Vmessage_stack;
432 /* True means multibyte characters were enabled when the echo area
433 message was specified. */
435 static bool message_enable_multibyte;
437 /* Nonzero if we should redraw the mode lines on the next redisplay.
438 If it has value REDISPLAY_SOME, then only redisplay the mode lines where
439 the `redisplay' bit has been set. Otherwise, redisplay all mode lines
440 (the number used is then only used to track down the cause for this
441 full-redisplay). */
443 int update_mode_lines;
445 /* Nonzero if window sizes or contents other than selected-window have changed
446 since last redisplay that finished.
447 If it has value REDISPLAY_SOME, then only redisplay the windows where
448 the `redisplay' bit has been set. Otherwise, redisplay all windows
449 (the number used is then only used to track down the cause for this
450 full-redisplay). */
452 int windows_or_buffers_changed;
454 /* True after display_mode_line if %l was used and it displayed a
455 line number. */
457 static bool line_number_displayed;
459 /* The name of the *Messages* buffer, a string. */
461 static Lisp_Object Vmessages_buffer_name;
463 /* Current, index 0, and last displayed echo area message. Either
464 buffers from echo_buffers, or nil to indicate no message. */
466 Lisp_Object echo_area_buffer[2];
468 /* The buffers referenced from echo_area_buffer. */
470 static Lisp_Object echo_buffer[2];
472 /* A vector saved used in with_area_buffer to reduce consing. */
474 static Lisp_Object Vwith_echo_area_save_vector;
476 /* True means display_echo_area should display the last echo area
477 message again. Set by redisplay_preserve_echo_area. */
479 static bool display_last_displayed_message_p;
481 /* True if echo area is being used by print; false if being used by
482 message. */
484 static bool message_buf_print;
486 /* Set to true in clear_message to make redisplay_internal aware
487 of an emptied echo area. */
489 static bool message_cleared_p;
491 /* A scratch glyph row with contents used for generating truncation
492 glyphs. Also used in direct_output_for_insert. */
494 #define MAX_SCRATCH_GLYPHS 100
495 static struct glyph_row scratch_glyph_row;
496 static struct glyph scratch_glyphs[MAX_SCRATCH_GLYPHS];
498 /* Ascent and height of the last line processed by move_it_to. */
500 static int last_height;
502 /* True if there's a help-echo in the echo area. */
504 bool help_echo_showing_p;
506 /* The maximum distance to look ahead for text properties. Values
507 that are too small let us call compute_char_face and similar
508 functions too often which is expensive. Values that are too large
509 let us call compute_char_face and alike too often because we
510 might not be interested in text properties that far away. */
512 #define TEXT_PROP_DISTANCE_LIMIT 100
514 /* SAVE_IT and RESTORE_IT are called when we save a snapshot of the
515 iterator state and later restore it. This is needed because the
516 bidi iterator on bidi.c keeps a stacked cache of its states, which
517 is really a singleton. When we use scratch iterator objects to
518 move around the buffer, we can cause the bidi cache to be pushed or
519 popped, and therefore we need to restore the cache state when we
520 return to the original iterator. */
521 #define SAVE_IT(ITCOPY, ITORIG, CACHE) \
522 do { \
523 if (CACHE) \
524 bidi_unshelve_cache (CACHE, true); \
525 ITCOPY = ITORIG; \
526 CACHE = bidi_shelve_cache (); \
527 } while (false)
529 #define RESTORE_IT(pITORIG, pITCOPY, CACHE) \
530 do { \
531 if (pITORIG != pITCOPY) \
532 *(pITORIG) = *(pITCOPY); \
533 bidi_unshelve_cache (CACHE, false); \
534 CACHE = NULL; \
535 } while (false)
537 /* Functions to mark elements as needing redisplay. */
538 enum { REDISPLAY_SOME = 2}; /* Arbitrary choice. */
540 void
541 redisplay_other_windows (void)
543 if (!windows_or_buffers_changed)
544 windows_or_buffers_changed = REDISPLAY_SOME;
547 void
548 wset_redisplay (struct window *w)
550 /* Beware: selected_window can be nil during early stages. */
551 if (!EQ (make_lisp_ptr (w, Lisp_Vectorlike), selected_window))
552 redisplay_other_windows ();
553 w->redisplay = true;
556 void
557 fset_redisplay (struct frame *f)
559 redisplay_other_windows ();
560 f->redisplay = true;
563 void
564 bset_redisplay (struct buffer *b)
566 int count = buffer_window_count (b);
567 if (count > 0)
569 /* ... it's visible in other window than selected, */
570 if (count > 1 || b != XBUFFER (XWINDOW (selected_window)->contents))
571 redisplay_other_windows ();
572 /* Even if we don't set windows_or_buffers_changed, do set `redisplay'
573 so that if we later set windows_or_buffers_changed, this buffer will
574 not be omitted. */
575 b->text->redisplay = true;
579 void
580 bset_update_mode_line (struct buffer *b)
582 if (!update_mode_lines)
583 update_mode_lines = REDISPLAY_SOME;
584 b->text->redisplay = true;
587 #ifdef GLYPH_DEBUG
589 /* True means print traces of redisplay if compiled with
590 GLYPH_DEBUG defined. */
592 bool trace_redisplay_p;
594 #endif /* GLYPH_DEBUG */
596 #ifdef DEBUG_TRACE_MOVE
597 /* True means trace with TRACE_MOVE to stderr. */
598 static bool trace_move;
600 #define TRACE_MOVE(x) if (trace_move) fprintf x; else (void) 0
601 #else
602 #define TRACE_MOVE(x) (void) 0
603 #endif
605 /* Buffer being redisplayed -- for redisplay_window_error. */
607 static struct buffer *displayed_buffer;
609 /* Value returned from text property handlers (see below). */
611 enum prop_handled
613 HANDLED_NORMALLY,
614 HANDLED_RECOMPUTE_PROPS,
615 HANDLED_OVERLAY_STRING_CONSUMED,
616 HANDLED_RETURN
619 /* A description of text properties that redisplay is interested
620 in. */
622 struct props
624 /* The symbol index of the name of the property. */
625 short name;
627 /* A unique index for the property. */
628 enum prop_idx idx;
630 /* A handler function called to set up iterator IT from the property
631 at IT's current position. Value is used to steer handle_stop. */
632 enum prop_handled (*handler) (struct it *it);
635 static enum prop_handled handle_face_prop (struct it *);
636 static enum prop_handled handle_invisible_prop (struct it *);
637 static enum prop_handled handle_display_prop (struct it *);
638 static enum prop_handled handle_composition_prop (struct it *);
639 static enum prop_handled handle_overlay_change (struct it *);
640 static enum prop_handled handle_fontified_prop (struct it *);
642 /* Properties handled by iterators. */
644 static struct props it_props[] =
646 {SYMBOL_INDEX (Qfontified), FONTIFIED_PROP_IDX, handle_fontified_prop},
647 /* Handle `face' before `display' because some sub-properties of
648 `display' need to know the face. */
649 {SYMBOL_INDEX (Qface), FACE_PROP_IDX, handle_face_prop},
650 {SYMBOL_INDEX (Qdisplay), DISPLAY_PROP_IDX, handle_display_prop},
651 {SYMBOL_INDEX (Qinvisible), INVISIBLE_PROP_IDX, handle_invisible_prop},
652 {SYMBOL_INDEX (Qcomposition), COMPOSITION_PROP_IDX, handle_composition_prop},
653 {0, 0, NULL}
656 /* Value is the position described by X. If X is a marker, value is
657 the marker_position of X. Otherwise, value is X. */
659 #define COERCE_MARKER(X) (MARKERP ((X)) ? Fmarker_position (X) : (X))
661 /* Enumeration returned by some move_it_.* functions internally. */
663 enum move_it_result
665 /* Not used. Undefined value. */
666 MOVE_UNDEFINED,
668 /* Move ended at the requested buffer position or ZV. */
669 MOVE_POS_MATCH_OR_ZV,
671 /* Move ended at the requested X pixel position. */
672 MOVE_X_REACHED,
674 /* Move within a line ended at the end of a line that must be
675 continued. */
676 MOVE_LINE_CONTINUED,
678 /* Move within a line ended at the end of a line that would
679 be displayed truncated. */
680 MOVE_LINE_TRUNCATED,
682 /* Move within a line ended at a line end. */
683 MOVE_NEWLINE_OR_CR
686 /* This counter is used to clear the face cache every once in a while
687 in redisplay_internal. It is incremented for each redisplay.
688 Every CLEAR_FACE_CACHE_COUNT full redisplays, the face cache is
689 cleared. */
691 #define CLEAR_FACE_CACHE_COUNT 500
692 static int clear_face_cache_count;
694 /* Similarly for the image cache. */
696 #ifdef HAVE_WINDOW_SYSTEM
697 #define CLEAR_IMAGE_CACHE_COUNT 101
698 static int clear_image_cache_count;
700 /* Null glyph slice */
701 static struct glyph_slice null_glyph_slice = { 0, 0, 0, 0 };
702 #endif
704 /* True while redisplay_internal is in progress. */
706 bool redisplaying_p;
708 /* If a string, XTread_socket generates an event to display that string.
709 (The display is done in read_char.) */
711 Lisp_Object help_echo_string;
712 Lisp_Object help_echo_window;
713 Lisp_Object help_echo_object;
714 ptrdiff_t help_echo_pos;
716 /* Temporary variable for XTread_socket. */
718 Lisp_Object previous_help_echo_string;
720 /* Platform-independent portion of hourglass implementation. */
722 #ifdef HAVE_WINDOW_SYSTEM
724 /* True means an hourglass cursor is currently shown. */
725 static bool hourglass_shown_p;
727 /* If non-null, an asynchronous timer that, when it expires, displays
728 an hourglass cursor on all frames. */
729 static struct atimer *hourglass_atimer;
731 #endif /* HAVE_WINDOW_SYSTEM */
733 /* Default number of seconds to wait before displaying an hourglass
734 cursor. */
735 #define DEFAULT_HOURGLASS_DELAY 1
737 #ifdef HAVE_WINDOW_SYSTEM
739 /* Default pixel width of `thin-space' display method. */
740 #define THIN_SPACE_WIDTH 1
742 #endif /* HAVE_WINDOW_SYSTEM */
744 /* Function prototypes. */
746 static void setup_for_ellipsis (struct it *, int);
747 static void set_iterator_to_next (struct it *, bool);
748 static void mark_window_display_accurate_1 (struct window *, bool);
749 static bool row_for_charpos_p (struct glyph_row *, ptrdiff_t);
750 static bool cursor_row_p (struct glyph_row *);
751 static int redisplay_mode_lines (Lisp_Object, bool);
753 static void handle_line_prefix (struct it *);
755 static void handle_stop_backwards (struct it *, ptrdiff_t);
756 static void unwind_with_echo_area_buffer (Lisp_Object);
757 static Lisp_Object with_echo_area_buffer_unwind_data (struct window *);
758 static bool current_message_1 (ptrdiff_t, Lisp_Object);
759 static bool truncate_message_1 (ptrdiff_t, Lisp_Object);
760 static void set_message (Lisp_Object);
761 static bool set_message_1 (ptrdiff_t, Lisp_Object);
762 static bool display_echo_area_1 (ptrdiff_t, Lisp_Object);
763 static bool resize_mini_window_1 (ptrdiff_t, Lisp_Object);
764 static void unwind_redisplay (void);
765 static void extend_face_to_end_of_line (struct it *);
766 static intmax_t message_log_check_duplicate (ptrdiff_t, ptrdiff_t);
767 static void push_it (struct it *, struct text_pos *);
768 static void iterate_out_of_display_property (struct it *);
769 static void pop_it (struct it *);
770 static void redisplay_internal (void);
771 static bool echo_area_display (bool);
772 static void redisplay_windows (Lisp_Object);
773 static void redisplay_window (Lisp_Object, bool);
774 static Lisp_Object redisplay_window_error (Lisp_Object);
775 static Lisp_Object redisplay_window_0 (Lisp_Object);
776 static Lisp_Object redisplay_window_1 (Lisp_Object);
777 static bool set_cursor_from_row (struct window *, struct glyph_row *,
778 struct glyph_matrix *, ptrdiff_t, ptrdiff_t,
779 int, int);
780 static bool update_menu_bar (struct frame *, bool, bool);
781 static bool try_window_reusing_current_matrix (struct window *);
782 static int try_window_id (struct window *);
783 static bool display_line (struct it *);
784 static int display_mode_lines (struct window *);
785 static int display_mode_line (struct window *, enum face_id, Lisp_Object);
786 static int display_mode_element (struct it *, int, int, int, Lisp_Object,
787 Lisp_Object, bool);
788 static int store_mode_line_string (const char *, Lisp_Object, bool, int, int,
789 Lisp_Object);
790 static const char *decode_mode_spec (struct window *, int, int, Lisp_Object *);
791 static void display_menu_bar (struct window *);
792 static ptrdiff_t display_count_lines (ptrdiff_t, ptrdiff_t, ptrdiff_t,
793 ptrdiff_t *);
794 static int display_string (const char *, Lisp_Object, Lisp_Object,
795 ptrdiff_t, ptrdiff_t, struct it *, int, int, int, int);
796 static void compute_line_metrics (struct it *);
797 static void run_redisplay_end_trigger_hook (struct it *);
798 static bool get_overlay_strings (struct it *, ptrdiff_t);
799 static bool get_overlay_strings_1 (struct it *, ptrdiff_t, bool);
800 static void next_overlay_string (struct it *);
801 static void reseat (struct it *, struct text_pos, bool);
802 static void reseat_1 (struct it *, struct text_pos, bool);
803 static bool next_element_from_display_vector (struct it *);
804 static bool next_element_from_string (struct it *);
805 static bool next_element_from_c_string (struct it *);
806 static bool next_element_from_buffer (struct it *);
807 static bool next_element_from_composition (struct it *);
808 static bool next_element_from_image (struct it *);
809 static bool next_element_from_stretch (struct it *);
810 static void load_overlay_strings (struct it *, ptrdiff_t);
811 static bool get_next_display_element (struct it *);
812 static enum move_it_result
813 move_it_in_display_line_to (struct it *, ptrdiff_t, int,
814 enum move_operation_enum);
815 static void get_visually_first_element (struct it *);
816 static void compute_stop_pos (struct it *);
817 static int face_before_or_after_it_pos (struct it *, bool);
818 static ptrdiff_t next_overlay_change (ptrdiff_t);
819 static int handle_display_spec (struct it *, Lisp_Object, Lisp_Object,
820 Lisp_Object, struct text_pos *, ptrdiff_t, bool);
821 static int handle_single_display_spec (struct it *, Lisp_Object,
822 Lisp_Object, Lisp_Object,
823 struct text_pos *, ptrdiff_t, int, bool);
824 static int underlying_face_id (struct it *);
826 #define face_before_it_pos(IT) face_before_or_after_it_pos (IT, true)
827 #define face_after_it_pos(IT) face_before_or_after_it_pos (IT, false)
829 #ifdef HAVE_WINDOW_SYSTEM
831 static void update_tool_bar (struct frame *, bool);
832 static void x_draw_bottom_divider (struct window *w);
833 static void notice_overwritten_cursor (struct window *,
834 enum glyph_row_area,
835 int, int, int, int);
836 static void append_stretch_glyph (struct it *, Lisp_Object,
837 int, int, int);
840 #endif /* HAVE_WINDOW_SYSTEM */
842 static void produce_special_glyphs (struct it *, enum display_element_type);
843 static void show_mouse_face (Mouse_HLInfo *, enum draw_glyphs_face);
844 static bool coords_in_mouse_face_p (struct window *, int, int);
848 /***********************************************************************
849 Window display dimensions
850 ***********************************************************************/
852 /* Return the bottom boundary y-position for text lines in window W.
853 This is the first y position at which a line cannot start.
854 It is relative to the top of the window.
856 This is the height of W minus the height of a mode line, if any. */
859 window_text_bottom_y (struct window *w)
861 int height = WINDOW_PIXEL_HEIGHT (w);
863 height -= WINDOW_BOTTOM_DIVIDER_WIDTH (w);
865 if (WINDOW_WANTS_MODELINE_P (w))
866 height -= CURRENT_MODE_LINE_HEIGHT (w);
868 height -= WINDOW_SCROLL_BAR_AREA_HEIGHT (w);
870 return height;
873 /* Return the pixel width of display area AREA of window W.
874 ANY_AREA means return the total width of W, not including
875 fringes to the left and right of the window. */
878 window_box_width (struct window *w, enum glyph_row_area area)
880 int width = w->pixel_width;
882 if (!w->pseudo_window_p)
884 width -= WINDOW_SCROLL_BAR_AREA_WIDTH (w);
885 width -= WINDOW_RIGHT_DIVIDER_WIDTH (w);
887 if (area == TEXT_AREA)
888 width -= (WINDOW_MARGINS_WIDTH (w)
889 + WINDOW_FRINGES_WIDTH (w));
890 else if (area == LEFT_MARGIN_AREA)
891 width = WINDOW_LEFT_MARGIN_WIDTH (w);
892 else if (area == RIGHT_MARGIN_AREA)
893 width = WINDOW_RIGHT_MARGIN_WIDTH (w);
896 /* With wide margins, fringes, etc. we might end up with a negative
897 width, correct that here. */
898 return max (0, width);
902 /* Return the pixel height of the display area of window W, not
903 including mode lines of W, if any. */
906 window_box_height (struct window *w)
908 struct frame *f = XFRAME (w->frame);
909 int height = WINDOW_PIXEL_HEIGHT (w);
911 eassert (height >= 0);
913 height -= WINDOW_BOTTOM_DIVIDER_WIDTH (w);
914 height -= WINDOW_SCROLL_BAR_AREA_HEIGHT (w);
916 /* Note: the code below that determines the mode-line/header-line
917 height is essentially the same as that contained in the macro
918 CURRENT_{MODE,HEADER}_LINE_HEIGHT, except that it checks whether
919 the appropriate glyph row has its `mode_line_p' flag set,
920 and if it doesn't, uses estimate_mode_line_height instead. */
922 if (WINDOW_WANTS_MODELINE_P (w))
924 struct glyph_row *ml_row
925 = (w->current_matrix && w->current_matrix->rows
926 ? MATRIX_MODE_LINE_ROW (w->current_matrix)
927 : 0);
928 if (ml_row && ml_row->mode_line_p)
929 height -= ml_row->height;
930 else
931 height -= estimate_mode_line_height (f, CURRENT_MODE_LINE_FACE_ID (w));
934 if (WINDOW_WANTS_HEADER_LINE_P (w))
936 struct glyph_row *hl_row
937 = (w->current_matrix && w->current_matrix->rows
938 ? MATRIX_HEADER_LINE_ROW (w->current_matrix)
939 : 0);
940 if (hl_row && hl_row->mode_line_p)
941 height -= hl_row->height;
942 else
943 height -= estimate_mode_line_height (f, HEADER_LINE_FACE_ID);
946 /* With a very small font and a mode-line that's taller than
947 default, we might end up with a negative height. */
948 return max (0, height);
951 /* Return the window-relative coordinate of the left edge of display
952 area AREA of window W. ANY_AREA means return the left edge of the
953 whole window, to the right of the left fringe of W. */
956 window_box_left_offset (struct window *w, enum glyph_row_area area)
958 int x;
960 if (w->pseudo_window_p)
961 return 0;
963 x = WINDOW_LEFT_SCROLL_BAR_AREA_WIDTH (w);
965 if (area == TEXT_AREA)
966 x += (WINDOW_LEFT_FRINGE_WIDTH (w)
967 + window_box_width (w, LEFT_MARGIN_AREA));
968 else if (area == RIGHT_MARGIN_AREA)
969 x += (WINDOW_LEFT_FRINGE_WIDTH (w)
970 + window_box_width (w, LEFT_MARGIN_AREA)
971 + window_box_width (w, TEXT_AREA)
972 + (WINDOW_HAS_FRINGES_OUTSIDE_MARGINS (w)
974 : WINDOW_RIGHT_FRINGE_WIDTH (w)));
975 else if (area == LEFT_MARGIN_AREA
976 && WINDOW_HAS_FRINGES_OUTSIDE_MARGINS (w))
977 x += WINDOW_LEFT_FRINGE_WIDTH (w);
979 /* Don't return more than the window's pixel width. */
980 return min (x, w->pixel_width);
984 /* Return the window-relative coordinate of the right edge of display
985 area AREA of window W. ANY_AREA means return the right edge of the
986 whole window, to the left of the right fringe of W. */
988 static int
989 window_box_right_offset (struct window *w, enum glyph_row_area area)
991 /* Don't return more than the window's pixel width. */
992 return min (window_box_left_offset (w, area) + window_box_width (w, area),
993 w->pixel_width);
996 /* Return the frame-relative coordinate of the left edge of display
997 area AREA of window W. ANY_AREA means return the left edge of the
998 whole window, to the right of the left fringe of W. */
1001 window_box_left (struct window *w, enum glyph_row_area area)
1003 struct frame *f = XFRAME (w->frame);
1004 int x;
1006 if (w->pseudo_window_p)
1007 return FRAME_INTERNAL_BORDER_WIDTH (f);
1009 x = (WINDOW_LEFT_EDGE_X (w)
1010 + window_box_left_offset (w, area));
1012 return x;
1016 /* Return the frame-relative coordinate of the right edge of display
1017 area AREA of window W. ANY_AREA means return the right edge of the
1018 whole window, to the left of the right fringe of W. */
1021 window_box_right (struct window *w, enum glyph_row_area area)
1023 return window_box_left (w, area) + window_box_width (w, area);
1026 /* Get the bounding box of the display area AREA of window W, without
1027 mode lines, in frame-relative coordinates. ANY_AREA means the
1028 whole window, not including the left and right fringes of
1029 the window. Return in *BOX_X and *BOX_Y the frame-relative pixel
1030 coordinates of the upper-left corner of the box. Return in
1031 *BOX_WIDTH, and *BOX_HEIGHT the pixel width and height of the box. */
1033 void
1034 window_box (struct window *w, enum glyph_row_area area, int *box_x,
1035 int *box_y, int *box_width, int *box_height)
1037 if (box_width)
1038 *box_width = window_box_width (w, area);
1039 if (box_height)
1040 *box_height = window_box_height (w);
1041 if (box_x)
1042 *box_x = window_box_left (w, area);
1043 if (box_y)
1045 *box_y = WINDOW_TOP_EDGE_Y (w);
1046 if (WINDOW_WANTS_HEADER_LINE_P (w))
1047 *box_y += CURRENT_HEADER_LINE_HEIGHT (w);
1051 #ifdef HAVE_WINDOW_SYSTEM
1053 /* Get the bounding box of the display area AREA of window W, without
1054 mode lines and both fringes of the window. Return in *TOP_LEFT_X
1055 and TOP_LEFT_Y the frame-relative pixel coordinates of the
1056 upper-left corner of the box. Return in *BOTTOM_RIGHT_X, and
1057 *BOTTOM_RIGHT_Y the coordinates of the bottom-right corner of the
1058 box. */
1060 static void
1061 window_box_edges (struct window *w, int *top_left_x, int *top_left_y,
1062 int *bottom_right_x, int *bottom_right_y)
1064 window_box (w, ANY_AREA, top_left_x, top_left_y,
1065 bottom_right_x, bottom_right_y);
1066 *bottom_right_x += *top_left_x;
1067 *bottom_right_y += *top_left_y;
1070 #endif /* HAVE_WINDOW_SYSTEM */
1072 /***********************************************************************
1073 Utilities
1074 ***********************************************************************/
1076 /* Return the bottom y-position of the line the iterator IT is in.
1077 This can modify IT's settings. */
1080 line_bottom_y (struct it *it)
1082 int line_height = it->max_ascent + it->max_descent;
1083 int line_top_y = it->current_y;
1085 if (line_height == 0)
1087 if (last_height)
1088 line_height = last_height;
1089 else if (IT_CHARPOS (*it) < ZV)
1091 move_it_by_lines (it, 1);
1092 line_height = (it->max_ascent || it->max_descent
1093 ? it->max_ascent + it->max_descent
1094 : last_height);
1096 else
1098 struct glyph_row *row = it->glyph_row;
1100 /* Use the default character height. */
1101 it->glyph_row = NULL;
1102 it->what = IT_CHARACTER;
1103 it->c = ' ';
1104 it->len = 1;
1105 PRODUCE_GLYPHS (it);
1106 line_height = it->ascent + it->descent;
1107 it->glyph_row = row;
1111 return line_top_y + line_height;
1114 DEFUN ("line-pixel-height", Fline_pixel_height,
1115 Sline_pixel_height, 0, 0, 0,
1116 doc: /* Return height in pixels of text line in the selected window.
1118 Value is the height in pixels of the line at point. */)
1119 (void)
1121 struct it it;
1122 struct text_pos pt;
1123 struct window *w = XWINDOW (selected_window);
1124 struct buffer *old_buffer = NULL;
1125 Lisp_Object result;
1127 if (XBUFFER (w->contents) != current_buffer)
1129 old_buffer = current_buffer;
1130 set_buffer_internal_1 (XBUFFER (w->contents));
1132 SET_TEXT_POS (pt, PT, PT_BYTE);
1133 start_display (&it, w, pt);
1134 it.vpos = it.current_y = 0;
1135 last_height = 0;
1136 result = make_number (line_bottom_y (&it));
1137 if (old_buffer)
1138 set_buffer_internal_1 (old_buffer);
1140 return result;
1143 /* Return the default pixel height of text lines in window W. The
1144 value is the canonical height of the W frame's default font, plus
1145 any extra space required by the line-spacing variable or frame
1146 parameter.
1148 Implementation note: this ignores any line-spacing text properties
1149 put on the newline characters. This is because those properties
1150 only affect the _screen_ line ending in the newline (i.e., in a
1151 continued line, only the last screen line will be affected), which
1152 means only a small number of lines in a buffer can ever use this
1153 feature. Since this function is used to compute the default pixel
1154 equivalent of text lines in a window, we can safely ignore those
1155 few lines. For the same reasons, we ignore the line-height
1156 properties. */
1158 default_line_pixel_height (struct window *w)
1160 struct frame *f = WINDOW_XFRAME (w);
1161 int height = FRAME_LINE_HEIGHT (f);
1163 if (!FRAME_INITIAL_P (f) && BUFFERP (w->contents))
1165 struct buffer *b = XBUFFER (w->contents);
1166 Lisp_Object val = BVAR (b, extra_line_spacing);
1168 if (NILP (val))
1169 val = BVAR (&buffer_defaults, extra_line_spacing);
1170 if (!NILP (val))
1172 if (RANGED_INTEGERP (0, val, INT_MAX))
1173 height += XFASTINT (val);
1174 else if (FLOATP (val))
1176 int addon = XFLOAT_DATA (val) * height + 0.5;
1178 if (addon >= 0)
1179 height += addon;
1182 else
1183 height += f->extra_line_spacing;
1186 return height;
1189 /* Subroutine of pos_visible_p below. Extracts a display string, if
1190 any, from the display spec given as its argument. */
1191 static Lisp_Object
1192 string_from_display_spec (Lisp_Object spec)
1194 if (CONSP (spec))
1196 while (CONSP (spec))
1198 if (STRINGP (XCAR (spec)))
1199 return XCAR (spec);
1200 spec = XCDR (spec);
1203 else if (VECTORP (spec))
1205 ptrdiff_t i;
1207 for (i = 0; i < ASIZE (spec); i++)
1209 if (STRINGP (AREF (spec, i)))
1210 return AREF (spec, i);
1212 return Qnil;
1215 return spec;
1219 /* Limit insanely large values of W->hscroll on frame F to the largest
1220 value that will still prevent first_visible_x and last_visible_x of
1221 'struct it' from overflowing an int. */
1222 static int
1223 window_hscroll_limited (struct window *w, struct frame *f)
1225 ptrdiff_t window_hscroll = w->hscroll;
1226 int window_text_width = window_box_width (w, TEXT_AREA);
1227 int colwidth = FRAME_COLUMN_WIDTH (f);
1229 if (window_hscroll > (INT_MAX - window_text_width) / colwidth - 1)
1230 window_hscroll = (INT_MAX - window_text_width) / colwidth - 1;
1232 return window_hscroll;
1235 /* Return true if position CHARPOS is visible in window W.
1236 CHARPOS < 0 means return info about WINDOW_END position.
1237 If visible, set *X and *Y to pixel coordinates of top left corner.
1238 Set *RTOP and *RBOT to pixel height of an invisible area of glyph at POS.
1239 Set *ROWH and *VPOS to row's visible height and VPOS (row number). */
1241 bool
1242 pos_visible_p (struct window *w, ptrdiff_t charpos, int *x, int *y,
1243 int *rtop, int *rbot, int *rowh, int *vpos)
1245 struct it it;
1246 void *itdata = bidi_shelve_cache ();
1247 struct text_pos top;
1248 bool visible_p = false;
1249 struct buffer *old_buffer = NULL;
1250 bool r2l = false;
1252 if (FRAME_INITIAL_P (XFRAME (WINDOW_FRAME (w))))
1253 return visible_p;
1255 if (XBUFFER (w->contents) != current_buffer)
1257 old_buffer = current_buffer;
1258 set_buffer_internal_1 (XBUFFER (w->contents));
1261 SET_TEXT_POS_FROM_MARKER (top, w->start);
1262 /* Scrolling a minibuffer window via scroll bar when the echo area
1263 shows long text sometimes resets the minibuffer contents behind
1264 our backs. */
1265 if (CHARPOS (top) > ZV)
1266 SET_TEXT_POS (top, BEGV, BEGV_BYTE);
1268 /* Compute exact mode line heights. */
1269 if (WINDOW_WANTS_MODELINE_P (w))
1270 w->mode_line_height
1271 = display_mode_line (w, CURRENT_MODE_LINE_FACE_ID (w),
1272 BVAR (current_buffer, mode_line_format));
1274 if (WINDOW_WANTS_HEADER_LINE_P (w))
1275 w->header_line_height
1276 = display_mode_line (w, HEADER_LINE_FACE_ID,
1277 BVAR (current_buffer, header_line_format));
1279 start_display (&it, w, top);
1280 move_it_to (&it, charpos, -1, it.last_visible_y - 1, -1,
1281 (charpos >= 0 ? MOVE_TO_POS : 0) | MOVE_TO_Y);
1283 if (charpos >= 0
1284 && (((!it.bidi_p || it.bidi_it.scan_dir != -1)
1285 && IT_CHARPOS (it) >= charpos)
1286 /* When scanning backwards under bidi iteration, move_it_to
1287 stops at or _before_ CHARPOS, because it stops at or to
1288 the _right_ of the character at CHARPOS. */
1289 || (it.bidi_p && it.bidi_it.scan_dir == -1
1290 && IT_CHARPOS (it) <= charpos)))
1292 /* We have reached CHARPOS, or passed it. How the call to
1293 move_it_to can overshoot: (i) If CHARPOS is on invisible text
1294 or covered by a display property, move_it_to stops at the end
1295 of the invisible text, to the right of CHARPOS. (ii) If
1296 CHARPOS is in a display vector, move_it_to stops on its last
1297 glyph. */
1298 int top_x = it.current_x;
1299 int top_y = it.current_y;
1300 int window_top_y = WINDOW_HEADER_LINE_HEIGHT (w);
1301 int bottom_y;
1302 struct it save_it;
1303 void *save_it_data = NULL;
1305 /* Calling line_bottom_y may change it.method, it.position, etc. */
1306 SAVE_IT (save_it, it, save_it_data);
1307 last_height = 0;
1308 bottom_y = line_bottom_y (&it);
1309 if (top_y < window_top_y)
1310 visible_p = bottom_y > window_top_y;
1311 else if (top_y < it.last_visible_y)
1312 visible_p = true;
1313 if (bottom_y >= it.last_visible_y
1314 && it.bidi_p && it.bidi_it.scan_dir == -1
1315 && IT_CHARPOS (it) < charpos)
1317 /* When the last line of the window is scanned backwards
1318 under bidi iteration, we could be duped into thinking
1319 that we have passed CHARPOS, when in fact move_it_to
1320 simply stopped short of CHARPOS because it reached
1321 last_visible_y. To see if that's what happened, we call
1322 move_it_to again with a slightly larger vertical limit,
1323 and see if it actually moved vertically; if it did, we
1324 didn't really reach CHARPOS, which is beyond window end. */
1325 /* Why 10? because we don't know how many canonical lines
1326 will the height of the next line(s) be. So we guess. */
1327 int ten_more_lines = 10 * default_line_pixel_height (w);
1329 move_it_to (&it, charpos, -1, bottom_y + ten_more_lines, -1,
1330 MOVE_TO_POS | MOVE_TO_Y);
1331 if (it.current_y > top_y)
1332 visible_p = false;
1335 RESTORE_IT (&it, &save_it, save_it_data);
1336 if (visible_p)
1338 if (it.method == GET_FROM_DISPLAY_VECTOR)
1340 /* We stopped on the last glyph of a display vector.
1341 Try and recompute. Hack alert! */
1342 if (charpos < 2 || top.charpos >= charpos)
1343 top_x = it.glyph_row->x;
1344 else
1346 struct it it2, it2_prev;
1347 /* The idea is to get to the previous buffer
1348 position, consume the character there, and use
1349 the pixel coordinates we get after that. But if
1350 the previous buffer position is also displayed
1351 from a display vector, we need to consume all of
1352 the glyphs from that display vector. */
1353 start_display (&it2, w, top);
1354 move_it_to (&it2, charpos - 1, -1, -1, -1, MOVE_TO_POS);
1355 /* If we didn't get to CHARPOS - 1, there's some
1356 replacing display property at that position, and
1357 we stopped after it. That is exactly the place
1358 whose coordinates we want. */
1359 if (IT_CHARPOS (it2) != charpos - 1)
1360 it2_prev = it2;
1361 else
1363 /* Iterate until we get out of the display
1364 vector that displays the character at
1365 CHARPOS - 1. */
1366 do {
1367 get_next_display_element (&it2);
1368 PRODUCE_GLYPHS (&it2);
1369 it2_prev = it2;
1370 set_iterator_to_next (&it2, true);
1371 } while (it2.method == GET_FROM_DISPLAY_VECTOR
1372 && IT_CHARPOS (it2) < charpos);
1374 if (ITERATOR_AT_END_OF_LINE_P (&it2_prev)
1375 || it2_prev.current_x > it2_prev.last_visible_x)
1376 top_x = it.glyph_row->x;
1377 else
1379 top_x = it2_prev.current_x;
1380 top_y = it2_prev.current_y;
1384 else if (IT_CHARPOS (it) != charpos)
1386 Lisp_Object cpos = make_number (charpos);
1387 Lisp_Object spec = Fget_char_property (cpos, Qdisplay, Qnil);
1388 Lisp_Object string = string_from_display_spec (spec);
1389 struct text_pos tpos;
1390 bool newline_in_string
1391 = (STRINGP (string)
1392 && memchr (SDATA (string), '\n', SBYTES (string)));
1394 SET_TEXT_POS (tpos, charpos, CHAR_TO_BYTE (charpos));
1395 bool replacing_spec_p
1396 = (!NILP (spec)
1397 && handle_display_spec (NULL, spec, Qnil, Qnil, &tpos,
1398 charpos, FRAME_WINDOW_P (it.f)));
1399 /* The tricky code below is needed because there's a
1400 discrepancy between move_it_to and how we set cursor
1401 when PT is at the beginning of a portion of text
1402 covered by a display property or an overlay with a
1403 display property, or the display line ends in a
1404 newline from a display string. move_it_to will stop
1405 _after_ such display strings, whereas
1406 set_cursor_from_row conspires with cursor_row_p to
1407 place the cursor on the first glyph produced from the
1408 display string. */
1410 /* We have overshoot PT because it is covered by a
1411 display property that replaces the text it covers.
1412 If the string includes embedded newlines, we are also
1413 in the wrong display line. Backtrack to the correct
1414 line, where the display property begins. */
1415 if (replacing_spec_p)
1417 Lisp_Object startpos, endpos;
1418 EMACS_INT start, end;
1419 struct it it3;
1421 /* Find the first and the last buffer positions
1422 covered by the display string. */
1423 endpos =
1424 Fnext_single_char_property_change (cpos, Qdisplay,
1425 Qnil, Qnil);
1426 startpos =
1427 Fprevious_single_char_property_change (endpos, Qdisplay,
1428 Qnil, Qnil);
1429 start = XFASTINT (startpos);
1430 end = XFASTINT (endpos);
1431 /* Move to the last buffer position before the
1432 display property. */
1433 start_display (&it3, w, top);
1434 if (start > CHARPOS (top))
1435 move_it_to (&it3, start - 1, -1, -1, -1, MOVE_TO_POS);
1436 /* Move forward one more line if the position before
1437 the display string is a newline or if it is the
1438 rightmost character on a line that is
1439 continued or word-wrapped. */
1440 if (it3.method == GET_FROM_BUFFER
1441 && (it3.c == '\n'
1442 || FETCH_BYTE (IT_BYTEPOS (it3)) == '\n'))
1443 move_it_by_lines (&it3, 1);
1444 else if (move_it_in_display_line_to (&it3, -1,
1445 it3.current_x
1446 + it3.pixel_width,
1447 MOVE_TO_X)
1448 == MOVE_LINE_CONTINUED)
1450 move_it_by_lines (&it3, 1);
1451 /* When we are under word-wrap, the #$@%!
1452 move_it_by_lines moves 2 lines, so we need to
1453 fix that up. */
1454 if (it3.line_wrap == WORD_WRAP)
1455 move_it_by_lines (&it3, -1);
1458 /* Record the vertical coordinate of the display
1459 line where we wound up. */
1460 top_y = it3.current_y;
1461 if (it3.bidi_p)
1463 /* When characters are reordered for display,
1464 the character displayed to the left of the
1465 display string could be _after_ the display
1466 property in the logical order. Use the
1467 smallest vertical position of these two. */
1468 start_display (&it3, w, top);
1469 move_it_to (&it3, end + 1, -1, -1, -1, MOVE_TO_POS);
1470 if (it3.current_y < top_y)
1471 top_y = it3.current_y;
1473 /* Move from the top of the window to the beginning
1474 of the display line where the display string
1475 begins. */
1476 start_display (&it3, w, top);
1477 move_it_to (&it3, -1, 0, top_y, -1, MOVE_TO_X | MOVE_TO_Y);
1478 /* If it3_moved stays false after the 'while' loop
1479 below, that means we already were at a newline
1480 before the loop (e.g., the display string begins
1481 with a newline), so we don't need to (and cannot)
1482 inspect the glyphs of it3.glyph_row, because
1483 PRODUCE_GLYPHS will not produce anything for a
1484 newline, and thus it3.glyph_row stays at its
1485 stale content it got at top of the window. */
1486 bool it3_moved = false;
1487 /* Finally, advance the iterator until we hit the
1488 first display element whose character position is
1489 CHARPOS, or until the first newline from the
1490 display string, which signals the end of the
1491 display line. */
1492 while (get_next_display_element (&it3))
1494 PRODUCE_GLYPHS (&it3);
1495 if (IT_CHARPOS (it3) == charpos
1496 || ITERATOR_AT_END_OF_LINE_P (&it3))
1497 break;
1498 it3_moved = true;
1499 set_iterator_to_next (&it3, false);
1501 top_x = it3.current_x - it3.pixel_width;
1502 /* Normally, we would exit the above loop because we
1503 found the display element whose character
1504 position is CHARPOS. For the contingency that we
1505 didn't, and stopped at the first newline from the
1506 display string, move back over the glyphs
1507 produced from the string, until we find the
1508 rightmost glyph not from the string. */
1509 if (it3_moved
1510 && newline_in_string
1511 && IT_CHARPOS (it3) != charpos && EQ (it3.object, string))
1513 struct glyph *g = it3.glyph_row->glyphs[TEXT_AREA]
1514 + it3.glyph_row->used[TEXT_AREA];
1516 while (EQ ((g - 1)->object, string))
1518 --g;
1519 top_x -= g->pixel_width;
1521 eassert (g < it3.glyph_row->glyphs[TEXT_AREA]
1522 + it3.glyph_row->used[TEXT_AREA]);
1527 *x = top_x;
1528 *y = max (top_y + max (0, it.max_ascent - it.ascent), window_top_y);
1529 *rtop = max (0, window_top_y - top_y);
1530 *rbot = max (0, bottom_y - it.last_visible_y);
1531 *rowh = max (0, (min (bottom_y, it.last_visible_y)
1532 - max (top_y, window_top_y)));
1533 *vpos = it.vpos;
1534 if (it.bidi_it.paragraph_dir == R2L)
1535 r2l = true;
1538 else
1540 /* Either we were asked to provide info about WINDOW_END, or
1541 CHARPOS is in the partially visible glyph row at end of
1542 window. */
1543 struct it it2;
1544 void *it2data = NULL;
1546 SAVE_IT (it2, it, it2data);
1547 if (IT_CHARPOS (it) < ZV && FETCH_BYTE (IT_BYTEPOS (it)) != '\n')
1548 move_it_by_lines (&it, 1);
1549 if (charpos < IT_CHARPOS (it)
1550 || (it.what == IT_EOB && charpos == IT_CHARPOS (it)))
1552 visible_p = true;
1553 RESTORE_IT (&it2, &it2, it2data);
1554 move_it_to (&it2, charpos, -1, -1, -1, MOVE_TO_POS);
1555 *x = it2.current_x;
1556 *y = it2.current_y + it2.max_ascent - it2.ascent;
1557 *rtop = max (0, -it2.current_y);
1558 *rbot = max (0, ((it2.current_y + it2.max_ascent + it2.max_descent)
1559 - it.last_visible_y));
1560 *rowh = max (0, (min (it2.current_y + it2.max_ascent + it2.max_descent,
1561 it.last_visible_y)
1562 - max (it2.current_y,
1563 WINDOW_HEADER_LINE_HEIGHT (w))));
1564 *vpos = it2.vpos;
1565 if (it2.bidi_it.paragraph_dir == R2L)
1566 r2l = true;
1568 else
1569 bidi_unshelve_cache (it2data, true);
1571 bidi_unshelve_cache (itdata, false);
1573 if (old_buffer)
1574 set_buffer_internal_1 (old_buffer);
1576 if (visible_p)
1578 if (w->hscroll > 0)
1579 *x -=
1580 window_hscroll_limited (w, WINDOW_XFRAME (w))
1581 * WINDOW_FRAME_COLUMN_WIDTH (w);
1582 /* For lines in an R2L paragraph, we need to mirror the X pixel
1583 coordinate wrt the text area. For the reasons, see the
1584 commentary in buffer_posn_from_coords and the explanation of
1585 the geometry used by the move_it_* functions at the end of
1586 the large commentary near the beginning of this file. */
1587 if (r2l)
1588 *x = window_box_width (w, TEXT_AREA) - *x - 1;
1591 #if false
1592 /* Debugging code. */
1593 if (visible_p)
1594 fprintf (stderr, "+pv pt=%d vs=%d --> x=%d y=%d rt=%d rb=%d rh=%d vp=%d\n",
1595 charpos, w->vscroll, *x, *y, *rtop, *rbot, *rowh, *vpos);
1596 else
1597 fprintf (stderr, "-pv pt=%d vs=%d\n", charpos, w->vscroll);
1598 #endif
1600 return visible_p;
1604 /* Return the next character from STR. Return in *LEN the length of
1605 the character. This is like STRING_CHAR_AND_LENGTH but never
1606 returns an invalid character. If we find one, we return a `?', but
1607 with the length of the invalid character. */
1609 static int
1610 string_char_and_length (const unsigned char *str, int *len)
1612 int c;
1614 c = STRING_CHAR_AND_LENGTH (str, *len);
1615 if (!CHAR_VALID_P (c))
1616 /* We may not change the length here because other places in Emacs
1617 don't use this function, i.e. they silently accept invalid
1618 characters. */
1619 c = '?';
1621 return c;
1626 /* Given a position POS containing a valid character and byte position
1627 in STRING, return the position NCHARS ahead (NCHARS >= 0). */
1629 static struct text_pos
1630 string_pos_nchars_ahead (struct text_pos pos, Lisp_Object string, ptrdiff_t nchars)
1632 eassert (STRINGP (string) && nchars >= 0);
1634 if (STRING_MULTIBYTE (string))
1636 const unsigned char *p = SDATA (string) + BYTEPOS (pos);
1637 int len;
1639 while (nchars--)
1641 string_char_and_length (p, &len);
1642 p += len;
1643 CHARPOS (pos) += 1;
1644 BYTEPOS (pos) += len;
1647 else
1648 SET_TEXT_POS (pos, CHARPOS (pos) + nchars, BYTEPOS (pos) + nchars);
1650 return pos;
1654 /* Value is the text position, i.e. character and byte position,
1655 for character position CHARPOS in STRING. */
1657 static struct text_pos
1658 string_pos (ptrdiff_t charpos, Lisp_Object string)
1660 struct text_pos pos;
1661 eassert (STRINGP (string));
1662 eassert (charpos >= 0);
1663 SET_TEXT_POS (pos, charpos, string_char_to_byte (string, charpos));
1664 return pos;
1668 /* Value is a text position, i.e. character and byte position, for
1669 character position CHARPOS in C string S. MULTIBYTE_P
1670 means recognize multibyte characters. */
1672 static struct text_pos
1673 c_string_pos (ptrdiff_t charpos, const char *s, bool multibyte_p)
1675 struct text_pos pos;
1677 eassert (s != NULL);
1678 eassert (charpos >= 0);
1680 if (multibyte_p)
1682 int len;
1684 SET_TEXT_POS (pos, 0, 0);
1685 while (charpos--)
1687 string_char_and_length ((const unsigned char *) s, &len);
1688 s += len;
1689 CHARPOS (pos) += 1;
1690 BYTEPOS (pos) += len;
1693 else
1694 SET_TEXT_POS (pos, charpos, charpos);
1696 return pos;
1700 /* Value is the number of characters in C string S. MULTIBYTE_P
1701 means recognize multibyte characters. */
1703 static ptrdiff_t
1704 number_of_chars (const char *s, bool multibyte_p)
1706 ptrdiff_t nchars;
1708 if (multibyte_p)
1710 ptrdiff_t rest = strlen (s);
1711 int len;
1712 const unsigned char *p = (const unsigned char *) s;
1714 for (nchars = 0; rest > 0; ++nchars)
1716 string_char_and_length (p, &len);
1717 rest -= len, p += len;
1720 else
1721 nchars = strlen (s);
1723 return nchars;
1727 /* Compute byte position NEWPOS->bytepos corresponding to
1728 NEWPOS->charpos. POS is a known position in string STRING.
1729 NEWPOS->charpos must be >= POS.charpos. */
1731 static void
1732 compute_string_pos (struct text_pos *newpos, struct text_pos pos, Lisp_Object string)
1734 eassert (STRINGP (string));
1735 eassert (CHARPOS (*newpos) >= CHARPOS (pos));
1737 if (STRING_MULTIBYTE (string))
1738 *newpos = string_pos_nchars_ahead (pos, string,
1739 CHARPOS (*newpos) - CHARPOS (pos));
1740 else
1741 BYTEPOS (*newpos) = CHARPOS (*newpos);
1744 /* EXPORT:
1745 Return an estimation of the pixel height of mode or header lines on
1746 frame F. FACE_ID specifies what line's height to estimate. */
1749 estimate_mode_line_height (struct frame *f, enum face_id face_id)
1751 #ifdef HAVE_WINDOW_SYSTEM
1752 if (FRAME_WINDOW_P (f))
1754 int height = FONT_HEIGHT (FRAME_FONT (f));
1756 /* This function is called so early when Emacs starts that the face
1757 cache and mode line face are not yet initialized. */
1758 if (FRAME_FACE_CACHE (f))
1760 struct face *face = FACE_FROM_ID (f, face_id);
1761 if (face)
1763 if (face->font)
1764 height = FONT_HEIGHT (face->font);
1765 if (face->box_line_width > 0)
1766 height += 2 * face->box_line_width;
1770 return height;
1772 #endif
1774 return 1;
1777 /* Given a pixel position (PIX_X, PIX_Y) on frame F, return glyph
1778 co-ordinates in (*X, *Y). Set *BOUNDS to the rectangle that the
1779 glyph at X, Y occupies, if BOUNDS != 0. If NOCLIP, do
1780 not force the value into range. */
1782 void
1783 pixel_to_glyph_coords (struct frame *f, int pix_x, int pix_y, int *x, int *y,
1784 NativeRectangle *bounds, bool noclip)
1787 #ifdef HAVE_WINDOW_SYSTEM
1788 if (FRAME_WINDOW_P (f))
1790 /* Arrange for the division in FRAME_PIXEL_X_TO_COL etc. to round down
1791 even for negative values. */
1792 if (pix_x < 0)
1793 pix_x -= FRAME_COLUMN_WIDTH (f) - 1;
1794 if (pix_y < 0)
1795 pix_y -= FRAME_LINE_HEIGHT (f) - 1;
1797 pix_x = FRAME_PIXEL_X_TO_COL (f, pix_x);
1798 pix_y = FRAME_PIXEL_Y_TO_LINE (f, pix_y);
1800 if (bounds)
1801 STORE_NATIVE_RECT (*bounds,
1802 FRAME_COL_TO_PIXEL_X (f, pix_x),
1803 FRAME_LINE_TO_PIXEL_Y (f, pix_y),
1804 FRAME_COLUMN_WIDTH (f) - 1,
1805 FRAME_LINE_HEIGHT (f) - 1);
1807 /* PXW: Should we clip pixels before converting to columns/lines? */
1808 if (!noclip)
1810 if (pix_x < 0)
1811 pix_x = 0;
1812 else if (pix_x > FRAME_TOTAL_COLS (f))
1813 pix_x = FRAME_TOTAL_COLS (f);
1815 if (pix_y < 0)
1816 pix_y = 0;
1817 else if (pix_y > FRAME_TOTAL_LINES (f))
1818 pix_y = FRAME_TOTAL_LINES (f);
1821 #endif
1823 *x = pix_x;
1824 *y = pix_y;
1828 /* Find the glyph under window-relative coordinates X/Y in window W.
1829 Consider only glyphs from buffer text, i.e. no glyphs from overlay
1830 strings. Return in *HPOS and *VPOS the row and column number of
1831 the glyph found. Return in *AREA the glyph area containing X.
1832 Value is a pointer to the glyph found or null if X/Y is not on
1833 text, or we can't tell because W's current matrix is not up to
1834 date. */
1836 static struct glyph *
1837 x_y_to_hpos_vpos (struct window *w, int x, int y, int *hpos, int *vpos,
1838 int *dx, int *dy, int *area)
1840 struct glyph *glyph, *end;
1841 struct glyph_row *row = NULL;
1842 int x0, i;
1844 /* Find row containing Y. Give up if some row is not enabled. */
1845 for (i = 0; i < w->current_matrix->nrows; ++i)
1847 row = MATRIX_ROW (w->current_matrix, i);
1848 if (!row->enabled_p)
1849 return NULL;
1850 if (y >= row->y && y < MATRIX_ROW_BOTTOM_Y (row))
1851 break;
1854 *vpos = i;
1855 *hpos = 0;
1857 /* Give up if Y is not in the window. */
1858 if (i == w->current_matrix->nrows)
1859 return NULL;
1861 /* Get the glyph area containing X. */
1862 if (w->pseudo_window_p)
1864 *area = TEXT_AREA;
1865 x0 = 0;
1867 else
1869 if (x < window_box_left_offset (w, TEXT_AREA))
1871 *area = LEFT_MARGIN_AREA;
1872 x0 = window_box_left_offset (w, LEFT_MARGIN_AREA);
1874 else if (x < window_box_right_offset (w, TEXT_AREA))
1876 *area = TEXT_AREA;
1877 x0 = window_box_left_offset (w, TEXT_AREA) + min (row->x, 0);
1879 else
1881 *area = RIGHT_MARGIN_AREA;
1882 x0 = window_box_left_offset (w, RIGHT_MARGIN_AREA);
1886 /* Find glyph containing X. */
1887 glyph = row->glyphs[*area];
1888 end = glyph + row->used[*area];
1889 x -= x0;
1890 while (glyph < end && x >= glyph->pixel_width)
1892 x -= glyph->pixel_width;
1893 ++glyph;
1896 if (glyph == end)
1897 return NULL;
1899 if (dx)
1901 *dx = x;
1902 *dy = y - (row->y + row->ascent - glyph->ascent);
1905 *hpos = glyph - row->glyphs[*area];
1906 return glyph;
1909 /* Convert frame-relative x/y to coordinates relative to window W.
1910 Takes pseudo-windows into account. */
1912 static void
1913 frame_to_window_pixel_xy (struct window *w, int *x, int *y)
1915 if (w->pseudo_window_p)
1917 /* A pseudo-window is always full-width, and starts at the
1918 left edge of the frame, plus a frame border. */
1919 struct frame *f = XFRAME (w->frame);
1920 *x -= FRAME_INTERNAL_BORDER_WIDTH (f);
1921 *y = FRAME_TO_WINDOW_PIXEL_Y (w, *y);
1923 else
1925 *x -= WINDOW_LEFT_EDGE_X (w);
1926 *y = FRAME_TO_WINDOW_PIXEL_Y (w, *y);
1930 #ifdef HAVE_WINDOW_SYSTEM
1932 /* EXPORT:
1933 Return in RECTS[] at most N clipping rectangles for glyph string S.
1934 Return the number of stored rectangles. */
1937 get_glyph_string_clip_rects (struct glyph_string *s, NativeRectangle *rects, int n)
1939 XRectangle r;
1941 if (n <= 0)
1942 return 0;
1944 if (s->row->full_width_p)
1946 /* Draw full-width. X coordinates are relative to S->w->left_col. */
1947 r.x = WINDOW_LEFT_EDGE_X (s->w);
1948 if (s->row->mode_line_p)
1949 r.width = WINDOW_PIXEL_WIDTH (s->w) - WINDOW_RIGHT_DIVIDER_WIDTH (s->w);
1950 else
1951 r.width = WINDOW_PIXEL_WIDTH (s->w);
1953 /* Unless displaying a mode or menu bar line, which are always
1954 fully visible, clip to the visible part of the row. */
1955 if (s->w->pseudo_window_p)
1956 r.height = s->row->visible_height;
1957 else
1958 r.height = s->height;
1960 else
1962 /* This is a text line that may be partially visible. */
1963 r.x = window_box_left (s->w, s->area);
1964 r.width = window_box_width (s->w, s->area);
1965 r.height = s->row->visible_height;
1968 if (s->clip_head)
1969 if (r.x < s->clip_head->x)
1971 if (r.width >= s->clip_head->x - r.x)
1972 r.width -= s->clip_head->x - r.x;
1973 else
1974 r.width = 0;
1975 r.x = s->clip_head->x;
1977 if (s->clip_tail)
1978 if (r.x + r.width > s->clip_tail->x + s->clip_tail->background_width)
1980 if (s->clip_tail->x + s->clip_tail->background_width >= r.x)
1981 r.width = s->clip_tail->x + s->clip_tail->background_width - r.x;
1982 else
1983 r.width = 0;
1986 /* If S draws overlapping rows, it's sufficient to use the top and
1987 bottom of the window for clipping because this glyph string
1988 intentionally draws over other lines. */
1989 if (s->for_overlaps)
1991 r.y = WINDOW_HEADER_LINE_HEIGHT (s->w);
1992 r.height = window_text_bottom_y (s->w) - r.y;
1994 /* Alas, the above simple strategy does not work for the
1995 environments with anti-aliased text: if the same text is
1996 drawn onto the same place multiple times, it gets thicker.
1997 If the overlap we are processing is for the erased cursor, we
1998 take the intersection with the rectangle of the cursor. */
1999 if (s->for_overlaps & OVERLAPS_ERASED_CURSOR)
2001 XRectangle rc, r_save = r;
2003 rc.x = WINDOW_TEXT_TO_FRAME_PIXEL_X (s->w, s->w->phys_cursor.x);
2004 rc.y = s->w->phys_cursor.y;
2005 rc.width = s->w->phys_cursor_width;
2006 rc.height = s->w->phys_cursor_height;
2008 x_intersect_rectangles (&r_save, &rc, &r);
2011 else
2013 /* Don't use S->y for clipping because it doesn't take partially
2014 visible lines into account. For example, it can be negative for
2015 partially visible lines at the top of a window. */
2016 if (!s->row->full_width_p
2017 && MATRIX_ROW_PARTIALLY_VISIBLE_AT_TOP_P (s->w, s->row))
2018 r.y = WINDOW_HEADER_LINE_HEIGHT (s->w);
2019 else
2020 r.y = max (0, s->row->y);
2023 r.y = WINDOW_TO_FRAME_PIXEL_Y (s->w, r.y);
2025 /* If drawing the cursor, don't let glyph draw outside its
2026 advertised boundaries. Cleartype does this under some circumstances. */
2027 if (s->hl == DRAW_CURSOR)
2029 struct glyph *glyph = s->first_glyph;
2030 int height, max_y;
2032 if (s->x > r.x)
2034 if (r.width >= s->x - r.x)
2035 r.width -= s->x - r.x;
2036 else /* R2L hscrolled row with cursor outside text area */
2037 r.width = 0;
2038 r.x = s->x;
2040 r.width = min (r.width, glyph->pixel_width);
2042 /* If r.y is below window bottom, ensure that we still see a cursor. */
2043 height = min (glyph->ascent + glyph->descent,
2044 min (FRAME_LINE_HEIGHT (s->f), s->row->visible_height));
2045 max_y = window_text_bottom_y (s->w) - height;
2046 max_y = WINDOW_TO_FRAME_PIXEL_Y (s->w, max_y);
2047 if (s->ybase - glyph->ascent > max_y)
2049 r.y = max_y;
2050 r.height = height;
2052 else
2054 /* Don't draw cursor glyph taller than our actual glyph. */
2055 height = max (FRAME_LINE_HEIGHT (s->f), glyph->ascent + glyph->descent);
2056 if (height < r.height)
2058 max_y = r.y + r.height;
2059 r.y = min (max_y, max (r.y, s->ybase + glyph->descent - height));
2060 r.height = min (max_y - r.y, height);
2065 if (s->row->clip)
2067 XRectangle r_save = r;
2069 if (! x_intersect_rectangles (&r_save, s->row->clip, &r))
2070 r.width = 0;
2073 if ((s->for_overlaps & OVERLAPS_BOTH) == 0
2074 || ((s->for_overlaps & OVERLAPS_BOTH) == OVERLAPS_BOTH && n == 1))
2076 #ifdef CONVERT_FROM_XRECT
2077 CONVERT_FROM_XRECT (r, *rects);
2078 #else
2079 *rects = r;
2080 #endif
2081 return 1;
2083 else
2085 /* If we are processing overlapping and allowed to return
2086 multiple clipping rectangles, we exclude the row of the glyph
2087 string from the clipping rectangle. This is to avoid drawing
2088 the same text on the environment with anti-aliasing. */
2089 #ifdef CONVERT_FROM_XRECT
2090 XRectangle rs[2];
2091 #else
2092 XRectangle *rs = rects;
2093 #endif
2094 int i = 0, row_y = WINDOW_TO_FRAME_PIXEL_Y (s->w, s->row->y);
2096 if (s->for_overlaps & OVERLAPS_PRED)
2098 rs[i] = r;
2099 if (r.y + r.height > row_y)
2101 if (r.y < row_y)
2102 rs[i].height = row_y - r.y;
2103 else
2104 rs[i].height = 0;
2106 i++;
2108 if (s->for_overlaps & OVERLAPS_SUCC)
2110 rs[i] = r;
2111 if (r.y < row_y + s->row->visible_height)
2113 if (r.y + r.height > row_y + s->row->visible_height)
2115 rs[i].y = row_y + s->row->visible_height;
2116 rs[i].height = r.y + r.height - rs[i].y;
2118 else
2119 rs[i].height = 0;
2121 i++;
2124 n = i;
2125 #ifdef CONVERT_FROM_XRECT
2126 for (i = 0; i < n; i++)
2127 CONVERT_FROM_XRECT (rs[i], rects[i]);
2128 #endif
2129 return n;
2133 /* EXPORT:
2134 Return in *NR the clipping rectangle for glyph string S. */
2136 void
2137 get_glyph_string_clip_rect (struct glyph_string *s, NativeRectangle *nr)
2139 get_glyph_string_clip_rects (s, nr, 1);
2143 /* EXPORT:
2144 Return the position and height of the phys cursor in window W.
2145 Set w->phys_cursor_width to width of phys cursor.
2148 void
2149 get_phys_cursor_geometry (struct window *w, struct glyph_row *row,
2150 struct glyph *glyph, int *xp, int *yp, int *heightp)
2152 struct frame *f = XFRAME (WINDOW_FRAME (w));
2153 int x, y, wd, h, h0, y0;
2155 /* Compute the width of the rectangle to draw. If on a stretch
2156 glyph, and `x-stretch-block-cursor' is nil, don't draw a
2157 rectangle as wide as the glyph, but use a canonical character
2158 width instead. */
2159 wd = glyph->pixel_width;
2161 x = w->phys_cursor.x;
2162 if (x < 0)
2164 wd += x;
2165 x = 0;
2168 if (glyph->type == STRETCH_GLYPH
2169 && !x_stretch_cursor_p)
2170 wd = min (FRAME_COLUMN_WIDTH (f), wd);
2171 w->phys_cursor_width = wd;
2173 y = w->phys_cursor.y + row->ascent - glyph->ascent;
2175 /* If y is below window bottom, ensure that we still see a cursor. */
2176 h0 = min (FRAME_LINE_HEIGHT (f), row->visible_height);
2178 h = max (h0, glyph->ascent + glyph->descent);
2179 h0 = min (h0, glyph->ascent + glyph->descent);
2181 y0 = WINDOW_HEADER_LINE_HEIGHT (w);
2182 if (y < y0)
2184 h = max (h - (y0 - y) + 1, h0);
2185 y = y0 - 1;
2187 else
2189 y0 = window_text_bottom_y (w) - h0;
2190 if (y > y0)
2192 h += y - y0;
2193 y = y0;
2197 *xp = WINDOW_TEXT_TO_FRAME_PIXEL_X (w, x);
2198 *yp = WINDOW_TO_FRAME_PIXEL_Y (w, y);
2199 *heightp = h;
2203 * Remember which glyph the mouse is over.
2206 void
2207 remember_mouse_glyph (struct frame *f, int gx, int gy, NativeRectangle *rect)
2209 Lisp_Object window;
2210 struct window *w;
2211 struct glyph_row *r, *gr, *end_row;
2212 enum window_part part;
2213 enum glyph_row_area area;
2214 int x, y, width, height;
2216 /* Try to determine frame pixel position and size of the glyph under
2217 frame pixel coordinates X/Y on frame F. */
2219 if (window_resize_pixelwise)
2221 width = height = 1;
2222 goto virtual_glyph;
2224 else if (!f->glyphs_initialized_p
2225 || (window = window_from_coordinates (f, gx, gy, &part, false),
2226 NILP (window)))
2228 width = FRAME_SMALLEST_CHAR_WIDTH (f);
2229 height = FRAME_SMALLEST_FONT_HEIGHT (f);
2230 goto virtual_glyph;
2233 w = XWINDOW (window);
2234 width = WINDOW_FRAME_COLUMN_WIDTH (w);
2235 height = WINDOW_FRAME_LINE_HEIGHT (w);
2237 x = window_relative_x_coord (w, part, gx);
2238 y = gy - WINDOW_TOP_EDGE_Y (w);
2240 r = MATRIX_FIRST_TEXT_ROW (w->current_matrix);
2241 end_row = MATRIX_BOTTOM_TEXT_ROW (w->current_matrix, w);
2243 if (w->pseudo_window_p)
2245 area = TEXT_AREA;
2246 part = ON_MODE_LINE; /* Don't adjust margin. */
2247 goto text_glyph;
2250 switch (part)
2252 case ON_LEFT_MARGIN:
2253 area = LEFT_MARGIN_AREA;
2254 goto text_glyph;
2256 case ON_RIGHT_MARGIN:
2257 area = RIGHT_MARGIN_AREA;
2258 goto text_glyph;
2260 case ON_HEADER_LINE:
2261 case ON_MODE_LINE:
2262 gr = (part == ON_HEADER_LINE
2263 ? MATRIX_HEADER_LINE_ROW (w->current_matrix)
2264 : MATRIX_MODE_LINE_ROW (w->current_matrix));
2265 gy = gr->y;
2266 area = TEXT_AREA;
2267 goto text_glyph_row_found;
2269 case ON_TEXT:
2270 area = TEXT_AREA;
2272 text_glyph:
2273 gr = 0; gy = 0;
2274 for (; r <= end_row && r->enabled_p; ++r)
2275 if (r->y + r->height > y)
2277 gr = r; gy = r->y;
2278 break;
2281 text_glyph_row_found:
2282 if (gr && gy <= y)
2284 struct glyph *g = gr->glyphs[area];
2285 struct glyph *end = g + gr->used[area];
2287 height = gr->height;
2288 for (gx = gr->x; g < end; gx += g->pixel_width, ++g)
2289 if (gx + g->pixel_width > x)
2290 break;
2292 if (g < end)
2294 if (g->type == IMAGE_GLYPH)
2296 /* Don't remember when mouse is over image, as
2297 image may have hot-spots. */
2298 STORE_NATIVE_RECT (*rect, 0, 0, 0, 0);
2299 return;
2301 width = g->pixel_width;
2303 else
2305 /* Use nominal char spacing at end of line. */
2306 x -= gx;
2307 gx += (x / width) * width;
2310 if (part != ON_MODE_LINE && part != ON_HEADER_LINE)
2312 gx += window_box_left_offset (w, area);
2313 /* Don't expand over the modeline to make sure the vertical
2314 drag cursor is shown early enough. */
2315 height = min (height,
2316 max (0, WINDOW_BOX_HEIGHT_NO_MODE_LINE (w) - gy));
2319 else
2321 /* Use nominal line height at end of window. */
2322 gx = (x / width) * width;
2323 y -= gy;
2324 gy += (y / height) * height;
2325 if (part != ON_MODE_LINE && part != ON_HEADER_LINE)
2326 /* See comment above. */
2327 height = min (height,
2328 max (0, WINDOW_BOX_HEIGHT_NO_MODE_LINE (w) - gy));
2330 break;
2332 case ON_LEFT_FRINGE:
2333 gx = (WINDOW_HAS_FRINGES_OUTSIDE_MARGINS (w)
2334 ? WINDOW_LEFT_SCROLL_BAR_AREA_WIDTH (w)
2335 : window_box_right_offset (w, LEFT_MARGIN_AREA));
2336 width = WINDOW_LEFT_FRINGE_WIDTH (w);
2337 goto row_glyph;
2339 case ON_RIGHT_FRINGE:
2340 gx = (WINDOW_HAS_FRINGES_OUTSIDE_MARGINS (w)
2341 ? window_box_right_offset (w, RIGHT_MARGIN_AREA)
2342 : window_box_right_offset (w, TEXT_AREA));
2343 if (WINDOW_RIGHT_DIVIDER_WIDTH (w) == 0
2344 && !WINDOW_HAS_VERTICAL_SCROLL_BAR (w)
2345 && !WINDOW_RIGHTMOST_P (w))
2346 if (gx < WINDOW_PIXEL_WIDTH (w) - width)
2347 /* Make sure the vertical border can get her own glyph to the
2348 right of the one we build here. */
2349 width = WINDOW_RIGHT_FRINGE_WIDTH (w) - width;
2350 else
2351 width = WINDOW_PIXEL_WIDTH (w) - gx;
2352 else
2353 width = WINDOW_RIGHT_FRINGE_WIDTH (w);
2355 goto row_glyph;
2357 case ON_VERTICAL_BORDER:
2358 gx = WINDOW_PIXEL_WIDTH (w) - width;
2359 goto row_glyph;
2361 case ON_VERTICAL_SCROLL_BAR:
2362 gx = (WINDOW_HAS_VERTICAL_SCROLL_BAR_ON_LEFT (w)
2364 : (window_box_right_offset (w, RIGHT_MARGIN_AREA)
2365 + (WINDOW_HAS_FRINGES_OUTSIDE_MARGINS (w)
2366 ? WINDOW_RIGHT_FRINGE_WIDTH (w)
2367 : 0)));
2368 width = WINDOW_SCROLL_BAR_AREA_WIDTH (w);
2370 row_glyph:
2371 gr = 0, gy = 0;
2372 for (; r <= end_row && r->enabled_p; ++r)
2373 if (r->y + r->height > y)
2375 gr = r; gy = r->y;
2376 break;
2379 if (gr && gy <= y)
2380 height = gr->height;
2381 else
2383 /* Use nominal line height at end of window. */
2384 y -= gy;
2385 gy += (y / height) * height;
2387 break;
2389 case ON_RIGHT_DIVIDER:
2390 gx = WINDOW_PIXEL_WIDTH (w) - WINDOW_RIGHT_DIVIDER_WIDTH (w);
2391 width = WINDOW_RIGHT_DIVIDER_WIDTH (w);
2392 gy = 0;
2393 /* The bottom divider prevails. */
2394 height = WINDOW_PIXEL_HEIGHT (w) - WINDOW_BOTTOM_DIVIDER_WIDTH (w);
2395 goto add_edge;
2397 case ON_BOTTOM_DIVIDER:
2398 gx = 0;
2399 width = WINDOW_PIXEL_WIDTH (w);
2400 gy = WINDOW_PIXEL_HEIGHT (w) - WINDOW_BOTTOM_DIVIDER_WIDTH (w);
2401 height = WINDOW_BOTTOM_DIVIDER_WIDTH (w);
2402 goto add_edge;
2404 default:
2406 virtual_glyph:
2407 /* If there is no glyph under the mouse, then we divide the screen
2408 into a grid of the smallest glyph in the frame, and use that
2409 as our "glyph". */
2411 /* Arrange for the division in FRAME_PIXEL_X_TO_COL etc. to
2412 round down even for negative values. */
2413 if (gx < 0)
2414 gx -= width - 1;
2415 if (gy < 0)
2416 gy -= height - 1;
2418 gx = (gx / width) * width;
2419 gy = (gy / height) * height;
2421 goto store_rect;
2424 add_edge:
2425 gx += WINDOW_LEFT_EDGE_X (w);
2426 gy += WINDOW_TOP_EDGE_Y (w);
2428 store_rect:
2429 STORE_NATIVE_RECT (*rect, gx, gy, width, height);
2431 /* Visible feedback for debugging. */
2432 #if false && defined HAVE_X_WINDOWS
2433 XDrawRectangle (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
2434 f->output_data.x->normal_gc,
2435 gx, gy, width, height);
2436 #endif
2440 #endif /* HAVE_WINDOW_SYSTEM */
2442 static void
2443 adjust_window_ends (struct window *w, struct glyph_row *row, bool current)
2445 eassert (w);
2446 w->window_end_pos = Z - MATRIX_ROW_END_CHARPOS (row);
2447 w->window_end_bytepos = Z_BYTE - MATRIX_ROW_END_BYTEPOS (row);
2448 w->window_end_vpos
2449 = MATRIX_ROW_VPOS (row, current ? w->current_matrix : w->desired_matrix);
2452 /***********************************************************************
2453 Lisp form evaluation
2454 ***********************************************************************/
2456 /* Error handler for safe_eval and safe_call. */
2458 static Lisp_Object
2459 safe_eval_handler (Lisp_Object arg, ptrdiff_t nargs, Lisp_Object *args)
2461 add_to_log ("Error during redisplay: %S signaled %S",
2462 Flist (nargs, args), arg);
2463 return Qnil;
2466 /* Call function FUNC with the rest of NARGS - 1 arguments
2467 following. Return the result, or nil if something went
2468 wrong. Prevent redisplay during the evaluation. */
2470 static Lisp_Object
2471 safe__call (bool inhibit_quit, ptrdiff_t nargs, Lisp_Object func, va_list ap)
2473 Lisp_Object val;
2475 if (inhibit_eval_during_redisplay)
2476 val = Qnil;
2477 else
2479 ptrdiff_t i;
2480 ptrdiff_t count = SPECPDL_INDEX ();
2481 Lisp_Object *args;
2482 USE_SAFE_ALLOCA;
2483 SAFE_ALLOCA_LISP (args, nargs);
2485 args[0] = func;
2486 for (i = 1; i < nargs; i++)
2487 args[i] = va_arg (ap, Lisp_Object);
2489 specbind (Qinhibit_redisplay, Qt);
2490 if (inhibit_quit)
2491 specbind (Qinhibit_quit, Qt);
2492 /* Use Qt to ensure debugger does not run,
2493 so there is no possibility of wanting to redisplay. */
2494 val = internal_condition_case_n (Ffuncall, nargs, args, Qt,
2495 safe_eval_handler);
2496 SAFE_FREE ();
2497 val = unbind_to (count, val);
2500 return val;
2503 Lisp_Object
2504 safe_call (ptrdiff_t nargs, Lisp_Object func, ...)
2506 Lisp_Object retval;
2507 va_list ap;
2509 va_start (ap, func);
2510 retval = safe__call (false, nargs, func, ap);
2511 va_end (ap);
2512 return retval;
2515 /* Call function FN with one argument ARG.
2516 Return the result, or nil if something went wrong. */
2518 Lisp_Object
2519 safe_call1 (Lisp_Object fn, Lisp_Object arg)
2521 return safe_call (2, fn, arg);
2524 static Lisp_Object
2525 safe__call1 (bool inhibit_quit, Lisp_Object fn, ...)
2527 Lisp_Object retval;
2528 va_list ap;
2530 va_start (ap, fn);
2531 retval = safe__call (inhibit_quit, 2, fn, ap);
2532 va_end (ap);
2533 return retval;
2536 Lisp_Object
2537 safe_eval (Lisp_Object sexpr)
2539 return safe__call1 (false, Qeval, sexpr);
2542 static Lisp_Object
2543 safe__eval (bool inhibit_quit, Lisp_Object sexpr)
2545 return safe__call1 (inhibit_quit, Qeval, sexpr);
2548 /* Call function FN with two arguments ARG1 and ARG2.
2549 Return the result, or nil if something went wrong. */
2551 Lisp_Object
2552 safe_call2 (Lisp_Object fn, Lisp_Object arg1, Lisp_Object arg2)
2554 return safe_call (3, fn, arg1, arg2);
2559 /***********************************************************************
2560 Debugging
2561 ***********************************************************************/
2563 /* Define CHECK_IT to perform sanity checks on iterators.
2564 This is for debugging. It is too slow to do unconditionally. */
2566 static void
2567 CHECK_IT (struct it *it)
2569 #if false
2570 if (it->method == GET_FROM_STRING)
2572 eassert (STRINGP (it->string));
2573 eassert (IT_STRING_CHARPOS (*it) >= 0);
2575 else
2577 eassert (IT_STRING_CHARPOS (*it) < 0);
2578 if (it->method == GET_FROM_BUFFER)
2580 /* Check that character and byte positions agree. */
2581 eassert (IT_CHARPOS (*it) == BYTE_TO_CHAR (IT_BYTEPOS (*it)));
2585 if (it->dpvec)
2586 eassert (it->current.dpvec_index >= 0);
2587 else
2588 eassert (it->current.dpvec_index < 0);
2589 #endif
2593 /* Check that the window end of window W is what we expect it
2594 to be---the last row in the current matrix displaying text. */
2596 static void
2597 CHECK_WINDOW_END (struct window *w)
2599 #if defined GLYPH_DEBUG && defined ENABLE_CHECKING
2600 if (!MINI_WINDOW_P (w) && w->window_end_valid)
2602 struct glyph_row *row;
2603 eassert ((row = MATRIX_ROW (w->current_matrix, w->window_end_vpos),
2604 !row->enabled_p
2605 || MATRIX_ROW_DISPLAYS_TEXT_P (row)
2606 || MATRIX_ROW_VPOS (row, w->current_matrix) == 0));
2608 #endif
2611 /***********************************************************************
2612 Iterator initialization
2613 ***********************************************************************/
2615 /* Initialize IT for displaying current_buffer in window W, starting
2616 at character position CHARPOS. CHARPOS < 0 means that no buffer
2617 position is specified which is useful when the iterator is assigned
2618 a position later. BYTEPOS is the byte position corresponding to
2619 CHARPOS.
2621 If ROW is not null, calls to produce_glyphs with IT as parameter
2622 will produce glyphs in that row.
2624 BASE_FACE_ID is the id of a base face to use. It must be one of
2625 DEFAULT_FACE_ID for normal text, MODE_LINE_FACE_ID,
2626 MODE_LINE_INACTIVE_FACE_ID, or HEADER_LINE_FACE_ID for displaying
2627 mode lines, or TOOL_BAR_FACE_ID for displaying the tool-bar.
2629 If ROW is null and BASE_FACE_ID is equal to MODE_LINE_FACE_ID,
2630 MODE_LINE_INACTIVE_FACE_ID, or HEADER_LINE_FACE_ID, the iterator
2631 will be initialized to use the corresponding mode line glyph row of
2632 the desired matrix of W. */
2634 void
2635 init_iterator (struct it *it, struct window *w,
2636 ptrdiff_t charpos, ptrdiff_t bytepos,
2637 struct glyph_row *row, enum face_id base_face_id)
2639 enum face_id remapped_base_face_id = base_face_id;
2641 /* Some precondition checks. */
2642 eassert (w != NULL && it != NULL);
2643 eassert (charpos < 0 || (charpos >= BUF_BEG (current_buffer)
2644 && charpos <= ZV));
2646 /* If face attributes have been changed since the last redisplay,
2647 free realized faces now because they depend on face definitions
2648 that might have changed. Don't free faces while there might be
2649 desired matrices pending which reference these faces. */
2650 if (face_change && !inhibit_free_realized_faces)
2652 face_change = false;
2653 free_all_realized_faces (Qnil);
2656 /* Perhaps remap BASE_FACE_ID to a user-specified alternative. */
2657 if (! NILP (Vface_remapping_alist))
2658 remapped_base_face_id
2659 = lookup_basic_face (XFRAME (w->frame), base_face_id);
2661 /* Use one of the mode line rows of W's desired matrix if
2662 appropriate. */
2663 if (row == NULL)
2665 if (base_face_id == MODE_LINE_FACE_ID
2666 || base_face_id == MODE_LINE_INACTIVE_FACE_ID)
2667 row = MATRIX_MODE_LINE_ROW (w->desired_matrix);
2668 else if (base_face_id == HEADER_LINE_FACE_ID)
2669 row = MATRIX_HEADER_LINE_ROW (w->desired_matrix);
2672 /* Clear IT, and set it->object and other IT's Lisp objects to Qnil.
2673 Other parts of redisplay rely on that. */
2674 memclear (it, sizeof *it);
2675 it->current.overlay_string_index = -1;
2676 it->current.dpvec_index = -1;
2677 it->base_face_id = remapped_base_face_id;
2678 IT_STRING_CHARPOS (*it) = IT_STRING_BYTEPOS (*it) = -1;
2679 it->paragraph_embedding = L2R;
2680 it->bidi_it.w = w;
2682 /* The window in which we iterate over current_buffer: */
2683 XSETWINDOW (it->window, w);
2684 it->w = w;
2685 it->f = XFRAME (w->frame);
2687 it->cmp_it.id = -1;
2689 /* Extra space between lines (on window systems only). */
2690 if (base_face_id == DEFAULT_FACE_ID
2691 && FRAME_WINDOW_P (it->f))
2693 if (NATNUMP (BVAR (current_buffer, extra_line_spacing)))
2694 it->extra_line_spacing = XFASTINT (BVAR (current_buffer, extra_line_spacing));
2695 else if (FLOATP (BVAR (current_buffer, extra_line_spacing)))
2696 it->extra_line_spacing = (XFLOAT_DATA (BVAR (current_buffer, extra_line_spacing))
2697 * FRAME_LINE_HEIGHT (it->f));
2698 else if (it->f->extra_line_spacing > 0)
2699 it->extra_line_spacing = it->f->extra_line_spacing;
2702 /* If realized faces have been removed, e.g. because of face
2703 attribute changes of named faces, recompute them. When running
2704 in batch mode, the face cache of the initial frame is null. If
2705 we happen to get called, make a dummy face cache. */
2706 if (FRAME_FACE_CACHE (it->f) == NULL)
2707 init_frame_faces (it->f);
2708 if (FRAME_FACE_CACHE (it->f)->used == 0)
2709 recompute_basic_faces (it->f);
2711 it->override_ascent = -1;
2713 /* Are control characters displayed as `^C'? */
2714 it->ctl_arrow_p = !NILP (BVAR (current_buffer, ctl_arrow));
2716 /* -1 means everything between a CR and the following line end
2717 is invisible. >0 means lines indented more than this value are
2718 invisible. */
2719 it->selective = (INTEGERP (BVAR (current_buffer, selective_display))
2720 ? (clip_to_bounds
2721 (-1, XINT (BVAR (current_buffer, selective_display)),
2722 PTRDIFF_MAX))
2723 : (!NILP (BVAR (current_buffer, selective_display))
2724 ? -1 : 0));
2725 it->selective_display_ellipsis_p
2726 = !NILP (BVAR (current_buffer, selective_display_ellipses));
2728 /* Display table to use. */
2729 it->dp = window_display_table (w);
2731 /* Are multibyte characters enabled in current_buffer? */
2732 it->multibyte_p = !NILP (BVAR (current_buffer, enable_multibyte_characters));
2734 /* Get the position at which the redisplay_end_trigger hook should
2735 be run, if it is to be run at all. */
2736 if (MARKERP (w->redisplay_end_trigger)
2737 && XMARKER (w->redisplay_end_trigger)->buffer != 0)
2738 it->redisplay_end_trigger_charpos
2739 = marker_position (w->redisplay_end_trigger);
2740 else if (INTEGERP (w->redisplay_end_trigger))
2741 it->redisplay_end_trigger_charpos
2742 = clip_to_bounds (PTRDIFF_MIN, XINT (w->redisplay_end_trigger),
2743 PTRDIFF_MAX);
2745 it->tab_width = SANE_TAB_WIDTH (current_buffer);
2747 /* Are lines in the display truncated? */
2748 if (TRUNCATE != 0)
2749 it->line_wrap = TRUNCATE;
2750 if (base_face_id == DEFAULT_FACE_ID
2751 && !it->w->hscroll
2752 && (WINDOW_FULL_WIDTH_P (it->w)
2753 || NILP (Vtruncate_partial_width_windows)
2754 || (INTEGERP (Vtruncate_partial_width_windows)
2755 /* PXW: Shall we do something about this? */
2756 && (XINT (Vtruncate_partial_width_windows)
2757 <= WINDOW_TOTAL_COLS (it->w))))
2758 && NILP (BVAR (current_buffer, truncate_lines)))
2759 it->line_wrap = NILP (BVAR (current_buffer, word_wrap))
2760 ? WINDOW_WRAP : WORD_WRAP;
2762 /* Get dimensions of truncation and continuation glyphs. These are
2763 displayed as fringe bitmaps under X, but we need them for such
2764 frames when the fringes are turned off. But leave the dimensions
2765 zero for tooltip frames, as these glyphs look ugly there and also
2766 sabotage calculations of tooltip dimensions in x-show-tip. */
2767 #ifdef HAVE_WINDOW_SYSTEM
2768 if (!(FRAME_WINDOW_P (it->f)
2769 && FRAMEP (tip_frame)
2770 && it->f == XFRAME (tip_frame)))
2771 #endif
2773 if (it->line_wrap == TRUNCATE)
2775 /* We will need the truncation glyph. */
2776 eassert (it->glyph_row == NULL);
2777 produce_special_glyphs (it, IT_TRUNCATION);
2778 it->truncation_pixel_width = it->pixel_width;
2780 else
2782 /* We will need the continuation glyph. */
2783 eassert (it->glyph_row == NULL);
2784 produce_special_glyphs (it, IT_CONTINUATION);
2785 it->continuation_pixel_width = it->pixel_width;
2789 /* Reset these values to zero because the produce_special_glyphs
2790 above has changed them. */
2791 it->pixel_width = it->ascent = it->descent = 0;
2792 it->phys_ascent = it->phys_descent = 0;
2794 /* Set this after getting the dimensions of truncation and
2795 continuation glyphs, so that we don't produce glyphs when calling
2796 produce_special_glyphs, above. */
2797 it->glyph_row = row;
2798 it->area = TEXT_AREA;
2800 /* Get the dimensions of the display area. The display area
2801 consists of the visible window area plus a horizontally scrolled
2802 part to the left of the window. All x-values are relative to the
2803 start of this total display area. */
2804 if (base_face_id != DEFAULT_FACE_ID)
2806 /* Mode lines, menu bar in terminal frames. */
2807 it->first_visible_x = 0;
2808 it->last_visible_x = WINDOW_PIXEL_WIDTH (w);
2810 else
2812 it->first_visible_x
2813 = window_hscroll_limited (it->w, it->f) * FRAME_COLUMN_WIDTH (it->f);
2814 it->last_visible_x = (it->first_visible_x
2815 + window_box_width (w, TEXT_AREA));
2817 /* If we truncate lines, leave room for the truncation glyph(s) at
2818 the right margin. Otherwise, leave room for the continuation
2819 glyph(s). Done only if the window has no right fringe. */
2820 if (WINDOW_RIGHT_FRINGE_WIDTH (it->w) == 0)
2822 if (it->line_wrap == TRUNCATE)
2823 it->last_visible_x -= it->truncation_pixel_width;
2824 else
2825 it->last_visible_x -= it->continuation_pixel_width;
2828 it->header_line_p = WINDOW_WANTS_HEADER_LINE_P (w);
2829 it->current_y = WINDOW_HEADER_LINE_HEIGHT (w) + w->vscroll;
2832 /* Leave room for a border glyph. */
2833 if (!FRAME_WINDOW_P (it->f)
2834 && !WINDOW_RIGHTMOST_P (it->w))
2835 it->last_visible_x -= 1;
2837 it->last_visible_y = window_text_bottom_y (w);
2839 /* For mode lines and alike, arrange for the first glyph having a
2840 left box line if the face specifies a box. */
2841 if (base_face_id != DEFAULT_FACE_ID)
2843 struct face *face;
2845 it->face_id = remapped_base_face_id;
2847 /* If we have a boxed mode line, make the first character appear
2848 with a left box line. */
2849 face = FACE_FROM_ID (it->f, remapped_base_face_id);
2850 if (face && face->box != FACE_NO_BOX)
2851 it->start_of_box_run_p = true;
2854 /* If a buffer position was specified, set the iterator there,
2855 getting overlays and face properties from that position. */
2856 if (charpos >= BUF_BEG (current_buffer))
2858 it->stop_charpos = charpos;
2859 it->end_charpos = ZV;
2860 eassert (charpos == BYTE_TO_CHAR (bytepos));
2861 IT_CHARPOS (*it) = charpos;
2862 IT_BYTEPOS (*it) = bytepos;
2864 /* We will rely on `reseat' to set this up properly, via
2865 handle_face_prop. */
2866 it->face_id = it->base_face_id;
2868 it->start = it->current;
2869 /* Do we need to reorder bidirectional text? Not if this is a
2870 unibyte buffer: by definition, none of the single-byte
2871 characters are strong R2L, so no reordering is needed. And
2872 bidi.c doesn't support unibyte buffers anyway. Also, don't
2873 reorder while we are loading loadup.el, since the tables of
2874 character properties needed for reordering are not yet
2875 available. */
2876 it->bidi_p =
2877 NILP (Vpurify_flag)
2878 && !NILP (BVAR (current_buffer, bidi_display_reordering))
2879 && it->multibyte_p;
2881 /* If we are to reorder bidirectional text, init the bidi
2882 iterator. */
2883 if (it->bidi_p)
2885 /* Since we don't know at this point whether there will be
2886 any R2L lines in the window, we reserve space for
2887 truncation/continuation glyphs even if only the left
2888 fringe is absent. */
2889 if (base_face_id == DEFAULT_FACE_ID
2890 && WINDOW_LEFT_FRINGE_WIDTH (it->w) == 0
2891 && WINDOW_RIGHT_FRINGE_WIDTH (it->w) != 0)
2893 if (it->line_wrap == TRUNCATE)
2894 it->last_visible_x -= it->truncation_pixel_width;
2895 else
2896 it->last_visible_x -= it->continuation_pixel_width;
2898 /* Note the paragraph direction that this buffer wants to
2899 use. */
2900 if (EQ (BVAR (current_buffer, bidi_paragraph_direction),
2901 Qleft_to_right))
2902 it->paragraph_embedding = L2R;
2903 else if (EQ (BVAR (current_buffer, bidi_paragraph_direction),
2904 Qright_to_left))
2905 it->paragraph_embedding = R2L;
2906 else
2907 it->paragraph_embedding = NEUTRAL_DIR;
2908 bidi_unshelve_cache (NULL, false);
2909 bidi_init_it (charpos, IT_BYTEPOS (*it), FRAME_WINDOW_P (it->f),
2910 &it->bidi_it);
2913 /* Compute faces etc. */
2914 reseat (it, it->current.pos, true);
2917 CHECK_IT (it);
2921 /* Initialize IT for the display of window W with window start POS. */
2923 void
2924 start_display (struct it *it, struct window *w, struct text_pos pos)
2926 struct glyph_row *row;
2927 bool first_vpos = WINDOW_WANTS_HEADER_LINE_P (w);
2929 row = w->desired_matrix->rows + first_vpos;
2930 init_iterator (it, w, CHARPOS (pos), BYTEPOS (pos), row, DEFAULT_FACE_ID);
2931 it->first_vpos = first_vpos;
2933 /* Don't reseat to previous visible line start if current start
2934 position is in a string or image. */
2935 if (it->method == GET_FROM_BUFFER && it->line_wrap != TRUNCATE)
2937 int first_y = it->current_y;
2939 /* If window start is not at a line start, skip forward to POS to
2940 get the correct continuation lines width. */
2941 bool start_at_line_beg_p = (CHARPOS (pos) == BEGV
2942 || FETCH_BYTE (BYTEPOS (pos) - 1) == '\n');
2943 if (!start_at_line_beg_p)
2945 int new_x;
2947 reseat_at_previous_visible_line_start (it);
2948 move_it_to (it, CHARPOS (pos), -1, -1, -1, MOVE_TO_POS);
2950 new_x = it->current_x + it->pixel_width;
2952 /* If lines are continued, this line may end in the middle
2953 of a multi-glyph character (e.g. a control character
2954 displayed as \003, or in the middle of an overlay
2955 string). In this case move_it_to above will not have
2956 taken us to the start of the continuation line but to the
2957 end of the continued line. */
2958 if (it->current_x > 0
2959 && it->line_wrap != TRUNCATE /* Lines are continued. */
2960 && (/* And glyph doesn't fit on the line. */
2961 new_x > it->last_visible_x
2962 /* Or it fits exactly and we're on a window
2963 system frame. */
2964 || (new_x == it->last_visible_x
2965 && FRAME_WINDOW_P (it->f)
2966 && ((it->bidi_p && it->bidi_it.paragraph_dir == R2L)
2967 ? WINDOW_LEFT_FRINGE_WIDTH (it->w)
2968 : WINDOW_RIGHT_FRINGE_WIDTH (it->w)))))
2970 if ((it->current.dpvec_index >= 0
2971 || it->current.overlay_string_index >= 0)
2972 /* If we are on a newline from a display vector or
2973 overlay string, then we are already at the end of
2974 a screen line; no need to go to the next line in
2975 that case, as this line is not really continued.
2976 (If we do go to the next line, C-e will not DTRT.) */
2977 && it->c != '\n')
2979 set_iterator_to_next (it, true);
2980 move_it_in_display_line_to (it, -1, -1, 0);
2983 it->continuation_lines_width += it->current_x;
2985 /* If the character at POS is displayed via a display
2986 vector, move_it_to above stops at the final glyph of
2987 IT->dpvec. To make the caller redisplay that character
2988 again (a.k.a. start at POS), we need to reset the
2989 dpvec_index to the beginning of IT->dpvec. */
2990 else if (it->current.dpvec_index >= 0)
2991 it->current.dpvec_index = 0;
2993 /* We're starting a new display line, not affected by the
2994 height of the continued line, so clear the appropriate
2995 fields in the iterator structure. */
2996 it->max_ascent = it->max_descent = 0;
2997 it->max_phys_ascent = it->max_phys_descent = 0;
2999 it->current_y = first_y;
3000 it->vpos = 0;
3001 it->current_x = it->hpos = 0;
3007 /* Return true if POS is a position in ellipses displayed for invisible
3008 text. W is the window we display, for text property lookup. */
3010 static bool
3011 in_ellipses_for_invisible_text_p (struct display_pos *pos, struct window *w)
3013 Lisp_Object prop, window;
3014 bool ellipses_p = false;
3015 ptrdiff_t charpos = CHARPOS (pos->pos);
3017 /* If POS specifies a position in a display vector, this might
3018 be for an ellipsis displayed for invisible text. We won't
3019 get the iterator set up for delivering that ellipsis unless
3020 we make sure that it gets aware of the invisible text. */
3021 if (pos->dpvec_index >= 0
3022 && pos->overlay_string_index < 0
3023 && CHARPOS (pos->string_pos) < 0
3024 && charpos > BEGV
3025 && (XSETWINDOW (window, w),
3026 prop = Fget_char_property (make_number (charpos),
3027 Qinvisible, window),
3028 TEXT_PROP_MEANS_INVISIBLE (prop) == 0))
3030 prop = Fget_char_property (make_number (charpos - 1), Qinvisible,
3031 window);
3032 ellipses_p = 2 == TEXT_PROP_MEANS_INVISIBLE (prop);
3035 return ellipses_p;
3039 /* Initialize IT for stepping through current_buffer in window W,
3040 starting at position POS that includes overlay string and display
3041 vector/ control character translation position information. Value
3042 is false if there are overlay strings with newlines at POS. */
3044 static bool
3045 init_from_display_pos (struct it *it, struct window *w, struct display_pos *pos)
3047 ptrdiff_t charpos = CHARPOS (pos->pos), bytepos = BYTEPOS (pos->pos);
3048 int i;
3049 bool overlay_strings_with_newlines = false;
3051 /* If POS specifies a position in a display vector, this might
3052 be for an ellipsis displayed for invisible text. We won't
3053 get the iterator set up for delivering that ellipsis unless
3054 we make sure that it gets aware of the invisible text. */
3055 if (in_ellipses_for_invisible_text_p (pos, w))
3057 --charpos;
3058 bytepos = 0;
3061 /* Keep in mind: the call to reseat in init_iterator skips invisible
3062 text, so we might end up at a position different from POS. This
3063 is only a problem when POS is a row start after a newline and an
3064 overlay starts there with an after-string, and the overlay has an
3065 invisible property. Since we don't skip invisible text in
3066 display_line and elsewhere immediately after consuming the
3067 newline before the row start, such a POS will not be in a string,
3068 but the call to init_iterator below will move us to the
3069 after-string. */
3070 init_iterator (it, w, charpos, bytepos, NULL, DEFAULT_FACE_ID);
3072 /* This only scans the current chunk -- it should scan all chunks.
3073 However, OVERLAY_STRING_CHUNK_SIZE has been increased from 3 in 21.1
3074 to 16 in 22.1 to make this a lesser problem. */
3075 for (i = 0; i < it->n_overlay_strings && i < OVERLAY_STRING_CHUNK_SIZE; ++i)
3077 const char *s = SSDATA (it->overlay_strings[i]);
3078 const char *e = s + SBYTES (it->overlay_strings[i]);
3080 while (s < e && *s != '\n')
3081 ++s;
3083 if (s < e)
3085 overlay_strings_with_newlines = true;
3086 break;
3090 /* If position is within an overlay string, set up IT to the right
3091 overlay string. */
3092 if (pos->overlay_string_index >= 0)
3094 int relative_index;
3096 /* If the first overlay string happens to have a `display'
3097 property for an image, the iterator will be set up for that
3098 image, and we have to undo that setup first before we can
3099 correct the overlay string index. */
3100 if (it->method == GET_FROM_IMAGE)
3101 pop_it (it);
3103 /* We already have the first chunk of overlay strings in
3104 IT->overlay_strings. Load more until the one for
3105 pos->overlay_string_index is in IT->overlay_strings. */
3106 if (pos->overlay_string_index >= OVERLAY_STRING_CHUNK_SIZE)
3108 ptrdiff_t n = pos->overlay_string_index / OVERLAY_STRING_CHUNK_SIZE;
3109 it->current.overlay_string_index = 0;
3110 while (n--)
3112 load_overlay_strings (it, 0);
3113 it->current.overlay_string_index += OVERLAY_STRING_CHUNK_SIZE;
3117 it->current.overlay_string_index = pos->overlay_string_index;
3118 relative_index = (it->current.overlay_string_index
3119 % OVERLAY_STRING_CHUNK_SIZE);
3120 it->string = it->overlay_strings[relative_index];
3121 eassert (STRINGP (it->string));
3122 it->current.string_pos = pos->string_pos;
3123 it->method = GET_FROM_STRING;
3124 it->end_charpos = SCHARS (it->string);
3125 /* Set up the bidi iterator for this overlay string. */
3126 if (it->bidi_p)
3128 it->bidi_it.string.lstring = it->string;
3129 it->bidi_it.string.s = NULL;
3130 it->bidi_it.string.schars = SCHARS (it->string);
3131 it->bidi_it.string.bufpos = it->overlay_strings_charpos;
3132 it->bidi_it.string.from_disp_str = it->string_from_display_prop_p;
3133 it->bidi_it.string.unibyte = !it->multibyte_p;
3134 it->bidi_it.w = it->w;
3135 bidi_init_it (IT_STRING_CHARPOS (*it), IT_STRING_BYTEPOS (*it),
3136 FRAME_WINDOW_P (it->f), &it->bidi_it);
3138 /* Synchronize the state of the bidi iterator with
3139 pos->string_pos. For any string position other than
3140 zero, this will be done automagically when we resume
3141 iteration over the string and get_visually_first_element
3142 is called. But if string_pos is zero, and the string is
3143 to be reordered for display, we need to resync manually,
3144 since it could be that the iteration state recorded in
3145 pos ended at string_pos of 0 moving backwards in string. */
3146 if (CHARPOS (pos->string_pos) == 0)
3148 get_visually_first_element (it);
3149 if (IT_STRING_CHARPOS (*it) != 0)
3150 do {
3151 /* Paranoia. */
3152 eassert (it->bidi_it.charpos < it->bidi_it.string.schars);
3153 bidi_move_to_visually_next (&it->bidi_it);
3154 } while (it->bidi_it.charpos != 0);
3156 eassert (IT_STRING_CHARPOS (*it) == it->bidi_it.charpos
3157 && IT_STRING_BYTEPOS (*it) == it->bidi_it.bytepos);
3161 if (CHARPOS (pos->string_pos) >= 0)
3163 /* Recorded position is not in an overlay string, but in another
3164 string. This can only be a string from a `display' property.
3165 IT should already be filled with that string. */
3166 it->current.string_pos = pos->string_pos;
3167 eassert (STRINGP (it->string));
3168 if (it->bidi_p)
3169 bidi_init_it (IT_STRING_CHARPOS (*it), IT_STRING_BYTEPOS (*it),
3170 FRAME_WINDOW_P (it->f), &it->bidi_it);
3173 /* Restore position in display vector translations, control
3174 character translations or ellipses. */
3175 if (pos->dpvec_index >= 0)
3177 if (it->dpvec == NULL)
3178 get_next_display_element (it);
3179 eassert (it->dpvec && it->current.dpvec_index == 0);
3180 it->current.dpvec_index = pos->dpvec_index;
3183 CHECK_IT (it);
3184 return !overlay_strings_with_newlines;
3188 /* Initialize IT for stepping through current_buffer in window W
3189 starting at ROW->start. */
3191 static void
3192 init_to_row_start (struct it *it, struct window *w, struct glyph_row *row)
3194 init_from_display_pos (it, w, &row->start);
3195 it->start = row->start;
3196 it->continuation_lines_width = row->continuation_lines_width;
3197 CHECK_IT (it);
3201 /* Initialize IT for stepping through current_buffer in window W
3202 starting in the line following ROW, i.e. starting at ROW->end.
3203 Value is false if there are overlay strings with newlines at ROW's
3204 end position. */
3206 static bool
3207 init_to_row_end (struct it *it, struct window *w, struct glyph_row *row)
3209 bool success = false;
3211 if (init_from_display_pos (it, w, &row->end))
3213 if (row->continued_p)
3214 it->continuation_lines_width
3215 = row->continuation_lines_width + row->pixel_width;
3216 CHECK_IT (it);
3217 success = true;
3220 return success;
3226 /***********************************************************************
3227 Text properties
3228 ***********************************************************************/
3230 /* Called when IT reaches IT->stop_charpos. Handle text property and
3231 overlay changes. Set IT->stop_charpos to the next position where
3232 to stop. */
3234 static void
3235 handle_stop (struct it *it)
3237 enum prop_handled handled;
3238 bool handle_overlay_change_p;
3239 struct props *p;
3241 it->dpvec = NULL;
3242 it->current.dpvec_index = -1;
3243 handle_overlay_change_p = !it->ignore_overlay_strings_at_pos_p;
3244 it->ellipsis_p = false;
3246 /* Use face of preceding text for ellipsis (if invisible) */
3247 if (it->selective_display_ellipsis_p)
3248 it->saved_face_id = it->face_id;
3250 /* Here's the description of the semantics of, and the logic behind,
3251 the various HANDLED_* statuses:
3253 HANDLED_NORMALLY means the handler did its job, and the loop
3254 should proceed to calling the next handler in order.
3256 HANDLED_RECOMPUTE_PROPS means the handler caused a significant
3257 change in the properties and overlays at current position, so the
3258 loop should be restarted, to re-invoke the handlers that were
3259 already called. This happens when fontification-functions were
3260 called by handle_fontified_prop, and actually fontified
3261 something. Another case where HANDLED_RECOMPUTE_PROPS is
3262 returned is when we discover overlay strings that need to be
3263 displayed right away. The loop below will continue for as long
3264 as the status is HANDLED_RECOMPUTE_PROPS.
3266 HANDLED_RETURN means return immediately to the caller, to
3267 continue iteration without calling any further handlers. This is
3268 used when we need to act on some property right away, for example
3269 when we need to display the ellipsis or a replacing display
3270 property, such as display string or image.
3272 HANDLED_OVERLAY_STRING_CONSUMED means an overlay string was just
3273 consumed, and the handler switched to the next overlay string.
3274 This signals the loop below to refrain from looking for more
3275 overlays before all the overlay strings of the current overlay
3276 are processed.
3278 Some of the handlers called by the loop push the iterator state
3279 onto the stack (see 'push_it'), and arrange for the iteration to
3280 continue with another object, such as an image, a display string,
3281 or an overlay string. In most such cases, it->stop_charpos is
3282 set to the first character of the string, so that when the
3283 iteration resumes, this function will immediately be called
3284 again, to examine the properties at the beginning of the string.
3286 When a display or overlay string is exhausted, the iterator state
3287 is popped (see 'pop_it'), and iteration continues with the
3288 previous object. Again, in many such cases this function is
3289 called again to find the next position where properties might
3290 change. */
3294 handled = HANDLED_NORMALLY;
3296 /* Call text property handlers. */
3297 for (p = it_props; p->handler; ++p)
3299 handled = p->handler (it);
3301 if (handled == HANDLED_RECOMPUTE_PROPS)
3302 break;
3303 else if (handled == HANDLED_RETURN)
3305 /* We still want to show before and after strings from
3306 overlays even if the actual buffer text is replaced. */
3307 if (!handle_overlay_change_p
3308 || it->sp > 1
3309 /* Don't call get_overlay_strings_1 if we already
3310 have overlay strings loaded, because doing so
3311 will load them again and push the iterator state
3312 onto the stack one more time, which is not
3313 expected by the rest of the code that processes
3314 overlay strings. */
3315 || (it->current.overlay_string_index < 0
3316 && !get_overlay_strings_1 (it, 0, false)))
3318 if (it->ellipsis_p)
3319 setup_for_ellipsis (it, 0);
3320 /* When handling a display spec, we might load an
3321 empty string. In that case, discard it here. We
3322 used to discard it in handle_single_display_spec,
3323 but that causes get_overlay_strings_1, above, to
3324 ignore overlay strings that we must check. */
3325 if (STRINGP (it->string) && !SCHARS (it->string))
3326 pop_it (it);
3327 return;
3329 else if (STRINGP (it->string) && !SCHARS (it->string))
3330 pop_it (it);
3331 else
3333 it->string_from_display_prop_p = false;
3334 it->from_disp_prop_p = false;
3335 handle_overlay_change_p = false;
3337 handled = HANDLED_RECOMPUTE_PROPS;
3338 break;
3340 else if (handled == HANDLED_OVERLAY_STRING_CONSUMED)
3341 handle_overlay_change_p = false;
3344 if (handled != HANDLED_RECOMPUTE_PROPS)
3346 /* Don't check for overlay strings below when set to deliver
3347 characters from a display vector. */
3348 if (it->method == GET_FROM_DISPLAY_VECTOR)
3349 handle_overlay_change_p = false;
3351 /* Handle overlay changes.
3352 This sets HANDLED to HANDLED_RECOMPUTE_PROPS
3353 if it finds overlays. */
3354 if (handle_overlay_change_p)
3355 handled = handle_overlay_change (it);
3358 if (it->ellipsis_p)
3360 setup_for_ellipsis (it, 0);
3361 break;
3364 while (handled == HANDLED_RECOMPUTE_PROPS);
3366 /* Determine where to stop next. */
3367 if (handled == HANDLED_NORMALLY)
3368 compute_stop_pos (it);
3372 /* Compute IT->stop_charpos from text property and overlay change
3373 information for IT's current position. */
3375 static void
3376 compute_stop_pos (struct it *it)
3378 register INTERVAL iv, next_iv;
3379 Lisp_Object object, limit, position;
3380 ptrdiff_t charpos, bytepos;
3382 if (STRINGP (it->string))
3384 /* Strings are usually short, so don't limit the search for
3385 properties. */
3386 it->stop_charpos = it->end_charpos;
3387 object = it->string;
3388 limit = Qnil;
3389 charpos = IT_STRING_CHARPOS (*it);
3390 bytepos = IT_STRING_BYTEPOS (*it);
3392 else
3394 ptrdiff_t pos;
3396 /* If end_charpos is out of range for some reason, such as a
3397 misbehaving display function, rationalize it (Bug#5984). */
3398 if (it->end_charpos > ZV)
3399 it->end_charpos = ZV;
3400 it->stop_charpos = it->end_charpos;
3402 /* If next overlay change is in front of the current stop pos
3403 (which is IT->end_charpos), stop there. Note: value of
3404 next_overlay_change is point-max if no overlay change
3405 follows. */
3406 charpos = IT_CHARPOS (*it);
3407 bytepos = IT_BYTEPOS (*it);
3408 pos = next_overlay_change (charpos);
3409 if (pos < it->stop_charpos)
3410 it->stop_charpos = pos;
3412 /* Set up variables for computing the stop position from text
3413 property changes. */
3414 XSETBUFFER (object, current_buffer);
3415 limit = make_number (IT_CHARPOS (*it) + TEXT_PROP_DISTANCE_LIMIT);
3418 /* Get the interval containing IT's position. Value is a null
3419 interval if there isn't such an interval. */
3420 position = make_number (charpos);
3421 iv = validate_interval_range (object, &position, &position, false);
3422 if (iv)
3424 Lisp_Object values_here[LAST_PROP_IDX];
3425 struct props *p;
3427 /* Get properties here. */
3428 for (p = it_props; p->handler; ++p)
3429 values_here[p->idx] = textget (iv->plist,
3430 builtin_lisp_symbol (p->name));
3432 /* Look for an interval following iv that has different
3433 properties. */
3434 for (next_iv = next_interval (iv);
3435 (next_iv
3436 && (NILP (limit)
3437 || XFASTINT (limit) > next_iv->position));
3438 next_iv = next_interval (next_iv))
3440 for (p = it_props; p->handler; ++p)
3442 Lisp_Object new_value = textget (next_iv->plist,
3443 builtin_lisp_symbol (p->name));
3444 if (!EQ (values_here[p->idx], new_value))
3445 break;
3448 if (p->handler)
3449 break;
3452 if (next_iv)
3454 if (INTEGERP (limit)
3455 && next_iv->position >= XFASTINT (limit))
3456 /* No text property change up to limit. */
3457 it->stop_charpos = min (XFASTINT (limit), it->stop_charpos);
3458 else
3459 /* Text properties change in next_iv. */
3460 it->stop_charpos = min (it->stop_charpos, next_iv->position);
3464 if (it->cmp_it.id < 0)
3466 ptrdiff_t stoppos = it->end_charpos;
3468 if (it->bidi_p && it->bidi_it.scan_dir < 0)
3469 stoppos = -1;
3470 composition_compute_stop_pos (&it->cmp_it, charpos, bytepos,
3471 stoppos, it->string);
3474 eassert (STRINGP (it->string)
3475 || (it->stop_charpos >= BEGV
3476 && it->stop_charpos >= IT_CHARPOS (*it)));
3480 /* Return the position of the next overlay change after POS in
3481 current_buffer. Value is point-max if no overlay change
3482 follows. This is like `next-overlay-change' but doesn't use
3483 xmalloc. */
3485 static ptrdiff_t
3486 next_overlay_change (ptrdiff_t pos)
3488 ptrdiff_t i, noverlays;
3489 ptrdiff_t endpos;
3490 Lisp_Object *overlays;
3491 USE_SAFE_ALLOCA;
3493 /* Get all overlays at the given position. */
3494 GET_OVERLAYS_AT (pos, overlays, noverlays, &endpos, true);
3496 /* If any of these overlays ends before endpos,
3497 use its ending point instead. */
3498 for (i = 0; i < noverlays; ++i)
3500 Lisp_Object oend;
3501 ptrdiff_t oendpos;
3503 oend = OVERLAY_END (overlays[i]);
3504 oendpos = OVERLAY_POSITION (oend);
3505 endpos = min (endpos, oendpos);
3508 SAFE_FREE ();
3509 return endpos;
3512 /* How many characters forward to search for a display property or
3513 display string. Searching too far forward makes the bidi display
3514 sluggish, especially in small windows. */
3515 #define MAX_DISP_SCAN 250
3517 /* Return the character position of a display string at or after
3518 position specified by POSITION. If no display string exists at or
3519 after POSITION, return ZV. A display string is either an overlay
3520 with `display' property whose value is a string, or a `display'
3521 text property whose value is a string. STRING is data about the
3522 string to iterate; if STRING->lstring is nil, we are iterating a
3523 buffer. FRAME_WINDOW_P is true when we are displaying a window
3524 on a GUI frame. DISP_PROP is set to zero if we searched
3525 MAX_DISP_SCAN characters forward without finding any display
3526 strings, non-zero otherwise. It is set to 2 if the display string
3527 uses any kind of `(space ...)' spec that will produce a stretch of
3528 white space in the text area. */
3529 ptrdiff_t
3530 compute_display_string_pos (struct text_pos *position,
3531 struct bidi_string_data *string,
3532 struct window *w,
3533 bool frame_window_p, int *disp_prop)
3535 /* OBJECT = nil means current buffer. */
3536 Lisp_Object object, object1;
3537 Lisp_Object pos, spec, limpos;
3538 bool string_p = string && (STRINGP (string->lstring) || string->s);
3539 ptrdiff_t eob = string_p ? string->schars : ZV;
3540 ptrdiff_t begb = string_p ? 0 : BEGV;
3541 ptrdiff_t bufpos, charpos = CHARPOS (*position);
3542 ptrdiff_t lim =
3543 (charpos < eob - MAX_DISP_SCAN) ? charpos + MAX_DISP_SCAN : eob;
3544 struct text_pos tpos;
3545 int rv = 0;
3547 if (string && STRINGP (string->lstring))
3548 object1 = object = string->lstring;
3549 else if (w && !string_p)
3551 XSETWINDOW (object, w);
3552 object1 = Qnil;
3554 else
3555 object1 = object = Qnil;
3557 *disp_prop = 1;
3559 if (charpos >= eob
3560 /* We don't support display properties whose values are strings
3561 that have display string properties. */
3562 || string->from_disp_str
3563 /* C strings cannot have display properties. */
3564 || (string->s && !STRINGP (object)))
3566 *disp_prop = 0;
3567 return eob;
3570 /* If the character at CHARPOS is where the display string begins,
3571 return CHARPOS. */
3572 pos = make_number (charpos);
3573 if (STRINGP (object))
3574 bufpos = string->bufpos;
3575 else
3576 bufpos = charpos;
3577 tpos = *position;
3578 if (!NILP (spec = Fget_char_property (pos, Qdisplay, object))
3579 && (charpos <= begb
3580 || !EQ (Fget_char_property (make_number (charpos - 1), Qdisplay,
3581 object),
3582 spec))
3583 && (rv = handle_display_spec (NULL, spec, object, Qnil, &tpos, bufpos,
3584 frame_window_p)))
3586 if (rv == 2)
3587 *disp_prop = 2;
3588 return charpos;
3591 /* Look forward for the first character with a `display' property
3592 that will replace the underlying text when displayed. */
3593 limpos = make_number (lim);
3594 do {
3595 pos = Fnext_single_char_property_change (pos, Qdisplay, object1, limpos);
3596 CHARPOS (tpos) = XFASTINT (pos);
3597 if (CHARPOS (tpos) >= lim)
3599 *disp_prop = 0;
3600 break;
3602 if (STRINGP (object))
3603 BYTEPOS (tpos) = string_char_to_byte (object, CHARPOS (tpos));
3604 else
3605 BYTEPOS (tpos) = CHAR_TO_BYTE (CHARPOS (tpos));
3606 spec = Fget_char_property (pos, Qdisplay, object);
3607 if (!STRINGP (object))
3608 bufpos = CHARPOS (tpos);
3609 } while (NILP (spec)
3610 || !(rv = handle_display_spec (NULL, spec, object, Qnil, &tpos,
3611 bufpos, frame_window_p)));
3612 if (rv == 2)
3613 *disp_prop = 2;
3615 return CHARPOS (tpos);
3618 /* Return the character position of the end of the display string that
3619 started at CHARPOS. If there's no display string at CHARPOS,
3620 return -1. A display string is either an overlay with `display'
3621 property whose value is a string or a `display' text property whose
3622 value is a string. */
3623 ptrdiff_t
3624 compute_display_string_end (ptrdiff_t charpos, struct bidi_string_data *string)
3626 /* OBJECT = nil means current buffer. */
3627 Lisp_Object object =
3628 (string && STRINGP (string->lstring)) ? string->lstring : Qnil;
3629 Lisp_Object pos = make_number (charpos);
3630 ptrdiff_t eob =
3631 (STRINGP (object) || (string && string->s)) ? string->schars : ZV;
3633 if (charpos >= eob || (string->s && !STRINGP (object)))
3634 return eob;
3636 /* It could happen that the display property or overlay was removed
3637 since we found it in compute_display_string_pos above. One way
3638 this can happen is if JIT font-lock was called (through
3639 handle_fontified_prop), and jit-lock-functions remove text
3640 properties or overlays from the portion of buffer that includes
3641 CHARPOS. Muse mode is known to do that, for example. In this
3642 case, we return -1 to the caller, to signal that no display
3643 string is actually present at CHARPOS. See bidi_fetch_char for
3644 how this is handled.
3646 An alternative would be to never look for display properties past
3647 it->stop_charpos. But neither compute_display_string_pos nor
3648 bidi_fetch_char that calls it know or care where the next
3649 stop_charpos is. */
3650 if (NILP (Fget_char_property (pos, Qdisplay, object)))
3651 return -1;
3653 /* Look forward for the first character where the `display' property
3654 changes. */
3655 pos = Fnext_single_char_property_change (pos, Qdisplay, object, Qnil);
3657 return XFASTINT (pos);
3662 /***********************************************************************
3663 Fontification
3664 ***********************************************************************/
3666 /* Handle changes in the `fontified' property of the current buffer by
3667 calling hook functions from Qfontification_functions to fontify
3668 regions of text. */
3670 static enum prop_handled
3671 handle_fontified_prop (struct it *it)
3673 Lisp_Object prop, pos;
3674 enum prop_handled handled = HANDLED_NORMALLY;
3676 if (!NILP (Vmemory_full))
3677 return handled;
3679 /* Get the value of the `fontified' property at IT's current buffer
3680 position. (The `fontified' property doesn't have a special
3681 meaning in strings.) If the value is nil, call functions from
3682 Qfontification_functions. */
3683 if (!STRINGP (it->string)
3684 && it->s == NULL
3685 && !NILP (Vfontification_functions)
3686 && !NILP (Vrun_hooks)
3687 && (pos = make_number (IT_CHARPOS (*it)),
3688 prop = Fget_char_property (pos, Qfontified, Qnil),
3689 /* Ignore the special cased nil value always present at EOB since
3690 no amount of fontifying will be able to change it. */
3691 NILP (prop) && IT_CHARPOS (*it) < Z))
3693 ptrdiff_t count = SPECPDL_INDEX ();
3694 Lisp_Object val;
3695 struct buffer *obuf = current_buffer;
3696 ptrdiff_t begv = BEGV, zv = ZV;
3697 bool old_clip_changed = current_buffer->clip_changed;
3699 val = Vfontification_functions;
3700 specbind (Qfontification_functions, Qnil);
3702 eassert (it->end_charpos == ZV);
3704 if (!CONSP (val) || EQ (XCAR (val), Qlambda))
3705 safe_call1 (val, pos);
3706 else
3708 Lisp_Object fns, fn;
3709 struct gcpro gcpro1, gcpro2;
3711 fns = Qnil;
3712 GCPRO2 (val, fns);
3714 for (; CONSP (val); val = XCDR (val))
3716 fn = XCAR (val);
3718 if (EQ (fn, Qt))
3720 /* A value of t indicates this hook has a local
3721 binding; it means to run the global binding too.
3722 In a global value, t should not occur. If it
3723 does, we must ignore it to avoid an endless
3724 loop. */
3725 for (fns = Fdefault_value (Qfontification_functions);
3726 CONSP (fns);
3727 fns = XCDR (fns))
3729 fn = XCAR (fns);
3730 if (!EQ (fn, Qt))
3731 safe_call1 (fn, pos);
3734 else
3735 safe_call1 (fn, pos);
3738 UNGCPRO;
3741 unbind_to (count, Qnil);
3743 /* Fontification functions routinely call `save-restriction'.
3744 Normally, this tags clip_changed, which can confuse redisplay
3745 (see discussion in Bug#6671). Since we don't perform any
3746 special handling of fontification changes in the case where
3747 `save-restriction' isn't called, there's no point doing so in
3748 this case either. So, if the buffer's restrictions are
3749 actually left unchanged, reset clip_changed. */
3750 if (obuf == current_buffer)
3752 if (begv == BEGV && zv == ZV)
3753 current_buffer->clip_changed = old_clip_changed;
3755 /* There isn't much we can reasonably do to protect against
3756 misbehaving fontification, but here's a fig leaf. */
3757 else if (BUFFER_LIVE_P (obuf))
3758 set_buffer_internal_1 (obuf);
3760 /* The fontification code may have added/removed text.
3761 It could do even a lot worse, but let's at least protect against
3762 the most obvious case where only the text past `pos' gets changed',
3763 as is/was done in grep.el where some escapes sequences are turned
3764 into face properties (bug#7876). */
3765 it->end_charpos = ZV;
3767 /* Return HANDLED_RECOMPUTE_PROPS only if function fontified
3768 something. This avoids an endless loop if they failed to
3769 fontify the text for which reason ever. */
3770 if (!NILP (Fget_char_property (pos, Qfontified, Qnil)))
3771 handled = HANDLED_RECOMPUTE_PROPS;
3774 return handled;
3779 /***********************************************************************
3780 Faces
3781 ***********************************************************************/
3783 /* Set up iterator IT from face properties at its current position.
3784 Called from handle_stop. */
3786 static enum prop_handled
3787 handle_face_prop (struct it *it)
3789 int new_face_id;
3790 ptrdiff_t next_stop;
3792 if (!STRINGP (it->string))
3794 new_face_id
3795 = face_at_buffer_position (it->w,
3796 IT_CHARPOS (*it),
3797 &next_stop,
3798 (IT_CHARPOS (*it)
3799 + TEXT_PROP_DISTANCE_LIMIT),
3800 false, it->base_face_id);
3802 /* Is this a start of a run of characters with box face?
3803 Caveat: this can be called for a freshly initialized
3804 iterator; face_id is -1 in this case. We know that the new
3805 face will not change until limit, i.e. if the new face has a
3806 box, all characters up to limit will have one. But, as
3807 usual, we don't know whether limit is really the end. */
3808 if (new_face_id != it->face_id)
3810 struct face *new_face = FACE_FROM_ID (it->f, new_face_id);
3811 /* If it->face_id is -1, old_face below will be NULL, see
3812 the definition of FACE_FROM_ID. This will happen if this
3813 is the initial call that gets the face. */
3814 struct face *old_face = FACE_FROM_ID (it->f, it->face_id);
3816 /* If the value of face_id of the iterator is -1, we have to
3817 look in front of IT's position and see whether there is a
3818 face there that's different from new_face_id. */
3819 if (!old_face && IT_CHARPOS (*it) > BEG)
3821 int prev_face_id = face_before_it_pos (it);
3823 old_face = FACE_FROM_ID (it->f, prev_face_id);
3826 /* If the new face has a box, but the old face does not,
3827 this is the start of a run of characters with box face,
3828 i.e. this character has a shadow on the left side. */
3829 it->start_of_box_run_p = (new_face->box != FACE_NO_BOX
3830 && (old_face == NULL || !old_face->box));
3831 it->face_box_p = new_face->box != FACE_NO_BOX;
3834 else
3836 int base_face_id;
3837 ptrdiff_t bufpos;
3838 int i;
3839 Lisp_Object from_overlay
3840 = (it->current.overlay_string_index >= 0
3841 ? it->string_overlays[it->current.overlay_string_index
3842 % OVERLAY_STRING_CHUNK_SIZE]
3843 : Qnil);
3845 /* See if we got to this string directly or indirectly from
3846 an overlay property. That includes the before-string or
3847 after-string of an overlay, strings in display properties
3848 provided by an overlay, their text properties, etc.
3850 FROM_OVERLAY is the overlay that brought us here, or nil if none. */
3851 if (! NILP (from_overlay))
3852 for (i = it->sp - 1; i >= 0; i--)
3854 if (it->stack[i].current.overlay_string_index >= 0)
3855 from_overlay
3856 = it->string_overlays[it->stack[i].current.overlay_string_index
3857 % OVERLAY_STRING_CHUNK_SIZE];
3858 else if (! NILP (it->stack[i].from_overlay))
3859 from_overlay = it->stack[i].from_overlay;
3861 if (!NILP (from_overlay))
3862 break;
3865 if (! NILP (from_overlay))
3867 bufpos = IT_CHARPOS (*it);
3868 /* For a string from an overlay, the base face depends
3869 only on text properties and ignores overlays. */
3870 base_face_id
3871 = face_for_overlay_string (it->w,
3872 IT_CHARPOS (*it),
3873 &next_stop,
3874 (IT_CHARPOS (*it)
3875 + TEXT_PROP_DISTANCE_LIMIT),
3876 false,
3877 from_overlay);
3879 else
3881 bufpos = 0;
3883 /* For strings from a `display' property, use the face at
3884 IT's current buffer position as the base face to merge
3885 with, so that overlay strings appear in the same face as
3886 surrounding text, unless they specify their own faces.
3887 For strings from wrap-prefix and line-prefix properties,
3888 use the default face, possibly remapped via
3889 Vface_remapping_alist. */
3890 /* Note that the fact that we use the face at _buffer_
3891 position means that a 'display' property on an overlay
3892 string will not inherit the face of that overlay string,
3893 but will instead revert to the face of buffer text
3894 covered by the overlay. This is visible, e.g., when the
3895 overlay specifies a box face, but neither the buffer nor
3896 the display string do. This sounds like a design bug,
3897 but Emacs always did that since v21.1, so changing that
3898 might be a big deal. */
3899 base_face_id = it->string_from_prefix_prop_p
3900 ? (!NILP (Vface_remapping_alist)
3901 ? lookup_basic_face (it->f, DEFAULT_FACE_ID)
3902 : DEFAULT_FACE_ID)
3903 : underlying_face_id (it);
3906 new_face_id = face_at_string_position (it->w,
3907 it->string,
3908 IT_STRING_CHARPOS (*it),
3909 bufpos,
3910 &next_stop,
3911 base_face_id, false);
3913 /* Is this a start of a run of characters with box? Caveat:
3914 this can be called for a freshly allocated iterator; face_id
3915 is -1 is this case. We know that the new face will not
3916 change until the next check pos, i.e. if the new face has a
3917 box, all characters up to that position will have a
3918 box. But, as usual, we don't know whether that position
3919 is really the end. */
3920 if (new_face_id != it->face_id)
3922 struct face *new_face = FACE_FROM_ID (it->f, new_face_id);
3923 struct face *old_face = FACE_FROM_ID (it->f, it->face_id);
3925 /* If new face has a box but old face hasn't, this is the
3926 start of a run of characters with box, i.e. it has a
3927 shadow on the left side. */
3928 it->start_of_box_run_p
3929 = new_face->box && (old_face == NULL || !old_face->box);
3930 it->face_box_p = new_face->box != FACE_NO_BOX;
3934 it->face_id = new_face_id;
3935 return HANDLED_NORMALLY;
3939 /* Return the ID of the face ``underlying'' IT's current position,
3940 which is in a string. If the iterator is associated with a
3941 buffer, return the face at IT's current buffer position.
3942 Otherwise, use the iterator's base_face_id. */
3944 static int
3945 underlying_face_id (struct it *it)
3947 int face_id = it->base_face_id, i;
3949 eassert (STRINGP (it->string));
3951 for (i = it->sp - 1; i >= 0; --i)
3952 if (NILP (it->stack[i].string))
3953 face_id = it->stack[i].face_id;
3955 return face_id;
3959 /* Compute the face one character before or after the current position
3960 of IT, in the visual order. BEFORE_P means get the face
3961 in front (to the left in L2R paragraphs, to the right in R2L
3962 paragraphs) of IT's screen position. Value is the ID of the face. */
3964 static int
3965 face_before_or_after_it_pos (struct it *it, bool before_p)
3967 int face_id, limit;
3968 ptrdiff_t next_check_charpos;
3969 struct it it_copy;
3970 void *it_copy_data = NULL;
3972 eassert (it->s == NULL);
3974 if (STRINGP (it->string))
3976 ptrdiff_t bufpos, charpos;
3977 int base_face_id;
3979 /* No face change past the end of the string (for the case
3980 we are padding with spaces). No face change before the
3981 string start. */
3982 if (IT_STRING_CHARPOS (*it) >= SCHARS (it->string)
3983 || (IT_STRING_CHARPOS (*it) == 0 && before_p))
3984 return it->face_id;
3986 if (!it->bidi_p)
3988 /* Set charpos to the position before or after IT's current
3989 position, in the logical order, which in the non-bidi
3990 case is the same as the visual order. */
3991 if (before_p)
3992 charpos = IT_STRING_CHARPOS (*it) - 1;
3993 else if (it->what == IT_COMPOSITION)
3994 /* For composition, we must check the character after the
3995 composition. */
3996 charpos = IT_STRING_CHARPOS (*it) + it->cmp_it.nchars;
3997 else
3998 charpos = IT_STRING_CHARPOS (*it) + 1;
4000 else
4002 if (before_p)
4004 /* With bidi iteration, the character before the current
4005 in the visual order cannot be found by simple
4006 iteration, because "reverse" reordering is not
4007 supported. Instead, we need to use the move_it_*
4008 family of functions. */
4009 /* Ignore face changes before the first visible
4010 character on this display line. */
4011 if (it->current_x <= it->first_visible_x)
4012 return it->face_id;
4013 SAVE_IT (it_copy, *it, it_copy_data);
4014 /* Implementation note: Since move_it_in_display_line
4015 works in the iterator geometry, and thinks the first
4016 character is always the leftmost, even in R2L lines,
4017 we don't need to distinguish between the R2L and L2R
4018 cases here. */
4019 move_it_in_display_line (&it_copy, SCHARS (it_copy.string),
4020 it_copy.current_x - 1, MOVE_TO_X);
4021 charpos = IT_STRING_CHARPOS (it_copy);
4022 RESTORE_IT (it, it, it_copy_data);
4024 else
4026 /* Set charpos to the string position of the character
4027 that comes after IT's current position in the visual
4028 order. */
4029 int n = (it->what == IT_COMPOSITION ? it->cmp_it.nchars : 1);
4031 it_copy = *it;
4032 while (n--)
4033 bidi_move_to_visually_next (&it_copy.bidi_it);
4035 charpos = it_copy.bidi_it.charpos;
4038 eassert (0 <= charpos && charpos <= SCHARS (it->string));
4040 if (it->current.overlay_string_index >= 0)
4041 bufpos = IT_CHARPOS (*it);
4042 else
4043 bufpos = 0;
4045 base_face_id = underlying_face_id (it);
4047 /* Get the face for ASCII, or unibyte. */
4048 face_id = face_at_string_position (it->w,
4049 it->string,
4050 charpos,
4051 bufpos,
4052 &next_check_charpos,
4053 base_face_id, false);
4055 /* Correct the face for charsets different from ASCII. Do it
4056 for the multibyte case only. The face returned above is
4057 suitable for unibyte text if IT->string is unibyte. */
4058 if (STRING_MULTIBYTE (it->string))
4060 struct text_pos pos1 = string_pos (charpos, it->string);
4061 const unsigned char *p = SDATA (it->string) + BYTEPOS (pos1);
4062 int c, len;
4063 struct face *face = FACE_FROM_ID (it->f, face_id);
4065 c = string_char_and_length (p, &len);
4066 face_id = FACE_FOR_CHAR (it->f, face, c, charpos, it->string);
4069 else
4071 struct text_pos pos;
4073 if ((IT_CHARPOS (*it) >= ZV && !before_p)
4074 || (IT_CHARPOS (*it) <= BEGV && before_p))
4075 return it->face_id;
4077 limit = IT_CHARPOS (*it) + TEXT_PROP_DISTANCE_LIMIT;
4078 pos = it->current.pos;
4080 if (!it->bidi_p)
4082 if (before_p)
4083 DEC_TEXT_POS (pos, it->multibyte_p);
4084 else
4086 if (it->what == IT_COMPOSITION)
4088 /* For composition, we must check the position after
4089 the composition. */
4090 pos.charpos += it->cmp_it.nchars;
4091 pos.bytepos += it->len;
4093 else
4094 INC_TEXT_POS (pos, it->multibyte_p);
4097 else
4099 if (before_p)
4101 /* With bidi iteration, the character before the current
4102 in the visual order cannot be found by simple
4103 iteration, because "reverse" reordering is not
4104 supported. Instead, we need to use the move_it_*
4105 family of functions. */
4106 /* Ignore face changes before the first visible
4107 character on this display line. */
4108 if (it->current_x <= it->first_visible_x)
4109 return it->face_id;
4110 SAVE_IT (it_copy, *it, it_copy_data);
4111 /* Implementation note: Since move_it_in_display_line
4112 works in the iterator geometry, and thinks the first
4113 character is always the leftmost, even in R2L lines,
4114 we don't need to distinguish between the R2L and L2R
4115 cases here. */
4116 move_it_in_display_line (&it_copy, ZV,
4117 it_copy.current_x - 1, MOVE_TO_X);
4118 pos = it_copy.current.pos;
4119 RESTORE_IT (it, it, it_copy_data);
4121 else
4123 /* Set charpos to the buffer position of the character
4124 that comes after IT's current position in the visual
4125 order. */
4126 int n = (it->what == IT_COMPOSITION ? it->cmp_it.nchars : 1);
4128 it_copy = *it;
4129 while (n--)
4130 bidi_move_to_visually_next (&it_copy.bidi_it);
4132 SET_TEXT_POS (pos,
4133 it_copy.bidi_it.charpos, it_copy.bidi_it.bytepos);
4136 eassert (BEGV <= CHARPOS (pos) && CHARPOS (pos) <= ZV);
4138 /* Determine face for CHARSET_ASCII, or unibyte. */
4139 face_id = face_at_buffer_position (it->w,
4140 CHARPOS (pos),
4141 &next_check_charpos,
4142 limit, false, -1);
4144 /* Correct the face for charsets different from ASCII. Do it
4145 for the multibyte case only. The face returned above is
4146 suitable for unibyte text if current_buffer is unibyte. */
4147 if (it->multibyte_p)
4149 int c = FETCH_MULTIBYTE_CHAR (BYTEPOS (pos));
4150 struct face *face = FACE_FROM_ID (it->f, face_id);
4151 face_id = FACE_FOR_CHAR (it->f, face, c, CHARPOS (pos), Qnil);
4155 return face_id;
4160 /***********************************************************************
4161 Invisible text
4162 ***********************************************************************/
4164 /* Set up iterator IT from invisible properties at its current
4165 position. Called from handle_stop. */
4167 static enum prop_handled
4168 handle_invisible_prop (struct it *it)
4170 enum prop_handled handled = HANDLED_NORMALLY;
4171 int invis;
4172 Lisp_Object prop;
4174 if (STRINGP (it->string))
4176 Lisp_Object end_charpos, limit, charpos;
4178 /* Get the value of the invisible text property at the
4179 current position. Value will be nil if there is no such
4180 property. */
4181 charpos = make_number (IT_STRING_CHARPOS (*it));
4182 prop = Fget_text_property (charpos, Qinvisible, it->string);
4183 invis = TEXT_PROP_MEANS_INVISIBLE (prop);
4185 if (invis != 0 && IT_STRING_CHARPOS (*it) < it->end_charpos)
4187 /* Record whether we have to display an ellipsis for the
4188 invisible text. */
4189 bool display_ellipsis_p = (invis == 2);
4190 ptrdiff_t len, endpos;
4192 handled = HANDLED_RECOMPUTE_PROPS;
4194 /* Get the position at which the next visible text can be
4195 found in IT->string, if any. */
4196 endpos = len = SCHARS (it->string);
4197 XSETINT (limit, len);
4200 end_charpos = Fnext_single_property_change (charpos, Qinvisible,
4201 it->string, limit);
4202 if (INTEGERP (end_charpos))
4204 endpos = XFASTINT (end_charpos);
4205 prop = Fget_text_property (end_charpos, Qinvisible, it->string);
4206 invis = TEXT_PROP_MEANS_INVISIBLE (prop);
4207 if (invis == 2)
4208 display_ellipsis_p = true;
4211 while (invis != 0 && endpos < len);
4213 if (display_ellipsis_p)
4214 it->ellipsis_p = true;
4216 if (endpos < len)
4218 /* Text at END_CHARPOS is visible. Move IT there. */
4219 struct text_pos old;
4220 ptrdiff_t oldpos;
4222 old = it->current.string_pos;
4223 oldpos = CHARPOS (old);
4224 if (it->bidi_p)
4226 if (it->bidi_it.first_elt
4227 && it->bidi_it.charpos < SCHARS (it->string))
4228 bidi_paragraph_init (it->paragraph_embedding,
4229 &it->bidi_it, true);
4230 /* Bidi-iterate out of the invisible text. */
4233 bidi_move_to_visually_next (&it->bidi_it);
4235 while (oldpos <= it->bidi_it.charpos
4236 && it->bidi_it.charpos < endpos);
4238 IT_STRING_CHARPOS (*it) = it->bidi_it.charpos;
4239 IT_STRING_BYTEPOS (*it) = it->bidi_it.bytepos;
4240 if (IT_CHARPOS (*it) >= endpos)
4241 it->prev_stop = endpos;
4243 else
4245 IT_STRING_CHARPOS (*it) = XFASTINT (end_charpos);
4246 compute_string_pos (&it->current.string_pos, old, it->string);
4249 else
4251 /* The rest of the string is invisible. If this is an
4252 overlay string, proceed with the next overlay string
4253 or whatever comes and return a character from there. */
4254 if (it->current.overlay_string_index >= 0
4255 && !display_ellipsis_p)
4257 next_overlay_string (it);
4258 /* Don't check for overlay strings when we just
4259 finished processing them. */
4260 handled = HANDLED_OVERLAY_STRING_CONSUMED;
4262 else
4264 IT_STRING_CHARPOS (*it) = SCHARS (it->string);
4265 IT_STRING_BYTEPOS (*it) = SBYTES (it->string);
4270 else
4272 ptrdiff_t newpos, next_stop, start_charpos, tem;
4273 Lisp_Object pos, overlay;
4275 /* First of all, is there invisible text at this position? */
4276 tem = start_charpos = IT_CHARPOS (*it);
4277 pos = make_number (tem);
4278 prop = get_char_property_and_overlay (pos, Qinvisible, it->window,
4279 &overlay);
4280 invis = TEXT_PROP_MEANS_INVISIBLE (prop);
4282 /* If we are on invisible text, skip over it. */
4283 if (invis != 0 && start_charpos < it->end_charpos)
4285 /* Record whether we have to display an ellipsis for the
4286 invisible text. */
4287 bool display_ellipsis_p = invis == 2;
4289 handled = HANDLED_RECOMPUTE_PROPS;
4291 /* Loop skipping over invisible text. The loop is left at
4292 ZV or with IT on the first char being visible again. */
4295 /* Try to skip some invisible text. Return value is the
4296 position reached which can be equal to where we start
4297 if there is nothing invisible there. This skips both
4298 over invisible text properties and overlays with
4299 invisible property. */
4300 newpos = skip_invisible (tem, &next_stop, ZV, it->window);
4302 /* If we skipped nothing at all we weren't at invisible
4303 text in the first place. If everything to the end of
4304 the buffer was skipped, end the loop. */
4305 if (newpos == tem || newpos >= ZV)
4306 invis = 0;
4307 else
4309 /* We skipped some characters but not necessarily
4310 all there are. Check if we ended up on visible
4311 text. Fget_char_property returns the property of
4312 the char before the given position, i.e. if we
4313 get invis = 0, this means that the char at
4314 newpos is visible. */
4315 pos = make_number (newpos);
4316 prop = Fget_char_property (pos, Qinvisible, it->window);
4317 invis = TEXT_PROP_MEANS_INVISIBLE (prop);
4320 /* If we ended up on invisible text, proceed to
4321 skip starting with next_stop. */
4322 if (invis != 0)
4323 tem = next_stop;
4325 /* If there are adjacent invisible texts, don't lose the
4326 second one's ellipsis. */
4327 if (invis == 2)
4328 display_ellipsis_p = true;
4330 while (invis != 0);
4332 /* The position newpos is now either ZV or on visible text. */
4333 if (it->bidi_p)
4335 ptrdiff_t bpos = CHAR_TO_BYTE (newpos);
4336 bool on_newline
4337 = bpos == ZV_BYTE || FETCH_BYTE (bpos) == '\n';
4338 bool after_newline
4339 = newpos <= BEGV || FETCH_BYTE (bpos - 1) == '\n';
4341 /* If the invisible text ends on a newline or on a
4342 character after a newline, we can avoid the costly,
4343 character by character, bidi iteration to NEWPOS, and
4344 instead simply reseat the iterator there. That's
4345 because all bidi reordering information is tossed at
4346 the newline. This is a big win for modes that hide
4347 complete lines, like Outline, Org, etc. */
4348 if (on_newline || after_newline)
4350 struct text_pos tpos;
4351 bidi_dir_t pdir = it->bidi_it.paragraph_dir;
4353 SET_TEXT_POS (tpos, newpos, bpos);
4354 reseat_1 (it, tpos, false);
4355 /* If we reseat on a newline/ZV, we need to prep the
4356 bidi iterator for advancing to the next character
4357 after the newline/EOB, keeping the current paragraph
4358 direction (so that PRODUCE_GLYPHS does TRT wrt
4359 prepending/appending glyphs to a glyph row). */
4360 if (on_newline)
4362 it->bidi_it.first_elt = false;
4363 it->bidi_it.paragraph_dir = pdir;
4364 it->bidi_it.ch = (bpos == ZV_BYTE) ? -1 : '\n';
4365 it->bidi_it.nchars = 1;
4366 it->bidi_it.ch_len = 1;
4369 else /* Must use the slow method. */
4371 /* With bidi iteration, the region of invisible text
4372 could start and/or end in the middle of a
4373 non-base embedding level. Therefore, we need to
4374 skip invisible text using the bidi iterator,
4375 starting at IT's current position, until we find
4376 ourselves outside of the invisible text.
4377 Skipping invisible text _after_ bidi iteration
4378 avoids affecting the visual order of the
4379 displayed text when invisible properties are
4380 added or removed. */
4381 if (it->bidi_it.first_elt && it->bidi_it.charpos < ZV)
4383 /* If we were `reseat'ed to a new paragraph,
4384 determine the paragraph base direction. We
4385 need to do it now because
4386 next_element_from_buffer may not have a
4387 chance to do it, if we are going to skip any
4388 text at the beginning, which resets the
4389 FIRST_ELT flag. */
4390 bidi_paragraph_init (it->paragraph_embedding,
4391 &it->bidi_it, true);
4395 bidi_move_to_visually_next (&it->bidi_it);
4397 while (it->stop_charpos <= it->bidi_it.charpos
4398 && it->bidi_it.charpos < newpos);
4399 IT_CHARPOS (*it) = it->bidi_it.charpos;
4400 IT_BYTEPOS (*it) = it->bidi_it.bytepos;
4401 /* If we overstepped NEWPOS, record its position in
4402 the iterator, so that we skip invisible text if
4403 later the bidi iteration lands us in the
4404 invisible region again. */
4405 if (IT_CHARPOS (*it) >= newpos)
4406 it->prev_stop = newpos;
4409 else
4411 IT_CHARPOS (*it) = newpos;
4412 IT_BYTEPOS (*it) = CHAR_TO_BYTE (newpos);
4415 if (display_ellipsis_p)
4417 /* Make sure that the glyphs of the ellipsis will get
4418 correct `charpos' values. If we would not update
4419 it->position here, the glyphs would belong to the
4420 last visible character _before_ the invisible
4421 text, which confuses `set_cursor_from_row'.
4423 We use the last invisible position instead of the
4424 first because this way the cursor is always drawn on
4425 the first "." of the ellipsis, whenever PT is inside
4426 the invisible text. Otherwise the cursor would be
4427 placed _after_ the ellipsis when the point is after the
4428 first invisible character. */
4429 if (!STRINGP (it->object))
4431 it->position.charpos = newpos - 1;
4432 it->position.bytepos = CHAR_TO_BYTE (it->position.charpos);
4436 /* If there are before-strings at the start of invisible
4437 text, and the text is invisible because of a text
4438 property, arrange to show before-strings because 20.x did
4439 it that way. (If the text is invisible because of an
4440 overlay property instead of a text property, this is
4441 already handled in the overlay code.) */
4442 if (NILP (overlay)
4443 && get_overlay_strings (it, it->stop_charpos))
4445 handled = HANDLED_RECOMPUTE_PROPS;
4446 if (it->sp > 0)
4448 it->stack[it->sp - 1].display_ellipsis_p = display_ellipsis_p;
4449 /* The call to get_overlay_strings above recomputes
4450 it->stop_charpos, but it only considers changes
4451 in properties and overlays beyond iterator's
4452 current position. This causes us to miss changes
4453 that happen exactly where the invisible property
4454 ended. So we play it safe here and force the
4455 iterator to check for potential stop positions
4456 immediately after the invisible text. Note that
4457 if get_overlay_strings returns true, it
4458 normally also pushed the iterator stack, so we
4459 need to update the stop position in the slot
4460 below the current one. */
4461 it->stack[it->sp - 1].stop_charpos
4462 = CHARPOS (it->stack[it->sp - 1].current.pos);
4465 else if (display_ellipsis_p)
4467 it->ellipsis_p = true;
4468 /* Let the ellipsis display before
4469 considering any properties of the following char.
4470 Fixes jasonr@gnu.org 01 Oct 07 bug. */
4471 handled = HANDLED_RETURN;
4476 return handled;
4480 /* Make iterator IT return `...' next.
4481 Replaces LEN characters from buffer. */
4483 static void
4484 setup_for_ellipsis (struct it *it, int len)
4486 /* Use the display table definition for `...'. Invalid glyphs
4487 will be handled by the method returning elements from dpvec. */
4488 if (it->dp && VECTORP (DISP_INVIS_VECTOR (it->dp)))
4490 struct Lisp_Vector *v = XVECTOR (DISP_INVIS_VECTOR (it->dp));
4491 it->dpvec = v->contents;
4492 it->dpend = v->contents + v->header.size;
4494 else
4496 /* Default `...'. */
4497 it->dpvec = default_invis_vector;
4498 it->dpend = default_invis_vector + 3;
4501 it->dpvec_char_len = len;
4502 it->current.dpvec_index = 0;
4503 it->dpvec_face_id = -1;
4505 /* Remember the current face id in case glyphs specify faces.
4506 IT's face is restored in set_iterator_to_next.
4507 saved_face_id was set to preceding char's face in handle_stop. */
4508 if (it->saved_face_id < 0 || it->saved_face_id != it->face_id)
4509 it->saved_face_id = it->face_id = DEFAULT_FACE_ID;
4511 /* If the ellipsis represents buffer text, it means we advanced in
4512 the buffer, so we should no longer ignore overlay strings. */
4513 if (it->method == GET_FROM_BUFFER)
4514 it->ignore_overlay_strings_at_pos_p = false;
4516 it->method = GET_FROM_DISPLAY_VECTOR;
4517 it->ellipsis_p = true;
4522 /***********************************************************************
4523 'display' property
4524 ***********************************************************************/
4526 /* Set up iterator IT from `display' property at its current position.
4527 Called from handle_stop.
4528 We return HANDLED_RETURN if some part of the display property
4529 overrides the display of the buffer text itself.
4530 Otherwise we return HANDLED_NORMALLY. */
4532 static enum prop_handled
4533 handle_display_prop (struct it *it)
4535 Lisp_Object propval, object, overlay;
4536 struct text_pos *position;
4537 ptrdiff_t bufpos;
4538 /* Nonzero if some property replaces the display of the text itself. */
4539 int display_replaced = 0;
4541 if (STRINGP (it->string))
4543 object = it->string;
4544 position = &it->current.string_pos;
4545 bufpos = CHARPOS (it->current.pos);
4547 else
4549 XSETWINDOW (object, it->w);
4550 position = &it->current.pos;
4551 bufpos = CHARPOS (*position);
4554 /* Reset those iterator values set from display property values. */
4555 it->slice.x = it->slice.y = it->slice.width = it->slice.height = Qnil;
4556 it->space_width = Qnil;
4557 it->font_height = Qnil;
4558 it->voffset = 0;
4560 /* We don't support recursive `display' properties, i.e. string
4561 values that have a string `display' property, that have a string
4562 `display' property etc. */
4563 if (!it->string_from_display_prop_p)
4564 it->area = TEXT_AREA;
4566 propval = get_char_property_and_overlay (make_number (position->charpos),
4567 Qdisplay, object, &overlay);
4568 if (NILP (propval))
4569 return HANDLED_NORMALLY;
4570 /* Now OVERLAY is the overlay that gave us this property, or nil
4571 if it was a text property. */
4573 if (!STRINGP (it->string))
4574 object = it->w->contents;
4576 display_replaced = handle_display_spec (it, propval, object, overlay,
4577 position, bufpos,
4578 FRAME_WINDOW_P (it->f));
4579 return display_replaced != 0 ? HANDLED_RETURN : HANDLED_NORMALLY;
4582 /* Subroutine of handle_display_prop. Returns non-zero if the display
4583 specification in SPEC is a replacing specification, i.e. it would
4584 replace the text covered by `display' property with something else,
4585 such as an image or a display string. If SPEC includes any kind or
4586 `(space ...) specification, the value is 2; this is used by
4587 compute_display_string_pos, which see.
4589 See handle_single_display_spec for documentation of arguments.
4590 FRAME_WINDOW_P is true if the window being redisplayed is on a
4591 GUI frame; this argument is used only if IT is NULL, see below.
4593 IT can be NULL, if this is called by the bidi reordering code
4594 through compute_display_string_pos, which see. In that case, this
4595 function only examines SPEC, but does not otherwise "handle" it, in
4596 the sense that it doesn't set up members of IT from the display
4597 spec. */
4598 static int
4599 handle_display_spec (struct it *it, Lisp_Object spec, Lisp_Object object,
4600 Lisp_Object overlay, struct text_pos *position,
4601 ptrdiff_t bufpos, bool frame_window_p)
4603 int replacing = 0;
4605 if (CONSP (spec)
4606 /* Simple specifications. */
4607 && !EQ (XCAR (spec), Qimage)
4608 && !EQ (XCAR (spec), Qspace)
4609 && !EQ (XCAR (spec), Qwhen)
4610 && !EQ (XCAR (spec), Qslice)
4611 && !EQ (XCAR (spec), Qspace_width)
4612 && !EQ (XCAR (spec), Qheight)
4613 && !EQ (XCAR (spec), Qraise)
4614 /* Marginal area specifications. */
4615 && !(CONSP (XCAR (spec)) && EQ (XCAR (XCAR (spec)), Qmargin))
4616 && !EQ (XCAR (spec), Qleft_fringe)
4617 && !EQ (XCAR (spec), Qright_fringe)
4618 && !NILP (XCAR (spec)))
4620 for (; CONSP (spec); spec = XCDR (spec))
4622 int rv = handle_single_display_spec (it, XCAR (spec), object,
4623 overlay, position, bufpos,
4624 replacing, frame_window_p);
4625 if (rv != 0)
4627 replacing = rv;
4628 /* If some text in a string is replaced, `position' no
4629 longer points to the position of `object'. */
4630 if (!it || STRINGP (object))
4631 break;
4635 else if (VECTORP (spec))
4637 ptrdiff_t i;
4638 for (i = 0; i < ASIZE (spec); ++i)
4640 int rv = handle_single_display_spec (it, AREF (spec, i), object,
4641 overlay, position, bufpos,
4642 replacing, frame_window_p);
4643 if (rv != 0)
4645 replacing = rv;
4646 /* If some text in a string is replaced, `position' no
4647 longer points to the position of `object'. */
4648 if (!it || STRINGP (object))
4649 break;
4653 else
4654 replacing = handle_single_display_spec (it, spec, object, overlay, position,
4655 bufpos, 0, frame_window_p);
4656 return replacing;
4659 /* Value is the position of the end of the `display' property starting
4660 at START_POS in OBJECT. */
4662 static struct text_pos
4663 display_prop_end (struct it *it, Lisp_Object object, struct text_pos start_pos)
4665 Lisp_Object end;
4666 struct text_pos end_pos;
4668 end = Fnext_single_char_property_change (make_number (CHARPOS (start_pos)),
4669 Qdisplay, object, Qnil);
4670 CHARPOS (end_pos) = XFASTINT (end);
4671 if (STRINGP (object))
4672 compute_string_pos (&end_pos, start_pos, it->string);
4673 else
4674 BYTEPOS (end_pos) = CHAR_TO_BYTE (XFASTINT (end));
4676 return end_pos;
4680 /* Set up IT from a single `display' property specification SPEC. OBJECT
4681 is the object in which the `display' property was found. *POSITION
4682 is the position in OBJECT at which the `display' property was found.
4683 BUFPOS is the buffer position of OBJECT (different from POSITION if
4684 OBJECT is not a buffer). DISPLAY_REPLACED non-zero means that we
4685 previously saw a display specification which already replaced text
4686 display with something else, for example an image; we ignore such
4687 properties after the first one has been processed.
4689 OVERLAY is the overlay this `display' property came from,
4690 or nil if it was a text property.
4692 If SPEC is a `space' or `image' specification, and in some other
4693 cases too, set *POSITION to the position where the `display'
4694 property ends.
4696 If IT is NULL, only examine the property specification in SPEC, but
4697 don't set up IT. In that case, FRAME_WINDOW_P means SPEC
4698 is intended to be displayed in a window on a GUI frame.
4700 Value is non-zero if something was found which replaces the display
4701 of buffer or string text. */
4703 static int
4704 handle_single_display_spec (struct it *it, Lisp_Object spec, Lisp_Object object,
4705 Lisp_Object overlay, struct text_pos *position,
4706 ptrdiff_t bufpos, int display_replaced,
4707 bool frame_window_p)
4709 Lisp_Object form;
4710 Lisp_Object location, value;
4711 struct text_pos start_pos = *position;
4713 /* If SPEC is a list of the form `(when FORM . VALUE)', evaluate FORM.
4714 If the result is non-nil, use VALUE instead of SPEC. */
4715 form = Qt;
4716 if (CONSP (spec) && EQ (XCAR (spec), Qwhen))
4718 spec = XCDR (spec);
4719 if (!CONSP (spec))
4720 return 0;
4721 form = XCAR (spec);
4722 spec = XCDR (spec);
4725 if (!NILP (form) && !EQ (form, Qt))
4727 ptrdiff_t count = SPECPDL_INDEX ();
4728 struct gcpro gcpro1;
4730 /* Bind `object' to the object having the `display' property, a
4731 buffer or string. Bind `position' to the position in the
4732 object where the property was found, and `buffer-position'
4733 to the current position in the buffer. */
4735 if (NILP (object))
4736 XSETBUFFER (object, current_buffer);
4737 specbind (Qobject, object);
4738 specbind (Qposition, make_number (CHARPOS (*position)));
4739 specbind (Qbuffer_position, make_number (bufpos));
4740 GCPRO1 (form);
4741 form = safe_eval (form);
4742 UNGCPRO;
4743 unbind_to (count, Qnil);
4746 if (NILP (form))
4747 return 0;
4749 /* Handle `(height HEIGHT)' specifications. */
4750 if (CONSP (spec)
4751 && EQ (XCAR (spec), Qheight)
4752 && CONSP (XCDR (spec)))
4754 if (it)
4756 if (!FRAME_WINDOW_P (it->f))
4757 return 0;
4759 it->font_height = XCAR (XCDR (spec));
4760 if (!NILP (it->font_height))
4762 struct face *face = FACE_FROM_ID (it->f, it->face_id);
4763 int new_height = -1;
4765 if (CONSP (it->font_height)
4766 && (EQ (XCAR (it->font_height), Qplus)
4767 || EQ (XCAR (it->font_height), Qminus))
4768 && CONSP (XCDR (it->font_height))
4769 && RANGED_INTEGERP (0, XCAR (XCDR (it->font_height)), INT_MAX))
4771 /* `(+ N)' or `(- N)' where N is an integer. */
4772 int steps = XINT (XCAR (XCDR (it->font_height)));
4773 if (EQ (XCAR (it->font_height), Qplus))
4774 steps = - steps;
4775 it->face_id = smaller_face (it->f, it->face_id, steps);
4777 else if (FUNCTIONP (it->font_height))
4779 /* Call function with current height as argument.
4780 Value is the new height. */
4781 Lisp_Object height;
4782 height = safe_call1 (it->font_height,
4783 face->lface[LFACE_HEIGHT_INDEX]);
4784 if (NUMBERP (height))
4785 new_height = XFLOATINT (height);
4787 else if (NUMBERP (it->font_height))
4789 /* Value is a multiple of the canonical char height. */
4790 struct face *f;
4792 f = FACE_FROM_ID (it->f,
4793 lookup_basic_face (it->f, DEFAULT_FACE_ID));
4794 new_height = (XFLOATINT (it->font_height)
4795 * XINT (f->lface[LFACE_HEIGHT_INDEX]));
4797 else
4799 /* Evaluate IT->font_height with `height' bound to the
4800 current specified height to get the new height. */
4801 ptrdiff_t count = SPECPDL_INDEX ();
4803 specbind (Qheight, face->lface[LFACE_HEIGHT_INDEX]);
4804 value = safe_eval (it->font_height);
4805 unbind_to (count, Qnil);
4807 if (NUMBERP (value))
4808 new_height = XFLOATINT (value);
4811 if (new_height > 0)
4812 it->face_id = face_with_height (it->f, it->face_id, new_height);
4816 return 0;
4819 /* Handle `(space-width WIDTH)'. */
4820 if (CONSP (spec)
4821 && EQ (XCAR (spec), Qspace_width)
4822 && CONSP (XCDR (spec)))
4824 if (it)
4826 if (!FRAME_WINDOW_P (it->f))
4827 return 0;
4829 value = XCAR (XCDR (spec));
4830 if (NUMBERP (value) && XFLOATINT (value) > 0)
4831 it->space_width = value;
4834 return 0;
4837 /* Handle `(slice X Y WIDTH HEIGHT)'. */
4838 if (CONSP (spec)
4839 && EQ (XCAR (spec), Qslice))
4841 Lisp_Object tem;
4843 if (it)
4845 if (!FRAME_WINDOW_P (it->f))
4846 return 0;
4848 if (tem = XCDR (spec), CONSP (tem))
4850 it->slice.x = XCAR (tem);
4851 if (tem = XCDR (tem), CONSP (tem))
4853 it->slice.y = XCAR (tem);
4854 if (tem = XCDR (tem), CONSP (tem))
4856 it->slice.width = XCAR (tem);
4857 if (tem = XCDR (tem), CONSP (tem))
4858 it->slice.height = XCAR (tem);
4864 return 0;
4867 /* Handle `(raise FACTOR)'. */
4868 if (CONSP (spec)
4869 && EQ (XCAR (spec), Qraise)
4870 && CONSP (XCDR (spec)))
4872 if (it)
4874 if (!FRAME_WINDOW_P (it->f))
4875 return 0;
4877 #ifdef HAVE_WINDOW_SYSTEM
4878 value = XCAR (XCDR (spec));
4879 if (NUMBERP (value))
4881 struct face *face = FACE_FROM_ID (it->f, it->face_id);
4882 it->voffset = - (XFLOATINT (value)
4883 * (FONT_HEIGHT (face->font)));
4885 #endif /* HAVE_WINDOW_SYSTEM */
4888 return 0;
4891 /* Don't handle the other kinds of display specifications
4892 inside a string that we got from a `display' property. */
4893 if (it && it->string_from_display_prop_p)
4894 return 0;
4896 /* Characters having this form of property are not displayed, so
4897 we have to find the end of the property. */
4898 if (it)
4900 start_pos = *position;
4901 *position = display_prop_end (it, object, start_pos);
4903 value = Qnil;
4905 /* Stop the scan at that end position--we assume that all
4906 text properties change there. */
4907 if (it)
4908 it->stop_charpos = position->charpos;
4910 /* Handle `(left-fringe BITMAP [FACE])'
4911 and `(right-fringe BITMAP [FACE])'. */
4912 if (CONSP (spec)
4913 && (EQ (XCAR (spec), Qleft_fringe)
4914 || EQ (XCAR (spec), Qright_fringe))
4915 && CONSP (XCDR (spec)))
4917 int fringe_bitmap;
4919 if (it)
4921 if (!FRAME_WINDOW_P (it->f))
4922 /* If we return here, POSITION has been advanced
4923 across the text with this property. */
4925 /* Synchronize the bidi iterator with POSITION. This is
4926 needed because we are not going to push the iterator
4927 on behalf of this display property, so there will be
4928 no pop_it call to do this synchronization for us. */
4929 if (it->bidi_p)
4931 it->position = *position;
4932 iterate_out_of_display_property (it);
4933 *position = it->position;
4935 return 1;
4938 else if (!frame_window_p)
4939 return 1;
4941 #ifdef HAVE_WINDOW_SYSTEM
4942 value = XCAR (XCDR (spec));
4943 if (!SYMBOLP (value)
4944 || !(fringe_bitmap = lookup_fringe_bitmap (value)))
4945 /* If we return here, POSITION has been advanced
4946 across the text with this property. */
4948 if (it && it->bidi_p)
4950 it->position = *position;
4951 iterate_out_of_display_property (it);
4952 *position = it->position;
4954 return 1;
4957 if (it)
4959 int face_id = lookup_basic_face (it->f, DEFAULT_FACE_ID);
4961 if (CONSP (XCDR (XCDR (spec))))
4963 Lisp_Object face_name = XCAR (XCDR (XCDR (spec)));
4964 int face_id2 = lookup_derived_face (it->f, face_name,
4965 FRINGE_FACE_ID, false);
4966 if (face_id2 >= 0)
4967 face_id = face_id2;
4970 /* Save current settings of IT so that we can restore them
4971 when we are finished with the glyph property value. */
4972 push_it (it, position);
4974 it->area = TEXT_AREA;
4975 it->what = IT_IMAGE;
4976 it->image_id = -1; /* no image */
4977 it->position = start_pos;
4978 it->object = NILP (object) ? it->w->contents : object;
4979 it->method = GET_FROM_IMAGE;
4980 it->from_overlay = Qnil;
4981 it->face_id = face_id;
4982 it->from_disp_prop_p = true;
4984 /* Say that we haven't consumed the characters with
4985 `display' property yet. The call to pop_it in
4986 set_iterator_to_next will clean this up. */
4987 *position = start_pos;
4989 if (EQ (XCAR (spec), Qleft_fringe))
4991 it->left_user_fringe_bitmap = fringe_bitmap;
4992 it->left_user_fringe_face_id = face_id;
4994 else
4996 it->right_user_fringe_bitmap = fringe_bitmap;
4997 it->right_user_fringe_face_id = face_id;
5000 #endif /* HAVE_WINDOW_SYSTEM */
5001 return 1;
5004 /* Prepare to handle `((margin left-margin) ...)',
5005 `((margin right-margin) ...)' and `((margin nil) ...)'
5006 prefixes for display specifications. */
5007 location = Qunbound;
5008 if (CONSP (spec) && CONSP (XCAR (spec)))
5010 Lisp_Object tem;
5012 value = XCDR (spec);
5013 if (CONSP (value))
5014 value = XCAR (value);
5016 tem = XCAR (spec);
5017 if (EQ (XCAR (tem), Qmargin)
5018 && (tem = XCDR (tem),
5019 tem = CONSP (tem) ? XCAR (tem) : Qnil,
5020 (NILP (tem)
5021 || EQ (tem, Qleft_margin)
5022 || EQ (tem, Qright_margin))))
5023 location = tem;
5026 if (EQ (location, Qunbound))
5028 location = Qnil;
5029 value = spec;
5032 /* After this point, VALUE is the property after any
5033 margin prefix has been stripped. It must be a string,
5034 an image specification, or `(space ...)'.
5036 LOCATION specifies where to display: `left-margin',
5037 `right-margin' or nil. */
5039 bool valid_p = (STRINGP (value)
5040 #ifdef HAVE_WINDOW_SYSTEM
5041 || ((it ? FRAME_WINDOW_P (it->f) : frame_window_p)
5042 && valid_image_p (value))
5043 #endif /* not HAVE_WINDOW_SYSTEM */
5044 || (CONSP (value) && EQ (XCAR (value), Qspace)));
5046 if (valid_p && display_replaced == 0)
5048 int retval = 1;
5050 if (!it)
5052 /* Callers need to know whether the display spec is any kind
5053 of `(space ...)' spec that is about to affect text-area
5054 display. */
5055 if (CONSP (value) && EQ (XCAR (value), Qspace) && NILP (location))
5056 retval = 2;
5057 return retval;
5060 /* Save current settings of IT so that we can restore them
5061 when we are finished with the glyph property value. */
5062 push_it (it, position);
5063 it->from_overlay = overlay;
5064 it->from_disp_prop_p = true;
5066 if (NILP (location))
5067 it->area = TEXT_AREA;
5068 else if (EQ (location, Qleft_margin))
5069 it->area = LEFT_MARGIN_AREA;
5070 else
5071 it->area = RIGHT_MARGIN_AREA;
5073 if (STRINGP (value))
5075 it->string = value;
5076 it->multibyte_p = STRING_MULTIBYTE (it->string);
5077 it->current.overlay_string_index = -1;
5078 IT_STRING_CHARPOS (*it) = IT_STRING_BYTEPOS (*it) = 0;
5079 it->end_charpos = it->string_nchars = SCHARS (it->string);
5080 it->method = GET_FROM_STRING;
5081 it->stop_charpos = 0;
5082 it->prev_stop = 0;
5083 it->base_level_stop = 0;
5084 it->string_from_display_prop_p = true;
5085 /* Say that we haven't consumed the characters with
5086 `display' property yet. The call to pop_it in
5087 set_iterator_to_next will clean this up. */
5088 if (BUFFERP (object))
5089 *position = start_pos;
5091 /* Force paragraph direction to be that of the parent
5092 object. If the parent object's paragraph direction is
5093 not yet determined, default to L2R. */
5094 if (it->bidi_p && it->bidi_it.paragraph_dir == R2L)
5095 it->paragraph_embedding = it->bidi_it.paragraph_dir;
5096 else
5097 it->paragraph_embedding = L2R;
5099 /* Set up the bidi iterator for this display string. */
5100 if (it->bidi_p)
5102 it->bidi_it.string.lstring = it->string;
5103 it->bidi_it.string.s = NULL;
5104 it->bidi_it.string.schars = it->end_charpos;
5105 it->bidi_it.string.bufpos = bufpos;
5106 it->bidi_it.string.from_disp_str = true;
5107 it->bidi_it.string.unibyte = !it->multibyte_p;
5108 it->bidi_it.w = it->w;
5109 bidi_init_it (0, 0, FRAME_WINDOW_P (it->f), &it->bidi_it);
5112 else if (CONSP (value) && EQ (XCAR (value), Qspace))
5114 it->method = GET_FROM_STRETCH;
5115 it->object = value;
5116 *position = it->position = start_pos;
5117 retval = 1 + (it->area == TEXT_AREA);
5119 #ifdef HAVE_WINDOW_SYSTEM
5120 else
5122 it->what = IT_IMAGE;
5123 it->image_id = lookup_image (it->f, value);
5124 it->position = start_pos;
5125 it->object = NILP (object) ? it->w->contents : object;
5126 it->method = GET_FROM_IMAGE;
5128 /* Say that we haven't consumed the characters with
5129 `display' property yet. The call to pop_it in
5130 set_iterator_to_next will clean this up. */
5131 *position = start_pos;
5133 #endif /* HAVE_WINDOW_SYSTEM */
5135 return retval;
5138 /* Invalid property or property not supported. Restore
5139 POSITION to what it was before. */
5140 *position = start_pos;
5141 return 0;
5144 /* Check if PROP is a display property value whose text should be
5145 treated as intangible. OVERLAY is the overlay from which PROP
5146 came, or nil if it came from a text property. CHARPOS and BYTEPOS
5147 specify the buffer position covered by PROP. */
5149 bool
5150 display_prop_intangible_p (Lisp_Object prop, Lisp_Object overlay,
5151 ptrdiff_t charpos, ptrdiff_t bytepos)
5153 bool frame_window_p = FRAME_WINDOW_P (XFRAME (selected_frame));
5154 struct text_pos position;
5156 SET_TEXT_POS (position, charpos, bytepos);
5157 return (handle_display_spec (NULL, prop, Qnil, overlay,
5158 &position, charpos, frame_window_p)
5159 != 0);
5163 /* Return true if PROP is a display sub-property value containing STRING.
5165 Implementation note: this and the following function are really
5166 special cases of handle_display_spec and
5167 handle_single_display_spec, and should ideally use the same code.
5168 Until they do, these two pairs must be consistent and must be
5169 modified in sync. */
5171 static bool
5172 single_display_spec_string_p (Lisp_Object prop, Lisp_Object string)
5174 if (EQ (string, prop))
5175 return true;
5177 /* Skip over `when FORM'. */
5178 if (CONSP (prop) && EQ (XCAR (prop), Qwhen))
5180 prop = XCDR (prop);
5181 if (!CONSP (prop))
5182 return false;
5183 /* Actually, the condition following `when' should be eval'ed,
5184 like handle_single_display_spec does, and we should return
5185 false if it evaluates to nil. However, this function is
5186 called only when the buffer was already displayed and some
5187 glyph in the glyph matrix was found to come from a display
5188 string. Therefore, the condition was already evaluated, and
5189 the result was non-nil, otherwise the display string wouldn't
5190 have been displayed and we would have never been called for
5191 this property. Thus, we can skip the evaluation and assume
5192 its result is non-nil. */
5193 prop = XCDR (prop);
5196 if (CONSP (prop))
5197 /* Skip over `margin LOCATION'. */
5198 if (EQ (XCAR (prop), Qmargin))
5200 prop = XCDR (prop);
5201 if (!CONSP (prop))
5202 return false;
5204 prop = XCDR (prop);
5205 if (!CONSP (prop))
5206 return false;
5209 return EQ (prop, string) || (CONSP (prop) && EQ (XCAR (prop), string));
5213 /* Return true if STRING appears in the `display' property PROP. */
5215 static bool
5216 display_prop_string_p (Lisp_Object prop, Lisp_Object string)
5218 if (CONSP (prop)
5219 && !EQ (XCAR (prop), Qwhen)
5220 && !(CONSP (XCAR (prop)) && EQ (Qmargin, XCAR (XCAR (prop)))))
5222 /* A list of sub-properties. */
5223 while (CONSP (prop))
5225 if (single_display_spec_string_p (XCAR (prop), string))
5226 return true;
5227 prop = XCDR (prop);
5230 else if (VECTORP (prop))
5232 /* A vector of sub-properties. */
5233 ptrdiff_t i;
5234 for (i = 0; i < ASIZE (prop); ++i)
5235 if (single_display_spec_string_p (AREF (prop, i), string))
5236 return true;
5238 else
5239 return single_display_spec_string_p (prop, string);
5241 return false;
5244 /* Look for STRING in overlays and text properties in the current
5245 buffer, between character positions FROM and TO (excluding TO).
5246 BACK_P means look back (in this case, TO is supposed to be
5247 less than FROM).
5248 Value is the first character position where STRING was found, or
5249 zero if it wasn't found before hitting TO.
5251 This function may only use code that doesn't eval because it is
5252 called asynchronously from note_mouse_highlight. */
5254 static ptrdiff_t
5255 string_buffer_position_lim (Lisp_Object string,
5256 ptrdiff_t from, ptrdiff_t to, bool back_p)
5258 Lisp_Object limit, prop, pos;
5259 bool found = false;
5261 pos = make_number (max (from, BEGV));
5263 if (!back_p) /* looking forward */
5265 limit = make_number (min (to, ZV));
5266 while (!found && !EQ (pos, limit))
5268 prop = Fget_char_property (pos, Qdisplay, Qnil);
5269 if (!NILP (prop) && display_prop_string_p (prop, string))
5270 found = true;
5271 else
5272 pos = Fnext_single_char_property_change (pos, Qdisplay, Qnil,
5273 limit);
5276 else /* looking back */
5278 limit = make_number (max (to, BEGV));
5279 while (!found && !EQ (pos, limit))
5281 prop = Fget_char_property (pos, Qdisplay, Qnil);
5282 if (!NILP (prop) && display_prop_string_p (prop, string))
5283 found = true;
5284 else
5285 pos = Fprevious_single_char_property_change (pos, Qdisplay, Qnil,
5286 limit);
5290 return found ? XINT (pos) : 0;
5293 /* Determine which buffer position in current buffer STRING comes from.
5294 AROUND_CHARPOS is an approximate position where it could come from.
5295 Value is the buffer position or 0 if it couldn't be determined.
5297 This function is necessary because we don't record buffer positions
5298 in glyphs generated from strings (to keep struct glyph small).
5299 This function may only use code that doesn't eval because it is
5300 called asynchronously from note_mouse_highlight. */
5302 static ptrdiff_t
5303 string_buffer_position (Lisp_Object string, ptrdiff_t around_charpos)
5305 const int MAX_DISTANCE = 1000;
5306 ptrdiff_t found = string_buffer_position_lim (string, around_charpos,
5307 around_charpos + MAX_DISTANCE,
5308 false);
5310 if (!found)
5311 found = string_buffer_position_lim (string, around_charpos,
5312 around_charpos - MAX_DISTANCE, true);
5313 return found;
5318 /***********************************************************************
5319 `composition' property
5320 ***********************************************************************/
5322 /* Set up iterator IT from `composition' property at its current
5323 position. Called from handle_stop. */
5325 static enum prop_handled
5326 handle_composition_prop (struct it *it)
5328 Lisp_Object prop, string;
5329 ptrdiff_t pos, pos_byte, start, end;
5331 if (STRINGP (it->string))
5333 unsigned char *s;
5335 pos = IT_STRING_CHARPOS (*it);
5336 pos_byte = IT_STRING_BYTEPOS (*it);
5337 string = it->string;
5338 s = SDATA (string) + pos_byte;
5339 it->c = STRING_CHAR (s);
5341 else
5343 pos = IT_CHARPOS (*it);
5344 pos_byte = IT_BYTEPOS (*it);
5345 string = Qnil;
5346 it->c = FETCH_CHAR (pos_byte);
5349 /* If there's a valid composition and point is not inside of the
5350 composition (in the case that the composition is from the current
5351 buffer), draw a glyph composed from the composition components. */
5352 if (find_composition (pos, -1, &start, &end, &prop, string)
5353 && composition_valid_p (start, end, prop)
5354 && (STRINGP (it->string) || (PT <= start || PT >= end)))
5356 if (start < pos)
5357 /* As we can't handle this situation (perhaps font-lock added
5358 a new composition), we just return here hoping that next
5359 redisplay will detect this composition much earlier. */
5360 return HANDLED_NORMALLY;
5361 if (start != pos)
5363 if (STRINGP (it->string))
5364 pos_byte = string_char_to_byte (it->string, start);
5365 else
5366 pos_byte = CHAR_TO_BYTE (start);
5368 it->cmp_it.id = get_composition_id (start, pos_byte, end - start,
5369 prop, string);
5371 if (it->cmp_it.id >= 0)
5373 it->cmp_it.ch = -1;
5374 it->cmp_it.nchars = COMPOSITION_LENGTH (prop);
5375 it->cmp_it.nglyphs = -1;
5379 return HANDLED_NORMALLY;
5384 /***********************************************************************
5385 Overlay strings
5386 ***********************************************************************/
5388 /* The following structure is used to record overlay strings for
5389 later sorting in load_overlay_strings. */
5391 struct overlay_entry
5393 Lisp_Object overlay;
5394 Lisp_Object string;
5395 EMACS_INT priority;
5396 bool after_string_p;
5400 /* Set up iterator IT from overlay strings at its current position.
5401 Called from handle_stop. */
5403 static enum prop_handled
5404 handle_overlay_change (struct it *it)
5406 if (!STRINGP (it->string) && get_overlay_strings (it, 0))
5407 return HANDLED_RECOMPUTE_PROPS;
5408 else
5409 return HANDLED_NORMALLY;
5413 /* Set up the next overlay string for delivery by IT, if there is an
5414 overlay string to deliver. Called by set_iterator_to_next when the
5415 end of the current overlay string is reached. If there are more
5416 overlay strings to display, IT->string and
5417 IT->current.overlay_string_index are set appropriately here.
5418 Otherwise IT->string is set to nil. */
5420 static void
5421 next_overlay_string (struct it *it)
5423 ++it->current.overlay_string_index;
5424 if (it->current.overlay_string_index == it->n_overlay_strings)
5426 /* No more overlay strings. Restore IT's settings to what
5427 they were before overlay strings were processed, and
5428 continue to deliver from current_buffer. */
5430 it->ellipsis_p = it->stack[it->sp - 1].display_ellipsis_p;
5431 pop_it (it);
5432 eassert (it->sp > 0
5433 || (NILP (it->string)
5434 && it->method == GET_FROM_BUFFER
5435 && it->stop_charpos >= BEGV
5436 && it->stop_charpos <= it->end_charpos));
5437 it->current.overlay_string_index = -1;
5438 it->n_overlay_strings = 0;
5439 /* If there's an empty display string on the stack, pop the
5440 stack, to resync the bidi iterator with IT's position. Such
5441 empty strings are pushed onto the stack in
5442 get_overlay_strings_1. */
5443 if (it->sp > 0 && STRINGP (it->string) && !SCHARS (it->string))
5444 pop_it (it);
5446 /* Since we've exhausted overlay strings at this buffer
5447 position, set the flag to ignore overlays until we move to
5448 another position. The flag is reset in
5449 next_element_from_buffer. */
5450 it->ignore_overlay_strings_at_pos_p = true;
5452 /* If we're at the end of the buffer, record that we have
5453 processed the overlay strings there already, so that
5454 next_element_from_buffer doesn't try it again. */
5455 if (NILP (it->string)
5456 && IT_CHARPOS (*it) >= it->end_charpos
5457 && it->overlay_strings_charpos >= it->end_charpos)
5458 it->overlay_strings_at_end_processed_p = true;
5459 /* Note: we reset overlay_strings_charpos only here, to make
5460 sure the just-processed overlays were indeed at EOB.
5461 Otherwise, overlays on text with invisible text property,
5462 which are processed with IT's position past the invisible
5463 text, might fool us into thinking the overlays at EOB were
5464 already processed (linum-mode can cause this, for
5465 example). */
5466 it->overlay_strings_charpos = -1;
5468 else
5470 /* There are more overlay strings to process. If
5471 IT->current.overlay_string_index has advanced to a position
5472 where we must load IT->overlay_strings with more strings, do
5473 it. We must load at the IT->overlay_strings_charpos where
5474 IT->n_overlay_strings was originally computed; when invisible
5475 text is present, this might not be IT_CHARPOS (Bug#7016). */
5476 int i = it->current.overlay_string_index % OVERLAY_STRING_CHUNK_SIZE;
5478 if (it->current.overlay_string_index && i == 0)
5479 load_overlay_strings (it, it->overlay_strings_charpos);
5481 /* Initialize IT to deliver display elements from the overlay
5482 string. */
5483 it->string = it->overlay_strings[i];
5484 it->multibyte_p = STRING_MULTIBYTE (it->string);
5485 SET_TEXT_POS (it->current.string_pos, 0, 0);
5486 it->method = GET_FROM_STRING;
5487 it->stop_charpos = 0;
5488 it->end_charpos = SCHARS (it->string);
5489 if (it->cmp_it.stop_pos >= 0)
5490 it->cmp_it.stop_pos = 0;
5491 it->prev_stop = 0;
5492 it->base_level_stop = 0;
5494 /* Set up the bidi iterator for this overlay string. */
5495 if (it->bidi_p)
5497 it->bidi_it.string.lstring = it->string;
5498 it->bidi_it.string.s = NULL;
5499 it->bidi_it.string.schars = SCHARS (it->string);
5500 it->bidi_it.string.bufpos = it->overlay_strings_charpos;
5501 it->bidi_it.string.from_disp_str = it->string_from_display_prop_p;
5502 it->bidi_it.string.unibyte = !it->multibyte_p;
5503 it->bidi_it.w = it->w;
5504 bidi_init_it (0, 0, FRAME_WINDOW_P (it->f), &it->bidi_it);
5508 CHECK_IT (it);
5512 /* Compare two overlay_entry structures E1 and E2. Used as a
5513 comparison function for qsort in load_overlay_strings. Overlay
5514 strings for the same position are sorted so that
5516 1. All after-strings come in front of before-strings, except
5517 when they come from the same overlay.
5519 2. Within after-strings, strings are sorted so that overlay strings
5520 from overlays with higher priorities come first.
5522 2. Within before-strings, strings are sorted so that overlay
5523 strings from overlays with higher priorities come last.
5525 Value is analogous to strcmp. */
5528 static int
5529 compare_overlay_entries (const void *e1, const void *e2)
5531 struct overlay_entry const *entry1 = e1;
5532 struct overlay_entry const *entry2 = e2;
5533 int result;
5535 if (entry1->after_string_p != entry2->after_string_p)
5537 /* Let after-strings appear in front of before-strings if
5538 they come from different overlays. */
5539 if (EQ (entry1->overlay, entry2->overlay))
5540 result = entry1->after_string_p ? 1 : -1;
5541 else
5542 result = entry1->after_string_p ? -1 : 1;
5544 else if (entry1->priority != entry2->priority)
5546 if (entry1->after_string_p)
5547 /* After-strings sorted in order of decreasing priority. */
5548 result = entry2->priority < entry1->priority ? -1 : 1;
5549 else
5550 /* Before-strings sorted in order of increasing priority. */
5551 result = entry1->priority < entry2->priority ? -1 : 1;
5553 else
5554 result = 0;
5556 return result;
5560 /* Load the vector IT->overlay_strings with overlay strings from IT's
5561 current buffer position, or from CHARPOS if that is > 0. Set
5562 IT->n_overlays to the total number of overlay strings found.
5564 Overlay strings are processed OVERLAY_STRING_CHUNK_SIZE strings at
5565 a time. On entry into load_overlay_strings,
5566 IT->current.overlay_string_index gives the number of overlay
5567 strings that have already been loaded by previous calls to this
5568 function.
5570 IT->add_overlay_start contains an additional overlay start
5571 position to consider for taking overlay strings from, if non-zero.
5572 This position comes into play when the overlay has an `invisible'
5573 property, and both before and after-strings. When we've skipped to
5574 the end of the overlay, because of its `invisible' property, we
5575 nevertheless want its before-string to appear.
5576 IT->add_overlay_start will contain the overlay start position
5577 in this case.
5579 Overlay strings are sorted so that after-string strings come in
5580 front of before-string strings. Within before and after-strings,
5581 strings are sorted by overlay priority. See also function
5582 compare_overlay_entries. */
5584 static void
5585 load_overlay_strings (struct it *it, ptrdiff_t charpos)
5587 Lisp_Object overlay, window, str, invisible;
5588 struct Lisp_Overlay *ov;
5589 ptrdiff_t start, end;
5590 ptrdiff_t n = 0, i, j;
5591 int invis;
5592 struct overlay_entry entriesbuf[20];
5593 ptrdiff_t size = ARRAYELTS (entriesbuf);
5594 struct overlay_entry *entries = entriesbuf;
5595 USE_SAFE_ALLOCA;
5597 if (charpos <= 0)
5598 charpos = IT_CHARPOS (*it);
5600 /* Append the overlay string STRING of overlay OVERLAY to vector
5601 `entries' which has size `size' and currently contains `n'
5602 elements. AFTER_P means STRING is an after-string of
5603 OVERLAY. */
5604 #define RECORD_OVERLAY_STRING(OVERLAY, STRING, AFTER_P) \
5605 do \
5607 Lisp_Object priority; \
5609 if (n == size) \
5611 struct overlay_entry *old = entries; \
5612 SAFE_NALLOCA (entries, 2, size); \
5613 memcpy (entries, old, size * sizeof *entries); \
5614 size *= 2; \
5617 entries[n].string = (STRING); \
5618 entries[n].overlay = (OVERLAY); \
5619 priority = Foverlay_get ((OVERLAY), Qpriority); \
5620 entries[n].priority = INTEGERP (priority) ? XINT (priority) : 0; \
5621 entries[n].after_string_p = (AFTER_P); \
5622 ++n; \
5624 while (false)
5626 /* Process overlay before the overlay center. */
5627 for (ov = current_buffer->overlays_before; ov; ov = ov->next)
5629 XSETMISC (overlay, ov);
5630 eassert (OVERLAYP (overlay));
5631 start = OVERLAY_POSITION (OVERLAY_START (overlay));
5632 end = OVERLAY_POSITION (OVERLAY_END (overlay));
5634 if (end < charpos)
5635 break;
5637 /* Skip this overlay if it doesn't start or end at IT's current
5638 position. */
5639 if (end != charpos && start != charpos)
5640 continue;
5642 /* Skip this overlay if it doesn't apply to IT->w. */
5643 window = Foverlay_get (overlay, Qwindow);
5644 if (WINDOWP (window) && XWINDOW (window) != it->w)
5645 continue;
5647 /* If the text ``under'' the overlay is invisible, both before-
5648 and after-strings from this overlay are visible; start and
5649 end position are indistinguishable. */
5650 invisible = Foverlay_get (overlay, Qinvisible);
5651 invis = TEXT_PROP_MEANS_INVISIBLE (invisible);
5653 /* If overlay has a non-empty before-string, record it. */
5654 if ((start == charpos || (end == charpos && invis != 0))
5655 && (str = Foverlay_get (overlay, Qbefore_string), STRINGP (str))
5656 && SCHARS (str))
5657 RECORD_OVERLAY_STRING (overlay, str, false);
5659 /* If overlay has a non-empty after-string, record it. */
5660 if ((end == charpos || (start == charpos && invis != 0))
5661 && (str = Foverlay_get (overlay, Qafter_string), STRINGP (str))
5662 && SCHARS (str))
5663 RECORD_OVERLAY_STRING (overlay, str, true);
5666 /* Process overlays after the overlay center. */
5667 for (ov = current_buffer->overlays_after; ov; ov = ov->next)
5669 XSETMISC (overlay, ov);
5670 eassert (OVERLAYP (overlay));
5671 start = OVERLAY_POSITION (OVERLAY_START (overlay));
5672 end = OVERLAY_POSITION (OVERLAY_END (overlay));
5674 if (start > charpos)
5675 break;
5677 /* Skip this overlay if it doesn't start or end at IT's current
5678 position. */
5679 if (end != charpos && start != charpos)
5680 continue;
5682 /* Skip this overlay if it doesn't apply to IT->w. */
5683 window = Foverlay_get (overlay, Qwindow);
5684 if (WINDOWP (window) && XWINDOW (window) != it->w)
5685 continue;
5687 /* If the text ``under'' the overlay is invisible, it has a zero
5688 dimension, and both before- and after-strings apply. */
5689 invisible = Foverlay_get (overlay, Qinvisible);
5690 invis = TEXT_PROP_MEANS_INVISIBLE (invisible);
5692 /* If overlay has a non-empty before-string, record it. */
5693 if ((start == charpos || (end == charpos && invis != 0))
5694 && (str = Foverlay_get (overlay, Qbefore_string), STRINGP (str))
5695 && SCHARS (str))
5696 RECORD_OVERLAY_STRING (overlay, str, false);
5698 /* If overlay has a non-empty after-string, record it. */
5699 if ((end == charpos || (start == charpos && invis != 0))
5700 && (str = Foverlay_get (overlay, Qafter_string), STRINGP (str))
5701 && SCHARS (str))
5702 RECORD_OVERLAY_STRING (overlay, str, true);
5705 #undef RECORD_OVERLAY_STRING
5707 /* Sort entries. */
5708 if (n > 1)
5709 qsort (entries, n, sizeof *entries, compare_overlay_entries);
5711 /* Record number of overlay strings, and where we computed it. */
5712 it->n_overlay_strings = n;
5713 it->overlay_strings_charpos = charpos;
5715 /* IT->current.overlay_string_index is the number of overlay strings
5716 that have already been consumed by IT. Copy some of the
5717 remaining overlay strings to IT->overlay_strings. */
5718 i = 0;
5719 j = it->current.overlay_string_index;
5720 while (i < OVERLAY_STRING_CHUNK_SIZE && j < n)
5722 it->overlay_strings[i] = entries[j].string;
5723 it->string_overlays[i++] = entries[j++].overlay;
5726 CHECK_IT (it);
5727 SAFE_FREE ();
5731 /* Get the first chunk of overlay strings at IT's current buffer
5732 position, or at CHARPOS if that is > 0. Value is true if at
5733 least one overlay string was found. */
5735 static bool
5736 get_overlay_strings_1 (struct it *it, ptrdiff_t charpos, bool compute_stop_p)
5738 /* Get the first OVERLAY_STRING_CHUNK_SIZE overlay strings to
5739 process. This fills IT->overlay_strings with strings, and sets
5740 IT->n_overlay_strings to the total number of strings to process.
5741 IT->pos.overlay_string_index has to be set temporarily to zero
5742 because load_overlay_strings needs this; it must be set to -1
5743 when no overlay strings are found because a zero value would
5744 indicate a position in the first overlay string. */
5745 it->current.overlay_string_index = 0;
5746 load_overlay_strings (it, charpos);
5748 /* If we found overlay strings, set up IT to deliver display
5749 elements from the first one. Otherwise set up IT to deliver
5750 from current_buffer. */
5751 if (it->n_overlay_strings)
5753 /* Make sure we know settings in current_buffer, so that we can
5754 restore meaningful values when we're done with the overlay
5755 strings. */
5756 if (compute_stop_p)
5757 compute_stop_pos (it);
5758 eassert (it->face_id >= 0);
5760 /* Save IT's settings. They are restored after all overlay
5761 strings have been processed. */
5762 eassert (!compute_stop_p || it->sp == 0);
5764 /* When called from handle_stop, there might be an empty display
5765 string loaded. In that case, don't bother saving it. But
5766 don't use this optimization with the bidi iterator, since we
5767 need the corresponding pop_it call to resync the bidi
5768 iterator's position with IT's position, after we are done
5769 with the overlay strings. (The corresponding call to pop_it
5770 in case of an empty display string is in
5771 next_overlay_string.) */
5772 if (!(!it->bidi_p
5773 && STRINGP (it->string) && !SCHARS (it->string)))
5774 push_it (it, NULL);
5776 /* Set up IT to deliver display elements from the first overlay
5777 string. */
5778 IT_STRING_CHARPOS (*it) = IT_STRING_BYTEPOS (*it) = 0;
5779 it->string = it->overlay_strings[0];
5780 it->from_overlay = Qnil;
5781 it->stop_charpos = 0;
5782 eassert (STRINGP (it->string));
5783 it->end_charpos = SCHARS (it->string);
5784 it->prev_stop = 0;
5785 it->base_level_stop = 0;
5786 it->multibyte_p = STRING_MULTIBYTE (it->string);
5787 it->method = GET_FROM_STRING;
5788 it->from_disp_prop_p = 0;
5790 /* Force paragraph direction to be that of the parent
5791 buffer. */
5792 if (it->bidi_p && it->bidi_it.paragraph_dir == R2L)
5793 it->paragraph_embedding = it->bidi_it.paragraph_dir;
5794 else
5795 it->paragraph_embedding = L2R;
5797 /* Set up the bidi iterator for this overlay string. */
5798 if (it->bidi_p)
5800 ptrdiff_t pos = (charpos > 0 ? charpos : IT_CHARPOS (*it));
5802 it->bidi_it.string.lstring = it->string;
5803 it->bidi_it.string.s = NULL;
5804 it->bidi_it.string.schars = SCHARS (it->string);
5805 it->bidi_it.string.bufpos = pos;
5806 it->bidi_it.string.from_disp_str = it->string_from_display_prop_p;
5807 it->bidi_it.string.unibyte = !it->multibyte_p;
5808 it->bidi_it.w = it->w;
5809 bidi_init_it (0, 0, FRAME_WINDOW_P (it->f), &it->bidi_it);
5811 return true;
5814 it->current.overlay_string_index = -1;
5815 return false;
5818 static bool
5819 get_overlay_strings (struct it *it, ptrdiff_t charpos)
5821 it->string = Qnil;
5822 it->method = GET_FROM_BUFFER;
5824 get_overlay_strings_1 (it, charpos, true);
5826 CHECK_IT (it);
5828 /* Value is true if we found at least one overlay string. */
5829 return STRINGP (it->string);
5834 /***********************************************************************
5835 Saving and restoring state
5836 ***********************************************************************/
5838 /* Save current settings of IT on IT->stack. Called, for example,
5839 before setting up IT for an overlay string, to be able to restore
5840 IT's settings to what they were after the overlay string has been
5841 processed. If POSITION is non-NULL, it is the position to save on
5842 the stack instead of IT->position. */
5844 static void
5845 push_it (struct it *it, struct text_pos *position)
5847 struct iterator_stack_entry *p;
5849 eassert (it->sp < IT_STACK_SIZE);
5850 p = it->stack + it->sp;
5852 p->stop_charpos = it->stop_charpos;
5853 p->prev_stop = it->prev_stop;
5854 p->base_level_stop = it->base_level_stop;
5855 p->cmp_it = it->cmp_it;
5856 eassert (it->face_id >= 0);
5857 p->face_id = it->face_id;
5858 p->string = it->string;
5859 p->method = it->method;
5860 p->from_overlay = it->from_overlay;
5861 switch (p->method)
5863 case GET_FROM_IMAGE:
5864 p->u.image.object = it->object;
5865 p->u.image.image_id = it->image_id;
5866 p->u.image.slice = it->slice;
5867 break;
5868 case GET_FROM_STRETCH:
5869 p->u.stretch.object = it->object;
5870 break;
5872 p->position = position ? *position : it->position;
5873 p->current = it->current;
5874 p->end_charpos = it->end_charpos;
5875 p->string_nchars = it->string_nchars;
5876 p->area = it->area;
5877 p->multibyte_p = it->multibyte_p;
5878 p->avoid_cursor_p = it->avoid_cursor_p;
5879 p->space_width = it->space_width;
5880 p->font_height = it->font_height;
5881 p->voffset = it->voffset;
5882 p->string_from_display_prop_p = it->string_from_display_prop_p;
5883 p->string_from_prefix_prop_p = it->string_from_prefix_prop_p;
5884 p->display_ellipsis_p = false;
5885 p->line_wrap = it->line_wrap;
5886 p->bidi_p = it->bidi_p;
5887 p->paragraph_embedding = it->paragraph_embedding;
5888 p->from_disp_prop_p = it->from_disp_prop_p;
5889 ++it->sp;
5891 /* Save the state of the bidi iterator as well. */
5892 if (it->bidi_p)
5893 bidi_push_it (&it->bidi_it);
5896 static void
5897 iterate_out_of_display_property (struct it *it)
5899 bool buffer_p = !STRINGP (it->string);
5900 ptrdiff_t eob = (buffer_p ? ZV : it->end_charpos);
5901 ptrdiff_t bob = (buffer_p ? BEGV : 0);
5903 eassert (eob >= CHARPOS (it->position) && CHARPOS (it->position) >= bob);
5905 /* Maybe initialize paragraph direction. If we are at the beginning
5906 of a new paragraph, next_element_from_buffer may not have a
5907 chance to do that. */
5908 if (it->bidi_it.first_elt && it->bidi_it.charpos < eob)
5909 bidi_paragraph_init (it->paragraph_embedding, &it->bidi_it, true);
5910 /* prev_stop can be zero, so check against BEGV as well. */
5911 while (it->bidi_it.charpos >= bob
5912 && it->prev_stop <= it->bidi_it.charpos
5913 && it->bidi_it.charpos < CHARPOS (it->position)
5914 && it->bidi_it.charpos < eob)
5915 bidi_move_to_visually_next (&it->bidi_it);
5916 /* Record the stop_pos we just crossed, for when we cross it
5917 back, maybe. */
5918 if (it->bidi_it.charpos > CHARPOS (it->position))
5919 it->prev_stop = CHARPOS (it->position);
5920 /* If we ended up not where pop_it put us, resync IT's
5921 positional members with the bidi iterator. */
5922 if (it->bidi_it.charpos != CHARPOS (it->position))
5923 SET_TEXT_POS (it->position, it->bidi_it.charpos, it->bidi_it.bytepos);
5924 if (buffer_p)
5925 it->current.pos = it->position;
5926 else
5927 it->current.string_pos = it->position;
5930 /* Restore IT's settings from IT->stack. Called, for example, when no
5931 more overlay strings must be processed, and we return to delivering
5932 display elements from a buffer, or when the end of a string from a
5933 `display' property is reached and we return to delivering display
5934 elements from an overlay string, or from a buffer. */
5936 static void
5937 pop_it (struct it *it)
5939 struct iterator_stack_entry *p;
5940 bool from_display_prop = it->from_disp_prop_p;
5942 eassert (it->sp > 0);
5943 --it->sp;
5944 p = it->stack + it->sp;
5945 it->stop_charpos = p->stop_charpos;
5946 it->prev_stop = p->prev_stop;
5947 it->base_level_stop = p->base_level_stop;
5948 it->cmp_it = p->cmp_it;
5949 it->face_id = p->face_id;
5950 it->current = p->current;
5951 it->position = p->position;
5952 it->string = p->string;
5953 it->from_overlay = p->from_overlay;
5954 if (NILP (it->string))
5955 SET_TEXT_POS (it->current.string_pos, -1, -1);
5956 it->method = p->method;
5957 switch (it->method)
5959 case GET_FROM_IMAGE:
5960 it->image_id = p->u.image.image_id;
5961 it->object = p->u.image.object;
5962 it->slice = p->u.image.slice;
5963 break;
5964 case GET_FROM_STRETCH:
5965 it->object = p->u.stretch.object;
5966 break;
5967 case GET_FROM_BUFFER:
5968 it->object = it->w->contents;
5969 break;
5970 case GET_FROM_STRING:
5972 struct face *face = FACE_FROM_ID (it->f, it->face_id);
5974 /* Restore the face_box_p flag, since it could have been
5975 overwritten by the face of the object that we just finished
5976 displaying. */
5977 if (face)
5978 it->face_box_p = face->box != FACE_NO_BOX;
5979 it->object = it->string;
5981 break;
5982 case GET_FROM_DISPLAY_VECTOR:
5983 if (it->s)
5984 it->method = GET_FROM_C_STRING;
5985 else if (STRINGP (it->string))
5986 it->method = GET_FROM_STRING;
5987 else
5989 it->method = GET_FROM_BUFFER;
5990 it->object = it->w->contents;
5993 it->end_charpos = p->end_charpos;
5994 it->string_nchars = p->string_nchars;
5995 it->area = p->area;
5996 it->multibyte_p = p->multibyte_p;
5997 it->avoid_cursor_p = p->avoid_cursor_p;
5998 it->space_width = p->space_width;
5999 it->font_height = p->font_height;
6000 it->voffset = p->voffset;
6001 it->string_from_display_prop_p = p->string_from_display_prop_p;
6002 it->string_from_prefix_prop_p = p->string_from_prefix_prop_p;
6003 it->line_wrap = p->line_wrap;
6004 it->bidi_p = p->bidi_p;
6005 it->paragraph_embedding = p->paragraph_embedding;
6006 it->from_disp_prop_p = p->from_disp_prop_p;
6007 if (it->bidi_p)
6009 bidi_pop_it (&it->bidi_it);
6010 /* Bidi-iterate until we get out of the portion of text, if any,
6011 covered by a `display' text property or by an overlay with
6012 `display' property. (We cannot just jump there, because the
6013 internal coherency of the bidi iterator state can not be
6014 preserved across such jumps.) We also must determine the
6015 paragraph base direction if the overlay we just processed is
6016 at the beginning of a new paragraph. */
6017 if (from_display_prop
6018 && (it->method == GET_FROM_BUFFER || it->method == GET_FROM_STRING))
6019 iterate_out_of_display_property (it);
6021 eassert ((BUFFERP (it->object)
6022 && IT_CHARPOS (*it) == it->bidi_it.charpos
6023 && IT_BYTEPOS (*it) == it->bidi_it.bytepos)
6024 || (STRINGP (it->object)
6025 && IT_STRING_CHARPOS (*it) == it->bidi_it.charpos
6026 && IT_STRING_BYTEPOS (*it) == it->bidi_it.bytepos)
6027 || (CONSP (it->object) && it->method == GET_FROM_STRETCH));
6033 /***********************************************************************
6034 Moving over lines
6035 ***********************************************************************/
6037 /* Set IT's current position to the previous line start. */
6039 static void
6040 back_to_previous_line_start (struct it *it)
6042 ptrdiff_t cp = IT_CHARPOS (*it), bp = IT_BYTEPOS (*it);
6044 DEC_BOTH (cp, bp);
6045 IT_CHARPOS (*it) = find_newline_no_quit (cp, bp, -1, &IT_BYTEPOS (*it));
6049 /* Move IT to the next line start.
6051 Value is true if a newline was found. Set *SKIPPED_P to true if
6052 we skipped over part of the text (as opposed to moving the iterator
6053 continuously over the text). Otherwise, don't change the value
6054 of *SKIPPED_P.
6056 If BIDI_IT_PREV is non-NULL, store into it the state of the bidi
6057 iterator on the newline, if it was found.
6059 Newlines may come from buffer text, overlay strings, or strings
6060 displayed via the `display' property. That's the reason we can't
6061 simply use find_newline_no_quit.
6063 Note that this function may not skip over invisible text that is so
6064 because of text properties and immediately follows a newline. If
6065 it would, function reseat_at_next_visible_line_start, when called
6066 from set_iterator_to_next, would effectively make invisible
6067 characters following a newline part of the wrong glyph row, which
6068 leads to wrong cursor motion. */
6070 static bool
6071 forward_to_next_line_start (struct it *it, bool *skipped_p,
6072 struct bidi_it *bidi_it_prev)
6074 ptrdiff_t old_selective;
6075 bool newline_found_p = false;
6076 int n;
6077 const int MAX_NEWLINE_DISTANCE = 500;
6079 /* If already on a newline, just consume it to avoid unintended
6080 skipping over invisible text below. */
6081 if (it->what == IT_CHARACTER
6082 && it->c == '\n'
6083 && CHARPOS (it->position) == IT_CHARPOS (*it))
6085 if (it->bidi_p && bidi_it_prev)
6086 *bidi_it_prev = it->bidi_it;
6087 set_iterator_to_next (it, false);
6088 it->c = 0;
6089 return true;
6092 /* Don't handle selective display in the following. It's (a)
6093 unnecessary because it's done by the caller, and (b) leads to an
6094 infinite recursion because next_element_from_ellipsis indirectly
6095 calls this function. */
6096 old_selective = it->selective;
6097 it->selective = 0;
6099 /* Scan for a newline within MAX_NEWLINE_DISTANCE display elements
6100 from buffer text. */
6101 for (n = 0;
6102 !newline_found_p && n < MAX_NEWLINE_DISTANCE;
6103 n += !STRINGP (it->string))
6105 if (!get_next_display_element (it))
6106 return false;
6107 newline_found_p = it->what == IT_CHARACTER && it->c == '\n';
6108 if (newline_found_p && it->bidi_p && bidi_it_prev)
6109 *bidi_it_prev = it->bidi_it;
6110 set_iterator_to_next (it, false);
6113 /* If we didn't find a newline near enough, see if we can use a
6114 short-cut. */
6115 if (!newline_found_p)
6117 ptrdiff_t bytepos, start = IT_CHARPOS (*it);
6118 ptrdiff_t limit = find_newline_no_quit (start, IT_BYTEPOS (*it),
6119 1, &bytepos);
6120 Lisp_Object pos;
6122 eassert (!STRINGP (it->string));
6124 /* If there isn't any `display' property in sight, and no
6125 overlays, we can just use the position of the newline in
6126 buffer text. */
6127 if (it->stop_charpos >= limit
6128 || ((pos = Fnext_single_property_change (make_number (start),
6129 Qdisplay, Qnil,
6130 make_number (limit)),
6131 NILP (pos))
6132 && next_overlay_change (start) == ZV))
6134 if (!it->bidi_p)
6136 IT_CHARPOS (*it) = limit;
6137 IT_BYTEPOS (*it) = bytepos;
6139 else
6141 struct bidi_it bprev;
6143 /* Help bidi.c avoid expensive searches for display
6144 properties and overlays, by telling it that there are
6145 none up to `limit'. */
6146 if (it->bidi_it.disp_pos < limit)
6148 it->bidi_it.disp_pos = limit;
6149 it->bidi_it.disp_prop = 0;
6151 do {
6152 bprev = it->bidi_it;
6153 bidi_move_to_visually_next (&it->bidi_it);
6154 } while (it->bidi_it.charpos != limit);
6155 IT_CHARPOS (*it) = limit;
6156 IT_BYTEPOS (*it) = it->bidi_it.bytepos;
6157 if (bidi_it_prev)
6158 *bidi_it_prev = bprev;
6160 *skipped_p = newline_found_p = true;
6162 else
6164 while (get_next_display_element (it)
6165 && !newline_found_p)
6167 newline_found_p = ITERATOR_AT_END_OF_LINE_P (it);
6168 if (newline_found_p && it->bidi_p && bidi_it_prev)
6169 *bidi_it_prev = it->bidi_it;
6170 set_iterator_to_next (it, false);
6175 it->selective = old_selective;
6176 return newline_found_p;
6180 /* Set IT's current position to the previous visible line start. Skip
6181 invisible text that is so either due to text properties or due to
6182 selective display. Caution: this does not change IT->current_x and
6183 IT->hpos. */
6185 static void
6186 back_to_previous_visible_line_start (struct it *it)
6188 while (IT_CHARPOS (*it) > BEGV)
6190 back_to_previous_line_start (it);
6192 if (IT_CHARPOS (*it) <= BEGV)
6193 break;
6195 /* If selective > 0, then lines indented more than its value are
6196 invisible. */
6197 if (it->selective > 0
6198 && indented_beyond_p (IT_CHARPOS (*it), IT_BYTEPOS (*it),
6199 it->selective))
6200 continue;
6202 /* Check the newline before point for invisibility. */
6204 Lisp_Object prop;
6205 prop = Fget_char_property (make_number (IT_CHARPOS (*it) - 1),
6206 Qinvisible, it->window);
6207 if (TEXT_PROP_MEANS_INVISIBLE (prop) != 0)
6208 continue;
6211 if (IT_CHARPOS (*it) <= BEGV)
6212 break;
6215 struct it it2;
6216 void *it2data = NULL;
6217 ptrdiff_t pos;
6218 ptrdiff_t beg, end;
6219 Lisp_Object val, overlay;
6221 SAVE_IT (it2, *it, it2data);
6223 /* If newline is part of a composition, continue from start of composition */
6224 if (find_composition (IT_CHARPOS (*it), -1, &beg, &end, &val, Qnil)
6225 && beg < IT_CHARPOS (*it))
6226 goto replaced;
6228 /* If newline is replaced by a display property, find start of overlay
6229 or interval and continue search from that point. */
6230 pos = --IT_CHARPOS (it2);
6231 --IT_BYTEPOS (it2);
6232 it2.sp = 0;
6233 bidi_unshelve_cache (NULL, false);
6234 it2.string_from_display_prop_p = false;
6235 it2.from_disp_prop_p = false;
6236 if (handle_display_prop (&it2) == HANDLED_RETURN
6237 && !NILP (val = get_char_property_and_overlay
6238 (make_number (pos), Qdisplay, Qnil, &overlay))
6239 && (OVERLAYP (overlay)
6240 ? (beg = OVERLAY_POSITION (OVERLAY_START (overlay)))
6241 : get_property_and_range (pos, Qdisplay, &val, &beg, &end, Qnil)))
6243 RESTORE_IT (it, it, it2data);
6244 goto replaced;
6247 /* Newline is not replaced by anything -- so we are done. */
6248 RESTORE_IT (it, it, it2data);
6249 break;
6251 replaced:
6252 if (beg < BEGV)
6253 beg = BEGV;
6254 IT_CHARPOS (*it) = beg;
6255 IT_BYTEPOS (*it) = buf_charpos_to_bytepos (current_buffer, beg);
6259 it->continuation_lines_width = 0;
6261 eassert (IT_CHARPOS (*it) >= BEGV);
6262 eassert (IT_CHARPOS (*it) == BEGV
6263 || FETCH_BYTE (IT_BYTEPOS (*it) - 1) == '\n');
6264 CHECK_IT (it);
6268 /* Reseat iterator IT at the previous visible line start. Skip
6269 invisible text that is so either due to text properties or due to
6270 selective display. At the end, update IT's overlay information,
6271 face information etc. */
6273 void
6274 reseat_at_previous_visible_line_start (struct it *it)
6276 back_to_previous_visible_line_start (it);
6277 reseat (it, it->current.pos, true);
6278 CHECK_IT (it);
6282 /* Reseat iterator IT on the next visible line start in the current
6283 buffer. ON_NEWLINE_P means position IT on the newline
6284 preceding the line start. Skip over invisible text that is so
6285 because of selective display. Compute faces, overlays etc at the
6286 new position. Note that this function does not skip over text that
6287 is invisible because of text properties. */
6289 static void
6290 reseat_at_next_visible_line_start (struct it *it, bool on_newline_p)
6292 bool skipped_p = false;
6293 struct bidi_it bidi_it_prev;
6294 bool newline_found_p
6295 = forward_to_next_line_start (it, &skipped_p, &bidi_it_prev);
6297 /* Skip over lines that are invisible because they are indented
6298 more than the value of IT->selective. */
6299 if (it->selective > 0)
6300 while (IT_CHARPOS (*it) < ZV
6301 && indented_beyond_p (IT_CHARPOS (*it), IT_BYTEPOS (*it),
6302 it->selective))
6304 eassert (IT_BYTEPOS (*it) == BEGV
6305 || FETCH_BYTE (IT_BYTEPOS (*it) - 1) == '\n');
6306 newline_found_p =
6307 forward_to_next_line_start (it, &skipped_p, &bidi_it_prev);
6310 /* Position on the newline if that's what's requested. */
6311 if (on_newline_p && newline_found_p)
6313 if (STRINGP (it->string))
6315 if (IT_STRING_CHARPOS (*it) > 0)
6317 if (!it->bidi_p)
6319 --IT_STRING_CHARPOS (*it);
6320 --IT_STRING_BYTEPOS (*it);
6322 else
6324 /* We need to restore the bidi iterator to the state
6325 it had on the newline, and resync the IT's
6326 position with that. */
6327 it->bidi_it = bidi_it_prev;
6328 IT_STRING_CHARPOS (*it) = it->bidi_it.charpos;
6329 IT_STRING_BYTEPOS (*it) = it->bidi_it.bytepos;
6333 else if (IT_CHARPOS (*it) > BEGV)
6335 if (!it->bidi_p)
6337 --IT_CHARPOS (*it);
6338 --IT_BYTEPOS (*it);
6340 else
6342 /* We need to restore the bidi iterator to the state it
6343 had on the newline and resync IT with that. */
6344 it->bidi_it = bidi_it_prev;
6345 IT_CHARPOS (*it) = it->bidi_it.charpos;
6346 IT_BYTEPOS (*it) = it->bidi_it.bytepos;
6348 reseat (it, it->current.pos, false);
6351 else if (skipped_p)
6352 reseat (it, it->current.pos, false);
6354 CHECK_IT (it);
6359 /***********************************************************************
6360 Changing an iterator's position
6361 ***********************************************************************/
6363 /* Change IT's current position to POS in current_buffer.
6364 If FORCE_P, always check for text properties at the new position.
6365 Otherwise, text properties are only looked up if POS >=
6366 IT->check_charpos of a property. */
6368 static void
6369 reseat (struct it *it, struct text_pos pos, bool force_p)
6371 ptrdiff_t original_pos = IT_CHARPOS (*it);
6373 reseat_1 (it, pos, false);
6375 /* Determine where to check text properties. Avoid doing it
6376 where possible because text property lookup is very expensive. */
6377 if (force_p
6378 || CHARPOS (pos) > it->stop_charpos
6379 || CHARPOS (pos) < original_pos)
6381 if (it->bidi_p)
6383 /* For bidi iteration, we need to prime prev_stop and
6384 base_level_stop with our best estimations. */
6385 /* Implementation note: Of course, POS is not necessarily a
6386 stop position, so assigning prev_pos to it is a lie; we
6387 should have called compute_stop_backwards. However, if
6388 the current buffer does not include any R2L characters,
6389 that call would be a waste of cycles, because the
6390 iterator will never move back, and thus never cross this
6391 "fake" stop position. So we delay that backward search
6392 until the time we really need it, in next_element_from_buffer. */
6393 if (CHARPOS (pos) != it->prev_stop)
6394 it->prev_stop = CHARPOS (pos);
6395 if (CHARPOS (pos) < it->base_level_stop)
6396 it->base_level_stop = 0; /* meaning it's unknown */
6397 handle_stop (it);
6399 else
6401 handle_stop (it);
6402 it->prev_stop = it->base_level_stop = 0;
6407 CHECK_IT (it);
6411 /* Change IT's buffer position to POS. SET_STOP_P means set
6412 IT->stop_pos to POS, also. */
6414 static void
6415 reseat_1 (struct it *it, struct text_pos pos, bool set_stop_p)
6417 /* Don't call this function when scanning a C string. */
6418 eassert (it->s == NULL);
6420 /* POS must be a reasonable value. */
6421 eassert (CHARPOS (pos) >= BEGV && CHARPOS (pos) <= ZV);
6423 it->current.pos = it->position = pos;
6424 it->end_charpos = ZV;
6425 it->dpvec = NULL;
6426 it->current.dpvec_index = -1;
6427 it->current.overlay_string_index = -1;
6428 IT_STRING_CHARPOS (*it) = -1;
6429 IT_STRING_BYTEPOS (*it) = -1;
6430 it->string = Qnil;
6431 it->method = GET_FROM_BUFFER;
6432 it->object = it->w->contents;
6433 it->area = TEXT_AREA;
6434 it->multibyte_p = !NILP (BVAR (current_buffer, enable_multibyte_characters));
6435 it->sp = 0;
6436 it->string_from_display_prop_p = false;
6437 it->string_from_prefix_prop_p = false;
6439 it->from_disp_prop_p = false;
6440 it->face_before_selective_p = false;
6441 if (it->bidi_p)
6443 bidi_init_it (IT_CHARPOS (*it), IT_BYTEPOS (*it), FRAME_WINDOW_P (it->f),
6444 &it->bidi_it);
6445 bidi_unshelve_cache (NULL, false);
6446 it->bidi_it.paragraph_dir = NEUTRAL_DIR;
6447 it->bidi_it.string.s = NULL;
6448 it->bidi_it.string.lstring = Qnil;
6449 it->bidi_it.string.bufpos = 0;
6450 it->bidi_it.string.from_disp_str = false;
6451 it->bidi_it.string.unibyte = false;
6452 it->bidi_it.w = it->w;
6455 if (set_stop_p)
6457 it->stop_charpos = CHARPOS (pos);
6458 it->base_level_stop = CHARPOS (pos);
6460 /* This make the information stored in it->cmp_it invalidate. */
6461 it->cmp_it.id = -1;
6465 /* Set up IT for displaying a string, starting at CHARPOS in window W.
6466 If S is non-null, it is a C string to iterate over. Otherwise,
6467 STRING gives a Lisp string to iterate over.
6469 If PRECISION > 0, don't return more then PRECISION number of
6470 characters from the string.
6472 If FIELD_WIDTH > 0, return padding spaces until FIELD_WIDTH
6473 characters have been returned. FIELD_WIDTH < 0 means an infinite
6474 field width.
6476 MULTIBYTE = 0 means disable processing of multibyte characters,
6477 MULTIBYTE > 0 means enable it,
6478 MULTIBYTE < 0 means use IT->multibyte_p.
6480 IT must be initialized via a prior call to init_iterator before
6481 calling this function. */
6483 static void
6484 reseat_to_string (struct it *it, const char *s, Lisp_Object string,
6485 ptrdiff_t charpos, ptrdiff_t precision, int field_width,
6486 int multibyte)
6488 /* No text property checks performed by default, but see below. */
6489 it->stop_charpos = -1;
6491 /* Set iterator position and end position. */
6492 memset (&it->current, 0, sizeof it->current);
6493 it->current.overlay_string_index = -1;
6494 it->current.dpvec_index = -1;
6495 eassert (charpos >= 0);
6497 /* If STRING is specified, use its multibyteness, otherwise use the
6498 setting of MULTIBYTE, if specified. */
6499 if (multibyte >= 0)
6500 it->multibyte_p = multibyte > 0;
6502 /* Bidirectional reordering of strings is controlled by the default
6503 value of bidi-display-reordering. Don't try to reorder while
6504 loading loadup.el, as the necessary character property tables are
6505 not yet available. */
6506 it->bidi_p =
6507 NILP (Vpurify_flag)
6508 && !NILP (BVAR (&buffer_defaults, bidi_display_reordering));
6510 if (s == NULL)
6512 eassert (STRINGP (string));
6513 it->string = string;
6514 it->s = NULL;
6515 it->end_charpos = it->string_nchars = SCHARS (string);
6516 it->method = GET_FROM_STRING;
6517 it->current.string_pos = string_pos (charpos, string);
6519 if (it->bidi_p)
6521 it->bidi_it.string.lstring = string;
6522 it->bidi_it.string.s = NULL;
6523 it->bidi_it.string.schars = it->end_charpos;
6524 it->bidi_it.string.bufpos = 0;
6525 it->bidi_it.string.from_disp_str = false;
6526 it->bidi_it.string.unibyte = !it->multibyte_p;
6527 it->bidi_it.w = it->w;
6528 bidi_init_it (charpos, IT_STRING_BYTEPOS (*it),
6529 FRAME_WINDOW_P (it->f), &it->bidi_it);
6532 else
6534 it->s = (const unsigned char *) s;
6535 it->string = Qnil;
6537 /* Note that we use IT->current.pos, not it->current.string_pos,
6538 for displaying C strings. */
6539 IT_STRING_CHARPOS (*it) = IT_STRING_BYTEPOS (*it) = -1;
6540 if (it->multibyte_p)
6542 it->current.pos = c_string_pos (charpos, s, true);
6543 it->end_charpos = it->string_nchars = number_of_chars (s, true);
6545 else
6547 IT_CHARPOS (*it) = IT_BYTEPOS (*it) = charpos;
6548 it->end_charpos = it->string_nchars = strlen (s);
6551 if (it->bidi_p)
6553 it->bidi_it.string.lstring = Qnil;
6554 it->bidi_it.string.s = (const unsigned char *) s;
6555 it->bidi_it.string.schars = it->end_charpos;
6556 it->bidi_it.string.bufpos = 0;
6557 it->bidi_it.string.from_disp_str = false;
6558 it->bidi_it.string.unibyte = !it->multibyte_p;
6559 it->bidi_it.w = it->w;
6560 bidi_init_it (charpos, IT_BYTEPOS (*it), FRAME_WINDOW_P (it->f),
6561 &it->bidi_it);
6563 it->method = GET_FROM_C_STRING;
6566 /* PRECISION > 0 means don't return more than PRECISION characters
6567 from the string. */
6568 if (precision > 0 && it->end_charpos - charpos > precision)
6570 it->end_charpos = it->string_nchars = charpos + precision;
6571 if (it->bidi_p)
6572 it->bidi_it.string.schars = it->end_charpos;
6575 /* FIELD_WIDTH > 0 means pad with spaces until FIELD_WIDTH
6576 characters have been returned. FIELD_WIDTH == 0 means don't pad,
6577 FIELD_WIDTH < 0 means infinite field width. This is useful for
6578 padding with `-' at the end of a mode line. */
6579 if (field_width < 0)
6580 field_width = INFINITY;
6581 /* Implementation note: We deliberately don't enlarge
6582 it->bidi_it.string.schars here to fit it->end_charpos, because
6583 the bidi iterator cannot produce characters out of thin air. */
6584 if (field_width > it->end_charpos - charpos)
6585 it->end_charpos = charpos + field_width;
6587 /* Use the standard display table for displaying strings. */
6588 if (DISP_TABLE_P (Vstandard_display_table))
6589 it->dp = XCHAR_TABLE (Vstandard_display_table);
6591 it->stop_charpos = charpos;
6592 it->prev_stop = charpos;
6593 it->base_level_stop = 0;
6594 if (it->bidi_p)
6596 it->bidi_it.first_elt = true;
6597 it->bidi_it.paragraph_dir = NEUTRAL_DIR;
6598 it->bidi_it.disp_pos = -1;
6600 if (s == NULL && it->multibyte_p)
6602 ptrdiff_t endpos = SCHARS (it->string);
6603 if (endpos > it->end_charpos)
6604 endpos = it->end_charpos;
6605 composition_compute_stop_pos (&it->cmp_it, charpos, -1, endpos,
6606 it->string);
6608 CHECK_IT (it);
6613 /***********************************************************************
6614 Iteration
6615 ***********************************************************************/
6617 /* Map enum it_method value to corresponding next_element_from_* function. */
6619 typedef bool (*next_element_function) (struct it *);
6621 static next_element_function const get_next_element[NUM_IT_METHODS] =
6623 next_element_from_buffer,
6624 next_element_from_display_vector,
6625 next_element_from_string,
6626 next_element_from_c_string,
6627 next_element_from_image,
6628 next_element_from_stretch
6631 #define GET_NEXT_DISPLAY_ELEMENT(it) (*get_next_element[(it)->method]) (it)
6634 /* Return true iff a character at CHARPOS (and BYTEPOS) is composed
6635 (possibly with the following characters). */
6637 #define CHAR_COMPOSED_P(IT,CHARPOS,BYTEPOS,END_CHARPOS) \
6638 ((IT)->cmp_it.id >= 0 \
6639 || ((IT)->cmp_it.stop_pos == (CHARPOS) \
6640 && composition_reseat_it (&(IT)->cmp_it, CHARPOS, BYTEPOS, \
6641 END_CHARPOS, (IT)->w, \
6642 FACE_FROM_ID ((IT)->f, (IT)->face_id), \
6643 (IT)->string)))
6646 /* Lookup the char-table Vglyphless_char_display for character C (-1
6647 if we want information for no-font case), and return the display
6648 method symbol. By side-effect, update it->what and
6649 it->glyphless_method. This function is called from
6650 get_next_display_element for each character element, and from
6651 x_produce_glyphs when no suitable font was found. */
6653 Lisp_Object
6654 lookup_glyphless_char_display (int c, struct it *it)
6656 Lisp_Object glyphless_method = Qnil;
6658 if (CHAR_TABLE_P (Vglyphless_char_display)
6659 && CHAR_TABLE_EXTRA_SLOTS (XCHAR_TABLE (Vglyphless_char_display)) >= 1)
6661 if (c >= 0)
6663 glyphless_method = CHAR_TABLE_REF (Vglyphless_char_display, c);
6664 if (CONSP (glyphless_method))
6665 glyphless_method = FRAME_WINDOW_P (it->f)
6666 ? XCAR (glyphless_method)
6667 : XCDR (glyphless_method);
6669 else
6670 glyphless_method = XCHAR_TABLE (Vglyphless_char_display)->extras[0];
6673 retry:
6674 if (NILP (glyphless_method))
6676 if (c >= 0)
6677 /* The default is to display the character by a proper font. */
6678 return Qnil;
6679 /* The default for the no-font case is to display an empty box. */
6680 glyphless_method = Qempty_box;
6682 if (EQ (glyphless_method, Qzero_width))
6684 if (c >= 0)
6685 return glyphless_method;
6686 /* This method can't be used for the no-font case. */
6687 glyphless_method = Qempty_box;
6689 if (EQ (glyphless_method, Qthin_space))
6690 it->glyphless_method = GLYPHLESS_DISPLAY_THIN_SPACE;
6691 else if (EQ (glyphless_method, Qempty_box))
6692 it->glyphless_method = GLYPHLESS_DISPLAY_EMPTY_BOX;
6693 else if (EQ (glyphless_method, Qhex_code))
6694 it->glyphless_method = GLYPHLESS_DISPLAY_HEX_CODE;
6695 else if (STRINGP (glyphless_method))
6696 it->glyphless_method = GLYPHLESS_DISPLAY_ACRONYM;
6697 else
6699 /* Invalid value. We use the default method. */
6700 glyphless_method = Qnil;
6701 goto retry;
6703 it->what = IT_GLYPHLESS;
6704 return glyphless_method;
6707 /* Merge escape glyph face and cache the result. */
6709 static struct frame *last_escape_glyph_frame = NULL;
6710 static int last_escape_glyph_face_id = (1 << FACE_ID_BITS);
6711 static int last_escape_glyph_merged_face_id = 0;
6713 static int
6714 merge_escape_glyph_face (struct it *it)
6716 int face_id;
6718 if (it->f == last_escape_glyph_frame
6719 && it->face_id == last_escape_glyph_face_id)
6720 face_id = last_escape_glyph_merged_face_id;
6721 else
6723 /* Merge the `escape-glyph' face into the current face. */
6724 face_id = merge_faces (it->f, Qescape_glyph, 0, it->face_id);
6725 last_escape_glyph_frame = it->f;
6726 last_escape_glyph_face_id = it->face_id;
6727 last_escape_glyph_merged_face_id = face_id;
6729 return face_id;
6732 /* Likewise for glyphless glyph face. */
6734 static struct frame *last_glyphless_glyph_frame = NULL;
6735 static int last_glyphless_glyph_face_id = (1 << FACE_ID_BITS);
6736 static int last_glyphless_glyph_merged_face_id = 0;
6739 merge_glyphless_glyph_face (struct it *it)
6741 int face_id;
6743 if (it->f == last_glyphless_glyph_frame
6744 && it->face_id == last_glyphless_glyph_face_id)
6745 face_id = last_glyphless_glyph_merged_face_id;
6746 else
6748 /* Merge the `glyphless-char' face into the current face. */
6749 face_id = merge_faces (it->f, Qglyphless_char, 0, it->face_id);
6750 last_glyphless_glyph_frame = it->f;
6751 last_glyphless_glyph_face_id = it->face_id;
6752 last_glyphless_glyph_merged_face_id = face_id;
6754 return face_id;
6757 /* Load IT's display element fields with information about the next
6758 display element from the current position of IT. Value is false if
6759 end of buffer (or C string) is reached. */
6761 static bool
6762 get_next_display_element (struct it *it)
6764 /* True means that we found a display element. False means that
6765 we hit the end of what we iterate over. Performance note: the
6766 function pointer `method' used here turns out to be faster than
6767 using a sequence of if-statements. */
6768 bool success_p;
6770 get_next:
6771 success_p = GET_NEXT_DISPLAY_ELEMENT (it);
6773 if (it->what == IT_CHARACTER)
6775 /* UAX#9, L4: "A character is depicted by a mirrored glyph if
6776 and only if (a) the resolved directionality of that character
6777 is R..." */
6778 /* FIXME: Do we need an exception for characters from display
6779 tables? */
6780 if (it->bidi_p && it->bidi_it.type == STRONG_R
6781 && !inhibit_bidi_mirroring)
6782 it->c = bidi_mirror_char (it->c);
6783 /* Map via display table or translate control characters.
6784 IT->c, IT->len etc. have been set to the next character by
6785 the function call above. If we have a display table, and it
6786 contains an entry for IT->c, translate it. Don't do this if
6787 IT->c itself comes from a display table, otherwise we could
6788 end up in an infinite recursion. (An alternative could be to
6789 count the recursion depth of this function and signal an
6790 error when a certain maximum depth is reached.) Is it worth
6791 it? */
6792 if (success_p && it->dpvec == NULL)
6794 Lisp_Object dv;
6795 struct charset *unibyte = CHARSET_FROM_ID (charset_unibyte);
6796 bool nonascii_space_p = false;
6797 bool nonascii_hyphen_p = false;
6798 int c = it->c; /* This is the character to display. */
6800 if (! it->multibyte_p && ! ASCII_CHAR_P (c))
6802 eassert (SINGLE_BYTE_CHAR_P (c));
6803 if (unibyte_display_via_language_environment)
6805 c = DECODE_CHAR (unibyte, c);
6806 if (c < 0)
6807 c = BYTE8_TO_CHAR (it->c);
6809 else
6810 c = BYTE8_TO_CHAR (it->c);
6813 if (it->dp
6814 && (dv = DISP_CHAR_VECTOR (it->dp, c),
6815 VECTORP (dv)))
6817 struct Lisp_Vector *v = XVECTOR (dv);
6819 /* Return the first character from the display table
6820 entry, if not empty. If empty, don't display the
6821 current character. */
6822 if (v->header.size)
6824 it->dpvec_char_len = it->len;
6825 it->dpvec = v->contents;
6826 it->dpend = v->contents + v->header.size;
6827 it->current.dpvec_index = 0;
6828 it->dpvec_face_id = -1;
6829 it->saved_face_id = it->face_id;
6830 it->method = GET_FROM_DISPLAY_VECTOR;
6831 it->ellipsis_p = false;
6833 else
6835 set_iterator_to_next (it, false);
6837 goto get_next;
6840 if (! NILP (lookup_glyphless_char_display (c, it)))
6842 if (it->what == IT_GLYPHLESS)
6843 goto done;
6844 /* Don't display this character. */
6845 set_iterator_to_next (it, false);
6846 goto get_next;
6849 /* If `nobreak-char-display' is non-nil, we display
6850 non-ASCII spaces and hyphens specially. */
6851 if (! ASCII_CHAR_P (c) && ! NILP (Vnobreak_char_display))
6853 if (c == 0xA0)
6854 nonascii_space_p = true;
6855 else if (c == 0xAD || c == 0x2010 || c == 0x2011)
6856 nonascii_hyphen_p = true;
6859 /* Translate control characters into `\003' or `^C' form.
6860 Control characters coming from a display table entry are
6861 currently not translated because we use IT->dpvec to hold
6862 the translation. This could easily be changed but I
6863 don't believe that it is worth doing.
6865 The characters handled by `nobreak-char-display' must be
6866 translated too.
6868 Non-printable characters and raw-byte characters are also
6869 translated to octal form. */
6870 if (((c < ' ' || c == 127) /* ASCII control chars. */
6871 ? (it->area != TEXT_AREA
6872 /* In mode line, treat \n, \t like other crl chars. */
6873 || (c != '\t'
6874 && it->glyph_row
6875 && (it->glyph_row->mode_line_p || it->avoid_cursor_p))
6876 || (c != '\n' && c != '\t'))
6877 : (nonascii_space_p
6878 || nonascii_hyphen_p
6879 || CHAR_BYTE8_P (c)
6880 || ! CHAR_PRINTABLE_P (c))))
6882 /* C is a control character, non-ASCII space/hyphen,
6883 raw-byte, or a non-printable character which must be
6884 displayed either as '\003' or as `^C' where the '\\'
6885 and '^' can be defined in the display table. Fill
6886 IT->ctl_chars with glyphs for what we have to
6887 display. Then, set IT->dpvec to these glyphs. */
6888 Lisp_Object gc;
6889 int ctl_len;
6890 int face_id;
6891 int lface_id = 0;
6892 int escape_glyph;
6894 /* Handle control characters with ^. */
6896 if (ASCII_CHAR_P (c) && it->ctl_arrow_p)
6898 int g;
6900 g = '^'; /* default glyph for Control */
6901 /* Set IT->ctl_chars[0] to the glyph for `^'. */
6902 if (it->dp
6903 && (gc = DISP_CTRL_GLYPH (it->dp), GLYPH_CODE_P (gc)))
6905 g = GLYPH_CODE_CHAR (gc);
6906 lface_id = GLYPH_CODE_FACE (gc);
6909 face_id = (lface_id
6910 ? merge_faces (it->f, Qt, lface_id, it->face_id)
6911 : merge_escape_glyph_face (it));
6913 XSETINT (it->ctl_chars[0], g);
6914 XSETINT (it->ctl_chars[1], c ^ 0100);
6915 ctl_len = 2;
6916 goto display_control;
6919 /* Handle non-ascii space in the mode where it only gets
6920 highlighting. */
6922 if (nonascii_space_p && EQ (Vnobreak_char_display, Qt))
6924 /* Merge `nobreak-space' into the current face. */
6925 face_id = merge_faces (it->f, Qnobreak_space, 0,
6926 it->face_id);
6927 XSETINT (it->ctl_chars[0], ' ');
6928 ctl_len = 1;
6929 goto display_control;
6932 /* Handle sequences that start with the "escape glyph". */
6934 /* the default escape glyph is \. */
6935 escape_glyph = '\\';
6937 if (it->dp
6938 && (gc = DISP_ESCAPE_GLYPH (it->dp), GLYPH_CODE_P (gc)))
6940 escape_glyph = GLYPH_CODE_CHAR (gc);
6941 lface_id = GLYPH_CODE_FACE (gc);
6944 face_id = (lface_id
6945 ? merge_faces (it->f, Qt, lface_id, it->face_id)
6946 : merge_escape_glyph_face (it));
6948 /* Draw non-ASCII hyphen with just highlighting: */
6950 if (nonascii_hyphen_p && EQ (Vnobreak_char_display, Qt))
6952 XSETINT (it->ctl_chars[0], '-');
6953 ctl_len = 1;
6954 goto display_control;
6957 /* Draw non-ASCII space/hyphen with escape glyph: */
6959 if (nonascii_space_p || nonascii_hyphen_p)
6961 XSETINT (it->ctl_chars[0], escape_glyph);
6962 XSETINT (it->ctl_chars[1], nonascii_space_p ? ' ' : '-');
6963 ctl_len = 2;
6964 goto display_control;
6968 char str[10];
6969 int len, i;
6971 if (CHAR_BYTE8_P (c))
6972 /* Display \200 instead of \17777600. */
6973 c = CHAR_TO_BYTE8 (c);
6974 len = sprintf (str, "%03o", c + 0u);
6976 XSETINT (it->ctl_chars[0], escape_glyph);
6977 for (i = 0; i < len; i++)
6978 XSETINT (it->ctl_chars[i + 1], str[i]);
6979 ctl_len = len + 1;
6982 display_control:
6983 /* Set up IT->dpvec and return first character from it. */
6984 it->dpvec_char_len = it->len;
6985 it->dpvec = it->ctl_chars;
6986 it->dpend = it->dpvec + ctl_len;
6987 it->current.dpvec_index = 0;
6988 it->dpvec_face_id = face_id;
6989 it->saved_face_id = it->face_id;
6990 it->method = GET_FROM_DISPLAY_VECTOR;
6991 it->ellipsis_p = false;
6992 goto get_next;
6994 it->char_to_display = c;
6996 else if (success_p)
6998 it->char_to_display = it->c;
7002 #ifdef HAVE_WINDOW_SYSTEM
7003 /* Adjust face id for a multibyte character. There are no multibyte
7004 character in unibyte text. */
7005 if ((it->what == IT_CHARACTER || it->what == IT_COMPOSITION)
7006 && it->multibyte_p
7007 && success_p
7008 && FRAME_WINDOW_P (it->f))
7010 struct face *face = FACE_FROM_ID (it->f, it->face_id);
7012 if (it->what == IT_COMPOSITION && it->cmp_it.ch >= 0)
7014 /* Automatic composition with glyph-string. */
7015 Lisp_Object gstring = composition_gstring_from_id (it->cmp_it.id);
7017 it->face_id = face_for_font (it->f, LGSTRING_FONT (gstring), face);
7019 else
7021 ptrdiff_t pos = (it->s ? -1
7022 : STRINGP (it->string) ? IT_STRING_CHARPOS (*it)
7023 : IT_CHARPOS (*it));
7024 int c;
7026 if (it->what == IT_CHARACTER)
7027 c = it->char_to_display;
7028 else
7030 struct composition *cmp = composition_table[it->cmp_it.id];
7031 int i;
7033 c = ' ';
7034 for (i = 0; i < cmp->glyph_len; i++)
7035 /* TAB in a composition means display glyphs with
7036 padding space on the left or right. */
7037 if ((c = COMPOSITION_GLYPH (cmp, i)) != '\t')
7038 break;
7040 it->face_id = FACE_FOR_CHAR (it->f, face, c, pos, it->string);
7043 #endif /* HAVE_WINDOW_SYSTEM */
7045 done:
7046 /* Is this character the last one of a run of characters with
7047 box? If yes, set IT->end_of_box_run_p to true. */
7048 if (it->face_box_p
7049 && it->s == NULL)
7051 if (it->method == GET_FROM_STRING && it->sp)
7053 int face_id = underlying_face_id (it);
7054 struct face *face = FACE_FROM_ID (it->f, face_id);
7056 if (face)
7058 if (face->box == FACE_NO_BOX)
7060 /* If the box comes from face properties in a
7061 display string, check faces in that string. */
7062 int string_face_id = face_after_it_pos (it);
7063 it->end_of_box_run_p
7064 = (FACE_FROM_ID (it->f, string_face_id)->box
7065 == FACE_NO_BOX);
7067 /* Otherwise, the box comes from the underlying face.
7068 If this is the last string character displayed, check
7069 the next buffer location. */
7070 else if ((IT_STRING_CHARPOS (*it) >= SCHARS (it->string) - 1)
7071 /* n_overlay_strings is unreliable unless
7072 overlay_string_index is non-negative. */
7073 && ((it->current.overlay_string_index >= 0
7074 && (it->current.overlay_string_index
7075 == it->n_overlay_strings - 1))
7076 /* A string from display property. */
7077 || it->from_disp_prop_p))
7079 ptrdiff_t ignore;
7080 int next_face_id;
7081 struct text_pos pos = it->current.pos;
7083 /* For a string from a display property, the next
7084 buffer position is stored in the 'position'
7085 member of the iteration stack slot below the
7086 current one, see handle_single_display_spec. By
7087 contrast, it->current.pos was is not yet updated
7088 to point to that buffer position; that will
7089 happen in pop_it, after we finish displaying the
7090 current string. Note that we already checked
7091 above that it->sp is positive, so subtracting one
7092 from it is safe. */
7093 if (it->from_disp_prop_p)
7094 pos = (it->stack + it->sp - 1)->position;
7095 else
7096 INC_TEXT_POS (pos, it->multibyte_p);
7098 if (CHARPOS (pos) >= ZV)
7099 it->end_of_box_run_p = true;
7100 else
7102 next_face_id = face_at_buffer_position
7103 (it->w, CHARPOS (pos), &ignore,
7104 CHARPOS (pos) + TEXT_PROP_DISTANCE_LIMIT, false, -1);
7105 it->end_of_box_run_p
7106 = (FACE_FROM_ID (it->f, next_face_id)->box
7107 == FACE_NO_BOX);
7112 /* next_element_from_display_vector sets this flag according to
7113 faces of the display vector glyphs, see there. */
7114 else if (it->method != GET_FROM_DISPLAY_VECTOR)
7116 int face_id = face_after_it_pos (it);
7117 it->end_of_box_run_p
7118 = (face_id != it->face_id
7119 && FACE_FROM_ID (it->f, face_id)->box == FACE_NO_BOX);
7122 /* If we reached the end of the object we've been iterating (e.g., a
7123 display string or an overlay string), and there's something on
7124 IT->stack, proceed with what's on the stack. It doesn't make
7125 sense to return false if there's unprocessed stuff on the stack,
7126 because otherwise that stuff will never be displayed. */
7127 if (!success_p && it->sp > 0)
7129 set_iterator_to_next (it, false);
7130 success_p = get_next_display_element (it);
7133 /* Value is false if end of buffer or string reached. */
7134 return success_p;
7138 /* Move IT to the next display element.
7140 RESEAT_P means if called on a newline in buffer text,
7141 skip to the next visible line start.
7143 Functions get_next_display_element and set_iterator_to_next are
7144 separate because I find this arrangement easier to handle than a
7145 get_next_display_element function that also increments IT's
7146 position. The way it is we can first look at an iterator's current
7147 display element, decide whether it fits on a line, and if it does,
7148 increment the iterator position. The other way around we probably
7149 would either need a flag indicating whether the iterator has to be
7150 incremented the next time, or we would have to implement a
7151 decrement position function which would not be easy to write. */
7153 void
7154 set_iterator_to_next (struct it *it, bool reseat_p)
7156 /* Reset flags indicating start and end of a sequence of characters
7157 with box. Reset them at the start of this function because
7158 moving the iterator to a new position might set them. */
7159 it->start_of_box_run_p = it->end_of_box_run_p = false;
7161 switch (it->method)
7163 case GET_FROM_BUFFER:
7164 /* The current display element of IT is a character from
7165 current_buffer. Advance in the buffer, and maybe skip over
7166 invisible lines that are so because of selective display. */
7167 if (ITERATOR_AT_END_OF_LINE_P (it) && reseat_p)
7168 reseat_at_next_visible_line_start (it, false);
7169 else if (it->cmp_it.id >= 0)
7171 /* We are currently getting glyphs from a composition. */
7172 if (! it->bidi_p)
7174 IT_CHARPOS (*it) += it->cmp_it.nchars;
7175 IT_BYTEPOS (*it) += it->cmp_it.nbytes;
7177 else
7179 int i;
7181 /* Update IT's char/byte positions to point to the first
7182 character of the next grapheme cluster, or to the
7183 character visually after the current composition. */
7184 for (i = 0; i < it->cmp_it.nchars; i++)
7185 bidi_move_to_visually_next (&it->bidi_it);
7186 IT_BYTEPOS (*it) = it->bidi_it.bytepos;
7187 IT_CHARPOS (*it) = it->bidi_it.charpos;
7190 if ((! it->bidi_p || ! it->cmp_it.reversed_p)
7191 && it->cmp_it.to < it->cmp_it.nglyphs)
7193 /* Composition created while scanning forward. Proceed
7194 to the next grapheme cluster. */
7195 it->cmp_it.from = it->cmp_it.to;
7197 else if ((it->bidi_p && it->cmp_it.reversed_p)
7198 && it->cmp_it.from > 0)
7200 /* Composition created while scanning backward. Proceed
7201 to the previous grapheme cluster. */
7202 it->cmp_it.to = it->cmp_it.from;
7204 else
7206 /* No more grapheme clusters in this composition.
7207 Find the next stop position. */
7208 ptrdiff_t stop = it->end_charpos;
7210 if (it->bidi_it.scan_dir < 0)
7211 /* Now we are scanning backward and don't know
7212 where to stop. */
7213 stop = -1;
7214 composition_compute_stop_pos (&it->cmp_it, IT_CHARPOS (*it),
7215 IT_BYTEPOS (*it), stop, Qnil);
7218 else
7220 eassert (it->len != 0);
7222 if (!it->bidi_p)
7224 IT_BYTEPOS (*it) += it->len;
7225 IT_CHARPOS (*it) += 1;
7227 else
7229 int prev_scan_dir = it->bidi_it.scan_dir;
7230 /* If this is a new paragraph, determine its base
7231 direction (a.k.a. its base embedding level). */
7232 if (it->bidi_it.new_paragraph)
7233 bidi_paragraph_init (it->paragraph_embedding, &it->bidi_it,
7234 false);
7235 bidi_move_to_visually_next (&it->bidi_it);
7236 IT_BYTEPOS (*it) = it->bidi_it.bytepos;
7237 IT_CHARPOS (*it) = it->bidi_it.charpos;
7238 if (prev_scan_dir != it->bidi_it.scan_dir)
7240 /* As the scan direction was changed, we must
7241 re-compute the stop position for composition. */
7242 ptrdiff_t stop = it->end_charpos;
7243 if (it->bidi_it.scan_dir < 0)
7244 stop = -1;
7245 composition_compute_stop_pos (&it->cmp_it, IT_CHARPOS (*it),
7246 IT_BYTEPOS (*it), stop, Qnil);
7249 eassert (IT_BYTEPOS (*it) == CHAR_TO_BYTE (IT_CHARPOS (*it)));
7251 break;
7253 case GET_FROM_C_STRING:
7254 /* Current display element of IT is from a C string. */
7255 if (!it->bidi_p
7256 /* If the string position is beyond string's end, it means
7257 next_element_from_c_string is padding the string with
7258 blanks, in which case we bypass the bidi iterator,
7259 because it cannot deal with such virtual characters. */
7260 || IT_CHARPOS (*it) >= it->bidi_it.string.schars)
7262 IT_BYTEPOS (*it) += it->len;
7263 IT_CHARPOS (*it) += 1;
7265 else
7267 bidi_move_to_visually_next (&it->bidi_it);
7268 IT_BYTEPOS (*it) = it->bidi_it.bytepos;
7269 IT_CHARPOS (*it) = it->bidi_it.charpos;
7271 break;
7273 case GET_FROM_DISPLAY_VECTOR:
7274 /* Current display element of IT is from a display table entry.
7275 Advance in the display table definition. Reset it to null if
7276 end reached, and continue with characters from buffers/
7277 strings. */
7278 ++it->current.dpvec_index;
7280 /* Restore face of the iterator to what they were before the
7281 display vector entry (these entries may contain faces). */
7282 it->face_id = it->saved_face_id;
7284 if (it->dpvec + it->current.dpvec_index >= it->dpend)
7286 bool recheck_faces = it->ellipsis_p;
7288 if (it->s)
7289 it->method = GET_FROM_C_STRING;
7290 else if (STRINGP (it->string))
7291 it->method = GET_FROM_STRING;
7292 else
7294 it->method = GET_FROM_BUFFER;
7295 it->object = it->w->contents;
7298 it->dpvec = NULL;
7299 it->current.dpvec_index = -1;
7301 /* Skip over characters which were displayed via IT->dpvec. */
7302 if (it->dpvec_char_len < 0)
7303 reseat_at_next_visible_line_start (it, true);
7304 else if (it->dpvec_char_len > 0)
7306 it->len = it->dpvec_char_len;
7307 set_iterator_to_next (it, reseat_p);
7310 /* Maybe recheck faces after display vector. */
7311 if (recheck_faces)
7313 if (it->method == GET_FROM_STRING)
7314 it->stop_charpos = IT_STRING_CHARPOS (*it);
7315 else
7316 it->stop_charpos = IT_CHARPOS (*it);
7319 break;
7321 case GET_FROM_STRING:
7322 /* Current display element is a character from a Lisp string. */
7323 eassert (it->s == NULL && STRINGP (it->string));
7324 /* Don't advance past string end. These conditions are true
7325 when set_iterator_to_next is called at the end of
7326 get_next_display_element, in which case the Lisp string is
7327 already exhausted, and all we want is pop the iterator
7328 stack. */
7329 if (it->current.overlay_string_index >= 0)
7331 /* This is an overlay string, so there's no padding with
7332 spaces, and the number of characters in the string is
7333 where the string ends. */
7334 if (IT_STRING_CHARPOS (*it) >= SCHARS (it->string))
7335 goto consider_string_end;
7337 else
7339 /* Not an overlay string. There could be padding, so test
7340 against it->end_charpos. */
7341 if (IT_STRING_CHARPOS (*it) >= it->end_charpos)
7342 goto consider_string_end;
7344 if (it->cmp_it.id >= 0)
7346 /* We are delivering display elements from a composition.
7347 Update the string position past the grapheme cluster
7348 we've just processed. */
7349 if (! it->bidi_p)
7351 IT_STRING_CHARPOS (*it) += it->cmp_it.nchars;
7352 IT_STRING_BYTEPOS (*it) += it->cmp_it.nbytes;
7354 else
7356 int i;
7358 for (i = 0; i < it->cmp_it.nchars; i++)
7359 bidi_move_to_visually_next (&it->bidi_it);
7360 IT_STRING_BYTEPOS (*it) = it->bidi_it.bytepos;
7361 IT_STRING_CHARPOS (*it) = it->bidi_it.charpos;
7364 /* Did we exhaust all the grapheme clusters of this
7365 composition? */
7366 if ((! it->bidi_p || ! it->cmp_it.reversed_p)
7367 && (it->cmp_it.to < it->cmp_it.nglyphs))
7369 /* Not all the grapheme clusters were processed yet;
7370 advance to the next cluster. */
7371 it->cmp_it.from = it->cmp_it.to;
7373 else if ((it->bidi_p && it->cmp_it.reversed_p)
7374 && it->cmp_it.from > 0)
7376 /* Likewise: advance to the next cluster, but going in
7377 the reverse direction. */
7378 it->cmp_it.to = it->cmp_it.from;
7380 else
7382 /* This composition was fully processed; find the next
7383 candidate place for checking for composed
7384 characters. */
7385 /* Always limit string searches to the string length;
7386 any padding spaces are not part of the string, and
7387 there cannot be any compositions in that padding. */
7388 ptrdiff_t stop = SCHARS (it->string);
7390 if (it->bidi_p && it->bidi_it.scan_dir < 0)
7391 stop = -1;
7392 else if (it->end_charpos < stop)
7394 /* Cf. PRECISION in reseat_to_string: we might be
7395 limited in how many of the string characters we
7396 need to deliver. */
7397 stop = it->end_charpos;
7399 composition_compute_stop_pos (&it->cmp_it,
7400 IT_STRING_CHARPOS (*it),
7401 IT_STRING_BYTEPOS (*it), stop,
7402 it->string);
7405 else
7407 if (!it->bidi_p
7408 /* If the string position is beyond string's end, it
7409 means next_element_from_string is padding the string
7410 with blanks, in which case we bypass the bidi
7411 iterator, because it cannot deal with such virtual
7412 characters. */
7413 || IT_STRING_CHARPOS (*it) >= it->bidi_it.string.schars)
7415 IT_STRING_BYTEPOS (*it) += it->len;
7416 IT_STRING_CHARPOS (*it) += 1;
7418 else
7420 int prev_scan_dir = it->bidi_it.scan_dir;
7422 bidi_move_to_visually_next (&it->bidi_it);
7423 IT_STRING_BYTEPOS (*it) = it->bidi_it.bytepos;
7424 IT_STRING_CHARPOS (*it) = it->bidi_it.charpos;
7425 /* If the scan direction changes, we may need to update
7426 the place where to check for composed characters. */
7427 if (prev_scan_dir != it->bidi_it.scan_dir)
7429 ptrdiff_t stop = SCHARS (it->string);
7431 if (it->bidi_it.scan_dir < 0)
7432 stop = -1;
7433 else if (it->end_charpos < stop)
7434 stop = it->end_charpos;
7436 composition_compute_stop_pos (&it->cmp_it,
7437 IT_STRING_CHARPOS (*it),
7438 IT_STRING_BYTEPOS (*it), stop,
7439 it->string);
7444 consider_string_end:
7446 if (it->current.overlay_string_index >= 0)
7448 /* IT->string is an overlay string. Advance to the
7449 next, if there is one. */
7450 if (IT_STRING_CHARPOS (*it) >= SCHARS (it->string))
7452 it->ellipsis_p = false;
7453 next_overlay_string (it);
7454 if (it->ellipsis_p)
7455 setup_for_ellipsis (it, 0);
7458 else
7460 /* IT->string is not an overlay string. If we reached
7461 its end, and there is something on IT->stack, proceed
7462 with what is on the stack. This can be either another
7463 string, this time an overlay string, or a buffer. */
7464 if (IT_STRING_CHARPOS (*it) == SCHARS (it->string)
7465 && it->sp > 0)
7467 pop_it (it);
7468 if (it->method == GET_FROM_STRING)
7469 goto consider_string_end;
7472 break;
7474 case GET_FROM_IMAGE:
7475 case GET_FROM_STRETCH:
7476 /* The position etc with which we have to proceed are on
7477 the stack. The position may be at the end of a string,
7478 if the `display' property takes up the whole string. */
7479 eassert (it->sp > 0);
7480 pop_it (it);
7481 if (it->method == GET_FROM_STRING)
7482 goto consider_string_end;
7483 break;
7485 default:
7486 /* There are no other methods defined, so this should be a bug. */
7487 emacs_abort ();
7490 eassert (it->method != GET_FROM_STRING
7491 || (STRINGP (it->string)
7492 && IT_STRING_CHARPOS (*it) >= 0));
7495 /* Load IT's display element fields with information about the next
7496 display element which comes from a display table entry or from the
7497 result of translating a control character to one of the forms `^C'
7498 or `\003'.
7500 IT->dpvec holds the glyphs to return as characters.
7501 IT->saved_face_id holds the face id before the display vector--it
7502 is restored into IT->face_id in set_iterator_to_next. */
7504 static bool
7505 next_element_from_display_vector (struct it *it)
7507 Lisp_Object gc;
7508 int prev_face_id = it->face_id;
7509 int next_face_id;
7511 /* Precondition. */
7512 eassert (it->dpvec && it->current.dpvec_index >= 0);
7514 it->face_id = it->saved_face_id;
7516 /* KFS: This code used to check ip->dpvec[0] instead of the current element.
7517 That seemed totally bogus - so I changed it... */
7518 gc = it->dpvec[it->current.dpvec_index];
7520 if (GLYPH_CODE_P (gc))
7522 struct face *this_face, *prev_face, *next_face;
7524 it->c = GLYPH_CODE_CHAR (gc);
7525 it->len = CHAR_BYTES (it->c);
7527 /* The entry may contain a face id to use. Such a face id is
7528 the id of a Lisp face, not a realized face. A face id of
7529 zero means no face is specified. */
7530 if (it->dpvec_face_id >= 0)
7531 it->face_id = it->dpvec_face_id;
7532 else
7534 int lface_id = GLYPH_CODE_FACE (gc);
7535 if (lface_id > 0)
7536 it->face_id = merge_faces (it->f, Qt, lface_id,
7537 it->saved_face_id);
7540 /* Glyphs in the display vector could have the box face, so we
7541 need to set the related flags in the iterator, as
7542 appropriate. */
7543 this_face = FACE_FROM_ID (it->f, it->face_id);
7544 prev_face = FACE_FROM_ID (it->f, prev_face_id);
7546 /* Is this character the first character of a box-face run? */
7547 it->start_of_box_run_p = (this_face && this_face->box != FACE_NO_BOX
7548 && (!prev_face
7549 || prev_face->box == FACE_NO_BOX));
7551 /* For the last character of the box-face run, we need to look
7552 either at the next glyph from the display vector, or at the
7553 face we saw before the display vector. */
7554 next_face_id = it->saved_face_id;
7555 if (it->current.dpvec_index < it->dpend - it->dpvec - 1)
7557 if (it->dpvec_face_id >= 0)
7558 next_face_id = it->dpvec_face_id;
7559 else
7561 int lface_id =
7562 GLYPH_CODE_FACE (it->dpvec[it->current.dpvec_index + 1]);
7564 if (lface_id > 0)
7565 next_face_id = merge_faces (it->f, Qt, lface_id,
7566 it->saved_face_id);
7569 next_face = FACE_FROM_ID (it->f, next_face_id);
7570 it->end_of_box_run_p = (this_face && this_face->box != FACE_NO_BOX
7571 && (!next_face
7572 || next_face->box == FACE_NO_BOX));
7573 it->face_box_p = this_face && this_face->box != FACE_NO_BOX;
7575 else
7576 /* Display table entry is invalid. Return a space. */
7577 it->c = ' ', it->len = 1;
7579 /* Don't change position and object of the iterator here. They are
7580 still the values of the character that had this display table
7581 entry or was translated, and that's what we want. */
7582 it->what = IT_CHARACTER;
7583 return true;
7586 /* Get the first element of string/buffer in the visual order, after
7587 being reseated to a new position in a string or a buffer. */
7588 static void
7589 get_visually_first_element (struct it *it)
7591 bool string_p = STRINGP (it->string) || it->s;
7592 ptrdiff_t eob = (string_p ? it->bidi_it.string.schars : ZV);
7593 ptrdiff_t bob = (string_p ? 0 : BEGV);
7595 if (STRINGP (it->string))
7597 it->bidi_it.charpos = IT_STRING_CHARPOS (*it);
7598 it->bidi_it.bytepos = IT_STRING_BYTEPOS (*it);
7600 else
7602 it->bidi_it.charpos = IT_CHARPOS (*it);
7603 it->bidi_it.bytepos = IT_BYTEPOS (*it);
7606 if (it->bidi_it.charpos == eob)
7608 /* Nothing to do, but reset the FIRST_ELT flag, like
7609 bidi_paragraph_init does, because we are not going to
7610 call it. */
7611 it->bidi_it.first_elt = false;
7613 else if (it->bidi_it.charpos == bob
7614 || (!string_p
7615 && (FETCH_CHAR (it->bidi_it.bytepos - 1) == '\n'
7616 || FETCH_CHAR (it->bidi_it.bytepos) == '\n')))
7618 /* If we are at the beginning of a line/string, we can produce
7619 the next element right away. */
7620 bidi_paragraph_init (it->paragraph_embedding, &it->bidi_it, true);
7621 bidi_move_to_visually_next (&it->bidi_it);
7623 else
7625 ptrdiff_t orig_bytepos = it->bidi_it.bytepos;
7627 /* We need to prime the bidi iterator starting at the line's or
7628 string's beginning, before we will be able to produce the
7629 next element. */
7630 if (string_p)
7631 it->bidi_it.charpos = it->bidi_it.bytepos = 0;
7632 else
7633 it->bidi_it.charpos = find_newline_no_quit (IT_CHARPOS (*it),
7634 IT_BYTEPOS (*it), -1,
7635 &it->bidi_it.bytepos);
7636 bidi_paragraph_init (it->paragraph_embedding, &it->bidi_it, true);
7639 /* Now return to buffer/string position where we were asked
7640 to get the next display element, and produce that. */
7641 bidi_move_to_visually_next (&it->bidi_it);
7643 while (it->bidi_it.bytepos != orig_bytepos
7644 && it->bidi_it.charpos < eob);
7647 /* Adjust IT's position information to where we ended up. */
7648 if (STRINGP (it->string))
7650 IT_STRING_CHARPOS (*it) = it->bidi_it.charpos;
7651 IT_STRING_BYTEPOS (*it) = it->bidi_it.bytepos;
7653 else
7655 IT_CHARPOS (*it) = it->bidi_it.charpos;
7656 IT_BYTEPOS (*it) = it->bidi_it.bytepos;
7659 if (STRINGP (it->string) || !it->s)
7661 ptrdiff_t stop, charpos, bytepos;
7663 if (STRINGP (it->string))
7665 eassert (!it->s);
7666 stop = SCHARS (it->string);
7667 if (stop > it->end_charpos)
7668 stop = it->end_charpos;
7669 charpos = IT_STRING_CHARPOS (*it);
7670 bytepos = IT_STRING_BYTEPOS (*it);
7672 else
7674 stop = it->end_charpos;
7675 charpos = IT_CHARPOS (*it);
7676 bytepos = IT_BYTEPOS (*it);
7678 if (it->bidi_it.scan_dir < 0)
7679 stop = -1;
7680 composition_compute_stop_pos (&it->cmp_it, charpos, bytepos, stop,
7681 it->string);
7685 /* Load IT with the next display element from Lisp string IT->string.
7686 IT->current.string_pos is the current position within the string.
7687 If IT->current.overlay_string_index >= 0, the Lisp string is an
7688 overlay string. */
7690 static bool
7691 next_element_from_string (struct it *it)
7693 struct text_pos position;
7695 eassert (STRINGP (it->string));
7696 eassert (!it->bidi_p || EQ (it->string, it->bidi_it.string.lstring));
7697 eassert (IT_STRING_CHARPOS (*it) >= 0);
7698 position = it->current.string_pos;
7700 /* With bidi reordering, the character to display might not be the
7701 character at IT_STRING_CHARPOS. BIDI_IT.FIRST_ELT means
7702 that we were reseat()ed to a new string, whose paragraph
7703 direction is not known. */
7704 if (it->bidi_p && it->bidi_it.first_elt)
7706 get_visually_first_element (it);
7707 SET_TEXT_POS (position, IT_STRING_CHARPOS (*it), IT_STRING_BYTEPOS (*it));
7710 /* Time to check for invisible text? */
7711 if (IT_STRING_CHARPOS (*it) < it->end_charpos)
7713 if (IT_STRING_CHARPOS (*it) >= it->stop_charpos)
7715 if (!(!it->bidi_p
7716 || BIDI_AT_BASE_LEVEL (it->bidi_it)
7717 || IT_STRING_CHARPOS (*it) == it->stop_charpos))
7719 /* With bidi non-linear iteration, we could find
7720 ourselves far beyond the last computed stop_charpos,
7721 with several other stop positions in between that we
7722 missed. Scan them all now, in buffer's logical
7723 order, until we find and handle the last stop_charpos
7724 that precedes our current position. */
7725 handle_stop_backwards (it, it->stop_charpos);
7726 return GET_NEXT_DISPLAY_ELEMENT (it);
7728 else
7730 if (it->bidi_p)
7732 /* Take note of the stop position we just moved
7733 across, for when we will move back across it. */
7734 it->prev_stop = it->stop_charpos;
7735 /* If we are at base paragraph embedding level, take
7736 note of the last stop position seen at this
7737 level. */
7738 if (BIDI_AT_BASE_LEVEL (it->bidi_it))
7739 it->base_level_stop = it->stop_charpos;
7741 handle_stop (it);
7743 /* Since a handler may have changed IT->method, we must
7744 recurse here. */
7745 return GET_NEXT_DISPLAY_ELEMENT (it);
7748 else if (it->bidi_p
7749 /* If we are before prev_stop, we may have overstepped
7750 on our way backwards a stop_pos, and if so, we need
7751 to handle that stop_pos. */
7752 && IT_STRING_CHARPOS (*it) < it->prev_stop
7753 /* We can sometimes back up for reasons that have nothing
7754 to do with bidi reordering. E.g., compositions. The
7755 code below is only needed when we are above the base
7756 embedding level, so test for that explicitly. */
7757 && !BIDI_AT_BASE_LEVEL (it->bidi_it))
7759 /* If we lost track of base_level_stop, we have no better
7760 place for handle_stop_backwards to start from than string
7761 beginning. This happens, e.g., when we were reseated to
7762 the previous screenful of text by vertical-motion. */
7763 if (it->base_level_stop <= 0
7764 || IT_STRING_CHARPOS (*it) < it->base_level_stop)
7765 it->base_level_stop = 0;
7766 handle_stop_backwards (it, it->base_level_stop);
7767 return GET_NEXT_DISPLAY_ELEMENT (it);
7771 if (it->current.overlay_string_index >= 0)
7773 /* Get the next character from an overlay string. In overlay
7774 strings, there is no field width or padding with spaces to
7775 do. */
7776 if (IT_STRING_CHARPOS (*it) >= SCHARS (it->string))
7778 it->what = IT_EOB;
7779 return false;
7781 else if (CHAR_COMPOSED_P (it, IT_STRING_CHARPOS (*it),
7782 IT_STRING_BYTEPOS (*it),
7783 it->bidi_it.scan_dir < 0
7784 ? -1
7785 : SCHARS (it->string))
7786 && next_element_from_composition (it))
7788 return true;
7790 else if (STRING_MULTIBYTE (it->string))
7792 const unsigned char *s = (SDATA (it->string)
7793 + IT_STRING_BYTEPOS (*it));
7794 it->c = string_char_and_length (s, &it->len);
7796 else
7798 it->c = SREF (it->string, IT_STRING_BYTEPOS (*it));
7799 it->len = 1;
7802 else
7804 /* Get the next character from a Lisp string that is not an
7805 overlay string. Such strings come from the mode line, for
7806 example. We may have to pad with spaces, or truncate the
7807 string. See also next_element_from_c_string. */
7808 if (IT_STRING_CHARPOS (*it) >= it->end_charpos)
7810 it->what = IT_EOB;
7811 return false;
7813 else if (IT_STRING_CHARPOS (*it) >= it->string_nchars)
7815 /* Pad with spaces. */
7816 it->c = ' ', it->len = 1;
7817 CHARPOS (position) = BYTEPOS (position) = -1;
7819 else if (CHAR_COMPOSED_P (it, IT_STRING_CHARPOS (*it),
7820 IT_STRING_BYTEPOS (*it),
7821 it->bidi_it.scan_dir < 0
7822 ? -1
7823 : it->string_nchars)
7824 && next_element_from_composition (it))
7826 return true;
7828 else if (STRING_MULTIBYTE (it->string))
7830 const unsigned char *s = (SDATA (it->string)
7831 + IT_STRING_BYTEPOS (*it));
7832 it->c = string_char_and_length (s, &it->len);
7834 else
7836 it->c = SREF (it->string, IT_STRING_BYTEPOS (*it));
7837 it->len = 1;
7841 /* Record what we have and where it came from. */
7842 it->what = IT_CHARACTER;
7843 it->object = it->string;
7844 it->position = position;
7845 return true;
7849 /* Load IT with next display element from C string IT->s.
7850 IT->string_nchars is the maximum number of characters to return
7851 from the string. IT->end_charpos may be greater than
7852 IT->string_nchars when this function is called, in which case we
7853 may have to return padding spaces. Value is false if end of string
7854 reached, including padding spaces. */
7856 static bool
7857 next_element_from_c_string (struct it *it)
7859 bool success_p = true;
7861 eassert (it->s);
7862 eassert (!it->bidi_p || it->s == it->bidi_it.string.s);
7863 it->what = IT_CHARACTER;
7864 BYTEPOS (it->position) = CHARPOS (it->position) = 0;
7865 it->object = make_number (0);
7867 /* With bidi reordering, the character to display might not be the
7868 character at IT_CHARPOS. BIDI_IT.FIRST_ELT means that
7869 we were reseated to a new string, whose paragraph direction is
7870 not known. */
7871 if (it->bidi_p && it->bidi_it.first_elt)
7872 get_visually_first_element (it);
7874 /* IT's position can be greater than IT->string_nchars in case a
7875 field width or precision has been specified when the iterator was
7876 initialized. */
7877 if (IT_CHARPOS (*it) >= it->end_charpos)
7879 /* End of the game. */
7880 it->what = IT_EOB;
7881 success_p = false;
7883 else if (IT_CHARPOS (*it) >= it->string_nchars)
7885 /* Pad with spaces. */
7886 it->c = ' ', it->len = 1;
7887 BYTEPOS (it->position) = CHARPOS (it->position) = -1;
7889 else if (it->multibyte_p)
7890 it->c = string_char_and_length (it->s + IT_BYTEPOS (*it), &it->len);
7891 else
7892 it->c = it->s[IT_BYTEPOS (*it)], it->len = 1;
7894 return success_p;
7898 /* Set up IT to return characters from an ellipsis, if appropriate.
7899 The definition of the ellipsis glyphs may come from a display table
7900 entry. This function fills IT with the first glyph from the
7901 ellipsis if an ellipsis is to be displayed. */
7903 static bool
7904 next_element_from_ellipsis (struct it *it)
7906 if (it->selective_display_ellipsis_p)
7907 setup_for_ellipsis (it, it->len);
7908 else
7910 /* The face at the current position may be different from the
7911 face we find after the invisible text. Remember what it
7912 was in IT->saved_face_id, and signal that it's there by
7913 setting face_before_selective_p. */
7914 it->saved_face_id = it->face_id;
7915 it->method = GET_FROM_BUFFER;
7916 it->object = it->w->contents;
7917 reseat_at_next_visible_line_start (it, true);
7918 it->face_before_selective_p = true;
7921 return GET_NEXT_DISPLAY_ELEMENT (it);
7925 /* Deliver an image display element. The iterator IT is already
7926 filled with image information (done in handle_display_prop). Value
7927 is always true. */
7930 static bool
7931 next_element_from_image (struct it *it)
7933 it->what = IT_IMAGE;
7934 return true;
7938 /* Fill iterator IT with next display element from a stretch glyph
7939 property. IT->object is the value of the text property. Value is
7940 always true. */
7942 static bool
7943 next_element_from_stretch (struct it *it)
7945 it->what = IT_STRETCH;
7946 return true;
7949 /* Scan backwards from IT's current position until we find a stop
7950 position, or until BEGV. This is called when we find ourself
7951 before both the last known prev_stop and base_level_stop while
7952 reordering bidirectional text. */
7954 static void
7955 compute_stop_pos_backwards (struct it *it)
7957 const int SCAN_BACK_LIMIT = 1000;
7958 struct text_pos pos;
7959 struct display_pos save_current = it->current;
7960 struct text_pos save_position = it->position;
7961 ptrdiff_t charpos = IT_CHARPOS (*it);
7962 ptrdiff_t where_we_are = charpos;
7963 ptrdiff_t save_stop_pos = it->stop_charpos;
7964 ptrdiff_t save_end_pos = it->end_charpos;
7966 eassert (NILP (it->string) && !it->s);
7967 eassert (it->bidi_p);
7968 it->bidi_p = false;
7971 it->end_charpos = min (charpos + 1, ZV);
7972 charpos = max (charpos - SCAN_BACK_LIMIT, BEGV);
7973 SET_TEXT_POS (pos, charpos, CHAR_TO_BYTE (charpos));
7974 reseat_1 (it, pos, false);
7975 compute_stop_pos (it);
7976 /* We must advance forward, right? */
7977 if (it->stop_charpos <= charpos)
7978 emacs_abort ();
7980 while (charpos > BEGV && it->stop_charpos >= it->end_charpos);
7982 if (it->stop_charpos <= where_we_are)
7983 it->prev_stop = it->stop_charpos;
7984 else
7985 it->prev_stop = BEGV;
7986 it->bidi_p = true;
7987 it->current = save_current;
7988 it->position = save_position;
7989 it->stop_charpos = save_stop_pos;
7990 it->end_charpos = save_end_pos;
7993 /* Scan forward from CHARPOS in the current buffer/string, until we
7994 find a stop position > current IT's position. Then handle the stop
7995 position before that. This is called when we bump into a stop
7996 position while reordering bidirectional text. CHARPOS should be
7997 the last previously processed stop_pos (or BEGV/0, if none were
7998 processed yet) whose position is less that IT's current
7999 position. */
8001 static void
8002 handle_stop_backwards (struct it *it, ptrdiff_t charpos)
8004 bool bufp = !STRINGP (it->string);
8005 ptrdiff_t where_we_are = (bufp ? IT_CHARPOS (*it) : IT_STRING_CHARPOS (*it));
8006 struct display_pos save_current = it->current;
8007 struct text_pos save_position = it->position;
8008 struct text_pos pos1;
8009 ptrdiff_t next_stop;
8011 /* Scan in strict logical order. */
8012 eassert (it->bidi_p);
8013 it->bidi_p = false;
8016 it->prev_stop = charpos;
8017 if (bufp)
8019 SET_TEXT_POS (pos1, charpos, CHAR_TO_BYTE (charpos));
8020 reseat_1 (it, pos1, false);
8022 else
8023 it->current.string_pos = string_pos (charpos, it->string);
8024 compute_stop_pos (it);
8025 /* We must advance forward, right? */
8026 if (it->stop_charpos <= it->prev_stop)
8027 emacs_abort ();
8028 charpos = it->stop_charpos;
8030 while (charpos <= where_we_are);
8032 it->bidi_p = true;
8033 it->current = save_current;
8034 it->position = save_position;
8035 next_stop = it->stop_charpos;
8036 it->stop_charpos = it->prev_stop;
8037 handle_stop (it);
8038 it->stop_charpos = next_stop;
8041 /* Load IT with the next display element from current_buffer. Value
8042 is false if end of buffer reached. IT->stop_charpos is the next
8043 position at which to stop and check for text properties or buffer
8044 end. */
8046 static bool
8047 next_element_from_buffer (struct it *it)
8049 bool success_p = true;
8051 eassert (IT_CHARPOS (*it) >= BEGV);
8052 eassert (NILP (it->string) && !it->s);
8053 eassert (!it->bidi_p
8054 || (EQ (it->bidi_it.string.lstring, Qnil)
8055 && it->bidi_it.string.s == NULL));
8057 /* With bidi reordering, the character to display might not be the
8058 character at IT_CHARPOS. BIDI_IT.FIRST_ELT means that
8059 we were reseat()ed to a new buffer position, which is potentially
8060 a different paragraph. */
8061 if (it->bidi_p && it->bidi_it.first_elt)
8063 get_visually_first_element (it);
8064 SET_TEXT_POS (it->position, IT_CHARPOS (*it), IT_BYTEPOS (*it));
8067 if (IT_CHARPOS (*it) >= it->stop_charpos)
8069 if (IT_CHARPOS (*it) >= it->end_charpos)
8071 bool overlay_strings_follow_p;
8073 /* End of the game, except when overlay strings follow that
8074 haven't been returned yet. */
8075 if (it->overlay_strings_at_end_processed_p)
8076 overlay_strings_follow_p = false;
8077 else
8079 it->overlay_strings_at_end_processed_p = true;
8080 overlay_strings_follow_p = get_overlay_strings (it, 0);
8083 if (overlay_strings_follow_p)
8084 success_p = GET_NEXT_DISPLAY_ELEMENT (it);
8085 else
8087 it->what = IT_EOB;
8088 it->position = it->current.pos;
8089 success_p = false;
8092 else if (!(!it->bidi_p
8093 || BIDI_AT_BASE_LEVEL (it->bidi_it)
8094 || IT_CHARPOS (*it) == it->stop_charpos))
8096 /* With bidi non-linear iteration, we could find ourselves
8097 far beyond the last computed stop_charpos, with several
8098 other stop positions in between that we missed. Scan
8099 them all now, in buffer's logical order, until we find
8100 and handle the last stop_charpos that precedes our
8101 current position. */
8102 handle_stop_backwards (it, it->stop_charpos);
8103 it->ignore_overlay_strings_at_pos_p = false;
8104 return GET_NEXT_DISPLAY_ELEMENT (it);
8106 else
8108 if (it->bidi_p)
8110 /* Take note of the stop position we just moved across,
8111 for when we will move back across it. */
8112 it->prev_stop = it->stop_charpos;
8113 /* If we are at base paragraph embedding level, take
8114 note of the last stop position seen at this
8115 level. */
8116 if (BIDI_AT_BASE_LEVEL (it->bidi_it))
8117 it->base_level_stop = it->stop_charpos;
8119 handle_stop (it);
8120 it->ignore_overlay_strings_at_pos_p = false;
8121 return GET_NEXT_DISPLAY_ELEMENT (it);
8124 else if (it->bidi_p
8125 /* If we are before prev_stop, we may have overstepped on
8126 our way backwards a stop_pos, and if so, we need to
8127 handle that stop_pos. */
8128 && IT_CHARPOS (*it) < it->prev_stop
8129 /* We can sometimes back up for reasons that have nothing
8130 to do with bidi reordering. E.g., compositions. The
8131 code below is only needed when we are above the base
8132 embedding level, so test for that explicitly. */
8133 && !BIDI_AT_BASE_LEVEL (it->bidi_it))
8135 if (it->base_level_stop <= 0
8136 || IT_CHARPOS (*it) < it->base_level_stop)
8138 /* If we lost track of base_level_stop, we need to find
8139 prev_stop by looking backwards. This happens, e.g., when
8140 we were reseated to the previous screenful of text by
8141 vertical-motion. */
8142 it->base_level_stop = BEGV;
8143 compute_stop_pos_backwards (it);
8144 handle_stop_backwards (it, it->prev_stop);
8146 else
8147 handle_stop_backwards (it, it->base_level_stop);
8148 it->ignore_overlay_strings_at_pos_p = false;
8149 return GET_NEXT_DISPLAY_ELEMENT (it);
8151 else
8153 /* No face changes, overlays etc. in sight, so just return a
8154 character from current_buffer. */
8155 unsigned char *p;
8156 ptrdiff_t stop;
8158 /* We moved to the next buffer position, so any info about
8159 previously seen overlays is no longer valid. */
8160 it->ignore_overlay_strings_at_pos_p = false;
8162 /* Maybe run the redisplay end trigger hook. Performance note:
8163 This doesn't seem to cost measurable time. */
8164 if (it->redisplay_end_trigger_charpos
8165 && it->glyph_row
8166 && IT_CHARPOS (*it) >= it->redisplay_end_trigger_charpos)
8167 run_redisplay_end_trigger_hook (it);
8169 stop = it->bidi_it.scan_dir < 0 ? -1 : it->end_charpos;
8170 if (CHAR_COMPOSED_P (it, IT_CHARPOS (*it), IT_BYTEPOS (*it),
8171 stop)
8172 && next_element_from_composition (it))
8174 return true;
8177 /* Get the next character, maybe multibyte. */
8178 p = BYTE_POS_ADDR (IT_BYTEPOS (*it));
8179 if (it->multibyte_p && !ASCII_CHAR_P (*p))
8180 it->c = STRING_CHAR_AND_LENGTH (p, it->len);
8181 else
8182 it->c = *p, it->len = 1;
8184 /* Record what we have and where it came from. */
8185 it->what = IT_CHARACTER;
8186 it->object = it->w->contents;
8187 it->position = it->current.pos;
8189 /* Normally we return the character found above, except when we
8190 really want to return an ellipsis for selective display. */
8191 if (it->selective)
8193 if (it->c == '\n')
8195 /* A value of selective > 0 means hide lines indented more
8196 than that number of columns. */
8197 if (it->selective > 0
8198 && IT_CHARPOS (*it) + 1 < ZV
8199 && indented_beyond_p (IT_CHARPOS (*it) + 1,
8200 IT_BYTEPOS (*it) + 1,
8201 it->selective))
8203 success_p = next_element_from_ellipsis (it);
8204 it->dpvec_char_len = -1;
8207 else if (it->c == '\r' && it->selective == -1)
8209 /* A value of selective == -1 means that everything from the
8210 CR to the end of the line is invisible, with maybe an
8211 ellipsis displayed for it. */
8212 success_p = next_element_from_ellipsis (it);
8213 it->dpvec_char_len = -1;
8218 /* Value is false if end of buffer reached. */
8219 eassert (!success_p || it->what != IT_CHARACTER || it->len > 0);
8220 return success_p;
8224 /* Run the redisplay end trigger hook for IT. */
8226 static void
8227 run_redisplay_end_trigger_hook (struct it *it)
8229 /* IT->glyph_row should be non-null, i.e. we should be actually
8230 displaying something, or otherwise we should not run the hook. */
8231 eassert (it->glyph_row);
8233 ptrdiff_t charpos = it->redisplay_end_trigger_charpos;
8234 it->redisplay_end_trigger_charpos = 0;
8236 /* Since we are *trying* to run these functions, don't try to run
8237 them again, even if they get an error. */
8238 wset_redisplay_end_trigger (it->w, Qnil);
8239 CALLN (Frun_hook_with_args, Qredisplay_end_trigger_functions, it->window,
8240 make_number (charpos));
8242 /* Notice if it changed the face of the character we are on. */
8243 handle_face_prop (it);
8247 /* Deliver a composition display element. Unlike the other
8248 next_element_from_XXX, this function is not registered in the array
8249 get_next_element[]. It is called from next_element_from_buffer and
8250 next_element_from_string when necessary. */
8252 static bool
8253 next_element_from_composition (struct it *it)
8255 it->what = IT_COMPOSITION;
8256 it->len = it->cmp_it.nbytes;
8257 if (STRINGP (it->string))
8259 if (it->c < 0)
8261 IT_STRING_CHARPOS (*it) += it->cmp_it.nchars;
8262 IT_STRING_BYTEPOS (*it) += it->cmp_it.nbytes;
8263 return false;
8265 it->position = it->current.string_pos;
8266 it->object = it->string;
8267 it->c = composition_update_it (&it->cmp_it, IT_STRING_CHARPOS (*it),
8268 IT_STRING_BYTEPOS (*it), it->string);
8270 else
8272 if (it->c < 0)
8274 IT_CHARPOS (*it) += it->cmp_it.nchars;
8275 IT_BYTEPOS (*it) += it->cmp_it.nbytes;
8276 if (it->bidi_p)
8278 if (it->bidi_it.new_paragraph)
8279 bidi_paragraph_init (it->paragraph_embedding, &it->bidi_it,
8280 false);
8281 /* Resync the bidi iterator with IT's new position.
8282 FIXME: this doesn't support bidirectional text. */
8283 while (it->bidi_it.charpos < IT_CHARPOS (*it))
8284 bidi_move_to_visually_next (&it->bidi_it);
8286 return false;
8288 it->position = it->current.pos;
8289 it->object = it->w->contents;
8290 it->c = composition_update_it (&it->cmp_it, IT_CHARPOS (*it),
8291 IT_BYTEPOS (*it), Qnil);
8293 return true;
8298 /***********************************************************************
8299 Moving an iterator without producing glyphs
8300 ***********************************************************************/
8302 /* Check if iterator is at a position corresponding to a valid buffer
8303 position after some move_it_ call. */
8305 #define IT_POS_VALID_AFTER_MOVE_P(it) \
8306 ((it)->method != GET_FROM_STRING || IT_STRING_CHARPOS (*it) == 0)
8309 /* Move iterator IT to a specified buffer or X position within one
8310 line on the display without producing glyphs.
8312 OP should be a bit mask including some or all of these bits:
8313 MOVE_TO_X: Stop upon reaching x-position TO_X.
8314 MOVE_TO_POS: Stop upon reaching buffer or string position TO_CHARPOS.
8315 Regardless of OP's value, stop upon reaching the end of the display line.
8317 TO_X is normally a value 0 <= TO_X <= IT->last_visible_x.
8318 This means, in particular, that TO_X includes window's horizontal
8319 scroll amount.
8321 The return value has several possible values that
8322 say what condition caused the scan to stop:
8324 MOVE_POS_MATCH_OR_ZV
8325 - when TO_POS or ZV was reached.
8327 MOVE_X_REACHED
8328 -when TO_X was reached before TO_POS or ZV were reached.
8330 MOVE_LINE_CONTINUED
8331 - when we reached the end of the display area and the line must
8332 be continued.
8334 MOVE_LINE_TRUNCATED
8335 - when we reached the end of the display area and the line is
8336 truncated.
8338 MOVE_NEWLINE_OR_CR
8339 - when we stopped at a line end, i.e. a newline or a CR and selective
8340 display is on. */
8342 static enum move_it_result
8343 move_it_in_display_line_to (struct it *it,
8344 ptrdiff_t to_charpos, int to_x,
8345 enum move_operation_enum op)
8347 enum move_it_result result = MOVE_UNDEFINED;
8348 struct glyph_row *saved_glyph_row;
8349 struct it wrap_it, atpos_it, atx_it, ppos_it;
8350 void *wrap_data = NULL, *atpos_data = NULL, *atx_data = NULL;
8351 void *ppos_data = NULL;
8352 bool may_wrap = false;
8353 enum it_method prev_method = it->method;
8354 ptrdiff_t closest_pos IF_LINT (= 0), prev_pos = IT_CHARPOS (*it);
8355 bool saw_smaller_pos = prev_pos < to_charpos;
8357 /* Don't produce glyphs in produce_glyphs. */
8358 saved_glyph_row = it->glyph_row;
8359 it->glyph_row = NULL;
8361 /* Use wrap_it to save a copy of IT wherever a word wrap could
8362 occur. Use atpos_it to save a copy of IT at the desired buffer
8363 position, if found, so that we can scan ahead and check if the
8364 word later overshoots the window edge. Use atx_it similarly, for
8365 pixel positions. */
8366 wrap_it.sp = -1;
8367 atpos_it.sp = -1;
8368 atx_it.sp = -1;
8370 /* Use ppos_it under bidi reordering to save a copy of IT for the
8371 initial position. We restore that position in IT when we have
8372 scanned the entire display line without finding a match for
8373 TO_CHARPOS and all the character positions are greater than
8374 TO_CHARPOS. We then restart the scan from the initial position,
8375 and stop at CLOSEST_POS, which is a position > TO_CHARPOS that is
8376 the closest to TO_CHARPOS. */
8377 if (it->bidi_p)
8379 if ((op & MOVE_TO_POS) && IT_CHARPOS (*it) >= to_charpos)
8381 SAVE_IT (ppos_it, *it, ppos_data);
8382 closest_pos = IT_CHARPOS (*it);
8384 else
8385 closest_pos = ZV;
8388 #define BUFFER_POS_REACHED_P() \
8389 ((op & MOVE_TO_POS) != 0 \
8390 && BUFFERP (it->object) \
8391 && (IT_CHARPOS (*it) == to_charpos \
8392 || ((!it->bidi_p \
8393 || BIDI_AT_BASE_LEVEL (it->bidi_it)) \
8394 && IT_CHARPOS (*it) > to_charpos) \
8395 || (it->what == IT_COMPOSITION \
8396 && ((IT_CHARPOS (*it) > to_charpos \
8397 && to_charpos >= it->cmp_it.charpos) \
8398 || (IT_CHARPOS (*it) < to_charpos \
8399 && to_charpos <= it->cmp_it.charpos)))) \
8400 && (it->method == GET_FROM_BUFFER \
8401 || (it->method == GET_FROM_DISPLAY_VECTOR \
8402 && it->dpvec + it->current.dpvec_index + 1 >= it->dpend)))
8404 /* If there's a line-/wrap-prefix, handle it. */
8405 if (it->hpos == 0 && it->method == GET_FROM_BUFFER
8406 && it->current_y < it->last_visible_y)
8407 handle_line_prefix (it);
8409 if (IT_CHARPOS (*it) < CHARPOS (this_line_min_pos))
8410 SET_TEXT_POS (this_line_min_pos, IT_CHARPOS (*it), IT_BYTEPOS (*it));
8412 while (true)
8414 int x, i, ascent = 0, descent = 0;
8416 /* Utility macro to reset an iterator with x, ascent, and descent. */
8417 #define IT_RESET_X_ASCENT_DESCENT(IT) \
8418 ((IT)->current_x = x, (IT)->max_ascent = ascent, \
8419 (IT)->max_descent = descent)
8421 /* Stop if we move beyond TO_CHARPOS (after an image or a
8422 display string or stretch glyph). */
8423 if ((op & MOVE_TO_POS) != 0
8424 && BUFFERP (it->object)
8425 && it->method == GET_FROM_BUFFER
8426 && (((!it->bidi_p
8427 /* When the iterator is at base embedding level, we
8428 are guaranteed that characters are delivered for
8429 display in strictly increasing order of their
8430 buffer positions. */
8431 || BIDI_AT_BASE_LEVEL (it->bidi_it))
8432 && IT_CHARPOS (*it) > to_charpos)
8433 || (it->bidi_p
8434 && (prev_method == GET_FROM_IMAGE
8435 || prev_method == GET_FROM_STRETCH
8436 || prev_method == GET_FROM_STRING)
8437 /* Passed TO_CHARPOS from left to right. */
8438 && ((prev_pos < to_charpos
8439 && IT_CHARPOS (*it) > to_charpos)
8440 /* Passed TO_CHARPOS from right to left. */
8441 || (prev_pos > to_charpos
8442 && IT_CHARPOS (*it) < to_charpos)))))
8444 if (it->line_wrap != WORD_WRAP || wrap_it.sp < 0)
8446 result = MOVE_POS_MATCH_OR_ZV;
8447 break;
8449 else if (it->line_wrap == WORD_WRAP && atpos_it.sp < 0)
8450 /* If wrap_it is valid, the current position might be in a
8451 word that is wrapped. So, save the iterator in
8452 atpos_it and continue to see if wrapping happens. */
8453 SAVE_IT (atpos_it, *it, atpos_data);
8456 /* Stop when ZV reached.
8457 We used to stop here when TO_CHARPOS reached as well, but that is
8458 too soon if this glyph does not fit on this line. So we handle it
8459 explicitly below. */
8460 if (!get_next_display_element (it))
8462 result = MOVE_POS_MATCH_OR_ZV;
8463 break;
8466 if (it->line_wrap == TRUNCATE)
8468 if (BUFFER_POS_REACHED_P ())
8470 result = MOVE_POS_MATCH_OR_ZV;
8471 break;
8474 else
8476 if (it->line_wrap == WORD_WRAP && it->area == TEXT_AREA)
8478 if (IT_DISPLAYING_WHITESPACE (it))
8479 may_wrap = true;
8480 else if (may_wrap)
8482 /* We have reached a glyph that follows one or more
8483 whitespace characters. If the position is
8484 already found, we are done. */
8485 if (atpos_it.sp >= 0)
8487 RESTORE_IT (it, &atpos_it, atpos_data);
8488 result = MOVE_POS_MATCH_OR_ZV;
8489 goto done;
8491 if (atx_it.sp >= 0)
8493 RESTORE_IT (it, &atx_it, atx_data);
8494 result = MOVE_X_REACHED;
8495 goto done;
8497 /* Otherwise, we can wrap here. */
8498 SAVE_IT (wrap_it, *it, wrap_data);
8499 may_wrap = false;
8504 /* Remember the line height for the current line, in case
8505 the next element doesn't fit on the line. */
8506 ascent = it->max_ascent;
8507 descent = it->max_descent;
8509 /* The call to produce_glyphs will get the metrics of the
8510 display element IT is loaded with. Record the x-position
8511 before this display element, in case it doesn't fit on the
8512 line. */
8513 x = it->current_x;
8515 PRODUCE_GLYPHS (it);
8517 if (it->area != TEXT_AREA)
8519 prev_method = it->method;
8520 if (it->method == GET_FROM_BUFFER)
8521 prev_pos = IT_CHARPOS (*it);
8522 set_iterator_to_next (it, true);
8523 if (IT_CHARPOS (*it) < CHARPOS (this_line_min_pos))
8524 SET_TEXT_POS (this_line_min_pos,
8525 IT_CHARPOS (*it), IT_BYTEPOS (*it));
8526 if (it->bidi_p
8527 && (op & MOVE_TO_POS)
8528 && IT_CHARPOS (*it) > to_charpos
8529 && IT_CHARPOS (*it) < closest_pos)
8530 closest_pos = IT_CHARPOS (*it);
8531 continue;
8534 /* The number of glyphs we get back in IT->nglyphs will normally
8535 be 1 except when IT->c is (i) a TAB, or (ii) a multi-glyph
8536 character on a terminal frame, or (iii) a line end. For the
8537 second case, IT->nglyphs - 1 padding glyphs will be present.
8538 (On X frames, there is only one glyph produced for a
8539 composite character.)
8541 The behavior implemented below means, for continuation lines,
8542 that as many spaces of a TAB as fit on the current line are
8543 displayed there. For terminal frames, as many glyphs of a
8544 multi-glyph character are displayed in the current line, too.
8545 This is what the old redisplay code did, and we keep it that
8546 way. Under X, the whole shape of a complex character must
8547 fit on the line or it will be completely displayed in the
8548 next line.
8550 Note that both for tabs and padding glyphs, all glyphs have
8551 the same width. */
8552 if (it->nglyphs)
8554 /* More than one glyph or glyph doesn't fit on line. All
8555 glyphs have the same width. */
8556 int single_glyph_width = it->pixel_width / it->nglyphs;
8557 int new_x;
8558 int x_before_this_char = x;
8559 int hpos_before_this_char = it->hpos;
8561 for (i = 0; i < it->nglyphs; ++i, x = new_x)
8563 new_x = x + single_glyph_width;
8565 /* We want to leave anything reaching TO_X to the caller. */
8566 if ((op & MOVE_TO_X) && new_x > to_x)
8568 if (BUFFER_POS_REACHED_P ())
8570 if (it->line_wrap != WORD_WRAP || wrap_it.sp < 0)
8571 goto buffer_pos_reached;
8572 if (atpos_it.sp < 0)
8574 SAVE_IT (atpos_it, *it, atpos_data);
8575 IT_RESET_X_ASCENT_DESCENT (&atpos_it);
8578 else
8580 if (it->line_wrap != WORD_WRAP || wrap_it.sp < 0)
8582 it->current_x = x;
8583 result = MOVE_X_REACHED;
8584 break;
8586 if (atx_it.sp < 0)
8588 SAVE_IT (atx_it, *it, atx_data);
8589 IT_RESET_X_ASCENT_DESCENT (&atx_it);
8594 if (/* Lines are continued. */
8595 it->line_wrap != TRUNCATE
8596 && (/* And glyph doesn't fit on the line. */
8597 new_x > it->last_visible_x
8598 /* Or it fits exactly and we're on a window
8599 system frame. */
8600 || (new_x == it->last_visible_x
8601 && FRAME_WINDOW_P (it->f)
8602 && ((it->bidi_p && it->bidi_it.paragraph_dir == R2L)
8603 ? WINDOW_LEFT_FRINGE_WIDTH (it->w)
8604 : WINDOW_RIGHT_FRINGE_WIDTH (it->w)))))
8606 if (/* IT->hpos == 0 means the very first glyph
8607 doesn't fit on the line, e.g. a wide image. */
8608 it->hpos == 0
8609 || (new_x == it->last_visible_x
8610 && FRAME_WINDOW_P (it->f)))
8612 ++it->hpos;
8613 it->current_x = new_x;
8615 /* The character's last glyph just barely fits
8616 in this row. */
8617 if (i == it->nglyphs - 1)
8619 /* If this is the destination position,
8620 return a position *before* it in this row,
8621 now that we know it fits in this row. */
8622 if (BUFFER_POS_REACHED_P ())
8624 if (it->line_wrap != WORD_WRAP
8625 || wrap_it.sp < 0
8626 /* If we've just found whitespace to
8627 wrap, effectively ignore the
8628 previous wrap point -- it is no
8629 longer relevant, but we won't
8630 have an opportunity to update it,
8631 since we've reached the edge of
8632 this screen line. */
8633 || (may_wrap
8634 && IT_OVERFLOW_NEWLINE_INTO_FRINGE (it)))
8636 it->hpos = hpos_before_this_char;
8637 it->current_x = x_before_this_char;
8638 result = MOVE_POS_MATCH_OR_ZV;
8639 break;
8641 if (it->line_wrap == WORD_WRAP
8642 && atpos_it.sp < 0)
8644 SAVE_IT (atpos_it, *it, atpos_data);
8645 atpos_it.current_x = x_before_this_char;
8646 atpos_it.hpos = hpos_before_this_char;
8650 prev_method = it->method;
8651 if (it->method == GET_FROM_BUFFER)
8652 prev_pos = IT_CHARPOS (*it);
8653 set_iterator_to_next (it, true);
8654 if (IT_CHARPOS (*it) < CHARPOS (this_line_min_pos))
8655 SET_TEXT_POS (this_line_min_pos,
8656 IT_CHARPOS (*it), IT_BYTEPOS (*it));
8657 /* On graphical terminals, newlines may
8658 "overflow" into the fringe if
8659 overflow-newline-into-fringe is non-nil.
8660 On text terminals, and on graphical
8661 terminals with no right margin, newlines
8662 may overflow into the last glyph on the
8663 display line.*/
8664 if (!FRAME_WINDOW_P (it->f)
8665 || ((it->bidi_p
8666 && it->bidi_it.paragraph_dir == R2L)
8667 ? WINDOW_LEFT_FRINGE_WIDTH (it->w)
8668 : WINDOW_RIGHT_FRINGE_WIDTH (it->w)) == 0
8669 || IT_OVERFLOW_NEWLINE_INTO_FRINGE (it))
8671 if (!get_next_display_element (it))
8673 result = MOVE_POS_MATCH_OR_ZV;
8674 break;
8676 if (BUFFER_POS_REACHED_P ())
8678 if (ITERATOR_AT_END_OF_LINE_P (it))
8679 result = MOVE_POS_MATCH_OR_ZV;
8680 else
8681 result = MOVE_LINE_CONTINUED;
8682 break;
8684 if (ITERATOR_AT_END_OF_LINE_P (it)
8685 && (it->line_wrap != WORD_WRAP
8686 || wrap_it.sp < 0
8687 || IT_OVERFLOW_NEWLINE_INTO_FRINGE (it)))
8689 result = MOVE_NEWLINE_OR_CR;
8690 break;
8695 else
8696 IT_RESET_X_ASCENT_DESCENT (it);
8698 /* If the screen line ends with whitespace, and we
8699 are under word-wrap, don't use wrap_it: it is no
8700 longer relevant, but we won't have an opportunity
8701 to update it, since we are done with this screen
8702 line. */
8703 if (may_wrap && IT_OVERFLOW_NEWLINE_INTO_FRINGE (it))
8705 /* If we've found TO_X, go back there, as we now
8706 know the last word fits on this screen line. */
8707 if ((op & MOVE_TO_X) && new_x == it->last_visible_x
8708 && atx_it.sp >= 0)
8710 RESTORE_IT (it, &atx_it, atx_data);
8711 atpos_it.sp = -1;
8712 atx_it.sp = -1;
8713 result = MOVE_X_REACHED;
8714 break;
8717 else if (wrap_it.sp >= 0)
8719 RESTORE_IT (it, &wrap_it, wrap_data);
8720 atpos_it.sp = -1;
8721 atx_it.sp = -1;
8724 TRACE_MOVE ((stderr, "move_it_in: continued at %d\n",
8725 IT_CHARPOS (*it)));
8726 result = MOVE_LINE_CONTINUED;
8727 break;
8730 if (BUFFER_POS_REACHED_P ())
8732 if (it->line_wrap != WORD_WRAP || wrap_it.sp < 0)
8733 goto buffer_pos_reached;
8734 if (it->line_wrap == WORD_WRAP && atpos_it.sp < 0)
8736 SAVE_IT (atpos_it, *it, atpos_data);
8737 IT_RESET_X_ASCENT_DESCENT (&atpos_it);
8741 if (new_x > it->first_visible_x)
8743 /* Glyph is visible. Increment number of glyphs that
8744 would be displayed. */
8745 ++it->hpos;
8749 if (result != MOVE_UNDEFINED)
8750 break;
8752 else if (BUFFER_POS_REACHED_P ())
8754 buffer_pos_reached:
8755 IT_RESET_X_ASCENT_DESCENT (it);
8756 result = MOVE_POS_MATCH_OR_ZV;
8757 break;
8759 else if ((op & MOVE_TO_X) && it->current_x >= to_x)
8761 /* Stop when TO_X specified and reached. This check is
8762 necessary here because of lines consisting of a line end,
8763 only. The line end will not produce any glyphs and we
8764 would never get MOVE_X_REACHED. */
8765 eassert (it->nglyphs == 0);
8766 result = MOVE_X_REACHED;
8767 break;
8770 /* Is this a line end? If yes, we're done. */
8771 if (ITERATOR_AT_END_OF_LINE_P (it))
8773 /* If we are past TO_CHARPOS, but never saw any character
8774 positions smaller than TO_CHARPOS, return
8775 MOVE_POS_MATCH_OR_ZV, like the unidirectional display
8776 did. */
8777 if (it->bidi_p && (op & MOVE_TO_POS) != 0)
8779 if (!saw_smaller_pos && IT_CHARPOS (*it) > to_charpos)
8781 if (closest_pos < ZV)
8783 RESTORE_IT (it, &ppos_it, ppos_data);
8784 /* Don't recurse if closest_pos is equal to
8785 to_charpos, since we have just tried that. */
8786 if (closest_pos != to_charpos)
8787 move_it_in_display_line_to (it, closest_pos, -1,
8788 MOVE_TO_POS);
8789 result = MOVE_POS_MATCH_OR_ZV;
8791 else
8792 goto buffer_pos_reached;
8794 else if (it->line_wrap == WORD_WRAP && atpos_it.sp >= 0
8795 && IT_CHARPOS (*it) > to_charpos)
8796 goto buffer_pos_reached;
8797 else
8798 result = MOVE_NEWLINE_OR_CR;
8800 else
8801 result = MOVE_NEWLINE_OR_CR;
8802 break;
8805 prev_method = it->method;
8806 if (it->method == GET_FROM_BUFFER)
8807 prev_pos = IT_CHARPOS (*it);
8808 /* The current display element has been consumed. Advance
8809 to the next. */
8810 set_iterator_to_next (it, true);
8811 if (IT_CHARPOS (*it) < CHARPOS (this_line_min_pos))
8812 SET_TEXT_POS (this_line_min_pos, IT_CHARPOS (*it), IT_BYTEPOS (*it));
8813 if (IT_CHARPOS (*it) < to_charpos)
8814 saw_smaller_pos = true;
8815 if (it->bidi_p
8816 && (op & MOVE_TO_POS)
8817 && IT_CHARPOS (*it) >= to_charpos
8818 && IT_CHARPOS (*it) < closest_pos)
8819 closest_pos = IT_CHARPOS (*it);
8821 /* Stop if lines are truncated and IT's current x-position is
8822 past the right edge of the window now. */
8823 if (it->line_wrap == TRUNCATE
8824 && it->current_x >= it->last_visible_x)
8826 if (!FRAME_WINDOW_P (it->f)
8827 || ((it->bidi_p && it->bidi_it.paragraph_dir == R2L)
8828 ? WINDOW_LEFT_FRINGE_WIDTH (it->w)
8829 : WINDOW_RIGHT_FRINGE_WIDTH (it->w)) == 0
8830 || IT_OVERFLOW_NEWLINE_INTO_FRINGE (it))
8832 bool at_eob_p = false;
8834 if ((at_eob_p = !get_next_display_element (it))
8835 || BUFFER_POS_REACHED_P ()
8836 /* If we are past TO_CHARPOS, but never saw any
8837 character positions smaller than TO_CHARPOS,
8838 return MOVE_POS_MATCH_OR_ZV, like the
8839 unidirectional display did. */
8840 || (it->bidi_p && (op & MOVE_TO_POS) != 0
8841 && !saw_smaller_pos
8842 && IT_CHARPOS (*it) > to_charpos))
8844 if (it->bidi_p
8845 && !BUFFER_POS_REACHED_P ()
8846 && !at_eob_p && closest_pos < ZV)
8848 RESTORE_IT (it, &ppos_it, ppos_data);
8849 if (closest_pos != to_charpos)
8850 move_it_in_display_line_to (it, closest_pos, -1,
8851 MOVE_TO_POS);
8853 result = MOVE_POS_MATCH_OR_ZV;
8854 break;
8856 if (ITERATOR_AT_END_OF_LINE_P (it))
8858 result = MOVE_NEWLINE_OR_CR;
8859 break;
8862 else if (it->bidi_p && (op & MOVE_TO_POS) != 0
8863 && !saw_smaller_pos
8864 && IT_CHARPOS (*it) > to_charpos)
8866 if (closest_pos < ZV)
8868 RESTORE_IT (it, &ppos_it, ppos_data);
8869 if (closest_pos != to_charpos)
8870 move_it_in_display_line_to (it, closest_pos, -1,
8871 MOVE_TO_POS);
8873 result = MOVE_POS_MATCH_OR_ZV;
8874 break;
8876 result = MOVE_LINE_TRUNCATED;
8877 break;
8879 #undef IT_RESET_X_ASCENT_DESCENT
8882 #undef BUFFER_POS_REACHED_P
8884 /* If we scanned beyond to_pos and didn't find a point to wrap at,
8885 restore the saved iterator. */
8886 if (atpos_it.sp >= 0)
8887 RESTORE_IT (it, &atpos_it, atpos_data);
8888 else if (atx_it.sp >= 0)
8889 RESTORE_IT (it, &atx_it, atx_data);
8891 done:
8893 if (atpos_data)
8894 bidi_unshelve_cache (atpos_data, true);
8895 if (atx_data)
8896 bidi_unshelve_cache (atx_data, true);
8897 if (wrap_data)
8898 bidi_unshelve_cache (wrap_data, true);
8899 if (ppos_data)
8900 bidi_unshelve_cache (ppos_data, true);
8902 /* Restore the iterator settings altered at the beginning of this
8903 function. */
8904 it->glyph_row = saved_glyph_row;
8905 return result;
8908 /* For external use. */
8909 void
8910 move_it_in_display_line (struct it *it,
8911 ptrdiff_t to_charpos, int to_x,
8912 enum move_operation_enum op)
8914 if (it->line_wrap == WORD_WRAP
8915 && (op & MOVE_TO_X))
8917 struct it save_it;
8918 void *save_data = NULL;
8919 int skip;
8921 SAVE_IT (save_it, *it, save_data);
8922 skip = move_it_in_display_line_to (it, to_charpos, to_x, op);
8923 /* When word-wrap is on, TO_X may lie past the end
8924 of a wrapped line. Then it->current is the
8925 character on the next line, so backtrack to the
8926 space before the wrap point. */
8927 if (skip == MOVE_LINE_CONTINUED)
8929 int prev_x = max (it->current_x - 1, 0);
8930 RESTORE_IT (it, &save_it, save_data);
8931 move_it_in_display_line_to
8932 (it, -1, prev_x, MOVE_TO_X);
8934 else
8935 bidi_unshelve_cache (save_data, true);
8937 else
8938 move_it_in_display_line_to (it, to_charpos, to_x, op);
8942 /* Move IT forward until it satisfies one or more of the criteria in
8943 TO_CHARPOS, TO_X, TO_Y, and TO_VPOS.
8945 OP is a bit-mask that specifies where to stop, and in particular,
8946 which of those four position arguments makes a difference. See the
8947 description of enum move_operation_enum.
8949 If TO_CHARPOS is in invisible text, e.g. a truncated part of a
8950 screen line, this function will set IT to the next position that is
8951 displayed to the right of TO_CHARPOS on the screen.
8953 Return the maximum pixel length of any line scanned but never more
8954 than it.last_visible_x. */
8957 move_it_to (struct it *it, ptrdiff_t to_charpos, int to_x, int to_y, int to_vpos, int op)
8959 enum move_it_result skip, skip2 = MOVE_X_REACHED;
8960 int line_height, line_start_x = 0, reached = 0;
8961 int max_current_x = 0;
8962 void *backup_data = NULL;
8964 for (;;)
8966 if (op & MOVE_TO_VPOS)
8968 /* If no TO_CHARPOS and no TO_X specified, stop at the
8969 start of the line TO_VPOS. */
8970 if ((op & (MOVE_TO_X | MOVE_TO_POS)) == 0)
8972 if (it->vpos == to_vpos)
8974 reached = 1;
8975 break;
8977 else
8978 skip = move_it_in_display_line_to (it, -1, -1, 0);
8980 else
8982 /* TO_VPOS >= 0 means stop at TO_X in the line at
8983 TO_VPOS, or at TO_POS, whichever comes first. */
8984 if (it->vpos == to_vpos)
8986 reached = 2;
8987 break;
8990 skip = move_it_in_display_line_to (it, to_charpos, to_x, op);
8992 if (skip == MOVE_POS_MATCH_OR_ZV || it->vpos == to_vpos)
8994 reached = 3;
8995 break;
8997 else if (skip == MOVE_X_REACHED && it->vpos != to_vpos)
8999 /* We have reached TO_X but not in the line we want. */
9000 skip = move_it_in_display_line_to (it, to_charpos,
9001 -1, MOVE_TO_POS);
9002 if (skip == MOVE_POS_MATCH_OR_ZV)
9004 reached = 4;
9005 break;
9010 else if (op & MOVE_TO_Y)
9012 struct it it_backup;
9014 if (it->line_wrap == WORD_WRAP)
9015 SAVE_IT (it_backup, *it, backup_data);
9017 /* TO_Y specified means stop at TO_X in the line containing
9018 TO_Y---or at TO_CHARPOS if this is reached first. The
9019 problem is that we can't really tell whether the line
9020 contains TO_Y before we have completely scanned it, and
9021 this may skip past TO_X. What we do is to first scan to
9022 TO_X.
9024 If TO_X is not specified, use a TO_X of zero. The reason
9025 is to make the outcome of this function more predictable.
9026 If we didn't use TO_X == 0, we would stop at the end of
9027 the line which is probably not what a caller would expect
9028 to happen. */
9029 skip = move_it_in_display_line_to
9030 (it, to_charpos, ((op & MOVE_TO_X) ? to_x : 0),
9031 (MOVE_TO_X | (op & MOVE_TO_POS)));
9033 /* If TO_CHARPOS is reached or ZV, we don't have to do more. */
9034 if (skip == MOVE_POS_MATCH_OR_ZV)
9035 reached = 5;
9036 else if (skip == MOVE_X_REACHED)
9038 /* If TO_X was reached, we want to know whether TO_Y is
9039 in the line. We know this is the case if the already
9040 scanned glyphs make the line tall enough. Otherwise,
9041 we must check by scanning the rest of the line. */
9042 line_height = it->max_ascent + it->max_descent;
9043 if (to_y >= it->current_y
9044 && to_y < it->current_y + line_height)
9046 reached = 6;
9047 break;
9049 SAVE_IT (it_backup, *it, backup_data);
9050 TRACE_MOVE ((stderr, "move_it: from %d\n", IT_CHARPOS (*it)));
9051 skip2 = move_it_in_display_line_to (it, to_charpos, -1,
9052 op & MOVE_TO_POS);
9053 TRACE_MOVE ((stderr, "move_it: to %d\n", IT_CHARPOS (*it)));
9054 line_height = it->max_ascent + it->max_descent;
9055 TRACE_MOVE ((stderr, "move_it: line_height = %d\n", line_height));
9057 if (to_y >= it->current_y
9058 && to_y < it->current_y + line_height)
9060 /* If TO_Y is in this line and TO_X was reached
9061 above, we scanned too far. We have to restore
9062 IT's settings to the ones before skipping. But
9063 keep the more accurate values of max_ascent and
9064 max_descent we've found while skipping the rest
9065 of the line, for the sake of callers, such as
9066 pos_visible_p, that need to know the line
9067 height. */
9068 int max_ascent = it->max_ascent;
9069 int max_descent = it->max_descent;
9071 RESTORE_IT (it, &it_backup, backup_data);
9072 it->max_ascent = max_ascent;
9073 it->max_descent = max_descent;
9074 reached = 6;
9076 else
9078 skip = skip2;
9079 if (skip == MOVE_POS_MATCH_OR_ZV)
9080 reached = 7;
9083 else
9085 /* Check whether TO_Y is in this line. */
9086 line_height = it->max_ascent + it->max_descent;
9087 TRACE_MOVE ((stderr, "move_it: line_height = %d\n", line_height));
9089 if (to_y >= it->current_y
9090 && to_y < it->current_y + line_height)
9092 if (to_y > it->current_y)
9093 max_current_x = max (it->current_x, max_current_x);
9095 /* When word-wrap is on, TO_X may lie past the end
9096 of a wrapped line. Then it->current is the
9097 character on the next line, so backtrack to the
9098 space before the wrap point. */
9099 if (skip == MOVE_LINE_CONTINUED
9100 && it->line_wrap == WORD_WRAP)
9102 int prev_x = max (it->current_x - 1, 0);
9103 RESTORE_IT (it, &it_backup, backup_data);
9104 skip = move_it_in_display_line_to
9105 (it, -1, prev_x, MOVE_TO_X);
9108 reached = 6;
9112 if (reached)
9114 max_current_x = max (it->current_x, max_current_x);
9115 break;
9118 else if (BUFFERP (it->object)
9119 && (it->method == GET_FROM_BUFFER
9120 || it->method == GET_FROM_STRETCH)
9121 && IT_CHARPOS (*it) >= to_charpos
9122 /* Under bidi iteration, a call to set_iterator_to_next
9123 can scan far beyond to_charpos if the initial
9124 portion of the next line needs to be reordered. In
9125 that case, give move_it_in_display_line_to another
9126 chance below. */
9127 && !(it->bidi_p
9128 && it->bidi_it.scan_dir == -1))
9129 skip = MOVE_POS_MATCH_OR_ZV;
9130 else
9131 skip = move_it_in_display_line_to (it, to_charpos, -1, MOVE_TO_POS);
9133 switch (skip)
9135 case MOVE_POS_MATCH_OR_ZV:
9136 max_current_x = max (it->current_x, max_current_x);
9137 reached = 8;
9138 goto out;
9140 case MOVE_NEWLINE_OR_CR:
9141 max_current_x = max (it->current_x, max_current_x);
9142 set_iterator_to_next (it, true);
9143 it->continuation_lines_width = 0;
9144 break;
9146 case MOVE_LINE_TRUNCATED:
9147 max_current_x = it->last_visible_x;
9148 it->continuation_lines_width = 0;
9149 reseat_at_next_visible_line_start (it, false);
9150 if ((op & MOVE_TO_POS) != 0
9151 && IT_CHARPOS (*it) > to_charpos)
9153 reached = 9;
9154 goto out;
9156 break;
9158 case MOVE_LINE_CONTINUED:
9159 max_current_x = it->last_visible_x;
9160 /* For continued lines ending in a tab, some of the glyphs
9161 associated with the tab are displayed on the current
9162 line. Since it->current_x does not include these glyphs,
9163 we use it->last_visible_x instead. */
9164 if (it->c == '\t')
9166 it->continuation_lines_width += it->last_visible_x;
9167 /* When moving by vpos, ensure that the iterator really
9168 advances to the next line (bug#847, bug#969). Fixme:
9169 do we need to do this in other circumstances? */
9170 if (it->current_x != it->last_visible_x
9171 && (op & MOVE_TO_VPOS)
9172 && !(op & (MOVE_TO_X | MOVE_TO_POS)))
9174 line_start_x = it->current_x + it->pixel_width
9175 - it->last_visible_x;
9176 if (FRAME_WINDOW_P (it->f))
9178 struct face *face = FACE_FROM_ID (it->f, it->face_id);
9179 struct font *face_font = face->font;
9181 /* When display_line produces a continued line
9182 that ends in a TAB, it skips a tab stop that
9183 is closer than the font's space character
9184 width (see x_produce_glyphs where it produces
9185 the stretch glyph which represents a TAB).
9186 We need to reproduce the same logic here. */
9187 eassert (face_font);
9188 if (face_font)
9190 if (line_start_x < face_font->space_width)
9191 line_start_x
9192 += it->tab_width * face_font->space_width;
9195 set_iterator_to_next (it, false);
9198 else
9199 it->continuation_lines_width += it->current_x;
9200 break;
9202 default:
9203 emacs_abort ();
9206 /* Reset/increment for the next run. */
9207 recenter_overlay_lists (current_buffer, IT_CHARPOS (*it));
9208 it->current_x = line_start_x;
9209 line_start_x = 0;
9210 it->hpos = 0;
9211 it->current_y += it->max_ascent + it->max_descent;
9212 ++it->vpos;
9213 last_height = it->max_ascent + it->max_descent;
9214 it->max_ascent = it->max_descent = 0;
9217 out:
9219 /* On text terminals, we may stop at the end of a line in the middle
9220 of a multi-character glyph. If the glyph itself is continued,
9221 i.e. it is actually displayed on the next line, don't treat this
9222 stopping point as valid; move to the next line instead (unless
9223 that brings us offscreen). */
9224 if (!FRAME_WINDOW_P (it->f)
9225 && op & MOVE_TO_POS
9226 && IT_CHARPOS (*it) == to_charpos
9227 && it->what == IT_CHARACTER
9228 && it->nglyphs > 1
9229 && it->line_wrap == WINDOW_WRAP
9230 && it->current_x == it->last_visible_x - 1
9231 && it->c != '\n'
9232 && it->c != '\t'
9233 && it->w->window_end_valid
9234 && it->vpos < it->w->window_end_vpos)
9236 it->continuation_lines_width += it->current_x;
9237 it->current_x = it->hpos = it->max_ascent = it->max_descent = 0;
9238 it->current_y += it->max_ascent + it->max_descent;
9239 ++it->vpos;
9240 last_height = it->max_ascent + it->max_descent;
9243 if (backup_data)
9244 bidi_unshelve_cache (backup_data, true);
9246 TRACE_MOVE ((stderr, "move_it_to: reached %d\n", reached));
9248 return max_current_x;
9252 /* Move iterator IT backward by a specified y-distance DY, DY >= 0.
9254 If DY > 0, move IT backward at least that many pixels. DY = 0
9255 means move IT backward to the preceding line start or BEGV. This
9256 function may move over more than DY pixels if IT->current_y - DY
9257 ends up in the middle of a line; in this case IT->current_y will be
9258 set to the top of the line moved to. */
9260 void
9261 move_it_vertically_backward (struct it *it, int dy)
9263 int nlines, h;
9264 struct it it2, it3;
9265 void *it2data = NULL, *it3data = NULL;
9266 ptrdiff_t start_pos;
9267 int nchars_per_row
9268 = (it->last_visible_x - it->first_visible_x) / FRAME_COLUMN_WIDTH (it->f);
9269 ptrdiff_t pos_limit;
9271 move_further_back:
9272 eassert (dy >= 0);
9274 start_pos = IT_CHARPOS (*it);
9276 /* Estimate how many newlines we must move back. */
9277 nlines = max (1, dy / default_line_pixel_height (it->w));
9278 if (it->line_wrap == TRUNCATE || nchars_per_row == 0)
9279 pos_limit = BEGV;
9280 else
9281 pos_limit = max (start_pos - nlines * nchars_per_row, BEGV);
9283 /* Set the iterator's position that many lines back. But don't go
9284 back more than NLINES full screen lines -- this wins a day with
9285 buffers which have very long lines. */
9286 while (nlines-- && IT_CHARPOS (*it) > pos_limit)
9287 back_to_previous_visible_line_start (it);
9289 /* Reseat the iterator here. When moving backward, we don't want
9290 reseat to skip forward over invisible text, set up the iterator
9291 to deliver from overlay strings at the new position etc. So,
9292 use reseat_1 here. */
9293 reseat_1 (it, it->current.pos, true);
9295 /* We are now surely at a line start. */
9296 it->current_x = it->hpos = 0; /* FIXME: this is incorrect when bidi
9297 reordering is in effect. */
9298 it->continuation_lines_width = 0;
9300 /* Move forward and see what y-distance we moved. First move to the
9301 start of the next line so that we get its height. We need this
9302 height to be able to tell whether we reached the specified
9303 y-distance. */
9304 SAVE_IT (it2, *it, it2data);
9305 it2.max_ascent = it2.max_descent = 0;
9308 move_it_to (&it2, start_pos, -1, -1, it2.vpos + 1,
9309 MOVE_TO_POS | MOVE_TO_VPOS);
9311 while (!(IT_POS_VALID_AFTER_MOVE_P (&it2)
9312 /* If we are in a display string which starts at START_POS,
9313 and that display string includes a newline, and we are
9314 right after that newline (i.e. at the beginning of a
9315 display line), exit the loop, because otherwise we will
9316 infloop, since move_it_to will see that it is already at
9317 START_POS and will not move. */
9318 || (it2.method == GET_FROM_STRING
9319 && IT_CHARPOS (it2) == start_pos
9320 && SREF (it2.string, IT_STRING_BYTEPOS (it2) - 1) == '\n')));
9321 eassert (IT_CHARPOS (*it) >= BEGV);
9322 SAVE_IT (it3, it2, it3data);
9324 move_it_to (&it2, start_pos, -1, -1, -1, MOVE_TO_POS);
9325 eassert (IT_CHARPOS (*it) >= BEGV);
9326 /* H is the actual vertical distance from the position in *IT
9327 and the starting position. */
9328 h = it2.current_y - it->current_y;
9329 /* NLINES is the distance in number of lines. */
9330 nlines = it2.vpos - it->vpos;
9332 /* Correct IT's y and vpos position
9333 so that they are relative to the starting point. */
9334 it->vpos -= nlines;
9335 it->current_y -= h;
9337 if (dy == 0)
9339 /* DY == 0 means move to the start of the screen line. The
9340 value of nlines is > 0 if continuation lines were involved,
9341 or if the original IT position was at start of a line. */
9342 RESTORE_IT (it, it, it2data);
9343 if (nlines > 0)
9344 move_it_by_lines (it, nlines);
9345 /* The above code moves us to some position NLINES down,
9346 usually to its first glyph (leftmost in an L2R line), but
9347 that's not necessarily the start of the line, under bidi
9348 reordering. We want to get to the character position
9349 that is immediately after the newline of the previous
9350 line. */
9351 if (it->bidi_p
9352 && !it->continuation_lines_width
9353 && !STRINGP (it->string)
9354 && IT_CHARPOS (*it) > BEGV
9355 && FETCH_BYTE (IT_BYTEPOS (*it) - 1) != '\n')
9357 ptrdiff_t cp = IT_CHARPOS (*it), bp = IT_BYTEPOS (*it);
9359 DEC_BOTH (cp, bp);
9360 cp = find_newline_no_quit (cp, bp, -1, NULL);
9361 move_it_to (it, cp, -1, -1, -1, MOVE_TO_POS);
9363 bidi_unshelve_cache (it3data, true);
9365 else
9367 /* The y-position we try to reach, relative to *IT.
9368 Note that H has been subtracted in front of the if-statement. */
9369 int target_y = it->current_y + h - dy;
9370 int y0 = it3.current_y;
9371 int y1;
9372 int line_height;
9374 RESTORE_IT (&it3, &it3, it3data);
9375 y1 = line_bottom_y (&it3);
9376 line_height = y1 - y0;
9377 RESTORE_IT (it, it, it2data);
9378 /* If we did not reach target_y, try to move further backward if
9379 we can. If we moved too far backward, try to move forward. */
9380 if (target_y < it->current_y
9381 /* This is heuristic. In a window that's 3 lines high, with
9382 a line height of 13 pixels each, recentering with point
9383 on the bottom line will try to move -39/2 = 19 pixels
9384 backward. Try to avoid moving into the first line. */
9385 && (it->current_y - target_y
9386 > min (window_box_height (it->w), line_height * 2 / 3))
9387 && IT_CHARPOS (*it) > BEGV)
9389 TRACE_MOVE ((stderr, " not far enough -> move_vert %d\n",
9390 target_y - it->current_y));
9391 dy = it->current_y - target_y;
9392 goto move_further_back;
9394 else if (target_y >= it->current_y + line_height
9395 && IT_CHARPOS (*it) < ZV)
9397 /* Should move forward by at least one line, maybe more.
9399 Note: Calling move_it_by_lines can be expensive on
9400 terminal frames, where compute_motion is used (via
9401 vmotion) to do the job, when there are very long lines
9402 and truncate-lines is nil. That's the reason for
9403 treating terminal frames specially here. */
9405 if (!FRAME_WINDOW_P (it->f))
9406 move_it_vertically (it, target_y - (it->current_y + line_height));
9407 else
9411 move_it_by_lines (it, 1);
9413 while (target_y >= line_bottom_y (it) && IT_CHARPOS (*it) < ZV);
9420 /* Move IT by a specified amount of pixel lines DY. DY negative means
9421 move backwards. DY = 0 means move to start of screen line. At the
9422 end, IT will be on the start of a screen line. */
9424 void
9425 move_it_vertically (struct it *it, int dy)
9427 if (dy <= 0)
9428 move_it_vertically_backward (it, -dy);
9429 else
9431 TRACE_MOVE ((stderr, "move_it_v: from %d, %d\n", IT_CHARPOS (*it), dy));
9432 move_it_to (it, ZV, -1, it->current_y + dy, -1,
9433 MOVE_TO_POS | MOVE_TO_Y);
9434 TRACE_MOVE ((stderr, "move_it_v: to %d\n", IT_CHARPOS (*it)));
9436 /* If buffer ends in ZV without a newline, move to the start of
9437 the line to satisfy the post-condition. */
9438 if (IT_CHARPOS (*it) == ZV
9439 && ZV > BEGV
9440 && FETCH_BYTE (IT_BYTEPOS (*it) - 1) != '\n')
9441 move_it_by_lines (it, 0);
9446 /* Move iterator IT past the end of the text line it is in. */
9448 void
9449 move_it_past_eol (struct it *it)
9451 enum move_it_result rc;
9453 rc = move_it_in_display_line_to (it, Z, 0, MOVE_TO_POS);
9454 if (rc == MOVE_NEWLINE_OR_CR)
9455 set_iterator_to_next (it, false);
9459 /* Move IT by a specified number DVPOS of screen lines down. DVPOS
9460 negative means move up. DVPOS == 0 means move to the start of the
9461 screen line.
9463 Optimization idea: If we would know that IT->f doesn't use
9464 a face with proportional font, we could be faster for
9465 truncate-lines nil. */
9467 void
9468 move_it_by_lines (struct it *it, ptrdiff_t dvpos)
9471 /* The commented-out optimization uses vmotion on terminals. This
9472 gives bad results, because elements like it->what, on which
9473 callers such as pos_visible_p rely, aren't updated. */
9474 /* struct position pos;
9475 if (!FRAME_WINDOW_P (it->f))
9477 struct text_pos textpos;
9479 pos = *vmotion (IT_CHARPOS (*it), dvpos, it->w);
9480 SET_TEXT_POS (textpos, pos.bufpos, pos.bytepos);
9481 reseat (it, textpos, true);
9482 it->vpos += pos.vpos;
9483 it->current_y += pos.vpos;
9485 else */
9487 if (dvpos == 0)
9489 /* DVPOS == 0 means move to the start of the screen line. */
9490 move_it_vertically_backward (it, 0);
9491 /* Let next call to line_bottom_y calculate real line height. */
9492 last_height = 0;
9494 else if (dvpos > 0)
9496 move_it_to (it, -1, -1, -1, it->vpos + dvpos, MOVE_TO_VPOS);
9497 if (!IT_POS_VALID_AFTER_MOVE_P (it))
9499 /* Only move to the next buffer position if we ended up in a
9500 string from display property, not in an overlay string
9501 (before-string or after-string). That is because the
9502 latter don't conceal the underlying buffer position, so
9503 we can ask to move the iterator to the exact position we
9504 are interested in. Note that, even if we are already at
9505 IT_CHARPOS (*it), the call below is not a no-op, as it
9506 will detect that we are at the end of the string, pop the
9507 iterator, and compute it->current_x and it->hpos
9508 correctly. */
9509 move_it_to (it, IT_CHARPOS (*it) + it->string_from_display_prop_p,
9510 -1, -1, -1, MOVE_TO_POS);
9513 else
9515 struct it it2;
9516 void *it2data = NULL;
9517 ptrdiff_t start_charpos, i;
9518 int nchars_per_row
9519 = (it->last_visible_x - it->first_visible_x) / FRAME_COLUMN_WIDTH (it->f);
9520 bool hit_pos_limit = false;
9521 ptrdiff_t pos_limit;
9523 /* Start at the beginning of the screen line containing IT's
9524 position. This may actually move vertically backwards,
9525 in case of overlays, so adjust dvpos accordingly. */
9526 dvpos += it->vpos;
9527 move_it_vertically_backward (it, 0);
9528 dvpos -= it->vpos;
9530 /* Go back -DVPOS buffer lines, but no farther than -DVPOS full
9531 screen lines, and reseat the iterator there. */
9532 start_charpos = IT_CHARPOS (*it);
9533 if (it->line_wrap == TRUNCATE || nchars_per_row == 0)
9534 pos_limit = BEGV;
9535 else
9536 pos_limit = max (start_charpos + dvpos * nchars_per_row, BEGV);
9538 for (i = -dvpos; i > 0 && IT_CHARPOS (*it) > pos_limit; --i)
9539 back_to_previous_visible_line_start (it);
9540 if (i > 0 && IT_CHARPOS (*it) <= pos_limit)
9541 hit_pos_limit = true;
9542 reseat (it, it->current.pos, true);
9544 /* Move further back if we end up in a string or an image. */
9545 while (!IT_POS_VALID_AFTER_MOVE_P (it))
9547 /* First try to move to start of display line. */
9548 dvpos += it->vpos;
9549 move_it_vertically_backward (it, 0);
9550 dvpos -= it->vpos;
9551 if (IT_POS_VALID_AFTER_MOVE_P (it))
9552 break;
9553 /* If start of line is still in string or image,
9554 move further back. */
9555 back_to_previous_visible_line_start (it);
9556 reseat (it, it->current.pos, true);
9557 dvpos--;
9560 it->current_x = it->hpos = 0;
9562 /* Above call may have moved too far if continuation lines
9563 are involved. Scan forward and see if it did. */
9564 SAVE_IT (it2, *it, it2data);
9565 it2.vpos = it2.current_y = 0;
9566 move_it_to (&it2, start_charpos, -1, -1, -1, MOVE_TO_POS);
9567 it->vpos -= it2.vpos;
9568 it->current_y -= it2.current_y;
9569 it->current_x = it->hpos = 0;
9571 /* If we moved too far back, move IT some lines forward. */
9572 if (it2.vpos > -dvpos)
9574 int delta = it2.vpos + dvpos;
9576 RESTORE_IT (&it2, &it2, it2data);
9577 SAVE_IT (it2, *it, it2data);
9578 move_it_to (it, -1, -1, -1, it->vpos + delta, MOVE_TO_VPOS);
9579 /* Move back again if we got too far ahead. */
9580 if (IT_CHARPOS (*it) >= start_charpos)
9581 RESTORE_IT (it, &it2, it2data);
9582 else
9583 bidi_unshelve_cache (it2data, true);
9585 else if (hit_pos_limit && pos_limit > BEGV
9586 && dvpos < 0 && it2.vpos < -dvpos)
9588 /* If we hit the limit, but still didn't make it far enough
9589 back, that means there's a display string with a newline
9590 covering a large chunk of text, and that caused
9591 back_to_previous_visible_line_start try to go too far.
9592 Punish those who commit such atrocities by going back
9593 until we've reached DVPOS, after lifting the limit, which
9594 could make it slow for very long lines. "If it hurts,
9595 don't do that!" */
9596 dvpos += it2.vpos;
9597 RESTORE_IT (it, it, it2data);
9598 for (i = -dvpos; i > 0; --i)
9600 back_to_previous_visible_line_start (it);
9601 it->vpos--;
9603 reseat_1 (it, it->current.pos, true);
9605 else
9606 RESTORE_IT (it, it, it2data);
9610 /* Return true if IT points into the middle of a display vector. */
9612 bool
9613 in_display_vector_p (struct it *it)
9615 return (it->method == GET_FROM_DISPLAY_VECTOR
9616 && it->current.dpvec_index > 0
9617 && it->dpvec + it->current.dpvec_index != it->dpend);
9620 DEFUN ("window-text-pixel-size", Fwindow_text_pixel_size, Swindow_text_pixel_size, 0, 6, 0,
9621 doc: /* Return the size of the text of WINDOW's buffer in pixels.
9622 WINDOW must be a live window and defaults to the selected one. The
9623 return value is a cons of the maximum pixel-width of any text line and
9624 the maximum pixel-height of all text lines.
9626 The optional argument FROM, if non-nil, specifies the first text
9627 position and defaults to the minimum accessible position of the buffer.
9628 If FROM is t, use the minimum accessible position that is not a newline
9629 character. TO, if non-nil, specifies the last text position and
9630 defaults to the maximum accessible position of the buffer. If TO is t,
9631 use the maximum accessible position that is not a newline character.
9633 The optional argument X-LIMIT, if non-nil, specifies the maximum text
9634 width that can be returned. X-LIMIT nil or omitted, means to use the
9635 pixel-width of WINDOW's body; use this if you do not intend to change
9636 the width of WINDOW. Use the maximum width WINDOW may assume if you
9637 intend to change WINDOW's width. In any case, text whose x-coordinate
9638 is beyond X-LIMIT is ignored. Since calculating the width of long lines
9639 can take some time, it's always a good idea to make this argument as
9640 small as possible; in particular, if the buffer contains long lines that
9641 shall be truncated anyway.
9643 The optional argument Y-LIMIT, if non-nil, specifies the maximum text
9644 height that can be returned. Text lines whose y-coordinate is beyond
9645 Y-LIMIT are ignored. Since calculating the text height of a large
9646 buffer can take some time, it makes sense to specify this argument if
9647 the size of the buffer is unknown.
9649 Optional argument MODE-AND-HEADER-LINE nil or omitted means do not
9650 include the height of the mode- or header-line of WINDOW in the return
9651 value. If it is either the symbol `mode-line' or `header-line', include
9652 only the height of that line, if present, in the return value. If t,
9653 include the height of both, if present, in the return value. */)
9654 (Lisp_Object window, Lisp_Object from, Lisp_Object to, Lisp_Object x_limit,
9655 Lisp_Object y_limit, Lisp_Object mode_and_header_line)
9657 struct window *w = decode_live_window (window);
9658 Lisp_Object buffer = w->contents;
9659 struct buffer *b;
9660 struct it it;
9661 struct buffer *old_b = NULL;
9662 ptrdiff_t start, end, pos;
9663 struct text_pos startp;
9664 void *itdata = NULL;
9665 int c, max_y = -1, x = 0, y = 0;
9667 CHECK_BUFFER (buffer);
9668 b = XBUFFER (buffer);
9670 if (b != current_buffer)
9672 old_b = current_buffer;
9673 set_buffer_internal (b);
9676 if (NILP (from))
9677 start = BEGV;
9678 else if (EQ (from, Qt))
9680 start = pos = BEGV;
9681 while ((pos++ < ZV) && (c = FETCH_CHAR (pos))
9682 && (c == ' ' || c == '\t' || c == '\n' || c == '\r'))
9683 start = pos;
9684 while ((pos-- > BEGV) && (c = FETCH_CHAR (pos)) && (c == ' ' || c == '\t'))
9685 start = pos;
9687 else
9689 CHECK_NUMBER_COERCE_MARKER (from);
9690 start = min (max (XINT (from), BEGV), ZV);
9693 if (NILP (to))
9694 end = ZV;
9695 else if (EQ (to, Qt))
9697 end = pos = ZV;
9698 while ((pos-- > BEGV) && (c = FETCH_CHAR (pos))
9699 && (c == ' ' || c == '\t' || c == '\n' || c == '\r'))
9700 end = pos;
9701 while ((pos++ < ZV) && (c = FETCH_CHAR (pos)) && (c == ' ' || c == '\t'))
9702 end = pos;
9704 else
9706 CHECK_NUMBER_COERCE_MARKER (to);
9707 end = max (start, min (XINT (to), ZV));
9710 if (!NILP (y_limit))
9712 CHECK_NUMBER (y_limit);
9713 max_y = min (XINT (y_limit), INT_MAX);
9716 itdata = bidi_shelve_cache ();
9717 SET_TEXT_POS (startp, start, CHAR_TO_BYTE (start));
9718 start_display (&it, w, startp);
9720 if (NILP (x_limit))
9721 x = move_it_to (&it, end, -1, max_y, -1, MOVE_TO_POS | MOVE_TO_Y);
9722 else
9724 CHECK_NUMBER (x_limit);
9725 it.last_visible_x = min (XINT (x_limit), INFINITY);
9726 /* Actually, we never want move_it_to stop at to_x. But to make
9727 sure that move_it_in_display_line_to always moves far enough,
9728 we set it to INT_MAX and specify MOVE_TO_X. */
9729 x = move_it_to (&it, end, INT_MAX, max_y, -1,
9730 MOVE_TO_POS | MOVE_TO_X | MOVE_TO_Y);
9733 y = it.current_y + it.max_ascent + it.max_descent;
9735 if (!EQ (mode_and_header_line, Qheader_line)
9736 && !EQ (mode_and_header_line, Qt))
9737 /* Do not count the header-line which was counted automatically by
9738 start_display. */
9739 y = y - WINDOW_HEADER_LINE_HEIGHT (w);
9741 if (EQ (mode_and_header_line, Qmode_line)
9742 || EQ (mode_and_header_line, Qt))
9743 /* Do count the mode-line which is not included automatically by
9744 start_display. */
9745 y = y + WINDOW_MODE_LINE_HEIGHT (w);
9747 bidi_unshelve_cache (itdata, false);
9749 if (old_b)
9750 set_buffer_internal (old_b);
9752 return Fcons (make_number (x), make_number (y));
9755 /***********************************************************************
9756 Messages
9757 ***********************************************************************/
9760 /* Add a message with format string FORMAT and arguments ARG1 and ARG2
9761 to *Messages*. */
9763 void
9764 add_to_log (const char *format, Lisp_Object arg1, Lisp_Object arg2)
9766 Lisp_Object msg, fmt;
9767 char *buffer;
9768 ptrdiff_t len;
9769 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4;
9770 USE_SAFE_ALLOCA;
9772 fmt = msg = Qnil;
9773 GCPRO4 (fmt, msg, arg1, arg2);
9775 fmt = build_string (format);
9776 msg = CALLN (Fformat, fmt, arg1, arg2);
9778 len = SBYTES (msg) + 1;
9779 buffer = SAFE_ALLOCA (len);
9780 memcpy (buffer, SDATA (msg), len);
9782 message_dolog (buffer, len - 1, true, false);
9783 SAFE_FREE ();
9785 UNGCPRO;
9789 /* Output a newline in the *Messages* buffer if "needs" one. */
9791 void
9792 message_log_maybe_newline (void)
9794 if (message_log_need_newline)
9795 message_dolog ("", 0, true, false);
9799 /* Add a string M of length NBYTES to the message log, optionally
9800 terminated with a newline when NLFLAG is true. MULTIBYTE, if
9801 true, means interpret the contents of M as multibyte. This
9802 function calls low-level routines in order to bypass text property
9803 hooks, etc. which might not be safe to run.
9805 This may GC (insert may run before/after change hooks),
9806 so the buffer M must NOT point to a Lisp string. */
9808 void
9809 message_dolog (const char *m, ptrdiff_t nbytes, bool nlflag, bool multibyte)
9811 const unsigned char *msg = (const unsigned char *) m;
9813 if (!NILP (Vmemory_full))
9814 return;
9816 if (!NILP (Vmessage_log_max))
9818 struct buffer *oldbuf;
9819 Lisp_Object oldpoint, oldbegv, oldzv;
9820 int old_windows_or_buffers_changed = windows_or_buffers_changed;
9821 ptrdiff_t point_at_end = 0;
9822 ptrdiff_t zv_at_end = 0;
9823 Lisp_Object old_deactivate_mark;
9824 struct gcpro gcpro1;
9826 old_deactivate_mark = Vdeactivate_mark;
9827 oldbuf = current_buffer;
9829 /* Ensure the Messages buffer exists, and switch to it.
9830 If we created it, set the major-mode. */
9831 bool newbuffer = NILP (Fget_buffer (Vmessages_buffer_name));
9832 Fset_buffer (Fget_buffer_create (Vmessages_buffer_name));
9833 if (newbuffer
9834 && !NILP (Ffboundp (intern ("messages-buffer-mode"))))
9835 call0 (intern ("messages-buffer-mode"));
9837 bset_undo_list (current_buffer, Qt);
9838 bset_cache_long_scans (current_buffer, Qnil);
9840 oldpoint = message_dolog_marker1;
9841 set_marker_restricted_both (oldpoint, Qnil, PT, PT_BYTE);
9842 oldbegv = message_dolog_marker2;
9843 set_marker_restricted_both (oldbegv, Qnil, BEGV, BEGV_BYTE);
9844 oldzv = message_dolog_marker3;
9845 set_marker_restricted_both (oldzv, Qnil, ZV, ZV_BYTE);
9846 GCPRO1 (old_deactivate_mark);
9848 if (PT == Z)
9849 point_at_end = 1;
9850 if (ZV == Z)
9851 zv_at_end = 1;
9853 BEGV = BEG;
9854 BEGV_BYTE = BEG_BYTE;
9855 ZV = Z;
9856 ZV_BYTE = Z_BYTE;
9857 TEMP_SET_PT_BOTH (Z, Z_BYTE);
9859 /* Insert the string--maybe converting multibyte to single byte
9860 or vice versa, so that all the text fits the buffer. */
9861 if (multibyte
9862 && NILP (BVAR (current_buffer, enable_multibyte_characters)))
9864 ptrdiff_t i;
9865 int c, char_bytes;
9866 char work[1];
9868 /* Convert a multibyte string to single-byte
9869 for the *Message* buffer. */
9870 for (i = 0; i < nbytes; i += char_bytes)
9872 c = string_char_and_length (msg + i, &char_bytes);
9873 work[0] = CHAR_TO_BYTE8 (c);
9874 insert_1_both (work, 1, 1, true, false, false);
9877 else if (! multibyte
9878 && ! NILP (BVAR (current_buffer, enable_multibyte_characters)))
9880 ptrdiff_t i;
9881 int c, char_bytes;
9882 unsigned char str[MAX_MULTIBYTE_LENGTH];
9883 /* Convert a single-byte string to multibyte
9884 for the *Message* buffer. */
9885 for (i = 0; i < nbytes; i++)
9887 c = msg[i];
9888 MAKE_CHAR_MULTIBYTE (c);
9889 char_bytes = CHAR_STRING (c, str);
9890 insert_1_both ((char *) str, 1, char_bytes, true, false, false);
9893 else if (nbytes)
9894 insert_1_both (m, chars_in_text (msg, nbytes), nbytes,
9895 true, false, false);
9897 if (nlflag)
9899 ptrdiff_t this_bol, this_bol_byte, prev_bol, prev_bol_byte;
9900 printmax_t dups;
9902 insert_1_both ("\n", 1, 1, true, false, false);
9904 scan_newline (Z, Z_BYTE, BEG, BEG_BYTE, -2, false);
9905 this_bol = PT;
9906 this_bol_byte = PT_BYTE;
9908 /* See if this line duplicates the previous one.
9909 If so, combine duplicates. */
9910 if (this_bol > BEG)
9912 scan_newline (PT, PT_BYTE, BEG, BEG_BYTE, -2, false);
9913 prev_bol = PT;
9914 prev_bol_byte = PT_BYTE;
9916 dups = message_log_check_duplicate (prev_bol_byte,
9917 this_bol_byte);
9918 if (dups)
9920 del_range_both (prev_bol, prev_bol_byte,
9921 this_bol, this_bol_byte, false);
9922 if (dups > 1)
9924 char dupstr[sizeof " [ times]"
9925 + INT_STRLEN_BOUND (printmax_t)];
9927 /* If you change this format, don't forget to also
9928 change message_log_check_duplicate. */
9929 int duplen = sprintf (dupstr, " [%"pMd" times]", dups);
9930 TEMP_SET_PT_BOTH (Z - 1, Z_BYTE - 1);
9931 insert_1_both (dupstr, duplen, duplen,
9932 true, false, true);
9937 /* If we have more than the desired maximum number of lines
9938 in the *Messages* buffer now, delete the oldest ones.
9939 This is safe because we don't have undo in this buffer. */
9941 if (NATNUMP (Vmessage_log_max))
9943 scan_newline (Z, Z_BYTE, BEG, BEG_BYTE,
9944 -XFASTINT (Vmessage_log_max) - 1, false);
9945 del_range_both (BEG, BEG_BYTE, PT, PT_BYTE, false);
9948 BEGV = marker_position (oldbegv);
9949 BEGV_BYTE = marker_byte_position (oldbegv);
9951 if (zv_at_end)
9953 ZV = Z;
9954 ZV_BYTE = Z_BYTE;
9956 else
9958 ZV = marker_position (oldzv);
9959 ZV_BYTE = marker_byte_position (oldzv);
9962 if (point_at_end)
9963 TEMP_SET_PT_BOTH (Z, Z_BYTE);
9964 else
9965 /* We can't do Fgoto_char (oldpoint) because it will run some
9966 Lisp code. */
9967 TEMP_SET_PT_BOTH (marker_position (oldpoint),
9968 marker_byte_position (oldpoint));
9970 UNGCPRO;
9971 unchain_marker (XMARKER (oldpoint));
9972 unchain_marker (XMARKER (oldbegv));
9973 unchain_marker (XMARKER (oldzv));
9975 /* We called insert_1_both above with its 5th argument (PREPARE)
9976 false, which prevents insert_1_both from calling
9977 prepare_to_modify_buffer, which in turns prevents us from
9978 incrementing windows_or_buffers_changed even if *Messages* is
9979 shown in some window. So we must manually set
9980 windows_or_buffers_changed here to make up for that. */
9981 windows_or_buffers_changed = old_windows_or_buffers_changed;
9982 bset_redisplay (current_buffer);
9984 set_buffer_internal (oldbuf);
9986 message_log_need_newline = !nlflag;
9987 Vdeactivate_mark = old_deactivate_mark;
9992 /* We are at the end of the buffer after just having inserted a newline.
9993 (Note: We depend on the fact we won't be crossing the gap.)
9994 Check to see if the most recent message looks a lot like the previous one.
9995 Return 0 if different, 1 if the new one should just replace it, or a
9996 value N > 1 if we should also append " [N times]". */
9998 static intmax_t
9999 message_log_check_duplicate (ptrdiff_t prev_bol_byte, ptrdiff_t this_bol_byte)
10001 ptrdiff_t i;
10002 ptrdiff_t len = Z_BYTE - 1 - this_bol_byte;
10003 bool seen_dots = false;
10004 unsigned char *p1 = BUF_BYTE_ADDRESS (current_buffer, prev_bol_byte);
10005 unsigned char *p2 = BUF_BYTE_ADDRESS (current_buffer, this_bol_byte);
10007 for (i = 0; i < len; i++)
10009 if (i >= 3 && p1[i - 3] == '.' && p1[i - 2] == '.' && p1[i - 1] == '.')
10010 seen_dots = true;
10011 if (p1[i] != p2[i])
10012 return seen_dots;
10014 p1 += len;
10015 if (*p1 == '\n')
10016 return 2;
10017 if (*p1++ == ' ' && *p1++ == '[')
10019 char *pend;
10020 intmax_t n = strtoimax ((char *) p1, &pend, 10);
10021 if (0 < n && n < INTMAX_MAX && strncmp (pend, " times]\n", 8) == 0)
10022 return n + 1;
10024 return 0;
10028 /* Display an echo area message M with a specified length of NBYTES
10029 bytes. The string may include null characters. If M is not a
10030 string, clear out any existing message, and let the mini-buffer
10031 text show through.
10033 This function cancels echoing. */
10035 void
10036 message3 (Lisp_Object m)
10038 struct gcpro gcpro1;
10040 GCPRO1 (m);
10041 clear_message (true, true);
10042 cancel_echoing ();
10044 /* First flush out any partial line written with print. */
10045 message_log_maybe_newline ();
10046 if (STRINGP (m))
10048 ptrdiff_t nbytes = SBYTES (m);
10049 bool multibyte = STRING_MULTIBYTE (m);
10050 char *buffer;
10051 USE_SAFE_ALLOCA;
10052 SAFE_ALLOCA_STRING (buffer, m);
10053 message_dolog (buffer, nbytes, true, multibyte);
10054 SAFE_FREE ();
10056 if (! inhibit_message)
10057 message3_nolog (m);
10058 UNGCPRO;
10062 /* The non-logging version of message3.
10063 This does not cancel echoing, because it is used for echoing.
10064 Perhaps we need to make a separate function for echoing
10065 and make this cancel echoing. */
10067 void
10068 message3_nolog (Lisp_Object m)
10070 struct frame *sf = SELECTED_FRAME ();
10072 if (FRAME_INITIAL_P (sf))
10074 if (noninteractive_need_newline)
10075 putc ('\n', stderr);
10076 noninteractive_need_newline = false;
10077 if (STRINGP (m))
10079 Lisp_Object s = ENCODE_SYSTEM (m);
10081 fwrite (SDATA (s), SBYTES (s), 1, stderr);
10083 if (!cursor_in_echo_area)
10084 fprintf (stderr, "\n");
10085 fflush (stderr);
10087 /* Error messages get reported properly by cmd_error, so this must be just an
10088 informative message; if the frame hasn't really been initialized yet, just
10089 toss it. */
10090 else if (INTERACTIVE && sf->glyphs_initialized_p)
10092 /* Get the frame containing the mini-buffer
10093 that the selected frame is using. */
10094 Lisp_Object mini_window = FRAME_MINIBUF_WINDOW (sf);
10095 Lisp_Object frame = XWINDOW (mini_window)->frame;
10096 struct frame *f = XFRAME (frame);
10098 if (FRAME_VISIBLE_P (sf) && !FRAME_VISIBLE_P (f))
10099 Fmake_frame_visible (frame);
10101 if (STRINGP (m) && SCHARS (m) > 0)
10103 set_message (m);
10104 if (minibuffer_auto_raise)
10105 Fraise_frame (frame);
10106 /* Assume we are not echoing.
10107 (If we are, echo_now will override this.) */
10108 echo_message_buffer = Qnil;
10110 else
10111 clear_message (true, true);
10113 do_pending_window_change (false);
10114 echo_area_display (true);
10115 do_pending_window_change (false);
10116 if (FRAME_TERMINAL (f)->frame_up_to_date_hook)
10117 (*FRAME_TERMINAL (f)->frame_up_to_date_hook) (f);
10122 /* Display a null-terminated echo area message M. If M is 0, clear
10123 out any existing message, and let the mini-buffer text show through.
10125 The buffer M must continue to exist until after the echo area gets
10126 cleared or some other message gets displayed there. Do not pass
10127 text that is stored in a Lisp string. Do not pass text in a buffer
10128 that was alloca'd. */
10130 void
10131 message1 (const char *m)
10133 message3 (m ? build_unibyte_string (m) : Qnil);
10137 /* The non-logging counterpart of message1. */
10139 void
10140 message1_nolog (const char *m)
10142 message3_nolog (m ? build_unibyte_string (m) : Qnil);
10145 /* Display a message M which contains a single %s
10146 which gets replaced with STRING. */
10148 void
10149 message_with_string (const char *m, Lisp_Object string, bool log)
10151 CHECK_STRING (string);
10153 if (noninteractive)
10155 if (m)
10157 /* ENCODE_SYSTEM below can GC and/or relocate the
10158 Lisp data, so make sure we don't use it here. */
10159 eassert (relocatable_string_data_p (m) != 1);
10161 if (noninteractive_need_newline)
10162 putc ('\n', stderr);
10163 noninteractive_need_newline = false;
10164 fprintf (stderr, m, SDATA (ENCODE_SYSTEM (string)));
10165 if (!cursor_in_echo_area)
10166 fprintf (stderr, "\n");
10167 fflush (stderr);
10170 else if (INTERACTIVE)
10172 /* The frame whose minibuffer we're going to display the message on.
10173 It may be larger than the selected frame, so we need
10174 to use its buffer, not the selected frame's buffer. */
10175 Lisp_Object mini_window;
10176 struct frame *f, *sf = SELECTED_FRAME ();
10178 /* Get the frame containing the minibuffer
10179 that the selected frame is using. */
10180 mini_window = FRAME_MINIBUF_WINDOW (sf);
10181 f = XFRAME (WINDOW_FRAME (XWINDOW (mini_window)));
10183 /* Error messages get reported properly by cmd_error, so this must be
10184 just an informative message; if the frame hasn't really been
10185 initialized yet, just toss it. */
10186 if (f->glyphs_initialized_p)
10188 struct gcpro gcpro1, gcpro2;
10190 Lisp_Object fmt = build_string (m);
10191 Lisp_Object msg = string;
10192 GCPRO2 (fmt, msg);
10194 msg = CALLN (Fformat, fmt, msg);
10196 if (log)
10197 message3 (msg);
10198 else
10199 message3_nolog (msg);
10201 UNGCPRO;
10203 /* Print should start at the beginning of the message
10204 buffer next time. */
10205 message_buf_print = false;
10211 /* Dump an informative message to the minibuf. If M is 0, clear out
10212 any existing message, and let the mini-buffer text show through. */
10214 static void ATTRIBUTE_FORMAT_PRINTF (1, 0)
10215 vmessage (const char *m, va_list ap)
10217 if (noninteractive)
10219 if (m)
10221 if (noninteractive_need_newline)
10222 putc ('\n', stderr);
10223 noninteractive_need_newline = false;
10224 vfprintf (stderr, m, ap);
10225 if (!cursor_in_echo_area)
10226 fprintf (stderr, "\n");
10227 fflush (stderr);
10230 else if (INTERACTIVE)
10232 /* The frame whose mini-buffer we're going to display the message
10233 on. It may be larger than the selected frame, so we need to
10234 use its buffer, not the selected frame's buffer. */
10235 Lisp_Object mini_window;
10236 struct frame *f, *sf = SELECTED_FRAME ();
10238 /* Get the frame containing the mini-buffer
10239 that the selected frame is using. */
10240 mini_window = FRAME_MINIBUF_WINDOW (sf);
10241 f = XFRAME (WINDOW_FRAME (XWINDOW (mini_window)));
10243 /* Error messages get reported properly by cmd_error, so this must be
10244 just an informative message; if the frame hasn't really been
10245 initialized yet, just toss it. */
10246 if (f->glyphs_initialized_p)
10248 if (m)
10250 ptrdiff_t len;
10251 ptrdiff_t maxsize = FRAME_MESSAGE_BUF_SIZE (f);
10252 USE_SAFE_ALLOCA;
10253 char *message_buf = SAFE_ALLOCA (maxsize + 1);
10255 len = doprnt (message_buf, maxsize, m, 0, ap);
10257 message3 (make_string (message_buf, len));
10258 SAFE_FREE ();
10260 else
10261 message1 (0);
10263 /* Print should start at the beginning of the message
10264 buffer next time. */
10265 message_buf_print = false;
10270 void
10271 message (const char *m, ...)
10273 va_list ap;
10274 va_start (ap, m);
10275 vmessage (m, ap);
10276 va_end (ap);
10280 #if false
10281 /* The non-logging version of message. */
10283 void
10284 message_nolog (const char *m, ...)
10286 Lisp_Object old_log_max;
10287 va_list ap;
10288 va_start (ap, m);
10289 old_log_max = Vmessage_log_max;
10290 Vmessage_log_max = Qnil;
10291 vmessage (m, ap);
10292 Vmessage_log_max = old_log_max;
10293 va_end (ap);
10295 #endif
10298 /* Display the current message in the current mini-buffer. This is
10299 only called from error handlers in process.c, and is not time
10300 critical. */
10302 void
10303 update_echo_area (void)
10305 if (!NILP (echo_area_buffer[0]))
10307 Lisp_Object string;
10308 string = Fcurrent_message ();
10309 message3 (string);
10314 /* Make sure echo area buffers in `echo_buffers' are live.
10315 If they aren't, make new ones. */
10317 static void
10318 ensure_echo_area_buffers (void)
10320 int i;
10322 for (i = 0; i < 2; ++i)
10323 if (!BUFFERP (echo_buffer[i])
10324 || !BUFFER_LIVE_P (XBUFFER (echo_buffer[i])))
10326 char name[30];
10327 Lisp_Object old_buffer;
10328 int j;
10330 old_buffer = echo_buffer[i];
10331 echo_buffer[i] = Fget_buffer_create
10332 (make_formatted_string (name, " *Echo Area %d*", i));
10333 bset_truncate_lines (XBUFFER (echo_buffer[i]), Qnil);
10334 /* to force word wrap in echo area -
10335 it was decided to postpone this*/
10336 /* XBUFFER (echo_buffer[i])->word_wrap = Qt; */
10338 for (j = 0; j < 2; ++j)
10339 if (EQ (old_buffer, echo_area_buffer[j]))
10340 echo_area_buffer[j] = echo_buffer[i];
10345 /* Call FN with args A1..A2 with either the current or last displayed
10346 echo_area_buffer as current buffer.
10348 WHICH zero means use the current message buffer
10349 echo_area_buffer[0]. If that is nil, choose a suitable buffer
10350 from echo_buffer[] and clear it.
10352 WHICH > 0 means use echo_area_buffer[1]. If that is nil, choose a
10353 suitable buffer from echo_buffer[] and clear it.
10355 If WHICH < 0, set echo_area_buffer[1] to echo_area_buffer[0], so
10356 that the current message becomes the last displayed one, make
10357 choose a suitable buffer for echo_area_buffer[0], and clear it.
10359 Value is what FN returns. */
10361 static bool
10362 with_echo_area_buffer (struct window *w, int which,
10363 bool (*fn) (ptrdiff_t, Lisp_Object),
10364 ptrdiff_t a1, Lisp_Object a2)
10366 Lisp_Object buffer;
10367 bool this_one, the_other, clear_buffer_p, rc;
10368 ptrdiff_t count = SPECPDL_INDEX ();
10370 /* If buffers aren't live, make new ones. */
10371 ensure_echo_area_buffers ();
10373 clear_buffer_p = false;
10375 if (which == 0)
10376 this_one = false, the_other = true;
10377 else if (which > 0)
10378 this_one = true, the_other = false;
10379 else
10381 this_one = false, the_other = true;
10382 clear_buffer_p = true;
10384 /* We need a fresh one in case the current echo buffer equals
10385 the one containing the last displayed echo area message. */
10386 if (!NILP (echo_area_buffer[this_one])
10387 && EQ (echo_area_buffer[this_one], echo_area_buffer[the_other]))
10388 echo_area_buffer[this_one] = Qnil;
10391 /* Choose a suitable buffer from echo_buffer[] is we don't
10392 have one. */
10393 if (NILP (echo_area_buffer[this_one]))
10395 echo_area_buffer[this_one]
10396 = (EQ (echo_area_buffer[the_other], echo_buffer[this_one])
10397 ? echo_buffer[the_other]
10398 : echo_buffer[this_one]);
10399 clear_buffer_p = true;
10402 buffer = echo_area_buffer[this_one];
10404 /* Don't get confused by reusing the buffer used for echoing
10405 for a different purpose. */
10406 if (echo_kboard == NULL && EQ (buffer, echo_message_buffer))
10407 cancel_echoing ();
10409 record_unwind_protect (unwind_with_echo_area_buffer,
10410 with_echo_area_buffer_unwind_data (w));
10412 /* Make the echo area buffer current. Note that for display
10413 purposes, it is not necessary that the displayed window's buffer
10414 == current_buffer, except for text property lookup. So, let's
10415 only set that buffer temporarily here without doing a full
10416 Fset_window_buffer. We must also change w->pointm, though,
10417 because otherwise an assertions in unshow_buffer fails, and Emacs
10418 aborts. */
10419 set_buffer_internal_1 (XBUFFER (buffer));
10420 if (w)
10422 wset_buffer (w, buffer);
10423 set_marker_both (w->pointm, buffer, BEG, BEG_BYTE);
10424 set_marker_both (w->old_pointm, buffer, BEG, BEG_BYTE);
10427 bset_undo_list (current_buffer, Qt);
10428 bset_read_only (current_buffer, Qnil);
10429 specbind (Qinhibit_read_only, Qt);
10430 specbind (Qinhibit_modification_hooks, Qt);
10432 if (clear_buffer_p && Z > BEG)
10433 del_range (BEG, Z);
10435 eassert (BEGV >= BEG);
10436 eassert (ZV <= Z && ZV >= BEGV);
10438 rc = fn (a1, a2);
10440 eassert (BEGV >= BEG);
10441 eassert (ZV <= Z && ZV >= BEGV);
10443 unbind_to (count, Qnil);
10444 return rc;
10448 /* Save state that should be preserved around the call to the function
10449 FN called in with_echo_area_buffer. */
10451 static Lisp_Object
10452 with_echo_area_buffer_unwind_data (struct window *w)
10454 int i = 0;
10455 Lisp_Object vector, tmp;
10457 /* Reduce consing by keeping one vector in
10458 Vwith_echo_area_save_vector. */
10459 vector = Vwith_echo_area_save_vector;
10460 Vwith_echo_area_save_vector = Qnil;
10462 if (NILP (vector))
10463 vector = Fmake_vector (make_number (11), Qnil);
10465 XSETBUFFER (tmp, current_buffer); ASET (vector, i, tmp); ++i;
10466 ASET (vector, i, Vdeactivate_mark); ++i;
10467 ASET (vector, i, make_number (windows_or_buffers_changed)); ++i;
10469 if (w)
10471 XSETWINDOW (tmp, w); ASET (vector, i, tmp); ++i;
10472 ASET (vector, i, w->contents); ++i;
10473 ASET (vector, i, make_number (marker_position (w->pointm))); ++i;
10474 ASET (vector, i, make_number (marker_byte_position (w->pointm))); ++i;
10475 ASET (vector, i, make_number (marker_position (w->old_pointm))); ++i;
10476 ASET (vector, i, make_number (marker_byte_position (w->old_pointm))); ++i;
10477 ASET (vector, i, make_number (marker_position (w->start))); ++i;
10478 ASET (vector, i, make_number (marker_byte_position (w->start))); ++i;
10480 else
10482 int end = i + 8;
10483 for (; i < end; ++i)
10484 ASET (vector, i, Qnil);
10487 eassert (i == ASIZE (vector));
10488 return vector;
10492 /* Restore global state from VECTOR which was created by
10493 with_echo_area_buffer_unwind_data. */
10495 static void
10496 unwind_with_echo_area_buffer (Lisp_Object vector)
10498 set_buffer_internal_1 (XBUFFER (AREF (vector, 0)));
10499 Vdeactivate_mark = AREF (vector, 1);
10500 windows_or_buffers_changed = XFASTINT (AREF (vector, 2));
10502 if (WINDOWP (AREF (vector, 3)))
10504 struct window *w;
10505 Lisp_Object buffer;
10507 w = XWINDOW (AREF (vector, 3));
10508 buffer = AREF (vector, 4);
10510 wset_buffer (w, buffer);
10511 set_marker_both (w->pointm, buffer,
10512 XFASTINT (AREF (vector, 5)),
10513 XFASTINT (AREF (vector, 6)));
10514 set_marker_both (w->old_pointm, buffer,
10515 XFASTINT (AREF (vector, 7)),
10516 XFASTINT (AREF (vector, 8)));
10517 set_marker_both (w->start, buffer,
10518 XFASTINT (AREF (vector, 9)),
10519 XFASTINT (AREF (vector, 10)));
10522 Vwith_echo_area_save_vector = vector;
10526 /* Set up the echo area for use by print functions. MULTIBYTE_P
10527 means we will print multibyte. */
10529 void
10530 setup_echo_area_for_printing (bool multibyte_p)
10532 /* If we can't find an echo area any more, exit. */
10533 if (! FRAME_LIVE_P (XFRAME (selected_frame)))
10534 Fkill_emacs (Qnil);
10536 ensure_echo_area_buffers ();
10538 if (!message_buf_print)
10540 /* A message has been output since the last time we printed.
10541 Choose a fresh echo area buffer. */
10542 if (EQ (echo_area_buffer[1], echo_buffer[0]))
10543 echo_area_buffer[0] = echo_buffer[1];
10544 else
10545 echo_area_buffer[0] = echo_buffer[0];
10547 /* Switch to that buffer and clear it. */
10548 set_buffer_internal (XBUFFER (echo_area_buffer[0]));
10549 bset_truncate_lines (current_buffer, Qnil);
10551 if (Z > BEG)
10553 ptrdiff_t count = SPECPDL_INDEX ();
10554 specbind (Qinhibit_read_only, Qt);
10555 /* Note that undo recording is always disabled. */
10556 del_range (BEG, Z);
10557 unbind_to (count, Qnil);
10559 TEMP_SET_PT_BOTH (BEG, BEG_BYTE);
10561 /* Set up the buffer for the multibyteness we need. */
10562 if (multibyte_p
10563 != !NILP (BVAR (current_buffer, enable_multibyte_characters)))
10564 Fset_buffer_multibyte (multibyte_p ? Qt : Qnil);
10566 /* Raise the frame containing the echo area. */
10567 if (minibuffer_auto_raise)
10569 struct frame *sf = SELECTED_FRAME ();
10570 Lisp_Object mini_window;
10571 mini_window = FRAME_MINIBUF_WINDOW (sf);
10572 Fraise_frame (WINDOW_FRAME (XWINDOW (mini_window)));
10575 message_log_maybe_newline ();
10576 message_buf_print = true;
10578 else
10580 if (NILP (echo_area_buffer[0]))
10582 if (EQ (echo_area_buffer[1], echo_buffer[0]))
10583 echo_area_buffer[0] = echo_buffer[1];
10584 else
10585 echo_area_buffer[0] = echo_buffer[0];
10588 if (current_buffer != XBUFFER (echo_area_buffer[0]))
10590 /* Someone switched buffers between print requests. */
10591 set_buffer_internal (XBUFFER (echo_area_buffer[0]));
10592 bset_truncate_lines (current_buffer, Qnil);
10598 /* Display an echo area message in window W. Value is true if W's
10599 height is changed. If display_last_displayed_message_p,
10600 display the message that was last displayed, otherwise
10601 display the current message. */
10603 static bool
10604 display_echo_area (struct window *w)
10606 bool no_message_p, window_height_changed_p;
10608 /* Temporarily disable garbage collections while displaying the echo
10609 area. This is done because a GC can print a message itself.
10610 That message would modify the echo area buffer's contents while a
10611 redisplay of the buffer is going on, and seriously confuse
10612 redisplay. */
10613 ptrdiff_t count = inhibit_garbage_collection ();
10615 /* If there is no message, we must call display_echo_area_1
10616 nevertheless because it resizes the window. But we will have to
10617 reset the echo_area_buffer in question to nil at the end because
10618 with_echo_area_buffer will sets it to an empty buffer. */
10619 bool i = display_last_displayed_message_p;
10620 no_message_p = NILP (echo_area_buffer[i]);
10622 window_height_changed_p
10623 = with_echo_area_buffer (w, display_last_displayed_message_p,
10624 display_echo_area_1,
10625 (intptr_t) w, Qnil);
10627 if (no_message_p)
10628 echo_area_buffer[i] = Qnil;
10630 unbind_to (count, Qnil);
10631 return window_height_changed_p;
10635 /* Helper for display_echo_area. Display the current buffer which
10636 contains the current echo area message in window W, a mini-window,
10637 a pointer to which is passed in A1. A2..A4 are currently not used.
10638 Change the height of W so that all of the message is displayed.
10639 Value is true if height of W was changed. */
10641 static bool
10642 display_echo_area_1 (ptrdiff_t a1, Lisp_Object a2)
10644 intptr_t i1 = a1;
10645 struct window *w = (struct window *) i1;
10646 Lisp_Object window;
10647 struct text_pos start;
10649 /* Do this before displaying, so that we have a large enough glyph
10650 matrix for the display. If we can't get enough space for the
10651 whole text, display the last N lines. That works by setting w->start. */
10652 bool window_height_changed_p = resize_mini_window (w, false);
10654 /* Use the starting position chosen by resize_mini_window. */
10655 SET_TEXT_POS_FROM_MARKER (start, w->start);
10657 /* Display. */
10658 clear_glyph_matrix (w->desired_matrix);
10659 XSETWINDOW (window, w);
10660 try_window (window, start, 0);
10662 return window_height_changed_p;
10666 /* Resize the echo area window to exactly the size needed for the
10667 currently displayed message, if there is one. If a mini-buffer
10668 is active, don't shrink it. */
10670 void
10671 resize_echo_area_exactly (void)
10673 if (BUFFERP (echo_area_buffer[0])
10674 && WINDOWP (echo_area_window))
10676 struct window *w = XWINDOW (echo_area_window);
10677 Lisp_Object resize_exactly = (minibuf_level == 0 ? Qt : Qnil);
10678 bool resized_p = with_echo_area_buffer (w, 0, resize_mini_window_1,
10679 (intptr_t) w, resize_exactly);
10680 if (resized_p)
10682 windows_or_buffers_changed = 42;
10683 update_mode_lines = 30;
10684 redisplay_internal ();
10690 /* Callback function for with_echo_area_buffer, when used from
10691 resize_echo_area_exactly. A1 contains a pointer to the window to
10692 resize, EXACTLY non-nil means resize the mini-window exactly to the
10693 size of the text displayed. A3 and A4 are not used. Value is what
10694 resize_mini_window returns. */
10696 static bool
10697 resize_mini_window_1 (ptrdiff_t a1, Lisp_Object exactly)
10699 intptr_t i1 = a1;
10700 return resize_mini_window ((struct window *) i1, !NILP (exactly));
10704 /* Resize mini-window W to fit the size of its contents. EXACT_P
10705 means size the window exactly to the size needed. Otherwise, it's
10706 only enlarged until W's buffer is empty.
10708 Set W->start to the right place to begin display. If the whole
10709 contents fit, start at the beginning. Otherwise, start so as
10710 to make the end of the contents appear. This is particularly
10711 important for y-or-n-p, but seems desirable generally.
10713 Value is true if the window height has been changed. */
10715 bool
10716 resize_mini_window (struct window *w, bool exact_p)
10718 struct frame *f = XFRAME (w->frame);
10719 bool window_height_changed_p = false;
10721 eassert (MINI_WINDOW_P (w));
10723 /* By default, start display at the beginning. */
10724 set_marker_both (w->start, w->contents,
10725 BUF_BEGV (XBUFFER (w->contents)),
10726 BUF_BEGV_BYTE (XBUFFER (w->contents)));
10728 /* Don't resize windows while redisplaying a window; it would
10729 confuse redisplay functions when the size of the window they are
10730 displaying changes from under them. Such a resizing can happen,
10731 for instance, when which-func prints a long message while
10732 we are running fontification-functions. We're running these
10733 functions with safe_call which binds inhibit-redisplay to t. */
10734 if (!NILP (Vinhibit_redisplay))
10735 return false;
10737 /* Nil means don't try to resize. */
10738 if (NILP (Vresize_mini_windows)
10739 || (FRAME_X_P (f) && FRAME_X_OUTPUT (f) == NULL))
10740 return false;
10742 if (!FRAME_MINIBUF_ONLY_P (f))
10744 struct it it;
10745 int total_height = (WINDOW_PIXEL_HEIGHT (XWINDOW (FRAME_ROOT_WINDOW (f)))
10746 + WINDOW_PIXEL_HEIGHT (w));
10747 int unit = FRAME_LINE_HEIGHT (f);
10748 int height, max_height;
10749 struct text_pos start;
10750 struct buffer *old_current_buffer = NULL;
10752 if (current_buffer != XBUFFER (w->contents))
10754 old_current_buffer = current_buffer;
10755 set_buffer_internal (XBUFFER (w->contents));
10758 init_iterator (&it, w, BEGV, BEGV_BYTE, NULL, DEFAULT_FACE_ID);
10760 /* Compute the max. number of lines specified by the user. */
10761 if (FLOATP (Vmax_mini_window_height))
10762 max_height = XFLOATINT (Vmax_mini_window_height) * total_height;
10763 else if (INTEGERP (Vmax_mini_window_height))
10764 max_height = XINT (Vmax_mini_window_height) * unit;
10765 else
10766 max_height = total_height / 4;
10768 /* Correct that max. height if it's bogus. */
10769 max_height = clip_to_bounds (unit, max_height, total_height);
10771 /* Find out the height of the text in the window. */
10772 if (it.line_wrap == TRUNCATE)
10773 height = unit;
10774 else
10776 last_height = 0;
10777 move_it_to (&it, ZV, -1, -1, -1, MOVE_TO_POS);
10778 if (it.max_ascent == 0 && it.max_descent == 0)
10779 height = it.current_y + last_height;
10780 else
10781 height = it.current_y + it.max_ascent + it.max_descent;
10782 height -= min (it.extra_line_spacing, it.max_extra_line_spacing);
10785 /* Compute a suitable window start. */
10786 if (height > max_height)
10788 height = (max_height / unit) * unit;
10789 init_iterator (&it, w, ZV, ZV_BYTE, NULL, DEFAULT_FACE_ID);
10790 move_it_vertically_backward (&it, height - unit);
10791 start = it.current.pos;
10793 else
10794 SET_TEXT_POS (start, BEGV, BEGV_BYTE);
10795 SET_MARKER_FROM_TEXT_POS (w->start, start);
10797 if (EQ (Vresize_mini_windows, Qgrow_only))
10799 /* Let it grow only, until we display an empty message, in which
10800 case the window shrinks again. */
10801 if (height > WINDOW_PIXEL_HEIGHT (w))
10803 int old_height = WINDOW_PIXEL_HEIGHT (w);
10805 FRAME_WINDOWS_FROZEN (f) = true;
10806 grow_mini_window (w, height - WINDOW_PIXEL_HEIGHT (w), true);
10807 window_height_changed_p = WINDOW_PIXEL_HEIGHT (w) != old_height;
10809 else if (height < WINDOW_PIXEL_HEIGHT (w)
10810 && (exact_p || BEGV == ZV))
10812 int old_height = WINDOW_PIXEL_HEIGHT (w);
10814 FRAME_WINDOWS_FROZEN (f) = false;
10815 shrink_mini_window (w, true);
10816 window_height_changed_p = WINDOW_PIXEL_HEIGHT (w) != old_height;
10819 else
10821 /* Always resize to exact size needed. */
10822 if (height > WINDOW_PIXEL_HEIGHT (w))
10824 int old_height = WINDOW_PIXEL_HEIGHT (w);
10826 FRAME_WINDOWS_FROZEN (f) = true;
10827 grow_mini_window (w, height - WINDOW_PIXEL_HEIGHT (w), true);
10828 window_height_changed_p = WINDOW_PIXEL_HEIGHT (w) != old_height;
10830 else if (height < WINDOW_PIXEL_HEIGHT (w))
10832 int old_height = WINDOW_PIXEL_HEIGHT (w);
10834 FRAME_WINDOWS_FROZEN (f) = false;
10835 shrink_mini_window (w, true);
10837 if (height)
10839 FRAME_WINDOWS_FROZEN (f) = true;
10840 grow_mini_window (w, height - WINDOW_PIXEL_HEIGHT (w), true);
10843 window_height_changed_p = WINDOW_PIXEL_HEIGHT (w) != old_height;
10847 if (old_current_buffer)
10848 set_buffer_internal (old_current_buffer);
10851 return window_height_changed_p;
10855 /* Value is the current message, a string, or nil if there is no
10856 current message. */
10858 Lisp_Object
10859 current_message (void)
10861 Lisp_Object msg;
10863 if (!BUFFERP (echo_area_buffer[0]))
10864 msg = Qnil;
10865 else
10867 with_echo_area_buffer (0, 0, current_message_1,
10868 (intptr_t) &msg, Qnil);
10869 if (NILP (msg))
10870 echo_area_buffer[0] = Qnil;
10873 return msg;
10877 static bool
10878 current_message_1 (ptrdiff_t a1, Lisp_Object a2)
10880 intptr_t i1 = a1;
10881 Lisp_Object *msg = (Lisp_Object *) i1;
10883 if (Z > BEG)
10884 *msg = make_buffer_string (BEG, Z, true);
10885 else
10886 *msg = Qnil;
10887 return false;
10891 /* Push the current message on Vmessage_stack for later restoration
10892 by restore_message. Value is true if the current message isn't
10893 empty. This is a relatively infrequent operation, so it's not
10894 worth optimizing. */
10896 bool
10897 push_message (void)
10899 Lisp_Object msg = current_message ();
10900 Vmessage_stack = Fcons (msg, Vmessage_stack);
10901 return STRINGP (msg);
10905 /* Restore message display from the top of Vmessage_stack. */
10907 void
10908 restore_message (void)
10910 eassert (CONSP (Vmessage_stack));
10911 message3_nolog (XCAR (Vmessage_stack));
10915 /* Handler for unwind-protect calling pop_message. */
10917 void
10918 pop_message_unwind (void)
10920 /* Pop the top-most entry off Vmessage_stack. */
10921 eassert (CONSP (Vmessage_stack));
10922 Vmessage_stack = XCDR (Vmessage_stack);
10926 /* Check that Vmessage_stack is nil. Called from emacs.c when Emacs
10927 exits. If the stack is not empty, we have a missing pop_message
10928 somewhere. */
10930 void
10931 check_message_stack (void)
10933 if (!NILP (Vmessage_stack))
10934 emacs_abort ();
10938 /* Truncate to NCHARS what will be displayed in the echo area the next
10939 time we display it---but don't redisplay it now. */
10941 void
10942 truncate_echo_area (ptrdiff_t nchars)
10944 if (nchars == 0)
10945 echo_area_buffer[0] = Qnil;
10946 else if (!noninteractive
10947 && INTERACTIVE
10948 && !NILP (echo_area_buffer[0]))
10950 struct frame *sf = SELECTED_FRAME ();
10951 /* Error messages get reported properly by cmd_error, so this must be
10952 just an informative message; if the frame hasn't really been
10953 initialized yet, just toss it. */
10954 if (sf->glyphs_initialized_p)
10955 with_echo_area_buffer (0, 0, truncate_message_1, nchars, Qnil);
10960 /* Helper function for truncate_echo_area. Truncate the current
10961 message to at most NCHARS characters. */
10963 static bool
10964 truncate_message_1 (ptrdiff_t nchars, Lisp_Object a2)
10966 if (BEG + nchars < Z)
10967 del_range (BEG + nchars, Z);
10968 if (Z == BEG)
10969 echo_area_buffer[0] = Qnil;
10970 return false;
10973 /* Set the current message to STRING. */
10975 static void
10976 set_message (Lisp_Object string)
10978 eassert (STRINGP (string));
10980 message_enable_multibyte = STRING_MULTIBYTE (string);
10982 with_echo_area_buffer (0, -1, set_message_1, 0, string);
10983 message_buf_print = false;
10984 help_echo_showing_p = false;
10986 if (STRINGP (Vdebug_on_message)
10987 && STRINGP (string)
10988 && fast_string_match (Vdebug_on_message, string) >= 0)
10989 call_debugger (list2 (Qerror, string));
10993 /* Helper function for set_message. First argument is ignored and second
10994 argument has the same meaning as for set_message.
10995 This function is called with the echo area buffer being current. */
10997 static bool
10998 set_message_1 (ptrdiff_t a1, Lisp_Object string)
11000 eassert (STRINGP (string));
11002 /* Change multibyteness of the echo buffer appropriately. */
11003 if (message_enable_multibyte
11004 != !NILP (BVAR (current_buffer, enable_multibyte_characters)))
11005 Fset_buffer_multibyte (message_enable_multibyte ? Qt : Qnil);
11007 bset_truncate_lines (current_buffer, message_truncate_lines ? Qt : Qnil);
11008 if (!NILP (BVAR (current_buffer, bidi_display_reordering)))
11009 bset_bidi_paragraph_direction (current_buffer, Qleft_to_right);
11011 /* Insert new message at BEG. */
11012 TEMP_SET_PT_BOTH (BEG, BEG_BYTE);
11014 /* This function takes care of single/multibyte conversion.
11015 We just have to ensure that the echo area buffer has the right
11016 setting of enable_multibyte_characters. */
11017 insert_from_string (string, 0, 0, SCHARS (string), SBYTES (string), true);
11019 return false;
11023 /* Clear messages. CURRENT_P means clear the current message.
11024 LAST_DISPLAYED_P means clear the message last displayed. */
11026 void
11027 clear_message (bool current_p, bool last_displayed_p)
11029 if (current_p)
11031 echo_area_buffer[0] = Qnil;
11032 message_cleared_p = true;
11035 if (last_displayed_p)
11036 echo_area_buffer[1] = Qnil;
11038 message_buf_print = false;
11041 /* Clear garbaged frames.
11043 This function is used where the old redisplay called
11044 redraw_garbaged_frames which in turn called redraw_frame which in
11045 turn called clear_frame. The call to clear_frame was a source of
11046 flickering. I believe a clear_frame is not necessary. It should
11047 suffice in the new redisplay to invalidate all current matrices,
11048 and ensure a complete redisplay of all windows. */
11050 static void
11051 clear_garbaged_frames (void)
11053 if (frame_garbaged)
11055 Lisp_Object tail, frame;
11057 FOR_EACH_FRAME (tail, frame)
11059 struct frame *f = XFRAME (frame);
11061 if (FRAME_VISIBLE_P (f) && FRAME_GARBAGED_P (f))
11063 if (f->resized_p)
11064 redraw_frame (f);
11065 else
11066 clear_current_matrices (f);
11067 fset_redisplay (f);
11068 f->garbaged = false;
11069 f->resized_p = false;
11073 frame_garbaged = false;
11078 /* Redisplay the echo area of the selected frame. If UPDATE_FRAME_P,
11079 update selected_frame. Value is true if the mini-windows height
11080 has been changed. */
11082 static bool
11083 echo_area_display (bool update_frame_p)
11085 Lisp_Object mini_window;
11086 struct window *w;
11087 struct frame *f;
11088 bool window_height_changed_p = false;
11089 struct frame *sf = SELECTED_FRAME ();
11091 mini_window = FRAME_MINIBUF_WINDOW (sf);
11092 w = XWINDOW (mini_window);
11093 f = XFRAME (WINDOW_FRAME (w));
11095 /* Don't display if frame is invisible or not yet initialized. */
11096 if (!FRAME_VISIBLE_P (f) || !f->glyphs_initialized_p)
11097 return false;
11099 #ifdef HAVE_WINDOW_SYSTEM
11100 /* When Emacs starts, selected_frame may be the initial terminal
11101 frame. If we let this through, a message would be displayed on
11102 the terminal. */
11103 if (FRAME_INITIAL_P (XFRAME (selected_frame)))
11104 return false;
11105 #endif /* HAVE_WINDOW_SYSTEM */
11107 /* Redraw garbaged frames. */
11108 clear_garbaged_frames ();
11110 if (!NILP (echo_area_buffer[0]) || minibuf_level == 0)
11112 echo_area_window = mini_window;
11113 window_height_changed_p = display_echo_area (w);
11114 w->must_be_updated_p = true;
11116 /* Update the display, unless called from redisplay_internal.
11117 Also don't update the screen during redisplay itself. The
11118 update will happen at the end of redisplay, and an update
11119 here could cause confusion. */
11120 if (update_frame_p && !redisplaying_p)
11122 int n = 0;
11124 /* If the display update has been interrupted by pending
11125 input, update mode lines in the frame. Due to the
11126 pending input, it might have been that redisplay hasn't
11127 been called, so that mode lines above the echo area are
11128 garbaged. This looks odd, so we prevent it here. */
11129 if (!display_completed)
11130 n = redisplay_mode_lines (FRAME_ROOT_WINDOW (f), false);
11132 if (window_height_changed_p
11133 /* Don't do this if Emacs is shutting down. Redisplay
11134 needs to run hooks. */
11135 && !NILP (Vrun_hooks))
11137 /* Must update other windows. Likewise as in other
11138 cases, don't let this update be interrupted by
11139 pending input. */
11140 ptrdiff_t count = SPECPDL_INDEX ();
11141 specbind (Qredisplay_dont_pause, Qt);
11142 windows_or_buffers_changed = 44;
11143 redisplay_internal ();
11144 unbind_to (count, Qnil);
11146 else if (FRAME_WINDOW_P (f) && n == 0)
11148 /* Window configuration is the same as before.
11149 Can do with a display update of the echo area,
11150 unless we displayed some mode lines. */
11151 update_single_window (w);
11152 flush_frame (f);
11154 else
11155 update_frame (f, true, true);
11157 /* If cursor is in the echo area, make sure that the next
11158 redisplay displays the minibuffer, so that the cursor will
11159 be replaced with what the minibuffer wants. */
11160 if (cursor_in_echo_area)
11161 wset_redisplay (XWINDOW (mini_window));
11164 else if (!EQ (mini_window, selected_window))
11165 wset_redisplay (XWINDOW (mini_window));
11167 /* Last displayed message is now the current message. */
11168 echo_area_buffer[1] = echo_area_buffer[0];
11169 /* Inform read_char that we're not echoing. */
11170 echo_message_buffer = Qnil;
11172 /* Prevent redisplay optimization in redisplay_internal by resetting
11173 this_line_start_pos. This is done because the mini-buffer now
11174 displays the message instead of its buffer text. */
11175 if (EQ (mini_window, selected_window))
11176 CHARPOS (this_line_start_pos) = 0;
11178 return window_height_changed_p;
11181 /* True if W's buffer was changed but not saved. */
11183 static bool
11184 window_buffer_changed (struct window *w)
11186 struct buffer *b = XBUFFER (w->contents);
11188 eassert (BUFFER_LIVE_P (b));
11190 return (BUF_SAVE_MODIFF (b) < BUF_MODIFF (b)) != w->last_had_star;
11193 /* True if W has %c in its mode line and mode line should be updated. */
11195 static bool
11196 mode_line_update_needed (struct window *w)
11198 return (w->column_number_displayed != -1
11199 && !(PT == w->last_point && !window_outdated (w))
11200 && (w->column_number_displayed != current_column ()));
11203 /* True if window start of W is frozen and may not be changed during
11204 redisplay. */
11206 static bool
11207 window_frozen_p (struct window *w)
11209 if (FRAME_WINDOWS_FROZEN (XFRAME (WINDOW_FRAME (w))))
11211 Lisp_Object window;
11213 XSETWINDOW (window, w);
11214 if (MINI_WINDOW_P (w))
11215 return false;
11216 else if (EQ (window, selected_window))
11217 return false;
11218 else if (MINI_WINDOW_P (XWINDOW (selected_window))
11219 && EQ (window, Vminibuf_scroll_window))
11220 /* This special window can't be frozen too. */
11221 return false;
11222 else
11223 return true;
11225 return false;
11228 /***********************************************************************
11229 Mode Lines and Frame Titles
11230 ***********************************************************************/
11232 /* A buffer for constructing non-propertized mode-line strings and
11233 frame titles in it; allocated from the heap in init_xdisp and
11234 resized as needed in store_mode_line_noprop_char. */
11236 static char *mode_line_noprop_buf;
11238 /* The buffer's end, and a current output position in it. */
11240 static char *mode_line_noprop_buf_end;
11241 static char *mode_line_noprop_ptr;
11243 #define MODE_LINE_NOPROP_LEN(start) \
11244 ((mode_line_noprop_ptr - mode_line_noprop_buf) - start)
11246 static enum {
11247 MODE_LINE_DISPLAY = 0,
11248 MODE_LINE_TITLE,
11249 MODE_LINE_NOPROP,
11250 MODE_LINE_STRING
11251 } mode_line_target;
11253 /* Alist that caches the results of :propertize.
11254 Each element is (PROPERTIZED-STRING . PROPERTY-LIST). */
11255 static Lisp_Object mode_line_proptrans_alist;
11257 /* List of strings making up the mode-line. */
11258 static Lisp_Object mode_line_string_list;
11260 /* Base face property when building propertized mode line string. */
11261 static Lisp_Object mode_line_string_face;
11262 static Lisp_Object mode_line_string_face_prop;
11265 /* Unwind data for mode line strings */
11267 static Lisp_Object Vmode_line_unwind_vector;
11269 static Lisp_Object
11270 format_mode_line_unwind_data (struct frame *target_frame,
11271 struct buffer *obuf,
11272 Lisp_Object owin,
11273 bool save_proptrans)
11275 Lisp_Object vector, tmp;
11277 /* Reduce consing by keeping one vector in
11278 Vwith_echo_area_save_vector. */
11279 vector = Vmode_line_unwind_vector;
11280 Vmode_line_unwind_vector = Qnil;
11282 if (NILP (vector))
11283 vector = Fmake_vector (make_number (10), Qnil);
11285 ASET (vector, 0, make_number (mode_line_target));
11286 ASET (vector, 1, make_number (MODE_LINE_NOPROP_LEN (0)));
11287 ASET (vector, 2, mode_line_string_list);
11288 ASET (vector, 3, save_proptrans ? mode_line_proptrans_alist : Qt);
11289 ASET (vector, 4, mode_line_string_face);
11290 ASET (vector, 5, mode_line_string_face_prop);
11292 if (obuf)
11293 XSETBUFFER (tmp, obuf);
11294 else
11295 tmp = Qnil;
11296 ASET (vector, 6, tmp);
11297 ASET (vector, 7, owin);
11298 if (target_frame)
11300 /* Similarly to `with-selected-window', if the operation selects
11301 a window on another frame, we must restore that frame's
11302 selected window, and (for a tty) the top-frame. */
11303 ASET (vector, 8, target_frame->selected_window);
11304 if (FRAME_TERMCAP_P (target_frame))
11305 ASET (vector, 9, FRAME_TTY (target_frame)->top_frame);
11308 return vector;
11311 static void
11312 unwind_format_mode_line (Lisp_Object vector)
11314 Lisp_Object old_window = AREF (vector, 7);
11315 Lisp_Object target_frame_window = AREF (vector, 8);
11316 Lisp_Object old_top_frame = AREF (vector, 9);
11318 mode_line_target = XINT (AREF (vector, 0));
11319 mode_line_noprop_ptr = mode_line_noprop_buf + XINT (AREF (vector, 1));
11320 mode_line_string_list = AREF (vector, 2);
11321 if (! EQ (AREF (vector, 3), Qt))
11322 mode_line_proptrans_alist = AREF (vector, 3);
11323 mode_line_string_face = AREF (vector, 4);
11324 mode_line_string_face_prop = AREF (vector, 5);
11326 /* Select window before buffer, since it may change the buffer. */
11327 if (!NILP (old_window))
11329 /* If the operation that we are unwinding had selected a window
11330 on a different frame, reset its frame-selected-window. For a
11331 text terminal, reset its top-frame if necessary. */
11332 if (!NILP (target_frame_window))
11334 Lisp_Object frame
11335 = WINDOW_FRAME (XWINDOW (target_frame_window));
11337 if (!EQ (frame, WINDOW_FRAME (XWINDOW (old_window))))
11338 Fselect_window (target_frame_window, Qt);
11340 if (!NILP (old_top_frame) && !EQ (old_top_frame, frame))
11341 Fselect_frame (old_top_frame, Qt);
11344 Fselect_window (old_window, Qt);
11347 if (!NILP (AREF (vector, 6)))
11349 set_buffer_internal_1 (XBUFFER (AREF (vector, 6)));
11350 ASET (vector, 6, Qnil);
11353 Vmode_line_unwind_vector = vector;
11357 /* Store a single character C for the frame title in mode_line_noprop_buf.
11358 Re-allocate mode_line_noprop_buf if necessary. */
11360 static void
11361 store_mode_line_noprop_char (char c)
11363 /* If output position has reached the end of the allocated buffer,
11364 increase the buffer's size. */
11365 if (mode_line_noprop_ptr == mode_line_noprop_buf_end)
11367 ptrdiff_t len = MODE_LINE_NOPROP_LEN (0);
11368 ptrdiff_t size = len;
11369 mode_line_noprop_buf =
11370 xpalloc (mode_line_noprop_buf, &size, 1, STRING_BYTES_BOUND, 1);
11371 mode_line_noprop_buf_end = mode_line_noprop_buf + size;
11372 mode_line_noprop_ptr = mode_line_noprop_buf + len;
11375 *mode_line_noprop_ptr++ = c;
11379 /* Store part of a frame title in mode_line_noprop_buf, beginning at
11380 mode_line_noprop_ptr. STRING is the string to store. Do not copy
11381 characters that yield more columns than PRECISION; PRECISION <= 0
11382 means copy the whole string. Pad with spaces until FIELD_WIDTH
11383 number of characters have been copied; FIELD_WIDTH <= 0 means don't
11384 pad. Called from display_mode_element when it is used to build a
11385 frame title. */
11387 static int
11388 store_mode_line_noprop (const char *string, int field_width, int precision)
11390 const unsigned char *str = (const unsigned char *) string;
11391 int n = 0;
11392 ptrdiff_t dummy, nbytes;
11394 /* Copy at most PRECISION chars from STR. */
11395 nbytes = strlen (string);
11396 n += c_string_width (str, nbytes, precision, &dummy, &nbytes);
11397 while (nbytes--)
11398 store_mode_line_noprop_char (*str++);
11400 /* Fill up with spaces until FIELD_WIDTH reached. */
11401 while (field_width > 0
11402 && n < field_width)
11404 store_mode_line_noprop_char (' ');
11405 ++n;
11408 return n;
11411 /***********************************************************************
11412 Frame Titles
11413 ***********************************************************************/
11415 #ifdef HAVE_WINDOW_SYSTEM
11417 /* Set the title of FRAME, if it has changed. The title format is
11418 Vicon_title_format if FRAME is iconified, otherwise it is
11419 frame_title_format. */
11421 static void
11422 x_consider_frame_title (Lisp_Object frame)
11424 struct frame *f = XFRAME (frame);
11426 if (FRAME_WINDOW_P (f)
11427 || FRAME_MINIBUF_ONLY_P (f)
11428 || f->explicit_name)
11430 /* Do we have more than one visible frame on this X display? */
11431 Lisp_Object tail, other_frame, fmt;
11432 ptrdiff_t title_start;
11433 char *title;
11434 ptrdiff_t len;
11435 struct it it;
11436 ptrdiff_t count = SPECPDL_INDEX ();
11438 FOR_EACH_FRAME (tail, other_frame)
11440 struct frame *tf = XFRAME (other_frame);
11442 if (tf != f
11443 && FRAME_KBOARD (tf) == FRAME_KBOARD (f)
11444 && !FRAME_MINIBUF_ONLY_P (tf)
11445 && !EQ (other_frame, tip_frame)
11446 && (FRAME_VISIBLE_P (tf) || FRAME_ICONIFIED_P (tf)))
11447 break;
11450 /* Set global variable indicating that multiple frames exist. */
11451 multiple_frames = CONSP (tail);
11453 /* Switch to the buffer of selected window of the frame. Set up
11454 mode_line_target so that display_mode_element will output into
11455 mode_line_noprop_buf; then display the title. */
11456 record_unwind_protect (unwind_format_mode_line,
11457 format_mode_line_unwind_data
11458 (f, current_buffer, selected_window, false));
11460 Fselect_window (f->selected_window, Qt);
11461 set_buffer_internal_1
11462 (XBUFFER (XWINDOW (f->selected_window)->contents));
11463 fmt = FRAME_ICONIFIED_P (f) ? Vicon_title_format : Vframe_title_format;
11465 mode_line_target = MODE_LINE_TITLE;
11466 title_start = MODE_LINE_NOPROP_LEN (0);
11467 init_iterator (&it, XWINDOW (f->selected_window), -1, -1,
11468 NULL, DEFAULT_FACE_ID);
11469 display_mode_element (&it, 0, -1, -1, fmt, Qnil, false);
11470 len = MODE_LINE_NOPROP_LEN (title_start);
11471 title = mode_line_noprop_buf + title_start;
11472 unbind_to (count, Qnil);
11474 /* Set the title only if it's changed. This avoids consing in
11475 the common case where it hasn't. (If it turns out that we've
11476 already wasted too much time by walking through the list with
11477 display_mode_element, then we might need to optimize at a
11478 higher level than this.) */
11479 if (! STRINGP (f->name)
11480 || SBYTES (f->name) != len
11481 || memcmp (title, SDATA (f->name), len) != 0)
11482 x_implicitly_set_name (f, make_string (title, len), Qnil);
11486 #endif /* not HAVE_WINDOW_SYSTEM */
11489 /***********************************************************************
11490 Menu Bars
11491 ***********************************************************************/
11493 /* True if we will not redisplay all visible windows. */
11494 #define REDISPLAY_SOME_P() \
11495 ((windows_or_buffers_changed == 0 \
11496 || windows_or_buffers_changed == REDISPLAY_SOME) \
11497 && (update_mode_lines == 0 \
11498 || update_mode_lines == REDISPLAY_SOME))
11500 /* Prepare for redisplay by updating menu-bar item lists when
11501 appropriate. This can call eval. */
11503 static void
11504 prepare_menu_bars (void)
11506 bool all_windows = windows_or_buffers_changed || update_mode_lines;
11507 bool some_windows = REDISPLAY_SOME_P ();
11508 struct gcpro gcpro1, gcpro2;
11509 Lisp_Object tooltip_frame;
11511 #ifdef HAVE_WINDOW_SYSTEM
11512 tooltip_frame = tip_frame;
11513 #else
11514 tooltip_frame = Qnil;
11515 #endif
11517 if (FUNCTIONP (Vpre_redisplay_function))
11519 Lisp_Object windows = all_windows ? Qt : Qnil;
11520 if (all_windows && some_windows)
11522 Lisp_Object ws = window_list ();
11523 for (windows = Qnil; CONSP (ws); ws = XCDR (ws))
11525 Lisp_Object this = XCAR (ws);
11526 struct window *w = XWINDOW (this);
11527 if (w->redisplay
11528 || XFRAME (w->frame)->redisplay
11529 || XBUFFER (w->contents)->text->redisplay)
11531 windows = Fcons (this, windows);
11535 safe__call1 (true, Vpre_redisplay_function, windows);
11538 /* Update all frame titles based on their buffer names, etc. We do
11539 this before the menu bars so that the buffer-menu will show the
11540 up-to-date frame titles. */
11541 #ifdef HAVE_WINDOW_SYSTEM
11542 if (all_windows)
11544 Lisp_Object tail, frame;
11546 FOR_EACH_FRAME (tail, frame)
11548 struct frame *f = XFRAME (frame);
11549 struct window *w = XWINDOW (FRAME_SELECTED_WINDOW (f));
11550 if (some_windows
11551 && !f->redisplay
11552 && !w->redisplay
11553 && !XBUFFER (w->contents)->text->redisplay)
11554 continue;
11556 if (!EQ (frame, tooltip_frame)
11557 && (FRAME_ICONIFIED_P (f)
11558 || FRAME_VISIBLE_P (f) == 1
11559 /* Exclude TTY frames that are obscured because they
11560 are not the top frame on their console. This is
11561 because x_consider_frame_title actually switches
11562 to the frame, which for TTY frames means it is
11563 marked as garbaged, and will be completely
11564 redrawn on the next redisplay cycle. This causes
11565 TTY frames to be completely redrawn, when there
11566 are more than one of them, even though nothing
11567 should be changed on display. */
11568 || (FRAME_VISIBLE_P (f) == 2 && FRAME_WINDOW_P (f))))
11569 x_consider_frame_title (frame);
11572 #endif /* HAVE_WINDOW_SYSTEM */
11574 /* Update the menu bar item lists, if appropriate. This has to be
11575 done before any actual redisplay or generation of display lines. */
11577 if (all_windows)
11579 Lisp_Object tail, frame;
11580 ptrdiff_t count = SPECPDL_INDEX ();
11581 /* True means that update_menu_bar has run its hooks
11582 so any further calls to update_menu_bar shouldn't do so again. */
11583 bool menu_bar_hooks_run = false;
11585 record_unwind_save_match_data ();
11587 FOR_EACH_FRAME (tail, frame)
11589 struct frame *f = XFRAME (frame);
11590 struct window *w = XWINDOW (FRAME_SELECTED_WINDOW (f));
11592 /* Ignore tooltip frame. */
11593 if (EQ (frame, tooltip_frame))
11594 continue;
11596 if (some_windows
11597 && !f->redisplay
11598 && !w->redisplay
11599 && !XBUFFER (w->contents)->text->redisplay)
11600 continue;
11602 /* If a window on this frame changed size, report that to
11603 the user and clear the size-change flag. */
11604 if (FRAME_WINDOW_SIZES_CHANGED (f))
11606 Lisp_Object functions;
11608 /* Clear flag first in case we get an error below. */
11609 FRAME_WINDOW_SIZES_CHANGED (f) = false;
11610 functions = Vwindow_size_change_functions;
11611 GCPRO2 (tail, functions);
11613 while (CONSP (functions))
11615 if (!EQ (XCAR (functions), Qt))
11616 call1 (XCAR (functions), frame);
11617 functions = XCDR (functions);
11619 UNGCPRO;
11622 GCPRO1 (tail);
11623 menu_bar_hooks_run = update_menu_bar (f, false, menu_bar_hooks_run);
11624 #ifdef HAVE_WINDOW_SYSTEM
11625 update_tool_bar (f, false);
11626 #endif
11627 UNGCPRO;
11630 unbind_to (count, Qnil);
11632 else
11634 struct frame *sf = SELECTED_FRAME ();
11635 update_menu_bar (sf, true, false);
11636 #ifdef HAVE_WINDOW_SYSTEM
11637 update_tool_bar (sf, true);
11638 #endif
11643 /* Update the menu bar item list for frame F. This has to be done
11644 before we start to fill in any display lines, because it can call
11645 eval.
11647 If SAVE_MATCH_DATA, we must save and restore it here.
11649 If HOOKS_RUN, a previous call to update_menu_bar
11650 already ran the menu bar hooks for this redisplay, so there
11651 is no need to run them again. The return value is the
11652 updated value of this flag, to pass to the next call. */
11654 static bool
11655 update_menu_bar (struct frame *f, bool save_match_data, bool hooks_run)
11657 Lisp_Object window;
11658 struct window *w;
11660 /* If called recursively during a menu update, do nothing. This can
11661 happen when, for instance, an activate-menubar-hook causes a
11662 redisplay. */
11663 if (inhibit_menubar_update)
11664 return hooks_run;
11666 window = FRAME_SELECTED_WINDOW (f);
11667 w = XWINDOW (window);
11669 if (FRAME_WINDOW_P (f)
11671 #if defined (USE_X_TOOLKIT) || defined (HAVE_NTGUI) \
11672 || defined (HAVE_NS) || defined (USE_GTK)
11673 FRAME_EXTERNAL_MENU_BAR (f)
11674 #else
11675 FRAME_MENU_BAR_LINES (f) > 0
11676 #endif
11677 : FRAME_MENU_BAR_LINES (f) > 0)
11679 /* If the user has switched buffers or windows, we need to
11680 recompute to reflect the new bindings. But we'll
11681 recompute when update_mode_lines is set too; that means
11682 that people can use force-mode-line-update to request
11683 that the menu bar be recomputed. The adverse effect on
11684 the rest of the redisplay algorithm is about the same as
11685 windows_or_buffers_changed anyway. */
11686 if (windows_or_buffers_changed
11687 /* This used to test w->update_mode_line, but we believe
11688 there is no need to recompute the menu in that case. */
11689 || update_mode_lines
11690 || window_buffer_changed (w))
11692 struct buffer *prev = current_buffer;
11693 ptrdiff_t count = SPECPDL_INDEX ();
11695 specbind (Qinhibit_menubar_update, Qt);
11697 set_buffer_internal_1 (XBUFFER (w->contents));
11698 if (save_match_data)
11699 record_unwind_save_match_data ();
11700 if (NILP (Voverriding_local_map_menu_flag))
11702 specbind (Qoverriding_terminal_local_map, Qnil);
11703 specbind (Qoverriding_local_map, Qnil);
11706 if (!hooks_run)
11708 /* Run the Lucid hook. */
11709 safe_run_hooks (Qactivate_menubar_hook);
11711 /* If it has changed current-menubar from previous value,
11712 really recompute the menu-bar from the value. */
11713 if (! NILP (Vlucid_menu_bar_dirty_flag))
11714 call0 (Qrecompute_lucid_menubar);
11716 safe_run_hooks (Qmenu_bar_update_hook);
11718 hooks_run = true;
11721 XSETFRAME (Vmenu_updating_frame, f);
11722 fset_menu_bar_items (f, menu_bar_items (FRAME_MENU_BAR_ITEMS (f)));
11724 /* Redisplay the menu bar in case we changed it. */
11725 #if defined (USE_X_TOOLKIT) || defined (HAVE_NTGUI) \
11726 || defined (HAVE_NS) || defined (USE_GTK)
11727 if (FRAME_WINDOW_P (f))
11729 #if defined (HAVE_NS)
11730 /* All frames on Mac OS share the same menubar. So only
11731 the selected frame should be allowed to set it. */
11732 if (f == SELECTED_FRAME ())
11733 #endif
11734 set_frame_menubar (f, false, false);
11736 else
11737 /* On a terminal screen, the menu bar is an ordinary screen
11738 line, and this makes it get updated. */
11739 w->update_mode_line = true;
11740 #else /* ! (USE_X_TOOLKIT || HAVE_NTGUI || HAVE_NS || USE_GTK) */
11741 /* In the non-toolkit version, the menu bar is an ordinary screen
11742 line, and this makes it get updated. */
11743 w->update_mode_line = true;
11744 #endif /* ! (USE_X_TOOLKIT || HAVE_NTGUI || HAVE_NS || USE_GTK) */
11746 unbind_to (count, Qnil);
11747 set_buffer_internal_1 (prev);
11751 return hooks_run;
11754 /***********************************************************************
11755 Tool-bars
11756 ***********************************************************************/
11758 #ifdef HAVE_WINDOW_SYSTEM
11760 /* Select `frame' temporarily without running all the code in
11761 do_switch_frame.
11762 FIXME: Maybe do_switch_frame should be trimmed down similarly
11763 when `norecord' is set. */
11764 static void
11765 fast_set_selected_frame (Lisp_Object frame)
11767 if (!EQ (selected_frame, frame))
11769 selected_frame = frame;
11770 selected_window = XFRAME (frame)->selected_window;
11774 /* Update the tool-bar item list for frame F. This has to be done
11775 before we start to fill in any display lines. Called from
11776 prepare_menu_bars. If SAVE_MATCH_DATA, we must save
11777 and restore it here. */
11779 static void
11780 update_tool_bar (struct frame *f, bool save_match_data)
11782 #if defined (USE_GTK) || defined (HAVE_NS)
11783 bool do_update = FRAME_EXTERNAL_TOOL_BAR (f);
11784 #else
11785 bool do_update = (WINDOWP (f->tool_bar_window)
11786 && WINDOW_TOTAL_LINES (XWINDOW (f->tool_bar_window)) > 0);
11787 #endif
11789 if (do_update)
11791 Lisp_Object window;
11792 struct window *w;
11794 window = FRAME_SELECTED_WINDOW (f);
11795 w = XWINDOW (window);
11797 /* If the user has switched buffers or windows, we need to
11798 recompute to reflect the new bindings. But we'll
11799 recompute when update_mode_lines is set too; that means
11800 that people can use force-mode-line-update to request
11801 that the menu bar be recomputed. The adverse effect on
11802 the rest of the redisplay algorithm is about the same as
11803 windows_or_buffers_changed anyway. */
11804 if (windows_or_buffers_changed
11805 || w->update_mode_line
11806 || update_mode_lines
11807 || window_buffer_changed (w))
11809 struct buffer *prev = current_buffer;
11810 ptrdiff_t count = SPECPDL_INDEX ();
11811 Lisp_Object frame, new_tool_bar;
11812 int new_n_tool_bar;
11813 struct gcpro gcpro1;
11815 /* Set current_buffer to the buffer of the selected
11816 window of the frame, so that we get the right local
11817 keymaps. */
11818 set_buffer_internal_1 (XBUFFER (w->contents));
11820 /* Save match data, if we must. */
11821 if (save_match_data)
11822 record_unwind_save_match_data ();
11824 /* Make sure that we don't accidentally use bogus keymaps. */
11825 if (NILP (Voverriding_local_map_menu_flag))
11827 specbind (Qoverriding_terminal_local_map, Qnil);
11828 specbind (Qoverriding_local_map, Qnil);
11831 GCPRO1 (new_tool_bar);
11833 /* We must temporarily set the selected frame to this frame
11834 before calling tool_bar_items, because the calculation of
11835 the tool-bar keymap uses the selected frame (see
11836 `tool-bar-make-keymap' in tool-bar.el). */
11837 eassert (EQ (selected_window,
11838 /* Since we only explicitly preserve selected_frame,
11839 check that selected_window would be redundant. */
11840 XFRAME (selected_frame)->selected_window));
11841 record_unwind_protect (fast_set_selected_frame, selected_frame);
11842 XSETFRAME (frame, f);
11843 fast_set_selected_frame (frame);
11845 /* Build desired tool-bar items from keymaps. */
11846 new_tool_bar
11847 = tool_bar_items (Fcopy_sequence (f->tool_bar_items),
11848 &new_n_tool_bar);
11850 /* Redisplay the tool-bar if we changed it. */
11851 if (new_n_tool_bar != f->n_tool_bar_items
11852 || NILP (Fequal (new_tool_bar, f->tool_bar_items)))
11854 /* Redisplay that happens asynchronously due to an expose event
11855 may access f->tool_bar_items. Make sure we update both
11856 variables within BLOCK_INPUT so no such event interrupts. */
11857 block_input ();
11858 fset_tool_bar_items (f, new_tool_bar);
11859 f->n_tool_bar_items = new_n_tool_bar;
11860 w->update_mode_line = true;
11861 unblock_input ();
11864 UNGCPRO;
11866 unbind_to (count, Qnil);
11867 set_buffer_internal_1 (prev);
11872 #if ! defined (USE_GTK) && ! defined (HAVE_NS)
11874 /* Set F->desired_tool_bar_string to a Lisp string representing frame
11875 F's desired tool-bar contents. F->tool_bar_items must have
11876 been set up previously by calling prepare_menu_bars. */
11878 static void
11879 build_desired_tool_bar_string (struct frame *f)
11881 int i, size, size_needed;
11882 struct gcpro gcpro1, gcpro2;
11883 Lisp_Object image, plist;
11885 image = plist = Qnil;
11886 GCPRO2 (image, plist);
11888 /* Prepare F->desired_tool_bar_string. If we can reuse it, do so.
11889 Otherwise, make a new string. */
11891 /* The size of the string we might be able to reuse. */
11892 size = (STRINGP (f->desired_tool_bar_string)
11893 ? SCHARS (f->desired_tool_bar_string)
11894 : 0);
11896 /* We need one space in the string for each image. */
11897 size_needed = f->n_tool_bar_items;
11899 /* Reuse f->desired_tool_bar_string, if possible. */
11900 if (size < size_needed || NILP (f->desired_tool_bar_string))
11901 fset_desired_tool_bar_string
11902 (f, Fmake_string (make_number (size_needed), make_number (' ')));
11903 else
11905 AUTO_LIST4 (props, Qdisplay, Qnil, Qmenu_item, Qnil);
11906 struct gcpro gcpro1;
11907 GCPRO1 (props);
11908 Fremove_text_properties (make_number (0), make_number (size),
11909 props, f->desired_tool_bar_string);
11910 UNGCPRO;
11913 /* Put a `display' property on the string for the images to display,
11914 put a `menu_item' property on tool-bar items with a value that
11915 is the index of the item in F's tool-bar item vector. */
11916 for (i = 0; i < f->n_tool_bar_items; ++i)
11918 #define PROP(IDX) \
11919 AREF (f->tool_bar_items, i * TOOL_BAR_ITEM_NSLOTS + (IDX))
11921 bool enabled_p = !NILP (PROP (TOOL_BAR_ITEM_ENABLED_P));
11922 bool selected_p = !NILP (PROP (TOOL_BAR_ITEM_SELECTED_P));
11923 int hmargin, vmargin, relief, idx, end;
11925 /* If image is a vector, choose the image according to the
11926 button state. */
11927 image = PROP (TOOL_BAR_ITEM_IMAGES);
11928 if (VECTORP (image))
11930 if (enabled_p)
11931 idx = (selected_p
11932 ? TOOL_BAR_IMAGE_ENABLED_SELECTED
11933 : TOOL_BAR_IMAGE_ENABLED_DESELECTED);
11934 else
11935 idx = (selected_p
11936 ? TOOL_BAR_IMAGE_DISABLED_SELECTED
11937 : TOOL_BAR_IMAGE_DISABLED_DESELECTED);
11939 eassert (ASIZE (image) >= idx);
11940 image = AREF (image, idx);
11942 else
11943 idx = -1;
11945 /* Ignore invalid image specifications. */
11946 if (!valid_image_p (image))
11947 continue;
11949 /* Display the tool-bar button pressed, or depressed. */
11950 plist = Fcopy_sequence (XCDR (image));
11952 /* Compute margin and relief to draw. */
11953 relief = (tool_bar_button_relief >= 0
11954 ? tool_bar_button_relief
11955 : DEFAULT_TOOL_BAR_BUTTON_RELIEF);
11956 hmargin = vmargin = relief;
11958 if (RANGED_INTEGERP (1, Vtool_bar_button_margin,
11959 INT_MAX - max (hmargin, vmargin)))
11961 hmargin += XFASTINT (Vtool_bar_button_margin);
11962 vmargin += XFASTINT (Vtool_bar_button_margin);
11964 else if (CONSP (Vtool_bar_button_margin))
11966 if (RANGED_INTEGERP (1, XCAR (Vtool_bar_button_margin),
11967 INT_MAX - hmargin))
11968 hmargin += XFASTINT (XCAR (Vtool_bar_button_margin));
11970 if (RANGED_INTEGERP (1, XCDR (Vtool_bar_button_margin),
11971 INT_MAX - vmargin))
11972 vmargin += XFASTINT (XCDR (Vtool_bar_button_margin));
11975 if (auto_raise_tool_bar_buttons_p)
11977 /* Add a `:relief' property to the image spec if the item is
11978 selected. */
11979 if (selected_p)
11981 plist = Fplist_put (plist, QCrelief, make_number (-relief));
11982 hmargin -= relief;
11983 vmargin -= relief;
11986 else
11988 /* If image is selected, display it pressed, i.e. with a
11989 negative relief. If it's not selected, display it with a
11990 raised relief. */
11991 plist = Fplist_put (plist, QCrelief,
11992 (selected_p
11993 ? make_number (-relief)
11994 : make_number (relief)));
11995 hmargin -= relief;
11996 vmargin -= relief;
11999 /* Put a margin around the image. */
12000 if (hmargin || vmargin)
12002 if (hmargin == vmargin)
12003 plist = Fplist_put (plist, QCmargin, make_number (hmargin));
12004 else
12005 plist = Fplist_put (plist, QCmargin,
12006 Fcons (make_number (hmargin),
12007 make_number (vmargin)));
12010 /* If button is not enabled, and we don't have special images
12011 for the disabled state, make the image appear disabled by
12012 applying an appropriate algorithm to it. */
12013 if (!enabled_p && idx < 0)
12014 plist = Fplist_put (plist, QCconversion, Qdisabled);
12016 /* Put a `display' text property on the string for the image to
12017 display. Put a `menu-item' property on the string that gives
12018 the start of this item's properties in the tool-bar items
12019 vector. */
12020 image = Fcons (Qimage, plist);
12021 AUTO_LIST4 (props, Qdisplay, image, Qmenu_item,
12022 make_number (i * TOOL_BAR_ITEM_NSLOTS));
12023 struct gcpro gcpro1;
12024 GCPRO1 (props);
12026 /* Let the last image hide all remaining spaces in the tool bar
12027 string. The string can be longer than needed when we reuse a
12028 previous string. */
12029 if (i + 1 == f->n_tool_bar_items)
12030 end = SCHARS (f->desired_tool_bar_string);
12031 else
12032 end = i + 1;
12033 Fadd_text_properties (make_number (i), make_number (end),
12034 props, f->desired_tool_bar_string);
12035 UNGCPRO;
12036 #undef PROP
12039 UNGCPRO;
12043 /* Display one line of the tool-bar of frame IT->f.
12045 HEIGHT specifies the desired height of the tool-bar line.
12046 If the actual height of the glyph row is less than HEIGHT, the
12047 row's height is increased to HEIGHT, and the icons are centered
12048 vertically in the new height.
12050 If HEIGHT is -1, we are counting needed tool-bar lines, so don't
12051 count a final empty row in case the tool-bar width exactly matches
12052 the window width.
12055 static void
12056 display_tool_bar_line (struct it *it, int height)
12058 struct glyph_row *row = it->glyph_row;
12059 int max_x = it->last_visible_x;
12060 struct glyph *last;
12062 /* Don't extend on a previously drawn tool bar items (Bug#16058). */
12063 clear_glyph_row (row);
12064 row->enabled_p = true;
12065 row->y = it->current_y;
12067 /* Note that this isn't made use of if the face hasn't a box,
12068 so there's no need to check the face here. */
12069 it->start_of_box_run_p = true;
12071 while (it->current_x < max_x)
12073 int x, n_glyphs_before, i, nglyphs;
12074 struct it it_before;
12076 /* Get the next display element. */
12077 if (!get_next_display_element (it))
12079 /* Don't count empty row if we are counting needed tool-bar lines. */
12080 if (height < 0 && !it->hpos)
12081 return;
12082 break;
12085 /* Produce glyphs. */
12086 n_glyphs_before = row->used[TEXT_AREA];
12087 it_before = *it;
12089 PRODUCE_GLYPHS (it);
12091 nglyphs = row->used[TEXT_AREA] - n_glyphs_before;
12092 i = 0;
12093 x = it_before.current_x;
12094 while (i < nglyphs)
12096 struct glyph *glyph = row->glyphs[TEXT_AREA] + n_glyphs_before + i;
12098 if (x + glyph->pixel_width > max_x)
12100 /* Glyph doesn't fit on line. Backtrack. */
12101 row->used[TEXT_AREA] = n_glyphs_before;
12102 *it = it_before;
12103 /* If this is the only glyph on this line, it will never fit on the
12104 tool-bar, so skip it. But ensure there is at least one glyph,
12105 so we don't accidentally disable the tool-bar. */
12106 if (n_glyphs_before == 0
12107 && (it->vpos > 0 || IT_STRING_CHARPOS (*it) < it->end_charpos-1))
12108 break;
12109 goto out;
12112 ++it->hpos;
12113 x += glyph->pixel_width;
12114 ++i;
12117 /* Stop at line end. */
12118 if (ITERATOR_AT_END_OF_LINE_P (it))
12119 break;
12121 set_iterator_to_next (it, true);
12124 out:;
12126 row->displays_text_p = row->used[TEXT_AREA] != 0;
12128 /* Use default face for the border below the tool bar.
12130 FIXME: When auto-resize-tool-bars is grow-only, there is
12131 no additional border below the possibly empty tool-bar lines.
12132 So to make the extra empty lines look "normal", we have to
12133 use the tool-bar face for the border too. */
12134 if (!MATRIX_ROW_DISPLAYS_TEXT_P (row)
12135 && !EQ (Vauto_resize_tool_bars, Qgrow_only))
12136 it->face_id = DEFAULT_FACE_ID;
12138 extend_face_to_end_of_line (it);
12139 last = row->glyphs[TEXT_AREA] + row->used[TEXT_AREA] - 1;
12140 last->right_box_line_p = true;
12141 if (last == row->glyphs[TEXT_AREA])
12142 last->left_box_line_p = true;
12144 /* Make line the desired height and center it vertically. */
12145 if ((height -= it->max_ascent + it->max_descent) > 0)
12147 /* Don't add more than one line height. */
12148 height %= FRAME_LINE_HEIGHT (it->f);
12149 it->max_ascent += height / 2;
12150 it->max_descent += (height + 1) / 2;
12153 compute_line_metrics (it);
12155 /* If line is empty, make it occupy the rest of the tool-bar. */
12156 if (!MATRIX_ROW_DISPLAYS_TEXT_P (row))
12158 row->height = row->phys_height = it->last_visible_y - row->y;
12159 row->visible_height = row->height;
12160 row->ascent = row->phys_ascent = 0;
12161 row->extra_line_spacing = 0;
12164 row->full_width_p = true;
12165 row->continued_p = false;
12166 row->truncated_on_left_p = false;
12167 row->truncated_on_right_p = false;
12169 it->current_x = it->hpos = 0;
12170 it->current_y += row->height;
12171 ++it->vpos;
12172 ++it->glyph_row;
12176 /* Value is the number of pixels needed to make all tool-bar items of
12177 frame F visible. The actual number of glyph rows needed is
12178 returned in *N_ROWS if non-NULL. */
12179 static int
12180 tool_bar_height (struct frame *f, int *n_rows, bool pixelwise)
12182 struct window *w = XWINDOW (f->tool_bar_window);
12183 struct it it;
12184 /* tool_bar_height is called from redisplay_tool_bar after building
12185 the desired matrix, so use (unused) mode-line row as temporary row to
12186 avoid destroying the first tool-bar row. */
12187 struct glyph_row *temp_row = MATRIX_MODE_LINE_ROW (w->desired_matrix);
12189 /* Initialize an iterator for iteration over
12190 F->desired_tool_bar_string in the tool-bar window of frame F. */
12191 init_iterator (&it, w, -1, -1, temp_row, TOOL_BAR_FACE_ID);
12192 temp_row->reversed_p = false;
12193 it.first_visible_x = 0;
12194 it.last_visible_x = WINDOW_PIXEL_WIDTH (w);
12195 reseat_to_string (&it, NULL, f->desired_tool_bar_string, 0, 0, 0, -1);
12196 it.paragraph_embedding = L2R;
12198 while (!ITERATOR_AT_END_P (&it))
12200 clear_glyph_row (temp_row);
12201 it.glyph_row = temp_row;
12202 display_tool_bar_line (&it, -1);
12204 clear_glyph_row (temp_row);
12206 /* f->n_tool_bar_rows == 0 means "unknown"; -1 means no tool-bar. */
12207 if (n_rows)
12208 *n_rows = it.vpos > 0 ? it.vpos : -1;
12210 if (pixelwise)
12211 return it.current_y;
12212 else
12213 return (it.current_y + FRAME_LINE_HEIGHT (f) - 1) / FRAME_LINE_HEIGHT (f);
12216 #endif /* !USE_GTK && !HAVE_NS */
12218 DEFUN ("tool-bar-height", Ftool_bar_height, Stool_bar_height,
12219 0, 2, 0,
12220 doc: /* Return the number of lines occupied by the tool bar of FRAME.
12221 If FRAME is nil or omitted, use the selected frame. Optional argument
12222 PIXELWISE non-nil means return the height of the tool bar in pixels. */)
12223 (Lisp_Object frame, Lisp_Object pixelwise)
12225 int height = 0;
12227 #if ! defined (USE_GTK) && ! defined (HAVE_NS)
12228 struct frame *f = decode_any_frame (frame);
12230 if (WINDOWP (f->tool_bar_window)
12231 && WINDOW_PIXEL_HEIGHT (XWINDOW (f->tool_bar_window)) > 0)
12233 update_tool_bar (f, true);
12234 if (f->n_tool_bar_items)
12236 build_desired_tool_bar_string (f);
12237 height = tool_bar_height (f, NULL, !NILP (pixelwise));
12240 #endif
12242 return make_number (height);
12246 /* Display the tool-bar of frame F. Value is true if tool-bar's
12247 height should be changed. */
12248 static bool
12249 redisplay_tool_bar (struct frame *f)
12251 #if defined (USE_GTK) || defined (HAVE_NS)
12253 if (FRAME_EXTERNAL_TOOL_BAR (f))
12254 update_frame_tool_bar (f);
12255 return false;
12257 #else /* !USE_GTK && !HAVE_NS */
12259 struct window *w;
12260 struct it it;
12261 struct glyph_row *row;
12263 /* If frame hasn't a tool-bar window or if it is zero-height, don't
12264 do anything. This means you must start with tool-bar-lines
12265 non-zero to get the auto-sizing effect. Or in other words, you
12266 can turn off tool-bars by specifying tool-bar-lines zero. */
12267 if (!WINDOWP (f->tool_bar_window)
12268 || (w = XWINDOW (f->tool_bar_window),
12269 WINDOW_TOTAL_LINES (w) == 0))
12270 return false;
12272 /* Set up an iterator for the tool-bar window. */
12273 init_iterator (&it, w, -1, -1, w->desired_matrix->rows, TOOL_BAR_FACE_ID);
12274 it.first_visible_x = 0;
12275 it.last_visible_x = WINDOW_PIXEL_WIDTH (w);
12276 row = it.glyph_row;
12277 row->reversed_p = false;
12279 /* Build a string that represents the contents of the tool-bar. */
12280 build_desired_tool_bar_string (f);
12281 reseat_to_string (&it, NULL, f->desired_tool_bar_string, 0, 0, 0, -1);
12282 /* FIXME: This should be controlled by a user option. But it
12283 doesn't make sense to have an R2L tool bar if the menu bar cannot
12284 be drawn also R2L, and making the menu bar R2L is tricky due
12285 toolkit-specific code that implements it. If an R2L tool bar is
12286 ever supported, display_tool_bar_line should also be augmented to
12287 call unproduce_glyphs like display_line and display_string
12288 do. */
12289 it.paragraph_embedding = L2R;
12291 if (f->n_tool_bar_rows == 0)
12293 int new_height = tool_bar_height (f, &f->n_tool_bar_rows, true);
12295 if (new_height != WINDOW_PIXEL_HEIGHT (w))
12297 x_change_tool_bar_height (f, new_height);
12298 frame_default_tool_bar_height = new_height;
12299 /* Always do that now. */
12300 clear_glyph_matrix (w->desired_matrix);
12301 f->fonts_changed = true;
12302 return true;
12306 /* Display as many lines as needed to display all tool-bar items. */
12308 if (f->n_tool_bar_rows > 0)
12310 int border, rows, height, extra;
12312 if (TYPE_RANGED_INTEGERP (int, Vtool_bar_border))
12313 border = XINT (Vtool_bar_border);
12314 else if (EQ (Vtool_bar_border, Qinternal_border_width))
12315 border = FRAME_INTERNAL_BORDER_WIDTH (f);
12316 else if (EQ (Vtool_bar_border, Qborder_width))
12317 border = f->border_width;
12318 else
12319 border = 0;
12320 if (border < 0)
12321 border = 0;
12323 rows = f->n_tool_bar_rows;
12324 height = max (1, (it.last_visible_y - border) / rows);
12325 extra = it.last_visible_y - border - height * rows;
12327 while (it.current_y < it.last_visible_y)
12329 int h = 0;
12330 if (extra > 0 && rows-- > 0)
12332 h = (extra + rows - 1) / rows;
12333 extra -= h;
12335 display_tool_bar_line (&it, height + h);
12338 else
12340 while (it.current_y < it.last_visible_y)
12341 display_tool_bar_line (&it, 0);
12344 /* It doesn't make much sense to try scrolling in the tool-bar
12345 window, so don't do it. */
12346 w->desired_matrix->no_scrolling_p = true;
12347 w->must_be_updated_p = true;
12349 if (!NILP (Vauto_resize_tool_bars))
12351 bool change_height_p = true;
12353 /* If we couldn't display everything, change the tool-bar's
12354 height if there is room for more. */
12355 if (IT_STRING_CHARPOS (it) < it.end_charpos)
12356 change_height_p = true;
12358 /* We subtract 1 because display_tool_bar_line advances the
12359 glyph_row pointer before returning to its caller. We want to
12360 examine the last glyph row produced by
12361 display_tool_bar_line. */
12362 row = it.glyph_row - 1;
12364 /* If there are blank lines at the end, except for a partially
12365 visible blank line at the end that is smaller than
12366 FRAME_LINE_HEIGHT, change the tool-bar's height. */
12367 if (!MATRIX_ROW_DISPLAYS_TEXT_P (row)
12368 && row->height >= FRAME_LINE_HEIGHT (f))
12369 change_height_p = true;
12371 /* If row displays tool-bar items, but is partially visible,
12372 change the tool-bar's height. */
12373 if (MATRIX_ROW_DISPLAYS_TEXT_P (row)
12374 && MATRIX_ROW_BOTTOM_Y (row) > it.last_visible_y)
12375 change_height_p = true;
12377 /* Resize windows as needed by changing the `tool-bar-lines'
12378 frame parameter. */
12379 if (change_height_p)
12381 int nrows;
12382 int new_height = tool_bar_height (f, &nrows, true);
12384 change_height_p = ((EQ (Vauto_resize_tool_bars, Qgrow_only)
12385 && !f->minimize_tool_bar_window_p)
12386 ? (new_height > WINDOW_PIXEL_HEIGHT (w))
12387 : (new_height != WINDOW_PIXEL_HEIGHT (w)));
12388 f->minimize_tool_bar_window_p = false;
12390 if (change_height_p)
12392 x_change_tool_bar_height (f, new_height);
12393 frame_default_tool_bar_height = new_height;
12394 clear_glyph_matrix (w->desired_matrix);
12395 f->n_tool_bar_rows = nrows;
12396 f->fonts_changed = true;
12398 return true;
12403 f->minimize_tool_bar_window_p = false;
12404 return false;
12406 #endif /* USE_GTK || HAVE_NS */
12409 #if ! defined (USE_GTK) && ! defined (HAVE_NS)
12411 /* Get information about the tool-bar item which is displayed in GLYPH
12412 on frame F. Return in *PROP_IDX the index where tool-bar item
12413 properties start in F->tool_bar_items. Value is false if
12414 GLYPH doesn't display a tool-bar item. */
12416 static bool
12417 tool_bar_item_info (struct frame *f, struct glyph *glyph, int *prop_idx)
12419 Lisp_Object prop;
12420 int charpos;
12422 /* This function can be called asynchronously, which means we must
12423 exclude any possibility that Fget_text_property signals an
12424 error. */
12425 charpos = min (SCHARS (f->current_tool_bar_string), glyph->charpos);
12426 charpos = max (0, charpos);
12428 /* Get the text property `menu-item' at pos. The value of that
12429 property is the start index of this item's properties in
12430 F->tool_bar_items. */
12431 prop = Fget_text_property (make_number (charpos),
12432 Qmenu_item, f->current_tool_bar_string);
12433 if (! INTEGERP (prop))
12434 return false;
12435 *prop_idx = XINT (prop);
12436 return true;
12440 /* Get information about the tool-bar item at position X/Y on frame F.
12441 Return in *GLYPH a pointer to the glyph of the tool-bar item in
12442 the current matrix of the tool-bar window of F, or NULL if not
12443 on a tool-bar item. Return in *PROP_IDX the index of the tool-bar
12444 item in F->tool_bar_items. Value is
12446 -1 if X/Y is not on a tool-bar item
12447 0 if X/Y is on the same item that was highlighted before.
12448 1 otherwise. */
12450 static int
12451 get_tool_bar_item (struct frame *f, int x, int y, struct glyph **glyph,
12452 int *hpos, int *vpos, int *prop_idx)
12454 Mouse_HLInfo *hlinfo = MOUSE_HL_INFO (f);
12455 struct window *w = XWINDOW (f->tool_bar_window);
12456 int area;
12458 /* Find the glyph under X/Y. */
12459 *glyph = x_y_to_hpos_vpos (w, x, y, hpos, vpos, 0, 0, &area);
12460 if (*glyph == NULL)
12461 return -1;
12463 /* Get the start of this tool-bar item's properties in
12464 f->tool_bar_items. */
12465 if (!tool_bar_item_info (f, *glyph, prop_idx))
12466 return -1;
12468 /* Is mouse on the highlighted item? */
12469 if (EQ (f->tool_bar_window, hlinfo->mouse_face_window)
12470 && *vpos >= hlinfo->mouse_face_beg_row
12471 && *vpos <= hlinfo->mouse_face_end_row
12472 && (*vpos > hlinfo->mouse_face_beg_row
12473 || *hpos >= hlinfo->mouse_face_beg_col)
12474 && (*vpos < hlinfo->mouse_face_end_row
12475 || *hpos < hlinfo->mouse_face_end_col
12476 || hlinfo->mouse_face_past_end))
12477 return 0;
12479 return 1;
12483 /* EXPORT:
12484 Handle mouse button event on the tool-bar of frame F, at
12485 frame-relative coordinates X/Y. DOWN_P is true for a button press,
12486 false for button release. MODIFIERS is event modifiers for button
12487 release. */
12489 void
12490 handle_tool_bar_click (struct frame *f, int x, int y, bool down_p,
12491 int modifiers)
12493 Mouse_HLInfo *hlinfo = MOUSE_HL_INFO (f);
12494 struct window *w = XWINDOW (f->tool_bar_window);
12495 int hpos, vpos, prop_idx;
12496 struct glyph *glyph;
12497 Lisp_Object enabled_p;
12498 int ts;
12500 /* If not on the highlighted tool-bar item, and mouse-highlight is
12501 non-nil, return. This is so we generate the tool-bar button
12502 click only when the mouse button is released on the same item as
12503 where it was pressed. However, when mouse-highlight is disabled,
12504 generate the click when the button is released regardless of the
12505 highlight, since tool-bar items are not highlighted in that
12506 case. */
12507 frame_to_window_pixel_xy (w, &x, &y);
12508 ts = get_tool_bar_item (f, x, y, &glyph, &hpos, &vpos, &prop_idx);
12509 if (ts == -1
12510 || (ts != 0 && !NILP (Vmouse_highlight)))
12511 return;
12513 /* When mouse-highlight is off, generate the click for the item
12514 where the button was pressed, disregarding where it was
12515 released. */
12516 if (NILP (Vmouse_highlight) && !down_p)
12517 prop_idx = f->last_tool_bar_item;
12519 /* If item is disabled, do nothing. */
12520 enabled_p = AREF (f->tool_bar_items, prop_idx + TOOL_BAR_ITEM_ENABLED_P);
12521 if (NILP (enabled_p))
12522 return;
12524 if (down_p)
12526 /* Show item in pressed state. */
12527 if (!NILP (Vmouse_highlight))
12528 show_mouse_face (hlinfo, DRAW_IMAGE_SUNKEN);
12529 f->last_tool_bar_item = prop_idx;
12531 else
12533 Lisp_Object key, frame;
12534 struct input_event event;
12535 EVENT_INIT (event);
12537 /* Show item in released state. */
12538 if (!NILP (Vmouse_highlight))
12539 show_mouse_face (hlinfo, DRAW_IMAGE_RAISED);
12541 key = AREF (f->tool_bar_items, prop_idx + TOOL_BAR_ITEM_KEY);
12543 XSETFRAME (frame, f);
12544 event.kind = TOOL_BAR_EVENT;
12545 event.frame_or_window = frame;
12546 event.arg = frame;
12547 kbd_buffer_store_event (&event);
12549 event.kind = TOOL_BAR_EVENT;
12550 event.frame_or_window = frame;
12551 event.arg = key;
12552 event.modifiers = modifiers;
12553 kbd_buffer_store_event (&event);
12554 f->last_tool_bar_item = -1;
12559 /* Possibly highlight a tool-bar item on frame F when mouse moves to
12560 tool-bar window-relative coordinates X/Y. Called from
12561 note_mouse_highlight. */
12563 static void
12564 note_tool_bar_highlight (struct frame *f, int x, int y)
12566 Lisp_Object window = f->tool_bar_window;
12567 struct window *w = XWINDOW (window);
12568 Display_Info *dpyinfo = FRAME_DISPLAY_INFO (f);
12569 Mouse_HLInfo *hlinfo = MOUSE_HL_INFO (f);
12570 int hpos, vpos;
12571 struct glyph *glyph;
12572 struct glyph_row *row;
12573 int i;
12574 Lisp_Object enabled_p;
12575 int prop_idx;
12576 enum draw_glyphs_face draw = DRAW_IMAGE_RAISED;
12577 bool mouse_down_p;
12578 int rc;
12580 /* Function note_mouse_highlight is called with negative X/Y
12581 values when mouse moves outside of the frame. */
12582 if (x <= 0 || y <= 0)
12584 clear_mouse_face (hlinfo);
12585 return;
12588 rc = get_tool_bar_item (f, x, y, &glyph, &hpos, &vpos, &prop_idx);
12589 if (rc < 0)
12591 /* Not on tool-bar item. */
12592 clear_mouse_face (hlinfo);
12593 return;
12595 else if (rc == 0)
12596 /* On same tool-bar item as before. */
12597 goto set_help_echo;
12599 clear_mouse_face (hlinfo);
12601 /* Mouse is down, but on different tool-bar item? */
12602 mouse_down_p = (x_mouse_grabbed (dpyinfo)
12603 && f == dpyinfo->last_mouse_frame);
12605 if (mouse_down_p && f->last_tool_bar_item != prop_idx)
12606 return;
12608 draw = mouse_down_p ? DRAW_IMAGE_SUNKEN : DRAW_IMAGE_RAISED;
12610 /* If tool-bar item is not enabled, don't highlight it. */
12611 enabled_p = AREF (f->tool_bar_items, prop_idx + TOOL_BAR_ITEM_ENABLED_P);
12612 if (!NILP (enabled_p) && !NILP (Vmouse_highlight))
12614 /* Compute the x-position of the glyph. In front and past the
12615 image is a space. We include this in the highlighted area. */
12616 row = MATRIX_ROW (w->current_matrix, vpos);
12617 for (i = x = 0; i < hpos; ++i)
12618 x += row->glyphs[TEXT_AREA][i].pixel_width;
12620 /* Record this as the current active region. */
12621 hlinfo->mouse_face_beg_col = hpos;
12622 hlinfo->mouse_face_beg_row = vpos;
12623 hlinfo->mouse_face_beg_x = x;
12624 hlinfo->mouse_face_past_end = false;
12626 hlinfo->mouse_face_end_col = hpos + 1;
12627 hlinfo->mouse_face_end_row = vpos;
12628 hlinfo->mouse_face_end_x = x + glyph->pixel_width;
12629 hlinfo->mouse_face_window = window;
12630 hlinfo->mouse_face_face_id = TOOL_BAR_FACE_ID;
12632 /* Display it as active. */
12633 show_mouse_face (hlinfo, draw);
12636 set_help_echo:
12638 /* Set help_echo_string to a help string to display for this tool-bar item.
12639 XTread_socket does the rest. */
12640 help_echo_object = help_echo_window = Qnil;
12641 help_echo_pos = -1;
12642 help_echo_string = AREF (f->tool_bar_items, prop_idx + TOOL_BAR_ITEM_HELP);
12643 if (NILP (help_echo_string))
12644 help_echo_string = AREF (f->tool_bar_items, prop_idx + TOOL_BAR_ITEM_CAPTION);
12647 #endif /* !USE_GTK && !HAVE_NS */
12649 #endif /* HAVE_WINDOW_SYSTEM */
12653 /************************************************************************
12654 Horizontal scrolling
12655 ************************************************************************/
12657 /* For all leaf windows in the window tree rooted at WINDOW, set their
12658 hscroll value so that PT is (i) visible in the window, and (ii) so
12659 that it is not within a certain margin at the window's left and
12660 right border. Value is true if any window's hscroll has been
12661 changed. */
12663 static bool
12664 hscroll_window_tree (Lisp_Object window)
12666 bool hscrolled_p = false;
12667 bool hscroll_relative_p = FLOATP (Vhscroll_step);
12668 int hscroll_step_abs = 0;
12669 double hscroll_step_rel = 0;
12671 if (hscroll_relative_p)
12673 hscroll_step_rel = XFLOAT_DATA (Vhscroll_step);
12674 if (hscroll_step_rel < 0)
12676 hscroll_relative_p = false;
12677 hscroll_step_abs = 0;
12680 else if (TYPE_RANGED_INTEGERP (int, Vhscroll_step))
12682 hscroll_step_abs = XINT (Vhscroll_step);
12683 if (hscroll_step_abs < 0)
12684 hscroll_step_abs = 0;
12686 else
12687 hscroll_step_abs = 0;
12689 while (WINDOWP (window))
12691 struct window *w = XWINDOW (window);
12693 if (WINDOWP (w->contents))
12694 hscrolled_p |= hscroll_window_tree (w->contents);
12695 else if (w->cursor.vpos >= 0)
12697 int h_margin;
12698 int text_area_width;
12699 struct glyph_row *cursor_row;
12700 struct glyph_row *bottom_row;
12702 bottom_row = MATRIX_BOTTOM_TEXT_ROW (w->desired_matrix, w);
12703 if (w->cursor.vpos < bottom_row - w->desired_matrix->rows)
12704 cursor_row = MATRIX_ROW (w->desired_matrix, w->cursor.vpos);
12705 else
12706 cursor_row = bottom_row - 1;
12708 if (!cursor_row->enabled_p)
12710 bottom_row = MATRIX_BOTTOM_TEXT_ROW (w->current_matrix, w);
12711 if (w->cursor.vpos < bottom_row - w->current_matrix->rows)
12712 cursor_row = MATRIX_ROW (w->current_matrix, w->cursor.vpos);
12713 else
12714 cursor_row = bottom_row - 1;
12716 bool row_r2l_p = cursor_row->reversed_p;
12718 text_area_width = window_box_width (w, TEXT_AREA);
12720 /* Scroll when cursor is inside this scroll margin. */
12721 h_margin = hscroll_margin * WINDOW_FRAME_COLUMN_WIDTH (w);
12723 /* If the position of this window's point has explicitly
12724 changed, no more suspend auto hscrolling. */
12725 if (NILP (Fequal (Fwindow_point (window), Fwindow_old_point (window))))
12726 w->suspend_auto_hscroll = false;
12728 /* Remember window point. */
12729 Fset_marker (w->old_pointm,
12730 ((w == XWINDOW (selected_window))
12731 ? make_number (BUF_PT (XBUFFER (w->contents)))
12732 : Fmarker_position (w->pointm)),
12733 w->contents);
12735 if (!NILP (Fbuffer_local_value (Qauto_hscroll_mode, w->contents))
12736 && !w->suspend_auto_hscroll
12737 /* In some pathological cases, like restoring a window
12738 configuration into a frame that is much smaller than
12739 the one from which the configuration was saved, we
12740 get glyph rows whose start and end have zero buffer
12741 positions, which we cannot handle below. Just skip
12742 such windows. */
12743 && CHARPOS (cursor_row->start.pos) >= BUF_BEG (w->contents)
12744 /* For left-to-right rows, hscroll when cursor is either
12745 (i) inside the right hscroll margin, or (ii) if it is
12746 inside the left margin and the window is already
12747 hscrolled. */
12748 && ((!row_r2l_p
12749 && ((w->hscroll && w->cursor.x <= h_margin)
12750 || (cursor_row->enabled_p
12751 && cursor_row->truncated_on_right_p
12752 && (w->cursor.x >= text_area_width - h_margin))))
12753 /* For right-to-left rows, the logic is similar,
12754 except that rules for scrolling to left and right
12755 are reversed. E.g., if cursor.x <= h_margin, we
12756 need to hscroll "to the right" unconditionally,
12757 and that will scroll the screen to the left so as
12758 to reveal the next portion of the row. */
12759 || (row_r2l_p
12760 && ((cursor_row->enabled_p
12761 /* FIXME: It is confusing to set the
12762 truncated_on_right_p flag when R2L rows
12763 are actually truncated on the left. */
12764 && cursor_row->truncated_on_right_p
12765 && w->cursor.x <= h_margin)
12766 || (w->hscroll
12767 && (w->cursor.x >= text_area_width - h_margin))))))
12769 struct it it;
12770 ptrdiff_t hscroll;
12771 struct buffer *saved_current_buffer;
12772 ptrdiff_t pt;
12773 int wanted_x;
12775 /* Find point in a display of infinite width. */
12776 saved_current_buffer = current_buffer;
12777 current_buffer = XBUFFER (w->contents);
12779 if (w == XWINDOW (selected_window))
12780 pt = PT;
12781 else
12782 pt = clip_to_bounds (BEGV, marker_position (w->pointm), ZV);
12784 /* Move iterator to pt starting at cursor_row->start in
12785 a line with infinite width. */
12786 init_to_row_start (&it, w, cursor_row);
12787 it.last_visible_x = INFINITY;
12788 move_it_in_display_line_to (&it, pt, -1, MOVE_TO_POS);
12789 current_buffer = saved_current_buffer;
12791 /* Position cursor in window. */
12792 if (!hscroll_relative_p && hscroll_step_abs == 0)
12793 hscroll = max (0, (it.current_x
12794 - (ITERATOR_AT_END_OF_LINE_P (&it)
12795 ? (text_area_width - 4 * FRAME_COLUMN_WIDTH (it.f))
12796 : (text_area_width / 2))))
12797 / FRAME_COLUMN_WIDTH (it.f);
12798 else if ((!row_r2l_p
12799 && w->cursor.x >= text_area_width - h_margin)
12800 || (row_r2l_p && w->cursor.x <= h_margin))
12802 if (hscroll_relative_p)
12803 wanted_x = text_area_width * (1 - hscroll_step_rel)
12804 - h_margin;
12805 else
12806 wanted_x = text_area_width
12807 - hscroll_step_abs * FRAME_COLUMN_WIDTH (it.f)
12808 - h_margin;
12809 hscroll
12810 = max (0, it.current_x - wanted_x) / FRAME_COLUMN_WIDTH (it.f);
12812 else
12814 if (hscroll_relative_p)
12815 wanted_x = text_area_width * hscroll_step_rel
12816 + h_margin;
12817 else
12818 wanted_x = hscroll_step_abs * FRAME_COLUMN_WIDTH (it.f)
12819 + h_margin;
12820 hscroll
12821 = max (0, it.current_x - wanted_x) / FRAME_COLUMN_WIDTH (it.f);
12823 hscroll = max (hscroll, w->min_hscroll);
12825 /* Don't prevent redisplay optimizations if hscroll
12826 hasn't changed, as it will unnecessarily slow down
12827 redisplay. */
12828 if (w->hscroll != hscroll)
12830 struct buffer *b = XBUFFER (w->contents);
12831 b->prevent_redisplay_optimizations_p = true;
12832 w->hscroll = hscroll;
12833 hscrolled_p = true;
12838 window = w->next;
12841 /* Value is true if hscroll of any leaf window has been changed. */
12842 return hscrolled_p;
12846 /* Set hscroll so that cursor is visible and not inside horizontal
12847 scroll margins for all windows in the tree rooted at WINDOW. See
12848 also hscroll_window_tree above. Value is true if any window's
12849 hscroll has been changed. If it has, desired matrices on the frame
12850 of WINDOW are cleared. */
12852 static bool
12853 hscroll_windows (Lisp_Object window)
12855 bool hscrolled_p = hscroll_window_tree (window);
12856 if (hscrolled_p)
12857 clear_desired_matrices (XFRAME (WINDOW_FRAME (XWINDOW (window))));
12858 return hscrolled_p;
12863 /************************************************************************
12864 Redisplay
12865 ************************************************************************/
12867 /* Variables holding some state of redisplay if GLYPH_DEBUG is defined.
12868 This is sometimes handy to have in a debugger session. */
12870 #ifdef GLYPH_DEBUG
12872 /* First and last unchanged row for try_window_id. */
12874 static int debug_first_unchanged_at_end_vpos;
12875 static int debug_last_unchanged_at_beg_vpos;
12877 /* Delta vpos and y. */
12879 static int debug_dvpos, debug_dy;
12881 /* Delta in characters and bytes for try_window_id. */
12883 static ptrdiff_t debug_delta, debug_delta_bytes;
12885 /* Values of window_end_pos and window_end_vpos at the end of
12886 try_window_id. */
12888 static ptrdiff_t debug_end_vpos;
12890 /* Append a string to W->desired_matrix->method. FMT is a printf
12891 format string. If trace_redisplay_p is true also printf the
12892 resulting string to stderr. */
12894 static void debug_method_add (struct window *, char const *, ...)
12895 ATTRIBUTE_FORMAT_PRINTF (2, 3);
12897 static void
12898 debug_method_add (struct window *w, char const *fmt, ...)
12900 void *ptr = w;
12901 char *method = w->desired_matrix->method;
12902 int len = strlen (method);
12903 int size = sizeof w->desired_matrix->method;
12904 int remaining = size - len - 1;
12905 va_list ap;
12907 if (len && remaining)
12909 method[len] = '|';
12910 --remaining, ++len;
12913 va_start (ap, fmt);
12914 vsnprintf (method + len, remaining + 1, fmt, ap);
12915 va_end (ap);
12917 if (trace_redisplay_p)
12918 fprintf (stderr, "%p (%s): %s\n",
12919 ptr,
12920 ((BUFFERP (w->contents)
12921 && STRINGP (BVAR (XBUFFER (w->contents), name)))
12922 ? SSDATA (BVAR (XBUFFER (w->contents), name))
12923 : "no buffer"),
12924 method + len);
12927 #endif /* GLYPH_DEBUG */
12930 /* Value is true if all changes in window W, which displays
12931 current_buffer, are in the text between START and END. START is a
12932 buffer position, END is given as a distance from Z. Used in
12933 redisplay_internal for display optimization. */
12935 static bool
12936 text_outside_line_unchanged_p (struct window *w,
12937 ptrdiff_t start, ptrdiff_t end)
12939 bool unchanged_p = true;
12941 /* If text or overlays have changed, see where. */
12942 if (window_outdated (w))
12944 /* Gap in the line? */
12945 if (GPT < start || Z - GPT < end)
12946 unchanged_p = false;
12948 /* Changes start in front of the line, or end after it? */
12949 if (unchanged_p
12950 && (BEG_UNCHANGED < start - 1
12951 || END_UNCHANGED < end))
12952 unchanged_p = false;
12954 /* If selective display, can't optimize if changes start at the
12955 beginning of the line. */
12956 if (unchanged_p
12957 && INTEGERP (BVAR (current_buffer, selective_display))
12958 && XINT (BVAR (current_buffer, selective_display)) > 0
12959 && (BEG_UNCHANGED < start || GPT <= start))
12960 unchanged_p = false;
12962 /* If there are overlays at the start or end of the line, these
12963 may have overlay strings with newlines in them. A change at
12964 START, for instance, may actually concern the display of such
12965 overlay strings as well, and they are displayed on different
12966 lines. So, quickly rule out this case. (For the future, it
12967 might be desirable to implement something more telling than
12968 just BEG/END_UNCHANGED.) */
12969 if (unchanged_p)
12971 if (BEG + BEG_UNCHANGED == start
12972 && overlay_touches_p (start))
12973 unchanged_p = false;
12974 if (END_UNCHANGED == end
12975 && overlay_touches_p (Z - end))
12976 unchanged_p = false;
12979 /* Under bidi reordering, adding or deleting a character in the
12980 beginning of a paragraph, before the first strong directional
12981 character, can change the base direction of the paragraph (unless
12982 the buffer specifies a fixed paragraph direction), which will
12983 require to redisplay the whole paragraph. It might be worthwhile
12984 to find the paragraph limits and widen the range of redisplayed
12985 lines to that, but for now just give up this optimization. */
12986 if (!NILP (BVAR (XBUFFER (w->contents), bidi_display_reordering))
12987 && NILP (BVAR (XBUFFER (w->contents), bidi_paragraph_direction)))
12988 unchanged_p = false;
12991 return unchanged_p;
12995 /* Do a frame update, taking possible shortcuts into account. This is
12996 the main external entry point for redisplay.
12998 If the last redisplay displayed an echo area message and that message
12999 is no longer requested, we clear the echo area or bring back the
13000 mini-buffer if that is in use. */
13002 void
13003 redisplay (void)
13005 redisplay_internal ();
13009 static Lisp_Object
13010 overlay_arrow_string_or_property (Lisp_Object var)
13012 Lisp_Object val;
13014 if (val = Fget (var, Qoverlay_arrow_string), STRINGP (val))
13015 return val;
13017 return Voverlay_arrow_string;
13020 /* Return true if there are any overlay-arrows in current_buffer. */
13021 static bool
13022 overlay_arrow_in_current_buffer_p (void)
13024 Lisp_Object vlist;
13026 for (vlist = Voverlay_arrow_variable_list;
13027 CONSP (vlist);
13028 vlist = XCDR (vlist))
13030 Lisp_Object var = XCAR (vlist);
13031 Lisp_Object val;
13033 if (!SYMBOLP (var))
13034 continue;
13035 val = find_symbol_value (var);
13036 if (MARKERP (val)
13037 && current_buffer == XMARKER (val)->buffer)
13038 return true;
13040 return false;
13044 /* Return true if any overlay_arrows have moved or overlay-arrow-string
13045 has changed. */
13047 static bool
13048 overlay_arrows_changed_p (void)
13050 Lisp_Object vlist;
13052 for (vlist = Voverlay_arrow_variable_list;
13053 CONSP (vlist);
13054 vlist = XCDR (vlist))
13056 Lisp_Object var = XCAR (vlist);
13057 Lisp_Object val, pstr;
13059 if (!SYMBOLP (var))
13060 continue;
13061 val = find_symbol_value (var);
13062 if (!MARKERP (val))
13063 continue;
13064 if (! EQ (COERCE_MARKER (val),
13065 Fget (var, Qlast_arrow_position))
13066 || ! (pstr = overlay_arrow_string_or_property (var),
13067 EQ (pstr, Fget (var, Qlast_arrow_string))))
13068 return true;
13070 return false;
13073 /* Mark overlay arrows to be updated on next redisplay. */
13075 static void
13076 update_overlay_arrows (int up_to_date)
13078 Lisp_Object vlist;
13080 for (vlist = Voverlay_arrow_variable_list;
13081 CONSP (vlist);
13082 vlist = XCDR (vlist))
13084 Lisp_Object var = XCAR (vlist);
13086 if (!SYMBOLP (var))
13087 continue;
13089 if (up_to_date > 0)
13091 Lisp_Object val = find_symbol_value (var);
13092 Fput (var, Qlast_arrow_position,
13093 COERCE_MARKER (val));
13094 Fput (var, Qlast_arrow_string,
13095 overlay_arrow_string_or_property (var));
13097 else if (up_to_date < 0
13098 || !NILP (Fget (var, Qlast_arrow_position)))
13100 Fput (var, Qlast_arrow_position, Qt);
13101 Fput (var, Qlast_arrow_string, Qt);
13107 /* Return overlay arrow string to display at row.
13108 Return integer (bitmap number) for arrow bitmap in left fringe.
13109 Return nil if no overlay arrow. */
13111 static Lisp_Object
13112 overlay_arrow_at_row (struct it *it, struct glyph_row *row)
13114 Lisp_Object vlist;
13116 for (vlist = Voverlay_arrow_variable_list;
13117 CONSP (vlist);
13118 vlist = XCDR (vlist))
13120 Lisp_Object var = XCAR (vlist);
13121 Lisp_Object val;
13123 if (!SYMBOLP (var))
13124 continue;
13126 val = find_symbol_value (var);
13128 if (MARKERP (val)
13129 && current_buffer == XMARKER (val)->buffer
13130 && (MATRIX_ROW_START_CHARPOS (row) == marker_position (val)))
13132 if (FRAME_WINDOW_P (it->f)
13133 /* FIXME: if ROW->reversed_p is set, this should test
13134 the right fringe, not the left one. */
13135 && WINDOW_LEFT_FRINGE_WIDTH (it->w) > 0)
13137 #ifdef HAVE_WINDOW_SYSTEM
13138 if (val = Fget (var, Qoverlay_arrow_bitmap), SYMBOLP (val))
13140 int fringe_bitmap = lookup_fringe_bitmap (val);
13141 if (fringe_bitmap != 0)
13142 return make_number (fringe_bitmap);
13144 #endif
13145 return make_number (-1); /* Use default arrow bitmap. */
13147 return overlay_arrow_string_or_property (var);
13151 return Qnil;
13154 /* Return true if point moved out of or into a composition. Otherwise
13155 return false. PREV_BUF and PREV_PT are the last point buffer and
13156 position. BUF and PT are the current point buffer and position. */
13158 static bool
13159 check_point_in_composition (struct buffer *prev_buf, ptrdiff_t prev_pt,
13160 struct buffer *buf, ptrdiff_t pt)
13162 ptrdiff_t start, end;
13163 Lisp_Object prop;
13164 Lisp_Object buffer;
13166 XSETBUFFER (buffer, buf);
13167 /* Check a composition at the last point if point moved within the
13168 same buffer. */
13169 if (prev_buf == buf)
13171 if (prev_pt == pt)
13172 /* Point didn't move. */
13173 return false;
13175 if (prev_pt > BUF_BEGV (buf) && prev_pt < BUF_ZV (buf)
13176 && find_composition (prev_pt, -1, &start, &end, &prop, buffer)
13177 && composition_valid_p (start, end, prop)
13178 && start < prev_pt && end > prev_pt)
13179 /* The last point was within the composition. Return true iff
13180 point moved out of the composition. */
13181 return (pt <= start || pt >= end);
13184 /* Check a composition at the current point. */
13185 return (pt > BUF_BEGV (buf) && pt < BUF_ZV (buf)
13186 && find_composition (pt, -1, &start, &end, &prop, buffer)
13187 && composition_valid_p (start, end, prop)
13188 && start < pt && end > pt);
13191 /* Reconsider the clip changes of buffer which is displayed in W. */
13193 static void
13194 reconsider_clip_changes (struct window *w)
13196 struct buffer *b = XBUFFER (w->contents);
13198 if (b->clip_changed
13199 && w->window_end_valid
13200 && w->current_matrix->buffer == b
13201 && w->current_matrix->zv == BUF_ZV (b)
13202 && w->current_matrix->begv == BUF_BEGV (b))
13203 b->clip_changed = false;
13205 /* If display wasn't paused, and W is not a tool bar window, see if
13206 point has been moved into or out of a composition. In that case,
13207 set b->clip_changed to force updating the screen. If
13208 b->clip_changed has already been set, skip this check. */
13209 if (!b->clip_changed && w->window_end_valid)
13211 ptrdiff_t pt = (w == XWINDOW (selected_window)
13212 ? PT : marker_position (w->pointm));
13214 if ((w->current_matrix->buffer != b || pt != w->last_point)
13215 && check_point_in_composition (w->current_matrix->buffer,
13216 w->last_point, b, pt))
13217 b->clip_changed = true;
13221 static void
13222 propagate_buffer_redisplay (void)
13223 { /* Resetting b->text->redisplay is problematic!
13224 We can't just reset it in the case that some window that displays
13225 it has not been redisplayed; and such a window can stay
13226 unredisplayed for a long time if it's currently invisible.
13227 But we do want to reset it at the end of redisplay otherwise
13228 its displayed windows will keep being redisplayed over and over
13229 again.
13230 So we copy all b->text->redisplay flags up to their windows here,
13231 such that mark_window_display_accurate can safely reset
13232 b->text->redisplay. */
13233 Lisp_Object ws = window_list ();
13234 for (; CONSP (ws); ws = XCDR (ws))
13236 struct window *thisw = XWINDOW (XCAR (ws));
13237 struct buffer *thisb = XBUFFER (thisw->contents);
13238 if (thisb->text->redisplay)
13239 thisw->redisplay = true;
13243 #define STOP_POLLING \
13244 do { if (! polling_stopped_here) stop_polling (); \
13245 polling_stopped_here = true; } while (false)
13247 #define RESUME_POLLING \
13248 do { if (polling_stopped_here) start_polling (); \
13249 polling_stopped_here = false; } while (false)
13252 /* Perhaps in the future avoid recentering windows if it
13253 is not necessary; currently that causes some problems. */
13255 static void
13256 redisplay_internal (void)
13258 struct window *w = XWINDOW (selected_window);
13259 struct window *sw;
13260 struct frame *fr;
13261 bool pending;
13262 bool must_finish = false, match_p;
13263 struct text_pos tlbufpos, tlendpos;
13264 int number_of_visible_frames;
13265 ptrdiff_t count;
13266 struct frame *sf;
13267 bool polling_stopped_here = false;
13268 Lisp_Object tail, frame;
13270 /* True means redisplay has to consider all windows on all
13271 frames. False, only selected_window is considered. */
13272 bool consider_all_windows_p;
13274 /* True means redisplay has to redisplay the miniwindow. */
13275 bool update_miniwindow_p = false;
13277 TRACE ((stderr, "redisplay_internal %d\n", redisplaying_p));
13279 /* No redisplay if running in batch mode or frame is not yet fully
13280 initialized, or redisplay is explicitly turned off by setting
13281 Vinhibit_redisplay. */
13282 if (FRAME_INITIAL_P (SELECTED_FRAME ())
13283 || !NILP (Vinhibit_redisplay))
13284 return;
13286 /* Don't examine these until after testing Vinhibit_redisplay.
13287 When Emacs is shutting down, perhaps because its connection to
13288 X has dropped, we should not look at them at all. */
13289 fr = XFRAME (w->frame);
13290 sf = SELECTED_FRAME ();
13292 if (!fr->glyphs_initialized_p)
13293 return;
13295 #if defined (USE_X_TOOLKIT) || defined (USE_GTK) || defined (HAVE_NS)
13296 if (popup_activated ())
13297 return;
13298 #endif
13300 /* I don't think this happens but let's be paranoid. */
13301 if (redisplaying_p)
13302 return;
13304 /* Record a function that clears redisplaying_p
13305 when we leave this function. */
13306 count = SPECPDL_INDEX ();
13307 record_unwind_protect_void (unwind_redisplay);
13308 redisplaying_p = true;
13309 specbind (Qinhibit_free_realized_faces, Qnil);
13311 /* Record this function, so it appears on the profiler's backtraces. */
13312 record_in_backtrace (Qredisplay_internal, 0, 0);
13314 FOR_EACH_FRAME (tail, frame)
13315 XFRAME (frame)->already_hscrolled_p = false;
13317 retry:
13318 /* Remember the currently selected window. */
13319 sw = w;
13321 pending = false;
13322 last_escape_glyph_frame = NULL;
13323 last_escape_glyph_face_id = (1 << FACE_ID_BITS);
13324 last_glyphless_glyph_frame = NULL;
13325 last_glyphless_glyph_face_id = (1 << FACE_ID_BITS);
13327 /* If face_change, init_iterator will free all realized faces, which
13328 includes the faces referenced from current matrices. So, we
13329 can't reuse current matrices in this case. */
13330 if (face_change)
13331 windows_or_buffers_changed = 47;
13333 if ((FRAME_TERMCAP_P (sf) || FRAME_MSDOS_P (sf))
13334 && FRAME_TTY (sf)->previous_frame != sf)
13336 /* Since frames on a single ASCII terminal share the same
13337 display area, displaying a different frame means redisplay
13338 the whole thing. */
13339 SET_FRAME_GARBAGED (sf);
13340 #ifndef DOS_NT
13341 set_tty_color_mode (FRAME_TTY (sf), sf);
13342 #endif
13343 FRAME_TTY (sf)->previous_frame = sf;
13346 /* Set the visible flags for all frames. Do this before checking for
13347 resized or garbaged frames; they want to know if their frames are
13348 visible. See the comment in frame.h for FRAME_SAMPLE_VISIBILITY. */
13349 number_of_visible_frames = 0;
13351 FOR_EACH_FRAME (tail, frame)
13353 struct frame *f = XFRAME (frame);
13355 if (FRAME_VISIBLE_P (f))
13357 ++number_of_visible_frames;
13358 /* Adjust matrices for visible frames only. */
13359 if (f->fonts_changed)
13361 adjust_frame_glyphs (f);
13362 /* Disable all redisplay optimizations for this frame.
13363 This is because adjust_frame_glyphs resets the
13364 enabled_p flag for all glyph rows of all windows, so
13365 many optimizations will fail anyway, and some might
13366 fail to test that flag and do bogus things as
13367 result. */
13368 SET_FRAME_GARBAGED (f);
13369 f->fonts_changed = false;
13371 /* If cursor type has been changed on the frame
13372 other than selected, consider all frames. */
13373 if (f != sf && f->cursor_type_changed)
13374 update_mode_lines = 31;
13376 clear_desired_matrices (f);
13379 /* Notice any pending interrupt request to change frame size. */
13380 do_pending_window_change (true);
13382 /* do_pending_window_change could change the selected_window due to
13383 frame resizing which makes the selected window too small. */
13384 if (WINDOWP (selected_window) && (w = XWINDOW (selected_window)) != sw)
13385 sw = w;
13387 /* Clear frames marked as garbaged. */
13388 clear_garbaged_frames ();
13390 /* Build menubar and tool-bar items. */
13391 if (NILP (Vmemory_full))
13392 prepare_menu_bars ();
13394 reconsider_clip_changes (w);
13396 /* In most cases selected window displays current buffer. */
13397 match_p = XBUFFER (w->contents) == current_buffer;
13398 if (match_p)
13400 /* Detect case that we need to write or remove a star in the mode line. */
13401 if ((SAVE_MODIFF < MODIFF) != w->last_had_star)
13402 w->update_mode_line = true;
13404 if (mode_line_update_needed (w))
13405 w->update_mode_line = true;
13407 /* If reconsider_clip_changes above decided that the narrowing
13408 in the current buffer changed, make sure all other windows
13409 showing that buffer will be redisplayed. */
13410 if (current_buffer->clip_changed)
13411 bset_update_mode_line (current_buffer);
13414 /* Normally the message* functions will have already displayed and
13415 updated the echo area, but the frame may have been trashed, or
13416 the update may have been preempted, so display the echo area
13417 again here. Checking message_cleared_p captures the case that
13418 the echo area should be cleared. */
13419 if ((!NILP (echo_area_buffer[0]) && !display_last_displayed_message_p)
13420 || (!NILP (echo_area_buffer[1]) && display_last_displayed_message_p)
13421 || (message_cleared_p
13422 && minibuf_level == 0
13423 /* If the mini-window is currently selected, this means the
13424 echo-area doesn't show through. */
13425 && !MINI_WINDOW_P (XWINDOW (selected_window))))
13427 bool window_height_changed_p = echo_area_display (false);
13429 if (message_cleared_p)
13430 update_miniwindow_p = true;
13432 must_finish = true;
13434 /* If we don't display the current message, don't clear the
13435 message_cleared_p flag, because, if we did, we wouldn't clear
13436 the echo area in the next redisplay which doesn't preserve
13437 the echo area. */
13438 if (!display_last_displayed_message_p)
13439 message_cleared_p = false;
13441 if (window_height_changed_p)
13443 windows_or_buffers_changed = 50;
13445 /* If window configuration was changed, frames may have been
13446 marked garbaged. Clear them or we will experience
13447 surprises wrt scrolling. */
13448 clear_garbaged_frames ();
13451 else if (EQ (selected_window, minibuf_window)
13452 && (current_buffer->clip_changed || window_outdated (w))
13453 && resize_mini_window (w, false))
13455 /* Resized active mini-window to fit the size of what it is
13456 showing if its contents might have changed. */
13457 must_finish = true;
13459 /* If window configuration was changed, frames may have been
13460 marked garbaged. Clear them or we will experience
13461 surprises wrt scrolling. */
13462 clear_garbaged_frames ();
13465 if (windows_or_buffers_changed && !update_mode_lines)
13466 /* Code that sets windows_or_buffers_changed doesn't distinguish whether
13467 only the windows's contents needs to be refreshed, or whether the
13468 mode-lines also need a refresh. */
13469 update_mode_lines = (windows_or_buffers_changed == REDISPLAY_SOME
13470 ? REDISPLAY_SOME : 32);
13472 /* If specs for an arrow have changed, do thorough redisplay
13473 to ensure we remove any arrow that should no longer exist. */
13474 if (overlay_arrows_changed_p ())
13475 /* Apparently, this is the only case where we update other windows,
13476 without updating other mode-lines. */
13477 windows_or_buffers_changed = 49;
13479 consider_all_windows_p = (update_mode_lines
13480 || windows_or_buffers_changed);
13482 #define AINC(a,i) \
13483 if (VECTORP (a) && i >= 0 && i < ASIZE (a) && INTEGERP (AREF (a, i))) \
13484 ASET (a, i, make_number (1 + XINT (AREF (a, i))))
13486 AINC (Vredisplay__all_windows_cause, windows_or_buffers_changed);
13487 AINC (Vredisplay__mode_lines_cause, update_mode_lines);
13489 /* Optimize the case that only the line containing the cursor in the
13490 selected window has changed. Variables starting with this_ are
13491 set in display_line and record information about the line
13492 containing the cursor. */
13493 tlbufpos = this_line_start_pos;
13494 tlendpos = this_line_end_pos;
13495 if (!consider_all_windows_p
13496 && CHARPOS (tlbufpos) > 0
13497 && !w->update_mode_line
13498 && !current_buffer->clip_changed
13499 && !current_buffer->prevent_redisplay_optimizations_p
13500 && FRAME_VISIBLE_P (XFRAME (w->frame))
13501 && !FRAME_OBSCURED_P (XFRAME (w->frame))
13502 && !XFRAME (w->frame)->cursor_type_changed
13503 /* Make sure recorded data applies to current buffer, etc. */
13504 && this_line_buffer == current_buffer
13505 && match_p
13506 && !w->force_start
13507 && !w->optional_new_start
13508 /* Point must be on the line that we have info recorded about. */
13509 && PT >= CHARPOS (tlbufpos)
13510 && PT <= Z - CHARPOS (tlendpos)
13511 /* All text outside that line, including its final newline,
13512 must be unchanged. */
13513 && text_outside_line_unchanged_p (w, CHARPOS (tlbufpos),
13514 CHARPOS (tlendpos)))
13516 if (CHARPOS (tlbufpos) > BEGV
13517 && FETCH_BYTE (BYTEPOS (tlbufpos) - 1) != '\n'
13518 && (CHARPOS (tlbufpos) == ZV
13519 || FETCH_BYTE (BYTEPOS (tlbufpos)) == '\n'))
13520 /* Former continuation line has disappeared by becoming empty. */
13521 goto cancel;
13522 else if (window_outdated (w) || MINI_WINDOW_P (w))
13524 /* We have to handle the case of continuation around a
13525 wide-column character (see the comment in indent.c around
13526 line 1340).
13528 For instance, in the following case:
13530 -------- Insert --------
13531 K_A_N_\\ `a' K_A_N_a\ `X_' are wide-column chars.
13532 J_I_ ==> J_I_ `^^' are cursors.
13533 ^^ ^^
13534 -------- --------
13536 As we have to redraw the line above, we cannot use this
13537 optimization. */
13539 struct it it;
13540 int line_height_before = this_line_pixel_height;
13542 /* Note that start_display will handle the case that the
13543 line starting at tlbufpos is a continuation line. */
13544 start_display (&it, w, tlbufpos);
13546 /* Implementation note: It this still necessary? */
13547 if (it.current_x != this_line_start_x)
13548 goto cancel;
13550 TRACE ((stderr, "trying display optimization 1\n"));
13551 w->cursor.vpos = -1;
13552 overlay_arrow_seen = false;
13553 it.vpos = this_line_vpos;
13554 it.current_y = this_line_y;
13555 it.glyph_row = MATRIX_ROW (w->desired_matrix, this_line_vpos);
13556 display_line (&it);
13558 /* If line contains point, is not continued,
13559 and ends at same distance from eob as before, we win. */
13560 if (w->cursor.vpos >= 0
13561 /* Line is not continued, otherwise this_line_start_pos
13562 would have been set to 0 in display_line. */
13563 && CHARPOS (this_line_start_pos)
13564 /* Line ends as before. */
13565 && CHARPOS (this_line_end_pos) == CHARPOS (tlendpos)
13566 /* Line has same height as before. Otherwise other lines
13567 would have to be shifted up or down. */
13568 && this_line_pixel_height == line_height_before)
13570 /* If this is not the window's last line, we must adjust
13571 the charstarts of the lines below. */
13572 if (it.current_y < it.last_visible_y)
13574 struct glyph_row *row
13575 = MATRIX_ROW (w->current_matrix, this_line_vpos + 1);
13576 ptrdiff_t delta, delta_bytes;
13578 /* We used to distinguish between two cases here,
13579 conditioned by Z - CHARPOS (tlendpos) == ZV, for
13580 when the line ends in a newline or the end of the
13581 buffer's accessible portion. But both cases did
13582 the same, so they were collapsed. */
13583 delta = (Z
13584 - CHARPOS (tlendpos)
13585 - MATRIX_ROW_START_CHARPOS (row));
13586 delta_bytes = (Z_BYTE
13587 - BYTEPOS (tlendpos)
13588 - MATRIX_ROW_START_BYTEPOS (row));
13590 increment_matrix_positions (w->current_matrix,
13591 this_line_vpos + 1,
13592 w->current_matrix->nrows,
13593 delta, delta_bytes);
13596 /* If this row displays text now but previously didn't,
13597 or vice versa, w->window_end_vpos may have to be
13598 adjusted. */
13599 if (MATRIX_ROW_DISPLAYS_TEXT_P (it.glyph_row - 1))
13601 if (w->window_end_vpos < this_line_vpos)
13602 w->window_end_vpos = this_line_vpos;
13604 else if (w->window_end_vpos == this_line_vpos
13605 && this_line_vpos > 0)
13606 w->window_end_vpos = this_line_vpos - 1;
13607 w->window_end_valid = false;
13609 /* Update hint: No need to try to scroll in update_window. */
13610 w->desired_matrix->no_scrolling_p = true;
13612 #ifdef GLYPH_DEBUG
13613 *w->desired_matrix->method = 0;
13614 debug_method_add (w, "optimization 1");
13615 #endif
13616 #ifdef HAVE_WINDOW_SYSTEM
13617 update_window_fringes (w, false);
13618 #endif
13619 goto update;
13621 else
13622 goto cancel;
13624 else if (/* Cursor position hasn't changed. */
13625 PT == w->last_point
13626 /* Make sure the cursor was last displayed
13627 in this window. Otherwise we have to reposition it. */
13629 /* PXW: Must be converted to pixels, probably. */
13630 && 0 <= w->cursor.vpos
13631 && w->cursor.vpos < WINDOW_TOTAL_LINES (w))
13633 if (!must_finish)
13635 do_pending_window_change (true);
13636 /* If selected_window changed, redisplay again. */
13637 if (WINDOWP (selected_window)
13638 && (w = XWINDOW (selected_window)) != sw)
13639 goto retry;
13641 /* We used to always goto end_of_redisplay here, but this
13642 isn't enough if we have a blinking cursor. */
13643 if (w->cursor_off_p == w->last_cursor_off_p)
13644 goto end_of_redisplay;
13646 goto update;
13648 /* If highlighting the region, or if the cursor is in the echo area,
13649 then we can't just move the cursor. */
13650 else if (NILP (Vshow_trailing_whitespace)
13651 && !cursor_in_echo_area)
13653 struct it it;
13654 struct glyph_row *row;
13656 /* Skip from tlbufpos to PT and see where it is. Note that
13657 PT may be in invisible text. If so, we will end at the
13658 next visible position. */
13659 init_iterator (&it, w, CHARPOS (tlbufpos), BYTEPOS (tlbufpos),
13660 NULL, DEFAULT_FACE_ID);
13661 it.current_x = this_line_start_x;
13662 it.current_y = this_line_y;
13663 it.vpos = this_line_vpos;
13665 /* The call to move_it_to stops in front of PT, but
13666 moves over before-strings. */
13667 move_it_to (&it, PT, -1, -1, -1, MOVE_TO_POS);
13669 if (it.vpos == this_line_vpos
13670 && (row = MATRIX_ROW (w->current_matrix, this_line_vpos),
13671 row->enabled_p))
13673 eassert (this_line_vpos == it.vpos);
13674 eassert (this_line_y == it.current_y);
13675 set_cursor_from_row (w, row, w->current_matrix, 0, 0, 0, 0);
13676 #ifdef GLYPH_DEBUG
13677 *w->desired_matrix->method = 0;
13678 debug_method_add (w, "optimization 3");
13679 #endif
13680 goto update;
13682 else
13683 goto cancel;
13686 cancel:
13687 /* Text changed drastically or point moved off of line. */
13688 SET_MATRIX_ROW_ENABLED_P (w->desired_matrix, this_line_vpos, false);
13691 CHARPOS (this_line_start_pos) = 0;
13692 ++clear_face_cache_count;
13693 #ifdef HAVE_WINDOW_SYSTEM
13694 ++clear_image_cache_count;
13695 #endif
13697 /* Build desired matrices, and update the display. If
13698 consider_all_windows_p, do it for all windows on all frames.
13699 Otherwise do it for selected_window, only. */
13701 if (consider_all_windows_p)
13703 FOR_EACH_FRAME (tail, frame)
13704 XFRAME (frame)->updated_p = false;
13706 propagate_buffer_redisplay ();
13708 FOR_EACH_FRAME (tail, frame)
13710 struct frame *f = XFRAME (frame);
13712 /* We don't have to do anything for unselected terminal
13713 frames. */
13714 if ((FRAME_TERMCAP_P (f) || FRAME_MSDOS_P (f))
13715 && !EQ (FRAME_TTY (f)->top_frame, frame))
13716 continue;
13718 retry_frame:
13720 #if defined (HAVE_WINDOW_SYSTEM) && !defined (USE_GTK) && !defined (HAVE_NS)
13721 /* Redisplay internal tool bar if this is the first time so we
13722 can adjust the frame height right now, if necessary. */
13723 if (!f->tool_bar_redisplayed_once)
13725 if (redisplay_tool_bar (f))
13726 adjust_frame_glyphs (f);
13727 f->tool_bar_redisplayed_once = true;
13729 #endif
13731 if (FRAME_WINDOW_P (f) || FRAME_TERMCAP_P (f) || f == sf)
13733 bool gcscrollbars
13734 /* Only GC scrollbars when we redisplay the whole frame. */
13735 = f->redisplay || !REDISPLAY_SOME_P ();
13736 /* Mark all the scroll bars to be removed; we'll redeem
13737 the ones we want when we redisplay their windows. */
13738 if (gcscrollbars && FRAME_TERMINAL (f)->condemn_scroll_bars_hook)
13739 FRAME_TERMINAL (f)->condemn_scroll_bars_hook (f);
13741 if (FRAME_VISIBLE_P (f) && !FRAME_OBSCURED_P (f))
13742 redisplay_windows (FRAME_ROOT_WINDOW (f));
13743 /* Remember that the invisible frames need to be redisplayed next
13744 time they're visible. */
13745 else if (!REDISPLAY_SOME_P ())
13746 f->redisplay = true;
13748 /* The X error handler may have deleted that frame. */
13749 if (!FRAME_LIVE_P (f))
13750 continue;
13752 /* Any scroll bars which redisplay_windows should have
13753 nuked should now go away. */
13754 if (gcscrollbars && FRAME_TERMINAL (f)->judge_scroll_bars_hook)
13755 FRAME_TERMINAL (f)->judge_scroll_bars_hook (f);
13757 if (FRAME_VISIBLE_P (f) && !FRAME_OBSCURED_P (f))
13759 /* If fonts changed on visible frame, display again. */
13760 if (f->fonts_changed)
13762 adjust_frame_glyphs (f);
13763 /* Disable all redisplay optimizations for this
13764 frame. For the reasons, see the comment near
13765 the previous call to adjust_frame_glyphs above. */
13766 SET_FRAME_GARBAGED (f);
13767 f->fonts_changed = false;
13768 goto retry_frame;
13771 /* See if we have to hscroll. */
13772 if (!f->already_hscrolled_p)
13774 f->already_hscrolled_p = true;
13775 if (hscroll_windows (f->root_window))
13776 goto retry_frame;
13779 /* Prevent various kinds of signals during display
13780 update. stdio is not robust about handling
13781 signals, which can cause an apparent I/O error. */
13782 if (interrupt_input)
13783 unrequest_sigio ();
13784 STOP_POLLING;
13786 pending |= update_frame (f, false, false);
13787 f->cursor_type_changed = false;
13788 f->updated_p = true;
13793 eassert (EQ (XFRAME (selected_frame)->selected_window, selected_window));
13795 if (!pending)
13797 /* Do the mark_window_display_accurate after all windows have
13798 been redisplayed because this call resets flags in buffers
13799 which are needed for proper redisplay. */
13800 FOR_EACH_FRAME (tail, frame)
13802 struct frame *f = XFRAME (frame);
13803 if (f->updated_p)
13805 f->redisplay = false;
13806 mark_window_display_accurate (f->root_window, true);
13807 if (FRAME_TERMINAL (f)->frame_up_to_date_hook)
13808 FRAME_TERMINAL (f)->frame_up_to_date_hook (f);
13813 else if (FRAME_VISIBLE_P (sf) && !FRAME_OBSCURED_P (sf))
13815 Lisp_Object mini_window = FRAME_MINIBUF_WINDOW (sf);
13816 struct frame *mini_frame;
13818 displayed_buffer = XBUFFER (XWINDOW (selected_window)->contents);
13819 /* Use list_of_error, not Qerror, so that
13820 we catch only errors and don't run the debugger. */
13821 internal_condition_case_1 (redisplay_window_1, selected_window,
13822 list_of_error,
13823 redisplay_window_error);
13824 if (update_miniwindow_p)
13825 internal_condition_case_1 (redisplay_window_1, mini_window,
13826 list_of_error,
13827 redisplay_window_error);
13829 /* Compare desired and current matrices, perform output. */
13831 update:
13832 /* If fonts changed, display again. */
13833 if (sf->fonts_changed)
13834 goto retry;
13836 /* Prevent various kinds of signals during display update.
13837 stdio is not robust about handling signals,
13838 which can cause an apparent I/O error. */
13839 if (interrupt_input)
13840 unrequest_sigio ();
13841 STOP_POLLING;
13843 if (FRAME_VISIBLE_P (sf) && !FRAME_OBSCURED_P (sf))
13845 if (hscroll_windows (selected_window))
13846 goto retry;
13848 XWINDOW (selected_window)->must_be_updated_p = true;
13849 pending = update_frame (sf, false, false);
13850 sf->cursor_type_changed = false;
13853 /* We may have called echo_area_display at the top of this
13854 function. If the echo area is on another frame, that may
13855 have put text on a frame other than the selected one, so the
13856 above call to update_frame would not have caught it. Catch
13857 it here. */
13858 mini_window = FRAME_MINIBUF_WINDOW (sf);
13859 mini_frame = XFRAME (WINDOW_FRAME (XWINDOW (mini_window)));
13861 if (mini_frame != sf && FRAME_WINDOW_P (mini_frame))
13863 XWINDOW (mini_window)->must_be_updated_p = true;
13864 pending |= update_frame (mini_frame, false, false);
13865 mini_frame->cursor_type_changed = false;
13866 if (!pending && hscroll_windows (mini_window))
13867 goto retry;
13871 /* If display was paused because of pending input, make sure we do a
13872 thorough update the next time. */
13873 if (pending)
13875 /* Prevent the optimization at the beginning of
13876 redisplay_internal that tries a single-line update of the
13877 line containing the cursor in the selected window. */
13878 CHARPOS (this_line_start_pos) = 0;
13880 /* Let the overlay arrow be updated the next time. */
13881 update_overlay_arrows (0);
13883 /* If we pause after scrolling, some rows in the current
13884 matrices of some windows are not valid. */
13885 if (!WINDOW_FULL_WIDTH_P (w)
13886 && !FRAME_WINDOW_P (XFRAME (w->frame)))
13887 update_mode_lines = 36;
13889 else
13891 if (!consider_all_windows_p)
13893 /* This has already been done above if
13894 consider_all_windows_p is set. */
13895 if (XBUFFER (w->contents)->text->redisplay
13896 && buffer_window_count (XBUFFER (w->contents)) > 1)
13897 /* This can happen if b->text->redisplay was set during
13898 jit-lock. */
13899 propagate_buffer_redisplay ();
13900 mark_window_display_accurate_1 (w, true);
13902 /* Say overlay arrows are up to date. */
13903 update_overlay_arrows (1);
13905 if (FRAME_TERMINAL (sf)->frame_up_to_date_hook != 0)
13906 FRAME_TERMINAL (sf)->frame_up_to_date_hook (sf);
13909 update_mode_lines = 0;
13910 windows_or_buffers_changed = 0;
13913 /* Start SIGIO interrupts coming again. Having them off during the
13914 code above makes it less likely one will discard output, but not
13915 impossible, since there might be stuff in the system buffer here.
13916 But it is much hairier to try to do anything about that. */
13917 if (interrupt_input)
13918 request_sigio ();
13919 RESUME_POLLING;
13921 /* If a frame has become visible which was not before, redisplay
13922 again, so that we display it. Expose events for such a frame
13923 (which it gets when becoming visible) don't call the parts of
13924 redisplay constructing glyphs, so simply exposing a frame won't
13925 display anything in this case. So, we have to display these
13926 frames here explicitly. */
13927 if (!pending)
13929 int new_count = 0;
13931 FOR_EACH_FRAME (tail, frame)
13933 if (XFRAME (frame)->visible)
13934 new_count++;
13937 if (new_count != number_of_visible_frames)
13938 windows_or_buffers_changed = 52;
13941 /* Change frame size now if a change is pending. */
13942 do_pending_window_change (true);
13944 /* If we just did a pending size change, or have additional
13945 visible frames, or selected_window changed, redisplay again. */
13946 if ((windows_or_buffers_changed && !pending)
13947 || (WINDOWP (selected_window) && (w = XWINDOW (selected_window)) != sw))
13948 goto retry;
13950 /* Clear the face and image caches.
13952 We used to do this only if consider_all_windows_p. But the cache
13953 needs to be cleared if a timer creates images in the current
13954 buffer (e.g. the test case in Bug#6230). */
13956 if (clear_face_cache_count > CLEAR_FACE_CACHE_COUNT)
13958 clear_face_cache (false);
13959 clear_face_cache_count = 0;
13962 #ifdef HAVE_WINDOW_SYSTEM
13963 if (clear_image_cache_count > CLEAR_IMAGE_CACHE_COUNT)
13965 clear_image_caches (Qnil);
13966 clear_image_cache_count = 0;
13968 #endif /* HAVE_WINDOW_SYSTEM */
13970 end_of_redisplay:
13971 #ifdef HAVE_NS
13972 ns_set_doc_edited ();
13973 #endif
13974 if (interrupt_input && interrupts_deferred)
13975 request_sigio ();
13977 unbind_to (count, Qnil);
13978 RESUME_POLLING;
13982 /* Redisplay, but leave alone any recent echo area message unless
13983 another message has been requested in its place.
13985 This is useful in situations where you need to redisplay but no
13986 user action has occurred, making it inappropriate for the message
13987 area to be cleared. See tracking_off and
13988 wait_reading_process_output for examples of these situations.
13990 FROM_WHERE is an integer saying from where this function was
13991 called. This is useful for debugging. */
13993 void
13994 redisplay_preserve_echo_area (int from_where)
13996 TRACE ((stderr, "redisplay_preserve_echo_area (%d)\n", from_where));
13998 if (!NILP (echo_area_buffer[1]))
14000 /* We have a previously displayed message, but no current
14001 message. Redisplay the previous message. */
14002 display_last_displayed_message_p = true;
14003 redisplay_internal ();
14004 display_last_displayed_message_p = false;
14006 else
14007 redisplay_internal ();
14009 flush_frame (SELECTED_FRAME ());
14013 /* Function registered with record_unwind_protect in redisplay_internal. */
14015 static void
14016 unwind_redisplay (void)
14018 redisplaying_p = false;
14022 /* Mark the display of leaf window W as accurate or inaccurate.
14023 If ACCURATE_P, mark display of W as accurate.
14024 If !ACCURATE_P, arrange for W to be redisplayed the next
14025 time redisplay_internal is called. */
14027 static void
14028 mark_window_display_accurate_1 (struct window *w, bool accurate_p)
14030 struct buffer *b = XBUFFER (w->contents);
14032 w->last_modified = accurate_p ? BUF_MODIFF (b) : 0;
14033 w->last_overlay_modified = accurate_p ? BUF_OVERLAY_MODIFF (b) : 0;
14034 w->last_had_star = BUF_MODIFF (b) > BUF_SAVE_MODIFF (b);
14036 if (accurate_p)
14038 b->clip_changed = false;
14039 b->prevent_redisplay_optimizations_p = false;
14040 eassert (buffer_window_count (b) > 0);
14041 /* Resetting b->text->redisplay is problematic!
14042 In order to make it safer to do it here, redisplay_internal must
14043 have copied all b->text->redisplay to their respective windows. */
14044 b->text->redisplay = false;
14046 BUF_UNCHANGED_MODIFIED (b) = BUF_MODIFF (b);
14047 BUF_OVERLAY_UNCHANGED_MODIFIED (b) = BUF_OVERLAY_MODIFF (b);
14048 BUF_BEG_UNCHANGED (b) = BUF_GPT (b) - BUF_BEG (b);
14049 BUF_END_UNCHANGED (b) = BUF_Z (b) - BUF_GPT (b);
14051 w->current_matrix->buffer = b;
14052 w->current_matrix->begv = BUF_BEGV (b);
14053 w->current_matrix->zv = BUF_ZV (b);
14055 w->last_cursor_vpos = w->cursor.vpos;
14056 w->last_cursor_off_p = w->cursor_off_p;
14058 if (w == XWINDOW (selected_window))
14059 w->last_point = BUF_PT (b);
14060 else
14061 w->last_point = marker_position (w->pointm);
14063 w->window_end_valid = true;
14064 w->update_mode_line = false;
14067 w->redisplay = !accurate_p;
14071 /* Mark the display of windows in the window tree rooted at WINDOW as
14072 accurate or inaccurate. If ACCURATE_P, mark display of
14073 windows as accurate. If !ACCURATE_P, arrange for windows to
14074 be redisplayed the next time redisplay_internal is called. */
14076 void
14077 mark_window_display_accurate (Lisp_Object window, bool accurate_p)
14079 struct window *w;
14081 for (; !NILP (window); window = w->next)
14083 w = XWINDOW (window);
14084 if (WINDOWP (w->contents))
14085 mark_window_display_accurate (w->contents, accurate_p);
14086 else
14087 mark_window_display_accurate_1 (w, accurate_p);
14090 if (accurate_p)
14091 update_overlay_arrows (1);
14092 else
14093 /* Force a thorough redisplay the next time by setting
14094 last_arrow_position and last_arrow_string to t, which is
14095 unequal to any useful value of Voverlay_arrow_... */
14096 update_overlay_arrows (-1);
14100 /* Return value in display table DP (Lisp_Char_Table *) for character
14101 C. Since a display table doesn't have any parent, we don't have to
14102 follow parent. Do not call this function directly but use the
14103 macro DISP_CHAR_VECTOR. */
14105 Lisp_Object
14106 disp_char_vector (struct Lisp_Char_Table *dp, int c)
14108 Lisp_Object val;
14110 if (ASCII_CHAR_P (c))
14112 val = dp->ascii;
14113 if (SUB_CHAR_TABLE_P (val))
14114 val = XSUB_CHAR_TABLE (val)->contents[c];
14116 else
14118 Lisp_Object table;
14120 XSETCHAR_TABLE (table, dp);
14121 val = char_table_ref (table, c);
14123 if (NILP (val))
14124 val = dp->defalt;
14125 return val;
14130 /***********************************************************************
14131 Window Redisplay
14132 ***********************************************************************/
14134 /* Redisplay all leaf windows in the window tree rooted at WINDOW. */
14136 static void
14137 redisplay_windows (Lisp_Object window)
14139 while (!NILP (window))
14141 struct window *w = XWINDOW (window);
14143 if (WINDOWP (w->contents))
14144 redisplay_windows (w->contents);
14145 else if (BUFFERP (w->contents))
14147 displayed_buffer = XBUFFER (w->contents);
14148 /* Use list_of_error, not Qerror, so that
14149 we catch only errors and don't run the debugger. */
14150 internal_condition_case_1 (redisplay_window_0, window,
14151 list_of_error,
14152 redisplay_window_error);
14155 window = w->next;
14159 static Lisp_Object
14160 redisplay_window_error (Lisp_Object ignore)
14162 displayed_buffer->display_error_modiff = BUF_MODIFF (displayed_buffer);
14163 return Qnil;
14166 static Lisp_Object
14167 redisplay_window_0 (Lisp_Object window)
14169 if (displayed_buffer->display_error_modiff < BUF_MODIFF (displayed_buffer))
14170 redisplay_window (window, false);
14171 return Qnil;
14174 static Lisp_Object
14175 redisplay_window_1 (Lisp_Object window)
14177 if (displayed_buffer->display_error_modiff < BUF_MODIFF (displayed_buffer))
14178 redisplay_window (window, true);
14179 return Qnil;
14183 /* Set cursor position of W. PT is assumed to be displayed in ROW.
14184 DELTA and DELTA_BYTES are the numbers of characters and bytes by
14185 which positions recorded in ROW differ from current buffer
14186 positions.
14188 Return true iff cursor is on this row. */
14190 static bool
14191 set_cursor_from_row (struct window *w, struct glyph_row *row,
14192 struct glyph_matrix *matrix,
14193 ptrdiff_t delta, ptrdiff_t delta_bytes,
14194 int dy, int dvpos)
14196 struct glyph *glyph = row->glyphs[TEXT_AREA];
14197 struct glyph *end = glyph + row->used[TEXT_AREA];
14198 struct glyph *cursor = NULL;
14199 /* The last known character position in row. */
14200 ptrdiff_t last_pos = MATRIX_ROW_START_CHARPOS (row) + delta;
14201 int x = row->x;
14202 ptrdiff_t pt_old = PT - delta;
14203 ptrdiff_t pos_before = MATRIX_ROW_START_CHARPOS (row) + delta;
14204 ptrdiff_t pos_after = MATRIX_ROW_END_CHARPOS (row) + delta;
14205 struct glyph *glyph_before = glyph - 1, *glyph_after = end;
14206 /* A glyph beyond the edge of TEXT_AREA which we should never
14207 touch. */
14208 struct glyph *glyphs_end = end;
14209 /* True means we've found a match for cursor position, but that
14210 glyph has the avoid_cursor_p flag set. */
14211 bool match_with_avoid_cursor = false;
14212 /* True means we've seen at least one glyph that came from a
14213 display string. */
14214 bool string_seen = false;
14215 /* Largest and smallest buffer positions seen so far during scan of
14216 glyph row. */
14217 ptrdiff_t bpos_max = pos_before;
14218 ptrdiff_t bpos_min = pos_after;
14219 /* Last buffer position covered by an overlay string with an integer
14220 `cursor' property. */
14221 ptrdiff_t bpos_covered = 0;
14222 /* True means the display string on which to display the cursor
14223 comes from a text property, not from an overlay. */
14224 bool string_from_text_prop = false;
14226 /* Don't even try doing anything if called for a mode-line or
14227 header-line row, since the rest of the code isn't prepared to
14228 deal with such calamities. */
14229 eassert (!row->mode_line_p);
14230 if (row->mode_line_p)
14231 return false;
14233 /* Skip over glyphs not having an object at the start and the end of
14234 the row. These are special glyphs like truncation marks on
14235 terminal frames. */
14236 if (MATRIX_ROW_DISPLAYS_TEXT_P (row))
14238 if (!row->reversed_p)
14240 while (glyph < end
14241 && NILP (glyph->object)
14242 && glyph->charpos < 0)
14244 x += glyph->pixel_width;
14245 ++glyph;
14247 while (end > glyph
14248 && NILP ((end - 1)->object)
14249 /* CHARPOS is zero for blanks and stretch glyphs
14250 inserted by extend_face_to_end_of_line. */
14251 && (end - 1)->charpos <= 0)
14252 --end;
14253 glyph_before = glyph - 1;
14254 glyph_after = end;
14256 else
14258 struct glyph *g;
14260 /* If the glyph row is reversed, we need to process it from back
14261 to front, so swap the edge pointers. */
14262 glyphs_end = end = glyph - 1;
14263 glyph += row->used[TEXT_AREA] - 1;
14265 while (glyph > end + 1
14266 && NILP (glyph->object)
14267 && glyph->charpos < 0)
14269 --glyph;
14270 x -= glyph->pixel_width;
14272 if (NILP (glyph->object) && glyph->charpos < 0)
14273 --glyph;
14274 /* By default, in reversed rows we put the cursor on the
14275 rightmost (first in the reading order) glyph. */
14276 for (g = end + 1; g < glyph; g++)
14277 x += g->pixel_width;
14278 while (end < glyph
14279 && NILP ((end + 1)->object)
14280 && (end + 1)->charpos <= 0)
14281 ++end;
14282 glyph_before = glyph + 1;
14283 glyph_after = end;
14286 else if (row->reversed_p)
14288 /* In R2L rows that don't display text, put the cursor on the
14289 rightmost glyph. Case in point: an empty last line that is
14290 part of an R2L paragraph. */
14291 cursor = end - 1;
14292 /* Avoid placing the cursor on the last glyph of the row, where
14293 on terminal frames we hold the vertical border between
14294 adjacent windows. */
14295 if (!FRAME_WINDOW_P (WINDOW_XFRAME (w))
14296 && !WINDOW_RIGHTMOST_P (w)
14297 && cursor == row->glyphs[LAST_AREA] - 1)
14298 cursor--;
14299 x = -1; /* will be computed below, at label compute_x */
14302 /* Step 1: Try to find the glyph whose character position
14303 corresponds to point. If that's not possible, find 2 glyphs
14304 whose character positions are the closest to point, one before
14305 point, the other after it. */
14306 if (!row->reversed_p)
14307 while (/* not marched to end of glyph row */
14308 glyph < end
14309 /* glyph was not inserted by redisplay for internal purposes */
14310 && !NILP (glyph->object))
14312 if (BUFFERP (glyph->object))
14314 ptrdiff_t dpos = glyph->charpos - pt_old;
14316 if (glyph->charpos > bpos_max)
14317 bpos_max = glyph->charpos;
14318 if (glyph->charpos < bpos_min)
14319 bpos_min = glyph->charpos;
14320 if (!glyph->avoid_cursor_p)
14322 /* If we hit point, we've found the glyph on which to
14323 display the cursor. */
14324 if (dpos == 0)
14326 match_with_avoid_cursor = false;
14327 break;
14329 /* See if we've found a better approximation to
14330 POS_BEFORE or to POS_AFTER. */
14331 if (0 > dpos && dpos > pos_before - pt_old)
14333 pos_before = glyph->charpos;
14334 glyph_before = glyph;
14336 else if (0 < dpos && dpos < pos_after - pt_old)
14338 pos_after = glyph->charpos;
14339 glyph_after = glyph;
14342 else if (dpos == 0)
14343 match_with_avoid_cursor = true;
14345 else if (STRINGP (glyph->object))
14347 Lisp_Object chprop;
14348 ptrdiff_t glyph_pos = glyph->charpos;
14350 chprop = Fget_char_property (make_number (glyph_pos), Qcursor,
14351 glyph->object);
14352 if (!NILP (chprop))
14354 /* If the string came from a `display' text property,
14355 look up the buffer position of that property and
14356 use that position to update bpos_max, as if we
14357 actually saw such a position in one of the row's
14358 glyphs. This helps with supporting integer values
14359 of `cursor' property on the display string in
14360 situations where most or all of the row's buffer
14361 text is completely covered by display properties,
14362 so that no glyph with valid buffer positions is
14363 ever seen in the row. */
14364 ptrdiff_t prop_pos =
14365 string_buffer_position_lim (glyph->object, pos_before,
14366 pos_after, false);
14368 if (prop_pos >= pos_before)
14369 bpos_max = prop_pos;
14371 if (INTEGERP (chprop))
14373 bpos_covered = bpos_max + XINT (chprop);
14374 /* If the `cursor' property covers buffer positions up
14375 to and including point, we should display cursor on
14376 this glyph. Note that, if a `cursor' property on one
14377 of the string's characters has an integer value, we
14378 will break out of the loop below _before_ we get to
14379 the position match above. IOW, integer values of
14380 the `cursor' property override the "exact match for
14381 point" strategy of positioning the cursor. */
14382 /* Implementation note: bpos_max == pt_old when, e.g.,
14383 we are in an empty line, where bpos_max is set to
14384 MATRIX_ROW_START_CHARPOS, see above. */
14385 if (bpos_max <= pt_old && bpos_covered >= pt_old)
14387 cursor = glyph;
14388 break;
14392 string_seen = true;
14394 x += glyph->pixel_width;
14395 ++glyph;
14397 else if (glyph > end) /* row is reversed */
14398 while (!NILP (glyph->object))
14400 if (BUFFERP (glyph->object))
14402 ptrdiff_t dpos = glyph->charpos - pt_old;
14404 if (glyph->charpos > bpos_max)
14405 bpos_max = glyph->charpos;
14406 if (glyph->charpos < bpos_min)
14407 bpos_min = glyph->charpos;
14408 if (!glyph->avoid_cursor_p)
14410 if (dpos == 0)
14412 match_with_avoid_cursor = false;
14413 break;
14415 if (0 > dpos && dpos > pos_before - pt_old)
14417 pos_before = glyph->charpos;
14418 glyph_before = glyph;
14420 else if (0 < dpos && dpos < pos_after - pt_old)
14422 pos_after = glyph->charpos;
14423 glyph_after = glyph;
14426 else if (dpos == 0)
14427 match_with_avoid_cursor = true;
14429 else if (STRINGP (glyph->object))
14431 Lisp_Object chprop;
14432 ptrdiff_t glyph_pos = glyph->charpos;
14434 chprop = Fget_char_property (make_number (glyph_pos), Qcursor,
14435 glyph->object);
14436 if (!NILP (chprop))
14438 ptrdiff_t prop_pos =
14439 string_buffer_position_lim (glyph->object, pos_before,
14440 pos_after, false);
14442 if (prop_pos >= pos_before)
14443 bpos_max = prop_pos;
14445 if (INTEGERP (chprop))
14447 bpos_covered = bpos_max + XINT (chprop);
14448 /* If the `cursor' property covers buffer positions up
14449 to and including point, we should display cursor on
14450 this glyph. */
14451 if (bpos_max <= pt_old && bpos_covered >= pt_old)
14453 cursor = glyph;
14454 break;
14457 string_seen = true;
14459 --glyph;
14460 if (glyph == glyphs_end) /* don't dereference outside TEXT_AREA */
14462 x--; /* can't use any pixel_width */
14463 break;
14465 x -= glyph->pixel_width;
14468 /* Step 2: If we didn't find an exact match for point, we need to
14469 look for a proper place to put the cursor among glyphs between
14470 GLYPH_BEFORE and GLYPH_AFTER. */
14471 if (!((row->reversed_p ? glyph > glyphs_end : glyph < glyphs_end)
14472 && BUFFERP (glyph->object) && glyph->charpos == pt_old)
14473 && !(bpos_max <= pt_old && pt_old <= bpos_covered))
14475 /* An empty line has a single glyph whose OBJECT is nil and
14476 whose CHARPOS is the position of a newline on that line.
14477 Note that on a TTY, there are more glyphs after that, which
14478 were produced by extend_face_to_end_of_line, but their
14479 CHARPOS is zero or negative. */
14480 bool empty_line_p =
14481 ((row->reversed_p ? glyph > glyphs_end : glyph < glyphs_end)
14482 && NILP (glyph->object) && glyph->charpos > 0
14483 /* On a TTY, continued and truncated rows also have a glyph at
14484 their end whose OBJECT is nil and whose CHARPOS is
14485 positive (the continuation and truncation glyphs), but such
14486 rows are obviously not "empty". */
14487 && !(row->continued_p || row->truncated_on_right_p));
14489 if (row->ends_in_ellipsis_p && pos_after == last_pos)
14491 ptrdiff_t ellipsis_pos;
14493 /* Scan back over the ellipsis glyphs. */
14494 if (!row->reversed_p)
14496 ellipsis_pos = (glyph - 1)->charpos;
14497 while (glyph > row->glyphs[TEXT_AREA]
14498 && (glyph - 1)->charpos == ellipsis_pos)
14499 glyph--, x -= glyph->pixel_width;
14500 /* That loop always goes one position too far, including
14501 the glyph before the ellipsis. So scan forward over
14502 that one. */
14503 x += glyph->pixel_width;
14504 glyph++;
14506 else /* row is reversed */
14508 ellipsis_pos = (glyph + 1)->charpos;
14509 while (glyph < row->glyphs[TEXT_AREA] + row->used[TEXT_AREA] - 1
14510 && (glyph + 1)->charpos == ellipsis_pos)
14511 glyph++, x += glyph->pixel_width;
14512 x -= glyph->pixel_width;
14513 glyph--;
14516 else if (match_with_avoid_cursor)
14518 cursor = glyph_after;
14519 x = -1;
14521 else if (string_seen)
14523 int incr = row->reversed_p ? -1 : +1;
14525 /* Need to find the glyph that came out of a string which is
14526 present at point. That glyph is somewhere between
14527 GLYPH_BEFORE and GLYPH_AFTER, and it came from a string
14528 positioned between POS_BEFORE and POS_AFTER in the
14529 buffer. */
14530 struct glyph *start, *stop;
14531 ptrdiff_t pos = pos_before;
14533 x = -1;
14535 /* If the row ends in a newline from a display string,
14536 reordering could have moved the glyphs belonging to the
14537 string out of the [GLYPH_BEFORE..GLYPH_AFTER] range. So
14538 in this case we extend the search to the last glyph in
14539 the row that was not inserted by redisplay. */
14540 if (row->ends_in_newline_from_string_p)
14542 glyph_after = end;
14543 pos_after = MATRIX_ROW_END_CHARPOS (row) + delta;
14546 /* GLYPH_BEFORE and GLYPH_AFTER are the glyphs that
14547 correspond to POS_BEFORE and POS_AFTER, respectively. We
14548 need START and STOP in the order that corresponds to the
14549 row's direction as given by its reversed_p flag. If the
14550 directionality of characters between POS_BEFORE and
14551 POS_AFTER is the opposite of the row's base direction,
14552 these characters will have been reordered for display,
14553 and we need to reverse START and STOP. */
14554 if (!row->reversed_p)
14556 start = min (glyph_before, glyph_after);
14557 stop = max (glyph_before, glyph_after);
14559 else
14561 start = max (glyph_before, glyph_after);
14562 stop = min (glyph_before, glyph_after);
14564 for (glyph = start + incr;
14565 row->reversed_p ? glyph > stop : glyph < stop; )
14568 /* Any glyphs that come from the buffer are here because
14569 of bidi reordering. Skip them, and only pay
14570 attention to glyphs that came from some string. */
14571 if (STRINGP (glyph->object))
14573 Lisp_Object str;
14574 ptrdiff_t tem;
14575 /* If the display property covers the newline, we
14576 need to search for it one position farther. */
14577 ptrdiff_t lim = pos_after
14578 + (pos_after == MATRIX_ROW_END_CHARPOS (row) + delta);
14580 string_from_text_prop = false;
14581 str = glyph->object;
14582 tem = string_buffer_position_lim (str, pos, lim, false);
14583 if (tem == 0 /* from overlay */
14584 || pos <= tem)
14586 /* If the string from which this glyph came is
14587 found in the buffer at point, or at position
14588 that is closer to point than pos_after, then
14589 we've found the glyph we've been looking for.
14590 If it comes from an overlay (tem == 0), and
14591 it has the `cursor' property on one of its
14592 glyphs, record that glyph as a candidate for
14593 displaying the cursor. (As in the
14594 unidirectional version, we will display the
14595 cursor on the last candidate we find.) */
14596 if (tem == 0
14597 || tem == pt_old
14598 || (tem - pt_old > 0 && tem < pos_after))
14600 /* The glyphs from this string could have
14601 been reordered. Find the one with the
14602 smallest string position. Or there could
14603 be a character in the string with the
14604 `cursor' property, which means display
14605 cursor on that character's glyph. */
14606 ptrdiff_t strpos = glyph->charpos;
14608 if (tem)
14610 cursor = glyph;
14611 string_from_text_prop = true;
14613 for ( ;
14614 (row->reversed_p ? glyph > stop : glyph < stop)
14615 && EQ (glyph->object, str);
14616 glyph += incr)
14618 Lisp_Object cprop;
14619 ptrdiff_t gpos = glyph->charpos;
14621 cprop = Fget_char_property (make_number (gpos),
14622 Qcursor,
14623 glyph->object);
14624 if (!NILP (cprop))
14626 cursor = glyph;
14627 break;
14629 if (tem && glyph->charpos < strpos)
14631 strpos = glyph->charpos;
14632 cursor = glyph;
14636 if (tem == pt_old
14637 || (tem - pt_old > 0 && tem < pos_after))
14638 goto compute_x;
14640 if (tem)
14641 pos = tem + 1; /* don't find previous instances */
14643 /* This string is not what we want; skip all of the
14644 glyphs that came from it. */
14645 while ((row->reversed_p ? glyph > stop : glyph < stop)
14646 && EQ (glyph->object, str))
14647 glyph += incr;
14649 else
14650 glyph += incr;
14653 /* If we reached the end of the line, and END was from a string,
14654 the cursor is not on this line. */
14655 if (cursor == NULL
14656 && (row->reversed_p ? glyph <= end : glyph >= end)
14657 && (row->reversed_p ? end > glyphs_end : end < glyphs_end)
14658 && STRINGP (end->object)
14659 && row->continued_p)
14660 return false;
14662 /* A truncated row may not include PT among its character positions.
14663 Setting the cursor inside the scroll margin will trigger
14664 recalculation of hscroll in hscroll_window_tree. But if a
14665 display string covers point, defer to the string-handling
14666 code below to figure this out. */
14667 else if (row->truncated_on_left_p && pt_old < bpos_min)
14669 cursor = glyph_before;
14670 x = -1;
14672 else if ((row->truncated_on_right_p && pt_old > bpos_max)
14673 /* Zero-width characters produce no glyphs. */
14674 || (!empty_line_p
14675 && (row->reversed_p
14676 ? glyph_after > glyphs_end
14677 : glyph_after < glyphs_end)))
14679 cursor = glyph_after;
14680 x = -1;
14684 compute_x:
14685 if (cursor != NULL)
14686 glyph = cursor;
14687 else if (glyph == glyphs_end
14688 && pos_before == pos_after
14689 && STRINGP ((row->reversed_p
14690 ? row->glyphs[TEXT_AREA] + row->used[TEXT_AREA] - 1
14691 : row->glyphs[TEXT_AREA])->object))
14693 /* If all the glyphs of this row came from strings, put the
14694 cursor on the first glyph of the row. This avoids having the
14695 cursor outside of the text area in this very rare and hard
14696 use case. */
14697 glyph =
14698 row->reversed_p
14699 ? row->glyphs[TEXT_AREA] + row->used[TEXT_AREA] - 1
14700 : row->glyphs[TEXT_AREA];
14702 if (x < 0)
14704 struct glyph *g;
14706 /* Need to compute x that corresponds to GLYPH. */
14707 for (g = row->glyphs[TEXT_AREA], x = row->x; g < glyph; g++)
14709 if (g >= row->glyphs[TEXT_AREA] + row->used[TEXT_AREA])
14710 emacs_abort ();
14711 x += g->pixel_width;
14715 /* ROW could be part of a continued line, which, under bidi
14716 reordering, might have other rows whose start and end charpos
14717 occlude point. Only set w->cursor if we found a better
14718 approximation to the cursor position than we have from previously
14719 examined candidate rows belonging to the same continued line. */
14720 if (/* We already have a candidate row. */
14721 w->cursor.vpos >= 0
14722 /* That candidate is not the row we are processing. */
14723 && MATRIX_ROW (matrix, w->cursor.vpos) != row
14724 /* Make sure cursor.vpos specifies a row whose start and end
14725 charpos occlude point, and it is valid candidate for being a
14726 cursor-row. This is because some callers of this function
14727 leave cursor.vpos at the row where the cursor was displayed
14728 during the last redisplay cycle. */
14729 && MATRIX_ROW_START_CHARPOS (MATRIX_ROW (matrix, w->cursor.vpos)) <= pt_old
14730 && pt_old <= MATRIX_ROW_END_CHARPOS (MATRIX_ROW (matrix, w->cursor.vpos))
14731 && cursor_row_p (MATRIX_ROW (matrix, w->cursor.vpos)))
14733 struct glyph *g1
14734 = MATRIX_ROW_GLYPH_START (matrix, w->cursor.vpos) + w->cursor.hpos;
14736 /* Don't consider glyphs that are outside TEXT_AREA. */
14737 if (!(row->reversed_p ? glyph > glyphs_end : glyph < glyphs_end))
14738 return false;
14739 /* Keep the candidate whose buffer position is the closest to
14740 point or has the `cursor' property. */
14741 if (/* Previous candidate is a glyph in TEXT_AREA of that row. */
14742 w->cursor.hpos >= 0
14743 && w->cursor.hpos < MATRIX_ROW_USED (matrix, w->cursor.vpos)
14744 && ((BUFFERP (g1->object)
14745 && (g1->charpos == pt_old /* An exact match always wins. */
14746 || (BUFFERP (glyph->object)
14747 && eabs (g1->charpos - pt_old)
14748 < eabs (glyph->charpos - pt_old))))
14749 /* Previous candidate is a glyph from a string that has
14750 a non-nil `cursor' property. */
14751 || (STRINGP (g1->object)
14752 && (!NILP (Fget_char_property (make_number (g1->charpos),
14753 Qcursor, g1->object))
14754 /* Previous candidate is from the same display
14755 string as this one, and the display string
14756 came from a text property. */
14757 || (EQ (g1->object, glyph->object)
14758 && string_from_text_prop)
14759 /* this candidate is from newline and its
14760 position is not an exact match */
14761 || (NILP (glyph->object)
14762 && glyph->charpos != pt_old)))))
14763 return false;
14764 /* If this candidate gives an exact match, use that. */
14765 if (!((BUFFERP (glyph->object) && glyph->charpos == pt_old)
14766 /* If this candidate is a glyph created for the
14767 terminating newline of a line, and point is on that
14768 newline, it wins because it's an exact match. */
14769 || (!row->continued_p
14770 && NILP (glyph->object)
14771 && glyph->charpos == 0
14772 && pt_old == MATRIX_ROW_END_CHARPOS (row) - 1))
14773 /* Otherwise, keep the candidate that comes from a row
14774 spanning less buffer positions. This may win when one or
14775 both candidate positions are on glyphs that came from
14776 display strings, for which we cannot compare buffer
14777 positions. */
14778 && MATRIX_ROW_END_CHARPOS (MATRIX_ROW (matrix, w->cursor.vpos))
14779 - MATRIX_ROW_START_CHARPOS (MATRIX_ROW (matrix, w->cursor.vpos))
14780 < MATRIX_ROW_END_CHARPOS (row) - MATRIX_ROW_START_CHARPOS (row))
14781 return false;
14783 w->cursor.hpos = glyph - row->glyphs[TEXT_AREA];
14784 w->cursor.x = x;
14785 w->cursor.vpos = MATRIX_ROW_VPOS (row, matrix) + dvpos;
14786 w->cursor.y = row->y + dy;
14788 if (w == XWINDOW (selected_window))
14790 if (!row->continued_p
14791 && !MATRIX_ROW_CONTINUATION_LINE_P (row)
14792 && row->x == 0)
14794 this_line_buffer = XBUFFER (w->contents);
14796 CHARPOS (this_line_start_pos)
14797 = MATRIX_ROW_START_CHARPOS (row) + delta;
14798 BYTEPOS (this_line_start_pos)
14799 = MATRIX_ROW_START_BYTEPOS (row) + delta_bytes;
14801 CHARPOS (this_line_end_pos)
14802 = Z - (MATRIX_ROW_END_CHARPOS (row) + delta);
14803 BYTEPOS (this_line_end_pos)
14804 = Z_BYTE - (MATRIX_ROW_END_BYTEPOS (row) + delta_bytes);
14806 this_line_y = w->cursor.y;
14807 this_line_pixel_height = row->height;
14808 this_line_vpos = w->cursor.vpos;
14809 this_line_start_x = row->x;
14811 else
14812 CHARPOS (this_line_start_pos) = 0;
14815 return true;
14819 /* Run window scroll functions, if any, for WINDOW with new window
14820 start STARTP. Sets the window start of WINDOW to that position.
14822 We assume that the window's buffer is really current. */
14824 static struct text_pos
14825 run_window_scroll_functions (Lisp_Object window, struct text_pos startp)
14827 struct window *w = XWINDOW (window);
14828 SET_MARKER_FROM_TEXT_POS (w->start, startp);
14830 eassert (current_buffer == XBUFFER (w->contents));
14832 if (!NILP (Vwindow_scroll_functions))
14834 run_hook_with_args_2 (Qwindow_scroll_functions, window,
14835 make_number (CHARPOS (startp)));
14836 SET_TEXT_POS_FROM_MARKER (startp, w->start);
14837 /* In case the hook functions switch buffers. */
14838 set_buffer_internal (XBUFFER (w->contents));
14841 return startp;
14845 /* Make sure the line containing the cursor is fully visible.
14846 A value of true means there is nothing to be done.
14847 (Either the line is fully visible, or it cannot be made so,
14848 or we cannot tell.)
14850 If FORCE_P, return false even if partial visible cursor row
14851 is higher than window.
14853 If CURRENT_MATRIX_P, use the information from the
14854 window's current glyph matrix; otherwise use the desired glyph
14855 matrix.
14857 A value of false means the caller should do scrolling
14858 as if point had gone off the screen. */
14860 static bool
14861 cursor_row_fully_visible_p (struct window *w, bool force_p,
14862 bool current_matrix_p)
14864 struct glyph_matrix *matrix;
14865 struct glyph_row *row;
14866 int window_height;
14868 if (!make_cursor_line_fully_visible_p)
14869 return true;
14871 /* It's not always possible to find the cursor, e.g, when a window
14872 is full of overlay strings. Don't do anything in that case. */
14873 if (w->cursor.vpos < 0)
14874 return true;
14876 matrix = current_matrix_p ? w->current_matrix : w->desired_matrix;
14877 row = MATRIX_ROW (matrix, w->cursor.vpos);
14879 /* If the cursor row is not partially visible, there's nothing to do. */
14880 if (!MATRIX_ROW_PARTIALLY_VISIBLE_P (w, row))
14881 return true;
14883 /* If the row the cursor is in is taller than the window's height,
14884 it's not clear what to do, so do nothing. */
14885 window_height = window_box_height (w);
14886 if (row->height >= window_height)
14888 if (!force_p || MINI_WINDOW_P (w)
14889 || w->vscroll || w->cursor.vpos == 0)
14890 return true;
14892 return false;
14896 /* Try scrolling PT into view in window WINDOW. JUST_THIS_ONE_P
14897 means only WINDOW is redisplayed in redisplay_internal.
14898 TEMP_SCROLL_STEP has the same meaning as emacs_scroll_step, and is used
14899 in redisplay_window to bring a partially visible line into view in
14900 the case that only the cursor has moved.
14902 LAST_LINE_MISFIT should be true if we're scrolling because the
14903 last screen line's vertical height extends past the end of the screen.
14905 Value is
14907 1 if scrolling succeeded
14909 0 if scrolling didn't find point.
14911 -1 if new fonts have been loaded so that we must interrupt
14912 redisplay, adjust glyph matrices, and try again. */
14914 enum
14916 SCROLLING_SUCCESS,
14917 SCROLLING_FAILED,
14918 SCROLLING_NEED_LARGER_MATRICES
14921 /* If scroll-conservatively is more than this, never recenter.
14923 If you change this, don't forget to update the doc string of
14924 `scroll-conservatively' and the Emacs manual. */
14925 #define SCROLL_LIMIT 100
14927 static int
14928 try_scrolling (Lisp_Object window, bool just_this_one_p,
14929 ptrdiff_t arg_scroll_conservatively, ptrdiff_t scroll_step,
14930 bool temp_scroll_step, bool last_line_misfit)
14932 struct window *w = XWINDOW (window);
14933 struct frame *f = XFRAME (w->frame);
14934 struct text_pos pos, startp;
14935 struct it it;
14936 int this_scroll_margin, scroll_max, rc, height;
14937 int dy = 0, amount_to_scroll = 0;
14938 bool scroll_down_p = false;
14939 int extra_scroll_margin_lines = last_line_misfit;
14940 Lisp_Object aggressive;
14941 /* We will never try scrolling more than this number of lines. */
14942 int scroll_limit = SCROLL_LIMIT;
14943 int frame_line_height = default_line_pixel_height (w);
14944 int window_total_lines
14945 = WINDOW_TOTAL_LINES (w) * FRAME_LINE_HEIGHT (f) / frame_line_height;
14947 #ifdef GLYPH_DEBUG
14948 debug_method_add (w, "try_scrolling");
14949 #endif
14951 SET_TEXT_POS_FROM_MARKER (startp, w->start);
14953 /* Compute scroll margin height in pixels. We scroll when point is
14954 within this distance from the top or bottom of the window. */
14955 if (scroll_margin > 0)
14956 this_scroll_margin = min (scroll_margin, window_total_lines / 4)
14957 * frame_line_height;
14958 else
14959 this_scroll_margin = 0;
14961 /* Force arg_scroll_conservatively to have a reasonable value, to
14962 avoid scrolling too far away with slow move_it_* functions. Note
14963 that the user can supply scroll-conservatively equal to
14964 `most-positive-fixnum', which can be larger than INT_MAX. */
14965 if (arg_scroll_conservatively > scroll_limit)
14967 arg_scroll_conservatively = scroll_limit + 1;
14968 scroll_max = scroll_limit * frame_line_height;
14970 else if (scroll_step || arg_scroll_conservatively || temp_scroll_step)
14971 /* Compute how much we should try to scroll maximally to bring
14972 point into view. */
14973 scroll_max = (max (scroll_step,
14974 max (arg_scroll_conservatively, temp_scroll_step))
14975 * frame_line_height);
14976 else if (NUMBERP (BVAR (current_buffer, scroll_down_aggressively))
14977 || NUMBERP (BVAR (current_buffer, scroll_up_aggressively)))
14978 /* We're trying to scroll because of aggressive scrolling but no
14979 scroll_step is set. Choose an arbitrary one. */
14980 scroll_max = 10 * frame_line_height;
14981 else
14982 scroll_max = 0;
14984 too_near_end:
14986 /* Decide whether to scroll down. */
14987 if (PT > CHARPOS (startp))
14989 int scroll_margin_y;
14991 /* Compute the pixel ypos of the scroll margin, then move IT to
14992 either that ypos or PT, whichever comes first. */
14993 start_display (&it, w, startp);
14994 scroll_margin_y = it.last_visible_y - this_scroll_margin
14995 - frame_line_height * extra_scroll_margin_lines;
14996 move_it_to (&it, PT, -1, scroll_margin_y - 1, -1,
14997 (MOVE_TO_POS | MOVE_TO_Y));
14999 if (PT > CHARPOS (it.current.pos))
15001 int y0 = line_bottom_y (&it);
15002 /* Compute how many pixels below window bottom to stop searching
15003 for PT. This avoids costly search for PT that is far away if
15004 the user limited scrolling by a small number of lines, but
15005 always finds PT if scroll_conservatively is set to a large
15006 number, such as most-positive-fixnum. */
15007 int slack = max (scroll_max, 10 * frame_line_height);
15008 int y_to_move = it.last_visible_y + slack;
15010 /* Compute the distance from the scroll margin to PT or to
15011 the scroll limit, whichever comes first. This should
15012 include the height of the cursor line, to make that line
15013 fully visible. */
15014 move_it_to (&it, PT, -1, y_to_move,
15015 -1, MOVE_TO_POS | MOVE_TO_Y);
15016 dy = line_bottom_y (&it) - y0;
15018 if (dy > scroll_max)
15019 return SCROLLING_FAILED;
15021 if (dy > 0)
15022 scroll_down_p = true;
15026 if (scroll_down_p)
15028 /* Point is in or below the bottom scroll margin, so move the
15029 window start down. If scrolling conservatively, move it just
15030 enough down to make point visible. If scroll_step is set,
15031 move it down by scroll_step. */
15032 if (arg_scroll_conservatively)
15033 amount_to_scroll
15034 = min (max (dy, frame_line_height),
15035 frame_line_height * arg_scroll_conservatively);
15036 else if (scroll_step || temp_scroll_step)
15037 amount_to_scroll = scroll_max;
15038 else
15040 aggressive = BVAR (current_buffer, scroll_up_aggressively);
15041 height = WINDOW_BOX_TEXT_HEIGHT (w);
15042 if (NUMBERP (aggressive))
15044 double float_amount = XFLOATINT (aggressive) * height;
15045 int aggressive_scroll = float_amount;
15046 if (aggressive_scroll == 0 && float_amount > 0)
15047 aggressive_scroll = 1;
15048 /* Don't let point enter the scroll margin near top of
15049 the window. This could happen if the value of
15050 scroll_up_aggressively is too large and there are
15051 non-zero margins, because scroll_up_aggressively
15052 means put point that fraction of window height
15053 _from_the_bottom_margin_. */
15054 if (aggressive_scroll + 2 * this_scroll_margin > height)
15055 aggressive_scroll = height - 2 * this_scroll_margin;
15056 amount_to_scroll = dy + aggressive_scroll;
15060 if (amount_to_scroll <= 0)
15061 return SCROLLING_FAILED;
15063 start_display (&it, w, startp);
15064 if (arg_scroll_conservatively <= scroll_limit)
15065 move_it_vertically (&it, amount_to_scroll);
15066 else
15068 /* Extra precision for users who set scroll-conservatively
15069 to a large number: make sure the amount we scroll
15070 the window start is never less than amount_to_scroll,
15071 which was computed as distance from window bottom to
15072 point. This matters when lines at window top and lines
15073 below window bottom have different height. */
15074 struct it it1;
15075 void *it1data = NULL;
15076 /* We use a temporary it1 because line_bottom_y can modify
15077 its argument, if it moves one line down; see there. */
15078 int start_y;
15080 SAVE_IT (it1, it, it1data);
15081 start_y = line_bottom_y (&it1);
15082 do {
15083 RESTORE_IT (&it, &it, it1data);
15084 move_it_by_lines (&it, 1);
15085 SAVE_IT (it1, it, it1data);
15086 } while (line_bottom_y (&it1) - start_y < amount_to_scroll);
15089 /* If STARTP is unchanged, move it down another screen line. */
15090 if (CHARPOS (it.current.pos) == CHARPOS (startp))
15091 move_it_by_lines (&it, 1);
15092 startp = it.current.pos;
15094 else
15096 struct text_pos scroll_margin_pos = startp;
15097 int y_offset = 0;
15099 /* See if point is inside the scroll margin at the top of the
15100 window. */
15101 if (this_scroll_margin)
15103 int y_start;
15105 start_display (&it, w, startp);
15106 y_start = it.current_y;
15107 move_it_vertically (&it, this_scroll_margin);
15108 scroll_margin_pos = it.current.pos;
15109 /* If we didn't move enough before hitting ZV, request
15110 additional amount of scroll, to move point out of the
15111 scroll margin. */
15112 if (IT_CHARPOS (it) == ZV
15113 && it.current_y - y_start < this_scroll_margin)
15114 y_offset = this_scroll_margin - (it.current_y - y_start);
15117 if (PT < CHARPOS (scroll_margin_pos))
15119 /* Point is in the scroll margin at the top of the window or
15120 above what is displayed in the window. */
15121 int y0, y_to_move;
15123 /* Compute the vertical distance from PT to the scroll
15124 margin position. Move as far as scroll_max allows, or
15125 one screenful, or 10 screen lines, whichever is largest.
15126 Give up if distance is greater than scroll_max or if we
15127 didn't reach the scroll margin position. */
15128 SET_TEXT_POS (pos, PT, PT_BYTE);
15129 start_display (&it, w, pos);
15130 y0 = it.current_y;
15131 y_to_move = max (it.last_visible_y,
15132 max (scroll_max, 10 * frame_line_height));
15133 move_it_to (&it, CHARPOS (scroll_margin_pos), 0,
15134 y_to_move, -1,
15135 MOVE_TO_POS | MOVE_TO_X | MOVE_TO_Y);
15136 dy = it.current_y - y0;
15137 if (dy > scroll_max
15138 || IT_CHARPOS (it) < CHARPOS (scroll_margin_pos))
15139 return SCROLLING_FAILED;
15141 /* Additional scroll for when ZV was too close to point. */
15142 dy += y_offset;
15144 /* Compute new window start. */
15145 start_display (&it, w, startp);
15147 if (arg_scroll_conservatively)
15148 amount_to_scroll = max (dy, frame_line_height
15149 * max (scroll_step, temp_scroll_step));
15150 else if (scroll_step || temp_scroll_step)
15151 amount_to_scroll = scroll_max;
15152 else
15154 aggressive = BVAR (current_buffer, scroll_down_aggressively);
15155 height = WINDOW_BOX_TEXT_HEIGHT (w);
15156 if (NUMBERP (aggressive))
15158 double float_amount = XFLOATINT (aggressive) * height;
15159 int aggressive_scroll = float_amount;
15160 if (aggressive_scroll == 0 && float_amount > 0)
15161 aggressive_scroll = 1;
15162 /* Don't let point enter the scroll margin near
15163 bottom of the window, if the value of
15164 scroll_down_aggressively happens to be too
15165 large. */
15166 if (aggressive_scroll + 2 * this_scroll_margin > height)
15167 aggressive_scroll = height - 2 * this_scroll_margin;
15168 amount_to_scroll = dy + aggressive_scroll;
15172 if (amount_to_scroll <= 0)
15173 return SCROLLING_FAILED;
15175 move_it_vertically_backward (&it, amount_to_scroll);
15176 startp = it.current.pos;
15180 /* Run window scroll functions. */
15181 startp = run_window_scroll_functions (window, startp);
15183 /* Display the window. Give up if new fonts are loaded, or if point
15184 doesn't appear. */
15185 if (!try_window (window, startp, 0))
15186 rc = SCROLLING_NEED_LARGER_MATRICES;
15187 else if (w->cursor.vpos < 0)
15189 clear_glyph_matrix (w->desired_matrix);
15190 rc = SCROLLING_FAILED;
15192 else
15194 /* Maybe forget recorded base line for line number display. */
15195 if (!just_this_one_p
15196 || current_buffer->clip_changed
15197 || BEG_UNCHANGED < CHARPOS (startp))
15198 w->base_line_number = 0;
15200 /* If cursor ends up on a partially visible line,
15201 treat that as being off the bottom of the screen. */
15202 if (! cursor_row_fully_visible_p (w, extra_scroll_margin_lines <= 1,
15203 false)
15204 /* It's possible that the cursor is on the first line of the
15205 buffer, which is partially obscured due to a vscroll
15206 (Bug#7537). In that case, avoid looping forever. */
15207 && extra_scroll_margin_lines < w->desired_matrix->nrows - 1)
15209 clear_glyph_matrix (w->desired_matrix);
15210 ++extra_scroll_margin_lines;
15211 goto too_near_end;
15213 rc = SCROLLING_SUCCESS;
15216 return rc;
15220 /* Compute a suitable window start for window W if display of W starts
15221 on a continuation line. Value is true if a new window start
15222 was computed.
15224 The new window start will be computed, based on W's width, starting
15225 from the start of the continued line. It is the start of the
15226 screen line with the minimum distance from the old start W->start. */
15228 static bool
15229 compute_window_start_on_continuation_line (struct window *w)
15231 struct text_pos pos, start_pos;
15232 bool window_start_changed_p = false;
15234 SET_TEXT_POS_FROM_MARKER (start_pos, w->start);
15236 /* If window start is on a continuation line... Window start may be
15237 < BEGV in case there's invisible text at the start of the
15238 buffer (M-x rmail, for example). */
15239 if (CHARPOS (start_pos) > BEGV
15240 && FETCH_BYTE (BYTEPOS (start_pos) - 1) != '\n')
15242 struct it it;
15243 struct glyph_row *row;
15245 /* Handle the case that the window start is out of range. */
15246 if (CHARPOS (start_pos) < BEGV)
15247 SET_TEXT_POS (start_pos, BEGV, BEGV_BYTE);
15248 else if (CHARPOS (start_pos) > ZV)
15249 SET_TEXT_POS (start_pos, ZV, ZV_BYTE);
15251 /* Find the start of the continued line. This should be fast
15252 because find_newline is fast (newline cache). */
15253 row = w->desired_matrix->rows + WINDOW_WANTS_HEADER_LINE_P (w);
15254 init_iterator (&it, w, CHARPOS (start_pos), BYTEPOS (start_pos),
15255 row, DEFAULT_FACE_ID);
15256 reseat_at_previous_visible_line_start (&it);
15258 /* If the line start is "too far" away from the window start,
15259 say it takes too much time to compute a new window start. */
15260 if (CHARPOS (start_pos) - IT_CHARPOS (it)
15261 /* PXW: Do we need upper bounds here? */
15262 < WINDOW_TOTAL_LINES (w) * WINDOW_TOTAL_COLS (w))
15264 int min_distance, distance;
15266 /* Move forward by display lines to find the new window
15267 start. If window width was enlarged, the new start can
15268 be expected to be > the old start. If window width was
15269 decreased, the new window start will be < the old start.
15270 So, we're looking for the display line start with the
15271 minimum distance from the old window start. */
15272 pos = it.current.pos;
15273 min_distance = INFINITY;
15274 while ((distance = eabs (CHARPOS (start_pos) - IT_CHARPOS (it))),
15275 distance < min_distance)
15277 min_distance = distance;
15278 pos = it.current.pos;
15279 if (it.line_wrap == WORD_WRAP)
15281 /* Under WORD_WRAP, move_it_by_lines is likely to
15282 overshoot and stop not at the first, but the
15283 second character from the left margin. So in
15284 that case, we need a more tight control on the X
15285 coordinate of the iterator than move_it_by_lines
15286 promises in its contract. The method is to first
15287 go to the last (rightmost) visible character of a
15288 line, then move to the leftmost character on the
15289 next line in a separate call. */
15290 move_it_to (&it, ZV, it.last_visible_x, it.current_y, -1,
15291 MOVE_TO_POS | MOVE_TO_X | MOVE_TO_Y);
15292 move_it_to (&it, ZV, 0,
15293 it.current_y + it.max_ascent + it.max_descent, -1,
15294 MOVE_TO_POS | MOVE_TO_X | MOVE_TO_Y);
15296 else
15297 move_it_by_lines (&it, 1);
15300 /* Set the window start there. */
15301 SET_MARKER_FROM_TEXT_POS (w->start, pos);
15302 window_start_changed_p = true;
15306 return window_start_changed_p;
15310 /* Try cursor movement in case text has not changed in window WINDOW,
15311 with window start STARTP. Value is
15313 CURSOR_MOVEMENT_SUCCESS if successful
15315 CURSOR_MOVEMENT_CANNOT_BE_USED if this method cannot be used
15317 CURSOR_MOVEMENT_MUST_SCROLL if we know we have to scroll the
15318 display. *SCROLL_STEP is set to true, under certain circumstances, if
15319 we want to scroll as if scroll-step were set to 1. See the code.
15321 CURSOR_MOVEMENT_NEED_LARGER_MATRICES if we need larger matrices, in
15322 which case we have to abort this redisplay, and adjust matrices
15323 first. */
15325 enum
15327 CURSOR_MOVEMENT_SUCCESS,
15328 CURSOR_MOVEMENT_CANNOT_BE_USED,
15329 CURSOR_MOVEMENT_MUST_SCROLL,
15330 CURSOR_MOVEMENT_NEED_LARGER_MATRICES
15333 static int
15334 try_cursor_movement (Lisp_Object window, struct text_pos startp,
15335 bool *scroll_step)
15337 struct window *w = XWINDOW (window);
15338 struct frame *f = XFRAME (w->frame);
15339 int rc = CURSOR_MOVEMENT_CANNOT_BE_USED;
15341 #ifdef GLYPH_DEBUG
15342 if (inhibit_try_cursor_movement)
15343 return rc;
15344 #endif
15346 /* Previously, there was a check for Lisp integer in the
15347 if-statement below. Now, this field is converted to
15348 ptrdiff_t, thus zero means invalid position in a buffer. */
15349 eassert (w->last_point > 0);
15350 /* Likewise there was a check whether window_end_vpos is nil or larger
15351 than the window. Now window_end_vpos is int and so never nil, but
15352 let's leave eassert to check whether it fits in the window. */
15353 eassert (!w->window_end_valid
15354 || w->window_end_vpos < w->current_matrix->nrows);
15356 /* Handle case where text has not changed, only point, and it has
15357 not moved off the frame. */
15358 if (/* Point may be in this window. */
15359 PT >= CHARPOS (startp)
15360 /* Selective display hasn't changed. */
15361 && !current_buffer->clip_changed
15362 /* Function force-mode-line-update is used to force a thorough
15363 redisplay. It sets either windows_or_buffers_changed or
15364 update_mode_lines. So don't take a shortcut here for these
15365 cases. */
15366 && !update_mode_lines
15367 && !windows_or_buffers_changed
15368 && !f->cursor_type_changed
15369 && NILP (Vshow_trailing_whitespace)
15370 /* This code is not used for mini-buffer for the sake of the case
15371 of redisplaying to replace an echo area message; since in
15372 that case the mini-buffer contents per se are usually
15373 unchanged. This code is of no real use in the mini-buffer
15374 since the handling of this_line_start_pos, etc., in redisplay
15375 handles the same cases. */
15376 && !EQ (window, minibuf_window)
15377 && (FRAME_WINDOW_P (f)
15378 || !overlay_arrow_in_current_buffer_p ()))
15380 int this_scroll_margin, top_scroll_margin;
15381 struct glyph_row *row = NULL;
15382 int frame_line_height = default_line_pixel_height (w);
15383 int window_total_lines
15384 = WINDOW_TOTAL_LINES (w) * FRAME_LINE_HEIGHT (f) / frame_line_height;
15386 #ifdef GLYPH_DEBUG
15387 debug_method_add (w, "cursor movement");
15388 #endif
15390 /* Scroll if point within this distance from the top or bottom
15391 of the window. This is a pixel value. */
15392 if (scroll_margin > 0)
15394 this_scroll_margin = min (scroll_margin, window_total_lines / 4);
15395 this_scroll_margin *= frame_line_height;
15397 else
15398 this_scroll_margin = 0;
15400 top_scroll_margin = this_scroll_margin;
15401 if (WINDOW_WANTS_HEADER_LINE_P (w))
15402 top_scroll_margin += CURRENT_HEADER_LINE_HEIGHT (w);
15404 /* Start with the row the cursor was displayed during the last
15405 not paused redisplay. Give up if that row is not valid. */
15406 if (w->last_cursor_vpos < 0
15407 || w->last_cursor_vpos >= w->current_matrix->nrows)
15408 rc = CURSOR_MOVEMENT_MUST_SCROLL;
15409 else
15411 row = MATRIX_ROW (w->current_matrix, w->last_cursor_vpos);
15412 if (row->mode_line_p)
15413 ++row;
15414 if (!row->enabled_p)
15415 rc = CURSOR_MOVEMENT_MUST_SCROLL;
15418 if (rc == CURSOR_MOVEMENT_CANNOT_BE_USED)
15420 bool scroll_p = false, must_scroll = false;
15421 int last_y = window_text_bottom_y (w) - this_scroll_margin;
15423 if (PT > w->last_point)
15425 /* Point has moved forward. */
15426 while (MATRIX_ROW_END_CHARPOS (row) < PT
15427 && MATRIX_ROW_BOTTOM_Y (row) < last_y)
15429 eassert (row->enabled_p);
15430 ++row;
15433 /* If the end position of a row equals the start
15434 position of the next row, and PT is at that position,
15435 we would rather display cursor in the next line. */
15436 while (MATRIX_ROW_BOTTOM_Y (row) < last_y
15437 && MATRIX_ROW_END_CHARPOS (row) == PT
15438 && row < MATRIX_MODE_LINE_ROW (w->current_matrix)
15439 && MATRIX_ROW_START_CHARPOS (row+1) == PT
15440 && !cursor_row_p (row))
15441 ++row;
15443 /* If within the scroll margin, scroll. Note that
15444 MATRIX_ROW_BOTTOM_Y gives the pixel position at which
15445 the next line would be drawn, and that
15446 this_scroll_margin can be zero. */
15447 if (MATRIX_ROW_BOTTOM_Y (row) > last_y
15448 || PT > MATRIX_ROW_END_CHARPOS (row)
15449 /* Line is completely visible last line in window
15450 and PT is to be set in the next line. */
15451 || (MATRIX_ROW_BOTTOM_Y (row) == last_y
15452 && PT == MATRIX_ROW_END_CHARPOS (row)
15453 && !row->ends_at_zv_p
15454 && !MATRIX_ROW_ENDS_IN_MIDDLE_OF_CHAR_P (row)))
15455 scroll_p = true;
15457 else if (PT < w->last_point)
15459 /* Cursor has to be moved backward. Note that PT >=
15460 CHARPOS (startp) because of the outer if-statement. */
15461 while (!row->mode_line_p
15462 && (MATRIX_ROW_START_CHARPOS (row) > PT
15463 || (MATRIX_ROW_START_CHARPOS (row) == PT
15464 && (MATRIX_ROW_STARTS_IN_MIDDLE_OF_CHAR_P (row)
15465 || (/* STARTS_IN_MIDDLE_OF_STRING_P (row) */
15466 row > w->current_matrix->rows
15467 && (row-1)->ends_in_newline_from_string_p))))
15468 && (row->y > top_scroll_margin
15469 || CHARPOS (startp) == BEGV))
15471 eassert (row->enabled_p);
15472 --row;
15475 /* Consider the following case: Window starts at BEGV,
15476 there is invisible, intangible text at BEGV, so that
15477 display starts at some point START > BEGV. It can
15478 happen that we are called with PT somewhere between
15479 BEGV and START. Try to handle that case. */
15480 if (row < w->current_matrix->rows
15481 || row->mode_line_p)
15483 row = w->current_matrix->rows;
15484 if (row->mode_line_p)
15485 ++row;
15488 /* Due to newlines in overlay strings, we may have to
15489 skip forward over overlay strings. */
15490 while (MATRIX_ROW_BOTTOM_Y (row) < last_y
15491 && MATRIX_ROW_END_CHARPOS (row) == PT
15492 && !cursor_row_p (row))
15493 ++row;
15495 /* If within the scroll margin, scroll. */
15496 if (row->y < top_scroll_margin
15497 && CHARPOS (startp) != BEGV)
15498 scroll_p = true;
15500 else
15502 /* Cursor did not move. So don't scroll even if cursor line
15503 is partially visible, as it was so before. */
15504 rc = CURSOR_MOVEMENT_SUCCESS;
15507 if (PT < MATRIX_ROW_START_CHARPOS (row)
15508 || PT > MATRIX_ROW_END_CHARPOS (row))
15510 /* if PT is not in the glyph row, give up. */
15511 rc = CURSOR_MOVEMENT_MUST_SCROLL;
15512 must_scroll = true;
15514 else if (rc != CURSOR_MOVEMENT_SUCCESS
15515 && !NILP (BVAR (XBUFFER (w->contents), bidi_display_reordering)))
15517 struct glyph_row *row1;
15519 /* If rows are bidi-reordered and point moved, back up
15520 until we find a row that does not belong to a
15521 continuation line. This is because we must consider
15522 all rows of a continued line as candidates for the
15523 new cursor positioning, since row start and end
15524 positions change non-linearly with vertical position
15525 in such rows. */
15526 /* FIXME: Revisit this when glyph ``spilling'' in
15527 continuation lines' rows is implemented for
15528 bidi-reordered rows. */
15529 for (row1 = MATRIX_FIRST_TEXT_ROW (w->current_matrix);
15530 MATRIX_ROW_CONTINUATION_LINE_P (row);
15531 --row)
15533 /* If we hit the beginning of the displayed portion
15534 without finding the first row of a continued
15535 line, give up. */
15536 if (row <= row1)
15538 rc = CURSOR_MOVEMENT_MUST_SCROLL;
15539 break;
15541 eassert (row->enabled_p);
15544 if (must_scroll)
15546 else if (rc != CURSOR_MOVEMENT_SUCCESS
15547 && MATRIX_ROW_PARTIALLY_VISIBLE_P (w, row)
15548 /* Make sure this isn't a header line by any chance, since
15549 then MATRIX_ROW_PARTIALLY_VISIBLE_P might yield true. */
15550 && !row->mode_line_p
15551 && make_cursor_line_fully_visible_p)
15553 if (PT == MATRIX_ROW_END_CHARPOS (row)
15554 && !row->ends_at_zv_p
15555 && !MATRIX_ROW_ENDS_IN_MIDDLE_OF_CHAR_P (row))
15556 rc = CURSOR_MOVEMENT_MUST_SCROLL;
15557 else if (row->height > window_box_height (w))
15559 /* If we end up in a partially visible line, let's
15560 make it fully visible, except when it's taller
15561 than the window, in which case we can't do much
15562 about it. */
15563 *scroll_step = true;
15564 rc = CURSOR_MOVEMENT_MUST_SCROLL;
15566 else
15568 set_cursor_from_row (w, row, w->current_matrix, 0, 0, 0, 0);
15569 if (!cursor_row_fully_visible_p (w, false, true))
15570 rc = CURSOR_MOVEMENT_MUST_SCROLL;
15571 else
15572 rc = CURSOR_MOVEMENT_SUCCESS;
15575 else if (scroll_p)
15576 rc = CURSOR_MOVEMENT_MUST_SCROLL;
15577 else if (rc != CURSOR_MOVEMENT_SUCCESS
15578 && !NILP (BVAR (XBUFFER (w->contents), bidi_display_reordering)))
15580 /* With bidi-reordered rows, there could be more than
15581 one candidate row whose start and end positions
15582 occlude point. We need to let set_cursor_from_row
15583 find the best candidate. */
15584 /* FIXME: Revisit this when glyph ``spilling'' in
15585 continuation lines' rows is implemented for
15586 bidi-reordered rows. */
15587 bool rv = false;
15591 bool at_zv_p = false, exact_match_p = false;
15593 if (MATRIX_ROW_START_CHARPOS (row) <= PT
15594 && PT <= MATRIX_ROW_END_CHARPOS (row)
15595 && cursor_row_p (row))
15596 rv |= set_cursor_from_row (w, row, w->current_matrix,
15597 0, 0, 0, 0);
15598 /* As soon as we've found the exact match for point,
15599 or the first suitable row whose ends_at_zv_p flag
15600 is set, we are done. */
15601 if (rv)
15603 at_zv_p = MATRIX_ROW (w->current_matrix,
15604 w->cursor.vpos)->ends_at_zv_p;
15605 if (!at_zv_p
15606 && w->cursor.hpos >= 0
15607 && w->cursor.hpos < MATRIX_ROW_USED (w->current_matrix,
15608 w->cursor.vpos))
15610 struct glyph_row *candidate =
15611 MATRIX_ROW (w->current_matrix, w->cursor.vpos);
15612 struct glyph *g =
15613 candidate->glyphs[TEXT_AREA] + w->cursor.hpos;
15614 ptrdiff_t endpos = MATRIX_ROW_END_CHARPOS (candidate);
15616 exact_match_p =
15617 (BUFFERP (g->object) && g->charpos == PT)
15618 || (NILP (g->object)
15619 && (g->charpos == PT
15620 || (g->charpos == 0 && endpos - 1 == PT)));
15622 if (at_zv_p || exact_match_p)
15624 rc = CURSOR_MOVEMENT_SUCCESS;
15625 break;
15628 if (MATRIX_ROW_BOTTOM_Y (row) == last_y)
15629 break;
15630 ++row;
15632 while (((MATRIX_ROW_CONTINUATION_LINE_P (row)
15633 || row->continued_p)
15634 && MATRIX_ROW_BOTTOM_Y (row) <= last_y)
15635 || (MATRIX_ROW_START_CHARPOS (row) == PT
15636 && MATRIX_ROW_BOTTOM_Y (row) < last_y));
15637 /* If we didn't find any candidate rows, or exited the
15638 loop before all the candidates were examined, signal
15639 to the caller that this method failed. */
15640 if (rc != CURSOR_MOVEMENT_SUCCESS
15641 && !(rv
15642 && !MATRIX_ROW_CONTINUATION_LINE_P (row)
15643 && !row->continued_p))
15644 rc = CURSOR_MOVEMENT_MUST_SCROLL;
15645 else if (rv)
15646 rc = CURSOR_MOVEMENT_SUCCESS;
15648 else
15652 if (set_cursor_from_row (w, row, w->current_matrix, 0, 0, 0, 0))
15654 rc = CURSOR_MOVEMENT_SUCCESS;
15655 break;
15657 ++row;
15659 while (MATRIX_ROW_BOTTOM_Y (row) < last_y
15660 && MATRIX_ROW_START_CHARPOS (row) == PT
15661 && cursor_row_p (row));
15666 return rc;
15670 void
15671 set_vertical_scroll_bar (struct window *w)
15673 ptrdiff_t start, end, whole;
15675 /* Calculate the start and end positions for the current window.
15676 At some point, it would be nice to choose between scrollbars
15677 which reflect the whole buffer size, with special markers
15678 indicating narrowing, and scrollbars which reflect only the
15679 visible region.
15681 Note that mini-buffers sometimes aren't displaying any text. */
15682 if (!MINI_WINDOW_P (w)
15683 || (w == XWINDOW (minibuf_window)
15684 && NILP (echo_area_buffer[0])))
15686 struct buffer *buf = XBUFFER (w->contents);
15687 whole = BUF_ZV (buf) - BUF_BEGV (buf);
15688 start = marker_position (w->start) - BUF_BEGV (buf);
15689 /* I don't think this is guaranteed to be right. For the
15690 moment, we'll pretend it is. */
15691 end = BUF_Z (buf) - w->window_end_pos - BUF_BEGV (buf);
15693 if (end < start)
15694 end = start;
15695 if (whole < (end - start))
15696 whole = end - start;
15698 else
15699 start = end = whole = 0;
15701 /* Indicate what this scroll bar ought to be displaying now. */
15702 if (FRAME_TERMINAL (XFRAME (w->frame))->set_vertical_scroll_bar_hook)
15703 (*FRAME_TERMINAL (XFRAME (w->frame))->set_vertical_scroll_bar_hook)
15704 (w, end - start, whole, start);
15708 void
15709 set_horizontal_scroll_bar (struct window *w)
15711 int start, end, whole, portion;
15713 if (!MINI_WINDOW_P (w)
15714 || (w == XWINDOW (minibuf_window)
15715 && NILP (echo_area_buffer[0])))
15717 struct buffer *b = XBUFFER (w->contents);
15718 struct buffer *old_buffer = NULL;
15719 struct it it;
15720 struct text_pos startp;
15722 if (b != current_buffer)
15724 old_buffer = current_buffer;
15725 set_buffer_internal (b);
15728 SET_TEXT_POS_FROM_MARKER (startp, w->start);
15729 start_display (&it, w, startp);
15730 it.last_visible_x = INT_MAX;
15731 whole = move_it_to (&it, -1, INT_MAX, window_box_height (w), -1,
15732 MOVE_TO_X | MOVE_TO_Y);
15733 /* whole = move_it_to (&it, w->window_end_pos, INT_MAX,
15734 window_box_height (w), -1,
15735 MOVE_TO_POS | MOVE_TO_X | MOVE_TO_Y); */
15737 start = w->hscroll * FRAME_COLUMN_WIDTH (WINDOW_XFRAME (w));
15738 end = start + window_box_width (w, TEXT_AREA);
15739 portion = end - start;
15740 /* After enlarging a horizontally scrolled window such that it
15741 gets at least as wide as the text it contains, make sure that
15742 the thumb doesn't fill the entire scroll bar so we can still
15743 drag it back to see the entire text. */
15744 whole = max (whole, end);
15746 if (it.bidi_p)
15748 Lisp_Object pdir;
15750 pdir = Fcurrent_bidi_paragraph_direction (Qnil);
15751 if (EQ (pdir, Qright_to_left))
15753 start = whole - end;
15754 end = start + portion;
15758 if (old_buffer)
15759 set_buffer_internal (old_buffer);
15761 else
15762 start = end = whole = portion = 0;
15764 w->hscroll_whole = whole;
15766 /* Indicate what this scroll bar ought to be displaying now. */
15767 if (FRAME_TERMINAL (XFRAME (w->frame))->set_horizontal_scroll_bar_hook)
15768 (*FRAME_TERMINAL (XFRAME (w->frame))->set_horizontal_scroll_bar_hook)
15769 (w, portion, whole, start);
15773 /* Redisplay leaf window WINDOW. JUST_THIS_ONE_P means only
15774 selected_window is redisplayed.
15776 We can return without actually redisplaying the window if fonts has been
15777 changed on window's frame. In that case, redisplay_internal will retry.
15779 As one of the important parts of redisplaying a window, we need to
15780 decide whether the previous window-start position (stored in the
15781 window's w->start marker position) is still valid, and if it isn't,
15782 recompute it. Some details about that:
15784 . The previous window-start could be in a continuation line, in
15785 which case we need to recompute it when the window width
15786 changes. See compute_window_start_on_continuation_line and its
15787 call below.
15789 . The text that changed since last redisplay could include the
15790 previous window-start position. In that case, we try to salvage
15791 what we can from the current glyph matrix by calling
15792 try_scrolling, which see.
15794 . Some Emacs command could force us to use a specific window-start
15795 position by setting the window's force_start flag, or gently
15796 propose doing that by setting the window's optional_new_start
15797 flag. In these cases, we try using the specified start point if
15798 that succeeds (i.e. the window desired matrix is successfully
15799 recomputed, and point location is within the window). In case
15800 of optional_new_start, we first check if the specified start
15801 position is feasible, i.e. if it will allow point to be
15802 displayed in the window. If using the specified start point
15803 fails, e.g., if new fonts are needed to be loaded, we abort the
15804 redisplay cycle and leave it up to the next cycle to figure out
15805 things.
15807 . Note that the window's force_start flag is sometimes set by
15808 redisplay itself, when it decides that the previous window start
15809 point is fine and should be kept. Search for "goto force_start"
15810 below to see the details. Like the values of window-start
15811 specified outside of redisplay, these internally-deduced values
15812 are tested for feasibility, and ignored if found to be
15813 unfeasible.
15815 . Note that the function try_window, used to completely redisplay
15816 a window, accepts the window's start point as its argument.
15817 This is used several times in the redisplay code to control
15818 where the window start will be, according to user options such
15819 as scroll-conservatively, and also to ensure the screen line
15820 showing point will be fully (as opposed to partially) visible on
15821 display. */
15823 static void
15824 redisplay_window (Lisp_Object window, bool just_this_one_p)
15826 struct window *w = XWINDOW (window);
15827 struct frame *f = XFRAME (w->frame);
15828 struct buffer *buffer = XBUFFER (w->contents);
15829 struct buffer *old = current_buffer;
15830 struct text_pos lpoint, opoint, startp;
15831 bool update_mode_line;
15832 int tem;
15833 struct it it;
15834 /* Record it now because it's overwritten. */
15835 bool current_matrix_up_to_date_p = false;
15836 bool used_current_matrix_p = false;
15837 /* This is less strict than current_matrix_up_to_date_p.
15838 It indicates that the buffer contents and narrowing are unchanged. */
15839 bool buffer_unchanged_p = false;
15840 bool temp_scroll_step = false;
15841 ptrdiff_t count = SPECPDL_INDEX ();
15842 int rc;
15843 int centering_position = -1;
15844 bool last_line_misfit = false;
15845 ptrdiff_t beg_unchanged, end_unchanged;
15846 int frame_line_height;
15848 SET_TEXT_POS (lpoint, PT, PT_BYTE);
15849 opoint = lpoint;
15851 #ifdef GLYPH_DEBUG
15852 *w->desired_matrix->method = 0;
15853 #endif
15855 if (!just_this_one_p
15856 && REDISPLAY_SOME_P ()
15857 && !w->redisplay
15858 && !w->update_mode_line
15859 && !f->redisplay
15860 && !buffer->text->redisplay
15861 && BUF_PT (buffer) == w->last_point)
15862 return;
15864 /* Make sure that both W's markers are valid. */
15865 eassert (XMARKER (w->start)->buffer == buffer);
15866 eassert (XMARKER (w->pointm)->buffer == buffer);
15868 /* We come here again if we need to run window-text-change-functions
15869 below. */
15870 restart:
15871 reconsider_clip_changes (w);
15872 frame_line_height = default_line_pixel_height (w);
15874 /* Has the mode line to be updated? */
15875 update_mode_line = (w->update_mode_line
15876 || update_mode_lines
15877 || buffer->clip_changed
15878 || buffer->prevent_redisplay_optimizations_p);
15880 if (!just_this_one_p)
15881 /* If `just_this_one_p' is set, we apparently set must_be_updated_p more
15882 cleverly elsewhere. */
15883 w->must_be_updated_p = true;
15885 if (MINI_WINDOW_P (w))
15887 if (w == XWINDOW (echo_area_window)
15888 && !NILP (echo_area_buffer[0]))
15890 if (update_mode_line)
15891 /* We may have to update a tty frame's menu bar or a
15892 tool-bar. Example `M-x C-h C-h C-g'. */
15893 goto finish_menu_bars;
15894 else
15895 /* We've already displayed the echo area glyphs in this window. */
15896 goto finish_scroll_bars;
15898 else if ((w != XWINDOW (minibuf_window)
15899 || minibuf_level == 0)
15900 /* When buffer is nonempty, redisplay window normally. */
15901 && BUF_Z (XBUFFER (w->contents)) == BUF_BEG (XBUFFER (w->contents))
15902 /* Quail displays non-mini buffers in minibuffer window.
15903 In that case, redisplay the window normally. */
15904 && !NILP (Fmemq (w->contents, Vminibuffer_list)))
15906 /* W is a mini-buffer window, but it's not active, so clear
15907 it. */
15908 int yb = window_text_bottom_y (w);
15909 struct glyph_row *row;
15910 int y;
15912 for (y = 0, row = w->desired_matrix->rows;
15913 y < yb;
15914 y += row->height, ++row)
15915 blank_row (w, row, y);
15916 goto finish_scroll_bars;
15919 clear_glyph_matrix (w->desired_matrix);
15922 /* Otherwise set up data on this window; select its buffer and point
15923 value. */
15924 /* Really select the buffer, for the sake of buffer-local
15925 variables. */
15926 set_buffer_internal_1 (XBUFFER (w->contents));
15928 current_matrix_up_to_date_p
15929 = (w->window_end_valid
15930 && !current_buffer->clip_changed
15931 && !current_buffer->prevent_redisplay_optimizations_p
15932 && !window_outdated (w));
15934 /* Run the window-text-change-functions
15935 if it is possible that the text on the screen has changed
15936 (either due to modification of the text, or any other reason). */
15937 if (!current_matrix_up_to_date_p
15938 && !NILP (Vwindow_text_change_functions))
15940 safe_run_hooks (Qwindow_text_change_functions);
15941 goto restart;
15944 beg_unchanged = BEG_UNCHANGED;
15945 end_unchanged = END_UNCHANGED;
15947 SET_TEXT_POS (opoint, PT, PT_BYTE);
15949 specbind (Qinhibit_point_motion_hooks, Qt);
15951 buffer_unchanged_p
15952 = (w->window_end_valid
15953 && !current_buffer->clip_changed
15954 && !window_outdated (w));
15956 /* When windows_or_buffers_changed is non-zero, we can't rely
15957 on the window end being valid, so set it to zero there. */
15958 if (windows_or_buffers_changed)
15960 /* If window starts on a continuation line, maybe adjust the
15961 window start in case the window's width changed. */
15962 if (XMARKER (w->start)->buffer == current_buffer)
15963 compute_window_start_on_continuation_line (w);
15965 w->window_end_valid = false;
15966 /* If so, we also can't rely on current matrix
15967 and should not fool try_cursor_movement below. */
15968 current_matrix_up_to_date_p = false;
15971 /* Some sanity checks. */
15972 CHECK_WINDOW_END (w);
15973 if (Z == Z_BYTE && CHARPOS (opoint) != BYTEPOS (opoint))
15974 emacs_abort ();
15975 if (BYTEPOS (opoint) < CHARPOS (opoint))
15976 emacs_abort ();
15978 if (mode_line_update_needed (w))
15979 update_mode_line = true;
15981 /* Point refers normally to the selected window. For any other
15982 window, set up appropriate value. */
15983 if (!EQ (window, selected_window))
15985 ptrdiff_t new_pt = marker_position (w->pointm);
15986 ptrdiff_t new_pt_byte = marker_byte_position (w->pointm);
15988 if (new_pt < BEGV)
15990 new_pt = BEGV;
15991 new_pt_byte = BEGV_BYTE;
15992 set_marker_both (w->pointm, Qnil, BEGV, BEGV_BYTE);
15994 else if (new_pt > (ZV - 1))
15996 new_pt = ZV;
15997 new_pt_byte = ZV_BYTE;
15998 set_marker_both (w->pointm, Qnil, ZV, ZV_BYTE);
16001 /* We don't use SET_PT so that the point-motion hooks don't run. */
16002 TEMP_SET_PT_BOTH (new_pt, new_pt_byte);
16005 /* If any of the character widths specified in the display table
16006 have changed, invalidate the width run cache. It's true that
16007 this may be a bit late to catch such changes, but the rest of
16008 redisplay goes (non-fatally) haywire when the display table is
16009 changed, so why should we worry about doing any better? */
16010 if (current_buffer->width_run_cache
16011 || (current_buffer->base_buffer
16012 && current_buffer->base_buffer->width_run_cache))
16014 struct Lisp_Char_Table *disptab = buffer_display_table ();
16016 if (! disptab_matches_widthtab
16017 (disptab, XVECTOR (BVAR (current_buffer, width_table))))
16019 struct buffer *buf = current_buffer;
16021 if (buf->base_buffer)
16022 buf = buf->base_buffer;
16023 invalidate_region_cache (buf, buf->width_run_cache, BEG, Z);
16024 recompute_width_table (current_buffer, disptab);
16028 /* If window-start is screwed up, choose a new one. */
16029 if (XMARKER (w->start)->buffer != current_buffer)
16030 goto recenter;
16032 SET_TEXT_POS_FROM_MARKER (startp, w->start);
16034 /* If someone specified a new starting point but did not insist,
16035 check whether it can be used. */
16036 if ((w->optional_new_start || window_frozen_p (w))
16037 && CHARPOS (startp) >= BEGV
16038 && CHARPOS (startp) <= ZV)
16040 ptrdiff_t it_charpos;
16042 w->optional_new_start = false;
16043 start_display (&it, w, startp);
16044 move_it_to (&it, PT, 0, it.last_visible_y, -1,
16045 MOVE_TO_POS | MOVE_TO_X | MOVE_TO_Y);
16046 /* Record IT's position now, since line_bottom_y might change
16047 that. */
16048 it_charpos = IT_CHARPOS (it);
16049 /* Make sure we set the force_start flag only if the cursor row
16050 will be fully visible. Otherwise, the code under force_start
16051 label below will try to move point back into view, which is
16052 not what the code which sets optional_new_start wants. */
16053 if ((it.current_y == 0 || line_bottom_y (&it) < it.last_visible_y)
16054 && !w->force_start)
16056 if (it_charpos == PT)
16057 w->force_start = true;
16058 /* IT may overshoot PT if text at PT is invisible. */
16059 else if (it_charpos > PT && CHARPOS (startp) <= PT)
16060 w->force_start = true;
16061 #ifdef GLYPH_DEBUG
16062 if (w->force_start)
16064 if (window_frozen_p (w))
16065 debug_method_add (w, "set force_start from frozen window start");
16066 else
16067 debug_method_add (w, "set force_start from optional_new_start");
16069 #endif
16073 force_start:
16075 /* Handle case where place to start displaying has been specified,
16076 unless the specified location is outside the accessible range. */
16077 if (w->force_start)
16079 /* We set this later on if we have to adjust point. */
16080 int new_vpos = -1;
16082 w->force_start = false;
16083 w->vscroll = 0;
16084 w->window_end_valid = false;
16086 /* Forget any recorded base line for line number display. */
16087 if (!buffer_unchanged_p)
16088 w->base_line_number = 0;
16090 /* Redisplay the mode line. Select the buffer properly for that.
16091 Also, run the hook window-scroll-functions
16092 because we have scrolled. */
16093 /* Note, we do this after clearing force_start because
16094 if there's an error, it is better to forget about force_start
16095 than to get into an infinite loop calling the hook functions
16096 and having them get more errors. */
16097 if (!update_mode_line
16098 || ! NILP (Vwindow_scroll_functions))
16100 update_mode_line = true;
16101 w->update_mode_line = true;
16102 startp = run_window_scroll_functions (window, startp);
16105 if (CHARPOS (startp) < BEGV)
16106 SET_TEXT_POS (startp, BEGV, BEGV_BYTE);
16107 else if (CHARPOS (startp) > ZV)
16108 SET_TEXT_POS (startp, ZV, ZV_BYTE);
16110 /* Redisplay, then check if cursor has been set during the
16111 redisplay. Give up if new fonts were loaded. */
16112 /* We used to issue a CHECK_MARGINS argument to try_window here,
16113 but this causes scrolling to fail when point begins inside
16114 the scroll margin (bug#148) -- cyd */
16115 if (!try_window (window, startp, 0))
16117 w->force_start = true;
16118 clear_glyph_matrix (w->desired_matrix);
16119 goto need_larger_matrices;
16122 if (w->cursor.vpos < 0)
16124 /* If point does not appear, try to move point so it does
16125 appear. The desired matrix has been built above, so we
16126 can use it here. */
16127 new_vpos = window_box_height (w) / 2;
16130 if (!cursor_row_fully_visible_p (w, false, false))
16132 /* Point does appear, but on a line partly visible at end of window.
16133 Move it back to a fully-visible line. */
16134 new_vpos = window_box_height (w);
16135 /* But if window_box_height suggests a Y coordinate that is
16136 not less than we already have, that line will clearly not
16137 be fully visible, so give up and scroll the display.
16138 This can happen when the default face uses a font whose
16139 dimensions are different from the frame's default
16140 font. */
16141 if (new_vpos >= w->cursor.y)
16143 w->cursor.vpos = -1;
16144 clear_glyph_matrix (w->desired_matrix);
16145 goto try_to_scroll;
16148 else if (w->cursor.vpos >= 0)
16150 /* Some people insist on not letting point enter the scroll
16151 margin, even though this part handles windows that didn't
16152 scroll at all. */
16153 int window_total_lines
16154 = WINDOW_TOTAL_LINES (w) * FRAME_LINE_HEIGHT (f) / frame_line_height;
16155 int margin = min (scroll_margin, window_total_lines / 4);
16156 int pixel_margin = margin * frame_line_height;
16157 bool header_line = WINDOW_WANTS_HEADER_LINE_P (w);
16159 /* Note: We add an extra FRAME_LINE_HEIGHT, because the loop
16160 below, which finds the row to move point to, advances by
16161 the Y coordinate of the _next_ row, see the definition of
16162 MATRIX_ROW_BOTTOM_Y. */
16163 if (w->cursor.vpos < margin + header_line)
16165 w->cursor.vpos = -1;
16166 clear_glyph_matrix (w->desired_matrix);
16167 goto try_to_scroll;
16169 else
16171 int window_height = window_box_height (w);
16173 if (header_line)
16174 window_height += CURRENT_HEADER_LINE_HEIGHT (w);
16175 if (w->cursor.y >= window_height - pixel_margin)
16177 w->cursor.vpos = -1;
16178 clear_glyph_matrix (w->desired_matrix);
16179 goto try_to_scroll;
16184 /* If we need to move point for either of the above reasons,
16185 now actually do it. */
16186 if (new_vpos >= 0)
16188 struct glyph_row *row;
16190 row = MATRIX_FIRST_TEXT_ROW (w->desired_matrix);
16191 while (MATRIX_ROW_BOTTOM_Y (row) < new_vpos)
16192 ++row;
16194 TEMP_SET_PT_BOTH (MATRIX_ROW_START_CHARPOS (row),
16195 MATRIX_ROW_START_BYTEPOS (row));
16197 if (w != XWINDOW (selected_window))
16198 set_marker_both (w->pointm, Qnil, PT, PT_BYTE);
16199 else if (current_buffer == old)
16200 SET_TEXT_POS (lpoint, PT, PT_BYTE);
16202 set_cursor_from_row (w, row, w->desired_matrix, 0, 0, 0, 0);
16204 /* Re-run pre-redisplay-function so it can update the region
16205 according to the new position of point. */
16206 /* Other than the cursor, w's redisplay is done so we can set its
16207 redisplay to false. Also the buffer's redisplay can be set to
16208 false, since propagate_buffer_redisplay should have already
16209 propagated its info to `w' anyway. */
16210 w->redisplay = false;
16211 XBUFFER (w->contents)->text->redisplay = false;
16212 safe__call1 (true, Vpre_redisplay_function, Fcons (window, Qnil));
16214 if (w->redisplay || XBUFFER (w->contents)->text->redisplay)
16216 /* pre-redisplay-function made changes (e.g. move the region)
16217 that require another round of redisplay. */
16218 clear_glyph_matrix (w->desired_matrix);
16219 if (!try_window (window, startp, 0))
16220 goto need_larger_matrices;
16223 if (w->cursor.vpos < 0 || !cursor_row_fully_visible_p (w, false, false))
16225 clear_glyph_matrix (w->desired_matrix);
16226 goto try_to_scroll;
16229 #ifdef GLYPH_DEBUG
16230 debug_method_add (w, "forced window start");
16231 #endif
16232 goto done;
16235 /* Handle case where text has not changed, only point, and it has
16236 not moved off the frame, and we are not retrying after hscroll.
16237 (current_matrix_up_to_date_p is true when retrying.) */
16238 if (current_matrix_up_to_date_p
16239 && (rc = try_cursor_movement (window, startp, &temp_scroll_step),
16240 rc != CURSOR_MOVEMENT_CANNOT_BE_USED))
16242 switch (rc)
16244 case CURSOR_MOVEMENT_SUCCESS:
16245 used_current_matrix_p = true;
16246 goto done;
16248 case CURSOR_MOVEMENT_MUST_SCROLL:
16249 goto try_to_scroll;
16251 default:
16252 emacs_abort ();
16255 /* If current starting point was originally the beginning of a line
16256 but no longer is, find a new starting point. */
16257 else if (w->start_at_line_beg
16258 && !(CHARPOS (startp) <= BEGV
16259 || FETCH_BYTE (BYTEPOS (startp) - 1) == '\n'))
16261 #ifdef GLYPH_DEBUG
16262 debug_method_add (w, "recenter 1");
16263 #endif
16264 goto recenter;
16267 /* Try scrolling with try_window_id. Value is > 0 if update has
16268 been done, it is -1 if we know that the same window start will
16269 not work. It is 0 if unsuccessful for some other reason. */
16270 else if ((tem = try_window_id (w)) != 0)
16272 #ifdef GLYPH_DEBUG
16273 debug_method_add (w, "try_window_id %d", tem);
16274 #endif
16276 if (f->fonts_changed)
16277 goto need_larger_matrices;
16278 if (tem > 0)
16279 goto done;
16281 /* Otherwise try_window_id has returned -1 which means that we
16282 don't want the alternative below this comment to execute. */
16284 else if (CHARPOS (startp) >= BEGV
16285 && CHARPOS (startp) <= ZV
16286 && PT >= CHARPOS (startp)
16287 && (CHARPOS (startp) < ZV
16288 /* Avoid starting at end of buffer. */
16289 || CHARPOS (startp) == BEGV
16290 || !window_outdated (w)))
16292 int d1, d2, d5, d6;
16293 int rtop, rbot;
16295 /* If first window line is a continuation line, and window start
16296 is inside the modified region, but the first change is before
16297 current window start, we must select a new window start.
16299 However, if this is the result of a down-mouse event (e.g. by
16300 extending the mouse-drag-overlay), we don't want to select a
16301 new window start, since that would change the position under
16302 the mouse, resulting in an unwanted mouse-movement rather
16303 than a simple mouse-click. */
16304 if (!w->start_at_line_beg
16305 && NILP (do_mouse_tracking)
16306 && CHARPOS (startp) > BEGV
16307 && CHARPOS (startp) > BEG + beg_unchanged
16308 && CHARPOS (startp) <= Z - end_unchanged
16309 /* Even if w->start_at_line_beg is nil, a new window may
16310 start at a line_beg, since that's how set_buffer_window
16311 sets it. So, we need to check the return value of
16312 compute_window_start_on_continuation_line. (See also
16313 bug#197). */
16314 && XMARKER (w->start)->buffer == current_buffer
16315 && compute_window_start_on_continuation_line (w)
16316 /* It doesn't make sense to force the window start like we
16317 do at label force_start if it is already known that point
16318 will not be fully visible in the resulting window, because
16319 doing so will move point from its correct position
16320 instead of scrolling the window to bring point into view.
16321 See bug#9324. */
16322 && pos_visible_p (w, PT, &d1, &d2, &rtop, &rbot, &d5, &d6)
16323 /* A very tall row could need more than the window height,
16324 in which case we accept that it is partially visible. */
16325 && (rtop != 0) == (rbot != 0))
16327 w->force_start = true;
16328 SET_TEXT_POS_FROM_MARKER (startp, w->start);
16329 #ifdef GLYPH_DEBUG
16330 debug_method_add (w, "recomputed window start in continuation line");
16331 #endif
16332 goto force_start;
16335 #ifdef GLYPH_DEBUG
16336 debug_method_add (w, "same window start");
16337 #endif
16339 /* Try to redisplay starting at same place as before.
16340 If point has not moved off frame, accept the results. */
16341 if (!current_matrix_up_to_date_p
16342 /* Don't use try_window_reusing_current_matrix in this case
16343 because a window scroll function can have changed the
16344 buffer. */
16345 || !NILP (Vwindow_scroll_functions)
16346 || MINI_WINDOW_P (w)
16347 || !(used_current_matrix_p
16348 = try_window_reusing_current_matrix (w)))
16350 IF_DEBUG (debug_method_add (w, "1"));
16351 if (try_window (window, startp, TRY_WINDOW_CHECK_MARGINS) < 0)
16352 /* -1 means we need to scroll.
16353 0 means we need new matrices, but fonts_changed
16354 is set in that case, so we will detect it below. */
16355 goto try_to_scroll;
16358 if (f->fonts_changed)
16359 goto need_larger_matrices;
16361 if (w->cursor.vpos >= 0)
16363 if (!just_this_one_p
16364 || current_buffer->clip_changed
16365 || BEG_UNCHANGED < CHARPOS (startp))
16366 /* Forget any recorded base line for line number display. */
16367 w->base_line_number = 0;
16369 if (!cursor_row_fully_visible_p (w, true, false))
16371 clear_glyph_matrix (w->desired_matrix);
16372 last_line_misfit = true;
16374 /* Drop through and scroll. */
16375 else
16376 goto done;
16378 else
16379 clear_glyph_matrix (w->desired_matrix);
16382 try_to_scroll:
16384 /* Redisplay the mode line. Select the buffer properly for that. */
16385 if (!update_mode_line)
16387 update_mode_line = true;
16388 w->update_mode_line = true;
16391 /* Try to scroll by specified few lines. */
16392 if ((scroll_conservatively
16393 || emacs_scroll_step
16394 || temp_scroll_step
16395 || NUMBERP (BVAR (current_buffer, scroll_up_aggressively))
16396 || NUMBERP (BVAR (current_buffer, scroll_down_aggressively)))
16397 && CHARPOS (startp) >= BEGV
16398 && CHARPOS (startp) <= ZV)
16400 /* The function returns -1 if new fonts were loaded, 1 if
16401 successful, 0 if not successful. */
16402 int ss = try_scrolling (window, just_this_one_p,
16403 scroll_conservatively,
16404 emacs_scroll_step,
16405 temp_scroll_step, last_line_misfit);
16406 switch (ss)
16408 case SCROLLING_SUCCESS:
16409 goto done;
16411 case SCROLLING_NEED_LARGER_MATRICES:
16412 goto need_larger_matrices;
16414 case SCROLLING_FAILED:
16415 break;
16417 default:
16418 emacs_abort ();
16422 /* Finally, just choose a place to start which positions point
16423 according to user preferences. */
16425 recenter:
16427 #ifdef GLYPH_DEBUG
16428 debug_method_add (w, "recenter");
16429 #endif
16431 /* Forget any previously recorded base line for line number display. */
16432 if (!buffer_unchanged_p)
16433 w->base_line_number = 0;
16435 /* Determine the window start relative to point. */
16436 init_iterator (&it, w, PT, PT_BYTE, NULL, DEFAULT_FACE_ID);
16437 it.current_y = it.last_visible_y;
16438 if (centering_position < 0)
16440 int window_total_lines
16441 = WINDOW_TOTAL_LINES (w) * FRAME_LINE_HEIGHT (f) / frame_line_height;
16442 int margin
16443 = scroll_margin > 0
16444 ? min (scroll_margin, window_total_lines / 4)
16445 : 0;
16446 ptrdiff_t margin_pos = CHARPOS (startp);
16447 Lisp_Object aggressive;
16448 bool scrolling_up;
16450 /* If there is a scroll margin at the top of the window, find
16451 its character position. */
16452 if (margin
16453 /* Cannot call start_display if startp is not in the
16454 accessible region of the buffer. This can happen when we
16455 have just switched to a different buffer and/or changed
16456 its restriction. In that case, startp is initialized to
16457 the character position 1 (BEGV) because we did not yet
16458 have chance to display the buffer even once. */
16459 && BEGV <= CHARPOS (startp) && CHARPOS (startp) <= ZV)
16461 struct it it1;
16462 void *it1data = NULL;
16464 SAVE_IT (it1, it, it1data);
16465 start_display (&it1, w, startp);
16466 move_it_vertically (&it1, margin * frame_line_height);
16467 margin_pos = IT_CHARPOS (it1);
16468 RESTORE_IT (&it, &it, it1data);
16470 scrolling_up = PT > margin_pos;
16471 aggressive =
16472 scrolling_up
16473 ? BVAR (current_buffer, scroll_up_aggressively)
16474 : BVAR (current_buffer, scroll_down_aggressively);
16476 if (!MINI_WINDOW_P (w)
16477 && (scroll_conservatively > SCROLL_LIMIT || NUMBERP (aggressive)))
16479 int pt_offset = 0;
16481 /* Setting scroll-conservatively overrides
16482 scroll-*-aggressively. */
16483 if (!scroll_conservatively && NUMBERP (aggressive))
16485 double float_amount = XFLOATINT (aggressive);
16487 pt_offset = float_amount * WINDOW_BOX_TEXT_HEIGHT (w);
16488 if (pt_offset == 0 && float_amount > 0)
16489 pt_offset = 1;
16490 if (pt_offset && margin > 0)
16491 margin -= 1;
16493 /* Compute how much to move the window start backward from
16494 point so that point will be displayed where the user
16495 wants it. */
16496 if (scrolling_up)
16498 centering_position = it.last_visible_y;
16499 if (pt_offset)
16500 centering_position -= pt_offset;
16501 centering_position -=
16502 (frame_line_height * (1 + margin + last_line_misfit)
16503 + WINDOW_HEADER_LINE_HEIGHT (w));
16504 /* Don't let point enter the scroll margin near top of
16505 the window. */
16506 if (centering_position < margin * frame_line_height)
16507 centering_position = margin * frame_line_height;
16509 else
16510 centering_position = margin * frame_line_height + pt_offset;
16512 else
16513 /* Set the window start half the height of the window backward
16514 from point. */
16515 centering_position = window_box_height (w) / 2;
16517 move_it_vertically_backward (&it, centering_position);
16519 eassert (IT_CHARPOS (it) >= BEGV);
16521 /* The function move_it_vertically_backward may move over more
16522 than the specified y-distance. If it->w is small, e.g. a
16523 mini-buffer window, we may end up in front of the window's
16524 display area. Start displaying at the start of the line
16525 containing PT in this case. */
16526 if (it.current_y <= 0)
16528 init_iterator (&it, w, PT, PT_BYTE, NULL, DEFAULT_FACE_ID);
16529 move_it_vertically_backward (&it, 0);
16530 it.current_y = 0;
16533 it.current_x = it.hpos = 0;
16535 /* Set the window start position here explicitly, to avoid an
16536 infinite loop in case the functions in window-scroll-functions
16537 get errors. */
16538 set_marker_both (w->start, Qnil, IT_CHARPOS (it), IT_BYTEPOS (it));
16540 /* Run scroll hooks. */
16541 startp = run_window_scroll_functions (window, it.current.pos);
16543 /* Redisplay the window. */
16544 if (!current_matrix_up_to_date_p
16545 || windows_or_buffers_changed
16546 || f->cursor_type_changed
16547 /* Don't use try_window_reusing_current_matrix in this case
16548 because it can have changed the buffer. */
16549 || !NILP (Vwindow_scroll_functions)
16550 || !just_this_one_p
16551 || MINI_WINDOW_P (w)
16552 || !(used_current_matrix_p
16553 = try_window_reusing_current_matrix (w)))
16554 try_window (window, startp, 0);
16556 /* If new fonts have been loaded (due to fontsets), give up. We
16557 have to start a new redisplay since we need to re-adjust glyph
16558 matrices. */
16559 if (f->fonts_changed)
16560 goto need_larger_matrices;
16562 /* If cursor did not appear assume that the middle of the window is
16563 in the first line of the window. Do it again with the next line.
16564 (Imagine a window of height 100, displaying two lines of height
16565 60. Moving back 50 from it->last_visible_y will end in the first
16566 line.) */
16567 if (w->cursor.vpos < 0)
16569 if (w->window_end_valid && PT >= Z - w->window_end_pos)
16571 clear_glyph_matrix (w->desired_matrix);
16572 move_it_by_lines (&it, 1);
16573 try_window (window, it.current.pos, 0);
16575 else if (PT < IT_CHARPOS (it))
16577 clear_glyph_matrix (w->desired_matrix);
16578 move_it_by_lines (&it, -1);
16579 try_window (window, it.current.pos, 0);
16581 else
16583 /* Not much we can do about it. */
16587 /* Consider the following case: Window starts at BEGV, there is
16588 invisible, intangible text at BEGV, so that display starts at
16589 some point START > BEGV. It can happen that we are called with
16590 PT somewhere between BEGV and START. Try to handle that case,
16591 and similar ones. */
16592 if (w->cursor.vpos < 0)
16594 /* First, try locating the proper glyph row for PT. */
16595 struct glyph_row *row =
16596 row_containing_pos (w, PT, w->current_matrix->rows, NULL, 0);
16598 /* Sometimes point is at the beginning of invisible text that is
16599 before the 1st character displayed in the row. In that case,
16600 row_containing_pos fails to find the row, because no glyphs
16601 with appropriate buffer positions are present in the row.
16602 Therefore, we next try to find the row which shows the 1st
16603 position after the invisible text. */
16604 if (!row)
16606 Lisp_Object val =
16607 get_char_property_and_overlay (make_number (PT), Qinvisible,
16608 Qnil, NULL);
16610 if (TEXT_PROP_MEANS_INVISIBLE (val) != 0)
16612 ptrdiff_t alt_pos;
16613 Lisp_Object invis_end =
16614 Fnext_single_char_property_change (make_number (PT), Qinvisible,
16615 Qnil, Qnil);
16617 if (NATNUMP (invis_end))
16618 alt_pos = XFASTINT (invis_end);
16619 else
16620 alt_pos = ZV;
16621 row = row_containing_pos (w, alt_pos, w->current_matrix->rows,
16622 NULL, 0);
16625 /* Finally, fall back on the first row of the window after the
16626 header line (if any). This is slightly better than not
16627 displaying the cursor at all. */
16628 if (!row)
16630 row = w->current_matrix->rows;
16631 if (row->mode_line_p)
16632 ++row;
16634 set_cursor_from_row (w, row, w->current_matrix, 0, 0, 0, 0);
16637 if (!cursor_row_fully_visible_p (w, false, false))
16639 /* If vscroll is enabled, disable it and try again. */
16640 if (w->vscroll)
16642 w->vscroll = 0;
16643 clear_glyph_matrix (w->desired_matrix);
16644 goto recenter;
16647 /* Users who set scroll-conservatively to a large number want
16648 point just above/below the scroll margin. If we ended up
16649 with point's row partially visible, move the window start to
16650 make that row fully visible and out of the margin. */
16651 if (scroll_conservatively > SCROLL_LIMIT)
16653 int window_total_lines
16654 = WINDOW_TOTAL_LINES (w) * FRAME_LINE_HEIGHT (f) * frame_line_height;
16655 int margin =
16656 scroll_margin > 0
16657 ? min (scroll_margin, window_total_lines / 4)
16658 : 0;
16659 bool move_down = w->cursor.vpos >= window_total_lines / 2;
16661 move_it_by_lines (&it, move_down ? margin + 1 : -(margin + 1));
16662 clear_glyph_matrix (w->desired_matrix);
16663 if (1 == try_window (window, it.current.pos,
16664 TRY_WINDOW_CHECK_MARGINS))
16665 goto done;
16668 /* If centering point failed to make the whole line visible,
16669 put point at the top instead. That has to make the whole line
16670 visible, if it can be done. */
16671 if (centering_position == 0)
16672 goto done;
16674 clear_glyph_matrix (w->desired_matrix);
16675 centering_position = 0;
16676 goto recenter;
16679 done:
16681 SET_TEXT_POS_FROM_MARKER (startp, w->start);
16682 w->start_at_line_beg = (CHARPOS (startp) == BEGV
16683 || FETCH_BYTE (BYTEPOS (startp) - 1) == '\n');
16685 /* Display the mode line, if we must. */
16686 if ((update_mode_line
16687 /* If window not full width, must redo its mode line
16688 if (a) the window to its side is being redone and
16689 (b) we do a frame-based redisplay. This is a consequence
16690 of how inverted lines are drawn in frame-based redisplay. */
16691 || (!just_this_one_p
16692 && !FRAME_WINDOW_P (f)
16693 && !WINDOW_FULL_WIDTH_P (w))
16694 /* Line number to display. */
16695 || w->base_line_pos > 0
16696 /* Column number is displayed and different from the one displayed. */
16697 || (w->column_number_displayed != -1
16698 && (w->column_number_displayed != current_column ())))
16699 /* This means that the window has a mode line. */
16700 && (WINDOW_WANTS_MODELINE_P (w)
16701 || WINDOW_WANTS_HEADER_LINE_P (w)))
16704 display_mode_lines (w);
16706 /* If mode line height has changed, arrange for a thorough
16707 immediate redisplay using the correct mode line height. */
16708 if (WINDOW_WANTS_MODELINE_P (w)
16709 && CURRENT_MODE_LINE_HEIGHT (w) != DESIRED_MODE_LINE_HEIGHT (w))
16711 f->fonts_changed = true;
16712 w->mode_line_height = -1;
16713 MATRIX_MODE_LINE_ROW (w->current_matrix)->height
16714 = DESIRED_MODE_LINE_HEIGHT (w);
16717 /* If header line height has changed, arrange for a thorough
16718 immediate redisplay using the correct header line height. */
16719 if (WINDOW_WANTS_HEADER_LINE_P (w)
16720 && CURRENT_HEADER_LINE_HEIGHT (w) != DESIRED_HEADER_LINE_HEIGHT (w))
16722 f->fonts_changed = true;
16723 w->header_line_height = -1;
16724 MATRIX_HEADER_LINE_ROW (w->current_matrix)->height
16725 = DESIRED_HEADER_LINE_HEIGHT (w);
16728 if (f->fonts_changed)
16729 goto need_larger_matrices;
16732 if (!line_number_displayed && w->base_line_pos != -1)
16734 w->base_line_pos = 0;
16735 w->base_line_number = 0;
16738 finish_menu_bars:
16740 /* When we reach a frame's selected window, redo the frame's menu bar. */
16741 if (update_mode_line
16742 && EQ (FRAME_SELECTED_WINDOW (f), window))
16744 bool redisplay_menu_p;
16746 if (FRAME_WINDOW_P (f))
16748 #if defined (USE_X_TOOLKIT) || defined (HAVE_NTGUI) \
16749 || defined (HAVE_NS) || defined (USE_GTK)
16750 redisplay_menu_p = FRAME_EXTERNAL_MENU_BAR (f);
16751 #else
16752 redisplay_menu_p = FRAME_MENU_BAR_LINES (f) > 0;
16753 #endif
16755 else
16756 redisplay_menu_p = FRAME_MENU_BAR_LINES (f) > 0;
16758 if (redisplay_menu_p)
16759 display_menu_bar (w);
16761 #ifdef HAVE_WINDOW_SYSTEM
16762 if (FRAME_WINDOW_P (f))
16764 #if defined (USE_GTK) || defined (HAVE_NS)
16765 if (FRAME_EXTERNAL_TOOL_BAR (f))
16766 redisplay_tool_bar (f);
16767 #else
16768 if (WINDOWP (f->tool_bar_window)
16769 && (FRAME_TOOL_BAR_LINES (f) > 0
16770 || !NILP (Vauto_resize_tool_bars))
16771 && redisplay_tool_bar (f))
16772 ignore_mouse_drag_p = true;
16773 #endif
16775 #endif
16778 #ifdef HAVE_WINDOW_SYSTEM
16779 if (FRAME_WINDOW_P (f)
16780 && update_window_fringes (w, (just_this_one_p
16781 || (!used_current_matrix_p && !overlay_arrow_seen)
16782 || w->pseudo_window_p)))
16784 update_begin (f);
16785 block_input ();
16786 if (draw_window_fringes (w, true))
16788 if (WINDOW_RIGHT_DIVIDER_WIDTH (w))
16789 x_draw_right_divider (w);
16790 else
16791 x_draw_vertical_border (w);
16793 unblock_input ();
16794 update_end (f);
16797 if (WINDOW_BOTTOM_DIVIDER_WIDTH (w))
16798 x_draw_bottom_divider (w);
16799 #endif /* HAVE_WINDOW_SYSTEM */
16801 /* We go to this label, with fonts_changed set, if it is
16802 necessary to try again using larger glyph matrices.
16803 We have to redeem the scroll bar even in this case,
16804 because the loop in redisplay_internal expects that. */
16805 need_larger_matrices:
16807 finish_scroll_bars:
16809 if (WINDOW_HAS_VERTICAL_SCROLL_BAR (w) || WINDOW_HAS_HORIZONTAL_SCROLL_BAR (w))
16811 if (WINDOW_HAS_VERTICAL_SCROLL_BAR (w))
16812 /* Set the thumb's position and size. */
16813 set_vertical_scroll_bar (w);
16815 if (WINDOW_HAS_HORIZONTAL_SCROLL_BAR (w))
16816 /* Set the thumb's position and size. */
16817 set_horizontal_scroll_bar (w);
16819 /* Note that we actually used the scroll bar attached to this
16820 window, so it shouldn't be deleted at the end of redisplay. */
16821 if (FRAME_TERMINAL (f)->redeem_scroll_bar_hook)
16822 (*FRAME_TERMINAL (f)->redeem_scroll_bar_hook) (w);
16825 /* Restore current_buffer and value of point in it. The window
16826 update may have changed the buffer, so first make sure `opoint'
16827 is still valid (Bug#6177). */
16828 if (CHARPOS (opoint) < BEGV)
16829 TEMP_SET_PT_BOTH (BEGV, BEGV_BYTE);
16830 else if (CHARPOS (opoint) > ZV)
16831 TEMP_SET_PT_BOTH (Z, Z_BYTE);
16832 else
16833 TEMP_SET_PT_BOTH (CHARPOS (opoint), BYTEPOS (opoint));
16835 set_buffer_internal_1 (old);
16836 /* Avoid an abort in TEMP_SET_PT_BOTH if the buffer has become
16837 shorter. This can be caused by log truncation in *Messages*. */
16838 if (CHARPOS (lpoint) <= ZV)
16839 TEMP_SET_PT_BOTH (CHARPOS (lpoint), BYTEPOS (lpoint));
16841 unbind_to (count, Qnil);
16845 /* Build the complete desired matrix of WINDOW with a window start
16846 buffer position POS.
16848 Value is 1 if successful. It is zero if fonts were loaded during
16849 redisplay which makes re-adjusting glyph matrices necessary, and -1
16850 if point would appear in the scroll margins.
16851 (We check the former only if TRY_WINDOW_IGNORE_FONTS_CHANGE is
16852 unset in FLAGS, and the latter only if TRY_WINDOW_CHECK_MARGINS is
16853 set in FLAGS.) */
16856 try_window (Lisp_Object window, struct text_pos pos, int flags)
16858 struct window *w = XWINDOW (window);
16859 struct it it;
16860 struct glyph_row *last_text_row = NULL;
16861 struct frame *f = XFRAME (w->frame);
16862 int frame_line_height = default_line_pixel_height (w);
16864 /* Make POS the new window start. */
16865 set_marker_both (w->start, Qnil, CHARPOS (pos), BYTEPOS (pos));
16867 /* Mark cursor position as unknown. No overlay arrow seen. */
16868 w->cursor.vpos = -1;
16869 overlay_arrow_seen = false;
16871 /* Initialize iterator and info to start at POS. */
16872 start_display (&it, w, pos);
16873 it.glyph_row->reversed_p = false;
16875 /* Display all lines of W. */
16876 while (it.current_y < it.last_visible_y)
16878 if (display_line (&it))
16879 last_text_row = it.glyph_row - 1;
16880 if (f->fonts_changed && !(flags & TRY_WINDOW_IGNORE_FONTS_CHANGE))
16881 return 0;
16884 /* Don't let the cursor end in the scroll margins. */
16885 if ((flags & TRY_WINDOW_CHECK_MARGINS)
16886 && !MINI_WINDOW_P (w))
16888 int this_scroll_margin;
16889 int window_total_lines
16890 = WINDOW_TOTAL_LINES (w) * FRAME_LINE_HEIGHT (f) / frame_line_height;
16892 if (scroll_margin > 0)
16894 this_scroll_margin = min (scroll_margin, window_total_lines / 4);
16895 this_scroll_margin *= frame_line_height;
16897 else
16898 this_scroll_margin = 0;
16900 if ((w->cursor.y >= 0 /* not vscrolled */
16901 && w->cursor.y < this_scroll_margin
16902 && CHARPOS (pos) > BEGV
16903 && IT_CHARPOS (it) < ZV)
16904 /* rms: considering make_cursor_line_fully_visible_p here
16905 seems to give wrong results. We don't want to recenter
16906 when the last line is partly visible, we want to allow
16907 that case to be handled in the usual way. */
16908 || w->cursor.y > it.last_visible_y - this_scroll_margin - 1)
16910 w->cursor.vpos = -1;
16911 clear_glyph_matrix (w->desired_matrix);
16912 return -1;
16916 /* If bottom moved off end of frame, change mode line percentage. */
16917 if (w->window_end_pos <= 0 && Z != IT_CHARPOS (it))
16918 w->update_mode_line = true;
16920 /* Set window_end_pos to the offset of the last character displayed
16921 on the window from the end of current_buffer. Set
16922 window_end_vpos to its row number. */
16923 if (last_text_row)
16925 eassert (MATRIX_ROW_DISPLAYS_TEXT_P (last_text_row));
16926 adjust_window_ends (w, last_text_row, false);
16927 eassert
16928 (MATRIX_ROW_DISPLAYS_TEXT_P (MATRIX_ROW (w->desired_matrix,
16929 w->window_end_vpos)));
16931 else
16933 w->window_end_bytepos = Z_BYTE - ZV_BYTE;
16934 w->window_end_pos = Z - ZV;
16935 w->window_end_vpos = 0;
16938 /* But that is not valid info until redisplay finishes. */
16939 w->window_end_valid = false;
16940 return 1;
16945 /************************************************************************
16946 Window redisplay reusing current matrix when buffer has not changed
16947 ************************************************************************/
16949 /* Try redisplay of window W showing an unchanged buffer with a
16950 different window start than the last time it was displayed by
16951 reusing its current matrix. Value is true if successful.
16952 W->start is the new window start. */
16954 static bool
16955 try_window_reusing_current_matrix (struct window *w)
16957 struct frame *f = XFRAME (w->frame);
16958 struct glyph_row *bottom_row;
16959 struct it it;
16960 struct run run;
16961 struct text_pos start, new_start;
16962 int nrows_scrolled, i;
16963 struct glyph_row *last_text_row;
16964 struct glyph_row *last_reused_text_row;
16965 struct glyph_row *start_row;
16966 int start_vpos, min_y, max_y;
16968 #ifdef GLYPH_DEBUG
16969 if (inhibit_try_window_reusing)
16970 return false;
16971 #endif
16973 if (/* This function doesn't handle terminal frames. */
16974 !FRAME_WINDOW_P (f)
16975 /* Don't try to reuse the display if windows have been split
16976 or such. */
16977 || windows_or_buffers_changed
16978 || f->cursor_type_changed)
16979 return false;
16981 /* Can't do this if showing trailing whitespace. */
16982 if (!NILP (Vshow_trailing_whitespace))
16983 return false;
16985 /* If top-line visibility has changed, give up. */
16986 if (WINDOW_WANTS_HEADER_LINE_P (w)
16987 != MATRIX_HEADER_LINE_ROW (w->current_matrix)->mode_line_p)
16988 return false;
16990 /* Give up if old or new display is scrolled vertically. We could
16991 make this function handle this, but right now it doesn't. */
16992 start_row = MATRIX_FIRST_TEXT_ROW (w->current_matrix);
16993 if (w->vscroll || MATRIX_ROW_PARTIALLY_VISIBLE_P (w, start_row))
16994 return false;
16996 /* The variable new_start now holds the new window start. The old
16997 start `start' can be determined from the current matrix. */
16998 SET_TEXT_POS_FROM_MARKER (new_start, w->start);
16999 start = start_row->minpos;
17000 start_vpos = MATRIX_ROW_VPOS (start_row, w->current_matrix);
17002 /* Clear the desired matrix for the display below. */
17003 clear_glyph_matrix (w->desired_matrix);
17005 if (CHARPOS (new_start) <= CHARPOS (start))
17007 /* Don't use this method if the display starts with an ellipsis
17008 displayed for invisible text. It's not easy to handle that case
17009 below, and it's certainly not worth the effort since this is
17010 not a frequent case. */
17011 if (in_ellipses_for_invisible_text_p (&start_row->start, w))
17012 return false;
17014 IF_DEBUG (debug_method_add (w, "twu1"));
17016 /* Display up to a row that can be reused. The variable
17017 last_text_row is set to the last row displayed that displays
17018 text. Note that it.vpos == 0 if or if not there is a
17019 header-line; it's not the same as the MATRIX_ROW_VPOS! */
17020 start_display (&it, w, new_start);
17021 w->cursor.vpos = -1;
17022 last_text_row = last_reused_text_row = NULL;
17024 while (it.current_y < it.last_visible_y && !f->fonts_changed)
17026 /* If we have reached into the characters in the START row,
17027 that means the line boundaries have changed. So we
17028 can't start copying with the row START. Maybe it will
17029 work to start copying with the following row. */
17030 while (IT_CHARPOS (it) > CHARPOS (start))
17032 /* Advance to the next row as the "start". */
17033 start_row++;
17034 start = start_row->minpos;
17035 /* If there are no more rows to try, or just one, give up. */
17036 if (start_row == MATRIX_MODE_LINE_ROW (w->current_matrix) - 1
17037 || w->vscroll || MATRIX_ROW_PARTIALLY_VISIBLE_P (w, start_row)
17038 || CHARPOS (start) == ZV)
17040 clear_glyph_matrix (w->desired_matrix);
17041 return false;
17044 start_vpos = MATRIX_ROW_VPOS (start_row, w->current_matrix);
17046 /* If we have reached alignment, we can copy the rest of the
17047 rows. */
17048 if (IT_CHARPOS (it) == CHARPOS (start)
17049 /* Don't accept "alignment" inside a display vector,
17050 since start_row could have started in the middle of
17051 that same display vector (thus their character
17052 positions match), and we have no way of telling if
17053 that is the case. */
17054 && it.current.dpvec_index < 0)
17055 break;
17057 it.glyph_row->reversed_p = false;
17058 if (display_line (&it))
17059 last_text_row = it.glyph_row - 1;
17063 /* A value of current_y < last_visible_y means that we stopped
17064 at the previous window start, which in turn means that we
17065 have at least one reusable row. */
17066 if (it.current_y < it.last_visible_y)
17068 struct glyph_row *row;
17070 /* IT.vpos always starts from 0; it counts text lines. */
17071 nrows_scrolled = it.vpos - (start_row - MATRIX_FIRST_TEXT_ROW (w->current_matrix));
17073 /* Find PT if not already found in the lines displayed. */
17074 if (w->cursor.vpos < 0)
17076 int dy = it.current_y - start_row->y;
17078 row = MATRIX_FIRST_TEXT_ROW (w->current_matrix);
17079 row = row_containing_pos (w, PT, row, NULL, dy);
17080 if (row)
17081 set_cursor_from_row (w, row, w->current_matrix, 0, 0,
17082 dy, nrows_scrolled);
17083 else
17085 clear_glyph_matrix (w->desired_matrix);
17086 return false;
17090 /* Scroll the display. Do it before the current matrix is
17091 changed. The problem here is that update has not yet
17092 run, i.e. part of the current matrix is not up to date.
17093 scroll_run_hook will clear the cursor, and use the
17094 current matrix to get the height of the row the cursor is
17095 in. */
17096 run.current_y = start_row->y;
17097 run.desired_y = it.current_y;
17098 run.height = it.last_visible_y - it.current_y;
17100 if (run.height > 0 && run.current_y != run.desired_y)
17102 update_begin (f);
17103 FRAME_RIF (f)->update_window_begin_hook (w);
17104 FRAME_RIF (f)->clear_window_mouse_face (w);
17105 FRAME_RIF (f)->scroll_run_hook (w, &run);
17106 FRAME_RIF (f)->update_window_end_hook (w, false, false);
17107 update_end (f);
17110 /* Shift current matrix down by nrows_scrolled lines. */
17111 bottom_row = MATRIX_BOTTOM_TEXT_ROW (w->current_matrix, w);
17112 rotate_matrix (w->current_matrix,
17113 start_vpos,
17114 MATRIX_ROW_VPOS (bottom_row, w->current_matrix),
17115 nrows_scrolled);
17117 /* Disable lines that must be updated. */
17118 for (i = 0; i < nrows_scrolled; ++i)
17119 (start_row + i)->enabled_p = false;
17121 /* Re-compute Y positions. */
17122 min_y = WINDOW_HEADER_LINE_HEIGHT (w);
17123 max_y = it.last_visible_y;
17124 for (row = start_row + nrows_scrolled;
17125 row < bottom_row;
17126 ++row)
17128 row->y = it.current_y;
17129 row->visible_height = row->height;
17131 if (row->y < min_y)
17132 row->visible_height -= min_y - row->y;
17133 if (row->y + row->height > max_y)
17134 row->visible_height -= row->y + row->height - max_y;
17135 if (row->fringe_bitmap_periodic_p)
17136 row->redraw_fringe_bitmaps_p = true;
17138 it.current_y += row->height;
17140 if (MATRIX_ROW_DISPLAYS_TEXT_P (row))
17141 last_reused_text_row = row;
17142 if (MATRIX_ROW_BOTTOM_Y (row) >= it.last_visible_y)
17143 break;
17146 /* Disable lines in the current matrix which are now
17147 below the window. */
17148 for (++row; row < bottom_row; ++row)
17149 row->enabled_p = row->mode_line_p = false;
17152 /* Update window_end_pos etc.; last_reused_text_row is the last
17153 reused row from the current matrix containing text, if any.
17154 The value of last_text_row is the last displayed line
17155 containing text. */
17156 if (last_reused_text_row)
17157 adjust_window_ends (w, last_reused_text_row, true);
17158 else if (last_text_row)
17159 adjust_window_ends (w, last_text_row, false);
17160 else
17162 /* This window must be completely empty. */
17163 w->window_end_bytepos = Z_BYTE - ZV_BYTE;
17164 w->window_end_pos = Z - ZV;
17165 w->window_end_vpos = 0;
17167 w->window_end_valid = false;
17169 /* Update hint: don't try scrolling again in update_window. */
17170 w->desired_matrix->no_scrolling_p = true;
17172 #ifdef GLYPH_DEBUG
17173 debug_method_add (w, "try_window_reusing_current_matrix 1");
17174 #endif
17175 return true;
17177 else if (CHARPOS (new_start) > CHARPOS (start))
17179 struct glyph_row *pt_row, *row;
17180 struct glyph_row *first_reusable_row;
17181 struct glyph_row *first_row_to_display;
17182 int dy;
17183 int yb = window_text_bottom_y (w);
17185 /* Find the row starting at new_start, if there is one. Don't
17186 reuse a partially visible line at the end. */
17187 first_reusable_row = start_row;
17188 while (first_reusable_row->enabled_p
17189 && MATRIX_ROW_BOTTOM_Y (first_reusable_row) < yb
17190 && (MATRIX_ROW_START_CHARPOS (first_reusable_row)
17191 < CHARPOS (new_start)))
17192 ++first_reusable_row;
17194 /* Give up if there is no row to reuse. */
17195 if (MATRIX_ROW_BOTTOM_Y (first_reusable_row) >= yb
17196 || !first_reusable_row->enabled_p
17197 || (MATRIX_ROW_START_CHARPOS (first_reusable_row)
17198 != CHARPOS (new_start)))
17199 return false;
17201 /* We can reuse fully visible rows beginning with
17202 first_reusable_row to the end of the window. Set
17203 first_row_to_display to the first row that cannot be reused.
17204 Set pt_row to the row containing point, if there is any. */
17205 pt_row = NULL;
17206 for (first_row_to_display = first_reusable_row;
17207 MATRIX_ROW_BOTTOM_Y (first_row_to_display) < yb;
17208 ++first_row_to_display)
17210 if (PT >= MATRIX_ROW_START_CHARPOS (first_row_to_display)
17211 && (PT < MATRIX_ROW_END_CHARPOS (first_row_to_display)
17212 || (PT == MATRIX_ROW_END_CHARPOS (first_row_to_display)
17213 && first_row_to_display->ends_at_zv_p
17214 && pt_row == NULL)))
17215 pt_row = first_row_to_display;
17218 /* Start displaying at the start of first_row_to_display. */
17219 eassert (first_row_to_display->y < yb);
17220 init_to_row_start (&it, w, first_row_to_display);
17222 nrows_scrolled = (MATRIX_ROW_VPOS (first_reusable_row, w->current_matrix)
17223 - start_vpos);
17224 it.vpos = (MATRIX_ROW_VPOS (first_row_to_display, w->current_matrix)
17225 - nrows_scrolled);
17226 it.current_y = (first_row_to_display->y - first_reusable_row->y
17227 + WINDOW_HEADER_LINE_HEIGHT (w));
17229 /* Display lines beginning with first_row_to_display in the
17230 desired matrix. Set last_text_row to the last row displayed
17231 that displays text. */
17232 it.glyph_row = MATRIX_ROW (w->desired_matrix, it.vpos);
17233 if (pt_row == NULL)
17234 w->cursor.vpos = -1;
17235 last_text_row = NULL;
17236 while (it.current_y < it.last_visible_y && !f->fonts_changed)
17237 if (display_line (&it))
17238 last_text_row = it.glyph_row - 1;
17240 /* If point is in a reused row, adjust y and vpos of the cursor
17241 position. */
17242 if (pt_row)
17244 w->cursor.vpos -= nrows_scrolled;
17245 w->cursor.y -= first_reusable_row->y - start_row->y;
17248 /* Give up if point isn't in a row displayed or reused. (This
17249 also handles the case where w->cursor.vpos < nrows_scrolled
17250 after the calls to display_line, which can happen with scroll
17251 margins. See bug#1295.) */
17252 if (w->cursor.vpos < 0)
17254 clear_glyph_matrix (w->desired_matrix);
17255 return false;
17258 /* Scroll the display. */
17259 run.current_y = first_reusable_row->y;
17260 run.desired_y = WINDOW_HEADER_LINE_HEIGHT (w);
17261 run.height = it.last_visible_y - run.current_y;
17262 dy = run.current_y - run.desired_y;
17264 if (run.height)
17266 update_begin (f);
17267 FRAME_RIF (f)->update_window_begin_hook (w);
17268 FRAME_RIF (f)->clear_window_mouse_face (w);
17269 FRAME_RIF (f)->scroll_run_hook (w, &run);
17270 FRAME_RIF (f)->update_window_end_hook (w, false, false);
17271 update_end (f);
17274 /* Adjust Y positions of reused rows. */
17275 bottom_row = MATRIX_BOTTOM_TEXT_ROW (w->current_matrix, w);
17276 min_y = WINDOW_HEADER_LINE_HEIGHT (w);
17277 max_y = it.last_visible_y;
17278 for (row = first_reusable_row; row < first_row_to_display; ++row)
17280 row->y -= dy;
17281 row->visible_height = row->height;
17282 if (row->y < min_y)
17283 row->visible_height -= min_y - row->y;
17284 if (row->y + row->height > max_y)
17285 row->visible_height -= row->y + row->height - max_y;
17286 if (row->fringe_bitmap_periodic_p)
17287 row->redraw_fringe_bitmaps_p = true;
17290 /* Scroll the current matrix. */
17291 eassert (nrows_scrolled > 0);
17292 rotate_matrix (w->current_matrix,
17293 start_vpos,
17294 MATRIX_ROW_VPOS (bottom_row, w->current_matrix),
17295 -nrows_scrolled);
17297 /* Disable rows not reused. */
17298 for (row -= nrows_scrolled; row < bottom_row; ++row)
17299 row->enabled_p = false;
17301 /* Point may have moved to a different line, so we cannot assume that
17302 the previous cursor position is valid; locate the correct row. */
17303 if (pt_row)
17305 for (row = MATRIX_ROW (w->current_matrix, w->cursor.vpos);
17306 row < bottom_row
17307 && PT >= MATRIX_ROW_END_CHARPOS (row)
17308 && !row->ends_at_zv_p;
17309 row++)
17311 w->cursor.vpos++;
17312 w->cursor.y = row->y;
17314 if (row < bottom_row)
17316 /* Can't simply scan the row for point with
17317 bidi-reordered glyph rows. Let set_cursor_from_row
17318 figure out where to put the cursor, and if it fails,
17319 give up. */
17320 if (!NILP (BVAR (XBUFFER (w->contents), bidi_display_reordering)))
17322 if (!set_cursor_from_row (w, row, w->current_matrix,
17323 0, 0, 0, 0))
17325 clear_glyph_matrix (w->desired_matrix);
17326 return false;
17329 else
17331 struct glyph *glyph = row->glyphs[TEXT_AREA] + w->cursor.hpos;
17332 struct glyph *end = row->glyphs[TEXT_AREA] + row->used[TEXT_AREA];
17334 for (; glyph < end
17335 && (!BUFFERP (glyph->object)
17336 || glyph->charpos < PT);
17337 glyph++)
17339 w->cursor.hpos++;
17340 w->cursor.x += glyph->pixel_width;
17346 /* Adjust window end. A null value of last_text_row means that
17347 the window end is in reused rows which in turn means that
17348 only its vpos can have changed. */
17349 if (last_text_row)
17350 adjust_window_ends (w, last_text_row, false);
17351 else
17352 w->window_end_vpos -= nrows_scrolled;
17354 w->window_end_valid = false;
17355 w->desired_matrix->no_scrolling_p = true;
17357 #ifdef GLYPH_DEBUG
17358 debug_method_add (w, "try_window_reusing_current_matrix 2");
17359 #endif
17360 return true;
17363 return false;
17368 /************************************************************************
17369 Window redisplay reusing current matrix when buffer has changed
17370 ************************************************************************/
17372 static struct glyph_row *find_last_unchanged_at_beg_row (struct window *);
17373 static struct glyph_row *find_first_unchanged_at_end_row (struct window *,
17374 ptrdiff_t *, ptrdiff_t *);
17375 static struct glyph_row *
17376 find_last_row_displaying_text (struct glyph_matrix *, struct it *,
17377 struct glyph_row *);
17380 /* Return the last row in MATRIX displaying text. If row START is
17381 non-null, start searching with that row. IT gives the dimensions
17382 of the display. Value is null if matrix is empty; otherwise it is
17383 a pointer to the row found. */
17385 static struct glyph_row *
17386 find_last_row_displaying_text (struct glyph_matrix *matrix, struct it *it,
17387 struct glyph_row *start)
17389 struct glyph_row *row, *row_found;
17391 /* Set row_found to the last row in IT->w's current matrix
17392 displaying text. The loop looks funny but think of partially
17393 visible lines. */
17394 row_found = NULL;
17395 row = start ? start : MATRIX_FIRST_TEXT_ROW (matrix);
17396 while (MATRIX_ROW_DISPLAYS_TEXT_P (row))
17398 eassert (row->enabled_p);
17399 row_found = row;
17400 if (MATRIX_ROW_BOTTOM_Y (row) >= it->last_visible_y)
17401 break;
17402 ++row;
17405 return row_found;
17409 /* Return the last row in the current matrix of W that is not affected
17410 by changes at the start of current_buffer that occurred since W's
17411 current matrix was built. Value is null if no such row exists.
17413 BEG_UNCHANGED us the number of characters unchanged at the start of
17414 current_buffer. BEG + BEG_UNCHANGED is the buffer position of the
17415 first changed character in current_buffer. Characters at positions <
17416 BEG + BEG_UNCHANGED are at the same buffer positions as they were
17417 when the current matrix was built. */
17419 static struct glyph_row *
17420 find_last_unchanged_at_beg_row (struct window *w)
17422 ptrdiff_t first_changed_pos = BEG + BEG_UNCHANGED;
17423 struct glyph_row *row;
17424 struct glyph_row *row_found = NULL;
17425 int yb = window_text_bottom_y (w);
17427 /* Find the last row displaying unchanged text. */
17428 for (row = MATRIX_FIRST_TEXT_ROW (w->current_matrix);
17429 MATRIX_ROW_DISPLAYS_TEXT_P (row)
17430 && MATRIX_ROW_START_CHARPOS (row) < first_changed_pos;
17431 ++row)
17433 if (/* If row ends before first_changed_pos, it is unchanged,
17434 except in some case. */
17435 MATRIX_ROW_END_CHARPOS (row) <= first_changed_pos
17436 /* When row ends in ZV and we write at ZV it is not
17437 unchanged. */
17438 && !row->ends_at_zv_p
17439 /* When first_changed_pos is the end of a continued line,
17440 row is not unchanged because it may be no longer
17441 continued. */
17442 && !(MATRIX_ROW_END_CHARPOS (row) == first_changed_pos
17443 && (row->continued_p
17444 || row->exact_window_width_line_p))
17445 /* If ROW->end is beyond ZV, then ROW->end is outdated and
17446 needs to be recomputed, so don't consider this row as
17447 unchanged. This happens when the last line was
17448 bidi-reordered and was killed immediately before this
17449 redisplay cycle. In that case, ROW->end stores the
17450 buffer position of the first visual-order character of
17451 the killed text, which is now beyond ZV. */
17452 && CHARPOS (row->end.pos) <= ZV)
17453 row_found = row;
17455 /* Stop if last visible row. */
17456 if (MATRIX_ROW_BOTTOM_Y (row) >= yb)
17457 break;
17460 return row_found;
17464 /* Find the first glyph row in the current matrix of W that is not
17465 affected by changes at the end of current_buffer since the
17466 time W's current matrix was built.
17468 Return in *DELTA the number of chars by which buffer positions in
17469 unchanged text at the end of current_buffer must be adjusted.
17471 Return in *DELTA_BYTES the corresponding number of bytes.
17473 Value is null if no such row exists, i.e. all rows are affected by
17474 changes. */
17476 static struct glyph_row *
17477 find_first_unchanged_at_end_row (struct window *w,
17478 ptrdiff_t *delta, ptrdiff_t *delta_bytes)
17480 struct glyph_row *row;
17481 struct glyph_row *row_found = NULL;
17483 *delta = *delta_bytes = 0;
17485 /* Display must not have been paused, otherwise the current matrix
17486 is not up to date. */
17487 eassert (w->window_end_valid);
17489 /* A value of window_end_pos >= END_UNCHANGED means that the window
17490 end is in the range of changed text. If so, there is no
17491 unchanged row at the end of W's current matrix. */
17492 if (w->window_end_pos >= END_UNCHANGED)
17493 return NULL;
17495 /* Set row to the last row in W's current matrix displaying text. */
17496 row = MATRIX_ROW (w->current_matrix, w->window_end_vpos);
17498 /* If matrix is entirely empty, no unchanged row exists. */
17499 if (MATRIX_ROW_DISPLAYS_TEXT_P (row))
17501 /* The value of row is the last glyph row in the matrix having a
17502 meaningful buffer position in it. The end position of row
17503 corresponds to window_end_pos. This allows us to translate
17504 buffer positions in the current matrix to current buffer
17505 positions for characters not in changed text. */
17506 ptrdiff_t Z_old =
17507 MATRIX_ROW_END_CHARPOS (row) + w->window_end_pos;
17508 ptrdiff_t Z_BYTE_old =
17509 MATRIX_ROW_END_BYTEPOS (row) + w->window_end_bytepos;
17510 ptrdiff_t last_unchanged_pos, last_unchanged_pos_old;
17511 struct glyph_row *first_text_row
17512 = MATRIX_FIRST_TEXT_ROW (w->current_matrix);
17514 *delta = Z - Z_old;
17515 *delta_bytes = Z_BYTE - Z_BYTE_old;
17517 /* Set last_unchanged_pos to the buffer position of the last
17518 character in the buffer that has not been changed. Z is the
17519 index + 1 of the last character in current_buffer, i.e. by
17520 subtracting END_UNCHANGED we get the index of the last
17521 unchanged character, and we have to add BEG to get its buffer
17522 position. */
17523 last_unchanged_pos = Z - END_UNCHANGED + BEG;
17524 last_unchanged_pos_old = last_unchanged_pos - *delta;
17526 /* Search backward from ROW for a row displaying a line that
17527 starts at a minimum position >= last_unchanged_pos_old. */
17528 for (; row > first_text_row; --row)
17530 /* This used to abort, but it can happen.
17531 It is ok to just stop the search instead here. KFS. */
17532 if (!row->enabled_p || !MATRIX_ROW_DISPLAYS_TEXT_P (row))
17533 break;
17535 if (MATRIX_ROW_START_CHARPOS (row) >= last_unchanged_pos_old)
17536 row_found = row;
17540 eassert (!row_found || MATRIX_ROW_DISPLAYS_TEXT_P (row_found));
17542 return row_found;
17546 /* Make sure that glyph rows in the current matrix of window W
17547 reference the same glyph memory as corresponding rows in the
17548 frame's frame matrix. This function is called after scrolling W's
17549 current matrix on a terminal frame in try_window_id and
17550 try_window_reusing_current_matrix. */
17552 static void
17553 sync_frame_with_window_matrix_rows (struct window *w)
17555 struct frame *f = XFRAME (w->frame);
17556 struct glyph_row *window_row, *window_row_end, *frame_row;
17558 /* Preconditions: W must be a leaf window and full-width. Its frame
17559 must have a frame matrix. */
17560 eassert (BUFFERP (w->contents));
17561 eassert (WINDOW_FULL_WIDTH_P (w));
17562 eassert (!FRAME_WINDOW_P (f));
17564 /* If W is a full-width window, glyph pointers in W's current matrix
17565 have, by definition, to be the same as glyph pointers in the
17566 corresponding frame matrix. Note that frame matrices have no
17567 marginal areas (see build_frame_matrix). */
17568 window_row = w->current_matrix->rows;
17569 window_row_end = window_row + w->current_matrix->nrows;
17570 frame_row = f->current_matrix->rows + WINDOW_TOP_EDGE_LINE (w);
17571 while (window_row < window_row_end)
17573 struct glyph *start = window_row->glyphs[LEFT_MARGIN_AREA];
17574 struct glyph *end = window_row->glyphs[LAST_AREA];
17576 frame_row->glyphs[LEFT_MARGIN_AREA] = start;
17577 frame_row->glyphs[TEXT_AREA] = start;
17578 frame_row->glyphs[RIGHT_MARGIN_AREA] = end;
17579 frame_row->glyphs[LAST_AREA] = end;
17581 /* Disable frame rows whose corresponding window rows have
17582 been disabled in try_window_id. */
17583 if (!window_row->enabled_p)
17584 frame_row->enabled_p = false;
17586 ++window_row, ++frame_row;
17591 /* Find the glyph row in window W containing CHARPOS. Consider all
17592 rows between START and END (not inclusive). END null means search
17593 all rows to the end of the display area of W. Value is the row
17594 containing CHARPOS or null. */
17596 struct glyph_row *
17597 row_containing_pos (struct window *w, ptrdiff_t charpos,
17598 struct glyph_row *start, struct glyph_row *end, int dy)
17600 struct glyph_row *row = start;
17601 struct glyph_row *best_row = NULL;
17602 ptrdiff_t mindif = BUF_ZV (XBUFFER (w->contents)) + 1;
17603 int last_y;
17605 /* If we happen to start on a header-line, skip that. */
17606 if (row->mode_line_p)
17607 ++row;
17609 if ((end && row >= end) || !row->enabled_p)
17610 return NULL;
17612 last_y = window_text_bottom_y (w) - dy;
17614 while (true)
17616 /* Give up if we have gone too far. */
17617 if (end && row >= end)
17618 return NULL;
17619 /* This formerly returned if they were equal.
17620 I think that both quantities are of a "last plus one" type;
17621 if so, when they are equal, the row is within the screen. -- rms. */
17622 if (MATRIX_ROW_BOTTOM_Y (row) > last_y)
17623 return NULL;
17625 /* If it is in this row, return this row. */
17626 if (! (MATRIX_ROW_END_CHARPOS (row) < charpos
17627 || (MATRIX_ROW_END_CHARPOS (row) == charpos
17628 /* The end position of a row equals the start
17629 position of the next row. If CHARPOS is there, we
17630 would rather consider it displayed in the next
17631 line, except when this line ends in ZV. */
17632 && !row_for_charpos_p (row, charpos)))
17633 && charpos >= MATRIX_ROW_START_CHARPOS (row))
17635 struct glyph *g;
17637 if (NILP (BVAR (XBUFFER (w->contents), bidi_display_reordering))
17638 || (!best_row && !row->continued_p))
17639 return row;
17640 /* In bidi-reordered rows, there could be several rows whose
17641 edges surround CHARPOS, all of these rows belonging to
17642 the same continued line. We need to find the row which
17643 fits CHARPOS the best. */
17644 for (g = row->glyphs[TEXT_AREA];
17645 g < row->glyphs[TEXT_AREA] + row->used[TEXT_AREA];
17646 g++)
17648 if (!STRINGP (g->object))
17650 if (g->charpos > 0 && eabs (g->charpos - charpos) < mindif)
17652 mindif = eabs (g->charpos - charpos);
17653 best_row = row;
17654 /* Exact match always wins. */
17655 if (mindif == 0)
17656 return best_row;
17661 else if (best_row && !row->continued_p)
17662 return best_row;
17663 ++row;
17668 /* Try to redisplay window W by reusing its existing display. W's
17669 current matrix must be up to date when this function is called,
17670 i.e., window_end_valid must be true.
17672 Value is
17674 >= 1 if successful, i.e. display has been updated
17675 specifically:
17676 1 means the changes were in front of a newline that precedes
17677 the window start, and the whole current matrix was reused
17678 2 means the changes were after the last position displayed
17679 in the window, and the whole current matrix was reused
17680 3 means portions of the current matrix were reused, while
17681 some of the screen lines were redrawn
17682 -1 if redisplay with same window start is known not to succeed
17683 0 if otherwise unsuccessful
17685 The following steps are performed:
17687 1. Find the last row in the current matrix of W that is not
17688 affected by changes at the start of current_buffer. If no such row
17689 is found, give up.
17691 2. Find the first row in W's current matrix that is not affected by
17692 changes at the end of current_buffer. Maybe there is no such row.
17694 3. Display lines beginning with the row + 1 found in step 1 to the
17695 row found in step 2 or, if step 2 didn't find a row, to the end of
17696 the window.
17698 4. If cursor is not known to appear on the window, give up.
17700 5. If display stopped at the row found in step 2, scroll the
17701 display and current matrix as needed.
17703 6. Maybe display some lines at the end of W, if we must. This can
17704 happen under various circumstances, like a partially visible line
17705 becoming fully visible, or because newly displayed lines are displayed
17706 in smaller font sizes.
17708 7. Update W's window end information. */
17710 static int
17711 try_window_id (struct window *w)
17713 struct frame *f = XFRAME (w->frame);
17714 struct glyph_matrix *current_matrix = w->current_matrix;
17715 struct glyph_matrix *desired_matrix = w->desired_matrix;
17716 struct glyph_row *last_unchanged_at_beg_row;
17717 struct glyph_row *first_unchanged_at_end_row;
17718 struct glyph_row *row;
17719 struct glyph_row *bottom_row;
17720 int bottom_vpos;
17721 struct it it;
17722 ptrdiff_t delta = 0, delta_bytes = 0, stop_pos;
17723 int dvpos, dy;
17724 struct text_pos start_pos;
17725 struct run run;
17726 int first_unchanged_at_end_vpos = 0;
17727 struct glyph_row *last_text_row, *last_text_row_at_end;
17728 struct text_pos start;
17729 ptrdiff_t first_changed_charpos, last_changed_charpos;
17731 #ifdef GLYPH_DEBUG
17732 if (inhibit_try_window_id)
17733 return 0;
17734 #endif
17736 /* This is handy for debugging. */
17737 #if false
17738 #define GIVE_UP(X) \
17739 do { \
17740 fprintf (stderr, "try_window_id give up %d\n", (X)); \
17741 return 0; \
17742 } while (false)
17743 #else
17744 #define GIVE_UP(X) return 0
17745 #endif
17747 SET_TEXT_POS_FROM_MARKER (start, w->start);
17749 /* Don't use this for mini-windows because these can show
17750 messages and mini-buffers, and we don't handle that here. */
17751 if (MINI_WINDOW_P (w))
17752 GIVE_UP (1);
17754 /* This flag is used to prevent redisplay optimizations. */
17755 if (windows_or_buffers_changed || f->cursor_type_changed)
17756 GIVE_UP (2);
17758 /* This function's optimizations cannot be used if overlays have
17759 changed in the buffer displayed by the window, so give up if they
17760 have. */
17761 if (w->last_overlay_modified != OVERLAY_MODIFF)
17762 GIVE_UP (21);
17764 /* Verify that narrowing has not changed.
17765 Also verify that we were not told to prevent redisplay optimizations.
17766 It would be nice to further
17767 reduce the number of cases where this prevents try_window_id. */
17768 if (current_buffer->clip_changed
17769 || current_buffer->prevent_redisplay_optimizations_p)
17770 GIVE_UP (3);
17772 /* Window must either use window-based redisplay or be full width. */
17773 if (!FRAME_WINDOW_P (f)
17774 && (!FRAME_LINE_INS_DEL_OK (f)
17775 || !WINDOW_FULL_WIDTH_P (w)))
17776 GIVE_UP (4);
17778 /* Give up if point is known NOT to appear in W. */
17779 if (PT < CHARPOS (start))
17780 GIVE_UP (5);
17782 /* Another way to prevent redisplay optimizations. */
17783 if (w->last_modified == 0)
17784 GIVE_UP (6);
17786 /* Verify that window is not hscrolled. */
17787 if (w->hscroll != 0)
17788 GIVE_UP (7);
17790 /* Verify that display wasn't paused. */
17791 if (!w->window_end_valid)
17792 GIVE_UP (8);
17794 /* Likewise if highlighting trailing whitespace. */
17795 if (!NILP (Vshow_trailing_whitespace))
17796 GIVE_UP (11);
17798 /* Can't use this if overlay arrow position and/or string have
17799 changed. */
17800 if (overlay_arrows_changed_p ())
17801 GIVE_UP (12);
17803 /* When word-wrap is on, adding a space to the first word of a
17804 wrapped line can change the wrap position, altering the line
17805 above it. It might be worthwhile to handle this more
17806 intelligently, but for now just redisplay from scratch. */
17807 if (!NILP (BVAR (XBUFFER (w->contents), word_wrap)))
17808 GIVE_UP (21);
17810 /* Under bidi reordering, adding or deleting a character in the
17811 beginning of a paragraph, before the first strong directional
17812 character, can change the base direction of the paragraph (unless
17813 the buffer specifies a fixed paragraph direction), which will
17814 require to redisplay the whole paragraph. It might be worthwhile
17815 to find the paragraph limits and widen the range of redisplayed
17816 lines to that, but for now just give up this optimization and
17817 redisplay from scratch. */
17818 if (!NILP (BVAR (XBUFFER (w->contents), bidi_display_reordering))
17819 && NILP (BVAR (XBUFFER (w->contents), bidi_paragraph_direction)))
17820 GIVE_UP (22);
17822 /* Make sure beg_unchanged and end_unchanged are up to date. Do it
17823 only if buffer has really changed. The reason is that the gap is
17824 initially at Z for freshly visited files. The code below would
17825 set end_unchanged to 0 in that case. */
17826 if (MODIFF > SAVE_MODIFF
17827 /* This seems to happen sometimes after saving a buffer. */
17828 || BEG_UNCHANGED + END_UNCHANGED > Z_BYTE)
17830 if (GPT - BEG < BEG_UNCHANGED)
17831 BEG_UNCHANGED = GPT - BEG;
17832 if (Z - GPT < END_UNCHANGED)
17833 END_UNCHANGED = Z - GPT;
17836 /* The position of the first and last character that has been changed. */
17837 first_changed_charpos = BEG + BEG_UNCHANGED;
17838 last_changed_charpos = Z - END_UNCHANGED;
17840 /* If window starts after a line end, and the last change is in
17841 front of that newline, then changes don't affect the display.
17842 This case happens with stealth-fontification. Note that although
17843 the display is unchanged, glyph positions in the matrix have to
17844 be adjusted, of course. */
17845 row = MATRIX_ROW (w->current_matrix, w->window_end_vpos);
17846 if (MATRIX_ROW_DISPLAYS_TEXT_P (row)
17847 && ((last_changed_charpos < CHARPOS (start)
17848 && CHARPOS (start) == BEGV)
17849 || (last_changed_charpos < CHARPOS (start) - 1
17850 && FETCH_BYTE (BYTEPOS (start) - 1) == '\n')))
17852 ptrdiff_t Z_old, Z_delta, Z_BYTE_old, Z_delta_bytes;
17853 struct glyph_row *r0;
17855 /* Compute how many chars/bytes have been added to or removed
17856 from the buffer. */
17857 Z_old = MATRIX_ROW_END_CHARPOS (row) + w->window_end_pos;
17858 Z_BYTE_old = MATRIX_ROW_END_BYTEPOS (row) + w->window_end_bytepos;
17859 Z_delta = Z - Z_old;
17860 Z_delta_bytes = Z_BYTE - Z_BYTE_old;
17862 /* Give up if PT is not in the window. Note that it already has
17863 been checked at the start of try_window_id that PT is not in
17864 front of the window start. */
17865 if (PT >= MATRIX_ROW_END_CHARPOS (row) + Z_delta)
17866 GIVE_UP (13);
17868 /* If window start is unchanged, we can reuse the whole matrix
17869 as is, after adjusting glyph positions. No need to compute
17870 the window end again, since its offset from Z hasn't changed. */
17871 r0 = MATRIX_FIRST_TEXT_ROW (current_matrix);
17872 if (CHARPOS (start) == MATRIX_ROW_START_CHARPOS (r0) + Z_delta
17873 && BYTEPOS (start) == MATRIX_ROW_START_BYTEPOS (r0) + Z_delta_bytes
17874 /* PT must not be in a partially visible line. */
17875 && !(PT >= MATRIX_ROW_START_CHARPOS (row) + Z_delta
17876 && MATRIX_ROW_BOTTOM_Y (row) > window_text_bottom_y (w)))
17878 /* Adjust positions in the glyph matrix. */
17879 if (Z_delta || Z_delta_bytes)
17881 struct glyph_row *r1
17882 = MATRIX_BOTTOM_TEXT_ROW (current_matrix, w);
17883 increment_matrix_positions (w->current_matrix,
17884 MATRIX_ROW_VPOS (r0, current_matrix),
17885 MATRIX_ROW_VPOS (r1, current_matrix),
17886 Z_delta, Z_delta_bytes);
17889 /* Set the cursor. */
17890 row = row_containing_pos (w, PT, r0, NULL, 0);
17891 if (row)
17892 set_cursor_from_row (w, row, current_matrix, 0, 0, 0, 0);
17893 return 1;
17897 /* Handle the case that changes are all below what is displayed in
17898 the window, and that PT is in the window. This shortcut cannot
17899 be taken if ZV is visible in the window, and text has been added
17900 there that is visible in the window. */
17901 if (first_changed_charpos >= MATRIX_ROW_END_CHARPOS (row)
17902 /* ZV is not visible in the window, or there are no
17903 changes at ZV, actually. */
17904 && (current_matrix->zv > MATRIX_ROW_END_CHARPOS (row)
17905 || first_changed_charpos == last_changed_charpos))
17907 struct glyph_row *r0;
17909 /* Give up if PT is not in the window. Note that it already has
17910 been checked at the start of try_window_id that PT is not in
17911 front of the window start. */
17912 if (PT >= MATRIX_ROW_END_CHARPOS (row))
17913 GIVE_UP (14);
17915 /* If window start is unchanged, we can reuse the whole matrix
17916 as is, without changing glyph positions since no text has
17917 been added/removed in front of the window end. */
17918 r0 = MATRIX_FIRST_TEXT_ROW (current_matrix);
17919 if (TEXT_POS_EQUAL_P (start, r0->minpos)
17920 /* PT must not be in a partially visible line. */
17921 && !(PT >= MATRIX_ROW_START_CHARPOS (row)
17922 && MATRIX_ROW_BOTTOM_Y (row) > window_text_bottom_y (w)))
17924 /* We have to compute the window end anew since text
17925 could have been added/removed after it. */
17926 w->window_end_pos = Z - MATRIX_ROW_END_CHARPOS (row);
17927 w->window_end_bytepos = Z_BYTE - MATRIX_ROW_END_BYTEPOS (row);
17929 /* Set the cursor. */
17930 row = row_containing_pos (w, PT, r0, NULL, 0);
17931 if (row)
17932 set_cursor_from_row (w, row, current_matrix, 0, 0, 0, 0);
17933 return 2;
17937 /* Give up if window start is in the changed area.
17939 The condition used to read
17941 (BEG_UNCHANGED + END_UNCHANGED != Z - BEG && ...)
17943 but why that was tested escapes me at the moment. */
17944 if (CHARPOS (start) >= first_changed_charpos
17945 && CHARPOS (start) <= last_changed_charpos)
17946 GIVE_UP (15);
17948 /* Check that window start agrees with the start of the first glyph
17949 row in its current matrix. Check this after we know the window
17950 start is not in changed text, otherwise positions would not be
17951 comparable. */
17952 row = MATRIX_FIRST_TEXT_ROW (current_matrix);
17953 if (!TEXT_POS_EQUAL_P (start, row->minpos))
17954 GIVE_UP (16);
17956 /* Give up if the window ends in strings. Overlay strings
17957 at the end are difficult to handle, so don't try. */
17958 row = MATRIX_ROW (current_matrix, w->window_end_vpos);
17959 if (MATRIX_ROW_START_CHARPOS (row) == MATRIX_ROW_END_CHARPOS (row))
17960 GIVE_UP (20);
17962 /* Compute the position at which we have to start displaying new
17963 lines. Some of the lines at the top of the window might be
17964 reusable because they are not displaying changed text. Find the
17965 last row in W's current matrix not affected by changes at the
17966 start of current_buffer. Value is null if changes start in the
17967 first line of window. */
17968 last_unchanged_at_beg_row = find_last_unchanged_at_beg_row (w);
17969 if (last_unchanged_at_beg_row)
17971 /* Avoid starting to display in the middle of a character, a TAB
17972 for instance. This is easier than to set up the iterator
17973 exactly, and it's not a frequent case, so the additional
17974 effort wouldn't really pay off. */
17975 while ((MATRIX_ROW_ENDS_IN_MIDDLE_OF_CHAR_P (last_unchanged_at_beg_row)
17976 || last_unchanged_at_beg_row->ends_in_newline_from_string_p)
17977 && last_unchanged_at_beg_row > w->current_matrix->rows)
17978 --last_unchanged_at_beg_row;
17980 if (MATRIX_ROW_ENDS_IN_MIDDLE_OF_CHAR_P (last_unchanged_at_beg_row))
17981 GIVE_UP (17);
17983 if (! init_to_row_end (&it, w, last_unchanged_at_beg_row))
17984 GIVE_UP (18);
17985 start_pos = it.current.pos;
17987 /* Start displaying new lines in the desired matrix at the same
17988 vpos we would use in the current matrix, i.e. below
17989 last_unchanged_at_beg_row. */
17990 it.vpos = 1 + MATRIX_ROW_VPOS (last_unchanged_at_beg_row,
17991 current_matrix);
17992 it.glyph_row = MATRIX_ROW (desired_matrix, it.vpos);
17993 it.current_y = MATRIX_ROW_BOTTOM_Y (last_unchanged_at_beg_row);
17995 eassert (it.hpos == 0 && it.current_x == 0);
17997 else
17999 /* There are no reusable lines at the start of the window.
18000 Start displaying in the first text line. */
18001 start_display (&it, w, start);
18002 it.vpos = it.first_vpos;
18003 start_pos = it.current.pos;
18006 /* Find the first row that is not affected by changes at the end of
18007 the buffer. Value will be null if there is no unchanged row, in
18008 which case we must redisplay to the end of the window. delta
18009 will be set to the value by which buffer positions beginning with
18010 first_unchanged_at_end_row have to be adjusted due to text
18011 changes. */
18012 first_unchanged_at_end_row
18013 = find_first_unchanged_at_end_row (w, &delta, &delta_bytes);
18014 IF_DEBUG (debug_delta = delta);
18015 IF_DEBUG (debug_delta_bytes = delta_bytes);
18017 /* Set stop_pos to the buffer position up to which we will have to
18018 display new lines. If first_unchanged_at_end_row != NULL, this
18019 is the buffer position of the start of the line displayed in that
18020 row. For first_unchanged_at_end_row == NULL, use 0 to indicate
18021 that we don't stop at a buffer position. */
18022 stop_pos = 0;
18023 if (first_unchanged_at_end_row)
18025 eassert (last_unchanged_at_beg_row == NULL
18026 || first_unchanged_at_end_row >= last_unchanged_at_beg_row);
18028 /* If this is a continuation line, move forward to the next one
18029 that isn't. Changes in lines above affect this line.
18030 Caution: this may move first_unchanged_at_end_row to a row
18031 not displaying text. */
18032 while (MATRIX_ROW_CONTINUATION_LINE_P (first_unchanged_at_end_row)
18033 && MATRIX_ROW_DISPLAYS_TEXT_P (first_unchanged_at_end_row)
18034 && (MATRIX_ROW_BOTTOM_Y (first_unchanged_at_end_row)
18035 < it.last_visible_y))
18036 ++first_unchanged_at_end_row;
18038 if (!MATRIX_ROW_DISPLAYS_TEXT_P (first_unchanged_at_end_row)
18039 || (MATRIX_ROW_BOTTOM_Y (first_unchanged_at_end_row)
18040 >= it.last_visible_y))
18041 first_unchanged_at_end_row = NULL;
18042 else
18044 stop_pos = (MATRIX_ROW_START_CHARPOS (first_unchanged_at_end_row)
18045 + delta);
18046 first_unchanged_at_end_vpos
18047 = MATRIX_ROW_VPOS (first_unchanged_at_end_row, current_matrix);
18048 eassert (stop_pos >= Z - END_UNCHANGED);
18051 else if (last_unchanged_at_beg_row == NULL)
18052 GIVE_UP (19);
18055 #ifdef GLYPH_DEBUG
18057 /* Either there is no unchanged row at the end, or the one we have
18058 now displays text. This is a necessary condition for the window
18059 end pos calculation at the end of this function. */
18060 eassert (first_unchanged_at_end_row == NULL
18061 || MATRIX_ROW_DISPLAYS_TEXT_P (first_unchanged_at_end_row));
18063 debug_last_unchanged_at_beg_vpos
18064 = (last_unchanged_at_beg_row
18065 ? MATRIX_ROW_VPOS (last_unchanged_at_beg_row, current_matrix)
18066 : -1);
18067 debug_first_unchanged_at_end_vpos = first_unchanged_at_end_vpos;
18069 #endif /* GLYPH_DEBUG */
18072 /* Display new lines. Set last_text_row to the last new line
18073 displayed which has text on it, i.e. might end up as being the
18074 line where the window_end_vpos is. */
18075 w->cursor.vpos = -1;
18076 last_text_row = NULL;
18077 overlay_arrow_seen = false;
18078 if (it.current_y < it.last_visible_y
18079 && !f->fonts_changed
18080 && (first_unchanged_at_end_row == NULL
18081 || IT_CHARPOS (it) < stop_pos))
18082 it.glyph_row->reversed_p = false;
18083 while (it.current_y < it.last_visible_y
18084 && !f->fonts_changed
18085 && (first_unchanged_at_end_row == NULL
18086 || IT_CHARPOS (it) < stop_pos))
18088 if (display_line (&it))
18089 last_text_row = it.glyph_row - 1;
18092 if (f->fonts_changed)
18093 return -1;
18095 /* The redisplay iterations in display_line above could have
18096 triggered font-lock, which could have done something that
18097 invalidates IT->w window's end-point information, on which we
18098 rely below. E.g., one package, which will remain unnamed, used
18099 to install a font-lock-fontify-region-function that called
18100 bury-buffer, whose side effect is to switch the buffer displayed
18101 by IT->w, and that predictably resets IT->w's window_end_valid
18102 flag, which we already tested at the entry to this function.
18103 Amply punish such packages/modes by giving up on this
18104 optimization in those cases. */
18105 if (!w->window_end_valid)
18107 clear_glyph_matrix (w->desired_matrix);
18108 return -1;
18111 /* Compute differences in buffer positions, y-positions etc. for
18112 lines reused at the bottom of the window. Compute what we can
18113 scroll. */
18114 if (first_unchanged_at_end_row
18115 /* No lines reused because we displayed everything up to the
18116 bottom of the window. */
18117 && it.current_y < it.last_visible_y)
18119 dvpos = (it.vpos
18120 - MATRIX_ROW_VPOS (first_unchanged_at_end_row,
18121 current_matrix));
18122 dy = it.current_y - first_unchanged_at_end_row->y;
18123 run.current_y = first_unchanged_at_end_row->y;
18124 run.desired_y = run.current_y + dy;
18125 run.height = it.last_visible_y - max (run.current_y, run.desired_y);
18127 else
18129 delta = delta_bytes = dvpos = dy
18130 = run.current_y = run.desired_y = run.height = 0;
18131 first_unchanged_at_end_row = NULL;
18133 IF_DEBUG ((debug_dvpos = dvpos, debug_dy = dy));
18136 /* Find the cursor if not already found. We have to decide whether
18137 PT will appear on this window (it sometimes doesn't, but this is
18138 not a very frequent case.) This decision has to be made before
18139 the current matrix is altered. A value of cursor.vpos < 0 means
18140 that PT is either in one of the lines beginning at
18141 first_unchanged_at_end_row or below the window. Don't care for
18142 lines that might be displayed later at the window end; as
18143 mentioned, this is not a frequent case. */
18144 if (w->cursor.vpos < 0)
18146 /* Cursor in unchanged rows at the top? */
18147 if (PT < CHARPOS (start_pos)
18148 && last_unchanged_at_beg_row)
18150 row = row_containing_pos (w, PT,
18151 MATRIX_FIRST_TEXT_ROW (w->current_matrix),
18152 last_unchanged_at_beg_row + 1, 0);
18153 if (row)
18154 set_cursor_from_row (w, row, w->current_matrix, 0, 0, 0, 0);
18157 /* Start from first_unchanged_at_end_row looking for PT. */
18158 else if (first_unchanged_at_end_row)
18160 row = row_containing_pos (w, PT - delta,
18161 first_unchanged_at_end_row, NULL, 0);
18162 if (row)
18163 set_cursor_from_row (w, row, w->current_matrix, delta,
18164 delta_bytes, dy, dvpos);
18167 /* Give up if cursor was not found. */
18168 if (w->cursor.vpos < 0)
18170 clear_glyph_matrix (w->desired_matrix);
18171 return -1;
18175 /* Don't let the cursor end in the scroll margins. */
18177 int this_scroll_margin, cursor_height;
18178 int frame_line_height = default_line_pixel_height (w);
18179 int window_total_lines
18180 = WINDOW_TOTAL_LINES (w) * FRAME_LINE_HEIGHT (it.f) / frame_line_height;
18182 this_scroll_margin =
18183 max (0, min (scroll_margin, window_total_lines / 4));
18184 this_scroll_margin *= frame_line_height;
18185 cursor_height = MATRIX_ROW (w->desired_matrix, w->cursor.vpos)->height;
18187 if ((w->cursor.y < this_scroll_margin
18188 && CHARPOS (start) > BEGV)
18189 /* Old redisplay didn't take scroll margin into account at the bottom,
18190 but then global-hl-line-mode doesn't scroll. KFS 2004-06-14 */
18191 || (w->cursor.y + (make_cursor_line_fully_visible_p
18192 ? cursor_height + this_scroll_margin
18193 : 1)) > it.last_visible_y)
18195 w->cursor.vpos = -1;
18196 clear_glyph_matrix (w->desired_matrix);
18197 return -1;
18201 /* Scroll the display. Do it before changing the current matrix so
18202 that xterm.c doesn't get confused about where the cursor glyph is
18203 found. */
18204 if (dy && run.height)
18206 update_begin (f);
18208 if (FRAME_WINDOW_P (f))
18210 FRAME_RIF (f)->update_window_begin_hook (w);
18211 FRAME_RIF (f)->clear_window_mouse_face (w);
18212 FRAME_RIF (f)->scroll_run_hook (w, &run);
18213 FRAME_RIF (f)->update_window_end_hook (w, false, false);
18215 else
18217 /* Terminal frame. In this case, dvpos gives the number of
18218 lines to scroll by; dvpos < 0 means scroll up. */
18219 int from_vpos
18220 = MATRIX_ROW_VPOS (first_unchanged_at_end_row, w->current_matrix);
18221 int from = WINDOW_TOP_EDGE_LINE (w) + from_vpos;
18222 int end = (WINDOW_TOP_EDGE_LINE (w)
18223 + WINDOW_WANTS_HEADER_LINE_P (w)
18224 + window_internal_height (w));
18226 #if defined (HAVE_GPM) || defined (MSDOS)
18227 x_clear_window_mouse_face (w);
18228 #endif
18229 /* Perform the operation on the screen. */
18230 if (dvpos > 0)
18232 /* Scroll last_unchanged_at_beg_row to the end of the
18233 window down dvpos lines. */
18234 set_terminal_window (f, end);
18236 /* On dumb terminals delete dvpos lines at the end
18237 before inserting dvpos empty lines. */
18238 if (!FRAME_SCROLL_REGION_OK (f))
18239 ins_del_lines (f, end - dvpos, -dvpos);
18241 /* Insert dvpos empty lines in front of
18242 last_unchanged_at_beg_row. */
18243 ins_del_lines (f, from, dvpos);
18245 else if (dvpos < 0)
18247 /* Scroll up last_unchanged_at_beg_vpos to the end of
18248 the window to last_unchanged_at_beg_vpos - |dvpos|. */
18249 set_terminal_window (f, end);
18251 /* Delete dvpos lines in front of
18252 last_unchanged_at_beg_vpos. ins_del_lines will set
18253 the cursor to the given vpos and emit |dvpos| delete
18254 line sequences. */
18255 ins_del_lines (f, from + dvpos, dvpos);
18257 /* On a dumb terminal insert dvpos empty lines at the
18258 end. */
18259 if (!FRAME_SCROLL_REGION_OK (f))
18260 ins_del_lines (f, end + dvpos, -dvpos);
18263 set_terminal_window (f, 0);
18266 update_end (f);
18269 /* Shift reused rows of the current matrix to the right position.
18270 BOTTOM_ROW is the last + 1 row in the current matrix reserved for
18271 text. */
18272 bottom_row = MATRIX_BOTTOM_TEXT_ROW (current_matrix, w);
18273 bottom_vpos = MATRIX_ROW_VPOS (bottom_row, current_matrix);
18274 if (dvpos < 0)
18276 rotate_matrix (current_matrix, first_unchanged_at_end_vpos + dvpos,
18277 bottom_vpos, dvpos);
18278 clear_glyph_matrix_rows (current_matrix, bottom_vpos + dvpos,
18279 bottom_vpos);
18281 else if (dvpos > 0)
18283 rotate_matrix (current_matrix, first_unchanged_at_end_vpos,
18284 bottom_vpos, dvpos);
18285 clear_glyph_matrix_rows (current_matrix, first_unchanged_at_end_vpos,
18286 first_unchanged_at_end_vpos + dvpos);
18289 /* For frame-based redisplay, make sure that current frame and window
18290 matrix are in sync with respect to glyph memory. */
18291 if (!FRAME_WINDOW_P (f))
18292 sync_frame_with_window_matrix_rows (w);
18294 /* Adjust buffer positions in reused rows. */
18295 if (delta || delta_bytes)
18296 increment_matrix_positions (current_matrix,
18297 first_unchanged_at_end_vpos + dvpos,
18298 bottom_vpos, delta, delta_bytes);
18300 /* Adjust Y positions. */
18301 if (dy)
18302 shift_glyph_matrix (w, current_matrix,
18303 first_unchanged_at_end_vpos + dvpos,
18304 bottom_vpos, dy);
18306 if (first_unchanged_at_end_row)
18308 first_unchanged_at_end_row += dvpos;
18309 if (first_unchanged_at_end_row->y >= it.last_visible_y
18310 || !MATRIX_ROW_DISPLAYS_TEXT_P (first_unchanged_at_end_row))
18311 first_unchanged_at_end_row = NULL;
18314 /* If scrolling up, there may be some lines to display at the end of
18315 the window. */
18316 last_text_row_at_end = NULL;
18317 if (dy < 0)
18319 /* Scrolling up can leave for example a partially visible line
18320 at the end of the window to be redisplayed. */
18321 /* Set last_row to the glyph row in the current matrix where the
18322 window end line is found. It has been moved up or down in
18323 the matrix by dvpos. */
18324 int last_vpos = w->window_end_vpos + dvpos;
18325 struct glyph_row *last_row = MATRIX_ROW (current_matrix, last_vpos);
18327 /* If last_row is the window end line, it should display text. */
18328 eassert (MATRIX_ROW_DISPLAYS_TEXT_P (last_row));
18330 /* If window end line was partially visible before, begin
18331 displaying at that line. Otherwise begin displaying with the
18332 line following it. */
18333 if (MATRIX_ROW_BOTTOM_Y (last_row) - dy >= it.last_visible_y)
18335 init_to_row_start (&it, w, last_row);
18336 it.vpos = last_vpos;
18337 it.current_y = last_row->y;
18339 else
18341 init_to_row_end (&it, w, last_row);
18342 it.vpos = 1 + last_vpos;
18343 it.current_y = MATRIX_ROW_BOTTOM_Y (last_row);
18344 ++last_row;
18347 /* We may start in a continuation line. If so, we have to
18348 get the right continuation_lines_width and current_x. */
18349 it.continuation_lines_width = last_row->continuation_lines_width;
18350 it.hpos = it.current_x = 0;
18352 /* Display the rest of the lines at the window end. */
18353 it.glyph_row = MATRIX_ROW (desired_matrix, it.vpos);
18354 while (it.current_y < it.last_visible_y && !f->fonts_changed)
18356 /* Is it always sure that the display agrees with lines in
18357 the current matrix? I don't think so, so we mark rows
18358 displayed invalid in the current matrix by setting their
18359 enabled_p flag to false. */
18360 SET_MATRIX_ROW_ENABLED_P (w->current_matrix, it.vpos, false);
18361 if (display_line (&it))
18362 last_text_row_at_end = it.glyph_row - 1;
18366 /* Update window_end_pos and window_end_vpos. */
18367 if (first_unchanged_at_end_row && !last_text_row_at_end)
18369 /* Window end line if one of the preserved rows from the current
18370 matrix. Set row to the last row displaying text in current
18371 matrix starting at first_unchanged_at_end_row, after
18372 scrolling. */
18373 eassert (MATRIX_ROW_DISPLAYS_TEXT_P (first_unchanged_at_end_row));
18374 row = find_last_row_displaying_text (w->current_matrix, &it,
18375 first_unchanged_at_end_row);
18376 eassert (row && MATRIX_ROW_DISPLAYS_TEXT_P (row));
18377 adjust_window_ends (w, row, true);
18378 eassert (w->window_end_bytepos >= 0);
18379 IF_DEBUG (debug_method_add (w, "A"));
18381 else if (last_text_row_at_end)
18383 adjust_window_ends (w, last_text_row_at_end, false);
18384 eassert (w->window_end_bytepos >= 0);
18385 IF_DEBUG (debug_method_add (w, "B"));
18387 else if (last_text_row)
18389 /* We have displayed either to the end of the window or at the
18390 end of the window, i.e. the last row with text is to be found
18391 in the desired matrix. */
18392 adjust_window_ends (w, last_text_row, false);
18393 eassert (w->window_end_bytepos >= 0);
18395 else if (first_unchanged_at_end_row == NULL
18396 && last_text_row == NULL
18397 && last_text_row_at_end == NULL)
18399 /* Displayed to end of window, but no line containing text was
18400 displayed. Lines were deleted at the end of the window. */
18401 bool first_vpos = WINDOW_WANTS_HEADER_LINE_P (w);
18402 int vpos = w->window_end_vpos;
18403 struct glyph_row *current_row = current_matrix->rows + vpos;
18404 struct glyph_row *desired_row = desired_matrix->rows + vpos;
18406 for (row = NULL;
18407 row == NULL && vpos >= first_vpos;
18408 --vpos, --current_row, --desired_row)
18410 if (desired_row->enabled_p)
18412 if (MATRIX_ROW_DISPLAYS_TEXT_P (desired_row))
18413 row = desired_row;
18415 else if (MATRIX_ROW_DISPLAYS_TEXT_P (current_row))
18416 row = current_row;
18419 eassert (row != NULL);
18420 w->window_end_vpos = vpos + 1;
18421 w->window_end_pos = Z - MATRIX_ROW_END_CHARPOS (row);
18422 w->window_end_bytepos = Z_BYTE - MATRIX_ROW_END_BYTEPOS (row);
18423 eassert (w->window_end_bytepos >= 0);
18424 IF_DEBUG (debug_method_add (w, "C"));
18426 else
18427 emacs_abort ();
18429 IF_DEBUG ((debug_end_pos = w->window_end_pos,
18430 debug_end_vpos = w->window_end_vpos));
18432 /* Record that display has not been completed. */
18433 w->window_end_valid = false;
18434 w->desired_matrix->no_scrolling_p = true;
18435 return 3;
18437 #undef GIVE_UP
18442 /***********************************************************************
18443 More debugging support
18444 ***********************************************************************/
18446 #ifdef GLYPH_DEBUG
18448 void dump_glyph_row (struct glyph_row *, int, int) EXTERNALLY_VISIBLE;
18449 void dump_glyph_matrix (struct glyph_matrix *, int) EXTERNALLY_VISIBLE;
18450 void dump_glyph (struct glyph_row *, struct glyph *, int) EXTERNALLY_VISIBLE;
18453 /* Dump the contents of glyph matrix MATRIX on stderr.
18455 GLYPHS 0 means don't show glyph contents.
18456 GLYPHS 1 means show glyphs in short form
18457 GLYPHS > 1 means show glyphs in long form. */
18459 void
18460 dump_glyph_matrix (struct glyph_matrix *matrix, int glyphs)
18462 int i;
18463 for (i = 0; i < matrix->nrows; ++i)
18464 dump_glyph_row (MATRIX_ROW (matrix, i), i, glyphs);
18468 /* Dump contents of glyph GLYPH to stderr. ROW and AREA are
18469 the glyph row and area where the glyph comes from. */
18471 void
18472 dump_glyph (struct glyph_row *row, struct glyph *glyph, int area)
18474 if (glyph->type == CHAR_GLYPH
18475 || glyph->type == GLYPHLESS_GLYPH)
18477 fprintf (stderr,
18478 " %5"pD"d %c %9"pI"d %c %3d 0x%06x %c %4d %1.1d%1.1d\n",
18479 glyph - row->glyphs[TEXT_AREA],
18480 (glyph->type == CHAR_GLYPH
18481 ? 'C'
18482 : 'G'),
18483 glyph->charpos,
18484 (BUFFERP (glyph->object)
18485 ? 'B'
18486 : (STRINGP (glyph->object)
18487 ? 'S'
18488 : (NILP (glyph->object)
18489 ? '0'
18490 : '-'))),
18491 glyph->pixel_width,
18492 glyph->u.ch,
18493 (glyph->u.ch < 0x80 && glyph->u.ch >= ' '
18494 ? glyph->u.ch
18495 : '.'),
18496 glyph->face_id,
18497 glyph->left_box_line_p,
18498 glyph->right_box_line_p);
18500 else if (glyph->type == STRETCH_GLYPH)
18502 fprintf (stderr,
18503 " %5"pD"d %c %9"pI"d %c %3d 0x%06x %c %4d %1.1d%1.1d\n",
18504 glyph - row->glyphs[TEXT_AREA],
18505 'S',
18506 glyph->charpos,
18507 (BUFFERP (glyph->object)
18508 ? 'B'
18509 : (STRINGP (glyph->object)
18510 ? 'S'
18511 : (NILP (glyph->object)
18512 ? '0'
18513 : '-'))),
18514 glyph->pixel_width,
18516 ' ',
18517 glyph->face_id,
18518 glyph->left_box_line_p,
18519 glyph->right_box_line_p);
18521 else if (glyph->type == IMAGE_GLYPH)
18523 fprintf (stderr,
18524 " %5"pD"d %c %9"pI"d %c %3d 0x%06x %c %4d %1.1d%1.1d\n",
18525 glyph - row->glyphs[TEXT_AREA],
18526 'I',
18527 glyph->charpos,
18528 (BUFFERP (glyph->object)
18529 ? 'B'
18530 : (STRINGP (glyph->object)
18531 ? 'S'
18532 : (NILP (glyph->object)
18533 ? '0'
18534 : '-'))),
18535 glyph->pixel_width,
18536 glyph->u.img_id,
18537 '.',
18538 glyph->face_id,
18539 glyph->left_box_line_p,
18540 glyph->right_box_line_p);
18542 else if (glyph->type == COMPOSITE_GLYPH)
18544 fprintf (stderr,
18545 " %5"pD"d %c %9"pI"d %c %3d 0x%06x",
18546 glyph - row->glyphs[TEXT_AREA],
18547 '+',
18548 glyph->charpos,
18549 (BUFFERP (glyph->object)
18550 ? 'B'
18551 : (STRINGP (glyph->object)
18552 ? 'S'
18553 : (NILP (glyph->object)
18554 ? '0'
18555 : '-'))),
18556 glyph->pixel_width,
18557 glyph->u.cmp.id);
18558 if (glyph->u.cmp.automatic)
18559 fprintf (stderr,
18560 "[%d-%d]",
18561 glyph->slice.cmp.from, glyph->slice.cmp.to);
18562 fprintf (stderr, " . %4d %1.1d%1.1d\n",
18563 glyph->face_id,
18564 glyph->left_box_line_p,
18565 glyph->right_box_line_p);
18570 /* Dump the contents of glyph row at VPOS in MATRIX to stderr.
18571 GLYPHS 0 means don't show glyph contents.
18572 GLYPHS 1 means show glyphs in short form
18573 GLYPHS > 1 means show glyphs in long form. */
18575 void
18576 dump_glyph_row (struct glyph_row *row, int vpos, int glyphs)
18578 if (glyphs != 1)
18580 fprintf (stderr, "Row Start End Used oE><\\CTZFesm X Y W H V A P\n");
18581 fprintf (stderr, "==============================================================================\n");
18583 fprintf (stderr, "%3d %9"pI"d %9"pI"d %4d %1.1d%1.1d%1.1d%1.1d\
18584 %1.1d%1.1d%1.1d%1.1d%1.1d%1.1d%1.1d%1.1d %4d %4d %4d %4d %4d %4d %4d\n",
18585 vpos,
18586 MATRIX_ROW_START_CHARPOS (row),
18587 MATRIX_ROW_END_CHARPOS (row),
18588 row->used[TEXT_AREA],
18589 row->contains_overlapping_glyphs_p,
18590 row->enabled_p,
18591 row->truncated_on_left_p,
18592 row->truncated_on_right_p,
18593 row->continued_p,
18594 MATRIX_ROW_CONTINUATION_LINE_P (row),
18595 MATRIX_ROW_DISPLAYS_TEXT_P (row),
18596 row->ends_at_zv_p,
18597 row->fill_line_p,
18598 row->ends_in_middle_of_char_p,
18599 row->starts_in_middle_of_char_p,
18600 row->mouse_face_p,
18601 row->x,
18602 row->y,
18603 row->pixel_width,
18604 row->height,
18605 row->visible_height,
18606 row->ascent,
18607 row->phys_ascent);
18608 /* The next 3 lines should align to "Start" in the header. */
18609 fprintf (stderr, " %9"pD"d %9"pD"d\t%5d\n", row->start.overlay_string_index,
18610 row->end.overlay_string_index,
18611 row->continuation_lines_width);
18612 fprintf (stderr, " %9"pI"d %9"pI"d\n",
18613 CHARPOS (row->start.string_pos),
18614 CHARPOS (row->end.string_pos));
18615 fprintf (stderr, " %9d %9d\n", row->start.dpvec_index,
18616 row->end.dpvec_index);
18619 if (glyphs > 1)
18621 int area;
18623 for (area = LEFT_MARGIN_AREA; area < LAST_AREA; ++area)
18625 struct glyph *glyph = row->glyphs[area];
18626 struct glyph *glyph_end = glyph + row->used[area];
18628 /* Glyph for a line end in text. */
18629 if (area == TEXT_AREA && glyph == glyph_end && glyph->charpos > 0)
18630 ++glyph_end;
18632 if (glyph < glyph_end)
18633 fprintf (stderr, " Glyph# Type Pos O W Code C Face LR\n");
18635 for (; glyph < glyph_end; ++glyph)
18636 dump_glyph (row, glyph, area);
18639 else if (glyphs == 1)
18641 int area;
18642 char s[SHRT_MAX + 4];
18644 for (area = LEFT_MARGIN_AREA; area < LAST_AREA; ++area)
18646 int i;
18648 for (i = 0; i < row->used[area]; ++i)
18650 struct glyph *glyph = row->glyphs[area] + i;
18651 if (i == row->used[area] - 1
18652 && area == TEXT_AREA
18653 && NILP (glyph->object)
18654 && glyph->type == CHAR_GLYPH
18655 && glyph->u.ch == ' ')
18657 strcpy (&s[i], "[\\n]");
18658 i += 4;
18660 else if (glyph->type == CHAR_GLYPH
18661 && glyph->u.ch < 0x80
18662 && glyph->u.ch >= ' ')
18663 s[i] = glyph->u.ch;
18664 else
18665 s[i] = '.';
18668 s[i] = '\0';
18669 fprintf (stderr, "%3d: (%d) '%s'\n", vpos, row->enabled_p, s);
18675 DEFUN ("dump-glyph-matrix", Fdump_glyph_matrix,
18676 Sdump_glyph_matrix, 0, 1, "p",
18677 doc: /* Dump the current matrix of the selected window to stderr.
18678 Shows contents of glyph row structures. With non-nil
18679 parameter GLYPHS, dump glyphs as well. If GLYPHS is 1 show
18680 glyphs in short form, otherwise show glyphs in long form.
18682 Interactively, no argument means show glyphs in short form;
18683 with numeric argument, its value is passed as the GLYPHS flag. */)
18684 (Lisp_Object glyphs)
18686 struct window *w = XWINDOW (selected_window);
18687 struct buffer *buffer = XBUFFER (w->contents);
18689 fprintf (stderr, "PT = %"pI"d, BEGV = %"pI"d. ZV = %"pI"d\n",
18690 BUF_PT (buffer), BUF_BEGV (buffer), BUF_ZV (buffer));
18691 fprintf (stderr, "Cursor x = %d, y = %d, hpos = %d, vpos = %d\n",
18692 w->cursor.x, w->cursor.y, w->cursor.hpos, w->cursor.vpos);
18693 fprintf (stderr, "=============================================\n");
18694 dump_glyph_matrix (w->current_matrix,
18695 TYPE_RANGED_INTEGERP (int, glyphs) ? XINT (glyphs) : 0);
18696 return Qnil;
18700 DEFUN ("dump-frame-glyph-matrix", Fdump_frame_glyph_matrix,
18701 Sdump_frame_glyph_matrix, 0, 0, "", doc: /* Dump the current glyph matrix of the selected frame to stderr.
18702 Only text-mode frames have frame glyph matrices. */)
18703 (void)
18705 struct frame *f = XFRAME (selected_frame);
18707 if (f->current_matrix)
18708 dump_glyph_matrix (f->current_matrix, 1);
18709 else
18710 fprintf (stderr, "*** This frame doesn't have a frame glyph matrix ***\n");
18711 return Qnil;
18715 DEFUN ("dump-glyph-row", Fdump_glyph_row, Sdump_glyph_row, 1, 2, "",
18716 doc: /* Dump glyph row ROW to stderr.
18717 GLYPH 0 means don't dump glyphs.
18718 GLYPH 1 means dump glyphs in short form.
18719 GLYPH > 1 or omitted means dump glyphs in long form. */)
18720 (Lisp_Object row, Lisp_Object glyphs)
18722 struct glyph_matrix *matrix;
18723 EMACS_INT vpos;
18725 CHECK_NUMBER (row);
18726 matrix = XWINDOW (selected_window)->current_matrix;
18727 vpos = XINT (row);
18728 if (vpos >= 0 && vpos < matrix->nrows)
18729 dump_glyph_row (MATRIX_ROW (matrix, vpos),
18730 vpos,
18731 TYPE_RANGED_INTEGERP (int, glyphs) ? XINT (glyphs) : 2);
18732 return Qnil;
18736 DEFUN ("dump-tool-bar-row", Fdump_tool_bar_row, Sdump_tool_bar_row, 1, 2, "",
18737 doc: /* Dump glyph row ROW of the tool-bar of the current frame to stderr.
18738 GLYPH 0 means don't dump glyphs.
18739 GLYPH 1 means dump glyphs in short form.
18740 GLYPH > 1 or omitted means dump glyphs in long form.
18742 If there's no tool-bar, or if the tool-bar is not drawn by Emacs,
18743 do nothing. */)
18744 (Lisp_Object row, Lisp_Object glyphs)
18746 #if defined (HAVE_WINDOW_SYSTEM) && ! defined (USE_GTK) && ! defined (HAVE_NS)
18747 struct frame *sf = SELECTED_FRAME ();
18748 struct glyph_matrix *m = XWINDOW (sf->tool_bar_window)->current_matrix;
18749 EMACS_INT vpos;
18751 CHECK_NUMBER (row);
18752 vpos = XINT (row);
18753 if (vpos >= 0 && vpos < m->nrows)
18754 dump_glyph_row (MATRIX_ROW (m, vpos), vpos,
18755 TYPE_RANGED_INTEGERP (int, glyphs) ? XINT (glyphs) : 2);
18756 #endif
18757 return Qnil;
18761 DEFUN ("trace-redisplay", Ftrace_redisplay, Strace_redisplay, 0, 1, "P",
18762 doc: /* Toggle tracing of redisplay.
18763 With ARG, turn tracing on if and only if ARG is positive. */)
18764 (Lisp_Object arg)
18766 if (NILP (arg))
18767 trace_redisplay_p = !trace_redisplay_p;
18768 else
18770 arg = Fprefix_numeric_value (arg);
18771 trace_redisplay_p = XINT (arg) > 0;
18774 return Qnil;
18778 DEFUN ("trace-to-stderr", Ftrace_to_stderr, Strace_to_stderr, 1, MANY, "",
18779 doc: /* Like `format', but print result to stderr.
18780 usage: (trace-to-stderr STRING &rest OBJECTS) */)
18781 (ptrdiff_t nargs, Lisp_Object *args)
18783 Lisp_Object s = Fformat (nargs, args);
18784 fwrite (SDATA (s), 1, SBYTES (s), stderr);
18785 return Qnil;
18788 #endif /* GLYPH_DEBUG */
18792 /***********************************************************************
18793 Building Desired Matrix Rows
18794 ***********************************************************************/
18796 /* Return a temporary glyph row holding the glyphs of an overlay arrow.
18797 Used for non-window-redisplay windows, and for windows w/o left fringe. */
18799 static struct glyph_row *
18800 get_overlay_arrow_glyph_row (struct window *w, Lisp_Object overlay_arrow_string)
18802 struct frame *f = XFRAME (WINDOW_FRAME (w));
18803 struct buffer *buffer = XBUFFER (w->contents);
18804 struct buffer *old = current_buffer;
18805 const unsigned char *arrow_string = SDATA (overlay_arrow_string);
18806 ptrdiff_t arrow_len = SCHARS (overlay_arrow_string);
18807 const unsigned char *arrow_end = arrow_string + arrow_len;
18808 const unsigned char *p;
18809 struct it it;
18810 bool multibyte_p;
18811 int n_glyphs_before;
18813 set_buffer_temp (buffer);
18814 init_iterator (&it, w, -1, -1, &scratch_glyph_row, DEFAULT_FACE_ID);
18815 scratch_glyph_row.reversed_p = false;
18816 it.glyph_row->used[TEXT_AREA] = 0;
18817 SET_TEXT_POS (it.position, 0, 0);
18819 multibyte_p = !NILP (BVAR (buffer, enable_multibyte_characters));
18820 p = arrow_string;
18821 while (p < arrow_end)
18823 Lisp_Object face, ilisp;
18825 /* Get the next character. */
18826 if (multibyte_p)
18827 it.c = it.char_to_display = string_char_and_length (p, &it.len);
18828 else
18830 it.c = it.char_to_display = *p, it.len = 1;
18831 if (! ASCII_CHAR_P (it.c))
18832 it.char_to_display = BYTE8_TO_CHAR (it.c);
18834 p += it.len;
18836 /* Get its face. */
18837 ilisp = make_number (p - arrow_string);
18838 face = Fget_text_property (ilisp, Qface, overlay_arrow_string);
18839 it.face_id = compute_char_face (f, it.char_to_display, face);
18841 /* Compute its width, get its glyphs. */
18842 n_glyphs_before = it.glyph_row->used[TEXT_AREA];
18843 SET_TEXT_POS (it.position, -1, -1);
18844 PRODUCE_GLYPHS (&it);
18846 /* If this character doesn't fit any more in the line, we have
18847 to remove some glyphs. */
18848 if (it.current_x > it.last_visible_x)
18850 it.glyph_row->used[TEXT_AREA] = n_glyphs_before;
18851 break;
18855 set_buffer_temp (old);
18856 return it.glyph_row;
18860 /* Insert truncation glyphs at the start of IT->glyph_row. Which
18861 glyphs to insert is determined by produce_special_glyphs. */
18863 static void
18864 insert_left_trunc_glyphs (struct it *it)
18866 struct it truncate_it;
18867 struct glyph *from, *end, *to, *toend;
18869 eassert (!FRAME_WINDOW_P (it->f)
18870 || (!it->glyph_row->reversed_p
18871 && WINDOW_LEFT_FRINGE_WIDTH (it->w) == 0)
18872 || (it->glyph_row->reversed_p
18873 && WINDOW_RIGHT_FRINGE_WIDTH (it->w) == 0));
18875 /* Get the truncation glyphs. */
18876 truncate_it = *it;
18877 truncate_it.current_x = 0;
18878 truncate_it.face_id = DEFAULT_FACE_ID;
18879 truncate_it.glyph_row = &scratch_glyph_row;
18880 truncate_it.area = TEXT_AREA;
18881 truncate_it.glyph_row->used[TEXT_AREA] = 0;
18882 CHARPOS (truncate_it.position) = BYTEPOS (truncate_it.position) = -1;
18883 truncate_it.object = Qnil;
18884 produce_special_glyphs (&truncate_it, IT_TRUNCATION);
18886 /* Overwrite glyphs from IT with truncation glyphs. */
18887 if (!it->glyph_row->reversed_p)
18889 short tused = truncate_it.glyph_row->used[TEXT_AREA];
18891 from = truncate_it.glyph_row->glyphs[TEXT_AREA];
18892 end = from + tused;
18893 to = it->glyph_row->glyphs[TEXT_AREA];
18894 toend = to + it->glyph_row->used[TEXT_AREA];
18895 if (FRAME_WINDOW_P (it->f))
18897 /* On GUI frames, when variable-size fonts are displayed,
18898 the truncation glyphs may need more pixels than the row's
18899 glyphs they overwrite. We overwrite more glyphs to free
18900 enough screen real estate, and enlarge the stretch glyph
18901 on the right (see display_line), if there is one, to
18902 preserve the screen position of the truncation glyphs on
18903 the right. */
18904 int w = 0;
18905 struct glyph *g = to;
18906 short used;
18908 /* The first glyph could be partially visible, in which case
18909 it->glyph_row->x will be negative. But we want the left
18910 truncation glyphs to be aligned at the left margin of the
18911 window, so we override the x coordinate at which the row
18912 will begin. */
18913 it->glyph_row->x = 0;
18914 while (g < toend && w < it->truncation_pixel_width)
18916 w += g->pixel_width;
18917 ++g;
18919 if (g - to - tused > 0)
18921 memmove (to + tused, g, (toend - g) * sizeof(*g));
18922 it->glyph_row->used[TEXT_AREA] -= g - to - tused;
18924 used = it->glyph_row->used[TEXT_AREA];
18925 if (it->glyph_row->truncated_on_right_p
18926 && WINDOW_RIGHT_FRINGE_WIDTH (it->w) == 0
18927 && it->glyph_row->glyphs[TEXT_AREA][used - 2].type
18928 == STRETCH_GLYPH)
18930 int extra = w - it->truncation_pixel_width;
18932 it->glyph_row->glyphs[TEXT_AREA][used - 2].pixel_width += extra;
18936 while (from < end)
18937 *to++ = *from++;
18939 /* There may be padding glyphs left over. Overwrite them too. */
18940 if (!FRAME_WINDOW_P (it->f))
18942 while (to < toend && CHAR_GLYPH_PADDING_P (*to))
18944 from = truncate_it.glyph_row->glyphs[TEXT_AREA];
18945 while (from < end)
18946 *to++ = *from++;
18950 if (to > toend)
18951 it->glyph_row->used[TEXT_AREA] = to - it->glyph_row->glyphs[TEXT_AREA];
18953 else
18955 short tused = truncate_it.glyph_row->used[TEXT_AREA];
18957 /* In R2L rows, overwrite the last (rightmost) glyphs, and do
18958 that back to front. */
18959 end = truncate_it.glyph_row->glyphs[TEXT_AREA];
18960 from = end + truncate_it.glyph_row->used[TEXT_AREA] - 1;
18961 toend = it->glyph_row->glyphs[TEXT_AREA];
18962 to = toend + it->glyph_row->used[TEXT_AREA] - 1;
18963 if (FRAME_WINDOW_P (it->f))
18965 int w = 0;
18966 struct glyph *g = to;
18968 while (g >= toend && w < it->truncation_pixel_width)
18970 w += g->pixel_width;
18971 --g;
18973 if (to - g - tused > 0)
18974 to = g + tused;
18975 if (it->glyph_row->truncated_on_right_p
18976 && WINDOW_LEFT_FRINGE_WIDTH (it->w) == 0
18977 && it->glyph_row->glyphs[TEXT_AREA][1].type == STRETCH_GLYPH)
18979 int extra = w - it->truncation_pixel_width;
18981 it->glyph_row->glyphs[TEXT_AREA][1].pixel_width += extra;
18985 while (from >= end && to >= toend)
18986 *to-- = *from--;
18987 if (!FRAME_WINDOW_P (it->f))
18989 while (to >= toend && CHAR_GLYPH_PADDING_P (*to))
18991 from =
18992 truncate_it.glyph_row->glyphs[TEXT_AREA]
18993 + truncate_it.glyph_row->used[TEXT_AREA] - 1;
18994 while (from >= end && to >= toend)
18995 *to-- = *from--;
18998 if (from >= end)
19000 /* Need to free some room before prepending additional
19001 glyphs. */
19002 int move_by = from - end + 1;
19003 struct glyph *g0 = it->glyph_row->glyphs[TEXT_AREA];
19004 struct glyph *g = g0 + it->glyph_row->used[TEXT_AREA] - 1;
19006 for ( ; g >= g0; g--)
19007 g[move_by] = *g;
19008 while (from >= end)
19009 *to-- = *from--;
19010 it->glyph_row->used[TEXT_AREA] += move_by;
19015 /* Compute the hash code for ROW. */
19016 unsigned
19017 row_hash (struct glyph_row *row)
19019 int area, k;
19020 unsigned hashval = 0;
19022 for (area = LEFT_MARGIN_AREA; area < LAST_AREA; ++area)
19023 for (k = 0; k < row->used[area]; ++k)
19024 hashval = ((((hashval << 4) + (hashval >> 24)) & 0x0fffffff)
19025 + row->glyphs[area][k].u.val
19026 + row->glyphs[area][k].face_id
19027 + row->glyphs[area][k].padding_p
19028 + (row->glyphs[area][k].type << 2));
19030 return hashval;
19033 /* Compute the pixel height and width of IT->glyph_row.
19035 Most of the time, ascent and height of a display line will be equal
19036 to the max_ascent and max_height values of the display iterator
19037 structure. This is not the case if
19039 1. We hit ZV without displaying anything. In this case, max_ascent
19040 and max_height will be zero.
19042 2. We have some glyphs that don't contribute to the line height.
19043 (The glyph row flag contributes_to_line_height_p is for future
19044 pixmap extensions).
19046 The first case is easily covered by using default values because in
19047 these cases, the line height does not really matter, except that it
19048 must not be zero. */
19050 static void
19051 compute_line_metrics (struct it *it)
19053 struct glyph_row *row = it->glyph_row;
19055 if (FRAME_WINDOW_P (it->f))
19057 int i, min_y, max_y;
19059 /* The line may consist of one space only, that was added to
19060 place the cursor on it. If so, the row's height hasn't been
19061 computed yet. */
19062 if (row->height == 0)
19064 if (it->max_ascent + it->max_descent == 0)
19065 it->max_descent = it->max_phys_descent = FRAME_LINE_HEIGHT (it->f);
19066 row->ascent = it->max_ascent;
19067 row->height = it->max_ascent + it->max_descent;
19068 row->phys_ascent = it->max_phys_ascent;
19069 row->phys_height = it->max_phys_ascent + it->max_phys_descent;
19070 row->extra_line_spacing = it->max_extra_line_spacing;
19073 /* Compute the width of this line. */
19074 row->pixel_width = row->x;
19075 for (i = 0; i < row->used[TEXT_AREA]; ++i)
19076 row->pixel_width += row->glyphs[TEXT_AREA][i].pixel_width;
19078 eassert (row->pixel_width >= 0);
19079 eassert (row->ascent >= 0 && row->height > 0);
19081 row->overlapping_p = (MATRIX_ROW_OVERLAPS_SUCC_P (row)
19082 || MATRIX_ROW_OVERLAPS_PRED_P (row));
19084 /* If first line's physical ascent is larger than its logical
19085 ascent, use the physical ascent, and make the row taller.
19086 This makes accented characters fully visible. */
19087 if (row == MATRIX_FIRST_TEXT_ROW (it->w->desired_matrix)
19088 && row->phys_ascent > row->ascent)
19090 row->height += row->phys_ascent - row->ascent;
19091 row->ascent = row->phys_ascent;
19094 /* Compute how much of the line is visible. */
19095 row->visible_height = row->height;
19097 min_y = WINDOW_HEADER_LINE_HEIGHT (it->w);
19098 max_y = WINDOW_BOX_HEIGHT_NO_MODE_LINE (it->w);
19100 if (row->y < min_y)
19101 row->visible_height -= min_y - row->y;
19102 if (row->y + row->height > max_y)
19103 row->visible_height -= row->y + row->height - max_y;
19105 else
19107 row->pixel_width = row->used[TEXT_AREA];
19108 if (row->continued_p)
19109 row->pixel_width -= it->continuation_pixel_width;
19110 else if (row->truncated_on_right_p)
19111 row->pixel_width -= it->truncation_pixel_width;
19112 row->ascent = row->phys_ascent = 0;
19113 row->height = row->phys_height = row->visible_height = 1;
19114 row->extra_line_spacing = 0;
19117 /* Compute a hash code for this row. */
19118 row->hash = row_hash (row);
19120 it->max_ascent = it->max_descent = 0;
19121 it->max_phys_ascent = it->max_phys_descent = 0;
19125 /* Append one space to the glyph row of iterator IT if doing a
19126 window-based redisplay. The space has the same face as
19127 IT->face_id. Value is true if a space was added.
19129 This function is called to make sure that there is always one glyph
19130 at the end of a glyph row that the cursor can be set on under
19131 window-systems. (If there weren't such a glyph we would not know
19132 how wide and tall a box cursor should be displayed).
19134 At the same time this space let's a nicely handle clearing to the
19135 end of the line if the row ends in italic text. */
19137 static bool
19138 append_space_for_newline (struct it *it, bool default_face_p)
19140 if (FRAME_WINDOW_P (it->f))
19142 int n = it->glyph_row->used[TEXT_AREA];
19144 if (it->glyph_row->glyphs[TEXT_AREA] + n
19145 < it->glyph_row->glyphs[1 + TEXT_AREA])
19147 /* Save some values that must not be changed.
19148 Must save IT->c and IT->len because otherwise
19149 ITERATOR_AT_END_P wouldn't work anymore after
19150 append_space_for_newline has been called. */
19151 enum display_element_type saved_what = it->what;
19152 int saved_c = it->c, saved_len = it->len;
19153 int saved_char_to_display = it->char_to_display;
19154 int saved_x = it->current_x;
19155 int saved_face_id = it->face_id;
19156 bool saved_box_end = it->end_of_box_run_p;
19157 struct text_pos saved_pos;
19158 Lisp_Object saved_object;
19159 struct face *face;
19161 saved_object = it->object;
19162 saved_pos = it->position;
19164 it->what = IT_CHARACTER;
19165 memset (&it->position, 0, sizeof it->position);
19166 it->object = Qnil;
19167 it->c = it->char_to_display = ' ';
19168 it->len = 1;
19170 /* If the default face was remapped, be sure to use the
19171 remapped face for the appended newline. */
19172 if (default_face_p)
19173 it->face_id = lookup_basic_face (it->f, DEFAULT_FACE_ID);
19174 else if (it->face_before_selective_p)
19175 it->face_id = it->saved_face_id;
19176 face = FACE_FROM_ID (it->f, it->face_id);
19177 it->face_id = FACE_FOR_CHAR (it->f, face, 0, -1, Qnil);
19178 /* In R2L rows, we will prepend a stretch glyph that will
19179 have the end_of_box_run_p flag set for it, so there's no
19180 need for the appended newline glyph to have that flag
19181 set. */
19182 if (it->glyph_row->reversed_p
19183 /* But if the appended newline glyph goes all the way to
19184 the end of the row, there will be no stretch glyph,
19185 so leave the box flag set. */
19186 && saved_x + FRAME_COLUMN_WIDTH (it->f) < it->last_visible_x)
19187 it->end_of_box_run_p = false;
19189 PRODUCE_GLYPHS (it);
19191 it->override_ascent = -1;
19192 it->constrain_row_ascent_descent_p = false;
19193 it->current_x = saved_x;
19194 it->object = saved_object;
19195 it->position = saved_pos;
19196 it->what = saved_what;
19197 it->face_id = saved_face_id;
19198 it->len = saved_len;
19199 it->c = saved_c;
19200 it->char_to_display = saved_char_to_display;
19201 it->end_of_box_run_p = saved_box_end;
19202 return true;
19206 return false;
19210 /* Extend the face of the last glyph in the text area of IT->glyph_row
19211 to the end of the display line. Called from display_line. If the
19212 glyph row is empty, add a space glyph to it so that we know the
19213 face to draw. Set the glyph row flag fill_line_p. If the glyph
19214 row is R2L, prepend a stretch glyph to cover the empty space to the
19215 left of the leftmost glyph. */
19217 static void
19218 extend_face_to_end_of_line (struct it *it)
19220 struct face *face, *default_face;
19221 struct frame *f = it->f;
19223 /* If line is already filled, do nothing. Non window-system frames
19224 get a grace of one more ``pixel'' because their characters are
19225 1-``pixel'' wide, so they hit the equality too early. This grace
19226 is needed only for R2L rows that are not continued, to produce
19227 one extra blank where we could display the cursor. */
19228 if ((it->current_x >= it->last_visible_x
19229 + (!FRAME_WINDOW_P (f)
19230 && it->glyph_row->reversed_p
19231 && !it->glyph_row->continued_p))
19232 /* If the window has display margins, we will need to extend
19233 their face even if the text area is filled. */
19234 && !(WINDOW_LEFT_MARGIN_WIDTH (it->w) > 0
19235 || WINDOW_RIGHT_MARGIN_WIDTH (it->w) > 0))
19236 return;
19238 /* The default face, possibly remapped. */
19239 default_face = FACE_FROM_ID (f, lookup_basic_face (f, DEFAULT_FACE_ID));
19241 /* Face extension extends the background and box of IT->face_id
19242 to the end of the line. If the background equals the background
19243 of the frame, we don't have to do anything. */
19244 if (it->face_before_selective_p)
19245 face = FACE_FROM_ID (f, it->saved_face_id);
19246 else
19247 face = FACE_FROM_ID (f, it->face_id);
19249 if (FRAME_WINDOW_P (f)
19250 && MATRIX_ROW_DISPLAYS_TEXT_P (it->glyph_row)
19251 && face->box == FACE_NO_BOX
19252 && face->background == FRAME_BACKGROUND_PIXEL (f)
19253 #ifdef HAVE_WINDOW_SYSTEM
19254 && !face->stipple
19255 #endif
19256 && !it->glyph_row->reversed_p)
19257 return;
19259 /* Set the glyph row flag indicating that the face of the last glyph
19260 in the text area has to be drawn to the end of the text area. */
19261 it->glyph_row->fill_line_p = true;
19263 /* If current character of IT is not ASCII, make sure we have the
19264 ASCII face. This will be automatically undone the next time
19265 get_next_display_element returns a multibyte character. Note
19266 that the character will always be single byte in unibyte
19267 text. */
19268 if (!ASCII_CHAR_P (it->c))
19270 it->face_id = FACE_FOR_CHAR (f, face, 0, -1, Qnil);
19273 if (FRAME_WINDOW_P (f))
19275 /* If the row is empty, add a space with the current face of IT,
19276 so that we know which face to draw. */
19277 if (it->glyph_row->used[TEXT_AREA] == 0)
19279 it->glyph_row->glyphs[TEXT_AREA][0] = space_glyph;
19280 it->glyph_row->glyphs[TEXT_AREA][0].face_id = face->id;
19281 it->glyph_row->used[TEXT_AREA] = 1;
19283 /* Mode line and the header line don't have margins, and
19284 likewise the frame's tool-bar window, if there is any. */
19285 if (!(it->glyph_row->mode_line_p
19286 #if defined (HAVE_WINDOW_SYSTEM) && ! defined (USE_GTK) && ! defined (HAVE_NS)
19287 || (WINDOWP (f->tool_bar_window)
19288 && it->w == XWINDOW (f->tool_bar_window))
19289 #endif
19292 if (WINDOW_LEFT_MARGIN_WIDTH (it->w) > 0
19293 && it->glyph_row->used[LEFT_MARGIN_AREA] == 0)
19295 it->glyph_row->glyphs[LEFT_MARGIN_AREA][0] = space_glyph;
19296 it->glyph_row->glyphs[LEFT_MARGIN_AREA][0].face_id =
19297 default_face->id;
19298 it->glyph_row->used[LEFT_MARGIN_AREA] = 1;
19300 if (WINDOW_RIGHT_MARGIN_WIDTH (it->w) > 0
19301 && it->glyph_row->used[RIGHT_MARGIN_AREA] == 0)
19303 it->glyph_row->glyphs[RIGHT_MARGIN_AREA][0] = space_glyph;
19304 it->glyph_row->glyphs[RIGHT_MARGIN_AREA][0].face_id =
19305 default_face->id;
19306 it->glyph_row->used[RIGHT_MARGIN_AREA] = 1;
19309 #ifdef HAVE_WINDOW_SYSTEM
19310 if (it->glyph_row->reversed_p)
19312 /* Prepend a stretch glyph to the row, such that the
19313 rightmost glyph will be drawn flushed all the way to the
19314 right margin of the window. The stretch glyph that will
19315 occupy the empty space, if any, to the left of the
19316 glyphs. */
19317 struct font *font = face->font ? face->font : FRAME_FONT (f);
19318 struct glyph *row_start = it->glyph_row->glyphs[TEXT_AREA];
19319 struct glyph *row_end = row_start + it->glyph_row->used[TEXT_AREA];
19320 struct glyph *g;
19321 int row_width, stretch_ascent, stretch_width;
19322 struct text_pos saved_pos;
19323 int saved_face_id;
19324 bool saved_avoid_cursor, saved_box_start;
19326 for (row_width = 0, g = row_start; g < row_end; g++)
19327 row_width += g->pixel_width;
19329 /* FIXME: There are various minor display glitches in R2L
19330 rows when only one of the fringes is missing. The
19331 strange condition below produces the least bad effect. */
19332 if ((WINDOW_LEFT_FRINGE_WIDTH (it->w) == 0)
19333 == (WINDOW_RIGHT_FRINGE_WIDTH (it->w) == 0)
19334 || WINDOW_RIGHT_FRINGE_WIDTH (it->w) != 0)
19335 stretch_width = window_box_width (it->w, TEXT_AREA);
19336 else
19337 stretch_width = it->last_visible_x - it->first_visible_x;
19338 stretch_width -= row_width;
19340 if (stretch_width > 0)
19342 stretch_ascent =
19343 (((it->ascent + it->descent)
19344 * FONT_BASE (font)) / FONT_HEIGHT (font));
19345 saved_pos = it->position;
19346 memset (&it->position, 0, sizeof it->position);
19347 saved_avoid_cursor = it->avoid_cursor_p;
19348 it->avoid_cursor_p = true;
19349 saved_face_id = it->face_id;
19350 saved_box_start = it->start_of_box_run_p;
19351 /* The last row's stretch glyph should get the default
19352 face, to avoid painting the rest of the window with
19353 the region face, if the region ends at ZV. */
19354 if (it->glyph_row->ends_at_zv_p)
19355 it->face_id = default_face->id;
19356 else
19357 it->face_id = face->id;
19358 it->start_of_box_run_p = false;
19359 append_stretch_glyph (it, Qnil, stretch_width,
19360 it->ascent + it->descent, stretch_ascent);
19361 it->position = saved_pos;
19362 it->avoid_cursor_p = saved_avoid_cursor;
19363 it->face_id = saved_face_id;
19364 it->start_of_box_run_p = saved_box_start;
19366 /* If stretch_width comes out negative, it means that the
19367 last glyph is only partially visible. In R2L rows, we
19368 want the leftmost glyph to be partially visible, so we
19369 need to give the row the corresponding left offset. */
19370 if (stretch_width < 0)
19371 it->glyph_row->x = stretch_width;
19373 #endif /* HAVE_WINDOW_SYSTEM */
19375 else
19377 /* Save some values that must not be changed. */
19378 int saved_x = it->current_x;
19379 struct text_pos saved_pos;
19380 Lisp_Object saved_object;
19381 enum display_element_type saved_what = it->what;
19382 int saved_face_id = it->face_id;
19384 saved_object = it->object;
19385 saved_pos = it->position;
19387 it->what = IT_CHARACTER;
19388 memset (&it->position, 0, sizeof it->position);
19389 it->object = Qnil;
19390 it->c = it->char_to_display = ' ';
19391 it->len = 1;
19393 if (WINDOW_LEFT_MARGIN_WIDTH (it->w) > 0
19394 && (it->glyph_row->used[LEFT_MARGIN_AREA]
19395 < WINDOW_LEFT_MARGIN_WIDTH (it->w))
19396 && !it->glyph_row->mode_line_p
19397 && default_face->background != FRAME_BACKGROUND_PIXEL (f))
19399 struct glyph *g = it->glyph_row->glyphs[LEFT_MARGIN_AREA];
19400 struct glyph *e = g + it->glyph_row->used[LEFT_MARGIN_AREA];
19402 for (it->current_x = 0; g < e; g++)
19403 it->current_x += g->pixel_width;
19405 it->area = LEFT_MARGIN_AREA;
19406 it->face_id = default_face->id;
19407 while (it->glyph_row->used[LEFT_MARGIN_AREA]
19408 < WINDOW_LEFT_MARGIN_WIDTH (it->w))
19410 PRODUCE_GLYPHS (it);
19411 /* term.c:produce_glyphs advances it->current_x only for
19412 TEXT_AREA. */
19413 it->current_x += it->pixel_width;
19416 it->current_x = saved_x;
19417 it->area = TEXT_AREA;
19420 /* The last row's blank glyphs should get the default face, to
19421 avoid painting the rest of the window with the region face,
19422 if the region ends at ZV. */
19423 if (it->glyph_row->ends_at_zv_p)
19424 it->face_id = default_face->id;
19425 else
19426 it->face_id = face->id;
19427 PRODUCE_GLYPHS (it);
19429 while (it->current_x <= it->last_visible_x)
19430 PRODUCE_GLYPHS (it);
19432 if (WINDOW_RIGHT_MARGIN_WIDTH (it->w) > 0
19433 && (it->glyph_row->used[RIGHT_MARGIN_AREA]
19434 < WINDOW_RIGHT_MARGIN_WIDTH (it->w))
19435 && !it->glyph_row->mode_line_p
19436 && default_face->background != FRAME_BACKGROUND_PIXEL (f))
19438 struct glyph *g = it->glyph_row->glyphs[RIGHT_MARGIN_AREA];
19439 struct glyph *e = g + it->glyph_row->used[RIGHT_MARGIN_AREA];
19441 for ( ; g < e; g++)
19442 it->current_x += g->pixel_width;
19444 it->area = RIGHT_MARGIN_AREA;
19445 it->face_id = default_face->id;
19446 while (it->glyph_row->used[RIGHT_MARGIN_AREA]
19447 < WINDOW_RIGHT_MARGIN_WIDTH (it->w))
19449 PRODUCE_GLYPHS (it);
19450 it->current_x += it->pixel_width;
19453 it->area = TEXT_AREA;
19456 /* Don't count these blanks really. It would let us insert a left
19457 truncation glyph below and make us set the cursor on them, maybe. */
19458 it->current_x = saved_x;
19459 it->object = saved_object;
19460 it->position = saved_pos;
19461 it->what = saved_what;
19462 it->face_id = saved_face_id;
19467 /* Value is true if text starting at CHARPOS in current_buffer is
19468 trailing whitespace. */
19470 static bool
19471 trailing_whitespace_p (ptrdiff_t charpos)
19473 ptrdiff_t bytepos = CHAR_TO_BYTE (charpos);
19474 int c = 0;
19476 while (bytepos < ZV_BYTE
19477 && (c = FETCH_CHAR (bytepos),
19478 c == ' ' || c == '\t'))
19479 ++bytepos;
19481 if (bytepos >= ZV_BYTE || c == '\n' || c == '\r')
19483 if (bytepos != PT_BYTE)
19484 return true;
19486 return false;
19490 /* Highlight trailing whitespace, if any, in ROW. */
19492 static void
19493 highlight_trailing_whitespace (struct frame *f, struct glyph_row *row)
19495 int used = row->used[TEXT_AREA];
19497 if (used)
19499 struct glyph *start = row->glyphs[TEXT_AREA];
19500 struct glyph *glyph = start + used - 1;
19502 if (row->reversed_p)
19504 /* Right-to-left rows need to be processed in the opposite
19505 direction, so swap the edge pointers. */
19506 glyph = start;
19507 start = row->glyphs[TEXT_AREA] + used - 1;
19510 /* Skip over glyphs inserted to display the cursor at the
19511 end of a line, for extending the face of the last glyph
19512 to the end of the line on terminals, and for truncation
19513 and continuation glyphs. */
19514 if (!row->reversed_p)
19516 while (glyph >= start
19517 && glyph->type == CHAR_GLYPH
19518 && NILP (glyph->object))
19519 --glyph;
19521 else
19523 while (glyph <= start
19524 && glyph->type == CHAR_GLYPH
19525 && NILP (glyph->object))
19526 ++glyph;
19529 /* If last glyph is a space or stretch, and it's trailing
19530 whitespace, set the face of all trailing whitespace glyphs in
19531 IT->glyph_row to `trailing-whitespace'. */
19532 if ((row->reversed_p ? glyph <= start : glyph >= start)
19533 && BUFFERP (glyph->object)
19534 && (glyph->type == STRETCH_GLYPH
19535 || (glyph->type == CHAR_GLYPH
19536 && glyph->u.ch == ' '))
19537 && trailing_whitespace_p (glyph->charpos))
19539 int face_id = lookup_named_face (f, Qtrailing_whitespace, false);
19540 if (face_id < 0)
19541 return;
19543 if (!row->reversed_p)
19545 while (glyph >= start
19546 && BUFFERP (glyph->object)
19547 && (glyph->type == STRETCH_GLYPH
19548 || (glyph->type == CHAR_GLYPH
19549 && glyph->u.ch == ' ')))
19550 (glyph--)->face_id = face_id;
19552 else
19554 while (glyph <= start
19555 && BUFFERP (glyph->object)
19556 && (glyph->type == STRETCH_GLYPH
19557 || (glyph->type == CHAR_GLYPH
19558 && glyph->u.ch == ' ')))
19559 (glyph++)->face_id = face_id;
19566 /* Value is true if glyph row ROW should be
19567 considered to hold the buffer position CHARPOS. */
19569 static bool
19570 row_for_charpos_p (struct glyph_row *row, ptrdiff_t charpos)
19572 bool result = true;
19574 if (charpos == CHARPOS (row->end.pos)
19575 || charpos == MATRIX_ROW_END_CHARPOS (row))
19577 /* Suppose the row ends on a string.
19578 Unless the row is continued, that means it ends on a newline
19579 in the string. If it's anything other than a display string
19580 (e.g., a before-string from an overlay), we don't want the
19581 cursor there. (This heuristic seems to give the optimal
19582 behavior for the various types of multi-line strings.)
19583 One exception: if the string has `cursor' property on one of
19584 its characters, we _do_ want the cursor there. */
19585 if (CHARPOS (row->end.string_pos) >= 0)
19587 if (row->continued_p)
19588 result = true;
19589 else
19591 /* Check for `display' property. */
19592 struct glyph *beg = row->glyphs[TEXT_AREA];
19593 struct glyph *end = beg + row->used[TEXT_AREA] - 1;
19594 struct glyph *glyph;
19596 result = false;
19597 for (glyph = end; glyph >= beg; --glyph)
19598 if (STRINGP (glyph->object))
19600 Lisp_Object prop
19601 = Fget_char_property (make_number (charpos),
19602 Qdisplay, Qnil);
19603 result =
19604 (!NILP (prop)
19605 && display_prop_string_p (prop, glyph->object));
19606 /* If there's a `cursor' property on one of the
19607 string's characters, this row is a cursor row,
19608 even though this is not a display string. */
19609 if (!result)
19611 Lisp_Object s = glyph->object;
19613 for ( ; glyph >= beg && EQ (glyph->object, s); --glyph)
19615 ptrdiff_t gpos = glyph->charpos;
19617 if (!NILP (Fget_char_property (make_number (gpos),
19618 Qcursor, s)))
19620 result = true;
19621 break;
19625 break;
19629 else if (MATRIX_ROW_ENDS_IN_MIDDLE_OF_CHAR_P (row))
19631 /* If the row ends in middle of a real character,
19632 and the line is continued, we want the cursor here.
19633 That's because CHARPOS (ROW->end.pos) would equal
19634 PT if PT is before the character. */
19635 if (!row->ends_in_ellipsis_p)
19636 result = row->continued_p;
19637 else
19638 /* If the row ends in an ellipsis, then
19639 CHARPOS (ROW->end.pos) will equal point after the
19640 invisible text. We want that position to be displayed
19641 after the ellipsis. */
19642 result = false;
19644 /* If the row ends at ZV, display the cursor at the end of that
19645 row instead of at the start of the row below. */
19646 else
19647 result = row->ends_at_zv_p;
19650 return result;
19653 /* Value is true if glyph row ROW should be
19654 used to hold the cursor. */
19656 static bool
19657 cursor_row_p (struct glyph_row *row)
19659 return row_for_charpos_p (row, PT);
19664 /* Push the property PROP so that it will be rendered at the current
19665 position in IT. Return true if PROP was successfully pushed, false
19666 otherwise. Called from handle_line_prefix to handle the
19667 `line-prefix' and `wrap-prefix' properties. */
19669 static bool
19670 push_prefix_prop (struct it *it, Lisp_Object prop)
19672 struct text_pos pos =
19673 STRINGP (it->string) ? it->current.string_pos : it->current.pos;
19675 eassert (it->method == GET_FROM_BUFFER
19676 || it->method == GET_FROM_DISPLAY_VECTOR
19677 || it->method == GET_FROM_STRING);
19679 /* We need to save the current buffer/string position, so it will be
19680 restored by pop_it, because iterate_out_of_display_property
19681 depends on that being set correctly, but some situations leave
19682 it->position not yet set when this function is called. */
19683 push_it (it, &pos);
19685 if (STRINGP (prop))
19687 if (SCHARS (prop) == 0)
19689 pop_it (it);
19690 return false;
19693 it->string = prop;
19694 it->string_from_prefix_prop_p = true;
19695 it->multibyte_p = STRING_MULTIBYTE (it->string);
19696 it->current.overlay_string_index = -1;
19697 IT_STRING_CHARPOS (*it) = IT_STRING_BYTEPOS (*it) = 0;
19698 it->end_charpos = it->string_nchars = SCHARS (it->string);
19699 it->method = GET_FROM_STRING;
19700 it->stop_charpos = 0;
19701 it->prev_stop = 0;
19702 it->base_level_stop = 0;
19704 /* Force paragraph direction to be that of the parent
19705 buffer/string. */
19706 if (it->bidi_p && it->bidi_it.paragraph_dir == R2L)
19707 it->paragraph_embedding = it->bidi_it.paragraph_dir;
19708 else
19709 it->paragraph_embedding = L2R;
19711 /* Set up the bidi iterator for this display string. */
19712 if (it->bidi_p)
19714 it->bidi_it.string.lstring = it->string;
19715 it->bidi_it.string.s = NULL;
19716 it->bidi_it.string.schars = it->end_charpos;
19717 it->bidi_it.string.bufpos = IT_CHARPOS (*it);
19718 it->bidi_it.string.from_disp_str = it->string_from_display_prop_p;
19719 it->bidi_it.string.unibyte = !it->multibyte_p;
19720 it->bidi_it.w = it->w;
19721 bidi_init_it (0, 0, FRAME_WINDOW_P (it->f), &it->bidi_it);
19724 else if (CONSP (prop) && EQ (XCAR (prop), Qspace))
19726 it->method = GET_FROM_STRETCH;
19727 it->object = prop;
19729 #ifdef HAVE_WINDOW_SYSTEM
19730 else if (IMAGEP (prop))
19732 it->what = IT_IMAGE;
19733 it->image_id = lookup_image (it->f, prop);
19734 it->method = GET_FROM_IMAGE;
19736 #endif /* HAVE_WINDOW_SYSTEM */
19737 else
19739 pop_it (it); /* bogus display property, give up */
19740 return false;
19743 return true;
19746 /* Return the character-property PROP at the current position in IT. */
19748 static Lisp_Object
19749 get_it_property (struct it *it, Lisp_Object prop)
19751 Lisp_Object position, object = it->object;
19753 if (STRINGP (object))
19754 position = make_number (IT_STRING_CHARPOS (*it));
19755 else if (BUFFERP (object))
19757 position = make_number (IT_CHARPOS (*it));
19758 object = it->window;
19760 else
19761 return Qnil;
19763 return Fget_char_property (position, prop, object);
19766 /* See if there's a line- or wrap-prefix, and if so, push it on IT. */
19768 static void
19769 handle_line_prefix (struct it *it)
19771 Lisp_Object prefix;
19773 if (it->continuation_lines_width > 0)
19775 prefix = get_it_property (it, Qwrap_prefix);
19776 if (NILP (prefix))
19777 prefix = Vwrap_prefix;
19779 else
19781 prefix = get_it_property (it, Qline_prefix);
19782 if (NILP (prefix))
19783 prefix = Vline_prefix;
19785 if (! NILP (prefix) && push_prefix_prop (it, prefix))
19787 /* If the prefix is wider than the window, and we try to wrap
19788 it, it would acquire its own wrap prefix, and so on till the
19789 iterator stack overflows. So, don't wrap the prefix. */
19790 it->line_wrap = TRUNCATE;
19791 it->avoid_cursor_p = true;
19797 /* Remove N glyphs at the start of a reversed IT->glyph_row. Called
19798 only for R2L lines from display_line and display_string, when they
19799 decide that too many glyphs were produced by PRODUCE_GLYPHS, and
19800 the line/string needs to be continued on the next glyph row. */
19801 static void
19802 unproduce_glyphs (struct it *it, int n)
19804 struct glyph *glyph, *end;
19806 eassert (it->glyph_row);
19807 eassert (it->glyph_row->reversed_p);
19808 eassert (it->area == TEXT_AREA);
19809 eassert (n <= it->glyph_row->used[TEXT_AREA]);
19811 if (n > it->glyph_row->used[TEXT_AREA])
19812 n = it->glyph_row->used[TEXT_AREA];
19813 glyph = it->glyph_row->glyphs[TEXT_AREA] + n;
19814 end = it->glyph_row->glyphs[TEXT_AREA] + it->glyph_row->used[TEXT_AREA];
19815 for ( ; glyph < end; glyph++)
19816 glyph[-n] = *glyph;
19819 /* Find the positions in a bidi-reordered ROW to serve as ROW->minpos
19820 and ROW->maxpos. */
19821 static void
19822 find_row_edges (struct it *it, struct glyph_row *row,
19823 ptrdiff_t min_pos, ptrdiff_t min_bpos,
19824 ptrdiff_t max_pos, ptrdiff_t max_bpos)
19826 /* FIXME: Revisit this when glyph ``spilling'' in continuation
19827 lines' rows is implemented for bidi-reordered rows. */
19829 /* ROW->minpos is the value of min_pos, the minimal buffer position
19830 we have in ROW, or ROW->start.pos if that is smaller. */
19831 if (min_pos <= ZV && min_pos < row->start.pos.charpos)
19832 SET_TEXT_POS (row->minpos, min_pos, min_bpos);
19833 else
19834 /* We didn't find buffer positions smaller than ROW->start, or
19835 didn't find _any_ valid buffer positions in any of the glyphs,
19836 so we must trust the iterator's computed positions. */
19837 row->minpos = row->start.pos;
19838 if (max_pos <= 0)
19840 max_pos = CHARPOS (it->current.pos);
19841 max_bpos = BYTEPOS (it->current.pos);
19844 /* Here are the various use-cases for ending the row, and the
19845 corresponding values for ROW->maxpos:
19847 Line ends in a newline from buffer eol_pos + 1
19848 Line is continued from buffer max_pos + 1
19849 Line is truncated on right it->current.pos
19850 Line ends in a newline from string max_pos + 1(*)
19851 (*) + 1 only when line ends in a forward scan
19852 Line is continued from string max_pos
19853 Line is continued from display vector max_pos
19854 Line is entirely from a string min_pos == max_pos
19855 Line is entirely from a display vector min_pos == max_pos
19856 Line that ends at ZV ZV
19858 If you discover other use-cases, please add them here as
19859 appropriate. */
19860 if (row->ends_at_zv_p)
19861 row->maxpos = it->current.pos;
19862 else if (row->used[TEXT_AREA])
19864 bool seen_this_string = false;
19865 struct glyph_row *r1 = row - 1;
19867 /* Did we see the same display string on the previous row? */
19868 if (STRINGP (it->object)
19869 /* this is not the first row */
19870 && row > it->w->desired_matrix->rows
19871 /* previous row is not the header line */
19872 && !r1->mode_line_p
19873 /* previous row also ends in a newline from a string */
19874 && r1->ends_in_newline_from_string_p)
19876 struct glyph *start, *end;
19878 /* Search for the last glyph of the previous row that came
19879 from buffer or string. Depending on whether the row is
19880 L2R or R2L, we need to process it front to back or the
19881 other way round. */
19882 if (!r1->reversed_p)
19884 start = r1->glyphs[TEXT_AREA];
19885 end = start + r1->used[TEXT_AREA];
19886 /* Glyphs inserted by redisplay have nil as their object. */
19887 while (end > start
19888 && NILP ((end - 1)->object)
19889 && (end - 1)->charpos <= 0)
19890 --end;
19891 if (end > start)
19893 if (EQ ((end - 1)->object, it->object))
19894 seen_this_string = true;
19896 else
19897 /* If all the glyphs of the previous row were inserted
19898 by redisplay, it means the previous row was
19899 produced from a single newline, which is only
19900 possible if that newline came from the same string
19901 as the one which produced this ROW. */
19902 seen_this_string = true;
19904 else
19906 end = r1->glyphs[TEXT_AREA] - 1;
19907 start = end + r1->used[TEXT_AREA];
19908 while (end < start
19909 && NILP ((end + 1)->object)
19910 && (end + 1)->charpos <= 0)
19911 ++end;
19912 if (end < start)
19914 if (EQ ((end + 1)->object, it->object))
19915 seen_this_string = true;
19917 else
19918 seen_this_string = true;
19921 /* Take note of each display string that covers a newline only
19922 once, the first time we see it. This is for when a display
19923 string includes more than one newline in it. */
19924 if (row->ends_in_newline_from_string_p && !seen_this_string)
19926 /* If we were scanning the buffer forward when we displayed
19927 the string, we want to account for at least one buffer
19928 position that belongs to this row (position covered by
19929 the display string), so that cursor positioning will
19930 consider this row as a candidate when point is at the end
19931 of the visual line represented by this row. This is not
19932 required when scanning back, because max_pos will already
19933 have a much larger value. */
19934 if (CHARPOS (row->end.pos) > max_pos)
19935 INC_BOTH (max_pos, max_bpos);
19936 SET_TEXT_POS (row->maxpos, max_pos, max_bpos);
19938 else if (CHARPOS (it->eol_pos) > 0)
19939 SET_TEXT_POS (row->maxpos,
19940 CHARPOS (it->eol_pos) + 1, BYTEPOS (it->eol_pos) + 1);
19941 else if (row->continued_p)
19943 /* If max_pos is different from IT's current position, it
19944 means IT->method does not belong to the display element
19945 at max_pos. However, it also means that the display
19946 element at max_pos was displayed in its entirety on this
19947 line, which is equivalent to saying that the next line
19948 starts at the next buffer position. */
19949 if (IT_CHARPOS (*it) == max_pos && it->method != GET_FROM_BUFFER)
19950 SET_TEXT_POS (row->maxpos, max_pos, max_bpos);
19951 else
19953 INC_BOTH (max_pos, max_bpos);
19954 SET_TEXT_POS (row->maxpos, max_pos, max_bpos);
19957 else if (row->truncated_on_right_p)
19958 /* display_line already called reseat_at_next_visible_line_start,
19959 which puts the iterator at the beginning of the next line, in
19960 the logical order. */
19961 row->maxpos = it->current.pos;
19962 else if (max_pos == min_pos && it->method != GET_FROM_BUFFER)
19963 /* A line that is entirely from a string/image/stretch... */
19964 row->maxpos = row->minpos;
19965 else
19966 emacs_abort ();
19968 else
19969 row->maxpos = it->current.pos;
19972 /* Construct the glyph row IT->glyph_row in the desired matrix of
19973 IT->w from text at the current position of IT. See dispextern.h
19974 for an overview of struct it. Value is true if
19975 IT->glyph_row displays text, as opposed to a line displaying ZV
19976 only. */
19978 static bool
19979 display_line (struct it *it)
19981 struct glyph_row *row = it->glyph_row;
19982 Lisp_Object overlay_arrow_string;
19983 struct it wrap_it;
19984 void *wrap_data = NULL;
19985 bool may_wrap = false;
19986 int wrap_x IF_LINT (= 0);
19987 int wrap_row_used = -1;
19988 int wrap_row_ascent IF_LINT (= 0), wrap_row_height IF_LINT (= 0);
19989 int wrap_row_phys_ascent IF_LINT (= 0), wrap_row_phys_height IF_LINT (= 0);
19990 int wrap_row_extra_line_spacing IF_LINT (= 0);
19991 ptrdiff_t wrap_row_min_pos IF_LINT (= 0), wrap_row_min_bpos IF_LINT (= 0);
19992 ptrdiff_t wrap_row_max_pos IF_LINT (= 0), wrap_row_max_bpos IF_LINT (= 0);
19993 int cvpos;
19994 ptrdiff_t min_pos = ZV + 1, max_pos = 0;
19995 ptrdiff_t min_bpos IF_LINT (= 0), max_bpos IF_LINT (= 0);
19996 bool pending_handle_line_prefix = false;
19998 /* We always start displaying at hpos zero even if hscrolled. */
19999 eassert (it->hpos == 0 && it->current_x == 0);
20001 if (MATRIX_ROW_VPOS (row, it->w->desired_matrix)
20002 >= it->w->desired_matrix->nrows)
20004 it->w->nrows_scale_factor++;
20005 it->f->fonts_changed = true;
20006 return false;
20009 /* Clear the result glyph row and enable it. */
20010 prepare_desired_row (it->w, row, false);
20012 row->y = it->current_y;
20013 row->start = it->start;
20014 row->continuation_lines_width = it->continuation_lines_width;
20015 row->displays_text_p = true;
20016 row->starts_in_middle_of_char_p = it->starts_in_middle_of_char_p;
20017 it->starts_in_middle_of_char_p = false;
20019 /* Arrange the overlays nicely for our purposes. Usually, we call
20020 display_line on only one line at a time, in which case this
20021 can't really hurt too much, or we call it on lines which appear
20022 one after another in the buffer, in which case all calls to
20023 recenter_overlay_lists but the first will be pretty cheap. */
20024 recenter_overlay_lists (current_buffer, IT_CHARPOS (*it));
20026 /* Move over display elements that are not visible because we are
20027 hscrolled. This may stop at an x-position < IT->first_visible_x
20028 if the first glyph is partially visible or if we hit a line end. */
20029 if (it->current_x < it->first_visible_x)
20031 enum move_it_result move_result;
20033 this_line_min_pos = row->start.pos;
20034 move_result = move_it_in_display_line_to (it, ZV, it->first_visible_x,
20035 MOVE_TO_POS | MOVE_TO_X);
20036 /* If we are under a large hscroll, move_it_in_display_line_to
20037 could hit the end of the line without reaching
20038 it->first_visible_x. Pretend that we did reach it. This is
20039 especially important on a TTY, where we will call
20040 extend_face_to_end_of_line, which needs to know how many
20041 blank glyphs to produce. */
20042 if (it->current_x < it->first_visible_x
20043 && (move_result == MOVE_NEWLINE_OR_CR
20044 || move_result == MOVE_POS_MATCH_OR_ZV))
20045 it->current_x = it->first_visible_x;
20047 /* Record the smallest positions seen while we moved over
20048 display elements that are not visible. This is needed by
20049 redisplay_internal for optimizing the case where the cursor
20050 stays inside the same line. The rest of this function only
20051 considers positions that are actually displayed, so
20052 RECORD_MAX_MIN_POS will not otherwise record positions that
20053 are hscrolled to the left of the left edge of the window. */
20054 min_pos = CHARPOS (this_line_min_pos);
20055 min_bpos = BYTEPOS (this_line_min_pos);
20057 else if (it->area == TEXT_AREA)
20059 /* We only do this when not calling move_it_in_display_line_to
20060 above, because that function calls itself handle_line_prefix. */
20061 handle_line_prefix (it);
20063 else
20065 /* Line-prefix and wrap-prefix are always displayed in the text
20066 area. But if this is the first call to display_line after
20067 init_iterator, the iterator might have been set up to write
20068 into a marginal area, e.g. if the line begins with some
20069 display property that writes to the margins. So we need to
20070 wait with the call to handle_line_prefix until whatever
20071 writes to the margin has done its job. */
20072 pending_handle_line_prefix = true;
20075 /* Get the initial row height. This is either the height of the
20076 text hscrolled, if there is any, or zero. */
20077 row->ascent = it->max_ascent;
20078 row->height = it->max_ascent + it->max_descent;
20079 row->phys_ascent = it->max_phys_ascent;
20080 row->phys_height = it->max_phys_ascent + it->max_phys_descent;
20081 row->extra_line_spacing = it->max_extra_line_spacing;
20083 /* Utility macro to record max and min buffer positions seen until now. */
20084 #define RECORD_MAX_MIN_POS(IT) \
20085 do \
20087 bool composition_p \
20088 = !STRINGP ((IT)->string) && ((IT)->what == IT_COMPOSITION); \
20089 ptrdiff_t current_pos = \
20090 composition_p ? (IT)->cmp_it.charpos \
20091 : IT_CHARPOS (*(IT)); \
20092 ptrdiff_t current_bpos = \
20093 composition_p ? CHAR_TO_BYTE (current_pos) \
20094 : IT_BYTEPOS (*(IT)); \
20095 if (current_pos < min_pos) \
20097 min_pos = current_pos; \
20098 min_bpos = current_bpos; \
20100 if (IT_CHARPOS (*it) > max_pos) \
20102 max_pos = IT_CHARPOS (*it); \
20103 max_bpos = IT_BYTEPOS (*it); \
20106 while (false)
20108 /* Loop generating characters. The loop is left with IT on the next
20109 character to display. */
20110 while (true)
20112 int n_glyphs_before, hpos_before, x_before;
20113 int x, nglyphs;
20114 int ascent = 0, descent = 0, phys_ascent = 0, phys_descent = 0;
20116 /* Retrieve the next thing to display. Value is false if end of
20117 buffer reached. */
20118 if (!get_next_display_element (it))
20120 /* Maybe add a space at the end of this line that is used to
20121 display the cursor there under X. Set the charpos of the
20122 first glyph of blank lines not corresponding to any text
20123 to -1. */
20124 if (IT_OVERFLOW_NEWLINE_INTO_FRINGE (it))
20125 row->exact_window_width_line_p = true;
20126 else if ((append_space_for_newline (it, true)
20127 && row->used[TEXT_AREA] == 1)
20128 || row->used[TEXT_AREA] == 0)
20130 row->glyphs[TEXT_AREA]->charpos = -1;
20131 row->displays_text_p = false;
20133 if (!NILP (BVAR (XBUFFER (it->w->contents), indicate_empty_lines))
20134 && (!MINI_WINDOW_P (it->w)
20135 || (minibuf_level && EQ (it->window, minibuf_window))))
20136 row->indicate_empty_line_p = true;
20139 it->continuation_lines_width = 0;
20140 row->ends_at_zv_p = true;
20141 /* A row that displays right-to-left text must always have
20142 its last face extended all the way to the end of line,
20143 even if this row ends in ZV, because we still write to
20144 the screen left to right. We also need to extend the
20145 last face if the default face is remapped to some
20146 different face, otherwise the functions that clear
20147 portions of the screen will clear with the default face's
20148 background color. */
20149 if (row->reversed_p
20150 || lookup_basic_face (it->f, DEFAULT_FACE_ID) != DEFAULT_FACE_ID)
20151 extend_face_to_end_of_line (it);
20152 break;
20155 /* Now, get the metrics of what we want to display. This also
20156 generates glyphs in `row' (which is IT->glyph_row). */
20157 n_glyphs_before = row->used[TEXT_AREA];
20158 x = it->current_x;
20160 /* Remember the line height so far in case the next element doesn't
20161 fit on the line. */
20162 if (it->line_wrap != TRUNCATE)
20164 ascent = it->max_ascent;
20165 descent = it->max_descent;
20166 phys_ascent = it->max_phys_ascent;
20167 phys_descent = it->max_phys_descent;
20169 if (it->line_wrap == WORD_WRAP && it->area == TEXT_AREA)
20171 if (IT_DISPLAYING_WHITESPACE (it))
20172 may_wrap = true;
20173 else if (may_wrap)
20175 SAVE_IT (wrap_it, *it, wrap_data);
20176 wrap_x = x;
20177 wrap_row_used = row->used[TEXT_AREA];
20178 wrap_row_ascent = row->ascent;
20179 wrap_row_height = row->height;
20180 wrap_row_phys_ascent = row->phys_ascent;
20181 wrap_row_phys_height = row->phys_height;
20182 wrap_row_extra_line_spacing = row->extra_line_spacing;
20183 wrap_row_min_pos = min_pos;
20184 wrap_row_min_bpos = min_bpos;
20185 wrap_row_max_pos = max_pos;
20186 wrap_row_max_bpos = max_bpos;
20187 may_wrap = false;
20192 PRODUCE_GLYPHS (it);
20194 /* If this display element was in marginal areas, continue with
20195 the next one. */
20196 if (it->area != TEXT_AREA)
20198 row->ascent = max (row->ascent, it->max_ascent);
20199 row->height = max (row->height, it->max_ascent + it->max_descent);
20200 row->phys_ascent = max (row->phys_ascent, it->max_phys_ascent);
20201 row->phys_height = max (row->phys_height,
20202 it->max_phys_ascent + it->max_phys_descent);
20203 row->extra_line_spacing = max (row->extra_line_spacing,
20204 it->max_extra_line_spacing);
20205 set_iterator_to_next (it, true);
20206 /* If we didn't handle the line/wrap prefix above, and the
20207 call to set_iterator_to_next just switched to TEXT_AREA,
20208 process the prefix now. */
20209 if (it->area == TEXT_AREA && pending_handle_line_prefix)
20211 pending_handle_line_prefix = false;
20212 handle_line_prefix (it);
20214 continue;
20217 /* Does the display element fit on the line? If we truncate
20218 lines, we should draw past the right edge of the window. If
20219 we don't truncate, we want to stop so that we can display the
20220 continuation glyph before the right margin. If lines are
20221 continued, there are two possible strategies for characters
20222 resulting in more than 1 glyph (e.g. tabs): Display as many
20223 glyphs as possible in this line and leave the rest for the
20224 continuation line, or display the whole element in the next
20225 line. Original redisplay did the former, so we do it also. */
20226 nglyphs = row->used[TEXT_AREA] - n_glyphs_before;
20227 hpos_before = it->hpos;
20228 x_before = x;
20230 if (/* Not a newline. */
20231 nglyphs > 0
20232 /* Glyphs produced fit entirely in the line. */
20233 && it->current_x < it->last_visible_x)
20235 it->hpos += nglyphs;
20236 row->ascent = max (row->ascent, it->max_ascent);
20237 row->height = max (row->height, it->max_ascent + it->max_descent);
20238 row->phys_ascent = max (row->phys_ascent, it->max_phys_ascent);
20239 row->phys_height = max (row->phys_height,
20240 it->max_phys_ascent + it->max_phys_descent);
20241 row->extra_line_spacing = max (row->extra_line_spacing,
20242 it->max_extra_line_spacing);
20243 if (it->current_x - it->pixel_width < it->first_visible_x
20244 /* In R2L rows, we arrange in extend_face_to_end_of_line
20245 to add a right offset to the line, by a suitable
20246 change to the stretch glyph that is the leftmost
20247 glyph of the line. */
20248 && !row->reversed_p)
20249 row->x = x - it->first_visible_x;
20250 /* Record the maximum and minimum buffer positions seen so
20251 far in glyphs that will be displayed by this row. */
20252 if (it->bidi_p)
20253 RECORD_MAX_MIN_POS (it);
20255 else
20257 int i, new_x;
20258 struct glyph *glyph;
20260 for (i = 0; i < nglyphs; ++i, x = new_x)
20262 /* Identify the glyphs added by the last call to
20263 PRODUCE_GLYPHS. In R2L rows, they are prepended to
20264 the previous glyphs. */
20265 if (!row->reversed_p)
20266 glyph = row->glyphs[TEXT_AREA] + n_glyphs_before + i;
20267 else
20268 glyph = row->glyphs[TEXT_AREA] + nglyphs - 1 - i;
20269 new_x = x + glyph->pixel_width;
20271 if (/* Lines are continued. */
20272 it->line_wrap != TRUNCATE
20273 && (/* Glyph doesn't fit on the line. */
20274 new_x > it->last_visible_x
20275 /* Or it fits exactly on a window system frame. */
20276 || (new_x == it->last_visible_x
20277 && FRAME_WINDOW_P (it->f)
20278 && (row->reversed_p
20279 ? WINDOW_LEFT_FRINGE_WIDTH (it->w)
20280 : WINDOW_RIGHT_FRINGE_WIDTH (it->w)))))
20282 /* End of a continued line. */
20284 if (it->hpos == 0
20285 || (new_x == it->last_visible_x
20286 && FRAME_WINDOW_P (it->f)
20287 && (row->reversed_p
20288 ? WINDOW_LEFT_FRINGE_WIDTH (it->w)
20289 : WINDOW_RIGHT_FRINGE_WIDTH (it->w))))
20291 /* Current glyph is the only one on the line or
20292 fits exactly on the line. We must continue
20293 the line because we can't draw the cursor
20294 after the glyph. */
20295 row->continued_p = true;
20296 it->current_x = new_x;
20297 it->continuation_lines_width += new_x;
20298 ++it->hpos;
20299 if (i == nglyphs - 1)
20301 /* If line-wrap is on, check if a previous
20302 wrap point was found. */
20303 if (!IT_OVERFLOW_NEWLINE_INTO_FRINGE (it)
20304 && wrap_row_used > 0
20305 /* Even if there is a previous wrap
20306 point, continue the line here as
20307 usual, if (i) the previous character
20308 was a space or tab AND (ii) the
20309 current character is not. */
20310 && (!may_wrap
20311 || IT_DISPLAYING_WHITESPACE (it)))
20312 goto back_to_wrap;
20314 /* Record the maximum and minimum buffer
20315 positions seen so far in glyphs that will be
20316 displayed by this row. */
20317 if (it->bidi_p)
20318 RECORD_MAX_MIN_POS (it);
20319 set_iterator_to_next (it, true);
20320 if (IT_OVERFLOW_NEWLINE_INTO_FRINGE (it))
20322 if (!get_next_display_element (it))
20324 row->exact_window_width_line_p = true;
20325 it->continuation_lines_width = 0;
20326 row->continued_p = false;
20327 row->ends_at_zv_p = true;
20329 else if (ITERATOR_AT_END_OF_LINE_P (it))
20331 row->continued_p = false;
20332 row->exact_window_width_line_p = true;
20334 /* If line-wrap is on, check if a
20335 previous wrap point was found. */
20336 else if (wrap_row_used > 0
20337 /* Even if there is a previous wrap
20338 point, continue the line here as
20339 usual, if (i) the previous character
20340 was a space or tab AND (ii) the
20341 current character is not. */
20342 && (!may_wrap
20343 || IT_DISPLAYING_WHITESPACE (it)))
20344 goto back_to_wrap;
20348 else if (it->bidi_p)
20349 RECORD_MAX_MIN_POS (it);
20350 if (WINDOW_LEFT_MARGIN_WIDTH (it->w) > 0
20351 || WINDOW_RIGHT_MARGIN_WIDTH (it->w) > 0)
20352 extend_face_to_end_of_line (it);
20354 else if (CHAR_GLYPH_PADDING_P (*glyph)
20355 && !FRAME_WINDOW_P (it->f))
20357 /* A padding glyph that doesn't fit on this line.
20358 This means the whole character doesn't fit
20359 on the line. */
20360 if (row->reversed_p)
20361 unproduce_glyphs (it, row->used[TEXT_AREA]
20362 - n_glyphs_before);
20363 row->used[TEXT_AREA] = n_glyphs_before;
20365 /* Fill the rest of the row with continuation
20366 glyphs like in 20.x. */
20367 while (row->glyphs[TEXT_AREA] + row->used[TEXT_AREA]
20368 < row->glyphs[1 + TEXT_AREA])
20369 produce_special_glyphs (it, IT_CONTINUATION);
20371 row->continued_p = true;
20372 it->current_x = x_before;
20373 it->continuation_lines_width += x_before;
20375 /* Restore the height to what it was before the
20376 element not fitting on the line. */
20377 it->max_ascent = ascent;
20378 it->max_descent = descent;
20379 it->max_phys_ascent = phys_ascent;
20380 it->max_phys_descent = phys_descent;
20381 if (WINDOW_LEFT_MARGIN_WIDTH (it->w) > 0
20382 || WINDOW_RIGHT_MARGIN_WIDTH (it->w) > 0)
20383 extend_face_to_end_of_line (it);
20385 else if (wrap_row_used > 0)
20387 back_to_wrap:
20388 if (row->reversed_p)
20389 unproduce_glyphs (it,
20390 row->used[TEXT_AREA] - wrap_row_used);
20391 RESTORE_IT (it, &wrap_it, wrap_data);
20392 it->continuation_lines_width += wrap_x;
20393 row->used[TEXT_AREA] = wrap_row_used;
20394 row->ascent = wrap_row_ascent;
20395 row->height = wrap_row_height;
20396 row->phys_ascent = wrap_row_phys_ascent;
20397 row->phys_height = wrap_row_phys_height;
20398 row->extra_line_spacing = wrap_row_extra_line_spacing;
20399 min_pos = wrap_row_min_pos;
20400 min_bpos = wrap_row_min_bpos;
20401 max_pos = wrap_row_max_pos;
20402 max_bpos = wrap_row_max_bpos;
20403 row->continued_p = true;
20404 row->ends_at_zv_p = false;
20405 row->exact_window_width_line_p = false;
20406 it->continuation_lines_width += x;
20408 /* Make sure that a non-default face is extended
20409 up to the right margin of the window. */
20410 extend_face_to_end_of_line (it);
20412 else if (it->c == '\t' && FRAME_WINDOW_P (it->f))
20414 /* A TAB that extends past the right edge of the
20415 window. This produces a single glyph on
20416 window system frames. We leave the glyph in
20417 this row and let it fill the row, but don't
20418 consume the TAB. */
20419 if ((row->reversed_p
20420 ? WINDOW_LEFT_FRINGE_WIDTH (it->w)
20421 : WINDOW_RIGHT_FRINGE_WIDTH (it->w)) == 0)
20422 produce_special_glyphs (it, IT_CONTINUATION);
20423 it->continuation_lines_width += it->last_visible_x;
20424 row->ends_in_middle_of_char_p = true;
20425 row->continued_p = true;
20426 glyph->pixel_width = it->last_visible_x - x;
20427 it->starts_in_middle_of_char_p = true;
20428 if (WINDOW_LEFT_MARGIN_WIDTH (it->w) > 0
20429 || WINDOW_RIGHT_MARGIN_WIDTH (it->w) > 0)
20430 extend_face_to_end_of_line (it);
20432 else
20434 /* Something other than a TAB that draws past
20435 the right edge of the window. Restore
20436 positions to values before the element. */
20437 if (row->reversed_p)
20438 unproduce_glyphs (it, row->used[TEXT_AREA]
20439 - (n_glyphs_before + i));
20440 row->used[TEXT_AREA] = n_glyphs_before + i;
20442 /* Display continuation glyphs. */
20443 it->current_x = x_before;
20444 it->continuation_lines_width += x;
20445 if (!FRAME_WINDOW_P (it->f)
20446 || (row->reversed_p
20447 ? WINDOW_LEFT_FRINGE_WIDTH (it->w)
20448 : WINDOW_RIGHT_FRINGE_WIDTH (it->w)) == 0)
20449 produce_special_glyphs (it, IT_CONTINUATION);
20450 row->continued_p = true;
20452 extend_face_to_end_of_line (it);
20454 if (nglyphs > 1 && i > 0)
20456 row->ends_in_middle_of_char_p = true;
20457 it->starts_in_middle_of_char_p = true;
20460 /* Restore the height to what it was before the
20461 element not fitting on the line. */
20462 it->max_ascent = ascent;
20463 it->max_descent = descent;
20464 it->max_phys_ascent = phys_ascent;
20465 it->max_phys_descent = phys_descent;
20468 break;
20470 else if (new_x > it->first_visible_x)
20472 /* Increment number of glyphs actually displayed. */
20473 ++it->hpos;
20475 /* Record the maximum and minimum buffer positions
20476 seen so far in glyphs that will be displayed by
20477 this row. */
20478 if (it->bidi_p)
20479 RECORD_MAX_MIN_POS (it);
20481 if (x < it->first_visible_x && !row->reversed_p)
20482 /* Glyph is partially visible, i.e. row starts at
20483 negative X position. Don't do that in R2L
20484 rows, where we arrange to add a right offset to
20485 the line in extend_face_to_end_of_line, by a
20486 suitable change to the stretch glyph that is
20487 the leftmost glyph of the line. */
20488 row->x = x - it->first_visible_x;
20489 /* When the last glyph of an R2L row only fits
20490 partially on the line, we need to set row->x to a
20491 negative offset, so that the leftmost glyph is
20492 the one that is partially visible. But if we are
20493 going to produce the truncation glyph, this will
20494 be taken care of in produce_special_glyphs. */
20495 if (row->reversed_p
20496 && new_x > it->last_visible_x
20497 && !(it->line_wrap == TRUNCATE
20498 && WINDOW_LEFT_FRINGE_WIDTH (it->w) == 0))
20500 eassert (FRAME_WINDOW_P (it->f));
20501 row->x = it->last_visible_x - new_x;
20504 else
20506 /* Glyph is completely off the left margin of the
20507 window. This should not happen because of the
20508 move_it_in_display_line at the start of this
20509 function, unless the text display area of the
20510 window is empty. */
20511 eassert (it->first_visible_x <= it->last_visible_x);
20514 /* Even if this display element produced no glyphs at all,
20515 we want to record its position. */
20516 if (it->bidi_p && nglyphs == 0)
20517 RECORD_MAX_MIN_POS (it);
20519 row->ascent = max (row->ascent, it->max_ascent);
20520 row->height = max (row->height, it->max_ascent + it->max_descent);
20521 row->phys_ascent = max (row->phys_ascent, it->max_phys_ascent);
20522 row->phys_height = max (row->phys_height,
20523 it->max_phys_ascent + it->max_phys_descent);
20524 row->extra_line_spacing = max (row->extra_line_spacing,
20525 it->max_extra_line_spacing);
20527 /* End of this display line if row is continued. */
20528 if (row->continued_p || row->ends_at_zv_p)
20529 break;
20532 at_end_of_line:
20533 /* Is this a line end? If yes, we're also done, after making
20534 sure that a non-default face is extended up to the right
20535 margin of the window. */
20536 if (ITERATOR_AT_END_OF_LINE_P (it))
20538 int used_before = row->used[TEXT_AREA];
20540 row->ends_in_newline_from_string_p = STRINGP (it->object);
20542 /* Add a space at the end of the line that is used to
20543 display the cursor there. */
20544 if (!IT_OVERFLOW_NEWLINE_INTO_FRINGE (it))
20545 append_space_for_newline (it, false);
20547 /* Extend the face to the end of the line. */
20548 extend_face_to_end_of_line (it);
20550 /* Make sure we have the position. */
20551 if (used_before == 0)
20552 row->glyphs[TEXT_AREA]->charpos = CHARPOS (it->position);
20554 /* Record the position of the newline, for use in
20555 find_row_edges. */
20556 it->eol_pos = it->current.pos;
20558 /* Consume the line end. This skips over invisible lines. */
20559 set_iterator_to_next (it, true);
20560 it->continuation_lines_width = 0;
20561 break;
20564 /* Proceed with next display element. Note that this skips
20565 over lines invisible because of selective display. */
20566 set_iterator_to_next (it, true);
20568 /* If we truncate lines, we are done when the last displayed
20569 glyphs reach past the right margin of the window. */
20570 if (it->line_wrap == TRUNCATE
20571 && ((FRAME_WINDOW_P (it->f)
20572 /* Images are preprocessed in produce_image_glyph such
20573 that they are cropped at the right edge of the
20574 window, so an image glyph will always end exactly at
20575 last_visible_x, even if there's no right fringe. */
20576 && ((row->reversed_p
20577 ? WINDOW_LEFT_FRINGE_WIDTH (it->w)
20578 : WINDOW_RIGHT_FRINGE_WIDTH (it->w))
20579 || it->what == IT_IMAGE))
20580 ? (it->current_x >= it->last_visible_x)
20581 : (it->current_x > it->last_visible_x)))
20583 /* Maybe add truncation glyphs. */
20584 if (!FRAME_WINDOW_P (it->f)
20585 || (row->reversed_p
20586 ? WINDOW_LEFT_FRINGE_WIDTH (it->w)
20587 : WINDOW_RIGHT_FRINGE_WIDTH (it->w)) == 0)
20589 int i, n;
20591 if (!row->reversed_p)
20593 for (i = row->used[TEXT_AREA] - 1; i > 0; --i)
20594 if (!CHAR_GLYPH_PADDING_P (row->glyphs[TEXT_AREA][i]))
20595 break;
20597 else
20599 for (i = 0; i < row->used[TEXT_AREA]; i++)
20600 if (!CHAR_GLYPH_PADDING_P (row->glyphs[TEXT_AREA][i]))
20601 break;
20602 /* Remove any padding glyphs at the front of ROW, to
20603 make room for the truncation glyphs we will be
20604 adding below. The loop below always inserts at
20605 least one truncation glyph, so also remove the
20606 last glyph added to ROW. */
20607 unproduce_glyphs (it, i + 1);
20608 /* Adjust i for the loop below. */
20609 i = row->used[TEXT_AREA] - (i + 1);
20612 /* produce_special_glyphs overwrites the last glyph, so
20613 we don't want that if we want to keep that last
20614 glyph, which means it's an image. */
20615 if (it->current_x > it->last_visible_x)
20617 it->current_x = x_before;
20618 if (!FRAME_WINDOW_P (it->f))
20620 for (n = row->used[TEXT_AREA]; i < n; ++i)
20622 row->used[TEXT_AREA] = i;
20623 produce_special_glyphs (it, IT_TRUNCATION);
20626 else
20628 row->used[TEXT_AREA] = i;
20629 produce_special_glyphs (it, IT_TRUNCATION);
20631 it->hpos = hpos_before;
20634 else if (IT_OVERFLOW_NEWLINE_INTO_FRINGE (it))
20636 /* Don't truncate if we can overflow newline into fringe. */
20637 if (!get_next_display_element (it))
20639 it->continuation_lines_width = 0;
20640 row->ends_at_zv_p = true;
20641 row->exact_window_width_line_p = true;
20642 break;
20644 if (ITERATOR_AT_END_OF_LINE_P (it))
20646 row->exact_window_width_line_p = true;
20647 goto at_end_of_line;
20649 it->current_x = x_before;
20650 it->hpos = hpos_before;
20653 row->truncated_on_right_p = true;
20654 it->continuation_lines_width = 0;
20655 reseat_at_next_visible_line_start (it, false);
20656 /* We insist below that IT's position be at ZV because in
20657 bidi-reordered lines the character at visible line start
20658 might not be the character that follows the newline in
20659 the logical order. */
20660 if (IT_BYTEPOS (*it) > BEG_BYTE)
20661 row->ends_at_zv_p =
20662 IT_BYTEPOS (*it) >= ZV_BYTE && FETCH_BYTE (ZV_BYTE - 1) != '\n';
20663 else
20664 row->ends_at_zv_p = false;
20665 break;
20669 if (wrap_data)
20670 bidi_unshelve_cache (wrap_data, true);
20672 /* If line is not empty and hscrolled, maybe insert truncation glyphs
20673 at the left window margin. */
20674 if (it->first_visible_x
20675 && IT_CHARPOS (*it) != CHARPOS (row->start.pos))
20677 if (!FRAME_WINDOW_P (it->f)
20678 || (((row->reversed_p
20679 ? WINDOW_RIGHT_FRINGE_WIDTH (it->w)
20680 : WINDOW_LEFT_FRINGE_WIDTH (it->w)) == 0)
20681 /* Don't let insert_left_trunc_glyphs overwrite the
20682 first glyph of the row if it is an image. */
20683 && row->glyphs[TEXT_AREA]->type != IMAGE_GLYPH))
20684 insert_left_trunc_glyphs (it);
20685 row->truncated_on_left_p = true;
20688 /* Remember the position at which this line ends.
20690 BIDI Note: any code that needs MATRIX_ROW_START/END_CHARPOS
20691 cannot be before the call to find_row_edges below, since that is
20692 where these positions are determined. */
20693 row->end = it->current;
20694 if (!it->bidi_p)
20696 row->minpos = row->start.pos;
20697 row->maxpos = row->end.pos;
20699 else
20701 /* ROW->minpos and ROW->maxpos must be the smallest and
20702 `1 + the largest' buffer positions in ROW. But if ROW was
20703 bidi-reordered, these two positions can be anywhere in the
20704 row, so we must determine them now. */
20705 find_row_edges (it, row, min_pos, min_bpos, max_pos, max_bpos);
20708 /* If the start of this line is the overlay arrow-position, then
20709 mark this glyph row as the one containing the overlay arrow.
20710 This is clearly a mess with variable size fonts. It would be
20711 better to let it be displayed like cursors under X. */
20712 if ((MATRIX_ROW_DISPLAYS_TEXT_P (row) || !overlay_arrow_seen)
20713 && (overlay_arrow_string = overlay_arrow_at_row (it, row),
20714 !NILP (overlay_arrow_string)))
20716 /* Overlay arrow in window redisplay is a fringe bitmap. */
20717 if (STRINGP (overlay_arrow_string))
20719 struct glyph_row *arrow_row
20720 = get_overlay_arrow_glyph_row (it->w, overlay_arrow_string);
20721 struct glyph *glyph = arrow_row->glyphs[TEXT_AREA];
20722 struct glyph *arrow_end = glyph + arrow_row->used[TEXT_AREA];
20723 struct glyph *p = row->glyphs[TEXT_AREA];
20724 struct glyph *p2, *end;
20726 /* Copy the arrow glyphs. */
20727 while (glyph < arrow_end)
20728 *p++ = *glyph++;
20730 /* Throw away padding glyphs. */
20731 p2 = p;
20732 end = row->glyphs[TEXT_AREA] + row->used[TEXT_AREA];
20733 while (p2 < end && CHAR_GLYPH_PADDING_P (*p2))
20734 ++p2;
20735 if (p2 > p)
20737 while (p2 < end)
20738 *p++ = *p2++;
20739 row->used[TEXT_AREA] = p2 - row->glyphs[TEXT_AREA];
20742 else
20744 eassert (INTEGERP (overlay_arrow_string));
20745 row->overlay_arrow_bitmap = XINT (overlay_arrow_string);
20747 overlay_arrow_seen = true;
20750 /* Highlight trailing whitespace. */
20751 if (!NILP (Vshow_trailing_whitespace))
20752 highlight_trailing_whitespace (it->f, it->glyph_row);
20754 /* Compute pixel dimensions of this line. */
20755 compute_line_metrics (it);
20757 /* Implementation note: No changes in the glyphs of ROW or in their
20758 faces can be done past this point, because compute_line_metrics
20759 computes ROW's hash value and stores it within the glyph_row
20760 structure. */
20762 /* Record whether this row ends inside an ellipsis. */
20763 row->ends_in_ellipsis_p
20764 = (it->method == GET_FROM_DISPLAY_VECTOR
20765 && it->ellipsis_p);
20767 /* Save fringe bitmaps in this row. */
20768 row->left_user_fringe_bitmap = it->left_user_fringe_bitmap;
20769 row->left_user_fringe_face_id = it->left_user_fringe_face_id;
20770 row->right_user_fringe_bitmap = it->right_user_fringe_bitmap;
20771 row->right_user_fringe_face_id = it->right_user_fringe_face_id;
20773 it->left_user_fringe_bitmap = 0;
20774 it->left_user_fringe_face_id = 0;
20775 it->right_user_fringe_bitmap = 0;
20776 it->right_user_fringe_face_id = 0;
20778 /* Maybe set the cursor. */
20779 cvpos = it->w->cursor.vpos;
20780 if ((cvpos < 0
20781 /* In bidi-reordered rows, keep checking for proper cursor
20782 position even if one has been found already, because buffer
20783 positions in such rows change non-linearly with ROW->VPOS,
20784 when a line is continued. One exception: when we are at ZV,
20785 display cursor on the first suitable glyph row, since all
20786 the empty rows after that also have their position set to ZV. */
20787 /* FIXME: Revisit this when glyph ``spilling'' in continuation
20788 lines' rows is implemented for bidi-reordered rows. */
20789 || (it->bidi_p
20790 && !MATRIX_ROW (it->w->desired_matrix, cvpos)->ends_at_zv_p))
20791 && PT >= MATRIX_ROW_START_CHARPOS (row)
20792 && PT <= MATRIX_ROW_END_CHARPOS (row)
20793 && cursor_row_p (row))
20794 set_cursor_from_row (it->w, row, it->w->desired_matrix, 0, 0, 0, 0);
20796 /* Prepare for the next line. This line starts horizontally at (X
20797 HPOS) = (0 0). Vertical positions are incremented. As a
20798 convenience for the caller, IT->glyph_row is set to the next
20799 row to be used. */
20800 it->current_x = it->hpos = 0;
20801 it->current_y += row->height;
20802 SET_TEXT_POS (it->eol_pos, 0, 0);
20803 ++it->vpos;
20804 ++it->glyph_row;
20805 /* The next row should by default use the same value of the
20806 reversed_p flag as this one. set_iterator_to_next decides when
20807 it's a new paragraph, and PRODUCE_GLYPHS recomputes the value of
20808 the flag accordingly. */
20809 if (it->glyph_row < MATRIX_BOTTOM_TEXT_ROW (it->w->desired_matrix, it->w))
20810 it->glyph_row->reversed_p = row->reversed_p;
20811 it->start = row->end;
20812 return MATRIX_ROW_DISPLAYS_TEXT_P (row);
20814 #undef RECORD_MAX_MIN_POS
20817 DEFUN ("current-bidi-paragraph-direction", Fcurrent_bidi_paragraph_direction,
20818 Scurrent_bidi_paragraph_direction, 0, 1, 0,
20819 doc: /* Return paragraph direction at point in BUFFER.
20820 Value is either `left-to-right' or `right-to-left'.
20821 If BUFFER is omitted or nil, it defaults to the current buffer.
20823 Paragraph direction determines how the text in the paragraph is displayed.
20824 In left-to-right paragraphs, text begins at the left margin of the window
20825 and the reading direction is generally left to right. In right-to-left
20826 paragraphs, text begins at the right margin and is read from right to left.
20828 See also `bidi-paragraph-direction'. */)
20829 (Lisp_Object buffer)
20831 struct buffer *buf = current_buffer;
20832 struct buffer *old = buf;
20834 if (! NILP (buffer))
20836 CHECK_BUFFER (buffer);
20837 buf = XBUFFER (buffer);
20840 if (NILP (BVAR (buf, bidi_display_reordering))
20841 || NILP (BVAR (buf, enable_multibyte_characters))
20842 /* When we are loading loadup.el, the character property tables
20843 needed for bidi iteration are not yet available. */
20844 || !NILP (Vpurify_flag))
20845 return Qleft_to_right;
20846 else if (!NILP (BVAR (buf, bidi_paragraph_direction)))
20847 return BVAR (buf, bidi_paragraph_direction);
20848 else
20850 /* Determine the direction from buffer text. We could try to
20851 use current_matrix if it is up to date, but this seems fast
20852 enough as it is. */
20853 struct bidi_it itb;
20854 ptrdiff_t pos = BUF_PT (buf);
20855 ptrdiff_t bytepos = BUF_PT_BYTE (buf);
20856 int c;
20857 void *itb_data = bidi_shelve_cache ();
20859 set_buffer_temp (buf);
20860 /* bidi_paragraph_init finds the base direction of the paragraph
20861 by searching forward from paragraph start. We need the base
20862 direction of the current or _previous_ paragraph, so we need
20863 to make sure we are within that paragraph. To that end, find
20864 the previous non-empty line. */
20865 if (pos >= ZV && pos > BEGV)
20866 DEC_BOTH (pos, bytepos);
20867 AUTO_STRING (trailing_white_space, "[\f\t ]*\n");
20868 if (fast_looking_at (trailing_white_space,
20869 pos, bytepos, ZV, ZV_BYTE, Qnil) > 0)
20871 while ((c = FETCH_BYTE (bytepos)) == '\n'
20872 || c == ' ' || c == '\t' || c == '\f')
20874 if (bytepos <= BEGV_BYTE)
20875 break;
20876 bytepos--;
20877 pos--;
20879 while (!CHAR_HEAD_P (FETCH_BYTE (bytepos)))
20880 bytepos--;
20882 bidi_init_it (pos, bytepos, FRAME_WINDOW_P (SELECTED_FRAME ()), &itb);
20883 itb.paragraph_dir = NEUTRAL_DIR;
20884 itb.string.s = NULL;
20885 itb.string.lstring = Qnil;
20886 itb.string.bufpos = 0;
20887 itb.string.from_disp_str = false;
20888 itb.string.unibyte = false;
20889 /* We have no window to use here for ignoring window-specific
20890 overlays. Using NULL for window pointer will cause
20891 compute_display_string_pos to use the current buffer. */
20892 itb.w = NULL;
20893 bidi_paragraph_init (NEUTRAL_DIR, &itb, true);
20894 bidi_unshelve_cache (itb_data, false);
20895 set_buffer_temp (old);
20896 switch (itb.paragraph_dir)
20898 case L2R:
20899 return Qleft_to_right;
20900 break;
20901 case R2L:
20902 return Qright_to_left;
20903 break;
20904 default:
20905 emacs_abort ();
20910 DEFUN ("bidi-find-overridden-directionality",
20911 Fbidi_find_overridden_directionality,
20912 Sbidi_find_overridden_directionality, 2, 3, 0,
20913 doc: /* Return position between FROM and TO where directionality was overridden.
20915 This function returns the first character position in the specified
20916 region of OBJECT where there is a character whose `bidi-class' property
20917 is `L', but which was forced to display as `R' by a directional
20918 override, and likewise with characters whose `bidi-class' is `R'
20919 or `AL' that were forced to display as `L'.
20921 If no such character is found, the function returns nil.
20923 OBJECT is a Lisp string or buffer to search for overridden
20924 directionality, and defaults to the current buffer if nil or omitted.
20925 OBJECT can also be a window, in which case the function will search
20926 the buffer displayed in that window. Passing the window instead of
20927 a buffer is preferable when the buffer is displayed in some window,
20928 because this function will then be able to correctly account for
20929 window-specific overlays, which can affect the results.
20931 Strong directional characters `L', `R', and `AL' can have their
20932 intrinsic directionality overridden by directional override
20933 control characters RLO \(u+202e) and LRO \(u+202d). See the
20934 function `get-char-code-property' for a way to inquire about
20935 the `bidi-class' property of a character. */)
20936 (Lisp_Object from, Lisp_Object to, Lisp_Object object)
20938 struct buffer *buf = current_buffer;
20939 struct buffer *old = buf;
20940 struct window *w = NULL;
20941 bool frame_window_p = FRAME_WINDOW_P (SELECTED_FRAME ());
20942 struct bidi_it itb;
20943 ptrdiff_t from_pos, to_pos, from_bpos;
20944 void *itb_data;
20946 if (!NILP (object))
20948 if (BUFFERP (object))
20949 buf = XBUFFER (object);
20950 else if (WINDOWP (object))
20952 w = decode_live_window (object);
20953 buf = XBUFFER (w->contents);
20954 frame_window_p = FRAME_WINDOW_P (XFRAME (w->frame));
20956 else
20957 CHECK_STRING (object);
20960 if (STRINGP (object))
20962 /* Characters in unibyte strings are always treated by bidi.c as
20963 strong LTR. */
20964 if (!STRING_MULTIBYTE (object)
20965 /* When we are loading loadup.el, the character property
20966 tables needed for bidi iteration are not yet
20967 available. */
20968 || !NILP (Vpurify_flag))
20969 return Qnil;
20971 validate_subarray (object, from, to, SCHARS (object), &from_pos, &to_pos);
20972 if (from_pos >= SCHARS (object))
20973 return Qnil;
20975 /* Set up the bidi iterator. */
20976 itb_data = bidi_shelve_cache ();
20977 itb.paragraph_dir = NEUTRAL_DIR;
20978 itb.string.lstring = object;
20979 itb.string.s = NULL;
20980 itb.string.schars = SCHARS (object);
20981 itb.string.bufpos = 0;
20982 itb.string.from_disp_str = false;
20983 itb.string.unibyte = false;
20984 itb.w = w;
20985 bidi_init_it (0, 0, frame_window_p, &itb);
20987 else
20989 /* Nothing this fancy can happen in unibyte buffers, or in a
20990 buffer that disabled reordering, or if FROM is at EOB. */
20991 if (NILP (BVAR (buf, bidi_display_reordering))
20992 || NILP (BVAR (buf, enable_multibyte_characters))
20993 /* When we are loading loadup.el, the character property
20994 tables needed for bidi iteration are not yet
20995 available. */
20996 || !NILP (Vpurify_flag))
20997 return Qnil;
20999 set_buffer_temp (buf);
21000 validate_region (&from, &to);
21001 from_pos = XINT (from);
21002 to_pos = XINT (to);
21003 if (from_pos >= ZV)
21004 return Qnil;
21006 /* Set up the bidi iterator. */
21007 itb_data = bidi_shelve_cache ();
21008 from_bpos = CHAR_TO_BYTE (from_pos);
21009 if (from_pos == BEGV)
21011 itb.charpos = BEGV;
21012 itb.bytepos = BEGV_BYTE;
21014 else if (FETCH_CHAR (from_bpos - 1) == '\n')
21016 itb.charpos = from_pos;
21017 itb.bytepos = from_bpos;
21019 else
21020 itb.charpos = find_newline_no_quit (from_pos, CHAR_TO_BYTE (from_pos),
21021 -1, &itb.bytepos);
21022 itb.paragraph_dir = NEUTRAL_DIR;
21023 itb.string.s = NULL;
21024 itb.string.lstring = Qnil;
21025 itb.string.bufpos = 0;
21026 itb.string.from_disp_str = false;
21027 itb.string.unibyte = false;
21028 itb.w = w;
21029 bidi_init_it (itb.charpos, itb.bytepos, frame_window_p, &itb);
21032 ptrdiff_t found;
21033 do {
21034 /* For the purposes of this function, the actual base direction of
21035 the paragraph doesn't matter, so just set it to L2R. */
21036 bidi_paragraph_init (L2R, &itb, false);
21037 while ((found = bidi_find_first_overridden (&itb)) < from_pos)
21039 } while (found == ZV && itb.ch == '\n' && itb.charpos < to_pos);
21041 bidi_unshelve_cache (itb_data, false);
21042 set_buffer_temp (old);
21044 return (from_pos <= found && found < to_pos) ? make_number (found) : Qnil;
21047 DEFUN ("move-point-visually", Fmove_point_visually,
21048 Smove_point_visually, 1, 1, 0,
21049 doc: /* Move point in the visual order in the specified DIRECTION.
21050 DIRECTION can be 1, meaning move to the right, or -1, which moves to the
21051 left.
21053 Value is the new character position of point. */)
21054 (Lisp_Object direction)
21056 struct window *w = XWINDOW (selected_window);
21057 struct buffer *b = XBUFFER (w->contents);
21058 struct glyph_row *row;
21059 int dir;
21060 Lisp_Object paragraph_dir;
21062 #define ROW_GLYPH_NEWLINE_P(ROW,GLYPH) \
21063 (!(ROW)->continued_p \
21064 && NILP ((GLYPH)->object) \
21065 && (GLYPH)->type == CHAR_GLYPH \
21066 && (GLYPH)->u.ch == ' ' \
21067 && (GLYPH)->charpos >= 0 \
21068 && !(GLYPH)->avoid_cursor_p)
21070 CHECK_NUMBER (direction);
21071 dir = XINT (direction);
21072 if (dir > 0)
21073 dir = 1;
21074 else
21075 dir = -1;
21077 /* If current matrix is up-to-date, we can use the information
21078 recorded in the glyphs, at least as long as the goal is on the
21079 screen. */
21080 if (w->window_end_valid
21081 && !windows_or_buffers_changed
21082 && b
21083 && !b->clip_changed
21084 && !b->prevent_redisplay_optimizations_p
21085 && !window_outdated (w)
21086 /* We rely below on the cursor coordinates to be up to date, but
21087 we cannot trust them if some command moved point since the
21088 last complete redisplay. */
21089 && w->last_point == BUF_PT (b)
21090 && w->cursor.vpos >= 0
21091 && w->cursor.vpos < w->current_matrix->nrows
21092 && (row = MATRIX_ROW (w->current_matrix, w->cursor.vpos))->enabled_p)
21094 struct glyph *g = row->glyphs[TEXT_AREA];
21095 struct glyph *e = dir > 0 ? g + row->used[TEXT_AREA] : g - 1;
21096 struct glyph *gpt = g + w->cursor.hpos;
21098 for (g = gpt + dir; (dir > 0 ? g < e : g > e); g += dir)
21100 if (BUFFERP (g->object) && g->charpos != PT)
21102 SET_PT (g->charpos);
21103 w->cursor.vpos = -1;
21104 return make_number (PT);
21106 else if (!NILP (g->object) && !EQ (g->object, gpt->object))
21108 ptrdiff_t new_pos;
21110 if (BUFFERP (gpt->object))
21112 new_pos = PT;
21113 if ((gpt->resolved_level - row->reversed_p) % 2 == 0)
21114 new_pos += (row->reversed_p ? -dir : dir);
21115 else
21116 new_pos -= (row->reversed_p ? -dir : dir);
21118 else if (BUFFERP (g->object))
21119 new_pos = g->charpos;
21120 else
21121 break;
21122 SET_PT (new_pos);
21123 w->cursor.vpos = -1;
21124 return make_number (PT);
21126 else if (ROW_GLYPH_NEWLINE_P (row, g))
21128 /* Glyphs inserted at the end of a non-empty line for
21129 positioning the cursor have zero charpos, so we must
21130 deduce the value of point by other means. */
21131 if (g->charpos > 0)
21132 SET_PT (g->charpos);
21133 else if (row->ends_at_zv_p && PT != ZV)
21134 SET_PT (ZV);
21135 else if (PT != MATRIX_ROW_END_CHARPOS (row) - 1)
21136 SET_PT (MATRIX_ROW_END_CHARPOS (row) - 1);
21137 else
21138 break;
21139 w->cursor.vpos = -1;
21140 return make_number (PT);
21143 if (g == e || NILP (g->object))
21145 if (row->truncated_on_left_p || row->truncated_on_right_p)
21146 goto simulate_display;
21147 if (!row->reversed_p)
21148 row += dir;
21149 else
21150 row -= dir;
21151 if (row < MATRIX_FIRST_TEXT_ROW (w->current_matrix)
21152 || row > MATRIX_BOTTOM_TEXT_ROW (w->current_matrix, w))
21153 goto simulate_display;
21155 if (dir > 0)
21157 if (row->reversed_p && !row->continued_p)
21159 SET_PT (MATRIX_ROW_END_CHARPOS (row) - 1);
21160 w->cursor.vpos = -1;
21161 return make_number (PT);
21163 g = row->glyphs[TEXT_AREA];
21164 e = g + row->used[TEXT_AREA];
21165 for ( ; g < e; g++)
21167 if (BUFFERP (g->object)
21168 /* Empty lines have only one glyph, which stands
21169 for the newline, and whose charpos is the
21170 buffer position of the newline. */
21171 || ROW_GLYPH_NEWLINE_P (row, g)
21172 /* When the buffer ends in a newline, the line at
21173 EOB also has one glyph, but its charpos is -1. */
21174 || (row->ends_at_zv_p
21175 && !row->reversed_p
21176 && NILP (g->object)
21177 && g->type == CHAR_GLYPH
21178 && g->u.ch == ' '))
21180 if (g->charpos > 0)
21181 SET_PT (g->charpos);
21182 else if (!row->reversed_p
21183 && row->ends_at_zv_p
21184 && PT != ZV)
21185 SET_PT (ZV);
21186 else
21187 continue;
21188 w->cursor.vpos = -1;
21189 return make_number (PT);
21193 else
21195 if (!row->reversed_p && !row->continued_p)
21197 SET_PT (MATRIX_ROW_END_CHARPOS (row) - 1);
21198 w->cursor.vpos = -1;
21199 return make_number (PT);
21201 e = row->glyphs[TEXT_AREA];
21202 g = e + row->used[TEXT_AREA] - 1;
21203 for ( ; g >= e; g--)
21205 if (BUFFERP (g->object)
21206 || (ROW_GLYPH_NEWLINE_P (row, g)
21207 && g->charpos > 0)
21208 /* Empty R2L lines on GUI frames have the buffer
21209 position of the newline stored in the stretch
21210 glyph. */
21211 || g->type == STRETCH_GLYPH
21212 || (row->ends_at_zv_p
21213 && row->reversed_p
21214 && NILP (g->object)
21215 && g->type == CHAR_GLYPH
21216 && g->u.ch == ' '))
21218 if (g->charpos > 0)
21219 SET_PT (g->charpos);
21220 else if (row->reversed_p
21221 && row->ends_at_zv_p
21222 && PT != ZV)
21223 SET_PT (ZV);
21224 else
21225 continue;
21226 w->cursor.vpos = -1;
21227 return make_number (PT);
21234 simulate_display:
21236 /* If we wind up here, we failed to move by using the glyphs, so we
21237 need to simulate display instead. */
21239 if (b)
21240 paragraph_dir = Fcurrent_bidi_paragraph_direction (w->contents);
21241 else
21242 paragraph_dir = Qleft_to_right;
21243 if (EQ (paragraph_dir, Qright_to_left))
21244 dir = -dir;
21245 if (PT <= BEGV && dir < 0)
21246 xsignal0 (Qbeginning_of_buffer);
21247 else if (PT >= ZV && dir > 0)
21248 xsignal0 (Qend_of_buffer);
21249 else
21251 struct text_pos pt;
21252 struct it it;
21253 int pt_x, target_x, pixel_width, pt_vpos;
21254 bool at_eol_p;
21255 bool overshoot_expected = false;
21256 bool target_is_eol_p = false;
21258 /* Setup the arena. */
21259 SET_TEXT_POS (pt, PT, PT_BYTE);
21260 start_display (&it, w, pt);
21262 if (it.cmp_it.id < 0
21263 && it.method == GET_FROM_STRING
21264 && it.area == TEXT_AREA
21265 && it.string_from_display_prop_p
21266 && (it.sp > 0 && it.stack[it.sp - 1].method == GET_FROM_BUFFER))
21267 overshoot_expected = true;
21269 /* Find the X coordinate of point. We start from the beginning
21270 of this or previous line to make sure we are before point in
21271 the logical order (since the move_it_* functions can only
21272 move forward). */
21273 reseat:
21274 reseat_at_previous_visible_line_start (&it);
21275 it.current_x = it.hpos = it.current_y = it.vpos = 0;
21276 if (IT_CHARPOS (it) != PT)
21278 move_it_to (&it, overshoot_expected ? PT - 1 : PT,
21279 -1, -1, -1, MOVE_TO_POS);
21280 /* If we missed point because the character there is
21281 displayed out of a display vector that has more than one
21282 glyph, retry expecting overshoot. */
21283 if (it.method == GET_FROM_DISPLAY_VECTOR
21284 && it.current.dpvec_index > 0
21285 && !overshoot_expected)
21287 overshoot_expected = true;
21288 goto reseat;
21290 else if (IT_CHARPOS (it) != PT && !overshoot_expected)
21291 move_it_in_display_line (&it, PT, -1, MOVE_TO_POS);
21293 pt_x = it.current_x;
21294 pt_vpos = it.vpos;
21295 if (dir > 0 || overshoot_expected)
21297 struct glyph_row *row = it.glyph_row;
21299 /* When point is at beginning of line, we don't have
21300 information about the glyph there loaded into struct
21301 it. Calling get_next_display_element fixes that. */
21302 if (pt_x == 0)
21303 get_next_display_element (&it);
21304 at_eol_p = ITERATOR_AT_END_OF_LINE_P (&it);
21305 it.glyph_row = NULL;
21306 PRODUCE_GLYPHS (&it); /* compute it.pixel_width */
21307 it.glyph_row = row;
21308 /* PRODUCE_GLYPHS advances it.current_x, so we must restore
21309 it, lest it will become out of sync with it's buffer
21310 position. */
21311 it.current_x = pt_x;
21313 else
21314 at_eol_p = ITERATOR_AT_END_OF_LINE_P (&it);
21315 pixel_width = it.pixel_width;
21316 if (overshoot_expected && at_eol_p)
21317 pixel_width = 0;
21318 else if (pixel_width <= 0)
21319 pixel_width = 1;
21321 /* If there's a display string (or something similar) at point,
21322 we are actually at the glyph to the left of point, so we need
21323 to correct the X coordinate. */
21324 if (overshoot_expected)
21326 if (it.bidi_p)
21327 pt_x += pixel_width * it.bidi_it.scan_dir;
21328 else
21329 pt_x += pixel_width;
21332 /* Compute target X coordinate, either to the left or to the
21333 right of point. On TTY frames, all characters have the same
21334 pixel width of 1, so we can use that. On GUI frames we don't
21335 have an easy way of getting at the pixel width of the
21336 character to the left of point, so we use a different method
21337 of getting to that place. */
21338 if (dir > 0)
21339 target_x = pt_x + pixel_width;
21340 else
21341 target_x = pt_x - (!FRAME_WINDOW_P (it.f)) * pixel_width;
21343 /* Target X coordinate could be one line above or below the line
21344 of point, in which case we need to adjust the target X
21345 coordinate. Also, if moving to the left, we need to begin at
21346 the left edge of the point's screen line. */
21347 if (dir < 0)
21349 if (pt_x > 0)
21351 start_display (&it, w, pt);
21352 reseat_at_previous_visible_line_start (&it);
21353 it.current_x = it.current_y = it.hpos = 0;
21354 if (pt_vpos != 0)
21355 move_it_by_lines (&it, pt_vpos);
21357 else
21359 move_it_by_lines (&it, -1);
21360 target_x = it.last_visible_x - !FRAME_WINDOW_P (it.f);
21361 target_is_eol_p = true;
21362 /* Under word-wrap, we don't know the x coordinate of
21363 the last character displayed on the previous line,
21364 which immediately precedes the wrap point. To find
21365 out its x coordinate, we try moving to the right
21366 margin of the window, which will stop at the wrap
21367 point, and then reset target_x to point at the
21368 character that precedes the wrap point. This is not
21369 needed on GUI frames, because (see below) there we
21370 move from the left margin one grapheme cluster at a
21371 time, and stop when we hit the wrap point. */
21372 if (!FRAME_WINDOW_P (it.f) && it.line_wrap == WORD_WRAP)
21374 void *it_data = NULL;
21375 struct it it2;
21377 SAVE_IT (it2, it, it_data);
21378 move_it_in_display_line_to (&it, ZV, target_x,
21379 MOVE_TO_POS | MOVE_TO_X);
21380 /* If we arrived at target_x, that _is_ the last
21381 character on the previous line. */
21382 if (it.current_x != target_x)
21383 target_x = it.current_x - 1;
21384 RESTORE_IT (&it, &it2, it_data);
21388 else
21390 if (at_eol_p
21391 || (target_x >= it.last_visible_x
21392 && it.line_wrap != TRUNCATE))
21394 if (pt_x > 0)
21395 move_it_by_lines (&it, 0);
21396 move_it_by_lines (&it, 1);
21397 target_x = 0;
21401 /* Move to the target X coordinate. */
21402 #ifdef HAVE_WINDOW_SYSTEM
21403 /* On GUI frames, as we don't know the X coordinate of the
21404 character to the left of point, moving point to the left
21405 requires walking, one grapheme cluster at a time, until we
21406 find ourself at a place immediately to the left of the
21407 character at point. */
21408 if (FRAME_WINDOW_P (it.f) && dir < 0)
21410 struct text_pos new_pos;
21411 enum move_it_result rc = MOVE_X_REACHED;
21413 if (it.current_x == 0)
21414 get_next_display_element (&it);
21415 if (it.what == IT_COMPOSITION)
21417 new_pos.charpos = it.cmp_it.charpos;
21418 new_pos.bytepos = -1;
21420 else
21421 new_pos = it.current.pos;
21423 while (it.current_x + it.pixel_width <= target_x
21424 && (rc == MOVE_X_REACHED
21425 /* Under word-wrap, move_it_in_display_line_to
21426 stops at correct coordinates, but sometimes
21427 returns MOVE_POS_MATCH_OR_ZV. */
21428 || (it.line_wrap == WORD_WRAP
21429 && rc == MOVE_POS_MATCH_OR_ZV)))
21431 int new_x = it.current_x + it.pixel_width;
21433 /* For composed characters, we want the position of the
21434 first character in the grapheme cluster (usually, the
21435 composition's base character), whereas it.current
21436 might give us the position of the _last_ one, e.g. if
21437 the composition is rendered in reverse due to bidi
21438 reordering. */
21439 if (it.what == IT_COMPOSITION)
21441 new_pos.charpos = it.cmp_it.charpos;
21442 new_pos.bytepos = -1;
21444 else
21445 new_pos = it.current.pos;
21446 if (new_x == it.current_x)
21447 new_x++;
21448 rc = move_it_in_display_line_to (&it, ZV, new_x,
21449 MOVE_TO_POS | MOVE_TO_X);
21450 if (ITERATOR_AT_END_OF_LINE_P (&it) && !target_is_eol_p)
21451 break;
21453 /* The previous position we saw in the loop is the one we
21454 want. */
21455 if (new_pos.bytepos == -1)
21456 new_pos.bytepos = CHAR_TO_BYTE (new_pos.charpos);
21457 it.current.pos = new_pos;
21459 else
21460 #endif
21461 if (it.current_x != target_x)
21462 move_it_in_display_line_to (&it, ZV, target_x, MOVE_TO_POS | MOVE_TO_X);
21464 /* When lines are truncated, the above loop will stop at the
21465 window edge. But we want to get to the end of line, even if
21466 it is beyond the window edge; automatic hscroll will then
21467 scroll the window to show point as appropriate. */
21468 if (target_is_eol_p && it.line_wrap == TRUNCATE
21469 && get_next_display_element (&it))
21471 struct text_pos new_pos = it.current.pos;
21473 while (!ITERATOR_AT_END_OF_LINE_P (&it))
21475 set_iterator_to_next (&it, false);
21476 if (it.method == GET_FROM_BUFFER)
21477 new_pos = it.current.pos;
21478 if (!get_next_display_element (&it))
21479 break;
21482 it.current.pos = new_pos;
21485 /* If we ended up in a display string that covers point, move to
21486 buffer position to the right in the visual order. */
21487 if (dir > 0)
21489 while (IT_CHARPOS (it) == PT)
21491 set_iterator_to_next (&it, false);
21492 if (!get_next_display_element (&it))
21493 break;
21497 /* Move point to that position. */
21498 SET_PT_BOTH (IT_CHARPOS (it), IT_BYTEPOS (it));
21501 return make_number (PT);
21503 #undef ROW_GLYPH_NEWLINE_P
21506 DEFUN ("bidi-resolved-levels", Fbidi_resolved_levels,
21507 Sbidi_resolved_levels, 0, 1, 0,
21508 doc: /* Return the resolved bidirectional levels of characters at VPOS.
21510 The resolved levels are produced by the Emacs bidi reordering engine
21511 that implements the UBA, the Unicode Bidirectional Algorithm. Please
21512 read the Unicode Standard Annex 9 (UAX#9) for background information
21513 about these levels.
21515 VPOS is the zero-based number of the current window's screen line
21516 for which to produce the resolved levels. If VPOS is nil or omitted,
21517 it defaults to the screen line of point. If the window displays a
21518 header line, VPOS of zero will report on the header line, and first
21519 line of text in the window will have VPOS of 1.
21521 Value is an array of resolved levels, indexed by glyph number.
21522 Glyphs are numbered from zero starting from the beginning of the
21523 screen line, i.e. the left edge of the window for left-to-right lines
21524 and from the right edge for right-to-left lines. The resolved levels
21525 are produced only for the window's text area; text in display margins
21526 is not included.
21528 If the selected window's display is not up-to-date, or if the specified
21529 screen line does not display text, this function returns nil. It is
21530 highly recommended to bind this function to some simple key, like F8,
21531 in order to avoid these problems.
21533 This function exists mainly for testing the correctness of the
21534 Emacs UBA implementation, in particular with the test suite. */)
21535 (Lisp_Object vpos)
21537 struct window *w = XWINDOW (selected_window);
21538 struct buffer *b = XBUFFER (w->contents);
21539 int nrow;
21540 struct glyph_row *row;
21542 if (NILP (vpos))
21544 int d1, d2, d3, d4, d5;
21546 pos_visible_p (w, PT, &d1, &d2, &d3, &d4, &d5, &nrow);
21548 else
21550 CHECK_NUMBER_COERCE_MARKER (vpos);
21551 nrow = XINT (vpos);
21554 /* We require up-to-date glyph matrix for this window. */
21555 if (w->window_end_valid
21556 && !windows_or_buffers_changed
21557 && b
21558 && !b->clip_changed
21559 && !b->prevent_redisplay_optimizations_p
21560 && !window_outdated (w)
21561 && nrow >= 0
21562 && nrow < w->current_matrix->nrows
21563 && (row = MATRIX_ROW (w->current_matrix, nrow))->enabled_p
21564 && MATRIX_ROW_DISPLAYS_TEXT_P (row))
21566 struct glyph *g, *e, *g1;
21567 int nglyphs, i;
21568 Lisp_Object levels;
21570 if (!row->reversed_p) /* Left-to-right glyph row. */
21572 g = g1 = row->glyphs[TEXT_AREA];
21573 e = g + row->used[TEXT_AREA];
21575 /* Skip over glyphs at the start of the row that was
21576 generated by redisplay for its own needs. */
21577 while (g < e
21578 && NILP (g->object)
21579 && g->charpos < 0)
21580 g++;
21581 g1 = g;
21583 /* Count the "interesting" glyphs in this row. */
21584 for (nglyphs = 0; g < e && !NILP (g->object); g++)
21585 nglyphs++;
21587 /* Create and fill the array. */
21588 levels = make_uninit_vector (nglyphs);
21589 for (i = 0; g1 < g; i++, g1++)
21590 ASET (levels, i, make_number (g1->resolved_level));
21592 else /* Right-to-left glyph row. */
21594 g = row->glyphs[TEXT_AREA] + row->used[TEXT_AREA] - 1;
21595 e = row->glyphs[TEXT_AREA] - 1;
21596 while (g > e
21597 && NILP (g->object)
21598 && g->charpos < 0)
21599 g--;
21600 g1 = g;
21601 for (nglyphs = 0; g > e && !NILP (g->object); g--)
21602 nglyphs++;
21603 levels = make_uninit_vector (nglyphs);
21604 for (i = 0; g1 > g; i++, g1--)
21605 ASET (levels, i, make_number (g1->resolved_level));
21607 return levels;
21609 else
21610 return Qnil;
21615 /***********************************************************************
21616 Menu Bar
21617 ***********************************************************************/
21619 /* Redisplay the menu bar in the frame for window W.
21621 The menu bar of X frames that don't have X toolkit support is
21622 displayed in a special window W->frame->menu_bar_window.
21624 The menu bar of terminal frames is treated specially as far as
21625 glyph matrices are concerned. Menu bar lines are not part of
21626 windows, so the update is done directly on the frame matrix rows
21627 for the menu bar. */
21629 static void
21630 display_menu_bar (struct window *w)
21632 struct frame *f = XFRAME (WINDOW_FRAME (w));
21633 struct it it;
21634 Lisp_Object items;
21635 int i;
21637 /* Don't do all this for graphical frames. */
21638 #ifdef HAVE_NTGUI
21639 if (FRAME_W32_P (f))
21640 return;
21641 #endif
21642 #if defined (USE_X_TOOLKIT) || defined (USE_GTK)
21643 if (FRAME_X_P (f))
21644 return;
21645 #endif
21647 #ifdef HAVE_NS
21648 if (FRAME_NS_P (f))
21649 return;
21650 #endif /* HAVE_NS */
21652 #if defined (USE_X_TOOLKIT) || defined (USE_GTK)
21653 eassert (!FRAME_WINDOW_P (f));
21654 init_iterator (&it, w, -1, -1, f->desired_matrix->rows, MENU_FACE_ID);
21655 it.first_visible_x = 0;
21656 it.last_visible_x = FRAME_PIXEL_WIDTH (f);
21657 #elif defined (HAVE_X_WINDOWS) /* X without toolkit. */
21658 if (FRAME_WINDOW_P (f))
21660 /* Menu bar lines are displayed in the desired matrix of the
21661 dummy window menu_bar_window. */
21662 struct window *menu_w;
21663 menu_w = XWINDOW (f->menu_bar_window);
21664 init_iterator (&it, menu_w, -1, -1, menu_w->desired_matrix->rows,
21665 MENU_FACE_ID);
21666 it.first_visible_x = 0;
21667 it.last_visible_x = FRAME_PIXEL_WIDTH (f);
21669 else
21670 #endif /* not USE_X_TOOLKIT and not USE_GTK */
21672 /* This is a TTY frame, i.e. character hpos/vpos are used as
21673 pixel x/y. */
21674 init_iterator (&it, w, -1, -1, f->desired_matrix->rows,
21675 MENU_FACE_ID);
21676 it.first_visible_x = 0;
21677 it.last_visible_x = FRAME_COLS (f);
21680 /* FIXME: This should be controlled by a user option. See the
21681 comments in redisplay_tool_bar and display_mode_line about
21682 this. */
21683 it.paragraph_embedding = L2R;
21685 /* Clear all rows of the menu bar. */
21686 for (i = 0; i < FRAME_MENU_BAR_LINES (f); ++i)
21688 struct glyph_row *row = it.glyph_row + i;
21689 clear_glyph_row (row);
21690 row->enabled_p = true;
21691 row->full_width_p = true;
21692 row->reversed_p = false;
21695 /* Display all items of the menu bar. */
21696 items = FRAME_MENU_BAR_ITEMS (it.f);
21697 for (i = 0; i < ASIZE (items); i += 4)
21699 Lisp_Object string;
21701 /* Stop at nil string. */
21702 string = AREF (items, i + 1);
21703 if (NILP (string))
21704 break;
21706 /* Remember where item was displayed. */
21707 ASET (items, i + 3, make_number (it.hpos));
21709 /* Display the item, pad with one space. */
21710 if (it.current_x < it.last_visible_x)
21711 display_string (NULL, string, Qnil, 0, 0, &it,
21712 SCHARS (string) + 1, 0, 0, -1);
21715 /* Fill out the line with spaces. */
21716 if (it.current_x < it.last_visible_x)
21717 display_string ("", Qnil, Qnil, 0, 0, &it, -1, 0, 0, -1);
21719 /* Compute the total height of the lines. */
21720 compute_line_metrics (&it);
21723 /* Deep copy of a glyph row, including the glyphs. */
21724 static void
21725 deep_copy_glyph_row (struct glyph_row *to, struct glyph_row *from)
21727 struct glyph *pointers[1 + LAST_AREA];
21728 int to_used = to->used[TEXT_AREA];
21730 /* Save glyph pointers of TO. */
21731 memcpy (pointers, to->glyphs, sizeof to->glyphs);
21733 /* Do a structure assignment. */
21734 *to = *from;
21736 /* Restore original glyph pointers of TO. */
21737 memcpy (to->glyphs, pointers, sizeof to->glyphs);
21739 /* Copy the glyphs. */
21740 memcpy (to->glyphs[TEXT_AREA], from->glyphs[TEXT_AREA],
21741 min (from->used[TEXT_AREA], to_used) * sizeof (struct glyph));
21743 /* If we filled only part of the TO row, fill the rest with
21744 space_glyph (which will display as empty space). */
21745 if (to_used > from->used[TEXT_AREA])
21746 fill_up_frame_row_with_spaces (to, to_used);
21749 /* Display one menu item on a TTY, by overwriting the glyphs in the
21750 frame F's desired glyph matrix with glyphs produced from the menu
21751 item text. Called from term.c to display TTY drop-down menus one
21752 item at a time.
21754 ITEM_TEXT is the menu item text as a C string.
21756 FACE_ID is the face ID to be used for this menu item. FACE_ID
21757 could specify one of 3 faces: a face for an enabled item, a face
21758 for a disabled item, or a face for a selected item.
21760 X and Y are coordinates of the first glyph in the frame's desired
21761 matrix to be overwritten by the menu item. Since this is a TTY, Y
21762 is the zero-based number of the glyph row and X is the zero-based
21763 glyph number in the row, starting from left, where to start
21764 displaying the item.
21766 SUBMENU means this menu item drops down a submenu, which
21767 should be indicated by displaying a proper visual cue after the
21768 item text. */
21770 void
21771 display_tty_menu_item (const char *item_text, int width, int face_id,
21772 int x, int y, bool submenu)
21774 struct it it;
21775 struct frame *f = SELECTED_FRAME ();
21776 struct window *w = XWINDOW (f->selected_window);
21777 struct glyph_row *row;
21778 size_t item_len = strlen (item_text);
21780 eassert (FRAME_TERMCAP_P (f));
21782 /* Don't write beyond the matrix's last row. This can happen for
21783 TTY screens that are not high enough to show the entire menu.
21784 (This is actually a bit of defensive programming, as
21785 tty_menu_display already limits the number of menu items to one
21786 less than the number of screen lines.) */
21787 if (y >= f->desired_matrix->nrows)
21788 return;
21790 init_iterator (&it, w, -1, -1, f->desired_matrix->rows + y, MENU_FACE_ID);
21791 it.first_visible_x = 0;
21792 it.last_visible_x = FRAME_COLS (f) - 1;
21793 row = it.glyph_row;
21794 /* Start with the row contents from the current matrix. */
21795 deep_copy_glyph_row (row, f->current_matrix->rows + y);
21796 bool saved_width = row->full_width_p;
21797 row->full_width_p = true;
21798 bool saved_reversed = row->reversed_p;
21799 row->reversed_p = false;
21800 row->enabled_p = true;
21802 /* Arrange for the menu item glyphs to start at (X,Y) and have the
21803 desired face. */
21804 eassert (x < f->desired_matrix->matrix_w);
21805 it.current_x = it.hpos = x;
21806 it.current_y = it.vpos = y;
21807 int saved_used = row->used[TEXT_AREA];
21808 bool saved_truncated = row->truncated_on_right_p;
21809 row->used[TEXT_AREA] = x;
21810 it.face_id = face_id;
21811 it.line_wrap = TRUNCATE;
21813 /* FIXME: This should be controlled by a user option. See the
21814 comments in redisplay_tool_bar and display_mode_line about this.
21815 Also, if paragraph_embedding could ever be R2L, changes will be
21816 needed to avoid shifting to the right the row characters in
21817 term.c:append_glyph. */
21818 it.paragraph_embedding = L2R;
21820 /* Pad with a space on the left. */
21821 display_string (" ", Qnil, Qnil, 0, 0, &it, 1, 0, FRAME_COLS (f) - 1, -1);
21822 width--;
21823 /* Display the menu item, pad with spaces to WIDTH. */
21824 if (submenu)
21826 display_string (item_text, Qnil, Qnil, 0, 0, &it,
21827 item_len, 0, FRAME_COLS (f) - 1, -1);
21828 width -= item_len;
21829 /* Indicate with " >" that there's a submenu. */
21830 display_string (" >", Qnil, Qnil, 0, 0, &it, width, 0,
21831 FRAME_COLS (f) - 1, -1);
21833 else
21834 display_string (item_text, Qnil, Qnil, 0, 0, &it,
21835 width, 0, FRAME_COLS (f) - 1, -1);
21837 row->used[TEXT_AREA] = max (saved_used, row->used[TEXT_AREA]);
21838 row->truncated_on_right_p = saved_truncated;
21839 row->hash = row_hash (row);
21840 row->full_width_p = saved_width;
21841 row->reversed_p = saved_reversed;
21844 /***********************************************************************
21845 Mode Line
21846 ***********************************************************************/
21848 /* Redisplay mode lines in the window tree whose root is WINDOW.
21849 If FORCE, redisplay mode lines unconditionally.
21850 Otherwise, redisplay only mode lines that are garbaged. Value is
21851 the number of windows whose mode lines were redisplayed. */
21853 static int
21854 redisplay_mode_lines (Lisp_Object window, bool force)
21856 int nwindows = 0;
21858 while (!NILP (window))
21860 struct window *w = XWINDOW (window);
21862 if (WINDOWP (w->contents))
21863 nwindows += redisplay_mode_lines (w->contents, force);
21864 else if (force
21865 || FRAME_GARBAGED_P (XFRAME (w->frame))
21866 || !MATRIX_MODE_LINE_ROW (w->current_matrix)->enabled_p)
21868 struct text_pos lpoint;
21869 struct buffer *old = current_buffer;
21871 /* Set the window's buffer for the mode line display. */
21872 SET_TEXT_POS (lpoint, PT, PT_BYTE);
21873 set_buffer_internal_1 (XBUFFER (w->contents));
21875 /* Point refers normally to the selected window. For any
21876 other window, set up appropriate value. */
21877 if (!EQ (window, selected_window))
21879 struct text_pos pt;
21881 CLIP_TEXT_POS_FROM_MARKER (pt, w->pointm);
21882 TEMP_SET_PT_BOTH (CHARPOS (pt), BYTEPOS (pt));
21885 /* Display mode lines. */
21886 clear_glyph_matrix (w->desired_matrix);
21887 if (display_mode_lines (w))
21888 ++nwindows;
21890 /* Restore old settings. */
21891 set_buffer_internal_1 (old);
21892 TEMP_SET_PT_BOTH (CHARPOS (lpoint), BYTEPOS (lpoint));
21895 window = w->next;
21898 return nwindows;
21902 /* Display the mode and/or header line of window W. Value is the
21903 sum number of mode lines and header lines displayed. */
21905 static int
21906 display_mode_lines (struct window *w)
21908 Lisp_Object old_selected_window = selected_window;
21909 Lisp_Object old_selected_frame = selected_frame;
21910 Lisp_Object new_frame = w->frame;
21911 Lisp_Object old_frame_selected_window = XFRAME (new_frame)->selected_window;
21912 int n = 0;
21914 selected_frame = new_frame;
21915 /* FIXME: If we were to allow the mode-line's computation changing the buffer
21916 or window's point, then we'd need select_window_1 here as well. */
21917 XSETWINDOW (selected_window, w);
21918 XFRAME (new_frame)->selected_window = selected_window;
21920 /* These will be set while the mode line specs are processed. */
21921 line_number_displayed = false;
21922 w->column_number_displayed = -1;
21924 if (WINDOW_WANTS_MODELINE_P (w))
21926 struct window *sel_w = XWINDOW (old_selected_window);
21928 /* Select mode line face based on the real selected window. */
21929 display_mode_line (w, CURRENT_MODE_LINE_FACE_ID_3 (sel_w, sel_w, w),
21930 BVAR (current_buffer, mode_line_format));
21931 ++n;
21934 if (WINDOW_WANTS_HEADER_LINE_P (w))
21936 display_mode_line (w, HEADER_LINE_FACE_ID,
21937 BVAR (current_buffer, header_line_format));
21938 ++n;
21941 XFRAME (new_frame)->selected_window = old_frame_selected_window;
21942 selected_frame = old_selected_frame;
21943 selected_window = old_selected_window;
21944 if (n > 0)
21945 w->must_be_updated_p = true;
21946 return n;
21950 /* Display mode or header line of window W. FACE_ID specifies which
21951 line to display; it is either MODE_LINE_FACE_ID or
21952 HEADER_LINE_FACE_ID. FORMAT is the mode/header line format to
21953 display. Value is the pixel height of the mode/header line
21954 displayed. */
21956 static int
21957 display_mode_line (struct window *w, enum face_id face_id, Lisp_Object format)
21959 struct it it;
21960 struct face *face;
21961 ptrdiff_t count = SPECPDL_INDEX ();
21963 init_iterator (&it, w, -1, -1, NULL, face_id);
21964 /* Don't extend on a previously drawn mode-line.
21965 This may happen if called from pos_visible_p. */
21966 it.glyph_row->enabled_p = false;
21967 prepare_desired_row (w, it.glyph_row, true);
21969 it.glyph_row->mode_line_p = true;
21971 /* FIXME: This should be controlled by a user option. But
21972 supporting such an option is not trivial, since the mode line is
21973 made up of many separate strings. */
21974 it.paragraph_embedding = L2R;
21976 record_unwind_protect (unwind_format_mode_line,
21977 format_mode_line_unwind_data (NULL, NULL,
21978 Qnil, false));
21980 mode_line_target = MODE_LINE_DISPLAY;
21982 /* Temporarily make frame's keyboard the current kboard so that
21983 kboard-local variables in the mode_line_format will get the right
21984 values. */
21985 push_kboard (FRAME_KBOARD (it.f));
21986 record_unwind_save_match_data ();
21987 display_mode_element (&it, 0, 0, 0, format, Qnil, false);
21988 pop_kboard ();
21990 unbind_to (count, Qnil);
21992 /* Fill up with spaces. */
21993 display_string (" ", Qnil, Qnil, 0, 0, &it, 10000, -1, -1, 0);
21995 compute_line_metrics (&it);
21996 it.glyph_row->full_width_p = true;
21997 it.glyph_row->continued_p = false;
21998 it.glyph_row->truncated_on_left_p = false;
21999 it.glyph_row->truncated_on_right_p = false;
22001 /* Make a 3D mode-line have a shadow at its right end. */
22002 face = FACE_FROM_ID (it.f, face_id);
22003 extend_face_to_end_of_line (&it);
22004 if (face->box != FACE_NO_BOX)
22006 struct glyph *last = (it.glyph_row->glyphs[TEXT_AREA]
22007 + it.glyph_row->used[TEXT_AREA] - 1);
22008 last->right_box_line_p = true;
22011 return it.glyph_row->height;
22014 /* Move element ELT in LIST to the front of LIST.
22015 Return the updated list. */
22017 static Lisp_Object
22018 move_elt_to_front (Lisp_Object elt, Lisp_Object list)
22020 register Lisp_Object tail, prev;
22021 register Lisp_Object tem;
22023 tail = list;
22024 prev = Qnil;
22025 while (CONSP (tail))
22027 tem = XCAR (tail);
22029 if (EQ (elt, tem))
22031 /* Splice out the link TAIL. */
22032 if (NILP (prev))
22033 list = XCDR (tail);
22034 else
22035 Fsetcdr (prev, XCDR (tail));
22037 /* Now make it the first. */
22038 Fsetcdr (tail, list);
22039 return tail;
22041 else
22042 prev = tail;
22043 tail = XCDR (tail);
22044 QUIT;
22047 /* Not found--return unchanged LIST. */
22048 return list;
22051 /* Contribute ELT to the mode line for window IT->w. How it
22052 translates into text depends on its data type.
22054 IT describes the display environment in which we display, as usual.
22056 DEPTH is the depth in recursion. It is used to prevent
22057 infinite recursion here.
22059 FIELD_WIDTH is the number of characters the display of ELT should
22060 occupy in the mode line, and PRECISION is the maximum number of
22061 characters to display from ELT's representation. See
22062 display_string for details.
22064 Returns the hpos of the end of the text generated by ELT.
22066 PROPS is a property list to add to any string we encounter.
22068 If RISKY, remove (disregard) any properties in any string
22069 we encounter, and ignore :eval and :propertize.
22071 The global variable `mode_line_target' determines whether the
22072 output is passed to `store_mode_line_noprop',
22073 `store_mode_line_string', or `display_string'. */
22075 static int
22076 display_mode_element (struct it *it, int depth, int field_width, int precision,
22077 Lisp_Object elt, Lisp_Object props, bool risky)
22079 int n = 0, field, prec;
22080 bool literal = false;
22082 tail_recurse:
22083 if (depth > 100)
22084 elt = build_string ("*too-deep*");
22086 depth++;
22088 switch (XTYPE (elt))
22090 case Lisp_String:
22092 /* A string: output it and check for %-constructs within it. */
22093 unsigned char c;
22094 ptrdiff_t offset = 0;
22096 if (SCHARS (elt) > 0
22097 && (!NILP (props) || risky))
22099 Lisp_Object oprops, aelt;
22100 oprops = Ftext_properties_at (make_number (0), elt);
22102 /* If the starting string's properties are not what
22103 we want, translate the string. Also, if the string
22104 is risky, do that anyway. */
22106 if (NILP (Fequal (props, oprops)) || risky)
22108 /* If the starting string has properties,
22109 merge the specified ones onto the existing ones. */
22110 if (! NILP (oprops) && !risky)
22112 Lisp_Object tem;
22114 oprops = Fcopy_sequence (oprops);
22115 tem = props;
22116 while (CONSP (tem))
22118 oprops = Fplist_put (oprops, XCAR (tem),
22119 XCAR (XCDR (tem)));
22120 tem = XCDR (XCDR (tem));
22122 props = oprops;
22125 aelt = Fassoc (elt, mode_line_proptrans_alist);
22126 if (! NILP (aelt) && !NILP (Fequal (props, XCDR (aelt))))
22128 /* AELT is what we want. Move it to the front
22129 without consing. */
22130 elt = XCAR (aelt);
22131 mode_line_proptrans_alist
22132 = move_elt_to_front (aelt, mode_line_proptrans_alist);
22134 else
22136 Lisp_Object tem;
22138 /* If AELT has the wrong props, it is useless.
22139 so get rid of it. */
22140 if (! NILP (aelt))
22141 mode_line_proptrans_alist
22142 = Fdelq (aelt, mode_line_proptrans_alist);
22144 elt = Fcopy_sequence (elt);
22145 Fset_text_properties (make_number (0), Flength (elt),
22146 props, elt);
22147 /* Add this item to mode_line_proptrans_alist. */
22148 mode_line_proptrans_alist
22149 = Fcons (Fcons (elt, props),
22150 mode_line_proptrans_alist);
22151 /* Truncate mode_line_proptrans_alist
22152 to at most 50 elements. */
22153 tem = Fnthcdr (make_number (50),
22154 mode_line_proptrans_alist);
22155 if (! NILP (tem))
22156 XSETCDR (tem, Qnil);
22161 offset = 0;
22163 if (literal)
22165 prec = precision - n;
22166 switch (mode_line_target)
22168 case MODE_LINE_NOPROP:
22169 case MODE_LINE_TITLE:
22170 n += store_mode_line_noprop (SSDATA (elt), -1, prec);
22171 break;
22172 case MODE_LINE_STRING:
22173 n += store_mode_line_string (NULL, elt, true, 0, prec, Qnil);
22174 break;
22175 case MODE_LINE_DISPLAY:
22176 n += display_string (NULL, elt, Qnil, 0, 0, it,
22177 0, prec, 0, STRING_MULTIBYTE (elt));
22178 break;
22181 break;
22184 /* Handle the non-literal case. */
22186 while ((precision <= 0 || n < precision)
22187 && SREF (elt, offset) != 0
22188 && (mode_line_target != MODE_LINE_DISPLAY
22189 || it->current_x < it->last_visible_x))
22191 ptrdiff_t last_offset = offset;
22193 /* Advance to end of string or next format specifier. */
22194 while ((c = SREF (elt, offset++)) != '\0' && c != '%')
22197 if (offset - 1 != last_offset)
22199 ptrdiff_t nchars, nbytes;
22201 /* Output to end of string or up to '%'. Field width
22202 is length of string. Don't output more than
22203 PRECISION allows us. */
22204 offset--;
22206 prec = c_string_width (SDATA (elt) + last_offset,
22207 offset - last_offset, precision - n,
22208 &nchars, &nbytes);
22210 switch (mode_line_target)
22212 case MODE_LINE_NOPROP:
22213 case MODE_LINE_TITLE:
22214 n += store_mode_line_noprop (SSDATA (elt) + last_offset, 0, prec);
22215 break;
22216 case MODE_LINE_STRING:
22218 ptrdiff_t bytepos = last_offset;
22219 ptrdiff_t charpos = string_byte_to_char (elt, bytepos);
22220 ptrdiff_t endpos = (precision <= 0
22221 ? string_byte_to_char (elt, offset)
22222 : charpos + nchars);
22223 Lisp_Object mode_string
22224 = Fsubstring (elt, make_number (charpos),
22225 make_number (endpos));
22226 n += store_mode_line_string (NULL, mode_string, false,
22227 0, 0, Qnil);
22229 break;
22230 case MODE_LINE_DISPLAY:
22232 ptrdiff_t bytepos = last_offset;
22233 ptrdiff_t charpos = string_byte_to_char (elt, bytepos);
22235 if (precision <= 0)
22236 nchars = string_byte_to_char (elt, offset) - charpos;
22237 n += display_string (NULL, elt, Qnil, 0, charpos,
22238 it, 0, nchars, 0,
22239 STRING_MULTIBYTE (elt));
22241 break;
22244 else /* c == '%' */
22246 ptrdiff_t percent_position = offset;
22248 /* Get the specified minimum width. Zero means
22249 don't pad. */
22250 field = 0;
22251 while ((c = SREF (elt, offset++)) >= '0' && c <= '9')
22252 field = field * 10 + c - '0';
22254 /* Don't pad beyond the total padding allowed. */
22255 if (field_width - n > 0 && field > field_width - n)
22256 field = field_width - n;
22258 /* Note that either PRECISION <= 0 or N < PRECISION. */
22259 prec = precision - n;
22261 if (c == 'M')
22262 n += display_mode_element (it, depth, field, prec,
22263 Vglobal_mode_string, props,
22264 risky);
22265 else if (c != 0)
22267 bool multibyte;
22268 ptrdiff_t bytepos, charpos;
22269 const char *spec;
22270 Lisp_Object string;
22272 bytepos = percent_position;
22273 charpos = (STRING_MULTIBYTE (elt)
22274 ? string_byte_to_char (elt, bytepos)
22275 : bytepos);
22276 spec = decode_mode_spec (it->w, c, field, &string);
22277 multibyte = STRINGP (string) && STRING_MULTIBYTE (string);
22279 switch (mode_line_target)
22281 case MODE_LINE_NOPROP:
22282 case MODE_LINE_TITLE:
22283 n += store_mode_line_noprop (spec, field, prec);
22284 break;
22285 case MODE_LINE_STRING:
22287 Lisp_Object tem = build_string (spec);
22288 props = Ftext_properties_at (make_number (charpos), elt);
22289 /* Should only keep face property in props */
22290 n += store_mode_line_string (NULL, tem, false,
22291 field, prec, props);
22293 break;
22294 case MODE_LINE_DISPLAY:
22296 int nglyphs_before, nwritten;
22298 nglyphs_before = it->glyph_row->used[TEXT_AREA];
22299 nwritten = display_string (spec, string, elt,
22300 charpos, 0, it,
22301 field, prec, 0,
22302 multibyte);
22304 /* Assign to the glyphs written above the
22305 string where the `%x' came from, position
22306 of the `%'. */
22307 if (nwritten > 0)
22309 struct glyph *glyph
22310 = (it->glyph_row->glyphs[TEXT_AREA]
22311 + nglyphs_before);
22312 int i;
22314 for (i = 0; i < nwritten; ++i)
22316 glyph[i].object = elt;
22317 glyph[i].charpos = charpos;
22320 n += nwritten;
22323 break;
22326 else /* c == 0 */
22327 break;
22331 break;
22333 case Lisp_Symbol:
22334 /* A symbol: process the value of the symbol recursively
22335 as if it appeared here directly. Avoid error if symbol void.
22336 Special case: if value of symbol is a string, output the string
22337 literally. */
22339 register Lisp_Object tem;
22341 /* If the variable is not marked as risky to set
22342 then its contents are risky to use. */
22343 if (NILP (Fget (elt, Qrisky_local_variable)))
22344 risky = true;
22346 tem = Fboundp (elt);
22347 if (!NILP (tem))
22349 tem = Fsymbol_value (elt);
22350 /* If value is a string, output that string literally:
22351 don't check for % within it. */
22352 if (STRINGP (tem))
22353 literal = true;
22355 if (!EQ (tem, elt))
22357 /* Give up right away for nil or t. */
22358 elt = tem;
22359 goto tail_recurse;
22363 break;
22365 case Lisp_Cons:
22367 register Lisp_Object car, tem;
22369 /* A cons cell: five distinct cases.
22370 If first element is :eval or :propertize, do something special.
22371 If first element is a string or a cons, process all the elements
22372 and effectively concatenate them.
22373 If first element is a negative number, truncate displaying cdr to
22374 at most that many characters. If positive, pad (with spaces)
22375 to at least that many characters.
22376 If first element is a symbol, process the cadr or caddr recursively
22377 according to whether the symbol's value is non-nil or nil. */
22378 car = XCAR (elt);
22379 if (EQ (car, QCeval))
22381 /* An element of the form (:eval FORM) means evaluate FORM
22382 and use the result as mode line elements. */
22384 if (risky)
22385 break;
22387 if (CONSP (XCDR (elt)))
22389 Lisp_Object spec;
22390 spec = safe__eval (true, XCAR (XCDR (elt)));
22391 n += display_mode_element (it, depth, field_width - n,
22392 precision - n, spec, props,
22393 risky);
22396 else if (EQ (car, QCpropertize))
22398 /* An element of the form (:propertize ELT PROPS...)
22399 means display ELT but applying properties PROPS. */
22401 if (risky)
22402 break;
22404 if (CONSP (XCDR (elt)))
22405 n += display_mode_element (it, depth, field_width - n,
22406 precision - n, XCAR (XCDR (elt)),
22407 XCDR (XCDR (elt)), risky);
22409 else if (SYMBOLP (car))
22411 tem = Fboundp (car);
22412 elt = XCDR (elt);
22413 if (!CONSP (elt))
22414 goto invalid;
22415 /* elt is now the cdr, and we know it is a cons cell.
22416 Use its car if CAR has a non-nil value. */
22417 if (!NILP (tem))
22419 tem = Fsymbol_value (car);
22420 if (!NILP (tem))
22422 elt = XCAR (elt);
22423 goto tail_recurse;
22426 /* Symbol's value is nil (or symbol is unbound)
22427 Get the cddr of the original list
22428 and if possible find the caddr and use that. */
22429 elt = XCDR (elt);
22430 if (NILP (elt))
22431 break;
22432 else if (!CONSP (elt))
22433 goto invalid;
22434 elt = XCAR (elt);
22435 goto tail_recurse;
22437 else if (INTEGERP (car))
22439 register int lim = XINT (car);
22440 elt = XCDR (elt);
22441 if (lim < 0)
22443 /* Negative int means reduce maximum width. */
22444 if (precision <= 0)
22445 precision = -lim;
22446 else
22447 precision = min (precision, -lim);
22449 else if (lim > 0)
22451 /* Padding specified. Don't let it be more than
22452 current maximum. */
22453 if (precision > 0)
22454 lim = min (precision, lim);
22456 /* If that's more padding than already wanted, queue it.
22457 But don't reduce padding already specified even if
22458 that is beyond the current truncation point. */
22459 field_width = max (lim, field_width);
22461 goto tail_recurse;
22463 else if (STRINGP (car) || CONSP (car))
22465 Lisp_Object halftail = elt;
22466 int len = 0;
22468 while (CONSP (elt)
22469 && (precision <= 0 || n < precision))
22471 n += display_mode_element (it, depth,
22472 /* Do padding only after the last
22473 element in the list. */
22474 (! CONSP (XCDR (elt))
22475 ? field_width - n
22476 : 0),
22477 precision - n, XCAR (elt),
22478 props, risky);
22479 elt = XCDR (elt);
22480 len++;
22481 if ((len & 1) == 0)
22482 halftail = XCDR (halftail);
22483 /* Check for cycle. */
22484 if (EQ (halftail, elt))
22485 break;
22489 break;
22491 default:
22492 invalid:
22493 elt = build_string ("*invalid*");
22494 goto tail_recurse;
22497 /* Pad to FIELD_WIDTH. */
22498 if (field_width > 0 && n < field_width)
22500 switch (mode_line_target)
22502 case MODE_LINE_NOPROP:
22503 case MODE_LINE_TITLE:
22504 n += store_mode_line_noprop ("", field_width - n, 0);
22505 break;
22506 case MODE_LINE_STRING:
22507 n += store_mode_line_string ("", Qnil, false, field_width - n, 0,
22508 Qnil);
22509 break;
22510 case MODE_LINE_DISPLAY:
22511 n += display_string ("", Qnil, Qnil, 0, 0, it, field_width - n,
22512 0, 0, 0);
22513 break;
22517 return n;
22520 /* Store a mode-line string element in mode_line_string_list.
22522 If STRING is non-null, display that C string. Otherwise, the Lisp
22523 string LISP_STRING is displayed.
22525 FIELD_WIDTH is the minimum number of output glyphs to produce.
22526 If STRING has fewer characters than FIELD_WIDTH, pad to the right
22527 with spaces. FIELD_WIDTH <= 0 means don't pad.
22529 PRECISION is the maximum number of characters to output from
22530 STRING. PRECISION <= 0 means don't truncate the string.
22532 If COPY_STRING, make a copy of LISP_STRING before adding
22533 properties to the string.
22535 PROPS are the properties to add to the string.
22536 The mode_line_string_face face property is always added to the string.
22539 static int
22540 store_mode_line_string (const char *string, Lisp_Object lisp_string,
22541 bool copy_string,
22542 int field_width, int precision, Lisp_Object props)
22544 ptrdiff_t len;
22545 int n = 0;
22547 if (string != NULL)
22549 len = strlen (string);
22550 if (precision > 0 && len > precision)
22551 len = precision;
22552 lisp_string = make_string (string, len);
22553 if (NILP (props))
22554 props = mode_line_string_face_prop;
22555 else if (!NILP (mode_line_string_face))
22557 Lisp_Object face = Fplist_get (props, Qface);
22558 props = Fcopy_sequence (props);
22559 if (NILP (face))
22560 face = mode_line_string_face;
22561 else
22562 face = list2 (face, mode_line_string_face);
22563 props = Fplist_put (props, Qface, face);
22565 Fadd_text_properties (make_number (0), make_number (len),
22566 props, lisp_string);
22568 else
22570 len = XFASTINT (Flength (lisp_string));
22571 if (precision > 0 && len > precision)
22573 len = precision;
22574 lisp_string = Fsubstring (lisp_string, make_number (0), make_number (len));
22575 precision = -1;
22577 if (!NILP (mode_line_string_face))
22579 Lisp_Object face;
22580 if (NILP (props))
22581 props = Ftext_properties_at (make_number (0), lisp_string);
22582 face = Fplist_get (props, Qface);
22583 if (NILP (face))
22584 face = mode_line_string_face;
22585 else
22586 face = list2 (face, mode_line_string_face);
22587 props = list2 (Qface, face);
22588 if (copy_string)
22589 lisp_string = Fcopy_sequence (lisp_string);
22591 if (!NILP (props))
22592 Fadd_text_properties (make_number (0), make_number (len),
22593 props, lisp_string);
22596 if (len > 0)
22598 mode_line_string_list = Fcons (lisp_string, mode_line_string_list);
22599 n += len;
22602 if (field_width > len)
22604 field_width -= len;
22605 lisp_string = Fmake_string (make_number (field_width), make_number (' '));
22606 if (!NILP (props))
22607 Fadd_text_properties (make_number (0), make_number (field_width),
22608 props, lisp_string);
22609 mode_line_string_list = Fcons (lisp_string, mode_line_string_list);
22610 n += field_width;
22613 return n;
22617 DEFUN ("format-mode-line", Fformat_mode_line, Sformat_mode_line,
22618 1, 4, 0,
22619 doc: /* Format a string out of a mode line format specification.
22620 First arg FORMAT specifies the mode line format (see `mode-line-format'
22621 for details) to use.
22623 By default, the format is evaluated for the currently selected window.
22625 Optional second arg FACE specifies the face property to put on all
22626 characters for which no face is specified. The value nil means the
22627 default face. The value t means whatever face the window's mode line
22628 currently uses (either `mode-line' or `mode-line-inactive',
22629 depending on whether the window is the selected window or not).
22630 An integer value means the value string has no text
22631 properties.
22633 Optional third and fourth args WINDOW and BUFFER specify the window
22634 and buffer to use as the context for the formatting (defaults
22635 are the selected window and the WINDOW's buffer). */)
22636 (Lisp_Object format, Lisp_Object face,
22637 Lisp_Object window, Lisp_Object buffer)
22639 struct it it;
22640 int len;
22641 struct window *w;
22642 struct buffer *old_buffer = NULL;
22643 int face_id;
22644 bool no_props = INTEGERP (face);
22645 ptrdiff_t count = SPECPDL_INDEX ();
22646 Lisp_Object str;
22647 int string_start = 0;
22649 w = decode_any_window (window);
22650 XSETWINDOW (window, w);
22652 if (NILP (buffer))
22653 buffer = w->contents;
22654 CHECK_BUFFER (buffer);
22656 /* Make formatting the modeline a non-op when noninteractive, otherwise
22657 there will be problems later caused by a partially initialized frame. */
22658 if (NILP (format) || noninteractive)
22659 return empty_unibyte_string;
22661 if (no_props)
22662 face = Qnil;
22664 face_id = (NILP (face) || EQ (face, Qdefault)) ? DEFAULT_FACE_ID
22665 : EQ (face, Qt) ? (EQ (window, selected_window)
22666 ? MODE_LINE_FACE_ID : MODE_LINE_INACTIVE_FACE_ID)
22667 : EQ (face, Qmode_line) ? MODE_LINE_FACE_ID
22668 : EQ (face, Qmode_line_inactive) ? MODE_LINE_INACTIVE_FACE_ID
22669 : EQ (face, Qheader_line) ? HEADER_LINE_FACE_ID
22670 : EQ (face, Qtool_bar) ? TOOL_BAR_FACE_ID
22671 : DEFAULT_FACE_ID;
22673 old_buffer = current_buffer;
22675 /* Save things including mode_line_proptrans_alist,
22676 and set that to nil so that we don't alter the outer value. */
22677 record_unwind_protect (unwind_format_mode_line,
22678 format_mode_line_unwind_data
22679 (XFRAME (WINDOW_FRAME (w)),
22680 old_buffer, selected_window, true));
22681 mode_line_proptrans_alist = Qnil;
22683 Fselect_window (window, Qt);
22684 set_buffer_internal_1 (XBUFFER (buffer));
22686 init_iterator (&it, w, -1, -1, NULL, face_id);
22688 if (no_props)
22690 mode_line_target = MODE_LINE_NOPROP;
22691 mode_line_string_face_prop = Qnil;
22692 mode_line_string_list = Qnil;
22693 string_start = MODE_LINE_NOPROP_LEN (0);
22695 else
22697 mode_line_target = MODE_LINE_STRING;
22698 mode_line_string_list = Qnil;
22699 mode_line_string_face = face;
22700 mode_line_string_face_prop
22701 = NILP (face) ? Qnil : list2 (Qface, face);
22704 push_kboard (FRAME_KBOARD (it.f));
22705 display_mode_element (&it, 0, 0, 0, format, Qnil, false);
22706 pop_kboard ();
22708 if (no_props)
22710 len = MODE_LINE_NOPROP_LEN (string_start);
22711 str = make_string (mode_line_noprop_buf + string_start, len);
22713 else
22715 mode_line_string_list = Fnreverse (mode_line_string_list);
22716 str = Fmapconcat (Qidentity, mode_line_string_list,
22717 empty_unibyte_string);
22720 unbind_to (count, Qnil);
22721 return str;
22724 /* Write a null-terminated, right justified decimal representation of
22725 the positive integer D to BUF using a minimal field width WIDTH. */
22727 static void
22728 pint2str (register char *buf, register int width, register ptrdiff_t d)
22730 register char *p = buf;
22732 if (d <= 0)
22733 *p++ = '0';
22734 else
22736 while (d > 0)
22738 *p++ = d % 10 + '0';
22739 d /= 10;
22743 for (width -= (int) (p - buf); width > 0; --width)
22744 *p++ = ' ';
22745 *p-- = '\0';
22746 while (p > buf)
22748 d = *buf;
22749 *buf++ = *p;
22750 *p-- = d;
22754 /* Write a null-terminated, right justified decimal and "human
22755 readable" representation of the nonnegative integer D to BUF using
22756 a minimal field width WIDTH. D should be smaller than 999.5e24. */
22758 static const char power_letter[] =
22760 0, /* no letter */
22761 'k', /* kilo */
22762 'M', /* mega */
22763 'G', /* giga */
22764 'T', /* tera */
22765 'P', /* peta */
22766 'E', /* exa */
22767 'Z', /* zetta */
22768 'Y' /* yotta */
22771 static void
22772 pint2hrstr (char *buf, int width, ptrdiff_t d)
22774 /* We aim to represent the nonnegative integer D as
22775 QUOTIENT.TENTHS * 10 ^ (3 * EXPONENT). */
22776 ptrdiff_t quotient = d;
22777 int remainder = 0;
22778 /* -1 means: do not use TENTHS. */
22779 int tenths = -1;
22780 int exponent = 0;
22782 /* Length of QUOTIENT.TENTHS as a string. */
22783 int length;
22785 char * psuffix;
22786 char * p;
22788 if (quotient >= 1000)
22790 /* Scale to the appropriate EXPONENT. */
22793 remainder = quotient % 1000;
22794 quotient /= 1000;
22795 exponent++;
22797 while (quotient >= 1000);
22799 /* Round to nearest and decide whether to use TENTHS or not. */
22800 if (quotient <= 9)
22802 tenths = remainder / 100;
22803 if (remainder % 100 >= 50)
22805 if (tenths < 9)
22806 tenths++;
22807 else
22809 quotient++;
22810 if (quotient == 10)
22811 tenths = -1;
22812 else
22813 tenths = 0;
22817 else
22818 if (remainder >= 500)
22820 if (quotient < 999)
22821 quotient++;
22822 else
22824 quotient = 1;
22825 exponent++;
22826 tenths = 0;
22831 /* Calculate the LENGTH of QUOTIENT.TENTHS as a string. */
22832 if (tenths == -1 && quotient <= 99)
22833 if (quotient <= 9)
22834 length = 1;
22835 else
22836 length = 2;
22837 else
22838 length = 3;
22839 p = psuffix = buf + max (width, length);
22841 /* Print EXPONENT. */
22842 *psuffix++ = power_letter[exponent];
22843 *psuffix = '\0';
22845 /* Print TENTHS. */
22846 if (tenths >= 0)
22848 *--p = '0' + tenths;
22849 *--p = '.';
22852 /* Print QUOTIENT. */
22855 int digit = quotient % 10;
22856 *--p = '0' + digit;
22858 while ((quotient /= 10) != 0);
22860 /* Print leading spaces. */
22861 while (buf < p)
22862 *--p = ' ';
22865 /* Set a mnemonic character for coding_system (Lisp symbol) in BUF.
22866 If EOL_FLAG, set also a mnemonic character for end-of-line
22867 type of CODING_SYSTEM. Return updated pointer into BUF. */
22869 static unsigned char invalid_eol_type[] = "(*invalid*)";
22871 static char *
22872 decode_mode_spec_coding (Lisp_Object coding_system, char *buf, bool eol_flag)
22874 Lisp_Object val;
22875 bool multibyte = !NILP (BVAR (current_buffer, enable_multibyte_characters));
22876 const unsigned char *eol_str;
22877 int eol_str_len;
22878 /* The EOL conversion we are using. */
22879 Lisp_Object eoltype;
22881 val = CODING_SYSTEM_SPEC (coding_system);
22882 eoltype = Qnil;
22884 if (!VECTORP (val)) /* Not yet decided. */
22886 *buf++ = multibyte ? '-' : ' ';
22887 if (eol_flag)
22888 eoltype = eol_mnemonic_undecided;
22889 /* Don't mention EOL conversion if it isn't decided. */
22891 else
22893 Lisp_Object attrs;
22894 Lisp_Object eolvalue;
22896 attrs = AREF (val, 0);
22897 eolvalue = AREF (val, 2);
22899 *buf++ = multibyte
22900 ? XFASTINT (CODING_ATTR_MNEMONIC (attrs))
22901 : ' ';
22903 if (eol_flag)
22905 /* The EOL conversion that is normal on this system. */
22907 if (NILP (eolvalue)) /* Not yet decided. */
22908 eoltype = eol_mnemonic_undecided;
22909 else if (VECTORP (eolvalue)) /* Not yet decided. */
22910 eoltype = eol_mnemonic_undecided;
22911 else /* eolvalue is Qunix, Qdos, or Qmac. */
22912 eoltype = (EQ (eolvalue, Qunix)
22913 ? eol_mnemonic_unix
22914 : EQ (eolvalue, Qdos)
22915 ? eol_mnemonic_dos : eol_mnemonic_mac);
22919 if (eol_flag)
22921 /* Mention the EOL conversion if it is not the usual one. */
22922 if (STRINGP (eoltype))
22924 eol_str = SDATA (eoltype);
22925 eol_str_len = SBYTES (eoltype);
22927 else if (CHARACTERP (eoltype))
22929 int c = XFASTINT (eoltype);
22930 return buf + CHAR_STRING (c, (unsigned char *) buf);
22932 else
22934 eol_str = invalid_eol_type;
22935 eol_str_len = sizeof (invalid_eol_type) - 1;
22937 memcpy (buf, eol_str, eol_str_len);
22938 buf += eol_str_len;
22941 return buf;
22944 /* Return a string for the output of a mode line %-spec for window W,
22945 generated by character C. FIELD_WIDTH > 0 means pad the string
22946 returned with spaces to that value. Return a Lisp string in
22947 *STRING if the resulting string is taken from that Lisp string.
22949 Note we operate on the current buffer for most purposes. */
22951 static char lots_of_dashes[] = "--------------------------------------------------------------------------------------------------------------------------------------------";
22953 static const char *
22954 decode_mode_spec (struct window *w, register int c, int field_width,
22955 Lisp_Object *string)
22957 Lisp_Object obj;
22958 struct frame *f = XFRAME (WINDOW_FRAME (w));
22959 char *decode_mode_spec_buf = f->decode_mode_spec_buffer;
22960 /* We are going to use f->decode_mode_spec_buffer as the buffer to
22961 produce strings from numerical values, so limit preposterously
22962 large values of FIELD_WIDTH to avoid overrunning the buffer's
22963 end. The size of the buffer is enough for FRAME_MESSAGE_BUF_SIZE
22964 bytes plus the terminating null. */
22965 int width = min (field_width, FRAME_MESSAGE_BUF_SIZE (f));
22966 struct buffer *b = current_buffer;
22968 obj = Qnil;
22969 *string = Qnil;
22971 switch (c)
22973 case '*':
22974 if (!NILP (BVAR (b, read_only)))
22975 return "%";
22976 if (BUF_MODIFF (b) > BUF_SAVE_MODIFF (b))
22977 return "*";
22978 return "-";
22980 case '+':
22981 /* This differs from %* only for a modified read-only buffer. */
22982 if (BUF_MODIFF (b) > BUF_SAVE_MODIFF (b))
22983 return "*";
22984 if (!NILP (BVAR (b, read_only)))
22985 return "%";
22986 return "-";
22988 case '&':
22989 /* This differs from %* in ignoring read-only-ness. */
22990 if (BUF_MODIFF (b) > BUF_SAVE_MODIFF (b))
22991 return "*";
22992 return "-";
22994 case '%':
22995 return "%";
22997 case '[':
22999 int i;
23000 char *p;
23002 if (command_loop_level > 5)
23003 return "[[[... ";
23004 p = decode_mode_spec_buf;
23005 for (i = 0; i < command_loop_level; i++)
23006 *p++ = '[';
23007 *p = 0;
23008 return decode_mode_spec_buf;
23011 case ']':
23013 int i;
23014 char *p;
23016 if (command_loop_level > 5)
23017 return " ...]]]";
23018 p = decode_mode_spec_buf;
23019 for (i = 0; i < command_loop_level; i++)
23020 *p++ = ']';
23021 *p = 0;
23022 return decode_mode_spec_buf;
23025 case '-':
23027 register int i;
23029 /* Let lots_of_dashes be a string of infinite length. */
23030 if (mode_line_target == MODE_LINE_NOPROP
23031 || mode_line_target == MODE_LINE_STRING)
23032 return "--";
23033 if (field_width <= 0
23034 || field_width > sizeof (lots_of_dashes))
23036 for (i = 0; i < FRAME_MESSAGE_BUF_SIZE (f) - 1; ++i)
23037 decode_mode_spec_buf[i] = '-';
23038 decode_mode_spec_buf[i] = '\0';
23039 return decode_mode_spec_buf;
23041 else
23042 return lots_of_dashes;
23045 case 'b':
23046 obj = BVAR (b, name);
23047 break;
23049 case 'c':
23050 /* %c and %l are ignored in `frame-title-format'.
23051 (In redisplay_internal, the frame title is drawn _before_ the
23052 windows are updated, so the stuff which depends on actual
23053 window contents (such as %l) may fail to render properly, or
23054 even crash emacs.) */
23055 if (mode_line_target == MODE_LINE_TITLE)
23056 return "";
23057 else
23059 ptrdiff_t col = current_column ();
23060 w->column_number_displayed = col;
23061 pint2str (decode_mode_spec_buf, width, col);
23062 return decode_mode_spec_buf;
23065 case 'e':
23066 #if !defined SYSTEM_MALLOC && !defined HYBRID_MALLOC
23068 if (NILP (Vmemory_full))
23069 return "";
23070 else
23071 return "!MEM FULL! ";
23073 #else
23074 return "";
23075 #endif
23077 case 'F':
23078 /* %F displays the frame name. */
23079 if (!NILP (f->title))
23080 return SSDATA (f->title);
23081 if (f->explicit_name || ! FRAME_WINDOW_P (f))
23082 return SSDATA (f->name);
23083 return "Emacs";
23085 case 'f':
23086 obj = BVAR (b, filename);
23087 break;
23089 case 'i':
23091 ptrdiff_t size = ZV - BEGV;
23092 pint2str (decode_mode_spec_buf, width, size);
23093 return decode_mode_spec_buf;
23096 case 'I':
23098 ptrdiff_t size = ZV - BEGV;
23099 pint2hrstr (decode_mode_spec_buf, width, size);
23100 return decode_mode_spec_buf;
23103 case 'l':
23105 ptrdiff_t startpos, startpos_byte, line, linepos, linepos_byte;
23106 ptrdiff_t topline, nlines, height;
23107 ptrdiff_t junk;
23109 /* %c and %l are ignored in `frame-title-format'. */
23110 if (mode_line_target == MODE_LINE_TITLE)
23111 return "";
23113 startpos = marker_position (w->start);
23114 startpos_byte = marker_byte_position (w->start);
23115 height = WINDOW_TOTAL_LINES (w);
23117 /* If we decided that this buffer isn't suitable for line numbers,
23118 don't forget that too fast. */
23119 if (w->base_line_pos == -1)
23120 goto no_value;
23122 /* If the buffer is very big, don't waste time. */
23123 if (INTEGERP (Vline_number_display_limit)
23124 && BUF_ZV (b) - BUF_BEGV (b) > XINT (Vline_number_display_limit))
23126 w->base_line_pos = 0;
23127 w->base_line_number = 0;
23128 goto no_value;
23131 if (w->base_line_number > 0
23132 && w->base_line_pos > 0
23133 && w->base_line_pos <= startpos)
23135 line = w->base_line_number;
23136 linepos = w->base_line_pos;
23137 linepos_byte = buf_charpos_to_bytepos (b, linepos);
23139 else
23141 line = 1;
23142 linepos = BUF_BEGV (b);
23143 linepos_byte = BUF_BEGV_BYTE (b);
23146 /* Count lines from base line to window start position. */
23147 nlines = display_count_lines (linepos_byte,
23148 startpos_byte,
23149 startpos, &junk);
23151 topline = nlines + line;
23153 /* Determine a new base line, if the old one is too close
23154 or too far away, or if we did not have one.
23155 "Too close" means it's plausible a scroll-down would
23156 go back past it. */
23157 if (startpos == BUF_BEGV (b))
23159 w->base_line_number = topline;
23160 w->base_line_pos = BUF_BEGV (b);
23162 else if (nlines < height + 25 || nlines > height * 3 + 50
23163 || linepos == BUF_BEGV (b))
23165 ptrdiff_t limit = BUF_BEGV (b);
23166 ptrdiff_t limit_byte = BUF_BEGV_BYTE (b);
23167 ptrdiff_t position;
23168 ptrdiff_t distance =
23169 (height * 2 + 30) * line_number_display_limit_width;
23171 if (startpos - distance > limit)
23173 limit = startpos - distance;
23174 limit_byte = CHAR_TO_BYTE (limit);
23177 nlines = display_count_lines (startpos_byte,
23178 limit_byte,
23179 - (height * 2 + 30),
23180 &position);
23181 /* If we couldn't find the lines we wanted within
23182 line_number_display_limit_width chars per line,
23183 give up on line numbers for this window. */
23184 if (position == limit_byte && limit == startpos - distance)
23186 w->base_line_pos = -1;
23187 w->base_line_number = 0;
23188 goto no_value;
23191 w->base_line_number = topline - nlines;
23192 w->base_line_pos = BYTE_TO_CHAR (position);
23195 /* Now count lines from the start pos to point. */
23196 nlines = display_count_lines (startpos_byte,
23197 PT_BYTE, PT, &junk);
23199 /* Record that we did display the line number. */
23200 line_number_displayed = true;
23202 /* Make the string to show. */
23203 pint2str (decode_mode_spec_buf, width, topline + nlines);
23204 return decode_mode_spec_buf;
23205 no_value:
23207 char *p = decode_mode_spec_buf;
23208 int pad = width - 2;
23209 while (pad-- > 0)
23210 *p++ = ' ';
23211 *p++ = '?';
23212 *p++ = '?';
23213 *p = '\0';
23214 return decode_mode_spec_buf;
23217 break;
23219 case 'm':
23220 obj = BVAR (b, mode_name);
23221 break;
23223 case 'n':
23224 if (BUF_BEGV (b) > BUF_BEG (b) || BUF_ZV (b) < BUF_Z (b))
23225 return " Narrow";
23226 break;
23228 case 'p':
23230 ptrdiff_t pos = marker_position (w->start);
23231 ptrdiff_t total = BUF_ZV (b) - BUF_BEGV (b);
23233 if (w->window_end_pos <= BUF_Z (b) - BUF_ZV (b))
23235 if (pos <= BUF_BEGV (b))
23236 return "All";
23237 else
23238 return "Bottom";
23240 else if (pos <= BUF_BEGV (b))
23241 return "Top";
23242 else
23244 if (total > 1000000)
23245 /* Do it differently for a large value, to avoid overflow. */
23246 total = ((pos - BUF_BEGV (b)) + (total / 100) - 1) / (total / 100);
23247 else
23248 total = ((pos - BUF_BEGV (b)) * 100 + total - 1) / total;
23249 /* We can't normally display a 3-digit number,
23250 so get us a 2-digit number that is close. */
23251 if (total == 100)
23252 total = 99;
23253 sprintf (decode_mode_spec_buf, "%2"pD"d%%", total);
23254 return decode_mode_spec_buf;
23258 /* Display percentage of size above the bottom of the screen. */
23259 case 'P':
23261 ptrdiff_t toppos = marker_position (w->start);
23262 ptrdiff_t botpos = BUF_Z (b) - w->window_end_pos;
23263 ptrdiff_t total = BUF_ZV (b) - BUF_BEGV (b);
23265 if (botpos >= BUF_ZV (b))
23267 if (toppos <= BUF_BEGV (b))
23268 return "All";
23269 else
23270 return "Bottom";
23272 else
23274 if (total > 1000000)
23275 /* Do it differently for a large value, to avoid overflow. */
23276 total = ((botpos - BUF_BEGV (b)) + (total / 100) - 1) / (total / 100);
23277 else
23278 total = ((botpos - BUF_BEGV (b)) * 100 + total - 1) / total;
23279 /* We can't normally display a 3-digit number,
23280 so get us a 2-digit number that is close. */
23281 if (total == 100)
23282 total = 99;
23283 if (toppos <= BUF_BEGV (b))
23284 sprintf (decode_mode_spec_buf, "Top%2"pD"d%%", total);
23285 else
23286 sprintf (decode_mode_spec_buf, "%2"pD"d%%", total);
23287 return decode_mode_spec_buf;
23291 case 's':
23292 /* status of process */
23293 obj = Fget_buffer_process (Fcurrent_buffer ());
23294 if (NILP (obj))
23295 return "no process";
23296 #ifndef MSDOS
23297 obj = Fsymbol_name (Fprocess_status (obj));
23298 #endif
23299 break;
23301 case '@':
23303 ptrdiff_t count = inhibit_garbage_collection ();
23304 Lisp_Object curdir = BVAR (current_buffer, directory);
23305 Lisp_Object val = Qnil;
23307 if (STRINGP (curdir))
23308 val = call1 (intern ("file-remote-p"), curdir);
23310 unbind_to (count, Qnil);
23312 if (NILP (val))
23313 return "-";
23314 else
23315 return "@";
23318 case 'z':
23319 /* coding-system (not including end-of-line format) */
23320 case 'Z':
23321 /* coding-system (including end-of-line type) */
23323 bool eol_flag = (c == 'Z');
23324 char *p = decode_mode_spec_buf;
23326 if (! FRAME_WINDOW_P (f))
23328 /* No need to mention EOL here--the terminal never needs
23329 to do EOL conversion. */
23330 p = decode_mode_spec_coding (CODING_ID_NAME
23331 (FRAME_KEYBOARD_CODING (f)->id),
23332 p, false);
23333 p = decode_mode_spec_coding (CODING_ID_NAME
23334 (FRAME_TERMINAL_CODING (f)->id),
23335 p, false);
23337 p = decode_mode_spec_coding (BVAR (b, buffer_file_coding_system),
23338 p, eol_flag);
23340 #if false /* This proves to be annoying; I think we can do without. -- rms. */
23341 #ifdef subprocesses
23342 obj = Fget_buffer_process (Fcurrent_buffer ());
23343 if (PROCESSP (obj))
23345 p = decode_mode_spec_coding
23346 (XPROCESS (obj)->decode_coding_system, p, eol_flag);
23347 p = decode_mode_spec_coding
23348 (XPROCESS (obj)->encode_coding_system, p, eol_flag);
23350 #endif /* subprocesses */
23351 #endif /* false */
23352 *p = 0;
23353 return decode_mode_spec_buf;
23357 if (STRINGP (obj))
23359 *string = obj;
23360 return SSDATA (obj);
23362 else
23363 return "";
23367 /* Count up to COUNT lines starting from START_BYTE. COUNT negative
23368 means count lines back from START_BYTE. But don't go beyond
23369 LIMIT_BYTE. Return the number of lines thus found (always
23370 nonnegative).
23372 Set *BYTE_POS_PTR to the byte position where we stopped. This is
23373 either the position COUNT lines after/before START_BYTE, if we
23374 found COUNT lines, or LIMIT_BYTE if we hit the limit before finding
23375 COUNT lines. */
23377 static ptrdiff_t
23378 display_count_lines (ptrdiff_t start_byte,
23379 ptrdiff_t limit_byte, ptrdiff_t count,
23380 ptrdiff_t *byte_pos_ptr)
23382 register unsigned char *cursor;
23383 unsigned char *base;
23385 register ptrdiff_t ceiling;
23386 register unsigned char *ceiling_addr;
23387 ptrdiff_t orig_count = count;
23389 /* If we are not in selective display mode,
23390 check only for newlines. */
23391 bool selective_display
23392 = (!NILP (BVAR (current_buffer, selective_display))
23393 && !INTEGERP (BVAR (current_buffer, selective_display)));
23395 if (count > 0)
23397 while (start_byte < limit_byte)
23399 ceiling = BUFFER_CEILING_OF (start_byte);
23400 ceiling = min (limit_byte - 1, ceiling);
23401 ceiling_addr = BYTE_POS_ADDR (ceiling) + 1;
23402 base = (cursor = BYTE_POS_ADDR (start_byte));
23406 if (selective_display)
23408 while (*cursor != '\n' && *cursor != 015
23409 && ++cursor != ceiling_addr)
23410 continue;
23411 if (cursor == ceiling_addr)
23412 break;
23414 else
23416 cursor = memchr (cursor, '\n', ceiling_addr - cursor);
23417 if (! cursor)
23418 break;
23421 cursor++;
23423 if (--count == 0)
23425 start_byte += cursor - base;
23426 *byte_pos_ptr = start_byte;
23427 return orig_count;
23430 while (cursor < ceiling_addr);
23432 start_byte += ceiling_addr - base;
23435 else
23437 while (start_byte > limit_byte)
23439 ceiling = BUFFER_FLOOR_OF (start_byte - 1);
23440 ceiling = max (limit_byte, ceiling);
23441 ceiling_addr = BYTE_POS_ADDR (ceiling);
23442 base = (cursor = BYTE_POS_ADDR (start_byte - 1) + 1);
23443 while (true)
23445 if (selective_display)
23447 while (--cursor >= ceiling_addr
23448 && *cursor != '\n' && *cursor != 015)
23449 continue;
23450 if (cursor < ceiling_addr)
23451 break;
23453 else
23455 cursor = memrchr (ceiling_addr, '\n', cursor - ceiling_addr);
23456 if (! cursor)
23457 break;
23460 if (++count == 0)
23462 start_byte += cursor - base + 1;
23463 *byte_pos_ptr = start_byte;
23464 /* When scanning backwards, we should
23465 not count the newline posterior to which we stop. */
23466 return - orig_count - 1;
23469 start_byte += ceiling_addr - base;
23473 *byte_pos_ptr = limit_byte;
23475 if (count < 0)
23476 return - orig_count + count;
23477 return orig_count - count;
23483 /***********************************************************************
23484 Displaying strings
23485 ***********************************************************************/
23487 /* Display a NUL-terminated string, starting with index START.
23489 If STRING is non-null, display that C string. Otherwise, the Lisp
23490 string LISP_STRING is displayed. There's a case that STRING is
23491 non-null and LISP_STRING is not nil. It means STRING is a string
23492 data of LISP_STRING. In that case, we display LISP_STRING while
23493 ignoring its text properties.
23495 If FACE_STRING is not nil, FACE_STRING_POS is a position in
23496 FACE_STRING. Display STRING or LISP_STRING with the face at
23497 FACE_STRING_POS in FACE_STRING:
23499 Display the string in the environment given by IT, but use the
23500 standard display table, temporarily.
23502 FIELD_WIDTH is the minimum number of output glyphs to produce.
23503 If STRING has fewer characters than FIELD_WIDTH, pad to the right
23504 with spaces. If STRING has more characters, more than FIELD_WIDTH
23505 glyphs will be produced. FIELD_WIDTH <= 0 means don't pad.
23507 PRECISION is the maximum number of characters to output from
23508 STRING. PRECISION < 0 means don't truncate the string.
23510 This is roughly equivalent to printf format specifiers:
23512 FIELD_WIDTH PRECISION PRINTF
23513 ----------------------------------------
23514 -1 -1 %s
23515 -1 10 %.10s
23516 10 -1 %10s
23517 20 10 %20.10s
23519 MULTIBYTE zero means do not display multibyte chars, > 0 means do
23520 display them, and < 0 means obey the current buffer's value of
23521 enable_multibyte_characters.
23523 Value is the number of columns displayed. */
23525 static int
23526 display_string (const char *string, Lisp_Object lisp_string, Lisp_Object face_string,
23527 ptrdiff_t face_string_pos, ptrdiff_t start, struct it *it,
23528 int field_width, int precision, int max_x, int multibyte)
23530 int hpos_at_start = it->hpos;
23531 int saved_face_id = it->face_id;
23532 struct glyph_row *row = it->glyph_row;
23533 ptrdiff_t it_charpos;
23535 /* Initialize the iterator IT for iteration over STRING beginning
23536 with index START. */
23537 reseat_to_string (it, NILP (lisp_string) ? string : NULL, lisp_string, start,
23538 precision, field_width, multibyte);
23539 if (string && STRINGP (lisp_string))
23540 /* LISP_STRING is the one returned by decode_mode_spec. We should
23541 ignore its text properties. */
23542 it->stop_charpos = it->end_charpos;
23544 /* If displaying STRING, set up the face of the iterator from
23545 FACE_STRING, if that's given. */
23546 if (STRINGP (face_string))
23548 ptrdiff_t endptr;
23549 struct face *face;
23551 it->face_id
23552 = face_at_string_position (it->w, face_string, face_string_pos,
23553 0, &endptr, it->base_face_id, false);
23554 face = FACE_FROM_ID (it->f, it->face_id);
23555 it->face_box_p = face->box != FACE_NO_BOX;
23558 /* Set max_x to the maximum allowed X position. Don't let it go
23559 beyond the right edge of the window. */
23560 if (max_x <= 0)
23561 max_x = it->last_visible_x;
23562 else
23563 max_x = min (max_x, it->last_visible_x);
23565 /* Skip over display elements that are not visible. because IT->w is
23566 hscrolled. */
23567 if (it->current_x < it->first_visible_x)
23568 move_it_in_display_line_to (it, 100000, it->first_visible_x,
23569 MOVE_TO_POS | MOVE_TO_X);
23571 row->ascent = it->max_ascent;
23572 row->height = it->max_ascent + it->max_descent;
23573 row->phys_ascent = it->max_phys_ascent;
23574 row->phys_height = it->max_phys_ascent + it->max_phys_descent;
23575 row->extra_line_spacing = it->max_extra_line_spacing;
23577 if (STRINGP (it->string))
23578 it_charpos = IT_STRING_CHARPOS (*it);
23579 else
23580 it_charpos = IT_CHARPOS (*it);
23582 /* This condition is for the case that we are called with current_x
23583 past last_visible_x. */
23584 while (it->current_x < max_x)
23586 int x_before, x, n_glyphs_before, i, nglyphs;
23588 /* Get the next display element. */
23589 if (!get_next_display_element (it))
23590 break;
23592 /* Produce glyphs. */
23593 x_before = it->current_x;
23594 n_glyphs_before = row->used[TEXT_AREA];
23595 PRODUCE_GLYPHS (it);
23597 nglyphs = row->used[TEXT_AREA] - n_glyphs_before;
23598 i = 0;
23599 x = x_before;
23600 while (i < nglyphs)
23602 struct glyph *glyph = row->glyphs[TEXT_AREA] + n_glyphs_before + i;
23604 if (it->line_wrap != TRUNCATE
23605 && x + glyph->pixel_width > max_x)
23607 /* End of continued line or max_x reached. */
23608 if (CHAR_GLYPH_PADDING_P (*glyph))
23610 /* A wide character is unbreakable. */
23611 if (row->reversed_p)
23612 unproduce_glyphs (it, row->used[TEXT_AREA]
23613 - n_glyphs_before);
23614 row->used[TEXT_AREA] = n_glyphs_before;
23615 it->current_x = x_before;
23617 else
23619 if (row->reversed_p)
23620 unproduce_glyphs (it, row->used[TEXT_AREA]
23621 - (n_glyphs_before + i));
23622 row->used[TEXT_AREA] = n_glyphs_before + i;
23623 it->current_x = x;
23625 break;
23627 else if (x + glyph->pixel_width >= it->first_visible_x)
23629 /* Glyph is at least partially visible. */
23630 ++it->hpos;
23631 if (x < it->first_visible_x)
23632 row->x = x - it->first_visible_x;
23634 else
23636 /* Glyph is off the left margin of the display area.
23637 Should not happen. */
23638 emacs_abort ();
23641 row->ascent = max (row->ascent, it->max_ascent);
23642 row->height = max (row->height, it->max_ascent + it->max_descent);
23643 row->phys_ascent = max (row->phys_ascent, it->max_phys_ascent);
23644 row->phys_height = max (row->phys_height,
23645 it->max_phys_ascent + it->max_phys_descent);
23646 row->extra_line_spacing = max (row->extra_line_spacing,
23647 it->max_extra_line_spacing);
23648 x += glyph->pixel_width;
23649 ++i;
23652 /* Stop if max_x reached. */
23653 if (i < nglyphs)
23654 break;
23656 /* Stop at line ends. */
23657 if (ITERATOR_AT_END_OF_LINE_P (it))
23659 it->continuation_lines_width = 0;
23660 break;
23663 set_iterator_to_next (it, true);
23664 if (STRINGP (it->string))
23665 it_charpos = IT_STRING_CHARPOS (*it);
23666 else
23667 it_charpos = IT_CHARPOS (*it);
23669 /* Stop if truncating at the right edge. */
23670 if (it->line_wrap == TRUNCATE
23671 && it->current_x >= it->last_visible_x)
23673 /* Add truncation mark, but don't do it if the line is
23674 truncated at a padding space. */
23675 if (it_charpos < it->string_nchars)
23677 if (!FRAME_WINDOW_P (it->f))
23679 int ii, n;
23681 if (it->current_x > it->last_visible_x)
23683 if (!row->reversed_p)
23685 for (ii = row->used[TEXT_AREA] - 1; ii > 0; --ii)
23686 if (!CHAR_GLYPH_PADDING_P (row->glyphs[TEXT_AREA][ii]))
23687 break;
23689 else
23691 for (ii = 0; ii < row->used[TEXT_AREA]; ii++)
23692 if (!CHAR_GLYPH_PADDING_P (row->glyphs[TEXT_AREA][ii]))
23693 break;
23694 unproduce_glyphs (it, ii + 1);
23695 ii = row->used[TEXT_AREA] - (ii + 1);
23697 for (n = row->used[TEXT_AREA]; ii < n; ++ii)
23699 row->used[TEXT_AREA] = ii;
23700 produce_special_glyphs (it, IT_TRUNCATION);
23703 produce_special_glyphs (it, IT_TRUNCATION);
23705 row->truncated_on_right_p = true;
23707 break;
23711 /* Maybe insert a truncation at the left. */
23712 if (it->first_visible_x
23713 && it_charpos > 0)
23715 if (!FRAME_WINDOW_P (it->f)
23716 || (row->reversed_p
23717 ? WINDOW_RIGHT_FRINGE_WIDTH (it->w)
23718 : WINDOW_LEFT_FRINGE_WIDTH (it->w)) == 0)
23719 insert_left_trunc_glyphs (it);
23720 row->truncated_on_left_p = true;
23723 it->face_id = saved_face_id;
23725 /* Value is number of columns displayed. */
23726 return it->hpos - hpos_at_start;
23731 /* This is like a combination of memq and assq. Return 1/2 if PROPVAL
23732 appears as an element of LIST or as the car of an element of LIST.
23733 If PROPVAL is a list, compare each element against LIST in that
23734 way, and return 1/2 if any element of PROPVAL is found in LIST.
23735 Otherwise return 0. This function cannot quit.
23736 The return value is 2 if the text is invisible but with an ellipsis
23737 and 1 if it's invisible and without an ellipsis. */
23740 invisible_prop (Lisp_Object propval, Lisp_Object list)
23742 Lisp_Object tail, proptail;
23744 for (tail = list; CONSP (tail); tail = XCDR (tail))
23746 register Lisp_Object tem;
23747 tem = XCAR (tail);
23748 if (EQ (propval, tem))
23749 return 1;
23750 if (CONSP (tem) && EQ (propval, XCAR (tem)))
23751 return NILP (XCDR (tem)) ? 1 : 2;
23754 if (CONSP (propval))
23756 for (proptail = propval; CONSP (proptail); proptail = XCDR (proptail))
23758 Lisp_Object propelt;
23759 propelt = XCAR (proptail);
23760 for (tail = list; CONSP (tail); tail = XCDR (tail))
23762 register Lisp_Object tem;
23763 tem = XCAR (tail);
23764 if (EQ (propelt, tem))
23765 return 1;
23766 if (CONSP (tem) && EQ (propelt, XCAR (tem)))
23767 return NILP (XCDR (tem)) ? 1 : 2;
23772 return 0;
23775 DEFUN ("invisible-p", Finvisible_p, Sinvisible_p, 1, 1, 0,
23776 doc: /* Non-nil if the property makes the text invisible.
23777 POS-OR-PROP can be a marker or number, in which case it is taken to be
23778 a position in the current buffer and the value of the `invisible' property
23779 is checked; or it can be some other value, which is then presumed to be the
23780 value of the `invisible' property of the text of interest.
23781 The non-nil value returned can be t for truly invisible text or something
23782 else if the text is replaced by an ellipsis. */)
23783 (Lisp_Object pos_or_prop)
23785 Lisp_Object prop
23786 = (NATNUMP (pos_or_prop) || MARKERP (pos_or_prop)
23787 ? Fget_char_property (pos_or_prop, Qinvisible, Qnil)
23788 : pos_or_prop);
23789 int invis = TEXT_PROP_MEANS_INVISIBLE (prop);
23790 return (invis == 0 ? Qnil
23791 : invis == 1 ? Qt
23792 : make_number (invis));
23795 /* Calculate a width or height in pixels from a specification using
23796 the following elements:
23798 SPEC ::=
23799 NUM - a (fractional) multiple of the default font width/height
23800 (NUM) - specifies exactly NUM pixels
23801 UNIT - a fixed number of pixels, see below.
23802 ELEMENT - size of a display element in pixels, see below.
23803 (NUM . SPEC) - equals NUM * SPEC
23804 (+ SPEC SPEC ...) - add pixel values
23805 (- SPEC SPEC ...) - subtract pixel values
23806 (- SPEC) - negate pixel value
23808 NUM ::=
23809 INT or FLOAT - a number constant
23810 SYMBOL - use symbol's (buffer local) variable binding.
23812 UNIT ::=
23813 in - pixels per inch *)
23814 mm - pixels per 1/1000 meter *)
23815 cm - pixels per 1/100 meter *)
23816 width - width of current font in pixels.
23817 height - height of current font in pixels.
23819 *) using the ratio(s) defined in display-pixels-per-inch.
23821 ELEMENT ::=
23823 left-fringe - left fringe width in pixels
23824 right-fringe - right fringe width in pixels
23826 left-margin - left margin width in pixels
23827 right-margin - right margin width in pixels
23829 scroll-bar - scroll-bar area width in pixels
23831 Examples:
23833 Pixels corresponding to 5 inches:
23834 (5 . in)
23836 Total width of non-text areas on left side of window (if scroll-bar is on left):
23837 '(space :width (+ left-fringe left-margin scroll-bar))
23839 Align to first text column (in header line):
23840 '(space :align-to 0)
23842 Align to middle of text area minus half the width of variable `my-image'
23843 containing a loaded image:
23844 '(space :align-to (0.5 . (- text my-image)))
23846 Width of left margin minus width of 1 character in the default font:
23847 '(space :width (- left-margin 1))
23849 Width of left margin minus width of 2 characters in the current font:
23850 '(space :width (- left-margin (2 . width)))
23852 Center 1 character over left-margin (in header line):
23853 '(space :align-to (+ left-margin (0.5 . left-margin) -0.5))
23855 Different ways to express width of left fringe plus left margin minus one pixel:
23856 '(space :width (- (+ left-fringe left-margin) (1)))
23857 '(space :width (+ left-fringe left-margin (- (1))))
23858 '(space :width (+ left-fringe left-margin (-1)))
23862 static bool
23863 calc_pixel_width_or_height (double *res, struct it *it, Lisp_Object prop,
23864 struct font *font, bool width_p, int *align_to)
23866 double pixels;
23868 # define OK_PIXELS(val) (*res = (val), true)
23869 # define OK_ALIGN_TO(val) (*align_to = (val), true)
23871 if (NILP (prop))
23872 return OK_PIXELS (0);
23874 eassert (FRAME_LIVE_P (it->f));
23876 if (SYMBOLP (prop))
23878 if (SCHARS (SYMBOL_NAME (prop)) == 2)
23880 char *unit = SSDATA (SYMBOL_NAME (prop));
23882 if (unit[0] == 'i' && unit[1] == 'n')
23883 pixels = 1.0;
23884 else if (unit[0] == 'm' && unit[1] == 'm')
23885 pixels = 25.4;
23886 else if (unit[0] == 'c' && unit[1] == 'm')
23887 pixels = 2.54;
23888 else
23889 pixels = 0;
23890 if (pixels > 0)
23892 double ppi = (width_p ? FRAME_RES_X (it->f)
23893 : FRAME_RES_Y (it->f));
23895 if (ppi > 0)
23896 return OK_PIXELS (ppi / pixels);
23897 return false;
23901 #ifdef HAVE_WINDOW_SYSTEM
23902 if (EQ (prop, Qheight))
23903 return OK_PIXELS (font ? FONT_HEIGHT (font) : FRAME_LINE_HEIGHT (it->f));
23904 if (EQ (prop, Qwidth))
23905 return OK_PIXELS (font ? FONT_WIDTH (font) : FRAME_COLUMN_WIDTH (it->f));
23906 #else
23907 if (EQ (prop, Qheight) || EQ (prop, Qwidth))
23908 return OK_PIXELS (1);
23909 #endif
23911 if (EQ (prop, Qtext))
23912 return OK_PIXELS (width_p
23913 ? window_box_width (it->w, TEXT_AREA)
23914 : WINDOW_BOX_HEIGHT_NO_MODE_LINE (it->w));
23916 if (align_to && *align_to < 0)
23918 *res = 0;
23919 if (EQ (prop, Qleft))
23920 return OK_ALIGN_TO (window_box_left_offset (it->w, TEXT_AREA));
23921 if (EQ (prop, Qright))
23922 return OK_ALIGN_TO (window_box_right_offset (it->w, TEXT_AREA));
23923 if (EQ (prop, Qcenter))
23924 return OK_ALIGN_TO (window_box_left_offset (it->w, TEXT_AREA)
23925 + window_box_width (it->w, TEXT_AREA) / 2);
23926 if (EQ (prop, Qleft_fringe))
23927 return OK_ALIGN_TO (WINDOW_HAS_FRINGES_OUTSIDE_MARGINS (it->w)
23928 ? WINDOW_LEFT_SCROLL_BAR_AREA_WIDTH (it->w)
23929 : window_box_right_offset (it->w, LEFT_MARGIN_AREA));
23930 if (EQ (prop, Qright_fringe))
23931 return OK_ALIGN_TO (WINDOW_HAS_FRINGES_OUTSIDE_MARGINS (it->w)
23932 ? window_box_right_offset (it->w, RIGHT_MARGIN_AREA)
23933 : window_box_right_offset (it->w, TEXT_AREA));
23934 if (EQ (prop, Qleft_margin))
23935 return OK_ALIGN_TO (window_box_left_offset (it->w, LEFT_MARGIN_AREA));
23936 if (EQ (prop, Qright_margin))
23937 return OK_ALIGN_TO (window_box_left_offset (it->w, RIGHT_MARGIN_AREA));
23938 if (EQ (prop, Qscroll_bar))
23939 return OK_ALIGN_TO (WINDOW_HAS_VERTICAL_SCROLL_BAR_ON_LEFT (it->w)
23941 : (window_box_right_offset (it->w, RIGHT_MARGIN_AREA)
23942 + (WINDOW_HAS_FRINGES_OUTSIDE_MARGINS (it->w)
23943 ? WINDOW_RIGHT_FRINGE_WIDTH (it->w)
23944 : 0)));
23946 else
23948 if (EQ (prop, Qleft_fringe))
23949 return OK_PIXELS (WINDOW_LEFT_FRINGE_WIDTH (it->w));
23950 if (EQ (prop, Qright_fringe))
23951 return OK_PIXELS (WINDOW_RIGHT_FRINGE_WIDTH (it->w));
23952 if (EQ (prop, Qleft_margin))
23953 return OK_PIXELS (WINDOW_LEFT_MARGIN_WIDTH (it->w));
23954 if (EQ (prop, Qright_margin))
23955 return OK_PIXELS (WINDOW_RIGHT_MARGIN_WIDTH (it->w));
23956 if (EQ (prop, Qscroll_bar))
23957 return OK_PIXELS (WINDOW_SCROLL_BAR_AREA_WIDTH (it->w));
23960 prop = buffer_local_value (prop, it->w->contents);
23961 if (EQ (prop, Qunbound))
23962 prop = Qnil;
23965 if (INTEGERP (prop) || FLOATP (prop))
23967 int base_unit = (width_p
23968 ? FRAME_COLUMN_WIDTH (it->f)
23969 : FRAME_LINE_HEIGHT (it->f));
23970 return OK_PIXELS (XFLOATINT (prop) * base_unit);
23973 if (CONSP (prop))
23975 Lisp_Object car = XCAR (prop);
23976 Lisp_Object cdr = XCDR (prop);
23978 if (SYMBOLP (car))
23980 #ifdef HAVE_WINDOW_SYSTEM
23981 if (FRAME_WINDOW_P (it->f)
23982 && valid_image_p (prop))
23984 ptrdiff_t id = lookup_image (it->f, prop);
23985 struct image *img = IMAGE_FROM_ID (it->f, id);
23987 return OK_PIXELS (width_p ? img->width : img->height);
23989 #endif
23990 if (EQ (car, Qplus) || EQ (car, Qminus))
23992 bool first = true;
23993 double px;
23995 pixels = 0;
23996 while (CONSP (cdr))
23998 if (!calc_pixel_width_or_height (&px, it, XCAR (cdr),
23999 font, width_p, align_to))
24000 return false;
24001 if (first)
24002 pixels = (EQ (car, Qplus) ? px : -px), first = false;
24003 else
24004 pixels += px;
24005 cdr = XCDR (cdr);
24007 if (EQ (car, Qminus))
24008 pixels = -pixels;
24009 return OK_PIXELS (pixels);
24012 car = buffer_local_value (car, it->w->contents);
24013 if (EQ (car, Qunbound))
24014 car = Qnil;
24017 if (INTEGERP (car) || FLOATP (car))
24019 double fact;
24020 pixels = XFLOATINT (car);
24021 if (NILP (cdr))
24022 return OK_PIXELS (pixels);
24023 if (calc_pixel_width_or_height (&fact, it, cdr,
24024 font, width_p, align_to))
24025 return OK_PIXELS (pixels * fact);
24026 return false;
24029 return false;
24032 return false;
24036 /***********************************************************************
24037 Glyph Display
24038 ***********************************************************************/
24040 #ifdef HAVE_WINDOW_SYSTEM
24042 #ifdef GLYPH_DEBUG
24044 void
24045 dump_glyph_string (struct glyph_string *s)
24047 fprintf (stderr, "glyph string\n");
24048 fprintf (stderr, " x, y, w, h = %d, %d, %d, %d\n",
24049 s->x, s->y, s->width, s->height);
24050 fprintf (stderr, " ybase = %d\n", s->ybase);
24051 fprintf (stderr, " hl = %d\n", s->hl);
24052 fprintf (stderr, " left overhang = %d, right = %d\n",
24053 s->left_overhang, s->right_overhang);
24054 fprintf (stderr, " nchars = %d\n", s->nchars);
24055 fprintf (stderr, " extends to end of line = %d\n",
24056 s->extends_to_end_of_line_p);
24057 fprintf (stderr, " font height = %d\n", FONT_HEIGHT (s->font));
24058 fprintf (stderr, " bg width = %d\n", s->background_width);
24061 #endif /* GLYPH_DEBUG */
24063 /* Initialize glyph string S. CHAR2B is a suitably allocated vector
24064 of XChar2b structures for S; it can't be allocated in
24065 init_glyph_string because it must be allocated via `alloca'. W
24066 is the window on which S is drawn. ROW and AREA are the glyph row
24067 and area within the row from which S is constructed. START is the
24068 index of the first glyph structure covered by S. HL is a
24069 face-override for drawing S. */
24071 #ifdef HAVE_NTGUI
24072 #define OPTIONAL_HDC(hdc) HDC hdc,
24073 #define DECLARE_HDC(hdc) HDC hdc;
24074 #define ALLOCATE_HDC(hdc, f) hdc = get_frame_dc ((f))
24075 #define RELEASE_HDC(hdc, f) release_frame_dc ((f), (hdc))
24076 #endif
24078 #ifndef OPTIONAL_HDC
24079 #define OPTIONAL_HDC(hdc)
24080 #define DECLARE_HDC(hdc)
24081 #define ALLOCATE_HDC(hdc, f)
24082 #define RELEASE_HDC(hdc, f)
24083 #endif
24085 static void
24086 init_glyph_string (struct glyph_string *s,
24087 OPTIONAL_HDC (hdc)
24088 XChar2b *char2b, struct window *w, struct glyph_row *row,
24089 enum glyph_row_area area, int start, enum draw_glyphs_face hl)
24091 memset (s, 0, sizeof *s);
24092 s->w = w;
24093 s->f = XFRAME (w->frame);
24094 #ifdef HAVE_NTGUI
24095 s->hdc = hdc;
24096 #endif
24097 s->display = FRAME_X_DISPLAY (s->f);
24098 s->window = FRAME_X_WINDOW (s->f);
24099 s->char2b = char2b;
24100 s->hl = hl;
24101 s->row = row;
24102 s->area = area;
24103 s->first_glyph = row->glyphs[area] + start;
24104 s->height = row->height;
24105 s->y = WINDOW_TO_FRAME_PIXEL_Y (w, row->y);
24106 s->ybase = s->y + row->ascent;
24110 /* Append the list of glyph strings with head H and tail T to the list
24111 with head *HEAD and tail *TAIL. Set *HEAD and *TAIL to the result. */
24113 static void
24114 append_glyph_string_lists (struct glyph_string **head, struct glyph_string **tail,
24115 struct glyph_string *h, struct glyph_string *t)
24117 if (h)
24119 if (*head)
24120 (*tail)->next = h;
24121 else
24122 *head = h;
24123 h->prev = *tail;
24124 *tail = t;
24129 /* Prepend the list of glyph strings with head H and tail T to the
24130 list with head *HEAD and tail *TAIL. Set *HEAD and *TAIL to the
24131 result. */
24133 static void
24134 prepend_glyph_string_lists (struct glyph_string **head, struct glyph_string **tail,
24135 struct glyph_string *h, struct glyph_string *t)
24137 if (h)
24139 if (*head)
24140 (*head)->prev = t;
24141 else
24142 *tail = t;
24143 t->next = *head;
24144 *head = h;
24149 /* Append glyph string S to the list with head *HEAD and tail *TAIL.
24150 Set *HEAD and *TAIL to the resulting list. */
24152 static void
24153 append_glyph_string (struct glyph_string **head, struct glyph_string **tail,
24154 struct glyph_string *s)
24156 s->next = s->prev = NULL;
24157 append_glyph_string_lists (head, tail, s, s);
24161 /* Get face and two-byte form of character C in face FACE_ID on frame F.
24162 The encoding of C is returned in *CHAR2B. DISPLAY_P means
24163 make sure that X resources for the face returned are allocated.
24164 Value is a pointer to a realized face that is ready for display if
24165 DISPLAY_P. */
24167 static struct face *
24168 get_char_face_and_encoding (struct frame *f, int c, int face_id,
24169 XChar2b *char2b, bool display_p)
24171 struct face *face = FACE_FROM_ID (f, face_id);
24172 unsigned code = 0;
24174 if (face->font)
24176 code = face->font->driver->encode_char (face->font, c);
24178 if (code == FONT_INVALID_CODE)
24179 code = 0;
24181 STORE_XCHAR2B (char2b, (code >> 8), (code & 0xFF));
24183 /* Make sure X resources of the face are allocated. */
24184 #ifdef HAVE_X_WINDOWS
24185 if (display_p)
24186 #endif
24188 eassert (face != NULL);
24189 prepare_face_for_display (f, face);
24192 return face;
24196 /* Get face and two-byte form of character glyph GLYPH on frame F.
24197 The encoding of GLYPH->u.ch is returned in *CHAR2B. Value is
24198 a pointer to a realized face that is ready for display. */
24200 static struct face *
24201 get_glyph_face_and_encoding (struct frame *f, struct glyph *glyph,
24202 XChar2b *char2b)
24204 struct face *face;
24205 unsigned code = 0;
24207 eassert (glyph->type == CHAR_GLYPH);
24208 face = FACE_FROM_ID (f, glyph->face_id);
24210 /* Make sure X resources of the face are allocated. */
24211 eassert (face != NULL);
24212 prepare_face_for_display (f, face);
24214 if (face->font)
24216 if (CHAR_BYTE8_P (glyph->u.ch))
24217 code = CHAR_TO_BYTE8 (glyph->u.ch);
24218 else
24219 code = face->font->driver->encode_char (face->font, glyph->u.ch);
24221 if (code == FONT_INVALID_CODE)
24222 code = 0;
24225 STORE_XCHAR2B (char2b, (code >> 8), (code & 0xFF));
24226 return face;
24230 /* Get glyph code of character C in FONT in the two-byte form CHAR2B.
24231 Return true iff FONT has a glyph for C. */
24233 static bool
24234 get_char_glyph_code (int c, struct font *font, XChar2b *char2b)
24236 unsigned code;
24238 if (CHAR_BYTE8_P (c))
24239 code = CHAR_TO_BYTE8 (c);
24240 else
24241 code = font->driver->encode_char (font, c);
24243 if (code == FONT_INVALID_CODE)
24244 return false;
24245 STORE_XCHAR2B (char2b, (code >> 8), (code & 0xFF));
24246 return true;
24250 /* Fill glyph string S with composition components specified by S->cmp.
24252 BASE_FACE is the base face of the composition.
24253 S->cmp_from is the index of the first component for S.
24255 OVERLAPS non-zero means S should draw the foreground only, and use
24256 its physical height for clipping. See also draw_glyphs.
24258 Value is the index of a component not in S. */
24260 static int
24261 fill_composite_glyph_string (struct glyph_string *s, struct face *base_face,
24262 int overlaps)
24264 int i;
24265 /* For all glyphs of this composition, starting at the offset
24266 S->cmp_from, until we reach the end of the definition or encounter a
24267 glyph that requires the different face, add it to S. */
24268 struct face *face;
24270 eassert (s);
24272 s->for_overlaps = overlaps;
24273 s->face = NULL;
24274 s->font = NULL;
24275 for (i = s->cmp_from; i < s->cmp->glyph_len; i++)
24277 int c = COMPOSITION_GLYPH (s->cmp, i);
24279 /* TAB in a composition means display glyphs with padding space
24280 on the left or right. */
24281 if (c != '\t')
24283 int face_id = FACE_FOR_CHAR (s->f, base_face->ascii_face, c,
24284 -1, Qnil);
24286 face = get_char_face_and_encoding (s->f, c, face_id,
24287 s->char2b + i, true);
24288 if (face)
24290 if (! s->face)
24292 s->face = face;
24293 s->font = s->face->font;
24295 else if (s->face != face)
24296 break;
24299 ++s->nchars;
24301 s->cmp_to = i;
24303 if (s->face == NULL)
24305 s->face = base_face->ascii_face;
24306 s->font = s->face->font;
24309 /* All glyph strings for the same composition has the same width,
24310 i.e. the width set for the first component of the composition. */
24311 s->width = s->first_glyph->pixel_width;
24313 /* If the specified font could not be loaded, use the frame's
24314 default font, but record the fact that we couldn't load it in
24315 the glyph string so that we can draw rectangles for the
24316 characters of the glyph string. */
24317 if (s->font == NULL)
24319 s->font_not_found_p = true;
24320 s->font = FRAME_FONT (s->f);
24323 /* Adjust base line for subscript/superscript text. */
24324 s->ybase += s->first_glyph->voffset;
24326 return s->cmp_to;
24329 static int
24330 fill_gstring_glyph_string (struct glyph_string *s, int face_id,
24331 int start, int end, int overlaps)
24333 struct glyph *glyph, *last;
24334 Lisp_Object lgstring;
24335 int i;
24337 s->for_overlaps = overlaps;
24338 glyph = s->row->glyphs[s->area] + start;
24339 last = s->row->glyphs[s->area] + end;
24340 s->cmp_id = glyph->u.cmp.id;
24341 s->cmp_from = glyph->slice.cmp.from;
24342 s->cmp_to = glyph->slice.cmp.to + 1;
24343 s->face = FACE_FROM_ID (s->f, face_id);
24344 lgstring = composition_gstring_from_id (s->cmp_id);
24345 s->font = XFONT_OBJECT (LGSTRING_FONT (lgstring));
24346 glyph++;
24347 while (glyph < last
24348 && glyph->u.cmp.automatic
24349 && glyph->u.cmp.id == s->cmp_id
24350 && s->cmp_to == glyph->slice.cmp.from)
24351 s->cmp_to = (glyph++)->slice.cmp.to + 1;
24353 for (i = s->cmp_from; i < s->cmp_to; i++)
24355 Lisp_Object lglyph = LGSTRING_GLYPH (lgstring, i);
24356 unsigned code = LGLYPH_CODE (lglyph);
24358 STORE_XCHAR2B ((s->char2b + i), code >> 8, code & 0xFF);
24360 s->width = composition_gstring_width (lgstring, s->cmp_from, s->cmp_to, NULL);
24361 return glyph - s->row->glyphs[s->area];
24365 /* Fill glyph string S from a sequence glyphs for glyphless characters.
24366 See the comment of fill_glyph_string for arguments.
24367 Value is the index of the first glyph not in S. */
24370 static int
24371 fill_glyphless_glyph_string (struct glyph_string *s, int face_id,
24372 int start, int end, int overlaps)
24374 struct glyph *glyph, *last;
24375 int voffset;
24377 eassert (s->first_glyph->type == GLYPHLESS_GLYPH);
24378 s->for_overlaps = overlaps;
24379 glyph = s->row->glyphs[s->area] + start;
24380 last = s->row->glyphs[s->area] + end;
24381 voffset = glyph->voffset;
24382 s->face = FACE_FROM_ID (s->f, face_id);
24383 s->font = s->face->font ? s->face->font : FRAME_FONT (s->f);
24384 s->nchars = 1;
24385 s->width = glyph->pixel_width;
24386 glyph++;
24387 while (glyph < last
24388 && glyph->type == GLYPHLESS_GLYPH
24389 && glyph->voffset == voffset
24390 && glyph->face_id == face_id)
24392 s->nchars++;
24393 s->width += glyph->pixel_width;
24394 glyph++;
24396 s->ybase += voffset;
24397 return glyph - s->row->glyphs[s->area];
24401 /* Fill glyph string S from a sequence of character glyphs.
24403 FACE_ID is the face id of the string. START is the index of the
24404 first glyph to consider, END is the index of the last + 1.
24405 OVERLAPS non-zero means S should draw the foreground only, and use
24406 its physical height for clipping. See also draw_glyphs.
24408 Value is the index of the first glyph not in S. */
24410 static int
24411 fill_glyph_string (struct glyph_string *s, int face_id,
24412 int start, int end, int overlaps)
24414 struct glyph *glyph, *last;
24415 int voffset;
24416 bool glyph_not_available_p;
24418 eassert (s->f == XFRAME (s->w->frame));
24419 eassert (s->nchars == 0);
24420 eassert (start >= 0 && end > start);
24422 s->for_overlaps = overlaps;
24423 glyph = s->row->glyphs[s->area] + start;
24424 last = s->row->glyphs[s->area] + end;
24425 voffset = glyph->voffset;
24426 s->padding_p = glyph->padding_p;
24427 glyph_not_available_p = glyph->glyph_not_available_p;
24429 while (glyph < last
24430 && glyph->type == CHAR_GLYPH
24431 && glyph->voffset == voffset
24432 /* Same face id implies same font, nowadays. */
24433 && glyph->face_id == face_id
24434 && glyph->glyph_not_available_p == glyph_not_available_p)
24436 s->face = get_glyph_face_and_encoding (s->f, glyph,
24437 s->char2b + s->nchars);
24438 ++s->nchars;
24439 eassert (s->nchars <= end - start);
24440 s->width += glyph->pixel_width;
24441 if (glyph++->padding_p != s->padding_p)
24442 break;
24445 s->font = s->face->font;
24447 /* If the specified font could not be loaded, use the frame's font,
24448 but record the fact that we couldn't load it in
24449 S->font_not_found_p so that we can draw rectangles for the
24450 characters of the glyph string. */
24451 if (s->font == NULL || glyph_not_available_p)
24453 s->font_not_found_p = true;
24454 s->font = FRAME_FONT (s->f);
24457 /* Adjust base line for subscript/superscript text. */
24458 s->ybase += voffset;
24460 eassert (s->face && s->face->gc);
24461 return glyph - s->row->glyphs[s->area];
24465 /* Fill glyph string S from image glyph S->first_glyph. */
24467 static void
24468 fill_image_glyph_string (struct glyph_string *s)
24470 eassert (s->first_glyph->type == IMAGE_GLYPH);
24471 s->img = IMAGE_FROM_ID (s->f, s->first_glyph->u.img_id);
24472 eassert (s->img);
24473 s->slice = s->first_glyph->slice.img;
24474 s->face = FACE_FROM_ID (s->f, s->first_glyph->face_id);
24475 s->font = s->face->font;
24476 s->width = s->first_glyph->pixel_width;
24478 /* Adjust base line for subscript/superscript text. */
24479 s->ybase += s->first_glyph->voffset;
24483 /* Fill glyph string S from a sequence of stretch glyphs.
24485 START is the index of the first glyph to consider,
24486 END is the index of the last + 1.
24488 Value is the index of the first glyph not in S. */
24490 static int
24491 fill_stretch_glyph_string (struct glyph_string *s, int start, int end)
24493 struct glyph *glyph, *last;
24494 int voffset, face_id;
24496 eassert (s->first_glyph->type == STRETCH_GLYPH);
24498 glyph = s->row->glyphs[s->area] + start;
24499 last = s->row->glyphs[s->area] + end;
24500 face_id = glyph->face_id;
24501 s->face = FACE_FROM_ID (s->f, face_id);
24502 s->font = s->face->font;
24503 s->width = glyph->pixel_width;
24504 s->nchars = 1;
24505 voffset = glyph->voffset;
24507 for (++glyph;
24508 (glyph < last
24509 && glyph->type == STRETCH_GLYPH
24510 && glyph->voffset == voffset
24511 && glyph->face_id == face_id);
24512 ++glyph)
24513 s->width += glyph->pixel_width;
24515 /* Adjust base line for subscript/superscript text. */
24516 s->ybase += voffset;
24518 /* The case that face->gc == 0 is handled when drawing the glyph
24519 string by calling prepare_face_for_display. */
24520 eassert (s->face);
24521 return glyph - s->row->glyphs[s->area];
24524 static struct font_metrics *
24525 get_per_char_metric (struct font *font, XChar2b *char2b)
24527 static struct font_metrics metrics;
24528 unsigned code;
24530 if (! font)
24531 return NULL;
24532 code = (XCHAR2B_BYTE1 (char2b) << 8) | XCHAR2B_BYTE2 (char2b);
24533 if (code == FONT_INVALID_CODE)
24534 return NULL;
24535 font->driver->text_extents (font, &code, 1, &metrics);
24536 return &metrics;
24539 /* EXPORT for RIF:
24540 Set *LEFT and *RIGHT to the left and right overhang of GLYPH on
24541 frame F. Overhangs of glyphs other than type CHAR_GLYPH are
24542 assumed to be zero. */
24544 void
24545 x_get_glyph_overhangs (struct glyph *glyph, struct frame *f, int *left, int *right)
24547 *left = *right = 0;
24549 if (glyph->type == CHAR_GLYPH)
24551 XChar2b char2b;
24552 struct face *face = get_glyph_face_and_encoding (f, glyph, &char2b);
24553 if (face->font)
24555 struct font_metrics *pcm = get_per_char_metric (face->font, &char2b);
24556 if (pcm)
24558 if (pcm->rbearing > pcm->width)
24559 *right = pcm->rbearing - pcm->width;
24560 if (pcm->lbearing < 0)
24561 *left = -pcm->lbearing;
24565 else if (glyph->type == COMPOSITE_GLYPH)
24567 if (! glyph->u.cmp.automatic)
24569 struct composition *cmp = composition_table[glyph->u.cmp.id];
24571 if (cmp->rbearing > cmp->pixel_width)
24572 *right = cmp->rbearing - cmp->pixel_width;
24573 if (cmp->lbearing < 0)
24574 *left = - cmp->lbearing;
24576 else
24578 Lisp_Object gstring = composition_gstring_from_id (glyph->u.cmp.id);
24579 struct font_metrics metrics;
24581 composition_gstring_width (gstring, glyph->slice.cmp.from,
24582 glyph->slice.cmp.to + 1, &metrics);
24583 if (metrics.rbearing > metrics.width)
24584 *right = metrics.rbearing - metrics.width;
24585 if (metrics.lbearing < 0)
24586 *left = - metrics.lbearing;
24592 /* Return the index of the first glyph preceding glyph string S that
24593 is overwritten by S because of S's left overhang. Value is -1
24594 if no glyphs are overwritten. */
24596 static int
24597 left_overwritten (struct glyph_string *s)
24599 int k;
24601 if (s->left_overhang)
24603 int x = 0, i;
24604 struct glyph *glyphs = s->row->glyphs[s->area];
24605 int first = s->first_glyph - glyphs;
24607 for (i = first - 1; i >= 0 && x > -s->left_overhang; --i)
24608 x -= glyphs[i].pixel_width;
24610 k = i + 1;
24612 else
24613 k = -1;
24615 return k;
24619 /* Return the index of the first glyph preceding glyph string S that
24620 is overwriting S because of its right overhang. Value is -1 if no
24621 glyph in front of S overwrites S. */
24623 static int
24624 left_overwriting (struct glyph_string *s)
24626 int i, k, x;
24627 struct glyph *glyphs = s->row->glyphs[s->area];
24628 int first = s->first_glyph - glyphs;
24630 k = -1;
24631 x = 0;
24632 for (i = first - 1; i >= 0; --i)
24634 int left, right;
24635 x_get_glyph_overhangs (glyphs + i, s->f, &left, &right);
24636 if (x + right > 0)
24637 k = i;
24638 x -= glyphs[i].pixel_width;
24641 return k;
24645 /* Return the index of the last glyph following glyph string S that is
24646 overwritten by S because of S's right overhang. Value is -1 if
24647 no such glyph is found. */
24649 static int
24650 right_overwritten (struct glyph_string *s)
24652 int k = -1;
24654 if (s->right_overhang)
24656 int x = 0, i;
24657 struct glyph *glyphs = s->row->glyphs[s->area];
24658 int first = (s->first_glyph - glyphs
24659 + (s->first_glyph->type == COMPOSITE_GLYPH ? 1 : s->nchars));
24660 int end = s->row->used[s->area];
24662 for (i = first; i < end && s->right_overhang > x; ++i)
24663 x += glyphs[i].pixel_width;
24665 k = i;
24668 return k;
24672 /* Return the index of the last glyph following glyph string S that
24673 overwrites S because of its left overhang. Value is negative
24674 if no such glyph is found. */
24676 static int
24677 right_overwriting (struct glyph_string *s)
24679 int i, k, x;
24680 int end = s->row->used[s->area];
24681 struct glyph *glyphs = s->row->glyphs[s->area];
24682 int first = (s->first_glyph - glyphs
24683 + (s->first_glyph->type == COMPOSITE_GLYPH ? 1 : s->nchars));
24685 k = -1;
24686 x = 0;
24687 for (i = first; i < end; ++i)
24689 int left, right;
24690 x_get_glyph_overhangs (glyphs + i, s->f, &left, &right);
24691 if (x - left < 0)
24692 k = i;
24693 x += glyphs[i].pixel_width;
24696 return k;
24700 /* Set background width of glyph string S. START is the index of the
24701 first glyph following S. LAST_X is the right-most x-position + 1
24702 in the drawing area. */
24704 static void
24705 set_glyph_string_background_width (struct glyph_string *s, int start, int last_x)
24707 /* If the face of this glyph string has to be drawn to the end of
24708 the drawing area, set S->extends_to_end_of_line_p. */
24710 if (start == s->row->used[s->area]
24711 && ((s->row->fill_line_p
24712 && (s->hl == DRAW_NORMAL_TEXT
24713 || s->hl == DRAW_IMAGE_RAISED
24714 || s->hl == DRAW_IMAGE_SUNKEN))
24715 || s->hl == DRAW_MOUSE_FACE))
24716 s->extends_to_end_of_line_p = true;
24718 /* If S extends its face to the end of the line, set its
24719 background_width to the distance to the right edge of the drawing
24720 area. */
24721 if (s->extends_to_end_of_line_p)
24722 s->background_width = last_x - s->x + 1;
24723 else
24724 s->background_width = s->width;
24728 /* Compute overhangs and x-positions for glyph string S and its
24729 predecessors, or successors. X is the starting x-position for S.
24730 BACKWARD_P means process predecessors. */
24732 static void
24733 compute_overhangs_and_x (struct glyph_string *s, int x, bool backward_p)
24735 if (backward_p)
24737 while (s)
24739 if (FRAME_RIF (s->f)->compute_glyph_string_overhangs)
24740 FRAME_RIF (s->f)->compute_glyph_string_overhangs (s);
24741 x -= s->width;
24742 s->x = x;
24743 s = s->prev;
24746 else
24748 while (s)
24750 if (FRAME_RIF (s->f)->compute_glyph_string_overhangs)
24751 FRAME_RIF (s->f)->compute_glyph_string_overhangs (s);
24752 s->x = x;
24753 x += s->width;
24754 s = s->next;
24761 /* The following macros are only called from draw_glyphs below.
24762 They reference the following parameters of that function directly:
24763 `w', `row', `area', and `overlap_p'
24764 as well as the following local variables:
24765 `s', `f', and `hdc' (in W32) */
24767 #ifdef HAVE_NTGUI
24768 /* On W32, silently add local `hdc' variable to argument list of
24769 init_glyph_string. */
24770 #define INIT_GLYPH_STRING(s, char2b, w, row, area, start, hl) \
24771 init_glyph_string (s, hdc, char2b, w, row, area, start, hl)
24772 #else
24773 #define INIT_GLYPH_STRING(s, char2b, w, row, area, start, hl) \
24774 init_glyph_string (s, char2b, w, row, area, start, hl)
24775 #endif
24777 /* Add a glyph string for a stretch glyph to the list of strings
24778 between HEAD and TAIL. START is the index of the stretch glyph in
24779 row area AREA of glyph row ROW. END is the index of the last glyph
24780 in that glyph row area. X is the current output position assigned
24781 to the new glyph string constructed. HL overrides that face of the
24782 glyph; e.g. it is DRAW_CURSOR if a cursor has to be drawn. LAST_X
24783 is the right-most x-position of the drawing area. */
24785 /* SunOS 4 bundled cc, barfed on continuations in the arg lists here
24786 and below -- keep them on one line. */
24787 #define BUILD_STRETCH_GLYPH_STRING(START, END, HEAD, TAIL, HL, X, LAST_X) \
24788 do \
24790 s = alloca (sizeof *s); \
24791 INIT_GLYPH_STRING (s, NULL, w, row, area, START, HL); \
24792 START = fill_stretch_glyph_string (s, START, END); \
24793 append_glyph_string (&HEAD, &TAIL, s); \
24794 s->x = (X); \
24796 while (false)
24799 /* Add a glyph string for an image glyph to the list of strings
24800 between HEAD and TAIL. START is the index of the image glyph in
24801 row area AREA of glyph row ROW. END is the index of the last glyph
24802 in that glyph row area. X is the current output position assigned
24803 to the new glyph string constructed. HL overrides that face of the
24804 glyph; e.g. it is DRAW_CURSOR if a cursor has to be drawn. LAST_X
24805 is the right-most x-position of the drawing area. */
24807 #define BUILD_IMAGE_GLYPH_STRING(START, END, HEAD, TAIL, HL, X, LAST_X) \
24808 do \
24810 s = alloca (sizeof *s); \
24811 INIT_GLYPH_STRING (s, NULL, w, row, area, START, HL); \
24812 fill_image_glyph_string (s); \
24813 append_glyph_string (&HEAD, &TAIL, s); \
24814 ++START; \
24815 s->x = (X); \
24817 while (false)
24820 /* Add a glyph string for a sequence of character glyphs to the list
24821 of strings between HEAD and TAIL. START is the index of the first
24822 glyph in row area AREA of glyph row ROW that is part of the new
24823 glyph string. END is the index of the last glyph in that glyph row
24824 area. X is the current output position assigned to the new glyph
24825 string constructed. HL overrides that face of the glyph; e.g. it
24826 is DRAW_CURSOR if a cursor has to be drawn. LAST_X is the
24827 right-most x-position of the drawing area. */
24829 #define BUILD_CHAR_GLYPH_STRINGS(START, END, HEAD, TAIL, HL, X, LAST_X) \
24830 do \
24832 int face_id; \
24833 XChar2b *char2b; \
24835 face_id = (row)->glyphs[area][START].face_id; \
24837 s = alloca (sizeof *s); \
24838 SAFE_NALLOCA (char2b, 1, (END) - (START)); \
24839 INIT_GLYPH_STRING (s, char2b, w, row, area, START, HL); \
24840 append_glyph_string (&HEAD, &TAIL, s); \
24841 s->x = (X); \
24842 START = fill_glyph_string (s, face_id, START, END, overlaps); \
24844 while (false)
24847 /* Add a glyph string for a composite sequence to the list of strings
24848 between HEAD and TAIL. START is the index of the first glyph in
24849 row area AREA of glyph row ROW that is part of the new glyph
24850 string. END is the index of the last glyph in that glyph row area.
24851 X is the current output position assigned to the new glyph string
24852 constructed. HL overrides that face of the glyph; e.g. it is
24853 DRAW_CURSOR if a cursor has to be drawn. LAST_X is the right-most
24854 x-position of the drawing area. */
24856 #define BUILD_COMPOSITE_GLYPH_STRING(START, END, HEAD, TAIL, HL, X, LAST_X) \
24857 do { \
24858 int face_id = (row)->glyphs[area][START].face_id; \
24859 struct face *base_face = FACE_FROM_ID (f, face_id); \
24860 ptrdiff_t cmp_id = (row)->glyphs[area][START].u.cmp.id; \
24861 struct composition *cmp = composition_table[cmp_id]; \
24862 XChar2b *char2b; \
24863 struct glyph_string *first_s = NULL; \
24864 int n; \
24866 SAFE_NALLOCA (char2b, 1, cmp->glyph_len); \
24868 /* Make glyph_strings for each glyph sequence that is drawable by \
24869 the same face, and append them to HEAD/TAIL. */ \
24870 for (n = 0; n < cmp->glyph_len;) \
24872 s = alloca (sizeof *s); \
24873 INIT_GLYPH_STRING (s, char2b, w, row, area, START, HL); \
24874 append_glyph_string (&(HEAD), &(TAIL), s); \
24875 s->cmp = cmp; \
24876 s->cmp_from = n; \
24877 s->x = (X); \
24878 if (n == 0) \
24879 first_s = s; \
24880 n = fill_composite_glyph_string (s, base_face, overlaps); \
24883 ++START; \
24884 s = first_s; \
24885 } while (false)
24888 /* Add a glyph string for a glyph-string sequence to the list of strings
24889 between HEAD and TAIL. */
24891 #define BUILD_GSTRING_GLYPH_STRING(START, END, HEAD, TAIL, HL, X, LAST_X) \
24892 do { \
24893 int face_id; \
24894 XChar2b *char2b; \
24895 Lisp_Object gstring; \
24897 face_id = (row)->glyphs[area][START].face_id; \
24898 gstring = (composition_gstring_from_id \
24899 ((row)->glyphs[area][START].u.cmp.id)); \
24900 s = alloca (sizeof *s); \
24901 SAFE_NALLOCA (char2b, 1, LGSTRING_GLYPH_LEN (gstring)); \
24902 INIT_GLYPH_STRING (s, char2b, w, row, area, START, HL); \
24903 append_glyph_string (&(HEAD), &(TAIL), s); \
24904 s->x = (X); \
24905 START = fill_gstring_glyph_string (s, face_id, START, END, overlaps); \
24906 } while (false)
24909 /* Add a glyph string for a sequence of glyphless character's glyphs
24910 to the list of strings between HEAD and TAIL. The meanings of
24911 arguments are the same as those of BUILD_CHAR_GLYPH_STRINGS. */
24913 #define BUILD_GLYPHLESS_GLYPH_STRING(START, END, HEAD, TAIL, HL, X, LAST_X) \
24914 do \
24916 int face_id; \
24918 face_id = (row)->glyphs[area][START].face_id; \
24920 s = alloca (sizeof *s); \
24921 INIT_GLYPH_STRING (s, NULL, w, row, area, START, HL); \
24922 append_glyph_string (&HEAD, &TAIL, s); \
24923 s->x = (X); \
24924 START = fill_glyphless_glyph_string (s, face_id, START, END, \
24925 overlaps); \
24927 while (false)
24930 /* Build a list of glyph strings between HEAD and TAIL for the glyphs
24931 of AREA of glyph row ROW on window W between indices START and END.
24932 HL overrides the face for drawing glyph strings, e.g. it is
24933 DRAW_CURSOR to draw a cursor. X and LAST_X are start and end
24934 x-positions of the drawing area.
24936 This is an ugly monster macro construct because we must use alloca
24937 to allocate glyph strings (because draw_glyphs can be called
24938 asynchronously). */
24940 #define BUILD_GLYPH_STRINGS(START, END, HEAD, TAIL, HL, X, LAST_X) \
24941 do \
24943 HEAD = TAIL = NULL; \
24944 while (START < END) \
24946 struct glyph *first_glyph = (row)->glyphs[area] + START; \
24947 switch (first_glyph->type) \
24949 case CHAR_GLYPH: \
24950 BUILD_CHAR_GLYPH_STRINGS (START, END, HEAD, TAIL, \
24951 HL, X, LAST_X); \
24952 break; \
24954 case COMPOSITE_GLYPH: \
24955 if (first_glyph->u.cmp.automatic) \
24956 BUILD_GSTRING_GLYPH_STRING (START, END, HEAD, TAIL, \
24957 HL, X, LAST_X); \
24958 else \
24959 BUILD_COMPOSITE_GLYPH_STRING (START, END, HEAD, TAIL, \
24960 HL, X, LAST_X); \
24961 break; \
24963 case STRETCH_GLYPH: \
24964 BUILD_STRETCH_GLYPH_STRING (START, END, HEAD, TAIL, \
24965 HL, X, LAST_X); \
24966 break; \
24968 case IMAGE_GLYPH: \
24969 BUILD_IMAGE_GLYPH_STRING (START, END, HEAD, TAIL, \
24970 HL, X, LAST_X); \
24971 break; \
24973 case GLYPHLESS_GLYPH: \
24974 BUILD_GLYPHLESS_GLYPH_STRING (START, END, HEAD, TAIL, \
24975 HL, X, LAST_X); \
24976 break; \
24978 default: \
24979 emacs_abort (); \
24982 if (s) \
24984 set_glyph_string_background_width (s, START, LAST_X); \
24985 (X) += s->width; \
24988 } while (false)
24991 /* Draw glyphs between START and END in AREA of ROW on window W,
24992 starting at x-position X. X is relative to AREA in W. HL is a
24993 face-override with the following meaning:
24995 DRAW_NORMAL_TEXT draw normally
24996 DRAW_CURSOR draw in cursor face
24997 DRAW_MOUSE_FACE draw in mouse face.
24998 DRAW_INVERSE_VIDEO draw in mode line face
24999 DRAW_IMAGE_SUNKEN draw an image with a sunken relief around it
25000 DRAW_IMAGE_RAISED draw an image with a raised relief around it
25002 If OVERLAPS is non-zero, draw only the foreground of characters and
25003 clip to the physical height of ROW. Non-zero value also defines
25004 the overlapping part to be drawn:
25006 OVERLAPS_PRED overlap with preceding rows
25007 OVERLAPS_SUCC overlap with succeeding rows
25008 OVERLAPS_BOTH overlap with both preceding/succeeding rows
25009 OVERLAPS_ERASED_CURSOR overlap with erased cursor area
25011 Value is the x-position reached, relative to AREA of W. */
25013 static int
25014 draw_glyphs (struct window *w, int x, struct glyph_row *row,
25015 enum glyph_row_area area, ptrdiff_t start, ptrdiff_t end,
25016 enum draw_glyphs_face hl, int overlaps)
25018 struct glyph_string *head, *tail;
25019 struct glyph_string *s;
25020 struct glyph_string *clip_head = NULL, *clip_tail = NULL;
25021 int i, j, x_reached, last_x, area_left = 0;
25022 struct frame *f = XFRAME (WINDOW_FRAME (w));
25023 DECLARE_HDC (hdc);
25025 ALLOCATE_HDC (hdc, f);
25027 /* Let's rather be paranoid than getting a SEGV. */
25028 end = min (end, row->used[area]);
25029 start = clip_to_bounds (0, start, end);
25031 /* Translate X to frame coordinates. Set last_x to the right
25032 end of the drawing area. */
25033 if (row->full_width_p)
25035 /* X is relative to the left edge of W, without scroll bars
25036 or fringes. */
25037 area_left = WINDOW_LEFT_EDGE_X (w);
25038 last_x = (WINDOW_LEFT_EDGE_X (w) + WINDOW_PIXEL_WIDTH (w)
25039 - (row->mode_line_p ? WINDOW_RIGHT_DIVIDER_WIDTH (w) : 0));
25041 else
25043 area_left = window_box_left (w, area);
25044 last_x = area_left + window_box_width (w, area);
25046 x += area_left;
25048 /* Build a doubly-linked list of glyph_string structures between
25049 head and tail from what we have to draw. Note that the macro
25050 BUILD_GLYPH_STRINGS will modify its start parameter. That's
25051 the reason we use a separate variable `i'. */
25052 i = start;
25053 USE_SAFE_ALLOCA;
25054 BUILD_GLYPH_STRINGS (i, end, head, tail, hl, x, last_x);
25055 if (tail)
25056 x_reached = tail->x + tail->background_width;
25057 else
25058 x_reached = x;
25060 /* If there are any glyphs with lbearing < 0 or rbearing > width in
25061 the row, redraw some glyphs in front or following the glyph
25062 strings built above. */
25063 if (head && !overlaps && row->contains_overlapping_glyphs_p)
25065 struct glyph_string *h, *t;
25066 Mouse_HLInfo *hlinfo = MOUSE_HL_INFO (f);
25067 int mouse_beg_col IF_LINT (= 0), mouse_end_col IF_LINT (= 0);
25068 bool check_mouse_face = false;
25069 int dummy_x = 0;
25071 /* If mouse highlighting is on, we may need to draw adjacent
25072 glyphs using mouse-face highlighting. */
25073 if (area == TEXT_AREA && row->mouse_face_p
25074 && hlinfo->mouse_face_beg_row >= 0
25075 && hlinfo->mouse_face_end_row >= 0)
25077 ptrdiff_t row_vpos = MATRIX_ROW_VPOS (row, w->current_matrix);
25079 if (row_vpos >= hlinfo->mouse_face_beg_row
25080 && row_vpos <= hlinfo->mouse_face_end_row)
25082 check_mouse_face = true;
25083 mouse_beg_col = (row_vpos == hlinfo->mouse_face_beg_row)
25084 ? hlinfo->mouse_face_beg_col : 0;
25085 mouse_end_col = (row_vpos == hlinfo->mouse_face_end_row)
25086 ? hlinfo->mouse_face_end_col
25087 : row->used[TEXT_AREA];
25091 /* Compute overhangs for all glyph strings. */
25092 if (FRAME_RIF (f)->compute_glyph_string_overhangs)
25093 for (s = head; s; s = s->next)
25094 FRAME_RIF (f)->compute_glyph_string_overhangs (s);
25096 /* Prepend glyph strings for glyphs in front of the first glyph
25097 string that are overwritten because of the first glyph
25098 string's left overhang. The background of all strings
25099 prepended must be drawn because the first glyph string
25100 draws over it. */
25101 i = left_overwritten (head);
25102 if (i >= 0)
25104 enum draw_glyphs_face overlap_hl;
25106 /* If this row contains mouse highlighting, attempt to draw
25107 the overlapped glyphs with the correct highlight. This
25108 code fails if the overlap encompasses more than one glyph
25109 and mouse-highlight spans only some of these glyphs.
25110 However, making it work perfectly involves a lot more
25111 code, and I don't know if the pathological case occurs in
25112 practice, so we'll stick to this for now. --- cyd */
25113 if (check_mouse_face
25114 && mouse_beg_col < start && mouse_end_col > i)
25115 overlap_hl = DRAW_MOUSE_FACE;
25116 else
25117 overlap_hl = DRAW_NORMAL_TEXT;
25119 if (hl != overlap_hl)
25120 clip_head = head;
25121 j = i;
25122 BUILD_GLYPH_STRINGS (j, start, h, t,
25123 overlap_hl, dummy_x, last_x);
25124 start = i;
25125 compute_overhangs_and_x (t, head->x, true);
25126 prepend_glyph_string_lists (&head, &tail, h, t);
25127 if (clip_head == NULL)
25128 clip_head = head;
25131 /* Prepend glyph strings for glyphs in front of the first glyph
25132 string that overwrite that glyph string because of their
25133 right overhang. For these strings, only the foreground must
25134 be drawn, because it draws over the glyph string at `head'.
25135 The background must not be drawn because this would overwrite
25136 right overhangs of preceding glyphs for which no glyph
25137 strings exist. */
25138 i = left_overwriting (head);
25139 if (i >= 0)
25141 enum draw_glyphs_face overlap_hl;
25143 if (check_mouse_face
25144 && mouse_beg_col < start && mouse_end_col > i)
25145 overlap_hl = DRAW_MOUSE_FACE;
25146 else
25147 overlap_hl = DRAW_NORMAL_TEXT;
25149 if (hl == overlap_hl || clip_head == NULL)
25150 clip_head = head;
25151 BUILD_GLYPH_STRINGS (i, start, h, t,
25152 overlap_hl, dummy_x, last_x);
25153 for (s = h; s; s = s->next)
25154 s->background_filled_p = true;
25155 compute_overhangs_and_x (t, head->x, true);
25156 prepend_glyph_string_lists (&head, &tail, h, t);
25159 /* Append glyphs strings for glyphs following the last glyph
25160 string tail that are overwritten by tail. The background of
25161 these strings has to be drawn because tail's foreground draws
25162 over it. */
25163 i = right_overwritten (tail);
25164 if (i >= 0)
25166 enum draw_glyphs_face overlap_hl;
25168 if (check_mouse_face
25169 && mouse_beg_col < i && mouse_end_col > end)
25170 overlap_hl = DRAW_MOUSE_FACE;
25171 else
25172 overlap_hl = DRAW_NORMAL_TEXT;
25174 if (hl != overlap_hl)
25175 clip_tail = tail;
25176 BUILD_GLYPH_STRINGS (end, i, h, t,
25177 overlap_hl, x, last_x);
25178 /* Because BUILD_GLYPH_STRINGS updates the first argument,
25179 we don't have `end = i;' here. */
25180 compute_overhangs_and_x (h, tail->x + tail->width, false);
25181 append_glyph_string_lists (&head, &tail, h, t);
25182 if (clip_tail == NULL)
25183 clip_tail = tail;
25186 /* Append glyph strings for glyphs following the last glyph
25187 string tail that overwrite tail. The foreground of such
25188 glyphs has to be drawn because it writes into the background
25189 of tail. The background must not be drawn because it could
25190 paint over the foreground of following glyphs. */
25191 i = right_overwriting (tail);
25192 if (i >= 0)
25194 enum draw_glyphs_face overlap_hl;
25195 if (check_mouse_face
25196 && mouse_beg_col < i && mouse_end_col > end)
25197 overlap_hl = DRAW_MOUSE_FACE;
25198 else
25199 overlap_hl = DRAW_NORMAL_TEXT;
25201 if (hl == overlap_hl || clip_tail == NULL)
25202 clip_tail = tail;
25203 i++; /* We must include the Ith glyph. */
25204 BUILD_GLYPH_STRINGS (end, i, h, t,
25205 overlap_hl, x, last_x);
25206 for (s = h; s; s = s->next)
25207 s->background_filled_p = true;
25208 compute_overhangs_and_x (h, tail->x + tail->width, false);
25209 append_glyph_string_lists (&head, &tail, h, t);
25211 if (clip_head || clip_tail)
25212 for (s = head; s; s = s->next)
25214 s->clip_head = clip_head;
25215 s->clip_tail = clip_tail;
25219 /* Draw all strings. */
25220 for (s = head; s; s = s->next)
25221 FRAME_RIF (f)->draw_glyph_string (s);
25223 #ifndef HAVE_NS
25224 /* When focus a sole frame and move horizontally, this clears on_p
25225 causing a failure to erase prev cursor position. */
25226 if (area == TEXT_AREA
25227 && !row->full_width_p
25228 /* When drawing overlapping rows, only the glyph strings'
25229 foreground is drawn, which doesn't erase a cursor
25230 completely. */
25231 && !overlaps)
25233 int x0 = clip_head ? clip_head->x : (head ? head->x : x);
25234 int x1 = (clip_tail ? clip_tail->x + clip_tail->background_width
25235 : (tail ? tail->x + tail->background_width : x));
25236 x0 -= area_left;
25237 x1 -= area_left;
25239 notice_overwritten_cursor (w, TEXT_AREA, x0, x1,
25240 row->y, MATRIX_ROW_BOTTOM_Y (row));
25242 #endif
25244 /* Value is the x-position up to which drawn, relative to AREA of W.
25245 This doesn't include parts drawn because of overhangs. */
25246 if (row->full_width_p)
25247 x_reached = FRAME_TO_WINDOW_PIXEL_X (w, x_reached);
25248 else
25249 x_reached -= area_left;
25251 RELEASE_HDC (hdc, f);
25253 SAFE_FREE ();
25254 return x_reached;
25257 /* Expand row matrix if too narrow. Don't expand if area
25258 is not present. */
25260 #define IT_EXPAND_MATRIX_WIDTH(it, area) \
25262 if (!it->f->fonts_changed \
25263 && (it->glyph_row->glyphs[area] \
25264 < it->glyph_row->glyphs[area + 1])) \
25266 it->w->ncols_scale_factor++; \
25267 it->f->fonts_changed = true; \
25271 /* Store one glyph for IT->char_to_display in IT->glyph_row.
25272 Called from x_produce_glyphs when IT->glyph_row is non-null. */
25274 static void
25275 append_glyph (struct it *it)
25277 struct glyph *glyph;
25278 enum glyph_row_area area = it->area;
25280 eassert (it->glyph_row);
25281 eassert (it->char_to_display != '\n' && it->char_to_display != '\t');
25283 glyph = it->glyph_row->glyphs[area] + it->glyph_row->used[area];
25284 if (glyph < it->glyph_row->glyphs[area + 1])
25286 /* If the glyph row is reversed, we need to prepend the glyph
25287 rather than append it. */
25288 if (it->glyph_row->reversed_p && area == TEXT_AREA)
25290 struct glyph *g;
25292 /* Make room for the additional glyph. */
25293 for (g = glyph - 1; g >= it->glyph_row->glyphs[area]; g--)
25294 g[1] = *g;
25295 glyph = it->glyph_row->glyphs[area];
25297 glyph->charpos = CHARPOS (it->position);
25298 glyph->object = it->object;
25299 if (it->pixel_width > 0)
25301 glyph->pixel_width = it->pixel_width;
25302 glyph->padding_p = false;
25304 else
25306 /* Assure at least 1-pixel width. Otherwise, cursor can't
25307 be displayed correctly. */
25308 glyph->pixel_width = 1;
25309 glyph->padding_p = true;
25311 glyph->ascent = it->ascent;
25312 glyph->descent = it->descent;
25313 glyph->voffset = it->voffset;
25314 glyph->type = CHAR_GLYPH;
25315 glyph->avoid_cursor_p = it->avoid_cursor_p;
25316 glyph->multibyte_p = it->multibyte_p;
25317 if (it->glyph_row->reversed_p && area == TEXT_AREA)
25319 /* In R2L rows, the left and the right box edges need to be
25320 drawn in reverse direction. */
25321 glyph->right_box_line_p = it->start_of_box_run_p;
25322 glyph->left_box_line_p = it->end_of_box_run_p;
25324 else
25326 glyph->left_box_line_p = it->start_of_box_run_p;
25327 glyph->right_box_line_p = it->end_of_box_run_p;
25329 glyph->overlaps_vertically_p = (it->phys_ascent > it->ascent
25330 || it->phys_descent > it->descent);
25331 glyph->glyph_not_available_p = it->glyph_not_available_p;
25332 glyph->face_id = it->face_id;
25333 glyph->u.ch = it->char_to_display;
25334 glyph->slice.img = null_glyph_slice;
25335 glyph->font_type = FONT_TYPE_UNKNOWN;
25336 if (it->bidi_p)
25338 glyph->resolved_level = it->bidi_it.resolved_level;
25339 eassert ((it->bidi_it.type & 7) == it->bidi_it.type);
25340 glyph->bidi_type = it->bidi_it.type;
25342 else
25344 glyph->resolved_level = 0;
25345 glyph->bidi_type = UNKNOWN_BT;
25347 ++it->glyph_row->used[area];
25349 else
25350 IT_EXPAND_MATRIX_WIDTH (it, area);
25353 /* Store one glyph for the composition IT->cmp_it.id in
25354 IT->glyph_row. Called from x_produce_glyphs when IT->glyph_row is
25355 non-null. */
25357 static void
25358 append_composite_glyph (struct it *it)
25360 struct glyph *glyph;
25361 enum glyph_row_area area = it->area;
25363 eassert (it->glyph_row);
25365 glyph = it->glyph_row->glyphs[area] + it->glyph_row->used[area];
25366 if (glyph < it->glyph_row->glyphs[area + 1])
25368 /* If the glyph row is reversed, we need to prepend the glyph
25369 rather than append it. */
25370 if (it->glyph_row->reversed_p && it->area == TEXT_AREA)
25372 struct glyph *g;
25374 /* Make room for the new glyph. */
25375 for (g = glyph - 1; g >= it->glyph_row->glyphs[it->area]; g--)
25376 g[1] = *g;
25377 glyph = it->glyph_row->glyphs[it->area];
25379 glyph->charpos = it->cmp_it.charpos;
25380 glyph->object = it->object;
25381 glyph->pixel_width = it->pixel_width;
25382 glyph->ascent = it->ascent;
25383 glyph->descent = it->descent;
25384 glyph->voffset = it->voffset;
25385 glyph->type = COMPOSITE_GLYPH;
25386 if (it->cmp_it.ch < 0)
25388 glyph->u.cmp.automatic = false;
25389 glyph->u.cmp.id = it->cmp_it.id;
25390 glyph->slice.cmp.from = glyph->slice.cmp.to = 0;
25392 else
25394 glyph->u.cmp.automatic = true;
25395 glyph->u.cmp.id = it->cmp_it.id;
25396 glyph->slice.cmp.from = it->cmp_it.from;
25397 glyph->slice.cmp.to = it->cmp_it.to - 1;
25399 glyph->avoid_cursor_p = it->avoid_cursor_p;
25400 glyph->multibyte_p = it->multibyte_p;
25401 if (it->glyph_row->reversed_p && area == TEXT_AREA)
25403 /* In R2L rows, the left and the right box edges need to be
25404 drawn in reverse direction. */
25405 glyph->right_box_line_p = it->start_of_box_run_p;
25406 glyph->left_box_line_p = it->end_of_box_run_p;
25408 else
25410 glyph->left_box_line_p = it->start_of_box_run_p;
25411 glyph->right_box_line_p = it->end_of_box_run_p;
25413 glyph->overlaps_vertically_p = (it->phys_ascent > it->ascent
25414 || it->phys_descent > it->descent);
25415 glyph->padding_p = false;
25416 glyph->glyph_not_available_p = false;
25417 glyph->face_id = it->face_id;
25418 glyph->font_type = FONT_TYPE_UNKNOWN;
25419 if (it->bidi_p)
25421 glyph->resolved_level = it->bidi_it.resolved_level;
25422 eassert ((it->bidi_it.type & 7) == it->bidi_it.type);
25423 glyph->bidi_type = it->bidi_it.type;
25425 ++it->glyph_row->used[area];
25427 else
25428 IT_EXPAND_MATRIX_WIDTH (it, area);
25432 /* Change IT->ascent and IT->height according to the setting of
25433 IT->voffset. */
25435 static void
25436 take_vertical_position_into_account (struct it *it)
25438 if (it->voffset)
25440 if (it->voffset < 0)
25441 /* Increase the ascent so that we can display the text higher
25442 in the line. */
25443 it->ascent -= it->voffset;
25444 else
25445 /* Increase the descent so that we can display the text lower
25446 in the line. */
25447 it->descent += it->voffset;
25452 /* Produce glyphs/get display metrics for the image IT is loaded with.
25453 See the description of struct display_iterator in dispextern.h for
25454 an overview of struct display_iterator. */
25456 static void
25457 produce_image_glyph (struct it *it)
25459 struct image *img;
25460 struct face *face;
25461 int glyph_ascent, crop;
25462 struct glyph_slice slice;
25464 eassert (it->what == IT_IMAGE);
25466 face = FACE_FROM_ID (it->f, it->face_id);
25467 eassert (face);
25468 /* Make sure X resources of the face is loaded. */
25469 prepare_face_for_display (it->f, face);
25471 if (it->image_id < 0)
25473 /* Fringe bitmap. */
25474 it->ascent = it->phys_ascent = 0;
25475 it->descent = it->phys_descent = 0;
25476 it->pixel_width = 0;
25477 it->nglyphs = 0;
25478 return;
25481 img = IMAGE_FROM_ID (it->f, it->image_id);
25482 eassert (img);
25483 /* Make sure X resources of the image is loaded. */
25484 prepare_image_for_display (it->f, img);
25486 slice.x = slice.y = 0;
25487 slice.width = img->width;
25488 slice.height = img->height;
25490 if (INTEGERP (it->slice.x))
25491 slice.x = XINT (it->slice.x);
25492 else if (FLOATP (it->slice.x))
25493 slice.x = XFLOAT_DATA (it->slice.x) * img->width;
25495 if (INTEGERP (it->slice.y))
25496 slice.y = XINT (it->slice.y);
25497 else if (FLOATP (it->slice.y))
25498 slice.y = XFLOAT_DATA (it->slice.y) * img->height;
25500 if (INTEGERP (it->slice.width))
25501 slice.width = XINT (it->slice.width);
25502 else if (FLOATP (it->slice.width))
25503 slice.width = XFLOAT_DATA (it->slice.width) * img->width;
25505 if (INTEGERP (it->slice.height))
25506 slice.height = XINT (it->slice.height);
25507 else if (FLOATP (it->slice.height))
25508 slice.height = XFLOAT_DATA (it->slice.height) * img->height;
25510 if (slice.x >= img->width)
25511 slice.x = img->width;
25512 if (slice.y >= img->height)
25513 slice.y = img->height;
25514 if (slice.x + slice.width >= img->width)
25515 slice.width = img->width - slice.x;
25516 if (slice.y + slice.height > img->height)
25517 slice.height = img->height - slice.y;
25519 if (slice.width == 0 || slice.height == 0)
25520 return;
25522 it->ascent = it->phys_ascent = glyph_ascent = image_ascent (img, face, &slice);
25524 it->descent = slice.height - glyph_ascent;
25525 if (slice.y == 0)
25526 it->descent += img->vmargin;
25527 if (slice.y + slice.height == img->height)
25528 it->descent += img->vmargin;
25529 it->phys_descent = it->descent;
25531 it->pixel_width = slice.width;
25532 if (slice.x == 0)
25533 it->pixel_width += img->hmargin;
25534 if (slice.x + slice.width == img->width)
25535 it->pixel_width += img->hmargin;
25537 /* It's quite possible for images to have an ascent greater than
25538 their height, so don't get confused in that case. */
25539 if (it->descent < 0)
25540 it->descent = 0;
25542 it->nglyphs = 1;
25544 if (face->box != FACE_NO_BOX)
25546 if (face->box_line_width > 0)
25548 if (slice.y == 0)
25549 it->ascent += face->box_line_width;
25550 if (slice.y + slice.height == img->height)
25551 it->descent += face->box_line_width;
25554 if (it->start_of_box_run_p && slice.x == 0)
25555 it->pixel_width += eabs (face->box_line_width);
25556 if (it->end_of_box_run_p && slice.x + slice.width == img->width)
25557 it->pixel_width += eabs (face->box_line_width);
25560 take_vertical_position_into_account (it);
25562 /* Automatically crop wide image glyphs at right edge so we can
25563 draw the cursor on same display row. */
25564 if ((crop = it->pixel_width - (it->last_visible_x - it->current_x), crop > 0)
25565 && (it->hpos == 0 || it->pixel_width > it->last_visible_x / 4))
25567 it->pixel_width -= crop;
25568 slice.width -= crop;
25571 if (it->glyph_row)
25573 struct glyph *glyph;
25574 enum glyph_row_area area = it->area;
25576 glyph = it->glyph_row->glyphs[area] + it->glyph_row->used[area];
25577 if (it->glyph_row->reversed_p)
25579 struct glyph *g;
25581 /* Make room for the new glyph. */
25582 for (g = glyph - 1; g >= it->glyph_row->glyphs[it->area]; g--)
25583 g[1] = *g;
25584 glyph = it->glyph_row->glyphs[it->area];
25586 if (glyph < it->glyph_row->glyphs[area + 1])
25588 glyph->charpos = CHARPOS (it->position);
25589 glyph->object = it->object;
25590 glyph->pixel_width = it->pixel_width;
25591 glyph->ascent = glyph_ascent;
25592 glyph->descent = it->descent;
25593 glyph->voffset = it->voffset;
25594 glyph->type = IMAGE_GLYPH;
25595 glyph->avoid_cursor_p = it->avoid_cursor_p;
25596 glyph->multibyte_p = it->multibyte_p;
25597 if (it->glyph_row->reversed_p && area == TEXT_AREA)
25599 /* In R2L rows, the left and the right box edges need to be
25600 drawn in reverse direction. */
25601 glyph->right_box_line_p = it->start_of_box_run_p;
25602 glyph->left_box_line_p = it->end_of_box_run_p;
25604 else
25606 glyph->left_box_line_p = it->start_of_box_run_p;
25607 glyph->right_box_line_p = it->end_of_box_run_p;
25609 glyph->overlaps_vertically_p = false;
25610 glyph->padding_p = false;
25611 glyph->glyph_not_available_p = false;
25612 glyph->face_id = it->face_id;
25613 glyph->u.img_id = img->id;
25614 glyph->slice.img = slice;
25615 glyph->font_type = FONT_TYPE_UNKNOWN;
25616 if (it->bidi_p)
25618 glyph->resolved_level = it->bidi_it.resolved_level;
25619 eassert ((it->bidi_it.type & 7) == it->bidi_it.type);
25620 glyph->bidi_type = it->bidi_it.type;
25622 ++it->glyph_row->used[area];
25624 else
25625 IT_EXPAND_MATRIX_WIDTH (it, area);
25630 /* Append a stretch glyph to IT->glyph_row. OBJECT is the source
25631 of the glyph, WIDTH and HEIGHT are the width and height of the
25632 stretch. ASCENT is the ascent of the glyph (0 <= ASCENT <= HEIGHT). */
25634 static void
25635 append_stretch_glyph (struct it *it, Lisp_Object object,
25636 int width, int height, int ascent)
25638 struct glyph *glyph;
25639 enum glyph_row_area area = it->area;
25641 eassert (ascent >= 0 && ascent <= height);
25643 glyph = it->glyph_row->glyphs[area] + it->glyph_row->used[area];
25644 if (glyph < it->glyph_row->glyphs[area + 1])
25646 /* If the glyph row is reversed, we need to prepend the glyph
25647 rather than append it. */
25648 if (it->glyph_row->reversed_p && area == TEXT_AREA)
25650 struct glyph *g;
25652 /* Make room for the additional glyph. */
25653 for (g = glyph - 1; g >= it->glyph_row->glyphs[area]; g--)
25654 g[1] = *g;
25655 glyph = it->glyph_row->glyphs[area];
25657 /* Decrease the width of the first glyph of the row that
25658 begins before first_visible_x (e.g., due to hscroll).
25659 This is so the overall width of the row becomes smaller
25660 by the scroll amount, and the stretch glyph appended by
25661 extend_face_to_end_of_line will be wider, to shift the
25662 row glyphs to the right. (In L2R rows, the corresponding
25663 left-shift effect is accomplished by setting row->x to a
25664 negative value, which won't work with R2L rows.)
25666 This must leave us with a positive value of WIDTH, since
25667 otherwise the call to move_it_in_display_line_to at the
25668 beginning of display_line would have got past the entire
25669 first glyph, and then it->current_x would have been
25670 greater or equal to it->first_visible_x. */
25671 if (it->current_x < it->first_visible_x)
25672 width -= it->first_visible_x - it->current_x;
25673 eassert (width > 0);
25675 glyph->charpos = CHARPOS (it->position);
25676 glyph->object = object;
25677 glyph->pixel_width = width;
25678 glyph->ascent = ascent;
25679 glyph->descent = height - ascent;
25680 glyph->voffset = it->voffset;
25681 glyph->type = STRETCH_GLYPH;
25682 glyph->avoid_cursor_p = it->avoid_cursor_p;
25683 glyph->multibyte_p = it->multibyte_p;
25684 if (it->glyph_row->reversed_p && area == TEXT_AREA)
25686 /* In R2L rows, the left and the right box edges need to be
25687 drawn in reverse direction. */
25688 glyph->right_box_line_p = it->start_of_box_run_p;
25689 glyph->left_box_line_p = it->end_of_box_run_p;
25691 else
25693 glyph->left_box_line_p = it->start_of_box_run_p;
25694 glyph->right_box_line_p = it->end_of_box_run_p;
25696 glyph->overlaps_vertically_p = false;
25697 glyph->padding_p = false;
25698 glyph->glyph_not_available_p = false;
25699 glyph->face_id = it->face_id;
25700 glyph->u.stretch.ascent = ascent;
25701 glyph->u.stretch.height = height;
25702 glyph->slice.img = null_glyph_slice;
25703 glyph->font_type = FONT_TYPE_UNKNOWN;
25704 if (it->bidi_p)
25706 glyph->resolved_level = it->bidi_it.resolved_level;
25707 eassert ((it->bidi_it.type & 7) == it->bidi_it.type);
25708 glyph->bidi_type = it->bidi_it.type;
25710 else
25712 glyph->resolved_level = 0;
25713 glyph->bidi_type = UNKNOWN_BT;
25715 ++it->glyph_row->used[area];
25717 else
25718 IT_EXPAND_MATRIX_WIDTH (it, area);
25721 #endif /* HAVE_WINDOW_SYSTEM */
25723 /* Produce a stretch glyph for iterator IT. IT->object is the value
25724 of the glyph property displayed. The value must be a list
25725 `(space KEYWORD VALUE ...)' with the following KEYWORD/VALUE pairs
25726 being recognized:
25728 1. `:width WIDTH' specifies that the space should be WIDTH *
25729 canonical char width wide. WIDTH may be an integer or floating
25730 point number.
25732 2. `:relative-width FACTOR' specifies that the width of the stretch
25733 should be computed from the width of the first character having the
25734 `glyph' property, and should be FACTOR times that width.
25736 3. `:align-to HPOS' specifies that the space should be wide enough
25737 to reach HPOS, a value in canonical character units.
25739 Exactly one of the above pairs must be present.
25741 4. `:height HEIGHT' specifies that the height of the stretch produced
25742 should be HEIGHT, measured in canonical character units.
25744 5. `:relative-height FACTOR' specifies that the height of the
25745 stretch should be FACTOR times the height of the characters having
25746 the glyph property.
25748 Either none or exactly one of 4 or 5 must be present.
25750 6. `:ascent ASCENT' specifies that ASCENT percent of the height
25751 of the stretch should be used for the ascent of the stretch.
25752 ASCENT must be in the range 0 <= ASCENT <= 100. */
25754 void
25755 produce_stretch_glyph (struct it *it)
25757 /* (space :width WIDTH :height HEIGHT ...) */
25758 Lisp_Object prop, plist;
25759 int width = 0, height = 0, align_to = -1;
25760 bool zero_width_ok_p = false;
25761 double tem;
25762 struct font *font = NULL;
25764 #ifdef HAVE_WINDOW_SYSTEM
25765 int ascent = 0;
25766 bool zero_height_ok_p = false;
25768 if (FRAME_WINDOW_P (it->f))
25770 struct face *face = FACE_FROM_ID (it->f, it->face_id);
25771 font = face->font ? face->font : FRAME_FONT (it->f);
25772 prepare_face_for_display (it->f, face);
25774 #endif
25776 /* List should start with `space'. */
25777 eassert (CONSP (it->object) && EQ (XCAR (it->object), Qspace));
25778 plist = XCDR (it->object);
25780 /* Compute the width of the stretch. */
25781 if ((prop = Fplist_get (plist, QCwidth), !NILP (prop))
25782 && calc_pixel_width_or_height (&tem, it, prop, font, true, 0))
25784 /* Absolute width `:width WIDTH' specified and valid. */
25785 zero_width_ok_p = true;
25786 width = (int)tem;
25788 #ifdef HAVE_WINDOW_SYSTEM
25789 else if (FRAME_WINDOW_P (it->f)
25790 && (prop = Fplist_get (plist, QCrelative_width), NUMVAL (prop) > 0))
25792 /* Relative width `:relative-width FACTOR' specified and valid.
25793 Compute the width of the characters having the `glyph'
25794 property. */
25795 struct it it2;
25796 unsigned char *p = BYTE_POS_ADDR (IT_BYTEPOS (*it));
25798 it2 = *it;
25799 if (it->multibyte_p)
25800 it2.c = it2.char_to_display = STRING_CHAR_AND_LENGTH (p, it2.len);
25801 else
25803 it2.c = it2.char_to_display = *p, it2.len = 1;
25804 if (! ASCII_CHAR_P (it2.c))
25805 it2.char_to_display = BYTE8_TO_CHAR (it2.c);
25808 it2.glyph_row = NULL;
25809 it2.what = IT_CHARACTER;
25810 x_produce_glyphs (&it2);
25811 width = NUMVAL (prop) * it2.pixel_width;
25813 #endif /* HAVE_WINDOW_SYSTEM */
25814 else if ((prop = Fplist_get (plist, QCalign_to), !NILP (prop))
25815 && calc_pixel_width_or_height (&tem, it, prop, font, true,
25816 &align_to))
25818 if (it->glyph_row == NULL || !it->glyph_row->mode_line_p)
25819 align_to = (align_to < 0
25821 : align_to - window_box_left_offset (it->w, TEXT_AREA));
25822 else if (align_to < 0)
25823 align_to = window_box_left_offset (it->w, TEXT_AREA);
25824 width = max (0, (int)tem + align_to - it->current_x);
25825 zero_width_ok_p = true;
25827 else
25828 /* Nothing specified -> width defaults to canonical char width. */
25829 width = FRAME_COLUMN_WIDTH (it->f);
25831 if (width <= 0 && (width < 0 || !zero_width_ok_p))
25832 width = 1;
25834 #ifdef HAVE_WINDOW_SYSTEM
25835 /* Compute height. */
25836 if (FRAME_WINDOW_P (it->f))
25838 if ((prop = Fplist_get (plist, QCheight), !NILP (prop))
25839 && calc_pixel_width_or_height (&tem, it, prop, font, false, 0))
25841 height = (int)tem;
25842 zero_height_ok_p = true;
25844 else if (prop = Fplist_get (plist, QCrelative_height),
25845 NUMVAL (prop) > 0)
25846 height = FONT_HEIGHT (font) * NUMVAL (prop);
25847 else
25848 height = FONT_HEIGHT (font);
25850 if (height <= 0 && (height < 0 || !zero_height_ok_p))
25851 height = 1;
25853 /* Compute percentage of height used for ascent. If
25854 `:ascent ASCENT' is present and valid, use that. Otherwise,
25855 derive the ascent from the font in use. */
25856 if (prop = Fplist_get (plist, QCascent),
25857 NUMVAL (prop) > 0 && NUMVAL (prop) <= 100)
25858 ascent = height * NUMVAL (prop) / 100.0;
25859 else if (!NILP (prop)
25860 && calc_pixel_width_or_height (&tem, it, prop, font, false, 0))
25861 ascent = min (max (0, (int)tem), height);
25862 else
25863 ascent = (height * FONT_BASE (font)) / FONT_HEIGHT (font);
25865 else
25866 #endif /* HAVE_WINDOW_SYSTEM */
25867 height = 1;
25869 if (width > 0 && it->line_wrap != TRUNCATE
25870 && it->current_x + width > it->last_visible_x)
25872 width = it->last_visible_x - it->current_x;
25873 #ifdef HAVE_WINDOW_SYSTEM
25874 /* Subtract one more pixel from the stretch width, but only on
25875 GUI frames, since on a TTY each glyph is one "pixel" wide. */
25876 width -= FRAME_WINDOW_P (it->f);
25877 #endif
25880 if (width > 0 && height > 0 && it->glyph_row)
25882 Lisp_Object o_object = it->object;
25883 Lisp_Object object = it->stack[it->sp - 1].string;
25884 int n = width;
25886 if (!STRINGP (object))
25887 object = it->w->contents;
25888 #ifdef HAVE_WINDOW_SYSTEM
25889 if (FRAME_WINDOW_P (it->f))
25890 append_stretch_glyph (it, object, width, height, ascent);
25891 else
25892 #endif
25894 it->object = object;
25895 it->char_to_display = ' ';
25896 it->pixel_width = it->len = 1;
25897 while (n--)
25898 tty_append_glyph (it);
25899 it->object = o_object;
25903 it->pixel_width = width;
25904 #ifdef HAVE_WINDOW_SYSTEM
25905 if (FRAME_WINDOW_P (it->f))
25907 it->ascent = it->phys_ascent = ascent;
25908 it->descent = it->phys_descent = height - it->ascent;
25909 it->nglyphs = width > 0 && height > 0;
25910 take_vertical_position_into_account (it);
25912 else
25913 #endif
25914 it->nglyphs = width;
25917 /* Get information about special display element WHAT in an
25918 environment described by IT. WHAT is one of IT_TRUNCATION or
25919 IT_CONTINUATION. Maybe produce glyphs for WHAT if IT has a
25920 non-null glyph_row member. This function ensures that fields like
25921 face_id, c, len of IT are left untouched. */
25923 static void
25924 produce_special_glyphs (struct it *it, enum display_element_type what)
25926 struct it temp_it;
25927 Lisp_Object gc;
25928 GLYPH glyph;
25930 temp_it = *it;
25931 temp_it.object = Qnil;
25932 memset (&temp_it.current, 0, sizeof temp_it.current);
25934 if (what == IT_CONTINUATION)
25936 /* Continuation glyph. For R2L lines, we mirror it by hand. */
25937 if (it->bidi_it.paragraph_dir == R2L)
25938 SET_GLYPH_FROM_CHAR (glyph, '/');
25939 else
25940 SET_GLYPH_FROM_CHAR (glyph, '\\');
25941 if (it->dp
25942 && (gc = DISP_CONTINUE_GLYPH (it->dp), GLYPH_CODE_P (gc)))
25944 /* FIXME: Should we mirror GC for R2L lines? */
25945 SET_GLYPH_FROM_GLYPH_CODE (glyph, gc);
25946 spec_glyph_lookup_face (XWINDOW (it->window), &glyph);
25949 else if (what == IT_TRUNCATION)
25951 /* Truncation glyph. */
25952 SET_GLYPH_FROM_CHAR (glyph, '$');
25953 if (it->dp
25954 && (gc = DISP_TRUNC_GLYPH (it->dp), GLYPH_CODE_P (gc)))
25956 /* FIXME: Should we mirror GC for R2L lines? */
25957 SET_GLYPH_FROM_GLYPH_CODE (glyph, gc);
25958 spec_glyph_lookup_face (XWINDOW (it->window), &glyph);
25961 else
25962 emacs_abort ();
25964 #ifdef HAVE_WINDOW_SYSTEM
25965 /* On a GUI frame, when the right fringe (left fringe for R2L rows)
25966 is turned off, we precede the truncation/continuation glyphs by a
25967 stretch glyph whose width is computed such that these special
25968 glyphs are aligned at the window margin, even when very different
25969 fonts are used in different glyph rows. */
25970 if (FRAME_WINDOW_P (temp_it.f)
25971 /* init_iterator calls this with it->glyph_row == NULL, and it
25972 wants only the pixel width of the truncation/continuation
25973 glyphs. */
25974 && temp_it.glyph_row
25975 /* insert_left_trunc_glyphs calls us at the beginning of the
25976 row, and it has its own calculation of the stretch glyph
25977 width. */
25978 && temp_it.glyph_row->used[TEXT_AREA] > 0
25979 && (temp_it.glyph_row->reversed_p
25980 ? WINDOW_LEFT_FRINGE_WIDTH (temp_it.w)
25981 : WINDOW_RIGHT_FRINGE_WIDTH (temp_it.w)) == 0)
25983 int stretch_width = temp_it.last_visible_x - temp_it.current_x;
25985 if (stretch_width > 0)
25987 struct face *face = FACE_FROM_ID (temp_it.f, temp_it.face_id);
25988 struct font *font =
25989 face->font ? face->font : FRAME_FONT (temp_it.f);
25990 int stretch_ascent =
25991 (((temp_it.ascent + temp_it.descent)
25992 * FONT_BASE (font)) / FONT_HEIGHT (font));
25994 append_stretch_glyph (&temp_it, Qnil, stretch_width,
25995 temp_it.ascent + temp_it.descent,
25996 stretch_ascent);
25999 #endif
26001 temp_it.dp = NULL;
26002 temp_it.what = IT_CHARACTER;
26003 temp_it.c = temp_it.char_to_display = GLYPH_CHAR (glyph);
26004 temp_it.face_id = GLYPH_FACE (glyph);
26005 temp_it.len = CHAR_BYTES (temp_it.c);
26007 PRODUCE_GLYPHS (&temp_it);
26008 it->pixel_width = temp_it.pixel_width;
26009 it->nglyphs = temp_it.nglyphs;
26012 #ifdef HAVE_WINDOW_SYSTEM
26014 /* Calculate line-height and line-spacing properties.
26015 An integer value specifies explicit pixel value.
26016 A float value specifies relative value to current face height.
26017 A cons (float . face-name) specifies relative value to
26018 height of specified face font.
26020 Returns height in pixels, or nil. */
26022 static Lisp_Object
26023 calc_line_height_property (struct it *it, Lisp_Object val, struct font *font,
26024 int boff, bool override)
26026 Lisp_Object face_name = Qnil;
26027 int ascent, descent, height;
26029 if (NILP (val) || INTEGERP (val) || (override && EQ (val, Qt)))
26030 return val;
26032 if (CONSP (val))
26034 face_name = XCAR (val);
26035 val = XCDR (val);
26036 if (!NUMBERP (val))
26037 val = make_number (1);
26038 if (NILP (face_name))
26040 height = it->ascent + it->descent;
26041 goto scale;
26045 if (NILP (face_name))
26047 font = FRAME_FONT (it->f);
26048 boff = FRAME_BASELINE_OFFSET (it->f);
26050 else if (EQ (face_name, Qt))
26052 override = false;
26054 else
26056 int face_id;
26057 struct face *face;
26059 face_id = lookup_named_face (it->f, face_name, false);
26060 if (face_id < 0)
26061 return make_number (-1);
26063 face = FACE_FROM_ID (it->f, face_id);
26064 font = face->font;
26065 if (font == NULL)
26066 return make_number (-1);
26067 boff = font->baseline_offset;
26068 if (font->vertical_centering)
26069 boff = VCENTER_BASELINE_OFFSET (font, it->f) - boff;
26072 ascent = FONT_BASE (font) + boff;
26073 descent = FONT_DESCENT (font) - boff;
26075 if (override)
26077 it->override_ascent = ascent;
26078 it->override_descent = descent;
26079 it->override_boff = boff;
26082 height = ascent + descent;
26084 scale:
26085 if (FLOATP (val))
26086 height = (int)(XFLOAT_DATA (val) * height);
26087 else if (INTEGERP (val))
26088 height *= XINT (val);
26090 return make_number (height);
26094 /* Append a glyph for a glyphless character to IT->glyph_row. FACE_ID
26095 is a face ID to be used for the glyph. FOR_NO_FONT is true if
26096 and only if this is for a character for which no font was found.
26098 If the display method (it->glyphless_method) is
26099 GLYPHLESS_DISPLAY_ACRONYM or GLYPHLESS_DISPLAY_HEX_CODE, LEN is a
26100 length of the acronym or the hexadecimal string, UPPER_XOFF and
26101 UPPER_YOFF are pixel offsets for the upper part of the string,
26102 LOWER_XOFF and LOWER_YOFF are for the lower part.
26104 For the other display methods, LEN through LOWER_YOFF are zero. */
26106 static void
26107 append_glyphless_glyph (struct it *it, int face_id, bool for_no_font, int len,
26108 short upper_xoff, short upper_yoff,
26109 short lower_xoff, short lower_yoff)
26111 struct glyph *glyph;
26112 enum glyph_row_area area = it->area;
26114 glyph = it->glyph_row->glyphs[area] + it->glyph_row->used[area];
26115 if (glyph < it->glyph_row->glyphs[area + 1])
26117 /* If the glyph row is reversed, we need to prepend the glyph
26118 rather than append it. */
26119 if (it->glyph_row->reversed_p && area == TEXT_AREA)
26121 struct glyph *g;
26123 /* Make room for the additional glyph. */
26124 for (g = glyph - 1; g >= it->glyph_row->glyphs[area]; g--)
26125 g[1] = *g;
26126 glyph = it->glyph_row->glyphs[area];
26128 glyph->charpos = CHARPOS (it->position);
26129 glyph->object = it->object;
26130 glyph->pixel_width = it->pixel_width;
26131 glyph->ascent = it->ascent;
26132 glyph->descent = it->descent;
26133 glyph->voffset = it->voffset;
26134 glyph->type = GLYPHLESS_GLYPH;
26135 glyph->u.glyphless.method = it->glyphless_method;
26136 glyph->u.glyphless.for_no_font = for_no_font;
26137 glyph->u.glyphless.len = len;
26138 glyph->u.glyphless.ch = it->c;
26139 glyph->slice.glyphless.upper_xoff = upper_xoff;
26140 glyph->slice.glyphless.upper_yoff = upper_yoff;
26141 glyph->slice.glyphless.lower_xoff = lower_xoff;
26142 glyph->slice.glyphless.lower_yoff = lower_yoff;
26143 glyph->avoid_cursor_p = it->avoid_cursor_p;
26144 glyph->multibyte_p = it->multibyte_p;
26145 if (it->glyph_row->reversed_p && area == TEXT_AREA)
26147 /* In R2L rows, the left and the right box edges need to be
26148 drawn in reverse direction. */
26149 glyph->right_box_line_p = it->start_of_box_run_p;
26150 glyph->left_box_line_p = it->end_of_box_run_p;
26152 else
26154 glyph->left_box_line_p = it->start_of_box_run_p;
26155 glyph->right_box_line_p = it->end_of_box_run_p;
26157 glyph->overlaps_vertically_p = (it->phys_ascent > it->ascent
26158 || it->phys_descent > it->descent);
26159 glyph->padding_p = false;
26160 glyph->glyph_not_available_p = false;
26161 glyph->face_id = face_id;
26162 glyph->font_type = FONT_TYPE_UNKNOWN;
26163 if (it->bidi_p)
26165 glyph->resolved_level = it->bidi_it.resolved_level;
26166 eassert ((it->bidi_it.type & 7) == it->bidi_it.type);
26167 glyph->bidi_type = it->bidi_it.type;
26169 ++it->glyph_row->used[area];
26171 else
26172 IT_EXPAND_MATRIX_WIDTH (it, area);
26176 /* Produce a glyph for a glyphless character for iterator IT.
26177 IT->glyphless_method specifies which method to use for displaying
26178 the character. See the description of enum
26179 glyphless_display_method in dispextern.h for the detail.
26181 FOR_NO_FONT is true if and only if this is for a character for
26182 which no font was found. ACRONYM, if non-nil, is an acronym string
26183 for the character. */
26185 static void
26186 produce_glyphless_glyph (struct it *it, bool for_no_font, Lisp_Object acronym)
26188 int face_id;
26189 struct face *face;
26190 struct font *font;
26191 int base_width, base_height, width, height;
26192 short upper_xoff, upper_yoff, lower_xoff, lower_yoff;
26193 int len;
26195 /* Get the metrics of the base font. We always refer to the current
26196 ASCII face. */
26197 face = FACE_FROM_ID (it->f, it->face_id)->ascii_face;
26198 font = face->font ? face->font : FRAME_FONT (it->f);
26199 it->ascent = FONT_BASE (font) + font->baseline_offset;
26200 it->descent = FONT_DESCENT (font) - font->baseline_offset;
26201 base_height = it->ascent + it->descent;
26202 base_width = font->average_width;
26204 face_id = merge_glyphless_glyph_face (it);
26206 if (it->glyphless_method == GLYPHLESS_DISPLAY_THIN_SPACE)
26208 it->pixel_width = THIN_SPACE_WIDTH;
26209 len = 0;
26210 upper_xoff = upper_yoff = lower_xoff = lower_yoff = 0;
26212 else if (it->glyphless_method == GLYPHLESS_DISPLAY_EMPTY_BOX)
26214 width = CHAR_WIDTH (it->c);
26215 if (width == 0)
26216 width = 1;
26217 else if (width > 4)
26218 width = 4;
26219 it->pixel_width = base_width * width;
26220 len = 0;
26221 upper_xoff = upper_yoff = lower_xoff = lower_yoff = 0;
26223 else
26225 char buf[7];
26226 const char *str;
26227 unsigned int code[6];
26228 int upper_len;
26229 int ascent, descent;
26230 struct font_metrics metrics_upper, metrics_lower;
26232 face = FACE_FROM_ID (it->f, face_id);
26233 font = face->font ? face->font : FRAME_FONT (it->f);
26234 prepare_face_for_display (it->f, face);
26236 if (it->glyphless_method == GLYPHLESS_DISPLAY_ACRONYM)
26238 if (! STRINGP (acronym) && CHAR_TABLE_P (Vglyphless_char_display))
26239 acronym = CHAR_TABLE_REF (Vglyphless_char_display, it->c);
26240 if (CONSP (acronym))
26241 acronym = XCAR (acronym);
26242 str = STRINGP (acronym) ? SSDATA (acronym) : "";
26244 else
26246 eassert (it->glyphless_method == GLYPHLESS_DISPLAY_HEX_CODE);
26247 sprintf (buf, "%0*X", it->c < 0x10000 ? 4 : 6, it->c + 0u);
26248 str = buf;
26250 for (len = 0; str[len] && ASCII_CHAR_P (str[len]) && len < 6; len++)
26251 code[len] = font->driver->encode_char (font, str[len]);
26252 upper_len = (len + 1) / 2;
26253 font->driver->text_extents (font, code, upper_len,
26254 &metrics_upper);
26255 font->driver->text_extents (font, code + upper_len, len - upper_len,
26256 &metrics_lower);
26260 /* +4 is for vertical bars of a box plus 1-pixel spaces at both side. */
26261 width = max (metrics_upper.width, metrics_lower.width) + 4;
26262 upper_xoff = upper_yoff = 2; /* the typical case */
26263 if (base_width >= width)
26265 /* Align the upper to the left, the lower to the right. */
26266 it->pixel_width = base_width;
26267 lower_xoff = base_width - 2 - metrics_lower.width;
26269 else
26271 /* Center the shorter one. */
26272 it->pixel_width = width;
26273 if (metrics_upper.width >= metrics_lower.width)
26274 lower_xoff = (width - metrics_lower.width) / 2;
26275 else
26277 /* FIXME: This code doesn't look right. It formerly was
26278 missing the "lower_xoff = 0;", which couldn't have
26279 been right since it left lower_xoff uninitialized. */
26280 lower_xoff = 0;
26281 upper_xoff = (width - metrics_upper.width) / 2;
26285 /* +5 is for horizontal bars of a box plus 1-pixel spaces at
26286 top, bottom, and between upper and lower strings. */
26287 height = (metrics_upper.ascent + metrics_upper.descent
26288 + metrics_lower.ascent + metrics_lower.descent) + 5;
26289 /* Center vertically.
26290 H:base_height, D:base_descent
26291 h:height, ld:lower_descent, la:lower_ascent, ud:upper_descent
26293 ascent = - (D - H/2 - h/2 + 1); "+ 1" for rounding up
26294 descent = D - H/2 + h/2;
26295 lower_yoff = descent - 2 - ld;
26296 upper_yoff = lower_yoff - la - 1 - ud; */
26297 ascent = - (it->descent - (base_height + height + 1) / 2);
26298 descent = it->descent - (base_height - height) / 2;
26299 lower_yoff = descent - 2 - metrics_lower.descent;
26300 upper_yoff = (lower_yoff - metrics_lower.ascent - 1
26301 - metrics_upper.descent);
26302 /* Don't make the height shorter than the base height. */
26303 if (height > base_height)
26305 it->ascent = ascent;
26306 it->descent = descent;
26310 it->phys_ascent = it->ascent;
26311 it->phys_descent = it->descent;
26312 if (it->glyph_row)
26313 append_glyphless_glyph (it, face_id, for_no_font, len,
26314 upper_xoff, upper_yoff,
26315 lower_xoff, lower_yoff);
26316 it->nglyphs = 1;
26317 take_vertical_position_into_account (it);
26321 /* RIF:
26322 Produce glyphs/get display metrics for the display element IT is
26323 loaded with. See the description of struct it in dispextern.h
26324 for an overview of struct it. */
26326 void
26327 x_produce_glyphs (struct it *it)
26329 int extra_line_spacing = it->extra_line_spacing;
26331 it->glyph_not_available_p = false;
26333 if (it->what == IT_CHARACTER)
26335 XChar2b char2b;
26336 struct face *face = FACE_FROM_ID (it->f, it->face_id);
26337 struct font *font = face->font;
26338 struct font_metrics *pcm = NULL;
26339 int boff; /* Baseline offset. */
26341 if (font == NULL)
26343 /* When no suitable font is found, display this character by
26344 the method specified in the first extra slot of
26345 Vglyphless_char_display. */
26346 Lisp_Object acronym = lookup_glyphless_char_display (-1, it);
26348 eassert (it->what == IT_GLYPHLESS);
26349 produce_glyphless_glyph (it, true,
26350 STRINGP (acronym) ? acronym : Qnil);
26351 goto done;
26354 boff = font->baseline_offset;
26355 if (font->vertical_centering)
26356 boff = VCENTER_BASELINE_OFFSET (font, it->f) - boff;
26358 if (it->char_to_display != '\n' && it->char_to_display != '\t')
26360 it->nglyphs = 1;
26362 if (it->override_ascent >= 0)
26364 it->ascent = it->override_ascent;
26365 it->descent = it->override_descent;
26366 boff = it->override_boff;
26368 else
26370 it->ascent = FONT_BASE (font) + boff;
26371 it->descent = FONT_DESCENT (font) - boff;
26374 if (get_char_glyph_code (it->char_to_display, font, &char2b))
26376 pcm = get_per_char_metric (font, &char2b);
26377 if (pcm->width == 0
26378 && pcm->rbearing == 0 && pcm->lbearing == 0)
26379 pcm = NULL;
26382 if (pcm)
26384 it->phys_ascent = pcm->ascent + boff;
26385 it->phys_descent = pcm->descent - boff;
26386 it->pixel_width = pcm->width;
26388 else
26390 it->glyph_not_available_p = true;
26391 it->phys_ascent = it->ascent;
26392 it->phys_descent = it->descent;
26393 it->pixel_width = font->space_width;
26396 if (it->constrain_row_ascent_descent_p)
26398 if (it->descent > it->max_descent)
26400 it->ascent += it->descent - it->max_descent;
26401 it->descent = it->max_descent;
26403 if (it->ascent > it->max_ascent)
26405 it->descent = min (it->max_descent, it->descent + it->ascent - it->max_ascent);
26406 it->ascent = it->max_ascent;
26408 it->phys_ascent = min (it->phys_ascent, it->ascent);
26409 it->phys_descent = min (it->phys_descent, it->descent);
26410 extra_line_spacing = 0;
26413 /* If this is a space inside a region of text with
26414 `space-width' property, change its width. */
26415 bool stretched_p
26416 = it->char_to_display == ' ' && !NILP (it->space_width);
26417 if (stretched_p)
26418 it->pixel_width *= XFLOATINT (it->space_width);
26420 /* If face has a box, add the box thickness to the character
26421 height. If character has a box line to the left and/or
26422 right, add the box line width to the character's width. */
26423 if (face->box != FACE_NO_BOX)
26425 int thick = face->box_line_width;
26427 if (thick > 0)
26429 it->ascent += thick;
26430 it->descent += thick;
26432 else
26433 thick = -thick;
26435 if (it->start_of_box_run_p)
26436 it->pixel_width += thick;
26437 if (it->end_of_box_run_p)
26438 it->pixel_width += thick;
26441 /* If face has an overline, add the height of the overline
26442 (1 pixel) and a 1 pixel margin to the character height. */
26443 if (face->overline_p)
26444 it->ascent += overline_margin;
26446 if (it->constrain_row_ascent_descent_p)
26448 if (it->ascent > it->max_ascent)
26449 it->ascent = it->max_ascent;
26450 if (it->descent > it->max_descent)
26451 it->descent = it->max_descent;
26454 take_vertical_position_into_account (it);
26456 /* If we have to actually produce glyphs, do it. */
26457 if (it->glyph_row)
26459 if (stretched_p)
26461 /* Translate a space with a `space-width' property
26462 into a stretch glyph. */
26463 int ascent = (((it->ascent + it->descent) * FONT_BASE (font))
26464 / FONT_HEIGHT (font));
26465 append_stretch_glyph (it, it->object, it->pixel_width,
26466 it->ascent + it->descent, ascent);
26468 else
26469 append_glyph (it);
26471 /* If characters with lbearing or rbearing are displayed
26472 in this line, record that fact in a flag of the
26473 glyph row. This is used to optimize X output code. */
26474 if (pcm && (pcm->lbearing < 0 || pcm->rbearing > pcm->width))
26475 it->glyph_row->contains_overlapping_glyphs_p = true;
26477 if (! stretched_p && it->pixel_width == 0)
26478 /* We assure that all visible glyphs have at least 1-pixel
26479 width. */
26480 it->pixel_width = 1;
26482 else if (it->char_to_display == '\n')
26484 /* A newline has no width, but we need the height of the
26485 line. But if previous part of the line sets a height,
26486 don't increase that height. */
26488 Lisp_Object height;
26489 Lisp_Object total_height = Qnil;
26491 it->override_ascent = -1;
26492 it->pixel_width = 0;
26493 it->nglyphs = 0;
26495 height = get_it_property (it, Qline_height);
26496 /* Split (line-height total-height) list. */
26497 if (CONSP (height)
26498 && CONSP (XCDR (height))
26499 && NILP (XCDR (XCDR (height))))
26501 total_height = XCAR (XCDR (height));
26502 height = XCAR (height);
26504 height = calc_line_height_property (it, height, font, boff, true);
26506 if (it->override_ascent >= 0)
26508 it->ascent = it->override_ascent;
26509 it->descent = it->override_descent;
26510 boff = it->override_boff;
26512 else
26514 it->ascent = FONT_BASE (font) + boff;
26515 it->descent = FONT_DESCENT (font) - boff;
26518 if (EQ (height, Qt))
26520 if (it->descent > it->max_descent)
26522 it->ascent += it->descent - it->max_descent;
26523 it->descent = it->max_descent;
26525 if (it->ascent > it->max_ascent)
26527 it->descent = min (it->max_descent, it->descent + it->ascent - it->max_ascent);
26528 it->ascent = it->max_ascent;
26530 it->phys_ascent = min (it->phys_ascent, it->ascent);
26531 it->phys_descent = min (it->phys_descent, it->descent);
26532 it->constrain_row_ascent_descent_p = true;
26533 extra_line_spacing = 0;
26535 else
26537 Lisp_Object spacing;
26539 it->phys_ascent = it->ascent;
26540 it->phys_descent = it->descent;
26542 if ((it->max_ascent > 0 || it->max_descent > 0)
26543 && face->box != FACE_NO_BOX
26544 && face->box_line_width > 0)
26546 it->ascent += face->box_line_width;
26547 it->descent += face->box_line_width;
26549 if (!NILP (height)
26550 && XINT (height) > it->ascent + it->descent)
26551 it->ascent = XINT (height) - it->descent;
26553 if (!NILP (total_height))
26554 spacing = calc_line_height_property (it, total_height, font,
26555 boff, false);
26556 else
26558 spacing = get_it_property (it, Qline_spacing);
26559 spacing = calc_line_height_property (it, spacing, font,
26560 boff, false);
26562 if (INTEGERP (spacing))
26564 extra_line_spacing = XINT (spacing);
26565 if (!NILP (total_height))
26566 extra_line_spacing -= (it->phys_ascent + it->phys_descent);
26570 else /* i.e. (it->char_to_display == '\t') */
26572 if (font->space_width > 0)
26574 int tab_width = it->tab_width * font->space_width;
26575 int x = it->current_x + it->continuation_lines_width;
26576 int next_tab_x = ((1 + x + tab_width - 1) / tab_width) * tab_width;
26578 /* If the distance from the current position to the next tab
26579 stop is less than a space character width, use the
26580 tab stop after that. */
26581 if (next_tab_x - x < font->space_width)
26582 next_tab_x += tab_width;
26584 it->pixel_width = next_tab_x - x;
26585 it->nglyphs = 1;
26586 it->ascent = it->phys_ascent = FONT_BASE (font) + boff;
26587 it->descent = it->phys_descent = FONT_DESCENT (font) - boff;
26589 if (it->glyph_row)
26591 append_stretch_glyph (it, it->object, it->pixel_width,
26592 it->ascent + it->descent, it->ascent);
26595 else
26597 it->pixel_width = 0;
26598 it->nglyphs = 1;
26602 else if (it->what == IT_COMPOSITION && it->cmp_it.ch < 0)
26604 /* A static composition.
26606 Note: A composition is represented as one glyph in the
26607 glyph matrix. There are no padding glyphs.
26609 Important note: pixel_width, ascent, and descent are the
26610 values of what is drawn by draw_glyphs (i.e. the values of
26611 the overall glyphs composed). */
26612 struct face *face = FACE_FROM_ID (it->f, it->face_id);
26613 int boff; /* baseline offset */
26614 struct composition *cmp = composition_table[it->cmp_it.id];
26615 int glyph_len = cmp->glyph_len;
26616 struct font *font = face->font;
26618 it->nglyphs = 1;
26620 /* If we have not yet calculated pixel size data of glyphs of
26621 the composition for the current face font, calculate them
26622 now. Theoretically, we have to check all fonts for the
26623 glyphs, but that requires much time and memory space. So,
26624 here we check only the font of the first glyph. This may
26625 lead to incorrect display, but it's very rare, and C-l
26626 (recenter-top-bottom) can correct the display anyway. */
26627 if (! cmp->font || cmp->font != font)
26629 /* Ascent and descent of the font of the first character
26630 of this composition (adjusted by baseline offset).
26631 Ascent and descent of overall glyphs should not be less
26632 than these, respectively. */
26633 int font_ascent, font_descent, font_height;
26634 /* Bounding box of the overall glyphs. */
26635 int leftmost, rightmost, lowest, highest;
26636 int lbearing, rbearing;
26637 int i, width, ascent, descent;
26638 int c IF_LINT (= 0); /* cmp->glyph_len can't be zero; see Bug#8512 */
26639 XChar2b char2b;
26640 struct font_metrics *pcm;
26641 ptrdiff_t pos;
26643 for (glyph_len = cmp->glyph_len; glyph_len > 0; glyph_len--)
26644 if ((c = COMPOSITION_GLYPH (cmp, glyph_len - 1)) != '\t')
26645 break;
26646 bool right_padded = glyph_len < cmp->glyph_len;
26647 for (i = 0; i < glyph_len; i++)
26649 if ((c = COMPOSITION_GLYPH (cmp, i)) != '\t')
26650 break;
26651 cmp->offsets[i * 2] = cmp->offsets[i * 2 + 1] = 0;
26653 bool left_padded = i > 0;
26655 pos = (STRINGP (it->string) ? IT_STRING_CHARPOS (*it)
26656 : IT_CHARPOS (*it));
26657 /* If no suitable font is found, use the default font. */
26658 bool font_not_found_p = font == NULL;
26659 if (font_not_found_p)
26661 face = face->ascii_face;
26662 font = face->font;
26664 boff = font->baseline_offset;
26665 if (font->vertical_centering)
26666 boff = VCENTER_BASELINE_OFFSET (font, it->f) - boff;
26667 font_ascent = FONT_BASE (font) + boff;
26668 font_descent = FONT_DESCENT (font) - boff;
26669 font_height = FONT_HEIGHT (font);
26671 cmp->font = font;
26673 pcm = NULL;
26674 if (! font_not_found_p)
26676 get_char_face_and_encoding (it->f, c, it->face_id,
26677 &char2b, false);
26678 pcm = get_per_char_metric (font, &char2b);
26681 /* Initialize the bounding box. */
26682 if (pcm)
26684 width = cmp->glyph_len > 0 ? pcm->width : 0;
26685 ascent = pcm->ascent;
26686 descent = pcm->descent;
26687 lbearing = pcm->lbearing;
26688 rbearing = pcm->rbearing;
26690 else
26692 width = cmp->glyph_len > 0 ? font->space_width : 0;
26693 ascent = FONT_BASE (font);
26694 descent = FONT_DESCENT (font);
26695 lbearing = 0;
26696 rbearing = width;
26699 rightmost = width;
26700 leftmost = 0;
26701 lowest = - descent + boff;
26702 highest = ascent + boff;
26704 if (! font_not_found_p
26705 && font->default_ascent
26706 && CHAR_TABLE_P (Vuse_default_ascent)
26707 && !NILP (Faref (Vuse_default_ascent,
26708 make_number (it->char_to_display))))
26709 highest = font->default_ascent + boff;
26711 /* Draw the first glyph at the normal position. It may be
26712 shifted to right later if some other glyphs are drawn
26713 at the left. */
26714 cmp->offsets[i * 2] = 0;
26715 cmp->offsets[i * 2 + 1] = boff;
26716 cmp->lbearing = lbearing;
26717 cmp->rbearing = rbearing;
26719 /* Set cmp->offsets for the remaining glyphs. */
26720 for (i++; i < glyph_len; i++)
26722 int left, right, btm, top;
26723 int ch = COMPOSITION_GLYPH (cmp, i);
26724 int face_id;
26725 struct face *this_face;
26727 if (ch == '\t')
26728 ch = ' ';
26729 face_id = FACE_FOR_CHAR (it->f, face, ch, pos, it->string);
26730 this_face = FACE_FROM_ID (it->f, face_id);
26731 font = this_face->font;
26733 if (font == NULL)
26734 pcm = NULL;
26735 else
26737 get_char_face_and_encoding (it->f, ch, face_id,
26738 &char2b, false);
26739 pcm = get_per_char_metric (font, &char2b);
26741 if (! pcm)
26742 cmp->offsets[i * 2] = cmp->offsets[i * 2 + 1] = 0;
26743 else
26745 width = pcm->width;
26746 ascent = pcm->ascent;
26747 descent = pcm->descent;
26748 lbearing = pcm->lbearing;
26749 rbearing = pcm->rbearing;
26750 if (cmp->method != COMPOSITION_WITH_RULE_ALTCHARS)
26752 /* Relative composition with or without
26753 alternate chars. */
26754 left = (leftmost + rightmost - width) / 2;
26755 btm = - descent + boff;
26756 if (font->relative_compose
26757 && (! CHAR_TABLE_P (Vignore_relative_composition)
26758 || NILP (Faref (Vignore_relative_composition,
26759 make_number (ch)))))
26762 if (- descent >= font->relative_compose)
26763 /* One extra pixel between two glyphs. */
26764 btm = highest + 1;
26765 else if (ascent <= 0)
26766 /* One extra pixel between two glyphs. */
26767 btm = lowest - 1 - ascent - descent;
26770 else
26772 /* A composition rule is specified by an integer
26773 value that encodes global and new reference
26774 points (GREF and NREF). GREF and NREF are
26775 specified by numbers as below:
26777 0---1---2 -- ascent
26781 9--10--11 -- center
26783 ---3---4---5--- baseline
26785 6---7---8 -- descent
26787 int rule = COMPOSITION_RULE (cmp, i);
26788 int gref, nref, grefx, grefy, nrefx, nrefy, xoff, yoff;
26790 COMPOSITION_DECODE_RULE (rule, gref, nref, xoff, yoff);
26791 grefx = gref % 3, nrefx = nref % 3;
26792 grefy = gref / 3, nrefy = nref / 3;
26793 if (xoff)
26794 xoff = font_height * (xoff - 128) / 256;
26795 if (yoff)
26796 yoff = font_height * (yoff - 128) / 256;
26798 left = (leftmost
26799 + grefx * (rightmost - leftmost) / 2
26800 - nrefx * width / 2
26801 + xoff);
26803 btm = ((grefy == 0 ? highest
26804 : grefy == 1 ? 0
26805 : grefy == 2 ? lowest
26806 : (highest + lowest) / 2)
26807 - (nrefy == 0 ? ascent + descent
26808 : nrefy == 1 ? descent - boff
26809 : nrefy == 2 ? 0
26810 : (ascent + descent) / 2)
26811 + yoff);
26814 cmp->offsets[i * 2] = left;
26815 cmp->offsets[i * 2 + 1] = btm + descent;
26817 /* Update the bounding box of the overall glyphs. */
26818 if (width > 0)
26820 right = left + width;
26821 if (left < leftmost)
26822 leftmost = left;
26823 if (right > rightmost)
26824 rightmost = right;
26826 top = btm + descent + ascent;
26827 if (top > highest)
26828 highest = top;
26829 if (btm < lowest)
26830 lowest = btm;
26832 if (cmp->lbearing > left + lbearing)
26833 cmp->lbearing = left + lbearing;
26834 if (cmp->rbearing < left + rbearing)
26835 cmp->rbearing = left + rbearing;
26839 /* If there are glyphs whose x-offsets are negative,
26840 shift all glyphs to the right and make all x-offsets
26841 non-negative. */
26842 if (leftmost < 0)
26844 for (i = 0; i < cmp->glyph_len; i++)
26845 cmp->offsets[i * 2] -= leftmost;
26846 rightmost -= leftmost;
26847 cmp->lbearing -= leftmost;
26848 cmp->rbearing -= leftmost;
26851 if (left_padded && cmp->lbearing < 0)
26853 for (i = 0; i < cmp->glyph_len; i++)
26854 cmp->offsets[i * 2] -= cmp->lbearing;
26855 rightmost -= cmp->lbearing;
26856 cmp->rbearing -= cmp->lbearing;
26857 cmp->lbearing = 0;
26859 if (right_padded && rightmost < cmp->rbearing)
26861 rightmost = cmp->rbearing;
26864 cmp->pixel_width = rightmost;
26865 cmp->ascent = highest;
26866 cmp->descent = - lowest;
26867 if (cmp->ascent < font_ascent)
26868 cmp->ascent = font_ascent;
26869 if (cmp->descent < font_descent)
26870 cmp->descent = font_descent;
26873 if (it->glyph_row
26874 && (cmp->lbearing < 0
26875 || cmp->rbearing > cmp->pixel_width))
26876 it->glyph_row->contains_overlapping_glyphs_p = true;
26878 it->pixel_width = cmp->pixel_width;
26879 it->ascent = it->phys_ascent = cmp->ascent;
26880 it->descent = it->phys_descent = cmp->descent;
26881 if (face->box != FACE_NO_BOX)
26883 int thick = face->box_line_width;
26885 if (thick > 0)
26887 it->ascent += thick;
26888 it->descent += thick;
26890 else
26891 thick = - thick;
26893 if (it->start_of_box_run_p)
26894 it->pixel_width += thick;
26895 if (it->end_of_box_run_p)
26896 it->pixel_width += thick;
26899 /* If face has an overline, add the height of the overline
26900 (1 pixel) and a 1 pixel margin to the character height. */
26901 if (face->overline_p)
26902 it->ascent += overline_margin;
26904 take_vertical_position_into_account (it);
26905 if (it->ascent < 0)
26906 it->ascent = 0;
26907 if (it->descent < 0)
26908 it->descent = 0;
26910 if (it->glyph_row && cmp->glyph_len > 0)
26911 append_composite_glyph (it);
26913 else if (it->what == IT_COMPOSITION)
26915 /* A dynamic (automatic) composition. */
26916 struct face *face = FACE_FROM_ID (it->f, it->face_id);
26917 Lisp_Object gstring;
26918 struct font_metrics metrics;
26920 it->nglyphs = 1;
26922 gstring = composition_gstring_from_id (it->cmp_it.id);
26923 it->pixel_width
26924 = composition_gstring_width (gstring, it->cmp_it.from, it->cmp_it.to,
26925 &metrics);
26926 if (it->glyph_row
26927 && (metrics.lbearing < 0 || metrics.rbearing > metrics.width))
26928 it->glyph_row->contains_overlapping_glyphs_p = true;
26929 it->ascent = it->phys_ascent = metrics.ascent;
26930 it->descent = it->phys_descent = metrics.descent;
26931 if (face->box != FACE_NO_BOX)
26933 int thick = face->box_line_width;
26935 if (thick > 0)
26937 it->ascent += thick;
26938 it->descent += thick;
26940 else
26941 thick = - thick;
26943 if (it->start_of_box_run_p)
26944 it->pixel_width += thick;
26945 if (it->end_of_box_run_p)
26946 it->pixel_width += thick;
26948 /* If face has an overline, add the height of the overline
26949 (1 pixel) and a 1 pixel margin to the character height. */
26950 if (face->overline_p)
26951 it->ascent += overline_margin;
26952 take_vertical_position_into_account (it);
26953 if (it->ascent < 0)
26954 it->ascent = 0;
26955 if (it->descent < 0)
26956 it->descent = 0;
26958 if (it->glyph_row)
26959 append_composite_glyph (it);
26961 else if (it->what == IT_GLYPHLESS)
26962 produce_glyphless_glyph (it, false, Qnil);
26963 else if (it->what == IT_IMAGE)
26964 produce_image_glyph (it);
26965 else if (it->what == IT_STRETCH)
26966 produce_stretch_glyph (it);
26968 done:
26969 /* Accumulate dimensions. Note: can't assume that it->descent > 0
26970 because this isn't true for images with `:ascent 100'. */
26971 eassert (it->ascent >= 0 && it->descent >= 0);
26972 if (it->area == TEXT_AREA)
26973 it->current_x += it->pixel_width;
26975 if (extra_line_spacing > 0)
26977 it->descent += extra_line_spacing;
26978 if (extra_line_spacing > it->max_extra_line_spacing)
26979 it->max_extra_line_spacing = extra_line_spacing;
26982 it->max_ascent = max (it->max_ascent, it->ascent);
26983 it->max_descent = max (it->max_descent, it->descent);
26984 it->max_phys_ascent = max (it->max_phys_ascent, it->phys_ascent);
26985 it->max_phys_descent = max (it->max_phys_descent, it->phys_descent);
26988 /* EXPORT for RIF:
26989 Output LEN glyphs starting at START at the nominal cursor position.
26990 Advance the nominal cursor over the text. UPDATED_ROW is the glyph row
26991 being updated, and UPDATED_AREA is the area of that row being updated. */
26993 void
26994 x_write_glyphs (struct window *w, struct glyph_row *updated_row,
26995 struct glyph *start, enum glyph_row_area updated_area, int len)
26997 int x, hpos, chpos = w->phys_cursor.hpos;
26999 eassert (updated_row);
27000 /* When the window is hscrolled, cursor hpos can legitimately be out
27001 of bounds, but we draw the cursor at the corresponding window
27002 margin in that case. */
27003 if (!updated_row->reversed_p && chpos < 0)
27004 chpos = 0;
27005 if (updated_row->reversed_p && chpos >= updated_row->used[TEXT_AREA])
27006 chpos = updated_row->used[TEXT_AREA] - 1;
27008 block_input ();
27010 /* Write glyphs. */
27012 hpos = start - updated_row->glyphs[updated_area];
27013 x = draw_glyphs (w, w->output_cursor.x,
27014 updated_row, updated_area,
27015 hpos, hpos + len,
27016 DRAW_NORMAL_TEXT, 0);
27018 /* Invalidate old phys cursor if the glyph at its hpos is redrawn. */
27019 if (updated_area == TEXT_AREA
27020 && w->phys_cursor_on_p
27021 && w->phys_cursor.vpos == w->output_cursor.vpos
27022 && chpos >= hpos
27023 && chpos < hpos + len)
27024 w->phys_cursor_on_p = false;
27026 unblock_input ();
27028 /* Advance the output cursor. */
27029 w->output_cursor.hpos += len;
27030 w->output_cursor.x = x;
27034 /* EXPORT for RIF:
27035 Insert LEN glyphs from START at the nominal cursor position. */
27037 void
27038 x_insert_glyphs (struct window *w, struct glyph_row *updated_row,
27039 struct glyph *start, enum glyph_row_area updated_area, int len)
27041 struct frame *f;
27042 int line_height, shift_by_width, shifted_region_width;
27043 struct glyph_row *row;
27044 struct glyph *glyph;
27045 int frame_x, frame_y;
27046 ptrdiff_t hpos;
27048 eassert (updated_row);
27049 block_input ();
27050 f = XFRAME (WINDOW_FRAME (w));
27052 /* Get the height of the line we are in. */
27053 row = updated_row;
27054 line_height = row->height;
27056 /* Get the width of the glyphs to insert. */
27057 shift_by_width = 0;
27058 for (glyph = start; glyph < start + len; ++glyph)
27059 shift_by_width += glyph->pixel_width;
27061 /* Get the width of the region to shift right. */
27062 shifted_region_width = (window_box_width (w, updated_area)
27063 - w->output_cursor.x
27064 - shift_by_width);
27066 /* Shift right. */
27067 frame_x = window_box_left (w, updated_area) + w->output_cursor.x;
27068 frame_y = WINDOW_TO_FRAME_PIXEL_Y (w, w->output_cursor.y);
27070 FRAME_RIF (f)->shift_glyphs_for_insert (f, frame_x, frame_y, shifted_region_width,
27071 line_height, shift_by_width);
27073 /* Write the glyphs. */
27074 hpos = start - row->glyphs[updated_area];
27075 draw_glyphs (w, w->output_cursor.x, row, updated_area,
27076 hpos, hpos + len,
27077 DRAW_NORMAL_TEXT, 0);
27079 /* Advance the output cursor. */
27080 w->output_cursor.hpos += len;
27081 w->output_cursor.x += shift_by_width;
27082 unblock_input ();
27086 /* EXPORT for RIF:
27087 Erase the current text line from the nominal cursor position
27088 (inclusive) to pixel column TO_X (exclusive). The idea is that
27089 everything from TO_X onward is already erased.
27091 TO_X is a pixel position relative to UPDATED_AREA of currently
27092 updated window W. TO_X == -1 means clear to the end of this area. */
27094 void
27095 x_clear_end_of_line (struct window *w, struct glyph_row *updated_row,
27096 enum glyph_row_area updated_area, int to_x)
27098 struct frame *f;
27099 int max_x, min_y, max_y;
27100 int from_x, from_y, to_y;
27102 eassert (updated_row);
27103 f = XFRAME (w->frame);
27105 if (updated_row->full_width_p)
27106 max_x = (WINDOW_PIXEL_WIDTH (w)
27107 - (updated_row->mode_line_p ? WINDOW_RIGHT_DIVIDER_WIDTH (w) : 0));
27108 else
27109 max_x = window_box_width (w, updated_area);
27110 max_y = window_text_bottom_y (w);
27112 /* TO_X == 0 means don't do anything. TO_X < 0 means clear to end
27113 of window. For TO_X > 0, truncate to end of drawing area. */
27114 if (to_x == 0)
27115 return;
27116 else if (to_x < 0)
27117 to_x = max_x;
27118 else
27119 to_x = min (to_x, max_x);
27121 to_y = min (max_y, w->output_cursor.y + updated_row->height);
27123 /* Notice if the cursor will be cleared by this operation. */
27124 if (!updated_row->full_width_p)
27125 notice_overwritten_cursor (w, updated_area,
27126 w->output_cursor.x, -1,
27127 updated_row->y,
27128 MATRIX_ROW_BOTTOM_Y (updated_row));
27130 from_x = w->output_cursor.x;
27132 /* Translate to frame coordinates. */
27133 if (updated_row->full_width_p)
27135 from_x = WINDOW_TO_FRAME_PIXEL_X (w, from_x);
27136 to_x = WINDOW_TO_FRAME_PIXEL_X (w, to_x);
27138 else
27140 int area_left = window_box_left (w, updated_area);
27141 from_x += area_left;
27142 to_x += area_left;
27145 min_y = WINDOW_HEADER_LINE_HEIGHT (w);
27146 from_y = WINDOW_TO_FRAME_PIXEL_Y (w, max (min_y, w->output_cursor.y));
27147 to_y = WINDOW_TO_FRAME_PIXEL_Y (w, to_y);
27149 /* Prevent inadvertently clearing to end of the X window. */
27150 if (to_x > from_x && to_y > from_y)
27152 block_input ();
27153 FRAME_RIF (f)->clear_frame_area (f, from_x, from_y,
27154 to_x - from_x, to_y - from_y);
27155 unblock_input ();
27159 #endif /* HAVE_WINDOW_SYSTEM */
27163 /***********************************************************************
27164 Cursor types
27165 ***********************************************************************/
27167 /* Value is the internal representation of the specified cursor type
27168 ARG. If type is BAR_CURSOR, return in *WIDTH the specified width
27169 of the bar cursor. */
27171 static enum text_cursor_kinds
27172 get_specified_cursor_type (Lisp_Object arg, int *width)
27174 enum text_cursor_kinds type;
27176 if (NILP (arg))
27177 return NO_CURSOR;
27179 if (EQ (arg, Qbox))
27180 return FILLED_BOX_CURSOR;
27182 if (EQ (arg, Qhollow))
27183 return HOLLOW_BOX_CURSOR;
27185 if (EQ (arg, Qbar))
27187 *width = 2;
27188 return BAR_CURSOR;
27191 if (CONSP (arg)
27192 && EQ (XCAR (arg), Qbar)
27193 && RANGED_INTEGERP (0, XCDR (arg), INT_MAX))
27195 *width = XINT (XCDR (arg));
27196 return BAR_CURSOR;
27199 if (EQ (arg, Qhbar))
27201 *width = 2;
27202 return HBAR_CURSOR;
27205 if (CONSP (arg)
27206 && EQ (XCAR (arg), Qhbar)
27207 && RANGED_INTEGERP (0, XCDR (arg), INT_MAX))
27209 *width = XINT (XCDR (arg));
27210 return HBAR_CURSOR;
27213 /* Treat anything unknown as "hollow box cursor".
27214 It was bad to signal an error; people have trouble fixing
27215 .Xdefaults with Emacs, when it has something bad in it. */
27216 type = HOLLOW_BOX_CURSOR;
27218 return type;
27221 /* Set the default cursor types for specified frame. */
27222 void
27223 set_frame_cursor_types (struct frame *f, Lisp_Object arg)
27225 int width = 1;
27226 Lisp_Object tem;
27228 FRAME_DESIRED_CURSOR (f) = get_specified_cursor_type (arg, &width);
27229 FRAME_CURSOR_WIDTH (f) = width;
27231 /* By default, set up the blink-off state depending on the on-state. */
27233 tem = Fassoc (arg, Vblink_cursor_alist);
27234 if (!NILP (tem))
27236 FRAME_BLINK_OFF_CURSOR (f)
27237 = get_specified_cursor_type (XCDR (tem), &width);
27238 FRAME_BLINK_OFF_CURSOR_WIDTH (f) = width;
27240 else
27241 FRAME_BLINK_OFF_CURSOR (f) = DEFAULT_CURSOR;
27243 /* Make sure the cursor gets redrawn. */
27244 f->cursor_type_changed = true;
27248 #ifdef HAVE_WINDOW_SYSTEM
27250 /* Return the cursor we want to be displayed in window W. Return
27251 width of bar/hbar cursor through WIDTH arg. Return with
27252 ACTIVE_CURSOR arg set to true if cursor in window W is `active'
27253 (i.e. if the `system caret' should track this cursor).
27255 In a mini-buffer window, we want the cursor only to appear if we
27256 are reading input from this window. For the selected window, we
27257 want the cursor type given by the frame parameter or buffer local
27258 setting of cursor-type. If explicitly marked off, draw no cursor.
27259 In all other cases, we want a hollow box cursor. */
27261 static enum text_cursor_kinds
27262 get_window_cursor_type (struct window *w, struct glyph *glyph, int *width,
27263 bool *active_cursor)
27265 struct frame *f = XFRAME (w->frame);
27266 struct buffer *b = XBUFFER (w->contents);
27267 int cursor_type = DEFAULT_CURSOR;
27268 Lisp_Object alt_cursor;
27269 bool non_selected = false;
27271 *active_cursor = true;
27273 /* Echo area */
27274 if (cursor_in_echo_area
27275 && FRAME_HAS_MINIBUF_P (f)
27276 && EQ (FRAME_MINIBUF_WINDOW (f), echo_area_window))
27278 if (w == XWINDOW (echo_area_window))
27280 if (EQ (BVAR (b, cursor_type), Qt) || NILP (BVAR (b, cursor_type)))
27282 *width = FRAME_CURSOR_WIDTH (f);
27283 return FRAME_DESIRED_CURSOR (f);
27285 else
27286 return get_specified_cursor_type (BVAR (b, cursor_type), width);
27289 *active_cursor = false;
27290 non_selected = true;
27293 /* Detect a nonselected window or nonselected frame. */
27294 else if (w != XWINDOW (f->selected_window)
27295 || f != FRAME_DISPLAY_INFO (f)->x_highlight_frame)
27297 *active_cursor = false;
27299 if (MINI_WINDOW_P (w) && minibuf_level == 0)
27300 return NO_CURSOR;
27302 non_selected = true;
27305 /* Never display a cursor in a window in which cursor-type is nil. */
27306 if (NILP (BVAR (b, cursor_type)))
27307 return NO_CURSOR;
27309 /* Get the normal cursor type for this window. */
27310 if (EQ (BVAR (b, cursor_type), Qt))
27312 cursor_type = FRAME_DESIRED_CURSOR (f);
27313 *width = FRAME_CURSOR_WIDTH (f);
27315 else
27316 cursor_type = get_specified_cursor_type (BVAR (b, cursor_type), width);
27318 /* Use cursor-in-non-selected-windows instead
27319 for non-selected window or frame. */
27320 if (non_selected)
27322 alt_cursor = BVAR (b, cursor_in_non_selected_windows);
27323 if (!EQ (Qt, alt_cursor))
27324 return get_specified_cursor_type (alt_cursor, width);
27325 /* t means modify the normal cursor type. */
27326 if (cursor_type == FILLED_BOX_CURSOR)
27327 cursor_type = HOLLOW_BOX_CURSOR;
27328 else if (cursor_type == BAR_CURSOR && *width > 1)
27329 --*width;
27330 return cursor_type;
27333 /* Use normal cursor if not blinked off. */
27334 if (!w->cursor_off_p)
27336 if (glyph != NULL && glyph->type == IMAGE_GLYPH)
27338 if (cursor_type == FILLED_BOX_CURSOR)
27340 /* Using a block cursor on large images can be very annoying.
27341 So use a hollow cursor for "large" images.
27342 If image is not transparent (no mask), also use hollow cursor. */
27343 struct image *img = IMAGE_FROM_ID (f, glyph->u.img_id);
27344 if (img != NULL && IMAGEP (img->spec))
27346 /* Arbitrarily, interpret "Large" as >32x32 and >NxN
27347 where N = size of default frame font size.
27348 This should cover most of the "tiny" icons people may use. */
27349 if (!img->mask
27350 || img->width > max (32, WINDOW_FRAME_COLUMN_WIDTH (w))
27351 || img->height > max (32, WINDOW_FRAME_LINE_HEIGHT (w)))
27352 cursor_type = HOLLOW_BOX_CURSOR;
27355 else if (cursor_type != NO_CURSOR)
27357 /* Display current only supports BOX and HOLLOW cursors for images.
27358 So for now, unconditionally use a HOLLOW cursor when cursor is
27359 not a solid box cursor. */
27360 cursor_type = HOLLOW_BOX_CURSOR;
27363 return cursor_type;
27366 /* Cursor is blinked off, so determine how to "toggle" it. */
27368 /* First look for an entry matching the buffer's cursor-type in blink-cursor-alist. */
27369 if ((alt_cursor = Fassoc (BVAR (b, cursor_type), Vblink_cursor_alist), !NILP (alt_cursor)))
27370 return get_specified_cursor_type (XCDR (alt_cursor), width);
27372 /* Then see if frame has specified a specific blink off cursor type. */
27373 if (FRAME_BLINK_OFF_CURSOR (f) != DEFAULT_CURSOR)
27375 *width = FRAME_BLINK_OFF_CURSOR_WIDTH (f);
27376 return FRAME_BLINK_OFF_CURSOR (f);
27379 #if false
27380 /* Some people liked having a permanently visible blinking cursor,
27381 while others had very strong opinions against it. So it was
27382 decided to remove it. KFS 2003-09-03 */
27384 /* Finally perform built-in cursor blinking:
27385 filled box <-> hollow box
27386 wide [h]bar <-> narrow [h]bar
27387 narrow [h]bar <-> no cursor
27388 other type <-> no cursor */
27390 if (cursor_type == FILLED_BOX_CURSOR)
27391 return HOLLOW_BOX_CURSOR;
27393 if ((cursor_type == BAR_CURSOR || cursor_type == HBAR_CURSOR) && *width > 1)
27395 *width = 1;
27396 return cursor_type;
27398 #endif
27400 return NO_CURSOR;
27404 /* Notice when the text cursor of window W has been completely
27405 overwritten by a drawing operation that outputs glyphs in AREA
27406 starting at X0 and ending at X1 in the line starting at Y0 and
27407 ending at Y1. X coordinates are area-relative. X1 < 0 means all
27408 the rest of the line after X0 has been written. Y coordinates
27409 are window-relative. */
27411 static void
27412 notice_overwritten_cursor (struct window *w, enum glyph_row_area area,
27413 int x0, int x1, int y0, int y1)
27415 int cx0, cx1, cy0, cy1;
27416 struct glyph_row *row;
27418 if (!w->phys_cursor_on_p)
27419 return;
27420 if (area != TEXT_AREA)
27421 return;
27423 if (w->phys_cursor.vpos < 0
27424 || w->phys_cursor.vpos >= w->current_matrix->nrows
27425 || (row = w->current_matrix->rows + w->phys_cursor.vpos,
27426 !(row->enabled_p && MATRIX_ROW_DISPLAYS_TEXT_P (row))))
27427 return;
27429 if (row->cursor_in_fringe_p)
27431 row->cursor_in_fringe_p = false;
27432 draw_fringe_bitmap (w, row, row->reversed_p);
27433 w->phys_cursor_on_p = false;
27434 return;
27437 cx0 = w->phys_cursor.x;
27438 cx1 = cx0 + w->phys_cursor_width;
27439 if (x0 > cx0 || (x1 >= 0 && x1 < cx1))
27440 return;
27442 /* The cursor image will be completely removed from the
27443 screen if the output area intersects the cursor area in
27444 y-direction. When we draw in [y0 y1[, and some part of
27445 the cursor is at y < y0, that part must have been drawn
27446 before. When scrolling, the cursor is erased before
27447 actually scrolling, so we don't come here. When not
27448 scrolling, the rows above the old cursor row must have
27449 changed, and in this case these rows must have written
27450 over the cursor image.
27452 Likewise if part of the cursor is below y1, with the
27453 exception of the cursor being in the first blank row at
27454 the buffer and window end because update_text_area
27455 doesn't draw that row. (Except when it does, but
27456 that's handled in update_text_area.) */
27458 cy0 = w->phys_cursor.y;
27459 cy1 = cy0 + w->phys_cursor_height;
27460 if ((y0 < cy0 || y0 >= cy1) && (y1 <= cy0 || y1 >= cy1))
27461 return;
27463 w->phys_cursor_on_p = false;
27466 #endif /* HAVE_WINDOW_SYSTEM */
27469 /************************************************************************
27470 Mouse Face
27471 ************************************************************************/
27473 #ifdef HAVE_WINDOW_SYSTEM
27475 /* EXPORT for RIF:
27476 Fix the display of area AREA of overlapping row ROW in window W
27477 with respect to the overlapping part OVERLAPS. */
27479 void
27480 x_fix_overlapping_area (struct window *w, struct glyph_row *row,
27481 enum glyph_row_area area, int overlaps)
27483 int i, x;
27485 block_input ();
27487 x = 0;
27488 for (i = 0; i < row->used[area];)
27490 if (row->glyphs[area][i].overlaps_vertically_p)
27492 int start = i, start_x = x;
27496 x += row->glyphs[area][i].pixel_width;
27497 ++i;
27499 while (i < row->used[area]
27500 && row->glyphs[area][i].overlaps_vertically_p);
27502 draw_glyphs (w, start_x, row, area,
27503 start, i,
27504 DRAW_NORMAL_TEXT, overlaps);
27506 else
27508 x += row->glyphs[area][i].pixel_width;
27509 ++i;
27513 unblock_input ();
27517 /* EXPORT:
27518 Draw the cursor glyph of window W in glyph row ROW. See the
27519 comment of draw_glyphs for the meaning of HL. */
27521 void
27522 draw_phys_cursor_glyph (struct window *w, struct glyph_row *row,
27523 enum draw_glyphs_face hl)
27525 /* If cursor hpos is out of bounds, don't draw garbage. This can
27526 happen in mini-buffer windows when switching between echo area
27527 glyphs and mini-buffer. */
27528 if ((row->reversed_p
27529 ? (w->phys_cursor.hpos >= 0)
27530 : (w->phys_cursor.hpos < row->used[TEXT_AREA])))
27532 bool on_p = w->phys_cursor_on_p;
27533 int x1;
27534 int hpos = w->phys_cursor.hpos;
27536 /* When the window is hscrolled, cursor hpos can legitimately be
27537 out of bounds, but we draw the cursor at the corresponding
27538 window margin in that case. */
27539 if (!row->reversed_p && hpos < 0)
27540 hpos = 0;
27541 if (row->reversed_p && hpos >= row->used[TEXT_AREA])
27542 hpos = row->used[TEXT_AREA] - 1;
27544 x1 = draw_glyphs (w, w->phys_cursor.x, row, TEXT_AREA, hpos, hpos + 1,
27545 hl, 0);
27546 w->phys_cursor_on_p = on_p;
27548 if (hl == DRAW_CURSOR)
27549 w->phys_cursor_width = x1 - w->phys_cursor.x;
27550 /* When we erase the cursor, and ROW is overlapped by other
27551 rows, make sure that these overlapping parts of other rows
27552 are redrawn. */
27553 else if (hl == DRAW_NORMAL_TEXT && row->overlapped_p)
27555 w->phys_cursor_width = x1 - w->phys_cursor.x;
27557 if (row > w->current_matrix->rows
27558 && MATRIX_ROW_OVERLAPS_SUCC_P (row - 1))
27559 x_fix_overlapping_area (w, row - 1, TEXT_AREA,
27560 OVERLAPS_ERASED_CURSOR);
27562 if (MATRIX_ROW_BOTTOM_Y (row) < window_text_bottom_y (w)
27563 && MATRIX_ROW_OVERLAPS_PRED_P (row + 1))
27564 x_fix_overlapping_area (w, row + 1, TEXT_AREA,
27565 OVERLAPS_ERASED_CURSOR);
27571 /* Erase the image of a cursor of window W from the screen. */
27573 void
27574 erase_phys_cursor (struct window *w)
27576 struct frame *f = XFRAME (w->frame);
27577 Mouse_HLInfo *hlinfo = MOUSE_HL_INFO (f);
27578 int hpos = w->phys_cursor.hpos;
27579 int vpos = w->phys_cursor.vpos;
27580 bool mouse_face_here_p = false;
27581 struct glyph_matrix *active_glyphs = w->current_matrix;
27582 struct glyph_row *cursor_row;
27583 struct glyph *cursor_glyph;
27584 enum draw_glyphs_face hl;
27586 /* No cursor displayed or row invalidated => nothing to do on the
27587 screen. */
27588 if (w->phys_cursor_type == NO_CURSOR)
27589 goto mark_cursor_off;
27591 /* VPOS >= active_glyphs->nrows means that window has been resized.
27592 Don't bother to erase the cursor. */
27593 if (vpos >= active_glyphs->nrows)
27594 goto mark_cursor_off;
27596 /* If row containing cursor is marked invalid, there is nothing we
27597 can do. */
27598 cursor_row = MATRIX_ROW (active_glyphs, vpos);
27599 if (!cursor_row->enabled_p)
27600 goto mark_cursor_off;
27602 /* If line spacing is > 0, old cursor may only be partially visible in
27603 window after split-window. So adjust visible height. */
27604 cursor_row->visible_height = min (cursor_row->visible_height,
27605 window_text_bottom_y (w) - cursor_row->y);
27607 /* If row is completely invisible, don't attempt to delete a cursor which
27608 isn't there. This can happen if cursor is at top of a window, and
27609 we switch to a buffer with a header line in that window. */
27610 if (cursor_row->visible_height <= 0)
27611 goto mark_cursor_off;
27613 /* If cursor is in the fringe, erase by drawing actual bitmap there. */
27614 if (cursor_row->cursor_in_fringe_p)
27616 cursor_row->cursor_in_fringe_p = false;
27617 draw_fringe_bitmap (w, cursor_row, cursor_row->reversed_p);
27618 goto mark_cursor_off;
27621 /* This can happen when the new row is shorter than the old one.
27622 In this case, either draw_glyphs or clear_end_of_line
27623 should have cleared the cursor. Note that we wouldn't be
27624 able to erase the cursor in this case because we don't have a
27625 cursor glyph at hand. */
27626 if ((cursor_row->reversed_p
27627 ? (w->phys_cursor.hpos < 0)
27628 : (w->phys_cursor.hpos >= cursor_row->used[TEXT_AREA])))
27629 goto mark_cursor_off;
27631 /* When the window is hscrolled, cursor hpos can legitimately be out
27632 of bounds, but we draw the cursor at the corresponding window
27633 margin in that case. */
27634 if (!cursor_row->reversed_p && hpos < 0)
27635 hpos = 0;
27636 if (cursor_row->reversed_p && hpos >= cursor_row->used[TEXT_AREA])
27637 hpos = cursor_row->used[TEXT_AREA] - 1;
27639 /* If the cursor is in the mouse face area, redisplay that when
27640 we clear the cursor. */
27641 if (! NILP (hlinfo->mouse_face_window)
27642 && coords_in_mouse_face_p (w, hpos, vpos)
27643 /* Don't redraw the cursor's spot in mouse face if it is at the
27644 end of a line (on a newline). The cursor appears there, but
27645 mouse highlighting does not. */
27646 && cursor_row->used[TEXT_AREA] > hpos && hpos >= 0)
27647 mouse_face_here_p = true;
27649 /* Maybe clear the display under the cursor. */
27650 if (w->phys_cursor_type == HOLLOW_BOX_CURSOR)
27652 int x, y;
27653 int header_line_height = WINDOW_HEADER_LINE_HEIGHT (w);
27654 int width;
27656 cursor_glyph = get_phys_cursor_glyph (w);
27657 if (cursor_glyph == NULL)
27658 goto mark_cursor_off;
27660 width = cursor_glyph->pixel_width;
27661 x = w->phys_cursor.x;
27662 if (x < 0)
27664 width += x;
27665 x = 0;
27667 width = min (width, window_box_width (w, TEXT_AREA) - x);
27668 y = WINDOW_TO_FRAME_PIXEL_Y (w, max (header_line_height, cursor_row->y));
27669 x = WINDOW_TEXT_TO_FRAME_PIXEL_X (w, x);
27671 if (width > 0)
27672 FRAME_RIF (f)->clear_frame_area (f, x, y, width, cursor_row->visible_height);
27675 /* Erase the cursor by redrawing the character underneath it. */
27676 if (mouse_face_here_p)
27677 hl = DRAW_MOUSE_FACE;
27678 else
27679 hl = DRAW_NORMAL_TEXT;
27680 draw_phys_cursor_glyph (w, cursor_row, hl);
27682 mark_cursor_off:
27683 w->phys_cursor_on_p = false;
27684 w->phys_cursor_type = NO_CURSOR;
27688 /* Display or clear cursor of window W. If !ON, clear the cursor.
27689 If ON, display the cursor; where to put the cursor is specified by
27690 HPOS, VPOS, X and Y. */
27692 void
27693 display_and_set_cursor (struct window *w, bool on,
27694 int hpos, int vpos, int x, int y)
27696 struct frame *f = XFRAME (w->frame);
27697 int new_cursor_type;
27698 int new_cursor_width;
27699 bool active_cursor;
27700 struct glyph_row *glyph_row;
27701 struct glyph *glyph;
27703 /* This is pointless on invisible frames, and dangerous on garbaged
27704 windows and frames; in the latter case, the frame or window may
27705 be in the midst of changing its size, and x and y may be off the
27706 window. */
27707 if (! FRAME_VISIBLE_P (f)
27708 || FRAME_GARBAGED_P (f)
27709 || vpos >= w->current_matrix->nrows
27710 || hpos >= w->current_matrix->matrix_w)
27711 return;
27713 /* If cursor is off and we want it off, return quickly. */
27714 if (!on && !w->phys_cursor_on_p)
27715 return;
27717 glyph_row = MATRIX_ROW (w->current_matrix, vpos);
27718 /* If cursor row is not enabled, we don't really know where to
27719 display the cursor. */
27720 if (!glyph_row->enabled_p)
27722 w->phys_cursor_on_p = false;
27723 return;
27726 glyph = NULL;
27727 if (!glyph_row->exact_window_width_line_p
27728 || (0 <= hpos && hpos < glyph_row->used[TEXT_AREA]))
27729 glyph = glyph_row->glyphs[TEXT_AREA] + hpos;
27731 eassert (input_blocked_p ());
27733 /* Set new_cursor_type to the cursor we want to be displayed. */
27734 new_cursor_type = get_window_cursor_type (w, glyph,
27735 &new_cursor_width, &active_cursor);
27737 /* If cursor is currently being shown and we don't want it to be or
27738 it is in the wrong place, or the cursor type is not what we want,
27739 erase it. */
27740 if (w->phys_cursor_on_p
27741 && (!on
27742 || w->phys_cursor.x != x
27743 || w->phys_cursor.y != y
27744 /* HPOS can be negative in R2L rows whose
27745 exact_window_width_line_p flag is set (i.e. their newline
27746 would "overflow into the fringe"). */
27747 || hpos < 0
27748 || new_cursor_type != w->phys_cursor_type
27749 || ((new_cursor_type == BAR_CURSOR || new_cursor_type == HBAR_CURSOR)
27750 && new_cursor_width != w->phys_cursor_width)))
27751 erase_phys_cursor (w);
27753 /* Don't check phys_cursor_on_p here because that flag is only set
27754 to false in some cases where we know that the cursor has been
27755 completely erased, to avoid the extra work of erasing the cursor
27756 twice. In other words, phys_cursor_on_p can be true and the cursor
27757 still not be visible, or it has only been partly erased. */
27758 if (on)
27760 w->phys_cursor_ascent = glyph_row->ascent;
27761 w->phys_cursor_height = glyph_row->height;
27763 /* Set phys_cursor_.* before x_draw_.* is called because some
27764 of them may need the information. */
27765 w->phys_cursor.x = x;
27766 w->phys_cursor.y = glyph_row->y;
27767 w->phys_cursor.hpos = hpos;
27768 w->phys_cursor.vpos = vpos;
27771 FRAME_RIF (f)->draw_window_cursor (w, glyph_row, x, y,
27772 new_cursor_type, new_cursor_width,
27773 on, active_cursor);
27777 /* Switch the display of W's cursor on or off, according to the value
27778 of ON. */
27780 static void
27781 update_window_cursor (struct window *w, bool on)
27783 /* Don't update cursor in windows whose frame is in the process
27784 of being deleted. */
27785 if (w->current_matrix)
27787 int hpos = w->phys_cursor.hpos;
27788 int vpos = w->phys_cursor.vpos;
27789 struct glyph_row *row;
27791 if (vpos >= w->current_matrix->nrows
27792 || hpos >= w->current_matrix->matrix_w)
27793 return;
27795 row = MATRIX_ROW (w->current_matrix, vpos);
27797 /* When the window is hscrolled, cursor hpos can legitimately be
27798 out of bounds, but we draw the cursor at the corresponding
27799 window margin in that case. */
27800 if (!row->reversed_p && hpos < 0)
27801 hpos = 0;
27802 if (row->reversed_p && hpos >= row->used[TEXT_AREA])
27803 hpos = row->used[TEXT_AREA] - 1;
27805 block_input ();
27806 display_and_set_cursor (w, on, hpos, vpos,
27807 w->phys_cursor.x, w->phys_cursor.y);
27808 unblock_input ();
27813 /* Call update_window_cursor with parameter ON_P on all leaf windows
27814 in the window tree rooted at W. */
27816 static void
27817 update_cursor_in_window_tree (struct window *w, bool on_p)
27819 while (w)
27821 if (WINDOWP (w->contents))
27822 update_cursor_in_window_tree (XWINDOW (w->contents), on_p);
27823 else
27824 update_window_cursor (w, on_p);
27826 w = NILP (w->next) ? 0 : XWINDOW (w->next);
27831 /* EXPORT:
27832 Display the cursor on window W, or clear it, according to ON_P.
27833 Don't change the cursor's position. */
27835 void
27836 x_update_cursor (struct frame *f, bool on_p)
27838 update_cursor_in_window_tree (XWINDOW (f->root_window), on_p);
27842 /* EXPORT:
27843 Clear the cursor of window W to background color, and mark the
27844 cursor as not shown. This is used when the text where the cursor
27845 is about to be rewritten. */
27847 void
27848 x_clear_cursor (struct window *w)
27850 if (FRAME_VISIBLE_P (XFRAME (w->frame)) && w->phys_cursor_on_p)
27851 update_window_cursor (w, false);
27854 #endif /* HAVE_WINDOW_SYSTEM */
27856 /* Implementation of draw_row_with_mouse_face for GUI sessions, GPM,
27857 and MSDOS. */
27858 static void
27859 draw_row_with_mouse_face (struct window *w, int start_x, struct glyph_row *row,
27860 int start_hpos, int end_hpos,
27861 enum draw_glyphs_face draw)
27863 #ifdef HAVE_WINDOW_SYSTEM
27864 if (FRAME_WINDOW_P (XFRAME (w->frame)))
27866 draw_glyphs (w, start_x, row, TEXT_AREA, start_hpos, end_hpos, draw, 0);
27867 return;
27869 #endif
27870 #if defined (HAVE_GPM) || defined (MSDOS) || defined (WINDOWSNT)
27871 tty_draw_row_with_mouse_face (w, row, start_hpos, end_hpos, draw);
27872 #endif
27875 /* Display the active region described by mouse_face_* according to DRAW. */
27877 static void
27878 show_mouse_face (Mouse_HLInfo *hlinfo, enum draw_glyphs_face draw)
27880 struct window *w = XWINDOW (hlinfo->mouse_face_window);
27881 struct frame *f = XFRAME (WINDOW_FRAME (w));
27883 if (/* If window is in the process of being destroyed, don't bother
27884 to do anything. */
27885 w->current_matrix != NULL
27886 /* Don't update mouse highlight if hidden. */
27887 && (draw != DRAW_MOUSE_FACE || !hlinfo->mouse_face_hidden)
27888 /* Recognize when we are called to operate on rows that don't exist
27889 anymore. This can happen when a window is split. */
27890 && hlinfo->mouse_face_end_row < w->current_matrix->nrows)
27892 bool phys_cursor_on_p = w->phys_cursor_on_p;
27893 struct glyph_row *row, *first, *last;
27895 first = MATRIX_ROW (w->current_matrix, hlinfo->mouse_face_beg_row);
27896 last = MATRIX_ROW (w->current_matrix, hlinfo->mouse_face_end_row);
27898 for (row = first; row <= last && row->enabled_p; ++row)
27900 int start_hpos, end_hpos, start_x;
27902 /* For all but the first row, the highlight starts at column 0. */
27903 if (row == first)
27905 /* R2L rows have BEG and END in reversed order, but the
27906 screen drawing geometry is always left to right. So
27907 we need to mirror the beginning and end of the
27908 highlighted area in R2L rows. */
27909 if (!row->reversed_p)
27911 start_hpos = hlinfo->mouse_face_beg_col;
27912 start_x = hlinfo->mouse_face_beg_x;
27914 else if (row == last)
27916 start_hpos = hlinfo->mouse_face_end_col;
27917 start_x = hlinfo->mouse_face_end_x;
27919 else
27921 start_hpos = 0;
27922 start_x = 0;
27925 else if (row->reversed_p && row == last)
27927 start_hpos = hlinfo->mouse_face_end_col;
27928 start_x = hlinfo->mouse_face_end_x;
27930 else
27932 start_hpos = 0;
27933 start_x = 0;
27936 if (row == last)
27938 if (!row->reversed_p)
27939 end_hpos = hlinfo->mouse_face_end_col;
27940 else if (row == first)
27941 end_hpos = hlinfo->mouse_face_beg_col;
27942 else
27944 end_hpos = row->used[TEXT_AREA];
27945 if (draw == DRAW_NORMAL_TEXT)
27946 row->fill_line_p = true; /* Clear to end of line. */
27949 else if (row->reversed_p && row == first)
27950 end_hpos = hlinfo->mouse_face_beg_col;
27951 else
27953 end_hpos = row->used[TEXT_AREA];
27954 if (draw == DRAW_NORMAL_TEXT)
27955 row->fill_line_p = true; /* Clear to end of line. */
27958 if (end_hpos > start_hpos)
27960 draw_row_with_mouse_face (w, start_x, row,
27961 start_hpos, end_hpos, draw);
27963 row->mouse_face_p
27964 = draw == DRAW_MOUSE_FACE || draw == DRAW_IMAGE_RAISED;
27968 #ifdef HAVE_WINDOW_SYSTEM
27969 /* When we've written over the cursor, arrange for it to
27970 be displayed again. */
27971 if (FRAME_WINDOW_P (f)
27972 && phys_cursor_on_p && !w->phys_cursor_on_p)
27974 int hpos = w->phys_cursor.hpos;
27976 /* When the window is hscrolled, cursor hpos can legitimately be
27977 out of bounds, but we draw the cursor at the corresponding
27978 window margin in that case. */
27979 if (!row->reversed_p && hpos < 0)
27980 hpos = 0;
27981 if (row->reversed_p && hpos >= row->used[TEXT_AREA])
27982 hpos = row->used[TEXT_AREA] - 1;
27984 block_input ();
27985 display_and_set_cursor (w, true, hpos, w->phys_cursor.vpos,
27986 w->phys_cursor.x, w->phys_cursor.y);
27987 unblock_input ();
27989 #endif /* HAVE_WINDOW_SYSTEM */
27992 #ifdef HAVE_WINDOW_SYSTEM
27993 /* Change the mouse cursor. */
27994 if (FRAME_WINDOW_P (f) && NILP (do_mouse_tracking))
27996 #if ! defined (USE_GTK) && ! defined (HAVE_NS)
27997 if (draw == DRAW_NORMAL_TEXT
27998 && !EQ (hlinfo->mouse_face_window, f->tool_bar_window))
27999 FRAME_RIF (f)->define_frame_cursor (f, FRAME_X_OUTPUT (f)->text_cursor);
28000 else
28001 #endif
28002 if (draw == DRAW_MOUSE_FACE)
28003 FRAME_RIF (f)->define_frame_cursor (f, FRAME_X_OUTPUT (f)->hand_cursor);
28004 else
28005 FRAME_RIF (f)->define_frame_cursor (f, FRAME_X_OUTPUT (f)->nontext_cursor);
28007 #endif /* HAVE_WINDOW_SYSTEM */
28010 /* EXPORT:
28011 Clear out the mouse-highlighted active region.
28012 Redraw it un-highlighted first. Value is true if mouse
28013 face was actually drawn unhighlighted. */
28015 bool
28016 clear_mouse_face (Mouse_HLInfo *hlinfo)
28018 bool cleared
28019 = !hlinfo->mouse_face_hidden && !NILP (hlinfo->mouse_face_window);
28020 if (cleared)
28021 show_mouse_face (hlinfo, DRAW_NORMAL_TEXT);
28022 hlinfo->mouse_face_beg_row = hlinfo->mouse_face_beg_col = -1;
28023 hlinfo->mouse_face_end_row = hlinfo->mouse_face_end_col = -1;
28024 hlinfo->mouse_face_window = Qnil;
28025 hlinfo->mouse_face_overlay = Qnil;
28026 return cleared;
28029 /* Return true if the coordinates HPOS and VPOS on windows W are
28030 within the mouse face on that window. */
28031 static bool
28032 coords_in_mouse_face_p (struct window *w, int hpos, int vpos)
28034 Mouse_HLInfo *hlinfo = MOUSE_HL_INFO (XFRAME (w->frame));
28036 /* Quickly resolve the easy cases. */
28037 if (!(WINDOWP (hlinfo->mouse_face_window)
28038 && XWINDOW (hlinfo->mouse_face_window) == w))
28039 return false;
28040 if (vpos < hlinfo->mouse_face_beg_row
28041 || vpos > hlinfo->mouse_face_end_row)
28042 return false;
28043 if (vpos > hlinfo->mouse_face_beg_row
28044 && vpos < hlinfo->mouse_face_end_row)
28045 return true;
28047 if (!MATRIX_ROW (w->current_matrix, vpos)->reversed_p)
28049 if (hlinfo->mouse_face_beg_row == hlinfo->mouse_face_end_row)
28051 if (hlinfo->mouse_face_beg_col <= hpos && hpos < hlinfo->mouse_face_end_col)
28052 return true;
28054 else if ((vpos == hlinfo->mouse_face_beg_row
28055 && hpos >= hlinfo->mouse_face_beg_col)
28056 || (vpos == hlinfo->mouse_face_end_row
28057 && hpos < hlinfo->mouse_face_end_col))
28058 return true;
28060 else
28062 if (hlinfo->mouse_face_beg_row == hlinfo->mouse_face_end_row)
28064 if (hlinfo->mouse_face_end_col < hpos && hpos <= hlinfo->mouse_face_beg_col)
28065 return true;
28067 else if ((vpos == hlinfo->mouse_face_beg_row
28068 && hpos <= hlinfo->mouse_face_beg_col)
28069 || (vpos == hlinfo->mouse_face_end_row
28070 && hpos > hlinfo->mouse_face_end_col))
28071 return true;
28073 return false;
28077 /* EXPORT:
28078 True if physical cursor of window W is within mouse face. */
28080 bool
28081 cursor_in_mouse_face_p (struct window *w)
28083 int hpos = w->phys_cursor.hpos;
28084 int vpos = w->phys_cursor.vpos;
28085 struct glyph_row *row = MATRIX_ROW (w->current_matrix, vpos);
28087 /* When the window is hscrolled, cursor hpos can legitimately be out
28088 of bounds, but we draw the cursor at the corresponding window
28089 margin in that case. */
28090 if (!row->reversed_p && hpos < 0)
28091 hpos = 0;
28092 if (row->reversed_p && hpos >= row->used[TEXT_AREA])
28093 hpos = row->used[TEXT_AREA] - 1;
28095 return coords_in_mouse_face_p (w, hpos, vpos);
28100 /* Find the glyph rows START_ROW and END_ROW of window W that display
28101 characters between buffer positions START_CHARPOS and END_CHARPOS
28102 (excluding END_CHARPOS). DISP_STRING is a display string that
28103 covers these buffer positions. This is similar to
28104 row_containing_pos, but is more accurate when bidi reordering makes
28105 buffer positions change non-linearly with glyph rows. */
28106 static void
28107 rows_from_pos_range (struct window *w,
28108 ptrdiff_t start_charpos, ptrdiff_t end_charpos,
28109 Lisp_Object disp_string,
28110 struct glyph_row **start, struct glyph_row **end)
28112 struct glyph_row *first = MATRIX_FIRST_TEXT_ROW (w->current_matrix);
28113 int last_y = window_text_bottom_y (w);
28114 struct glyph_row *row;
28116 *start = NULL;
28117 *end = NULL;
28119 while (!first->enabled_p
28120 && first < MATRIX_BOTTOM_TEXT_ROW (w->current_matrix, w))
28121 first++;
28123 /* Find the START row. */
28124 for (row = first;
28125 row->enabled_p && MATRIX_ROW_BOTTOM_Y (row) <= last_y;
28126 row++)
28128 /* A row can potentially be the START row if the range of the
28129 characters it displays intersects the range
28130 [START_CHARPOS..END_CHARPOS). */
28131 if (! ((start_charpos < MATRIX_ROW_START_CHARPOS (row)
28132 && end_charpos < MATRIX_ROW_START_CHARPOS (row))
28133 /* See the commentary in row_containing_pos, for the
28134 explanation of the complicated way to check whether
28135 some position is beyond the end of the characters
28136 displayed by a row. */
28137 || ((start_charpos > MATRIX_ROW_END_CHARPOS (row)
28138 || (start_charpos == MATRIX_ROW_END_CHARPOS (row)
28139 && !row->ends_at_zv_p
28140 && !MATRIX_ROW_ENDS_IN_MIDDLE_OF_CHAR_P (row)))
28141 && (end_charpos > MATRIX_ROW_END_CHARPOS (row)
28142 || (end_charpos == MATRIX_ROW_END_CHARPOS (row)
28143 && !row->ends_at_zv_p
28144 && !MATRIX_ROW_ENDS_IN_MIDDLE_OF_CHAR_P (row))))))
28146 /* Found a candidate row. Now make sure at least one of the
28147 glyphs it displays has a charpos from the range
28148 [START_CHARPOS..END_CHARPOS).
28150 This is not obvious because bidi reordering could make
28151 buffer positions of a row be 1,2,3,102,101,100, and if we
28152 want to highlight characters in [50..60), we don't want
28153 this row, even though [50..60) does intersect [1..103),
28154 the range of character positions given by the row's start
28155 and end positions. */
28156 struct glyph *g = row->glyphs[TEXT_AREA];
28157 struct glyph *e = g + row->used[TEXT_AREA];
28159 while (g < e)
28161 if (((BUFFERP (g->object) || NILP (g->object))
28162 && start_charpos <= g->charpos && g->charpos < end_charpos)
28163 /* A glyph that comes from DISP_STRING is by
28164 definition to be highlighted. */
28165 || EQ (g->object, disp_string))
28166 *start = row;
28167 g++;
28169 if (*start)
28170 break;
28174 /* Find the END row. */
28175 if (!*start
28176 /* If the last row is partially visible, start looking for END
28177 from that row, instead of starting from FIRST. */
28178 && !(row->enabled_p
28179 && row->y < last_y && MATRIX_ROW_BOTTOM_Y (row) > last_y))
28180 row = first;
28181 for ( ; row->enabled_p && MATRIX_ROW_BOTTOM_Y (row) <= last_y; row++)
28183 struct glyph_row *next = row + 1;
28184 ptrdiff_t next_start = MATRIX_ROW_START_CHARPOS (next);
28186 if (!next->enabled_p
28187 || next >= MATRIX_BOTTOM_TEXT_ROW (w->current_matrix, w)
28188 /* The first row >= START whose range of displayed characters
28189 does NOT intersect the range [START_CHARPOS..END_CHARPOS]
28190 is the row END + 1. */
28191 || (start_charpos < next_start
28192 && end_charpos < next_start)
28193 || ((start_charpos > MATRIX_ROW_END_CHARPOS (next)
28194 || (start_charpos == MATRIX_ROW_END_CHARPOS (next)
28195 && !next->ends_at_zv_p
28196 && !MATRIX_ROW_ENDS_IN_MIDDLE_OF_CHAR_P (next)))
28197 && (end_charpos > MATRIX_ROW_END_CHARPOS (next)
28198 || (end_charpos == MATRIX_ROW_END_CHARPOS (next)
28199 && !next->ends_at_zv_p
28200 && !MATRIX_ROW_ENDS_IN_MIDDLE_OF_CHAR_P (next)))))
28202 *end = row;
28203 break;
28205 else
28207 /* If the next row's edges intersect [START_CHARPOS..END_CHARPOS],
28208 but none of the characters it displays are in the range, it is
28209 also END + 1. */
28210 struct glyph *g = next->glyphs[TEXT_AREA];
28211 struct glyph *s = g;
28212 struct glyph *e = g + next->used[TEXT_AREA];
28214 while (g < e)
28216 if (((BUFFERP (g->object) || NILP (g->object))
28217 && ((start_charpos <= g->charpos && g->charpos < end_charpos)
28218 /* If the buffer position of the first glyph in
28219 the row is equal to END_CHARPOS, it means
28220 the last character to be highlighted is the
28221 newline of ROW, and we must consider NEXT as
28222 END, not END+1. */
28223 || (((!next->reversed_p && g == s)
28224 || (next->reversed_p && g == e - 1))
28225 && (g->charpos == end_charpos
28226 /* Special case for when NEXT is an
28227 empty line at ZV. */
28228 || (g->charpos == -1
28229 && !row->ends_at_zv_p
28230 && next_start == end_charpos)))))
28231 /* A glyph that comes from DISP_STRING is by
28232 definition to be highlighted. */
28233 || EQ (g->object, disp_string))
28234 break;
28235 g++;
28237 if (g == e)
28239 *end = row;
28240 break;
28242 /* The first row that ends at ZV must be the last to be
28243 highlighted. */
28244 else if (next->ends_at_zv_p)
28246 *end = next;
28247 break;
28253 /* This function sets the mouse_face_* elements of HLINFO, assuming
28254 the mouse cursor is on a glyph with buffer charpos MOUSE_CHARPOS in
28255 window WINDOW. START_CHARPOS and END_CHARPOS are buffer positions
28256 for the overlay or run of text properties specifying the mouse
28257 face. BEFORE_STRING and AFTER_STRING, if non-nil, are a
28258 before-string and after-string that must also be highlighted.
28259 DISP_STRING, if non-nil, is a display string that may cover some
28260 or all of the highlighted text. */
28262 static void
28263 mouse_face_from_buffer_pos (Lisp_Object window,
28264 Mouse_HLInfo *hlinfo,
28265 ptrdiff_t mouse_charpos,
28266 ptrdiff_t start_charpos,
28267 ptrdiff_t end_charpos,
28268 Lisp_Object before_string,
28269 Lisp_Object after_string,
28270 Lisp_Object disp_string)
28272 struct window *w = XWINDOW (window);
28273 struct glyph_row *first = MATRIX_FIRST_TEXT_ROW (w->current_matrix);
28274 struct glyph_row *r1, *r2;
28275 struct glyph *glyph, *end;
28276 ptrdiff_t ignore, pos;
28277 int x;
28279 eassert (NILP (disp_string) || STRINGP (disp_string));
28280 eassert (NILP (before_string) || STRINGP (before_string));
28281 eassert (NILP (after_string) || STRINGP (after_string));
28283 /* Find the rows corresponding to START_CHARPOS and END_CHARPOS. */
28284 rows_from_pos_range (w, start_charpos, end_charpos, disp_string, &r1, &r2);
28285 if (r1 == NULL)
28286 r1 = MATRIX_ROW (w->current_matrix, w->window_end_vpos);
28287 /* If the before-string or display-string contains newlines,
28288 rows_from_pos_range skips to its last row. Move back. */
28289 if (!NILP (before_string) || !NILP (disp_string))
28291 struct glyph_row *prev;
28292 while ((prev = r1 - 1, prev >= first)
28293 && MATRIX_ROW_END_CHARPOS (prev) == start_charpos
28294 && prev->used[TEXT_AREA] > 0)
28296 struct glyph *beg = prev->glyphs[TEXT_AREA];
28297 glyph = beg + prev->used[TEXT_AREA];
28298 while (--glyph >= beg && NILP (glyph->object));
28299 if (glyph < beg
28300 || !(EQ (glyph->object, before_string)
28301 || EQ (glyph->object, disp_string)))
28302 break;
28303 r1 = prev;
28306 if (r2 == NULL)
28308 r2 = MATRIX_ROW (w->current_matrix, w->window_end_vpos);
28309 hlinfo->mouse_face_past_end = true;
28311 else if (!NILP (after_string))
28313 /* If the after-string has newlines, advance to its last row. */
28314 struct glyph_row *next;
28315 struct glyph_row *last
28316 = MATRIX_ROW (w->current_matrix, w->window_end_vpos);
28318 for (next = r2 + 1;
28319 next <= last
28320 && next->used[TEXT_AREA] > 0
28321 && EQ (next->glyphs[TEXT_AREA]->object, after_string);
28322 ++next)
28323 r2 = next;
28325 /* The rest of the display engine assumes that mouse_face_beg_row is
28326 either above mouse_face_end_row or identical to it. But with
28327 bidi-reordered continued lines, the row for START_CHARPOS could
28328 be below the row for END_CHARPOS. If so, swap the rows and store
28329 them in correct order. */
28330 if (r1->y > r2->y)
28332 struct glyph_row *tem = r2;
28334 r2 = r1;
28335 r1 = tem;
28338 hlinfo->mouse_face_beg_row = MATRIX_ROW_VPOS (r1, w->current_matrix);
28339 hlinfo->mouse_face_end_row = MATRIX_ROW_VPOS (r2, w->current_matrix);
28341 /* For a bidi-reordered row, the positions of BEFORE_STRING,
28342 AFTER_STRING, DISP_STRING, START_CHARPOS, and END_CHARPOS
28343 could be anywhere in the row and in any order. The strategy
28344 below is to find the leftmost and the rightmost glyph that
28345 belongs to either of these 3 strings, or whose position is
28346 between START_CHARPOS and END_CHARPOS, and highlight all the
28347 glyphs between those two. This may cover more than just the text
28348 between START_CHARPOS and END_CHARPOS if the range of characters
28349 strides the bidi level boundary, e.g. if the beginning is in R2L
28350 text while the end is in L2R text or vice versa. */
28351 if (!r1->reversed_p)
28353 /* This row is in a left to right paragraph. Scan it left to
28354 right. */
28355 glyph = r1->glyphs[TEXT_AREA];
28356 end = glyph + r1->used[TEXT_AREA];
28357 x = r1->x;
28359 /* Skip truncation glyphs at the start of the glyph row. */
28360 if (MATRIX_ROW_DISPLAYS_TEXT_P (r1))
28361 for (; glyph < end
28362 && NILP (glyph->object)
28363 && glyph->charpos < 0;
28364 ++glyph)
28365 x += glyph->pixel_width;
28367 /* Scan the glyph row, looking for BEFORE_STRING, AFTER_STRING,
28368 or DISP_STRING, and the first glyph from buffer whose
28369 position is between START_CHARPOS and END_CHARPOS. */
28370 for (; glyph < end
28371 && !NILP (glyph->object)
28372 && !EQ (glyph->object, disp_string)
28373 && !(BUFFERP (glyph->object)
28374 && (glyph->charpos >= start_charpos
28375 && glyph->charpos < end_charpos));
28376 ++glyph)
28378 /* BEFORE_STRING or AFTER_STRING are only relevant if they
28379 are present at buffer positions between START_CHARPOS and
28380 END_CHARPOS, or if they come from an overlay. */
28381 if (EQ (glyph->object, before_string))
28383 pos = string_buffer_position (before_string,
28384 start_charpos);
28385 /* If pos == 0, it means before_string came from an
28386 overlay, not from a buffer position. */
28387 if (!pos || (pos >= start_charpos && pos < end_charpos))
28388 break;
28390 else if (EQ (glyph->object, after_string))
28392 pos = string_buffer_position (after_string, end_charpos);
28393 if (!pos || (pos >= start_charpos && pos < end_charpos))
28394 break;
28396 x += glyph->pixel_width;
28398 hlinfo->mouse_face_beg_x = x;
28399 hlinfo->mouse_face_beg_col = glyph - r1->glyphs[TEXT_AREA];
28401 else
28403 /* This row is in a right to left paragraph. Scan it right to
28404 left. */
28405 struct glyph *g;
28407 end = r1->glyphs[TEXT_AREA] - 1;
28408 glyph = end + r1->used[TEXT_AREA];
28410 /* Skip truncation glyphs at the start of the glyph row. */
28411 if (MATRIX_ROW_DISPLAYS_TEXT_P (r1))
28412 for (; glyph > end
28413 && NILP (glyph->object)
28414 && glyph->charpos < 0;
28415 --glyph)
28418 /* Scan the glyph row, looking for BEFORE_STRING, AFTER_STRING,
28419 or DISP_STRING, and the first glyph from buffer whose
28420 position is between START_CHARPOS and END_CHARPOS. */
28421 for (; glyph > end
28422 && !NILP (glyph->object)
28423 && !EQ (glyph->object, disp_string)
28424 && !(BUFFERP (glyph->object)
28425 && (glyph->charpos >= start_charpos
28426 && glyph->charpos < end_charpos));
28427 --glyph)
28429 /* BEFORE_STRING or AFTER_STRING are only relevant if they
28430 are present at buffer positions between START_CHARPOS and
28431 END_CHARPOS, or if they come from an overlay. */
28432 if (EQ (glyph->object, before_string))
28434 pos = string_buffer_position (before_string, start_charpos);
28435 /* If pos == 0, it means before_string came from an
28436 overlay, not from a buffer position. */
28437 if (!pos || (pos >= start_charpos && pos < end_charpos))
28438 break;
28440 else if (EQ (glyph->object, after_string))
28442 pos = string_buffer_position (after_string, end_charpos);
28443 if (!pos || (pos >= start_charpos && pos < end_charpos))
28444 break;
28448 glyph++; /* first glyph to the right of the highlighted area */
28449 for (g = r1->glyphs[TEXT_AREA], x = r1->x; g < glyph; g++)
28450 x += g->pixel_width;
28451 hlinfo->mouse_face_beg_x = x;
28452 hlinfo->mouse_face_beg_col = glyph - r1->glyphs[TEXT_AREA];
28455 /* If the highlight ends in a different row, compute GLYPH and END
28456 for the end row. Otherwise, reuse the values computed above for
28457 the row where the highlight begins. */
28458 if (r2 != r1)
28460 if (!r2->reversed_p)
28462 glyph = r2->glyphs[TEXT_AREA];
28463 end = glyph + r2->used[TEXT_AREA];
28464 x = r2->x;
28466 else
28468 end = r2->glyphs[TEXT_AREA] - 1;
28469 glyph = end + r2->used[TEXT_AREA];
28473 if (!r2->reversed_p)
28475 /* Skip truncation and continuation glyphs near the end of the
28476 row, and also blanks and stretch glyphs inserted by
28477 extend_face_to_end_of_line. */
28478 while (end > glyph
28479 && NILP ((end - 1)->object))
28480 --end;
28481 /* Scan the rest of the glyph row from the end, looking for the
28482 first glyph that comes from BEFORE_STRING, AFTER_STRING, or
28483 DISP_STRING, or whose position is between START_CHARPOS
28484 and END_CHARPOS */
28485 for (--end;
28486 end > glyph
28487 && !NILP (end->object)
28488 && !EQ (end->object, disp_string)
28489 && !(BUFFERP (end->object)
28490 && (end->charpos >= start_charpos
28491 && end->charpos < end_charpos));
28492 --end)
28494 /* BEFORE_STRING or AFTER_STRING are only relevant if they
28495 are present at buffer positions between START_CHARPOS and
28496 END_CHARPOS, or if they come from an overlay. */
28497 if (EQ (end->object, before_string))
28499 pos = string_buffer_position (before_string, start_charpos);
28500 if (!pos || (pos >= start_charpos && pos < end_charpos))
28501 break;
28503 else if (EQ (end->object, after_string))
28505 pos = string_buffer_position (after_string, end_charpos);
28506 if (!pos || (pos >= start_charpos && pos < end_charpos))
28507 break;
28510 /* Find the X coordinate of the last glyph to be highlighted. */
28511 for (; glyph <= end; ++glyph)
28512 x += glyph->pixel_width;
28514 hlinfo->mouse_face_end_x = x;
28515 hlinfo->mouse_face_end_col = glyph - r2->glyphs[TEXT_AREA];
28517 else
28519 /* Skip truncation and continuation glyphs near the end of the
28520 row, and also blanks and stretch glyphs inserted by
28521 extend_face_to_end_of_line. */
28522 x = r2->x;
28523 end++;
28524 while (end < glyph
28525 && NILP (end->object))
28527 x += end->pixel_width;
28528 ++end;
28530 /* Scan the rest of the glyph row from the end, looking for the
28531 first glyph that comes from BEFORE_STRING, AFTER_STRING, or
28532 DISP_STRING, or whose position is between START_CHARPOS
28533 and END_CHARPOS */
28534 for ( ;
28535 end < glyph
28536 && !NILP (end->object)
28537 && !EQ (end->object, disp_string)
28538 && !(BUFFERP (end->object)
28539 && (end->charpos >= start_charpos
28540 && end->charpos < end_charpos));
28541 ++end)
28543 /* BEFORE_STRING or AFTER_STRING are only relevant if they
28544 are present at buffer positions between START_CHARPOS and
28545 END_CHARPOS, or if they come from an overlay. */
28546 if (EQ (end->object, before_string))
28548 pos = string_buffer_position (before_string, start_charpos);
28549 if (!pos || (pos >= start_charpos && pos < end_charpos))
28550 break;
28552 else if (EQ (end->object, after_string))
28554 pos = string_buffer_position (after_string, end_charpos);
28555 if (!pos || (pos >= start_charpos && pos < end_charpos))
28556 break;
28558 x += end->pixel_width;
28560 /* If we exited the above loop because we arrived at the last
28561 glyph of the row, and its buffer position is still not in
28562 range, it means the last character in range is the preceding
28563 newline. Bump the end column and x values to get past the
28564 last glyph. */
28565 if (end == glyph
28566 && BUFFERP (end->object)
28567 && (end->charpos < start_charpos
28568 || end->charpos >= end_charpos))
28570 x += end->pixel_width;
28571 ++end;
28573 hlinfo->mouse_face_end_x = x;
28574 hlinfo->mouse_face_end_col = end - r2->glyphs[TEXT_AREA];
28577 hlinfo->mouse_face_window = window;
28578 hlinfo->mouse_face_face_id
28579 = face_at_buffer_position (w, mouse_charpos, &ignore,
28580 mouse_charpos + 1,
28581 !hlinfo->mouse_face_hidden, -1);
28582 show_mouse_face (hlinfo, DRAW_MOUSE_FACE);
28585 /* The following function is not used anymore (replaced with
28586 mouse_face_from_string_pos), but I leave it here for the time
28587 being, in case someone would. */
28589 #if false /* not used */
28591 /* Find the position of the glyph for position POS in OBJECT in
28592 window W's current matrix, and return in *X, *Y the pixel
28593 coordinates, and return in *HPOS, *VPOS the column/row of the glyph.
28595 RIGHT_P means return the position of the right edge of the glyph.
28596 !RIGHT_P means return the left edge position.
28598 If no glyph for POS exists in the matrix, return the position of
28599 the glyph with the next smaller position that is in the matrix, if
28600 RIGHT_P is false. If RIGHT_P, and no glyph for POS
28601 exists in the matrix, return the position of the glyph with the
28602 next larger position in OBJECT.
28604 Value is true if a glyph was found. */
28606 static bool
28607 fast_find_string_pos (struct window *w, ptrdiff_t pos, Lisp_Object object,
28608 int *hpos, int *vpos, int *x, int *y, bool right_p)
28610 int yb = window_text_bottom_y (w);
28611 struct glyph_row *r;
28612 struct glyph *best_glyph = NULL;
28613 struct glyph_row *best_row = NULL;
28614 int best_x = 0;
28616 for (r = MATRIX_FIRST_TEXT_ROW (w->current_matrix);
28617 r->enabled_p && r->y < yb;
28618 ++r)
28620 struct glyph *g = r->glyphs[TEXT_AREA];
28621 struct glyph *e = g + r->used[TEXT_AREA];
28622 int gx;
28624 for (gx = r->x; g < e; gx += g->pixel_width, ++g)
28625 if (EQ (g->object, object))
28627 if (g->charpos == pos)
28629 best_glyph = g;
28630 best_x = gx;
28631 best_row = r;
28632 goto found;
28634 else if (best_glyph == NULL
28635 || ((eabs (g->charpos - pos)
28636 < eabs (best_glyph->charpos - pos))
28637 && (right_p
28638 ? g->charpos < pos
28639 : g->charpos > pos)))
28641 best_glyph = g;
28642 best_x = gx;
28643 best_row = r;
28648 found:
28650 if (best_glyph)
28652 *x = best_x;
28653 *hpos = best_glyph - best_row->glyphs[TEXT_AREA];
28655 if (right_p)
28657 *x += best_glyph->pixel_width;
28658 ++*hpos;
28661 *y = best_row->y;
28662 *vpos = MATRIX_ROW_VPOS (best_row, w->current_matrix);
28665 return best_glyph != NULL;
28667 #endif /* not used */
28669 /* Find the positions of the first and the last glyphs in window W's
28670 current matrix that occlude positions [STARTPOS..ENDPOS) in OBJECT
28671 (assumed to be a string), and return in HLINFO's mouse_face_*
28672 members the pixel and column/row coordinates of those glyphs. */
28674 static void
28675 mouse_face_from_string_pos (struct window *w, Mouse_HLInfo *hlinfo,
28676 Lisp_Object object,
28677 ptrdiff_t startpos, ptrdiff_t endpos)
28679 int yb = window_text_bottom_y (w);
28680 struct glyph_row *r;
28681 struct glyph *g, *e;
28682 int gx;
28683 bool found = false;
28685 /* Find the glyph row with at least one position in the range
28686 [STARTPOS..ENDPOS), and the first glyph in that row whose
28687 position belongs to that range. */
28688 for (r = MATRIX_FIRST_TEXT_ROW (w->current_matrix);
28689 r->enabled_p && r->y < yb;
28690 ++r)
28692 if (!r->reversed_p)
28694 g = r->glyphs[TEXT_AREA];
28695 e = g + r->used[TEXT_AREA];
28696 for (gx = r->x; g < e; gx += g->pixel_width, ++g)
28697 if (EQ (g->object, object)
28698 && startpos <= g->charpos && g->charpos < endpos)
28700 hlinfo->mouse_face_beg_row
28701 = MATRIX_ROW_VPOS (r, w->current_matrix);
28702 hlinfo->mouse_face_beg_col = g - r->glyphs[TEXT_AREA];
28703 hlinfo->mouse_face_beg_x = gx;
28704 found = true;
28705 break;
28708 else
28710 struct glyph *g1;
28712 e = r->glyphs[TEXT_AREA];
28713 g = e + r->used[TEXT_AREA];
28714 for ( ; g > e; --g)
28715 if (EQ ((g-1)->object, object)
28716 && startpos <= (g-1)->charpos && (g-1)->charpos < endpos)
28718 hlinfo->mouse_face_beg_row
28719 = MATRIX_ROW_VPOS (r, w->current_matrix);
28720 hlinfo->mouse_face_beg_col = g - r->glyphs[TEXT_AREA];
28721 for (gx = r->x, g1 = r->glyphs[TEXT_AREA]; g1 < g; ++g1)
28722 gx += g1->pixel_width;
28723 hlinfo->mouse_face_beg_x = gx;
28724 found = true;
28725 break;
28728 if (found)
28729 break;
28732 if (!found)
28733 return;
28735 /* Starting with the next row, look for the first row which does NOT
28736 include any glyphs whose positions are in the range. */
28737 for (++r; r->enabled_p && r->y < yb; ++r)
28739 g = r->glyphs[TEXT_AREA];
28740 e = g + r->used[TEXT_AREA];
28741 found = false;
28742 for ( ; g < e; ++g)
28743 if (EQ (g->object, object)
28744 && startpos <= g->charpos && g->charpos < endpos)
28746 found = true;
28747 break;
28749 if (!found)
28750 break;
28753 /* The highlighted region ends on the previous row. */
28754 r--;
28756 /* Set the end row. */
28757 hlinfo->mouse_face_end_row = MATRIX_ROW_VPOS (r, w->current_matrix);
28759 /* Compute and set the end column and the end column's horizontal
28760 pixel coordinate. */
28761 if (!r->reversed_p)
28763 g = r->glyphs[TEXT_AREA];
28764 e = g + r->used[TEXT_AREA];
28765 for ( ; e > g; --e)
28766 if (EQ ((e-1)->object, object)
28767 && startpos <= (e-1)->charpos && (e-1)->charpos < endpos)
28768 break;
28769 hlinfo->mouse_face_end_col = e - g;
28771 for (gx = r->x; g < e; ++g)
28772 gx += g->pixel_width;
28773 hlinfo->mouse_face_end_x = gx;
28775 else
28777 e = r->glyphs[TEXT_AREA];
28778 g = e + r->used[TEXT_AREA];
28779 for (gx = r->x ; e < g; ++e)
28781 if (EQ (e->object, object)
28782 && startpos <= e->charpos && e->charpos < endpos)
28783 break;
28784 gx += e->pixel_width;
28786 hlinfo->mouse_face_end_col = e - r->glyphs[TEXT_AREA];
28787 hlinfo->mouse_face_end_x = gx;
28791 #ifdef HAVE_WINDOW_SYSTEM
28793 /* See if position X, Y is within a hot-spot of an image. */
28795 static bool
28796 on_hot_spot_p (Lisp_Object hot_spot, int x, int y)
28798 if (!CONSP (hot_spot))
28799 return false;
28801 if (EQ (XCAR (hot_spot), Qrect))
28803 /* CDR is (Top-Left . Bottom-Right) = ((x0 . y0) . (x1 . y1)) */
28804 Lisp_Object rect = XCDR (hot_spot);
28805 Lisp_Object tem;
28806 if (!CONSP (rect))
28807 return false;
28808 if (!CONSP (XCAR (rect)))
28809 return false;
28810 if (!CONSP (XCDR (rect)))
28811 return false;
28812 if (!(tem = XCAR (XCAR (rect)), INTEGERP (tem) && x >= XINT (tem)))
28813 return false;
28814 if (!(tem = XCDR (XCAR (rect)), INTEGERP (tem) && y >= XINT (tem)))
28815 return false;
28816 if (!(tem = XCAR (XCDR (rect)), INTEGERP (tem) && x <= XINT (tem)))
28817 return false;
28818 if (!(tem = XCDR (XCDR (rect)), INTEGERP (tem) && y <= XINT (tem)))
28819 return false;
28820 return true;
28822 else if (EQ (XCAR (hot_spot), Qcircle))
28824 /* CDR is (Center . Radius) = ((x0 . y0) . r) */
28825 Lisp_Object circ = XCDR (hot_spot);
28826 Lisp_Object lr, lx0, ly0;
28827 if (CONSP (circ)
28828 && CONSP (XCAR (circ))
28829 && (lr = XCDR (circ), INTEGERP (lr) || FLOATP (lr))
28830 && (lx0 = XCAR (XCAR (circ)), INTEGERP (lx0))
28831 && (ly0 = XCDR (XCAR (circ)), INTEGERP (ly0)))
28833 double r = XFLOATINT (lr);
28834 double dx = XINT (lx0) - x;
28835 double dy = XINT (ly0) - y;
28836 return (dx * dx + dy * dy <= r * r);
28839 else if (EQ (XCAR (hot_spot), Qpoly))
28841 /* CDR is [x0 y0 x1 y1 x2 y2 ...x(n-1) y(n-1)] */
28842 if (VECTORP (XCDR (hot_spot)))
28844 struct Lisp_Vector *v = XVECTOR (XCDR (hot_spot));
28845 Lisp_Object *poly = v->contents;
28846 ptrdiff_t n = v->header.size;
28847 ptrdiff_t i;
28848 bool inside = false;
28849 Lisp_Object lx, ly;
28850 int x0, y0;
28852 /* Need an even number of coordinates, and at least 3 edges. */
28853 if (n < 6 || n & 1)
28854 return false;
28856 /* Count edge segments intersecting line from (X,Y) to (X,infinity).
28857 If count is odd, we are inside polygon. Pixels on edges
28858 may or may not be included depending on actual geometry of the
28859 polygon. */
28860 if ((lx = poly[n-2], !INTEGERP (lx))
28861 || (ly = poly[n-1], !INTEGERP (lx)))
28862 return false;
28863 x0 = XINT (lx), y0 = XINT (ly);
28864 for (i = 0; i < n; i += 2)
28866 int x1 = x0, y1 = y0;
28867 if ((lx = poly[i], !INTEGERP (lx))
28868 || (ly = poly[i+1], !INTEGERP (ly)))
28869 return false;
28870 x0 = XINT (lx), y0 = XINT (ly);
28872 /* Does this segment cross the X line? */
28873 if (x0 >= x)
28875 if (x1 >= x)
28876 continue;
28878 else if (x1 < x)
28879 continue;
28880 if (y > y0 && y > y1)
28881 continue;
28882 if (y < y0 + ((y1 - y0) * (x - x0)) / (x1 - x0))
28883 inside = !inside;
28885 return inside;
28888 return false;
28891 Lisp_Object
28892 find_hot_spot (Lisp_Object map, int x, int y)
28894 while (CONSP (map))
28896 if (CONSP (XCAR (map))
28897 && on_hot_spot_p (XCAR (XCAR (map)), x, y))
28898 return XCAR (map);
28899 map = XCDR (map);
28902 return Qnil;
28905 DEFUN ("lookup-image-map", Flookup_image_map, Slookup_image_map,
28906 3, 3, 0,
28907 doc: /* Lookup in image map MAP coordinates X and Y.
28908 An image map is an alist where each element has the format (AREA ID PLIST).
28909 An AREA is specified as either a rectangle, a circle, or a polygon:
28910 A rectangle is a cons (rect . ((x0 . y0) . (x1 . y1))) specifying the
28911 pixel coordinates of the upper left and bottom right corners.
28912 A circle is a cons (circle . ((x0 . y0) . r)) specifying the center
28913 and the radius of the circle; r may be a float or integer.
28914 A polygon is a cons (poly . [x0 y0 x1 y1 ...]) where each pair in the
28915 vector describes one corner in the polygon.
28916 Returns the alist element for the first matching AREA in MAP. */)
28917 (Lisp_Object map, Lisp_Object x, Lisp_Object y)
28919 if (NILP (map))
28920 return Qnil;
28922 CHECK_NUMBER (x);
28923 CHECK_NUMBER (y);
28925 return find_hot_spot (map,
28926 clip_to_bounds (INT_MIN, XINT (x), INT_MAX),
28927 clip_to_bounds (INT_MIN, XINT (y), INT_MAX));
28931 /* Display frame CURSOR, optionally using shape defined by POINTER. */
28932 static void
28933 define_frame_cursor1 (struct frame *f, Cursor cursor, Lisp_Object pointer)
28935 /* Do not change cursor shape while dragging mouse. */
28936 if (!NILP (do_mouse_tracking))
28937 return;
28939 if (!NILP (pointer))
28941 if (EQ (pointer, Qarrow))
28942 cursor = FRAME_X_OUTPUT (f)->nontext_cursor;
28943 else if (EQ (pointer, Qhand))
28944 cursor = FRAME_X_OUTPUT (f)->hand_cursor;
28945 else if (EQ (pointer, Qtext))
28946 cursor = FRAME_X_OUTPUT (f)->text_cursor;
28947 else if (EQ (pointer, intern ("hdrag")))
28948 cursor = FRAME_X_OUTPUT (f)->horizontal_drag_cursor;
28949 else if (EQ (pointer, intern ("nhdrag")))
28950 cursor = FRAME_X_OUTPUT (f)->vertical_drag_cursor;
28951 #ifdef HAVE_X_WINDOWS
28952 else if (EQ (pointer, intern ("vdrag")))
28953 cursor = FRAME_DISPLAY_INFO (f)->vertical_scroll_bar_cursor;
28954 #endif
28955 else if (EQ (pointer, intern ("hourglass")))
28956 cursor = FRAME_X_OUTPUT (f)->hourglass_cursor;
28957 else if (EQ (pointer, Qmodeline))
28958 cursor = FRAME_X_OUTPUT (f)->modeline_cursor;
28959 else
28960 cursor = FRAME_X_OUTPUT (f)->nontext_cursor;
28963 if (cursor != No_Cursor)
28964 FRAME_RIF (f)->define_frame_cursor (f, cursor);
28967 #endif /* HAVE_WINDOW_SYSTEM */
28969 /* Take proper action when mouse has moved to the mode or header line
28970 or marginal area AREA of window W, x-position X and y-position Y.
28971 X is relative to the start of the text display area of W, so the
28972 width of bitmap areas and scroll bars must be subtracted to get a
28973 position relative to the start of the mode line. */
28975 static void
28976 note_mode_line_or_margin_highlight (Lisp_Object window, int x, int y,
28977 enum window_part area)
28979 struct window *w = XWINDOW (window);
28980 struct frame *f = XFRAME (w->frame);
28981 Mouse_HLInfo *hlinfo = MOUSE_HL_INFO (f);
28982 #ifdef HAVE_WINDOW_SYSTEM
28983 Display_Info *dpyinfo;
28984 #endif
28985 Cursor cursor = No_Cursor;
28986 Lisp_Object pointer = Qnil;
28987 int dx, dy, width, height;
28988 ptrdiff_t charpos;
28989 Lisp_Object string, object = Qnil;
28990 Lisp_Object pos IF_LINT (= Qnil), help;
28992 Lisp_Object mouse_face;
28993 int original_x_pixel = x;
28994 struct glyph * glyph = NULL, * row_start_glyph = NULL;
28995 struct glyph_row *row IF_LINT (= 0);
28997 if (area == ON_MODE_LINE || area == ON_HEADER_LINE)
28999 int x0;
29000 struct glyph *end;
29002 /* Kludge alert: mode_line_string takes X/Y in pixels, but
29003 returns them in row/column units! */
29004 string = mode_line_string (w, area, &x, &y, &charpos,
29005 &object, &dx, &dy, &width, &height);
29007 row = (area == ON_MODE_LINE
29008 ? MATRIX_MODE_LINE_ROW (w->current_matrix)
29009 : MATRIX_HEADER_LINE_ROW (w->current_matrix));
29011 /* Find the glyph under the mouse pointer. */
29012 if (row->mode_line_p && row->enabled_p)
29014 glyph = row_start_glyph = row->glyphs[TEXT_AREA];
29015 end = glyph + row->used[TEXT_AREA];
29017 for (x0 = original_x_pixel;
29018 glyph < end && x0 >= glyph->pixel_width;
29019 ++glyph)
29020 x0 -= glyph->pixel_width;
29022 if (glyph >= end)
29023 glyph = NULL;
29026 else
29028 x -= WINDOW_LEFT_SCROLL_BAR_AREA_WIDTH (w);
29029 /* Kludge alert: marginal_area_string takes X/Y in pixels, but
29030 returns them in row/column units! */
29031 string = marginal_area_string (w, area, &x, &y, &charpos,
29032 &object, &dx, &dy, &width, &height);
29035 help = Qnil;
29037 #ifdef HAVE_WINDOW_SYSTEM
29038 if (IMAGEP (object))
29040 Lisp_Object image_map, hotspot;
29041 if ((image_map = Fplist_get (XCDR (object), QCmap),
29042 !NILP (image_map))
29043 && (hotspot = find_hot_spot (image_map, dx, dy),
29044 CONSP (hotspot))
29045 && (hotspot = XCDR (hotspot), CONSP (hotspot)))
29047 Lisp_Object plist;
29049 /* Could check XCAR (hotspot) to see if we enter/leave this hot-spot.
29050 If so, we could look for mouse-enter, mouse-leave
29051 properties in PLIST (and do something...). */
29052 hotspot = XCDR (hotspot);
29053 if (CONSP (hotspot)
29054 && (plist = XCAR (hotspot), CONSP (plist)))
29056 pointer = Fplist_get (plist, Qpointer);
29057 if (NILP (pointer))
29058 pointer = Qhand;
29059 help = Fplist_get (plist, Qhelp_echo);
29060 if (!NILP (help))
29062 help_echo_string = help;
29063 XSETWINDOW (help_echo_window, w);
29064 help_echo_object = w->contents;
29065 help_echo_pos = charpos;
29069 if (NILP (pointer))
29070 pointer = Fplist_get (XCDR (object), QCpointer);
29072 #endif /* HAVE_WINDOW_SYSTEM */
29074 if (STRINGP (string))
29075 pos = make_number (charpos);
29077 /* Set the help text and mouse pointer. If the mouse is on a part
29078 of the mode line without any text (e.g. past the right edge of
29079 the mode line text), use the default help text and pointer. */
29080 if (STRINGP (string) || area == ON_MODE_LINE)
29082 /* Arrange to display the help by setting the global variables
29083 help_echo_string, help_echo_object, and help_echo_pos. */
29084 if (NILP (help))
29086 if (STRINGP (string))
29087 help = Fget_text_property (pos, Qhelp_echo, string);
29089 if (!NILP (help))
29091 help_echo_string = help;
29092 XSETWINDOW (help_echo_window, w);
29093 help_echo_object = string;
29094 help_echo_pos = charpos;
29096 else if (area == ON_MODE_LINE)
29098 Lisp_Object default_help
29099 = buffer_local_value (Qmode_line_default_help_echo,
29100 w->contents);
29102 if (STRINGP (default_help))
29104 help_echo_string = default_help;
29105 XSETWINDOW (help_echo_window, w);
29106 help_echo_object = Qnil;
29107 help_echo_pos = -1;
29112 #ifdef HAVE_WINDOW_SYSTEM
29113 /* Change the mouse pointer according to what is under it. */
29114 if (FRAME_WINDOW_P (f))
29116 bool draggable = (! WINDOW_BOTTOMMOST_P (w)
29117 || minibuf_level
29118 || NILP (Vresize_mini_windows));
29120 dpyinfo = FRAME_DISPLAY_INFO (f);
29121 if (STRINGP (string))
29123 cursor = FRAME_X_OUTPUT (f)->nontext_cursor;
29125 if (NILP (pointer))
29126 pointer = Fget_text_property (pos, Qpointer, string);
29128 /* Change the mouse pointer according to what is under X/Y. */
29129 if (NILP (pointer)
29130 && ((area == ON_MODE_LINE) || (area == ON_HEADER_LINE)))
29132 Lisp_Object map;
29133 map = Fget_text_property (pos, Qlocal_map, string);
29134 if (!KEYMAPP (map))
29135 map = Fget_text_property (pos, Qkeymap, string);
29136 if (!KEYMAPP (map) && draggable)
29137 cursor = dpyinfo->vertical_scroll_bar_cursor;
29140 else if (draggable)
29141 /* Default mode-line pointer. */
29142 cursor = FRAME_DISPLAY_INFO (f)->vertical_scroll_bar_cursor;
29144 #endif
29147 /* Change the mouse face according to what is under X/Y. */
29148 if (STRINGP (string))
29150 mouse_face = Fget_text_property (pos, Qmouse_face, string);
29151 if (!NILP (Vmouse_highlight) && !NILP (mouse_face)
29152 && ((area == ON_MODE_LINE) || (area == ON_HEADER_LINE))
29153 && glyph)
29155 Lisp_Object b, e;
29157 struct glyph * tmp_glyph;
29159 int gpos;
29160 int gseq_length;
29161 int total_pixel_width;
29162 ptrdiff_t begpos, endpos, ignore;
29164 int vpos, hpos;
29166 b = Fprevious_single_property_change (make_number (charpos + 1),
29167 Qmouse_face, string, Qnil);
29168 if (NILP (b))
29169 begpos = 0;
29170 else
29171 begpos = XINT (b);
29173 e = Fnext_single_property_change (pos, Qmouse_face, string, Qnil);
29174 if (NILP (e))
29175 endpos = SCHARS (string);
29176 else
29177 endpos = XINT (e);
29179 /* Calculate the glyph position GPOS of GLYPH in the
29180 displayed string, relative to the beginning of the
29181 highlighted part of the string.
29183 Note: GPOS is different from CHARPOS. CHARPOS is the
29184 position of GLYPH in the internal string object. A mode
29185 line string format has structures which are converted to
29186 a flattened string by the Emacs Lisp interpreter. The
29187 internal string is an element of those structures. The
29188 displayed string is the flattened string. */
29189 tmp_glyph = row_start_glyph;
29190 while (tmp_glyph < glyph
29191 && (!(EQ (tmp_glyph->object, glyph->object)
29192 && begpos <= tmp_glyph->charpos
29193 && tmp_glyph->charpos < endpos)))
29194 tmp_glyph++;
29195 gpos = glyph - tmp_glyph;
29197 /* Calculate the length GSEQ_LENGTH of the glyph sequence of
29198 the highlighted part of the displayed string to which
29199 GLYPH belongs. Note: GSEQ_LENGTH is different from
29200 SCHARS (STRING), because the latter returns the length of
29201 the internal string. */
29202 for (tmp_glyph = row->glyphs[TEXT_AREA] + row->used[TEXT_AREA] - 1;
29203 tmp_glyph > glyph
29204 && (!(EQ (tmp_glyph->object, glyph->object)
29205 && begpos <= tmp_glyph->charpos
29206 && tmp_glyph->charpos < endpos));
29207 tmp_glyph--)
29209 gseq_length = gpos + (tmp_glyph - glyph) + 1;
29211 /* Calculate the total pixel width of all the glyphs between
29212 the beginning of the highlighted area and GLYPH. */
29213 total_pixel_width = 0;
29214 for (tmp_glyph = glyph - gpos; tmp_glyph != glyph; tmp_glyph++)
29215 total_pixel_width += tmp_glyph->pixel_width;
29217 /* Pre calculation of re-rendering position. Note: X is in
29218 column units here, after the call to mode_line_string or
29219 marginal_area_string. */
29220 hpos = x - gpos;
29221 vpos = (area == ON_MODE_LINE
29222 ? (w->current_matrix)->nrows - 1
29223 : 0);
29225 /* If GLYPH's position is included in the region that is
29226 already drawn in mouse face, we have nothing to do. */
29227 if ( EQ (window, hlinfo->mouse_face_window)
29228 && (!row->reversed_p
29229 ? (hlinfo->mouse_face_beg_col <= hpos
29230 && hpos < hlinfo->mouse_face_end_col)
29231 /* In R2L rows we swap BEG and END, see below. */
29232 : (hlinfo->mouse_face_end_col <= hpos
29233 && hpos < hlinfo->mouse_face_beg_col))
29234 && hlinfo->mouse_face_beg_row == vpos )
29235 return;
29237 if (clear_mouse_face (hlinfo))
29238 cursor = No_Cursor;
29240 if (!row->reversed_p)
29242 hlinfo->mouse_face_beg_col = hpos;
29243 hlinfo->mouse_face_beg_x = original_x_pixel
29244 - (total_pixel_width + dx);
29245 hlinfo->mouse_face_end_col = hpos + gseq_length;
29246 hlinfo->mouse_face_end_x = 0;
29248 else
29250 /* In R2L rows, show_mouse_face expects BEG and END
29251 coordinates to be swapped. */
29252 hlinfo->mouse_face_end_col = hpos;
29253 hlinfo->mouse_face_end_x = original_x_pixel
29254 - (total_pixel_width + dx);
29255 hlinfo->mouse_face_beg_col = hpos + gseq_length;
29256 hlinfo->mouse_face_beg_x = 0;
29259 hlinfo->mouse_face_beg_row = vpos;
29260 hlinfo->mouse_face_end_row = hlinfo->mouse_face_beg_row;
29261 hlinfo->mouse_face_past_end = false;
29262 hlinfo->mouse_face_window = window;
29264 hlinfo->mouse_face_face_id = face_at_string_position (w, string,
29265 charpos,
29266 0, &ignore,
29267 glyph->face_id,
29268 true);
29269 show_mouse_face (hlinfo, DRAW_MOUSE_FACE);
29271 if (NILP (pointer))
29272 pointer = Qhand;
29274 else if ((area == ON_MODE_LINE) || (area == ON_HEADER_LINE))
29275 clear_mouse_face (hlinfo);
29277 #ifdef HAVE_WINDOW_SYSTEM
29278 if (FRAME_WINDOW_P (f))
29279 define_frame_cursor1 (f, cursor, pointer);
29280 #endif
29284 /* EXPORT:
29285 Take proper action when the mouse has moved to position X, Y on
29286 frame F with regards to highlighting portions of display that have
29287 mouse-face properties. Also de-highlight portions of display where
29288 the mouse was before, set the mouse pointer shape as appropriate
29289 for the mouse coordinates, and activate help echo (tooltips).
29290 X and Y can be negative or out of range. */
29292 void
29293 note_mouse_highlight (struct frame *f, int x, int y)
29295 Mouse_HLInfo *hlinfo = MOUSE_HL_INFO (f);
29296 enum window_part part = ON_NOTHING;
29297 Lisp_Object window;
29298 struct window *w;
29299 Cursor cursor = No_Cursor;
29300 Lisp_Object pointer = Qnil; /* Takes precedence over cursor! */
29301 struct buffer *b;
29303 /* When a menu is active, don't highlight because this looks odd. */
29304 #if defined (USE_X_TOOLKIT) || defined (USE_GTK) || defined (HAVE_NS) || defined (MSDOS)
29305 if (popup_activated ())
29306 return;
29307 #endif
29309 if (!f->glyphs_initialized_p
29310 || f->pointer_invisible)
29311 return;
29313 hlinfo->mouse_face_mouse_x = x;
29314 hlinfo->mouse_face_mouse_y = y;
29315 hlinfo->mouse_face_mouse_frame = f;
29317 if (hlinfo->mouse_face_defer)
29318 return;
29320 /* Which window is that in? */
29321 window = window_from_coordinates (f, x, y, &part, true);
29323 /* If displaying active text in another window, clear that. */
29324 if (! EQ (window, hlinfo->mouse_face_window)
29325 /* Also clear if we move out of text area in same window. */
29326 || (!NILP (hlinfo->mouse_face_window)
29327 && !NILP (window)
29328 && part != ON_TEXT
29329 && part != ON_MODE_LINE
29330 && part != ON_HEADER_LINE))
29331 clear_mouse_face (hlinfo);
29333 /* Not on a window -> return. */
29334 if (!WINDOWP (window))
29335 return;
29337 /* Reset help_echo_string. It will get recomputed below. */
29338 help_echo_string = Qnil;
29340 /* Convert to window-relative pixel coordinates. */
29341 w = XWINDOW (window);
29342 frame_to_window_pixel_xy (w, &x, &y);
29344 #if defined (HAVE_WINDOW_SYSTEM) && ! defined (USE_GTK) && ! defined (HAVE_NS)
29345 /* Handle tool-bar window differently since it doesn't display a
29346 buffer. */
29347 if (EQ (window, f->tool_bar_window))
29349 note_tool_bar_highlight (f, x, y);
29350 return;
29352 #endif
29354 /* Mouse is on the mode, header line or margin? */
29355 if (part == ON_MODE_LINE || part == ON_HEADER_LINE
29356 || part == ON_LEFT_MARGIN || part == ON_RIGHT_MARGIN)
29358 note_mode_line_or_margin_highlight (window, x, y, part);
29360 #ifdef HAVE_WINDOW_SYSTEM
29361 if (part == ON_LEFT_MARGIN || part == ON_RIGHT_MARGIN)
29363 cursor = FRAME_X_OUTPUT (f)->nontext_cursor;
29364 /* Show non-text cursor (Bug#16647). */
29365 goto set_cursor;
29367 else
29368 #endif
29369 return;
29372 #ifdef HAVE_WINDOW_SYSTEM
29373 if (part == ON_VERTICAL_BORDER)
29375 cursor = FRAME_X_OUTPUT (f)->horizontal_drag_cursor;
29376 help_echo_string = build_string ("drag-mouse-1: resize");
29378 else if (part == ON_RIGHT_DIVIDER)
29380 cursor = FRAME_X_OUTPUT (f)->horizontal_drag_cursor;
29381 help_echo_string = build_string ("drag-mouse-1: resize");
29383 else if (part == ON_BOTTOM_DIVIDER)
29384 if (! WINDOW_BOTTOMMOST_P (w)
29385 || minibuf_level
29386 || NILP (Vresize_mini_windows))
29388 cursor = FRAME_X_OUTPUT (f)->vertical_drag_cursor;
29389 help_echo_string = build_string ("drag-mouse-1: resize");
29391 else
29392 cursor = FRAME_X_OUTPUT (f)->nontext_cursor;
29393 else if (part == ON_LEFT_FRINGE || part == ON_RIGHT_FRINGE
29394 || part == ON_VERTICAL_SCROLL_BAR
29395 || part == ON_HORIZONTAL_SCROLL_BAR)
29396 cursor = FRAME_X_OUTPUT (f)->nontext_cursor;
29397 else
29398 cursor = FRAME_X_OUTPUT (f)->text_cursor;
29399 #endif
29401 /* Are we in a window whose display is up to date?
29402 And verify the buffer's text has not changed. */
29403 b = XBUFFER (w->contents);
29404 if (part == ON_TEXT && w->window_end_valid && !window_outdated (w))
29406 int hpos, vpos, dx, dy, area = LAST_AREA;
29407 ptrdiff_t pos;
29408 struct glyph *glyph;
29409 Lisp_Object object;
29410 Lisp_Object mouse_face = Qnil, position;
29411 Lisp_Object *overlay_vec = NULL;
29412 ptrdiff_t i, noverlays;
29413 struct buffer *obuf;
29414 ptrdiff_t obegv, ozv;
29415 bool same_region;
29417 /* Find the glyph under X/Y. */
29418 glyph = x_y_to_hpos_vpos (w, x, y, &hpos, &vpos, &dx, &dy, &area);
29420 #ifdef HAVE_WINDOW_SYSTEM
29421 /* Look for :pointer property on image. */
29422 if (glyph != NULL && glyph->type == IMAGE_GLYPH)
29424 struct image *img = IMAGE_FROM_ID (f, glyph->u.img_id);
29425 if (img != NULL && IMAGEP (img->spec))
29427 Lisp_Object image_map, hotspot;
29428 if ((image_map = Fplist_get (XCDR (img->spec), QCmap),
29429 !NILP (image_map))
29430 && (hotspot = find_hot_spot (image_map,
29431 glyph->slice.img.x + dx,
29432 glyph->slice.img.y + dy),
29433 CONSP (hotspot))
29434 && (hotspot = XCDR (hotspot), CONSP (hotspot)))
29436 Lisp_Object plist;
29438 /* Could check XCAR (hotspot) to see if we enter/leave
29439 this hot-spot.
29440 If so, we could look for mouse-enter, mouse-leave
29441 properties in PLIST (and do something...). */
29442 hotspot = XCDR (hotspot);
29443 if (CONSP (hotspot)
29444 && (plist = XCAR (hotspot), CONSP (plist)))
29446 pointer = Fplist_get (plist, Qpointer);
29447 if (NILP (pointer))
29448 pointer = Qhand;
29449 help_echo_string = Fplist_get (plist, Qhelp_echo);
29450 if (!NILP (help_echo_string))
29452 help_echo_window = window;
29453 help_echo_object = glyph->object;
29454 help_echo_pos = glyph->charpos;
29458 if (NILP (pointer))
29459 pointer = Fplist_get (XCDR (img->spec), QCpointer);
29462 #endif /* HAVE_WINDOW_SYSTEM */
29464 /* Clear mouse face if X/Y not over text. */
29465 if (glyph == NULL
29466 || area != TEXT_AREA
29467 || !MATRIX_ROW_DISPLAYS_TEXT_P (MATRIX_ROW (w->current_matrix, vpos))
29468 /* Glyph's OBJECT is nil for glyphs inserted by the
29469 display engine for its internal purposes, like truncation
29470 and continuation glyphs and blanks beyond the end of
29471 line's text on text terminals. If we are over such a
29472 glyph, we are not over any text. */
29473 || NILP (glyph->object)
29474 /* R2L rows have a stretch glyph at their front, which
29475 stands for no text, whereas L2R rows have no glyphs at
29476 all beyond the end of text. Treat such stretch glyphs
29477 like we do with NULL glyphs in L2R rows. */
29478 || (MATRIX_ROW (w->current_matrix, vpos)->reversed_p
29479 && glyph == MATRIX_ROW_GLYPH_START (w->current_matrix, vpos)
29480 && glyph->type == STRETCH_GLYPH
29481 && glyph->avoid_cursor_p))
29483 if (clear_mouse_face (hlinfo))
29484 cursor = No_Cursor;
29485 #ifdef HAVE_WINDOW_SYSTEM
29486 if (FRAME_WINDOW_P (f) && NILP (pointer))
29488 if (area != TEXT_AREA)
29489 cursor = FRAME_X_OUTPUT (f)->nontext_cursor;
29490 else
29491 pointer = Vvoid_text_area_pointer;
29493 #endif
29494 goto set_cursor;
29497 pos = glyph->charpos;
29498 object = glyph->object;
29499 if (!STRINGP (object) && !BUFFERP (object))
29500 goto set_cursor;
29502 /* If we get an out-of-range value, return now; avoid an error. */
29503 if (BUFFERP (object) && pos > BUF_Z (b))
29504 goto set_cursor;
29506 /* Make the window's buffer temporarily current for
29507 overlays_at and compute_char_face. */
29508 obuf = current_buffer;
29509 current_buffer = b;
29510 obegv = BEGV;
29511 ozv = ZV;
29512 BEGV = BEG;
29513 ZV = Z;
29515 /* Is this char mouse-active or does it have help-echo? */
29516 position = make_number (pos);
29518 USE_SAFE_ALLOCA;
29520 if (BUFFERP (object))
29522 /* Put all the overlays we want in a vector in overlay_vec. */
29523 GET_OVERLAYS_AT (pos, overlay_vec, noverlays, NULL, false);
29524 /* Sort overlays into increasing priority order. */
29525 noverlays = sort_overlays (overlay_vec, noverlays, w);
29527 else
29528 noverlays = 0;
29530 if (NILP (Vmouse_highlight))
29532 clear_mouse_face (hlinfo);
29533 goto check_help_echo;
29536 same_region = coords_in_mouse_face_p (w, hpos, vpos);
29538 if (same_region)
29539 cursor = No_Cursor;
29541 /* Check mouse-face highlighting. */
29542 if (! same_region
29543 /* If there exists an overlay with mouse-face overlapping
29544 the one we are currently highlighting, we have to
29545 check if we enter the overlapping overlay, and then
29546 highlight only that. */
29547 || (OVERLAYP (hlinfo->mouse_face_overlay)
29548 && mouse_face_overlay_overlaps (hlinfo->mouse_face_overlay)))
29550 /* Find the highest priority overlay with a mouse-face. */
29551 Lisp_Object overlay = Qnil;
29552 for (i = noverlays - 1; i >= 0 && NILP (overlay); --i)
29554 mouse_face = Foverlay_get (overlay_vec[i], Qmouse_face);
29555 if (!NILP (mouse_face))
29556 overlay = overlay_vec[i];
29559 /* If we're highlighting the same overlay as before, there's
29560 no need to do that again. */
29561 if (!NILP (overlay) && EQ (overlay, hlinfo->mouse_face_overlay))
29562 goto check_help_echo;
29563 hlinfo->mouse_face_overlay = overlay;
29565 /* Clear the display of the old active region, if any. */
29566 if (clear_mouse_face (hlinfo))
29567 cursor = No_Cursor;
29569 /* If no overlay applies, get a text property. */
29570 if (NILP (overlay))
29571 mouse_face = Fget_text_property (position, Qmouse_face, object);
29573 /* Next, compute the bounds of the mouse highlighting and
29574 display it. */
29575 if (!NILP (mouse_face) && STRINGP (object))
29577 /* The mouse-highlighting comes from a display string
29578 with a mouse-face. */
29579 Lisp_Object s, e;
29580 ptrdiff_t ignore;
29582 s = Fprevious_single_property_change
29583 (make_number (pos + 1), Qmouse_face, object, Qnil);
29584 e = Fnext_single_property_change
29585 (position, Qmouse_face, object, Qnil);
29586 if (NILP (s))
29587 s = make_number (0);
29588 if (NILP (e))
29589 e = make_number (SCHARS (object));
29590 mouse_face_from_string_pos (w, hlinfo, object,
29591 XINT (s), XINT (e));
29592 hlinfo->mouse_face_past_end = false;
29593 hlinfo->mouse_face_window = window;
29594 hlinfo->mouse_face_face_id
29595 = face_at_string_position (w, object, pos, 0, &ignore,
29596 glyph->face_id, true);
29597 show_mouse_face (hlinfo, DRAW_MOUSE_FACE);
29598 cursor = No_Cursor;
29600 else
29602 /* The mouse-highlighting, if any, comes from an overlay
29603 or text property in the buffer. */
29604 Lisp_Object buffer IF_LINT (= Qnil);
29605 Lisp_Object disp_string IF_LINT (= Qnil);
29607 if (STRINGP (object))
29609 /* If we are on a display string with no mouse-face,
29610 check if the text under it has one. */
29611 struct glyph_row *r = MATRIX_ROW (w->current_matrix, vpos);
29612 ptrdiff_t start = MATRIX_ROW_START_CHARPOS (r);
29613 pos = string_buffer_position (object, start);
29614 if (pos > 0)
29616 mouse_face = get_char_property_and_overlay
29617 (make_number (pos), Qmouse_face, w->contents, &overlay);
29618 buffer = w->contents;
29619 disp_string = object;
29622 else
29624 buffer = object;
29625 disp_string = Qnil;
29628 if (!NILP (mouse_face))
29630 Lisp_Object before, after;
29631 Lisp_Object before_string, after_string;
29632 /* To correctly find the limits of mouse highlight
29633 in a bidi-reordered buffer, we must not use the
29634 optimization of limiting the search in
29635 previous-single-property-change and
29636 next-single-property-change, because
29637 rows_from_pos_range needs the real start and end
29638 positions to DTRT in this case. That's because
29639 the first row visible in a window does not
29640 necessarily display the character whose position
29641 is the smallest. */
29642 Lisp_Object lim1
29643 = NILP (BVAR (XBUFFER (buffer), bidi_display_reordering))
29644 ? Fmarker_position (w->start)
29645 : Qnil;
29646 Lisp_Object lim2
29647 = NILP (BVAR (XBUFFER (buffer), bidi_display_reordering))
29648 ? make_number (BUF_Z (XBUFFER (buffer))
29649 - w->window_end_pos)
29650 : Qnil;
29652 if (NILP (overlay))
29654 /* Handle the text property case. */
29655 before = Fprevious_single_property_change
29656 (make_number (pos + 1), Qmouse_face, buffer, lim1);
29657 after = Fnext_single_property_change
29658 (make_number (pos), Qmouse_face, buffer, lim2);
29659 before_string = after_string = Qnil;
29661 else
29663 /* Handle the overlay case. */
29664 before = Foverlay_start (overlay);
29665 after = Foverlay_end (overlay);
29666 before_string = Foverlay_get (overlay, Qbefore_string);
29667 after_string = Foverlay_get (overlay, Qafter_string);
29669 if (!STRINGP (before_string)) before_string = Qnil;
29670 if (!STRINGP (after_string)) after_string = Qnil;
29673 mouse_face_from_buffer_pos (window, hlinfo, pos,
29674 NILP (before)
29676 : XFASTINT (before),
29677 NILP (after)
29678 ? BUF_Z (XBUFFER (buffer))
29679 : XFASTINT (after),
29680 before_string, after_string,
29681 disp_string);
29682 cursor = No_Cursor;
29687 check_help_echo:
29689 /* Look for a `help-echo' property. */
29690 if (NILP (help_echo_string)) {
29691 Lisp_Object help, overlay;
29693 /* Check overlays first. */
29694 help = overlay = Qnil;
29695 for (i = noverlays - 1; i >= 0 && NILP (help); --i)
29697 overlay = overlay_vec[i];
29698 help = Foverlay_get (overlay, Qhelp_echo);
29701 if (!NILP (help))
29703 help_echo_string = help;
29704 help_echo_window = window;
29705 help_echo_object = overlay;
29706 help_echo_pos = pos;
29708 else
29710 Lisp_Object obj = glyph->object;
29711 ptrdiff_t charpos = glyph->charpos;
29713 /* Try text properties. */
29714 if (STRINGP (obj)
29715 && charpos >= 0
29716 && charpos < SCHARS (obj))
29718 help = Fget_text_property (make_number (charpos),
29719 Qhelp_echo, obj);
29720 if (NILP (help))
29722 /* If the string itself doesn't specify a help-echo,
29723 see if the buffer text ``under'' it does. */
29724 struct glyph_row *r
29725 = MATRIX_ROW (w->current_matrix, vpos);
29726 ptrdiff_t start = MATRIX_ROW_START_CHARPOS (r);
29727 ptrdiff_t p = string_buffer_position (obj, start);
29728 if (p > 0)
29730 help = Fget_char_property (make_number (p),
29731 Qhelp_echo, w->contents);
29732 if (!NILP (help))
29734 charpos = p;
29735 obj = w->contents;
29740 else if (BUFFERP (obj)
29741 && charpos >= BEGV
29742 && charpos < ZV)
29743 help = Fget_text_property (make_number (charpos), Qhelp_echo,
29744 obj);
29746 if (!NILP (help))
29748 help_echo_string = help;
29749 help_echo_window = window;
29750 help_echo_object = obj;
29751 help_echo_pos = charpos;
29756 #ifdef HAVE_WINDOW_SYSTEM
29757 /* Look for a `pointer' property. */
29758 if (FRAME_WINDOW_P (f) && NILP (pointer))
29760 /* Check overlays first. */
29761 for (i = noverlays - 1; i >= 0 && NILP (pointer); --i)
29762 pointer = Foverlay_get (overlay_vec[i], Qpointer);
29764 if (NILP (pointer))
29766 Lisp_Object obj = glyph->object;
29767 ptrdiff_t charpos = glyph->charpos;
29769 /* Try text properties. */
29770 if (STRINGP (obj)
29771 && charpos >= 0
29772 && charpos < SCHARS (obj))
29774 pointer = Fget_text_property (make_number (charpos),
29775 Qpointer, obj);
29776 if (NILP (pointer))
29778 /* If the string itself doesn't specify a pointer,
29779 see if the buffer text ``under'' it does. */
29780 struct glyph_row *r
29781 = MATRIX_ROW (w->current_matrix, vpos);
29782 ptrdiff_t start = MATRIX_ROW_START_CHARPOS (r);
29783 ptrdiff_t p = string_buffer_position (obj, start);
29784 if (p > 0)
29785 pointer = Fget_char_property (make_number (p),
29786 Qpointer, w->contents);
29789 else if (BUFFERP (obj)
29790 && charpos >= BEGV
29791 && charpos < ZV)
29792 pointer = Fget_text_property (make_number (charpos),
29793 Qpointer, obj);
29796 #endif /* HAVE_WINDOW_SYSTEM */
29798 BEGV = obegv;
29799 ZV = ozv;
29800 current_buffer = obuf;
29801 SAFE_FREE ();
29804 set_cursor:
29806 #ifdef HAVE_WINDOW_SYSTEM
29807 if (FRAME_WINDOW_P (f))
29808 define_frame_cursor1 (f, cursor, pointer);
29809 #else
29810 /* This is here to prevent a compiler error, about "label at end of
29811 compound statement". */
29812 return;
29813 #endif
29817 /* EXPORT for RIF:
29818 Clear any mouse-face on window W. This function is part of the
29819 redisplay interface, and is called from try_window_id and similar
29820 functions to ensure the mouse-highlight is off. */
29822 void
29823 x_clear_window_mouse_face (struct window *w)
29825 Mouse_HLInfo *hlinfo = MOUSE_HL_INFO (XFRAME (w->frame));
29826 Lisp_Object window;
29828 block_input ();
29829 XSETWINDOW (window, w);
29830 if (EQ (window, hlinfo->mouse_face_window))
29831 clear_mouse_face (hlinfo);
29832 unblock_input ();
29836 /* EXPORT:
29837 Just discard the mouse face information for frame F, if any.
29838 This is used when the size of F is changed. */
29840 void
29841 cancel_mouse_face (struct frame *f)
29843 Lisp_Object window;
29844 Mouse_HLInfo *hlinfo = MOUSE_HL_INFO (f);
29846 window = hlinfo->mouse_face_window;
29847 if (! NILP (window) && XFRAME (XWINDOW (window)->frame) == f)
29848 reset_mouse_highlight (hlinfo);
29853 /***********************************************************************
29854 Exposure Events
29855 ***********************************************************************/
29857 #ifdef HAVE_WINDOW_SYSTEM
29859 /* Redraw the part of glyph row area AREA of glyph row ROW on window W
29860 which intersects rectangle R. R is in window-relative coordinates. */
29862 static void
29863 expose_area (struct window *w, struct glyph_row *row, XRectangle *r,
29864 enum glyph_row_area area)
29866 struct glyph *first = row->glyphs[area];
29867 struct glyph *end = row->glyphs[area] + row->used[area];
29868 struct glyph *last;
29869 int first_x, start_x, x;
29871 if (area == TEXT_AREA && row->fill_line_p)
29872 /* If row extends face to end of line write the whole line. */
29873 draw_glyphs (w, 0, row, area,
29874 0, row->used[area],
29875 DRAW_NORMAL_TEXT, 0);
29876 else
29878 /* Set START_X to the window-relative start position for drawing glyphs of
29879 AREA. The first glyph of the text area can be partially visible.
29880 The first glyphs of other areas cannot. */
29881 start_x = window_box_left_offset (w, area);
29882 x = start_x;
29883 if (area == TEXT_AREA)
29884 x += row->x;
29886 /* Find the first glyph that must be redrawn. */
29887 while (first < end
29888 && x + first->pixel_width < r->x)
29890 x += first->pixel_width;
29891 ++first;
29894 /* Find the last one. */
29895 last = first;
29896 first_x = x;
29897 while (last < end
29898 && x < r->x + r->width)
29900 x += last->pixel_width;
29901 ++last;
29904 /* Repaint. */
29905 if (last > first)
29906 draw_glyphs (w, first_x - start_x, row, area,
29907 first - row->glyphs[area], last - row->glyphs[area],
29908 DRAW_NORMAL_TEXT, 0);
29913 /* Redraw the parts of the glyph row ROW on window W intersecting
29914 rectangle R. R is in window-relative coordinates. Value is
29915 true if mouse-face was overwritten. */
29917 static bool
29918 expose_line (struct window *w, struct glyph_row *row, XRectangle *r)
29920 eassert (row->enabled_p);
29922 if (row->mode_line_p || w->pseudo_window_p)
29923 draw_glyphs (w, 0, row, TEXT_AREA,
29924 0, row->used[TEXT_AREA],
29925 DRAW_NORMAL_TEXT, 0);
29926 else
29928 if (row->used[LEFT_MARGIN_AREA])
29929 expose_area (w, row, r, LEFT_MARGIN_AREA);
29930 if (row->used[TEXT_AREA])
29931 expose_area (w, row, r, TEXT_AREA);
29932 if (row->used[RIGHT_MARGIN_AREA])
29933 expose_area (w, row, r, RIGHT_MARGIN_AREA);
29934 draw_row_fringe_bitmaps (w, row);
29937 return row->mouse_face_p;
29941 /* Redraw those parts of glyphs rows during expose event handling that
29942 overlap other rows. Redrawing of an exposed line writes over parts
29943 of lines overlapping that exposed line; this function fixes that.
29945 W is the window being exposed. FIRST_OVERLAPPING_ROW is the first
29946 row in W's current matrix that is exposed and overlaps other rows.
29947 LAST_OVERLAPPING_ROW is the last such row. */
29949 static void
29950 expose_overlaps (struct window *w,
29951 struct glyph_row *first_overlapping_row,
29952 struct glyph_row *last_overlapping_row,
29953 XRectangle *r)
29955 struct glyph_row *row;
29957 for (row = first_overlapping_row; row <= last_overlapping_row; ++row)
29958 if (row->overlapping_p)
29960 eassert (row->enabled_p && !row->mode_line_p);
29962 row->clip = r;
29963 if (row->used[LEFT_MARGIN_AREA])
29964 x_fix_overlapping_area (w, row, LEFT_MARGIN_AREA, OVERLAPS_BOTH);
29966 if (row->used[TEXT_AREA])
29967 x_fix_overlapping_area (w, row, TEXT_AREA, OVERLAPS_BOTH);
29969 if (row->used[RIGHT_MARGIN_AREA])
29970 x_fix_overlapping_area (w, row, RIGHT_MARGIN_AREA, OVERLAPS_BOTH);
29971 row->clip = NULL;
29976 /* Return true if W's cursor intersects rectangle R. */
29978 static bool
29979 phys_cursor_in_rect_p (struct window *w, XRectangle *r)
29981 XRectangle cr, result;
29982 struct glyph *cursor_glyph;
29983 struct glyph_row *row;
29985 if (w->phys_cursor.vpos >= 0
29986 && w->phys_cursor.vpos < w->current_matrix->nrows
29987 && (row = MATRIX_ROW (w->current_matrix, w->phys_cursor.vpos),
29988 row->enabled_p)
29989 && row->cursor_in_fringe_p)
29991 /* Cursor is in the fringe. */
29992 cr.x = window_box_right_offset (w,
29993 (WINDOW_HAS_FRINGES_OUTSIDE_MARGINS (w)
29994 ? RIGHT_MARGIN_AREA
29995 : TEXT_AREA));
29996 cr.y = row->y;
29997 cr.width = WINDOW_RIGHT_FRINGE_WIDTH (w);
29998 cr.height = row->height;
29999 return x_intersect_rectangles (&cr, r, &result);
30002 cursor_glyph = get_phys_cursor_glyph (w);
30003 if (cursor_glyph)
30005 /* r is relative to W's box, but w->phys_cursor.x is relative
30006 to left edge of W's TEXT area. Adjust it. */
30007 cr.x = window_box_left_offset (w, TEXT_AREA) + w->phys_cursor.x;
30008 cr.y = w->phys_cursor.y;
30009 cr.width = cursor_glyph->pixel_width;
30010 cr.height = w->phys_cursor_height;
30011 /* ++KFS: W32 version used W32-specific IntersectRect here, but
30012 I assume the effect is the same -- and this is portable. */
30013 return x_intersect_rectangles (&cr, r, &result);
30015 /* If we don't understand the format, pretend we're not in the hot-spot. */
30016 return false;
30020 /* EXPORT:
30021 Draw a vertical window border to the right of window W if W doesn't
30022 have vertical scroll bars. */
30024 void
30025 x_draw_vertical_border (struct window *w)
30027 struct frame *f = XFRAME (WINDOW_FRAME (w));
30029 /* We could do better, if we knew what type of scroll-bar the adjacent
30030 windows (on either side) have... But we don't :-(
30031 However, I think this works ok. ++KFS 2003-04-25 */
30033 /* Redraw borders between horizontally adjacent windows. Don't
30034 do it for frames with vertical scroll bars because either the
30035 right scroll bar of a window, or the left scroll bar of its
30036 neighbor will suffice as a border. */
30037 if (FRAME_HAS_VERTICAL_SCROLL_BARS (f) || FRAME_RIGHT_DIVIDER_WIDTH (f))
30038 return;
30040 /* Note: It is necessary to redraw both the left and the right
30041 borders, for when only this single window W is being
30042 redisplayed. */
30043 if (!WINDOW_RIGHTMOST_P (w)
30044 && !WINDOW_HAS_VERTICAL_SCROLL_BAR_ON_RIGHT (w))
30046 int x0, x1, y0, y1;
30048 window_box_edges (w, &x0, &y0, &x1, &y1);
30049 y1 -= 1;
30051 if (WINDOW_LEFT_FRINGE_WIDTH (w) == 0)
30052 x1 -= 1;
30054 FRAME_RIF (f)->draw_vertical_window_border (w, x1, y0, y1);
30057 if (!WINDOW_LEFTMOST_P (w)
30058 && !WINDOW_HAS_VERTICAL_SCROLL_BAR_ON_LEFT (w))
30060 int x0, x1, y0, y1;
30062 window_box_edges (w, &x0, &y0, &x1, &y1);
30063 y1 -= 1;
30065 if (WINDOW_LEFT_FRINGE_WIDTH (w) == 0)
30066 x0 -= 1;
30068 FRAME_RIF (f)->draw_vertical_window_border (w, x0, y0, y1);
30073 /* Draw window dividers for window W. */
30075 void
30076 x_draw_right_divider (struct window *w)
30078 struct frame *f = WINDOW_XFRAME (w);
30080 if (w->mini || w->pseudo_window_p)
30081 return;
30082 else if (WINDOW_RIGHT_DIVIDER_WIDTH (w))
30084 int x0 = WINDOW_RIGHT_EDGE_X (w) - WINDOW_RIGHT_DIVIDER_WIDTH (w);
30085 int x1 = WINDOW_RIGHT_EDGE_X (w);
30086 int y0 = WINDOW_TOP_EDGE_Y (w);
30087 /* The bottom divider prevails. */
30088 int y1 = WINDOW_BOTTOM_EDGE_Y (w) - WINDOW_BOTTOM_DIVIDER_WIDTH (w);
30090 FRAME_RIF (f)->draw_window_divider (w, x0, x1, y0, y1);
30094 static void
30095 x_draw_bottom_divider (struct window *w)
30097 struct frame *f = XFRAME (WINDOW_FRAME (w));
30099 if (w->mini || w->pseudo_window_p)
30100 return;
30101 else if (WINDOW_BOTTOM_DIVIDER_WIDTH (w))
30103 int x0 = WINDOW_LEFT_EDGE_X (w);
30104 int x1 = WINDOW_RIGHT_EDGE_X (w);
30105 int y0 = WINDOW_BOTTOM_EDGE_Y (w) - WINDOW_BOTTOM_DIVIDER_WIDTH (w);
30106 int y1 = WINDOW_BOTTOM_EDGE_Y (w);
30108 FRAME_RIF (f)->draw_window_divider (w, x0, x1, y0, y1);
30112 /* Redraw the part of window W intersection rectangle FR. Pixel
30113 coordinates in FR are frame-relative. Call this function with
30114 input blocked. Value is true if the exposure overwrites
30115 mouse-face. */
30117 static bool
30118 expose_window (struct window *w, XRectangle *fr)
30120 struct frame *f = XFRAME (w->frame);
30121 XRectangle wr, r;
30122 bool mouse_face_overwritten_p = false;
30124 /* If window is not yet fully initialized, do nothing. This can
30125 happen when toolkit scroll bars are used and a window is split.
30126 Reconfiguring the scroll bar will generate an expose for a newly
30127 created window. */
30128 if (w->current_matrix == NULL)
30129 return false;
30131 /* When we're currently updating the window, display and current
30132 matrix usually don't agree. Arrange for a thorough display
30133 later. */
30134 if (w->must_be_updated_p)
30136 SET_FRAME_GARBAGED (f);
30137 return false;
30140 /* Frame-relative pixel rectangle of W. */
30141 wr.x = WINDOW_LEFT_EDGE_X (w);
30142 wr.y = WINDOW_TOP_EDGE_Y (w);
30143 wr.width = WINDOW_PIXEL_WIDTH (w);
30144 wr.height = WINDOW_PIXEL_HEIGHT (w);
30146 if (x_intersect_rectangles (fr, &wr, &r))
30148 int yb = window_text_bottom_y (w);
30149 struct glyph_row *row;
30150 struct glyph_row *first_overlapping_row, *last_overlapping_row;
30152 TRACE ((stderr, "expose_window (%d, %d, %d, %d)\n",
30153 r.x, r.y, r.width, r.height));
30155 /* Convert to window coordinates. */
30156 r.x -= WINDOW_LEFT_EDGE_X (w);
30157 r.y -= WINDOW_TOP_EDGE_Y (w);
30159 /* Turn off the cursor. */
30160 bool cursor_cleared_p = (!w->pseudo_window_p
30161 && phys_cursor_in_rect_p (w, &r));
30162 if (cursor_cleared_p)
30163 x_clear_cursor (w);
30165 /* If the row containing the cursor extends face to end of line,
30166 then expose_area might overwrite the cursor outside the
30167 rectangle and thus notice_overwritten_cursor might clear
30168 w->phys_cursor_on_p. We remember the original value and
30169 check later if it is changed. */
30170 bool phys_cursor_on_p = w->phys_cursor_on_p;
30172 /* Update lines intersecting rectangle R. */
30173 first_overlapping_row = last_overlapping_row = NULL;
30174 for (row = w->current_matrix->rows;
30175 row->enabled_p;
30176 ++row)
30178 int y0 = row->y;
30179 int y1 = MATRIX_ROW_BOTTOM_Y (row);
30181 if ((y0 >= r.y && y0 < r.y + r.height)
30182 || (y1 > r.y && y1 < r.y + r.height)
30183 || (r.y >= y0 && r.y < y1)
30184 || (r.y + r.height > y0 && r.y + r.height < y1))
30186 /* A header line may be overlapping, but there is no need
30187 to fix overlapping areas for them. KFS 2005-02-12 */
30188 if (row->overlapping_p && !row->mode_line_p)
30190 if (first_overlapping_row == NULL)
30191 first_overlapping_row = row;
30192 last_overlapping_row = row;
30195 row->clip = fr;
30196 if (expose_line (w, row, &r))
30197 mouse_face_overwritten_p = true;
30198 row->clip = NULL;
30200 else if (row->overlapping_p)
30202 /* We must redraw a row overlapping the exposed area. */
30203 if (y0 < r.y
30204 ? y0 + row->phys_height > r.y
30205 : y0 + row->ascent - row->phys_ascent < r.y +r.height)
30207 if (first_overlapping_row == NULL)
30208 first_overlapping_row = row;
30209 last_overlapping_row = row;
30213 if (y1 >= yb)
30214 break;
30217 /* Display the mode line if there is one. */
30218 if (WINDOW_WANTS_MODELINE_P (w)
30219 && (row = MATRIX_MODE_LINE_ROW (w->current_matrix),
30220 row->enabled_p)
30221 && row->y < r.y + r.height)
30223 if (expose_line (w, row, &r))
30224 mouse_face_overwritten_p = true;
30227 if (!w->pseudo_window_p)
30229 /* Fix the display of overlapping rows. */
30230 if (first_overlapping_row)
30231 expose_overlaps (w, first_overlapping_row, last_overlapping_row,
30232 fr);
30234 /* Draw border between windows. */
30235 if (WINDOW_RIGHT_DIVIDER_WIDTH (w))
30236 x_draw_right_divider (w);
30237 else
30238 x_draw_vertical_border (w);
30240 if (WINDOW_BOTTOM_DIVIDER_WIDTH (w))
30241 x_draw_bottom_divider (w);
30243 /* Turn the cursor on again. */
30244 if (cursor_cleared_p
30245 || (phys_cursor_on_p && !w->phys_cursor_on_p))
30246 update_window_cursor (w, true);
30250 return mouse_face_overwritten_p;
30255 /* Redraw (parts) of all windows in the window tree rooted at W that
30256 intersect R. R contains frame pixel coordinates. Value is
30257 true if the exposure overwrites mouse-face. */
30259 static bool
30260 expose_window_tree (struct window *w, XRectangle *r)
30262 struct frame *f = XFRAME (w->frame);
30263 bool mouse_face_overwritten_p = false;
30265 while (w && !FRAME_GARBAGED_P (f))
30267 mouse_face_overwritten_p
30268 |= (WINDOWP (w->contents)
30269 ? expose_window_tree (XWINDOW (w->contents), r)
30270 : expose_window (w, r));
30272 w = NILP (w->next) ? NULL : XWINDOW (w->next);
30275 return mouse_face_overwritten_p;
30279 /* EXPORT:
30280 Redisplay an exposed area of frame F. X and Y are the upper-left
30281 corner of the exposed rectangle. W and H are width and height of
30282 the exposed area. All are pixel values. W or H zero means redraw
30283 the entire frame. */
30285 void
30286 expose_frame (struct frame *f, int x, int y, int w, int h)
30288 XRectangle r;
30289 bool mouse_face_overwritten_p = false;
30291 TRACE ((stderr, "expose_frame "));
30293 /* No need to redraw if frame will be redrawn soon. */
30294 if (FRAME_GARBAGED_P (f))
30296 TRACE ((stderr, " garbaged\n"));
30297 return;
30300 /* If basic faces haven't been realized yet, there is no point in
30301 trying to redraw anything. This can happen when we get an expose
30302 event while Emacs is starting, e.g. by moving another window. */
30303 if (FRAME_FACE_CACHE (f) == NULL
30304 || FRAME_FACE_CACHE (f)->used < BASIC_FACE_ID_SENTINEL)
30306 TRACE ((stderr, " no faces\n"));
30307 return;
30310 if (w == 0 || h == 0)
30312 r.x = r.y = 0;
30313 r.width = FRAME_TEXT_WIDTH (f);
30314 r.height = FRAME_TEXT_HEIGHT (f);
30316 else
30318 r.x = x;
30319 r.y = y;
30320 r.width = w;
30321 r.height = h;
30324 TRACE ((stderr, "(%d, %d, %d, %d)\n", r.x, r.y, r.width, r.height));
30325 mouse_face_overwritten_p = expose_window_tree (XWINDOW (f->root_window), &r);
30327 #if ! defined (USE_GTK) && ! defined (HAVE_NS)
30328 if (WINDOWP (f->tool_bar_window))
30329 mouse_face_overwritten_p
30330 |= expose_window (XWINDOW (f->tool_bar_window), &r);
30331 #endif
30333 #ifdef HAVE_X_WINDOWS
30334 #ifndef MSDOS
30335 #if ! defined (USE_X_TOOLKIT) && ! defined (USE_GTK)
30336 if (WINDOWP (f->menu_bar_window))
30337 mouse_face_overwritten_p
30338 |= expose_window (XWINDOW (f->menu_bar_window), &r);
30339 #endif /* not USE_X_TOOLKIT and not USE_GTK */
30340 #endif
30341 #endif
30343 /* Some window managers support a focus-follows-mouse style with
30344 delayed raising of frames. Imagine a partially obscured frame,
30345 and moving the mouse into partially obscured mouse-face on that
30346 frame. The visible part of the mouse-face will be highlighted,
30347 then the WM raises the obscured frame. With at least one WM, KDE
30348 2.1, Emacs is not getting any event for the raising of the frame
30349 (even tried with SubstructureRedirectMask), only Expose events.
30350 These expose events will draw text normally, i.e. not
30351 highlighted. Which means we must redo the highlight here.
30352 Subsume it under ``we love X''. --gerd 2001-08-15 */
30353 /* Included in Windows version because Windows most likely does not
30354 do the right thing if any third party tool offers
30355 focus-follows-mouse with delayed raise. --jason 2001-10-12 */
30356 if (mouse_face_overwritten_p && !FRAME_GARBAGED_P (f))
30358 Mouse_HLInfo *hlinfo = MOUSE_HL_INFO (f);
30359 if (f == hlinfo->mouse_face_mouse_frame)
30361 int mouse_x = hlinfo->mouse_face_mouse_x;
30362 int mouse_y = hlinfo->mouse_face_mouse_y;
30363 clear_mouse_face (hlinfo);
30364 note_mouse_highlight (f, mouse_x, mouse_y);
30370 /* EXPORT:
30371 Determine the intersection of two rectangles R1 and R2. Return
30372 the intersection in *RESULT. Value is true if RESULT is not
30373 empty. */
30375 bool
30376 x_intersect_rectangles (XRectangle *r1, XRectangle *r2, XRectangle *result)
30378 XRectangle *left, *right;
30379 XRectangle *upper, *lower;
30380 bool intersection_p = false;
30382 /* Rearrange so that R1 is the left-most rectangle. */
30383 if (r1->x < r2->x)
30384 left = r1, right = r2;
30385 else
30386 left = r2, right = r1;
30388 /* X0 of the intersection is right.x0, if this is inside R1,
30389 otherwise there is no intersection. */
30390 if (right->x <= left->x + left->width)
30392 result->x = right->x;
30394 /* The right end of the intersection is the minimum of
30395 the right ends of left and right. */
30396 result->width = (min (left->x + left->width, right->x + right->width)
30397 - result->x);
30399 /* Same game for Y. */
30400 if (r1->y < r2->y)
30401 upper = r1, lower = r2;
30402 else
30403 upper = r2, lower = r1;
30405 /* The upper end of the intersection is lower.y0, if this is inside
30406 of upper. Otherwise, there is no intersection. */
30407 if (lower->y <= upper->y + upper->height)
30409 result->y = lower->y;
30411 /* The lower end of the intersection is the minimum of the lower
30412 ends of upper and lower. */
30413 result->height = (min (lower->y + lower->height,
30414 upper->y + upper->height)
30415 - result->y);
30416 intersection_p = true;
30420 return intersection_p;
30423 #endif /* HAVE_WINDOW_SYSTEM */
30426 /***********************************************************************
30427 Initialization
30428 ***********************************************************************/
30430 void
30431 syms_of_xdisp (void)
30433 Vwith_echo_area_save_vector = Qnil;
30434 staticpro (&Vwith_echo_area_save_vector);
30436 Vmessage_stack = Qnil;
30437 staticpro (&Vmessage_stack);
30439 /* Non-nil means don't actually do any redisplay. */
30440 DEFSYM (Qinhibit_redisplay, "inhibit-redisplay");
30442 DEFSYM (Qredisplay_internal, "redisplay_internal (C function)");
30444 DEFVAR_BOOL("inhibit-message", inhibit_message,
30445 doc: /* Non-nil means calls to `message' are not displayed.
30446 They are still logged to the *Messages* buffer. */);
30447 inhibit_message = 0;
30449 message_dolog_marker1 = Fmake_marker ();
30450 staticpro (&message_dolog_marker1);
30451 message_dolog_marker2 = Fmake_marker ();
30452 staticpro (&message_dolog_marker2);
30453 message_dolog_marker3 = Fmake_marker ();
30454 staticpro (&message_dolog_marker3);
30456 #ifdef GLYPH_DEBUG
30457 defsubr (&Sdump_frame_glyph_matrix);
30458 defsubr (&Sdump_glyph_matrix);
30459 defsubr (&Sdump_glyph_row);
30460 defsubr (&Sdump_tool_bar_row);
30461 defsubr (&Strace_redisplay);
30462 defsubr (&Strace_to_stderr);
30463 #endif
30464 #ifdef HAVE_WINDOW_SYSTEM
30465 defsubr (&Stool_bar_height);
30466 defsubr (&Slookup_image_map);
30467 #endif
30468 defsubr (&Sline_pixel_height);
30469 defsubr (&Sformat_mode_line);
30470 defsubr (&Sinvisible_p);
30471 defsubr (&Scurrent_bidi_paragraph_direction);
30472 defsubr (&Swindow_text_pixel_size);
30473 defsubr (&Smove_point_visually);
30474 defsubr (&Sbidi_find_overridden_directionality);
30476 DEFSYM (Qmenu_bar_update_hook, "menu-bar-update-hook");
30477 DEFSYM (Qoverriding_terminal_local_map, "overriding-terminal-local-map");
30478 DEFSYM (Qoverriding_local_map, "overriding-local-map");
30479 DEFSYM (Qwindow_scroll_functions, "window-scroll-functions");
30480 DEFSYM (Qwindow_text_change_functions, "window-text-change-functions");
30481 DEFSYM (Qredisplay_end_trigger_functions, "redisplay-end-trigger-functions");
30482 DEFSYM (Qinhibit_point_motion_hooks, "inhibit-point-motion-hooks");
30483 DEFSYM (Qeval, "eval");
30484 DEFSYM (QCdata, ":data");
30486 /* Names of text properties relevant for redisplay. */
30487 DEFSYM (Qdisplay, "display");
30488 DEFSYM (Qspace_width, "space-width");
30489 DEFSYM (Qraise, "raise");
30490 DEFSYM (Qslice, "slice");
30491 DEFSYM (Qspace, "space");
30492 DEFSYM (Qmargin, "margin");
30493 DEFSYM (Qpointer, "pointer");
30494 DEFSYM (Qleft_margin, "left-margin");
30495 DEFSYM (Qright_margin, "right-margin");
30496 DEFSYM (Qcenter, "center");
30497 DEFSYM (Qline_height, "line-height");
30498 DEFSYM (QCalign_to, ":align-to");
30499 DEFSYM (QCrelative_width, ":relative-width");
30500 DEFSYM (QCrelative_height, ":relative-height");
30501 DEFSYM (QCeval, ":eval");
30502 DEFSYM (QCpropertize, ":propertize");
30503 DEFSYM (QCfile, ":file");
30504 DEFSYM (Qfontified, "fontified");
30505 DEFSYM (Qfontification_functions, "fontification-functions");
30507 /* Name of the face used to highlight trailing whitespace. */
30508 DEFSYM (Qtrailing_whitespace, "trailing-whitespace");
30510 /* Name and number of the face used to highlight escape glyphs. */
30511 DEFSYM (Qescape_glyph, "escape-glyph");
30513 /* Name and number of the face used to highlight non-breaking spaces. */
30514 DEFSYM (Qnobreak_space, "nobreak-space");
30516 /* The symbol 'image' which is the car of the lists used to represent
30517 images in Lisp. Also a tool bar style. */
30518 DEFSYM (Qimage, "image");
30520 /* Tool bar styles. */
30521 DEFSYM (Qtext, "text");
30522 DEFSYM (Qboth, "both");
30523 DEFSYM (Qboth_horiz, "both-horiz");
30524 DEFSYM (Qtext_image_horiz, "text-image-horiz");
30526 /* The image map types. */
30527 DEFSYM (QCmap, ":map");
30528 DEFSYM (QCpointer, ":pointer");
30529 DEFSYM (Qrect, "rect");
30530 DEFSYM (Qcircle, "circle");
30531 DEFSYM (Qpoly, "poly");
30533 /* The symbol `inhibit-menubar-update' and its DEFVAR_BOOL variable. */
30534 DEFSYM (Qinhibit_menubar_update, "inhibit-menubar-update");
30535 DEFSYM (Qmessage_truncate_lines, "message-truncate-lines");
30537 DEFSYM (Qgrow_only, "grow-only");
30538 DEFSYM (Qinhibit_eval_during_redisplay, "inhibit-eval-during-redisplay");
30539 DEFSYM (Qposition, "position");
30540 DEFSYM (Qbuffer_position, "buffer-position");
30541 DEFSYM (Qobject, "object");
30543 /* Cursor shapes. */
30544 DEFSYM (Qbar, "bar");
30545 DEFSYM (Qhbar, "hbar");
30546 DEFSYM (Qbox, "box");
30547 DEFSYM (Qhollow, "hollow");
30549 /* Pointer shapes. */
30550 DEFSYM (Qhand, "hand");
30551 DEFSYM (Qarrow, "arrow");
30552 /* also Qtext */
30554 DEFSYM (Qinhibit_free_realized_faces, "inhibit-free-realized-faces");
30556 list_of_error = list1 (list2 (Qerror, Qvoid_variable));
30557 staticpro (&list_of_error);
30559 /* Values of those variables at last redisplay are stored as
30560 properties on 'overlay-arrow-position' symbol. However, if
30561 Voverlay_arrow_position is a marker, last-arrow-position is its
30562 numerical position. */
30563 DEFSYM (Qlast_arrow_position, "last-arrow-position");
30564 DEFSYM (Qlast_arrow_string, "last-arrow-string");
30566 /* Alternative overlay-arrow-string and overlay-arrow-bitmap
30567 properties on a symbol in overlay-arrow-variable-list. */
30568 DEFSYM (Qoverlay_arrow_string, "overlay-arrow-string");
30569 DEFSYM (Qoverlay_arrow_bitmap, "overlay-arrow-bitmap");
30571 echo_buffer[0] = echo_buffer[1] = Qnil;
30572 staticpro (&echo_buffer[0]);
30573 staticpro (&echo_buffer[1]);
30575 echo_area_buffer[0] = echo_area_buffer[1] = Qnil;
30576 staticpro (&echo_area_buffer[0]);
30577 staticpro (&echo_area_buffer[1]);
30579 Vmessages_buffer_name = build_pure_c_string ("*Messages*");
30580 staticpro (&Vmessages_buffer_name);
30582 mode_line_proptrans_alist = Qnil;
30583 staticpro (&mode_line_proptrans_alist);
30584 mode_line_string_list = Qnil;
30585 staticpro (&mode_line_string_list);
30586 mode_line_string_face = Qnil;
30587 staticpro (&mode_line_string_face);
30588 mode_line_string_face_prop = Qnil;
30589 staticpro (&mode_line_string_face_prop);
30590 Vmode_line_unwind_vector = Qnil;
30591 staticpro (&Vmode_line_unwind_vector);
30593 DEFSYM (Qmode_line_default_help_echo, "mode-line-default-help-echo");
30595 help_echo_string = Qnil;
30596 staticpro (&help_echo_string);
30597 help_echo_object = Qnil;
30598 staticpro (&help_echo_object);
30599 help_echo_window = Qnil;
30600 staticpro (&help_echo_window);
30601 previous_help_echo_string = Qnil;
30602 staticpro (&previous_help_echo_string);
30603 help_echo_pos = -1;
30605 DEFSYM (Qright_to_left, "right-to-left");
30606 DEFSYM (Qleft_to_right, "left-to-right");
30607 defsubr (&Sbidi_resolved_levels);
30609 #ifdef HAVE_WINDOW_SYSTEM
30610 DEFVAR_BOOL ("x-stretch-cursor", x_stretch_cursor_p,
30611 doc: /* Non-nil means draw block cursor as wide as the glyph under it.
30612 For example, if a block cursor is over a tab, it will be drawn as
30613 wide as that tab on the display. */);
30614 x_stretch_cursor_p = 0;
30615 #endif
30617 DEFVAR_LISP ("show-trailing-whitespace", Vshow_trailing_whitespace,
30618 doc: /* Non-nil means highlight trailing whitespace.
30619 The face used for trailing whitespace is `trailing-whitespace'. */);
30620 Vshow_trailing_whitespace = Qnil;
30622 DEFVAR_LISP ("nobreak-char-display", Vnobreak_char_display,
30623 doc: /* Control highlighting of non-ASCII space and hyphen chars.
30624 If the value is t, Emacs highlights non-ASCII chars which have the
30625 same appearance as an ASCII space or hyphen, using the `nobreak-space'
30626 or `escape-glyph' face respectively.
30628 U+00A0 (no-break space), U+00AD (soft hyphen), U+2010 (hyphen), and
30629 U+2011 (non-breaking hyphen) are affected.
30631 Any other non-nil value means to display these characters as a escape
30632 glyph followed by an ordinary space or hyphen.
30634 A value of nil means no special handling of these characters. */);
30635 Vnobreak_char_display = Qt;
30637 DEFVAR_LISP ("void-text-area-pointer", Vvoid_text_area_pointer,
30638 doc: /* The pointer shape to show in void text areas.
30639 A value of nil means to show the text pointer. Other options are
30640 `arrow', `text', `hand', `vdrag', `hdrag', `nhdrag', `modeline', and
30641 `hourglass'. */);
30642 Vvoid_text_area_pointer = Qarrow;
30644 DEFVAR_LISP ("inhibit-redisplay", Vinhibit_redisplay,
30645 doc: /* Non-nil means don't actually do any redisplay.
30646 This is used for internal purposes. */);
30647 Vinhibit_redisplay = Qnil;
30649 DEFVAR_LISP ("global-mode-string", Vglobal_mode_string,
30650 doc: /* String (or mode line construct) included (normally) in `mode-line-format'. */);
30651 Vglobal_mode_string = Qnil;
30653 DEFVAR_LISP ("overlay-arrow-position", Voverlay_arrow_position,
30654 doc: /* Marker for where to display an arrow on top of the buffer text.
30655 This must be the beginning of a line in order to work.
30656 See also `overlay-arrow-string'. */);
30657 Voverlay_arrow_position = Qnil;
30659 DEFVAR_LISP ("overlay-arrow-string", Voverlay_arrow_string,
30660 doc: /* String to display as an arrow in non-window frames.
30661 See also `overlay-arrow-position'. */);
30662 Voverlay_arrow_string = build_pure_c_string ("=>");
30664 DEFVAR_LISP ("overlay-arrow-variable-list", Voverlay_arrow_variable_list,
30665 doc: /* List of variables (symbols) which hold markers for overlay arrows.
30666 The symbols on this list are examined during redisplay to determine
30667 where to display overlay arrows. */);
30668 Voverlay_arrow_variable_list
30669 = list1 (intern_c_string ("overlay-arrow-position"));
30671 DEFVAR_INT ("scroll-step", emacs_scroll_step,
30672 doc: /* The number of lines to try scrolling a window by when point moves out.
30673 If that fails to bring point back on frame, point is centered instead.
30674 If this is zero, point is always centered after it moves off frame.
30675 If you want scrolling to always be a line at a time, you should set
30676 `scroll-conservatively' to a large value rather than set this to 1. */);
30678 DEFVAR_INT ("scroll-conservatively", scroll_conservatively,
30679 doc: /* Scroll up to this many lines, to bring point back on screen.
30680 If point moves off-screen, redisplay will scroll by up to
30681 `scroll-conservatively' lines in order to bring point just barely
30682 onto the screen again. If that cannot be done, then redisplay
30683 recenters point as usual.
30685 If the value is greater than 100, redisplay will never recenter point,
30686 but will always scroll just enough text to bring point into view, even
30687 if you move far away.
30689 A value of zero means always recenter point if it moves off screen. */);
30690 scroll_conservatively = 0;
30692 DEFVAR_INT ("scroll-margin", scroll_margin,
30693 doc: /* Number of lines of margin at the top and bottom of a window.
30694 Recenter the window whenever point gets within this many lines
30695 of the top or bottom of the window. */);
30696 scroll_margin = 0;
30698 DEFVAR_LISP ("display-pixels-per-inch", Vdisplay_pixels_per_inch,
30699 doc: /* Pixels per inch value for non-window system displays.
30700 Value is a number or a cons (WIDTH-DPI . HEIGHT-DPI). */);
30701 Vdisplay_pixels_per_inch = make_float (72.0);
30703 #ifdef GLYPH_DEBUG
30704 DEFVAR_INT ("debug-end-pos", debug_end_pos, doc: /* Don't ask. */);
30705 #endif
30707 DEFVAR_LISP ("truncate-partial-width-windows",
30708 Vtruncate_partial_width_windows,
30709 doc: /* Non-nil means truncate lines in windows narrower than the frame.
30710 For an integer value, truncate lines in each window narrower than the
30711 full frame width, provided the window width is less than that integer;
30712 otherwise, respect the value of `truncate-lines'.
30714 For any other non-nil value, truncate lines in all windows that do
30715 not span the full frame width.
30717 A value of nil means to respect the value of `truncate-lines'.
30719 If `word-wrap' is enabled, you might want to reduce this. */);
30720 Vtruncate_partial_width_windows = make_number (50);
30722 DEFVAR_LISP ("line-number-display-limit", Vline_number_display_limit,
30723 doc: /* Maximum buffer size for which line number should be displayed.
30724 If the buffer is bigger than this, the line number does not appear
30725 in the mode line. A value of nil means no limit. */);
30726 Vline_number_display_limit = Qnil;
30728 DEFVAR_INT ("line-number-display-limit-width",
30729 line_number_display_limit_width,
30730 doc: /* Maximum line width (in characters) for line number display.
30731 If the average length of the lines near point is bigger than this, then the
30732 line number may be omitted from the mode line. */);
30733 line_number_display_limit_width = 200;
30735 DEFVAR_BOOL ("highlight-nonselected-windows", highlight_nonselected_windows,
30736 doc: /* Non-nil means highlight region even in nonselected windows. */);
30737 highlight_nonselected_windows = false;
30739 DEFVAR_BOOL ("multiple-frames", multiple_frames,
30740 doc: /* Non-nil if more than one frame is visible on this display.
30741 Minibuffer-only frames don't count, but iconified frames do.
30742 This variable is not guaranteed to be accurate except while processing
30743 `frame-title-format' and `icon-title-format'. */);
30745 DEFVAR_LISP ("frame-title-format", Vframe_title_format,
30746 doc: /* Template for displaying the title bar of visible frames.
30747 \(Assuming the window manager supports this feature.)
30749 This variable has the same structure as `mode-line-format', except that
30750 the %c and %l constructs are ignored. It is used only on frames for
30751 which no explicit name has been set \(see `modify-frame-parameters'). */);
30753 DEFVAR_LISP ("icon-title-format", Vicon_title_format,
30754 doc: /* Template for displaying the title bar of an iconified frame.
30755 \(Assuming the window manager supports this feature.)
30756 This variable has the same structure as `mode-line-format' (which see),
30757 and is used only on frames for which no explicit name has been set
30758 \(see `modify-frame-parameters'). */);
30759 Vicon_title_format
30760 = Vframe_title_format
30761 = listn (CONSTYPE_PURE, 3,
30762 intern_c_string ("multiple-frames"),
30763 build_pure_c_string ("%b"),
30764 listn (CONSTYPE_PURE, 4,
30765 empty_unibyte_string,
30766 intern_c_string ("invocation-name"),
30767 build_pure_c_string ("@"),
30768 intern_c_string ("system-name")));
30770 DEFVAR_LISP ("message-log-max", Vmessage_log_max,
30771 doc: /* Maximum number of lines to keep in the message log buffer.
30772 If nil, disable message logging. If t, log messages but don't truncate
30773 the buffer when it becomes large. */);
30774 Vmessage_log_max = make_number (1000);
30776 DEFVAR_LISP ("window-size-change-functions", Vwindow_size_change_functions,
30777 doc: /* Functions called before redisplay, if window sizes have changed.
30778 The value should be a list of functions that take one argument.
30779 Just before redisplay, for each frame, if any of its windows have changed
30780 size since the last redisplay, or have been split or deleted,
30781 all the functions in the list are called, with the frame as argument. */);
30782 Vwindow_size_change_functions = Qnil;
30784 DEFVAR_LISP ("window-scroll-functions", Vwindow_scroll_functions,
30785 doc: /* List of functions to call before redisplaying a window with scrolling.
30786 Each function is called with two arguments, the window and its new
30787 display-start position.
30788 These functions are called whenever the `window-start' marker is modified,
30789 either to point into another buffer (e.g. via `set-window-buffer') or another
30790 place in the same buffer.
30791 Note that the value of `window-end' is not valid when these functions are
30792 called.
30794 Warning: Do not use this feature to alter the way the window
30795 is scrolled. It is not designed for that, and such use probably won't
30796 work. */);
30797 Vwindow_scroll_functions = Qnil;
30799 DEFVAR_LISP ("window-text-change-functions",
30800 Vwindow_text_change_functions,
30801 doc: /* Functions to call in redisplay when text in the window might change. */);
30802 Vwindow_text_change_functions = Qnil;
30804 DEFVAR_LISP ("redisplay-end-trigger-functions", Vredisplay_end_trigger_functions,
30805 doc: /* Functions called when redisplay of a window reaches the end trigger.
30806 Each function is called with two arguments, the window and the end trigger value.
30807 See `set-window-redisplay-end-trigger'. */);
30808 Vredisplay_end_trigger_functions = Qnil;
30810 DEFVAR_LISP ("mouse-autoselect-window", Vmouse_autoselect_window,
30811 doc: /* Non-nil means autoselect window with mouse pointer.
30812 If nil, do not autoselect windows.
30813 A positive number means delay autoselection by that many seconds: a
30814 window is autoselected only after the mouse has remained in that
30815 window for the duration of the delay.
30816 A negative number has a similar effect, but causes windows to be
30817 autoselected only after the mouse has stopped moving. \(Because of
30818 the way Emacs compares mouse events, you will occasionally wait twice
30819 that time before the window gets selected.\)
30820 Any other value means to autoselect window instantaneously when the
30821 mouse pointer enters it.
30823 Autoselection selects the minibuffer only if it is active, and never
30824 unselects the minibuffer if it is active.
30826 When customizing this variable make sure that the actual value of
30827 `focus-follows-mouse' matches the behavior of your window manager. */);
30828 Vmouse_autoselect_window = Qnil;
30830 DEFVAR_LISP ("auto-resize-tool-bars", Vauto_resize_tool_bars,
30831 doc: /* Non-nil means automatically resize tool-bars.
30832 This dynamically changes the tool-bar's height to the minimum height
30833 that is needed to make all tool-bar items visible.
30834 If value is `grow-only', the tool-bar's height is only increased
30835 automatically; to decrease the tool-bar height, use \\[recenter]. */);
30836 Vauto_resize_tool_bars = Qt;
30838 DEFVAR_BOOL ("auto-raise-tool-bar-buttons", auto_raise_tool_bar_buttons_p,
30839 doc: /* Non-nil means raise tool-bar buttons when the mouse moves over them. */);
30840 auto_raise_tool_bar_buttons_p = true;
30842 DEFVAR_BOOL ("make-cursor-line-fully-visible", make_cursor_line_fully_visible_p,
30843 doc: /* Non-nil means to scroll (recenter) cursor line if it is not fully visible. */);
30844 make_cursor_line_fully_visible_p = true;
30846 DEFVAR_LISP ("tool-bar-border", Vtool_bar_border,
30847 doc: /* Border below tool-bar in pixels.
30848 If an integer, use it as the height of the border.
30849 If it is one of `internal-border-width' or `border-width', use the
30850 value of the corresponding frame parameter.
30851 Otherwise, no border is added below the tool-bar. */);
30852 Vtool_bar_border = Qinternal_border_width;
30854 DEFVAR_LISP ("tool-bar-button-margin", Vtool_bar_button_margin,
30855 doc: /* Margin around tool-bar buttons in pixels.
30856 If an integer, use that for both horizontal and vertical margins.
30857 Otherwise, value should be a pair of integers `(HORZ . VERT)' with
30858 HORZ specifying the horizontal margin, and VERT specifying the
30859 vertical margin. */);
30860 Vtool_bar_button_margin = make_number (DEFAULT_TOOL_BAR_BUTTON_MARGIN);
30862 DEFVAR_INT ("tool-bar-button-relief", tool_bar_button_relief,
30863 doc: /* Relief thickness of tool-bar buttons. */);
30864 tool_bar_button_relief = DEFAULT_TOOL_BAR_BUTTON_RELIEF;
30866 DEFVAR_LISP ("tool-bar-style", Vtool_bar_style,
30867 doc: /* Tool bar style to use.
30868 It can be one of
30869 image - show images only
30870 text - show text only
30871 both - show both, text below image
30872 both-horiz - show text to the right of the image
30873 text-image-horiz - show text to the left of the image
30874 any other - use system default or image if no system default.
30876 This variable only affects the GTK+ toolkit version of Emacs. */);
30877 Vtool_bar_style = Qnil;
30879 DEFVAR_INT ("tool-bar-max-label-size", tool_bar_max_label_size,
30880 doc: /* Maximum number of characters a label can have to be shown.
30881 The tool bar style must also show labels for this to have any effect, see
30882 `tool-bar-style'. */);
30883 tool_bar_max_label_size = DEFAULT_TOOL_BAR_LABEL_SIZE;
30885 DEFVAR_LISP ("fontification-functions", Vfontification_functions,
30886 doc: /* List of functions to call to fontify regions of text.
30887 Each function is called with one argument POS. Functions must
30888 fontify a region starting at POS in the current buffer, and give
30889 fontified regions the property `fontified'. */);
30890 Vfontification_functions = Qnil;
30891 Fmake_variable_buffer_local (Qfontification_functions);
30893 DEFVAR_BOOL ("unibyte-display-via-language-environment",
30894 unibyte_display_via_language_environment,
30895 doc: /* Non-nil means display unibyte text according to language environment.
30896 Specifically, this means that raw bytes in the range 160-255 decimal
30897 are displayed by converting them to the equivalent multibyte characters
30898 according to the current language environment. As a result, they are
30899 displayed according to the current fontset.
30901 Note that this variable affects only how these bytes are displayed,
30902 but does not change the fact they are interpreted as raw bytes. */);
30903 unibyte_display_via_language_environment = false;
30905 DEFVAR_LISP ("max-mini-window-height", Vmax_mini_window_height,
30906 doc: /* Maximum height for resizing mini-windows (the minibuffer and the echo area).
30907 If a float, it specifies a fraction of the mini-window frame's height.
30908 If an integer, it specifies a number of lines. */);
30909 Vmax_mini_window_height = make_float (0.25);
30911 DEFVAR_LISP ("resize-mini-windows", Vresize_mini_windows,
30912 doc: /* How to resize mini-windows (the minibuffer and the echo area).
30913 A value of nil means don't automatically resize mini-windows.
30914 A value of t means resize them to fit the text displayed in them.
30915 A value of `grow-only', the default, means let mini-windows grow only;
30916 they return to their normal size when the minibuffer is closed, or the
30917 echo area becomes empty. */);
30918 Vresize_mini_windows = Qgrow_only;
30920 DEFVAR_LISP ("blink-cursor-alist", Vblink_cursor_alist,
30921 doc: /* Alist specifying how to blink the cursor off.
30922 Each element has the form (ON-STATE . OFF-STATE). Whenever the
30923 `cursor-type' frame-parameter or variable equals ON-STATE,
30924 comparing using `equal', Emacs uses OFF-STATE to specify
30925 how to blink it off. ON-STATE and OFF-STATE are values for
30926 the `cursor-type' frame parameter.
30928 If a frame's ON-STATE has no entry in this list,
30929 the frame's other specifications determine how to blink the cursor off. */);
30930 Vblink_cursor_alist = Qnil;
30932 DEFVAR_BOOL ("auto-hscroll-mode", automatic_hscrolling_p,
30933 doc: /* Allow or disallow automatic horizontal scrolling of windows.
30934 If non-nil, windows are automatically scrolled horizontally to make
30935 point visible. */);
30936 automatic_hscrolling_p = true;
30937 DEFSYM (Qauto_hscroll_mode, "auto-hscroll-mode");
30939 DEFVAR_INT ("hscroll-margin", hscroll_margin,
30940 doc: /* How many columns away from the window edge point is allowed to get
30941 before automatic hscrolling will horizontally scroll the window. */);
30942 hscroll_margin = 5;
30944 DEFVAR_LISP ("hscroll-step", Vhscroll_step,
30945 doc: /* How many columns to scroll the window when point gets too close to the edge.
30946 When point is less than `hscroll-margin' columns from the window
30947 edge, automatic hscrolling will scroll the window by the amount of columns
30948 determined by this variable. If its value is a positive integer, scroll that
30949 many columns. If it's a positive floating-point number, it specifies the
30950 fraction of the window's width to scroll. If it's nil or zero, point will be
30951 centered horizontally after the scroll. Any other value, including negative
30952 numbers, are treated as if the value were zero.
30954 Automatic hscrolling always moves point outside the scroll margin, so if
30955 point was more than scroll step columns inside the margin, the window will
30956 scroll more than the value given by the scroll step.
30958 Note that the lower bound for automatic hscrolling specified by `scroll-left'
30959 and `scroll-right' overrides this variable's effect. */);
30960 Vhscroll_step = make_number (0);
30962 DEFVAR_BOOL ("message-truncate-lines", message_truncate_lines,
30963 doc: /* If non-nil, messages are truncated instead of resizing the echo area.
30964 Bind this around calls to `message' to let it take effect. */);
30965 message_truncate_lines = false;
30967 DEFVAR_LISP ("menu-bar-update-hook", Vmenu_bar_update_hook,
30968 doc: /* Normal hook run to update the menu bar definitions.
30969 Redisplay runs this hook before it redisplays the menu bar.
30970 This is used to update menus such as Buffers, whose contents depend on
30971 various data. */);
30972 Vmenu_bar_update_hook = Qnil;
30974 DEFVAR_LISP ("menu-updating-frame", Vmenu_updating_frame,
30975 doc: /* Frame for which we are updating a menu.
30976 The enable predicate for a menu binding should check this variable. */);
30977 Vmenu_updating_frame = Qnil;
30979 DEFVAR_BOOL ("inhibit-menubar-update", inhibit_menubar_update,
30980 doc: /* Non-nil means don't update menu bars. Internal use only. */);
30981 inhibit_menubar_update = false;
30983 DEFVAR_LISP ("wrap-prefix", Vwrap_prefix,
30984 doc: /* Prefix prepended to all continuation lines at display time.
30985 The value may be a string, an image, or a stretch-glyph; it is
30986 interpreted in the same way as the value of a `display' text property.
30988 This variable is overridden by any `wrap-prefix' text or overlay
30989 property.
30991 To add a prefix to non-continuation lines, use `line-prefix'. */);
30992 Vwrap_prefix = Qnil;
30993 DEFSYM (Qwrap_prefix, "wrap-prefix");
30994 Fmake_variable_buffer_local (Qwrap_prefix);
30996 DEFVAR_LISP ("line-prefix", Vline_prefix,
30997 doc: /* Prefix prepended to all non-continuation lines at display time.
30998 The value may be a string, an image, or a stretch-glyph; it is
30999 interpreted in the same way as the value of a `display' text property.
31001 This variable is overridden by any `line-prefix' text or overlay
31002 property.
31004 To add a prefix to continuation lines, use `wrap-prefix'. */);
31005 Vline_prefix = Qnil;
31006 DEFSYM (Qline_prefix, "line-prefix");
31007 Fmake_variable_buffer_local (Qline_prefix);
31009 DEFVAR_BOOL ("inhibit-eval-during-redisplay", inhibit_eval_during_redisplay,
31010 doc: /* Non-nil means don't eval Lisp during redisplay. */);
31011 inhibit_eval_during_redisplay = false;
31013 DEFVAR_BOOL ("inhibit-free-realized-faces", inhibit_free_realized_faces,
31014 doc: /* Non-nil means don't free realized faces. Internal use only. */);
31015 inhibit_free_realized_faces = false;
31017 DEFVAR_BOOL ("inhibit-bidi-mirroring", inhibit_bidi_mirroring,
31018 doc: /* Non-nil means don't mirror characters even when bidi context requires that.
31019 Intended for use during debugging and for testing bidi display;
31020 see biditest.el in the test suite. */);
31021 inhibit_bidi_mirroring = false;
31023 #ifdef GLYPH_DEBUG
31024 DEFVAR_BOOL ("inhibit-try-window-id", inhibit_try_window_id,
31025 doc: /* Inhibit try_window_id display optimization. */);
31026 inhibit_try_window_id = false;
31028 DEFVAR_BOOL ("inhibit-try-window-reusing", inhibit_try_window_reusing,
31029 doc: /* Inhibit try_window_reusing display optimization. */);
31030 inhibit_try_window_reusing = false;
31032 DEFVAR_BOOL ("inhibit-try-cursor-movement", inhibit_try_cursor_movement,
31033 doc: /* Inhibit try_cursor_movement display optimization. */);
31034 inhibit_try_cursor_movement = false;
31035 #endif /* GLYPH_DEBUG */
31037 DEFVAR_INT ("overline-margin", overline_margin,
31038 doc: /* Space between overline and text, in pixels.
31039 The default value is 2: the height of the overline (1 pixel) plus 1 pixel
31040 margin to the character height. */);
31041 overline_margin = 2;
31043 DEFVAR_INT ("underline-minimum-offset",
31044 underline_minimum_offset,
31045 doc: /* Minimum distance between baseline and underline.
31046 This can improve legibility of underlined text at small font sizes,
31047 particularly when using variable `x-use-underline-position-properties'
31048 with fonts that specify an UNDERLINE_POSITION relatively close to the
31049 baseline. The default value is 1. */);
31050 underline_minimum_offset = 1;
31052 DEFVAR_BOOL ("display-hourglass", display_hourglass_p,
31053 doc: /* Non-nil means show an hourglass pointer, when Emacs is busy.
31054 This feature only works when on a window system that can change
31055 cursor shapes. */);
31056 display_hourglass_p = true;
31058 DEFVAR_LISP ("hourglass-delay", Vhourglass_delay,
31059 doc: /* Seconds to wait before displaying an hourglass pointer when Emacs is busy. */);
31060 Vhourglass_delay = make_number (DEFAULT_HOURGLASS_DELAY);
31062 #ifdef HAVE_WINDOW_SYSTEM
31063 hourglass_atimer = NULL;
31064 hourglass_shown_p = false;
31065 #endif /* HAVE_WINDOW_SYSTEM */
31067 /* Name of the face used to display glyphless characters. */
31068 DEFSYM (Qglyphless_char, "glyphless-char");
31070 /* Method symbols for Vglyphless_char_display. */
31071 DEFSYM (Qhex_code, "hex-code");
31072 DEFSYM (Qempty_box, "empty-box");
31073 DEFSYM (Qthin_space, "thin-space");
31074 DEFSYM (Qzero_width, "zero-width");
31076 DEFVAR_LISP ("pre-redisplay-function", Vpre_redisplay_function,
31077 doc: /* Function run just before redisplay.
31078 It is called with one argument, which is the set of windows that are to
31079 be redisplayed. This set can be nil (meaning, only the selected window),
31080 or t (meaning all windows). */);
31081 Vpre_redisplay_function = intern ("ignore");
31083 /* Symbol for the purpose of Vglyphless_char_display. */
31084 DEFSYM (Qglyphless_char_display, "glyphless-char-display");
31085 Fput (Qglyphless_char_display, Qchar_table_extra_slots, make_number (1));
31087 DEFVAR_LISP ("glyphless-char-display", Vglyphless_char_display,
31088 doc: /* Char-table defining glyphless characters.
31089 Each element, if non-nil, should be one of the following:
31090 an ASCII acronym string: display this string in a box
31091 `hex-code': display the hexadecimal code of a character in a box
31092 `empty-box': display as an empty box
31093 `thin-space': display as 1-pixel width space
31094 `zero-width': don't display
31095 An element may also be a cons cell (GRAPHICAL . TEXT), which specifies the
31096 display method for graphical terminals and text terminals respectively.
31097 GRAPHICAL and TEXT should each have one of the values listed above.
31099 The char-table has one extra slot to control the display of a character for
31100 which no font is found. This slot only takes effect on graphical terminals.
31101 Its value should be an ASCII acronym string, `hex-code', `empty-box', or
31102 `thin-space'. The default is `empty-box'.
31104 If a character has a non-nil entry in an active display table, the
31105 display table takes effect; in this case, Emacs does not consult
31106 `glyphless-char-display' at all. */);
31107 Vglyphless_char_display = Fmake_char_table (Qglyphless_char_display, Qnil);
31108 Fset_char_table_extra_slot (Vglyphless_char_display, make_number (0),
31109 Qempty_box);
31111 DEFVAR_LISP ("debug-on-message", Vdebug_on_message,
31112 doc: /* If non-nil, debug if a message matching this regexp is displayed. */);
31113 Vdebug_on_message = Qnil;
31115 DEFVAR_LISP ("redisplay--all-windows-cause", Vredisplay__all_windows_cause,
31116 doc: /* */);
31117 Vredisplay__all_windows_cause
31118 = Fmake_vector (make_number (100), make_number (0));
31120 DEFVAR_LISP ("redisplay--mode-lines-cause", Vredisplay__mode_lines_cause,
31121 doc: /* */);
31122 Vredisplay__mode_lines_cause
31123 = Fmake_vector (make_number (100), make_number (0));
31127 /* Initialize this module when Emacs starts. */
31129 void
31130 init_xdisp (void)
31132 CHARPOS (this_line_start_pos) = 0;
31134 if (!noninteractive)
31136 struct window *m = XWINDOW (minibuf_window);
31137 Lisp_Object frame = m->frame;
31138 struct frame *f = XFRAME (frame);
31139 Lisp_Object root = FRAME_ROOT_WINDOW (f);
31140 struct window *r = XWINDOW (root);
31141 int i;
31143 echo_area_window = minibuf_window;
31145 r->top_line = FRAME_TOP_MARGIN (f);
31146 r->pixel_top = r->top_line * FRAME_LINE_HEIGHT (f);
31147 r->total_cols = FRAME_COLS (f);
31148 r->pixel_width = r->total_cols * FRAME_COLUMN_WIDTH (f);
31149 r->total_lines = FRAME_TOTAL_LINES (f) - 1 - FRAME_TOP_MARGIN (f);
31150 r->pixel_height = r->total_lines * FRAME_LINE_HEIGHT (f);
31152 m->top_line = FRAME_TOTAL_LINES (f) - 1;
31153 m->pixel_top = m->top_line * FRAME_LINE_HEIGHT (f);
31154 m->total_cols = FRAME_COLS (f);
31155 m->pixel_width = m->total_cols * FRAME_COLUMN_WIDTH (f);
31156 m->total_lines = 1;
31157 m->pixel_height = m->total_lines * FRAME_LINE_HEIGHT (f);
31159 scratch_glyph_row.glyphs[TEXT_AREA] = scratch_glyphs;
31160 scratch_glyph_row.glyphs[TEXT_AREA + 1]
31161 = scratch_glyphs + MAX_SCRATCH_GLYPHS;
31163 /* The default ellipsis glyphs `...'. */
31164 for (i = 0; i < 3; ++i)
31165 default_invis_vector[i] = make_number ('.');
31169 /* Allocate the buffer for frame titles.
31170 Also used for `format-mode-line'. */
31171 int size = 100;
31172 mode_line_noprop_buf = xmalloc (size);
31173 mode_line_noprop_buf_end = mode_line_noprop_buf + size;
31174 mode_line_noprop_ptr = mode_line_noprop_buf;
31175 mode_line_target = MODE_LINE_DISPLAY;
31178 help_echo_showing_p = false;
31181 #ifdef HAVE_WINDOW_SYSTEM
31183 /* Platform-independent portion of hourglass implementation. */
31185 /* Timer function of hourglass_atimer. */
31187 static void
31188 show_hourglass (struct atimer *timer)
31190 /* The timer implementation will cancel this timer automatically
31191 after this function has run. Set hourglass_atimer to null
31192 so that we know the timer doesn't have to be canceled. */
31193 hourglass_atimer = NULL;
31195 if (!hourglass_shown_p)
31197 Lisp_Object tail, frame;
31199 block_input ();
31201 FOR_EACH_FRAME (tail, frame)
31203 struct frame *f = XFRAME (frame);
31205 if (FRAME_LIVE_P (f) && FRAME_WINDOW_P (f)
31206 && FRAME_RIF (f)->show_hourglass)
31207 FRAME_RIF (f)->show_hourglass (f);
31210 hourglass_shown_p = true;
31211 unblock_input ();
31215 /* Cancel a currently active hourglass timer, and start a new one. */
31217 void
31218 start_hourglass (void)
31220 struct timespec delay;
31222 cancel_hourglass ();
31224 if (INTEGERP (Vhourglass_delay)
31225 && XINT (Vhourglass_delay) > 0)
31226 delay = make_timespec (min (XINT (Vhourglass_delay),
31227 TYPE_MAXIMUM (time_t)),
31229 else if (FLOATP (Vhourglass_delay)
31230 && XFLOAT_DATA (Vhourglass_delay) > 0)
31231 delay = dtotimespec (XFLOAT_DATA (Vhourglass_delay));
31232 else
31233 delay = make_timespec (DEFAULT_HOURGLASS_DELAY, 0);
31235 hourglass_atimer = start_atimer (ATIMER_RELATIVE, delay,
31236 show_hourglass, NULL);
31239 /* Cancel the hourglass cursor timer if active, hide a busy cursor if
31240 shown. */
31242 void
31243 cancel_hourglass (void)
31245 if (hourglass_atimer)
31247 cancel_atimer (hourglass_atimer);
31248 hourglass_atimer = NULL;
31251 if (hourglass_shown_p)
31253 Lisp_Object tail, frame;
31255 block_input ();
31257 FOR_EACH_FRAME (tail, frame)
31259 struct frame *f = XFRAME (frame);
31261 if (FRAME_LIVE_P (f) && FRAME_WINDOW_P (f)
31262 && FRAME_RIF (f)->hide_hourglass)
31263 FRAME_RIF (f)->hide_hourglass (f);
31264 #ifdef HAVE_NTGUI
31265 /* No cursors on non GUI frames - restore to stock arrow cursor. */
31266 else if (!FRAME_W32_P (f))
31267 w32_arrow_cursor ();
31268 #endif
31271 hourglass_shown_p = false;
31272 unblock_input ();
31276 #endif /* HAVE_WINDOW_SYSTEM */