Fix bug #15090 with redisplay under linum-mode and visual-line-mode.
[emacs.git] / src / xdisp.c
blob8b72c58cd0759f41d3c2c1723e3bc9d3f0e32509
1 /* Display generation from window structure and buffer text.
3 Copyright (C) 1985-1988, 1993-1995, 1997-2013 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.
103 . try_window
105 This function performs the full redisplay of a single window
106 assuming that its fonts were not changed and that the cursor
107 will not end up in the scroll margins. (Loading fonts requires
108 re-adjustment of dimensions of glyph matrices, which makes this
109 method impossible to use.)
111 These optimizations are tried in sequence (some can be skipped if
112 it is known that they are not applicable). If none of the
113 optimizations were successful, redisplay calls redisplay_windows,
114 which performs a full redisplay of all windows.
116 Desired matrices.
118 Desired matrices are always built per Emacs window. The function
119 `display_line' is the central function to look at if you are
120 interested. It constructs one row in a desired matrix given an
121 iterator structure containing both a buffer position and a
122 description of the environment in which the text is to be
123 displayed. But this is too early, read on.
125 Characters and pixmaps displayed for a range of buffer text depend
126 on various settings of buffers and windows, on overlays and text
127 properties, on display tables, on selective display. The good news
128 is that all this hairy stuff is hidden behind a small set of
129 interface functions taking an iterator structure (struct it)
130 argument.
132 Iteration over things to be displayed is then simple. It is
133 started by initializing an iterator with a call to init_iterator,
134 passing it the buffer position where to start iteration. For
135 iteration over strings, pass -1 as the position to init_iterator,
136 and call reseat_to_string when the string is ready, to initialize
137 the iterator for that string. Thereafter, calls to
138 get_next_display_element fill the iterator structure with relevant
139 information about the next thing to display. Calls to
140 set_iterator_to_next move the iterator to the next thing.
142 Besides this, an iterator also contains information about the
143 display environment in which glyphs for display elements are to be
144 produced. It has fields for the width and height of the display,
145 the information whether long lines are truncated or continued, a
146 current X and Y position, and lots of other stuff you can better
147 see in dispextern.h.
149 Glyphs in a desired matrix are normally constructed in a loop
150 calling get_next_display_element and then PRODUCE_GLYPHS. The call
151 to PRODUCE_GLYPHS will fill the iterator structure with pixel
152 information about the element being displayed and at the same time
153 produce glyphs for it. If the display element fits on the line
154 being displayed, set_iterator_to_next is called next, otherwise the
155 glyphs produced are discarded. The function display_line is the
156 workhorse of filling glyph rows in the desired matrix with glyphs.
157 In addition to producing glyphs, it also handles line truncation
158 and continuation, word wrap, and cursor positioning (for the
159 latter, see also set_cursor_from_row).
161 Frame matrices.
163 That just couldn't be all, could it? What about terminal types not
164 supporting operations on sub-windows of the screen? To update the
165 display on such a terminal, window-based glyph matrices are not
166 well suited. To be able to reuse part of the display (scrolling
167 lines up and down), we must instead have a view of the whole
168 screen. This is what `frame matrices' are for. They are a trick.
170 Frames on terminals like above have a glyph pool. Windows on such
171 a frame sub-allocate their glyph memory from their frame's glyph
172 pool. The frame itself is given its own glyph matrices. By
173 coincidence---or maybe something else---rows in window glyph
174 matrices are slices of corresponding rows in frame matrices. Thus
175 writing to window matrices implicitly updates a frame matrix which
176 provides us with the view of the whole screen that we originally
177 wanted to have without having to move many bytes around. To be
178 honest, there is a little bit more done, but not much more. If you
179 plan to extend that code, take a look at dispnew.c. The function
180 build_frame_matrix is a good starting point.
182 Bidirectional display.
184 Bidirectional display adds quite some hair to this already complex
185 design. The good news are that a large portion of that hairy stuff
186 is hidden in bidi.c behind only 3 interfaces. bidi.c implements a
187 reordering engine which is called by set_iterator_to_next and
188 returns the next character to display in the visual order. See
189 commentary on bidi.c for more details. As far as redisplay is
190 concerned, the effect of calling bidi_move_to_visually_next, the
191 main interface of the reordering engine, is that the iterator gets
192 magically placed on the buffer or string position that is to be
193 displayed next. In other words, a linear iteration through the
194 buffer/string is replaced with a non-linear one. All the rest of
195 the redisplay is oblivious to the bidi reordering.
197 Well, almost oblivious---there are still complications, most of
198 them due to the fact that buffer and string positions no longer
199 change monotonously with glyph indices in a glyph row. Moreover,
200 for continued lines, the buffer positions may not even be
201 monotonously changing with vertical positions. Also, accounting
202 for face changes, overlays, etc. becomes more complex because
203 non-linear iteration could potentially skip many positions with
204 changes, and then cross them again on the way back...
206 One other prominent effect of bidirectional display is that some
207 paragraphs of text need to be displayed starting at the right
208 margin of the window---the so-called right-to-left, or R2L
209 paragraphs. R2L paragraphs are displayed with R2L glyph rows,
210 which have their reversed_p flag set. The bidi reordering engine
211 produces characters in such rows starting from the character which
212 should be the rightmost on display. PRODUCE_GLYPHS then reverses
213 the order, when it fills up the glyph row whose reversed_p flag is
214 set, by prepending each new glyph to what is already there, instead
215 of appending it. When the glyph row is complete, the function
216 extend_face_to_end_of_line fills the empty space to the left of the
217 leftmost character with special glyphs, which will display as,
218 well, empty. On text terminals, these special glyphs are simply
219 blank characters. On graphics terminals, there's a single stretch
220 glyph of a suitably computed width. Both the blanks and the
221 stretch glyph are given the face of the background of the line.
222 This way, the terminal-specific back-end can still draw the glyphs
223 left to right, even for R2L lines.
225 Bidirectional display and character compositions
227 Some scripts cannot be displayed by drawing each character
228 individually, because adjacent characters change each other's shape
229 on display. For example, Arabic and Indic scripts belong to this
230 category.
232 Emacs display supports this by providing "character compositions",
233 most of which is implemented in composite.c. During the buffer
234 scan that delivers characters to PRODUCE_GLYPHS, if the next
235 character to be delivered is a composed character, the iteration
236 calls composition_reseat_it and next_element_from_composition. If
237 they succeed to compose the character with one or more of the
238 following characters, the whole sequence of characters that where
239 composed is recorded in the `struct composition_it' object that is
240 part of the buffer iterator. The composed sequence could produce
241 one or more font glyphs (called "grapheme clusters") on the screen.
242 Each of these grapheme clusters is then delivered to PRODUCE_GLYPHS
243 in the direction corresponding to the current bidi scan direction
244 (recorded in the scan_dir member of the `struct bidi_it' object
245 that is part of the buffer iterator). In particular, if the bidi
246 iterator currently scans the buffer backwards, the grapheme
247 clusters are delivered back to front. This reorders the grapheme
248 clusters as appropriate for the current bidi context. Note that
249 this means that the grapheme clusters are always stored in the
250 LGSTRING object (see composite.c) in the logical order.
252 Moving an iterator in bidirectional text
253 without producing glyphs
255 Note one important detail mentioned above: that the bidi reordering
256 engine, driven by the iterator, produces characters in R2L rows
257 starting at the character that will be the rightmost on display.
258 As far as the iterator is concerned, the geometry of such rows is
259 still left to right, i.e. the iterator "thinks" the first character
260 is at the leftmost pixel position. The iterator does not know that
261 PRODUCE_GLYPHS reverses the order of the glyphs that the iterator
262 delivers. This is important when functions from the move_it_*
263 family are used to get to certain screen position or to match
264 screen coordinates with buffer coordinates: these functions use the
265 iterator geometry, which is left to right even in R2L paragraphs.
266 This works well with most callers of move_it_*, because they need
267 to get to a specific column, and columns are still numbered in the
268 reading order, i.e. the rightmost character in a R2L paragraph is
269 still column zero. But some callers do not get well with this; a
270 notable example is mouse clicks that need to find the character
271 that corresponds to certain pixel coordinates. See
272 buffer_posn_from_coords in dispnew.c for how this is handled. */
274 #include <config.h>
275 #include <stdio.h>
276 #include <limits.h>
278 #include "lisp.h"
279 #include "atimer.h"
280 #include "keyboard.h"
281 #include "frame.h"
282 #include "window.h"
283 #include "termchar.h"
284 #include "dispextern.h"
285 #include "character.h"
286 #include "buffer.h"
287 #include "charset.h"
288 #include "indent.h"
289 #include "commands.h"
290 #include "keymap.h"
291 #include "macros.h"
292 #include "disptab.h"
293 #include "termhooks.h"
294 #include "termopts.h"
295 #include "intervals.h"
296 #include "coding.h"
297 #include "process.h"
298 #include "region-cache.h"
299 #include "font.h"
300 #include "fontset.h"
301 #include "blockinput.h"
303 #ifdef HAVE_X_WINDOWS
304 #include "xterm.h"
305 #endif
306 #ifdef HAVE_NTGUI
307 #include "w32term.h"
308 #endif
309 #ifdef HAVE_NS
310 #include "nsterm.h"
311 #endif
312 #ifdef USE_GTK
313 #include "gtkutil.h"
314 #endif
316 #ifndef FRAME_X_OUTPUT
317 #define FRAME_X_OUTPUT(f) ((f)->output_data.x)
318 #endif
320 #define INFINITY 10000000
322 Lisp_Object Qoverriding_local_map, Qoverriding_terminal_local_map;
323 Lisp_Object Qwindow_scroll_functions;
324 static Lisp_Object Qwindow_text_change_functions;
325 static Lisp_Object Qredisplay_end_trigger_functions;
326 Lisp_Object Qinhibit_point_motion_hooks;
327 static Lisp_Object QCeval, QCpropertize;
328 Lisp_Object QCfile, QCdata;
329 static Lisp_Object Qfontified;
330 static Lisp_Object Qgrow_only;
331 static Lisp_Object Qinhibit_eval_during_redisplay;
332 static Lisp_Object Qbuffer_position, Qposition, Qobject;
333 static Lisp_Object Qright_to_left, Qleft_to_right;
335 /* Cursor shapes. */
336 Lisp_Object Qbar, Qhbar, Qbox, Qhollow;
338 /* Pointer shapes. */
339 static Lisp_Object Qarrow, Qhand;
340 Lisp_Object Qtext;
342 /* Holds the list (error). */
343 static Lisp_Object list_of_error;
345 static Lisp_Object Qfontification_functions;
347 static Lisp_Object Qwrap_prefix;
348 static Lisp_Object Qline_prefix;
349 static Lisp_Object Qredisplay_internal;
351 /* Non-nil means don't actually do any redisplay. */
353 Lisp_Object Qinhibit_redisplay;
355 /* Names of text properties relevant for redisplay. */
357 Lisp_Object Qdisplay;
359 Lisp_Object Qspace, QCalign_to;
360 static Lisp_Object QCrelative_width, QCrelative_height;
361 Lisp_Object Qleft_margin, Qright_margin;
362 static Lisp_Object Qspace_width, Qraise;
363 static Lisp_Object Qslice;
364 Lisp_Object Qcenter;
365 static Lisp_Object Qmargin, Qpointer;
366 static Lisp_Object Qline_height;
368 #ifdef HAVE_WINDOW_SYSTEM
370 /* Test if overflow newline into fringe. Called with iterator IT
371 at or past right window margin, and with IT->current_x set. */
373 #define IT_OVERFLOW_NEWLINE_INTO_FRINGE(IT) \
374 (!NILP (Voverflow_newline_into_fringe) \
375 && FRAME_WINDOW_P ((IT)->f) \
376 && ((IT)->bidi_it.paragraph_dir == R2L \
377 ? (WINDOW_LEFT_FRINGE_WIDTH ((IT)->w) > 0) \
378 : (WINDOW_RIGHT_FRINGE_WIDTH ((IT)->w) > 0)) \
379 && (IT)->current_x == (IT)->last_visible_x)
381 #else /* !HAVE_WINDOW_SYSTEM */
382 #define IT_OVERFLOW_NEWLINE_INTO_FRINGE(it) 0
383 #endif /* HAVE_WINDOW_SYSTEM */
385 /* Test if the display element loaded in IT, or the underlying buffer
386 or string character, is a space or a TAB character. This is used
387 to determine where word wrapping can occur. */
389 #define IT_DISPLAYING_WHITESPACE(it) \
390 ((it->what == IT_CHARACTER && (it->c == ' ' || it->c == '\t')) \
391 || ((STRINGP (it->string) \
392 && (SREF (it->string, IT_STRING_BYTEPOS (*it)) == ' ' \
393 || SREF (it->string, IT_STRING_BYTEPOS (*it)) == '\t')) \
394 || (it->s \
395 && (it->s[IT_BYTEPOS (*it)] == ' ' \
396 || it->s[IT_BYTEPOS (*it)] == '\t')) \
397 || (IT_BYTEPOS (*it) < ZV_BYTE \
398 && (*BYTE_POS_ADDR (IT_BYTEPOS (*it)) == ' ' \
399 || *BYTE_POS_ADDR (IT_BYTEPOS (*it)) == '\t')))) \
401 /* Name of the face used to highlight trailing whitespace. */
403 static Lisp_Object Qtrailing_whitespace;
405 /* Name and number of the face used to highlight escape glyphs. */
407 static Lisp_Object Qescape_glyph;
409 /* Name and number of the face used to highlight non-breaking spaces. */
411 static Lisp_Object Qnobreak_space;
413 /* The symbol `image' which is the car of the lists used to represent
414 images in Lisp. Also a tool bar style. */
416 Lisp_Object Qimage;
418 /* The image map types. */
419 Lisp_Object QCmap;
420 static Lisp_Object QCpointer;
421 static Lisp_Object Qrect, Qcircle, Qpoly;
423 /* Tool bar styles */
424 Lisp_Object Qboth, Qboth_horiz, Qtext_image_horiz;
426 /* Non-zero means print newline to stdout before next mini-buffer
427 message. */
429 int noninteractive_need_newline;
431 /* Non-zero means print newline to message log before next message. */
433 static int message_log_need_newline;
435 /* Three markers that message_dolog uses.
436 It could allocate them itself, but that causes trouble
437 in handling memory-full errors. */
438 static Lisp_Object message_dolog_marker1;
439 static Lisp_Object message_dolog_marker2;
440 static Lisp_Object message_dolog_marker3;
442 /* The buffer position of the first character appearing entirely or
443 partially on the line of the selected window which contains the
444 cursor; <= 0 if not known. Set by set_cursor_from_row, used for
445 redisplay optimization in redisplay_internal. */
447 static struct text_pos this_line_start_pos;
449 /* Number of characters past the end of the line above, including the
450 terminating newline. */
452 static struct text_pos this_line_end_pos;
454 /* The vertical positions and the height of this line. */
456 static int this_line_vpos;
457 static int this_line_y;
458 static int this_line_pixel_height;
460 /* X position at which this display line starts. Usually zero;
461 negative if first character is partially visible. */
463 static int this_line_start_x;
465 /* The smallest character position seen by move_it_* functions as they
466 move across display lines. Used to set MATRIX_ROW_START_CHARPOS of
467 hscrolled lines, see display_line. */
469 static struct text_pos this_line_min_pos;
471 /* Buffer that this_line_.* variables are referring to. */
473 static struct buffer *this_line_buffer;
476 /* Values of those variables at last redisplay are stored as
477 properties on `overlay-arrow-position' symbol. However, if
478 Voverlay_arrow_position is a marker, last-arrow-position is its
479 numerical position. */
481 static Lisp_Object Qlast_arrow_position, Qlast_arrow_string;
483 /* Alternative overlay-arrow-string and overlay-arrow-bitmap
484 properties on a symbol in overlay-arrow-variable-list. */
486 static Lisp_Object Qoverlay_arrow_string, Qoverlay_arrow_bitmap;
488 Lisp_Object Qmenu_bar_update_hook;
490 /* Nonzero if an overlay arrow has been displayed in this window. */
492 static int overlay_arrow_seen;
494 /* Vector containing glyphs for an ellipsis `...'. */
496 static Lisp_Object default_invis_vector[3];
498 /* This is the window where the echo area message was displayed. It
499 is always a mini-buffer window, but it may not be the same window
500 currently active as a mini-buffer. */
502 Lisp_Object echo_area_window;
504 /* List of pairs (MESSAGE . MULTIBYTE). The function save_message
505 pushes the current message and the value of
506 message_enable_multibyte on the stack, the function restore_message
507 pops the stack and displays MESSAGE again. */
509 static Lisp_Object Vmessage_stack;
511 /* Nonzero means multibyte characters were enabled when the echo area
512 message was specified. */
514 static int message_enable_multibyte;
516 /* Nonzero if we should redraw the mode lines on the next redisplay. */
518 int update_mode_lines;
520 /* Nonzero if window sizes or contents have changed since last
521 redisplay that finished. */
523 int windows_or_buffers_changed;
525 /* Nonzero means a frame's cursor type has been changed. */
527 static int cursor_type_changed;
529 /* Nonzero after display_mode_line if %l was used and it displayed a
530 line number. */
532 static int line_number_displayed;
534 /* The name of the *Messages* buffer, a string. */
536 static Lisp_Object Vmessages_buffer_name;
538 /* Current, index 0, and last displayed echo area message. Either
539 buffers from echo_buffers, or nil to indicate no message. */
541 Lisp_Object echo_area_buffer[2];
543 /* The buffers referenced from echo_area_buffer. */
545 static Lisp_Object echo_buffer[2];
547 /* A vector saved used in with_area_buffer to reduce consing. */
549 static Lisp_Object Vwith_echo_area_save_vector;
551 /* Non-zero means display_echo_area should display the last echo area
552 message again. Set by redisplay_preserve_echo_area. */
554 static int display_last_displayed_message_p;
556 /* Nonzero if echo area is being used by print; zero if being used by
557 message. */
559 static int message_buf_print;
561 /* The symbol `inhibit-menubar-update' and its DEFVAR_BOOL variable. */
563 static Lisp_Object Qinhibit_menubar_update;
564 static Lisp_Object Qmessage_truncate_lines;
566 /* Set to 1 in clear_message to make redisplay_internal aware
567 of an emptied echo area. */
569 static int message_cleared_p;
571 /* A scratch glyph row with contents used for generating truncation
572 glyphs. Also used in direct_output_for_insert. */
574 #define MAX_SCRATCH_GLYPHS 100
575 static struct glyph_row scratch_glyph_row;
576 static struct glyph scratch_glyphs[MAX_SCRATCH_GLYPHS];
578 /* Ascent and height of the last line processed by move_it_to. */
580 static int last_height;
582 /* Non-zero if there's a help-echo in the echo area. */
584 int help_echo_showing_p;
586 /* If >= 0, computed, exact values of mode-line and header-line height
587 to use in the macros CURRENT_MODE_LINE_HEIGHT and
588 CURRENT_HEADER_LINE_HEIGHT. */
590 int current_mode_line_height, current_header_line_height;
592 /* The maximum distance to look ahead for text properties. Values
593 that are too small let us call compute_char_face and similar
594 functions too often which is expensive. Values that are too large
595 let us call compute_char_face and alike too often because we
596 might not be interested in text properties that far away. */
598 #define TEXT_PROP_DISTANCE_LIMIT 100
600 /* SAVE_IT and RESTORE_IT are called when we save a snapshot of the
601 iterator state and later restore it. This is needed because the
602 bidi iterator on bidi.c keeps a stacked cache of its states, which
603 is really a singleton. When we use scratch iterator objects to
604 move around the buffer, we can cause the bidi cache to be pushed or
605 popped, and therefore we need to restore the cache state when we
606 return to the original iterator. */
607 #define SAVE_IT(ITCOPY,ITORIG,CACHE) \
608 do { \
609 if (CACHE) \
610 bidi_unshelve_cache (CACHE, 1); \
611 ITCOPY = ITORIG; \
612 CACHE = bidi_shelve_cache (); \
613 } while (0)
615 #define RESTORE_IT(pITORIG,pITCOPY,CACHE) \
616 do { \
617 if (pITORIG != pITCOPY) \
618 *(pITORIG) = *(pITCOPY); \
619 bidi_unshelve_cache (CACHE, 0); \
620 CACHE = NULL; \
621 } while (0)
623 #ifdef GLYPH_DEBUG
625 /* Non-zero means print traces of redisplay if compiled with
626 GLYPH_DEBUG defined. */
628 int trace_redisplay_p;
630 #endif /* GLYPH_DEBUG */
632 #ifdef DEBUG_TRACE_MOVE
633 /* Non-zero means trace with TRACE_MOVE to stderr. */
634 int trace_move;
636 #define TRACE_MOVE(x) if (trace_move) fprintf x; else (void) 0
637 #else
638 #define TRACE_MOVE(x) (void) 0
639 #endif
641 static Lisp_Object Qauto_hscroll_mode;
643 /* Buffer being redisplayed -- for redisplay_window_error. */
645 static struct buffer *displayed_buffer;
647 /* Value returned from text property handlers (see below). */
649 enum prop_handled
651 HANDLED_NORMALLY,
652 HANDLED_RECOMPUTE_PROPS,
653 HANDLED_OVERLAY_STRING_CONSUMED,
654 HANDLED_RETURN
657 /* A description of text properties that redisplay is interested
658 in. */
660 struct props
662 /* The name of the property. */
663 Lisp_Object *name;
665 /* A unique index for the property. */
666 enum prop_idx idx;
668 /* A handler function called to set up iterator IT from the property
669 at IT's current position. Value is used to steer handle_stop. */
670 enum prop_handled (*handler) (struct it *it);
673 static enum prop_handled handle_face_prop (struct it *);
674 static enum prop_handled handle_invisible_prop (struct it *);
675 static enum prop_handled handle_display_prop (struct it *);
676 static enum prop_handled handle_composition_prop (struct it *);
677 static enum prop_handled handle_overlay_change (struct it *);
678 static enum prop_handled handle_fontified_prop (struct it *);
680 /* Properties handled by iterators. */
682 static struct props it_props[] =
684 {&Qfontified, FONTIFIED_PROP_IDX, handle_fontified_prop},
685 /* Handle `face' before `display' because some sub-properties of
686 `display' need to know the face. */
687 {&Qface, FACE_PROP_IDX, handle_face_prop},
688 {&Qdisplay, DISPLAY_PROP_IDX, handle_display_prop},
689 {&Qinvisible, INVISIBLE_PROP_IDX, handle_invisible_prop},
690 {&Qcomposition, COMPOSITION_PROP_IDX, handle_composition_prop},
691 {NULL, 0, NULL}
694 /* Value is the position described by X. If X is a marker, value is
695 the marker_position of X. Otherwise, value is X. */
697 #define COERCE_MARKER(X) (MARKERP ((X)) ? Fmarker_position (X) : (X))
699 /* Enumeration returned by some move_it_.* functions internally. */
701 enum move_it_result
703 /* Not used. Undefined value. */
704 MOVE_UNDEFINED,
706 /* Move ended at the requested buffer position or ZV. */
707 MOVE_POS_MATCH_OR_ZV,
709 /* Move ended at the requested X pixel position. */
710 MOVE_X_REACHED,
712 /* Move within a line ended at the end of a line that must be
713 continued. */
714 MOVE_LINE_CONTINUED,
716 /* Move within a line ended at the end of a line that would
717 be displayed truncated. */
718 MOVE_LINE_TRUNCATED,
720 /* Move within a line ended at a line end. */
721 MOVE_NEWLINE_OR_CR
724 /* This counter is used to clear the face cache every once in a while
725 in redisplay_internal. It is incremented for each redisplay.
726 Every CLEAR_FACE_CACHE_COUNT full redisplays, the face cache is
727 cleared. */
729 #define CLEAR_FACE_CACHE_COUNT 500
730 static int clear_face_cache_count;
732 /* Similarly for the image cache. */
734 #ifdef HAVE_WINDOW_SYSTEM
735 #define CLEAR_IMAGE_CACHE_COUNT 101
736 static int clear_image_cache_count;
738 /* Null glyph slice */
739 static struct glyph_slice null_glyph_slice = { 0, 0, 0, 0 };
740 #endif
742 /* True while redisplay_internal is in progress. */
744 bool redisplaying_p;
746 static Lisp_Object Qinhibit_free_realized_faces;
747 static Lisp_Object Qmode_line_default_help_echo;
749 /* If a string, XTread_socket generates an event to display that string.
750 (The display is done in read_char.) */
752 Lisp_Object help_echo_string;
753 Lisp_Object help_echo_window;
754 Lisp_Object help_echo_object;
755 ptrdiff_t help_echo_pos;
757 /* Temporary variable for XTread_socket. */
759 Lisp_Object previous_help_echo_string;
761 /* Platform-independent portion of hourglass implementation. */
763 /* Non-zero means an hourglass cursor is currently shown. */
764 int hourglass_shown_p;
766 /* If non-null, an asynchronous timer that, when it expires, displays
767 an hourglass cursor on all frames. */
768 struct atimer *hourglass_atimer;
770 /* Name of the face used to display glyphless characters. */
771 Lisp_Object Qglyphless_char;
773 /* Symbol for the purpose of Vglyphless_char_display. */
774 static Lisp_Object Qglyphless_char_display;
776 /* Method symbols for Vglyphless_char_display. */
777 static Lisp_Object Qhex_code, Qempty_box, Qthin_space, Qzero_width;
779 /* Default pixel width of `thin-space' display method. */
780 #define THIN_SPACE_WIDTH 1
782 /* Default number of seconds to wait before displaying an hourglass
783 cursor. */
784 #define DEFAULT_HOURGLASS_DELAY 1
787 /* Function prototypes. */
789 static void setup_for_ellipsis (struct it *, int);
790 static void set_iterator_to_next (struct it *, int);
791 static void mark_window_display_accurate_1 (struct window *, int);
792 static int single_display_spec_string_p (Lisp_Object, Lisp_Object);
793 static int display_prop_string_p (Lisp_Object, Lisp_Object);
794 static int row_for_charpos_p (struct glyph_row *, ptrdiff_t);
795 static int cursor_row_p (struct glyph_row *);
796 static int redisplay_mode_lines (Lisp_Object, int);
797 static char *decode_mode_spec_coding (Lisp_Object, char *, int);
799 static Lisp_Object get_it_property (struct it *it, Lisp_Object prop);
801 static void handle_line_prefix (struct it *);
803 static void pint2str (char *, int, ptrdiff_t);
804 static void pint2hrstr (char *, int, ptrdiff_t);
805 static struct text_pos run_window_scroll_functions (Lisp_Object,
806 struct text_pos);
807 static int text_outside_line_unchanged_p (struct window *,
808 ptrdiff_t, ptrdiff_t);
809 static void store_mode_line_noprop_char (char);
810 static int store_mode_line_noprop (const char *, int, int);
811 static void handle_stop (struct it *);
812 static void handle_stop_backwards (struct it *, ptrdiff_t);
813 static void vmessage (const char *, va_list) ATTRIBUTE_FORMAT_PRINTF (1, 0);
814 static void ensure_echo_area_buffers (void);
815 static void unwind_with_echo_area_buffer (Lisp_Object);
816 static Lisp_Object with_echo_area_buffer_unwind_data (struct window *);
817 static int with_echo_area_buffer (struct window *, int,
818 int (*) (ptrdiff_t, Lisp_Object),
819 ptrdiff_t, Lisp_Object);
820 static void clear_garbaged_frames (void);
821 static int current_message_1 (ptrdiff_t, Lisp_Object);
822 static int truncate_message_1 (ptrdiff_t, Lisp_Object);
823 static void set_message (Lisp_Object);
824 static int set_message_1 (ptrdiff_t, Lisp_Object);
825 static int display_echo_area (struct window *);
826 static int display_echo_area_1 (ptrdiff_t, Lisp_Object);
827 static int resize_mini_window_1 (ptrdiff_t, Lisp_Object);
828 static void unwind_redisplay (void);
829 static int string_char_and_length (const unsigned char *, int *);
830 static struct text_pos display_prop_end (struct it *, Lisp_Object,
831 struct text_pos);
832 static int compute_window_start_on_continuation_line (struct window *);
833 static void insert_left_trunc_glyphs (struct it *);
834 static struct glyph_row *get_overlay_arrow_glyph_row (struct window *,
835 Lisp_Object);
836 static void extend_face_to_end_of_line (struct it *);
837 static int append_space_for_newline (struct it *, int);
838 static int cursor_row_fully_visible_p (struct window *, int, int);
839 static int try_scrolling (Lisp_Object, int, ptrdiff_t, ptrdiff_t, int, int);
840 static int try_cursor_movement (Lisp_Object, struct text_pos, int *);
841 static int trailing_whitespace_p (ptrdiff_t);
842 static intmax_t message_log_check_duplicate (ptrdiff_t, ptrdiff_t);
843 static void push_it (struct it *, struct text_pos *);
844 static void iterate_out_of_display_property (struct it *);
845 static void pop_it (struct it *);
846 static void sync_frame_with_window_matrix_rows (struct window *);
847 static void redisplay_internal (void);
848 static int echo_area_display (int);
849 static void redisplay_windows (Lisp_Object);
850 static void redisplay_window (Lisp_Object, int);
851 static Lisp_Object redisplay_window_error (Lisp_Object);
852 static Lisp_Object redisplay_window_0 (Lisp_Object);
853 static Lisp_Object redisplay_window_1 (Lisp_Object);
854 static int set_cursor_from_row (struct window *, struct glyph_row *,
855 struct glyph_matrix *, ptrdiff_t, ptrdiff_t,
856 int, int);
857 static int update_menu_bar (struct frame *, int, int);
858 static int try_window_reusing_current_matrix (struct window *);
859 static int try_window_id (struct window *);
860 static int display_line (struct it *);
861 static int display_mode_lines (struct window *);
862 static int display_mode_line (struct window *, enum face_id, Lisp_Object);
863 static int display_mode_element (struct it *, int, int, int, Lisp_Object, Lisp_Object, int);
864 static int store_mode_line_string (const char *, Lisp_Object, int, int, int, Lisp_Object);
865 static const char *decode_mode_spec (struct window *, int, int, Lisp_Object *);
866 static void display_menu_bar (struct window *);
867 static ptrdiff_t display_count_lines (ptrdiff_t, ptrdiff_t, ptrdiff_t,
868 ptrdiff_t *);
869 static int display_string (const char *, Lisp_Object, Lisp_Object,
870 ptrdiff_t, ptrdiff_t, struct it *, int, int, int, int);
871 static void compute_line_metrics (struct it *);
872 static void run_redisplay_end_trigger_hook (struct it *);
873 static int get_overlay_strings (struct it *, ptrdiff_t);
874 static int get_overlay_strings_1 (struct it *, ptrdiff_t, int);
875 static void next_overlay_string (struct it *);
876 static void reseat (struct it *, struct text_pos, int);
877 static void reseat_1 (struct it *, struct text_pos, int);
878 static void back_to_previous_visible_line_start (struct it *);
879 static void reseat_at_next_visible_line_start (struct it *, int);
880 static int next_element_from_ellipsis (struct it *);
881 static int next_element_from_display_vector (struct it *);
882 static int next_element_from_string (struct it *);
883 static int next_element_from_c_string (struct it *);
884 static int next_element_from_buffer (struct it *);
885 static int next_element_from_composition (struct it *);
886 static int next_element_from_image (struct it *);
887 static int next_element_from_stretch (struct it *);
888 static void load_overlay_strings (struct it *, ptrdiff_t);
889 static int init_from_display_pos (struct it *, struct window *,
890 struct display_pos *);
891 static void reseat_to_string (struct it *, const char *,
892 Lisp_Object, ptrdiff_t, ptrdiff_t, int, int);
893 static int get_next_display_element (struct it *);
894 static enum move_it_result
895 move_it_in_display_line_to (struct it *, ptrdiff_t, int,
896 enum move_operation_enum);
897 static void get_visually_first_element (struct it *);
898 static void init_to_row_start (struct it *, struct window *,
899 struct glyph_row *);
900 static int init_to_row_end (struct it *, struct window *,
901 struct glyph_row *);
902 static void back_to_previous_line_start (struct it *);
903 static int forward_to_next_line_start (struct it *, int *, struct bidi_it *);
904 static struct text_pos string_pos_nchars_ahead (struct text_pos,
905 Lisp_Object, ptrdiff_t);
906 static struct text_pos string_pos (ptrdiff_t, Lisp_Object);
907 static struct text_pos c_string_pos (ptrdiff_t, const char *, bool);
908 static ptrdiff_t number_of_chars (const char *, bool);
909 static void compute_stop_pos (struct it *);
910 static void compute_string_pos (struct text_pos *, struct text_pos,
911 Lisp_Object);
912 static int face_before_or_after_it_pos (struct it *, int);
913 static ptrdiff_t next_overlay_change (ptrdiff_t);
914 static int handle_display_spec (struct it *, Lisp_Object, Lisp_Object,
915 Lisp_Object, struct text_pos *, ptrdiff_t, int);
916 static int handle_single_display_spec (struct it *, Lisp_Object,
917 Lisp_Object, Lisp_Object,
918 struct text_pos *, ptrdiff_t, int, int);
919 static int underlying_face_id (struct it *);
920 static int in_ellipses_for_invisible_text_p (struct display_pos *,
921 struct window *);
923 #define face_before_it_pos(IT) face_before_or_after_it_pos ((IT), 1)
924 #define face_after_it_pos(IT) face_before_or_after_it_pos ((IT), 0)
926 #ifdef HAVE_WINDOW_SYSTEM
928 static void x_consider_frame_title (Lisp_Object);
929 static int tool_bar_lines_needed (struct frame *, int *);
930 static void update_tool_bar (struct frame *, int);
931 static void build_desired_tool_bar_string (struct frame *f);
932 static int redisplay_tool_bar (struct frame *);
933 static void display_tool_bar_line (struct it *, int);
934 static void notice_overwritten_cursor (struct window *,
935 enum glyph_row_area,
936 int, int, int, int);
937 static void append_stretch_glyph (struct it *, Lisp_Object,
938 int, int, int);
941 #endif /* HAVE_WINDOW_SYSTEM */
943 static void produce_special_glyphs (struct it *, enum display_element_type);
944 static void show_mouse_face (Mouse_HLInfo *, enum draw_glyphs_face);
945 static int coords_in_mouse_face_p (struct window *, int, int);
949 /***********************************************************************
950 Window display dimensions
951 ***********************************************************************/
953 /* Return the bottom boundary y-position for text lines in window W.
954 This is the first y position at which a line cannot start.
955 It is relative to the top of the window.
957 This is the height of W minus the height of a mode line, if any. */
960 window_text_bottom_y (struct window *w)
962 int height = WINDOW_TOTAL_HEIGHT (w);
964 if (WINDOW_WANTS_MODELINE_P (w))
965 height -= CURRENT_MODE_LINE_HEIGHT (w);
966 return height;
969 /* Return the pixel width of display area AREA of window W. AREA < 0
970 means return the total width of W, not including fringes to
971 the left and right of the window. */
974 window_box_width (struct window *w, int area)
976 int cols = w->total_cols;
977 int pixels = 0;
979 if (!w->pseudo_window_p)
981 cols -= WINDOW_SCROLL_BAR_COLS (w);
983 if (area == TEXT_AREA)
985 cols -= max (0, w->left_margin_cols);
986 cols -= max (0, w->right_margin_cols);
987 pixels = -WINDOW_TOTAL_FRINGE_WIDTH (w);
989 else if (area == LEFT_MARGIN_AREA)
991 cols = max (0, w->left_margin_cols);
992 pixels = 0;
994 else if (area == RIGHT_MARGIN_AREA)
996 cols = max (0, w->right_margin_cols);
997 pixels = 0;
1001 return cols * WINDOW_FRAME_COLUMN_WIDTH (w) + pixels;
1005 /* Return the pixel height of the display area of window W, not
1006 including mode lines of W, if any. */
1009 window_box_height (struct window *w)
1011 struct frame *f = XFRAME (w->frame);
1012 int height = WINDOW_TOTAL_HEIGHT (w);
1014 eassert (height >= 0);
1016 /* Note: the code below that determines the mode-line/header-line
1017 height is essentially the same as that contained in the macro
1018 CURRENT_{MODE,HEADER}_LINE_HEIGHT, except that it checks whether
1019 the appropriate glyph row has its `mode_line_p' flag set,
1020 and if it doesn't, uses estimate_mode_line_height instead. */
1022 if (WINDOW_WANTS_MODELINE_P (w))
1024 struct glyph_row *ml_row
1025 = (w->current_matrix && w->current_matrix->rows
1026 ? MATRIX_MODE_LINE_ROW (w->current_matrix)
1027 : 0);
1028 if (ml_row && ml_row->mode_line_p)
1029 height -= ml_row->height;
1030 else
1031 height -= estimate_mode_line_height (f, CURRENT_MODE_LINE_FACE_ID (w));
1034 if (WINDOW_WANTS_HEADER_LINE_P (w))
1036 struct glyph_row *hl_row
1037 = (w->current_matrix && w->current_matrix->rows
1038 ? MATRIX_HEADER_LINE_ROW (w->current_matrix)
1039 : 0);
1040 if (hl_row && hl_row->mode_line_p)
1041 height -= hl_row->height;
1042 else
1043 height -= estimate_mode_line_height (f, HEADER_LINE_FACE_ID);
1046 /* With a very small font and a mode-line that's taller than
1047 default, we might end up with a negative height. */
1048 return max (0, height);
1051 /* Return the window-relative coordinate of the left edge of display
1052 area AREA of window W. AREA < 0 means return the left edge of the
1053 whole window, to the right of the left fringe of W. */
1056 window_box_left_offset (struct window *w, int area)
1058 int x;
1060 if (w->pseudo_window_p)
1061 return 0;
1063 x = WINDOW_LEFT_SCROLL_BAR_AREA_WIDTH (w);
1065 if (area == TEXT_AREA)
1066 x += (WINDOW_LEFT_FRINGE_WIDTH (w)
1067 + window_box_width (w, LEFT_MARGIN_AREA));
1068 else if (area == RIGHT_MARGIN_AREA)
1069 x += (WINDOW_LEFT_FRINGE_WIDTH (w)
1070 + window_box_width (w, LEFT_MARGIN_AREA)
1071 + window_box_width (w, TEXT_AREA)
1072 + (WINDOW_HAS_FRINGES_OUTSIDE_MARGINS (w)
1074 : WINDOW_RIGHT_FRINGE_WIDTH (w)));
1075 else if (area == LEFT_MARGIN_AREA
1076 && WINDOW_HAS_FRINGES_OUTSIDE_MARGINS (w))
1077 x += WINDOW_LEFT_FRINGE_WIDTH (w);
1079 return x;
1083 /* Return the window-relative coordinate of the right edge of display
1084 area AREA of window W. AREA < 0 means return the right edge of the
1085 whole window, to the left of the right fringe of W. */
1088 window_box_right_offset (struct window *w, int area)
1090 return window_box_left_offset (w, area) + window_box_width (w, area);
1093 /* Return the frame-relative coordinate of the left edge of display
1094 area AREA of window W. AREA < 0 means return the left edge of the
1095 whole window, to the right of the left fringe of W. */
1098 window_box_left (struct window *w, int area)
1100 struct frame *f = XFRAME (w->frame);
1101 int x;
1103 if (w->pseudo_window_p)
1104 return FRAME_INTERNAL_BORDER_WIDTH (f);
1106 x = (WINDOW_LEFT_EDGE_X (w)
1107 + window_box_left_offset (w, area));
1109 return x;
1113 /* Return the frame-relative coordinate of the right edge of display
1114 area AREA of window W. AREA < 0 means return the right edge of the
1115 whole window, to the left of the right fringe of W. */
1118 window_box_right (struct window *w, int area)
1120 return window_box_left (w, area) + window_box_width (w, area);
1123 /* Get the bounding box of the display area AREA of window W, without
1124 mode lines, in frame-relative coordinates. AREA < 0 means the
1125 whole window, not including the left and right fringes of
1126 the window. Return in *BOX_X and *BOX_Y the frame-relative pixel
1127 coordinates of the upper-left corner of the box. Return in
1128 *BOX_WIDTH, and *BOX_HEIGHT the pixel width and height of the box. */
1130 void
1131 window_box (struct window *w, int area, int *box_x, int *box_y,
1132 int *box_width, int *box_height)
1134 if (box_width)
1135 *box_width = window_box_width (w, area);
1136 if (box_height)
1137 *box_height = window_box_height (w);
1138 if (box_x)
1139 *box_x = window_box_left (w, area);
1140 if (box_y)
1142 *box_y = WINDOW_TOP_EDGE_Y (w);
1143 if (WINDOW_WANTS_HEADER_LINE_P (w))
1144 *box_y += CURRENT_HEADER_LINE_HEIGHT (w);
1149 /* Get the bounding box of the display area AREA of window W, without
1150 mode lines. AREA < 0 means the whole window, not including the
1151 left and right fringe of the window. Return in *TOP_LEFT_X
1152 and TOP_LEFT_Y the frame-relative pixel coordinates of the
1153 upper-left corner of the box. Return in *BOTTOM_RIGHT_X, and
1154 *BOTTOM_RIGHT_Y the coordinates of the bottom-right corner of the
1155 box. */
1157 static void
1158 window_box_edges (struct window *w, int area, int *top_left_x, int *top_left_y,
1159 int *bottom_right_x, int *bottom_right_y)
1161 window_box (w, area, top_left_x, top_left_y, bottom_right_x,
1162 bottom_right_y);
1163 *bottom_right_x += *top_left_x;
1164 *bottom_right_y += *top_left_y;
1169 /***********************************************************************
1170 Utilities
1171 ***********************************************************************/
1173 /* Return the bottom y-position of the line the iterator IT is in.
1174 This can modify IT's settings. */
1177 line_bottom_y (struct it *it)
1179 int line_height = it->max_ascent + it->max_descent;
1180 int line_top_y = it->current_y;
1182 if (line_height == 0)
1184 if (last_height)
1185 line_height = last_height;
1186 else if (IT_CHARPOS (*it) < ZV)
1188 move_it_by_lines (it, 1);
1189 line_height = (it->max_ascent || it->max_descent
1190 ? it->max_ascent + it->max_descent
1191 : last_height);
1193 else
1195 struct glyph_row *row = it->glyph_row;
1197 /* Use the default character height. */
1198 it->glyph_row = NULL;
1199 it->what = IT_CHARACTER;
1200 it->c = ' ';
1201 it->len = 1;
1202 PRODUCE_GLYPHS (it);
1203 line_height = it->ascent + it->descent;
1204 it->glyph_row = row;
1208 return line_top_y + line_height;
1211 DEFUN ("line-pixel-height", Fline_pixel_height,
1212 Sline_pixel_height, 0, 0, 0,
1213 doc: /* Return height in pixels of text line in the selected window.
1215 Value is the height in pixels of the line at point. */)
1216 (void)
1218 struct it it;
1219 struct text_pos pt;
1220 struct window *w = XWINDOW (selected_window);
1222 SET_TEXT_POS (pt, PT, PT_BYTE);
1223 start_display (&it, w, pt);
1224 it.vpos = it.current_y = 0;
1225 last_height = 0;
1226 return make_number (line_bottom_y (&it));
1229 /* Return the default pixel height of text lines in window W. The
1230 value is the canonical height of the W frame's default font, plus
1231 any extra space required by the line-spacing variable or frame
1232 parameter.
1234 Implementation note: this ignores any line-spacing text properties
1235 put on the newline characters. This is because those properties
1236 only affect the _screen_ line ending in the newline (i.e., in a
1237 continued line, only the last screen line will be affected), which
1238 means only a small number of lines in a buffer can ever use this
1239 feature. Since this function is used to compute the default pixel
1240 equivalent of text lines in a window, we can safely ignore those
1241 few lines. For the same reasons, we ignore the line-height
1242 properties. */
1244 default_line_pixel_height (struct window *w)
1246 struct frame *f = WINDOW_XFRAME (w);
1247 int height = FRAME_LINE_HEIGHT (f);
1249 if (!FRAME_INITIAL_P (f) && BUFFERP (w->contents))
1251 struct buffer *b = XBUFFER (w->contents);
1252 Lisp_Object val = BVAR (b, extra_line_spacing);
1254 if (NILP (val))
1255 val = BVAR (&buffer_defaults, extra_line_spacing);
1256 if (!NILP (val))
1258 if (RANGED_INTEGERP (0, val, INT_MAX))
1259 height += XFASTINT (val);
1260 else if (FLOATP (val))
1262 int addon = XFLOAT_DATA (val) * height + 0.5;
1264 if (addon >= 0)
1265 height += addon;
1268 else
1269 height += f->extra_line_spacing;
1272 return height;
1275 /* Subroutine of pos_visible_p below. Extracts a display string, if
1276 any, from the display spec given as its argument. */
1277 static Lisp_Object
1278 string_from_display_spec (Lisp_Object spec)
1280 if (CONSP (spec))
1282 while (CONSP (spec))
1284 if (STRINGP (XCAR (spec)))
1285 return XCAR (spec);
1286 spec = XCDR (spec);
1289 else if (VECTORP (spec))
1291 ptrdiff_t i;
1293 for (i = 0; i < ASIZE (spec); i++)
1295 if (STRINGP (AREF (spec, i)))
1296 return AREF (spec, i);
1298 return Qnil;
1301 return spec;
1305 /* Limit insanely large values of W->hscroll on frame F to the largest
1306 value that will still prevent first_visible_x and last_visible_x of
1307 'struct it' from overflowing an int. */
1308 static int
1309 window_hscroll_limited (struct window *w, struct frame *f)
1311 ptrdiff_t window_hscroll = w->hscroll;
1312 int window_text_width = window_box_width (w, TEXT_AREA);
1313 int colwidth = FRAME_COLUMN_WIDTH (f);
1315 if (window_hscroll > (INT_MAX - window_text_width) / colwidth - 1)
1316 window_hscroll = (INT_MAX - window_text_width) / colwidth - 1;
1318 return window_hscroll;
1321 /* Return 1 if position CHARPOS is visible in window W.
1322 CHARPOS < 0 means return info about WINDOW_END position.
1323 If visible, set *X and *Y to pixel coordinates of top left corner.
1324 Set *RTOP and *RBOT to pixel height of an invisible area of glyph at POS.
1325 Set *ROWH and *VPOS to row's visible height and VPOS (row number). */
1328 pos_visible_p (struct window *w, ptrdiff_t charpos, int *x, int *y,
1329 int *rtop, int *rbot, int *rowh, int *vpos)
1331 struct it it;
1332 void *itdata = bidi_shelve_cache ();
1333 struct text_pos top;
1334 int visible_p = 0;
1335 struct buffer *old_buffer = NULL;
1337 if (FRAME_INITIAL_P (XFRAME (WINDOW_FRAME (w))))
1338 return visible_p;
1340 if (XBUFFER (w->contents) != current_buffer)
1342 old_buffer = current_buffer;
1343 set_buffer_internal_1 (XBUFFER (w->contents));
1346 SET_TEXT_POS_FROM_MARKER (top, w->start);
1347 /* Scrolling a minibuffer window via scroll bar when the echo area
1348 shows long text sometimes resets the minibuffer contents behind
1349 our backs. */
1350 if (CHARPOS (top) > ZV)
1351 SET_TEXT_POS (top, BEGV, BEGV_BYTE);
1353 /* Compute exact mode line heights. */
1354 if (WINDOW_WANTS_MODELINE_P (w))
1355 current_mode_line_height
1356 = display_mode_line (w, CURRENT_MODE_LINE_FACE_ID (w),
1357 BVAR (current_buffer, mode_line_format));
1359 if (WINDOW_WANTS_HEADER_LINE_P (w))
1360 current_header_line_height
1361 = display_mode_line (w, HEADER_LINE_FACE_ID,
1362 BVAR (current_buffer, header_line_format));
1364 start_display (&it, w, top);
1365 move_it_to (&it, charpos, -1, it.last_visible_y - 1, -1,
1366 (charpos >= 0 ? MOVE_TO_POS : 0) | MOVE_TO_Y);
1368 if (charpos >= 0
1369 && (((!it.bidi_p || it.bidi_it.scan_dir == 1)
1370 && IT_CHARPOS (it) >= charpos)
1371 /* When scanning backwards under bidi iteration, move_it_to
1372 stops at or _before_ CHARPOS, because it stops at or to
1373 the _right_ of the character at CHARPOS. */
1374 || (it.bidi_p && it.bidi_it.scan_dir == -1
1375 && IT_CHARPOS (it) <= charpos)))
1377 /* We have reached CHARPOS, or passed it. How the call to
1378 move_it_to can overshoot: (i) If CHARPOS is on invisible text
1379 or covered by a display property, move_it_to stops at the end
1380 of the invisible text, to the right of CHARPOS. (ii) If
1381 CHARPOS is in a display vector, move_it_to stops on its last
1382 glyph. */
1383 int top_x = it.current_x;
1384 int top_y = it.current_y;
1385 /* Calling line_bottom_y may change it.method, it.position, etc. */
1386 enum it_method it_method = it.method;
1387 int bottom_y = (last_height = 0, line_bottom_y (&it));
1388 int window_top_y = WINDOW_HEADER_LINE_HEIGHT (w);
1390 if (top_y < window_top_y)
1391 visible_p = bottom_y > window_top_y;
1392 else if (top_y < it.last_visible_y)
1393 visible_p = 1;
1394 if (bottom_y >= it.last_visible_y
1395 && it.bidi_p && it.bidi_it.scan_dir == -1
1396 && IT_CHARPOS (it) < charpos)
1398 /* When the last line of the window is scanned backwards
1399 under bidi iteration, we could be duped into thinking
1400 that we have passed CHARPOS, when in fact move_it_to
1401 simply stopped short of CHARPOS because it reached
1402 last_visible_y. To see if that's what happened, we call
1403 move_it_to again with a slightly larger vertical limit,
1404 and see if it actually moved vertically; if it did, we
1405 didn't really reach CHARPOS, which is beyond window end. */
1406 struct it save_it = it;
1407 /* Why 10? because we don't know how many canonical lines
1408 will the height of the next line(s) be. So we guess. */
1409 int ten_more_lines = 10 * default_line_pixel_height (w);
1411 move_it_to (&it, charpos, -1, bottom_y + ten_more_lines, -1,
1412 MOVE_TO_POS | MOVE_TO_Y);
1413 if (it.current_y > top_y)
1414 visible_p = 0;
1416 it = save_it;
1418 if (visible_p)
1420 if (it_method == GET_FROM_DISPLAY_VECTOR)
1422 /* We stopped on the last glyph of a display vector.
1423 Try and recompute. Hack alert! */
1424 if (charpos < 2 || top.charpos >= charpos)
1425 top_x = it.glyph_row->x;
1426 else
1428 struct it it2, it2_prev;
1429 /* The idea is to get to the previous buffer
1430 position, consume the character there, and use
1431 the pixel coordinates we get after that. But if
1432 the previous buffer position is also displayed
1433 from a display vector, we need to consume all of
1434 the glyphs from that display vector. */
1435 start_display (&it2, w, top);
1436 move_it_to (&it2, charpos - 1, -1, -1, -1, MOVE_TO_POS);
1437 /* If we didn't get to CHARPOS - 1, there's some
1438 replacing display property at that position, and
1439 we stopped after it. That is exactly the place
1440 whose coordinates we want. */
1441 if (IT_CHARPOS (it2) != charpos - 1)
1442 it2_prev = it2;
1443 else
1445 /* Iterate until we get out of the display
1446 vector that displays the character at
1447 CHARPOS - 1. */
1448 do {
1449 get_next_display_element (&it2);
1450 PRODUCE_GLYPHS (&it2);
1451 it2_prev = it2;
1452 set_iterator_to_next (&it2, 1);
1453 } while (it2.method == GET_FROM_DISPLAY_VECTOR
1454 && IT_CHARPOS (it2) < charpos);
1456 if (ITERATOR_AT_END_OF_LINE_P (&it2_prev)
1457 || it2_prev.current_x > it2_prev.last_visible_x)
1458 top_x = it.glyph_row->x;
1459 else
1461 top_x = it2_prev.current_x;
1462 top_y = it2_prev.current_y;
1466 else if (IT_CHARPOS (it) != charpos)
1468 Lisp_Object cpos = make_number (charpos);
1469 Lisp_Object spec = Fget_char_property (cpos, Qdisplay, Qnil);
1470 Lisp_Object string = string_from_display_spec (spec);
1471 struct text_pos tpos;
1472 int replacing_spec_p;
1473 bool newline_in_string
1474 = (STRINGP (string)
1475 && memchr (SDATA (string), '\n', SBYTES (string)));
1477 SET_TEXT_POS (tpos, charpos, CHAR_TO_BYTE (charpos));
1478 replacing_spec_p
1479 = (!NILP (spec)
1480 && handle_display_spec (NULL, spec, Qnil, Qnil, &tpos,
1481 charpos, FRAME_WINDOW_P (it.f)));
1482 /* The tricky code below is needed because there's a
1483 discrepancy between move_it_to and how we set cursor
1484 when PT is at the beginning of a portion of text
1485 covered by a display property or an overlay with a
1486 display property, or the display line ends in a
1487 newline from a display string. move_it_to will stop
1488 _after_ such display strings, whereas
1489 set_cursor_from_row conspires with cursor_row_p to
1490 place the cursor on the first glyph produced from the
1491 display string. */
1493 /* We have overshoot PT because it is covered by a
1494 display property that replaces the text it covers.
1495 If the string includes embedded newlines, we are also
1496 in the wrong display line. Backtrack to the correct
1497 line, where the display property begins. */
1498 if (replacing_spec_p)
1500 Lisp_Object startpos, endpos;
1501 EMACS_INT start, end;
1502 struct it it3;
1503 int it3_moved;
1505 /* Find the first and the last buffer positions
1506 covered by the display string. */
1507 endpos =
1508 Fnext_single_char_property_change (cpos, Qdisplay,
1509 Qnil, Qnil);
1510 startpos =
1511 Fprevious_single_char_property_change (endpos, Qdisplay,
1512 Qnil, Qnil);
1513 start = XFASTINT (startpos);
1514 end = XFASTINT (endpos);
1515 /* Move to the last buffer position before the
1516 display property. */
1517 start_display (&it3, w, top);
1518 move_it_to (&it3, start - 1, -1, -1, -1, MOVE_TO_POS);
1519 /* Move forward one more line if the position before
1520 the display string is a newline or if it is the
1521 rightmost character on a line that is
1522 continued or word-wrapped. */
1523 if (it3.method == GET_FROM_BUFFER
1524 && (it3.c == '\n'
1525 || FETCH_BYTE (IT_BYTEPOS (it3)) == '\n'))
1526 move_it_by_lines (&it3, 1);
1527 else if (move_it_in_display_line_to (&it3, -1,
1528 it3.current_x
1529 + it3.pixel_width,
1530 MOVE_TO_X)
1531 == MOVE_LINE_CONTINUED)
1533 move_it_by_lines (&it3, 1);
1534 /* When we are under word-wrap, the #$@%!
1535 move_it_by_lines moves 2 lines, so we need to
1536 fix that up. */
1537 if (it3.line_wrap == WORD_WRAP)
1538 move_it_by_lines (&it3, -1);
1541 /* Record the vertical coordinate of the display
1542 line where we wound up. */
1543 top_y = it3.current_y;
1544 if (it3.bidi_p)
1546 /* When characters are reordered for display,
1547 the character displayed to the left of the
1548 display string could be _after_ the display
1549 property in the logical order. Use the
1550 smallest vertical position of these two. */
1551 start_display (&it3, w, top);
1552 move_it_to (&it3, end + 1, -1, -1, -1, MOVE_TO_POS);
1553 if (it3.current_y < top_y)
1554 top_y = it3.current_y;
1556 /* Move from the top of the window to the beginning
1557 of the display line where the display string
1558 begins. */
1559 start_display (&it3, w, top);
1560 move_it_to (&it3, -1, 0, top_y, -1, MOVE_TO_X | MOVE_TO_Y);
1561 /* If it3_moved stays zero after the 'while' loop
1562 below, that means we already were at a newline
1563 before the loop (e.g., the display string begins
1564 with a newline), so we don't need to (and cannot)
1565 inspect the glyphs of it3.glyph_row, because
1566 PRODUCE_GLYPHS will not produce anything for a
1567 newline, and thus it3.glyph_row stays at its
1568 stale content it got at top of the window. */
1569 it3_moved = 0;
1570 /* Finally, advance the iterator until we hit the
1571 first display element whose character position is
1572 CHARPOS, or until the first newline from the
1573 display string, which signals the end of the
1574 display line. */
1575 while (get_next_display_element (&it3))
1577 PRODUCE_GLYPHS (&it3);
1578 if (IT_CHARPOS (it3) == charpos
1579 || ITERATOR_AT_END_OF_LINE_P (&it3))
1580 break;
1581 it3_moved = 1;
1582 set_iterator_to_next (&it3, 0);
1584 top_x = it3.current_x - it3.pixel_width;
1585 /* Normally, we would exit the above loop because we
1586 found the display element whose character
1587 position is CHARPOS. For the contingency that we
1588 didn't, and stopped at the first newline from the
1589 display string, move back over the glyphs
1590 produced from the string, until we find the
1591 rightmost glyph not from the string. */
1592 if (it3_moved
1593 && newline_in_string
1594 && IT_CHARPOS (it3) != charpos && EQ (it3.object, string))
1596 struct glyph *g = it3.glyph_row->glyphs[TEXT_AREA]
1597 + it3.glyph_row->used[TEXT_AREA];
1599 while (EQ ((g - 1)->object, string))
1601 --g;
1602 top_x -= g->pixel_width;
1604 eassert (g < it3.glyph_row->glyphs[TEXT_AREA]
1605 + it3.glyph_row->used[TEXT_AREA]);
1610 *x = top_x;
1611 *y = max (top_y + max (0, it.max_ascent - it.ascent), window_top_y);
1612 *rtop = max (0, window_top_y - top_y);
1613 *rbot = max (0, bottom_y - it.last_visible_y);
1614 *rowh = max (0, (min (bottom_y, it.last_visible_y)
1615 - max (top_y, window_top_y)));
1616 *vpos = it.vpos;
1619 else
1621 /* We were asked to provide info about WINDOW_END. */
1622 struct it it2;
1623 void *it2data = NULL;
1625 SAVE_IT (it2, it, it2data);
1626 if (IT_CHARPOS (it) < ZV && FETCH_BYTE (IT_BYTEPOS (it)) != '\n')
1627 move_it_by_lines (&it, 1);
1628 if (charpos < IT_CHARPOS (it)
1629 || (it.what == IT_EOB && charpos == IT_CHARPOS (it)))
1631 visible_p = 1;
1632 RESTORE_IT (&it2, &it2, it2data);
1633 move_it_to (&it2, charpos, -1, -1, -1, MOVE_TO_POS);
1634 *x = it2.current_x;
1635 *y = it2.current_y + it2.max_ascent - it2.ascent;
1636 *rtop = max (0, -it2.current_y);
1637 *rbot = max (0, ((it2.current_y + it2.max_ascent + it2.max_descent)
1638 - it.last_visible_y));
1639 *rowh = max (0, (min (it2.current_y + it2.max_ascent + it2.max_descent,
1640 it.last_visible_y)
1641 - max (it2.current_y,
1642 WINDOW_HEADER_LINE_HEIGHT (w))));
1643 *vpos = it2.vpos;
1645 else
1646 bidi_unshelve_cache (it2data, 1);
1648 bidi_unshelve_cache (itdata, 0);
1650 if (old_buffer)
1651 set_buffer_internal_1 (old_buffer);
1653 current_header_line_height = current_mode_line_height = -1;
1655 if (visible_p && w->hscroll > 0)
1656 *x -=
1657 window_hscroll_limited (w, WINDOW_XFRAME (w))
1658 * WINDOW_FRAME_COLUMN_WIDTH (w);
1660 #if 0
1661 /* Debugging code. */
1662 if (visible_p)
1663 fprintf (stderr, "+pv pt=%d vs=%d --> x=%d y=%d rt=%d rb=%d rh=%d vp=%d\n",
1664 charpos, w->vscroll, *x, *y, *rtop, *rbot, *rowh, *vpos);
1665 else
1666 fprintf (stderr, "-pv pt=%d vs=%d\n", charpos, w->vscroll);
1667 #endif
1669 return visible_p;
1673 /* Return the next character from STR. Return in *LEN the length of
1674 the character. This is like STRING_CHAR_AND_LENGTH but never
1675 returns an invalid character. If we find one, we return a `?', but
1676 with the length of the invalid character. */
1678 static int
1679 string_char_and_length (const unsigned char *str, int *len)
1681 int c;
1683 c = STRING_CHAR_AND_LENGTH (str, *len);
1684 if (!CHAR_VALID_P (c))
1685 /* We may not change the length here because other places in Emacs
1686 don't use this function, i.e. they silently accept invalid
1687 characters. */
1688 c = '?';
1690 return c;
1695 /* Given a position POS containing a valid character and byte position
1696 in STRING, return the position NCHARS ahead (NCHARS >= 0). */
1698 static struct text_pos
1699 string_pos_nchars_ahead (struct text_pos pos, Lisp_Object string, ptrdiff_t nchars)
1701 eassert (STRINGP (string) && nchars >= 0);
1703 if (STRING_MULTIBYTE (string))
1705 const unsigned char *p = SDATA (string) + BYTEPOS (pos);
1706 int len;
1708 while (nchars--)
1710 string_char_and_length (p, &len);
1711 p += len;
1712 CHARPOS (pos) += 1;
1713 BYTEPOS (pos) += len;
1716 else
1717 SET_TEXT_POS (pos, CHARPOS (pos) + nchars, BYTEPOS (pos) + nchars);
1719 return pos;
1723 /* Value is the text position, i.e. character and byte position,
1724 for character position CHARPOS in STRING. */
1726 static struct text_pos
1727 string_pos (ptrdiff_t charpos, Lisp_Object string)
1729 struct text_pos pos;
1730 eassert (STRINGP (string));
1731 eassert (charpos >= 0);
1732 SET_TEXT_POS (pos, charpos, string_char_to_byte (string, charpos));
1733 return pos;
1737 /* Value is a text position, i.e. character and byte position, for
1738 character position CHARPOS in C string S. MULTIBYTE_P non-zero
1739 means recognize multibyte characters. */
1741 static struct text_pos
1742 c_string_pos (ptrdiff_t charpos, const char *s, bool multibyte_p)
1744 struct text_pos pos;
1746 eassert (s != NULL);
1747 eassert (charpos >= 0);
1749 if (multibyte_p)
1751 int len;
1753 SET_TEXT_POS (pos, 0, 0);
1754 while (charpos--)
1756 string_char_and_length ((const unsigned char *) s, &len);
1757 s += len;
1758 CHARPOS (pos) += 1;
1759 BYTEPOS (pos) += len;
1762 else
1763 SET_TEXT_POS (pos, charpos, charpos);
1765 return pos;
1769 /* Value is the number of characters in C string S. MULTIBYTE_P
1770 non-zero means recognize multibyte characters. */
1772 static ptrdiff_t
1773 number_of_chars (const char *s, bool multibyte_p)
1775 ptrdiff_t nchars;
1777 if (multibyte_p)
1779 ptrdiff_t rest = strlen (s);
1780 int len;
1781 const unsigned char *p = (const unsigned char *) s;
1783 for (nchars = 0; rest > 0; ++nchars)
1785 string_char_and_length (p, &len);
1786 rest -= len, p += len;
1789 else
1790 nchars = strlen (s);
1792 return nchars;
1796 /* Compute byte position NEWPOS->bytepos corresponding to
1797 NEWPOS->charpos. POS is a known position in string STRING.
1798 NEWPOS->charpos must be >= POS.charpos. */
1800 static void
1801 compute_string_pos (struct text_pos *newpos, struct text_pos pos, Lisp_Object string)
1803 eassert (STRINGP (string));
1804 eassert (CHARPOS (*newpos) >= CHARPOS (pos));
1806 if (STRING_MULTIBYTE (string))
1807 *newpos = string_pos_nchars_ahead (pos, string,
1808 CHARPOS (*newpos) - CHARPOS (pos));
1809 else
1810 BYTEPOS (*newpos) = CHARPOS (*newpos);
1813 /* EXPORT:
1814 Return an estimation of the pixel height of mode or header lines on
1815 frame F. FACE_ID specifies what line's height to estimate. */
1818 estimate_mode_line_height (struct frame *f, enum face_id face_id)
1820 #ifdef HAVE_WINDOW_SYSTEM
1821 if (FRAME_WINDOW_P (f))
1823 int height = FONT_HEIGHT (FRAME_FONT (f));
1825 /* This function is called so early when Emacs starts that the face
1826 cache and mode line face are not yet initialized. */
1827 if (FRAME_FACE_CACHE (f))
1829 struct face *face = FACE_FROM_ID (f, face_id);
1830 if (face)
1832 if (face->font)
1833 height = FONT_HEIGHT (face->font);
1834 if (face->box_line_width > 0)
1835 height += 2 * face->box_line_width;
1839 return height;
1841 #endif
1843 return 1;
1846 /* Given a pixel position (PIX_X, PIX_Y) on frame F, return glyph
1847 co-ordinates in (*X, *Y). Set *BOUNDS to the rectangle that the
1848 glyph at X, Y occupies, if BOUNDS != 0. If NOCLIP is non-zero, do
1849 not force the value into range. */
1851 void
1852 pixel_to_glyph_coords (struct frame *f, register int pix_x, register int pix_y,
1853 int *x, int *y, NativeRectangle *bounds, int noclip)
1856 #ifdef HAVE_WINDOW_SYSTEM
1857 if (FRAME_WINDOW_P (f))
1859 /* Arrange for the division in FRAME_PIXEL_X_TO_COL etc. to round down
1860 even for negative values. */
1861 if (pix_x < 0)
1862 pix_x -= FRAME_COLUMN_WIDTH (f) - 1;
1863 if (pix_y < 0)
1864 pix_y -= FRAME_LINE_HEIGHT (f) - 1;
1866 pix_x = FRAME_PIXEL_X_TO_COL (f, pix_x);
1867 pix_y = FRAME_PIXEL_Y_TO_LINE (f, pix_y);
1869 if (bounds)
1870 STORE_NATIVE_RECT (*bounds,
1871 FRAME_COL_TO_PIXEL_X (f, pix_x),
1872 FRAME_LINE_TO_PIXEL_Y (f, pix_y),
1873 FRAME_COLUMN_WIDTH (f) - 1,
1874 FRAME_LINE_HEIGHT (f) - 1);
1876 if (!noclip)
1878 if (pix_x < 0)
1879 pix_x = 0;
1880 else if (pix_x > FRAME_TOTAL_COLS (f))
1881 pix_x = FRAME_TOTAL_COLS (f);
1883 if (pix_y < 0)
1884 pix_y = 0;
1885 else if (pix_y > FRAME_LINES (f))
1886 pix_y = FRAME_LINES (f);
1889 #endif
1891 *x = pix_x;
1892 *y = pix_y;
1896 /* Find the glyph under window-relative coordinates X/Y in window W.
1897 Consider only glyphs from buffer text, i.e. no glyphs from overlay
1898 strings. Return in *HPOS and *VPOS the row and column number of
1899 the glyph found. Return in *AREA the glyph area containing X.
1900 Value is a pointer to the glyph found or null if X/Y is not on
1901 text, or we can't tell because W's current matrix is not up to
1902 date. */
1904 static
1905 struct glyph *
1906 x_y_to_hpos_vpos (struct window *w, int x, int y, int *hpos, int *vpos,
1907 int *dx, int *dy, int *area)
1909 struct glyph *glyph, *end;
1910 struct glyph_row *row = NULL;
1911 int x0, i;
1913 /* Find row containing Y. Give up if some row is not enabled. */
1914 for (i = 0; i < w->current_matrix->nrows; ++i)
1916 row = MATRIX_ROW (w->current_matrix, i);
1917 if (!row->enabled_p)
1918 return NULL;
1919 if (y >= row->y && y < MATRIX_ROW_BOTTOM_Y (row))
1920 break;
1923 *vpos = i;
1924 *hpos = 0;
1926 /* Give up if Y is not in the window. */
1927 if (i == w->current_matrix->nrows)
1928 return NULL;
1930 /* Get the glyph area containing X. */
1931 if (w->pseudo_window_p)
1933 *area = TEXT_AREA;
1934 x0 = 0;
1936 else
1938 if (x < window_box_left_offset (w, TEXT_AREA))
1940 *area = LEFT_MARGIN_AREA;
1941 x0 = window_box_left_offset (w, LEFT_MARGIN_AREA);
1943 else if (x < window_box_right_offset (w, TEXT_AREA))
1945 *area = TEXT_AREA;
1946 x0 = window_box_left_offset (w, TEXT_AREA) + min (row->x, 0);
1948 else
1950 *area = RIGHT_MARGIN_AREA;
1951 x0 = window_box_left_offset (w, RIGHT_MARGIN_AREA);
1955 /* Find glyph containing X. */
1956 glyph = row->glyphs[*area];
1957 end = glyph + row->used[*area];
1958 x -= x0;
1959 while (glyph < end && x >= glyph->pixel_width)
1961 x -= glyph->pixel_width;
1962 ++glyph;
1965 if (glyph == end)
1966 return NULL;
1968 if (dx)
1970 *dx = x;
1971 *dy = y - (row->y + row->ascent - glyph->ascent);
1974 *hpos = glyph - row->glyphs[*area];
1975 return glyph;
1978 /* Convert frame-relative x/y to coordinates relative to window W.
1979 Takes pseudo-windows into account. */
1981 static void
1982 frame_to_window_pixel_xy (struct window *w, int *x, int *y)
1984 if (w->pseudo_window_p)
1986 /* A pseudo-window is always full-width, and starts at the
1987 left edge of the frame, plus a frame border. */
1988 struct frame *f = XFRAME (w->frame);
1989 *x -= FRAME_INTERNAL_BORDER_WIDTH (f);
1990 *y = FRAME_TO_WINDOW_PIXEL_Y (w, *y);
1992 else
1994 *x -= WINDOW_LEFT_EDGE_X (w);
1995 *y = FRAME_TO_WINDOW_PIXEL_Y (w, *y);
1999 #ifdef HAVE_WINDOW_SYSTEM
2001 /* EXPORT:
2002 Return in RECTS[] at most N clipping rectangles for glyph string S.
2003 Return the number of stored rectangles. */
2006 get_glyph_string_clip_rects (struct glyph_string *s, NativeRectangle *rects, int n)
2008 XRectangle r;
2010 if (n <= 0)
2011 return 0;
2013 if (s->row->full_width_p)
2015 /* Draw full-width. X coordinates are relative to S->w->left_col. */
2016 r.x = WINDOW_LEFT_EDGE_X (s->w);
2017 r.width = WINDOW_TOTAL_WIDTH (s->w);
2019 /* Unless displaying a mode or menu bar line, which are always
2020 fully visible, clip to the visible part of the row. */
2021 if (s->w->pseudo_window_p)
2022 r.height = s->row->visible_height;
2023 else
2024 r.height = s->height;
2026 else
2028 /* This is a text line that may be partially visible. */
2029 r.x = window_box_left (s->w, s->area);
2030 r.width = window_box_width (s->w, s->area);
2031 r.height = s->row->visible_height;
2034 if (s->clip_head)
2035 if (r.x < s->clip_head->x)
2037 if (r.width >= s->clip_head->x - r.x)
2038 r.width -= s->clip_head->x - r.x;
2039 else
2040 r.width = 0;
2041 r.x = s->clip_head->x;
2043 if (s->clip_tail)
2044 if (r.x + r.width > s->clip_tail->x + s->clip_tail->background_width)
2046 if (s->clip_tail->x + s->clip_tail->background_width >= r.x)
2047 r.width = s->clip_tail->x + s->clip_tail->background_width - r.x;
2048 else
2049 r.width = 0;
2052 /* If S draws overlapping rows, it's sufficient to use the top and
2053 bottom of the window for clipping because this glyph string
2054 intentionally draws over other lines. */
2055 if (s->for_overlaps)
2057 r.y = WINDOW_HEADER_LINE_HEIGHT (s->w);
2058 r.height = window_text_bottom_y (s->w) - r.y;
2060 /* Alas, the above simple strategy does not work for the
2061 environments with anti-aliased text: if the same text is
2062 drawn onto the same place multiple times, it gets thicker.
2063 If the overlap we are processing is for the erased cursor, we
2064 take the intersection with the rectangle of the cursor. */
2065 if (s->for_overlaps & OVERLAPS_ERASED_CURSOR)
2067 XRectangle rc, r_save = r;
2069 rc.x = WINDOW_TEXT_TO_FRAME_PIXEL_X (s->w, s->w->phys_cursor.x);
2070 rc.y = s->w->phys_cursor.y;
2071 rc.width = s->w->phys_cursor_width;
2072 rc.height = s->w->phys_cursor_height;
2074 x_intersect_rectangles (&r_save, &rc, &r);
2077 else
2079 /* Don't use S->y for clipping because it doesn't take partially
2080 visible lines into account. For example, it can be negative for
2081 partially visible lines at the top of a window. */
2082 if (!s->row->full_width_p
2083 && MATRIX_ROW_PARTIALLY_VISIBLE_AT_TOP_P (s->w, s->row))
2084 r.y = WINDOW_HEADER_LINE_HEIGHT (s->w);
2085 else
2086 r.y = max (0, s->row->y);
2089 r.y = WINDOW_TO_FRAME_PIXEL_Y (s->w, r.y);
2091 /* If drawing the cursor, don't let glyph draw outside its
2092 advertised boundaries. Cleartype does this under some circumstances. */
2093 if (s->hl == DRAW_CURSOR)
2095 struct glyph *glyph = s->first_glyph;
2096 int height, max_y;
2098 if (s->x > r.x)
2100 r.width -= s->x - r.x;
2101 r.x = s->x;
2103 r.width = min (r.width, glyph->pixel_width);
2105 /* If r.y is below window bottom, ensure that we still see a cursor. */
2106 height = min (glyph->ascent + glyph->descent,
2107 min (FRAME_LINE_HEIGHT (s->f), s->row->visible_height));
2108 max_y = window_text_bottom_y (s->w) - height;
2109 max_y = WINDOW_TO_FRAME_PIXEL_Y (s->w, max_y);
2110 if (s->ybase - glyph->ascent > max_y)
2112 r.y = max_y;
2113 r.height = height;
2115 else
2117 /* Don't draw cursor glyph taller than our actual glyph. */
2118 height = max (FRAME_LINE_HEIGHT (s->f), glyph->ascent + glyph->descent);
2119 if (height < r.height)
2121 max_y = r.y + r.height;
2122 r.y = min (max_y, max (r.y, s->ybase + glyph->descent - height));
2123 r.height = min (max_y - r.y, height);
2128 if (s->row->clip)
2130 XRectangle r_save = r;
2132 if (! x_intersect_rectangles (&r_save, s->row->clip, &r))
2133 r.width = 0;
2136 if ((s->for_overlaps & OVERLAPS_BOTH) == 0
2137 || ((s->for_overlaps & OVERLAPS_BOTH) == OVERLAPS_BOTH && n == 1))
2139 #ifdef CONVERT_FROM_XRECT
2140 CONVERT_FROM_XRECT (r, *rects);
2141 #else
2142 *rects = r;
2143 #endif
2144 return 1;
2146 else
2148 /* If we are processing overlapping and allowed to return
2149 multiple clipping rectangles, we exclude the row of the glyph
2150 string from the clipping rectangle. This is to avoid drawing
2151 the same text on the environment with anti-aliasing. */
2152 #ifdef CONVERT_FROM_XRECT
2153 XRectangle rs[2];
2154 #else
2155 XRectangle *rs = rects;
2156 #endif
2157 int i = 0, row_y = WINDOW_TO_FRAME_PIXEL_Y (s->w, s->row->y);
2159 if (s->for_overlaps & OVERLAPS_PRED)
2161 rs[i] = r;
2162 if (r.y + r.height > row_y)
2164 if (r.y < row_y)
2165 rs[i].height = row_y - r.y;
2166 else
2167 rs[i].height = 0;
2169 i++;
2171 if (s->for_overlaps & OVERLAPS_SUCC)
2173 rs[i] = r;
2174 if (r.y < row_y + s->row->visible_height)
2176 if (r.y + r.height > row_y + s->row->visible_height)
2178 rs[i].y = row_y + s->row->visible_height;
2179 rs[i].height = r.y + r.height - rs[i].y;
2181 else
2182 rs[i].height = 0;
2184 i++;
2187 n = i;
2188 #ifdef CONVERT_FROM_XRECT
2189 for (i = 0; i < n; i++)
2190 CONVERT_FROM_XRECT (rs[i], rects[i]);
2191 #endif
2192 return n;
2196 /* EXPORT:
2197 Return in *NR the clipping rectangle for glyph string S. */
2199 void
2200 get_glyph_string_clip_rect (struct glyph_string *s, NativeRectangle *nr)
2202 get_glyph_string_clip_rects (s, nr, 1);
2206 /* EXPORT:
2207 Return the position and height of the phys cursor in window W.
2208 Set w->phys_cursor_width to width of phys cursor.
2211 void
2212 get_phys_cursor_geometry (struct window *w, struct glyph_row *row,
2213 struct glyph *glyph, int *xp, int *yp, int *heightp)
2215 struct frame *f = XFRAME (WINDOW_FRAME (w));
2216 int x, y, wd, h, h0, y0;
2218 /* Compute the width of the rectangle to draw. If on a stretch
2219 glyph, and `x-stretch-block-cursor' is nil, don't draw a
2220 rectangle as wide as the glyph, but use a canonical character
2221 width instead. */
2222 wd = glyph->pixel_width - 1;
2223 #if defined (HAVE_NTGUI) || defined (HAVE_NS)
2224 wd++; /* Why? */
2225 #endif
2227 x = w->phys_cursor.x;
2228 if (x < 0)
2230 wd += x;
2231 x = 0;
2234 if (glyph->type == STRETCH_GLYPH
2235 && !x_stretch_cursor_p)
2236 wd = min (FRAME_COLUMN_WIDTH (f), wd);
2237 w->phys_cursor_width = wd;
2239 y = w->phys_cursor.y + row->ascent - glyph->ascent;
2241 /* If y is below window bottom, ensure that we still see a cursor. */
2242 h0 = min (FRAME_LINE_HEIGHT (f), row->visible_height);
2244 h = max (h0, glyph->ascent + glyph->descent);
2245 h0 = min (h0, glyph->ascent + glyph->descent);
2247 y0 = WINDOW_HEADER_LINE_HEIGHT (w);
2248 if (y < y0)
2250 h = max (h - (y0 - y) + 1, h0);
2251 y = y0 - 1;
2253 else
2255 y0 = window_text_bottom_y (w) - h0;
2256 if (y > y0)
2258 h += y - y0;
2259 y = y0;
2263 *xp = WINDOW_TEXT_TO_FRAME_PIXEL_X (w, x);
2264 *yp = WINDOW_TO_FRAME_PIXEL_Y (w, y);
2265 *heightp = h;
2269 * Remember which glyph the mouse is over.
2272 void
2273 remember_mouse_glyph (struct frame *f, int gx, int gy, NativeRectangle *rect)
2275 Lisp_Object window;
2276 struct window *w;
2277 struct glyph_row *r, *gr, *end_row;
2278 enum window_part part;
2279 enum glyph_row_area area;
2280 int x, y, width, height;
2282 /* Try to determine frame pixel position and size of the glyph under
2283 frame pixel coordinates X/Y on frame F. */
2285 if (!f->glyphs_initialized_p
2286 || (window = window_from_coordinates (f, gx, gy, &part, 0),
2287 NILP (window)))
2289 width = FRAME_SMALLEST_CHAR_WIDTH (f);
2290 height = FRAME_SMALLEST_FONT_HEIGHT (f);
2291 goto virtual_glyph;
2294 w = XWINDOW (window);
2295 width = WINDOW_FRAME_COLUMN_WIDTH (w);
2296 height = WINDOW_FRAME_LINE_HEIGHT (w);
2298 x = window_relative_x_coord (w, part, gx);
2299 y = gy - WINDOW_TOP_EDGE_Y (w);
2301 r = MATRIX_FIRST_TEXT_ROW (w->current_matrix);
2302 end_row = MATRIX_BOTTOM_TEXT_ROW (w->current_matrix, w);
2304 if (w->pseudo_window_p)
2306 area = TEXT_AREA;
2307 part = ON_MODE_LINE; /* Don't adjust margin. */
2308 goto text_glyph;
2311 switch (part)
2313 case ON_LEFT_MARGIN:
2314 area = LEFT_MARGIN_AREA;
2315 goto text_glyph;
2317 case ON_RIGHT_MARGIN:
2318 area = RIGHT_MARGIN_AREA;
2319 goto text_glyph;
2321 case ON_HEADER_LINE:
2322 case ON_MODE_LINE:
2323 gr = (part == ON_HEADER_LINE
2324 ? MATRIX_HEADER_LINE_ROW (w->current_matrix)
2325 : MATRIX_MODE_LINE_ROW (w->current_matrix));
2326 gy = gr->y;
2327 area = TEXT_AREA;
2328 goto text_glyph_row_found;
2330 case ON_TEXT:
2331 area = TEXT_AREA;
2333 text_glyph:
2334 gr = 0; gy = 0;
2335 for (; r <= end_row && r->enabled_p; ++r)
2336 if (r->y + r->height > y)
2338 gr = r; gy = r->y;
2339 break;
2342 text_glyph_row_found:
2343 if (gr && gy <= y)
2345 struct glyph *g = gr->glyphs[area];
2346 struct glyph *end = g + gr->used[area];
2348 height = gr->height;
2349 for (gx = gr->x; g < end; gx += g->pixel_width, ++g)
2350 if (gx + g->pixel_width > x)
2351 break;
2353 if (g < end)
2355 if (g->type == IMAGE_GLYPH)
2357 /* Don't remember when mouse is over image, as
2358 image may have hot-spots. */
2359 STORE_NATIVE_RECT (*rect, 0, 0, 0, 0);
2360 return;
2362 width = g->pixel_width;
2364 else
2366 /* Use nominal char spacing at end of line. */
2367 x -= gx;
2368 gx += (x / width) * width;
2371 if (part != ON_MODE_LINE && part != ON_HEADER_LINE)
2372 gx += window_box_left_offset (w, area);
2374 else
2376 /* Use nominal line height at end of window. */
2377 gx = (x / width) * width;
2378 y -= gy;
2379 gy += (y / height) * height;
2381 break;
2383 case ON_LEFT_FRINGE:
2384 gx = (WINDOW_HAS_FRINGES_OUTSIDE_MARGINS (w)
2385 ? WINDOW_LEFT_SCROLL_BAR_AREA_WIDTH (w)
2386 : window_box_right_offset (w, LEFT_MARGIN_AREA));
2387 width = WINDOW_LEFT_FRINGE_WIDTH (w);
2388 goto row_glyph;
2390 case ON_RIGHT_FRINGE:
2391 gx = (WINDOW_HAS_FRINGES_OUTSIDE_MARGINS (w)
2392 ? window_box_right_offset (w, RIGHT_MARGIN_AREA)
2393 : window_box_right_offset (w, TEXT_AREA));
2394 width = WINDOW_RIGHT_FRINGE_WIDTH (w);
2395 goto row_glyph;
2397 case ON_SCROLL_BAR:
2398 gx = (WINDOW_HAS_VERTICAL_SCROLL_BAR_ON_LEFT (w)
2400 : (window_box_right_offset (w, RIGHT_MARGIN_AREA)
2401 + (WINDOW_HAS_FRINGES_OUTSIDE_MARGINS (w)
2402 ? WINDOW_RIGHT_FRINGE_WIDTH (w)
2403 : 0)));
2404 width = WINDOW_SCROLL_BAR_AREA_WIDTH (w);
2406 row_glyph:
2407 gr = 0, gy = 0;
2408 for (; r <= end_row && r->enabled_p; ++r)
2409 if (r->y + r->height > y)
2411 gr = r; gy = r->y;
2412 break;
2415 if (gr && gy <= y)
2416 height = gr->height;
2417 else
2419 /* Use nominal line height at end of window. */
2420 y -= gy;
2421 gy += (y / height) * height;
2423 break;
2425 default:
2427 virtual_glyph:
2428 /* If there is no glyph under the mouse, then we divide the screen
2429 into a grid of the smallest glyph in the frame, and use that
2430 as our "glyph". */
2432 /* Arrange for the division in FRAME_PIXEL_X_TO_COL etc. to
2433 round down even for negative values. */
2434 if (gx < 0)
2435 gx -= width - 1;
2436 if (gy < 0)
2437 gy -= height - 1;
2439 gx = (gx / width) * width;
2440 gy = (gy / height) * height;
2442 goto store_rect;
2445 gx += WINDOW_LEFT_EDGE_X (w);
2446 gy += WINDOW_TOP_EDGE_Y (w);
2448 store_rect:
2449 STORE_NATIVE_RECT (*rect, gx, gy, width, height);
2451 /* Visible feedback for debugging. */
2452 #if 0
2453 #if HAVE_X_WINDOWS
2454 XDrawRectangle (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
2455 f->output_data.x->normal_gc,
2456 gx, gy, width, height);
2457 #endif
2458 #endif
2462 #endif /* HAVE_WINDOW_SYSTEM */
2464 static void
2465 adjust_window_ends (struct window *w, struct glyph_row *row, bool current)
2467 eassert (w);
2468 w->window_end_pos = Z - MATRIX_ROW_END_CHARPOS (row);
2469 w->window_end_bytepos = Z_BYTE - MATRIX_ROW_END_BYTEPOS (row);
2470 w->window_end_vpos
2471 = MATRIX_ROW_VPOS (row, current ? w->current_matrix : w->desired_matrix);
2474 /***********************************************************************
2475 Lisp form evaluation
2476 ***********************************************************************/
2478 /* Error handler for safe_eval and safe_call. */
2480 static Lisp_Object
2481 safe_eval_handler (Lisp_Object arg, ptrdiff_t nargs, Lisp_Object *args)
2483 add_to_log ("Error during redisplay: %S signaled %S",
2484 Flist (nargs, args), arg);
2485 return Qnil;
2488 /* Call function FUNC with the rest of NARGS - 1 arguments
2489 following. Return the result, or nil if something went
2490 wrong. Prevent redisplay during the evaluation. */
2492 Lisp_Object
2493 safe_call (ptrdiff_t nargs, Lisp_Object func, ...)
2495 Lisp_Object val;
2497 if (inhibit_eval_during_redisplay)
2498 val = Qnil;
2499 else
2501 va_list ap;
2502 ptrdiff_t i;
2503 ptrdiff_t count = SPECPDL_INDEX ();
2504 struct gcpro gcpro1;
2505 Lisp_Object *args = alloca (nargs * word_size);
2507 args[0] = func;
2508 va_start (ap, func);
2509 for (i = 1; i < nargs; i++)
2510 args[i] = va_arg (ap, Lisp_Object);
2511 va_end (ap);
2513 GCPRO1 (args[0]);
2514 gcpro1.nvars = nargs;
2515 specbind (Qinhibit_redisplay, Qt);
2516 /* Use Qt to ensure debugger does not run,
2517 so there is no possibility of wanting to redisplay. */
2518 val = internal_condition_case_n (Ffuncall, nargs, args, Qt,
2519 safe_eval_handler);
2520 UNGCPRO;
2521 val = unbind_to (count, val);
2524 return val;
2528 /* Call function FN with one argument ARG.
2529 Return the result, or nil if something went wrong. */
2531 Lisp_Object
2532 safe_call1 (Lisp_Object fn, Lisp_Object arg)
2534 return safe_call (2, fn, arg);
2537 static Lisp_Object Qeval;
2539 Lisp_Object
2540 safe_eval (Lisp_Object sexpr)
2542 return safe_call1 (Qeval, sexpr);
2545 /* Call function FN with two arguments ARG1 and ARG2.
2546 Return the result, or nil if something went wrong. */
2548 Lisp_Object
2549 safe_call2 (Lisp_Object fn, Lisp_Object arg1, Lisp_Object arg2)
2551 return safe_call (3, fn, arg1, arg2);
2556 /***********************************************************************
2557 Debugging
2558 ***********************************************************************/
2560 #if 0
2562 /* Define CHECK_IT to perform sanity checks on iterators.
2563 This is for debugging. It is too slow to do unconditionally. */
2565 static void
2566 check_it (struct it *it)
2568 if (it->method == GET_FROM_STRING)
2570 eassert (STRINGP (it->string));
2571 eassert (IT_STRING_CHARPOS (*it) >= 0);
2573 else
2575 eassert (IT_STRING_CHARPOS (*it) < 0);
2576 if (it->method == GET_FROM_BUFFER)
2578 /* Check that character and byte positions agree. */
2579 eassert (IT_CHARPOS (*it) == BYTE_TO_CHAR (IT_BYTEPOS (*it)));
2583 if (it->dpvec)
2584 eassert (it->current.dpvec_index >= 0);
2585 else
2586 eassert (it->current.dpvec_index < 0);
2589 #define CHECK_IT(IT) check_it ((IT))
2591 #else /* not 0 */
2593 #define CHECK_IT(IT) (void) 0
2595 #endif /* not 0 */
2598 #if defined GLYPH_DEBUG && defined ENABLE_CHECKING
2600 /* Check that the window end of window W is what we expect it
2601 to be---the last row in the current matrix displaying text. */
2603 static void
2604 check_window_end (struct window *w)
2606 if (!MINI_WINDOW_P (w) && w->window_end_valid)
2608 struct glyph_row *row;
2609 eassert ((row = MATRIX_ROW (w->current_matrix, w->window_end_vpos),
2610 !row->enabled_p
2611 || MATRIX_ROW_DISPLAYS_TEXT_P (row)
2612 || MATRIX_ROW_VPOS (row, w->current_matrix) == 0));
2616 #define CHECK_WINDOW_END(W) check_window_end ((W))
2618 #else
2620 #define CHECK_WINDOW_END(W) (void) 0
2622 #endif /* GLYPH_DEBUG and ENABLE_CHECKING */
2624 /* Return mark position if current buffer has the region of non-zero length,
2625 or -1 otherwise. */
2627 static ptrdiff_t
2628 markpos_of_region (void)
2630 if (!NILP (Vtransient_mark_mode)
2631 && !NILP (BVAR (current_buffer, mark_active))
2632 && XMARKER (BVAR (current_buffer, mark))->buffer != NULL)
2634 ptrdiff_t markpos = XMARKER (BVAR (current_buffer, mark))->charpos;
2636 if (markpos != PT)
2637 return markpos;
2639 return -1;
2642 /***********************************************************************
2643 Iterator initialization
2644 ***********************************************************************/
2646 /* Initialize IT for displaying current_buffer in window W, starting
2647 at character position CHARPOS. CHARPOS < 0 means that no buffer
2648 position is specified which is useful when the iterator is assigned
2649 a position later. BYTEPOS is the byte position corresponding to
2650 CHARPOS.
2652 If ROW is not null, calls to produce_glyphs with IT as parameter
2653 will produce glyphs in that row.
2655 BASE_FACE_ID is the id of a base face to use. It must be one of
2656 DEFAULT_FACE_ID for normal text, MODE_LINE_FACE_ID,
2657 MODE_LINE_INACTIVE_FACE_ID, or HEADER_LINE_FACE_ID for displaying
2658 mode lines, or TOOL_BAR_FACE_ID for displaying the tool-bar.
2660 If ROW is null and BASE_FACE_ID is equal to MODE_LINE_FACE_ID,
2661 MODE_LINE_INACTIVE_FACE_ID, or HEADER_LINE_FACE_ID, the iterator
2662 will be initialized to use the corresponding mode line glyph row of
2663 the desired matrix of W. */
2665 void
2666 init_iterator (struct it *it, struct window *w,
2667 ptrdiff_t charpos, ptrdiff_t bytepos,
2668 struct glyph_row *row, enum face_id base_face_id)
2670 ptrdiff_t markpos;
2671 enum face_id remapped_base_face_id = base_face_id;
2673 /* Some precondition checks. */
2674 eassert (w != NULL && it != NULL);
2675 eassert (charpos < 0 || (charpos >= BUF_BEG (current_buffer)
2676 && charpos <= ZV));
2678 /* If face attributes have been changed since the last redisplay,
2679 free realized faces now because they depend on face definitions
2680 that might have changed. Don't free faces while there might be
2681 desired matrices pending which reference these faces. */
2682 if (face_change_count && !inhibit_free_realized_faces)
2684 face_change_count = 0;
2685 free_all_realized_faces (Qnil);
2688 /* Perhaps remap BASE_FACE_ID to a user-specified alternative. */
2689 if (! NILP (Vface_remapping_alist))
2690 remapped_base_face_id
2691 = lookup_basic_face (XFRAME (w->frame), base_face_id);
2693 /* Use one of the mode line rows of W's desired matrix if
2694 appropriate. */
2695 if (row == NULL)
2697 if (base_face_id == MODE_LINE_FACE_ID
2698 || base_face_id == MODE_LINE_INACTIVE_FACE_ID)
2699 row = MATRIX_MODE_LINE_ROW (w->desired_matrix);
2700 else if (base_face_id == HEADER_LINE_FACE_ID)
2701 row = MATRIX_HEADER_LINE_ROW (w->desired_matrix);
2704 /* Clear IT. */
2705 memset (it, 0, sizeof *it);
2706 it->current.overlay_string_index = -1;
2707 it->current.dpvec_index = -1;
2708 it->base_face_id = remapped_base_face_id;
2709 it->string = Qnil;
2710 IT_STRING_CHARPOS (*it) = IT_STRING_BYTEPOS (*it) = -1;
2711 it->paragraph_embedding = L2R;
2712 it->bidi_it.string.lstring = Qnil;
2713 it->bidi_it.string.s = NULL;
2714 it->bidi_it.string.bufpos = 0;
2715 it->bidi_it.w = w;
2717 /* The window in which we iterate over current_buffer: */
2718 XSETWINDOW (it->window, w);
2719 it->w = w;
2720 it->f = XFRAME (w->frame);
2722 it->cmp_it.id = -1;
2724 /* Extra space between lines (on window systems only). */
2725 if (base_face_id == DEFAULT_FACE_ID
2726 && FRAME_WINDOW_P (it->f))
2728 if (NATNUMP (BVAR (current_buffer, extra_line_spacing)))
2729 it->extra_line_spacing = XFASTINT (BVAR (current_buffer, extra_line_spacing));
2730 else if (FLOATP (BVAR (current_buffer, extra_line_spacing)))
2731 it->extra_line_spacing = (XFLOAT_DATA (BVAR (current_buffer, extra_line_spacing))
2732 * FRAME_LINE_HEIGHT (it->f));
2733 else if (it->f->extra_line_spacing > 0)
2734 it->extra_line_spacing = it->f->extra_line_spacing;
2735 it->max_extra_line_spacing = 0;
2738 /* If realized faces have been removed, e.g. because of face
2739 attribute changes of named faces, recompute them. When running
2740 in batch mode, the face cache of the initial frame is null. If
2741 we happen to get called, make a dummy face cache. */
2742 if (FRAME_FACE_CACHE (it->f) == NULL)
2743 init_frame_faces (it->f);
2744 if (FRAME_FACE_CACHE (it->f)->used == 0)
2745 recompute_basic_faces (it->f);
2747 /* Current value of the `slice', `space-width', and 'height' properties. */
2748 it->slice.x = it->slice.y = it->slice.width = it->slice.height = Qnil;
2749 it->space_width = Qnil;
2750 it->font_height = Qnil;
2751 it->override_ascent = -1;
2753 /* Are control characters displayed as `^C'? */
2754 it->ctl_arrow_p = !NILP (BVAR (current_buffer, ctl_arrow));
2756 /* -1 means everything between a CR and the following line end
2757 is invisible. >0 means lines indented more than this value are
2758 invisible. */
2759 it->selective = (INTEGERP (BVAR (current_buffer, selective_display))
2760 ? (clip_to_bounds
2761 (-1, XINT (BVAR (current_buffer, selective_display)),
2762 PTRDIFF_MAX))
2763 : (!NILP (BVAR (current_buffer, selective_display))
2764 ? -1 : 0));
2765 it->selective_display_ellipsis_p
2766 = !NILP (BVAR (current_buffer, selective_display_ellipses));
2768 /* Display table to use. */
2769 it->dp = window_display_table (w);
2771 /* Are multibyte characters enabled in current_buffer? */
2772 it->multibyte_p = !NILP (BVAR (current_buffer, enable_multibyte_characters));
2774 /* If visible region is of non-zero length, set IT->region_beg_charpos
2775 and IT->region_end_charpos to the start and end of a visible region
2776 in window IT->w. Set both to -1 to indicate no region. */
2777 markpos = markpos_of_region ();
2778 if (markpos >= 0
2779 /* Maybe highlight only in selected window. */
2780 && (/* Either show region everywhere. */
2781 highlight_nonselected_windows
2782 /* Or show region in the selected window. */
2783 || w == XWINDOW (selected_window)
2784 /* Or show the region if we are in the mini-buffer and W is
2785 the window the mini-buffer refers to. */
2786 || (MINI_WINDOW_P (XWINDOW (selected_window))
2787 && WINDOWP (minibuf_selected_window)
2788 && w == XWINDOW (minibuf_selected_window))))
2790 it->region_beg_charpos = min (PT, markpos);
2791 it->region_end_charpos = max (PT, markpos);
2793 else
2794 it->region_beg_charpos = it->region_end_charpos = -1;
2796 /* Get the position at which the redisplay_end_trigger hook should
2797 be run, if it is to be run at all. */
2798 if (MARKERP (w->redisplay_end_trigger)
2799 && XMARKER (w->redisplay_end_trigger)->buffer != 0)
2800 it->redisplay_end_trigger_charpos
2801 = marker_position (w->redisplay_end_trigger);
2802 else if (INTEGERP (w->redisplay_end_trigger))
2803 it->redisplay_end_trigger_charpos =
2804 clip_to_bounds (PTRDIFF_MIN, XINT (w->redisplay_end_trigger), PTRDIFF_MAX);
2806 it->tab_width = SANE_TAB_WIDTH (current_buffer);
2808 /* Are lines in the display truncated? */
2809 if (base_face_id != DEFAULT_FACE_ID
2810 || it->w->hscroll
2811 || (! WINDOW_FULL_WIDTH_P (it->w)
2812 && ((!NILP (Vtruncate_partial_width_windows)
2813 && !INTEGERP (Vtruncate_partial_width_windows))
2814 || (INTEGERP (Vtruncate_partial_width_windows)
2815 && (WINDOW_TOTAL_COLS (it->w)
2816 < XINT (Vtruncate_partial_width_windows))))))
2817 it->line_wrap = TRUNCATE;
2818 else if (NILP (BVAR (current_buffer, truncate_lines)))
2819 it->line_wrap = NILP (BVAR (current_buffer, word_wrap))
2820 ? WINDOW_WRAP : WORD_WRAP;
2821 else
2822 it->line_wrap = TRUNCATE;
2824 /* Get dimensions of truncation and continuation glyphs. These are
2825 displayed as fringe bitmaps under X, but we need them for such
2826 frames when the fringes are turned off. But leave the dimensions
2827 zero for tooltip frames, as these glyphs look ugly there and also
2828 sabotage calculations of tooltip dimensions in x-show-tip. */
2829 #ifdef HAVE_WINDOW_SYSTEM
2830 if (!(FRAME_WINDOW_P (it->f)
2831 && FRAMEP (tip_frame)
2832 && it->f == XFRAME (tip_frame)))
2833 #endif
2835 if (it->line_wrap == TRUNCATE)
2837 /* We will need the truncation glyph. */
2838 eassert (it->glyph_row == NULL);
2839 produce_special_glyphs (it, IT_TRUNCATION);
2840 it->truncation_pixel_width = it->pixel_width;
2842 else
2844 /* We will need the continuation glyph. */
2845 eassert (it->glyph_row == NULL);
2846 produce_special_glyphs (it, IT_CONTINUATION);
2847 it->continuation_pixel_width = it->pixel_width;
2851 /* Reset these values to zero because the produce_special_glyphs
2852 above has changed them. */
2853 it->pixel_width = it->ascent = it->descent = 0;
2854 it->phys_ascent = it->phys_descent = 0;
2856 /* Set this after getting the dimensions of truncation and
2857 continuation glyphs, so that we don't produce glyphs when calling
2858 produce_special_glyphs, above. */
2859 it->glyph_row = row;
2860 it->area = TEXT_AREA;
2862 /* Forget any previous info about this row being reversed. */
2863 if (it->glyph_row)
2864 it->glyph_row->reversed_p = 0;
2866 /* Get the dimensions of the display area. The display area
2867 consists of the visible window area plus a horizontally scrolled
2868 part to the left of the window. All x-values are relative to the
2869 start of this total display area. */
2870 if (base_face_id != DEFAULT_FACE_ID)
2872 /* Mode lines, menu bar in terminal frames. */
2873 it->first_visible_x = 0;
2874 it->last_visible_x = WINDOW_TOTAL_WIDTH (w);
2876 else
2878 it->first_visible_x =
2879 window_hscroll_limited (it->w, it->f) * FRAME_COLUMN_WIDTH (it->f);
2880 it->last_visible_x = (it->first_visible_x
2881 + window_box_width (w, TEXT_AREA));
2883 /* If we truncate lines, leave room for the truncation glyph(s) at
2884 the right margin. Otherwise, leave room for the continuation
2885 glyph(s). Done only if the window has no fringes. Since we
2886 don't know at this point whether there will be any R2L lines in
2887 the window, we reserve space for truncation/continuation glyphs
2888 even if only one of the fringes is absent. */
2889 if (WINDOW_RIGHT_FRINGE_WIDTH (it->w) == 0
2890 || (it->bidi_p && WINDOW_LEFT_FRINGE_WIDTH (it->w) == 0))
2892 if (it->line_wrap == TRUNCATE)
2893 it->last_visible_x -= it->truncation_pixel_width;
2894 else
2895 it->last_visible_x -= it->continuation_pixel_width;
2898 it->header_line_p = WINDOW_WANTS_HEADER_LINE_P (w);
2899 it->current_y = WINDOW_HEADER_LINE_HEIGHT (w) + w->vscroll;
2902 /* Leave room for a border glyph. */
2903 if (!FRAME_WINDOW_P (it->f)
2904 && !WINDOW_RIGHTMOST_P (it->w))
2905 it->last_visible_x -= 1;
2907 it->last_visible_y = window_text_bottom_y (w);
2909 /* For mode lines and alike, arrange for the first glyph having a
2910 left box line if the face specifies a box. */
2911 if (base_face_id != DEFAULT_FACE_ID)
2913 struct face *face;
2915 it->face_id = remapped_base_face_id;
2917 /* If we have a boxed mode line, make the first character appear
2918 with a left box line. */
2919 face = FACE_FROM_ID (it->f, remapped_base_face_id);
2920 if (face->box != FACE_NO_BOX)
2921 it->start_of_box_run_p = 1;
2924 /* If a buffer position was specified, set the iterator there,
2925 getting overlays and face properties from that position. */
2926 if (charpos >= BUF_BEG (current_buffer))
2928 it->end_charpos = ZV;
2929 eassert (charpos == BYTE_TO_CHAR (bytepos));
2930 IT_CHARPOS (*it) = charpos;
2931 IT_BYTEPOS (*it) = bytepos;
2933 /* We will rely on `reseat' to set this up properly, via
2934 handle_face_prop. */
2935 it->face_id = it->base_face_id;
2937 it->start = it->current;
2938 /* Do we need to reorder bidirectional text? Not if this is a
2939 unibyte buffer: by definition, none of the single-byte
2940 characters are strong R2L, so no reordering is needed. And
2941 bidi.c doesn't support unibyte buffers anyway. Also, don't
2942 reorder while we are loading loadup.el, since the tables of
2943 character properties needed for reordering are not yet
2944 available. */
2945 it->bidi_p =
2946 NILP (Vpurify_flag)
2947 && !NILP (BVAR (current_buffer, bidi_display_reordering))
2948 && it->multibyte_p;
2950 /* If we are to reorder bidirectional text, init the bidi
2951 iterator. */
2952 if (it->bidi_p)
2954 /* Note the paragraph direction that this buffer wants to
2955 use. */
2956 if (EQ (BVAR (current_buffer, bidi_paragraph_direction),
2957 Qleft_to_right))
2958 it->paragraph_embedding = L2R;
2959 else if (EQ (BVAR (current_buffer, bidi_paragraph_direction),
2960 Qright_to_left))
2961 it->paragraph_embedding = R2L;
2962 else
2963 it->paragraph_embedding = NEUTRAL_DIR;
2964 bidi_unshelve_cache (NULL, 0);
2965 bidi_init_it (charpos, IT_BYTEPOS (*it), FRAME_WINDOW_P (it->f),
2966 &it->bidi_it);
2969 /* Compute faces etc. */
2970 reseat (it, it->current.pos, 1);
2973 CHECK_IT (it);
2977 /* Initialize IT for the display of window W with window start POS. */
2979 void
2980 start_display (struct it *it, struct window *w, struct text_pos pos)
2982 struct glyph_row *row;
2983 int first_vpos = WINDOW_WANTS_HEADER_LINE_P (w) ? 1 : 0;
2985 row = w->desired_matrix->rows + first_vpos;
2986 init_iterator (it, w, CHARPOS (pos), BYTEPOS (pos), row, DEFAULT_FACE_ID);
2987 it->first_vpos = first_vpos;
2989 /* Don't reseat to previous visible line start if current start
2990 position is in a string or image. */
2991 if (it->method == GET_FROM_BUFFER && it->line_wrap != TRUNCATE)
2993 int start_at_line_beg_p;
2994 int first_y = it->current_y;
2996 /* If window start is not at a line start, skip forward to POS to
2997 get the correct continuation lines width. */
2998 start_at_line_beg_p = (CHARPOS (pos) == BEGV
2999 || FETCH_BYTE (BYTEPOS (pos) - 1) == '\n');
3000 if (!start_at_line_beg_p)
3002 int new_x;
3004 reseat_at_previous_visible_line_start (it);
3005 move_it_to (it, CHARPOS (pos), -1, -1, -1, MOVE_TO_POS);
3007 new_x = it->current_x + it->pixel_width;
3009 /* If lines are continued, this line may end in the middle
3010 of a multi-glyph character (e.g. a control character
3011 displayed as \003, or in the middle of an overlay
3012 string). In this case move_it_to above will not have
3013 taken us to the start of the continuation line but to the
3014 end of the continued line. */
3015 if (it->current_x > 0
3016 && it->line_wrap != TRUNCATE /* Lines are continued. */
3017 && (/* And glyph doesn't fit on the line. */
3018 new_x > it->last_visible_x
3019 /* Or it fits exactly and we're on a window
3020 system frame. */
3021 || (new_x == it->last_visible_x
3022 && FRAME_WINDOW_P (it->f)
3023 && ((it->bidi_p && it->bidi_it.paragraph_dir == R2L)
3024 ? WINDOW_LEFT_FRINGE_WIDTH (it->w)
3025 : WINDOW_RIGHT_FRINGE_WIDTH (it->w)))))
3027 if ((it->current.dpvec_index >= 0
3028 || it->current.overlay_string_index >= 0)
3029 /* If we are on a newline from a display vector or
3030 overlay string, then we are already at the end of
3031 a screen line; no need to go to the next line in
3032 that case, as this line is not really continued.
3033 (If we do go to the next line, C-e will not DTRT.) */
3034 && it->c != '\n')
3036 set_iterator_to_next (it, 1);
3037 move_it_in_display_line_to (it, -1, -1, 0);
3040 it->continuation_lines_width += it->current_x;
3042 /* If the character at POS is displayed via a display
3043 vector, move_it_to above stops at the final glyph of
3044 IT->dpvec. To make the caller redisplay that character
3045 again (a.k.a. start at POS), we need to reset the
3046 dpvec_index to the beginning of IT->dpvec. */
3047 else if (it->current.dpvec_index >= 0)
3048 it->current.dpvec_index = 0;
3050 /* We're starting a new display line, not affected by the
3051 height of the continued line, so clear the appropriate
3052 fields in the iterator structure. */
3053 it->max_ascent = it->max_descent = 0;
3054 it->max_phys_ascent = it->max_phys_descent = 0;
3056 it->current_y = first_y;
3057 it->vpos = 0;
3058 it->current_x = it->hpos = 0;
3064 /* Return 1 if POS is a position in ellipses displayed for invisible
3065 text. W is the window we display, for text property lookup. */
3067 static int
3068 in_ellipses_for_invisible_text_p (struct display_pos *pos, struct window *w)
3070 Lisp_Object prop, window;
3071 int ellipses_p = 0;
3072 ptrdiff_t charpos = CHARPOS (pos->pos);
3074 /* If POS specifies a position in a display vector, this might
3075 be for an ellipsis displayed for invisible text. We won't
3076 get the iterator set up for delivering that ellipsis unless
3077 we make sure that it gets aware of the invisible text. */
3078 if (pos->dpvec_index >= 0
3079 && pos->overlay_string_index < 0
3080 && CHARPOS (pos->string_pos) < 0
3081 && charpos > BEGV
3082 && (XSETWINDOW (window, w),
3083 prop = Fget_char_property (make_number (charpos),
3084 Qinvisible, window),
3085 !TEXT_PROP_MEANS_INVISIBLE (prop)))
3087 prop = Fget_char_property (make_number (charpos - 1), Qinvisible,
3088 window);
3089 ellipses_p = 2 == TEXT_PROP_MEANS_INVISIBLE (prop);
3092 return ellipses_p;
3096 /* Initialize IT for stepping through current_buffer in window W,
3097 starting at position POS that includes overlay string and display
3098 vector/ control character translation position information. Value
3099 is zero if there are overlay strings with newlines at POS. */
3101 static int
3102 init_from_display_pos (struct it *it, struct window *w, struct display_pos *pos)
3104 ptrdiff_t charpos = CHARPOS (pos->pos), bytepos = BYTEPOS (pos->pos);
3105 int i, overlay_strings_with_newlines = 0;
3107 /* If POS specifies a position in a display vector, this might
3108 be for an ellipsis displayed for invisible text. We won't
3109 get the iterator set up for delivering that ellipsis unless
3110 we make sure that it gets aware of the invisible text. */
3111 if (in_ellipses_for_invisible_text_p (pos, w))
3113 --charpos;
3114 bytepos = 0;
3117 /* Keep in mind: the call to reseat in init_iterator skips invisible
3118 text, so we might end up at a position different from POS. This
3119 is only a problem when POS is a row start after a newline and an
3120 overlay starts there with an after-string, and the overlay has an
3121 invisible property. Since we don't skip invisible text in
3122 display_line and elsewhere immediately after consuming the
3123 newline before the row start, such a POS will not be in a string,
3124 but the call to init_iterator below will move us to the
3125 after-string. */
3126 init_iterator (it, w, charpos, bytepos, NULL, DEFAULT_FACE_ID);
3128 /* This only scans the current chunk -- it should scan all chunks.
3129 However, OVERLAY_STRING_CHUNK_SIZE has been increased from 3 in 21.1
3130 to 16 in 22.1 to make this a lesser problem. */
3131 for (i = 0; i < it->n_overlay_strings && i < OVERLAY_STRING_CHUNK_SIZE; ++i)
3133 const char *s = SSDATA (it->overlay_strings[i]);
3134 const char *e = s + SBYTES (it->overlay_strings[i]);
3136 while (s < e && *s != '\n')
3137 ++s;
3139 if (s < e)
3141 overlay_strings_with_newlines = 1;
3142 break;
3146 /* If position is within an overlay string, set up IT to the right
3147 overlay string. */
3148 if (pos->overlay_string_index >= 0)
3150 int relative_index;
3152 /* If the first overlay string happens to have a `display'
3153 property for an image, the iterator will be set up for that
3154 image, and we have to undo that setup first before we can
3155 correct the overlay string index. */
3156 if (it->method == GET_FROM_IMAGE)
3157 pop_it (it);
3159 /* We already have the first chunk of overlay strings in
3160 IT->overlay_strings. Load more until the one for
3161 pos->overlay_string_index is in IT->overlay_strings. */
3162 if (pos->overlay_string_index >= OVERLAY_STRING_CHUNK_SIZE)
3164 ptrdiff_t n = pos->overlay_string_index / OVERLAY_STRING_CHUNK_SIZE;
3165 it->current.overlay_string_index = 0;
3166 while (n--)
3168 load_overlay_strings (it, 0);
3169 it->current.overlay_string_index += OVERLAY_STRING_CHUNK_SIZE;
3173 it->current.overlay_string_index = pos->overlay_string_index;
3174 relative_index = (it->current.overlay_string_index
3175 % OVERLAY_STRING_CHUNK_SIZE);
3176 it->string = it->overlay_strings[relative_index];
3177 eassert (STRINGP (it->string));
3178 it->current.string_pos = pos->string_pos;
3179 it->method = GET_FROM_STRING;
3180 it->end_charpos = SCHARS (it->string);
3181 /* Set up the bidi iterator for this overlay string. */
3182 if (it->bidi_p)
3184 it->bidi_it.string.lstring = it->string;
3185 it->bidi_it.string.s = NULL;
3186 it->bidi_it.string.schars = SCHARS (it->string);
3187 it->bidi_it.string.bufpos = it->overlay_strings_charpos;
3188 it->bidi_it.string.from_disp_str = it->string_from_display_prop_p;
3189 it->bidi_it.string.unibyte = !it->multibyte_p;
3190 it->bidi_it.w = it->w;
3191 bidi_init_it (IT_STRING_CHARPOS (*it), IT_STRING_BYTEPOS (*it),
3192 FRAME_WINDOW_P (it->f), &it->bidi_it);
3194 /* Synchronize the state of the bidi iterator with
3195 pos->string_pos. For any string position other than
3196 zero, this will be done automagically when we resume
3197 iteration over the string and get_visually_first_element
3198 is called. But if string_pos is zero, and the string is
3199 to be reordered for display, we need to resync manually,
3200 since it could be that the iteration state recorded in
3201 pos ended at string_pos of 0 moving backwards in string. */
3202 if (CHARPOS (pos->string_pos) == 0)
3204 get_visually_first_element (it);
3205 if (IT_STRING_CHARPOS (*it) != 0)
3206 do {
3207 /* Paranoia. */
3208 eassert (it->bidi_it.charpos < it->bidi_it.string.schars);
3209 bidi_move_to_visually_next (&it->bidi_it);
3210 } while (it->bidi_it.charpos != 0);
3212 eassert (IT_STRING_CHARPOS (*it) == it->bidi_it.charpos
3213 && IT_STRING_BYTEPOS (*it) == it->bidi_it.bytepos);
3217 if (CHARPOS (pos->string_pos) >= 0)
3219 /* Recorded position is not in an overlay string, but in another
3220 string. This can only be a string from a `display' property.
3221 IT should already be filled with that string. */
3222 it->current.string_pos = pos->string_pos;
3223 eassert (STRINGP (it->string));
3224 if (it->bidi_p)
3225 bidi_init_it (IT_STRING_CHARPOS (*it), IT_STRING_BYTEPOS (*it),
3226 FRAME_WINDOW_P (it->f), &it->bidi_it);
3229 /* Restore position in display vector translations, control
3230 character translations or ellipses. */
3231 if (pos->dpvec_index >= 0)
3233 if (it->dpvec == NULL)
3234 get_next_display_element (it);
3235 eassert (it->dpvec && it->current.dpvec_index == 0);
3236 it->current.dpvec_index = pos->dpvec_index;
3239 CHECK_IT (it);
3240 return !overlay_strings_with_newlines;
3244 /* Initialize IT for stepping through current_buffer in window W
3245 starting at ROW->start. */
3247 static void
3248 init_to_row_start (struct it *it, struct window *w, struct glyph_row *row)
3250 init_from_display_pos (it, w, &row->start);
3251 it->start = row->start;
3252 it->continuation_lines_width = row->continuation_lines_width;
3253 CHECK_IT (it);
3257 /* Initialize IT for stepping through current_buffer in window W
3258 starting in the line following ROW, i.e. starting at ROW->end.
3259 Value is zero if there are overlay strings with newlines at ROW's
3260 end position. */
3262 static int
3263 init_to_row_end (struct it *it, struct window *w, struct glyph_row *row)
3265 int success = 0;
3267 if (init_from_display_pos (it, w, &row->end))
3269 if (row->continued_p)
3270 it->continuation_lines_width
3271 = row->continuation_lines_width + row->pixel_width;
3272 CHECK_IT (it);
3273 success = 1;
3276 return success;
3282 /***********************************************************************
3283 Text properties
3284 ***********************************************************************/
3286 /* Called when IT reaches IT->stop_charpos. Handle text property and
3287 overlay changes. Set IT->stop_charpos to the next position where
3288 to stop. */
3290 static void
3291 handle_stop (struct it *it)
3293 enum prop_handled handled;
3294 int handle_overlay_change_p;
3295 struct props *p;
3297 it->dpvec = NULL;
3298 it->current.dpvec_index = -1;
3299 handle_overlay_change_p = !it->ignore_overlay_strings_at_pos_p;
3300 it->ignore_overlay_strings_at_pos_p = 0;
3301 it->ellipsis_p = 0;
3303 /* Use face of preceding text for ellipsis (if invisible) */
3304 if (it->selective_display_ellipsis_p)
3305 it->saved_face_id = it->face_id;
3309 handled = HANDLED_NORMALLY;
3311 /* Call text property handlers. */
3312 for (p = it_props; p->handler; ++p)
3314 handled = p->handler (it);
3316 if (handled == HANDLED_RECOMPUTE_PROPS)
3317 break;
3318 else if (handled == HANDLED_RETURN)
3320 /* We still want to show before and after strings from
3321 overlays even if the actual buffer text is replaced. */
3322 if (!handle_overlay_change_p
3323 || it->sp > 1
3324 /* Don't call get_overlay_strings_1 if we already
3325 have overlay strings loaded, because doing so
3326 will load them again and push the iterator state
3327 onto the stack one more time, which is not
3328 expected by the rest of the code that processes
3329 overlay strings. */
3330 || (it->current.overlay_string_index < 0
3331 ? !get_overlay_strings_1 (it, 0, 0)
3332 : 0))
3334 if (it->ellipsis_p)
3335 setup_for_ellipsis (it, 0);
3336 /* When handling a display spec, we might load an
3337 empty string. In that case, discard it here. We
3338 used to discard it in handle_single_display_spec,
3339 but that causes get_overlay_strings_1, above, to
3340 ignore overlay strings that we must check. */
3341 if (STRINGP (it->string) && !SCHARS (it->string))
3342 pop_it (it);
3343 return;
3345 else if (STRINGP (it->string) && !SCHARS (it->string))
3346 pop_it (it);
3347 else
3349 it->ignore_overlay_strings_at_pos_p = 1;
3350 it->string_from_display_prop_p = 0;
3351 it->from_disp_prop_p = 0;
3352 handle_overlay_change_p = 0;
3354 handled = HANDLED_RECOMPUTE_PROPS;
3355 break;
3357 else if (handled == HANDLED_OVERLAY_STRING_CONSUMED)
3358 handle_overlay_change_p = 0;
3361 if (handled != HANDLED_RECOMPUTE_PROPS)
3363 /* Don't check for overlay strings below when set to deliver
3364 characters from a display vector. */
3365 if (it->method == GET_FROM_DISPLAY_VECTOR)
3366 handle_overlay_change_p = 0;
3368 /* Handle overlay changes.
3369 This sets HANDLED to HANDLED_RECOMPUTE_PROPS
3370 if it finds overlays. */
3371 if (handle_overlay_change_p)
3372 handled = handle_overlay_change (it);
3375 if (it->ellipsis_p)
3377 setup_for_ellipsis (it, 0);
3378 break;
3381 while (handled == HANDLED_RECOMPUTE_PROPS);
3383 /* Determine where to stop next. */
3384 if (handled == HANDLED_NORMALLY)
3385 compute_stop_pos (it);
3389 /* Compute IT->stop_charpos from text property and overlay change
3390 information for IT's current position. */
3392 static void
3393 compute_stop_pos (struct it *it)
3395 register INTERVAL iv, next_iv;
3396 Lisp_Object object, limit, position;
3397 ptrdiff_t charpos, bytepos;
3399 if (STRINGP (it->string))
3401 /* Strings are usually short, so don't limit the search for
3402 properties. */
3403 it->stop_charpos = it->end_charpos;
3404 object = it->string;
3405 limit = Qnil;
3406 charpos = IT_STRING_CHARPOS (*it);
3407 bytepos = IT_STRING_BYTEPOS (*it);
3409 else
3411 ptrdiff_t pos;
3413 /* If end_charpos is out of range for some reason, such as a
3414 misbehaving display function, rationalize it (Bug#5984). */
3415 if (it->end_charpos > ZV)
3416 it->end_charpos = ZV;
3417 it->stop_charpos = it->end_charpos;
3419 /* If next overlay change is in front of the current stop pos
3420 (which is IT->end_charpos), stop there. Note: value of
3421 next_overlay_change is point-max if no overlay change
3422 follows. */
3423 charpos = IT_CHARPOS (*it);
3424 bytepos = IT_BYTEPOS (*it);
3425 pos = next_overlay_change (charpos);
3426 if (pos < it->stop_charpos)
3427 it->stop_charpos = pos;
3429 /* If showing the region, we have to stop at the region
3430 start or end because the face might change there. */
3431 if (it->region_beg_charpos > 0)
3433 if (IT_CHARPOS (*it) < it->region_beg_charpos)
3434 it->stop_charpos = min (it->stop_charpos, it->region_beg_charpos);
3435 else if (IT_CHARPOS (*it) < it->region_end_charpos)
3436 it->stop_charpos = min (it->stop_charpos, it->region_end_charpos);
3439 /* Set up variables for computing the stop position from text
3440 property changes. */
3441 XSETBUFFER (object, current_buffer);
3442 limit = make_number (IT_CHARPOS (*it) + TEXT_PROP_DISTANCE_LIMIT);
3445 /* Get the interval containing IT's position. Value is a null
3446 interval if there isn't such an interval. */
3447 position = make_number (charpos);
3448 iv = validate_interval_range (object, &position, &position, 0);
3449 if (iv)
3451 Lisp_Object values_here[LAST_PROP_IDX];
3452 struct props *p;
3454 /* Get properties here. */
3455 for (p = it_props; p->handler; ++p)
3456 values_here[p->idx] = textget (iv->plist, *p->name);
3458 /* Look for an interval following iv that has different
3459 properties. */
3460 for (next_iv = next_interval (iv);
3461 (next_iv
3462 && (NILP (limit)
3463 || XFASTINT (limit) > next_iv->position));
3464 next_iv = next_interval (next_iv))
3466 for (p = it_props; p->handler; ++p)
3468 Lisp_Object new_value;
3470 new_value = textget (next_iv->plist, *p->name);
3471 if (!EQ (values_here[p->idx], new_value))
3472 break;
3475 if (p->handler)
3476 break;
3479 if (next_iv)
3481 if (INTEGERP (limit)
3482 && next_iv->position >= XFASTINT (limit))
3483 /* No text property change up to limit. */
3484 it->stop_charpos = min (XFASTINT (limit), it->stop_charpos);
3485 else
3486 /* Text properties change in next_iv. */
3487 it->stop_charpos = min (it->stop_charpos, next_iv->position);
3491 if (it->cmp_it.id < 0)
3493 ptrdiff_t stoppos = it->end_charpos;
3495 if (it->bidi_p && it->bidi_it.scan_dir < 0)
3496 stoppos = -1;
3497 composition_compute_stop_pos (&it->cmp_it, charpos, bytepos,
3498 stoppos, it->string);
3501 eassert (STRINGP (it->string)
3502 || (it->stop_charpos >= BEGV
3503 && it->stop_charpos >= IT_CHARPOS (*it)));
3507 /* Return the position of the next overlay change after POS in
3508 current_buffer. Value is point-max if no overlay change
3509 follows. This is like `next-overlay-change' but doesn't use
3510 xmalloc. */
3512 static ptrdiff_t
3513 next_overlay_change (ptrdiff_t pos)
3515 ptrdiff_t i, noverlays;
3516 ptrdiff_t endpos;
3517 Lisp_Object *overlays;
3519 /* Get all overlays at the given position. */
3520 GET_OVERLAYS_AT (pos, overlays, noverlays, &endpos, 1);
3522 /* If any of these overlays ends before endpos,
3523 use its ending point instead. */
3524 for (i = 0; i < noverlays; ++i)
3526 Lisp_Object oend;
3527 ptrdiff_t oendpos;
3529 oend = OVERLAY_END (overlays[i]);
3530 oendpos = OVERLAY_POSITION (oend);
3531 endpos = min (endpos, oendpos);
3534 return endpos;
3537 /* How many characters forward to search for a display property or
3538 display string. Searching too far forward makes the bidi display
3539 sluggish, especially in small windows. */
3540 #define MAX_DISP_SCAN 250
3542 /* Return the character position of a display string at or after
3543 position specified by POSITION. If no display string exists at or
3544 after POSITION, return ZV. A display string is either an overlay
3545 with `display' property whose value is a string, or a `display'
3546 text property whose value is a string. STRING is data about the
3547 string to iterate; if STRING->lstring is nil, we are iterating a
3548 buffer. FRAME_WINDOW_P is non-zero when we are displaying a window
3549 on a GUI frame. DISP_PROP is set to zero if we searched
3550 MAX_DISP_SCAN characters forward without finding any display
3551 strings, non-zero otherwise. It is set to 2 if the display string
3552 uses any kind of `(space ...)' spec that will produce a stretch of
3553 white space in the text area. */
3554 ptrdiff_t
3555 compute_display_string_pos (struct text_pos *position,
3556 struct bidi_string_data *string,
3557 struct window *w,
3558 int frame_window_p, int *disp_prop)
3560 /* OBJECT = nil means current buffer. */
3561 Lisp_Object object, object1;
3562 Lisp_Object pos, spec, limpos;
3563 int string_p = (string && (STRINGP (string->lstring) || string->s));
3564 ptrdiff_t eob = string_p ? string->schars : ZV;
3565 ptrdiff_t begb = string_p ? 0 : BEGV;
3566 ptrdiff_t bufpos, charpos = CHARPOS (*position);
3567 ptrdiff_t lim =
3568 (charpos < eob - MAX_DISP_SCAN) ? charpos + MAX_DISP_SCAN : eob;
3569 struct text_pos tpos;
3570 int rv = 0;
3572 if (string && STRINGP (string->lstring))
3573 object1 = object = string->lstring;
3574 else if (w && !string_p)
3576 XSETWINDOW (object, w);
3577 object1 = Qnil;
3579 else
3580 object1 = object = Qnil;
3582 *disp_prop = 1;
3584 if (charpos >= eob
3585 /* We don't support display properties whose values are strings
3586 that have display string properties. */
3587 || string->from_disp_str
3588 /* C strings cannot have display properties. */
3589 || (string->s && !STRINGP (object)))
3591 *disp_prop = 0;
3592 return eob;
3595 /* If the character at CHARPOS is where the display string begins,
3596 return CHARPOS. */
3597 pos = make_number (charpos);
3598 if (STRINGP (object))
3599 bufpos = string->bufpos;
3600 else
3601 bufpos = charpos;
3602 tpos = *position;
3603 if (!NILP (spec = Fget_char_property (pos, Qdisplay, object))
3604 && (charpos <= begb
3605 || !EQ (Fget_char_property (make_number (charpos - 1), Qdisplay,
3606 object),
3607 spec))
3608 && (rv = handle_display_spec (NULL, spec, object, Qnil, &tpos, bufpos,
3609 frame_window_p)))
3611 if (rv == 2)
3612 *disp_prop = 2;
3613 return charpos;
3616 /* Look forward for the first character with a `display' property
3617 that will replace the underlying text when displayed. */
3618 limpos = make_number (lim);
3619 do {
3620 pos = Fnext_single_char_property_change (pos, Qdisplay, object1, limpos);
3621 CHARPOS (tpos) = XFASTINT (pos);
3622 if (CHARPOS (tpos) >= lim)
3624 *disp_prop = 0;
3625 break;
3627 if (STRINGP (object))
3628 BYTEPOS (tpos) = string_char_to_byte (object, CHARPOS (tpos));
3629 else
3630 BYTEPOS (tpos) = CHAR_TO_BYTE (CHARPOS (tpos));
3631 spec = Fget_char_property (pos, Qdisplay, object);
3632 if (!STRINGP (object))
3633 bufpos = CHARPOS (tpos);
3634 } while (NILP (spec)
3635 || !(rv = handle_display_spec (NULL, spec, object, Qnil, &tpos,
3636 bufpos, frame_window_p)));
3637 if (rv == 2)
3638 *disp_prop = 2;
3640 return CHARPOS (tpos);
3643 /* Return the character position of the end of the display string that
3644 started at CHARPOS. If there's no display string at CHARPOS,
3645 return -1. A display string is either an overlay with `display'
3646 property whose value is a string or a `display' text property whose
3647 value is a string. */
3648 ptrdiff_t
3649 compute_display_string_end (ptrdiff_t charpos, struct bidi_string_data *string)
3651 /* OBJECT = nil means current buffer. */
3652 Lisp_Object object =
3653 (string && STRINGP (string->lstring)) ? string->lstring : Qnil;
3654 Lisp_Object pos = make_number (charpos);
3655 ptrdiff_t eob =
3656 (STRINGP (object) || (string && string->s)) ? string->schars : ZV;
3658 if (charpos >= eob || (string->s && !STRINGP (object)))
3659 return eob;
3661 /* It could happen that the display property or overlay was removed
3662 since we found it in compute_display_string_pos above. One way
3663 this can happen is if JIT font-lock was called (through
3664 handle_fontified_prop), and jit-lock-functions remove text
3665 properties or overlays from the portion of buffer that includes
3666 CHARPOS. Muse mode is known to do that, for example. In this
3667 case, we return -1 to the caller, to signal that no display
3668 string is actually present at CHARPOS. See bidi_fetch_char for
3669 how this is handled.
3671 An alternative would be to never look for display properties past
3672 it->stop_charpos. But neither compute_display_string_pos nor
3673 bidi_fetch_char that calls it know or care where the next
3674 stop_charpos is. */
3675 if (NILP (Fget_char_property (pos, Qdisplay, object)))
3676 return -1;
3678 /* Look forward for the first character where the `display' property
3679 changes. */
3680 pos = Fnext_single_char_property_change (pos, Qdisplay, object, Qnil);
3682 return XFASTINT (pos);
3687 /***********************************************************************
3688 Fontification
3689 ***********************************************************************/
3691 /* Handle changes in the `fontified' property of the current buffer by
3692 calling hook functions from Qfontification_functions to fontify
3693 regions of text. */
3695 static enum prop_handled
3696 handle_fontified_prop (struct it *it)
3698 Lisp_Object prop, pos;
3699 enum prop_handled handled = HANDLED_NORMALLY;
3701 if (!NILP (Vmemory_full))
3702 return handled;
3704 /* Get the value of the `fontified' property at IT's current buffer
3705 position. (The `fontified' property doesn't have a special
3706 meaning in strings.) If the value is nil, call functions from
3707 Qfontification_functions. */
3708 if (!STRINGP (it->string)
3709 && it->s == NULL
3710 && !NILP (Vfontification_functions)
3711 && !NILP (Vrun_hooks)
3712 && (pos = make_number (IT_CHARPOS (*it)),
3713 prop = Fget_char_property (pos, Qfontified, Qnil),
3714 /* Ignore the special cased nil value always present at EOB since
3715 no amount of fontifying will be able to change it. */
3716 NILP (prop) && IT_CHARPOS (*it) < Z))
3718 ptrdiff_t count = SPECPDL_INDEX ();
3719 Lisp_Object val;
3720 struct buffer *obuf = current_buffer;
3721 int begv = BEGV, zv = ZV;
3722 int old_clip_changed = current_buffer->clip_changed;
3724 val = Vfontification_functions;
3725 specbind (Qfontification_functions, Qnil);
3727 eassert (it->end_charpos == ZV);
3729 if (!CONSP (val) || EQ (XCAR (val), Qlambda))
3730 safe_call1 (val, pos);
3731 else
3733 Lisp_Object fns, fn;
3734 struct gcpro gcpro1, gcpro2;
3736 fns = Qnil;
3737 GCPRO2 (val, fns);
3739 for (; CONSP (val); val = XCDR (val))
3741 fn = XCAR (val);
3743 if (EQ (fn, Qt))
3745 /* A value of t indicates this hook has a local
3746 binding; it means to run the global binding too.
3747 In a global value, t should not occur. If it
3748 does, we must ignore it to avoid an endless
3749 loop. */
3750 for (fns = Fdefault_value (Qfontification_functions);
3751 CONSP (fns);
3752 fns = XCDR (fns))
3754 fn = XCAR (fns);
3755 if (!EQ (fn, Qt))
3756 safe_call1 (fn, pos);
3759 else
3760 safe_call1 (fn, pos);
3763 UNGCPRO;
3766 unbind_to (count, Qnil);
3768 /* Fontification functions routinely call `save-restriction'.
3769 Normally, this tags clip_changed, which can confuse redisplay
3770 (see discussion in Bug#6671). Since we don't perform any
3771 special handling of fontification changes in the case where
3772 `save-restriction' isn't called, there's no point doing so in
3773 this case either. So, if the buffer's restrictions are
3774 actually left unchanged, reset clip_changed. */
3775 if (obuf == current_buffer)
3777 if (begv == BEGV && zv == ZV)
3778 current_buffer->clip_changed = old_clip_changed;
3780 /* There isn't much we can reasonably do to protect against
3781 misbehaving fontification, but here's a fig leaf. */
3782 else if (BUFFER_LIVE_P (obuf))
3783 set_buffer_internal_1 (obuf);
3785 /* The fontification code may have added/removed text.
3786 It could do even a lot worse, but let's at least protect against
3787 the most obvious case where only the text past `pos' gets changed',
3788 as is/was done in grep.el where some escapes sequences are turned
3789 into face properties (bug#7876). */
3790 it->end_charpos = ZV;
3792 /* Return HANDLED_RECOMPUTE_PROPS only if function fontified
3793 something. This avoids an endless loop if they failed to
3794 fontify the text for which reason ever. */
3795 if (!NILP (Fget_char_property (pos, Qfontified, Qnil)))
3796 handled = HANDLED_RECOMPUTE_PROPS;
3799 return handled;
3804 /***********************************************************************
3805 Faces
3806 ***********************************************************************/
3808 /* Set up iterator IT from face properties at its current position.
3809 Called from handle_stop. */
3811 static enum prop_handled
3812 handle_face_prop (struct it *it)
3814 int new_face_id;
3815 ptrdiff_t next_stop;
3817 if (!STRINGP (it->string))
3819 new_face_id
3820 = face_at_buffer_position (it->w,
3821 IT_CHARPOS (*it),
3822 it->region_beg_charpos,
3823 it->region_end_charpos,
3824 &next_stop,
3825 (IT_CHARPOS (*it)
3826 + TEXT_PROP_DISTANCE_LIMIT),
3827 0, it->base_face_id);
3829 /* Is this a start of a run of characters with box face?
3830 Caveat: this can be called for a freshly initialized
3831 iterator; face_id is -1 in this case. We know that the new
3832 face will not change until limit, i.e. if the new face has a
3833 box, all characters up to limit will have one. But, as
3834 usual, we don't know whether limit is really the end. */
3835 if (new_face_id != it->face_id)
3837 struct face *new_face = FACE_FROM_ID (it->f, new_face_id);
3838 /* If it->face_id is -1, old_face below will be NULL, see
3839 the definition of FACE_FROM_ID. This will happen if this
3840 is the initial call that gets the face. */
3841 struct face *old_face = FACE_FROM_ID (it->f, it->face_id);
3843 /* If the value of face_id of the iterator is -1, we have to
3844 look in front of IT's position and see whether there is a
3845 face there that's different from new_face_id. */
3846 if (!old_face && IT_CHARPOS (*it) > BEG)
3848 int prev_face_id = face_before_it_pos (it);
3850 old_face = FACE_FROM_ID (it->f, prev_face_id);
3853 /* If the new face has a box, but the old face does not,
3854 this is the start of a run of characters with box face,
3855 i.e. this character has a shadow on the left side. */
3856 it->start_of_box_run_p = (new_face->box != FACE_NO_BOX
3857 && (old_face == NULL || !old_face->box));
3858 it->face_box_p = new_face->box != FACE_NO_BOX;
3861 else
3863 int base_face_id;
3864 ptrdiff_t bufpos;
3865 int i;
3866 Lisp_Object from_overlay
3867 = (it->current.overlay_string_index >= 0
3868 ? it->string_overlays[it->current.overlay_string_index
3869 % OVERLAY_STRING_CHUNK_SIZE]
3870 : Qnil);
3872 /* See if we got to this string directly or indirectly from
3873 an overlay property. That includes the before-string or
3874 after-string of an overlay, strings in display properties
3875 provided by an overlay, their text properties, etc.
3877 FROM_OVERLAY is the overlay that brought us here, or nil if none. */
3878 if (! NILP (from_overlay))
3879 for (i = it->sp - 1; i >= 0; i--)
3881 if (it->stack[i].current.overlay_string_index >= 0)
3882 from_overlay
3883 = it->string_overlays[it->stack[i].current.overlay_string_index
3884 % OVERLAY_STRING_CHUNK_SIZE];
3885 else if (! NILP (it->stack[i].from_overlay))
3886 from_overlay = it->stack[i].from_overlay;
3888 if (!NILP (from_overlay))
3889 break;
3892 if (! NILP (from_overlay))
3894 bufpos = IT_CHARPOS (*it);
3895 /* For a string from an overlay, the base face depends
3896 only on text properties and ignores overlays. */
3897 base_face_id
3898 = face_for_overlay_string (it->w,
3899 IT_CHARPOS (*it),
3900 it->region_beg_charpos,
3901 it->region_end_charpos,
3902 &next_stop,
3903 (IT_CHARPOS (*it)
3904 + TEXT_PROP_DISTANCE_LIMIT),
3906 from_overlay);
3908 else
3910 bufpos = 0;
3912 /* For strings from a `display' property, use the face at
3913 IT's current buffer position as the base face to merge
3914 with, so that overlay strings appear in the same face as
3915 surrounding text, unless they specify their own
3916 faces. */
3917 base_face_id = it->string_from_prefix_prop_p
3918 ? DEFAULT_FACE_ID
3919 : underlying_face_id (it);
3922 new_face_id = face_at_string_position (it->w,
3923 it->string,
3924 IT_STRING_CHARPOS (*it),
3925 bufpos,
3926 it->region_beg_charpos,
3927 it->region_end_charpos,
3928 &next_stop,
3929 base_face_id, 0);
3931 /* Is this a start of a run of characters with box? Caveat:
3932 this can be called for a freshly allocated iterator; face_id
3933 is -1 is this case. We know that the new face will not
3934 change until the next check pos, i.e. if the new face has a
3935 box, all characters up to that position will have a
3936 box. But, as usual, we don't know whether that position
3937 is really the end. */
3938 if (new_face_id != it->face_id)
3940 struct face *new_face = FACE_FROM_ID (it->f, new_face_id);
3941 struct face *old_face = FACE_FROM_ID (it->f, it->face_id);
3943 /* If new face has a box but old face hasn't, this is the
3944 start of a run of characters with box, i.e. it has a
3945 shadow on the left side. */
3946 it->start_of_box_run_p
3947 = new_face->box && (old_face == NULL || !old_face->box);
3948 it->face_box_p = new_face->box != FACE_NO_BOX;
3952 it->face_id = new_face_id;
3953 return HANDLED_NORMALLY;
3957 /* Return the ID of the face ``underlying'' IT's current position,
3958 which is in a string. If the iterator is associated with a
3959 buffer, return the face at IT's current buffer position.
3960 Otherwise, use the iterator's base_face_id. */
3962 static int
3963 underlying_face_id (struct it *it)
3965 int face_id = it->base_face_id, i;
3967 eassert (STRINGP (it->string));
3969 for (i = it->sp - 1; i >= 0; --i)
3970 if (NILP (it->stack[i].string))
3971 face_id = it->stack[i].face_id;
3973 return face_id;
3977 /* Compute the face one character before or after the current position
3978 of IT, in the visual order. BEFORE_P non-zero means get the face
3979 in front (to the left in L2R paragraphs, to the right in R2L
3980 paragraphs) of IT's screen position. Value is the ID of the face. */
3982 static int
3983 face_before_or_after_it_pos (struct it *it, int before_p)
3985 int face_id, limit;
3986 ptrdiff_t next_check_charpos;
3987 struct it it_copy;
3988 void *it_copy_data = NULL;
3990 eassert (it->s == NULL);
3992 if (STRINGP (it->string))
3994 ptrdiff_t bufpos, charpos;
3995 int base_face_id;
3997 /* No face change past the end of the string (for the case
3998 we are padding with spaces). No face change before the
3999 string start. */
4000 if (IT_STRING_CHARPOS (*it) >= SCHARS (it->string)
4001 || (IT_STRING_CHARPOS (*it) == 0 && before_p))
4002 return it->face_id;
4004 if (!it->bidi_p)
4006 /* Set charpos to the position before or after IT's current
4007 position, in the logical order, which in the non-bidi
4008 case is the same as the visual order. */
4009 if (before_p)
4010 charpos = IT_STRING_CHARPOS (*it) - 1;
4011 else if (it->what == IT_COMPOSITION)
4012 /* For composition, we must check the character after the
4013 composition. */
4014 charpos = IT_STRING_CHARPOS (*it) + it->cmp_it.nchars;
4015 else
4016 charpos = IT_STRING_CHARPOS (*it) + 1;
4018 else
4020 if (before_p)
4022 /* With bidi iteration, the character before the current
4023 in the visual order cannot be found by simple
4024 iteration, because "reverse" reordering is not
4025 supported. Instead, we need to use the move_it_*
4026 family of functions. */
4027 /* Ignore face changes before the first visible
4028 character on this display line. */
4029 if (it->current_x <= it->first_visible_x)
4030 return it->face_id;
4031 SAVE_IT (it_copy, *it, it_copy_data);
4032 /* Implementation note: Since move_it_in_display_line
4033 works in the iterator geometry, and thinks the first
4034 character is always the leftmost, even in R2L lines,
4035 we don't need to distinguish between the R2L and L2R
4036 cases here. */
4037 move_it_in_display_line (&it_copy, SCHARS (it_copy.string),
4038 it_copy.current_x - 1, MOVE_TO_X);
4039 charpos = IT_STRING_CHARPOS (it_copy);
4040 RESTORE_IT (it, it, it_copy_data);
4042 else
4044 /* Set charpos to the string position of the character
4045 that comes after IT's current position in the visual
4046 order. */
4047 int n = (it->what == IT_COMPOSITION ? it->cmp_it.nchars : 1);
4049 it_copy = *it;
4050 while (n--)
4051 bidi_move_to_visually_next (&it_copy.bidi_it);
4053 charpos = it_copy.bidi_it.charpos;
4056 eassert (0 <= charpos && charpos <= SCHARS (it->string));
4058 if (it->current.overlay_string_index >= 0)
4059 bufpos = IT_CHARPOS (*it);
4060 else
4061 bufpos = 0;
4063 base_face_id = underlying_face_id (it);
4065 /* Get the face for ASCII, or unibyte. */
4066 face_id = face_at_string_position (it->w,
4067 it->string,
4068 charpos,
4069 bufpos,
4070 it->region_beg_charpos,
4071 it->region_end_charpos,
4072 &next_check_charpos,
4073 base_face_id, 0);
4075 /* Correct the face for charsets different from ASCII. Do it
4076 for the multibyte case only. The face returned above is
4077 suitable for unibyte text if IT->string is unibyte. */
4078 if (STRING_MULTIBYTE (it->string))
4080 struct text_pos pos1 = string_pos (charpos, it->string);
4081 const unsigned char *p = SDATA (it->string) + BYTEPOS (pos1);
4082 int c, len;
4083 struct face *face = FACE_FROM_ID (it->f, face_id);
4085 c = string_char_and_length (p, &len);
4086 face_id = FACE_FOR_CHAR (it->f, face, c, charpos, it->string);
4089 else
4091 struct text_pos pos;
4093 if ((IT_CHARPOS (*it) >= ZV && !before_p)
4094 || (IT_CHARPOS (*it) <= BEGV && before_p))
4095 return it->face_id;
4097 limit = IT_CHARPOS (*it) + TEXT_PROP_DISTANCE_LIMIT;
4098 pos = it->current.pos;
4100 if (!it->bidi_p)
4102 if (before_p)
4103 DEC_TEXT_POS (pos, it->multibyte_p);
4104 else
4106 if (it->what == IT_COMPOSITION)
4108 /* For composition, we must check the position after
4109 the composition. */
4110 pos.charpos += it->cmp_it.nchars;
4111 pos.bytepos += it->len;
4113 else
4114 INC_TEXT_POS (pos, it->multibyte_p);
4117 else
4119 if (before_p)
4121 /* With bidi iteration, the character before the current
4122 in the visual order cannot be found by simple
4123 iteration, because "reverse" reordering is not
4124 supported. Instead, we need to use the move_it_*
4125 family of functions. */
4126 /* Ignore face changes before the first visible
4127 character on this display line. */
4128 if (it->current_x <= it->first_visible_x)
4129 return it->face_id;
4130 SAVE_IT (it_copy, *it, it_copy_data);
4131 /* Implementation note: Since move_it_in_display_line
4132 works in the iterator geometry, and thinks the first
4133 character is always the leftmost, even in R2L lines,
4134 we don't need to distinguish between the R2L and L2R
4135 cases here. */
4136 move_it_in_display_line (&it_copy, ZV,
4137 it_copy.current_x - 1, MOVE_TO_X);
4138 pos = it_copy.current.pos;
4139 RESTORE_IT (it, it, it_copy_data);
4141 else
4143 /* Set charpos to the buffer position of the character
4144 that comes after IT's current position in the visual
4145 order. */
4146 int n = (it->what == IT_COMPOSITION ? it->cmp_it.nchars : 1);
4148 it_copy = *it;
4149 while (n--)
4150 bidi_move_to_visually_next (&it_copy.bidi_it);
4152 SET_TEXT_POS (pos,
4153 it_copy.bidi_it.charpos, it_copy.bidi_it.bytepos);
4156 eassert (BEGV <= CHARPOS (pos) && CHARPOS (pos) <= ZV);
4158 /* Determine face for CHARSET_ASCII, or unibyte. */
4159 face_id = face_at_buffer_position (it->w,
4160 CHARPOS (pos),
4161 it->region_beg_charpos,
4162 it->region_end_charpos,
4163 &next_check_charpos,
4164 limit, 0, -1);
4166 /* Correct the face for charsets different from ASCII. Do it
4167 for the multibyte case only. The face returned above is
4168 suitable for unibyte text if current_buffer is unibyte. */
4169 if (it->multibyte_p)
4171 int c = FETCH_MULTIBYTE_CHAR (BYTEPOS (pos));
4172 struct face *face = FACE_FROM_ID (it->f, face_id);
4173 face_id = FACE_FOR_CHAR (it->f, face, c, CHARPOS (pos), Qnil);
4177 return face_id;
4182 /***********************************************************************
4183 Invisible text
4184 ***********************************************************************/
4186 /* Set up iterator IT from invisible properties at its current
4187 position. Called from handle_stop. */
4189 static enum prop_handled
4190 handle_invisible_prop (struct it *it)
4192 enum prop_handled handled = HANDLED_NORMALLY;
4193 int invis_p;
4194 Lisp_Object prop;
4196 if (STRINGP (it->string))
4198 Lisp_Object end_charpos, limit, charpos;
4200 /* Get the value of the invisible text property at the
4201 current position. Value will be nil if there is no such
4202 property. */
4203 charpos = make_number (IT_STRING_CHARPOS (*it));
4204 prop = Fget_text_property (charpos, Qinvisible, it->string);
4205 invis_p = TEXT_PROP_MEANS_INVISIBLE (prop);
4207 if (invis_p && IT_STRING_CHARPOS (*it) < it->end_charpos)
4209 /* Record whether we have to display an ellipsis for the
4210 invisible text. */
4211 int display_ellipsis_p = (invis_p == 2);
4212 ptrdiff_t len, endpos;
4214 handled = HANDLED_RECOMPUTE_PROPS;
4216 /* Get the position at which the next visible text can be
4217 found in IT->string, if any. */
4218 endpos = len = SCHARS (it->string);
4219 XSETINT (limit, len);
4222 end_charpos = Fnext_single_property_change (charpos, Qinvisible,
4223 it->string, limit);
4224 if (INTEGERP (end_charpos))
4226 endpos = XFASTINT (end_charpos);
4227 prop = Fget_text_property (end_charpos, Qinvisible, it->string);
4228 invis_p = TEXT_PROP_MEANS_INVISIBLE (prop);
4229 if (invis_p == 2)
4230 display_ellipsis_p = 1;
4233 while (invis_p && endpos < len);
4235 if (display_ellipsis_p)
4236 it->ellipsis_p = 1;
4238 if (endpos < len)
4240 /* Text at END_CHARPOS is visible. Move IT there. */
4241 struct text_pos old;
4242 ptrdiff_t oldpos;
4244 old = it->current.string_pos;
4245 oldpos = CHARPOS (old);
4246 if (it->bidi_p)
4248 if (it->bidi_it.first_elt
4249 && it->bidi_it.charpos < SCHARS (it->string))
4250 bidi_paragraph_init (it->paragraph_embedding,
4251 &it->bidi_it, 1);
4252 /* Bidi-iterate out of the invisible text. */
4255 bidi_move_to_visually_next (&it->bidi_it);
4257 while (oldpos <= it->bidi_it.charpos
4258 && it->bidi_it.charpos < endpos);
4260 IT_STRING_CHARPOS (*it) = it->bidi_it.charpos;
4261 IT_STRING_BYTEPOS (*it) = it->bidi_it.bytepos;
4262 if (IT_CHARPOS (*it) >= endpos)
4263 it->prev_stop = endpos;
4265 else
4267 IT_STRING_CHARPOS (*it) = XFASTINT (end_charpos);
4268 compute_string_pos (&it->current.string_pos, old, it->string);
4271 else
4273 /* The rest of the string is invisible. If this is an
4274 overlay string, proceed with the next overlay string
4275 or whatever comes and return a character from there. */
4276 if (it->current.overlay_string_index >= 0
4277 && !display_ellipsis_p)
4279 next_overlay_string (it);
4280 /* Don't check for overlay strings when we just
4281 finished processing them. */
4282 handled = HANDLED_OVERLAY_STRING_CONSUMED;
4284 else
4286 IT_STRING_CHARPOS (*it) = SCHARS (it->string);
4287 IT_STRING_BYTEPOS (*it) = SBYTES (it->string);
4292 else
4294 ptrdiff_t newpos, next_stop, start_charpos, tem;
4295 Lisp_Object pos, overlay;
4297 /* First of all, is there invisible text at this position? */
4298 tem = start_charpos = IT_CHARPOS (*it);
4299 pos = make_number (tem);
4300 prop = get_char_property_and_overlay (pos, Qinvisible, it->window,
4301 &overlay);
4302 invis_p = TEXT_PROP_MEANS_INVISIBLE (prop);
4304 /* If we are on invisible text, skip over it. */
4305 if (invis_p && start_charpos < it->end_charpos)
4307 /* Record whether we have to display an ellipsis for the
4308 invisible text. */
4309 int display_ellipsis_p = invis_p == 2;
4311 handled = HANDLED_RECOMPUTE_PROPS;
4313 /* Loop skipping over invisible text. The loop is left at
4314 ZV or with IT on the first char being visible again. */
4317 /* Try to skip some invisible text. Return value is the
4318 position reached which can be equal to where we start
4319 if there is nothing invisible there. This skips both
4320 over invisible text properties and overlays with
4321 invisible property. */
4322 newpos = skip_invisible (tem, &next_stop, ZV, it->window);
4324 /* If we skipped nothing at all we weren't at invisible
4325 text in the first place. If everything to the end of
4326 the buffer was skipped, end the loop. */
4327 if (newpos == tem || newpos >= ZV)
4328 invis_p = 0;
4329 else
4331 /* We skipped some characters but not necessarily
4332 all there are. Check if we ended up on visible
4333 text. Fget_char_property returns the property of
4334 the char before the given position, i.e. if we
4335 get invis_p = 0, this means that the char at
4336 newpos is visible. */
4337 pos = make_number (newpos);
4338 prop = Fget_char_property (pos, Qinvisible, it->window);
4339 invis_p = TEXT_PROP_MEANS_INVISIBLE (prop);
4342 /* If we ended up on invisible text, proceed to
4343 skip starting with next_stop. */
4344 if (invis_p)
4345 tem = next_stop;
4347 /* If there are adjacent invisible texts, don't lose the
4348 second one's ellipsis. */
4349 if (invis_p == 2)
4350 display_ellipsis_p = 1;
4352 while (invis_p);
4354 /* The position newpos is now either ZV or on visible text. */
4355 if (it->bidi_p)
4357 ptrdiff_t bpos = CHAR_TO_BYTE (newpos);
4358 int on_newline =
4359 bpos == ZV_BYTE || FETCH_BYTE (bpos) == '\n';
4360 int after_newline =
4361 newpos <= BEGV || FETCH_BYTE (bpos - 1) == '\n';
4363 /* If the invisible text ends on a newline or on a
4364 character after a newline, we can avoid the costly,
4365 character by character, bidi iteration to NEWPOS, and
4366 instead simply reseat the iterator there. That's
4367 because all bidi reordering information is tossed at
4368 the newline. This is a big win for modes that hide
4369 complete lines, like Outline, Org, etc. */
4370 if (on_newline || after_newline)
4372 struct text_pos tpos;
4373 bidi_dir_t pdir = it->bidi_it.paragraph_dir;
4375 SET_TEXT_POS (tpos, newpos, bpos);
4376 reseat_1 (it, tpos, 0);
4377 /* If we reseat on a newline/ZV, we need to prep the
4378 bidi iterator for advancing to the next character
4379 after the newline/EOB, keeping the current paragraph
4380 direction (so that PRODUCE_GLYPHS does TRT wrt
4381 prepending/appending glyphs to a glyph row). */
4382 if (on_newline)
4384 it->bidi_it.first_elt = 0;
4385 it->bidi_it.paragraph_dir = pdir;
4386 it->bidi_it.ch = (bpos == ZV_BYTE) ? -1 : '\n';
4387 it->bidi_it.nchars = 1;
4388 it->bidi_it.ch_len = 1;
4391 else /* Must use the slow method. */
4393 /* With bidi iteration, the region of invisible text
4394 could start and/or end in the middle of a
4395 non-base embedding level. Therefore, we need to
4396 skip invisible text using the bidi iterator,
4397 starting at IT's current position, until we find
4398 ourselves outside of the invisible text.
4399 Skipping invisible text _after_ bidi iteration
4400 avoids affecting the visual order of the
4401 displayed text when invisible properties are
4402 added or removed. */
4403 if (it->bidi_it.first_elt && it->bidi_it.charpos < ZV)
4405 /* If we were `reseat'ed to a new paragraph,
4406 determine the paragraph base direction. We
4407 need to do it now because
4408 next_element_from_buffer may not have a
4409 chance to do it, if we are going to skip any
4410 text at the beginning, which resets the
4411 FIRST_ELT flag. */
4412 bidi_paragraph_init (it->paragraph_embedding,
4413 &it->bidi_it, 1);
4417 bidi_move_to_visually_next (&it->bidi_it);
4419 while (it->stop_charpos <= it->bidi_it.charpos
4420 && it->bidi_it.charpos < newpos);
4421 IT_CHARPOS (*it) = it->bidi_it.charpos;
4422 IT_BYTEPOS (*it) = it->bidi_it.bytepos;
4423 /* If we overstepped NEWPOS, record its position in
4424 the iterator, so that we skip invisible text if
4425 later the bidi iteration lands us in the
4426 invisible region again. */
4427 if (IT_CHARPOS (*it) >= newpos)
4428 it->prev_stop = newpos;
4431 else
4433 IT_CHARPOS (*it) = newpos;
4434 IT_BYTEPOS (*it) = CHAR_TO_BYTE (newpos);
4437 /* If there are before-strings at the start of invisible
4438 text, and the text is invisible because of a text
4439 property, arrange to show before-strings because 20.x did
4440 it that way. (If the text is invisible because of an
4441 overlay property instead of a text property, this is
4442 already handled in the overlay code.) */
4443 if (NILP (overlay)
4444 && get_overlay_strings (it, it->stop_charpos))
4446 handled = HANDLED_RECOMPUTE_PROPS;
4447 it->stack[it->sp - 1].display_ellipsis_p = display_ellipsis_p;
4449 else if (display_ellipsis_p)
4451 /* Make sure that the glyphs of the ellipsis will get
4452 correct `charpos' values. If we would not update
4453 it->position here, the glyphs would belong to the
4454 last visible character _before_ the invisible
4455 text, which confuses `set_cursor_from_row'.
4457 We use the last invisible position instead of the
4458 first because this way the cursor is always drawn on
4459 the first "." of the ellipsis, whenever PT is inside
4460 the invisible text. Otherwise the cursor would be
4461 placed _after_ the ellipsis when the point is after the
4462 first invisible character. */
4463 if (!STRINGP (it->object))
4465 it->position.charpos = newpos - 1;
4466 it->position.bytepos = CHAR_TO_BYTE (it->position.charpos);
4468 it->ellipsis_p = 1;
4469 /* Let the ellipsis display before
4470 considering any properties of the following char.
4471 Fixes jasonr@gnu.org 01 Oct 07 bug. */
4472 handled = HANDLED_RETURN;
4477 return handled;
4481 /* Make iterator IT return `...' next.
4482 Replaces LEN characters from buffer. */
4484 static void
4485 setup_for_ellipsis (struct it *it, int len)
4487 /* Use the display table definition for `...'. Invalid glyphs
4488 will be handled by the method returning elements from dpvec. */
4489 if (it->dp && VECTORP (DISP_INVIS_VECTOR (it->dp)))
4491 struct Lisp_Vector *v = XVECTOR (DISP_INVIS_VECTOR (it->dp));
4492 it->dpvec = v->contents;
4493 it->dpend = v->contents + v->header.size;
4495 else
4497 /* Default `...'. */
4498 it->dpvec = default_invis_vector;
4499 it->dpend = default_invis_vector + 3;
4502 it->dpvec_char_len = len;
4503 it->current.dpvec_index = 0;
4504 it->dpvec_face_id = -1;
4506 /* Remember the current face id in case glyphs specify faces.
4507 IT's face is restored in set_iterator_to_next.
4508 saved_face_id was set to preceding char's face in handle_stop. */
4509 if (it->saved_face_id < 0 || it->saved_face_id != it->face_id)
4510 it->saved_face_id = it->face_id = DEFAULT_FACE_ID;
4512 it->method = GET_FROM_DISPLAY_VECTOR;
4513 it->ellipsis_p = 1;
4518 /***********************************************************************
4519 'display' property
4520 ***********************************************************************/
4522 /* Set up iterator IT from `display' property at its current position.
4523 Called from handle_stop.
4524 We return HANDLED_RETURN if some part of the display property
4525 overrides the display of the buffer text itself.
4526 Otherwise we return HANDLED_NORMALLY. */
4528 static enum prop_handled
4529 handle_display_prop (struct it *it)
4531 Lisp_Object propval, object, overlay;
4532 struct text_pos *position;
4533 ptrdiff_t bufpos;
4534 /* Nonzero if some property replaces the display of the text itself. */
4535 int display_replaced_p = 0;
4537 if (STRINGP (it->string))
4539 object = it->string;
4540 position = &it->current.string_pos;
4541 bufpos = CHARPOS (it->current.pos);
4543 else
4545 XSETWINDOW (object, it->w);
4546 position = &it->current.pos;
4547 bufpos = CHARPOS (*position);
4550 /* Reset those iterator values set from display property values. */
4551 it->slice.x = it->slice.y = it->slice.width = it->slice.height = Qnil;
4552 it->space_width = Qnil;
4553 it->font_height = Qnil;
4554 it->voffset = 0;
4556 /* We don't support recursive `display' properties, i.e. string
4557 values that have a string `display' property, that have a string
4558 `display' property etc. */
4559 if (!it->string_from_display_prop_p)
4560 it->area = TEXT_AREA;
4562 propval = get_char_property_and_overlay (make_number (position->charpos),
4563 Qdisplay, object, &overlay);
4564 if (NILP (propval))
4565 return HANDLED_NORMALLY;
4566 /* Now OVERLAY is the overlay that gave us this property, or nil
4567 if it was a text property. */
4569 if (!STRINGP (it->string))
4570 object = it->w->contents;
4572 display_replaced_p = handle_display_spec (it, propval, object, overlay,
4573 position, bufpos,
4574 FRAME_WINDOW_P (it->f));
4576 return display_replaced_p ? HANDLED_RETURN : HANDLED_NORMALLY;
4579 /* Subroutine of handle_display_prop. Returns non-zero if the display
4580 specification in SPEC is a replacing specification, i.e. it would
4581 replace the text covered by `display' property with something else,
4582 such as an image or a display string. If SPEC includes any kind or
4583 `(space ...) specification, the value is 2; this is used by
4584 compute_display_string_pos, which see.
4586 See handle_single_display_spec for documentation of arguments.
4587 frame_window_p is non-zero if the window being redisplayed is on a
4588 GUI frame; this argument is used only if IT is NULL, see below.
4590 IT can be NULL, if this is called by the bidi reordering code
4591 through compute_display_string_pos, which see. In that case, this
4592 function only examines SPEC, but does not otherwise "handle" it, in
4593 the sense that it doesn't set up members of IT from the display
4594 spec. */
4595 static int
4596 handle_display_spec (struct it *it, Lisp_Object spec, Lisp_Object object,
4597 Lisp_Object overlay, struct text_pos *position,
4598 ptrdiff_t bufpos, int frame_window_p)
4600 int replacing_p = 0;
4601 int rv;
4603 if (CONSP (spec)
4604 /* Simple specifications. */
4605 && !EQ (XCAR (spec), Qimage)
4606 && !EQ (XCAR (spec), Qspace)
4607 && !EQ (XCAR (spec), Qwhen)
4608 && !EQ (XCAR (spec), Qslice)
4609 && !EQ (XCAR (spec), Qspace_width)
4610 && !EQ (XCAR (spec), Qheight)
4611 && !EQ (XCAR (spec), Qraise)
4612 /* Marginal area specifications. */
4613 && !(CONSP (XCAR (spec)) && EQ (XCAR (XCAR (spec)), Qmargin))
4614 && !EQ (XCAR (spec), Qleft_fringe)
4615 && !EQ (XCAR (spec), Qright_fringe)
4616 && !NILP (XCAR (spec)))
4618 for (; CONSP (spec); spec = XCDR (spec))
4620 if ((rv = handle_single_display_spec (it, XCAR (spec), object,
4621 overlay, position, bufpos,
4622 replacing_p, frame_window_p)))
4624 replacing_p = rv;
4625 /* If some text in a string is replaced, `position' no
4626 longer points to the position of `object'. */
4627 if (!it || STRINGP (object))
4628 break;
4632 else if (VECTORP (spec))
4634 ptrdiff_t i;
4635 for (i = 0; i < ASIZE (spec); ++i)
4636 if ((rv = handle_single_display_spec (it, AREF (spec, i), object,
4637 overlay, position, bufpos,
4638 replacing_p, frame_window_p)))
4640 replacing_p = rv;
4641 /* If some text in a string is replaced, `position' no
4642 longer points to the position of `object'. */
4643 if (!it || STRINGP (object))
4644 break;
4647 else
4649 if ((rv = handle_single_display_spec (it, spec, object, overlay,
4650 position, bufpos, 0,
4651 frame_window_p)))
4652 replacing_p = rv;
4655 return replacing_p;
4658 /* Value is the position of the end of the `display' property starting
4659 at START_POS in OBJECT. */
4661 static struct text_pos
4662 display_prop_end (struct it *it, Lisp_Object object, struct text_pos start_pos)
4664 Lisp_Object end;
4665 struct text_pos end_pos;
4667 end = Fnext_single_char_property_change (make_number (CHARPOS (start_pos)),
4668 Qdisplay, object, Qnil);
4669 CHARPOS (end_pos) = XFASTINT (end);
4670 if (STRINGP (object))
4671 compute_string_pos (&end_pos, start_pos, it->string);
4672 else
4673 BYTEPOS (end_pos) = CHAR_TO_BYTE (XFASTINT (end));
4675 return end_pos;
4679 /* Set up IT from a single `display' property specification SPEC. OBJECT
4680 is the object in which the `display' property was found. *POSITION
4681 is the position in OBJECT at which the `display' property was found.
4682 BUFPOS is the buffer position of OBJECT (different from POSITION if
4683 OBJECT is not a buffer). DISPLAY_REPLACED_P non-zero means that we
4684 previously saw a display specification which already replaced text
4685 display with something else, for example an image; we ignore such
4686 properties after the first one has been processed.
4688 OVERLAY is the overlay this `display' property came from,
4689 or nil if it was a text property.
4691 If SPEC is a `space' or `image' specification, and in some other
4692 cases too, set *POSITION to the position where the `display'
4693 property ends.
4695 If IT is NULL, only examine the property specification in SPEC, but
4696 don't set up IT. In that case, FRAME_WINDOW_P non-zero means SPEC
4697 is intended to be displayed in a window on a GUI frame.
4699 Value is non-zero if something was found which replaces the display
4700 of buffer or string text. */
4702 static int
4703 handle_single_display_spec (struct it *it, Lisp_Object spec, Lisp_Object object,
4704 Lisp_Object overlay, struct text_pos *position,
4705 ptrdiff_t bufpos, int display_replaced_p,
4706 int frame_window_p)
4708 Lisp_Object form;
4709 Lisp_Object location, value;
4710 struct text_pos start_pos = *position;
4711 int valid_p;
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, 0);
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 = 1;
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 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_p)
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 = 1;
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 = 1;
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 = 1;
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. */
5150 display_prop_intangible_p (Lisp_Object prop, Lisp_Object overlay,
5151 ptrdiff_t charpos, ptrdiff_t bytepos)
5153 int 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);
5162 /* Return 1 if PROP is a display sub-property value containing STRING.
5164 Implementation note: this and the following function are really
5165 special cases of handle_display_spec and
5166 handle_single_display_spec, and should ideally use the same code.
5167 Until they do, these two pairs must be consistent and must be
5168 modified in sync. */
5170 static int
5171 single_display_spec_string_p (Lisp_Object prop, Lisp_Object string)
5173 if (EQ (string, prop))
5174 return 1;
5176 /* Skip over `when FORM'. */
5177 if (CONSP (prop) && EQ (XCAR (prop), Qwhen))
5179 prop = XCDR (prop);
5180 if (!CONSP (prop))
5181 return 0;
5182 /* Actually, the condition following `when' should be eval'ed,
5183 like handle_single_display_spec does, and we should return
5184 zero if it evaluates to nil. However, this function is
5185 called only when the buffer was already displayed and some
5186 glyph in the glyph matrix was found to come from a display
5187 string. Therefore, the condition was already evaluated, and
5188 the result was non-nil, otherwise the display string wouldn't
5189 have been displayed and we would have never been called for
5190 this property. Thus, we can skip the evaluation and assume
5191 its result is non-nil. */
5192 prop = XCDR (prop);
5195 if (CONSP (prop))
5196 /* Skip over `margin LOCATION'. */
5197 if (EQ (XCAR (prop), Qmargin))
5199 prop = XCDR (prop);
5200 if (!CONSP (prop))
5201 return 0;
5203 prop = XCDR (prop);
5204 if (!CONSP (prop))
5205 return 0;
5208 return EQ (prop, string) || (CONSP (prop) && EQ (XCAR (prop), string));
5212 /* Return 1 if STRING appears in the `display' property PROP. */
5214 static int
5215 display_prop_string_p (Lisp_Object prop, Lisp_Object string)
5217 if (CONSP (prop)
5218 && !EQ (XCAR (prop), Qwhen)
5219 && !(CONSP (XCAR (prop)) && EQ (Qmargin, XCAR (XCAR (prop)))))
5221 /* A list of sub-properties. */
5222 while (CONSP (prop))
5224 if (single_display_spec_string_p (XCAR (prop), string))
5225 return 1;
5226 prop = XCDR (prop);
5229 else if (VECTORP (prop))
5231 /* A vector of sub-properties. */
5232 ptrdiff_t i;
5233 for (i = 0; i < ASIZE (prop); ++i)
5234 if (single_display_spec_string_p (AREF (prop, i), string))
5235 return 1;
5237 else
5238 return single_display_spec_string_p (prop, string);
5240 return 0;
5243 /* Look for STRING in overlays and text properties in the current
5244 buffer, between character positions FROM and TO (excluding TO).
5245 BACK_P non-zero means look back (in this case, TO is supposed to be
5246 less than FROM).
5247 Value is the first character position where STRING was found, or
5248 zero if it wasn't found before hitting TO.
5250 This function may only use code that doesn't eval because it is
5251 called asynchronously from note_mouse_highlight. */
5253 static ptrdiff_t
5254 string_buffer_position_lim (Lisp_Object string,
5255 ptrdiff_t from, ptrdiff_t to, int back_p)
5257 Lisp_Object limit, prop, pos;
5258 int found = 0;
5260 pos = make_number (max (from, BEGV));
5262 if (!back_p) /* looking forward */
5264 limit = make_number (min (to, ZV));
5265 while (!found && !EQ (pos, limit))
5267 prop = Fget_char_property (pos, Qdisplay, Qnil);
5268 if (!NILP (prop) && display_prop_string_p (prop, string))
5269 found = 1;
5270 else
5271 pos = Fnext_single_char_property_change (pos, Qdisplay, Qnil,
5272 limit);
5275 else /* looking back */
5277 limit = make_number (max (to, BEGV));
5278 while (!found && !EQ (pos, limit))
5280 prop = Fget_char_property (pos, Qdisplay, Qnil);
5281 if (!NILP (prop) && display_prop_string_p (prop, string))
5282 found = 1;
5283 else
5284 pos = Fprevious_single_char_property_change (pos, Qdisplay, Qnil,
5285 limit);
5289 return found ? XINT (pos) : 0;
5292 /* Determine which buffer position in current buffer STRING comes from.
5293 AROUND_CHARPOS is an approximate position where it could come from.
5294 Value is the buffer position or 0 if it couldn't be determined.
5296 This function is necessary because we don't record buffer positions
5297 in glyphs generated from strings (to keep struct glyph small).
5298 This function may only use code that doesn't eval because it is
5299 called asynchronously from note_mouse_highlight. */
5301 static ptrdiff_t
5302 string_buffer_position (Lisp_Object string, ptrdiff_t around_charpos)
5304 const int MAX_DISTANCE = 1000;
5305 ptrdiff_t found = string_buffer_position_lim (string, around_charpos,
5306 around_charpos + MAX_DISTANCE,
5309 if (!found)
5310 found = string_buffer_position_lim (string, around_charpos,
5311 around_charpos - MAX_DISTANCE, 1);
5312 return found;
5317 /***********************************************************************
5318 `composition' property
5319 ***********************************************************************/
5321 /* Set up iterator IT from `composition' property at its current
5322 position. Called from handle_stop. */
5324 static enum prop_handled
5325 handle_composition_prop (struct it *it)
5327 Lisp_Object prop, string;
5328 ptrdiff_t pos, pos_byte, start, end;
5330 if (STRINGP (it->string))
5332 unsigned char *s;
5334 pos = IT_STRING_CHARPOS (*it);
5335 pos_byte = IT_STRING_BYTEPOS (*it);
5336 string = it->string;
5337 s = SDATA (string) + pos_byte;
5338 it->c = STRING_CHAR (s);
5340 else
5342 pos = IT_CHARPOS (*it);
5343 pos_byte = IT_BYTEPOS (*it);
5344 string = Qnil;
5345 it->c = FETCH_CHAR (pos_byte);
5348 /* If there's a valid composition and point is not inside of the
5349 composition (in the case that the composition is from the current
5350 buffer), draw a glyph composed from the composition components. */
5351 if (find_composition (pos, -1, &start, &end, &prop, string)
5352 && composition_valid_p (start, end, prop)
5353 && (STRINGP (it->string) || (PT <= start || PT >= end)))
5355 if (start < pos)
5356 /* As we can't handle this situation (perhaps font-lock added
5357 a new composition), we just return here hoping that next
5358 redisplay will detect this composition much earlier. */
5359 return HANDLED_NORMALLY;
5360 if (start != pos)
5362 if (STRINGP (it->string))
5363 pos_byte = string_char_to_byte (it->string, start);
5364 else
5365 pos_byte = CHAR_TO_BYTE (start);
5367 it->cmp_it.id = get_composition_id (start, pos_byte, end - start,
5368 prop, string);
5370 if (it->cmp_it.id >= 0)
5372 it->cmp_it.ch = -1;
5373 it->cmp_it.nchars = COMPOSITION_LENGTH (prop);
5374 it->cmp_it.nglyphs = -1;
5378 return HANDLED_NORMALLY;
5383 /***********************************************************************
5384 Overlay strings
5385 ***********************************************************************/
5387 /* The following structure is used to record overlay strings for
5388 later sorting in load_overlay_strings. */
5390 struct overlay_entry
5392 Lisp_Object overlay;
5393 Lisp_Object string;
5394 EMACS_INT priority;
5395 int after_string_p;
5399 /* Set up iterator IT from overlay strings at its current position.
5400 Called from handle_stop. */
5402 static enum prop_handled
5403 handle_overlay_change (struct it *it)
5405 if (!STRINGP (it->string) && get_overlay_strings (it, 0))
5406 return HANDLED_RECOMPUTE_PROPS;
5407 else
5408 return HANDLED_NORMALLY;
5412 /* Set up the next overlay string for delivery by IT, if there is an
5413 overlay string to deliver. Called by set_iterator_to_next when the
5414 end of the current overlay string is reached. If there are more
5415 overlay strings to display, IT->string and
5416 IT->current.overlay_string_index are set appropriately here.
5417 Otherwise IT->string is set to nil. */
5419 static void
5420 next_overlay_string (struct it *it)
5422 ++it->current.overlay_string_index;
5423 if (it->current.overlay_string_index == it->n_overlay_strings)
5425 /* No more overlay strings. Restore IT's settings to what
5426 they were before overlay strings were processed, and
5427 continue to deliver from current_buffer. */
5429 it->ellipsis_p = (it->stack[it->sp - 1].display_ellipsis_p != 0);
5430 pop_it (it);
5431 eassert (it->sp > 0
5432 || (NILP (it->string)
5433 && it->method == GET_FROM_BUFFER
5434 && it->stop_charpos >= BEGV
5435 && it->stop_charpos <= it->end_charpos));
5436 it->current.overlay_string_index = -1;
5437 it->n_overlay_strings = 0;
5438 it->overlay_strings_charpos = -1;
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 /* If we're at the end of the buffer, record that we have
5447 processed the overlay strings there already, so that
5448 next_element_from_buffer doesn't try it again. */
5449 if (NILP (it->string) && IT_CHARPOS (*it) >= it->end_charpos)
5450 it->overlay_strings_at_end_processed_p = 1;
5452 else
5454 /* There are more overlay strings to process. If
5455 IT->current.overlay_string_index has advanced to a position
5456 where we must load IT->overlay_strings with more strings, do
5457 it. We must load at the IT->overlay_strings_charpos where
5458 IT->n_overlay_strings was originally computed; when invisible
5459 text is present, this might not be IT_CHARPOS (Bug#7016). */
5460 int i = it->current.overlay_string_index % OVERLAY_STRING_CHUNK_SIZE;
5462 if (it->current.overlay_string_index && i == 0)
5463 load_overlay_strings (it, it->overlay_strings_charpos);
5465 /* Initialize IT to deliver display elements from the overlay
5466 string. */
5467 it->string = it->overlay_strings[i];
5468 it->multibyte_p = STRING_MULTIBYTE (it->string);
5469 SET_TEXT_POS (it->current.string_pos, 0, 0);
5470 it->method = GET_FROM_STRING;
5471 it->stop_charpos = 0;
5472 it->end_charpos = SCHARS (it->string);
5473 if (it->cmp_it.stop_pos >= 0)
5474 it->cmp_it.stop_pos = 0;
5475 it->prev_stop = 0;
5476 it->base_level_stop = 0;
5478 /* Set up the bidi iterator for this overlay string. */
5479 if (it->bidi_p)
5481 it->bidi_it.string.lstring = it->string;
5482 it->bidi_it.string.s = NULL;
5483 it->bidi_it.string.schars = SCHARS (it->string);
5484 it->bidi_it.string.bufpos = it->overlay_strings_charpos;
5485 it->bidi_it.string.from_disp_str = it->string_from_display_prop_p;
5486 it->bidi_it.string.unibyte = !it->multibyte_p;
5487 it->bidi_it.w = it->w;
5488 bidi_init_it (0, 0, FRAME_WINDOW_P (it->f), &it->bidi_it);
5492 CHECK_IT (it);
5496 /* Compare two overlay_entry structures E1 and E2. Used as a
5497 comparison function for qsort in load_overlay_strings. Overlay
5498 strings for the same position are sorted so that
5500 1. All after-strings come in front of before-strings, except
5501 when they come from the same overlay.
5503 2. Within after-strings, strings are sorted so that overlay strings
5504 from overlays with higher priorities come first.
5506 2. Within before-strings, strings are sorted so that overlay
5507 strings from overlays with higher priorities come last.
5509 Value is analogous to strcmp. */
5512 static int
5513 compare_overlay_entries (const void *e1, const void *e2)
5515 struct overlay_entry const *entry1 = e1;
5516 struct overlay_entry const *entry2 = e2;
5517 int result;
5519 if (entry1->after_string_p != entry2->after_string_p)
5521 /* Let after-strings appear in front of before-strings if
5522 they come from different overlays. */
5523 if (EQ (entry1->overlay, entry2->overlay))
5524 result = entry1->after_string_p ? 1 : -1;
5525 else
5526 result = entry1->after_string_p ? -1 : 1;
5528 else if (entry1->priority != entry2->priority)
5530 if (entry1->after_string_p)
5531 /* After-strings sorted in order of decreasing priority. */
5532 result = entry2->priority < entry1->priority ? -1 : 1;
5533 else
5534 /* Before-strings sorted in order of increasing priority. */
5535 result = entry1->priority < entry2->priority ? -1 : 1;
5537 else
5538 result = 0;
5540 return result;
5544 /* Load the vector IT->overlay_strings with overlay strings from IT's
5545 current buffer position, or from CHARPOS if that is > 0. Set
5546 IT->n_overlays to the total number of overlay strings found.
5548 Overlay strings are processed OVERLAY_STRING_CHUNK_SIZE strings at
5549 a time. On entry into load_overlay_strings,
5550 IT->current.overlay_string_index gives the number of overlay
5551 strings that have already been loaded by previous calls to this
5552 function.
5554 IT->add_overlay_start contains an additional overlay start
5555 position to consider for taking overlay strings from, if non-zero.
5556 This position comes into play when the overlay has an `invisible'
5557 property, and both before and after-strings. When we've skipped to
5558 the end of the overlay, because of its `invisible' property, we
5559 nevertheless want its before-string to appear.
5560 IT->add_overlay_start will contain the overlay start position
5561 in this case.
5563 Overlay strings are sorted so that after-string strings come in
5564 front of before-string strings. Within before and after-strings,
5565 strings are sorted by overlay priority. See also function
5566 compare_overlay_entries. */
5568 static void
5569 load_overlay_strings (struct it *it, ptrdiff_t charpos)
5571 Lisp_Object overlay, window, str, invisible;
5572 struct Lisp_Overlay *ov;
5573 ptrdiff_t start, end;
5574 ptrdiff_t size = 20;
5575 ptrdiff_t n = 0, i, j;
5576 int invis_p;
5577 struct overlay_entry *entries = alloca (size * sizeof *entries);
5578 USE_SAFE_ALLOCA;
5580 if (charpos <= 0)
5581 charpos = IT_CHARPOS (*it);
5583 /* Append the overlay string STRING of overlay OVERLAY to vector
5584 `entries' which has size `size' and currently contains `n'
5585 elements. AFTER_P non-zero means STRING is an after-string of
5586 OVERLAY. */
5587 #define RECORD_OVERLAY_STRING(OVERLAY, STRING, AFTER_P) \
5588 do \
5590 Lisp_Object priority; \
5592 if (n == size) \
5594 struct overlay_entry *old = entries; \
5595 SAFE_NALLOCA (entries, 2, size); \
5596 memcpy (entries, old, size * sizeof *entries); \
5597 size *= 2; \
5600 entries[n].string = (STRING); \
5601 entries[n].overlay = (OVERLAY); \
5602 priority = Foverlay_get ((OVERLAY), Qpriority); \
5603 entries[n].priority = INTEGERP (priority) ? XINT (priority) : 0; \
5604 entries[n].after_string_p = (AFTER_P); \
5605 ++n; \
5607 while (0)
5609 /* Process overlay before the overlay center. */
5610 for (ov = current_buffer->overlays_before; ov; ov = ov->next)
5612 XSETMISC (overlay, ov);
5613 eassert (OVERLAYP (overlay));
5614 start = OVERLAY_POSITION (OVERLAY_START (overlay));
5615 end = OVERLAY_POSITION (OVERLAY_END (overlay));
5617 if (end < charpos)
5618 break;
5620 /* Skip this overlay if it doesn't start or end at IT's current
5621 position. */
5622 if (end != charpos && start != charpos)
5623 continue;
5625 /* Skip this overlay if it doesn't apply to IT->w. */
5626 window = Foverlay_get (overlay, Qwindow);
5627 if (WINDOWP (window) && XWINDOW (window) != it->w)
5628 continue;
5630 /* If the text ``under'' the overlay is invisible, both before-
5631 and after-strings from this overlay are visible; start and
5632 end position are indistinguishable. */
5633 invisible = Foverlay_get (overlay, Qinvisible);
5634 invis_p = TEXT_PROP_MEANS_INVISIBLE (invisible);
5636 /* If overlay has a non-empty before-string, record it. */
5637 if ((start == charpos || (end == charpos && invis_p))
5638 && (str = Foverlay_get (overlay, Qbefore_string), STRINGP (str))
5639 && SCHARS (str))
5640 RECORD_OVERLAY_STRING (overlay, str, 0);
5642 /* If overlay has a non-empty after-string, record it. */
5643 if ((end == charpos || (start == charpos && invis_p))
5644 && (str = Foverlay_get (overlay, Qafter_string), STRINGP (str))
5645 && SCHARS (str))
5646 RECORD_OVERLAY_STRING (overlay, str, 1);
5649 /* Process overlays after the overlay center. */
5650 for (ov = current_buffer->overlays_after; ov; ov = ov->next)
5652 XSETMISC (overlay, ov);
5653 eassert (OVERLAYP (overlay));
5654 start = OVERLAY_POSITION (OVERLAY_START (overlay));
5655 end = OVERLAY_POSITION (OVERLAY_END (overlay));
5657 if (start > charpos)
5658 break;
5660 /* Skip this overlay if it doesn't start or end at IT's current
5661 position. */
5662 if (end != charpos && start != charpos)
5663 continue;
5665 /* Skip this overlay if it doesn't apply to IT->w. */
5666 window = Foverlay_get (overlay, Qwindow);
5667 if (WINDOWP (window) && XWINDOW (window) != it->w)
5668 continue;
5670 /* If the text ``under'' the overlay is invisible, it has a zero
5671 dimension, and both before- and after-strings apply. */
5672 invisible = Foverlay_get (overlay, Qinvisible);
5673 invis_p = TEXT_PROP_MEANS_INVISIBLE (invisible);
5675 /* If overlay has a non-empty before-string, record it. */
5676 if ((start == charpos || (end == charpos && invis_p))
5677 && (str = Foverlay_get (overlay, Qbefore_string), STRINGP (str))
5678 && SCHARS (str))
5679 RECORD_OVERLAY_STRING (overlay, str, 0);
5681 /* If overlay has a non-empty after-string, record it. */
5682 if ((end == charpos || (start == charpos && invis_p))
5683 && (str = Foverlay_get (overlay, Qafter_string), STRINGP (str))
5684 && SCHARS (str))
5685 RECORD_OVERLAY_STRING (overlay, str, 1);
5688 #undef RECORD_OVERLAY_STRING
5690 /* Sort entries. */
5691 if (n > 1)
5692 qsort (entries, n, sizeof *entries, compare_overlay_entries);
5694 /* Record number of overlay strings, and where we computed it. */
5695 it->n_overlay_strings = n;
5696 it->overlay_strings_charpos = charpos;
5698 /* IT->current.overlay_string_index is the number of overlay strings
5699 that have already been consumed by IT. Copy some of the
5700 remaining overlay strings to IT->overlay_strings. */
5701 i = 0;
5702 j = it->current.overlay_string_index;
5703 while (i < OVERLAY_STRING_CHUNK_SIZE && j < n)
5705 it->overlay_strings[i] = entries[j].string;
5706 it->string_overlays[i++] = entries[j++].overlay;
5709 CHECK_IT (it);
5710 SAFE_FREE ();
5714 /* Get the first chunk of overlay strings at IT's current buffer
5715 position, or at CHARPOS if that is > 0. Value is non-zero if at
5716 least one overlay string was found. */
5718 static int
5719 get_overlay_strings_1 (struct it *it, ptrdiff_t charpos, int compute_stop_p)
5721 /* Get the first OVERLAY_STRING_CHUNK_SIZE overlay strings to
5722 process. This fills IT->overlay_strings with strings, and sets
5723 IT->n_overlay_strings to the total number of strings to process.
5724 IT->pos.overlay_string_index has to be set temporarily to zero
5725 because load_overlay_strings needs this; it must be set to -1
5726 when no overlay strings are found because a zero value would
5727 indicate a position in the first overlay string. */
5728 it->current.overlay_string_index = 0;
5729 load_overlay_strings (it, charpos);
5731 /* If we found overlay strings, set up IT to deliver display
5732 elements from the first one. Otherwise set up IT to deliver
5733 from current_buffer. */
5734 if (it->n_overlay_strings)
5736 /* Make sure we know settings in current_buffer, so that we can
5737 restore meaningful values when we're done with the overlay
5738 strings. */
5739 if (compute_stop_p)
5740 compute_stop_pos (it);
5741 eassert (it->face_id >= 0);
5743 /* Save IT's settings. They are restored after all overlay
5744 strings have been processed. */
5745 eassert (!compute_stop_p || it->sp == 0);
5747 /* When called from handle_stop, there might be an empty display
5748 string loaded. In that case, don't bother saving it. But
5749 don't use this optimization with the bidi iterator, since we
5750 need the corresponding pop_it call to resync the bidi
5751 iterator's position with IT's position, after we are done
5752 with the overlay strings. (The corresponding call to pop_it
5753 in case of an empty display string is in
5754 next_overlay_string.) */
5755 if (!(!it->bidi_p
5756 && STRINGP (it->string) && !SCHARS (it->string)))
5757 push_it (it, NULL);
5759 /* Set up IT to deliver display elements from the first overlay
5760 string. */
5761 IT_STRING_CHARPOS (*it) = IT_STRING_BYTEPOS (*it) = 0;
5762 it->string = it->overlay_strings[0];
5763 it->from_overlay = Qnil;
5764 it->stop_charpos = 0;
5765 eassert (STRINGP (it->string));
5766 it->end_charpos = SCHARS (it->string);
5767 it->prev_stop = 0;
5768 it->base_level_stop = 0;
5769 it->multibyte_p = STRING_MULTIBYTE (it->string);
5770 it->method = GET_FROM_STRING;
5771 it->from_disp_prop_p = 0;
5773 /* Force paragraph direction to be that of the parent
5774 buffer. */
5775 if (it->bidi_p && it->bidi_it.paragraph_dir == R2L)
5776 it->paragraph_embedding = it->bidi_it.paragraph_dir;
5777 else
5778 it->paragraph_embedding = L2R;
5780 /* Set up the bidi iterator for this overlay string. */
5781 if (it->bidi_p)
5783 ptrdiff_t pos = (charpos > 0 ? charpos : IT_CHARPOS (*it));
5785 it->bidi_it.string.lstring = it->string;
5786 it->bidi_it.string.s = NULL;
5787 it->bidi_it.string.schars = SCHARS (it->string);
5788 it->bidi_it.string.bufpos = pos;
5789 it->bidi_it.string.from_disp_str = it->string_from_display_prop_p;
5790 it->bidi_it.string.unibyte = !it->multibyte_p;
5791 it->bidi_it.w = it->w;
5792 bidi_init_it (0, 0, FRAME_WINDOW_P (it->f), &it->bidi_it);
5794 return 1;
5797 it->current.overlay_string_index = -1;
5798 return 0;
5801 static int
5802 get_overlay_strings (struct it *it, ptrdiff_t charpos)
5804 it->string = Qnil;
5805 it->method = GET_FROM_BUFFER;
5807 (void) get_overlay_strings_1 (it, charpos, 1);
5809 CHECK_IT (it);
5811 /* Value is non-zero if we found at least one overlay string. */
5812 return STRINGP (it->string);
5817 /***********************************************************************
5818 Saving and restoring state
5819 ***********************************************************************/
5821 /* Save current settings of IT on IT->stack. Called, for example,
5822 before setting up IT for an overlay string, to be able to restore
5823 IT's settings to what they were after the overlay string has been
5824 processed. If POSITION is non-NULL, it is the position to save on
5825 the stack instead of IT->position. */
5827 static void
5828 push_it (struct it *it, struct text_pos *position)
5830 struct iterator_stack_entry *p;
5832 eassert (it->sp < IT_STACK_SIZE);
5833 p = it->stack + it->sp;
5835 p->stop_charpos = it->stop_charpos;
5836 p->prev_stop = it->prev_stop;
5837 p->base_level_stop = it->base_level_stop;
5838 p->cmp_it = it->cmp_it;
5839 eassert (it->face_id >= 0);
5840 p->face_id = it->face_id;
5841 p->string = it->string;
5842 p->method = it->method;
5843 p->from_overlay = it->from_overlay;
5844 switch (p->method)
5846 case GET_FROM_IMAGE:
5847 p->u.image.object = it->object;
5848 p->u.image.image_id = it->image_id;
5849 p->u.image.slice = it->slice;
5850 break;
5851 case GET_FROM_STRETCH:
5852 p->u.stretch.object = it->object;
5853 break;
5855 p->position = position ? *position : it->position;
5856 p->current = it->current;
5857 p->end_charpos = it->end_charpos;
5858 p->string_nchars = it->string_nchars;
5859 p->area = it->area;
5860 p->multibyte_p = it->multibyte_p;
5861 p->avoid_cursor_p = it->avoid_cursor_p;
5862 p->space_width = it->space_width;
5863 p->font_height = it->font_height;
5864 p->voffset = it->voffset;
5865 p->string_from_display_prop_p = it->string_from_display_prop_p;
5866 p->string_from_prefix_prop_p = it->string_from_prefix_prop_p;
5867 p->display_ellipsis_p = 0;
5868 p->line_wrap = it->line_wrap;
5869 p->bidi_p = it->bidi_p;
5870 p->paragraph_embedding = it->paragraph_embedding;
5871 p->from_disp_prop_p = it->from_disp_prop_p;
5872 ++it->sp;
5874 /* Save the state of the bidi iterator as well. */
5875 if (it->bidi_p)
5876 bidi_push_it (&it->bidi_it);
5879 static void
5880 iterate_out_of_display_property (struct it *it)
5882 int buffer_p = !STRINGP (it->string);
5883 ptrdiff_t eob = (buffer_p ? ZV : it->end_charpos);
5884 ptrdiff_t bob = (buffer_p ? BEGV : 0);
5886 eassert (eob >= CHARPOS (it->position) && CHARPOS (it->position) >= bob);
5888 /* Maybe initialize paragraph direction. If we are at the beginning
5889 of a new paragraph, next_element_from_buffer may not have a
5890 chance to do that. */
5891 if (it->bidi_it.first_elt && it->bidi_it.charpos < eob)
5892 bidi_paragraph_init (it->paragraph_embedding, &it->bidi_it, 1);
5893 /* prev_stop can be zero, so check against BEGV as well. */
5894 while (it->bidi_it.charpos >= bob
5895 && it->prev_stop <= it->bidi_it.charpos
5896 && it->bidi_it.charpos < CHARPOS (it->position)
5897 && it->bidi_it.charpos < eob)
5898 bidi_move_to_visually_next (&it->bidi_it);
5899 /* Record the stop_pos we just crossed, for when we cross it
5900 back, maybe. */
5901 if (it->bidi_it.charpos > CHARPOS (it->position))
5902 it->prev_stop = CHARPOS (it->position);
5903 /* If we ended up not where pop_it put us, resync IT's
5904 positional members with the bidi iterator. */
5905 if (it->bidi_it.charpos != CHARPOS (it->position))
5906 SET_TEXT_POS (it->position, it->bidi_it.charpos, it->bidi_it.bytepos);
5907 if (buffer_p)
5908 it->current.pos = it->position;
5909 else
5910 it->current.string_pos = it->position;
5913 /* Restore IT's settings from IT->stack. Called, for example, when no
5914 more overlay strings must be processed, and we return to delivering
5915 display elements from a buffer, or when the end of a string from a
5916 `display' property is reached and we return to delivering display
5917 elements from an overlay string, or from a buffer. */
5919 static void
5920 pop_it (struct it *it)
5922 struct iterator_stack_entry *p;
5923 int from_display_prop = it->from_disp_prop_p;
5925 eassert (it->sp > 0);
5926 --it->sp;
5927 p = it->stack + it->sp;
5928 it->stop_charpos = p->stop_charpos;
5929 it->prev_stop = p->prev_stop;
5930 it->base_level_stop = p->base_level_stop;
5931 it->cmp_it = p->cmp_it;
5932 it->face_id = p->face_id;
5933 it->current = p->current;
5934 it->position = p->position;
5935 it->string = p->string;
5936 it->from_overlay = p->from_overlay;
5937 if (NILP (it->string))
5938 SET_TEXT_POS (it->current.string_pos, -1, -1);
5939 it->method = p->method;
5940 switch (it->method)
5942 case GET_FROM_IMAGE:
5943 it->image_id = p->u.image.image_id;
5944 it->object = p->u.image.object;
5945 it->slice = p->u.image.slice;
5946 break;
5947 case GET_FROM_STRETCH:
5948 it->object = p->u.stretch.object;
5949 break;
5950 case GET_FROM_BUFFER:
5951 it->object = it->w->contents;
5952 break;
5953 case GET_FROM_STRING:
5954 it->object = it->string;
5955 break;
5956 case GET_FROM_DISPLAY_VECTOR:
5957 if (it->s)
5958 it->method = GET_FROM_C_STRING;
5959 else if (STRINGP (it->string))
5960 it->method = GET_FROM_STRING;
5961 else
5963 it->method = GET_FROM_BUFFER;
5964 it->object = it->w->contents;
5967 it->end_charpos = p->end_charpos;
5968 it->string_nchars = p->string_nchars;
5969 it->area = p->area;
5970 it->multibyte_p = p->multibyte_p;
5971 it->avoid_cursor_p = p->avoid_cursor_p;
5972 it->space_width = p->space_width;
5973 it->font_height = p->font_height;
5974 it->voffset = p->voffset;
5975 it->string_from_display_prop_p = p->string_from_display_prop_p;
5976 it->string_from_prefix_prop_p = p->string_from_prefix_prop_p;
5977 it->line_wrap = p->line_wrap;
5978 it->bidi_p = p->bidi_p;
5979 it->paragraph_embedding = p->paragraph_embedding;
5980 it->from_disp_prop_p = p->from_disp_prop_p;
5981 if (it->bidi_p)
5983 bidi_pop_it (&it->bidi_it);
5984 /* Bidi-iterate until we get out of the portion of text, if any,
5985 covered by a `display' text property or by an overlay with
5986 `display' property. (We cannot just jump there, because the
5987 internal coherency of the bidi iterator state can not be
5988 preserved across such jumps.) We also must determine the
5989 paragraph base direction if the overlay we just processed is
5990 at the beginning of a new paragraph. */
5991 if (from_display_prop
5992 && (it->method == GET_FROM_BUFFER || it->method == GET_FROM_STRING))
5993 iterate_out_of_display_property (it);
5995 eassert ((BUFFERP (it->object)
5996 && IT_CHARPOS (*it) == it->bidi_it.charpos
5997 && IT_BYTEPOS (*it) == it->bidi_it.bytepos)
5998 || (STRINGP (it->object)
5999 && IT_STRING_CHARPOS (*it) == it->bidi_it.charpos
6000 && IT_STRING_BYTEPOS (*it) == it->bidi_it.bytepos)
6001 || (CONSP (it->object) && it->method == GET_FROM_STRETCH));
6007 /***********************************************************************
6008 Moving over lines
6009 ***********************************************************************/
6011 /* Set IT's current position to the previous line start. */
6013 static void
6014 back_to_previous_line_start (struct it *it)
6016 ptrdiff_t cp = IT_CHARPOS (*it), bp = IT_BYTEPOS (*it);
6018 DEC_BOTH (cp, bp);
6019 IT_CHARPOS (*it) = find_newline_no_quit (cp, bp, -1, &IT_BYTEPOS (*it));
6023 /* Move IT to the next line start.
6025 Value is non-zero if a newline was found. Set *SKIPPED_P to 1 if
6026 we skipped over part of the text (as opposed to moving the iterator
6027 continuously over the text). Otherwise, don't change the value
6028 of *SKIPPED_P.
6030 If BIDI_IT_PREV is non-NULL, store into it the state of the bidi
6031 iterator on the newline, if it was found.
6033 Newlines may come from buffer text, overlay strings, or strings
6034 displayed via the `display' property. That's the reason we can't
6035 simply use find_newline_no_quit.
6037 Note that this function may not skip over invisible text that is so
6038 because of text properties and immediately follows a newline. If
6039 it would, function reseat_at_next_visible_line_start, when called
6040 from set_iterator_to_next, would effectively make invisible
6041 characters following a newline part of the wrong glyph row, which
6042 leads to wrong cursor motion. */
6044 static int
6045 forward_to_next_line_start (struct it *it, int *skipped_p,
6046 struct bidi_it *bidi_it_prev)
6048 ptrdiff_t old_selective;
6049 int newline_found_p, n;
6050 const int MAX_NEWLINE_DISTANCE = 500;
6052 /* If already on a newline, just consume it to avoid unintended
6053 skipping over invisible text below. */
6054 if (it->what == IT_CHARACTER
6055 && it->c == '\n'
6056 && CHARPOS (it->position) == IT_CHARPOS (*it))
6058 if (it->bidi_p && bidi_it_prev)
6059 *bidi_it_prev = it->bidi_it;
6060 set_iterator_to_next (it, 0);
6061 it->c = 0;
6062 return 1;
6065 /* Don't handle selective display in the following. It's (a)
6066 unnecessary because it's done by the caller, and (b) leads to an
6067 infinite recursion because next_element_from_ellipsis indirectly
6068 calls this function. */
6069 old_selective = it->selective;
6070 it->selective = 0;
6072 /* Scan for a newline within MAX_NEWLINE_DISTANCE display elements
6073 from buffer text. */
6074 for (n = newline_found_p = 0;
6075 !newline_found_p && n < MAX_NEWLINE_DISTANCE;
6076 n += STRINGP (it->string) ? 0 : 1)
6078 if (!get_next_display_element (it))
6079 return 0;
6080 newline_found_p = it->what == IT_CHARACTER && it->c == '\n';
6081 if (newline_found_p && it->bidi_p && bidi_it_prev)
6082 *bidi_it_prev = it->bidi_it;
6083 set_iterator_to_next (it, 0);
6086 /* If we didn't find a newline near enough, see if we can use a
6087 short-cut. */
6088 if (!newline_found_p)
6090 ptrdiff_t bytepos, start = IT_CHARPOS (*it);
6091 ptrdiff_t limit = find_newline_no_quit (start, IT_BYTEPOS (*it),
6092 1, &bytepos);
6093 Lisp_Object pos;
6095 eassert (!STRINGP (it->string));
6097 /* If there isn't any `display' property in sight, and no
6098 overlays, we can just use the position of the newline in
6099 buffer text. */
6100 if (it->stop_charpos >= limit
6101 || ((pos = Fnext_single_property_change (make_number (start),
6102 Qdisplay, Qnil,
6103 make_number (limit)),
6104 NILP (pos))
6105 && next_overlay_change (start) == ZV))
6107 if (!it->bidi_p)
6109 IT_CHARPOS (*it) = limit;
6110 IT_BYTEPOS (*it) = bytepos;
6112 else
6114 struct bidi_it bprev;
6116 /* Help bidi.c avoid expensive searches for display
6117 properties and overlays, by telling it that there are
6118 none up to `limit'. */
6119 if (it->bidi_it.disp_pos < limit)
6121 it->bidi_it.disp_pos = limit;
6122 it->bidi_it.disp_prop = 0;
6124 do {
6125 bprev = it->bidi_it;
6126 bidi_move_to_visually_next (&it->bidi_it);
6127 } while (it->bidi_it.charpos != limit);
6128 IT_CHARPOS (*it) = limit;
6129 IT_BYTEPOS (*it) = it->bidi_it.bytepos;
6130 if (bidi_it_prev)
6131 *bidi_it_prev = bprev;
6133 *skipped_p = newline_found_p = 1;
6135 else
6137 while (get_next_display_element (it)
6138 && !newline_found_p)
6140 newline_found_p = ITERATOR_AT_END_OF_LINE_P (it);
6141 if (newline_found_p && it->bidi_p && bidi_it_prev)
6142 *bidi_it_prev = it->bidi_it;
6143 set_iterator_to_next (it, 0);
6148 it->selective = old_selective;
6149 return newline_found_p;
6153 /* Set IT's current position to the previous visible line start. Skip
6154 invisible text that is so either due to text properties or due to
6155 selective display. Caution: this does not change IT->current_x and
6156 IT->hpos. */
6158 static void
6159 back_to_previous_visible_line_start (struct it *it)
6161 while (IT_CHARPOS (*it) > BEGV)
6163 back_to_previous_line_start (it);
6165 if (IT_CHARPOS (*it) <= BEGV)
6166 break;
6168 /* If selective > 0, then lines indented more than its value are
6169 invisible. */
6170 if (it->selective > 0
6171 && indented_beyond_p (IT_CHARPOS (*it), IT_BYTEPOS (*it),
6172 it->selective))
6173 continue;
6175 /* Check the newline before point for invisibility. */
6177 Lisp_Object prop;
6178 prop = Fget_char_property (make_number (IT_CHARPOS (*it) - 1),
6179 Qinvisible, it->window);
6180 if (TEXT_PROP_MEANS_INVISIBLE (prop))
6181 continue;
6184 if (IT_CHARPOS (*it) <= BEGV)
6185 break;
6188 struct it it2;
6189 void *it2data = NULL;
6190 ptrdiff_t pos;
6191 ptrdiff_t beg, end;
6192 Lisp_Object val, overlay;
6194 SAVE_IT (it2, *it, it2data);
6196 /* If newline is part of a composition, continue from start of composition */
6197 if (find_composition (IT_CHARPOS (*it), -1, &beg, &end, &val, Qnil)
6198 && beg < IT_CHARPOS (*it))
6199 goto replaced;
6201 /* If newline is replaced by a display property, find start of overlay
6202 or interval and continue search from that point. */
6203 pos = --IT_CHARPOS (it2);
6204 --IT_BYTEPOS (it2);
6205 it2.sp = 0;
6206 bidi_unshelve_cache (NULL, 0);
6207 it2.string_from_display_prop_p = 0;
6208 it2.from_disp_prop_p = 0;
6209 if (handle_display_prop (&it2) == HANDLED_RETURN
6210 && !NILP (val = get_char_property_and_overlay
6211 (make_number (pos), Qdisplay, Qnil, &overlay))
6212 && (OVERLAYP (overlay)
6213 ? (beg = OVERLAY_POSITION (OVERLAY_START (overlay)))
6214 : get_property_and_range (pos, Qdisplay, &val, &beg, &end, Qnil)))
6216 RESTORE_IT (it, it, it2data);
6217 goto replaced;
6220 /* Newline is not replaced by anything -- so we are done. */
6221 RESTORE_IT (it, it, it2data);
6222 break;
6224 replaced:
6225 if (beg < BEGV)
6226 beg = BEGV;
6227 IT_CHARPOS (*it) = beg;
6228 IT_BYTEPOS (*it) = buf_charpos_to_bytepos (current_buffer, beg);
6232 it->continuation_lines_width = 0;
6234 eassert (IT_CHARPOS (*it) >= BEGV);
6235 eassert (IT_CHARPOS (*it) == BEGV
6236 || FETCH_BYTE (IT_BYTEPOS (*it) - 1) == '\n');
6237 CHECK_IT (it);
6241 /* Reseat iterator IT at the previous visible line start. Skip
6242 invisible text that is so either due to text properties or due to
6243 selective display. At the end, update IT's overlay information,
6244 face information etc. */
6246 void
6247 reseat_at_previous_visible_line_start (struct it *it)
6249 back_to_previous_visible_line_start (it);
6250 reseat (it, it->current.pos, 1);
6251 CHECK_IT (it);
6255 /* Reseat iterator IT on the next visible line start in the current
6256 buffer. ON_NEWLINE_P non-zero means position IT on the newline
6257 preceding the line start. Skip over invisible text that is so
6258 because of selective display. Compute faces, overlays etc at the
6259 new position. Note that this function does not skip over text that
6260 is invisible because of text properties. */
6262 static void
6263 reseat_at_next_visible_line_start (struct it *it, int on_newline_p)
6265 int newline_found_p, skipped_p = 0;
6266 struct bidi_it bidi_it_prev;
6268 newline_found_p = forward_to_next_line_start (it, &skipped_p, &bidi_it_prev);
6270 /* Skip over lines that are invisible because they are indented
6271 more than the value of IT->selective. */
6272 if (it->selective > 0)
6273 while (IT_CHARPOS (*it) < ZV
6274 && indented_beyond_p (IT_CHARPOS (*it), IT_BYTEPOS (*it),
6275 it->selective))
6277 eassert (IT_BYTEPOS (*it) == BEGV
6278 || FETCH_BYTE (IT_BYTEPOS (*it) - 1) == '\n');
6279 newline_found_p =
6280 forward_to_next_line_start (it, &skipped_p, &bidi_it_prev);
6283 /* Position on the newline if that's what's requested. */
6284 if (on_newline_p && newline_found_p)
6286 if (STRINGP (it->string))
6288 if (IT_STRING_CHARPOS (*it) > 0)
6290 if (!it->bidi_p)
6292 --IT_STRING_CHARPOS (*it);
6293 --IT_STRING_BYTEPOS (*it);
6295 else
6297 /* We need to restore the bidi iterator to the state
6298 it had on the newline, and resync the IT's
6299 position with that. */
6300 it->bidi_it = bidi_it_prev;
6301 IT_STRING_CHARPOS (*it) = it->bidi_it.charpos;
6302 IT_STRING_BYTEPOS (*it) = it->bidi_it.bytepos;
6306 else if (IT_CHARPOS (*it) > BEGV)
6308 if (!it->bidi_p)
6310 --IT_CHARPOS (*it);
6311 --IT_BYTEPOS (*it);
6313 else
6315 /* We need to restore the bidi iterator to the state it
6316 had on the newline and resync IT with that. */
6317 it->bidi_it = bidi_it_prev;
6318 IT_CHARPOS (*it) = it->bidi_it.charpos;
6319 IT_BYTEPOS (*it) = it->bidi_it.bytepos;
6321 reseat (it, it->current.pos, 0);
6324 else if (skipped_p)
6325 reseat (it, it->current.pos, 0);
6327 CHECK_IT (it);
6332 /***********************************************************************
6333 Changing an iterator's position
6334 ***********************************************************************/
6336 /* Change IT's current position to POS in current_buffer. If FORCE_P
6337 is non-zero, always check for text properties at the new position.
6338 Otherwise, text properties are only looked up if POS >=
6339 IT->check_charpos of a property. */
6341 static void
6342 reseat (struct it *it, struct text_pos pos, int force_p)
6344 ptrdiff_t original_pos = IT_CHARPOS (*it);
6346 reseat_1 (it, pos, 0);
6348 /* Determine where to check text properties. Avoid doing it
6349 where possible because text property lookup is very expensive. */
6350 if (force_p
6351 || CHARPOS (pos) > it->stop_charpos
6352 || CHARPOS (pos) < original_pos)
6354 if (it->bidi_p)
6356 /* For bidi iteration, we need to prime prev_stop and
6357 base_level_stop with our best estimations. */
6358 /* Implementation note: Of course, POS is not necessarily a
6359 stop position, so assigning prev_pos to it is a lie; we
6360 should have called compute_stop_backwards. However, if
6361 the current buffer does not include any R2L characters,
6362 that call would be a waste of cycles, because the
6363 iterator will never move back, and thus never cross this
6364 "fake" stop position. So we delay that backward search
6365 until the time we really need it, in next_element_from_buffer. */
6366 if (CHARPOS (pos) != it->prev_stop)
6367 it->prev_stop = CHARPOS (pos);
6368 if (CHARPOS (pos) < it->base_level_stop)
6369 it->base_level_stop = 0; /* meaning it's unknown */
6370 handle_stop (it);
6372 else
6374 handle_stop (it);
6375 it->prev_stop = it->base_level_stop = 0;
6380 CHECK_IT (it);
6384 /* Change IT's buffer position to POS. SET_STOP_P non-zero means set
6385 IT->stop_pos to POS, also. */
6387 static void
6388 reseat_1 (struct it *it, struct text_pos pos, int set_stop_p)
6390 /* Don't call this function when scanning a C string. */
6391 eassert (it->s == NULL);
6393 /* POS must be a reasonable value. */
6394 eassert (CHARPOS (pos) >= BEGV && CHARPOS (pos) <= ZV);
6396 it->current.pos = it->position = pos;
6397 it->end_charpos = ZV;
6398 it->dpvec = NULL;
6399 it->current.dpvec_index = -1;
6400 it->current.overlay_string_index = -1;
6401 IT_STRING_CHARPOS (*it) = -1;
6402 IT_STRING_BYTEPOS (*it) = -1;
6403 it->string = Qnil;
6404 it->method = GET_FROM_BUFFER;
6405 it->object = it->w->contents;
6406 it->area = TEXT_AREA;
6407 it->multibyte_p = !NILP (BVAR (current_buffer, enable_multibyte_characters));
6408 it->sp = 0;
6409 it->string_from_display_prop_p = 0;
6410 it->string_from_prefix_prop_p = 0;
6412 it->from_disp_prop_p = 0;
6413 it->face_before_selective_p = 0;
6414 if (it->bidi_p)
6416 bidi_init_it (IT_CHARPOS (*it), IT_BYTEPOS (*it), FRAME_WINDOW_P (it->f),
6417 &it->bidi_it);
6418 bidi_unshelve_cache (NULL, 0);
6419 it->bidi_it.paragraph_dir = NEUTRAL_DIR;
6420 it->bidi_it.string.s = NULL;
6421 it->bidi_it.string.lstring = Qnil;
6422 it->bidi_it.string.bufpos = 0;
6423 it->bidi_it.string.unibyte = 0;
6424 it->bidi_it.w = it->w;
6427 if (set_stop_p)
6429 it->stop_charpos = CHARPOS (pos);
6430 it->base_level_stop = CHARPOS (pos);
6432 /* This make the information stored in it->cmp_it invalidate. */
6433 it->cmp_it.id = -1;
6437 /* Set up IT for displaying a string, starting at CHARPOS in window W.
6438 If S is non-null, it is a C string to iterate over. Otherwise,
6439 STRING gives a Lisp string to iterate over.
6441 If PRECISION > 0, don't return more then PRECISION number of
6442 characters from the string.
6444 If FIELD_WIDTH > 0, return padding spaces until FIELD_WIDTH
6445 characters have been returned. FIELD_WIDTH < 0 means an infinite
6446 field width.
6448 MULTIBYTE = 0 means disable processing of multibyte characters,
6449 MULTIBYTE > 0 means enable it,
6450 MULTIBYTE < 0 means use IT->multibyte_p.
6452 IT must be initialized via a prior call to init_iterator before
6453 calling this function. */
6455 static void
6456 reseat_to_string (struct it *it, const char *s, Lisp_Object string,
6457 ptrdiff_t charpos, ptrdiff_t precision, int field_width,
6458 int multibyte)
6460 /* No region in strings. */
6461 it->region_beg_charpos = it->region_end_charpos = -1;
6463 /* No text property checks performed by default, but see below. */
6464 it->stop_charpos = -1;
6466 /* Set iterator position and end position. */
6467 memset (&it->current, 0, sizeof it->current);
6468 it->current.overlay_string_index = -1;
6469 it->current.dpvec_index = -1;
6470 eassert (charpos >= 0);
6472 /* If STRING is specified, use its multibyteness, otherwise use the
6473 setting of MULTIBYTE, if specified. */
6474 if (multibyte >= 0)
6475 it->multibyte_p = multibyte > 0;
6477 /* Bidirectional reordering of strings is controlled by the default
6478 value of bidi-display-reordering. Don't try to reorder while
6479 loading loadup.el, as the necessary character property tables are
6480 not yet available. */
6481 it->bidi_p =
6482 NILP (Vpurify_flag)
6483 && !NILP (BVAR (&buffer_defaults, bidi_display_reordering));
6485 if (s == NULL)
6487 eassert (STRINGP (string));
6488 it->string = string;
6489 it->s = NULL;
6490 it->end_charpos = it->string_nchars = SCHARS (string);
6491 it->method = GET_FROM_STRING;
6492 it->current.string_pos = string_pos (charpos, string);
6494 if (it->bidi_p)
6496 it->bidi_it.string.lstring = string;
6497 it->bidi_it.string.s = NULL;
6498 it->bidi_it.string.schars = it->end_charpos;
6499 it->bidi_it.string.bufpos = 0;
6500 it->bidi_it.string.from_disp_str = 0;
6501 it->bidi_it.string.unibyte = !it->multibyte_p;
6502 it->bidi_it.w = it->w;
6503 bidi_init_it (charpos, IT_STRING_BYTEPOS (*it),
6504 FRAME_WINDOW_P (it->f), &it->bidi_it);
6507 else
6509 it->s = (const unsigned char *) s;
6510 it->string = Qnil;
6512 /* Note that we use IT->current.pos, not it->current.string_pos,
6513 for displaying C strings. */
6514 IT_STRING_CHARPOS (*it) = IT_STRING_BYTEPOS (*it) = -1;
6515 if (it->multibyte_p)
6517 it->current.pos = c_string_pos (charpos, s, 1);
6518 it->end_charpos = it->string_nchars = number_of_chars (s, 1);
6520 else
6522 IT_CHARPOS (*it) = IT_BYTEPOS (*it) = charpos;
6523 it->end_charpos = it->string_nchars = strlen (s);
6526 if (it->bidi_p)
6528 it->bidi_it.string.lstring = Qnil;
6529 it->bidi_it.string.s = (const unsigned char *) s;
6530 it->bidi_it.string.schars = it->end_charpos;
6531 it->bidi_it.string.bufpos = 0;
6532 it->bidi_it.string.from_disp_str = 0;
6533 it->bidi_it.string.unibyte = !it->multibyte_p;
6534 it->bidi_it.w = it->w;
6535 bidi_init_it (charpos, IT_BYTEPOS (*it), FRAME_WINDOW_P (it->f),
6536 &it->bidi_it);
6538 it->method = GET_FROM_C_STRING;
6541 /* PRECISION > 0 means don't return more than PRECISION characters
6542 from the string. */
6543 if (precision > 0 && it->end_charpos - charpos > precision)
6545 it->end_charpos = it->string_nchars = charpos + precision;
6546 if (it->bidi_p)
6547 it->bidi_it.string.schars = it->end_charpos;
6550 /* FIELD_WIDTH > 0 means pad with spaces until FIELD_WIDTH
6551 characters have been returned. FIELD_WIDTH == 0 means don't pad,
6552 FIELD_WIDTH < 0 means infinite field width. This is useful for
6553 padding with `-' at the end of a mode line. */
6554 if (field_width < 0)
6555 field_width = INFINITY;
6556 /* Implementation note: We deliberately don't enlarge
6557 it->bidi_it.string.schars here to fit it->end_charpos, because
6558 the bidi iterator cannot produce characters out of thin air. */
6559 if (field_width > it->end_charpos - charpos)
6560 it->end_charpos = charpos + field_width;
6562 /* Use the standard display table for displaying strings. */
6563 if (DISP_TABLE_P (Vstandard_display_table))
6564 it->dp = XCHAR_TABLE (Vstandard_display_table);
6566 it->stop_charpos = charpos;
6567 it->prev_stop = charpos;
6568 it->base_level_stop = 0;
6569 if (it->bidi_p)
6571 it->bidi_it.first_elt = 1;
6572 it->bidi_it.paragraph_dir = NEUTRAL_DIR;
6573 it->bidi_it.disp_pos = -1;
6575 if (s == NULL && it->multibyte_p)
6577 ptrdiff_t endpos = SCHARS (it->string);
6578 if (endpos > it->end_charpos)
6579 endpos = it->end_charpos;
6580 composition_compute_stop_pos (&it->cmp_it, charpos, -1, endpos,
6581 it->string);
6583 CHECK_IT (it);
6588 /***********************************************************************
6589 Iteration
6590 ***********************************************************************/
6592 /* Map enum it_method value to corresponding next_element_from_* function. */
6594 static int (* get_next_element[NUM_IT_METHODS]) (struct it *it) =
6596 next_element_from_buffer,
6597 next_element_from_display_vector,
6598 next_element_from_string,
6599 next_element_from_c_string,
6600 next_element_from_image,
6601 next_element_from_stretch
6604 #define GET_NEXT_DISPLAY_ELEMENT(it) (*get_next_element[(it)->method]) (it)
6607 /* Return 1 iff a character at CHARPOS (and BYTEPOS) is composed
6608 (possibly with the following characters). */
6610 #define CHAR_COMPOSED_P(IT,CHARPOS,BYTEPOS,END_CHARPOS) \
6611 ((IT)->cmp_it.id >= 0 \
6612 || ((IT)->cmp_it.stop_pos == (CHARPOS) \
6613 && composition_reseat_it (&(IT)->cmp_it, CHARPOS, BYTEPOS, \
6614 END_CHARPOS, (IT)->w, \
6615 FACE_FROM_ID ((IT)->f, (IT)->face_id), \
6616 (IT)->string)))
6619 /* Lookup the char-table Vglyphless_char_display for character C (-1
6620 if we want information for no-font case), and return the display
6621 method symbol. By side-effect, update it->what and
6622 it->glyphless_method. This function is called from
6623 get_next_display_element for each character element, and from
6624 x_produce_glyphs when no suitable font was found. */
6626 Lisp_Object
6627 lookup_glyphless_char_display (int c, struct it *it)
6629 Lisp_Object glyphless_method = Qnil;
6631 if (CHAR_TABLE_P (Vglyphless_char_display)
6632 && CHAR_TABLE_EXTRA_SLOTS (XCHAR_TABLE (Vglyphless_char_display)) >= 1)
6634 if (c >= 0)
6636 glyphless_method = CHAR_TABLE_REF (Vglyphless_char_display, c);
6637 if (CONSP (glyphless_method))
6638 glyphless_method = FRAME_WINDOW_P (it->f)
6639 ? XCAR (glyphless_method)
6640 : XCDR (glyphless_method);
6642 else
6643 glyphless_method = XCHAR_TABLE (Vglyphless_char_display)->extras[0];
6646 retry:
6647 if (NILP (glyphless_method))
6649 if (c >= 0)
6650 /* The default is to display the character by a proper font. */
6651 return Qnil;
6652 /* The default for the no-font case is to display an empty box. */
6653 glyphless_method = Qempty_box;
6655 if (EQ (glyphless_method, Qzero_width))
6657 if (c >= 0)
6658 return glyphless_method;
6659 /* This method can't be used for the no-font case. */
6660 glyphless_method = Qempty_box;
6662 if (EQ (glyphless_method, Qthin_space))
6663 it->glyphless_method = GLYPHLESS_DISPLAY_THIN_SPACE;
6664 else if (EQ (glyphless_method, Qempty_box))
6665 it->glyphless_method = GLYPHLESS_DISPLAY_EMPTY_BOX;
6666 else if (EQ (glyphless_method, Qhex_code))
6667 it->glyphless_method = GLYPHLESS_DISPLAY_HEX_CODE;
6668 else if (STRINGP (glyphless_method))
6669 it->glyphless_method = GLYPHLESS_DISPLAY_ACRONYM;
6670 else
6672 /* Invalid value. We use the default method. */
6673 glyphless_method = Qnil;
6674 goto retry;
6676 it->what = IT_GLYPHLESS;
6677 return glyphless_method;
6680 /* Load IT's display element fields with information about the next
6681 display element from the current position of IT. Value is zero if
6682 end of buffer (or C string) is reached. */
6684 static struct frame *last_escape_glyph_frame = NULL;
6685 static int last_escape_glyph_face_id = (1 << FACE_ID_BITS);
6686 static int last_escape_glyph_merged_face_id = 0;
6688 struct frame *last_glyphless_glyph_frame = NULL;
6689 int last_glyphless_glyph_face_id = (1 << FACE_ID_BITS);
6690 int last_glyphless_glyph_merged_face_id = 0;
6692 static int
6693 get_next_display_element (struct it *it)
6695 /* Non-zero means that we found a display element. Zero means that
6696 we hit the end of what we iterate over. Performance note: the
6697 function pointer `method' used here turns out to be faster than
6698 using a sequence of if-statements. */
6699 int success_p;
6701 get_next:
6702 success_p = GET_NEXT_DISPLAY_ELEMENT (it);
6704 if (it->what == IT_CHARACTER)
6706 /* UAX#9, L4: "A character is depicted by a mirrored glyph if
6707 and only if (a) the resolved directionality of that character
6708 is R..." */
6709 /* FIXME: Do we need an exception for characters from display
6710 tables? */
6711 if (it->bidi_p && it->bidi_it.type == STRONG_R)
6712 it->c = bidi_mirror_char (it->c);
6713 /* Map via display table or translate control characters.
6714 IT->c, IT->len etc. have been set to the next character by
6715 the function call above. If we have a display table, and it
6716 contains an entry for IT->c, translate it. Don't do this if
6717 IT->c itself comes from a display table, otherwise we could
6718 end up in an infinite recursion. (An alternative could be to
6719 count the recursion depth of this function and signal an
6720 error when a certain maximum depth is reached.) Is it worth
6721 it? */
6722 if (success_p && it->dpvec == NULL)
6724 Lisp_Object dv;
6725 struct charset *unibyte = CHARSET_FROM_ID (charset_unibyte);
6726 int nonascii_space_p = 0;
6727 int nonascii_hyphen_p = 0;
6728 int c = it->c; /* This is the character to display. */
6730 if (! it->multibyte_p && ! ASCII_CHAR_P (c))
6732 eassert (SINGLE_BYTE_CHAR_P (c));
6733 if (unibyte_display_via_language_environment)
6735 c = DECODE_CHAR (unibyte, c);
6736 if (c < 0)
6737 c = BYTE8_TO_CHAR (it->c);
6739 else
6740 c = BYTE8_TO_CHAR (it->c);
6743 if (it->dp
6744 && (dv = DISP_CHAR_VECTOR (it->dp, c),
6745 VECTORP (dv)))
6747 struct Lisp_Vector *v = XVECTOR (dv);
6749 /* Return the first character from the display table
6750 entry, if not empty. If empty, don't display the
6751 current character. */
6752 if (v->header.size)
6754 it->dpvec_char_len = it->len;
6755 it->dpvec = v->contents;
6756 it->dpend = v->contents + v->header.size;
6757 it->current.dpvec_index = 0;
6758 it->dpvec_face_id = -1;
6759 it->saved_face_id = it->face_id;
6760 it->method = GET_FROM_DISPLAY_VECTOR;
6761 it->ellipsis_p = 0;
6763 else
6765 set_iterator_to_next (it, 0);
6767 goto get_next;
6770 if (! NILP (lookup_glyphless_char_display (c, it)))
6772 if (it->what == IT_GLYPHLESS)
6773 goto done;
6774 /* Don't display this character. */
6775 set_iterator_to_next (it, 0);
6776 goto get_next;
6779 /* If `nobreak-char-display' is non-nil, we display
6780 non-ASCII spaces and hyphens specially. */
6781 if (! ASCII_CHAR_P (c) && ! NILP (Vnobreak_char_display))
6783 if (c == 0xA0)
6784 nonascii_space_p = 1;
6785 else if (c == 0xAD || c == 0x2010 || c == 0x2011)
6786 nonascii_hyphen_p = 1;
6789 /* Translate control characters into `\003' or `^C' form.
6790 Control characters coming from a display table entry are
6791 currently not translated because we use IT->dpvec to hold
6792 the translation. This could easily be changed but I
6793 don't believe that it is worth doing.
6795 The characters handled by `nobreak-char-display' must be
6796 translated too.
6798 Non-printable characters and raw-byte characters are also
6799 translated to octal form. */
6800 if (((c < ' ' || c == 127) /* ASCII control chars */
6801 ? (it->area != TEXT_AREA
6802 /* In mode line, treat \n, \t like other crl chars. */
6803 || (c != '\t'
6804 && it->glyph_row
6805 && (it->glyph_row->mode_line_p || it->avoid_cursor_p))
6806 || (c != '\n' && c != '\t'))
6807 : (nonascii_space_p
6808 || nonascii_hyphen_p
6809 || CHAR_BYTE8_P (c)
6810 || ! CHAR_PRINTABLE_P (c))))
6812 /* C is a control character, non-ASCII space/hyphen,
6813 raw-byte, or a non-printable character which must be
6814 displayed either as '\003' or as `^C' where the '\\'
6815 and '^' can be defined in the display table. Fill
6816 IT->ctl_chars with glyphs for what we have to
6817 display. Then, set IT->dpvec to these glyphs. */
6818 Lisp_Object gc;
6819 int ctl_len;
6820 int face_id;
6821 int lface_id = 0;
6822 int escape_glyph;
6824 /* Handle control characters with ^. */
6826 if (ASCII_CHAR_P (c) && it->ctl_arrow_p)
6828 int g;
6830 g = '^'; /* default glyph for Control */
6831 /* Set IT->ctl_chars[0] to the glyph for `^'. */
6832 if (it->dp
6833 && (gc = DISP_CTRL_GLYPH (it->dp), GLYPH_CODE_P (gc)))
6835 g = GLYPH_CODE_CHAR (gc);
6836 lface_id = GLYPH_CODE_FACE (gc);
6838 if (lface_id)
6840 face_id = merge_faces (it->f, Qt, lface_id, it->face_id);
6842 else if (it->f == last_escape_glyph_frame
6843 && it->face_id == last_escape_glyph_face_id)
6845 face_id = last_escape_glyph_merged_face_id;
6847 else
6849 /* Merge the escape-glyph face into the current face. */
6850 face_id = merge_faces (it->f, Qescape_glyph, 0,
6851 it->face_id);
6852 last_escape_glyph_frame = it->f;
6853 last_escape_glyph_face_id = it->face_id;
6854 last_escape_glyph_merged_face_id = face_id;
6857 XSETINT (it->ctl_chars[0], g);
6858 XSETINT (it->ctl_chars[1], c ^ 0100);
6859 ctl_len = 2;
6860 goto display_control;
6863 /* Handle non-ascii space in the mode where it only gets
6864 highlighting. */
6866 if (nonascii_space_p && EQ (Vnobreak_char_display, Qt))
6868 /* Merge `nobreak-space' into the current face. */
6869 face_id = merge_faces (it->f, Qnobreak_space, 0,
6870 it->face_id);
6871 XSETINT (it->ctl_chars[0], ' ');
6872 ctl_len = 1;
6873 goto display_control;
6876 /* Handle sequences that start with the "escape glyph". */
6878 /* the default escape glyph is \. */
6879 escape_glyph = '\\';
6881 if (it->dp
6882 && (gc = DISP_ESCAPE_GLYPH (it->dp), GLYPH_CODE_P (gc)))
6884 escape_glyph = GLYPH_CODE_CHAR (gc);
6885 lface_id = GLYPH_CODE_FACE (gc);
6887 if (lface_id)
6889 /* The display table specified a face.
6890 Merge it into face_id and also into escape_glyph. */
6891 face_id = merge_faces (it->f, Qt, lface_id,
6892 it->face_id);
6894 else if (it->f == last_escape_glyph_frame
6895 && it->face_id == last_escape_glyph_face_id)
6897 face_id = last_escape_glyph_merged_face_id;
6899 else
6901 /* Merge the escape-glyph face into the current face. */
6902 face_id = merge_faces (it->f, Qescape_glyph, 0,
6903 it->face_id);
6904 last_escape_glyph_frame = it->f;
6905 last_escape_glyph_face_id = it->face_id;
6906 last_escape_glyph_merged_face_id = face_id;
6909 /* Draw non-ASCII hyphen with just highlighting: */
6911 if (nonascii_hyphen_p && EQ (Vnobreak_char_display, Qt))
6913 XSETINT (it->ctl_chars[0], '-');
6914 ctl_len = 1;
6915 goto display_control;
6918 /* Draw non-ASCII space/hyphen with escape glyph: */
6920 if (nonascii_space_p || nonascii_hyphen_p)
6922 XSETINT (it->ctl_chars[0], escape_glyph);
6923 XSETINT (it->ctl_chars[1], nonascii_space_p ? ' ' : '-');
6924 ctl_len = 2;
6925 goto display_control;
6929 char str[10];
6930 int len, i;
6932 if (CHAR_BYTE8_P (c))
6933 /* Display \200 instead of \17777600. */
6934 c = CHAR_TO_BYTE8 (c);
6935 len = sprintf (str, "%03o", c);
6937 XSETINT (it->ctl_chars[0], escape_glyph);
6938 for (i = 0; i < len; i++)
6939 XSETINT (it->ctl_chars[i + 1], str[i]);
6940 ctl_len = len + 1;
6943 display_control:
6944 /* Set up IT->dpvec and return first character from it. */
6945 it->dpvec_char_len = it->len;
6946 it->dpvec = it->ctl_chars;
6947 it->dpend = it->dpvec + ctl_len;
6948 it->current.dpvec_index = 0;
6949 it->dpvec_face_id = face_id;
6950 it->saved_face_id = it->face_id;
6951 it->method = GET_FROM_DISPLAY_VECTOR;
6952 it->ellipsis_p = 0;
6953 goto get_next;
6955 it->char_to_display = c;
6957 else if (success_p)
6959 it->char_to_display = it->c;
6963 /* Adjust face id for a multibyte character. There are no multibyte
6964 character in unibyte text. */
6965 if ((it->what == IT_CHARACTER || it->what == IT_COMPOSITION)
6966 && it->multibyte_p
6967 && success_p
6968 && FRAME_WINDOW_P (it->f))
6970 struct face *face = FACE_FROM_ID (it->f, it->face_id);
6972 if (it->what == IT_COMPOSITION && it->cmp_it.ch >= 0)
6974 /* Automatic composition with glyph-string. */
6975 Lisp_Object gstring = composition_gstring_from_id (it->cmp_it.id);
6977 it->face_id = face_for_font (it->f, LGSTRING_FONT (gstring), face);
6979 else
6981 ptrdiff_t pos = (it->s ? -1
6982 : STRINGP (it->string) ? IT_STRING_CHARPOS (*it)
6983 : IT_CHARPOS (*it));
6984 int c;
6986 if (it->what == IT_CHARACTER)
6987 c = it->char_to_display;
6988 else
6990 struct composition *cmp = composition_table[it->cmp_it.id];
6991 int i;
6993 c = ' ';
6994 for (i = 0; i < cmp->glyph_len; i++)
6995 /* TAB in a composition means display glyphs with
6996 padding space on the left or right. */
6997 if ((c = COMPOSITION_GLYPH (cmp, i)) != '\t')
6998 break;
7000 it->face_id = FACE_FOR_CHAR (it->f, face, c, pos, it->string);
7004 done:
7005 /* Is this character the last one of a run of characters with
7006 box? If yes, set IT->end_of_box_run_p to 1. */
7007 if (it->face_box_p
7008 && it->s == NULL)
7010 if (it->method == GET_FROM_STRING && it->sp)
7012 int face_id = underlying_face_id (it);
7013 struct face *face = FACE_FROM_ID (it->f, face_id);
7015 if (face)
7017 if (face->box == FACE_NO_BOX)
7019 /* If the box comes from face properties in a
7020 display string, check faces in that string. */
7021 int string_face_id = face_after_it_pos (it);
7022 it->end_of_box_run_p
7023 = (FACE_FROM_ID (it->f, string_face_id)->box
7024 == FACE_NO_BOX);
7026 /* Otherwise, the box comes from the underlying face.
7027 If this is the last string character displayed, check
7028 the next buffer location. */
7029 else if ((IT_STRING_CHARPOS (*it) >= SCHARS (it->string) - 1)
7030 && (it->current.overlay_string_index
7031 == it->n_overlay_strings - 1))
7033 ptrdiff_t ignore;
7034 int next_face_id;
7035 struct text_pos pos = it->current.pos;
7036 INC_TEXT_POS (pos, it->multibyte_p);
7038 next_face_id = face_at_buffer_position
7039 (it->w, CHARPOS (pos), it->region_beg_charpos,
7040 it->region_end_charpos, &ignore,
7041 (IT_CHARPOS (*it) + TEXT_PROP_DISTANCE_LIMIT), 0,
7042 -1);
7043 it->end_of_box_run_p
7044 = (FACE_FROM_ID (it->f, next_face_id)->box
7045 == FACE_NO_BOX);
7049 else
7051 int face_id = face_after_it_pos (it);
7052 it->end_of_box_run_p
7053 = (face_id != it->face_id
7054 && FACE_FROM_ID (it->f, face_id)->box == FACE_NO_BOX);
7057 /* If we reached the end of the object we've been iterating (e.g., a
7058 display string or an overlay string), and there's something on
7059 IT->stack, proceed with what's on the stack. It doesn't make
7060 sense to return zero if there's unprocessed stuff on the stack,
7061 because otherwise that stuff will never be displayed. */
7062 if (!success_p && it->sp > 0)
7064 set_iterator_to_next (it, 0);
7065 success_p = get_next_display_element (it);
7068 /* Value is 0 if end of buffer or string reached. */
7069 return success_p;
7073 /* Move IT to the next display element.
7075 RESEAT_P non-zero means if called on a newline in buffer text,
7076 skip to the next visible line start.
7078 Functions get_next_display_element and set_iterator_to_next are
7079 separate because I find this arrangement easier to handle than a
7080 get_next_display_element function that also increments IT's
7081 position. The way it is we can first look at an iterator's current
7082 display element, decide whether it fits on a line, and if it does,
7083 increment the iterator position. The other way around we probably
7084 would either need a flag indicating whether the iterator has to be
7085 incremented the next time, or we would have to implement a
7086 decrement position function which would not be easy to write. */
7088 void
7089 set_iterator_to_next (struct it *it, int reseat_p)
7091 /* Reset flags indicating start and end of a sequence of characters
7092 with box. Reset them at the start of this function because
7093 moving the iterator to a new position might set them. */
7094 it->start_of_box_run_p = it->end_of_box_run_p = 0;
7096 switch (it->method)
7098 case GET_FROM_BUFFER:
7099 /* The current display element of IT is a character from
7100 current_buffer. Advance in the buffer, and maybe skip over
7101 invisible lines that are so because of selective display. */
7102 if (ITERATOR_AT_END_OF_LINE_P (it) && reseat_p)
7103 reseat_at_next_visible_line_start (it, 0);
7104 else if (it->cmp_it.id >= 0)
7106 /* We are currently getting glyphs from a composition. */
7107 int i;
7109 if (! it->bidi_p)
7111 IT_CHARPOS (*it) += it->cmp_it.nchars;
7112 IT_BYTEPOS (*it) += it->cmp_it.nbytes;
7113 if (it->cmp_it.to < it->cmp_it.nglyphs)
7115 it->cmp_it.from = it->cmp_it.to;
7117 else
7119 it->cmp_it.id = -1;
7120 composition_compute_stop_pos (&it->cmp_it, IT_CHARPOS (*it),
7121 IT_BYTEPOS (*it),
7122 it->end_charpos, Qnil);
7125 else if (! it->cmp_it.reversed_p)
7127 /* Composition created while scanning forward. */
7128 /* Update IT's char/byte positions to point to the first
7129 character of the next grapheme cluster, or to the
7130 character visually after the current composition. */
7131 for (i = 0; i < it->cmp_it.nchars; i++)
7132 bidi_move_to_visually_next (&it->bidi_it);
7133 IT_BYTEPOS (*it) = it->bidi_it.bytepos;
7134 IT_CHARPOS (*it) = it->bidi_it.charpos;
7136 if (it->cmp_it.to < it->cmp_it.nglyphs)
7138 /* Proceed to the next grapheme cluster. */
7139 it->cmp_it.from = it->cmp_it.to;
7141 else
7143 /* No more grapheme clusters in this composition.
7144 Find the next stop position. */
7145 ptrdiff_t stop = it->end_charpos;
7146 if (it->bidi_it.scan_dir < 0)
7147 /* Now we are scanning backward and don't know
7148 where to stop. */
7149 stop = -1;
7150 composition_compute_stop_pos (&it->cmp_it, IT_CHARPOS (*it),
7151 IT_BYTEPOS (*it), stop, Qnil);
7154 else
7156 /* Composition created while scanning backward. */
7157 /* Update IT's char/byte positions to point to the last
7158 character of the previous grapheme cluster, or the
7159 character visually after the current composition. */
7160 for (i = 0; i < it->cmp_it.nchars; i++)
7161 bidi_move_to_visually_next (&it->bidi_it);
7162 IT_BYTEPOS (*it) = it->bidi_it.bytepos;
7163 IT_CHARPOS (*it) = it->bidi_it.charpos;
7164 if (it->cmp_it.from > 0)
7166 /* Proceed to the previous grapheme cluster. */
7167 it->cmp_it.to = it->cmp_it.from;
7169 else
7171 /* No more grapheme clusters in this composition.
7172 Find the next stop position. */
7173 ptrdiff_t stop = it->end_charpos;
7174 if (it->bidi_it.scan_dir < 0)
7175 /* Now we are scanning backward and don't know
7176 where to stop. */
7177 stop = -1;
7178 composition_compute_stop_pos (&it->cmp_it, IT_CHARPOS (*it),
7179 IT_BYTEPOS (*it), stop, Qnil);
7183 else
7185 eassert (it->len != 0);
7187 if (!it->bidi_p)
7189 IT_BYTEPOS (*it) += it->len;
7190 IT_CHARPOS (*it) += 1;
7192 else
7194 int prev_scan_dir = it->bidi_it.scan_dir;
7195 /* If this is a new paragraph, determine its base
7196 direction (a.k.a. its base embedding level). */
7197 if (it->bidi_it.new_paragraph)
7198 bidi_paragraph_init (it->paragraph_embedding, &it->bidi_it, 0);
7199 bidi_move_to_visually_next (&it->bidi_it);
7200 IT_BYTEPOS (*it) = it->bidi_it.bytepos;
7201 IT_CHARPOS (*it) = it->bidi_it.charpos;
7202 if (prev_scan_dir != it->bidi_it.scan_dir)
7204 /* As the scan direction was changed, we must
7205 re-compute the stop position for composition. */
7206 ptrdiff_t stop = it->end_charpos;
7207 if (it->bidi_it.scan_dir < 0)
7208 stop = -1;
7209 composition_compute_stop_pos (&it->cmp_it, IT_CHARPOS (*it),
7210 IT_BYTEPOS (*it), stop, Qnil);
7213 eassert (IT_BYTEPOS (*it) == CHAR_TO_BYTE (IT_CHARPOS (*it)));
7215 break;
7217 case GET_FROM_C_STRING:
7218 /* Current display element of IT is from a C string. */
7219 if (!it->bidi_p
7220 /* If the string position is beyond string's end, it means
7221 next_element_from_c_string is padding the string with
7222 blanks, in which case we bypass the bidi iterator,
7223 because it cannot deal with such virtual characters. */
7224 || IT_CHARPOS (*it) >= it->bidi_it.string.schars)
7226 IT_BYTEPOS (*it) += it->len;
7227 IT_CHARPOS (*it) += 1;
7229 else
7231 bidi_move_to_visually_next (&it->bidi_it);
7232 IT_BYTEPOS (*it) = it->bidi_it.bytepos;
7233 IT_CHARPOS (*it) = it->bidi_it.charpos;
7235 break;
7237 case GET_FROM_DISPLAY_VECTOR:
7238 /* Current display element of IT is from a display table entry.
7239 Advance in the display table definition. Reset it to null if
7240 end reached, and continue with characters from buffers/
7241 strings. */
7242 ++it->current.dpvec_index;
7244 /* Restore face of the iterator to what they were before the
7245 display vector entry (these entries may contain faces). */
7246 it->face_id = it->saved_face_id;
7248 if (it->dpvec + it->current.dpvec_index >= it->dpend)
7250 int recheck_faces = it->ellipsis_p;
7252 if (it->s)
7253 it->method = GET_FROM_C_STRING;
7254 else if (STRINGP (it->string))
7255 it->method = GET_FROM_STRING;
7256 else
7258 it->method = GET_FROM_BUFFER;
7259 it->object = it->w->contents;
7262 it->dpvec = NULL;
7263 it->current.dpvec_index = -1;
7265 /* Skip over characters which were displayed via IT->dpvec. */
7266 if (it->dpvec_char_len < 0)
7267 reseat_at_next_visible_line_start (it, 1);
7268 else if (it->dpvec_char_len > 0)
7270 if (it->method == GET_FROM_STRING
7271 && it->current.overlay_string_index >= 0
7272 && it->n_overlay_strings > 0)
7273 it->ignore_overlay_strings_at_pos_p = 1;
7274 it->len = it->dpvec_char_len;
7275 set_iterator_to_next (it, reseat_p);
7278 /* Maybe recheck faces after display vector */
7279 if (recheck_faces)
7280 it->stop_charpos = IT_CHARPOS (*it);
7282 break;
7284 case GET_FROM_STRING:
7285 /* Current display element is a character from a Lisp string. */
7286 eassert (it->s == NULL && STRINGP (it->string));
7287 /* Don't advance past string end. These conditions are true
7288 when set_iterator_to_next is called at the end of
7289 get_next_display_element, in which case the Lisp string is
7290 already exhausted, and all we want is pop the iterator
7291 stack. */
7292 if (it->current.overlay_string_index >= 0)
7294 /* This is an overlay string, so there's no padding with
7295 spaces, and the number of characters in the string is
7296 where the string ends. */
7297 if (IT_STRING_CHARPOS (*it) >= SCHARS (it->string))
7298 goto consider_string_end;
7300 else
7302 /* Not an overlay string. There could be padding, so test
7303 against it->end_charpos . */
7304 if (IT_STRING_CHARPOS (*it) >= it->end_charpos)
7305 goto consider_string_end;
7307 if (it->cmp_it.id >= 0)
7309 int i;
7311 if (! it->bidi_p)
7313 IT_STRING_CHARPOS (*it) += it->cmp_it.nchars;
7314 IT_STRING_BYTEPOS (*it) += it->cmp_it.nbytes;
7315 if (it->cmp_it.to < it->cmp_it.nglyphs)
7316 it->cmp_it.from = it->cmp_it.to;
7317 else
7319 it->cmp_it.id = -1;
7320 composition_compute_stop_pos (&it->cmp_it,
7321 IT_STRING_CHARPOS (*it),
7322 IT_STRING_BYTEPOS (*it),
7323 it->end_charpos, it->string);
7326 else if (! it->cmp_it.reversed_p)
7328 for (i = 0; i < it->cmp_it.nchars; i++)
7329 bidi_move_to_visually_next (&it->bidi_it);
7330 IT_STRING_BYTEPOS (*it) = it->bidi_it.bytepos;
7331 IT_STRING_CHARPOS (*it) = it->bidi_it.charpos;
7333 if (it->cmp_it.to < it->cmp_it.nglyphs)
7334 it->cmp_it.from = it->cmp_it.to;
7335 else
7337 ptrdiff_t stop = it->end_charpos;
7338 if (it->bidi_it.scan_dir < 0)
7339 stop = -1;
7340 composition_compute_stop_pos (&it->cmp_it,
7341 IT_STRING_CHARPOS (*it),
7342 IT_STRING_BYTEPOS (*it), stop,
7343 it->string);
7346 else
7348 for (i = 0; i < it->cmp_it.nchars; i++)
7349 bidi_move_to_visually_next (&it->bidi_it);
7350 IT_STRING_BYTEPOS (*it) = it->bidi_it.bytepos;
7351 IT_STRING_CHARPOS (*it) = it->bidi_it.charpos;
7352 if (it->cmp_it.from > 0)
7353 it->cmp_it.to = it->cmp_it.from;
7354 else
7356 ptrdiff_t stop = it->end_charpos;
7357 if (it->bidi_it.scan_dir < 0)
7358 stop = -1;
7359 composition_compute_stop_pos (&it->cmp_it,
7360 IT_STRING_CHARPOS (*it),
7361 IT_STRING_BYTEPOS (*it), stop,
7362 it->string);
7366 else
7368 if (!it->bidi_p
7369 /* If the string position is beyond string's end, it
7370 means next_element_from_string is padding the string
7371 with blanks, in which case we bypass the bidi
7372 iterator, because it cannot deal with such virtual
7373 characters. */
7374 || IT_STRING_CHARPOS (*it) >= it->bidi_it.string.schars)
7376 IT_STRING_BYTEPOS (*it) += it->len;
7377 IT_STRING_CHARPOS (*it) += 1;
7379 else
7381 int prev_scan_dir = it->bidi_it.scan_dir;
7383 bidi_move_to_visually_next (&it->bidi_it);
7384 IT_STRING_BYTEPOS (*it) = it->bidi_it.bytepos;
7385 IT_STRING_CHARPOS (*it) = it->bidi_it.charpos;
7386 if (prev_scan_dir != it->bidi_it.scan_dir)
7388 ptrdiff_t stop = it->end_charpos;
7390 if (it->bidi_it.scan_dir < 0)
7391 stop = -1;
7392 composition_compute_stop_pos (&it->cmp_it,
7393 IT_STRING_CHARPOS (*it),
7394 IT_STRING_BYTEPOS (*it), stop,
7395 it->string);
7400 consider_string_end:
7402 if (it->current.overlay_string_index >= 0)
7404 /* IT->string is an overlay string. Advance to the
7405 next, if there is one. */
7406 if (IT_STRING_CHARPOS (*it) >= SCHARS (it->string))
7408 it->ellipsis_p = 0;
7409 next_overlay_string (it);
7410 if (it->ellipsis_p)
7411 setup_for_ellipsis (it, 0);
7414 else
7416 /* IT->string is not an overlay string. If we reached
7417 its end, and there is something on IT->stack, proceed
7418 with what is on the stack. This can be either another
7419 string, this time an overlay string, or a buffer. */
7420 if (IT_STRING_CHARPOS (*it) == SCHARS (it->string)
7421 && it->sp > 0)
7423 pop_it (it);
7424 if (it->method == GET_FROM_STRING)
7425 goto consider_string_end;
7428 break;
7430 case GET_FROM_IMAGE:
7431 case GET_FROM_STRETCH:
7432 /* The position etc with which we have to proceed are on
7433 the stack. The position may be at the end of a string,
7434 if the `display' property takes up the whole string. */
7435 eassert (it->sp > 0);
7436 pop_it (it);
7437 if (it->method == GET_FROM_STRING)
7438 goto consider_string_end;
7439 break;
7441 default:
7442 /* There are no other methods defined, so this should be a bug. */
7443 emacs_abort ();
7446 eassert (it->method != GET_FROM_STRING
7447 || (STRINGP (it->string)
7448 && IT_STRING_CHARPOS (*it) >= 0));
7451 /* Load IT's display element fields with information about the next
7452 display element which comes from a display table entry or from the
7453 result of translating a control character to one of the forms `^C'
7454 or `\003'.
7456 IT->dpvec holds the glyphs to return as characters.
7457 IT->saved_face_id holds the face id before the display vector--it
7458 is restored into IT->face_id in set_iterator_to_next. */
7460 static int
7461 next_element_from_display_vector (struct it *it)
7463 Lisp_Object gc;
7465 /* Precondition. */
7466 eassert (it->dpvec && it->current.dpvec_index >= 0);
7468 it->face_id = it->saved_face_id;
7470 /* KFS: This code used to check ip->dpvec[0] instead of the current element.
7471 That seemed totally bogus - so I changed it... */
7472 gc = it->dpvec[it->current.dpvec_index];
7474 if (GLYPH_CODE_P (gc))
7476 it->c = GLYPH_CODE_CHAR (gc);
7477 it->len = CHAR_BYTES (it->c);
7479 /* The entry may contain a face id to use. Such a face id is
7480 the id of a Lisp face, not a realized face. A face id of
7481 zero means no face is specified. */
7482 if (it->dpvec_face_id >= 0)
7483 it->face_id = it->dpvec_face_id;
7484 else
7486 int lface_id = GLYPH_CODE_FACE (gc);
7487 if (lface_id > 0)
7488 it->face_id = merge_faces (it->f, Qt, lface_id,
7489 it->saved_face_id);
7492 else
7493 /* Display table entry is invalid. Return a space. */
7494 it->c = ' ', it->len = 1;
7496 /* Don't change position and object of the iterator here. They are
7497 still the values of the character that had this display table
7498 entry or was translated, and that's what we want. */
7499 it->what = IT_CHARACTER;
7500 return 1;
7503 /* Get the first element of string/buffer in the visual order, after
7504 being reseated to a new position in a string or a buffer. */
7505 static void
7506 get_visually_first_element (struct it *it)
7508 int string_p = STRINGP (it->string) || it->s;
7509 ptrdiff_t eob = (string_p ? it->bidi_it.string.schars : ZV);
7510 ptrdiff_t bob = (string_p ? 0 : BEGV);
7512 if (STRINGP (it->string))
7514 it->bidi_it.charpos = IT_STRING_CHARPOS (*it);
7515 it->bidi_it.bytepos = IT_STRING_BYTEPOS (*it);
7517 else
7519 it->bidi_it.charpos = IT_CHARPOS (*it);
7520 it->bidi_it.bytepos = IT_BYTEPOS (*it);
7523 if (it->bidi_it.charpos == eob)
7525 /* Nothing to do, but reset the FIRST_ELT flag, like
7526 bidi_paragraph_init does, because we are not going to
7527 call it. */
7528 it->bidi_it.first_elt = 0;
7530 else if (it->bidi_it.charpos == bob
7531 || (!string_p
7532 && (FETCH_CHAR (it->bidi_it.bytepos - 1) == '\n'
7533 || FETCH_CHAR (it->bidi_it.bytepos) == '\n')))
7535 /* If we are at the beginning of a line/string, we can produce
7536 the next element right away. */
7537 bidi_paragraph_init (it->paragraph_embedding, &it->bidi_it, 1);
7538 bidi_move_to_visually_next (&it->bidi_it);
7540 else
7542 ptrdiff_t orig_bytepos = it->bidi_it.bytepos;
7544 /* We need to prime the bidi iterator starting at the line's or
7545 string's beginning, before we will be able to produce the
7546 next element. */
7547 if (string_p)
7548 it->bidi_it.charpos = it->bidi_it.bytepos = 0;
7549 else
7550 it->bidi_it.charpos = find_newline_no_quit (IT_CHARPOS (*it),
7551 IT_BYTEPOS (*it), -1,
7552 &it->bidi_it.bytepos);
7553 bidi_paragraph_init (it->paragraph_embedding, &it->bidi_it, 1);
7556 /* Now return to buffer/string position where we were asked
7557 to get the next display element, and produce that. */
7558 bidi_move_to_visually_next (&it->bidi_it);
7560 while (it->bidi_it.bytepos != orig_bytepos
7561 && it->bidi_it.charpos < eob);
7564 /* Adjust IT's position information to where we ended up. */
7565 if (STRINGP (it->string))
7567 IT_STRING_CHARPOS (*it) = it->bidi_it.charpos;
7568 IT_STRING_BYTEPOS (*it) = it->bidi_it.bytepos;
7570 else
7572 IT_CHARPOS (*it) = it->bidi_it.charpos;
7573 IT_BYTEPOS (*it) = it->bidi_it.bytepos;
7576 if (STRINGP (it->string) || !it->s)
7578 ptrdiff_t stop, charpos, bytepos;
7580 if (STRINGP (it->string))
7582 eassert (!it->s);
7583 stop = SCHARS (it->string);
7584 if (stop > it->end_charpos)
7585 stop = it->end_charpos;
7586 charpos = IT_STRING_CHARPOS (*it);
7587 bytepos = IT_STRING_BYTEPOS (*it);
7589 else
7591 stop = it->end_charpos;
7592 charpos = IT_CHARPOS (*it);
7593 bytepos = IT_BYTEPOS (*it);
7595 if (it->bidi_it.scan_dir < 0)
7596 stop = -1;
7597 composition_compute_stop_pos (&it->cmp_it, charpos, bytepos, stop,
7598 it->string);
7602 /* Load IT with the next display element from Lisp string IT->string.
7603 IT->current.string_pos is the current position within the string.
7604 If IT->current.overlay_string_index >= 0, the Lisp string is an
7605 overlay string. */
7607 static int
7608 next_element_from_string (struct it *it)
7610 struct text_pos position;
7612 eassert (STRINGP (it->string));
7613 eassert (!it->bidi_p || EQ (it->string, it->bidi_it.string.lstring));
7614 eassert (IT_STRING_CHARPOS (*it) >= 0);
7615 position = it->current.string_pos;
7617 /* With bidi reordering, the character to display might not be the
7618 character at IT_STRING_CHARPOS. BIDI_IT.FIRST_ELT non-zero means
7619 that we were reseat()ed to a new string, whose paragraph
7620 direction is not known. */
7621 if (it->bidi_p && it->bidi_it.first_elt)
7623 get_visually_first_element (it);
7624 SET_TEXT_POS (position, IT_STRING_CHARPOS (*it), IT_STRING_BYTEPOS (*it));
7627 /* Time to check for invisible text? */
7628 if (IT_STRING_CHARPOS (*it) < it->end_charpos)
7630 if (IT_STRING_CHARPOS (*it) >= it->stop_charpos)
7632 if (!(!it->bidi_p
7633 || BIDI_AT_BASE_LEVEL (it->bidi_it)
7634 || IT_STRING_CHARPOS (*it) == it->stop_charpos))
7636 /* With bidi non-linear iteration, we could find
7637 ourselves far beyond the last computed stop_charpos,
7638 with several other stop positions in between that we
7639 missed. Scan them all now, in buffer's logical
7640 order, until we find and handle the last stop_charpos
7641 that precedes our current position. */
7642 handle_stop_backwards (it, it->stop_charpos);
7643 return GET_NEXT_DISPLAY_ELEMENT (it);
7645 else
7647 if (it->bidi_p)
7649 /* Take note of the stop position we just moved
7650 across, for when we will move back across it. */
7651 it->prev_stop = it->stop_charpos;
7652 /* If we are at base paragraph embedding level, take
7653 note of the last stop position seen at this
7654 level. */
7655 if (BIDI_AT_BASE_LEVEL (it->bidi_it))
7656 it->base_level_stop = it->stop_charpos;
7658 handle_stop (it);
7660 /* Since a handler may have changed IT->method, we must
7661 recurse here. */
7662 return GET_NEXT_DISPLAY_ELEMENT (it);
7665 else if (it->bidi_p
7666 /* If we are before prev_stop, we may have overstepped
7667 on our way backwards a stop_pos, and if so, we need
7668 to handle that stop_pos. */
7669 && IT_STRING_CHARPOS (*it) < it->prev_stop
7670 /* We can sometimes back up for reasons that have nothing
7671 to do with bidi reordering. E.g., compositions. The
7672 code below is only needed when we are above the base
7673 embedding level, so test for that explicitly. */
7674 && !BIDI_AT_BASE_LEVEL (it->bidi_it))
7676 /* If we lost track of base_level_stop, we have no better
7677 place for handle_stop_backwards to start from than string
7678 beginning. This happens, e.g., when we were reseated to
7679 the previous screenful of text by vertical-motion. */
7680 if (it->base_level_stop <= 0
7681 || IT_STRING_CHARPOS (*it) < it->base_level_stop)
7682 it->base_level_stop = 0;
7683 handle_stop_backwards (it, it->base_level_stop);
7684 return GET_NEXT_DISPLAY_ELEMENT (it);
7688 if (it->current.overlay_string_index >= 0)
7690 /* Get the next character from an overlay string. In overlay
7691 strings, there is no field width or padding with spaces to
7692 do. */
7693 if (IT_STRING_CHARPOS (*it) >= SCHARS (it->string))
7695 it->what = IT_EOB;
7696 return 0;
7698 else if (CHAR_COMPOSED_P (it, IT_STRING_CHARPOS (*it),
7699 IT_STRING_BYTEPOS (*it),
7700 it->bidi_it.scan_dir < 0
7701 ? -1
7702 : SCHARS (it->string))
7703 && next_element_from_composition (it))
7705 return 1;
7707 else if (STRING_MULTIBYTE (it->string))
7709 const unsigned char *s = (SDATA (it->string)
7710 + IT_STRING_BYTEPOS (*it));
7711 it->c = string_char_and_length (s, &it->len);
7713 else
7715 it->c = SREF (it->string, IT_STRING_BYTEPOS (*it));
7716 it->len = 1;
7719 else
7721 /* Get the next character from a Lisp string that is not an
7722 overlay string. Such strings come from the mode line, for
7723 example. We may have to pad with spaces, or truncate the
7724 string. See also next_element_from_c_string. */
7725 if (IT_STRING_CHARPOS (*it) >= it->end_charpos)
7727 it->what = IT_EOB;
7728 return 0;
7730 else if (IT_STRING_CHARPOS (*it) >= it->string_nchars)
7732 /* Pad with spaces. */
7733 it->c = ' ', it->len = 1;
7734 CHARPOS (position) = BYTEPOS (position) = -1;
7736 else if (CHAR_COMPOSED_P (it, IT_STRING_CHARPOS (*it),
7737 IT_STRING_BYTEPOS (*it),
7738 it->bidi_it.scan_dir < 0
7739 ? -1
7740 : it->string_nchars)
7741 && next_element_from_composition (it))
7743 return 1;
7745 else if (STRING_MULTIBYTE (it->string))
7747 const unsigned char *s = (SDATA (it->string)
7748 + IT_STRING_BYTEPOS (*it));
7749 it->c = string_char_and_length (s, &it->len);
7751 else
7753 it->c = SREF (it->string, IT_STRING_BYTEPOS (*it));
7754 it->len = 1;
7758 /* Record what we have and where it came from. */
7759 it->what = IT_CHARACTER;
7760 it->object = it->string;
7761 it->position = position;
7762 return 1;
7766 /* Load IT with next display element from C string IT->s.
7767 IT->string_nchars is the maximum number of characters to return
7768 from the string. IT->end_charpos may be greater than
7769 IT->string_nchars when this function is called, in which case we
7770 may have to return padding spaces. Value is zero if end of string
7771 reached, including padding spaces. */
7773 static int
7774 next_element_from_c_string (struct it *it)
7776 int success_p = 1;
7778 eassert (it->s);
7779 eassert (!it->bidi_p || it->s == it->bidi_it.string.s);
7780 it->what = IT_CHARACTER;
7781 BYTEPOS (it->position) = CHARPOS (it->position) = 0;
7782 it->object = Qnil;
7784 /* With bidi reordering, the character to display might not be the
7785 character at IT_CHARPOS. BIDI_IT.FIRST_ELT non-zero means that
7786 we were reseated to a new string, whose paragraph direction is
7787 not known. */
7788 if (it->bidi_p && it->bidi_it.first_elt)
7789 get_visually_first_element (it);
7791 /* IT's position can be greater than IT->string_nchars in case a
7792 field width or precision has been specified when the iterator was
7793 initialized. */
7794 if (IT_CHARPOS (*it) >= it->end_charpos)
7796 /* End of the game. */
7797 it->what = IT_EOB;
7798 success_p = 0;
7800 else if (IT_CHARPOS (*it) >= it->string_nchars)
7802 /* Pad with spaces. */
7803 it->c = ' ', it->len = 1;
7804 BYTEPOS (it->position) = CHARPOS (it->position) = -1;
7806 else if (it->multibyte_p)
7807 it->c = string_char_and_length (it->s + IT_BYTEPOS (*it), &it->len);
7808 else
7809 it->c = it->s[IT_BYTEPOS (*it)], it->len = 1;
7811 return success_p;
7815 /* Set up IT to return characters from an ellipsis, if appropriate.
7816 The definition of the ellipsis glyphs may come from a display table
7817 entry. This function fills IT with the first glyph from the
7818 ellipsis if an ellipsis is to be displayed. */
7820 static int
7821 next_element_from_ellipsis (struct it *it)
7823 if (it->selective_display_ellipsis_p)
7824 setup_for_ellipsis (it, it->len);
7825 else
7827 /* The face at the current position may be different from the
7828 face we find after the invisible text. Remember what it
7829 was in IT->saved_face_id, and signal that it's there by
7830 setting face_before_selective_p. */
7831 it->saved_face_id = it->face_id;
7832 it->method = GET_FROM_BUFFER;
7833 it->object = it->w->contents;
7834 reseat_at_next_visible_line_start (it, 1);
7835 it->face_before_selective_p = 1;
7838 return GET_NEXT_DISPLAY_ELEMENT (it);
7842 /* Deliver an image display element. The iterator IT is already
7843 filled with image information (done in handle_display_prop). Value
7844 is always 1. */
7847 static int
7848 next_element_from_image (struct it *it)
7850 it->what = IT_IMAGE;
7851 it->ignore_overlay_strings_at_pos_p = 0;
7852 return 1;
7856 /* Fill iterator IT with next display element from a stretch glyph
7857 property. IT->object is the value of the text property. Value is
7858 always 1. */
7860 static int
7861 next_element_from_stretch (struct it *it)
7863 it->what = IT_STRETCH;
7864 return 1;
7867 /* Scan backwards from IT's current position until we find a stop
7868 position, or until BEGV. This is called when we find ourself
7869 before both the last known prev_stop and base_level_stop while
7870 reordering bidirectional text. */
7872 static void
7873 compute_stop_pos_backwards (struct it *it)
7875 const int SCAN_BACK_LIMIT = 1000;
7876 struct text_pos pos;
7877 struct display_pos save_current = it->current;
7878 struct text_pos save_position = it->position;
7879 ptrdiff_t charpos = IT_CHARPOS (*it);
7880 ptrdiff_t where_we_are = charpos;
7881 ptrdiff_t save_stop_pos = it->stop_charpos;
7882 ptrdiff_t save_end_pos = it->end_charpos;
7884 eassert (NILP (it->string) && !it->s);
7885 eassert (it->bidi_p);
7886 it->bidi_p = 0;
7889 it->end_charpos = min (charpos + 1, ZV);
7890 charpos = max (charpos - SCAN_BACK_LIMIT, BEGV);
7891 SET_TEXT_POS (pos, charpos, CHAR_TO_BYTE (charpos));
7892 reseat_1 (it, pos, 0);
7893 compute_stop_pos (it);
7894 /* We must advance forward, right? */
7895 if (it->stop_charpos <= charpos)
7896 emacs_abort ();
7898 while (charpos > BEGV && it->stop_charpos >= it->end_charpos);
7900 if (it->stop_charpos <= where_we_are)
7901 it->prev_stop = it->stop_charpos;
7902 else
7903 it->prev_stop = BEGV;
7904 it->bidi_p = 1;
7905 it->current = save_current;
7906 it->position = save_position;
7907 it->stop_charpos = save_stop_pos;
7908 it->end_charpos = save_end_pos;
7911 /* Scan forward from CHARPOS in the current buffer/string, until we
7912 find a stop position > current IT's position. Then handle the stop
7913 position before that. This is called when we bump into a stop
7914 position while reordering bidirectional text. CHARPOS should be
7915 the last previously processed stop_pos (or BEGV/0, if none were
7916 processed yet) whose position is less that IT's current
7917 position. */
7919 static void
7920 handle_stop_backwards (struct it *it, ptrdiff_t charpos)
7922 int bufp = !STRINGP (it->string);
7923 ptrdiff_t where_we_are = (bufp ? IT_CHARPOS (*it) : IT_STRING_CHARPOS (*it));
7924 struct display_pos save_current = it->current;
7925 struct text_pos save_position = it->position;
7926 struct text_pos pos1;
7927 ptrdiff_t next_stop;
7929 /* Scan in strict logical order. */
7930 eassert (it->bidi_p);
7931 it->bidi_p = 0;
7934 it->prev_stop = charpos;
7935 if (bufp)
7937 SET_TEXT_POS (pos1, charpos, CHAR_TO_BYTE (charpos));
7938 reseat_1 (it, pos1, 0);
7940 else
7941 it->current.string_pos = string_pos (charpos, it->string);
7942 compute_stop_pos (it);
7943 /* We must advance forward, right? */
7944 if (it->stop_charpos <= it->prev_stop)
7945 emacs_abort ();
7946 charpos = it->stop_charpos;
7948 while (charpos <= where_we_are);
7950 it->bidi_p = 1;
7951 it->current = save_current;
7952 it->position = save_position;
7953 next_stop = it->stop_charpos;
7954 it->stop_charpos = it->prev_stop;
7955 handle_stop (it);
7956 it->stop_charpos = next_stop;
7959 /* Load IT with the next display element from current_buffer. Value
7960 is zero if end of buffer reached. IT->stop_charpos is the next
7961 position at which to stop and check for text properties or buffer
7962 end. */
7964 static int
7965 next_element_from_buffer (struct it *it)
7967 int success_p = 1;
7969 eassert (IT_CHARPOS (*it) >= BEGV);
7970 eassert (NILP (it->string) && !it->s);
7971 eassert (!it->bidi_p
7972 || (EQ (it->bidi_it.string.lstring, Qnil)
7973 && it->bidi_it.string.s == NULL));
7975 /* With bidi reordering, the character to display might not be the
7976 character at IT_CHARPOS. BIDI_IT.FIRST_ELT non-zero means that
7977 we were reseat()ed to a new buffer position, which is potentially
7978 a different paragraph. */
7979 if (it->bidi_p && it->bidi_it.first_elt)
7981 get_visually_first_element (it);
7982 SET_TEXT_POS (it->position, IT_CHARPOS (*it), IT_BYTEPOS (*it));
7985 if (IT_CHARPOS (*it) >= it->stop_charpos)
7987 if (IT_CHARPOS (*it) >= it->end_charpos)
7989 int overlay_strings_follow_p;
7991 /* End of the game, except when overlay strings follow that
7992 haven't been returned yet. */
7993 if (it->overlay_strings_at_end_processed_p)
7994 overlay_strings_follow_p = 0;
7995 else
7997 it->overlay_strings_at_end_processed_p = 1;
7998 overlay_strings_follow_p = get_overlay_strings (it, 0);
8001 if (overlay_strings_follow_p)
8002 success_p = GET_NEXT_DISPLAY_ELEMENT (it);
8003 else
8005 it->what = IT_EOB;
8006 it->position = it->current.pos;
8007 success_p = 0;
8010 else if (!(!it->bidi_p
8011 || BIDI_AT_BASE_LEVEL (it->bidi_it)
8012 || IT_CHARPOS (*it) == it->stop_charpos))
8014 /* With bidi non-linear iteration, we could find ourselves
8015 far beyond the last computed stop_charpos, with several
8016 other stop positions in between that we missed. Scan
8017 them all now, in buffer's logical order, until we find
8018 and handle the last stop_charpos that precedes our
8019 current position. */
8020 handle_stop_backwards (it, it->stop_charpos);
8021 return GET_NEXT_DISPLAY_ELEMENT (it);
8023 else
8025 if (it->bidi_p)
8027 /* Take note of the stop position we just moved across,
8028 for when we will move back across it. */
8029 it->prev_stop = it->stop_charpos;
8030 /* If we are at base paragraph embedding level, take
8031 note of the last stop position seen at this
8032 level. */
8033 if (BIDI_AT_BASE_LEVEL (it->bidi_it))
8034 it->base_level_stop = it->stop_charpos;
8036 handle_stop (it);
8037 return GET_NEXT_DISPLAY_ELEMENT (it);
8040 else if (it->bidi_p
8041 /* If we are before prev_stop, we may have overstepped on
8042 our way backwards a stop_pos, and if so, we need to
8043 handle that stop_pos. */
8044 && IT_CHARPOS (*it) < it->prev_stop
8045 /* We can sometimes back up for reasons that have nothing
8046 to do with bidi reordering. E.g., compositions. The
8047 code below is only needed when we are above the base
8048 embedding level, so test for that explicitly. */
8049 && !BIDI_AT_BASE_LEVEL (it->bidi_it))
8051 if (it->base_level_stop <= 0
8052 || IT_CHARPOS (*it) < it->base_level_stop)
8054 /* If we lost track of base_level_stop, we need to find
8055 prev_stop by looking backwards. This happens, e.g., when
8056 we were reseated to the previous screenful of text by
8057 vertical-motion. */
8058 it->base_level_stop = BEGV;
8059 compute_stop_pos_backwards (it);
8060 handle_stop_backwards (it, it->prev_stop);
8062 else
8063 handle_stop_backwards (it, it->base_level_stop);
8064 return GET_NEXT_DISPLAY_ELEMENT (it);
8066 else
8068 /* No face changes, overlays etc. in sight, so just return a
8069 character from current_buffer. */
8070 unsigned char *p;
8071 ptrdiff_t stop;
8073 /* Maybe run the redisplay end trigger hook. Performance note:
8074 This doesn't seem to cost measurable time. */
8075 if (it->redisplay_end_trigger_charpos
8076 && it->glyph_row
8077 && IT_CHARPOS (*it) >= it->redisplay_end_trigger_charpos)
8078 run_redisplay_end_trigger_hook (it);
8080 stop = it->bidi_it.scan_dir < 0 ? -1 : it->end_charpos;
8081 if (CHAR_COMPOSED_P (it, IT_CHARPOS (*it), IT_BYTEPOS (*it),
8082 stop)
8083 && next_element_from_composition (it))
8085 return 1;
8088 /* Get the next character, maybe multibyte. */
8089 p = BYTE_POS_ADDR (IT_BYTEPOS (*it));
8090 if (it->multibyte_p && !ASCII_BYTE_P (*p))
8091 it->c = STRING_CHAR_AND_LENGTH (p, it->len);
8092 else
8093 it->c = *p, it->len = 1;
8095 /* Record what we have and where it came from. */
8096 it->what = IT_CHARACTER;
8097 it->object = it->w->contents;
8098 it->position = it->current.pos;
8100 /* Normally we return the character found above, except when we
8101 really want to return an ellipsis for selective display. */
8102 if (it->selective)
8104 if (it->c == '\n')
8106 /* A value of selective > 0 means hide lines indented more
8107 than that number of columns. */
8108 if (it->selective > 0
8109 && IT_CHARPOS (*it) + 1 < ZV
8110 && indented_beyond_p (IT_CHARPOS (*it) + 1,
8111 IT_BYTEPOS (*it) + 1,
8112 it->selective))
8114 success_p = next_element_from_ellipsis (it);
8115 it->dpvec_char_len = -1;
8118 else if (it->c == '\r' && it->selective == -1)
8120 /* A value of selective == -1 means that everything from the
8121 CR to the end of the line is invisible, with maybe an
8122 ellipsis displayed for it. */
8123 success_p = next_element_from_ellipsis (it);
8124 it->dpvec_char_len = -1;
8129 /* Value is zero if end of buffer reached. */
8130 eassert (!success_p || it->what != IT_CHARACTER || it->len > 0);
8131 return success_p;
8135 /* Run the redisplay end trigger hook for IT. */
8137 static void
8138 run_redisplay_end_trigger_hook (struct it *it)
8140 Lisp_Object args[3];
8142 /* IT->glyph_row should be non-null, i.e. we should be actually
8143 displaying something, or otherwise we should not run the hook. */
8144 eassert (it->glyph_row);
8146 /* Set up hook arguments. */
8147 args[0] = Qredisplay_end_trigger_functions;
8148 args[1] = it->window;
8149 XSETINT (args[2], it->redisplay_end_trigger_charpos);
8150 it->redisplay_end_trigger_charpos = 0;
8152 /* Since we are *trying* to run these functions, don't try to run
8153 them again, even if they get an error. */
8154 wset_redisplay_end_trigger (it->w, Qnil);
8155 Frun_hook_with_args (3, args);
8157 /* Notice if it changed the face of the character we are on. */
8158 handle_face_prop (it);
8162 /* Deliver a composition display element. Unlike the other
8163 next_element_from_XXX, this function is not registered in the array
8164 get_next_element[]. It is called from next_element_from_buffer and
8165 next_element_from_string when necessary. */
8167 static int
8168 next_element_from_composition (struct it *it)
8170 it->what = IT_COMPOSITION;
8171 it->len = it->cmp_it.nbytes;
8172 if (STRINGP (it->string))
8174 if (it->c < 0)
8176 IT_STRING_CHARPOS (*it) += it->cmp_it.nchars;
8177 IT_STRING_BYTEPOS (*it) += it->cmp_it.nbytes;
8178 return 0;
8180 it->position = it->current.string_pos;
8181 it->object = it->string;
8182 it->c = composition_update_it (&it->cmp_it, IT_STRING_CHARPOS (*it),
8183 IT_STRING_BYTEPOS (*it), it->string);
8185 else
8187 if (it->c < 0)
8189 IT_CHARPOS (*it) += it->cmp_it.nchars;
8190 IT_BYTEPOS (*it) += it->cmp_it.nbytes;
8191 if (it->bidi_p)
8193 if (it->bidi_it.new_paragraph)
8194 bidi_paragraph_init (it->paragraph_embedding, &it->bidi_it, 0);
8195 /* Resync the bidi iterator with IT's new position.
8196 FIXME: this doesn't support bidirectional text. */
8197 while (it->bidi_it.charpos < IT_CHARPOS (*it))
8198 bidi_move_to_visually_next (&it->bidi_it);
8200 return 0;
8202 it->position = it->current.pos;
8203 it->object = it->w->contents;
8204 it->c = composition_update_it (&it->cmp_it, IT_CHARPOS (*it),
8205 IT_BYTEPOS (*it), Qnil);
8207 return 1;
8212 /***********************************************************************
8213 Moving an iterator without producing glyphs
8214 ***********************************************************************/
8216 /* Check if iterator is at a position corresponding to a valid buffer
8217 position after some move_it_ call. */
8219 #define IT_POS_VALID_AFTER_MOVE_P(it) \
8220 ((it)->method == GET_FROM_STRING \
8221 ? IT_STRING_CHARPOS (*it) == 0 \
8222 : 1)
8225 /* Move iterator IT to a specified buffer or X position within one
8226 line on the display without producing glyphs.
8228 OP should be a bit mask including some or all of these bits:
8229 MOVE_TO_X: Stop upon reaching x-position TO_X.
8230 MOVE_TO_POS: Stop upon reaching buffer or string position TO_CHARPOS.
8231 Regardless of OP's value, stop upon reaching the end of the display line.
8233 TO_X is normally a value 0 <= TO_X <= IT->last_visible_x.
8234 This means, in particular, that TO_X includes window's horizontal
8235 scroll amount.
8237 The return value has several possible values that
8238 say what condition caused the scan to stop:
8240 MOVE_POS_MATCH_OR_ZV
8241 - when TO_POS or ZV was reached.
8243 MOVE_X_REACHED
8244 -when TO_X was reached before TO_POS or ZV were reached.
8246 MOVE_LINE_CONTINUED
8247 - when we reached the end of the display area and the line must
8248 be continued.
8250 MOVE_LINE_TRUNCATED
8251 - when we reached the end of the display area and the line is
8252 truncated.
8254 MOVE_NEWLINE_OR_CR
8255 - when we stopped at a line end, i.e. a newline or a CR and selective
8256 display is on. */
8258 static enum move_it_result
8259 move_it_in_display_line_to (struct it *it,
8260 ptrdiff_t to_charpos, int to_x,
8261 enum move_operation_enum op)
8263 enum move_it_result result = MOVE_UNDEFINED;
8264 struct glyph_row *saved_glyph_row;
8265 struct it wrap_it, atpos_it, atx_it, ppos_it;
8266 void *wrap_data = NULL, *atpos_data = NULL, *atx_data = NULL;
8267 void *ppos_data = NULL;
8268 int may_wrap = 0;
8269 enum it_method prev_method = it->method;
8270 ptrdiff_t prev_pos = IT_CHARPOS (*it);
8271 int saw_smaller_pos = prev_pos < to_charpos;
8273 /* Don't produce glyphs in produce_glyphs. */
8274 saved_glyph_row = it->glyph_row;
8275 it->glyph_row = NULL;
8277 /* Use wrap_it to save a copy of IT wherever a word wrap could
8278 occur. Use atpos_it to save a copy of IT at the desired buffer
8279 position, if found, so that we can scan ahead and check if the
8280 word later overshoots the window edge. Use atx_it similarly, for
8281 pixel positions. */
8282 wrap_it.sp = -1;
8283 atpos_it.sp = -1;
8284 atx_it.sp = -1;
8286 /* Use ppos_it under bidi reordering to save a copy of IT for the
8287 position > CHARPOS that is the closest to CHARPOS. We restore
8288 that position in IT when we have scanned the entire display line
8289 without finding a match for CHARPOS and all the character
8290 positions are greater than CHARPOS. */
8291 if (it->bidi_p)
8293 SAVE_IT (ppos_it, *it, ppos_data);
8294 SET_TEXT_POS (ppos_it.current.pos, ZV, ZV_BYTE);
8295 if ((op & MOVE_TO_POS) && IT_CHARPOS (*it) >= to_charpos)
8296 SAVE_IT (ppos_it, *it, ppos_data);
8299 #define BUFFER_POS_REACHED_P() \
8300 ((op & MOVE_TO_POS) != 0 \
8301 && BUFFERP (it->object) \
8302 && (IT_CHARPOS (*it) == to_charpos \
8303 || ((!it->bidi_p \
8304 || BIDI_AT_BASE_LEVEL (it->bidi_it)) \
8305 && IT_CHARPOS (*it) > to_charpos) \
8306 || (it->what == IT_COMPOSITION \
8307 && ((IT_CHARPOS (*it) > to_charpos \
8308 && to_charpos >= it->cmp_it.charpos) \
8309 || (IT_CHARPOS (*it) < to_charpos \
8310 && to_charpos <= it->cmp_it.charpos)))) \
8311 && (it->method == GET_FROM_BUFFER \
8312 || (it->method == GET_FROM_DISPLAY_VECTOR \
8313 && it->dpvec + it->current.dpvec_index + 1 >= it->dpend)))
8315 /* If there's a line-/wrap-prefix, handle it. */
8316 if (it->hpos == 0 && it->method == GET_FROM_BUFFER
8317 && it->current_y < it->last_visible_y)
8318 handle_line_prefix (it);
8320 if (IT_CHARPOS (*it) < CHARPOS (this_line_min_pos))
8321 SET_TEXT_POS (this_line_min_pos, IT_CHARPOS (*it), IT_BYTEPOS (*it));
8323 while (1)
8325 int x, i, ascent = 0, descent = 0;
8327 /* Utility macro to reset an iterator with x, ascent, and descent. */
8328 #define IT_RESET_X_ASCENT_DESCENT(IT) \
8329 ((IT)->current_x = x, (IT)->max_ascent = ascent, \
8330 (IT)->max_descent = descent)
8332 /* Stop if we move beyond TO_CHARPOS (after an image or a
8333 display string or stretch glyph). */
8334 if ((op & MOVE_TO_POS) != 0
8335 && BUFFERP (it->object)
8336 && it->method == GET_FROM_BUFFER
8337 && (((!it->bidi_p
8338 /* When the iterator is at base embedding level, we
8339 are guaranteed that characters are delivered for
8340 display in strictly increasing order of their
8341 buffer positions. */
8342 || BIDI_AT_BASE_LEVEL (it->bidi_it))
8343 && IT_CHARPOS (*it) > to_charpos)
8344 || (it->bidi_p
8345 && (prev_method == GET_FROM_IMAGE
8346 || prev_method == GET_FROM_STRETCH
8347 || prev_method == GET_FROM_STRING)
8348 /* Passed TO_CHARPOS from left to right. */
8349 && ((prev_pos < to_charpos
8350 && IT_CHARPOS (*it) > to_charpos)
8351 /* Passed TO_CHARPOS from right to left. */
8352 || (prev_pos > to_charpos
8353 && IT_CHARPOS (*it) < to_charpos)))))
8355 if (it->line_wrap != WORD_WRAP || wrap_it.sp < 0)
8357 result = MOVE_POS_MATCH_OR_ZV;
8358 break;
8360 else if (it->line_wrap == WORD_WRAP && atpos_it.sp < 0)
8361 /* If wrap_it is valid, the current position might be in a
8362 word that is wrapped. So, save the iterator in
8363 atpos_it and continue to see if wrapping happens. */
8364 SAVE_IT (atpos_it, *it, atpos_data);
8367 /* Stop when ZV reached.
8368 We used to stop here when TO_CHARPOS reached as well, but that is
8369 too soon if this glyph does not fit on this line. So we handle it
8370 explicitly below. */
8371 if (!get_next_display_element (it))
8373 result = MOVE_POS_MATCH_OR_ZV;
8374 break;
8377 if (it->line_wrap == TRUNCATE)
8379 if (BUFFER_POS_REACHED_P ())
8381 result = MOVE_POS_MATCH_OR_ZV;
8382 break;
8385 else
8387 if (it->line_wrap == WORD_WRAP)
8389 if (IT_DISPLAYING_WHITESPACE (it))
8390 may_wrap = 1;
8391 else if (may_wrap)
8393 /* We have reached a glyph that follows one or more
8394 whitespace characters. If the position is
8395 already found, we are done. */
8396 if (atpos_it.sp >= 0)
8398 RESTORE_IT (it, &atpos_it, atpos_data);
8399 result = MOVE_POS_MATCH_OR_ZV;
8400 goto done;
8402 if (atx_it.sp >= 0)
8404 RESTORE_IT (it, &atx_it, atx_data);
8405 result = MOVE_X_REACHED;
8406 goto done;
8408 /* Otherwise, we can wrap here. */
8409 SAVE_IT (wrap_it, *it, wrap_data);
8410 may_wrap = 0;
8415 /* Remember the line height for the current line, in case
8416 the next element doesn't fit on the line. */
8417 ascent = it->max_ascent;
8418 descent = it->max_descent;
8420 /* The call to produce_glyphs will get the metrics of the
8421 display element IT is loaded with. Record the x-position
8422 before this display element, in case it doesn't fit on the
8423 line. */
8424 x = it->current_x;
8426 PRODUCE_GLYPHS (it);
8428 if (it->area != TEXT_AREA)
8430 prev_method = it->method;
8431 if (it->method == GET_FROM_BUFFER)
8432 prev_pos = IT_CHARPOS (*it);
8433 set_iterator_to_next (it, 1);
8434 if (IT_CHARPOS (*it) < CHARPOS (this_line_min_pos))
8435 SET_TEXT_POS (this_line_min_pos,
8436 IT_CHARPOS (*it), IT_BYTEPOS (*it));
8437 if (it->bidi_p
8438 && (op & MOVE_TO_POS)
8439 && IT_CHARPOS (*it) > to_charpos
8440 && IT_CHARPOS (*it) < IT_CHARPOS (ppos_it))
8441 SAVE_IT (ppos_it, *it, ppos_data);
8442 continue;
8445 /* The number of glyphs we get back in IT->nglyphs will normally
8446 be 1 except when IT->c is (i) a TAB, or (ii) a multi-glyph
8447 character on a terminal frame, or (iii) a line end. For the
8448 second case, IT->nglyphs - 1 padding glyphs will be present.
8449 (On X frames, there is only one glyph produced for a
8450 composite character.)
8452 The behavior implemented below means, for continuation lines,
8453 that as many spaces of a TAB as fit on the current line are
8454 displayed there. For terminal frames, as many glyphs of a
8455 multi-glyph character are displayed in the current line, too.
8456 This is what the old redisplay code did, and we keep it that
8457 way. Under X, the whole shape of a complex character must
8458 fit on the line or it will be completely displayed in the
8459 next line.
8461 Note that both for tabs and padding glyphs, all glyphs have
8462 the same width. */
8463 if (it->nglyphs)
8465 /* More than one glyph or glyph doesn't fit on line. All
8466 glyphs have the same width. */
8467 int single_glyph_width = it->pixel_width / it->nglyphs;
8468 int new_x;
8469 int x_before_this_char = x;
8470 int hpos_before_this_char = it->hpos;
8472 for (i = 0; i < it->nglyphs; ++i, x = new_x)
8474 new_x = x + single_glyph_width;
8476 /* We want to leave anything reaching TO_X to the caller. */
8477 if ((op & MOVE_TO_X) && new_x > to_x)
8479 if (BUFFER_POS_REACHED_P ())
8481 if (it->line_wrap != WORD_WRAP || wrap_it.sp < 0)
8482 goto buffer_pos_reached;
8483 if (atpos_it.sp < 0)
8485 SAVE_IT (atpos_it, *it, atpos_data);
8486 IT_RESET_X_ASCENT_DESCENT (&atpos_it);
8489 else
8491 if (it->line_wrap != WORD_WRAP || wrap_it.sp < 0)
8493 it->current_x = x;
8494 result = MOVE_X_REACHED;
8495 break;
8497 if (atx_it.sp < 0)
8499 SAVE_IT (atx_it, *it, atx_data);
8500 IT_RESET_X_ASCENT_DESCENT (&atx_it);
8505 if (/* Lines are continued. */
8506 it->line_wrap != TRUNCATE
8507 && (/* And glyph doesn't fit on the line. */
8508 new_x > it->last_visible_x
8509 /* Or it fits exactly and we're on a window
8510 system frame. */
8511 || (new_x == it->last_visible_x
8512 && FRAME_WINDOW_P (it->f)
8513 && ((it->bidi_p && it->bidi_it.paragraph_dir == R2L)
8514 ? WINDOW_LEFT_FRINGE_WIDTH (it->w)
8515 : WINDOW_RIGHT_FRINGE_WIDTH (it->w)))))
8517 if (/* IT->hpos == 0 means the very first glyph
8518 doesn't fit on the line, e.g. a wide image. */
8519 it->hpos == 0
8520 || (new_x == it->last_visible_x
8521 && FRAME_WINDOW_P (it->f)))
8523 ++it->hpos;
8524 it->current_x = new_x;
8526 /* The character's last glyph just barely fits
8527 in this row. */
8528 if (i == it->nglyphs - 1)
8530 /* If this is the destination position,
8531 return a position *before* it in this row,
8532 now that we know it fits in this row. */
8533 if (BUFFER_POS_REACHED_P ())
8535 if (it->line_wrap != WORD_WRAP
8536 || wrap_it.sp < 0)
8538 it->hpos = hpos_before_this_char;
8539 it->current_x = x_before_this_char;
8540 result = MOVE_POS_MATCH_OR_ZV;
8541 break;
8543 if (it->line_wrap == WORD_WRAP
8544 && atpos_it.sp < 0)
8546 SAVE_IT (atpos_it, *it, atpos_data);
8547 atpos_it.current_x = x_before_this_char;
8548 atpos_it.hpos = hpos_before_this_char;
8552 prev_method = it->method;
8553 if (it->method == GET_FROM_BUFFER)
8554 prev_pos = IT_CHARPOS (*it);
8555 set_iterator_to_next (it, 1);
8556 if (IT_CHARPOS (*it) < CHARPOS (this_line_min_pos))
8557 SET_TEXT_POS (this_line_min_pos,
8558 IT_CHARPOS (*it), IT_BYTEPOS (*it));
8559 /* On graphical terminals, newlines may
8560 "overflow" into the fringe if
8561 overflow-newline-into-fringe is non-nil.
8562 On text terminals, and on graphical
8563 terminals with no right margin, newlines
8564 may overflow into the last glyph on the
8565 display line.*/
8566 if (!FRAME_WINDOW_P (it->f)
8567 || ((it->bidi_p
8568 && it->bidi_it.paragraph_dir == R2L)
8569 ? WINDOW_LEFT_FRINGE_WIDTH (it->w)
8570 : WINDOW_RIGHT_FRINGE_WIDTH (it->w)) == 0
8571 || IT_OVERFLOW_NEWLINE_INTO_FRINGE (it))
8573 if (!get_next_display_element (it))
8575 result = MOVE_POS_MATCH_OR_ZV;
8576 break;
8578 if (BUFFER_POS_REACHED_P ())
8580 if (ITERATOR_AT_END_OF_LINE_P (it))
8581 result = MOVE_POS_MATCH_OR_ZV;
8582 else
8583 result = MOVE_LINE_CONTINUED;
8584 break;
8586 if (ITERATOR_AT_END_OF_LINE_P (it)
8587 && (it->line_wrap != WORD_WRAP
8588 || wrap_it.sp < 0))
8590 result = MOVE_NEWLINE_OR_CR;
8591 break;
8596 else
8597 IT_RESET_X_ASCENT_DESCENT (it);
8599 if (wrap_it.sp >= 0)
8601 RESTORE_IT (it, &wrap_it, wrap_data);
8602 atpos_it.sp = -1;
8603 atx_it.sp = -1;
8606 TRACE_MOVE ((stderr, "move_it_in: continued at %d\n",
8607 IT_CHARPOS (*it)));
8608 result = MOVE_LINE_CONTINUED;
8609 break;
8612 if (BUFFER_POS_REACHED_P ())
8614 if (it->line_wrap != WORD_WRAP || wrap_it.sp < 0)
8615 goto buffer_pos_reached;
8616 if (it->line_wrap == WORD_WRAP && atpos_it.sp < 0)
8618 SAVE_IT (atpos_it, *it, atpos_data);
8619 IT_RESET_X_ASCENT_DESCENT (&atpos_it);
8623 if (new_x > it->first_visible_x)
8625 /* Glyph is visible. Increment number of glyphs that
8626 would be displayed. */
8627 ++it->hpos;
8631 if (result != MOVE_UNDEFINED)
8632 break;
8634 else if (BUFFER_POS_REACHED_P ())
8636 buffer_pos_reached:
8637 IT_RESET_X_ASCENT_DESCENT (it);
8638 result = MOVE_POS_MATCH_OR_ZV;
8639 break;
8641 else if ((op & MOVE_TO_X) && it->current_x >= to_x)
8643 /* Stop when TO_X specified and reached. This check is
8644 necessary here because of lines consisting of a line end,
8645 only. The line end will not produce any glyphs and we
8646 would never get MOVE_X_REACHED. */
8647 eassert (it->nglyphs == 0);
8648 result = MOVE_X_REACHED;
8649 break;
8652 /* Is this a line end? If yes, we're done. */
8653 if (ITERATOR_AT_END_OF_LINE_P (it))
8655 /* If we are past TO_CHARPOS, but never saw any character
8656 positions smaller than TO_CHARPOS, return
8657 MOVE_POS_MATCH_OR_ZV, like the unidirectional display
8658 did. */
8659 if (it->bidi_p && (op & MOVE_TO_POS) != 0)
8661 if (!saw_smaller_pos && IT_CHARPOS (*it) > to_charpos)
8663 if (IT_CHARPOS (ppos_it) < ZV)
8665 RESTORE_IT (it, &ppos_it, ppos_data);
8666 result = MOVE_POS_MATCH_OR_ZV;
8668 else
8669 goto buffer_pos_reached;
8671 else if (it->line_wrap == WORD_WRAP && atpos_it.sp >= 0
8672 && IT_CHARPOS (*it) > to_charpos)
8673 goto buffer_pos_reached;
8674 else
8675 result = MOVE_NEWLINE_OR_CR;
8677 else
8678 result = MOVE_NEWLINE_OR_CR;
8679 break;
8682 prev_method = it->method;
8683 if (it->method == GET_FROM_BUFFER)
8684 prev_pos = IT_CHARPOS (*it);
8685 /* The current display element has been consumed. Advance
8686 to the next. */
8687 set_iterator_to_next (it, 1);
8688 if (IT_CHARPOS (*it) < CHARPOS (this_line_min_pos))
8689 SET_TEXT_POS (this_line_min_pos, IT_CHARPOS (*it), IT_BYTEPOS (*it));
8690 if (IT_CHARPOS (*it) < to_charpos)
8691 saw_smaller_pos = 1;
8692 if (it->bidi_p
8693 && (op & MOVE_TO_POS)
8694 && IT_CHARPOS (*it) >= to_charpos
8695 && IT_CHARPOS (*it) < IT_CHARPOS (ppos_it))
8696 SAVE_IT (ppos_it, *it, ppos_data);
8698 /* Stop if lines are truncated and IT's current x-position is
8699 past the right edge of the window now. */
8700 if (it->line_wrap == TRUNCATE
8701 && it->current_x >= it->last_visible_x)
8703 if (!FRAME_WINDOW_P (it->f)
8704 || ((it->bidi_p && it->bidi_it.paragraph_dir == R2L)
8705 ? WINDOW_LEFT_FRINGE_WIDTH (it->w)
8706 : WINDOW_RIGHT_FRINGE_WIDTH (it->w)) == 0
8707 || IT_OVERFLOW_NEWLINE_INTO_FRINGE (it))
8709 int at_eob_p = 0;
8711 if ((at_eob_p = !get_next_display_element (it))
8712 || BUFFER_POS_REACHED_P ()
8713 /* If we are past TO_CHARPOS, but never saw any
8714 character positions smaller than TO_CHARPOS,
8715 return MOVE_POS_MATCH_OR_ZV, like the
8716 unidirectional display did. */
8717 || (it->bidi_p && (op & MOVE_TO_POS) != 0
8718 && !saw_smaller_pos
8719 && IT_CHARPOS (*it) > to_charpos))
8721 if (it->bidi_p
8722 && !at_eob_p && IT_CHARPOS (ppos_it) < ZV)
8723 RESTORE_IT (it, &ppos_it, ppos_data);
8724 result = MOVE_POS_MATCH_OR_ZV;
8725 break;
8727 if (ITERATOR_AT_END_OF_LINE_P (it))
8729 result = MOVE_NEWLINE_OR_CR;
8730 break;
8733 else if (it->bidi_p && (op & MOVE_TO_POS) != 0
8734 && !saw_smaller_pos
8735 && IT_CHARPOS (*it) > to_charpos)
8737 if (IT_CHARPOS (ppos_it) < ZV)
8738 RESTORE_IT (it, &ppos_it, ppos_data);
8739 result = MOVE_POS_MATCH_OR_ZV;
8740 break;
8742 result = MOVE_LINE_TRUNCATED;
8743 break;
8745 #undef IT_RESET_X_ASCENT_DESCENT
8748 #undef BUFFER_POS_REACHED_P
8750 /* If we scanned beyond to_pos and didn't find a point to wrap at,
8751 restore the saved iterator. */
8752 if (atpos_it.sp >= 0)
8753 RESTORE_IT (it, &atpos_it, atpos_data);
8754 else if (atx_it.sp >= 0)
8755 RESTORE_IT (it, &atx_it, atx_data);
8757 done:
8759 if (atpos_data)
8760 bidi_unshelve_cache (atpos_data, 1);
8761 if (atx_data)
8762 bidi_unshelve_cache (atx_data, 1);
8763 if (wrap_data)
8764 bidi_unshelve_cache (wrap_data, 1);
8765 if (ppos_data)
8766 bidi_unshelve_cache (ppos_data, 1);
8768 /* Restore the iterator settings altered at the beginning of this
8769 function. */
8770 it->glyph_row = saved_glyph_row;
8771 return result;
8774 /* For external use. */
8775 void
8776 move_it_in_display_line (struct it *it,
8777 ptrdiff_t to_charpos, int to_x,
8778 enum move_operation_enum op)
8780 if (it->line_wrap == WORD_WRAP
8781 && (op & MOVE_TO_X))
8783 struct it save_it;
8784 void *save_data = NULL;
8785 int skip;
8787 SAVE_IT (save_it, *it, save_data);
8788 skip = move_it_in_display_line_to (it, to_charpos, to_x, op);
8789 /* When word-wrap is on, TO_X may lie past the end
8790 of a wrapped line. Then it->current is the
8791 character on the next line, so backtrack to the
8792 space before the wrap point. */
8793 if (skip == MOVE_LINE_CONTINUED)
8795 int prev_x = max (it->current_x - 1, 0);
8796 RESTORE_IT (it, &save_it, save_data);
8797 move_it_in_display_line_to
8798 (it, -1, prev_x, MOVE_TO_X);
8800 else
8801 bidi_unshelve_cache (save_data, 1);
8803 else
8804 move_it_in_display_line_to (it, to_charpos, to_x, op);
8808 /* Move IT forward until it satisfies one or more of the criteria in
8809 TO_CHARPOS, TO_X, TO_Y, and TO_VPOS.
8811 OP is a bit-mask that specifies where to stop, and in particular,
8812 which of those four position arguments makes a difference. See the
8813 description of enum move_operation_enum.
8815 If TO_CHARPOS is in invisible text, e.g. a truncated part of a
8816 screen line, this function will set IT to the next position that is
8817 displayed to the right of TO_CHARPOS on the screen. */
8819 void
8820 move_it_to (struct it *it, ptrdiff_t to_charpos, int to_x, int to_y, int to_vpos, int op)
8822 enum move_it_result skip, skip2 = MOVE_X_REACHED;
8823 int line_height, line_start_x = 0, reached = 0;
8824 void *backup_data = NULL;
8826 for (;;)
8828 if (op & MOVE_TO_VPOS)
8830 /* If no TO_CHARPOS and no TO_X specified, stop at the
8831 start of the line TO_VPOS. */
8832 if ((op & (MOVE_TO_X | MOVE_TO_POS)) == 0)
8834 if (it->vpos == to_vpos)
8836 reached = 1;
8837 break;
8839 else
8840 skip = move_it_in_display_line_to (it, -1, -1, 0);
8842 else
8844 /* TO_VPOS >= 0 means stop at TO_X in the line at
8845 TO_VPOS, or at TO_POS, whichever comes first. */
8846 if (it->vpos == to_vpos)
8848 reached = 2;
8849 break;
8852 skip = move_it_in_display_line_to (it, to_charpos, to_x, op);
8854 if (skip == MOVE_POS_MATCH_OR_ZV || it->vpos == to_vpos)
8856 reached = 3;
8857 break;
8859 else if (skip == MOVE_X_REACHED && it->vpos != to_vpos)
8861 /* We have reached TO_X but not in the line we want. */
8862 skip = move_it_in_display_line_to (it, to_charpos,
8863 -1, MOVE_TO_POS);
8864 if (skip == MOVE_POS_MATCH_OR_ZV)
8866 reached = 4;
8867 break;
8872 else if (op & MOVE_TO_Y)
8874 struct it it_backup;
8876 if (it->line_wrap == WORD_WRAP)
8877 SAVE_IT (it_backup, *it, backup_data);
8879 /* TO_Y specified means stop at TO_X in the line containing
8880 TO_Y---or at TO_CHARPOS if this is reached first. The
8881 problem is that we can't really tell whether the line
8882 contains TO_Y before we have completely scanned it, and
8883 this may skip past TO_X. What we do is to first scan to
8884 TO_X.
8886 If TO_X is not specified, use a TO_X of zero. The reason
8887 is to make the outcome of this function more predictable.
8888 If we didn't use TO_X == 0, we would stop at the end of
8889 the line which is probably not what a caller would expect
8890 to happen. */
8891 skip = move_it_in_display_line_to
8892 (it, to_charpos, ((op & MOVE_TO_X) ? to_x : 0),
8893 (MOVE_TO_X | (op & MOVE_TO_POS)));
8895 /* If TO_CHARPOS is reached or ZV, we don't have to do more. */
8896 if (skip == MOVE_POS_MATCH_OR_ZV)
8897 reached = 5;
8898 else if (skip == MOVE_X_REACHED)
8900 /* If TO_X was reached, we want to know whether TO_Y is
8901 in the line. We know this is the case if the already
8902 scanned glyphs make the line tall enough. Otherwise,
8903 we must check by scanning the rest of the line. */
8904 line_height = it->max_ascent + it->max_descent;
8905 if (to_y >= it->current_y
8906 && to_y < it->current_y + line_height)
8908 reached = 6;
8909 break;
8911 SAVE_IT (it_backup, *it, backup_data);
8912 TRACE_MOVE ((stderr, "move_it: from %d\n", IT_CHARPOS (*it)));
8913 skip2 = move_it_in_display_line_to (it, to_charpos, -1,
8914 op & MOVE_TO_POS);
8915 TRACE_MOVE ((stderr, "move_it: to %d\n", IT_CHARPOS (*it)));
8916 line_height = it->max_ascent + it->max_descent;
8917 TRACE_MOVE ((stderr, "move_it: line_height = %d\n", line_height));
8919 if (to_y >= it->current_y
8920 && to_y < it->current_y + line_height)
8922 /* If TO_Y is in this line and TO_X was reached
8923 above, we scanned too far. We have to restore
8924 IT's settings to the ones before skipping. But
8925 keep the more accurate values of max_ascent and
8926 max_descent we've found while skipping the rest
8927 of the line, for the sake of callers, such as
8928 pos_visible_p, that need to know the line
8929 height. */
8930 int max_ascent = it->max_ascent;
8931 int max_descent = it->max_descent;
8933 RESTORE_IT (it, &it_backup, backup_data);
8934 it->max_ascent = max_ascent;
8935 it->max_descent = max_descent;
8936 reached = 6;
8938 else
8940 skip = skip2;
8941 if (skip == MOVE_POS_MATCH_OR_ZV)
8942 reached = 7;
8945 else
8947 /* Check whether TO_Y is in this line. */
8948 line_height = it->max_ascent + it->max_descent;
8949 TRACE_MOVE ((stderr, "move_it: line_height = %d\n", line_height));
8951 if (to_y >= it->current_y
8952 && to_y < it->current_y + line_height)
8954 /* When word-wrap is on, TO_X may lie past the end
8955 of a wrapped line. Then it->current is the
8956 character on the next line, so backtrack to the
8957 space before the wrap point. */
8958 if (skip == MOVE_LINE_CONTINUED
8959 && it->line_wrap == WORD_WRAP)
8961 int prev_x = max (it->current_x - 1, 0);
8962 RESTORE_IT (it, &it_backup, backup_data);
8963 skip = move_it_in_display_line_to
8964 (it, -1, prev_x, MOVE_TO_X);
8966 reached = 6;
8970 if (reached)
8971 break;
8973 else if (BUFFERP (it->object)
8974 && (it->method == GET_FROM_BUFFER
8975 || it->method == GET_FROM_STRETCH)
8976 && IT_CHARPOS (*it) >= to_charpos
8977 /* Under bidi iteration, a call to set_iterator_to_next
8978 can scan far beyond to_charpos if the initial
8979 portion of the next line needs to be reordered. In
8980 that case, give move_it_in_display_line_to another
8981 chance below. */
8982 && !(it->bidi_p
8983 && it->bidi_it.scan_dir == -1))
8984 skip = MOVE_POS_MATCH_OR_ZV;
8985 else
8986 skip = move_it_in_display_line_to (it, to_charpos, -1, MOVE_TO_POS);
8988 switch (skip)
8990 case MOVE_POS_MATCH_OR_ZV:
8991 reached = 8;
8992 goto out;
8994 case MOVE_NEWLINE_OR_CR:
8995 set_iterator_to_next (it, 1);
8996 it->continuation_lines_width = 0;
8997 break;
8999 case MOVE_LINE_TRUNCATED:
9000 it->continuation_lines_width = 0;
9001 reseat_at_next_visible_line_start (it, 0);
9002 if ((op & MOVE_TO_POS) != 0
9003 && IT_CHARPOS (*it) > to_charpos)
9005 reached = 9;
9006 goto out;
9008 break;
9010 case MOVE_LINE_CONTINUED:
9011 /* For continued lines ending in a tab, some of the glyphs
9012 associated with the tab are displayed on the current
9013 line. Since it->current_x does not include these glyphs,
9014 we use it->last_visible_x instead. */
9015 if (it->c == '\t')
9017 it->continuation_lines_width += it->last_visible_x;
9018 /* When moving by vpos, ensure that the iterator really
9019 advances to the next line (bug#847, bug#969). Fixme:
9020 do we need to do this in other circumstances? */
9021 if (it->current_x != it->last_visible_x
9022 && (op & MOVE_TO_VPOS)
9023 && !(op & (MOVE_TO_X | MOVE_TO_POS)))
9025 line_start_x = it->current_x + it->pixel_width
9026 - it->last_visible_x;
9027 set_iterator_to_next (it, 0);
9030 else
9031 it->continuation_lines_width += it->current_x;
9032 break;
9034 default:
9035 emacs_abort ();
9038 /* Reset/increment for the next run. */
9039 recenter_overlay_lists (current_buffer, IT_CHARPOS (*it));
9040 it->current_x = line_start_x;
9041 line_start_x = 0;
9042 it->hpos = 0;
9043 it->current_y += it->max_ascent + it->max_descent;
9044 ++it->vpos;
9045 last_height = it->max_ascent + it->max_descent;
9046 it->max_ascent = it->max_descent = 0;
9049 out:
9051 /* On text terminals, we may stop at the end of a line in the middle
9052 of a multi-character glyph. If the glyph itself is continued,
9053 i.e. it is actually displayed on the next line, don't treat this
9054 stopping point as valid; move to the next line instead (unless
9055 that brings us offscreen). */
9056 if (!FRAME_WINDOW_P (it->f)
9057 && op & MOVE_TO_POS
9058 && IT_CHARPOS (*it) == to_charpos
9059 && it->what == IT_CHARACTER
9060 && it->nglyphs > 1
9061 && it->line_wrap == WINDOW_WRAP
9062 && it->current_x == it->last_visible_x - 1
9063 && it->c != '\n'
9064 && it->c != '\t'
9065 && it->vpos < it->w->window_end_vpos)
9067 it->continuation_lines_width += it->current_x;
9068 it->current_x = it->hpos = it->max_ascent = it->max_descent = 0;
9069 it->current_y += it->max_ascent + it->max_descent;
9070 ++it->vpos;
9071 last_height = it->max_ascent + it->max_descent;
9074 if (backup_data)
9075 bidi_unshelve_cache (backup_data, 1);
9077 TRACE_MOVE ((stderr, "move_it_to: reached %d\n", reached));
9081 /* Move iterator IT backward by a specified y-distance DY, DY >= 0.
9083 If DY > 0, move IT backward at least that many pixels. DY = 0
9084 means move IT backward to the preceding line start or BEGV. This
9085 function may move over more than DY pixels if IT->current_y - DY
9086 ends up in the middle of a line; in this case IT->current_y will be
9087 set to the top of the line moved to. */
9089 void
9090 move_it_vertically_backward (struct it *it, int dy)
9092 int nlines, h;
9093 struct it it2, it3;
9094 void *it2data = NULL, *it3data = NULL;
9095 ptrdiff_t start_pos;
9096 int nchars_per_row
9097 = (it->last_visible_x - it->first_visible_x) / FRAME_COLUMN_WIDTH (it->f);
9098 ptrdiff_t pos_limit;
9100 move_further_back:
9101 eassert (dy >= 0);
9103 start_pos = IT_CHARPOS (*it);
9105 /* Estimate how many newlines we must move back. */
9106 nlines = max (1, dy / default_line_pixel_height (it->w));
9107 if (it->line_wrap == TRUNCATE)
9108 pos_limit = BEGV;
9109 else
9110 pos_limit = max (start_pos - nlines * nchars_per_row, BEGV);
9112 /* Set the iterator's position that many lines back. But don't go
9113 back more than NLINES full screen lines -- this wins a day with
9114 buffers which have very long lines. */
9115 while (nlines-- && IT_CHARPOS (*it) > pos_limit)
9116 back_to_previous_visible_line_start (it);
9118 /* Reseat the iterator here. When moving backward, we don't want
9119 reseat to skip forward over invisible text, set up the iterator
9120 to deliver from overlay strings at the new position etc. So,
9121 use reseat_1 here. */
9122 reseat_1 (it, it->current.pos, 1);
9124 /* We are now surely at a line start. */
9125 it->current_x = it->hpos = 0; /* FIXME: this is incorrect when bidi
9126 reordering is in effect. */
9127 it->continuation_lines_width = 0;
9129 /* Move forward and see what y-distance we moved. First move to the
9130 start of the next line so that we get its height. We need this
9131 height to be able to tell whether we reached the specified
9132 y-distance. */
9133 SAVE_IT (it2, *it, it2data);
9134 it2.max_ascent = it2.max_descent = 0;
9137 move_it_to (&it2, start_pos, -1, -1, it2.vpos + 1,
9138 MOVE_TO_POS | MOVE_TO_VPOS);
9140 while (!(IT_POS_VALID_AFTER_MOVE_P (&it2)
9141 /* If we are in a display string which starts at START_POS,
9142 and that display string includes a newline, and we are
9143 right after that newline (i.e. at the beginning of a
9144 display line), exit the loop, because otherwise we will
9145 infloop, since move_it_to will see that it is already at
9146 START_POS and will not move. */
9147 || (it2.method == GET_FROM_STRING
9148 && IT_CHARPOS (it2) == start_pos
9149 && SREF (it2.string, IT_STRING_BYTEPOS (it2) - 1) == '\n')));
9150 eassert (IT_CHARPOS (*it) >= BEGV);
9151 SAVE_IT (it3, it2, it3data);
9153 move_it_to (&it2, start_pos, -1, -1, -1, MOVE_TO_POS);
9154 eassert (IT_CHARPOS (*it) >= BEGV);
9155 /* H is the actual vertical distance from the position in *IT
9156 and the starting position. */
9157 h = it2.current_y - it->current_y;
9158 /* NLINES is the distance in number of lines. */
9159 nlines = it2.vpos - it->vpos;
9161 /* Correct IT's y and vpos position
9162 so that they are relative to the starting point. */
9163 it->vpos -= nlines;
9164 it->current_y -= h;
9166 if (dy == 0)
9168 /* DY == 0 means move to the start of the screen line. The
9169 value of nlines is > 0 if continuation lines were involved,
9170 or if the original IT position was at start of a line. */
9171 RESTORE_IT (it, it, it2data);
9172 if (nlines > 0)
9173 move_it_by_lines (it, nlines);
9174 /* The above code moves us to some position NLINES down,
9175 usually to its first glyph (leftmost in an L2R line), but
9176 that's not necessarily the start of the line, under bidi
9177 reordering. We want to get to the character position
9178 that is immediately after the newline of the previous
9179 line. */
9180 if (it->bidi_p
9181 && !it->continuation_lines_width
9182 && !STRINGP (it->string)
9183 && IT_CHARPOS (*it) > BEGV
9184 && FETCH_BYTE (IT_BYTEPOS (*it) - 1) != '\n')
9186 ptrdiff_t cp = IT_CHARPOS (*it), bp = IT_BYTEPOS (*it);
9188 DEC_BOTH (cp, bp);
9189 cp = find_newline_no_quit (cp, bp, -1, NULL);
9190 move_it_to (it, cp, -1, -1, -1, MOVE_TO_POS);
9192 bidi_unshelve_cache (it3data, 1);
9194 else
9196 /* The y-position we try to reach, relative to *IT.
9197 Note that H has been subtracted in front of the if-statement. */
9198 int target_y = it->current_y + h - dy;
9199 int y0 = it3.current_y;
9200 int y1;
9201 int line_height;
9203 RESTORE_IT (&it3, &it3, it3data);
9204 y1 = line_bottom_y (&it3);
9205 line_height = y1 - y0;
9206 RESTORE_IT (it, it, it2data);
9207 /* If we did not reach target_y, try to move further backward if
9208 we can. If we moved too far backward, try to move forward. */
9209 if (target_y < it->current_y
9210 /* This is heuristic. In a window that's 3 lines high, with
9211 a line height of 13 pixels each, recentering with point
9212 on the bottom line will try to move -39/2 = 19 pixels
9213 backward. Try to avoid moving into the first line. */
9214 && (it->current_y - target_y
9215 > min (window_box_height (it->w), line_height * 2 / 3))
9216 && IT_CHARPOS (*it) > BEGV)
9218 TRACE_MOVE ((stderr, " not far enough -> move_vert %d\n",
9219 target_y - it->current_y));
9220 dy = it->current_y - target_y;
9221 goto move_further_back;
9223 else if (target_y >= it->current_y + line_height
9224 && IT_CHARPOS (*it) < ZV)
9226 /* Should move forward by at least one line, maybe more.
9228 Note: Calling move_it_by_lines can be expensive on
9229 terminal frames, where compute_motion is used (via
9230 vmotion) to do the job, when there are very long lines
9231 and truncate-lines is nil. That's the reason for
9232 treating terminal frames specially here. */
9234 if (!FRAME_WINDOW_P (it->f))
9235 move_it_vertically (it, target_y - (it->current_y + line_height));
9236 else
9240 move_it_by_lines (it, 1);
9242 while (target_y >= line_bottom_y (it) && IT_CHARPOS (*it) < ZV);
9249 /* Move IT by a specified amount of pixel lines DY. DY negative means
9250 move backwards. DY = 0 means move to start of screen line. At the
9251 end, IT will be on the start of a screen line. */
9253 void
9254 move_it_vertically (struct it *it, int dy)
9256 if (dy <= 0)
9257 move_it_vertically_backward (it, -dy);
9258 else
9260 TRACE_MOVE ((stderr, "move_it_v: from %d, %d\n", IT_CHARPOS (*it), dy));
9261 move_it_to (it, ZV, -1, it->current_y + dy, -1,
9262 MOVE_TO_POS | MOVE_TO_Y);
9263 TRACE_MOVE ((stderr, "move_it_v: to %d\n", IT_CHARPOS (*it)));
9265 /* If buffer ends in ZV without a newline, move to the start of
9266 the line to satisfy the post-condition. */
9267 if (IT_CHARPOS (*it) == ZV
9268 && ZV > BEGV
9269 && FETCH_BYTE (IT_BYTEPOS (*it) - 1) != '\n')
9270 move_it_by_lines (it, 0);
9275 /* Move iterator IT past the end of the text line it is in. */
9277 void
9278 move_it_past_eol (struct it *it)
9280 enum move_it_result rc;
9282 rc = move_it_in_display_line_to (it, Z, 0, MOVE_TO_POS);
9283 if (rc == MOVE_NEWLINE_OR_CR)
9284 set_iterator_to_next (it, 0);
9288 /* Move IT by a specified number DVPOS of screen lines down. DVPOS
9289 negative means move up. DVPOS == 0 means move to the start of the
9290 screen line.
9292 Optimization idea: If we would know that IT->f doesn't use
9293 a face with proportional font, we could be faster for
9294 truncate-lines nil. */
9296 void
9297 move_it_by_lines (struct it *it, ptrdiff_t dvpos)
9300 /* The commented-out optimization uses vmotion on terminals. This
9301 gives bad results, because elements like it->what, on which
9302 callers such as pos_visible_p rely, aren't updated. */
9303 /* struct position pos;
9304 if (!FRAME_WINDOW_P (it->f))
9306 struct text_pos textpos;
9308 pos = *vmotion (IT_CHARPOS (*it), dvpos, it->w);
9309 SET_TEXT_POS (textpos, pos.bufpos, pos.bytepos);
9310 reseat (it, textpos, 1);
9311 it->vpos += pos.vpos;
9312 it->current_y += pos.vpos;
9314 else */
9316 if (dvpos == 0)
9318 /* DVPOS == 0 means move to the start of the screen line. */
9319 move_it_vertically_backward (it, 0);
9320 /* Let next call to line_bottom_y calculate real line height */
9321 last_height = 0;
9323 else if (dvpos > 0)
9325 move_it_to (it, -1, -1, -1, it->vpos + dvpos, MOVE_TO_VPOS);
9326 if (!IT_POS_VALID_AFTER_MOVE_P (it))
9328 /* Only move to the next buffer position if we ended up in a
9329 string from display property, not in an overlay string
9330 (before-string or after-string). That is because the
9331 latter don't conceal the underlying buffer position, so
9332 we can ask to move the iterator to the exact position we
9333 are interested in. Note that, even if we are already at
9334 IT_CHARPOS (*it), the call below is not a no-op, as it
9335 will detect that we are at the end of the string, pop the
9336 iterator, and compute it->current_x and it->hpos
9337 correctly. */
9338 move_it_to (it, IT_CHARPOS (*it) + it->string_from_display_prop_p,
9339 -1, -1, -1, MOVE_TO_POS);
9342 else
9344 struct it it2;
9345 void *it2data = NULL;
9346 ptrdiff_t start_charpos, i;
9347 int nchars_per_row
9348 = (it->last_visible_x - it->first_visible_x) / FRAME_COLUMN_WIDTH (it->f);
9349 ptrdiff_t pos_limit;
9351 /* Start at the beginning of the screen line containing IT's
9352 position. This may actually move vertically backwards,
9353 in case of overlays, so adjust dvpos accordingly. */
9354 dvpos += it->vpos;
9355 move_it_vertically_backward (it, 0);
9356 dvpos -= it->vpos;
9358 /* Go back -DVPOS buffer lines, but no farther than -DVPOS full
9359 screen lines, and reseat the iterator there. */
9360 start_charpos = IT_CHARPOS (*it);
9361 if (it->line_wrap == TRUNCATE)
9362 pos_limit = BEGV;
9363 else
9364 pos_limit = max (start_charpos + dvpos * nchars_per_row, BEGV);
9365 for (i = -dvpos; i > 0 && IT_CHARPOS (*it) > pos_limit; --i)
9366 back_to_previous_visible_line_start (it);
9367 reseat (it, it->current.pos, 1);
9369 /* Move further back if we end up in a string or an image. */
9370 while (!IT_POS_VALID_AFTER_MOVE_P (it))
9372 /* First try to move to start of display line. */
9373 dvpos += it->vpos;
9374 move_it_vertically_backward (it, 0);
9375 dvpos -= it->vpos;
9376 if (IT_POS_VALID_AFTER_MOVE_P (it))
9377 break;
9378 /* If start of line is still in string or image,
9379 move further back. */
9380 back_to_previous_visible_line_start (it);
9381 reseat (it, it->current.pos, 1);
9382 dvpos--;
9385 it->current_x = it->hpos = 0;
9387 /* Above call may have moved too far if continuation lines
9388 are involved. Scan forward and see if it did. */
9389 SAVE_IT (it2, *it, it2data);
9390 it2.vpos = it2.current_y = 0;
9391 move_it_to (&it2, start_charpos, -1, -1, -1, MOVE_TO_POS);
9392 it->vpos -= it2.vpos;
9393 it->current_y -= it2.current_y;
9394 it->current_x = it->hpos = 0;
9396 /* If we moved too far back, move IT some lines forward. */
9397 if (it2.vpos > -dvpos)
9399 int delta = it2.vpos + dvpos;
9401 RESTORE_IT (&it2, &it2, it2data);
9402 SAVE_IT (it2, *it, it2data);
9403 move_it_to (it, -1, -1, -1, it->vpos + delta, MOVE_TO_VPOS);
9404 /* Move back again if we got too far ahead. */
9405 if (IT_CHARPOS (*it) >= start_charpos)
9406 RESTORE_IT (it, &it2, it2data);
9407 else
9408 bidi_unshelve_cache (it2data, 1);
9410 else
9411 RESTORE_IT (it, it, it2data);
9415 /* Return 1 if IT points into the middle of a display vector. */
9418 in_display_vector_p (struct it *it)
9420 return (it->method == GET_FROM_DISPLAY_VECTOR
9421 && it->current.dpvec_index > 0
9422 && it->dpvec + it->current.dpvec_index != it->dpend);
9426 /***********************************************************************
9427 Messages
9428 ***********************************************************************/
9431 /* Add a message with format string FORMAT and arguments ARG1 and ARG2
9432 to *Messages*. */
9434 void
9435 add_to_log (const char *format, Lisp_Object arg1, Lisp_Object arg2)
9437 Lisp_Object args[3];
9438 Lisp_Object msg, fmt;
9439 char *buffer;
9440 ptrdiff_t len;
9441 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4;
9442 USE_SAFE_ALLOCA;
9444 fmt = msg = Qnil;
9445 GCPRO4 (fmt, msg, arg1, arg2);
9447 args[0] = fmt = build_string (format);
9448 args[1] = arg1;
9449 args[2] = arg2;
9450 msg = Fformat (3, args);
9452 len = SBYTES (msg) + 1;
9453 buffer = SAFE_ALLOCA (len);
9454 memcpy (buffer, SDATA (msg), len);
9456 message_dolog (buffer, len - 1, 1, 0);
9457 SAFE_FREE ();
9459 UNGCPRO;
9463 /* Output a newline in the *Messages* buffer if "needs" one. */
9465 void
9466 message_log_maybe_newline (void)
9468 if (message_log_need_newline)
9469 message_dolog ("", 0, 1, 0);
9473 /* Add a string M of length NBYTES to the message log, optionally
9474 terminated with a newline when NLFLAG is true. MULTIBYTE, if
9475 true, means interpret the contents of M as multibyte. This
9476 function calls low-level routines in order to bypass text property
9477 hooks, etc. which might not be safe to run.
9479 This may GC (insert may run before/after change hooks),
9480 so the buffer M must NOT point to a Lisp string. */
9482 void
9483 message_dolog (const char *m, ptrdiff_t nbytes, bool nlflag, bool multibyte)
9485 const unsigned char *msg = (const unsigned char *) m;
9487 if (!NILP (Vmemory_full))
9488 return;
9490 if (!NILP (Vmessage_log_max))
9492 struct buffer *oldbuf;
9493 Lisp_Object oldpoint, oldbegv, oldzv;
9494 int old_windows_or_buffers_changed = windows_or_buffers_changed;
9495 ptrdiff_t point_at_end = 0;
9496 ptrdiff_t zv_at_end = 0;
9497 Lisp_Object old_deactivate_mark;
9498 bool shown;
9499 struct gcpro gcpro1;
9501 old_deactivate_mark = Vdeactivate_mark;
9502 oldbuf = current_buffer;
9503 Fset_buffer (Fget_buffer_create (Vmessages_buffer_name));
9504 bset_undo_list (current_buffer, Qt);
9506 oldpoint = message_dolog_marker1;
9507 set_marker_restricted_both (oldpoint, Qnil, PT, PT_BYTE);
9508 oldbegv = message_dolog_marker2;
9509 set_marker_restricted_both (oldbegv, Qnil, BEGV, BEGV_BYTE);
9510 oldzv = message_dolog_marker3;
9511 set_marker_restricted_both (oldzv, Qnil, ZV, ZV_BYTE);
9512 GCPRO1 (old_deactivate_mark);
9514 if (PT == Z)
9515 point_at_end = 1;
9516 if (ZV == Z)
9517 zv_at_end = 1;
9519 BEGV = BEG;
9520 BEGV_BYTE = BEG_BYTE;
9521 ZV = Z;
9522 ZV_BYTE = Z_BYTE;
9523 TEMP_SET_PT_BOTH (Z, Z_BYTE);
9525 /* Insert the string--maybe converting multibyte to single byte
9526 or vice versa, so that all the text fits the buffer. */
9527 if (multibyte
9528 && NILP (BVAR (current_buffer, enable_multibyte_characters)))
9530 ptrdiff_t i;
9531 int c, char_bytes;
9532 char work[1];
9534 /* Convert a multibyte string to single-byte
9535 for the *Message* buffer. */
9536 for (i = 0; i < nbytes; i += char_bytes)
9538 c = string_char_and_length (msg + i, &char_bytes);
9539 work[0] = (ASCII_CHAR_P (c)
9541 : multibyte_char_to_unibyte (c));
9542 insert_1_both (work, 1, 1, 1, 0, 0);
9545 else if (! multibyte
9546 && ! NILP (BVAR (current_buffer, enable_multibyte_characters)))
9548 ptrdiff_t i;
9549 int c, char_bytes;
9550 unsigned char str[MAX_MULTIBYTE_LENGTH];
9551 /* Convert a single-byte string to multibyte
9552 for the *Message* buffer. */
9553 for (i = 0; i < nbytes; i++)
9555 c = msg[i];
9556 MAKE_CHAR_MULTIBYTE (c);
9557 char_bytes = CHAR_STRING (c, str);
9558 insert_1_both ((char *) str, 1, char_bytes, 1, 0, 0);
9561 else if (nbytes)
9562 insert_1_both (m, chars_in_text (msg, nbytes), nbytes, 1, 0, 0);
9564 if (nlflag)
9566 ptrdiff_t this_bol, this_bol_byte, prev_bol, prev_bol_byte;
9567 printmax_t dups;
9569 insert_1_both ("\n", 1, 1, 1, 0, 0);
9571 scan_newline (Z, Z_BYTE, BEG, BEG_BYTE, -2, 0);
9572 this_bol = PT;
9573 this_bol_byte = PT_BYTE;
9575 /* See if this line duplicates the previous one.
9576 If so, combine duplicates. */
9577 if (this_bol > BEG)
9579 scan_newline (PT, PT_BYTE, BEG, BEG_BYTE, -2, 0);
9580 prev_bol = PT;
9581 prev_bol_byte = PT_BYTE;
9583 dups = message_log_check_duplicate (prev_bol_byte,
9584 this_bol_byte);
9585 if (dups)
9587 del_range_both (prev_bol, prev_bol_byte,
9588 this_bol, this_bol_byte, 0);
9589 if (dups > 1)
9591 char dupstr[sizeof " [ times]"
9592 + INT_STRLEN_BOUND (printmax_t)];
9594 /* If you change this format, don't forget to also
9595 change message_log_check_duplicate. */
9596 int duplen = sprintf (dupstr, " [%"pMd" times]", dups);
9597 TEMP_SET_PT_BOTH (Z - 1, Z_BYTE - 1);
9598 insert_1_both (dupstr, duplen, duplen, 1, 0, 1);
9603 /* If we have more than the desired maximum number of lines
9604 in the *Messages* buffer now, delete the oldest ones.
9605 This is safe because we don't have undo in this buffer. */
9607 if (NATNUMP (Vmessage_log_max))
9609 scan_newline (Z, Z_BYTE, BEG, BEG_BYTE,
9610 -XFASTINT (Vmessage_log_max) - 1, 0);
9611 del_range_both (BEG, BEG_BYTE, PT, PT_BYTE, 0);
9614 BEGV = marker_position (oldbegv);
9615 BEGV_BYTE = marker_byte_position (oldbegv);
9617 if (zv_at_end)
9619 ZV = Z;
9620 ZV_BYTE = Z_BYTE;
9622 else
9624 ZV = marker_position (oldzv);
9625 ZV_BYTE = marker_byte_position (oldzv);
9628 if (point_at_end)
9629 TEMP_SET_PT_BOTH (Z, Z_BYTE);
9630 else
9631 /* We can't do Fgoto_char (oldpoint) because it will run some
9632 Lisp code. */
9633 TEMP_SET_PT_BOTH (marker_position (oldpoint),
9634 marker_byte_position (oldpoint));
9636 UNGCPRO;
9637 unchain_marker (XMARKER (oldpoint));
9638 unchain_marker (XMARKER (oldbegv));
9639 unchain_marker (XMARKER (oldzv));
9641 shown = buffer_window_count (current_buffer) > 0;
9642 set_buffer_internal (oldbuf);
9643 /* We called insert_1_both above with its 5th argument (PREPARE)
9644 zero, which prevents insert_1_both from calling
9645 prepare_to_modify_buffer, which in turns prevents us from
9646 incrementing windows_or_buffers_changed even if *Messages* is
9647 shown in some window. So we must manually incrementing
9648 windows_or_buffers_changed here to make up for that. */
9649 if (shown)
9650 windows_or_buffers_changed++;
9651 else
9652 windows_or_buffers_changed = old_windows_or_buffers_changed;
9653 message_log_need_newline = !nlflag;
9654 Vdeactivate_mark = old_deactivate_mark;
9659 /* We are at the end of the buffer after just having inserted a newline.
9660 (Note: We depend on the fact we won't be crossing the gap.)
9661 Check to see if the most recent message looks a lot like the previous one.
9662 Return 0 if different, 1 if the new one should just replace it, or a
9663 value N > 1 if we should also append " [N times]". */
9665 static intmax_t
9666 message_log_check_duplicate (ptrdiff_t prev_bol_byte, ptrdiff_t this_bol_byte)
9668 ptrdiff_t i;
9669 ptrdiff_t len = Z_BYTE - 1 - this_bol_byte;
9670 int seen_dots = 0;
9671 unsigned char *p1 = BUF_BYTE_ADDRESS (current_buffer, prev_bol_byte);
9672 unsigned char *p2 = BUF_BYTE_ADDRESS (current_buffer, this_bol_byte);
9674 for (i = 0; i < len; i++)
9676 if (i >= 3 && p1[i - 3] == '.' && p1[i - 2] == '.' && p1[i - 1] == '.')
9677 seen_dots = 1;
9678 if (p1[i] != p2[i])
9679 return seen_dots;
9681 p1 += len;
9682 if (*p1 == '\n')
9683 return 2;
9684 if (*p1++ == ' ' && *p1++ == '[')
9686 char *pend;
9687 intmax_t n = strtoimax ((char *) p1, &pend, 10);
9688 if (0 < n && n < INTMAX_MAX && strncmp (pend, " times]\n", 8) == 0)
9689 return n + 1;
9691 return 0;
9695 /* Display an echo area message M with a specified length of NBYTES
9696 bytes. The string may include null characters. If M is not a
9697 string, clear out any existing message, and let the mini-buffer
9698 text show through.
9700 This function cancels echoing. */
9702 void
9703 message3 (Lisp_Object m)
9705 struct gcpro gcpro1;
9707 GCPRO1 (m);
9708 clear_message (1,1);
9709 cancel_echoing ();
9711 /* First flush out any partial line written with print. */
9712 message_log_maybe_newline ();
9713 if (STRINGP (m))
9715 ptrdiff_t nbytes = SBYTES (m);
9716 bool multibyte = STRING_MULTIBYTE (m);
9717 USE_SAFE_ALLOCA;
9718 char *buffer = SAFE_ALLOCA (nbytes);
9719 memcpy (buffer, SDATA (m), nbytes);
9720 message_dolog (buffer, nbytes, 1, multibyte);
9721 SAFE_FREE ();
9723 message3_nolog (m);
9725 UNGCPRO;
9729 /* The non-logging version of message3.
9730 This does not cancel echoing, because it is used for echoing.
9731 Perhaps we need to make a separate function for echoing
9732 and make this cancel echoing. */
9734 void
9735 message3_nolog (Lisp_Object m)
9737 struct frame *sf = SELECTED_FRAME ();
9739 if (FRAME_INITIAL_P (sf))
9741 if (noninteractive_need_newline)
9742 putc ('\n', stderr);
9743 noninteractive_need_newline = 0;
9744 if (STRINGP (m))
9745 fwrite (SDATA (m), SBYTES (m), 1, stderr);
9746 if (cursor_in_echo_area == 0)
9747 fprintf (stderr, "\n");
9748 fflush (stderr);
9750 /* Error messages get reported properly by cmd_error, so this must be just an
9751 informative message; if the frame hasn't really been initialized yet, just
9752 toss it. */
9753 else if (INTERACTIVE && sf->glyphs_initialized_p)
9755 /* Get the frame containing the mini-buffer
9756 that the selected frame is using. */
9757 Lisp_Object mini_window = FRAME_MINIBUF_WINDOW (sf);
9758 Lisp_Object frame = XWINDOW (mini_window)->frame;
9759 struct frame *f = XFRAME (frame);
9761 if (FRAME_VISIBLE_P (sf) && !FRAME_VISIBLE_P (f))
9762 Fmake_frame_visible (frame);
9764 if (STRINGP (m) && SCHARS (m) > 0)
9766 set_message (m);
9767 if (minibuffer_auto_raise)
9768 Fraise_frame (frame);
9769 /* Assume we are not echoing.
9770 (If we are, echo_now will override this.) */
9771 echo_message_buffer = Qnil;
9773 else
9774 clear_message (1, 1);
9776 do_pending_window_change (0);
9777 echo_area_display (1);
9778 do_pending_window_change (0);
9779 if (FRAME_TERMINAL (f)->frame_up_to_date_hook)
9780 (*FRAME_TERMINAL (f)->frame_up_to_date_hook) (f);
9785 /* Display a null-terminated echo area message M. If M is 0, clear
9786 out any existing message, and let the mini-buffer text show through.
9788 The buffer M must continue to exist until after the echo area gets
9789 cleared or some other message gets displayed there. Do not pass
9790 text that is stored in a Lisp string. Do not pass text in a buffer
9791 that was alloca'd. */
9793 void
9794 message1 (const char *m)
9796 message3 (m ? build_unibyte_string (m) : Qnil);
9800 /* The non-logging counterpart of message1. */
9802 void
9803 message1_nolog (const char *m)
9805 message3_nolog (m ? build_unibyte_string (m) : Qnil);
9808 /* Display a message M which contains a single %s
9809 which gets replaced with STRING. */
9811 void
9812 message_with_string (const char *m, Lisp_Object string, int log)
9814 CHECK_STRING (string);
9816 if (noninteractive)
9818 if (m)
9820 if (noninteractive_need_newline)
9821 putc ('\n', stderr);
9822 noninteractive_need_newline = 0;
9823 fprintf (stderr, m, SDATA (string));
9824 if (!cursor_in_echo_area)
9825 fprintf (stderr, "\n");
9826 fflush (stderr);
9829 else if (INTERACTIVE)
9831 /* The frame whose minibuffer we're going to display the message on.
9832 It may be larger than the selected frame, so we need
9833 to use its buffer, not the selected frame's buffer. */
9834 Lisp_Object mini_window;
9835 struct frame *f, *sf = SELECTED_FRAME ();
9837 /* Get the frame containing the minibuffer
9838 that the selected frame is using. */
9839 mini_window = FRAME_MINIBUF_WINDOW (sf);
9840 f = XFRAME (WINDOW_FRAME (XWINDOW (mini_window)));
9842 /* Error messages get reported properly by cmd_error, so this must be
9843 just an informative message; if the frame hasn't really been
9844 initialized yet, just toss it. */
9845 if (f->glyphs_initialized_p)
9847 Lisp_Object args[2], msg;
9848 struct gcpro gcpro1, gcpro2;
9850 args[0] = build_string (m);
9851 args[1] = msg = string;
9852 GCPRO2 (args[0], msg);
9853 gcpro1.nvars = 2;
9855 msg = Fformat (2, args);
9857 if (log)
9858 message3 (msg);
9859 else
9860 message3_nolog (msg);
9862 UNGCPRO;
9864 /* Print should start at the beginning of the message
9865 buffer next time. */
9866 message_buf_print = 0;
9872 /* Dump an informative message to the minibuf. If M is 0, clear out
9873 any existing message, and let the mini-buffer text show through. */
9875 static void
9876 vmessage (const char *m, va_list ap)
9878 if (noninteractive)
9880 if (m)
9882 if (noninteractive_need_newline)
9883 putc ('\n', stderr);
9884 noninteractive_need_newline = 0;
9885 vfprintf (stderr, m, ap);
9886 if (cursor_in_echo_area == 0)
9887 fprintf (stderr, "\n");
9888 fflush (stderr);
9891 else if (INTERACTIVE)
9893 /* The frame whose mini-buffer we're going to display the message
9894 on. It may be larger than the selected frame, so we need to
9895 use its buffer, not the selected frame's buffer. */
9896 Lisp_Object mini_window;
9897 struct frame *f, *sf = SELECTED_FRAME ();
9899 /* Get the frame containing the mini-buffer
9900 that the selected frame is using. */
9901 mini_window = FRAME_MINIBUF_WINDOW (sf);
9902 f = XFRAME (WINDOW_FRAME (XWINDOW (mini_window)));
9904 /* Error messages get reported properly by cmd_error, so this must be
9905 just an informative message; if the frame hasn't really been
9906 initialized yet, just toss it. */
9907 if (f->glyphs_initialized_p)
9909 if (m)
9911 ptrdiff_t len;
9912 ptrdiff_t maxsize = FRAME_MESSAGE_BUF_SIZE (f);
9913 char *message_buf = alloca (maxsize + 1);
9915 len = doprnt (message_buf, maxsize, m, 0, ap);
9917 message3 (make_string (message_buf, len));
9919 else
9920 message1 (0);
9922 /* Print should start at the beginning of the message
9923 buffer next time. */
9924 message_buf_print = 0;
9929 void
9930 message (const char *m, ...)
9932 va_list ap;
9933 va_start (ap, m);
9934 vmessage (m, ap);
9935 va_end (ap);
9939 #if 0
9940 /* The non-logging version of message. */
9942 void
9943 message_nolog (const char *m, ...)
9945 Lisp_Object old_log_max;
9946 va_list ap;
9947 va_start (ap, m);
9948 old_log_max = Vmessage_log_max;
9949 Vmessage_log_max = Qnil;
9950 vmessage (m, ap);
9951 Vmessage_log_max = old_log_max;
9952 va_end (ap);
9954 #endif
9957 /* Display the current message in the current mini-buffer. This is
9958 only called from error handlers in process.c, and is not time
9959 critical. */
9961 void
9962 update_echo_area (void)
9964 if (!NILP (echo_area_buffer[0]))
9966 Lisp_Object string;
9967 string = Fcurrent_message ();
9968 message3 (string);
9973 /* Make sure echo area buffers in `echo_buffers' are live.
9974 If they aren't, make new ones. */
9976 static void
9977 ensure_echo_area_buffers (void)
9979 int i;
9981 for (i = 0; i < 2; ++i)
9982 if (!BUFFERP (echo_buffer[i])
9983 || !BUFFER_LIVE_P (XBUFFER (echo_buffer[i])))
9985 char name[30];
9986 Lisp_Object old_buffer;
9987 int j;
9989 old_buffer = echo_buffer[i];
9990 echo_buffer[i] = Fget_buffer_create
9991 (make_formatted_string (name, " *Echo Area %d*", i));
9992 bset_truncate_lines (XBUFFER (echo_buffer[i]), Qnil);
9993 /* to force word wrap in echo area -
9994 it was decided to postpone this*/
9995 /* XBUFFER (echo_buffer[i])->word_wrap = Qt; */
9997 for (j = 0; j < 2; ++j)
9998 if (EQ (old_buffer, echo_area_buffer[j]))
9999 echo_area_buffer[j] = echo_buffer[i];
10004 /* Call FN with args A1..A2 with either the current or last displayed
10005 echo_area_buffer as current buffer.
10007 WHICH zero means use the current message buffer
10008 echo_area_buffer[0]. If that is nil, choose a suitable buffer
10009 from echo_buffer[] and clear it.
10011 WHICH > 0 means use echo_area_buffer[1]. If that is nil, choose a
10012 suitable buffer from echo_buffer[] and clear it.
10014 If WHICH < 0, set echo_area_buffer[1] to echo_area_buffer[0], so
10015 that the current message becomes the last displayed one, make
10016 choose a suitable buffer for echo_area_buffer[0], and clear it.
10018 Value is what FN returns. */
10020 static int
10021 with_echo_area_buffer (struct window *w, int which,
10022 int (*fn) (ptrdiff_t, Lisp_Object),
10023 ptrdiff_t a1, Lisp_Object a2)
10025 Lisp_Object buffer;
10026 int this_one, the_other, clear_buffer_p, rc;
10027 ptrdiff_t count = SPECPDL_INDEX ();
10029 /* If buffers aren't live, make new ones. */
10030 ensure_echo_area_buffers ();
10032 clear_buffer_p = 0;
10034 if (which == 0)
10035 this_one = 0, the_other = 1;
10036 else if (which > 0)
10037 this_one = 1, the_other = 0;
10038 else
10040 this_one = 0, the_other = 1;
10041 clear_buffer_p = 1;
10043 /* We need a fresh one in case the current echo buffer equals
10044 the one containing the last displayed echo area message. */
10045 if (!NILP (echo_area_buffer[this_one])
10046 && EQ (echo_area_buffer[this_one], echo_area_buffer[the_other]))
10047 echo_area_buffer[this_one] = Qnil;
10050 /* Choose a suitable buffer from echo_buffer[] is we don't
10051 have one. */
10052 if (NILP (echo_area_buffer[this_one]))
10054 echo_area_buffer[this_one]
10055 = (EQ (echo_area_buffer[the_other], echo_buffer[this_one])
10056 ? echo_buffer[the_other]
10057 : echo_buffer[this_one]);
10058 clear_buffer_p = 1;
10061 buffer = echo_area_buffer[this_one];
10063 /* Don't get confused by reusing the buffer used for echoing
10064 for a different purpose. */
10065 if (echo_kboard == NULL && EQ (buffer, echo_message_buffer))
10066 cancel_echoing ();
10068 record_unwind_protect (unwind_with_echo_area_buffer,
10069 with_echo_area_buffer_unwind_data (w));
10071 /* Make the echo area buffer current. Note that for display
10072 purposes, it is not necessary that the displayed window's buffer
10073 == current_buffer, except for text property lookup. So, let's
10074 only set that buffer temporarily here without doing a full
10075 Fset_window_buffer. We must also change w->pointm, though,
10076 because otherwise an assertions in unshow_buffer fails, and Emacs
10077 aborts. */
10078 set_buffer_internal_1 (XBUFFER (buffer));
10079 if (w)
10081 wset_buffer (w, buffer);
10082 set_marker_both (w->pointm, buffer, BEG, BEG_BYTE);
10085 bset_undo_list (current_buffer, Qt);
10086 bset_read_only (current_buffer, Qnil);
10087 specbind (Qinhibit_read_only, Qt);
10088 specbind (Qinhibit_modification_hooks, Qt);
10090 if (clear_buffer_p && Z > BEG)
10091 del_range (BEG, Z);
10093 eassert (BEGV >= BEG);
10094 eassert (ZV <= Z && ZV >= BEGV);
10096 rc = fn (a1, a2);
10098 eassert (BEGV >= BEG);
10099 eassert (ZV <= Z && ZV >= BEGV);
10101 unbind_to (count, Qnil);
10102 return rc;
10106 /* Save state that should be preserved around the call to the function
10107 FN called in with_echo_area_buffer. */
10109 static Lisp_Object
10110 with_echo_area_buffer_unwind_data (struct window *w)
10112 int i = 0;
10113 Lisp_Object vector, tmp;
10115 /* Reduce consing by keeping one vector in
10116 Vwith_echo_area_save_vector. */
10117 vector = Vwith_echo_area_save_vector;
10118 Vwith_echo_area_save_vector = Qnil;
10120 if (NILP (vector))
10121 vector = Fmake_vector (make_number (9), Qnil);
10123 XSETBUFFER (tmp, current_buffer); ASET (vector, i, tmp); ++i;
10124 ASET (vector, i, Vdeactivate_mark); ++i;
10125 ASET (vector, i, make_number (windows_or_buffers_changed)); ++i;
10127 if (w)
10129 XSETWINDOW (tmp, w); ASET (vector, i, tmp); ++i;
10130 ASET (vector, i, w->contents); ++i;
10131 ASET (vector, i, make_number (marker_position (w->pointm))); ++i;
10132 ASET (vector, i, make_number (marker_byte_position (w->pointm))); ++i;
10133 ASET (vector, i, make_number (marker_position (w->start))); ++i;
10134 ASET (vector, i, make_number (marker_byte_position (w->start))); ++i;
10136 else
10138 int end = i + 6;
10139 for (; i < end; ++i)
10140 ASET (vector, i, Qnil);
10143 eassert (i == ASIZE (vector));
10144 return vector;
10148 /* Restore global state from VECTOR which was created by
10149 with_echo_area_buffer_unwind_data. */
10151 static void
10152 unwind_with_echo_area_buffer (Lisp_Object vector)
10154 set_buffer_internal_1 (XBUFFER (AREF (vector, 0)));
10155 Vdeactivate_mark = AREF (vector, 1);
10156 windows_or_buffers_changed = XFASTINT (AREF (vector, 2));
10158 if (WINDOWP (AREF (vector, 3)))
10160 struct window *w;
10161 Lisp_Object buffer;
10163 w = XWINDOW (AREF (vector, 3));
10164 buffer = AREF (vector, 4);
10166 wset_buffer (w, buffer);
10167 set_marker_both (w->pointm, buffer,
10168 XFASTINT (AREF (vector, 5)),
10169 XFASTINT (AREF (vector, 6)));
10170 set_marker_both (w->start, buffer,
10171 XFASTINT (AREF (vector, 7)),
10172 XFASTINT (AREF (vector, 8)));
10175 Vwith_echo_area_save_vector = vector;
10179 /* Set up the echo area for use by print functions. MULTIBYTE_P
10180 non-zero means we will print multibyte. */
10182 void
10183 setup_echo_area_for_printing (int multibyte_p)
10185 /* If we can't find an echo area any more, exit. */
10186 if (! FRAME_LIVE_P (XFRAME (selected_frame)))
10187 Fkill_emacs (Qnil);
10189 ensure_echo_area_buffers ();
10191 if (!message_buf_print)
10193 /* A message has been output since the last time we printed.
10194 Choose a fresh echo area buffer. */
10195 if (EQ (echo_area_buffer[1], echo_buffer[0]))
10196 echo_area_buffer[0] = echo_buffer[1];
10197 else
10198 echo_area_buffer[0] = echo_buffer[0];
10200 /* Switch to that buffer and clear it. */
10201 set_buffer_internal (XBUFFER (echo_area_buffer[0]));
10202 bset_truncate_lines (current_buffer, Qnil);
10204 if (Z > BEG)
10206 ptrdiff_t count = SPECPDL_INDEX ();
10207 specbind (Qinhibit_read_only, Qt);
10208 /* Note that undo recording is always disabled. */
10209 del_range (BEG, Z);
10210 unbind_to (count, Qnil);
10212 TEMP_SET_PT_BOTH (BEG, BEG_BYTE);
10214 /* Set up the buffer for the multibyteness we need. */
10215 if (multibyte_p
10216 != !NILP (BVAR (current_buffer, enable_multibyte_characters)))
10217 Fset_buffer_multibyte (multibyte_p ? Qt : Qnil);
10219 /* Raise the frame containing the echo area. */
10220 if (minibuffer_auto_raise)
10222 struct frame *sf = SELECTED_FRAME ();
10223 Lisp_Object mini_window;
10224 mini_window = FRAME_MINIBUF_WINDOW (sf);
10225 Fraise_frame (WINDOW_FRAME (XWINDOW (mini_window)));
10228 message_log_maybe_newline ();
10229 message_buf_print = 1;
10231 else
10233 if (NILP (echo_area_buffer[0]))
10235 if (EQ (echo_area_buffer[1], echo_buffer[0]))
10236 echo_area_buffer[0] = echo_buffer[1];
10237 else
10238 echo_area_buffer[0] = echo_buffer[0];
10241 if (current_buffer != XBUFFER (echo_area_buffer[0]))
10243 /* Someone switched buffers between print requests. */
10244 set_buffer_internal (XBUFFER (echo_area_buffer[0]));
10245 bset_truncate_lines (current_buffer, Qnil);
10251 /* Display an echo area message in window W. Value is non-zero if W's
10252 height is changed. If display_last_displayed_message_p is
10253 non-zero, display the message that was last displayed, otherwise
10254 display the current message. */
10256 static int
10257 display_echo_area (struct window *w)
10259 int i, no_message_p, window_height_changed_p;
10261 /* Temporarily disable garbage collections while displaying the echo
10262 area. This is done because a GC can print a message itself.
10263 That message would modify the echo area buffer's contents while a
10264 redisplay of the buffer is going on, and seriously confuse
10265 redisplay. */
10266 ptrdiff_t count = inhibit_garbage_collection ();
10268 /* If there is no message, we must call display_echo_area_1
10269 nevertheless because it resizes the window. But we will have to
10270 reset the echo_area_buffer in question to nil at the end because
10271 with_echo_area_buffer will sets it to an empty buffer. */
10272 i = display_last_displayed_message_p ? 1 : 0;
10273 no_message_p = NILP (echo_area_buffer[i]);
10275 window_height_changed_p
10276 = with_echo_area_buffer (w, display_last_displayed_message_p,
10277 display_echo_area_1,
10278 (intptr_t) w, Qnil);
10280 if (no_message_p)
10281 echo_area_buffer[i] = Qnil;
10283 unbind_to (count, Qnil);
10284 return window_height_changed_p;
10288 /* Helper for display_echo_area. Display the current buffer which
10289 contains the current echo area message in window W, a mini-window,
10290 a pointer to which is passed in A1. A2..A4 are currently not used.
10291 Change the height of W so that all of the message is displayed.
10292 Value is non-zero if height of W was changed. */
10294 static int
10295 display_echo_area_1 (ptrdiff_t a1, Lisp_Object a2)
10297 intptr_t i1 = a1;
10298 struct window *w = (struct window *) i1;
10299 Lisp_Object window;
10300 struct text_pos start;
10301 int window_height_changed_p = 0;
10303 /* Do this before displaying, so that we have a large enough glyph
10304 matrix for the display. If we can't get enough space for the
10305 whole text, display the last N lines. That works by setting w->start. */
10306 window_height_changed_p = resize_mini_window (w, 0);
10308 /* Use the starting position chosen by resize_mini_window. */
10309 SET_TEXT_POS_FROM_MARKER (start, w->start);
10311 /* Display. */
10312 clear_glyph_matrix (w->desired_matrix);
10313 XSETWINDOW (window, w);
10314 try_window (window, start, 0);
10316 return window_height_changed_p;
10320 /* Resize the echo area window to exactly the size needed for the
10321 currently displayed message, if there is one. If a mini-buffer
10322 is active, don't shrink it. */
10324 void
10325 resize_echo_area_exactly (void)
10327 if (BUFFERP (echo_area_buffer[0])
10328 && WINDOWP (echo_area_window))
10330 struct window *w = XWINDOW (echo_area_window);
10331 int resized_p;
10332 Lisp_Object resize_exactly;
10334 if (minibuf_level == 0)
10335 resize_exactly = Qt;
10336 else
10337 resize_exactly = Qnil;
10339 resized_p = with_echo_area_buffer (w, 0, resize_mini_window_1,
10340 (intptr_t) w, resize_exactly);
10341 if (resized_p)
10343 ++windows_or_buffers_changed;
10344 ++update_mode_lines;
10345 redisplay_internal ();
10351 /* Callback function for with_echo_area_buffer, when used from
10352 resize_echo_area_exactly. A1 contains a pointer to the window to
10353 resize, EXACTLY non-nil means resize the mini-window exactly to the
10354 size of the text displayed. A3 and A4 are not used. Value is what
10355 resize_mini_window returns. */
10357 static int
10358 resize_mini_window_1 (ptrdiff_t a1, Lisp_Object exactly)
10360 intptr_t i1 = a1;
10361 return resize_mini_window ((struct window *) i1, !NILP (exactly));
10365 /* Resize mini-window W to fit the size of its contents. EXACT_P
10366 means size the window exactly to the size needed. Otherwise, it's
10367 only enlarged until W's buffer is empty.
10369 Set W->start to the right place to begin display. If the whole
10370 contents fit, start at the beginning. Otherwise, start so as
10371 to make the end of the contents appear. This is particularly
10372 important for y-or-n-p, but seems desirable generally.
10374 Value is non-zero if the window height has been changed. */
10377 resize_mini_window (struct window *w, int exact_p)
10379 struct frame *f = XFRAME (w->frame);
10380 int window_height_changed_p = 0;
10382 eassert (MINI_WINDOW_P (w));
10384 /* By default, start display at the beginning. */
10385 set_marker_both (w->start, w->contents,
10386 BUF_BEGV (XBUFFER (w->contents)),
10387 BUF_BEGV_BYTE (XBUFFER (w->contents)));
10389 /* Don't resize windows while redisplaying a window; it would
10390 confuse redisplay functions when the size of the window they are
10391 displaying changes from under them. Such a resizing can happen,
10392 for instance, when which-func prints a long message while
10393 we are running fontification-functions. We're running these
10394 functions with safe_call which binds inhibit-redisplay to t. */
10395 if (!NILP (Vinhibit_redisplay))
10396 return 0;
10398 /* Nil means don't try to resize. */
10399 if (NILP (Vresize_mini_windows)
10400 || (FRAME_X_P (f) && FRAME_X_OUTPUT (f) == NULL))
10401 return 0;
10403 if (!FRAME_MINIBUF_ONLY_P (f))
10405 struct it it;
10406 struct window *root = XWINDOW (FRAME_ROOT_WINDOW (f));
10407 int total_height = WINDOW_TOTAL_LINES (root) + WINDOW_TOTAL_LINES (w);
10408 int height;
10409 EMACS_INT max_height;
10410 int unit = FRAME_LINE_HEIGHT (f);
10411 struct text_pos start;
10412 struct buffer *old_current_buffer = NULL;
10414 if (current_buffer != XBUFFER (w->contents))
10416 old_current_buffer = current_buffer;
10417 set_buffer_internal (XBUFFER (w->contents));
10420 init_iterator (&it, w, BEGV, BEGV_BYTE, NULL, DEFAULT_FACE_ID);
10422 /* Compute the max. number of lines specified by the user. */
10423 if (FLOATP (Vmax_mini_window_height))
10424 max_height = XFLOATINT (Vmax_mini_window_height) * FRAME_LINES (f);
10425 else if (INTEGERP (Vmax_mini_window_height))
10426 max_height = XINT (Vmax_mini_window_height);
10427 else
10428 max_height = total_height / 4;
10430 /* Correct that max. height if it's bogus. */
10431 max_height = clip_to_bounds (1, max_height, total_height);
10433 /* Find out the height of the text in the window. */
10434 if (it.line_wrap == TRUNCATE)
10435 height = 1;
10436 else
10438 last_height = 0;
10439 move_it_to (&it, ZV, -1, -1, -1, MOVE_TO_POS);
10440 if (it.max_ascent == 0 && it.max_descent == 0)
10441 height = it.current_y + last_height;
10442 else
10443 height = it.current_y + it.max_ascent + it.max_descent;
10444 height -= min (it.extra_line_spacing, it.max_extra_line_spacing);
10445 height = (height + unit - 1) / unit;
10448 /* Compute a suitable window start. */
10449 if (height > max_height)
10451 height = max_height;
10452 init_iterator (&it, w, ZV, ZV_BYTE, NULL, DEFAULT_FACE_ID);
10453 move_it_vertically_backward (&it, (height - 1) * unit);
10454 start = it.current.pos;
10456 else
10457 SET_TEXT_POS (start, BEGV, BEGV_BYTE);
10458 SET_MARKER_FROM_TEXT_POS (w->start, start);
10460 if (EQ (Vresize_mini_windows, Qgrow_only))
10462 /* Let it grow only, until we display an empty message, in which
10463 case the window shrinks again. */
10464 if (height > WINDOW_TOTAL_LINES (w))
10466 int old_height = WINDOW_TOTAL_LINES (w);
10468 FRAME_WINDOWS_FROZEN (f) = 1;
10469 grow_mini_window (w, height - WINDOW_TOTAL_LINES (w));
10470 window_height_changed_p = WINDOW_TOTAL_LINES (w) != old_height;
10472 else if (height < WINDOW_TOTAL_LINES (w)
10473 && (exact_p || BEGV == ZV))
10475 int old_height = WINDOW_TOTAL_LINES (w);
10477 FRAME_WINDOWS_FROZEN (f) = 0;
10478 shrink_mini_window (w);
10479 window_height_changed_p = WINDOW_TOTAL_LINES (w) != old_height;
10482 else
10484 /* Always resize to exact size needed. */
10485 if (height > WINDOW_TOTAL_LINES (w))
10487 int old_height = WINDOW_TOTAL_LINES (w);
10489 FRAME_WINDOWS_FROZEN (f) = 1;
10490 grow_mini_window (w, height - WINDOW_TOTAL_LINES (w));
10491 window_height_changed_p = WINDOW_TOTAL_LINES (w) != old_height;
10493 else if (height < WINDOW_TOTAL_LINES (w))
10495 int old_height = WINDOW_TOTAL_LINES (w);
10497 FRAME_WINDOWS_FROZEN (f) = 0;
10498 shrink_mini_window (w);
10500 if (height)
10502 FRAME_WINDOWS_FROZEN (f) = 1;
10503 grow_mini_window (w, height - WINDOW_TOTAL_LINES (w));
10506 window_height_changed_p = WINDOW_TOTAL_LINES (w) != old_height;
10510 if (old_current_buffer)
10511 set_buffer_internal (old_current_buffer);
10514 return window_height_changed_p;
10518 /* Value is the current message, a string, or nil if there is no
10519 current message. */
10521 Lisp_Object
10522 current_message (void)
10524 Lisp_Object msg;
10526 if (!BUFFERP (echo_area_buffer[0]))
10527 msg = Qnil;
10528 else
10530 with_echo_area_buffer (0, 0, current_message_1,
10531 (intptr_t) &msg, Qnil);
10532 if (NILP (msg))
10533 echo_area_buffer[0] = Qnil;
10536 return msg;
10540 static int
10541 current_message_1 (ptrdiff_t a1, Lisp_Object a2)
10543 intptr_t i1 = a1;
10544 Lisp_Object *msg = (Lisp_Object *) i1;
10546 if (Z > BEG)
10547 *msg = make_buffer_string (BEG, Z, 1);
10548 else
10549 *msg = Qnil;
10550 return 0;
10554 /* Push the current message on Vmessage_stack for later restoration
10555 by restore_message. Value is non-zero if the current message isn't
10556 empty. This is a relatively infrequent operation, so it's not
10557 worth optimizing. */
10559 bool
10560 push_message (void)
10562 Lisp_Object msg = current_message ();
10563 Vmessage_stack = Fcons (msg, Vmessage_stack);
10564 return STRINGP (msg);
10568 /* Restore message display from the top of Vmessage_stack. */
10570 void
10571 restore_message (void)
10573 eassert (CONSP (Vmessage_stack));
10574 message3_nolog (XCAR (Vmessage_stack));
10578 /* Handler for unwind-protect calling pop_message. */
10580 void
10581 pop_message_unwind (void)
10583 /* Pop the top-most entry off Vmessage_stack. */
10584 eassert (CONSP (Vmessage_stack));
10585 Vmessage_stack = XCDR (Vmessage_stack);
10589 /* Check that Vmessage_stack is nil. Called from emacs.c when Emacs
10590 exits. If the stack is not empty, we have a missing pop_message
10591 somewhere. */
10593 void
10594 check_message_stack (void)
10596 if (!NILP (Vmessage_stack))
10597 emacs_abort ();
10601 /* Truncate to NCHARS what will be displayed in the echo area the next
10602 time we display it---but don't redisplay it now. */
10604 void
10605 truncate_echo_area (ptrdiff_t nchars)
10607 if (nchars == 0)
10608 echo_area_buffer[0] = Qnil;
10609 else if (!noninteractive
10610 && INTERACTIVE
10611 && !NILP (echo_area_buffer[0]))
10613 struct frame *sf = SELECTED_FRAME ();
10614 /* Error messages get reported properly by cmd_error, so this must be
10615 just an informative message; if the frame hasn't really been
10616 initialized yet, just toss it. */
10617 if (sf->glyphs_initialized_p)
10618 with_echo_area_buffer (0, 0, truncate_message_1, nchars, Qnil);
10623 /* Helper function for truncate_echo_area. Truncate the current
10624 message to at most NCHARS characters. */
10626 static int
10627 truncate_message_1 (ptrdiff_t nchars, Lisp_Object a2)
10629 if (BEG + nchars < Z)
10630 del_range (BEG + nchars, Z);
10631 if (Z == BEG)
10632 echo_area_buffer[0] = Qnil;
10633 return 0;
10636 /* Set the current message to STRING. */
10638 static void
10639 set_message (Lisp_Object string)
10641 eassert (STRINGP (string));
10643 message_enable_multibyte = STRING_MULTIBYTE (string);
10645 with_echo_area_buffer (0, -1, set_message_1, 0, string);
10646 message_buf_print = 0;
10647 help_echo_showing_p = 0;
10649 if (STRINGP (Vdebug_on_message)
10650 && STRINGP (string)
10651 && fast_string_match (Vdebug_on_message, string) >= 0)
10652 call_debugger (list2 (Qerror, string));
10656 /* Helper function for set_message. First argument is ignored and second
10657 argument has the same meaning as for set_message.
10658 This function is called with the echo area buffer being current. */
10660 static int
10661 set_message_1 (ptrdiff_t a1, Lisp_Object string)
10663 eassert (STRINGP (string));
10665 /* Change multibyteness of the echo buffer appropriately. */
10666 if (message_enable_multibyte
10667 != !NILP (BVAR (current_buffer, enable_multibyte_characters)))
10668 Fset_buffer_multibyte (message_enable_multibyte ? Qt : Qnil);
10670 bset_truncate_lines (current_buffer, message_truncate_lines ? Qt : Qnil);
10671 if (!NILP (BVAR (current_buffer, bidi_display_reordering)))
10672 bset_bidi_paragraph_direction (current_buffer, Qleft_to_right);
10674 /* Insert new message at BEG. */
10675 TEMP_SET_PT_BOTH (BEG, BEG_BYTE);
10677 /* This function takes care of single/multibyte conversion.
10678 We just have to ensure that the echo area buffer has the right
10679 setting of enable_multibyte_characters. */
10680 insert_from_string (string, 0, 0, SCHARS (string), SBYTES (string), 1);
10682 return 0;
10686 /* Clear messages. CURRENT_P non-zero means clear the current
10687 message. LAST_DISPLAYED_P non-zero means clear the message
10688 last displayed. */
10690 void
10691 clear_message (int current_p, int last_displayed_p)
10693 if (current_p)
10695 echo_area_buffer[0] = Qnil;
10696 message_cleared_p = 1;
10699 if (last_displayed_p)
10700 echo_area_buffer[1] = Qnil;
10702 message_buf_print = 0;
10705 /* Clear garbaged frames.
10707 This function is used where the old redisplay called
10708 redraw_garbaged_frames which in turn called redraw_frame which in
10709 turn called clear_frame. The call to clear_frame was a source of
10710 flickering. I believe a clear_frame is not necessary. It should
10711 suffice in the new redisplay to invalidate all current matrices,
10712 and ensure a complete redisplay of all windows. */
10714 static void
10715 clear_garbaged_frames (void)
10717 if (frame_garbaged)
10719 Lisp_Object tail, frame;
10720 int changed_count = 0;
10722 FOR_EACH_FRAME (tail, frame)
10724 struct frame *f = XFRAME (frame);
10726 if (FRAME_VISIBLE_P (f) && FRAME_GARBAGED_P (f))
10728 if (f->resized_p)
10730 redraw_frame (f);
10731 f->force_flush_display_p = 1;
10733 clear_current_matrices (f);
10734 changed_count++;
10735 f->garbaged = 0;
10736 f->resized_p = 0;
10740 frame_garbaged = 0;
10741 if (changed_count)
10742 ++windows_or_buffers_changed;
10747 /* Redisplay the echo area of the selected frame. If UPDATE_FRAME_P
10748 is non-zero update selected_frame. Value is non-zero if the
10749 mini-windows height has been changed. */
10751 static int
10752 echo_area_display (int update_frame_p)
10754 Lisp_Object mini_window;
10755 struct window *w;
10756 struct frame *f;
10757 int window_height_changed_p = 0;
10758 struct frame *sf = SELECTED_FRAME ();
10760 mini_window = FRAME_MINIBUF_WINDOW (sf);
10761 w = XWINDOW (mini_window);
10762 f = XFRAME (WINDOW_FRAME (w));
10764 /* Don't display if frame is invisible or not yet initialized. */
10765 if (!FRAME_VISIBLE_P (f) || !f->glyphs_initialized_p)
10766 return 0;
10768 #ifdef HAVE_WINDOW_SYSTEM
10769 /* When Emacs starts, selected_frame may be the initial terminal
10770 frame. If we let this through, a message would be displayed on
10771 the terminal. */
10772 if (FRAME_INITIAL_P (XFRAME (selected_frame)))
10773 return 0;
10774 #endif /* HAVE_WINDOW_SYSTEM */
10776 /* Redraw garbaged frames. */
10777 clear_garbaged_frames ();
10779 if (!NILP (echo_area_buffer[0]) || minibuf_level == 0)
10781 echo_area_window = mini_window;
10782 window_height_changed_p = display_echo_area (w);
10783 w->must_be_updated_p = 1;
10785 /* Update the display, unless called from redisplay_internal.
10786 Also don't update the screen during redisplay itself. The
10787 update will happen at the end of redisplay, and an update
10788 here could cause confusion. */
10789 if (update_frame_p && !redisplaying_p)
10791 int n = 0;
10793 /* If the display update has been interrupted by pending
10794 input, update mode lines in the frame. Due to the
10795 pending input, it might have been that redisplay hasn't
10796 been called, so that mode lines above the echo area are
10797 garbaged. This looks odd, so we prevent it here. */
10798 if (!display_completed)
10799 n = redisplay_mode_lines (FRAME_ROOT_WINDOW (f), 0);
10801 if (window_height_changed_p
10802 /* Don't do this if Emacs is shutting down. Redisplay
10803 needs to run hooks. */
10804 && !NILP (Vrun_hooks))
10806 /* Must update other windows. Likewise as in other
10807 cases, don't let this update be interrupted by
10808 pending input. */
10809 ptrdiff_t count = SPECPDL_INDEX ();
10810 specbind (Qredisplay_dont_pause, Qt);
10811 windows_or_buffers_changed = 1;
10812 redisplay_internal ();
10813 unbind_to (count, Qnil);
10815 else if (FRAME_WINDOW_P (f) && n == 0)
10817 /* Window configuration is the same as before.
10818 Can do with a display update of the echo area,
10819 unless we displayed some mode lines. */
10820 update_single_window (w, 1);
10821 FRAME_RIF (f)->flush_display (f);
10823 else
10824 update_frame (f, 1, 1);
10826 /* If cursor is in the echo area, make sure that the next
10827 redisplay displays the minibuffer, so that the cursor will
10828 be replaced with what the minibuffer wants. */
10829 if (cursor_in_echo_area)
10830 ++windows_or_buffers_changed;
10833 else if (!EQ (mini_window, selected_window))
10834 windows_or_buffers_changed++;
10836 /* Last displayed message is now the current message. */
10837 echo_area_buffer[1] = echo_area_buffer[0];
10838 /* Inform read_char that we're not echoing. */
10839 echo_message_buffer = Qnil;
10841 /* Prevent redisplay optimization in redisplay_internal by resetting
10842 this_line_start_pos. This is done because the mini-buffer now
10843 displays the message instead of its buffer text. */
10844 if (EQ (mini_window, selected_window))
10845 CHARPOS (this_line_start_pos) = 0;
10847 return window_height_changed_p;
10850 /* Nonzero if the current window's buffer is shown in more than one
10851 window and was modified since last redisplay. */
10853 static int
10854 buffer_shared_and_changed (void)
10856 return (buffer_window_count (current_buffer) > 1
10857 && UNCHANGED_MODIFIED < MODIFF);
10860 /* Nonzero if W's buffer was changed but not saved or Transient Mark mode
10861 is enabled and mark of W's buffer was changed since last W's update. */
10863 static int
10864 window_buffer_changed (struct window *w)
10866 struct buffer *b = XBUFFER (w->contents);
10868 eassert (BUFFER_LIVE_P (b));
10870 return (((BUF_SAVE_MODIFF (b) < BUF_MODIFF (b)) != w->last_had_star)
10871 || ((!NILP (Vtransient_mark_mode) && !NILP (BVAR (b, mark_active)))
10872 != (w->region_showing != 0)));
10875 /* Nonzero if W has %c in its mode line and mode line should be updated. */
10877 static int
10878 mode_line_update_needed (struct window *w)
10880 return (w->column_number_displayed != -1
10881 && !(PT == w->last_point && !window_outdated (w))
10882 && (w->column_number_displayed != current_column ()));
10885 /* Nonzero if window start of W is frozen and may not be changed during
10886 redisplay. */
10888 static bool
10889 window_frozen_p (struct window *w)
10891 if (FRAME_WINDOWS_FROZEN (XFRAME (WINDOW_FRAME (w))))
10893 Lisp_Object window;
10895 XSETWINDOW (window, w);
10896 if (MINI_WINDOW_P (w))
10897 return 0;
10898 else if (EQ (window, selected_window))
10899 return 0;
10900 else if (MINI_WINDOW_P (XWINDOW (selected_window))
10901 && EQ (window, Vminibuf_scroll_window))
10902 /* This special window can't be frozen too. */
10903 return 0;
10904 else
10905 return 1;
10907 return 0;
10910 /***********************************************************************
10911 Mode Lines and Frame Titles
10912 ***********************************************************************/
10914 /* A buffer for constructing non-propertized mode-line strings and
10915 frame titles in it; allocated from the heap in init_xdisp and
10916 resized as needed in store_mode_line_noprop_char. */
10918 static char *mode_line_noprop_buf;
10920 /* The buffer's end, and a current output position in it. */
10922 static char *mode_line_noprop_buf_end;
10923 static char *mode_line_noprop_ptr;
10925 #define MODE_LINE_NOPROP_LEN(start) \
10926 ((mode_line_noprop_ptr - mode_line_noprop_buf) - start)
10928 static enum {
10929 MODE_LINE_DISPLAY = 0,
10930 MODE_LINE_TITLE,
10931 MODE_LINE_NOPROP,
10932 MODE_LINE_STRING
10933 } mode_line_target;
10935 /* Alist that caches the results of :propertize.
10936 Each element is (PROPERTIZED-STRING . PROPERTY-LIST). */
10937 static Lisp_Object mode_line_proptrans_alist;
10939 /* List of strings making up the mode-line. */
10940 static Lisp_Object mode_line_string_list;
10942 /* Base face property when building propertized mode line string. */
10943 static Lisp_Object mode_line_string_face;
10944 static Lisp_Object mode_line_string_face_prop;
10947 /* Unwind data for mode line strings */
10949 static Lisp_Object Vmode_line_unwind_vector;
10951 static Lisp_Object
10952 format_mode_line_unwind_data (struct frame *target_frame,
10953 struct buffer *obuf,
10954 Lisp_Object owin,
10955 int save_proptrans)
10957 Lisp_Object vector, tmp;
10959 /* Reduce consing by keeping one vector in
10960 Vwith_echo_area_save_vector. */
10961 vector = Vmode_line_unwind_vector;
10962 Vmode_line_unwind_vector = Qnil;
10964 if (NILP (vector))
10965 vector = Fmake_vector (make_number (10), Qnil);
10967 ASET (vector, 0, make_number (mode_line_target));
10968 ASET (vector, 1, make_number (MODE_LINE_NOPROP_LEN (0)));
10969 ASET (vector, 2, mode_line_string_list);
10970 ASET (vector, 3, save_proptrans ? mode_line_proptrans_alist : Qt);
10971 ASET (vector, 4, mode_line_string_face);
10972 ASET (vector, 5, mode_line_string_face_prop);
10974 if (obuf)
10975 XSETBUFFER (tmp, obuf);
10976 else
10977 tmp = Qnil;
10978 ASET (vector, 6, tmp);
10979 ASET (vector, 7, owin);
10980 if (target_frame)
10982 /* Similarly to `with-selected-window', if the operation selects
10983 a window on another frame, we must restore that frame's
10984 selected window, and (for a tty) the top-frame. */
10985 ASET (vector, 8, target_frame->selected_window);
10986 if (FRAME_TERMCAP_P (target_frame))
10987 ASET (vector, 9, FRAME_TTY (target_frame)->top_frame);
10990 return vector;
10993 static void
10994 unwind_format_mode_line (Lisp_Object vector)
10996 Lisp_Object old_window = AREF (vector, 7);
10997 Lisp_Object target_frame_window = AREF (vector, 8);
10998 Lisp_Object old_top_frame = AREF (vector, 9);
11000 mode_line_target = XINT (AREF (vector, 0));
11001 mode_line_noprop_ptr = mode_line_noprop_buf + XINT (AREF (vector, 1));
11002 mode_line_string_list = AREF (vector, 2);
11003 if (! EQ (AREF (vector, 3), Qt))
11004 mode_line_proptrans_alist = AREF (vector, 3);
11005 mode_line_string_face = AREF (vector, 4);
11006 mode_line_string_face_prop = AREF (vector, 5);
11008 /* Select window before buffer, since it may change the buffer. */
11009 if (!NILP (old_window))
11011 /* If the operation that we are unwinding had selected a window
11012 on a different frame, reset its frame-selected-window. For a
11013 text terminal, reset its top-frame if necessary. */
11014 if (!NILP (target_frame_window))
11016 Lisp_Object frame
11017 = WINDOW_FRAME (XWINDOW (target_frame_window));
11019 if (!EQ (frame, WINDOW_FRAME (XWINDOW (old_window))))
11020 Fselect_window (target_frame_window, Qt);
11022 if (!NILP (old_top_frame) && !EQ (old_top_frame, frame))
11023 Fselect_frame (old_top_frame, Qt);
11026 Fselect_window (old_window, Qt);
11029 if (!NILP (AREF (vector, 6)))
11031 set_buffer_internal_1 (XBUFFER (AREF (vector, 6)));
11032 ASET (vector, 6, Qnil);
11035 Vmode_line_unwind_vector = vector;
11039 /* Store a single character C for the frame title in mode_line_noprop_buf.
11040 Re-allocate mode_line_noprop_buf if necessary. */
11042 static void
11043 store_mode_line_noprop_char (char c)
11045 /* If output position has reached the end of the allocated buffer,
11046 increase the buffer's size. */
11047 if (mode_line_noprop_ptr == mode_line_noprop_buf_end)
11049 ptrdiff_t len = MODE_LINE_NOPROP_LEN (0);
11050 ptrdiff_t size = len;
11051 mode_line_noprop_buf =
11052 xpalloc (mode_line_noprop_buf, &size, 1, STRING_BYTES_BOUND, 1);
11053 mode_line_noprop_buf_end = mode_line_noprop_buf + size;
11054 mode_line_noprop_ptr = mode_line_noprop_buf + len;
11057 *mode_line_noprop_ptr++ = c;
11061 /* Store part of a frame title in mode_line_noprop_buf, beginning at
11062 mode_line_noprop_ptr. STRING is the string to store. Do not copy
11063 characters that yield more columns than PRECISION; PRECISION <= 0
11064 means copy the whole string. Pad with spaces until FIELD_WIDTH
11065 number of characters have been copied; FIELD_WIDTH <= 0 means don't
11066 pad. Called from display_mode_element when it is used to build a
11067 frame title. */
11069 static int
11070 store_mode_line_noprop (const char *string, int field_width, int precision)
11072 const unsigned char *str = (const unsigned char *) string;
11073 int n = 0;
11074 ptrdiff_t dummy, nbytes;
11076 /* Copy at most PRECISION chars from STR. */
11077 nbytes = strlen (string);
11078 n += c_string_width (str, nbytes, precision, &dummy, &nbytes);
11079 while (nbytes--)
11080 store_mode_line_noprop_char (*str++);
11082 /* Fill up with spaces until FIELD_WIDTH reached. */
11083 while (field_width > 0
11084 && n < field_width)
11086 store_mode_line_noprop_char (' ');
11087 ++n;
11090 return n;
11093 /***********************************************************************
11094 Frame Titles
11095 ***********************************************************************/
11097 #ifdef HAVE_WINDOW_SYSTEM
11099 /* Set the title of FRAME, if it has changed. The title format is
11100 Vicon_title_format if FRAME is iconified, otherwise it is
11101 frame_title_format. */
11103 static void
11104 x_consider_frame_title (Lisp_Object frame)
11106 struct frame *f = XFRAME (frame);
11108 if (FRAME_WINDOW_P (f)
11109 || FRAME_MINIBUF_ONLY_P (f)
11110 || f->explicit_name)
11112 /* Do we have more than one visible frame on this X display? */
11113 Lisp_Object tail, other_frame, fmt;
11114 ptrdiff_t title_start;
11115 char *title;
11116 ptrdiff_t len;
11117 struct it it;
11118 ptrdiff_t count = SPECPDL_INDEX ();
11120 FOR_EACH_FRAME (tail, other_frame)
11122 struct frame *tf = XFRAME (other_frame);
11124 if (tf != f
11125 && FRAME_KBOARD (tf) == FRAME_KBOARD (f)
11126 && !FRAME_MINIBUF_ONLY_P (tf)
11127 && !EQ (other_frame, tip_frame)
11128 && (FRAME_VISIBLE_P (tf) || FRAME_ICONIFIED_P (tf)))
11129 break;
11132 /* Set global variable indicating that multiple frames exist. */
11133 multiple_frames = CONSP (tail);
11135 /* Switch to the buffer of selected window of the frame. Set up
11136 mode_line_target so that display_mode_element will output into
11137 mode_line_noprop_buf; then display the title. */
11138 record_unwind_protect (unwind_format_mode_line,
11139 format_mode_line_unwind_data
11140 (f, current_buffer, selected_window, 0));
11142 Fselect_window (f->selected_window, Qt);
11143 set_buffer_internal_1
11144 (XBUFFER (XWINDOW (f->selected_window)->contents));
11145 fmt = FRAME_ICONIFIED_P (f) ? Vicon_title_format : Vframe_title_format;
11147 mode_line_target = MODE_LINE_TITLE;
11148 title_start = MODE_LINE_NOPROP_LEN (0);
11149 init_iterator (&it, XWINDOW (f->selected_window), -1, -1,
11150 NULL, DEFAULT_FACE_ID);
11151 display_mode_element (&it, 0, -1, -1, fmt, Qnil, 0);
11152 len = MODE_LINE_NOPROP_LEN (title_start);
11153 title = mode_line_noprop_buf + title_start;
11154 unbind_to (count, Qnil);
11156 /* Set the title only if it's changed. This avoids consing in
11157 the common case where it hasn't. (If it turns out that we've
11158 already wasted too much time by walking through the list with
11159 display_mode_element, then we might need to optimize at a
11160 higher level than this.) */
11161 if (! STRINGP (f->name)
11162 || SBYTES (f->name) != len
11163 || memcmp (title, SDATA (f->name), len) != 0)
11164 x_implicitly_set_name (f, make_string (title, len), Qnil);
11168 #endif /* not HAVE_WINDOW_SYSTEM */
11171 /***********************************************************************
11172 Menu Bars
11173 ***********************************************************************/
11176 /* Prepare for redisplay by updating menu-bar item lists when
11177 appropriate. This can call eval. */
11179 void
11180 prepare_menu_bars (void)
11182 int all_windows;
11183 struct gcpro gcpro1, gcpro2;
11184 struct frame *f;
11185 Lisp_Object tooltip_frame;
11187 #ifdef HAVE_WINDOW_SYSTEM
11188 tooltip_frame = tip_frame;
11189 #else
11190 tooltip_frame = Qnil;
11191 #endif
11193 /* Update all frame titles based on their buffer names, etc. We do
11194 this before the menu bars so that the buffer-menu will show the
11195 up-to-date frame titles. */
11196 #ifdef HAVE_WINDOW_SYSTEM
11197 if (windows_or_buffers_changed || update_mode_lines)
11199 Lisp_Object tail, frame;
11201 FOR_EACH_FRAME (tail, frame)
11203 f = XFRAME (frame);
11204 if (!EQ (frame, tooltip_frame)
11205 && (FRAME_ICONIFIED_P (f)
11206 || FRAME_VISIBLE_P (f) == 1
11207 /* Exclude TTY frames that are obscured because they
11208 are not the top frame on their console. This is
11209 because x_consider_frame_title actually switches
11210 to the frame, which for TTY frames means it is
11211 marked as garbaged, and will be completely
11212 redrawn on the next redisplay cycle. This causes
11213 TTY frames to be completely redrawn, when there
11214 are more than one of them, even though nothing
11215 should be changed on display. */
11216 || (FRAME_VISIBLE_P (f) == 2 && FRAME_WINDOW_P (f))))
11217 x_consider_frame_title (frame);
11220 #endif /* HAVE_WINDOW_SYSTEM */
11222 /* Update the menu bar item lists, if appropriate. This has to be
11223 done before any actual redisplay or generation of display lines. */
11224 all_windows = (update_mode_lines
11225 || buffer_shared_and_changed ()
11226 || windows_or_buffers_changed);
11227 if (all_windows)
11229 Lisp_Object tail, frame;
11230 ptrdiff_t count = SPECPDL_INDEX ();
11231 /* 1 means that update_menu_bar has run its hooks
11232 so any further calls to update_menu_bar shouldn't do so again. */
11233 int menu_bar_hooks_run = 0;
11235 record_unwind_save_match_data ();
11237 FOR_EACH_FRAME (tail, frame)
11239 f = XFRAME (frame);
11241 /* Ignore tooltip frame. */
11242 if (EQ (frame, tooltip_frame))
11243 continue;
11245 /* If a window on this frame changed size, report that to
11246 the user and clear the size-change flag. */
11247 if (FRAME_WINDOW_SIZES_CHANGED (f))
11249 Lisp_Object functions;
11251 /* Clear flag first in case we get an error below. */
11252 FRAME_WINDOW_SIZES_CHANGED (f) = 0;
11253 functions = Vwindow_size_change_functions;
11254 GCPRO2 (tail, functions);
11256 while (CONSP (functions))
11258 if (!EQ (XCAR (functions), Qt))
11259 call1 (XCAR (functions), frame);
11260 functions = XCDR (functions);
11262 UNGCPRO;
11265 GCPRO1 (tail);
11266 menu_bar_hooks_run = update_menu_bar (f, 0, menu_bar_hooks_run);
11267 #ifdef HAVE_WINDOW_SYSTEM
11268 update_tool_bar (f, 0);
11269 #endif
11270 #ifdef HAVE_NS
11271 if (windows_or_buffers_changed
11272 && FRAME_NS_P (f))
11273 ns_set_doc_edited
11274 (f, Fbuffer_modified_p (XWINDOW (f->selected_window)->contents));
11275 #endif
11276 UNGCPRO;
11279 unbind_to (count, Qnil);
11281 else
11283 struct frame *sf = SELECTED_FRAME ();
11284 update_menu_bar (sf, 1, 0);
11285 #ifdef HAVE_WINDOW_SYSTEM
11286 update_tool_bar (sf, 1);
11287 #endif
11292 /* Update the menu bar item list for frame F. This has to be done
11293 before we start to fill in any display lines, because it can call
11294 eval.
11296 If SAVE_MATCH_DATA is non-zero, we must save and restore it here.
11298 If HOOKS_RUN is 1, that means a previous call to update_menu_bar
11299 already ran the menu bar hooks for this redisplay, so there
11300 is no need to run them again. The return value is the
11301 updated value of this flag, to pass to the next call. */
11303 static int
11304 update_menu_bar (struct frame *f, int save_match_data, int hooks_run)
11306 Lisp_Object window;
11307 register struct window *w;
11309 /* If called recursively during a menu update, do nothing. This can
11310 happen when, for instance, an activate-menubar-hook causes a
11311 redisplay. */
11312 if (inhibit_menubar_update)
11313 return hooks_run;
11315 window = FRAME_SELECTED_WINDOW (f);
11316 w = XWINDOW (window);
11318 if (FRAME_WINDOW_P (f)
11320 #if defined (USE_X_TOOLKIT) || defined (HAVE_NTGUI) \
11321 || defined (HAVE_NS) || defined (USE_GTK)
11322 FRAME_EXTERNAL_MENU_BAR (f)
11323 #else
11324 FRAME_MENU_BAR_LINES (f) > 0
11325 #endif
11326 : FRAME_MENU_BAR_LINES (f) > 0)
11328 /* If the user has switched buffers or windows, we need to
11329 recompute to reflect the new bindings. But we'll
11330 recompute when update_mode_lines is set too; that means
11331 that people can use force-mode-line-update to request
11332 that the menu bar be recomputed. The adverse effect on
11333 the rest of the redisplay algorithm is about the same as
11334 windows_or_buffers_changed anyway. */
11335 if (windows_or_buffers_changed
11336 /* This used to test w->update_mode_line, but we believe
11337 there is no need to recompute the menu in that case. */
11338 || update_mode_lines
11339 || window_buffer_changed (w))
11341 struct buffer *prev = current_buffer;
11342 ptrdiff_t count = SPECPDL_INDEX ();
11344 specbind (Qinhibit_menubar_update, Qt);
11346 set_buffer_internal_1 (XBUFFER (w->contents));
11347 if (save_match_data)
11348 record_unwind_save_match_data ();
11349 if (NILP (Voverriding_local_map_menu_flag))
11351 specbind (Qoverriding_terminal_local_map, Qnil);
11352 specbind (Qoverriding_local_map, Qnil);
11355 if (!hooks_run)
11357 /* Run the Lucid hook. */
11358 safe_run_hooks (Qactivate_menubar_hook);
11360 /* If it has changed current-menubar from previous value,
11361 really recompute the menu-bar from the value. */
11362 if (! NILP (Vlucid_menu_bar_dirty_flag))
11363 call0 (Qrecompute_lucid_menubar);
11365 safe_run_hooks (Qmenu_bar_update_hook);
11367 hooks_run = 1;
11370 XSETFRAME (Vmenu_updating_frame, f);
11371 fset_menu_bar_items (f, menu_bar_items (FRAME_MENU_BAR_ITEMS (f)));
11373 /* Redisplay the menu bar in case we changed it. */
11374 #if defined (USE_X_TOOLKIT) || defined (HAVE_NTGUI) \
11375 || defined (HAVE_NS) || defined (USE_GTK)
11376 if (FRAME_WINDOW_P (f))
11378 #if defined (HAVE_NS)
11379 /* All frames on Mac OS share the same menubar. So only
11380 the selected frame should be allowed to set it. */
11381 if (f == SELECTED_FRAME ())
11382 #endif
11383 set_frame_menubar (f, 0, 0);
11385 else
11386 /* On a terminal screen, the menu bar is an ordinary screen
11387 line, and this makes it get updated. */
11388 w->update_mode_line = 1;
11389 #else /* ! (USE_X_TOOLKIT || HAVE_NTGUI || HAVE_NS || USE_GTK) */
11390 /* In the non-toolkit version, the menu bar is an ordinary screen
11391 line, and this makes it get updated. */
11392 w->update_mode_line = 1;
11393 #endif /* ! (USE_X_TOOLKIT || HAVE_NTGUI || HAVE_NS || USE_GTK) */
11395 unbind_to (count, Qnil);
11396 set_buffer_internal_1 (prev);
11400 return hooks_run;
11405 /***********************************************************************
11406 Output Cursor
11407 ***********************************************************************/
11409 #ifdef HAVE_WINDOW_SYSTEM
11411 /* EXPORT:
11412 Nominal cursor position -- where to draw output.
11413 HPOS and VPOS are window relative glyph matrix coordinates.
11414 X and Y are window relative pixel coordinates. */
11416 struct cursor_pos output_cursor;
11419 /* EXPORT:
11420 Set the global variable output_cursor to CURSOR. All cursor
11421 positions are relative to currently updated window. */
11423 void
11424 set_output_cursor (struct cursor_pos *cursor)
11426 output_cursor.hpos = cursor->hpos;
11427 output_cursor.vpos = cursor->vpos;
11428 output_cursor.x = cursor->x;
11429 output_cursor.y = cursor->y;
11433 /* EXPORT for RIF:
11434 Set a nominal cursor position.
11436 HPOS and VPOS are column/row positions in a window glyph matrix.
11437 X and Y are window text area relative pixel positions.
11439 This is always done during window update, so the position is the
11440 future output cursor position for currently updated window W.
11441 NOTE: W is used only to check whether this function is called
11442 in a consistent manner via the redisplay interface. */
11444 void
11445 x_cursor_to (struct window *w, int vpos, int hpos, int y, int x)
11447 eassert (w);
11449 /* Set the output cursor. */
11450 output_cursor.hpos = hpos;
11451 output_cursor.vpos = vpos;
11452 output_cursor.x = x;
11453 output_cursor.y = y;
11456 #endif /* HAVE_WINDOW_SYSTEM */
11459 /***********************************************************************
11460 Tool-bars
11461 ***********************************************************************/
11463 #ifdef HAVE_WINDOW_SYSTEM
11465 /* Where the mouse was last time we reported a mouse event. */
11467 struct frame *last_mouse_frame;
11469 /* Tool-bar item index of the item on which a mouse button was pressed
11470 or -1. */
11472 int last_tool_bar_item;
11474 /* Select `frame' temporarily without running all the code in
11475 do_switch_frame.
11476 FIXME: Maybe do_switch_frame should be trimmed down similarly
11477 when `norecord' is set. */
11478 static void
11479 fast_set_selected_frame (Lisp_Object frame)
11481 if (!EQ (selected_frame, frame))
11483 selected_frame = frame;
11484 selected_window = XFRAME (frame)->selected_window;
11488 /* Update the tool-bar item list for frame F. This has to be done
11489 before we start to fill in any display lines. Called from
11490 prepare_menu_bars. If SAVE_MATCH_DATA is non-zero, we must save
11491 and restore it here. */
11493 static void
11494 update_tool_bar (struct frame *f, int save_match_data)
11496 #if defined (USE_GTK) || defined (HAVE_NS)
11497 int do_update = FRAME_EXTERNAL_TOOL_BAR (f);
11498 #else
11499 int do_update = WINDOWP (f->tool_bar_window)
11500 && WINDOW_TOTAL_LINES (XWINDOW (f->tool_bar_window)) > 0;
11501 #endif
11503 if (do_update)
11505 Lisp_Object window;
11506 struct window *w;
11508 window = FRAME_SELECTED_WINDOW (f);
11509 w = XWINDOW (window);
11511 /* If the user has switched buffers or windows, we need to
11512 recompute to reflect the new bindings. But we'll
11513 recompute when update_mode_lines is set too; that means
11514 that people can use force-mode-line-update to request
11515 that the menu bar be recomputed. The adverse effect on
11516 the rest of the redisplay algorithm is about the same as
11517 windows_or_buffers_changed anyway. */
11518 if (windows_or_buffers_changed
11519 || w->update_mode_line
11520 || update_mode_lines
11521 || window_buffer_changed (w))
11523 struct buffer *prev = current_buffer;
11524 ptrdiff_t count = SPECPDL_INDEX ();
11525 Lisp_Object frame, new_tool_bar;
11526 int new_n_tool_bar;
11527 struct gcpro gcpro1;
11529 /* Set current_buffer to the buffer of the selected
11530 window of the frame, so that we get the right local
11531 keymaps. */
11532 set_buffer_internal_1 (XBUFFER (w->contents));
11534 /* Save match data, if we must. */
11535 if (save_match_data)
11536 record_unwind_save_match_data ();
11538 /* Make sure that we don't accidentally use bogus keymaps. */
11539 if (NILP (Voverriding_local_map_menu_flag))
11541 specbind (Qoverriding_terminal_local_map, Qnil);
11542 specbind (Qoverriding_local_map, Qnil);
11545 GCPRO1 (new_tool_bar);
11547 /* We must temporarily set the selected frame to this frame
11548 before calling tool_bar_items, because the calculation of
11549 the tool-bar keymap uses the selected frame (see
11550 `tool-bar-make-keymap' in tool-bar.el). */
11551 eassert (EQ (selected_window,
11552 /* Since we only explicitly preserve selected_frame,
11553 check that selected_window would be redundant. */
11554 XFRAME (selected_frame)->selected_window));
11555 record_unwind_protect (fast_set_selected_frame, selected_frame);
11556 XSETFRAME (frame, f);
11557 fast_set_selected_frame (frame);
11559 /* Build desired tool-bar items from keymaps. */
11560 new_tool_bar
11561 = tool_bar_items (Fcopy_sequence (f->tool_bar_items),
11562 &new_n_tool_bar);
11564 /* Redisplay the tool-bar if we changed it. */
11565 if (new_n_tool_bar != f->n_tool_bar_items
11566 || NILP (Fequal (new_tool_bar, f->tool_bar_items)))
11568 /* Redisplay that happens asynchronously due to an expose event
11569 may access f->tool_bar_items. Make sure we update both
11570 variables within BLOCK_INPUT so no such event interrupts. */
11571 block_input ();
11572 fset_tool_bar_items (f, new_tool_bar);
11573 f->n_tool_bar_items = new_n_tool_bar;
11574 w->update_mode_line = 1;
11575 unblock_input ();
11578 UNGCPRO;
11580 unbind_to (count, Qnil);
11581 set_buffer_internal_1 (prev);
11587 /* Set F->desired_tool_bar_string to a Lisp string representing frame
11588 F's desired tool-bar contents. F->tool_bar_items must have
11589 been set up previously by calling prepare_menu_bars. */
11591 static void
11592 build_desired_tool_bar_string (struct frame *f)
11594 int i, size, size_needed;
11595 struct gcpro gcpro1, gcpro2, gcpro3;
11596 Lisp_Object image, plist, props;
11598 image = plist = props = Qnil;
11599 GCPRO3 (image, plist, props);
11601 /* Prepare F->desired_tool_bar_string. If we can reuse it, do so.
11602 Otherwise, make a new string. */
11604 /* The size of the string we might be able to reuse. */
11605 size = (STRINGP (f->desired_tool_bar_string)
11606 ? SCHARS (f->desired_tool_bar_string)
11607 : 0);
11609 /* We need one space in the string for each image. */
11610 size_needed = f->n_tool_bar_items;
11612 /* Reuse f->desired_tool_bar_string, if possible. */
11613 if (size < size_needed || NILP (f->desired_tool_bar_string))
11614 fset_desired_tool_bar_string
11615 (f, Fmake_string (make_number (size_needed), make_number (' ')));
11616 else
11618 props = list4 (Qdisplay, Qnil, Qmenu_item, Qnil);
11619 Fremove_text_properties (make_number (0), make_number (size),
11620 props, f->desired_tool_bar_string);
11623 /* Put a `display' property on the string for the images to display,
11624 put a `menu_item' property on tool-bar items with a value that
11625 is the index of the item in F's tool-bar item vector. */
11626 for (i = 0; i < f->n_tool_bar_items; ++i)
11628 #define PROP(IDX) \
11629 AREF (f->tool_bar_items, i * TOOL_BAR_ITEM_NSLOTS + (IDX))
11631 int enabled_p = !NILP (PROP (TOOL_BAR_ITEM_ENABLED_P));
11632 int selected_p = !NILP (PROP (TOOL_BAR_ITEM_SELECTED_P));
11633 int hmargin, vmargin, relief, idx, end;
11635 /* If image is a vector, choose the image according to the
11636 button state. */
11637 image = PROP (TOOL_BAR_ITEM_IMAGES);
11638 if (VECTORP (image))
11640 if (enabled_p)
11641 idx = (selected_p
11642 ? TOOL_BAR_IMAGE_ENABLED_SELECTED
11643 : TOOL_BAR_IMAGE_ENABLED_DESELECTED);
11644 else
11645 idx = (selected_p
11646 ? TOOL_BAR_IMAGE_DISABLED_SELECTED
11647 : TOOL_BAR_IMAGE_DISABLED_DESELECTED);
11649 eassert (ASIZE (image) >= idx);
11650 image = AREF (image, idx);
11652 else
11653 idx = -1;
11655 /* Ignore invalid image specifications. */
11656 if (!valid_image_p (image))
11657 continue;
11659 /* Display the tool-bar button pressed, or depressed. */
11660 plist = Fcopy_sequence (XCDR (image));
11662 /* Compute margin and relief to draw. */
11663 relief = (tool_bar_button_relief >= 0
11664 ? tool_bar_button_relief
11665 : DEFAULT_TOOL_BAR_BUTTON_RELIEF);
11666 hmargin = vmargin = relief;
11668 if (RANGED_INTEGERP (1, Vtool_bar_button_margin,
11669 INT_MAX - max (hmargin, vmargin)))
11671 hmargin += XFASTINT (Vtool_bar_button_margin);
11672 vmargin += XFASTINT (Vtool_bar_button_margin);
11674 else if (CONSP (Vtool_bar_button_margin))
11676 if (RANGED_INTEGERP (1, XCAR (Vtool_bar_button_margin),
11677 INT_MAX - hmargin))
11678 hmargin += XFASTINT (XCAR (Vtool_bar_button_margin));
11680 if (RANGED_INTEGERP (1, XCDR (Vtool_bar_button_margin),
11681 INT_MAX - vmargin))
11682 vmargin += XFASTINT (XCDR (Vtool_bar_button_margin));
11685 if (auto_raise_tool_bar_buttons_p)
11687 /* Add a `:relief' property to the image spec if the item is
11688 selected. */
11689 if (selected_p)
11691 plist = Fplist_put (plist, QCrelief, make_number (-relief));
11692 hmargin -= relief;
11693 vmargin -= relief;
11696 else
11698 /* If image is selected, display it pressed, i.e. with a
11699 negative relief. If it's not selected, display it with a
11700 raised relief. */
11701 plist = Fplist_put (plist, QCrelief,
11702 (selected_p
11703 ? make_number (-relief)
11704 : make_number (relief)));
11705 hmargin -= relief;
11706 vmargin -= relief;
11709 /* Put a margin around the image. */
11710 if (hmargin || vmargin)
11712 if (hmargin == vmargin)
11713 plist = Fplist_put (plist, QCmargin, make_number (hmargin));
11714 else
11715 plist = Fplist_put (plist, QCmargin,
11716 Fcons (make_number (hmargin),
11717 make_number (vmargin)));
11720 /* If button is not enabled, and we don't have special images
11721 for the disabled state, make the image appear disabled by
11722 applying an appropriate algorithm to it. */
11723 if (!enabled_p && idx < 0)
11724 plist = Fplist_put (plist, QCconversion, Qdisabled);
11726 /* Put a `display' text property on the string for the image to
11727 display. Put a `menu-item' property on the string that gives
11728 the start of this item's properties in the tool-bar items
11729 vector. */
11730 image = Fcons (Qimage, plist);
11731 props = list4 (Qdisplay, image,
11732 Qmenu_item, make_number (i * TOOL_BAR_ITEM_NSLOTS));
11734 /* Let the last image hide all remaining spaces in the tool bar
11735 string. The string can be longer than needed when we reuse a
11736 previous string. */
11737 if (i + 1 == f->n_tool_bar_items)
11738 end = SCHARS (f->desired_tool_bar_string);
11739 else
11740 end = i + 1;
11741 Fadd_text_properties (make_number (i), make_number (end),
11742 props, f->desired_tool_bar_string);
11743 #undef PROP
11746 UNGCPRO;
11750 /* Display one line of the tool-bar of frame IT->f.
11752 HEIGHT specifies the desired height of the tool-bar line.
11753 If the actual height of the glyph row is less than HEIGHT, the
11754 row's height is increased to HEIGHT, and the icons are centered
11755 vertically in the new height.
11757 If HEIGHT is -1, we are counting needed tool-bar lines, so don't
11758 count a final empty row in case the tool-bar width exactly matches
11759 the window width.
11762 static void
11763 display_tool_bar_line (struct it *it, int height)
11765 struct glyph_row *row = it->glyph_row;
11766 int max_x = it->last_visible_x;
11767 struct glyph *last;
11769 prepare_desired_row (row);
11770 row->y = it->current_y;
11772 /* Note that this isn't made use of if the face hasn't a box,
11773 so there's no need to check the face here. */
11774 it->start_of_box_run_p = 1;
11776 while (it->current_x < max_x)
11778 int x, n_glyphs_before, i, nglyphs;
11779 struct it it_before;
11781 /* Get the next display element. */
11782 if (!get_next_display_element (it))
11784 /* Don't count empty row if we are counting needed tool-bar lines. */
11785 if (height < 0 && !it->hpos)
11786 return;
11787 break;
11790 /* Produce glyphs. */
11791 n_glyphs_before = row->used[TEXT_AREA];
11792 it_before = *it;
11794 PRODUCE_GLYPHS (it);
11796 nglyphs = row->used[TEXT_AREA] - n_glyphs_before;
11797 i = 0;
11798 x = it_before.current_x;
11799 while (i < nglyphs)
11801 struct glyph *glyph = row->glyphs[TEXT_AREA] + n_glyphs_before + i;
11803 if (x + glyph->pixel_width > max_x)
11805 /* Glyph doesn't fit on line. Backtrack. */
11806 row->used[TEXT_AREA] = n_glyphs_before;
11807 *it = it_before;
11808 /* If this is the only glyph on this line, it will never fit on the
11809 tool-bar, so skip it. But ensure there is at least one glyph,
11810 so we don't accidentally disable the tool-bar. */
11811 if (n_glyphs_before == 0
11812 && (it->vpos > 0 || IT_STRING_CHARPOS (*it) < it->end_charpos-1))
11813 break;
11814 goto out;
11817 ++it->hpos;
11818 x += glyph->pixel_width;
11819 ++i;
11822 /* Stop at line end. */
11823 if (ITERATOR_AT_END_OF_LINE_P (it))
11824 break;
11826 set_iterator_to_next (it, 1);
11829 out:;
11831 row->displays_text_p = row->used[TEXT_AREA] != 0;
11833 /* Use default face for the border below the tool bar.
11835 FIXME: When auto-resize-tool-bars is grow-only, there is
11836 no additional border below the possibly empty tool-bar lines.
11837 So to make the extra empty lines look "normal", we have to
11838 use the tool-bar face for the border too. */
11839 if (!MATRIX_ROW_DISPLAYS_TEXT_P (row)
11840 && !EQ (Vauto_resize_tool_bars, Qgrow_only))
11841 it->face_id = DEFAULT_FACE_ID;
11843 extend_face_to_end_of_line (it);
11844 last = row->glyphs[TEXT_AREA] + row->used[TEXT_AREA] - 1;
11845 last->right_box_line_p = 1;
11846 if (last == row->glyphs[TEXT_AREA])
11847 last->left_box_line_p = 1;
11849 /* Make line the desired height and center it vertically. */
11850 if ((height -= it->max_ascent + it->max_descent) > 0)
11852 /* Don't add more than one line height. */
11853 height %= FRAME_LINE_HEIGHT (it->f);
11854 it->max_ascent += height / 2;
11855 it->max_descent += (height + 1) / 2;
11858 compute_line_metrics (it);
11860 /* If line is empty, make it occupy the rest of the tool-bar. */
11861 if (!MATRIX_ROW_DISPLAYS_TEXT_P (row))
11863 row->height = row->phys_height = it->last_visible_y - row->y;
11864 row->visible_height = row->height;
11865 row->ascent = row->phys_ascent = 0;
11866 row->extra_line_spacing = 0;
11869 row->full_width_p = 1;
11870 row->continued_p = 0;
11871 row->truncated_on_left_p = 0;
11872 row->truncated_on_right_p = 0;
11874 it->current_x = it->hpos = 0;
11875 it->current_y += row->height;
11876 ++it->vpos;
11877 ++it->glyph_row;
11881 /* Max tool-bar height. */
11883 #define MAX_FRAME_TOOL_BAR_HEIGHT(f) \
11884 ((FRAME_LINE_HEIGHT (f) * FRAME_LINES (f)))
11886 /* Value is the number of screen lines needed to make all tool-bar
11887 items of frame F visible. The number of actual rows needed is
11888 returned in *N_ROWS if non-NULL. */
11890 static int
11891 tool_bar_lines_needed (struct frame *f, int *n_rows)
11893 struct window *w = XWINDOW (f->tool_bar_window);
11894 struct it it;
11895 /* tool_bar_lines_needed is called from redisplay_tool_bar after building
11896 the desired matrix, so use (unused) mode-line row as temporary row to
11897 avoid destroying the first tool-bar row. */
11898 struct glyph_row *temp_row = MATRIX_MODE_LINE_ROW (w->desired_matrix);
11900 /* Initialize an iterator for iteration over
11901 F->desired_tool_bar_string in the tool-bar window of frame F. */
11902 init_iterator (&it, w, -1, -1, temp_row, TOOL_BAR_FACE_ID);
11903 it.first_visible_x = 0;
11904 it.last_visible_x = FRAME_TOTAL_COLS (f) * FRAME_COLUMN_WIDTH (f);
11905 reseat_to_string (&it, NULL, f->desired_tool_bar_string, 0, 0, 0, -1);
11906 it.paragraph_embedding = L2R;
11908 while (!ITERATOR_AT_END_P (&it))
11910 clear_glyph_row (temp_row);
11911 it.glyph_row = temp_row;
11912 display_tool_bar_line (&it, -1);
11914 clear_glyph_row (temp_row);
11916 /* f->n_tool_bar_rows == 0 means "unknown"; -1 means no tool-bar. */
11917 if (n_rows)
11918 *n_rows = it.vpos > 0 ? it.vpos : -1;
11920 return (it.current_y + FRAME_LINE_HEIGHT (f) - 1) / FRAME_LINE_HEIGHT (f);
11924 DEFUN ("tool-bar-lines-needed", Ftool_bar_lines_needed, Stool_bar_lines_needed,
11925 0, 1, 0,
11926 doc: /* Return the number of lines occupied by the tool bar of FRAME.
11927 If FRAME is nil or omitted, use the selected frame. */)
11928 (Lisp_Object frame)
11930 struct frame *f = decode_any_frame (frame);
11931 struct window *w;
11932 int nlines = 0;
11934 if (WINDOWP (f->tool_bar_window)
11935 && (w = XWINDOW (f->tool_bar_window),
11936 WINDOW_TOTAL_LINES (w) > 0))
11938 update_tool_bar (f, 1);
11939 if (f->n_tool_bar_items)
11941 build_desired_tool_bar_string (f);
11942 nlines = tool_bar_lines_needed (f, NULL);
11946 return make_number (nlines);
11950 /* Display the tool-bar of frame F. Value is non-zero if tool-bar's
11951 height should be changed. */
11953 static int
11954 redisplay_tool_bar (struct frame *f)
11956 struct window *w;
11957 struct it it;
11958 struct glyph_row *row;
11960 #if defined (USE_GTK) || defined (HAVE_NS)
11961 if (FRAME_EXTERNAL_TOOL_BAR (f))
11962 update_frame_tool_bar (f);
11963 return 0;
11964 #endif
11966 /* If frame hasn't a tool-bar window or if it is zero-height, don't
11967 do anything. This means you must start with tool-bar-lines
11968 non-zero to get the auto-sizing effect. Or in other words, you
11969 can turn off tool-bars by specifying tool-bar-lines zero. */
11970 if (!WINDOWP (f->tool_bar_window)
11971 || (w = XWINDOW (f->tool_bar_window),
11972 WINDOW_TOTAL_LINES (w) == 0))
11973 return 0;
11975 /* Set up an iterator for the tool-bar window. */
11976 init_iterator (&it, w, -1, -1, w->desired_matrix->rows, TOOL_BAR_FACE_ID);
11977 it.first_visible_x = 0;
11978 it.last_visible_x = FRAME_TOTAL_COLS (f) * FRAME_COLUMN_WIDTH (f);
11979 row = it.glyph_row;
11981 /* Build a string that represents the contents of the tool-bar. */
11982 build_desired_tool_bar_string (f);
11983 reseat_to_string (&it, NULL, f->desired_tool_bar_string, 0, 0, 0, -1);
11984 /* FIXME: This should be controlled by a user option. But it
11985 doesn't make sense to have an R2L tool bar if the menu bar cannot
11986 be drawn also R2L, and making the menu bar R2L is tricky due
11987 toolkit-specific code that implements it. If an R2L tool bar is
11988 ever supported, display_tool_bar_line should also be augmented to
11989 call unproduce_glyphs like display_line and display_string
11990 do. */
11991 it.paragraph_embedding = L2R;
11993 if (f->n_tool_bar_rows == 0)
11995 int nlines;
11997 if ((nlines = tool_bar_lines_needed (f, &f->n_tool_bar_rows),
11998 nlines != WINDOW_TOTAL_LINES (w)))
12000 Lisp_Object frame;
12001 int old_height = WINDOW_TOTAL_LINES (w);
12003 XSETFRAME (frame, f);
12004 Fmodify_frame_parameters (frame,
12005 list1 (Fcons (Qtool_bar_lines,
12006 make_number (nlines))));
12007 if (WINDOW_TOTAL_LINES (w) != old_height)
12009 clear_glyph_matrix (w->desired_matrix);
12010 fonts_changed_p = 1;
12011 return 1;
12016 /* Display as many lines as needed to display all tool-bar items. */
12018 if (f->n_tool_bar_rows > 0)
12020 int border, rows, height, extra;
12022 if (TYPE_RANGED_INTEGERP (int, Vtool_bar_border))
12023 border = XINT (Vtool_bar_border);
12024 else if (EQ (Vtool_bar_border, Qinternal_border_width))
12025 border = FRAME_INTERNAL_BORDER_WIDTH (f);
12026 else if (EQ (Vtool_bar_border, Qborder_width))
12027 border = f->border_width;
12028 else
12029 border = 0;
12030 if (border < 0)
12031 border = 0;
12033 rows = f->n_tool_bar_rows;
12034 height = max (1, (it.last_visible_y - border) / rows);
12035 extra = it.last_visible_y - border - height * rows;
12037 while (it.current_y < it.last_visible_y)
12039 int h = 0;
12040 if (extra > 0 && rows-- > 0)
12042 h = (extra + rows - 1) / rows;
12043 extra -= h;
12045 display_tool_bar_line (&it, height + h);
12048 else
12050 while (it.current_y < it.last_visible_y)
12051 display_tool_bar_line (&it, 0);
12054 /* It doesn't make much sense to try scrolling in the tool-bar
12055 window, so don't do it. */
12056 w->desired_matrix->no_scrolling_p = 1;
12057 w->must_be_updated_p = 1;
12059 if (!NILP (Vauto_resize_tool_bars))
12061 int max_tool_bar_height = MAX_FRAME_TOOL_BAR_HEIGHT (f);
12062 int change_height_p = 0;
12064 /* If we couldn't display everything, change the tool-bar's
12065 height if there is room for more. */
12066 if (IT_STRING_CHARPOS (it) < it.end_charpos
12067 && it.current_y < max_tool_bar_height)
12068 change_height_p = 1;
12070 row = it.glyph_row - 1;
12072 /* If there are blank lines at the end, except for a partially
12073 visible blank line at the end that is smaller than
12074 FRAME_LINE_HEIGHT, change the tool-bar's height. */
12075 if (!MATRIX_ROW_DISPLAYS_TEXT_P (row)
12076 && row->height >= FRAME_LINE_HEIGHT (f))
12077 change_height_p = 1;
12079 /* If row displays tool-bar items, but is partially visible,
12080 change the tool-bar's height. */
12081 if (MATRIX_ROW_DISPLAYS_TEXT_P (row)
12082 && MATRIX_ROW_BOTTOM_Y (row) > it.last_visible_y
12083 && MATRIX_ROW_BOTTOM_Y (row) < max_tool_bar_height)
12084 change_height_p = 1;
12086 /* Resize windows as needed by changing the `tool-bar-lines'
12087 frame parameter. */
12088 if (change_height_p)
12090 Lisp_Object frame;
12091 int old_height = WINDOW_TOTAL_LINES (w);
12092 int nrows;
12093 int nlines = tool_bar_lines_needed (f, &nrows);
12095 change_height_p = ((EQ (Vauto_resize_tool_bars, Qgrow_only)
12096 && !f->minimize_tool_bar_window_p)
12097 ? (nlines > old_height)
12098 : (nlines != old_height));
12099 f->minimize_tool_bar_window_p = 0;
12101 if (change_height_p)
12103 XSETFRAME (frame, f);
12104 Fmodify_frame_parameters (frame,
12105 list1 (Fcons (Qtool_bar_lines,
12106 make_number (nlines))));
12107 if (WINDOW_TOTAL_LINES (w) != old_height)
12109 clear_glyph_matrix (w->desired_matrix);
12110 f->n_tool_bar_rows = nrows;
12111 fonts_changed_p = 1;
12112 return 1;
12118 f->minimize_tool_bar_window_p = 0;
12119 return 0;
12123 /* Get information about the tool-bar item which is displayed in GLYPH
12124 on frame F. Return in *PROP_IDX the index where tool-bar item
12125 properties start in F->tool_bar_items. Value is zero if
12126 GLYPH doesn't display a tool-bar item. */
12128 static int
12129 tool_bar_item_info (struct frame *f, struct glyph *glyph, int *prop_idx)
12131 Lisp_Object prop;
12132 int success_p;
12133 int charpos;
12135 /* This function can be called asynchronously, which means we must
12136 exclude any possibility that Fget_text_property signals an
12137 error. */
12138 charpos = min (SCHARS (f->current_tool_bar_string), glyph->charpos);
12139 charpos = max (0, charpos);
12141 /* Get the text property `menu-item' at pos. The value of that
12142 property is the start index of this item's properties in
12143 F->tool_bar_items. */
12144 prop = Fget_text_property (make_number (charpos),
12145 Qmenu_item, f->current_tool_bar_string);
12146 if (INTEGERP (prop))
12148 *prop_idx = XINT (prop);
12149 success_p = 1;
12151 else
12152 success_p = 0;
12154 return success_p;
12158 /* Get information about the tool-bar item at position X/Y on frame F.
12159 Return in *GLYPH a pointer to the glyph of the tool-bar item in
12160 the current matrix of the tool-bar window of F, or NULL if not
12161 on a tool-bar item. Return in *PROP_IDX the index of the tool-bar
12162 item in F->tool_bar_items. Value is
12164 -1 if X/Y is not on a tool-bar item
12165 0 if X/Y is on the same item that was highlighted before.
12166 1 otherwise. */
12168 static int
12169 get_tool_bar_item (struct frame *f, int x, int y, struct glyph **glyph,
12170 int *hpos, int *vpos, int *prop_idx)
12172 Mouse_HLInfo *hlinfo = MOUSE_HL_INFO (f);
12173 struct window *w = XWINDOW (f->tool_bar_window);
12174 int area;
12176 /* Find the glyph under X/Y. */
12177 *glyph = x_y_to_hpos_vpos (w, x, y, hpos, vpos, 0, 0, &area);
12178 if (*glyph == NULL)
12179 return -1;
12181 /* Get the start of this tool-bar item's properties in
12182 f->tool_bar_items. */
12183 if (!tool_bar_item_info (f, *glyph, prop_idx))
12184 return -1;
12186 /* Is mouse on the highlighted item? */
12187 if (EQ (f->tool_bar_window, hlinfo->mouse_face_window)
12188 && *vpos >= hlinfo->mouse_face_beg_row
12189 && *vpos <= hlinfo->mouse_face_end_row
12190 && (*vpos > hlinfo->mouse_face_beg_row
12191 || *hpos >= hlinfo->mouse_face_beg_col)
12192 && (*vpos < hlinfo->mouse_face_end_row
12193 || *hpos < hlinfo->mouse_face_end_col
12194 || hlinfo->mouse_face_past_end))
12195 return 0;
12197 return 1;
12201 /* EXPORT:
12202 Handle mouse button event on the tool-bar of frame F, at
12203 frame-relative coordinates X/Y. DOWN_P is 1 for a button press,
12204 0 for button release. MODIFIERS is event modifiers for button
12205 release. */
12207 void
12208 handle_tool_bar_click (struct frame *f, int x, int y, int down_p,
12209 int modifiers)
12211 Mouse_HLInfo *hlinfo = MOUSE_HL_INFO (f);
12212 struct window *w = XWINDOW (f->tool_bar_window);
12213 int hpos, vpos, prop_idx;
12214 struct glyph *glyph;
12215 Lisp_Object enabled_p;
12216 int ts;
12218 /* If not on the highlighted tool-bar item, and mouse-highlight is
12219 non-nil, return. This is so we generate the tool-bar button
12220 click only when the mouse button is released on the same item as
12221 where it was pressed. However, when mouse-highlight is disabled,
12222 generate the click when the button is released regardless of the
12223 highlight, since tool-bar items are not highlighted in that
12224 case. */
12225 frame_to_window_pixel_xy (w, &x, &y);
12226 ts = get_tool_bar_item (f, x, y, &glyph, &hpos, &vpos, &prop_idx);
12227 if (ts == -1
12228 || (ts != 0 && !NILP (Vmouse_highlight)))
12229 return;
12231 /* When mouse-highlight is off, generate the click for the item
12232 where the button was pressed, disregarding where it was
12233 released. */
12234 if (NILP (Vmouse_highlight) && !down_p)
12235 prop_idx = last_tool_bar_item;
12237 /* If item is disabled, do nothing. */
12238 enabled_p = AREF (f->tool_bar_items, prop_idx + TOOL_BAR_ITEM_ENABLED_P);
12239 if (NILP (enabled_p))
12240 return;
12242 if (down_p)
12244 /* Show item in pressed state. */
12245 if (!NILP (Vmouse_highlight))
12246 show_mouse_face (hlinfo, DRAW_IMAGE_SUNKEN);
12247 last_tool_bar_item = prop_idx;
12249 else
12251 Lisp_Object key, frame;
12252 struct input_event event;
12253 EVENT_INIT (event);
12255 /* Show item in released state. */
12256 if (!NILP (Vmouse_highlight))
12257 show_mouse_face (hlinfo, DRAW_IMAGE_RAISED);
12259 key = AREF (f->tool_bar_items, prop_idx + TOOL_BAR_ITEM_KEY);
12261 XSETFRAME (frame, f);
12262 event.kind = TOOL_BAR_EVENT;
12263 event.frame_or_window = frame;
12264 event.arg = frame;
12265 kbd_buffer_store_event (&event);
12267 event.kind = TOOL_BAR_EVENT;
12268 event.frame_or_window = frame;
12269 event.arg = key;
12270 event.modifiers = modifiers;
12271 kbd_buffer_store_event (&event);
12272 last_tool_bar_item = -1;
12277 /* Possibly highlight a tool-bar item on frame F when mouse moves to
12278 tool-bar window-relative coordinates X/Y. Called from
12279 note_mouse_highlight. */
12281 static void
12282 note_tool_bar_highlight (struct frame *f, int x, int y)
12284 Lisp_Object window = f->tool_bar_window;
12285 struct window *w = XWINDOW (window);
12286 Display_Info *dpyinfo = FRAME_X_DISPLAY_INFO (f);
12287 Mouse_HLInfo *hlinfo = MOUSE_HL_INFO (f);
12288 int hpos, vpos;
12289 struct glyph *glyph;
12290 struct glyph_row *row;
12291 int i;
12292 Lisp_Object enabled_p;
12293 int prop_idx;
12294 enum draw_glyphs_face draw = DRAW_IMAGE_RAISED;
12295 int mouse_down_p, rc;
12297 /* Function note_mouse_highlight is called with negative X/Y
12298 values when mouse moves outside of the frame. */
12299 if (x <= 0 || y <= 0)
12301 clear_mouse_face (hlinfo);
12302 return;
12305 rc = get_tool_bar_item (f, x, y, &glyph, &hpos, &vpos, &prop_idx);
12306 if (rc < 0)
12308 /* Not on tool-bar item. */
12309 clear_mouse_face (hlinfo);
12310 return;
12312 else if (rc == 0)
12313 /* On same tool-bar item as before. */
12314 goto set_help_echo;
12316 clear_mouse_face (hlinfo);
12318 /* Mouse is down, but on different tool-bar item? */
12319 mouse_down_p = (dpyinfo->grabbed
12320 && f == last_mouse_frame
12321 && FRAME_LIVE_P (f));
12322 if (mouse_down_p
12323 && last_tool_bar_item != prop_idx)
12324 return;
12326 draw = mouse_down_p ? DRAW_IMAGE_SUNKEN : DRAW_IMAGE_RAISED;
12328 /* If tool-bar item is not enabled, don't highlight it. */
12329 enabled_p = AREF (f->tool_bar_items, prop_idx + TOOL_BAR_ITEM_ENABLED_P);
12330 if (!NILP (enabled_p) && !NILP (Vmouse_highlight))
12332 /* Compute the x-position of the glyph. In front and past the
12333 image is a space. We include this in the highlighted area. */
12334 row = MATRIX_ROW (w->current_matrix, vpos);
12335 for (i = x = 0; i < hpos; ++i)
12336 x += row->glyphs[TEXT_AREA][i].pixel_width;
12338 /* Record this as the current active region. */
12339 hlinfo->mouse_face_beg_col = hpos;
12340 hlinfo->mouse_face_beg_row = vpos;
12341 hlinfo->mouse_face_beg_x = x;
12342 hlinfo->mouse_face_beg_y = row->y;
12343 hlinfo->mouse_face_past_end = 0;
12345 hlinfo->mouse_face_end_col = hpos + 1;
12346 hlinfo->mouse_face_end_row = vpos;
12347 hlinfo->mouse_face_end_x = x + glyph->pixel_width;
12348 hlinfo->mouse_face_end_y = row->y;
12349 hlinfo->mouse_face_window = window;
12350 hlinfo->mouse_face_face_id = TOOL_BAR_FACE_ID;
12352 /* Display it as active. */
12353 show_mouse_face (hlinfo, draw);
12356 set_help_echo:
12358 /* Set help_echo_string to a help string to display for this tool-bar item.
12359 XTread_socket does the rest. */
12360 help_echo_object = help_echo_window = Qnil;
12361 help_echo_pos = -1;
12362 help_echo_string = AREF (f->tool_bar_items, prop_idx + TOOL_BAR_ITEM_HELP);
12363 if (NILP (help_echo_string))
12364 help_echo_string = AREF (f->tool_bar_items, prop_idx + TOOL_BAR_ITEM_CAPTION);
12367 #endif /* HAVE_WINDOW_SYSTEM */
12371 /************************************************************************
12372 Horizontal scrolling
12373 ************************************************************************/
12375 static int hscroll_window_tree (Lisp_Object);
12376 static int hscroll_windows (Lisp_Object);
12378 /* For all leaf windows in the window tree rooted at WINDOW, set their
12379 hscroll value so that PT is (i) visible in the window, and (ii) so
12380 that it is not within a certain margin at the window's left and
12381 right border. Value is non-zero if any window's hscroll has been
12382 changed. */
12384 static int
12385 hscroll_window_tree (Lisp_Object window)
12387 int hscrolled_p = 0;
12388 int hscroll_relative_p = FLOATP (Vhscroll_step);
12389 int hscroll_step_abs = 0;
12390 double hscroll_step_rel = 0;
12392 if (hscroll_relative_p)
12394 hscroll_step_rel = XFLOAT_DATA (Vhscroll_step);
12395 if (hscroll_step_rel < 0)
12397 hscroll_relative_p = 0;
12398 hscroll_step_abs = 0;
12401 else if (TYPE_RANGED_INTEGERP (int, Vhscroll_step))
12403 hscroll_step_abs = XINT (Vhscroll_step);
12404 if (hscroll_step_abs < 0)
12405 hscroll_step_abs = 0;
12407 else
12408 hscroll_step_abs = 0;
12410 while (WINDOWP (window))
12412 struct window *w = XWINDOW (window);
12414 if (WINDOWP (w->contents))
12415 hscrolled_p |= hscroll_window_tree (w->contents);
12416 else if (w->cursor.vpos >= 0)
12418 int h_margin;
12419 int text_area_width;
12420 struct glyph_row *current_cursor_row
12421 = MATRIX_ROW (w->current_matrix, w->cursor.vpos);
12422 struct glyph_row *desired_cursor_row
12423 = MATRIX_ROW (w->desired_matrix, w->cursor.vpos);
12424 struct glyph_row *cursor_row
12425 = (desired_cursor_row->enabled_p
12426 ? desired_cursor_row
12427 : current_cursor_row);
12428 int row_r2l_p = cursor_row->reversed_p;
12430 text_area_width = window_box_width (w, TEXT_AREA);
12432 /* Scroll when cursor is inside this scroll margin. */
12433 h_margin = hscroll_margin * WINDOW_FRAME_COLUMN_WIDTH (w);
12435 if (!NILP (Fbuffer_local_value (Qauto_hscroll_mode, w->contents))
12436 /* For left-to-right rows, hscroll when cursor is either
12437 (i) inside the right hscroll margin, or (ii) if it is
12438 inside the left margin and the window is already
12439 hscrolled. */
12440 && ((!row_r2l_p
12441 && ((w->hscroll
12442 && w->cursor.x <= h_margin)
12443 || (cursor_row->enabled_p
12444 && cursor_row->truncated_on_right_p
12445 && (w->cursor.x >= text_area_width - h_margin))))
12446 /* For right-to-left rows, the logic is similar,
12447 except that rules for scrolling to left and right
12448 are reversed. E.g., if cursor.x <= h_margin, we
12449 need to hscroll "to the right" unconditionally,
12450 and that will scroll the screen to the left so as
12451 to reveal the next portion of the row. */
12452 || (row_r2l_p
12453 && ((cursor_row->enabled_p
12454 /* FIXME: It is confusing to set the
12455 truncated_on_right_p flag when R2L rows
12456 are actually truncated on the left. */
12457 && cursor_row->truncated_on_right_p
12458 && w->cursor.x <= h_margin)
12459 || (w->hscroll
12460 && (w->cursor.x >= text_area_width - h_margin))))))
12462 struct it it;
12463 ptrdiff_t hscroll;
12464 struct buffer *saved_current_buffer;
12465 ptrdiff_t pt;
12466 int wanted_x;
12468 /* Find point in a display of infinite width. */
12469 saved_current_buffer = current_buffer;
12470 current_buffer = XBUFFER (w->contents);
12472 if (w == XWINDOW (selected_window))
12473 pt = PT;
12474 else
12475 pt = clip_to_bounds (BEGV, marker_position (w->pointm), ZV);
12477 /* Move iterator to pt starting at cursor_row->start in
12478 a line with infinite width. */
12479 init_to_row_start (&it, w, cursor_row);
12480 it.last_visible_x = INFINITY;
12481 move_it_in_display_line_to (&it, pt, -1, MOVE_TO_POS);
12482 current_buffer = saved_current_buffer;
12484 /* Position cursor in window. */
12485 if (!hscroll_relative_p && hscroll_step_abs == 0)
12486 hscroll = max (0, (it.current_x
12487 - (ITERATOR_AT_END_OF_LINE_P (&it)
12488 ? (text_area_width - 4 * FRAME_COLUMN_WIDTH (it.f))
12489 : (text_area_width / 2))))
12490 / FRAME_COLUMN_WIDTH (it.f);
12491 else if ((!row_r2l_p
12492 && w->cursor.x >= text_area_width - h_margin)
12493 || (row_r2l_p && w->cursor.x <= h_margin))
12495 if (hscroll_relative_p)
12496 wanted_x = text_area_width * (1 - hscroll_step_rel)
12497 - h_margin;
12498 else
12499 wanted_x = text_area_width
12500 - hscroll_step_abs * FRAME_COLUMN_WIDTH (it.f)
12501 - h_margin;
12502 hscroll
12503 = max (0, it.current_x - wanted_x) / FRAME_COLUMN_WIDTH (it.f);
12505 else
12507 if (hscroll_relative_p)
12508 wanted_x = text_area_width * hscroll_step_rel
12509 + h_margin;
12510 else
12511 wanted_x = hscroll_step_abs * FRAME_COLUMN_WIDTH (it.f)
12512 + h_margin;
12513 hscroll
12514 = max (0, it.current_x - wanted_x) / FRAME_COLUMN_WIDTH (it.f);
12516 hscroll = max (hscroll, w->min_hscroll);
12518 /* Don't prevent redisplay optimizations if hscroll
12519 hasn't changed, as it will unnecessarily slow down
12520 redisplay. */
12521 if (w->hscroll != hscroll)
12523 XBUFFER (w->contents)->prevent_redisplay_optimizations_p = 1;
12524 w->hscroll = hscroll;
12525 hscrolled_p = 1;
12530 window = w->next;
12533 /* Value is non-zero if hscroll of any leaf window has been changed. */
12534 return hscrolled_p;
12538 /* Set hscroll so that cursor is visible and not inside horizontal
12539 scroll margins for all windows in the tree rooted at WINDOW. See
12540 also hscroll_window_tree above. Value is non-zero if any window's
12541 hscroll has been changed. If it has, desired matrices on the frame
12542 of WINDOW are cleared. */
12544 static int
12545 hscroll_windows (Lisp_Object window)
12547 int hscrolled_p = hscroll_window_tree (window);
12548 if (hscrolled_p)
12549 clear_desired_matrices (XFRAME (WINDOW_FRAME (XWINDOW (window))));
12550 return hscrolled_p;
12555 /************************************************************************
12556 Redisplay
12557 ************************************************************************/
12559 /* Variables holding some state of redisplay if GLYPH_DEBUG is defined
12560 to a non-zero value. This is sometimes handy to have in a debugger
12561 session. */
12563 #ifdef GLYPH_DEBUG
12565 /* First and last unchanged row for try_window_id. */
12567 static int debug_first_unchanged_at_end_vpos;
12568 static int debug_last_unchanged_at_beg_vpos;
12570 /* Delta vpos and y. */
12572 static int debug_dvpos, debug_dy;
12574 /* Delta in characters and bytes for try_window_id. */
12576 static ptrdiff_t debug_delta, debug_delta_bytes;
12578 /* Values of window_end_pos and window_end_vpos at the end of
12579 try_window_id. */
12581 static ptrdiff_t debug_end_vpos;
12583 /* Append a string to W->desired_matrix->method. FMT is a printf
12584 format string. If trace_redisplay_p is non-zero also printf the
12585 resulting string to stderr. */
12587 static void debug_method_add (struct window *, char const *, ...)
12588 ATTRIBUTE_FORMAT_PRINTF (2, 3);
12590 static void
12591 debug_method_add (struct window *w, char const *fmt, ...)
12593 void *ptr = w;
12594 char *method = w->desired_matrix->method;
12595 int len = strlen (method);
12596 int size = sizeof w->desired_matrix->method;
12597 int remaining = size - len - 1;
12598 va_list ap;
12600 if (len && remaining)
12602 method[len] = '|';
12603 --remaining, ++len;
12606 va_start (ap, fmt);
12607 vsnprintf (method + len, remaining + 1, fmt, ap);
12608 va_end (ap);
12610 if (trace_redisplay_p)
12611 fprintf (stderr, "%p (%s): %s\n",
12612 ptr,
12613 ((BUFFERP (w->contents)
12614 && STRINGP (BVAR (XBUFFER (w->contents), name)))
12615 ? SSDATA (BVAR (XBUFFER (w->contents), name))
12616 : "no buffer"),
12617 method + len);
12620 #endif /* GLYPH_DEBUG */
12623 /* Value is non-zero if all changes in window W, which displays
12624 current_buffer, are in the text between START and END. START is a
12625 buffer position, END is given as a distance from Z. Used in
12626 redisplay_internal for display optimization. */
12628 static int
12629 text_outside_line_unchanged_p (struct window *w,
12630 ptrdiff_t start, ptrdiff_t end)
12632 int unchanged_p = 1;
12634 /* If text or overlays have changed, see where. */
12635 if (window_outdated (w))
12637 /* Gap in the line? */
12638 if (GPT < start || Z - GPT < end)
12639 unchanged_p = 0;
12641 /* Changes start in front of the line, or end after it? */
12642 if (unchanged_p
12643 && (BEG_UNCHANGED < start - 1
12644 || END_UNCHANGED < end))
12645 unchanged_p = 0;
12647 /* If selective display, can't optimize if changes start at the
12648 beginning of the line. */
12649 if (unchanged_p
12650 && INTEGERP (BVAR (current_buffer, selective_display))
12651 && XINT (BVAR (current_buffer, selective_display)) > 0
12652 && (BEG_UNCHANGED < start || GPT <= start))
12653 unchanged_p = 0;
12655 /* If there are overlays at the start or end of the line, these
12656 may have overlay strings with newlines in them. A change at
12657 START, for instance, may actually concern the display of such
12658 overlay strings as well, and they are displayed on different
12659 lines. So, quickly rule out this case. (For the future, it
12660 might be desirable to implement something more telling than
12661 just BEG/END_UNCHANGED.) */
12662 if (unchanged_p)
12664 if (BEG + BEG_UNCHANGED == start
12665 && overlay_touches_p (start))
12666 unchanged_p = 0;
12667 if (END_UNCHANGED == end
12668 && overlay_touches_p (Z - end))
12669 unchanged_p = 0;
12672 /* Under bidi reordering, adding or deleting a character in the
12673 beginning of a paragraph, before the first strong directional
12674 character, can change the base direction of the paragraph (unless
12675 the buffer specifies a fixed paragraph direction), which will
12676 require to redisplay the whole paragraph. It might be worthwhile
12677 to find the paragraph limits and widen the range of redisplayed
12678 lines to that, but for now just give up this optimization. */
12679 if (!NILP (BVAR (XBUFFER (w->contents), bidi_display_reordering))
12680 && NILP (BVAR (XBUFFER (w->contents), bidi_paragraph_direction)))
12681 unchanged_p = 0;
12684 return unchanged_p;
12688 /* Do a frame update, taking possible shortcuts into account. This is
12689 the main external entry point for redisplay.
12691 If the last redisplay displayed an echo area message and that message
12692 is no longer requested, we clear the echo area or bring back the
12693 mini-buffer if that is in use. */
12695 void
12696 redisplay (void)
12698 redisplay_internal ();
12702 static Lisp_Object
12703 overlay_arrow_string_or_property (Lisp_Object var)
12705 Lisp_Object val;
12707 if (val = Fget (var, Qoverlay_arrow_string), STRINGP (val))
12708 return val;
12710 return Voverlay_arrow_string;
12713 /* Return 1 if there are any overlay-arrows in current_buffer. */
12714 static int
12715 overlay_arrow_in_current_buffer_p (void)
12717 Lisp_Object vlist;
12719 for (vlist = Voverlay_arrow_variable_list;
12720 CONSP (vlist);
12721 vlist = XCDR (vlist))
12723 Lisp_Object var = XCAR (vlist);
12724 Lisp_Object val;
12726 if (!SYMBOLP (var))
12727 continue;
12728 val = find_symbol_value (var);
12729 if (MARKERP (val)
12730 && current_buffer == XMARKER (val)->buffer)
12731 return 1;
12733 return 0;
12737 /* Return 1 if any overlay_arrows have moved or overlay-arrow-string
12738 has changed. */
12740 static int
12741 overlay_arrows_changed_p (void)
12743 Lisp_Object vlist;
12745 for (vlist = Voverlay_arrow_variable_list;
12746 CONSP (vlist);
12747 vlist = XCDR (vlist))
12749 Lisp_Object var = XCAR (vlist);
12750 Lisp_Object val, pstr;
12752 if (!SYMBOLP (var))
12753 continue;
12754 val = find_symbol_value (var);
12755 if (!MARKERP (val))
12756 continue;
12757 if (! EQ (COERCE_MARKER (val),
12758 Fget (var, Qlast_arrow_position))
12759 || ! (pstr = overlay_arrow_string_or_property (var),
12760 EQ (pstr, Fget (var, Qlast_arrow_string))))
12761 return 1;
12763 return 0;
12766 /* Mark overlay arrows to be updated on next redisplay. */
12768 static void
12769 update_overlay_arrows (int up_to_date)
12771 Lisp_Object vlist;
12773 for (vlist = Voverlay_arrow_variable_list;
12774 CONSP (vlist);
12775 vlist = XCDR (vlist))
12777 Lisp_Object var = XCAR (vlist);
12779 if (!SYMBOLP (var))
12780 continue;
12782 if (up_to_date > 0)
12784 Lisp_Object val = find_symbol_value (var);
12785 Fput (var, Qlast_arrow_position,
12786 COERCE_MARKER (val));
12787 Fput (var, Qlast_arrow_string,
12788 overlay_arrow_string_or_property (var));
12790 else if (up_to_date < 0
12791 || !NILP (Fget (var, Qlast_arrow_position)))
12793 Fput (var, Qlast_arrow_position, Qt);
12794 Fput (var, Qlast_arrow_string, Qt);
12800 /* Return overlay arrow string to display at row.
12801 Return integer (bitmap number) for arrow bitmap in left fringe.
12802 Return nil if no overlay arrow. */
12804 static Lisp_Object
12805 overlay_arrow_at_row (struct it *it, struct glyph_row *row)
12807 Lisp_Object vlist;
12809 for (vlist = Voverlay_arrow_variable_list;
12810 CONSP (vlist);
12811 vlist = XCDR (vlist))
12813 Lisp_Object var = XCAR (vlist);
12814 Lisp_Object val;
12816 if (!SYMBOLP (var))
12817 continue;
12819 val = find_symbol_value (var);
12821 if (MARKERP (val)
12822 && current_buffer == XMARKER (val)->buffer
12823 && (MATRIX_ROW_START_CHARPOS (row) == marker_position (val)))
12825 if (FRAME_WINDOW_P (it->f)
12826 /* FIXME: if ROW->reversed_p is set, this should test
12827 the right fringe, not the left one. */
12828 && WINDOW_LEFT_FRINGE_WIDTH (it->w) > 0)
12830 #ifdef HAVE_WINDOW_SYSTEM
12831 if (val = Fget (var, Qoverlay_arrow_bitmap), SYMBOLP (val))
12833 int fringe_bitmap;
12834 if ((fringe_bitmap = lookup_fringe_bitmap (val)) != 0)
12835 return make_number (fringe_bitmap);
12837 #endif
12838 return make_number (-1); /* Use default arrow bitmap. */
12840 return overlay_arrow_string_or_property (var);
12844 return Qnil;
12847 /* Return 1 if point moved out of or into a composition. Otherwise
12848 return 0. PREV_BUF and PREV_PT are the last point buffer and
12849 position. BUF and PT are the current point buffer and position. */
12851 static int
12852 check_point_in_composition (struct buffer *prev_buf, ptrdiff_t prev_pt,
12853 struct buffer *buf, ptrdiff_t pt)
12855 ptrdiff_t start, end;
12856 Lisp_Object prop;
12857 Lisp_Object buffer;
12859 XSETBUFFER (buffer, buf);
12860 /* Check a composition at the last point if point moved within the
12861 same buffer. */
12862 if (prev_buf == buf)
12864 if (prev_pt == pt)
12865 /* Point didn't move. */
12866 return 0;
12868 if (prev_pt > BUF_BEGV (buf) && prev_pt < BUF_ZV (buf)
12869 && find_composition (prev_pt, -1, &start, &end, &prop, buffer)
12870 && composition_valid_p (start, end, prop)
12871 && start < prev_pt && end > prev_pt)
12872 /* The last point was within the composition. Return 1 iff
12873 point moved out of the composition. */
12874 return (pt <= start || pt >= end);
12877 /* Check a composition at the current point. */
12878 return (pt > BUF_BEGV (buf) && pt < BUF_ZV (buf)
12879 && find_composition (pt, -1, &start, &end, &prop, buffer)
12880 && composition_valid_p (start, end, prop)
12881 && start < pt && end > pt);
12884 /* Reconsider the clip changes of buffer which is displayed in W. */
12886 static void
12887 reconsider_clip_changes (struct window *w)
12889 struct buffer *b = XBUFFER (w->contents);
12891 if (b->clip_changed
12892 && w->window_end_valid
12893 && w->current_matrix->buffer == b
12894 && w->current_matrix->zv == BUF_ZV (b)
12895 && w->current_matrix->begv == BUF_BEGV (b))
12896 b->clip_changed = 0;
12898 /* If display wasn't paused, and W is not a tool bar window, see if
12899 point has been moved into or out of a composition. In that case,
12900 we set b->clip_changed to 1 to force updating the screen. If
12901 b->clip_changed has already been set to 1, we can skip this
12902 check. */
12903 if (!b->clip_changed && w->window_end_valid)
12905 ptrdiff_t pt = (w == XWINDOW (selected_window)
12906 ? PT : marker_position (w->pointm));
12908 if ((w->current_matrix->buffer != b || pt != w->last_point)
12909 && check_point_in_composition (w->current_matrix->buffer,
12910 w->last_point, b, pt))
12911 b->clip_changed = 1;
12915 #define STOP_POLLING \
12916 do { if (! polling_stopped_here) stop_polling (); \
12917 polling_stopped_here = 1; } while (0)
12919 #define RESUME_POLLING \
12920 do { if (polling_stopped_here) start_polling (); \
12921 polling_stopped_here = 0; } while (0)
12924 /* Perhaps in the future avoid recentering windows if it
12925 is not necessary; currently that causes some problems. */
12927 static void
12928 redisplay_internal (void)
12930 struct window *w = XWINDOW (selected_window);
12931 struct window *sw;
12932 struct frame *fr;
12933 int pending;
12934 bool must_finish = 0, match_p;
12935 struct text_pos tlbufpos, tlendpos;
12936 int number_of_visible_frames;
12937 ptrdiff_t count;
12938 struct frame *sf;
12939 int polling_stopped_here = 0;
12940 Lisp_Object tail, frame;
12942 /* Non-zero means redisplay has to consider all windows on all
12943 frames. Zero means, only selected_window is considered. */
12944 int consider_all_windows_p;
12946 /* Non-zero means redisplay has to redisplay the miniwindow. */
12947 int update_miniwindow_p = 0;
12949 TRACE ((stderr, "redisplay_internal %d\n", redisplaying_p));
12951 /* No redisplay if running in batch mode or frame is not yet fully
12952 initialized, or redisplay is explicitly turned off by setting
12953 Vinhibit_redisplay. */
12954 if (FRAME_INITIAL_P (SELECTED_FRAME ())
12955 || !NILP (Vinhibit_redisplay))
12956 return;
12958 /* Don't examine these until after testing Vinhibit_redisplay.
12959 When Emacs is shutting down, perhaps because its connection to
12960 X has dropped, we should not look at them at all. */
12961 fr = XFRAME (w->frame);
12962 sf = SELECTED_FRAME ();
12964 if (!fr->glyphs_initialized_p)
12965 return;
12967 #if defined (USE_X_TOOLKIT) || defined (USE_GTK) || defined (HAVE_NS)
12968 if (popup_activated ())
12969 return;
12970 #endif
12972 /* I don't think this happens but let's be paranoid. */
12973 if (redisplaying_p)
12974 return;
12976 /* Record a function that clears redisplaying_p
12977 when we leave this function. */
12978 count = SPECPDL_INDEX ();
12979 record_unwind_protect_void (unwind_redisplay);
12980 redisplaying_p = 1;
12981 specbind (Qinhibit_free_realized_faces, Qnil);
12983 /* Record this function, so it appears on the profiler's backtraces. */
12984 record_in_backtrace (Qredisplay_internal, &Qnil, 0);
12986 FOR_EACH_FRAME (tail, frame)
12987 XFRAME (frame)->already_hscrolled_p = 0;
12989 retry:
12990 /* Remember the currently selected window. */
12991 sw = w;
12993 pending = 0;
12994 last_escape_glyph_frame = NULL;
12995 last_escape_glyph_face_id = (1 << FACE_ID_BITS);
12996 last_glyphless_glyph_frame = NULL;
12997 last_glyphless_glyph_face_id = (1 << FACE_ID_BITS);
12999 /* If new fonts have been loaded that make a glyph matrix adjustment
13000 necessary, do it. */
13001 if (fonts_changed_p)
13003 adjust_glyphs (NULL);
13004 ++windows_or_buffers_changed;
13005 fonts_changed_p = 0;
13008 /* If face_change_count is non-zero, init_iterator will free all
13009 realized faces, which includes the faces referenced from current
13010 matrices. So, we can't reuse current matrices in this case. */
13011 if (face_change_count)
13012 ++windows_or_buffers_changed;
13014 if ((FRAME_TERMCAP_P (sf) || FRAME_MSDOS_P (sf))
13015 && FRAME_TTY (sf)->previous_frame != sf)
13017 /* Since frames on a single ASCII terminal share the same
13018 display area, displaying a different frame means redisplay
13019 the whole thing. */
13020 windows_or_buffers_changed++;
13021 SET_FRAME_GARBAGED (sf);
13022 #ifndef DOS_NT
13023 set_tty_color_mode (FRAME_TTY (sf), sf);
13024 #endif
13025 FRAME_TTY (sf)->previous_frame = sf;
13028 /* Set the visible flags for all frames. Do this before checking for
13029 resized or garbaged frames; they want to know if their frames are
13030 visible. See the comment in frame.h for FRAME_SAMPLE_VISIBILITY. */
13031 number_of_visible_frames = 0;
13033 FOR_EACH_FRAME (tail, frame)
13035 struct frame *f = XFRAME (frame);
13037 if (FRAME_VISIBLE_P (f))
13038 ++number_of_visible_frames;
13039 clear_desired_matrices (f);
13042 /* Notice any pending interrupt request to change frame size. */
13043 do_pending_window_change (1);
13045 /* do_pending_window_change could change the selected_window due to
13046 frame resizing which makes the selected window too small. */
13047 if (WINDOWP (selected_window) && (w = XWINDOW (selected_window)) != sw)
13048 sw = w;
13050 /* Clear frames marked as garbaged. */
13051 clear_garbaged_frames ();
13053 /* Build menubar and tool-bar items. */
13054 if (NILP (Vmemory_full))
13055 prepare_menu_bars ();
13057 if (windows_or_buffers_changed)
13058 update_mode_lines++;
13060 reconsider_clip_changes (w);
13062 /* In most cases selected window displays current buffer. */
13063 match_p = XBUFFER (w->contents) == current_buffer;
13064 if (match_p)
13066 ptrdiff_t count1;
13068 /* Detect case that we need to write or remove a star in the mode line. */
13069 if ((SAVE_MODIFF < MODIFF) != w->last_had_star)
13071 w->update_mode_line = 1;
13072 if (buffer_shared_and_changed ())
13073 update_mode_lines++;
13076 /* Avoid invocation of point motion hooks by `current_column' below. */
13077 count1 = SPECPDL_INDEX ();
13078 specbind (Qinhibit_point_motion_hooks, Qt);
13080 if (mode_line_update_needed (w))
13081 w->update_mode_line = 1;
13083 unbind_to (count1, Qnil);
13086 consider_all_windows_p = (update_mode_lines
13087 || buffer_shared_and_changed ()
13088 || cursor_type_changed);
13090 /* If specs for an arrow have changed, do thorough redisplay
13091 to ensure we remove any arrow that should no longer exist. */
13092 if (overlay_arrows_changed_p ())
13093 consider_all_windows_p = windows_or_buffers_changed = 1;
13095 /* Normally the message* functions will have already displayed and
13096 updated the echo area, but the frame may have been trashed, or
13097 the update may have been preempted, so display the echo area
13098 again here. Checking message_cleared_p captures the case that
13099 the echo area should be cleared. */
13100 if ((!NILP (echo_area_buffer[0]) && !display_last_displayed_message_p)
13101 || (!NILP (echo_area_buffer[1]) && display_last_displayed_message_p)
13102 || (message_cleared_p
13103 && minibuf_level == 0
13104 /* If the mini-window is currently selected, this means the
13105 echo-area doesn't show through. */
13106 && !MINI_WINDOW_P (XWINDOW (selected_window))))
13108 int window_height_changed_p = echo_area_display (0);
13110 if (message_cleared_p)
13111 update_miniwindow_p = 1;
13113 must_finish = 1;
13115 /* If we don't display the current message, don't clear the
13116 message_cleared_p flag, because, if we did, we wouldn't clear
13117 the echo area in the next redisplay which doesn't preserve
13118 the echo area. */
13119 if (!display_last_displayed_message_p)
13120 message_cleared_p = 0;
13122 if (fonts_changed_p)
13123 goto retry;
13124 else if (window_height_changed_p)
13126 consider_all_windows_p = 1;
13127 ++update_mode_lines;
13128 ++windows_or_buffers_changed;
13130 /* If window configuration was changed, frames may have been
13131 marked garbaged. Clear them or we will experience
13132 surprises wrt scrolling. */
13133 clear_garbaged_frames ();
13136 else if (EQ (selected_window, minibuf_window)
13137 && (current_buffer->clip_changed || window_outdated (w))
13138 && resize_mini_window (w, 0))
13140 /* Resized active mini-window to fit the size of what it is
13141 showing if its contents might have changed. */
13142 must_finish = 1;
13143 /* FIXME: this causes all frames to be updated, which seems unnecessary
13144 since only the current frame needs to be considered. This function
13145 needs to be rewritten with two variables, consider_all_windows and
13146 consider_all_frames. */
13147 consider_all_windows_p = 1;
13148 ++windows_or_buffers_changed;
13149 ++update_mode_lines;
13151 /* If window configuration was changed, frames may have been
13152 marked garbaged. Clear them or we will experience
13153 surprises wrt scrolling. */
13154 clear_garbaged_frames ();
13157 /* If showing the region, and mark has changed, we must redisplay
13158 the whole window. The assignment to this_line_start_pos prevents
13159 the optimization directly below this if-statement. */
13160 if (((!NILP (Vtransient_mark_mode)
13161 && !NILP (BVAR (XBUFFER (w->contents), mark_active)))
13162 != (w->region_showing > 0))
13163 || (w->region_showing
13164 && w->region_showing
13165 != XINT (Fmarker_position (BVAR (XBUFFER (w->contents), mark)))))
13166 CHARPOS (this_line_start_pos) = 0;
13168 /* Optimize the case that only the line containing the cursor in the
13169 selected window has changed. Variables starting with this_ are
13170 set in display_line and record information about the line
13171 containing the cursor. */
13172 tlbufpos = this_line_start_pos;
13173 tlendpos = this_line_end_pos;
13174 if (!consider_all_windows_p
13175 && CHARPOS (tlbufpos) > 0
13176 && !w->update_mode_line
13177 && !current_buffer->clip_changed
13178 && !current_buffer->prevent_redisplay_optimizations_p
13179 && FRAME_VISIBLE_P (XFRAME (w->frame))
13180 && !FRAME_OBSCURED_P (XFRAME (w->frame))
13181 /* Make sure recorded data applies to current buffer, etc. */
13182 && this_line_buffer == current_buffer
13183 && match_p
13184 && !w->force_start
13185 && !w->optional_new_start
13186 /* Point must be on the line that we have info recorded about. */
13187 && PT >= CHARPOS (tlbufpos)
13188 && PT <= Z - CHARPOS (tlendpos)
13189 /* All text outside that line, including its final newline,
13190 must be unchanged. */
13191 && text_outside_line_unchanged_p (w, CHARPOS (tlbufpos),
13192 CHARPOS (tlendpos)))
13194 if (CHARPOS (tlbufpos) > BEGV
13195 && FETCH_BYTE (BYTEPOS (tlbufpos) - 1) != '\n'
13196 && (CHARPOS (tlbufpos) == ZV
13197 || FETCH_BYTE (BYTEPOS (tlbufpos)) == '\n'))
13198 /* Former continuation line has disappeared by becoming empty. */
13199 goto cancel;
13200 else if (window_outdated (w) || MINI_WINDOW_P (w))
13202 /* We have to handle the case of continuation around a
13203 wide-column character (see the comment in indent.c around
13204 line 1340).
13206 For instance, in the following case:
13208 -------- Insert --------
13209 K_A_N_\\ `a' K_A_N_a\ `X_' are wide-column chars.
13210 J_I_ ==> J_I_ `^^' are cursors.
13211 ^^ ^^
13212 -------- --------
13214 As we have to redraw the line above, we cannot use this
13215 optimization. */
13217 struct it it;
13218 int line_height_before = this_line_pixel_height;
13220 /* Note that start_display will handle the case that the
13221 line starting at tlbufpos is a continuation line. */
13222 start_display (&it, w, tlbufpos);
13224 /* Implementation note: It this still necessary? */
13225 if (it.current_x != this_line_start_x)
13226 goto cancel;
13228 TRACE ((stderr, "trying display optimization 1\n"));
13229 w->cursor.vpos = -1;
13230 overlay_arrow_seen = 0;
13231 it.vpos = this_line_vpos;
13232 it.current_y = this_line_y;
13233 it.glyph_row = MATRIX_ROW (w->desired_matrix, this_line_vpos);
13234 display_line (&it);
13236 /* If line contains point, is not continued,
13237 and ends at same distance from eob as before, we win. */
13238 if (w->cursor.vpos >= 0
13239 /* Line is not continued, otherwise this_line_start_pos
13240 would have been set to 0 in display_line. */
13241 && CHARPOS (this_line_start_pos)
13242 /* Line ends as before. */
13243 && CHARPOS (this_line_end_pos) == CHARPOS (tlendpos)
13244 /* Line has same height as before. Otherwise other lines
13245 would have to be shifted up or down. */
13246 && this_line_pixel_height == line_height_before)
13248 /* If this is not the window's last line, we must adjust
13249 the charstarts of the lines below. */
13250 if (it.current_y < it.last_visible_y)
13252 struct glyph_row *row
13253 = MATRIX_ROW (w->current_matrix, this_line_vpos + 1);
13254 ptrdiff_t delta, delta_bytes;
13256 /* We used to distinguish between two cases here,
13257 conditioned by Z - CHARPOS (tlendpos) == ZV, for
13258 when the line ends in a newline or the end of the
13259 buffer's accessible portion. But both cases did
13260 the same, so they were collapsed. */
13261 delta = (Z
13262 - CHARPOS (tlendpos)
13263 - MATRIX_ROW_START_CHARPOS (row));
13264 delta_bytes = (Z_BYTE
13265 - BYTEPOS (tlendpos)
13266 - MATRIX_ROW_START_BYTEPOS (row));
13268 increment_matrix_positions (w->current_matrix,
13269 this_line_vpos + 1,
13270 w->current_matrix->nrows,
13271 delta, delta_bytes);
13274 /* If this row displays text now but previously didn't,
13275 or vice versa, w->window_end_vpos may have to be
13276 adjusted. */
13277 if (MATRIX_ROW_DISPLAYS_TEXT_P (it.glyph_row - 1))
13279 if (w->window_end_vpos < this_line_vpos)
13280 w->window_end_vpos = this_line_vpos;
13282 else if (w->window_end_vpos == this_line_vpos
13283 && this_line_vpos > 0)
13284 w->window_end_vpos = this_line_vpos - 1;
13285 w->window_end_valid = 0;
13287 /* Update hint: No need to try to scroll in update_window. */
13288 w->desired_matrix->no_scrolling_p = 1;
13290 #ifdef GLYPH_DEBUG
13291 *w->desired_matrix->method = 0;
13292 debug_method_add (w, "optimization 1");
13293 #endif
13294 #ifdef HAVE_WINDOW_SYSTEM
13295 update_window_fringes (w, 0);
13296 #endif
13297 goto update;
13299 else
13300 goto cancel;
13302 else if (/* Cursor position hasn't changed. */
13303 PT == w->last_point
13304 /* Make sure the cursor was last displayed
13305 in this window. Otherwise we have to reposition it. */
13306 && 0 <= w->cursor.vpos
13307 && w->cursor.vpos < WINDOW_TOTAL_LINES (w))
13309 if (!must_finish)
13311 do_pending_window_change (1);
13312 /* If selected_window changed, redisplay again. */
13313 if (WINDOWP (selected_window)
13314 && (w = XWINDOW (selected_window)) != sw)
13315 goto retry;
13317 /* We used to always goto end_of_redisplay here, but this
13318 isn't enough if we have a blinking cursor. */
13319 if (w->cursor_off_p == w->last_cursor_off_p)
13320 goto end_of_redisplay;
13322 goto update;
13324 /* If highlighting the region, or if the cursor is in the echo area,
13325 then we can't just move the cursor. */
13326 else if (! (!NILP (Vtransient_mark_mode)
13327 && !NILP (BVAR (current_buffer, mark_active)))
13328 && (EQ (selected_window,
13329 BVAR (current_buffer, last_selected_window))
13330 || highlight_nonselected_windows)
13331 && !w->region_showing
13332 && NILP (Vshow_trailing_whitespace)
13333 && !cursor_in_echo_area)
13335 struct it it;
13336 struct glyph_row *row;
13338 /* Skip from tlbufpos to PT and see where it is. Note that
13339 PT may be in invisible text. If so, we will end at the
13340 next visible position. */
13341 init_iterator (&it, w, CHARPOS (tlbufpos), BYTEPOS (tlbufpos),
13342 NULL, DEFAULT_FACE_ID);
13343 it.current_x = this_line_start_x;
13344 it.current_y = this_line_y;
13345 it.vpos = this_line_vpos;
13347 /* The call to move_it_to stops in front of PT, but
13348 moves over before-strings. */
13349 move_it_to (&it, PT, -1, -1, -1, MOVE_TO_POS);
13351 if (it.vpos == this_line_vpos
13352 && (row = MATRIX_ROW (w->current_matrix, this_line_vpos),
13353 row->enabled_p))
13355 eassert (this_line_vpos == it.vpos);
13356 eassert (this_line_y == it.current_y);
13357 set_cursor_from_row (w, row, w->current_matrix, 0, 0, 0, 0);
13358 #ifdef GLYPH_DEBUG
13359 *w->desired_matrix->method = 0;
13360 debug_method_add (w, "optimization 3");
13361 #endif
13362 goto update;
13364 else
13365 goto cancel;
13368 cancel:
13369 /* Text changed drastically or point moved off of line. */
13370 SET_MATRIX_ROW_ENABLED_P (w->desired_matrix, this_line_vpos, 0);
13373 CHARPOS (this_line_start_pos) = 0;
13374 consider_all_windows_p |= buffer_shared_and_changed ();
13375 ++clear_face_cache_count;
13376 #ifdef HAVE_WINDOW_SYSTEM
13377 ++clear_image_cache_count;
13378 #endif
13380 /* Build desired matrices, and update the display. If
13381 consider_all_windows_p is non-zero, do it for all windows on all
13382 frames. Otherwise do it for selected_window, only. */
13384 if (consider_all_windows_p)
13386 FOR_EACH_FRAME (tail, frame)
13387 XFRAME (frame)->updated_p = 0;
13389 FOR_EACH_FRAME (tail, frame)
13391 struct frame *f = XFRAME (frame);
13393 /* We don't have to do anything for unselected terminal
13394 frames. */
13395 if ((FRAME_TERMCAP_P (f) || FRAME_MSDOS_P (f))
13396 && !EQ (FRAME_TTY (f)->top_frame, frame))
13397 continue;
13399 if (FRAME_WINDOW_P (f) || FRAME_TERMCAP_P (f) || f == sf)
13401 /* Mark all the scroll bars to be removed; we'll redeem
13402 the ones we want when we redisplay their windows. */
13403 if (FRAME_TERMINAL (f)->condemn_scroll_bars_hook)
13404 FRAME_TERMINAL (f)->condemn_scroll_bars_hook (f);
13406 if (FRAME_VISIBLE_P (f) && !FRAME_OBSCURED_P (f))
13407 redisplay_windows (FRAME_ROOT_WINDOW (f));
13409 /* The X error handler may have deleted that frame. */
13410 if (!FRAME_LIVE_P (f))
13411 continue;
13413 /* Any scroll bars which redisplay_windows should have
13414 nuked should now go away. */
13415 if (FRAME_TERMINAL (f)->judge_scroll_bars_hook)
13416 FRAME_TERMINAL (f)->judge_scroll_bars_hook (f);
13418 /* If fonts changed, display again. */
13419 /* ??? rms: I suspect it is a mistake to jump all the way
13420 back to retry here. It should just retry this frame. */
13421 if (fonts_changed_p)
13422 goto retry;
13424 if (FRAME_VISIBLE_P (f) && !FRAME_OBSCURED_P (f))
13426 /* See if we have to hscroll. */
13427 if (!f->already_hscrolled_p)
13429 f->already_hscrolled_p = 1;
13430 if (hscroll_windows (f->root_window))
13431 goto retry;
13434 /* Prevent various kinds of signals during display
13435 update. stdio is not robust about handling
13436 signals, which can cause an apparent I/O
13437 error. */
13438 if (interrupt_input)
13439 unrequest_sigio ();
13440 STOP_POLLING;
13442 /* Update the display. */
13443 set_window_update_flags (XWINDOW (f->root_window), 1);
13444 pending |= update_frame (f, 0, 0);
13445 f->updated_p = 1;
13450 eassert (EQ (XFRAME (selected_frame)->selected_window, selected_window));
13452 if (!pending)
13454 /* Do the mark_window_display_accurate after all windows have
13455 been redisplayed because this call resets flags in buffers
13456 which are needed for proper redisplay. */
13457 FOR_EACH_FRAME (tail, frame)
13459 struct frame *f = XFRAME (frame);
13460 if (f->updated_p)
13462 mark_window_display_accurate (f->root_window, 1);
13463 if (FRAME_TERMINAL (f)->frame_up_to_date_hook)
13464 FRAME_TERMINAL (f)->frame_up_to_date_hook (f);
13469 else if (FRAME_VISIBLE_P (sf) && !FRAME_OBSCURED_P (sf))
13471 Lisp_Object mini_window = FRAME_MINIBUF_WINDOW (sf);
13472 struct frame *mini_frame;
13474 displayed_buffer = XBUFFER (XWINDOW (selected_window)->contents);
13475 /* Use list_of_error, not Qerror, so that
13476 we catch only errors and don't run the debugger. */
13477 internal_condition_case_1 (redisplay_window_1, selected_window,
13478 list_of_error,
13479 redisplay_window_error);
13480 if (update_miniwindow_p)
13481 internal_condition_case_1 (redisplay_window_1, mini_window,
13482 list_of_error,
13483 redisplay_window_error);
13485 /* Compare desired and current matrices, perform output. */
13487 update:
13488 /* If fonts changed, display again. */
13489 if (fonts_changed_p)
13490 goto retry;
13492 /* Prevent various kinds of signals during display update.
13493 stdio is not robust about handling signals,
13494 which can cause an apparent I/O error. */
13495 if (interrupt_input)
13496 unrequest_sigio ();
13497 STOP_POLLING;
13499 if (FRAME_VISIBLE_P (sf) && !FRAME_OBSCURED_P (sf))
13501 if (hscroll_windows (selected_window))
13502 goto retry;
13504 XWINDOW (selected_window)->must_be_updated_p = 1;
13505 pending = update_frame (sf, 0, 0);
13508 /* We may have called echo_area_display at the top of this
13509 function. If the echo area is on another frame, that may
13510 have put text on a frame other than the selected one, so the
13511 above call to update_frame would not have caught it. Catch
13512 it here. */
13513 mini_window = FRAME_MINIBUF_WINDOW (sf);
13514 mini_frame = XFRAME (WINDOW_FRAME (XWINDOW (mini_window)));
13516 if (mini_frame != sf && FRAME_WINDOW_P (mini_frame))
13518 XWINDOW (mini_window)->must_be_updated_p = 1;
13519 pending |= update_frame (mini_frame, 0, 0);
13520 if (!pending && hscroll_windows (mini_window))
13521 goto retry;
13525 /* If display was paused because of pending input, make sure we do a
13526 thorough update the next time. */
13527 if (pending)
13529 /* Prevent the optimization at the beginning of
13530 redisplay_internal that tries a single-line update of the
13531 line containing the cursor in the selected window. */
13532 CHARPOS (this_line_start_pos) = 0;
13534 /* Let the overlay arrow be updated the next time. */
13535 update_overlay_arrows (0);
13537 /* If we pause after scrolling, some rows in the current
13538 matrices of some windows are not valid. */
13539 if (!WINDOW_FULL_WIDTH_P (w)
13540 && !FRAME_WINDOW_P (XFRAME (w->frame)))
13541 update_mode_lines = 1;
13543 else
13545 if (!consider_all_windows_p)
13547 /* This has already been done above if
13548 consider_all_windows_p is set. */
13549 mark_window_display_accurate_1 (w, 1);
13551 /* Say overlay arrows are up to date. */
13552 update_overlay_arrows (1);
13554 if (FRAME_TERMINAL (sf)->frame_up_to_date_hook != 0)
13555 FRAME_TERMINAL (sf)->frame_up_to_date_hook (sf);
13558 update_mode_lines = 0;
13559 windows_or_buffers_changed = 0;
13560 cursor_type_changed = 0;
13563 /* Start SIGIO interrupts coming again. Having them off during the
13564 code above makes it less likely one will discard output, but not
13565 impossible, since there might be stuff in the system buffer here.
13566 But it is much hairier to try to do anything about that. */
13567 if (interrupt_input)
13568 request_sigio ();
13569 RESUME_POLLING;
13571 /* If a frame has become visible which was not before, redisplay
13572 again, so that we display it. Expose events for such a frame
13573 (which it gets when becoming visible) don't call the parts of
13574 redisplay constructing glyphs, so simply exposing a frame won't
13575 display anything in this case. So, we have to display these
13576 frames here explicitly. */
13577 if (!pending)
13579 int new_count = 0;
13581 FOR_EACH_FRAME (tail, frame)
13583 int this_is_visible = 0;
13585 if (XFRAME (frame)->visible)
13586 this_is_visible = 1;
13588 if (this_is_visible)
13589 new_count++;
13592 if (new_count != number_of_visible_frames)
13593 windows_or_buffers_changed++;
13596 /* Change frame size now if a change is pending. */
13597 do_pending_window_change (1);
13599 /* If we just did a pending size change, or have additional
13600 visible frames, or selected_window changed, redisplay again. */
13601 if ((windows_or_buffers_changed && !pending)
13602 || (WINDOWP (selected_window) && (w = XWINDOW (selected_window)) != sw))
13603 goto retry;
13605 /* Clear the face and image caches.
13607 We used to do this only if consider_all_windows_p. But the cache
13608 needs to be cleared if a timer creates images in the current
13609 buffer (e.g. the test case in Bug#6230). */
13611 if (clear_face_cache_count > CLEAR_FACE_CACHE_COUNT)
13613 clear_face_cache (0);
13614 clear_face_cache_count = 0;
13617 #ifdef HAVE_WINDOW_SYSTEM
13618 if (clear_image_cache_count > CLEAR_IMAGE_CACHE_COUNT)
13620 clear_image_caches (Qnil);
13621 clear_image_cache_count = 0;
13623 #endif /* HAVE_WINDOW_SYSTEM */
13625 end_of_redisplay:
13626 unbind_to (count, Qnil);
13627 RESUME_POLLING;
13631 /* Redisplay, but leave alone any recent echo area message unless
13632 another message has been requested in its place.
13634 This is useful in situations where you need to redisplay but no
13635 user action has occurred, making it inappropriate for the message
13636 area to be cleared. See tracking_off and
13637 wait_reading_process_output for examples of these situations.
13639 FROM_WHERE is an integer saying from where this function was
13640 called. This is useful for debugging. */
13642 void
13643 redisplay_preserve_echo_area (int from_where)
13645 TRACE ((stderr, "redisplay_preserve_echo_area (%d)\n", from_where));
13647 if (!NILP (echo_area_buffer[1]))
13649 /* We have a previously displayed message, but no current
13650 message. Redisplay the previous message. */
13651 display_last_displayed_message_p = 1;
13652 redisplay_internal ();
13653 display_last_displayed_message_p = 0;
13655 else
13656 redisplay_internal ();
13658 if (FRAME_RIF (SELECTED_FRAME ()) != NULL
13659 && FRAME_RIF (SELECTED_FRAME ())->flush_display_optional)
13660 FRAME_RIF (SELECTED_FRAME ())->flush_display_optional (NULL);
13664 /* Function registered with record_unwind_protect in redisplay_internal. */
13666 static void
13667 unwind_redisplay (void)
13669 redisplaying_p = 0;
13673 /* Mark the display of leaf window W as accurate or inaccurate.
13674 If ACCURATE_P is non-zero mark display of W as accurate. If
13675 ACCURATE_P is zero, arrange for W to be redisplayed the next
13676 time redisplay_internal is called. */
13678 static void
13679 mark_window_display_accurate_1 (struct window *w, int accurate_p)
13681 struct buffer *b = XBUFFER (w->contents);
13683 w->last_modified = accurate_p ? BUF_MODIFF (b) : 0;
13684 w->last_overlay_modified = accurate_p ? BUF_OVERLAY_MODIFF (b) : 0;
13685 w->last_had_star = BUF_MODIFF (b) > BUF_SAVE_MODIFF (b);
13687 if (accurate_p)
13689 b->clip_changed = 0;
13690 b->prevent_redisplay_optimizations_p = 0;
13692 BUF_UNCHANGED_MODIFIED (b) = BUF_MODIFF (b);
13693 BUF_OVERLAY_UNCHANGED_MODIFIED (b) = BUF_OVERLAY_MODIFF (b);
13694 BUF_BEG_UNCHANGED (b) = BUF_GPT (b) - BUF_BEG (b);
13695 BUF_END_UNCHANGED (b) = BUF_Z (b) - BUF_GPT (b);
13697 w->current_matrix->buffer = b;
13698 w->current_matrix->begv = BUF_BEGV (b);
13699 w->current_matrix->zv = BUF_ZV (b);
13701 w->last_cursor = w->cursor;
13702 w->last_cursor_off_p = w->cursor_off_p;
13704 if (w == XWINDOW (selected_window))
13705 w->last_point = BUF_PT (b);
13706 else
13707 w->last_point = marker_position (w->pointm);
13709 w->window_end_valid = 1;
13710 w->update_mode_line = 0;
13715 /* Mark the display of windows in the window tree rooted at WINDOW as
13716 accurate or inaccurate. If ACCURATE_P is non-zero mark display of
13717 windows as accurate. If ACCURATE_P is zero, arrange for windows to
13718 be redisplayed the next time redisplay_internal is called. */
13720 void
13721 mark_window_display_accurate (Lisp_Object window, int accurate_p)
13723 struct window *w;
13725 for (; !NILP (window); window = w->next)
13727 w = XWINDOW (window);
13728 if (WINDOWP (w->contents))
13729 mark_window_display_accurate (w->contents, accurate_p);
13730 else
13731 mark_window_display_accurate_1 (w, accurate_p);
13734 if (accurate_p)
13735 update_overlay_arrows (1);
13736 else
13737 /* Force a thorough redisplay the next time by setting
13738 last_arrow_position and last_arrow_string to t, which is
13739 unequal to any useful value of Voverlay_arrow_... */
13740 update_overlay_arrows (-1);
13744 /* Return value in display table DP (Lisp_Char_Table *) for character
13745 C. Since a display table doesn't have any parent, we don't have to
13746 follow parent. Do not call this function directly but use the
13747 macro DISP_CHAR_VECTOR. */
13749 Lisp_Object
13750 disp_char_vector (struct Lisp_Char_Table *dp, int c)
13752 Lisp_Object val;
13754 if (ASCII_CHAR_P (c))
13756 val = dp->ascii;
13757 if (SUB_CHAR_TABLE_P (val))
13758 val = XSUB_CHAR_TABLE (val)->contents[c];
13760 else
13762 Lisp_Object table;
13764 XSETCHAR_TABLE (table, dp);
13765 val = char_table_ref (table, c);
13767 if (NILP (val))
13768 val = dp->defalt;
13769 return val;
13774 /***********************************************************************
13775 Window Redisplay
13776 ***********************************************************************/
13778 /* Redisplay all leaf windows in the window tree rooted at WINDOW. */
13780 static void
13781 redisplay_windows (Lisp_Object window)
13783 while (!NILP (window))
13785 struct window *w = XWINDOW (window);
13787 if (WINDOWP (w->contents))
13788 redisplay_windows (w->contents);
13789 else if (BUFFERP (w->contents))
13791 displayed_buffer = XBUFFER (w->contents);
13792 /* Use list_of_error, not Qerror, so that
13793 we catch only errors and don't run the debugger. */
13794 internal_condition_case_1 (redisplay_window_0, window,
13795 list_of_error,
13796 redisplay_window_error);
13799 window = w->next;
13803 static Lisp_Object
13804 redisplay_window_error (Lisp_Object ignore)
13806 displayed_buffer->display_error_modiff = BUF_MODIFF (displayed_buffer);
13807 return Qnil;
13810 static Lisp_Object
13811 redisplay_window_0 (Lisp_Object window)
13813 if (displayed_buffer->display_error_modiff < BUF_MODIFF (displayed_buffer))
13814 redisplay_window (window, 0);
13815 return Qnil;
13818 static Lisp_Object
13819 redisplay_window_1 (Lisp_Object window)
13821 if (displayed_buffer->display_error_modiff < BUF_MODIFF (displayed_buffer))
13822 redisplay_window (window, 1);
13823 return Qnil;
13827 /* Set cursor position of W. PT is assumed to be displayed in ROW.
13828 DELTA and DELTA_BYTES are the numbers of characters and bytes by
13829 which positions recorded in ROW differ from current buffer
13830 positions.
13832 Return 0 if cursor is not on this row, 1 otherwise. */
13834 static int
13835 set_cursor_from_row (struct window *w, struct glyph_row *row,
13836 struct glyph_matrix *matrix,
13837 ptrdiff_t delta, ptrdiff_t delta_bytes,
13838 int dy, int dvpos)
13840 struct glyph *glyph = row->glyphs[TEXT_AREA];
13841 struct glyph *end = glyph + row->used[TEXT_AREA];
13842 struct glyph *cursor = NULL;
13843 /* The last known character position in row. */
13844 ptrdiff_t last_pos = MATRIX_ROW_START_CHARPOS (row) + delta;
13845 int x = row->x;
13846 ptrdiff_t pt_old = PT - delta;
13847 ptrdiff_t pos_before = MATRIX_ROW_START_CHARPOS (row) + delta;
13848 ptrdiff_t pos_after = MATRIX_ROW_END_CHARPOS (row) + delta;
13849 struct glyph *glyph_before = glyph - 1, *glyph_after = end;
13850 /* A glyph beyond the edge of TEXT_AREA which we should never
13851 touch. */
13852 struct glyph *glyphs_end = end;
13853 /* Non-zero means we've found a match for cursor position, but that
13854 glyph has the avoid_cursor_p flag set. */
13855 int match_with_avoid_cursor = 0;
13856 /* Non-zero means we've seen at least one glyph that came from a
13857 display string. */
13858 int string_seen = 0;
13859 /* Largest and smallest buffer positions seen so far during scan of
13860 glyph row. */
13861 ptrdiff_t bpos_max = pos_before;
13862 ptrdiff_t bpos_min = pos_after;
13863 /* Last buffer position covered by an overlay string with an integer
13864 `cursor' property. */
13865 ptrdiff_t bpos_covered = 0;
13866 /* Non-zero means the display string on which to display the cursor
13867 comes from a text property, not from an overlay. */
13868 int string_from_text_prop = 0;
13870 /* Don't even try doing anything if called for a mode-line or
13871 header-line row, since the rest of the code isn't prepared to
13872 deal with such calamities. */
13873 eassert (!row->mode_line_p);
13874 if (row->mode_line_p)
13875 return 0;
13877 /* Skip over glyphs not having an object at the start and the end of
13878 the row. These are special glyphs like truncation marks on
13879 terminal frames. */
13880 if (MATRIX_ROW_DISPLAYS_TEXT_P (row))
13882 if (!row->reversed_p)
13884 while (glyph < end
13885 && INTEGERP (glyph->object)
13886 && glyph->charpos < 0)
13888 x += glyph->pixel_width;
13889 ++glyph;
13891 while (end > glyph
13892 && INTEGERP ((end - 1)->object)
13893 /* CHARPOS is zero for blanks and stretch glyphs
13894 inserted by extend_face_to_end_of_line. */
13895 && (end - 1)->charpos <= 0)
13896 --end;
13897 glyph_before = glyph - 1;
13898 glyph_after = end;
13900 else
13902 struct glyph *g;
13904 /* If the glyph row is reversed, we need to process it from back
13905 to front, so swap the edge pointers. */
13906 glyphs_end = end = glyph - 1;
13907 glyph += row->used[TEXT_AREA] - 1;
13909 while (glyph > end + 1
13910 && INTEGERP (glyph->object)
13911 && glyph->charpos < 0)
13913 --glyph;
13914 x -= glyph->pixel_width;
13916 if (INTEGERP (glyph->object) && glyph->charpos < 0)
13917 --glyph;
13918 /* By default, in reversed rows we put the cursor on the
13919 rightmost (first in the reading order) glyph. */
13920 for (g = end + 1; g < glyph; g++)
13921 x += g->pixel_width;
13922 while (end < glyph
13923 && INTEGERP ((end + 1)->object)
13924 && (end + 1)->charpos <= 0)
13925 ++end;
13926 glyph_before = glyph + 1;
13927 glyph_after = end;
13930 else if (row->reversed_p)
13932 /* In R2L rows that don't display text, put the cursor on the
13933 rightmost glyph. Case in point: an empty last line that is
13934 part of an R2L paragraph. */
13935 cursor = end - 1;
13936 /* Avoid placing the cursor on the last glyph of the row, where
13937 on terminal frames we hold the vertical border between
13938 adjacent windows. */
13939 if (!FRAME_WINDOW_P (WINDOW_XFRAME (w))
13940 && !WINDOW_RIGHTMOST_P (w)
13941 && cursor == row->glyphs[LAST_AREA] - 1)
13942 cursor--;
13943 x = -1; /* will be computed below, at label compute_x */
13946 /* Step 1: Try to find the glyph whose character position
13947 corresponds to point. If that's not possible, find 2 glyphs
13948 whose character positions are the closest to point, one before
13949 point, the other after it. */
13950 if (!row->reversed_p)
13951 while (/* not marched to end of glyph row */
13952 glyph < end
13953 /* glyph was not inserted by redisplay for internal purposes */
13954 && !INTEGERP (glyph->object))
13956 if (BUFFERP (glyph->object))
13958 ptrdiff_t dpos = glyph->charpos - pt_old;
13960 if (glyph->charpos > bpos_max)
13961 bpos_max = glyph->charpos;
13962 if (glyph->charpos < bpos_min)
13963 bpos_min = glyph->charpos;
13964 if (!glyph->avoid_cursor_p)
13966 /* If we hit point, we've found the glyph on which to
13967 display the cursor. */
13968 if (dpos == 0)
13970 match_with_avoid_cursor = 0;
13971 break;
13973 /* See if we've found a better approximation to
13974 POS_BEFORE or to POS_AFTER. */
13975 if (0 > dpos && dpos > pos_before - pt_old)
13977 pos_before = glyph->charpos;
13978 glyph_before = glyph;
13980 else if (0 < dpos && dpos < pos_after - pt_old)
13982 pos_after = glyph->charpos;
13983 glyph_after = glyph;
13986 else if (dpos == 0)
13987 match_with_avoid_cursor = 1;
13989 else if (STRINGP (glyph->object))
13991 Lisp_Object chprop;
13992 ptrdiff_t glyph_pos = glyph->charpos;
13994 chprop = Fget_char_property (make_number (glyph_pos), Qcursor,
13995 glyph->object);
13996 if (!NILP (chprop))
13998 /* If the string came from a `display' text property,
13999 look up the buffer position of that property and
14000 use that position to update bpos_max, as if we
14001 actually saw such a position in one of the row's
14002 glyphs. This helps with supporting integer values
14003 of `cursor' property on the display string in
14004 situations where most or all of the row's buffer
14005 text is completely covered by display properties,
14006 so that no glyph with valid buffer positions is
14007 ever seen in the row. */
14008 ptrdiff_t prop_pos =
14009 string_buffer_position_lim (glyph->object, pos_before,
14010 pos_after, 0);
14012 if (prop_pos >= pos_before)
14013 bpos_max = prop_pos - 1;
14015 if (INTEGERP (chprop))
14017 bpos_covered = bpos_max + XINT (chprop);
14018 /* If the `cursor' property covers buffer positions up
14019 to and including point, we should display cursor on
14020 this glyph. Note that, if a `cursor' property on one
14021 of the string's characters has an integer value, we
14022 will break out of the loop below _before_ we get to
14023 the position match above. IOW, integer values of
14024 the `cursor' property override the "exact match for
14025 point" strategy of positioning the cursor. */
14026 /* Implementation note: bpos_max == pt_old when, e.g.,
14027 we are in an empty line, where bpos_max is set to
14028 MATRIX_ROW_START_CHARPOS, see above. */
14029 if (bpos_max <= pt_old && bpos_covered >= pt_old)
14031 cursor = glyph;
14032 break;
14036 string_seen = 1;
14038 x += glyph->pixel_width;
14039 ++glyph;
14041 else if (glyph > end) /* row is reversed */
14042 while (!INTEGERP (glyph->object))
14044 if (BUFFERP (glyph->object))
14046 ptrdiff_t dpos = glyph->charpos - pt_old;
14048 if (glyph->charpos > bpos_max)
14049 bpos_max = glyph->charpos;
14050 if (glyph->charpos < bpos_min)
14051 bpos_min = glyph->charpos;
14052 if (!glyph->avoid_cursor_p)
14054 if (dpos == 0)
14056 match_with_avoid_cursor = 0;
14057 break;
14059 if (0 > dpos && dpos > pos_before - pt_old)
14061 pos_before = glyph->charpos;
14062 glyph_before = glyph;
14064 else if (0 < dpos && dpos < pos_after - pt_old)
14066 pos_after = glyph->charpos;
14067 glyph_after = glyph;
14070 else if (dpos == 0)
14071 match_with_avoid_cursor = 1;
14073 else if (STRINGP (glyph->object))
14075 Lisp_Object chprop;
14076 ptrdiff_t glyph_pos = glyph->charpos;
14078 chprop = Fget_char_property (make_number (glyph_pos), Qcursor,
14079 glyph->object);
14080 if (!NILP (chprop))
14082 ptrdiff_t prop_pos =
14083 string_buffer_position_lim (glyph->object, pos_before,
14084 pos_after, 0);
14086 if (prop_pos >= pos_before)
14087 bpos_max = prop_pos - 1;
14089 if (INTEGERP (chprop))
14091 bpos_covered = bpos_max + XINT (chprop);
14092 /* If the `cursor' property covers buffer positions up
14093 to and including point, we should display cursor on
14094 this glyph. */
14095 if (bpos_max <= pt_old && bpos_covered >= pt_old)
14097 cursor = glyph;
14098 break;
14101 string_seen = 1;
14103 --glyph;
14104 if (glyph == glyphs_end) /* don't dereference outside TEXT_AREA */
14106 x--; /* can't use any pixel_width */
14107 break;
14109 x -= glyph->pixel_width;
14112 /* Step 2: If we didn't find an exact match for point, we need to
14113 look for a proper place to put the cursor among glyphs between
14114 GLYPH_BEFORE and GLYPH_AFTER. */
14115 if (!((row->reversed_p ? glyph > glyphs_end : glyph < glyphs_end)
14116 && BUFFERP (glyph->object) && glyph->charpos == pt_old)
14117 && !(bpos_max < pt_old && pt_old <= bpos_covered))
14119 /* An empty line has a single glyph whose OBJECT is zero and
14120 whose CHARPOS is the position of a newline on that line.
14121 Note that on a TTY, there are more glyphs after that, which
14122 were produced by extend_face_to_end_of_line, but their
14123 CHARPOS is zero or negative. */
14124 int empty_line_p =
14125 (row->reversed_p ? glyph > glyphs_end : glyph < glyphs_end)
14126 && INTEGERP (glyph->object) && glyph->charpos > 0
14127 /* On a TTY, continued and truncated rows also have a glyph at
14128 their end whose OBJECT is zero and whose CHARPOS is
14129 positive (the continuation and truncation glyphs), but such
14130 rows are obviously not "empty". */
14131 && !(row->continued_p || row->truncated_on_right_p);
14133 if (row->ends_in_ellipsis_p && pos_after == last_pos)
14135 ptrdiff_t ellipsis_pos;
14137 /* Scan back over the ellipsis glyphs. */
14138 if (!row->reversed_p)
14140 ellipsis_pos = (glyph - 1)->charpos;
14141 while (glyph > row->glyphs[TEXT_AREA]
14142 && (glyph - 1)->charpos == ellipsis_pos)
14143 glyph--, x -= glyph->pixel_width;
14144 /* That loop always goes one position too far, including
14145 the glyph before the ellipsis. So scan forward over
14146 that one. */
14147 x += glyph->pixel_width;
14148 glyph++;
14150 else /* row is reversed */
14152 ellipsis_pos = (glyph + 1)->charpos;
14153 while (glyph < row->glyphs[TEXT_AREA] + row->used[TEXT_AREA] - 1
14154 && (glyph + 1)->charpos == ellipsis_pos)
14155 glyph++, x += glyph->pixel_width;
14156 x -= glyph->pixel_width;
14157 glyph--;
14160 else if (match_with_avoid_cursor)
14162 cursor = glyph_after;
14163 x = -1;
14165 else if (string_seen)
14167 int incr = row->reversed_p ? -1 : +1;
14169 /* Need to find the glyph that came out of a string which is
14170 present at point. That glyph is somewhere between
14171 GLYPH_BEFORE and GLYPH_AFTER, and it came from a string
14172 positioned between POS_BEFORE and POS_AFTER in the
14173 buffer. */
14174 struct glyph *start, *stop;
14175 ptrdiff_t pos = pos_before;
14177 x = -1;
14179 /* If the row ends in a newline from a display string,
14180 reordering could have moved the glyphs belonging to the
14181 string out of the [GLYPH_BEFORE..GLYPH_AFTER] range. So
14182 in this case we extend the search to the last glyph in
14183 the row that was not inserted by redisplay. */
14184 if (row->ends_in_newline_from_string_p)
14186 glyph_after = end;
14187 pos_after = MATRIX_ROW_END_CHARPOS (row) + delta;
14190 /* GLYPH_BEFORE and GLYPH_AFTER are the glyphs that
14191 correspond to POS_BEFORE and POS_AFTER, respectively. We
14192 need START and STOP in the order that corresponds to the
14193 row's direction as given by its reversed_p flag. If the
14194 directionality of characters between POS_BEFORE and
14195 POS_AFTER is the opposite of the row's base direction,
14196 these characters will have been reordered for display,
14197 and we need to reverse START and STOP. */
14198 if (!row->reversed_p)
14200 start = min (glyph_before, glyph_after);
14201 stop = max (glyph_before, glyph_after);
14203 else
14205 start = max (glyph_before, glyph_after);
14206 stop = min (glyph_before, glyph_after);
14208 for (glyph = start + incr;
14209 row->reversed_p ? glyph > stop : glyph < stop; )
14212 /* Any glyphs that come from the buffer are here because
14213 of bidi reordering. Skip them, and only pay
14214 attention to glyphs that came from some string. */
14215 if (STRINGP (glyph->object))
14217 Lisp_Object str;
14218 ptrdiff_t tem;
14219 /* If the display property covers the newline, we
14220 need to search for it one position farther. */
14221 ptrdiff_t lim = pos_after
14222 + (pos_after == MATRIX_ROW_END_CHARPOS (row) + delta);
14224 string_from_text_prop = 0;
14225 str = glyph->object;
14226 tem = string_buffer_position_lim (str, pos, lim, 0);
14227 if (tem == 0 /* from overlay */
14228 || pos <= tem)
14230 /* If the string from which this glyph came is
14231 found in the buffer at point, or at position
14232 that is closer to point than pos_after, then
14233 we've found the glyph we've been looking for.
14234 If it comes from an overlay (tem == 0), and
14235 it has the `cursor' property on one of its
14236 glyphs, record that glyph as a candidate for
14237 displaying the cursor. (As in the
14238 unidirectional version, we will display the
14239 cursor on the last candidate we find.) */
14240 if (tem == 0
14241 || tem == pt_old
14242 || (tem - pt_old > 0 && tem < pos_after))
14244 /* The glyphs from this string could have
14245 been reordered. Find the one with the
14246 smallest string position. Or there could
14247 be a character in the string with the
14248 `cursor' property, which means display
14249 cursor on that character's glyph. */
14250 ptrdiff_t strpos = glyph->charpos;
14252 if (tem)
14254 cursor = glyph;
14255 string_from_text_prop = 1;
14257 for ( ;
14258 (row->reversed_p ? glyph > stop : glyph < stop)
14259 && EQ (glyph->object, str);
14260 glyph += incr)
14262 Lisp_Object cprop;
14263 ptrdiff_t gpos = glyph->charpos;
14265 cprop = Fget_char_property (make_number (gpos),
14266 Qcursor,
14267 glyph->object);
14268 if (!NILP (cprop))
14270 cursor = glyph;
14271 break;
14273 if (tem && glyph->charpos < strpos)
14275 strpos = glyph->charpos;
14276 cursor = glyph;
14280 if (tem == pt_old
14281 || (tem - pt_old > 0 && tem < pos_after))
14282 goto compute_x;
14284 if (tem)
14285 pos = tem + 1; /* don't find previous instances */
14287 /* This string is not what we want; skip all of the
14288 glyphs that came from it. */
14289 while ((row->reversed_p ? glyph > stop : glyph < stop)
14290 && EQ (glyph->object, str))
14291 glyph += incr;
14293 else
14294 glyph += incr;
14297 /* If we reached the end of the line, and END was from a string,
14298 the cursor is not on this line. */
14299 if (cursor == NULL
14300 && (row->reversed_p ? glyph <= end : glyph >= end)
14301 && (row->reversed_p ? end > glyphs_end : end < glyphs_end)
14302 && STRINGP (end->object)
14303 && row->continued_p)
14304 return 0;
14306 /* A truncated row may not include PT among its character positions.
14307 Setting the cursor inside the scroll margin will trigger
14308 recalculation of hscroll in hscroll_window_tree. But if a
14309 display string covers point, defer to the string-handling
14310 code below to figure this out. */
14311 else if (row->truncated_on_left_p && pt_old < bpos_min)
14313 cursor = glyph_before;
14314 x = -1;
14316 else if ((row->truncated_on_right_p && pt_old > bpos_max)
14317 /* Zero-width characters produce no glyphs. */
14318 || (!empty_line_p
14319 && (row->reversed_p
14320 ? glyph_after > glyphs_end
14321 : glyph_after < glyphs_end)))
14323 cursor = glyph_after;
14324 x = -1;
14328 compute_x:
14329 if (cursor != NULL)
14330 glyph = cursor;
14331 else if (glyph == glyphs_end
14332 && pos_before == pos_after
14333 && STRINGP ((row->reversed_p
14334 ? row->glyphs[TEXT_AREA] + row->used[TEXT_AREA] - 1
14335 : row->glyphs[TEXT_AREA])->object))
14337 /* If all the glyphs of this row came from strings, put the
14338 cursor on the first glyph of the row. This avoids having the
14339 cursor outside of the text area in this very rare and hard
14340 use case. */
14341 glyph =
14342 row->reversed_p
14343 ? row->glyphs[TEXT_AREA] + row->used[TEXT_AREA] - 1
14344 : row->glyphs[TEXT_AREA];
14346 if (x < 0)
14348 struct glyph *g;
14350 /* Need to compute x that corresponds to GLYPH. */
14351 for (g = row->glyphs[TEXT_AREA], x = row->x; g < glyph; g++)
14353 if (g >= row->glyphs[TEXT_AREA] + row->used[TEXT_AREA])
14354 emacs_abort ();
14355 x += g->pixel_width;
14359 /* ROW could be part of a continued line, which, under bidi
14360 reordering, might have other rows whose start and end charpos
14361 occlude point. Only set w->cursor if we found a better
14362 approximation to the cursor position than we have from previously
14363 examined candidate rows belonging to the same continued line. */
14364 if (/* we already have a candidate row */
14365 w->cursor.vpos >= 0
14366 /* that candidate is not the row we are processing */
14367 && MATRIX_ROW (matrix, w->cursor.vpos) != row
14368 /* Make sure cursor.vpos specifies a row whose start and end
14369 charpos occlude point, and it is valid candidate for being a
14370 cursor-row. This is because some callers of this function
14371 leave cursor.vpos at the row where the cursor was displayed
14372 during the last redisplay cycle. */
14373 && MATRIX_ROW_START_CHARPOS (MATRIX_ROW (matrix, w->cursor.vpos)) <= pt_old
14374 && pt_old <= MATRIX_ROW_END_CHARPOS (MATRIX_ROW (matrix, w->cursor.vpos))
14375 && cursor_row_p (MATRIX_ROW (matrix, w->cursor.vpos)))
14377 struct glyph *g1 =
14378 MATRIX_ROW_GLYPH_START (matrix, w->cursor.vpos) + w->cursor.hpos;
14380 /* Don't consider glyphs that are outside TEXT_AREA. */
14381 if (!(row->reversed_p ? glyph > glyphs_end : glyph < glyphs_end))
14382 return 0;
14383 /* Keep the candidate whose buffer position is the closest to
14384 point or has the `cursor' property. */
14385 if (/* previous candidate is a glyph in TEXT_AREA of that row */
14386 w->cursor.hpos >= 0
14387 && w->cursor.hpos < MATRIX_ROW_USED (matrix, w->cursor.vpos)
14388 && ((BUFFERP (g1->object)
14389 && (g1->charpos == pt_old /* an exact match always wins */
14390 || (BUFFERP (glyph->object)
14391 && eabs (g1->charpos - pt_old)
14392 < eabs (glyph->charpos - pt_old))))
14393 /* previous candidate is a glyph from a string that has
14394 a non-nil `cursor' property */
14395 || (STRINGP (g1->object)
14396 && (!NILP (Fget_char_property (make_number (g1->charpos),
14397 Qcursor, g1->object))
14398 /* previous candidate is from the same display
14399 string as this one, and the display string
14400 came from a text property */
14401 || (EQ (g1->object, glyph->object)
14402 && string_from_text_prop)
14403 /* this candidate is from newline and its
14404 position is not an exact match */
14405 || (INTEGERP (glyph->object)
14406 && glyph->charpos != pt_old)))))
14407 return 0;
14408 /* If this candidate gives an exact match, use that. */
14409 if (!((BUFFERP (glyph->object) && glyph->charpos == pt_old)
14410 /* If this candidate is a glyph created for the
14411 terminating newline of a line, and point is on that
14412 newline, it wins because it's an exact match. */
14413 || (!row->continued_p
14414 && INTEGERP (glyph->object)
14415 && glyph->charpos == 0
14416 && pt_old == MATRIX_ROW_END_CHARPOS (row) - 1))
14417 /* Otherwise, keep the candidate that comes from a row
14418 spanning less buffer positions. This may win when one or
14419 both candidate positions are on glyphs that came from
14420 display strings, for which we cannot compare buffer
14421 positions. */
14422 && MATRIX_ROW_END_CHARPOS (MATRIX_ROW (matrix, w->cursor.vpos))
14423 - MATRIX_ROW_START_CHARPOS (MATRIX_ROW (matrix, w->cursor.vpos))
14424 < MATRIX_ROW_END_CHARPOS (row) - MATRIX_ROW_START_CHARPOS (row))
14425 return 0;
14427 w->cursor.hpos = glyph - row->glyphs[TEXT_AREA];
14428 w->cursor.x = x;
14429 w->cursor.vpos = MATRIX_ROW_VPOS (row, matrix) + dvpos;
14430 w->cursor.y = row->y + dy;
14432 if (w == XWINDOW (selected_window))
14434 if (!row->continued_p
14435 && !MATRIX_ROW_CONTINUATION_LINE_P (row)
14436 && row->x == 0)
14438 this_line_buffer = XBUFFER (w->contents);
14440 CHARPOS (this_line_start_pos)
14441 = MATRIX_ROW_START_CHARPOS (row) + delta;
14442 BYTEPOS (this_line_start_pos)
14443 = MATRIX_ROW_START_BYTEPOS (row) + delta_bytes;
14445 CHARPOS (this_line_end_pos)
14446 = Z - (MATRIX_ROW_END_CHARPOS (row) + delta);
14447 BYTEPOS (this_line_end_pos)
14448 = Z_BYTE - (MATRIX_ROW_END_BYTEPOS (row) + delta_bytes);
14450 this_line_y = w->cursor.y;
14451 this_line_pixel_height = row->height;
14452 this_line_vpos = w->cursor.vpos;
14453 this_line_start_x = row->x;
14455 else
14456 CHARPOS (this_line_start_pos) = 0;
14459 return 1;
14463 /* Run window scroll functions, if any, for WINDOW with new window
14464 start STARTP. Sets the window start of WINDOW to that position.
14466 We assume that the window's buffer is really current. */
14468 static struct text_pos
14469 run_window_scroll_functions (Lisp_Object window, struct text_pos startp)
14471 struct window *w = XWINDOW (window);
14472 SET_MARKER_FROM_TEXT_POS (w->start, startp);
14474 eassert (current_buffer == XBUFFER (w->contents));
14476 if (!NILP (Vwindow_scroll_functions))
14478 run_hook_with_args_2 (Qwindow_scroll_functions, window,
14479 make_number (CHARPOS (startp)));
14480 SET_TEXT_POS_FROM_MARKER (startp, w->start);
14481 /* In case the hook functions switch buffers. */
14482 set_buffer_internal (XBUFFER (w->contents));
14485 return startp;
14489 /* Make sure the line containing the cursor is fully visible.
14490 A value of 1 means there is nothing to be done.
14491 (Either the line is fully visible, or it cannot be made so,
14492 or we cannot tell.)
14494 If FORCE_P is non-zero, return 0 even if partial visible cursor row
14495 is higher than window.
14497 A value of 0 means the caller should do scrolling
14498 as if point had gone off the screen. */
14500 static int
14501 cursor_row_fully_visible_p (struct window *w, int force_p, int current_matrix_p)
14503 struct glyph_matrix *matrix;
14504 struct glyph_row *row;
14505 int window_height;
14507 if (!make_cursor_line_fully_visible_p)
14508 return 1;
14510 /* It's not always possible to find the cursor, e.g, when a window
14511 is full of overlay strings. Don't do anything in that case. */
14512 if (w->cursor.vpos < 0)
14513 return 1;
14515 matrix = current_matrix_p ? w->current_matrix : w->desired_matrix;
14516 row = MATRIX_ROW (matrix, w->cursor.vpos);
14518 /* If the cursor row is not partially visible, there's nothing to do. */
14519 if (!MATRIX_ROW_PARTIALLY_VISIBLE_P (w, row))
14520 return 1;
14522 /* If the row the cursor is in is taller than the window's height,
14523 it's not clear what to do, so do nothing. */
14524 window_height = window_box_height (w);
14525 if (row->height >= window_height)
14527 if (!force_p || MINI_WINDOW_P (w)
14528 || w->vscroll || w->cursor.vpos == 0)
14529 return 1;
14531 return 0;
14535 /* Try scrolling PT into view in window WINDOW. JUST_THIS_ONE_P
14536 non-zero means only WINDOW is redisplayed in redisplay_internal.
14537 TEMP_SCROLL_STEP has the same meaning as emacs_scroll_step, and is used
14538 in redisplay_window to bring a partially visible line into view in
14539 the case that only the cursor has moved.
14541 LAST_LINE_MISFIT should be nonzero if we're scrolling because the
14542 last screen line's vertical height extends past the end of the screen.
14544 Value is
14546 1 if scrolling succeeded
14548 0 if scrolling didn't find point.
14550 -1 if new fonts have been loaded so that we must interrupt
14551 redisplay, adjust glyph matrices, and try again. */
14553 enum
14555 SCROLLING_SUCCESS,
14556 SCROLLING_FAILED,
14557 SCROLLING_NEED_LARGER_MATRICES
14560 /* If scroll-conservatively is more than this, never recenter.
14562 If you change this, don't forget to update the doc string of
14563 `scroll-conservatively' and the Emacs manual. */
14564 #define SCROLL_LIMIT 100
14566 static int
14567 try_scrolling (Lisp_Object window, int just_this_one_p,
14568 ptrdiff_t arg_scroll_conservatively, ptrdiff_t scroll_step,
14569 int temp_scroll_step, int last_line_misfit)
14571 struct window *w = XWINDOW (window);
14572 struct frame *f = XFRAME (w->frame);
14573 struct text_pos pos, startp;
14574 struct it it;
14575 int this_scroll_margin, scroll_max, rc, height;
14576 int dy = 0, amount_to_scroll = 0, scroll_down_p = 0;
14577 int extra_scroll_margin_lines = last_line_misfit ? 1 : 0;
14578 Lisp_Object aggressive;
14579 /* We will never try scrolling more than this number of lines. */
14580 int scroll_limit = SCROLL_LIMIT;
14581 int frame_line_height = default_line_pixel_height (w);
14582 int window_total_lines
14583 = WINDOW_TOTAL_LINES (w) * FRAME_LINE_HEIGHT (f) / frame_line_height;
14585 #ifdef GLYPH_DEBUG
14586 debug_method_add (w, "try_scrolling");
14587 #endif
14589 SET_TEXT_POS_FROM_MARKER (startp, w->start);
14591 /* Compute scroll margin height in pixels. We scroll when point is
14592 within this distance from the top or bottom of the window. */
14593 if (scroll_margin > 0)
14594 this_scroll_margin = min (scroll_margin, window_total_lines / 4)
14595 * frame_line_height;
14596 else
14597 this_scroll_margin = 0;
14599 /* Force arg_scroll_conservatively to have a reasonable value, to
14600 avoid scrolling too far away with slow move_it_* functions. Note
14601 that the user can supply scroll-conservatively equal to
14602 `most-positive-fixnum', which can be larger than INT_MAX. */
14603 if (arg_scroll_conservatively > scroll_limit)
14605 arg_scroll_conservatively = scroll_limit + 1;
14606 scroll_max = scroll_limit * frame_line_height;
14608 else if (scroll_step || arg_scroll_conservatively || temp_scroll_step)
14609 /* Compute how much we should try to scroll maximally to bring
14610 point into view. */
14611 scroll_max = (max (scroll_step,
14612 max (arg_scroll_conservatively, temp_scroll_step))
14613 * frame_line_height);
14614 else if (NUMBERP (BVAR (current_buffer, scroll_down_aggressively))
14615 || NUMBERP (BVAR (current_buffer, scroll_up_aggressively)))
14616 /* We're trying to scroll because of aggressive scrolling but no
14617 scroll_step is set. Choose an arbitrary one. */
14618 scroll_max = 10 * frame_line_height;
14619 else
14620 scroll_max = 0;
14622 too_near_end:
14624 /* Decide whether to scroll down. */
14625 if (PT > CHARPOS (startp))
14627 int scroll_margin_y;
14629 /* Compute the pixel ypos of the scroll margin, then move IT to
14630 either that ypos or PT, whichever comes first. */
14631 start_display (&it, w, startp);
14632 scroll_margin_y = it.last_visible_y - this_scroll_margin
14633 - frame_line_height * extra_scroll_margin_lines;
14634 move_it_to (&it, PT, -1, scroll_margin_y - 1, -1,
14635 (MOVE_TO_POS | MOVE_TO_Y));
14637 if (PT > CHARPOS (it.current.pos))
14639 int y0 = line_bottom_y (&it);
14640 /* Compute how many pixels below window bottom to stop searching
14641 for PT. This avoids costly search for PT that is far away if
14642 the user limited scrolling by a small number of lines, but
14643 always finds PT if scroll_conservatively is set to a large
14644 number, such as most-positive-fixnum. */
14645 int slack = max (scroll_max, 10 * frame_line_height);
14646 int y_to_move = it.last_visible_y + slack;
14648 /* Compute the distance from the scroll margin to PT or to
14649 the scroll limit, whichever comes first. This should
14650 include the height of the cursor line, to make that line
14651 fully visible. */
14652 move_it_to (&it, PT, -1, y_to_move,
14653 -1, MOVE_TO_POS | MOVE_TO_Y);
14654 dy = line_bottom_y (&it) - y0;
14656 if (dy > scroll_max)
14657 return SCROLLING_FAILED;
14659 if (dy > 0)
14660 scroll_down_p = 1;
14664 if (scroll_down_p)
14666 /* Point is in or below the bottom scroll margin, so move the
14667 window start down. If scrolling conservatively, move it just
14668 enough down to make point visible. If scroll_step is set,
14669 move it down by scroll_step. */
14670 if (arg_scroll_conservatively)
14671 amount_to_scroll
14672 = min (max (dy, frame_line_height),
14673 frame_line_height * arg_scroll_conservatively);
14674 else if (scroll_step || temp_scroll_step)
14675 amount_to_scroll = scroll_max;
14676 else
14678 aggressive = BVAR (current_buffer, scroll_up_aggressively);
14679 height = WINDOW_BOX_TEXT_HEIGHT (w);
14680 if (NUMBERP (aggressive))
14682 double float_amount = XFLOATINT (aggressive) * height;
14683 int aggressive_scroll = float_amount;
14684 if (aggressive_scroll == 0 && float_amount > 0)
14685 aggressive_scroll = 1;
14686 /* Don't let point enter the scroll margin near top of
14687 the window. This could happen if the value of
14688 scroll_up_aggressively is too large and there are
14689 non-zero margins, because scroll_up_aggressively
14690 means put point that fraction of window height
14691 _from_the_bottom_margin_. */
14692 if (aggressive_scroll + 2*this_scroll_margin > height)
14693 aggressive_scroll = height - 2*this_scroll_margin;
14694 amount_to_scroll = dy + aggressive_scroll;
14698 if (amount_to_scroll <= 0)
14699 return SCROLLING_FAILED;
14701 start_display (&it, w, startp);
14702 if (arg_scroll_conservatively <= scroll_limit)
14703 move_it_vertically (&it, amount_to_scroll);
14704 else
14706 /* Extra precision for users who set scroll-conservatively
14707 to a large number: make sure the amount we scroll
14708 the window start is never less than amount_to_scroll,
14709 which was computed as distance from window bottom to
14710 point. This matters when lines at window top and lines
14711 below window bottom have different height. */
14712 struct it it1;
14713 void *it1data = NULL;
14714 /* We use a temporary it1 because line_bottom_y can modify
14715 its argument, if it moves one line down; see there. */
14716 int start_y;
14718 SAVE_IT (it1, it, it1data);
14719 start_y = line_bottom_y (&it1);
14720 do {
14721 RESTORE_IT (&it, &it, it1data);
14722 move_it_by_lines (&it, 1);
14723 SAVE_IT (it1, it, it1data);
14724 } while (line_bottom_y (&it1) - start_y < amount_to_scroll);
14727 /* If STARTP is unchanged, move it down another screen line. */
14728 if (CHARPOS (it.current.pos) == CHARPOS (startp))
14729 move_it_by_lines (&it, 1);
14730 startp = it.current.pos;
14732 else
14734 struct text_pos scroll_margin_pos = startp;
14735 int y_offset = 0;
14737 /* See if point is inside the scroll margin at the top of the
14738 window. */
14739 if (this_scroll_margin)
14741 int y_start;
14743 start_display (&it, w, startp);
14744 y_start = it.current_y;
14745 move_it_vertically (&it, this_scroll_margin);
14746 scroll_margin_pos = it.current.pos;
14747 /* If we didn't move enough before hitting ZV, request
14748 additional amount of scroll, to move point out of the
14749 scroll margin. */
14750 if (IT_CHARPOS (it) == ZV
14751 && it.current_y - y_start < this_scroll_margin)
14752 y_offset = this_scroll_margin - (it.current_y - y_start);
14755 if (PT < CHARPOS (scroll_margin_pos))
14757 /* Point is in the scroll margin at the top of the window or
14758 above what is displayed in the window. */
14759 int y0, y_to_move;
14761 /* Compute the vertical distance from PT to the scroll
14762 margin position. Move as far as scroll_max allows, or
14763 one screenful, or 10 screen lines, whichever is largest.
14764 Give up if distance is greater than scroll_max or if we
14765 didn't reach the scroll margin position. */
14766 SET_TEXT_POS (pos, PT, PT_BYTE);
14767 start_display (&it, w, pos);
14768 y0 = it.current_y;
14769 y_to_move = max (it.last_visible_y,
14770 max (scroll_max, 10 * frame_line_height));
14771 move_it_to (&it, CHARPOS (scroll_margin_pos), 0,
14772 y_to_move, -1,
14773 MOVE_TO_POS | MOVE_TO_X | MOVE_TO_Y);
14774 dy = it.current_y - y0;
14775 if (dy > scroll_max
14776 || IT_CHARPOS (it) < CHARPOS (scroll_margin_pos))
14777 return SCROLLING_FAILED;
14779 /* Additional scroll for when ZV was too close to point. */
14780 dy += y_offset;
14782 /* Compute new window start. */
14783 start_display (&it, w, startp);
14785 if (arg_scroll_conservatively)
14786 amount_to_scroll = max (dy, frame_line_height *
14787 max (scroll_step, temp_scroll_step));
14788 else if (scroll_step || temp_scroll_step)
14789 amount_to_scroll = scroll_max;
14790 else
14792 aggressive = BVAR (current_buffer, scroll_down_aggressively);
14793 height = WINDOW_BOX_TEXT_HEIGHT (w);
14794 if (NUMBERP (aggressive))
14796 double float_amount = XFLOATINT (aggressive) * height;
14797 int aggressive_scroll = float_amount;
14798 if (aggressive_scroll == 0 && float_amount > 0)
14799 aggressive_scroll = 1;
14800 /* Don't let point enter the scroll margin near
14801 bottom of the window, if the value of
14802 scroll_down_aggressively happens to be too
14803 large. */
14804 if (aggressive_scroll + 2*this_scroll_margin > height)
14805 aggressive_scroll = height - 2*this_scroll_margin;
14806 amount_to_scroll = dy + aggressive_scroll;
14810 if (amount_to_scroll <= 0)
14811 return SCROLLING_FAILED;
14813 move_it_vertically_backward (&it, amount_to_scroll);
14814 startp = it.current.pos;
14818 /* Run window scroll functions. */
14819 startp = run_window_scroll_functions (window, startp);
14821 /* Display the window. Give up if new fonts are loaded, or if point
14822 doesn't appear. */
14823 if (!try_window (window, startp, 0))
14824 rc = SCROLLING_NEED_LARGER_MATRICES;
14825 else if (w->cursor.vpos < 0)
14827 clear_glyph_matrix (w->desired_matrix);
14828 rc = SCROLLING_FAILED;
14830 else
14832 /* Maybe forget recorded base line for line number display. */
14833 if (!just_this_one_p
14834 || current_buffer->clip_changed
14835 || BEG_UNCHANGED < CHARPOS (startp))
14836 w->base_line_number = 0;
14838 /* If cursor ends up on a partially visible line,
14839 treat that as being off the bottom of the screen. */
14840 if (! cursor_row_fully_visible_p (w, extra_scroll_margin_lines <= 1, 0)
14841 /* It's possible that the cursor is on the first line of the
14842 buffer, which is partially obscured due to a vscroll
14843 (Bug#7537). In that case, avoid looping forever . */
14844 && extra_scroll_margin_lines < w->desired_matrix->nrows - 1)
14846 clear_glyph_matrix (w->desired_matrix);
14847 ++extra_scroll_margin_lines;
14848 goto too_near_end;
14850 rc = SCROLLING_SUCCESS;
14853 return rc;
14857 /* Compute a suitable window start for window W if display of W starts
14858 on a continuation line. Value is non-zero if a new window start
14859 was computed.
14861 The new window start will be computed, based on W's width, starting
14862 from the start of the continued line. It is the start of the
14863 screen line with the minimum distance from the old start W->start. */
14865 static int
14866 compute_window_start_on_continuation_line (struct window *w)
14868 struct text_pos pos, start_pos;
14869 int window_start_changed_p = 0;
14871 SET_TEXT_POS_FROM_MARKER (start_pos, w->start);
14873 /* If window start is on a continuation line... Window start may be
14874 < BEGV in case there's invisible text at the start of the
14875 buffer (M-x rmail, for example). */
14876 if (CHARPOS (start_pos) > BEGV
14877 && FETCH_BYTE (BYTEPOS (start_pos) - 1) != '\n')
14879 struct it it;
14880 struct glyph_row *row;
14882 /* Handle the case that the window start is out of range. */
14883 if (CHARPOS (start_pos) < BEGV)
14884 SET_TEXT_POS (start_pos, BEGV, BEGV_BYTE);
14885 else if (CHARPOS (start_pos) > ZV)
14886 SET_TEXT_POS (start_pos, ZV, ZV_BYTE);
14888 /* Find the start of the continued line. This should be fast
14889 because find_newline is fast (newline cache). */
14890 row = w->desired_matrix->rows + (WINDOW_WANTS_HEADER_LINE_P (w) ? 1 : 0);
14891 init_iterator (&it, w, CHARPOS (start_pos), BYTEPOS (start_pos),
14892 row, DEFAULT_FACE_ID);
14893 reseat_at_previous_visible_line_start (&it);
14895 /* If the line start is "too far" away from the window start,
14896 say it takes too much time to compute a new window start. */
14897 if (CHARPOS (start_pos) - IT_CHARPOS (it)
14898 < WINDOW_TOTAL_LINES (w) * WINDOW_TOTAL_COLS (w))
14900 int min_distance, distance;
14902 /* Move forward by display lines to find the new window
14903 start. If window width was enlarged, the new start can
14904 be expected to be > the old start. If window width was
14905 decreased, the new window start will be < the old start.
14906 So, we're looking for the display line start with the
14907 minimum distance from the old window start. */
14908 pos = it.current.pos;
14909 min_distance = INFINITY;
14910 while ((distance = eabs (CHARPOS (start_pos) - IT_CHARPOS (it))),
14911 distance < min_distance)
14913 min_distance = distance;
14914 pos = it.current.pos;
14915 if (it.line_wrap == WORD_WRAP)
14917 /* Under WORD_WRAP, move_it_by_lines is likely to
14918 overshoot and stop not at the first, but the
14919 second character from the left margin. So in
14920 that case, we need a more tight control on the X
14921 coordinate of the iterator than move_it_by_lines
14922 promises in its contract. The method is to first
14923 go to the last (rightmost) visible character of a
14924 line, then move to the leftmost character on the
14925 next line in a separate call. */
14926 move_it_to (&it, ZV, it.last_visible_x, it.current_y, -1,
14927 MOVE_TO_POS | MOVE_TO_X | MOVE_TO_Y);
14928 move_it_to (&it, ZV, 0,
14929 it.current_y + it.max_ascent + it.max_descent, -1,
14930 MOVE_TO_POS | MOVE_TO_X | MOVE_TO_Y);
14932 else
14933 move_it_by_lines (&it, 1);
14936 /* Set the window start there. */
14937 SET_MARKER_FROM_TEXT_POS (w->start, pos);
14938 window_start_changed_p = 1;
14942 return window_start_changed_p;
14946 /* Try cursor movement in case text has not changed in window WINDOW,
14947 with window start STARTP. Value is
14949 CURSOR_MOVEMENT_SUCCESS if successful
14951 CURSOR_MOVEMENT_CANNOT_BE_USED if this method cannot be used
14953 CURSOR_MOVEMENT_MUST_SCROLL if we know we have to scroll the
14954 display. *SCROLL_STEP is set to 1, under certain circumstances, if
14955 we want to scroll as if scroll-step were set to 1. See the code.
14957 CURSOR_MOVEMENT_NEED_LARGER_MATRICES if we need larger matrices, in
14958 which case we have to abort this redisplay, and adjust matrices
14959 first. */
14961 enum
14963 CURSOR_MOVEMENT_SUCCESS,
14964 CURSOR_MOVEMENT_CANNOT_BE_USED,
14965 CURSOR_MOVEMENT_MUST_SCROLL,
14966 CURSOR_MOVEMENT_NEED_LARGER_MATRICES
14969 static int
14970 try_cursor_movement (Lisp_Object window, struct text_pos startp, int *scroll_step)
14972 struct window *w = XWINDOW (window);
14973 struct frame *f = XFRAME (w->frame);
14974 int rc = CURSOR_MOVEMENT_CANNOT_BE_USED;
14976 #ifdef GLYPH_DEBUG
14977 if (inhibit_try_cursor_movement)
14978 return rc;
14979 #endif
14981 /* Previously, there was a check for Lisp integer in the
14982 if-statement below. Now, this field is converted to
14983 ptrdiff_t, thus zero means invalid position in a buffer. */
14984 eassert (w->last_point > 0);
14985 /* Likewise there was a check whether window_end_vpos is nil or larger
14986 than the window. Now window_end_vpos is int and so never nil, but
14987 let's leave eassert to check whether it fits in the window. */
14988 eassert (w->window_end_vpos < w->current_matrix->nrows);
14990 /* Handle case where text has not changed, only point, and it has
14991 not moved off the frame. */
14992 if (/* Point may be in this window. */
14993 PT >= CHARPOS (startp)
14994 /* Selective display hasn't changed. */
14995 && !current_buffer->clip_changed
14996 /* Function force-mode-line-update is used to force a thorough
14997 redisplay. It sets either windows_or_buffers_changed or
14998 update_mode_lines. So don't take a shortcut here for these
14999 cases. */
15000 && !update_mode_lines
15001 && !windows_or_buffers_changed
15002 && !cursor_type_changed
15003 /* Can't use this case if highlighting a region. When a
15004 region exists, cursor movement has to do more than just
15005 set the cursor. */
15006 && markpos_of_region () < 0
15007 && !w->region_showing
15008 && NILP (Vshow_trailing_whitespace)
15009 /* This code is not used for mini-buffer for the sake of the case
15010 of redisplaying to replace an echo area message; since in
15011 that case the mini-buffer contents per se are usually
15012 unchanged. This code is of no real use in the mini-buffer
15013 since the handling of this_line_start_pos, etc., in redisplay
15014 handles the same cases. */
15015 && !EQ (window, minibuf_window)
15016 && (FRAME_WINDOW_P (f)
15017 || !overlay_arrow_in_current_buffer_p ()))
15019 int this_scroll_margin, top_scroll_margin;
15020 struct glyph_row *row = NULL;
15021 int frame_line_height = default_line_pixel_height (w);
15022 int window_total_lines
15023 = WINDOW_TOTAL_LINES (w) * FRAME_LINE_HEIGHT (f) / frame_line_height;
15025 #ifdef GLYPH_DEBUG
15026 debug_method_add (w, "cursor movement");
15027 #endif
15029 /* Scroll if point within this distance from the top or bottom
15030 of the window. This is a pixel value. */
15031 if (scroll_margin > 0)
15033 this_scroll_margin = min (scroll_margin, window_total_lines / 4);
15034 this_scroll_margin *= frame_line_height;
15036 else
15037 this_scroll_margin = 0;
15039 top_scroll_margin = this_scroll_margin;
15040 if (WINDOW_WANTS_HEADER_LINE_P (w))
15041 top_scroll_margin += CURRENT_HEADER_LINE_HEIGHT (w);
15043 /* Start with the row the cursor was displayed during the last
15044 not paused redisplay. Give up if that row is not valid. */
15045 if (w->last_cursor.vpos < 0
15046 || w->last_cursor.vpos >= w->current_matrix->nrows)
15047 rc = CURSOR_MOVEMENT_MUST_SCROLL;
15048 else
15050 row = MATRIX_ROW (w->current_matrix, w->last_cursor.vpos);
15051 if (row->mode_line_p)
15052 ++row;
15053 if (!row->enabled_p)
15054 rc = CURSOR_MOVEMENT_MUST_SCROLL;
15057 if (rc == CURSOR_MOVEMENT_CANNOT_BE_USED)
15059 int scroll_p = 0, must_scroll = 0;
15060 int last_y = window_text_bottom_y (w) - this_scroll_margin;
15062 if (PT > w->last_point)
15064 /* Point has moved forward. */
15065 while (MATRIX_ROW_END_CHARPOS (row) < PT
15066 && MATRIX_ROW_BOTTOM_Y (row) < last_y)
15068 eassert (row->enabled_p);
15069 ++row;
15072 /* If the end position of a row equals the start
15073 position of the next row, and PT is at that position,
15074 we would rather display cursor in the next line. */
15075 while (MATRIX_ROW_BOTTOM_Y (row) < last_y
15076 && MATRIX_ROW_END_CHARPOS (row) == PT
15077 && row < MATRIX_MODE_LINE_ROW (w->current_matrix)
15078 && MATRIX_ROW_START_CHARPOS (row+1) == PT
15079 && !cursor_row_p (row))
15080 ++row;
15082 /* If within the scroll margin, scroll. Note that
15083 MATRIX_ROW_BOTTOM_Y gives the pixel position at which
15084 the next line would be drawn, and that
15085 this_scroll_margin can be zero. */
15086 if (MATRIX_ROW_BOTTOM_Y (row) > last_y
15087 || PT > MATRIX_ROW_END_CHARPOS (row)
15088 /* Line is completely visible last line in window
15089 and PT is to be set in the next line. */
15090 || (MATRIX_ROW_BOTTOM_Y (row) == last_y
15091 && PT == MATRIX_ROW_END_CHARPOS (row)
15092 && !row->ends_at_zv_p
15093 && !MATRIX_ROW_ENDS_IN_MIDDLE_OF_CHAR_P (row)))
15094 scroll_p = 1;
15096 else if (PT < w->last_point)
15098 /* Cursor has to be moved backward. Note that PT >=
15099 CHARPOS (startp) because of the outer if-statement. */
15100 while (!row->mode_line_p
15101 && (MATRIX_ROW_START_CHARPOS (row) > PT
15102 || (MATRIX_ROW_START_CHARPOS (row) == PT
15103 && (MATRIX_ROW_STARTS_IN_MIDDLE_OF_CHAR_P (row)
15104 || (/* STARTS_IN_MIDDLE_OF_STRING_P (row) */
15105 row > w->current_matrix->rows
15106 && (row-1)->ends_in_newline_from_string_p))))
15107 && (row->y > top_scroll_margin
15108 || CHARPOS (startp) == BEGV))
15110 eassert (row->enabled_p);
15111 --row;
15114 /* Consider the following case: Window starts at BEGV,
15115 there is invisible, intangible text at BEGV, so that
15116 display starts at some point START > BEGV. It can
15117 happen that we are called with PT somewhere between
15118 BEGV and START. Try to handle that case. */
15119 if (row < w->current_matrix->rows
15120 || row->mode_line_p)
15122 row = w->current_matrix->rows;
15123 if (row->mode_line_p)
15124 ++row;
15127 /* Due to newlines in overlay strings, we may have to
15128 skip forward over overlay strings. */
15129 while (MATRIX_ROW_BOTTOM_Y (row) < last_y
15130 && MATRIX_ROW_END_CHARPOS (row) == PT
15131 && !cursor_row_p (row))
15132 ++row;
15134 /* If within the scroll margin, scroll. */
15135 if (row->y < top_scroll_margin
15136 && CHARPOS (startp) != BEGV)
15137 scroll_p = 1;
15139 else
15141 /* Cursor did not move. So don't scroll even if cursor line
15142 is partially visible, as it was so before. */
15143 rc = CURSOR_MOVEMENT_SUCCESS;
15146 if (PT < MATRIX_ROW_START_CHARPOS (row)
15147 || PT > MATRIX_ROW_END_CHARPOS (row))
15149 /* if PT is not in the glyph row, give up. */
15150 rc = CURSOR_MOVEMENT_MUST_SCROLL;
15151 must_scroll = 1;
15153 else if (rc != CURSOR_MOVEMENT_SUCCESS
15154 && !NILP (BVAR (XBUFFER (w->contents), bidi_display_reordering)))
15156 struct glyph_row *row1;
15158 /* If rows are bidi-reordered and point moved, back up
15159 until we find a row that does not belong to a
15160 continuation line. This is because we must consider
15161 all rows of a continued line as candidates for the
15162 new cursor positioning, since row start and end
15163 positions change non-linearly with vertical position
15164 in such rows. */
15165 /* FIXME: Revisit this when glyph ``spilling'' in
15166 continuation lines' rows is implemented for
15167 bidi-reordered rows. */
15168 for (row1 = MATRIX_FIRST_TEXT_ROW (w->current_matrix);
15169 MATRIX_ROW_CONTINUATION_LINE_P (row);
15170 --row)
15172 /* If we hit the beginning of the displayed portion
15173 without finding the first row of a continued
15174 line, give up. */
15175 if (row <= row1)
15177 rc = CURSOR_MOVEMENT_MUST_SCROLL;
15178 break;
15180 eassert (row->enabled_p);
15183 if (must_scroll)
15185 else if (rc != CURSOR_MOVEMENT_SUCCESS
15186 && MATRIX_ROW_PARTIALLY_VISIBLE_P (w, row)
15187 /* Make sure this isn't a header line by any chance, since
15188 then MATRIX_ROW_PARTIALLY_VISIBLE_P might yield non-zero. */
15189 && !row->mode_line_p
15190 && make_cursor_line_fully_visible_p)
15192 if (PT == MATRIX_ROW_END_CHARPOS (row)
15193 && !row->ends_at_zv_p
15194 && !MATRIX_ROW_ENDS_IN_MIDDLE_OF_CHAR_P (row))
15195 rc = CURSOR_MOVEMENT_MUST_SCROLL;
15196 else if (row->height > window_box_height (w))
15198 /* If we end up in a partially visible line, let's
15199 make it fully visible, except when it's taller
15200 than the window, in which case we can't do much
15201 about it. */
15202 *scroll_step = 1;
15203 rc = CURSOR_MOVEMENT_MUST_SCROLL;
15205 else
15207 set_cursor_from_row (w, row, w->current_matrix, 0, 0, 0, 0);
15208 if (!cursor_row_fully_visible_p (w, 0, 1))
15209 rc = CURSOR_MOVEMENT_MUST_SCROLL;
15210 else
15211 rc = CURSOR_MOVEMENT_SUCCESS;
15214 else if (scroll_p)
15215 rc = CURSOR_MOVEMENT_MUST_SCROLL;
15216 else if (rc != CURSOR_MOVEMENT_SUCCESS
15217 && !NILP (BVAR (XBUFFER (w->contents), bidi_display_reordering)))
15219 /* With bidi-reordered rows, there could be more than
15220 one candidate row whose start and end positions
15221 occlude point. We need to let set_cursor_from_row
15222 find the best candidate. */
15223 /* FIXME: Revisit this when glyph ``spilling'' in
15224 continuation lines' rows is implemented for
15225 bidi-reordered rows. */
15226 int rv = 0;
15230 int at_zv_p = 0, exact_match_p = 0;
15232 if (MATRIX_ROW_START_CHARPOS (row) <= PT
15233 && PT <= MATRIX_ROW_END_CHARPOS (row)
15234 && cursor_row_p (row))
15235 rv |= set_cursor_from_row (w, row, w->current_matrix,
15236 0, 0, 0, 0);
15237 /* As soon as we've found the exact match for point,
15238 or the first suitable row whose ends_at_zv_p flag
15239 is set, we are done. */
15240 at_zv_p =
15241 MATRIX_ROW (w->current_matrix, w->cursor.vpos)->ends_at_zv_p;
15242 if (rv && !at_zv_p
15243 && w->cursor.hpos >= 0
15244 && w->cursor.hpos < MATRIX_ROW_USED (w->current_matrix,
15245 w->cursor.vpos))
15247 struct glyph_row *candidate =
15248 MATRIX_ROW (w->current_matrix, w->cursor.vpos);
15249 struct glyph *g =
15250 candidate->glyphs[TEXT_AREA] + w->cursor.hpos;
15251 ptrdiff_t endpos = MATRIX_ROW_END_CHARPOS (candidate);
15253 exact_match_p =
15254 (BUFFERP (g->object) && g->charpos == PT)
15255 || (INTEGERP (g->object)
15256 && (g->charpos == PT
15257 || (g->charpos == 0 && endpos - 1 == PT)));
15259 if (rv && (at_zv_p || exact_match_p))
15261 rc = CURSOR_MOVEMENT_SUCCESS;
15262 break;
15264 if (MATRIX_ROW_BOTTOM_Y (row) == last_y)
15265 break;
15266 ++row;
15268 while (((MATRIX_ROW_CONTINUATION_LINE_P (row)
15269 || row->continued_p)
15270 && MATRIX_ROW_BOTTOM_Y (row) <= last_y)
15271 || (MATRIX_ROW_START_CHARPOS (row) == PT
15272 && MATRIX_ROW_BOTTOM_Y (row) < last_y));
15273 /* If we didn't find any candidate rows, or exited the
15274 loop before all the candidates were examined, signal
15275 to the caller that this method failed. */
15276 if (rc != CURSOR_MOVEMENT_SUCCESS
15277 && !(rv
15278 && !MATRIX_ROW_CONTINUATION_LINE_P (row)
15279 && !row->continued_p))
15280 rc = CURSOR_MOVEMENT_MUST_SCROLL;
15281 else if (rv)
15282 rc = CURSOR_MOVEMENT_SUCCESS;
15284 else
15288 if (set_cursor_from_row (w, row, w->current_matrix, 0, 0, 0, 0))
15290 rc = CURSOR_MOVEMENT_SUCCESS;
15291 break;
15293 ++row;
15295 while (MATRIX_ROW_BOTTOM_Y (row) < last_y
15296 && MATRIX_ROW_START_CHARPOS (row) == PT
15297 && cursor_row_p (row));
15302 return rc;
15305 #if !defined USE_TOOLKIT_SCROLL_BARS || defined USE_GTK
15306 static
15307 #endif
15308 void
15309 set_vertical_scroll_bar (struct window *w)
15311 ptrdiff_t start, end, whole;
15313 /* Calculate the start and end positions for the current window.
15314 At some point, it would be nice to choose between scrollbars
15315 which reflect the whole buffer size, with special markers
15316 indicating narrowing, and scrollbars which reflect only the
15317 visible region.
15319 Note that mini-buffers sometimes aren't displaying any text. */
15320 if (!MINI_WINDOW_P (w)
15321 || (w == XWINDOW (minibuf_window)
15322 && NILP (echo_area_buffer[0])))
15324 struct buffer *buf = XBUFFER (w->contents);
15325 whole = BUF_ZV (buf) - BUF_BEGV (buf);
15326 start = marker_position (w->start) - BUF_BEGV (buf);
15327 /* I don't think this is guaranteed to be right. For the
15328 moment, we'll pretend it is. */
15329 end = BUF_Z (buf) - w->window_end_pos - BUF_BEGV (buf);
15331 if (end < start)
15332 end = start;
15333 if (whole < (end - start))
15334 whole = end - start;
15336 else
15337 start = end = whole = 0;
15339 /* Indicate what this scroll bar ought to be displaying now. */
15340 if (FRAME_TERMINAL (XFRAME (w->frame))->set_vertical_scroll_bar_hook)
15341 (*FRAME_TERMINAL (XFRAME (w->frame))->set_vertical_scroll_bar_hook)
15342 (w, end - start, whole, start);
15346 /* Redisplay leaf window WINDOW. JUST_THIS_ONE_P non-zero means only
15347 selected_window is redisplayed.
15349 We can return without actually redisplaying the window if
15350 fonts_changed_p. In that case, redisplay_internal will
15351 retry. */
15353 static void
15354 redisplay_window (Lisp_Object window, int just_this_one_p)
15356 struct window *w = XWINDOW (window);
15357 struct frame *f = XFRAME (w->frame);
15358 struct buffer *buffer = XBUFFER (w->contents);
15359 struct buffer *old = current_buffer;
15360 struct text_pos lpoint, opoint, startp;
15361 int update_mode_line;
15362 int tem;
15363 struct it it;
15364 /* Record it now because it's overwritten. */
15365 int current_matrix_up_to_date_p = 0;
15366 int used_current_matrix_p = 0;
15367 /* This is less strict than current_matrix_up_to_date_p.
15368 It indicates that the buffer contents and narrowing are unchanged. */
15369 int buffer_unchanged_p = 0;
15370 int temp_scroll_step = 0;
15371 ptrdiff_t count = SPECPDL_INDEX ();
15372 int rc;
15373 int centering_position = -1;
15374 int last_line_misfit = 0;
15375 ptrdiff_t beg_unchanged, end_unchanged;
15376 int frame_line_height;
15378 SET_TEXT_POS (lpoint, PT, PT_BYTE);
15379 opoint = lpoint;
15381 #ifdef GLYPH_DEBUG
15382 *w->desired_matrix->method = 0;
15383 #endif
15385 /* Make sure that both W's markers are valid. */
15386 eassert (XMARKER (w->start)->buffer == buffer);
15387 eassert (XMARKER (w->pointm)->buffer == buffer);
15389 restart:
15390 reconsider_clip_changes (w);
15391 frame_line_height = default_line_pixel_height (w);
15393 /* Has the mode line to be updated? */
15394 update_mode_line = (w->update_mode_line
15395 || update_mode_lines
15396 || buffer->clip_changed
15397 || buffer->prevent_redisplay_optimizations_p);
15399 if (MINI_WINDOW_P (w))
15401 if (w == XWINDOW (echo_area_window)
15402 && !NILP (echo_area_buffer[0]))
15404 if (update_mode_line)
15405 /* We may have to update a tty frame's menu bar or a
15406 tool-bar. Example `M-x C-h C-h C-g'. */
15407 goto finish_menu_bars;
15408 else
15409 /* We've already displayed the echo area glyphs in this window. */
15410 goto finish_scroll_bars;
15412 else if ((w != XWINDOW (minibuf_window)
15413 || minibuf_level == 0)
15414 /* When buffer is nonempty, redisplay window normally. */
15415 && BUF_Z (XBUFFER (w->contents)) == BUF_BEG (XBUFFER (w->contents))
15416 /* Quail displays non-mini buffers in minibuffer window.
15417 In that case, redisplay the window normally. */
15418 && !NILP (Fmemq (w->contents, Vminibuffer_list)))
15420 /* W is a mini-buffer window, but it's not active, so clear
15421 it. */
15422 int yb = window_text_bottom_y (w);
15423 struct glyph_row *row;
15424 int y;
15426 for (y = 0, row = w->desired_matrix->rows;
15427 y < yb;
15428 y += row->height, ++row)
15429 blank_row (w, row, y);
15430 goto finish_scroll_bars;
15433 clear_glyph_matrix (w->desired_matrix);
15436 /* Otherwise set up data on this window; select its buffer and point
15437 value. */
15438 /* Really select the buffer, for the sake of buffer-local
15439 variables. */
15440 set_buffer_internal_1 (XBUFFER (w->contents));
15442 current_matrix_up_to_date_p
15443 = (w->window_end_valid
15444 && !current_buffer->clip_changed
15445 && !current_buffer->prevent_redisplay_optimizations_p
15446 && !window_outdated (w));
15448 /* Run the window-bottom-change-functions
15449 if it is possible that the text on the screen has changed
15450 (either due to modification of the text, or any other reason). */
15451 if (!current_matrix_up_to_date_p
15452 && !NILP (Vwindow_text_change_functions))
15454 safe_run_hooks (Qwindow_text_change_functions);
15455 goto restart;
15458 beg_unchanged = BEG_UNCHANGED;
15459 end_unchanged = END_UNCHANGED;
15461 SET_TEXT_POS (opoint, PT, PT_BYTE);
15463 specbind (Qinhibit_point_motion_hooks, Qt);
15465 buffer_unchanged_p
15466 = (w->window_end_valid
15467 && !current_buffer->clip_changed
15468 && !window_outdated (w));
15470 /* When windows_or_buffers_changed is non-zero, we can't rely
15471 on the window end being valid, so set it to zero there. */
15472 if (windows_or_buffers_changed)
15474 /* If window starts on a continuation line, maybe adjust the
15475 window start in case the window's width changed. */
15476 if (XMARKER (w->start)->buffer == current_buffer)
15477 compute_window_start_on_continuation_line (w);
15479 w->window_end_valid = 0;
15480 /* If so, we also can't rely on current matrix
15481 and should not fool try_cursor_movement below. */
15482 current_matrix_up_to_date_p = 0;
15485 /* Some sanity checks. */
15486 CHECK_WINDOW_END (w);
15487 if (Z == Z_BYTE && CHARPOS (opoint) != BYTEPOS (opoint))
15488 emacs_abort ();
15489 if (BYTEPOS (opoint) < CHARPOS (opoint))
15490 emacs_abort ();
15492 if (mode_line_update_needed (w))
15493 update_mode_line = 1;
15495 /* Point refers normally to the selected window. For any other
15496 window, set up appropriate value. */
15497 if (!EQ (window, selected_window))
15499 ptrdiff_t new_pt = marker_position (w->pointm);
15500 ptrdiff_t new_pt_byte = marker_byte_position (w->pointm);
15501 if (new_pt < BEGV)
15503 new_pt = BEGV;
15504 new_pt_byte = BEGV_BYTE;
15505 set_marker_both (w->pointm, Qnil, BEGV, BEGV_BYTE);
15507 else if (new_pt > (ZV - 1))
15509 new_pt = ZV;
15510 new_pt_byte = ZV_BYTE;
15511 set_marker_both (w->pointm, Qnil, ZV, ZV_BYTE);
15514 /* We don't use SET_PT so that the point-motion hooks don't run. */
15515 TEMP_SET_PT_BOTH (new_pt, new_pt_byte);
15518 /* If any of the character widths specified in the display table
15519 have changed, invalidate the width run cache. It's true that
15520 this may be a bit late to catch such changes, but the rest of
15521 redisplay goes (non-fatally) haywire when the display table is
15522 changed, so why should we worry about doing any better? */
15523 if (current_buffer->width_run_cache)
15525 struct Lisp_Char_Table *disptab = buffer_display_table ();
15527 if (! disptab_matches_widthtab
15528 (disptab, XVECTOR (BVAR (current_buffer, width_table))))
15530 invalidate_region_cache (current_buffer,
15531 current_buffer->width_run_cache,
15532 BEG, Z);
15533 recompute_width_table (current_buffer, disptab);
15537 /* If window-start is screwed up, choose a new one. */
15538 if (XMARKER (w->start)->buffer != current_buffer)
15539 goto recenter;
15541 SET_TEXT_POS_FROM_MARKER (startp, w->start);
15543 /* If someone specified a new starting point but did not insist,
15544 check whether it can be used. */
15545 if (w->optional_new_start
15546 && CHARPOS (startp) >= BEGV
15547 && CHARPOS (startp) <= ZV)
15549 w->optional_new_start = 0;
15550 start_display (&it, w, startp);
15551 move_it_to (&it, PT, 0, it.last_visible_y, -1,
15552 MOVE_TO_POS | MOVE_TO_X | MOVE_TO_Y);
15553 if (IT_CHARPOS (it) == PT)
15554 w->force_start = 1;
15555 /* IT may overshoot PT if text at PT is invisible. */
15556 else if (IT_CHARPOS (it) > PT && CHARPOS (startp) <= PT)
15557 w->force_start = 1;
15560 force_start:
15562 /* Handle case where place to start displaying has been specified,
15563 unless the specified location is outside the accessible range. */
15564 if (w->force_start || window_frozen_p (w))
15566 /* We set this later on if we have to adjust point. */
15567 int new_vpos = -1;
15569 w->force_start = 0;
15570 w->vscroll = 0;
15571 w->window_end_valid = 0;
15573 /* Forget any recorded base line for line number display. */
15574 if (!buffer_unchanged_p)
15575 w->base_line_number = 0;
15577 /* Redisplay the mode line. Select the buffer properly for that.
15578 Also, run the hook window-scroll-functions
15579 because we have scrolled. */
15580 /* Note, we do this after clearing force_start because
15581 if there's an error, it is better to forget about force_start
15582 than to get into an infinite loop calling the hook functions
15583 and having them get more errors. */
15584 if (!update_mode_line
15585 || ! NILP (Vwindow_scroll_functions))
15587 update_mode_line = 1;
15588 w->update_mode_line = 1;
15589 startp = run_window_scroll_functions (window, startp);
15592 if (CHARPOS (startp) < BEGV)
15593 SET_TEXT_POS (startp, BEGV, BEGV_BYTE);
15594 else if (CHARPOS (startp) > ZV)
15595 SET_TEXT_POS (startp, ZV, ZV_BYTE);
15597 /* Redisplay, then check if cursor has been set during the
15598 redisplay. Give up if new fonts were loaded. */
15599 /* We used to issue a CHECK_MARGINS argument to try_window here,
15600 but this causes scrolling to fail when point begins inside
15601 the scroll margin (bug#148) -- cyd */
15602 if (!try_window (window, startp, 0))
15604 w->force_start = 1;
15605 clear_glyph_matrix (w->desired_matrix);
15606 goto need_larger_matrices;
15609 if (w->cursor.vpos < 0 && !window_frozen_p (w))
15611 /* If point does not appear, try to move point so it does
15612 appear. The desired matrix has been built above, so we
15613 can use it here. */
15614 new_vpos = window_box_height (w) / 2;
15617 if (!cursor_row_fully_visible_p (w, 0, 0))
15619 /* Point does appear, but on a line partly visible at end of window.
15620 Move it back to a fully-visible line. */
15621 new_vpos = window_box_height (w);
15623 else if (w->cursor.vpos >=0)
15625 /* Some people insist on not letting point enter the scroll
15626 margin, even though this part handles windows that didn't
15627 scroll at all. */
15628 int window_total_lines
15629 = WINDOW_TOTAL_LINES (w) * FRAME_LINE_HEIGHT (f) / frame_line_height;
15630 int margin = min (scroll_margin, window_total_lines / 4);
15631 int pixel_margin = margin * frame_line_height;
15632 bool header_line = WINDOW_WANTS_HEADER_LINE_P (w);
15634 /* Note: We add an extra FRAME_LINE_HEIGHT, because the loop
15635 below, which finds the row to move point to, advances by
15636 the Y coordinate of the _next_ row, see the definition of
15637 MATRIX_ROW_BOTTOM_Y. */
15638 if (w->cursor.vpos < margin + header_line)
15640 w->cursor.vpos = -1;
15641 clear_glyph_matrix (w->desired_matrix);
15642 goto try_to_scroll;
15644 else
15646 int window_height = window_box_height (w);
15648 if (header_line)
15649 window_height += CURRENT_HEADER_LINE_HEIGHT (w);
15650 if (w->cursor.y >= window_height - pixel_margin)
15652 w->cursor.vpos = -1;
15653 clear_glyph_matrix (w->desired_matrix);
15654 goto try_to_scroll;
15659 /* If we need to move point for either of the above reasons,
15660 now actually do it. */
15661 if (new_vpos >= 0)
15663 struct glyph_row *row;
15665 row = MATRIX_FIRST_TEXT_ROW (w->desired_matrix);
15666 while (MATRIX_ROW_BOTTOM_Y (row) < new_vpos)
15667 ++row;
15669 TEMP_SET_PT_BOTH (MATRIX_ROW_START_CHARPOS (row),
15670 MATRIX_ROW_START_BYTEPOS (row));
15672 if (w != XWINDOW (selected_window))
15673 set_marker_both (w->pointm, Qnil, PT, PT_BYTE);
15674 else if (current_buffer == old)
15675 SET_TEXT_POS (lpoint, PT, PT_BYTE);
15677 set_cursor_from_row (w, row, w->desired_matrix, 0, 0, 0, 0);
15679 /* If we are highlighting the region, then we just changed
15680 the region, so redisplay to show it. */
15681 if (markpos_of_region () >= 0)
15683 clear_glyph_matrix (w->desired_matrix);
15684 if (!try_window (window, startp, 0))
15685 goto need_larger_matrices;
15689 #ifdef GLYPH_DEBUG
15690 debug_method_add (w, "forced window start");
15691 #endif
15692 goto done;
15695 /* Handle case where text has not changed, only point, and it has
15696 not moved off the frame, and we are not retrying after hscroll.
15697 (current_matrix_up_to_date_p is nonzero when retrying.) */
15698 if (current_matrix_up_to_date_p
15699 && (rc = try_cursor_movement (window, startp, &temp_scroll_step),
15700 rc != CURSOR_MOVEMENT_CANNOT_BE_USED))
15702 switch (rc)
15704 case CURSOR_MOVEMENT_SUCCESS:
15705 used_current_matrix_p = 1;
15706 goto done;
15708 case CURSOR_MOVEMENT_MUST_SCROLL:
15709 goto try_to_scroll;
15711 default:
15712 emacs_abort ();
15715 /* If current starting point was originally the beginning of a line
15716 but no longer is, find a new starting point. */
15717 else if (w->start_at_line_beg
15718 && !(CHARPOS (startp) <= BEGV
15719 || FETCH_BYTE (BYTEPOS (startp) - 1) == '\n'))
15721 #ifdef GLYPH_DEBUG
15722 debug_method_add (w, "recenter 1");
15723 #endif
15724 goto recenter;
15727 /* Try scrolling with try_window_id. Value is > 0 if update has
15728 been done, it is -1 if we know that the same window start will
15729 not work. It is 0 if unsuccessful for some other reason. */
15730 else if ((tem = try_window_id (w)) != 0)
15732 #ifdef GLYPH_DEBUG
15733 debug_method_add (w, "try_window_id %d", tem);
15734 #endif
15736 if (fonts_changed_p)
15737 goto need_larger_matrices;
15738 if (tem > 0)
15739 goto done;
15741 /* Otherwise try_window_id has returned -1 which means that we
15742 don't want the alternative below this comment to execute. */
15744 else if (CHARPOS (startp) >= BEGV
15745 && CHARPOS (startp) <= ZV
15746 && PT >= CHARPOS (startp)
15747 && (CHARPOS (startp) < ZV
15748 /* Avoid starting at end of buffer. */
15749 || CHARPOS (startp) == BEGV
15750 || !window_outdated (w)))
15752 int d1, d2, d3, d4, d5, d6;
15754 /* If first window line is a continuation line, and window start
15755 is inside the modified region, but the first change is before
15756 current window start, we must select a new window start.
15758 However, if this is the result of a down-mouse event (e.g. by
15759 extending the mouse-drag-overlay), we don't want to select a
15760 new window start, since that would change the position under
15761 the mouse, resulting in an unwanted mouse-movement rather
15762 than a simple mouse-click. */
15763 if (!w->start_at_line_beg
15764 && NILP (do_mouse_tracking)
15765 && CHARPOS (startp) > BEGV
15766 && CHARPOS (startp) > BEG + beg_unchanged
15767 && CHARPOS (startp) <= Z - end_unchanged
15768 /* Even if w->start_at_line_beg is nil, a new window may
15769 start at a line_beg, since that's how set_buffer_window
15770 sets it. So, we need to check the return value of
15771 compute_window_start_on_continuation_line. (See also
15772 bug#197). */
15773 && XMARKER (w->start)->buffer == current_buffer
15774 && compute_window_start_on_continuation_line (w)
15775 /* It doesn't make sense to force the window start like we
15776 do at label force_start if it is already known that point
15777 will not be visible in the resulting window, because
15778 doing so will move point from its correct position
15779 instead of scrolling the window to bring point into view.
15780 See bug#9324. */
15781 && pos_visible_p (w, PT, &d1, &d2, &d3, &d4, &d5, &d6))
15783 w->force_start = 1;
15784 SET_TEXT_POS_FROM_MARKER (startp, w->start);
15785 goto force_start;
15788 #ifdef GLYPH_DEBUG
15789 debug_method_add (w, "same window start");
15790 #endif
15792 /* Try to redisplay starting at same place as before.
15793 If point has not moved off frame, accept the results. */
15794 if (!current_matrix_up_to_date_p
15795 /* Don't use try_window_reusing_current_matrix in this case
15796 because a window scroll function can have changed the
15797 buffer. */
15798 || !NILP (Vwindow_scroll_functions)
15799 || MINI_WINDOW_P (w)
15800 || !(used_current_matrix_p
15801 = try_window_reusing_current_matrix (w)))
15803 IF_DEBUG (debug_method_add (w, "1"));
15804 if (try_window (window, startp, TRY_WINDOW_CHECK_MARGINS) < 0)
15805 /* -1 means we need to scroll.
15806 0 means we need new matrices, but fonts_changed_p
15807 is set in that case, so we will detect it below. */
15808 goto try_to_scroll;
15811 if (fonts_changed_p)
15812 goto need_larger_matrices;
15814 if (w->cursor.vpos >= 0)
15816 if (!just_this_one_p
15817 || current_buffer->clip_changed
15818 || BEG_UNCHANGED < CHARPOS (startp))
15819 /* Forget any recorded base line for line number display. */
15820 w->base_line_number = 0;
15822 if (!cursor_row_fully_visible_p (w, 1, 0))
15824 clear_glyph_matrix (w->desired_matrix);
15825 last_line_misfit = 1;
15827 /* Drop through and scroll. */
15828 else
15829 goto done;
15831 else
15832 clear_glyph_matrix (w->desired_matrix);
15835 try_to_scroll:
15837 /* Redisplay the mode line. Select the buffer properly for that. */
15838 if (!update_mode_line)
15840 update_mode_line = 1;
15841 w->update_mode_line = 1;
15844 /* Try to scroll by specified few lines. */
15845 if ((scroll_conservatively
15846 || emacs_scroll_step
15847 || temp_scroll_step
15848 || NUMBERP (BVAR (current_buffer, scroll_up_aggressively))
15849 || NUMBERP (BVAR (current_buffer, scroll_down_aggressively)))
15850 && CHARPOS (startp) >= BEGV
15851 && CHARPOS (startp) <= ZV)
15853 /* The function returns -1 if new fonts were loaded, 1 if
15854 successful, 0 if not successful. */
15855 int ss = try_scrolling (window, just_this_one_p,
15856 scroll_conservatively,
15857 emacs_scroll_step,
15858 temp_scroll_step, last_line_misfit);
15859 switch (ss)
15861 case SCROLLING_SUCCESS:
15862 goto done;
15864 case SCROLLING_NEED_LARGER_MATRICES:
15865 goto need_larger_matrices;
15867 case SCROLLING_FAILED:
15868 break;
15870 default:
15871 emacs_abort ();
15875 /* Finally, just choose a place to start which positions point
15876 according to user preferences. */
15878 recenter:
15880 #ifdef GLYPH_DEBUG
15881 debug_method_add (w, "recenter");
15882 #endif
15884 /* Forget any previously recorded base line for line number display. */
15885 if (!buffer_unchanged_p)
15886 w->base_line_number = 0;
15888 /* Determine the window start relative to point. */
15889 init_iterator (&it, w, PT, PT_BYTE, NULL, DEFAULT_FACE_ID);
15890 it.current_y = it.last_visible_y;
15891 if (centering_position < 0)
15893 int window_total_lines
15894 = WINDOW_TOTAL_LINES (w) * FRAME_LINE_HEIGHT (f) / frame_line_height;
15895 int margin =
15896 scroll_margin > 0
15897 ? min (scroll_margin, window_total_lines / 4)
15898 : 0;
15899 ptrdiff_t margin_pos = CHARPOS (startp);
15900 Lisp_Object aggressive;
15901 int scrolling_up;
15903 /* If there is a scroll margin at the top of the window, find
15904 its character position. */
15905 if (margin
15906 /* Cannot call start_display if startp is not in the
15907 accessible region of the buffer. This can happen when we
15908 have just switched to a different buffer and/or changed
15909 its restriction. In that case, startp is initialized to
15910 the character position 1 (BEGV) because we did not yet
15911 have chance to display the buffer even once. */
15912 && BEGV <= CHARPOS (startp) && CHARPOS (startp) <= ZV)
15914 struct it it1;
15915 void *it1data = NULL;
15917 SAVE_IT (it1, it, it1data);
15918 start_display (&it1, w, startp);
15919 move_it_vertically (&it1, margin * frame_line_height);
15920 margin_pos = IT_CHARPOS (it1);
15921 RESTORE_IT (&it, &it, it1data);
15923 scrolling_up = PT > margin_pos;
15924 aggressive =
15925 scrolling_up
15926 ? BVAR (current_buffer, scroll_up_aggressively)
15927 : BVAR (current_buffer, scroll_down_aggressively);
15929 if (!MINI_WINDOW_P (w)
15930 && (scroll_conservatively > SCROLL_LIMIT || NUMBERP (aggressive)))
15932 int pt_offset = 0;
15934 /* Setting scroll-conservatively overrides
15935 scroll-*-aggressively. */
15936 if (!scroll_conservatively && NUMBERP (aggressive))
15938 double float_amount = XFLOATINT (aggressive);
15940 pt_offset = float_amount * WINDOW_BOX_TEXT_HEIGHT (w);
15941 if (pt_offset == 0 && float_amount > 0)
15942 pt_offset = 1;
15943 if (pt_offset && margin > 0)
15944 margin -= 1;
15946 /* Compute how much to move the window start backward from
15947 point so that point will be displayed where the user
15948 wants it. */
15949 if (scrolling_up)
15951 centering_position = it.last_visible_y;
15952 if (pt_offset)
15953 centering_position -= pt_offset;
15954 centering_position -=
15955 frame_line_height * (1 + margin + (last_line_misfit != 0))
15956 + WINDOW_HEADER_LINE_HEIGHT (w);
15957 /* Don't let point enter the scroll margin near top of
15958 the window. */
15959 if (centering_position < margin * frame_line_height)
15960 centering_position = margin * frame_line_height;
15962 else
15963 centering_position = margin * frame_line_height + pt_offset;
15965 else
15966 /* Set the window start half the height of the window backward
15967 from point. */
15968 centering_position = window_box_height (w) / 2;
15970 move_it_vertically_backward (&it, centering_position);
15972 eassert (IT_CHARPOS (it) >= BEGV);
15974 /* The function move_it_vertically_backward may move over more
15975 than the specified y-distance. If it->w is small, e.g. a
15976 mini-buffer window, we may end up in front of the window's
15977 display area. Start displaying at the start of the line
15978 containing PT in this case. */
15979 if (it.current_y <= 0)
15981 init_iterator (&it, w, PT, PT_BYTE, NULL, DEFAULT_FACE_ID);
15982 move_it_vertically_backward (&it, 0);
15983 it.current_y = 0;
15986 it.current_x = it.hpos = 0;
15988 /* Set the window start position here explicitly, to avoid an
15989 infinite loop in case the functions in window-scroll-functions
15990 get errors. */
15991 set_marker_both (w->start, Qnil, IT_CHARPOS (it), IT_BYTEPOS (it));
15993 /* Run scroll hooks. */
15994 startp = run_window_scroll_functions (window, it.current.pos);
15996 /* Redisplay the window. */
15997 if (!current_matrix_up_to_date_p
15998 || windows_or_buffers_changed
15999 || cursor_type_changed
16000 /* Don't use try_window_reusing_current_matrix in this case
16001 because it can have changed the buffer. */
16002 || !NILP (Vwindow_scroll_functions)
16003 || !just_this_one_p
16004 || MINI_WINDOW_P (w)
16005 || !(used_current_matrix_p
16006 = try_window_reusing_current_matrix (w)))
16007 try_window (window, startp, 0);
16009 /* If new fonts have been loaded (due to fontsets), give up. We
16010 have to start a new redisplay since we need to re-adjust glyph
16011 matrices. */
16012 if (fonts_changed_p)
16013 goto need_larger_matrices;
16015 /* If cursor did not appear assume that the middle of the window is
16016 in the first line of the window. Do it again with the next line.
16017 (Imagine a window of height 100, displaying two lines of height
16018 60. Moving back 50 from it->last_visible_y will end in the first
16019 line.) */
16020 if (w->cursor.vpos < 0)
16022 if (w->window_end_valid && PT >= Z - w->window_end_pos)
16024 clear_glyph_matrix (w->desired_matrix);
16025 move_it_by_lines (&it, 1);
16026 try_window (window, it.current.pos, 0);
16028 else if (PT < IT_CHARPOS (it))
16030 clear_glyph_matrix (w->desired_matrix);
16031 move_it_by_lines (&it, -1);
16032 try_window (window, it.current.pos, 0);
16034 else
16036 /* Not much we can do about it. */
16040 /* Consider the following case: Window starts at BEGV, there is
16041 invisible, intangible text at BEGV, so that display starts at
16042 some point START > BEGV. It can happen that we are called with
16043 PT somewhere between BEGV and START. Try to handle that case. */
16044 if (w->cursor.vpos < 0)
16046 struct glyph_row *row = w->current_matrix->rows;
16047 if (row->mode_line_p)
16048 ++row;
16049 set_cursor_from_row (w, row, w->current_matrix, 0, 0, 0, 0);
16052 if (!cursor_row_fully_visible_p (w, 0, 0))
16054 /* If vscroll is enabled, disable it and try again. */
16055 if (w->vscroll)
16057 w->vscroll = 0;
16058 clear_glyph_matrix (w->desired_matrix);
16059 goto recenter;
16062 /* Users who set scroll-conservatively to a large number want
16063 point just above/below the scroll margin. If we ended up
16064 with point's row partially visible, move the window start to
16065 make that row fully visible and out of the margin. */
16066 if (scroll_conservatively > SCROLL_LIMIT)
16068 int window_total_lines
16069 = WINDOW_TOTAL_LINES (w) * FRAME_LINE_HEIGHT (f) * frame_line_height;
16070 int margin =
16071 scroll_margin > 0
16072 ? min (scroll_margin, window_total_lines / 4)
16073 : 0;
16074 int move_down = w->cursor.vpos >= window_total_lines / 2;
16076 move_it_by_lines (&it, move_down ? margin + 1 : -(margin + 1));
16077 clear_glyph_matrix (w->desired_matrix);
16078 if (1 == try_window (window, it.current.pos,
16079 TRY_WINDOW_CHECK_MARGINS))
16080 goto done;
16083 /* If centering point failed to make the whole line visible,
16084 put point at the top instead. That has to make the whole line
16085 visible, if it can be done. */
16086 if (centering_position == 0)
16087 goto done;
16089 clear_glyph_matrix (w->desired_matrix);
16090 centering_position = 0;
16091 goto recenter;
16094 done:
16096 SET_TEXT_POS_FROM_MARKER (startp, w->start);
16097 w->start_at_line_beg = (CHARPOS (startp) == BEGV
16098 || FETCH_BYTE (BYTEPOS (startp) - 1) == '\n');
16100 /* Display the mode line, if we must. */
16101 if ((update_mode_line
16102 /* If window not full width, must redo its mode line
16103 if (a) the window to its side is being redone and
16104 (b) we do a frame-based redisplay. This is a consequence
16105 of how inverted lines are drawn in frame-based redisplay. */
16106 || (!just_this_one_p
16107 && !FRAME_WINDOW_P (f)
16108 && !WINDOW_FULL_WIDTH_P (w))
16109 /* Line number to display. */
16110 || w->base_line_pos > 0
16111 /* Column number is displayed and different from the one displayed. */
16112 || (w->column_number_displayed != -1
16113 && (w->column_number_displayed != current_column ())))
16114 /* This means that the window has a mode line. */
16115 && (WINDOW_WANTS_MODELINE_P (w)
16116 || WINDOW_WANTS_HEADER_LINE_P (w)))
16118 display_mode_lines (w);
16120 /* If mode line height has changed, arrange for a thorough
16121 immediate redisplay using the correct mode line height. */
16122 if (WINDOW_WANTS_MODELINE_P (w)
16123 && CURRENT_MODE_LINE_HEIGHT (w) != DESIRED_MODE_LINE_HEIGHT (w))
16125 fonts_changed_p = 1;
16126 MATRIX_MODE_LINE_ROW (w->current_matrix)->height
16127 = DESIRED_MODE_LINE_HEIGHT (w);
16130 /* If header line height has changed, arrange for a thorough
16131 immediate redisplay using the correct header line height. */
16132 if (WINDOW_WANTS_HEADER_LINE_P (w)
16133 && CURRENT_HEADER_LINE_HEIGHT (w) != DESIRED_HEADER_LINE_HEIGHT (w))
16135 fonts_changed_p = 1;
16136 MATRIX_HEADER_LINE_ROW (w->current_matrix)->height
16137 = DESIRED_HEADER_LINE_HEIGHT (w);
16140 if (fonts_changed_p)
16141 goto need_larger_matrices;
16144 if (!line_number_displayed && w->base_line_pos != -1)
16146 w->base_line_pos = 0;
16147 w->base_line_number = 0;
16150 finish_menu_bars:
16152 /* When we reach a frame's selected window, redo the frame's menu bar. */
16153 if (update_mode_line
16154 && EQ (FRAME_SELECTED_WINDOW (f), window))
16156 int redisplay_menu_p = 0;
16158 if (FRAME_WINDOW_P (f))
16160 #if defined (USE_X_TOOLKIT) || defined (HAVE_NTGUI) \
16161 || defined (HAVE_NS) || defined (USE_GTK)
16162 redisplay_menu_p = FRAME_EXTERNAL_MENU_BAR (f);
16163 #else
16164 redisplay_menu_p = FRAME_MENU_BAR_LINES (f) > 0;
16165 #endif
16167 else
16168 redisplay_menu_p = FRAME_MENU_BAR_LINES (f) > 0;
16170 if (redisplay_menu_p)
16171 display_menu_bar (w);
16173 #ifdef HAVE_WINDOW_SYSTEM
16174 if (FRAME_WINDOW_P (f))
16176 #if defined (USE_GTK) || defined (HAVE_NS)
16177 if (FRAME_EXTERNAL_TOOL_BAR (f))
16178 redisplay_tool_bar (f);
16179 #else
16180 if (WINDOWP (f->tool_bar_window)
16181 && (FRAME_TOOL_BAR_LINES (f) > 0
16182 || !NILP (Vauto_resize_tool_bars))
16183 && redisplay_tool_bar (f))
16184 ignore_mouse_drag_p = 1;
16185 #endif
16187 #endif
16190 #ifdef HAVE_WINDOW_SYSTEM
16191 if (FRAME_WINDOW_P (f)
16192 && update_window_fringes (w, (just_this_one_p
16193 || (!used_current_matrix_p && !overlay_arrow_seen)
16194 || w->pseudo_window_p)))
16196 update_begin (f);
16197 block_input ();
16198 if (draw_window_fringes (w, 1))
16199 x_draw_vertical_border (w);
16200 unblock_input ();
16201 update_end (f);
16203 #endif /* HAVE_WINDOW_SYSTEM */
16205 /* We go to this label, with fonts_changed_p set,
16206 if it is necessary to try again using larger glyph matrices.
16207 We have to redeem the scroll bar even in this case,
16208 because the loop in redisplay_internal expects that. */
16209 need_larger_matrices:
16211 finish_scroll_bars:
16213 if (WINDOW_HAS_VERTICAL_SCROLL_BAR (w))
16215 /* Set the thumb's position and size. */
16216 set_vertical_scroll_bar (w);
16218 /* Note that we actually used the scroll bar attached to this
16219 window, so it shouldn't be deleted at the end of redisplay. */
16220 if (FRAME_TERMINAL (f)->redeem_scroll_bar_hook)
16221 (*FRAME_TERMINAL (f)->redeem_scroll_bar_hook) (w);
16224 /* Restore current_buffer and value of point in it. The window
16225 update may have changed the buffer, so first make sure `opoint'
16226 is still valid (Bug#6177). */
16227 if (CHARPOS (opoint) < BEGV)
16228 TEMP_SET_PT_BOTH (BEGV, BEGV_BYTE);
16229 else if (CHARPOS (opoint) > ZV)
16230 TEMP_SET_PT_BOTH (Z, Z_BYTE);
16231 else
16232 TEMP_SET_PT_BOTH (CHARPOS (opoint), BYTEPOS (opoint));
16234 set_buffer_internal_1 (old);
16235 /* Avoid an abort in TEMP_SET_PT_BOTH if the buffer has become
16236 shorter. This can be caused by log truncation in *Messages*. */
16237 if (CHARPOS (lpoint) <= ZV)
16238 TEMP_SET_PT_BOTH (CHARPOS (lpoint), BYTEPOS (lpoint));
16240 unbind_to (count, Qnil);
16244 /* Build the complete desired matrix of WINDOW with a window start
16245 buffer position POS.
16247 Value is 1 if successful. It is zero if fonts were loaded during
16248 redisplay which makes re-adjusting glyph matrices necessary, and -1
16249 if point would appear in the scroll margins.
16250 (We check the former only if TRY_WINDOW_IGNORE_FONTS_CHANGE is
16251 unset in FLAGS, and the latter only if TRY_WINDOW_CHECK_MARGINS is
16252 set in FLAGS.) */
16255 try_window (Lisp_Object window, struct text_pos pos, int flags)
16257 struct window *w = XWINDOW (window);
16258 struct it it;
16259 struct glyph_row *last_text_row = NULL;
16260 struct frame *f = XFRAME (w->frame);
16261 int frame_line_height = default_line_pixel_height (w);
16263 /* Make POS the new window start. */
16264 set_marker_both (w->start, Qnil, CHARPOS (pos), BYTEPOS (pos));
16266 /* Mark cursor position as unknown. No overlay arrow seen. */
16267 w->cursor.vpos = -1;
16268 overlay_arrow_seen = 0;
16270 /* Initialize iterator and info to start at POS. */
16271 start_display (&it, w, pos);
16273 /* Display all lines of W. */
16274 while (it.current_y < it.last_visible_y)
16276 if (display_line (&it))
16277 last_text_row = it.glyph_row - 1;
16278 if (fonts_changed_p && !(flags & TRY_WINDOW_IGNORE_FONTS_CHANGE))
16279 return 0;
16282 /* Don't let the cursor end in the scroll margins. */
16283 if ((flags & TRY_WINDOW_CHECK_MARGINS)
16284 && !MINI_WINDOW_P (w))
16286 int this_scroll_margin;
16287 int window_total_lines
16288 = WINDOW_TOTAL_LINES (w) * FRAME_LINE_HEIGHT (f) / frame_line_height;
16290 if (scroll_margin > 0)
16292 this_scroll_margin = min (scroll_margin, window_total_lines / 4);
16293 this_scroll_margin *= frame_line_height;
16295 else
16296 this_scroll_margin = 0;
16298 if ((w->cursor.y >= 0 /* not vscrolled */
16299 && w->cursor.y < this_scroll_margin
16300 && CHARPOS (pos) > BEGV
16301 && IT_CHARPOS (it) < ZV)
16302 /* rms: considering make_cursor_line_fully_visible_p here
16303 seems to give wrong results. We don't want to recenter
16304 when the last line is partly visible, we want to allow
16305 that case to be handled in the usual way. */
16306 || w->cursor.y > it.last_visible_y - this_scroll_margin - 1)
16308 w->cursor.vpos = -1;
16309 clear_glyph_matrix (w->desired_matrix);
16310 return -1;
16314 /* If bottom moved off end of frame, change mode line percentage. */
16315 if (w->window_end_pos <= 0 && Z != IT_CHARPOS (it))
16316 w->update_mode_line = 1;
16318 /* Set window_end_pos to the offset of the last character displayed
16319 on the window from the end of current_buffer. Set
16320 window_end_vpos to its row number. */
16321 if (last_text_row)
16323 eassert (MATRIX_ROW_DISPLAYS_TEXT_P (last_text_row));
16324 adjust_window_ends (w, last_text_row, 0);
16325 eassert
16326 (MATRIX_ROW_DISPLAYS_TEXT_P (MATRIX_ROW (w->desired_matrix,
16327 w->window_end_vpos)));
16329 else
16331 w->window_end_bytepos = Z_BYTE - ZV_BYTE;
16332 w->window_end_pos = Z - ZV;
16333 w->window_end_vpos = 0;
16336 /* But that is not valid info until redisplay finishes. */
16337 w->window_end_valid = 0;
16338 return 1;
16343 /************************************************************************
16344 Window redisplay reusing current matrix when buffer has not changed
16345 ************************************************************************/
16347 /* Try redisplay of window W showing an unchanged buffer with a
16348 different window start than the last time it was displayed by
16349 reusing its current matrix. Value is non-zero if successful.
16350 W->start is the new window start. */
16352 static int
16353 try_window_reusing_current_matrix (struct window *w)
16355 struct frame *f = XFRAME (w->frame);
16356 struct glyph_row *bottom_row;
16357 struct it it;
16358 struct run run;
16359 struct text_pos start, new_start;
16360 int nrows_scrolled, i;
16361 struct glyph_row *last_text_row;
16362 struct glyph_row *last_reused_text_row;
16363 struct glyph_row *start_row;
16364 int start_vpos, min_y, max_y;
16366 #ifdef GLYPH_DEBUG
16367 if (inhibit_try_window_reusing)
16368 return 0;
16369 #endif
16371 if (/* This function doesn't handle terminal frames. */
16372 !FRAME_WINDOW_P (f)
16373 /* Don't try to reuse the display if windows have been split
16374 or such. */
16375 || windows_or_buffers_changed
16376 || cursor_type_changed)
16377 return 0;
16379 /* Can't do this if region may have changed. */
16380 if (markpos_of_region () >= 0
16381 || w->region_showing
16382 || !NILP (Vshow_trailing_whitespace))
16383 return 0;
16385 /* If top-line visibility has changed, give up. */
16386 if (WINDOW_WANTS_HEADER_LINE_P (w)
16387 != MATRIX_HEADER_LINE_ROW (w->current_matrix)->mode_line_p)
16388 return 0;
16390 /* Give up if old or new display is scrolled vertically. We could
16391 make this function handle this, but right now it doesn't. */
16392 start_row = MATRIX_FIRST_TEXT_ROW (w->current_matrix);
16393 if (w->vscroll || MATRIX_ROW_PARTIALLY_VISIBLE_P (w, start_row))
16394 return 0;
16396 /* The variable new_start now holds the new window start. The old
16397 start `start' can be determined from the current matrix. */
16398 SET_TEXT_POS_FROM_MARKER (new_start, w->start);
16399 start = start_row->minpos;
16400 start_vpos = MATRIX_ROW_VPOS (start_row, w->current_matrix);
16402 /* Clear the desired matrix for the display below. */
16403 clear_glyph_matrix (w->desired_matrix);
16405 if (CHARPOS (new_start) <= CHARPOS (start))
16407 /* Don't use this method if the display starts with an ellipsis
16408 displayed for invisible text. It's not easy to handle that case
16409 below, and it's certainly not worth the effort since this is
16410 not a frequent case. */
16411 if (in_ellipses_for_invisible_text_p (&start_row->start, w))
16412 return 0;
16414 IF_DEBUG (debug_method_add (w, "twu1"));
16416 /* Display up to a row that can be reused. The variable
16417 last_text_row is set to the last row displayed that displays
16418 text. Note that it.vpos == 0 if or if not there is a
16419 header-line; it's not the same as the MATRIX_ROW_VPOS! */
16420 start_display (&it, w, new_start);
16421 w->cursor.vpos = -1;
16422 last_text_row = last_reused_text_row = NULL;
16424 while (it.current_y < it.last_visible_y
16425 && !fonts_changed_p)
16427 /* If we have reached into the characters in the START row,
16428 that means the line boundaries have changed. So we
16429 can't start copying with the row START. Maybe it will
16430 work to start copying with the following row. */
16431 while (IT_CHARPOS (it) > CHARPOS (start))
16433 /* Advance to the next row as the "start". */
16434 start_row++;
16435 start = start_row->minpos;
16436 /* If there are no more rows to try, or just one, give up. */
16437 if (start_row == MATRIX_MODE_LINE_ROW (w->current_matrix) - 1
16438 || w->vscroll || MATRIX_ROW_PARTIALLY_VISIBLE_P (w, start_row)
16439 || CHARPOS (start) == ZV)
16441 clear_glyph_matrix (w->desired_matrix);
16442 return 0;
16445 start_vpos = MATRIX_ROW_VPOS (start_row, w->current_matrix);
16447 /* If we have reached alignment, we can copy the rest of the
16448 rows. */
16449 if (IT_CHARPOS (it) == CHARPOS (start)
16450 /* Don't accept "alignment" inside a display vector,
16451 since start_row could have started in the middle of
16452 that same display vector (thus their character
16453 positions match), and we have no way of telling if
16454 that is the case. */
16455 && it.current.dpvec_index < 0)
16456 break;
16458 if (display_line (&it))
16459 last_text_row = it.glyph_row - 1;
16463 /* A value of current_y < last_visible_y means that we stopped
16464 at the previous window start, which in turn means that we
16465 have at least one reusable row. */
16466 if (it.current_y < it.last_visible_y)
16468 struct glyph_row *row;
16470 /* IT.vpos always starts from 0; it counts text lines. */
16471 nrows_scrolled = it.vpos - (start_row - MATRIX_FIRST_TEXT_ROW (w->current_matrix));
16473 /* Find PT if not already found in the lines displayed. */
16474 if (w->cursor.vpos < 0)
16476 int dy = it.current_y - start_row->y;
16478 row = MATRIX_FIRST_TEXT_ROW (w->current_matrix);
16479 row = row_containing_pos (w, PT, row, NULL, dy);
16480 if (row)
16481 set_cursor_from_row (w, row, w->current_matrix, 0, 0,
16482 dy, nrows_scrolled);
16483 else
16485 clear_glyph_matrix (w->desired_matrix);
16486 return 0;
16490 /* Scroll the display. Do it before the current matrix is
16491 changed. The problem here is that update has not yet
16492 run, i.e. part of the current matrix is not up to date.
16493 scroll_run_hook will clear the cursor, and use the
16494 current matrix to get the height of the row the cursor is
16495 in. */
16496 run.current_y = start_row->y;
16497 run.desired_y = it.current_y;
16498 run.height = it.last_visible_y - it.current_y;
16500 if (run.height > 0 && run.current_y != run.desired_y)
16502 update_begin (f);
16503 FRAME_RIF (f)->update_window_begin_hook (w);
16504 FRAME_RIF (f)->clear_window_mouse_face (w);
16505 FRAME_RIF (f)->scroll_run_hook (w, &run);
16506 FRAME_RIF (f)->update_window_end_hook (w, 0, 0);
16507 update_end (f);
16510 /* Shift current matrix down by nrows_scrolled lines. */
16511 bottom_row = MATRIX_BOTTOM_TEXT_ROW (w->current_matrix, w);
16512 rotate_matrix (w->current_matrix,
16513 start_vpos,
16514 MATRIX_ROW_VPOS (bottom_row, w->current_matrix),
16515 nrows_scrolled);
16517 /* Disable lines that must be updated. */
16518 for (i = 0; i < nrows_scrolled; ++i)
16519 (start_row + i)->enabled_p = 0;
16521 /* Re-compute Y positions. */
16522 min_y = WINDOW_HEADER_LINE_HEIGHT (w);
16523 max_y = it.last_visible_y;
16524 for (row = start_row + nrows_scrolled;
16525 row < bottom_row;
16526 ++row)
16528 row->y = it.current_y;
16529 row->visible_height = row->height;
16531 if (row->y < min_y)
16532 row->visible_height -= min_y - row->y;
16533 if (row->y + row->height > max_y)
16534 row->visible_height -= row->y + row->height - max_y;
16535 if (row->fringe_bitmap_periodic_p)
16536 row->redraw_fringe_bitmaps_p = 1;
16538 it.current_y += row->height;
16540 if (MATRIX_ROW_DISPLAYS_TEXT_P (row))
16541 last_reused_text_row = row;
16542 if (MATRIX_ROW_BOTTOM_Y (row) >= it.last_visible_y)
16543 break;
16546 /* Disable lines in the current matrix which are now
16547 below the window. */
16548 for (++row; row < bottom_row; ++row)
16549 row->enabled_p = row->mode_line_p = 0;
16552 /* Update window_end_pos etc.; last_reused_text_row is the last
16553 reused row from the current matrix containing text, if any.
16554 The value of last_text_row is the last displayed line
16555 containing text. */
16556 if (last_reused_text_row)
16557 adjust_window_ends (w, last_reused_text_row, 1);
16558 else if (last_text_row)
16559 adjust_window_ends (w, last_text_row, 0);
16560 else
16562 /* This window must be completely empty. */
16563 w->window_end_bytepos = Z_BYTE - ZV_BYTE;
16564 w->window_end_pos = Z - ZV;
16565 w->window_end_vpos = 0;
16567 w->window_end_valid = 0;
16569 /* Update hint: don't try scrolling again in update_window. */
16570 w->desired_matrix->no_scrolling_p = 1;
16572 #ifdef GLYPH_DEBUG
16573 debug_method_add (w, "try_window_reusing_current_matrix 1");
16574 #endif
16575 return 1;
16577 else if (CHARPOS (new_start) > CHARPOS (start))
16579 struct glyph_row *pt_row, *row;
16580 struct glyph_row *first_reusable_row;
16581 struct glyph_row *first_row_to_display;
16582 int dy;
16583 int yb = window_text_bottom_y (w);
16585 /* Find the row starting at new_start, if there is one. Don't
16586 reuse a partially visible line at the end. */
16587 first_reusable_row = start_row;
16588 while (first_reusable_row->enabled_p
16589 && MATRIX_ROW_BOTTOM_Y (first_reusable_row) < yb
16590 && (MATRIX_ROW_START_CHARPOS (first_reusable_row)
16591 < CHARPOS (new_start)))
16592 ++first_reusable_row;
16594 /* Give up if there is no row to reuse. */
16595 if (MATRIX_ROW_BOTTOM_Y (first_reusable_row) >= yb
16596 || !first_reusable_row->enabled_p
16597 || (MATRIX_ROW_START_CHARPOS (first_reusable_row)
16598 != CHARPOS (new_start)))
16599 return 0;
16601 /* We can reuse fully visible rows beginning with
16602 first_reusable_row to the end of the window. Set
16603 first_row_to_display to the first row that cannot be reused.
16604 Set pt_row to the row containing point, if there is any. */
16605 pt_row = NULL;
16606 for (first_row_to_display = first_reusable_row;
16607 MATRIX_ROW_BOTTOM_Y (first_row_to_display) < yb;
16608 ++first_row_to_display)
16610 if (PT >= MATRIX_ROW_START_CHARPOS (first_row_to_display)
16611 && (PT < MATRIX_ROW_END_CHARPOS (first_row_to_display)
16612 || (PT == MATRIX_ROW_END_CHARPOS (first_row_to_display)
16613 && first_row_to_display->ends_at_zv_p
16614 && pt_row == NULL)))
16615 pt_row = first_row_to_display;
16618 /* Start displaying at the start of first_row_to_display. */
16619 eassert (first_row_to_display->y < yb);
16620 init_to_row_start (&it, w, first_row_to_display);
16622 nrows_scrolled = (MATRIX_ROW_VPOS (first_reusable_row, w->current_matrix)
16623 - start_vpos);
16624 it.vpos = (MATRIX_ROW_VPOS (first_row_to_display, w->current_matrix)
16625 - nrows_scrolled);
16626 it.current_y = (first_row_to_display->y - first_reusable_row->y
16627 + WINDOW_HEADER_LINE_HEIGHT (w));
16629 /* Display lines beginning with first_row_to_display in the
16630 desired matrix. Set last_text_row to the last row displayed
16631 that displays text. */
16632 it.glyph_row = MATRIX_ROW (w->desired_matrix, it.vpos);
16633 if (pt_row == NULL)
16634 w->cursor.vpos = -1;
16635 last_text_row = NULL;
16636 while (it.current_y < it.last_visible_y && !fonts_changed_p)
16637 if (display_line (&it))
16638 last_text_row = it.glyph_row - 1;
16640 /* If point is in a reused row, adjust y and vpos of the cursor
16641 position. */
16642 if (pt_row)
16644 w->cursor.vpos -= nrows_scrolled;
16645 w->cursor.y -= first_reusable_row->y - start_row->y;
16648 /* Give up if point isn't in a row displayed or reused. (This
16649 also handles the case where w->cursor.vpos < nrows_scrolled
16650 after the calls to display_line, which can happen with scroll
16651 margins. See bug#1295.) */
16652 if (w->cursor.vpos < 0)
16654 clear_glyph_matrix (w->desired_matrix);
16655 return 0;
16658 /* Scroll the display. */
16659 run.current_y = first_reusable_row->y;
16660 run.desired_y = WINDOW_HEADER_LINE_HEIGHT (w);
16661 run.height = it.last_visible_y - run.current_y;
16662 dy = run.current_y - run.desired_y;
16664 if (run.height)
16666 update_begin (f);
16667 FRAME_RIF (f)->update_window_begin_hook (w);
16668 FRAME_RIF (f)->clear_window_mouse_face (w);
16669 FRAME_RIF (f)->scroll_run_hook (w, &run);
16670 FRAME_RIF (f)->update_window_end_hook (w, 0, 0);
16671 update_end (f);
16674 /* Adjust Y positions of reused rows. */
16675 bottom_row = MATRIX_BOTTOM_TEXT_ROW (w->current_matrix, w);
16676 min_y = WINDOW_HEADER_LINE_HEIGHT (w);
16677 max_y = it.last_visible_y;
16678 for (row = first_reusable_row; row < first_row_to_display; ++row)
16680 row->y -= dy;
16681 row->visible_height = row->height;
16682 if (row->y < min_y)
16683 row->visible_height -= min_y - row->y;
16684 if (row->y + row->height > max_y)
16685 row->visible_height -= row->y + row->height - max_y;
16686 if (row->fringe_bitmap_periodic_p)
16687 row->redraw_fringe_bitmaps_p = 1;
16690 /* Scroll the current matrix. */
16691 eassert (nrows_scrolled > 0);
16692 rotate_matrix (w->current_matrix,
16693 start_vpos,
16694 MATRIX_ROW_VPOS (bottom_row, w->current_matrix),
16695 -nrows_scrolled);
16697 /* Disable rows not reused. */
16698 for (row -= nrows_scrolled; row < bottom_row; ++row)
16699 row->enabled_p = 0;
16701 /* Point may have moved to a different line, so we cannot assume that
16702 the previous cursor position is valid; locate the correct row. */
16703 if (pt_row)
16705 for (row = MATRIX_ROW (w->current_matrix, w->cursor.vpos);
16706 row < bottom_row
16707 && PT >= MATRIX_ROW_END_CHARPOS (row)
16708 && !row->ends_at_zv_p;
16709 row++)
16711 w->cursor.vpos++;
16712 w->cursor.y = row->y;
16714 if (row < bottom_row)
16716 /* Can't simply scan the row for point with
16717 bidi-reordered glyph rows. Let set_cursor_from_row
16718 figure out where to put the cursor, and if it fails,
16719 give up. */
16720 if (!NILP (BVAR (XBUFFER (w->contents), bidi_display_reordering)))
16722 if (!set_cursor_from_row (w, row, w->current_matrix,
16723 0, 0, 0, 0))
16725 clear_glyph_matrix (w->desired_matrix);
16726 return 0;
16729 else
16731 struct glyph *glyph = row->glyphs[TEXT_AREA] + w->cursor.hpos;
16732 struct glyph *end = row->glyphs[TEXT_AREA] + row->used[TEXT_AREA];
16734 for (; glyph < end
16735 && (!BUFFERP (glyph->object)
16736 || glyph->charpos < PT);
16737 glyph++)
16739 w->cursor.hpos++;
16740 w->cursor.x += glyph->pixel_width;
16746 /* Adjust window end. A null value of last_text_row means that
16747 the window end is in reused rows which in turn means that
16748 only its vpos can have changed. */
16749 if (last_text_row)
16750 adjust_window_ends (w, last_text_row, 0);
16751 else
16752 w->window_end_vpos -= nrows_scrolled;
16754 w->window_end_valid = 0;
16755 w->desired_matrix->no_scrolling_p = 1;
16757 #ifdef GLYPH_DEBUG
16758 debug_method_add (w, "try_window_reusing_current_matrix 2");
16759 #endif
16760 return 1;
16763 return 0;
16768 /************************************************************************
16769 Window redisplay reusing current matrix when buffer has changed
16770 ************************************************************************/
16772 static struct glyph_row *find_last_unchanged_at_beg_row (struct window *);
16773 static struct glyph_row *find_first_unchanged_at_end_row (struct window *,
16774 ptrdiff_t *, ptrdiff_t *);
16775 static struct glyph_row *
16776 find_last_row_displaying_text (struct glyph_matrix *, struct it *,
16777 struct glyph_row *);
16780 /* Return the last row in MATRIX displaying text. If row START is
16781 non-null, start searching with that row. IT gives the dimensions
16782 of the display. Value is null if matrix is empty; otherwise it is
16783 a pointer to the row found. */
16785 static struct glyph_row *
16786 find_last_row_displaying_text (struct glyph_matrix *matrix, struct it *it,
16787 struct glyph_row *start)
16789 struct glyph_row *row, *row_found;
16791 /* Set row_found to the last row in IT->w's current matrix
16792 displaying text. The loop looks funny but think of partially
16793 visible lines. */
16794 row_found = NULL;
16795 row = start ? start : MATRIX_FIRST_TEXT_ROW (matrix);
16796 while (MATRIX_ROW_DISPLAYS_TEXT_P (row))
16798 eassert (row->enabled_p);
16799 row_found = row;
16800 if (MATRIX_ROW_BOTTOM_Y (row) >= it->last_visible_y)
16801 break;
16802 ++row;
16805 return row_found;
16809 /* Return the last row in the current matrix of W that is not affected
16810 by changes at the start of current_buffer that occurred since W's
16811 current matrix was built. Value is null if no such row exists.
16813 BEG_UNCHANGED us the number of characters unchanged at the start of
16814 current_buffer. BEG + BEG_UNCHANGED is the buffer position of the
16815 first changed character in current_buffer. Characters at positions <
16816 BEG + BEG_UNCHANGED are at the same buffer positions as they were
16817 when the current matrix was built. */
16819 static struct glyph_row *
16820 find_last_unchanged_at_beg_row (struct window *w)
16822 ptrdiff_t first_changed_pos = BEG + BEG_UNCHANGED;
16823 struct glyph_row *row;
16824 struct glyph_row *row_found = NULL;
16825 int yb = window_text_bottom_y (w);
16827 /* Find the last row displaying unchanged text. */
16828 for (row = MATRIX_FIRST_TEXT_ROW (w->current_matrix);
16829 MATRIX_ROW_DISPLAYS_TEXT_P (row)
16830 && MATRIX_ROW_START_CHARPOS (row) < first_changed_pos;
16831 ++row)
16833 if (/* If row ends before first_changed_pos, it is unchanged,
16834 except in some case. */
16835 MATRIX_ROW_END_CHARPOS (row) <= first_changed_pos
16836 /* When row ends in ZV and we write at ZV it is not
16837 unchanged. */
16838 && !row->ends_at_zv_p
16839 /* When first_changed_pos is the end of a continued line,
16840 row is not unchanged because it may be no longer
16841 continued. */
16842 && !(MATRIX_ROW_END_CHARPOS (row) == first_changed_pos
16843 && (row->continued_p
16844 || row->exact_window_width_line_p))
16845 /* If ROW->end is beyond ZV, then ROW->end is outdated and
16846 needs to be recomputed, so don't consider this row as
16847 unchanged. This happens when the last line was
16848 bidi-reordered and was killed immediately before this
16849 redisplay cycle. In that case, ROW->end stores the
16850 buffer position of the first visual-order character of
16851 the killed text, which is now beyond ZV. */
16852 && CHARPOS (row->end.pos) <= ZV)
16853 row_found = row;
16855 /* Stop if last visible row. */
16856 if (MATRIX_ROW_BOTTOM_Y (row) >= yb)
16857 break;
16860 return row_found;
16864 /* Find the first glyph row in the current matrix of W that is not
16865 affected by changes at the end of current_buffer since the
16866 time W's current matrix was built.
16868 Return in *DELTA the number of chars by which buffer positions in
16869 unchanged text at the end of current_buffer must be adjusted.
16871 Return in *DELTA_BYTES the corresponding number of bytes.
16873 Value is null if no such row exists, i.e. all rows are affected by
16874 changes. */
16876 static struct glyph_row *
16877 find_first_unchanged_at_end_row (struct window *w,
16878 ptrdiff_t *delta, ptrdiff_t *delta_bytes)
16880 struct glyph_row *row;
16881 struct glyph_row *row_found = NULL;
16883 *delta = *delta_bytes = 0;
16885 /* Display must not have been paused, otherwise the current matrix
16886 is not up to date. */
16887 eassert (w->window_end_valid);
16889 /* A value of window_end_pos >= END_UNCHANGED means that the window
16890 end is in the range of changed text. If so, there is no
16891 unchanged row at the end of W's current matrix. */
16892 if (w->window_end_pos >= END_UNCHANGED)
16893 return NULL;
16895 /* Set row to the last row in W's current matrix displaying text. */
16896 row = MATRIX_ROW (w->current_matrix, w->window_end_vpos);
16898 /* If matrix is entirely empty, no unchanged row exists. */
16899 if (MATRIX_ROW_DISPLAYS_TEXT_P (row))
16901 /* The value of row is the last glyph row in the matrix having a
16902 meaningful buffer position in it. The end position of row
16903 corresponds to window_end_pos. This allows us to translate
16904 buffer positions in the current matrix to current buffer
16905 positions for characters not in changed text. */
16906 ptrdiff_t Z_old =
16907 MATRIX_ROW_END_CHARPOS (row) + w->window_end_pos;
16908 ptrdiff_t Z_BYTE_old =
16909 MATRIX_ROW_END_BYTEPOS (row) + w->window_end_bytepos;
16910 ptrdiff_t last_unchanged_pos, last_unchanged_pos_old;
16911 struct glyph_row *first_text_row
16912 = MATRIX_FIRST_TEXT_ROW (w->current_matrix);
16914 *delta = Z - Z_old;
16915 *delta_bytes = Z_BYTE - Z_BYTE_old;
16917 /* Set last_unchanged_pos to the buffer position of the last
16918 character in the buffer that has not been changed. Z is the
16919 index + 1 of the last character in current_buffer, i.e. by
16920 subtracting END_UNCHANGED we get the index of the last
16921 unchanged character, and we have to add BEG to get its buffer
16922 position. */
16923 last_unchanged_pos = Z - END_UNCHANGED + BEG;
16924 last_unchanged_pos_old = last_unchanged_pos - *delta;
16926 /* Search backward from ROW for a row displaying a line that
16927 starts at a minimum position >= last_unchanged_pos_old. */
16928 for (; row > first_text_row; --row)
16930 /* This used to abort, but it can happen.
16931 It is ok to just stop the search instead here. KFS. */
16932 if (!row->enabled_p || !MATRIX_ROW_DISPLAYS_TEXT_P (row))
16933 break;
16935 if (MATRIX_ROW_START_CHARPOS (row) >= last_unchanged_pos_old)
16936 row_found = row;
16940 eassert (!row_found || MATRIX_ROW_DISPLAYS_TEXT_P (row_found));
16942 return row_found;
16946 /* Make sure that glyph rows in the current matrix of window W
16947 reference the same glyph memory as corresponding rows in the
16948 frame's frame matrix. This function is called after scrolling W's
16949 current matrix on a terminal frame in try_window_id and
16950 try_window_reusing_current_matrix. */
16952 static void
16953 sync_frame_with_window_matrix_rows (struct window *w)
16955 struct frame *f = XFRAME (w->frame);
16956 struct glyph_row *window_row, *window_row_end, *frame_row;
16958 /* Preconditions: W must be a leaf window and full-width. Its frame
16959 must have a frame matrix. */
16960 eassert (BUFFERP (w->contents));
16961 eassert (WINDOW_FULL_WIDTH_P (w));
16962 eassert (!FRAME_WINDOW_P (f));
16964 /* If W is a full-width window, glyph pointers in W's current matrix
16965 have, by definition, to be the same as glyph pointers in the
16966 corresponding frame matrix. Note that frame matrices have no
16967 marginal areas (see build_frame_matrix). */
16968 window_row = w->current_matrix->rows;
16969 window_row_end = window_row + w->current_matrix->nrows;
16970 frame_row = f->current_matrix->rows + WINDOW_TOP_EDGE_LINE (w);
16971 while (window_row < window_row_end)
16973 struct glyph *start = window_row->glyphs[LEFT_MARGIN_AREA];
16974 struct glyph *end = window_row->glyphs[LAST_AREA];
16976 frame_row->glyphs[LEFT_MARGIN_AREA] = start;
16977 frame_row->glyphs[TEXT_AREA] = start;
16978 frame_row->glyphs[RIGHT_MARGIN_AREA] = end;
16979 frame_row->glyphs[LAST_AREA] = end;
16981 /* Disable frame rows whose corresponding window rows have
16982 been disabled in try_window_id. */
16983 if (!window_row->enabled_p)
16984 frame_row->enabled_p = 0;
16986 ++window_row, ++frame_row;
16991 /* Find the glyph row in window W containing CHARPOS. Consider all
16992 rows between START and END (not inclusive). END null means search
16993 all rows to the end of the display area of W. Value is the row
16994 containing CHARPOS or null. */
16996 struct glyph_row *
16997 row_containing_pos (struct window *w, ptrdiff_t charpos,
16998 struct glyph_row *start, struct glyph_row *end, int dy)
17000 struct glyph_row *row = start;
17001 struct glyph_row *best_row = NULL;
17002 ptrdiff_t mindif = BUF_ZV (XBUFFER (w->contents)) + 1;
17003 int last_y;
17005 /* If we happen to start on a header-line, skip that. */
17006 if (row->mode_line_p)
17007 ++row;
17009 if ((end && row >= end) || !row->enabled_p)
17010 return NULL;
17012 last_y = window_text_bottom_y (w) - dy;
17014 while (1)
17016 /* Give up if we have gone too far. */
17017 if (end && row >= end)
17018 return NULL;
17019 /* This formerly returned if they were equal.
17020 I think that both quantities are of a "last plus one" type;
17021 if so, when they are equal, the row is within the screen. -- rms. */
17022 if (MATRIX_ROW_BOTTOM_Y (row) > last_y)
17023 return NULL;
17025 /* If it is in this row, return this row. */
17026 if (! (MATRIX_ROW_END_CHARPOS (row) < charpos
17027 || (MATRIX_ROW_END_CHARPOS (row) == charpos
17028 /* The end position of a row equals the start
17029 position of the next row. If CHARPOS is there, we
17030 would rather consider it displayed in the next
17031 line, except when this line ends in ZV. */
17032 && !row_for_charpos_p (row, charpos)))
17033 && charpos >= MATRIX_ROW_START_CHARPOS (row))
17035 struct glyph *g;
17037 if (NILP (BVAR (XBUFFER (w->contents), bidi_display_reordering))
17038 || (!best_row && !row->continued_p))
17039 return row;
17040 /* In bidi-reordered rows, there could be several rows whose
17041 edges surround CHARPOS, all of these rows belonging to
17042 the same continued line. We need to find the row which
17043 fits CHARPOS the best. */
17044 for (g = row->glyphs[TEXT_AREA];
17045 g < row->glyphs[TEXT_AREA] + row->used[TEXT_AREA];
17046 g++)
17048 if (!STRINGP (g->object))
17050 if (g->charpos > 0 && eabs (g->charpos - charpos) < mindif)
17052 mindif = eabs (g->charpos - charpos);
17053 best_row = row;
17054 /* Exact match always wins. */
17055 if (mindif == 0)
17056 return best_row;
17061 else if (best_row && !row->continued_p)
17062 return best_row;
17063 ++row;
17068 /* Try to redisplay window W by reusing its existing display. W's
17069 current matrix must be up to date when this function is called,
17070 i.e. window_end_valid must be nonzero.
17072 Value is
17074 1 if display has been updated
17075 0 if otherwise unsuccessful
17076 -1 if redisplay with same window start is known not to succeed
17078 The following steps are performed:
17080 1. Find the last row in the current matrix of W that is not
17081 affected by changes at the start of current_buffer. If no such row
17082 is found, give up.
17084 2. Find the first row in W's current matrix that is not affected by
17085 changes at the end of current_buffer. Maybe there is no such row.
17087 3. Display lines beginning with the row + 1 found in step 1 to the
17088 row found in step 2 or, if step 2 didn't find a row, to the end of
17089 the window.
17091 4. If cursor is not known to appear on the window, give up.
17093 5. If display stopped at the row found in step 2, scroll the
17094 display and current matrix as needed.
17096 6. Maybe display some lines at the end of W, if we must. This can
17097 happen under various circumstances, like a partially visible line
17098 becoming fully visible, or because newly displayed lines are displayed
17099 in smaller font sizes.
17101 7. Update W's window end information. */
17103 static int
17104 try_window_id (struct window *w)
17106 struct frame *f = XFRAME (w->frame);
17107 struct glyph_matrix *current_matrix = w->current_matrix;
17108 struct glyph_matrix *desired_matrix = w->desired_matrix;
17109 struct glyph_row *last_unchanged_at_beg_row;
17110 struct glyph_row *first_unchanged_at_end_row;
17111 struct glyph_row *row;
17112 struct glyph_row *bottom_row;
17113 int bottom_vpos;
17114 struct it it;
17115 ptrdiff_t delta = 0, delta_bytes = 0, stop_pos;
17116 int dvpos, dy;
17117 struct text_pos start_pos;
17118 struct run run;
17119 int first_unchanged_at_end_vpos = 0;
17120 struct glyph_row *last_text_row, *last_text_row_at_end;
17121 struct text_pos start;
17122 ptrdiff_t first_changed_charpos, last_changed_charpos;
17124 #ifdef GLYPH_DEBUG
17125 if (inhibit_try_window_id)
17126 return 0;
17127 #endif
17129 /* This is handy for debugging. */
17130 #if 0
17131 #define GIVE_UP(X) \
17132 do { \
17133 fprintf (stderr, "try_window_id give up %d\n", (X)); \
17134 return 0; \
17135 } while (0)
17136 #else
17137 #define GIVE_UP(X) return 0
17138 #endif
17140 SET_TEXT_POS_FROM_MARKER (start, w->start);
17142 /* Don't use this for mini-windows because these can show
17143 messages and mini-buffers, and we don't handle that here. */
17144 if (MINI_WINDOW_P (w))
17145 GIVE_UP (1);
17147 /* This flag is used to prevent redisplay optimizations. */
17148 if (windows_or_buffers_changed || cursor_type_changed)
17149 GIVE_UP (2);
17151 /* Verify that narrowing has not changed.
17152 Also verify that we were not told to prevent redisplay optimizations.
17153 It would be nice to further
17154 reduce the number of cases where this prevents try_window_id. */
17155 if (current_buffer->clip_changed
17156 || current_buffer->prevent_redisplay_optimizations_p)
17157 GIVE_UP (3);
17159 /* Window must either use window-based redisplay or be full width. */
17160 if (!FRAME_WINDOW_P (f)
17161 && (!FRAME_LINE_INS_DEL_OK (f)
17162 || !WINDOW_FULL_WIDTH_P (w)))
17163 GIVE_UP (4);
17165 /* Give up if point is known NOT to appear in W. */
17166 if (PT < CHARPOS (start))
17167 GIVE_UP (5);
17169 /* Another way to prevent redisplay optimizations. */
17170 if (w->last_modified == 0)
17171 GIVE_UP (6);
17173 /* Verify that window is not hscrolled. */
17174 if (w->hscroll != 0)
17175 GIVE_UP (7);
17177 /* Verify that display wasn't paused. */
17178 if (!w->window_end_valid)
17179 GIVE_UP (8);
17181 /* Can't use this if highlighting a region because a cursor movement
17182 will do more than just set the cursor. */
17183 if (markpos_of_region () >= 0)
17184 GIVE_UP (9);
17186 /* Likewise if highlighting trailing whitespace. */
17187 if (!NILP (Vshow_trailing_whitespace))
17188 GIVE_UP (11);
17190 /* Likewise if showing a region. */
17191 if (w->region_showing)
17192 GIVE_UP (10);
17194 /* Can't use this if overlay arrow position and/or string have
17195 changed. */
17196 if (overlay_arrows_changed_p ())
17197 GIVE_UP (12);
17199 /* When word-wrap is on, adding a space to the first word of a
17200 wrapped line can change the wrap position, altering the line
17201 above it. It might be worthwhile to handle this more
17202 intelligently, but for now just redisplay from scratch. */
17203 if (!NILP (BVAR (XBUFFER (w->contents), word_wrap)))
17204 GIVE_UP (21);
17206 /* Under bidi reordering, adding or deleting a character in the
17207 beginning of a paragraph, before the first strong directional
17208 character, can change the base direction of the paragraph (unless
17209 the buffer specifies a fixed paragraph direction), which will
17210 require to redisplay the whole paragraph. It might be worthwhile
17211 to find the paragraph limits and widen the range of redisplayed
17212 lines to that, but for now just give up this optimization and
17213 redisplay from scratch. */
17214 if (!NILP (BVAR (XBUFFER (w->contents), bidi_display_reordering))
17215 && NILP (BVAR (XBUFFER (w->contents), bidi_paragraph_direction)))
17216 GIVE_UP (22);
17218 /* Make sure beg_unchanged and end_unchanged are up to date. Do it
17219 only if buffer has really changed. The reason is that the gap is
17220 initially at Z for freshly visited files. The code below would
17221 set end_unchanged to 0 in that case. */
17222 if (MODIFF > SAVE_MODIFF
17223 /* This seems to happen sometimes after saving a buffer. */
17224 || BEG_UNCHANGED + END_UNCHANGED > Z_BYTE)
17226 if (GPT - BEG < BEG_UNCHANGED)
17227 BEG_UNCHANGED = GPT - BEG;
17228 if (Z - GPT < END_UNCHANGED)
17229 END_UNCHANGED = Z - GPT;
17232 /* The position of the first and last character that has been changed. */
17233 first_changed_charpos = BEG + BEG_UNCHANGED;
17234 last_changed_charpos = Z - END_UNCHANGED;
17236 /* If window starts after a line end, and the last change is in
17237 front of that newline, then changes don't affect the display.
17238 This case happens with stealth-fontification. Note that although
17239 the display is unchanged, glyph positions in the matrix have to
17240 be adjusted, of course. */
17241 row = MATRIX_ROW (w->current_matrix, w->window_end_vpos);
17242 if (MATRIX_ROW_DISPLAYS_TEXT_P (row)
17243 && ((last_changed_charpos < CHARPOS (start)
17244 && CHARPOS (start) == BEGV)
17245 || (last_changed_charpos < CHARPOS (start) - 1
17246 && FETCH_BYTE (BYTEPOS (start) - 1) == '\n')))
17248 ptrdiff_t Z_old, Z_delta, Z_BYTE_old, Z_delta_bytes;
17249 struct glyph_row *r0;
17251 /* Compute how many chars/bytes have been added to or removed
17252 from the buffer. */
17253 Z_old = MATRIX_ROW_END_CHARPOS (row) + w->window_end_pos;
17254 Z_BYTE_old = MATRIX_ROW_END_BYTEPOS (row) + w->window_end_bytepos;
17255 Z_delta = Z - Z_old;
17256 Z_delta_bytes = Z_BYTE - Z_BYTE_old;
17258 /* Give up if PT is not in the window. Note that it already has
17259 been checked at the start of try_window_id that PT is not in
17260 front of the window start. */
17261 if (PT >= MATRIX_ROW_END_CHARPOS (row) + Z_delta)
17262 GIVE_UP (13);
17264 /* If window start is unchanged, we can reuse the whole matrix
17265 as is, after adjusting glyph positions. No need to compute
17266 the window end again, since its offset from Z hasn't changed. */
17267 r0 = MATRIX_FIRST_TEXT_ROW (current_matrix);
17268 if (CHARPOS (start) == MATRIX_ROW_START_CHARPOS (r0) + Z_delta
17269 && BYTEPOS (start) == MATRIX_ROW_START_BYTEPOS (r0) + Z_delta_bytes
17270 /* PT must not be in a partially visible line. */
17271 && !(PT >= MATRIX_ROW_START_CHARPOS (row) + Z_delta
17272 && MATRIX_ROW_BOTTOM_Y (row) > window_text_bottom_y (w)))
17274 /* Adjust positions in the glyph matrix. */
17275 if (Z_delta || Z_delta_bytes)
17277 struct glyph_row *r1
17278 = MATRIX_BOTTOM_TEXT_ROW (current_matrix, w);
17279 increment_matrix_positions (w->current_matrix,
17280 MATRIX_ROW_VPOS (r0, current_matrix),
17281 MATRIX_ROW_VPOS (r1, current_matrix),
17282 Z_delta, Z_delta_bytes);
17285 /* Set the cursor. */
17286 row = row_containing_pos (w, PT, r0, NULL, 0);
17287 if (row)
17288 set_cursor_from_row (w, row, current_matrix, 0, 0, 0, 0);
17289 else
17290 emacs_abort ();
17291 return 1;
17295 /* Handle the case that changes are all below what is displayed in
17296 the window, and that PT is in the window. This shortcut cannot
17297 be taken if ZV is visible in the window, and text has been added
17298 there that is visible in the window. */
17299 if (first_changed_charpos >= MATRIX_ROW_END_CHARPOS (row)
17300 /* ZV is not visible in the window, or there are no
17301 changes at ZV, actually. */
17302 && (current_matrix->zv > MATRIX_ROW_END_CHARPOS (row)
17303 || first_changed_charpos == last_changed_charpos))
17305 struct glyph_row *r0;
17307 /* Give up if PT is not in the window. Note that it already has
17308 been checked at the start of try_window_id that PT is not in
17309 front of the window start. */
17310 if (PT >= MATRIX_ROW_END_CHARPOS (row))
17311 GIVE_UP (14);
17313 /* If window start is unchanged, we can reuse the whole matrix
17314 as is, without changing glyph positions since no text has
17315 been added/removed in front of the window end. */
17316 r0 = MATRIX_FIRST_TEXT_ROW (current_matrix);
17317 if (TEXT_POS_EQUAL_P (start, r0->minpos)
17318 /* PT must not be in a partially visible line. */
17319 && !(PT >= MATRIX_ROW_START_CHARPOS (row)
17320 && MATRIX_ROW_BOTTOM_Y (row) > window_text_bottom_y (w)))
17322 /* We have to compute the window end anew since text
17323 could have been added/removed after it. */
17324 w->window_end_pos = Z - MATRIX_ROW_END_CHARPOS (row);
17325 w->window_end_bytepos = Z_BYTE - MATRIX_ROW_END_BYTEPOS (row);
17327 /* Set the cursor. */
17328 row = row_containing_pos (w, PT, r0, NULL, 0);
17329 if (row)
17330 set_cursor_from_row (w, row, current_matrix, 0, 0, 0, 0);
17331 else
17332 emacs_abort ();
17333 return 2;
17337 /* Give up if window start is in the changed area.
17339 The condition used to read
17341 (BEG_UNCHANGED + END_UNCHANGED != Z - BEG && ...)
17343 but why that was tested escapes me at the moment. */
17344 if (CHARPOS (start) >= first_changed_charpos
17345 && CHARPOS (start) <= last_changed_charpos)
17346 GIVE_UP (15);
17348 /* Check that window start agrees with the start of the first glyph
17349 row in its current matrix. Check this after we know the window
17350 start is not in changed text, otherwise positions would not be
17351 comparable. */
17352 row = MATRIX_FIRST_TEXT_ROW (current_matrix);
17353 if (!TEXT_POS_EQUAL_P (start, row->minpos))
17354 GIVE_UP (16);
17356 /* Give up if the window ends in strings. Overlay strings
17357 at the end are difficult to handle, so don't try. */
17358 row = MATRIX_ROW (current_matrix, w->window_end_vpos);
17359 if (MATRIX_ROW_START_CHARPOS (row) == MATRIX_ROW_END_CHARPOS (row))
17360 GIVE_UP (20);
17362 /* Compute the position at which we have to start displaying new
17363 lines. Some of the lines at the top of the window might be
17364 reusable because they are not displaying changed text. Find the
17365 last row in W's current matrix not affected by changes at the
17366 start of current_buffer. Value is null if changes start in the
17367 first line of window. */
17368 last_unchanged_at_beg_row = find_last_unchanged_at_beg_row (w);
17369 if (last_unchanged_at_beg_row)
17371 /* Avoid starting to display in the middle of a character, a TAB
17372 for instance. This is easier than to set up the iterator
17373 exactly, and it's not a frequent case, so the additional
17374 effort wouldn't really pay off. */
17375 while ((MATRIX_ROW_ENDS_IN_MIDDLE_OF_CHAR_P (last_unchanged_at_beg_row)
17376 || last_unchanged_at_beg_row->ends_in_newline_from_string_p)
17377 && last_unchanged_at_beg_row > w->current_matrix->rows)
17378 --last_unchanged_at_beg_row;
17380 if (MATRIX_ROW_ENDS_IN_MIDDLE_OF_CHAR_P (last_unchanged_at_beg_row))
17381 GIVE_UP (17);
17383 if (init_to_row_end (&it, w, last_unchanged_at_beg_row) == 0)
17384 GIVE_UP (18);
17385 start_pos = it.current.pos;
17387 /* Start displaying new lines in the desired matrix at the same
17388 vpos we would use in the current matrix, i.e. below
17389 last_unchanged_at_beg_row. */
17390 it.vpos = 1 + MATRIX_ROW_VPOS (last_unchanged_at_beg_row,
17391 current_matrix);
17392 it.glyph_row = MATRIX_ROW (desired_matrix, it.vpos);
17393 it.current_y = MATRIX_ROW_BOTTOM_Y (last_unchanged_at_beg_row);
17395 eassert (it.hpos == 0 && it.current_x == 0);
17397 else
17399 /* There are no reusable lines at the start of the window.
17400 Start displaying in the first text line. */
17401 start_display (&it, w, start);
17402 it.vpos = it.first_vpos;
17403 start_pos = it.current.pos;
17406 /* Find the first row that is not affected by changes at the end of
17407 the buffer. Value will be null if there is no unchanged row, in
17408 which case we must redisplay to the end of the window. delta
17409 will be set to the value by which buffer positions beginning with
17410 first_unchanged_at_end_row have to be adjusted due to text
17411 changes. */
17412 first_unchanged_at_end_row
17413 = find_first_unchanged_at_end_row (w, &delta, &delta_bytes);
17414 IF_DEBUG (debug_delta = delta);
17415 IF_DEBUG (debug_delta_bytes = delta_bytes);
17417 /* Set stop_pos to the buffer position up to which we will have to
17418 display new lines. If first_unchanged_at_end_row != NULL, this
17419 is the buffer position of the start of the line displayed in that
17420 row. For first_unchanged_at_end_row == NULL, use 0 to indicate
17421 that we don't stop at a buffer position. */
17422 stop_pos = 0;
17423 if (first_unchanged_at_end_row)
17425 eassert (last_unchanged_at_beg_row == NULL
17426 || first_unchanged_at_end_row >= last_unchanged_at_beg_row);
17428 /* If this is a continuation line, move forward to the next one
17429 that isn't. Changes in lines above affect this line.
17430 Caution: this may move first_unchanged_at_end_row to a row
17431 not displaying text. */
17432 while (MATRIX_ROW_CONTINUATION_LINE_P (first_unchanged_at_end_row)
17433 && MATRIX_ROW_DISPLAYS_TEXT_P (first_unchanged_at_end_row)
17434 && (MATRIX_ROW_BOTTOM_Y (first_unchanged_at_end_row)
17435 < it.last_visible_y))
17436 ++first_unchanged_at_end_row;
17438 if (!MATRIX_ROW_DISPLAYS_TEXT_P (first_unchanged_at_end_row)
17439 || (MATRIX_ROW_BOTTOM_Y (first_unchanged_at_end_row)
17440 >= it.last_visible_y))
17441 first_unchanged_at_end_row = NULL;
17442 else
17444 stop_pos = (MATRIX_ROW_START_CHARPOS (first_unchanged_at_end_row)
17445 + delta);
17446 first_unchanged_at_end_vpos
17447 = MATRIX_ROW_VPOS (first_unchanged_at_end_row, current_matrix);
17448 eassert (stop_pos >= Z - END_UNCHANGED);
17451 else if (last_unchanged_at_beg_row == NULL)
17452 GIVE_UP (19);
17455 #ifdef GLYPH_DEBUG
17457 /* Either there is no unchanged row at the end, or the one we have
17458 now displays text. This is a necessary condition for the window
17459 end pos calculation at the end of this function. */
17460 eassert (first_unchanged_at_end_row == NULL
17461 || MATRIX_ROW_DISPLAYS_TEXT_P (first_unchanged_at_end_row));
17463 debug_last_unchanged_at_beg_vpos
17464 = (last_unchanged_at_beg_row
17465 ? MATRIX_ROW_VPOS (last_unchanged_at_beg_row, current_matrix)
17466 : -1);
17467 debug_first_unchanged_at_end_vpos = first_unchanged_at_end_vpos;
17469 #endif /* GLYPH_DEBUG */
17472 /* Display new lines. Set last_text_row to the last new line
17473 displayed which has text on it, i.e. might end up as being the
17474 line where the window_end_vpos is. */
17475 w->cursor.vpos = -1;
17476 last_text_row = NULL;
17477 overlay_arrow_seen = 0;
17478 while (it.current_y < it.last_visible_y
17479 && !fonts_changed_p
17480 && (first_unchanged_at_end_row == NULL
17481 || IT_CHARPOS (it) < stop_pos))
17483 if (display_line (&it))
17484 last_text_row = it.glyph_row - 1;
17487 if (fonts_changed_p)
17488 return -1;
17491 /* Compute differences in buffer positions, y-positions etc. for
17492 lines reused at the bottom of the window. Compute what we can
17493 scroll. */
17494 if (first_unchanged_at_end_row
17495 /* No lines reused because we displayed everything up to the
17496 bottom of the window. */
17497 && it.current_y < it.last_visible_y)
17499 dvpos = (it.vpos
17500 - MATRIX_ROW_VPOS (first_unchanged_at_end_row,
17501 current_matrix));
17502 dy = it.current_y - first_unchanged_at_end_row->y;
17503 run.current_y = first_unchanged_at_end_row->y;
17504 run.desired_y = run.current_y + dy;
17505 run.height = it.last_visible_y - max (run.current_y, run.desired_y);
17507 else
17509 delta = delta_bytes = dvpos = dy
17510 = run.current_y = run.desired_y = run.height = 0;
17511 first_unchanged_at_end_row = NULL;
17513 IF_DEBUG (debug_dvpos = dvpos; debug_dy = dy);
17516 /* Find the cursor if not already found. We have to decide whether
17517 PT will appear on this window (it sometimes doesn't, but this is
17518 not a very frequent case.) This decision has to be made before
17519 the current matrix is altered. A value of cursor.vpos < 0 means
17520 that PT is either in one of the lines beginning at
17521 first_unchanged_at_end_row or below the window. Don't care for
17522 lines that might be displayed later at the window end; as
17523 mentioned, this is not a frequent case. */
17524 if (w->cursor.vpos < 0)
17526 /* Cursor in unchanged rows at the top? */
17527 if (PT < CHARPOS (start_pos)
17528 && last_unchanged_at_beg_row)
17530 row = row_containing_pos (w, PT,
17531 MATRIX_FIRST_TEXT_ROW (w->current_matrix),
17532 last_unchanged_at_beg_row + 1, 0);
17533 if (row)
17534 set_cursor_from_row (w, row, w->current_matrix, 0, 0, 0, 0);
17537 /* Start from first_unchanged_at_end_row looking for PT. */
17538 else if (first_unchanged_at_end_row)
17540 row = row_containing_pos (w, PT - delta,
17541 first_unchanged_at_end_row, NULL, 0);
17542 if (row)
17543 set_cursor_from_row (w, row, w->current_matrix, delta,
17544 delta_bytes, dy, dvpos);
17547 /* Give up if cursor was not found. */
17548 if (w->cursor.vpos < 0)
17550 clear_glyph_matrix (w->desired_matrix);
17551 return -1;
17555 /* Don't let the cursor end in the scroll margins. */
17557 int this_scroll_margin, cursor_height;
17558 int frame_line_height = default_line_pixel_height (w);
17559 int window_total_lines
17560 = WINDOW_TOTAL_LINES (w) * FRAME_LINE_HEIGHT (it.f) / frame_line_height;
17562 this_scroll_margin =
17563 max (0, min (scroll_margin, window_total_lines / 4));
17564 this_scroll_margin *= frame_line_height;
17565 cursor_height = MATRIX_ROW (w->desired_matrix, w->cursor.vpos)->height;
17567 if ((w->cursor.y < this_scroll_margin
17568 && CHARPOS (start) > BEGV)
17569 /* Old redisplay didn't take scroll margin into account at the bottom,
17570 but then global-hl-line-mode doesn't scroll. KFS 2004-06-14 */
17571 || (w->cursor.y + (make_cursor_line_fully_visible_p
17572 ? cursor_height + this_scroll_margin
17573 : 1)) > it.last_visible_y)
17575 w->cursor.vpos = -1;
17576 clear_glyph_matrix (w->desired_matrix);
17577 return -1;
17581 /* Scroll the display. Do it before changing the current matrix so
17582 that xterm.c doesn't get confused about where the cursor glyph is
17583 found. */
17584 if (dy && run.height)
17586 update_begin (f);
17588 if (FRAME_WINDOW_P (f))
17590 FRAME_RIF (f)->update_window_begin_hook (w);
17591 FRAME_RIF (f)->clear_window_mouse_face (w);
17592 FRAME_RIF (f)->scroll_run_hook (w, &run);
17593 FRAME_RIF (f)->update_window_end_hook (w, 0, 0);
17595 else
17597 /* Terminal frame. In this case, dvpos gives the number of
17598 lines to scroll by; dvpos < 0 means scroll up. */
17599 int from_vpos
17600 = MATRIX_ROW_VPOS (first_unchanged_at_end_row, w->current_matrix);
17601 int from = WINDOW_TOP_EDGE_LINE (w) + from_vpos;
17602 int end = (WINDOW_TOP_EDGE_LINE (w)
17603 + (WINDOW_WANTS_HEADER_LINE_P (w) ? 1 : 0)
17604 + window_internal_height (w));
17606 #if defined (HAVE_GPM) || defined (MSDOS)
17607 x_clear_window_mouse_face (w);
17608 #endif
17609 /* Perform the operation on the screen. */
17610 if (dvpos > 0)
17612 /* Scroll last_unchanged_at_beg_row to the end of the
17613 window down dvpos lines. */
17614 set_terminal_window (f, end);
17616 /* On dumb terminals delete dvpos lines at the end
17617 before inserting dvpos empty lines. */
17618 if (!FRAME_SCROLL_REGION_OK (f))
17619 ins_del_lines (f, end - dvpos, -dvpos);
17621 /* Insert dvpos empty lines in front of
17622 last_unchanged_at_beg_row. */
17623 ins_del_lines (f, from, dvpos);
17625 else if (dvpos < 0)
17627 /* Scroll up last_unchanged_at_beg_vpos to the end of
17628 the window to last_unchanged_at_beg_vpos - |dvpos|. */
17629 set_terminal_window (f, end);
17631 /* Delete dvpos lines in front of
17632 last_unchanged_at_beg_vpos. ins_del_lines will set
17633 the cursor to the given vpos and emit |dvpos| delete
17634 line sequences. */
17635 ins_del_lines (f, from + dvpos, dvpos);
17637 /* On a dumb terminal insert dvpos empty lines at the
17638 end. */
17639 if (!FRAME_SCROLL_REGION_OK (f))
17640 ins_del_lines (f, end + dvpos, -dvpos);
17643 set_terminal_window (f, 0);
17646 update_end (f);
17649 /* Shift reused rows of the current matrix to the right position.
17650 BOTTOM_ROW is the last + 1 row in the current matrix reserved for
17651 text. */
17652 bottom_row = MATRIX_BOTTOM_TEXT_ROW (current_matrix, w);
17653 bottom_vpos = MATRIX_ROW_VPOS (bottom_row, current_matrix);
17654 if (dvpos < 0)
17656 rotate_matrix (current_matrix, first_unchanged_at_end_vpos + dvpos,
17657 bottom_vpos, dvpos);
17658 clear_glyph_matrix_rows (current_matrix, bottom_vpos + dvpos,
17659 bottom_vpos);
17661 else if (dvpos > 0)
17663 rotate_matrix (current_matrix, first_unchanged_at_end_vpos,
17664 bottom_vpos, dvpos);
17665 clear_glyph_matrix_rows (current_matrix, first_unchanged_at_end_vpos,
17666 first_unchanged_at_end_vpos + dvpos);
17669 /* For frame-based redisplay, make sure that current frame and window
17670 matrix are in sync with respect to glyph memory. */
17671 if (!FRAME_WINDOW_P (f))
17672 sync_frame_with_window_matrix_rows (w);
17674 /* Adjust buffer positions in reused rows. */
17675 if (delta || delta_bytes)
17676 increment_matrix_positions (current_matrix,
17677 first_unchanged_at_end_vpos + dvpos,
17678 bottom_vpos, delta, delta_bytes);
17680 /* Adjust Y positions. */
17681 if (dy)
17682 shift_glyph_matrix (w, current_matrix,
17683 first_unchanged_at_end_vpos + dvpos,
17684 bottom_vpos, dy);
17686 if (first_unchanged_at_end_row)
17688 first_unchanged_at_end_row += dvpos;
17689 if (first_unchanged_at_end_row->y >= it.last_visible_y
17690 || !MATRIX_ROW_DISPLAYS_TEXT_P (first_unchanged_at_end_row))
17691 first_unchanged_at_end_row = NULL;
17694 /* If scrolling up, there may be some lines to display at the end of
17695 the window. */
17696 last_text_row_at_end = NULL;
17697 if (dy < 0)
17699 /* Scrolling up can leave for example a partially visible line
17700 at the end of the window to be redisplayed. */
17701 /* Set last_row to the glyph row in the current matrix where the
17702 window end line is found. It has been moved up or down in
17703 the matrix by dvpos. */
17704 int last_vpos = w->window_end_vpos + dvpos;
17705 struct glyph_row *last_row = MATRIX_ROW (current_matrix, last_vpos);
17707 /* If last_row is the window end line, it should display text. */
17708 eassert (MATRIX_ROW_DISPLAYS_TEXT_P (last_row));
17710 /* If window end line was partially visible before, begin
17711 displaying at that line. Otherwise begin displaying with the
17712 line following it. */
17713 if (MATRIX_ROW_BOTTOM_Y (last_row) - dy >= it.last_visible_y)
17715 init_to_row_start (&it, w, last_row);
17716 it.vpos = last_vpos;
17717 it.current_y = last_row->y;
17719 else
17721 init_to_row_end (&it, w, last_row);
17722 it.vpos = 1 + last_vpos;
17723 it.current_y = MATRIX_ROW_BOTTOM_Y (last_row);
17724 ++last_row;
17727 /* We may start in a continuation line. If so, we have to
17728 get the right continuation_lines_width and current_x. */
17729 it.continuation_lines_width = last_row->continuation_lines_width;
17730 it.hpos = it.current_x = 0;
17732 /* Display the rest of the lines at the window end. */
17733 it.glyph_row = MATRIX_ROW (desired_matrix, it.vpos);
17734 while (it.current_y < it.last_visible_y
17735 && !fonts_changed_p)
17737 /* Is it always sure that the display agrees with lines in
17738 the current matrix? I don't think so, so we mark rows
17739 displayed invalid in the current matrix by setting their
17740 enabled_p flag to zero. */
17741 MATRIX_ROW (w->current_matrix, it.vpos)->enabled_p = 0;
17742 if (display_line (&it))
17743 last_text_row_at_end = it.glyph_row - 1;
17747 /* Update window_end_pos and window_end_vpos. */
17748 if (first_unchanged_at_end_row && !last_text_row_at_end)
17750 /* Window end line if one of the preserved rows from the current
17751 matrix. Set row to the last row displaying text in current
17752 matrix starting at first_unchanged_at_end_row, after
17753 scrolling. */
17754 eassert (MATRIX_ROW_DISPLAYS_TEXT_P (first_unchanged_at_end_row));
17755 row = find_last_row_displaying_text (w->current_matrix, &it,
17756 first_unchanged_at_end_row);
17757 eassert (row && MATRIX_ROW_DISPLAYS_TEXT_P (row));
17758 adjust_window_ends (w, row, 1);
17759 eassert (w->window_end_bytepos >= 0);
17760 IF_DEBUG (debug_method_add (w, "A"));
17762 else if (last_text_row_at_end)
17764 adjust_window_ends (w, last_text_row_at_end, 0);
17765 eassert (w->window_end_bytepos >= 0);
17766 IF_DEBUG (debug_method_add (w, "B"));
17768 else if (last_text_row)
17770 /* We have displayed either to the end of the window or at the
17771 end of the window, i.e. the last row with text is to be found
17772 in the desired matrix. */
17773 adjust_window_ends (w, last_text_row, 0);
17774 eassert (w->window_end_bytepos >= 0);
17776 else if (first_unchanged_at_end_row == NULL
17777 && last_text_row == NULL
17778 && last_text_row_at_end == NULL)
17780 /* Displayed to end of window, but no line containing text was
17781 displayed. Lines were deleted at the end of the window. */
17782 int first_vpos = WINDOW_WANTS_HEADER_LINE_P (w) ? 1 : 0;
17783 int vpos = w->window_end_vpos;
17784 struct glyph_row *current_row = current_matrix->rows + vpos;
17785 struct glyph_row *desired_row = desired_matrix->rows + vpos;
17787 for (row = NULL;
17788 row == NULL && vpos >= first_vpos;
17789 --vpos, --current_row, --desired_row)
17791 if (desired_row->enabled_p)
17793 if (MATRIX_ROW_DISPLAYS_TEXT_P (desired_row))
17794 row = desired_row;
17796 else if (MATRIX_ROW_DISPLAYS_TEXT_P (current_row))
17797 row = current_row;
17800 eassert (row != NULL);
17801 w->window_end_vpos = vpos + 1;
17802 w->window_end_pos = Z - MATRIX_ROW_END_CHARPOS (row);
17803 w->window_end_bytepos = Z_BYTE - MATRIX_ROW_END_BYTEPOS (row);
17804 eassert (w->window_end_bytepos >= 0);
17805 IF_DEBUG (debug_method_add (w, "C"));
17807 else
17808 emacs_abort ();
17810 IF_DEBUG (debug_end_pos = w->window_end_pos;
17811 debug_end_vpos = w->window_end_vpos);
17813 /* Record that display has not been completed. */
17814 w->window_end_valid = 0;
17815 w->desired_matrix->no_scrolling_p = 1;
17816 return 3;
17818 #undef GIVE_UP
17823 /***********************************************************************
17824 More debugging support
17825 ***********************************************************************/
17827 #ifdef GLYPH_DEBUG
17829 void dump_glyph_row (struct glyph_row *, int, int) EXTERNALLY_VISIBLE;
17830 void dump_glyph_matrix (struct glyph_matrix *, int) EXTERNALLY_VISIBLE;
17831 void dump_glyph (struct glyph_row *, struct glyph *, int) EXTERNALLY_VISIBLE;
17834 /* Dump the contents of glyph matrix MATRIX on stderr.
17836 GLYPHS 0 means don't show glyph contents.
17837 GLYPHS 1 means show glyphs in short form
17838 GLYPHS > 1 means show glyphs in long form. */
17840 void
17841 dump_glyph_matrix (struct glyph_matrix *matrix, int glyphs)
17843 int i;
17844 for (i = 0; i < matrix->nrows; ++i)
17845 dump_glyph_row (MATRIX_ROW (matrix, i), i, glyphs);
17849 /* Dump contents of glyph GLYPH to stderr. ROW and AREA are
17850 the glyph row and area where the glyph comes from. */
17852 void
17853 dump_glyph (struct glyph_row *row, struct glyph *glyph, int area)
17855 if (glyph->type == CHAR_GLYPH
17856 || glyph->type == GLYPHLESS_GLYPH)
17858 fprintf (stderr,
17859 " %5"pD"d %c %9"pI"d %c %3d 0x%06x %c %4d %1.1d%1.1d\n",
17860 glyph - row->glyphs[TEXT_AREA],
17861 (glyph->type == CHAR_GLYPH
17862 ? 'C'
17863 : 'G'),
17864 glyph->charpos,
17865 (BUFFERP (glyph->object)
17866 ? 'B'
17867 : (STRINGP (glyph->object)
17868 ? 'S'
17869 : (INTEGERP (glyph->object)
17870 ? '0'
17871 : '-'))),
17872 glyph->pixel_width,
17873 glyph->u.ch,
17874 (glyph->u.ch < 0x80 && glyph->u.ch >= ' '
17875 ? glyph->u.ch
17876 : '.'),
17877 glyph->face_id,
17878 glyph->left_box_line_p,
17879 glyph->right_box_line_p);
17881 else if (glyph->type == STRETCH_GLYPH)
17883 fprintf (stderr,
17884 " %5"pD"d %c %9"pI"d %c %3d 0x%06x %c %4d %1.1d%1.1d\n",
17885 glyph - row->glyphs[TEXT_AREA],
17886 'S',
17887 glyph->charpos,
17888 (BUFFERP (glyph->object)
17889 ? 'B'
17890 : (STRINGP (glyph->object)
17891 ? 'S'
17892 : (INTEGERP (glyph->object)
17893 ? '0'
17894 : '-'))),
17895 glyph->pixel_width,
17897 ' ',
17898 glyph->face_id,
17899 glyph->left_box_line_p,
17900 glyph->right_box_line_p);
17902 else if (glyph->type == IMAGE_GLYPH)
17904 fprintf (stderr,
17905 " %5"pD"d %c %9"pI"d %c %3d 0x%06x %c %4d %1.1d%1.1d\n",
17906 glyph - row->glyphs[TEXT_AREA],
17907 'I',
17908 glyph->charpos,
17909 (BUFFERP (glyph->object)
17910 ? 'B'
17911 : (STRINGP (glyph->object)
17912 ? 'S'
17913 : (INTEGERP (glyph->object)
17914 ? '0'
17915 : '-'))),
17916 glyph->pixel_width,
17917 glyph->u.img_id,
17918 '.',
17919 glyph->face_id,
17920 glyph->left_box_line_p,
17921 glyph->right_box_line_p);
17923 else if (glyph->type == COMPOSITE_GLYPH)
17925 fprintf (stderr,
17926 " %5"pD"d %c %9"pI"d %c %3d 0x%06x",
17927 glyph - row->glyphs[TEXT_AREA],
17928 '+',
17929 glyph->charpos,
17930 (BUFFERP (glyph->object)
17931 ? 'B'
17932 : (STRINGP (glyph->object)
17933 ? 'S'
17934 : (INTEGERP (glyph->object)
17935 ? '0'
17936 : '-'))),
17937 glyph->pixel_width,
17938 glyph->u.cmp.id);
17939 if (glyph->u.cmp.automatic)
17940 fprintf (stderr,
17941 "[%d-%d]",
17942 glyph->slice.cmp.from, glyph->slice.cmp.to);
17943 fprintf (stderr, " . %4d %1.1d%1.1d\n",
17944 glyph->face_id,
17945 glyph->left_box_line_p,
17946 glyph->right_box_line_p);
17951 /* Dump the contents of glyph row at VPOS in MATRIX to stderr.
17952 GLYPHS 0 means don't show glyph contents.
17953 GLYPHS 1 means show glyphs in short form
17954 GLYPHS > 1 means show glyphs in long form. */
17956 void
17957 dump_glyph_row (struct glyph_row *row, int vpos, int glyphs)
17959 if (glyphs != 1)
17961 fprintf (stderr, "Row Start End Used oE><\\CTZFesm X Y W H V A P\n");
17962 fprintf (stderr, "==============================================================================\n");
17964 fprintf (stderr, "%3d %9"pI"d %9"pI"d %4d %1.1d%1.1d%1.1d%1.1d\
17965 %1.1d%1.1d%1.1d%1.1d%1.1d%1.1d%1.1d%1.1d %4d %4d %4d %4d %4d %4d %4d\n",
17966 vpos,
17967 MATRIX_ROW_START_CHARPOS (row),
17968 MATRIX_ROW_END_CHARPOS (row),
17969 row->used[TEXT_AREA],
17970 row->contains_overlapping_glyphs_p,
17971 row->enabled_p,
17972 row->truncated_on_left_p,
17973 row->truncated_on_right_p,
17974 row->continued_p,
17975 MATRIX_ROW_CONTINUATION_LINE_P (row),
17976 MATRIX_ROW_DISPLAYS_TEXT_P (row),
17977 row->ends_at_zv_p,
17978 row->fill_line_p,
17979 row->ends_in_middle_of_char_p,
17980 row->starts_in_middle_of_char_p,
17981 row->mouse_face_p,
17982 row->x,
17983 row->y,
17984 row->pixel_width,
17985 row->height,
17986 row->visible_height,
17987 row->ascent,
17988 row->phys_ascent);
17989 /* The next 3 lines should align to "Start" in the header. */
17990 fprintf (stderr, " %9"pD"d %9"pD"d\t%5d\n", row->start.overlay_string_index,
17991 row->end.overlay_string_index,
17992 row->continuation_lines_width);
17993 fprintf (stderr, " %9"pI"d %9"pI"d\n",
17994 CHARPOS (row->start.string_pos),
17995 CHARPOS (row->end.string_pos));
17996 fprintf (stderr, " %9d %9d\n", row->start.dpvec_index,
17997 row->end.dpvec_index);
18000 if (glyphs > 1)
18002 int area;
18004 for (area = LEFT_MARGIN_AREA; area < LAST_AREA; ++area)
18006 struct glyph *glyph = row->glyphs[area];
18007 struct glyph *glyph_end = glyph + row->used[area];
18009 /* Glyph for a line end in text. */
18010 if (area == TEXT_AREA && glyph == glyph_end && glyph->charpos > 0)
18011 ++glyph_end;
18013 if (glyph < glyph_end)
18014 fprintf (stderr, " Glyph# Type Pos O W Code C Face LR\n");
18016 for (; glyph < glyph_end; ++glyph)
18017 dump_glyph (row, glyph, area);
18020 else if (glyphs == 1)
18022 int area;
18024 for (area = LEFT_MARGIN_AREA; area < LAST_AREA; ++area)
18026 char *s = alloca (row->used[area] + 4);
18027 int i;
18029 for (i = 0; i < row->used[area]; ++i)
18031 struct glyph *glyph = row->glyphs[area] + i;
18032 if (i == row->used[area] - 1
18033 && area == TEXT_AREA
18034 && INTEGERP (glyph->object)
18035 && glyph->type == CHAR_GLYPH
18036 && glyph->u.ch == ' ')
18038 strcpy (&s[i], "[\\n]");
18039 i += 4;
18041 else if (glyph->type == CHAR_GLYPH
18042 && glyph->u.ch < 0x80
18043 && glyph->u.ch >= ' ')
18044 s[i] = glyph->u.ch;
18045 else
18046 s[i] = '.';
18049 s[i] = '\0';
18050 fprintf (stderr, "%3d: (%d) '%s'\n", vpos, row->enabled_p, s);
18056 DEFUN ("dump-glyph-matrix", Fdump_glyph_matrix,
18057 Sdump_glyph_matrix, 0, 1, "p",
18058 doc: /* Dump the current matrix of the selected window to stderr.
18059 Shows contents of glyph row structures. With non-nil
18060 parameter GLYPHS, dump glyphs as well. If GLYPHS is 1 show
18061 glyphs in short form, otherwise show glyphs in long form. */)
18062 (Lisp_Object glyphs)
18064 struct window *w = XWINDOW (selected_window);
18065 struct buffer *buffer = XBUFFER (w->contents);
18067 fprintf (stderr, "PT = %"pI"d, BEGV = %"pI"d. ZV = %"pI"d\n",
18068 BUF_PT (buffer), BUF_BEGV (buffer), BUF_ZV (buffer));
18069 fprintf (stderr, "Cursor x = %d, y = %d, hpos = %d, vpos = %d\n",
18070 w->cursor.x, w->cursor.y, w->cursor.hpos, w->cursor.vpos);
18071 fprintf (stderr, "=============================================\n");
18072 dump_glyph_matrix (w->current_matrix,
18073 TYPE_RANGED_INTEGERP (int, glyphs) ? XINT (glyphs) : 0);
18074 return Qnil;
18078 DEFUN ("dump-frame-glyph-matrix", Fdump_frame_glyph_matrix,
18079 Sdump_frame_glyph_matrix, 0, 0, "", doc: /* */)
18080 (void)
18082 struct frame *f = XFRAME (selected_frame);
18083 dump_glyph_matrix (f->current_matrix, 1);
18084 return Qnil;
18088 DEFUN ("dump-glyph-row", Fdump_glyph_row, Sdump_glyph_row, 1, 2, "",
18089 doc: /* Dump glyph row ROW to stderr.
18090 GLYPH 0 means don't dump glyphs.
18091 GLYPH 1 means dump glyphs in short form.
18092 GLYPH > 1 or omitted means dump glyphs in long form. */)
18093 (Lisp_Object row, Lisp_Object glyphs)
18095 struct glyph_matrix *matrix;
18096 EMACS_INT vpos;
18098 CHECK_NUMBER (row);
18099 matrix = XWINDOW (selected_window)->current_matrix;
18100 vpos = XINT (row);
18101 if (vpos >= 0 && vpos < matrix->nrows)
18102 dump_glyph_row (MATRIX_ROW (matrix, vpos),
18103 vpos,
18104 TYPE_RANGED_INTEGERP (int, glyphs) ? XINT (glyphs) : 2);
18105 return Qnil;
18109 DEFUN ("dump-tool-bar-row", Fdump_tool_bar_row, Sdump_tool_bar_row, 1, 2, "",
18110 doc: /* Dump glyph row ROW of the tool-bar of the current frame to stderr.
18111 GLYPH 0 means don't dump glyphs.
18112 GLYPH 1 means dump glyphs in short form.
18113 GLYPH > 1 or omitted means dump glyphs in long form. */)
18114 (Lisp_Object row, Lisp_Object glyphs)
18116 struct frame *sf = SELECTED_FRAME ();
18117 struct glyph_matrix *m = XWINDOW (sf->tool_bar_window)->current_matrix;
18118 EMACS_INT vpos;
18120 CHECK_NUMBER (row);
18121 vpos = XINT (row);
18122 if (vpos >= 0 && vpos < m->nrows)
18123 dump_glyph_row (MATRIX_ROW (m, vpos), vpos,
18124 TYPE_RANGED_INTEGERP (int, glyphs) ? XINT (glyphs) : 2);
18125 return Qnil;
18129 DEFUN ("trace-redisplay", Ftrace_redisplay, Strace_redisplay, 0, 1, "P",
18130 doc: /* Toggle tracing of redisplay.
18131 With ARG, turn tracing on if and only if ARG is positive. */)
18132 (Lisp_Object arg)
18134 if (NILP (arg))
18135 trace_redisplay_p = !trace_redisplay_p;
18136 else
18138 arg = Fprefix_numeric_value (arg);
18139 trace_redisplay_p = XINT (arg) > 0;
18142 return Qnil;
18146 DEFUN ("trace-to-stderr", Ftrace_to_stderr, Strace_to_stderr, 1, MANY, "",
18147 doc: /* Like `format', but print result to stderr.
18148 usage: (trace-to-stderr STRING &rest OBJECTS) */)
18149 (ptrdiff_t nargs, Lisp_Object *args)
18151 Lisp_Object s = Fformat (nargs, args);
18152 fprintf (stderr, "%s", SDATA (s));
18153 return Qnil;
18156 #endif /* GLYPH_DEBUG */
18160 /***********************************************************************
18161 Building Desired Matrix Rows
18162 ***********************************************************************/
18164 /* Return a temporary glyph row holding the glyphs of an overlay arrow.
18165 Used for non-window-redisplay windows, and for windows w/o left fringe. */
18167 static struct glyph_row *
18168 get_overlay_arrow_glyph_row (struct window *w, Lisp_Object overlay_arrow_string)
18170 struct frame *f = XFRAME (WINDOW_FRAME (w));
18171 struct buffer *buffer = XBUFFER (w->contents);
18172 struct buffer *old = current_buffer;
18173 const unsigned char *arrow_string = SDATA (overlay_arrow_string);
18174 int arrow_len = SCHARS (overlay_arrow_string);
18175 const unsigned char *arrow_end = arrow_string + arrow_len;
18176 const unsigned char *p;
18177 struct it it;
18178 bool multibyte_p;
18179 int n_glyphs_before;
18181 set_buffer_temp (buffer);
18182 init_iterator (&it, w, -1, -1, &scratch_glyph_row, DEFAULT_FACE_ID);
18183 it.glyph_row->used[TEXT_AREA] = 0;
18184 SET_TEXT_POS (it.position, 0, 0);
18186 multibyte_p = !NILP (BVAR (buffer, enable_multibyte_characters));
18187 p = arrow_string;
18188 while (p < arrow_end)
18190 Lisp_Object face, ilisp;
18192 /* Get the next character. */
18193 if (multibyte_p)
18194 it.c = it.char_to_display = string_char_and_length (p, &it.len);
18195 else
18197 it.c = it.char_to_display = *p, it.len = 1;
18198 if (! ASCII_CHAR_P (it.c))
18199 it.char_to_display = BYTE8_TO_CHAR (it.c);
18201 p += it.len;
18203 /* Get its face. */
18204 ilisp = make_number (p - arrow_string);
18205 face = Fget_text_property (ilisp, Qface, overlay_arrow_string);
18206 it.face_id = compute_char_face (f, it.char_to_display, face);
18208 /* Compute its width, get its glyphs. */
18209 n_glyphs_before = it.glyph_row->used[TEXT_AREA];
18210 SET_TEXT_POS (it.position, -1, -1);
18211 PRODUCE_GLYPHS (&it);
18213 /* If this character doesn't fit any more in the line, we have
18214 to remove some glyphs. */
18215 if (it.current_x > it.last_visible_x)
18217 it.glyph_row->used[TEXT_AREA] = n_glyphs_before;
18218 break;
18222 set_buffer_temp (old);
18223 return it.glyph_row;
18227 /* Insert truncation glyphs at the start of IT->glyph_row. Which
18228 glyphs to insert is determined by produce_special_glyphs. */
18230 static void
18231 insert_left_trunc_glyphs (struct it *it)
18233 struct it truncate_it;
18234 struct glyph *from, *end, *to, *toend;
18236 eassert (!FRAME_WINDOW_P (it->f)
18237 || (!it->glyph_row->reversed_p
18238 && WINDOW_LEFT_FRINGE_WIDTH (it->w) == 0)
18239 || (it->glyph_row->reversed_p
18240 && WINDOW_RIGHT_FRINGE_WIDTH (it->w) == 0));
18242 /* Get the truncation glyphs. */
18243 truncate_it = *it;
18244 truncate_it.current_x = 0;
18245 truncate_it.face_id = DEFAULT_FACE_ID;
18246 truncate_it.glyph_row = &scratch_glyph_row;
18247 truncate_it.glyph_row->used[TEXT_AREA] = 0;
18248 CHARPOS (truncate_it.position) = BYTEPOS (truncate_it.position) = -1;
18249 truncate_it.object = make_number (0);
18250 produce_special_glyphs (&truncate_it, IT_TRUNCATION);
18252 /* Overwrite glyphs from IT with truncation glyphs. */
18253 if (!it->glyph_row->reversed_p)
18255 short tused = truncate_it.glyph_row->used[TEXT_AREA];
18257 from = truncate_it.glyph_row->glyphs[TEXT_AREA];
18258 end = from + tused;
18259 to = it->glyph_row->glyphs[TEXT_AREA];
18260 toend = to + it->glyph_row->used[TEXT_AREA];
18261 if (FRAME_WINDOW_P (it->f))
18263 /* On GUI frames, when variable-size fonts are displayed,
18264 the truncation glyphs may need more pixels than the row's
18265 glyphs they overwrite. We overwrite more glyphs to free
18266 enough screen real estate, and enlarge the stretch glyph
18267 on the right (see display_line), if there is one, to
18268 preserve the screen position of the truncation glyphs on
18269 the right. */
18270 int w = 0;
18271 struct glyph *g = to;
18272 short used;
18274 /* The first glyph could be partially visible, in which case
18275 it->glyph_row->x will be negative. But we want the left
18276 truncation glyphs to be aligned at the left margin of the
18277 window, so we override the x coordinate at which the row
18278 will begin. */
18279 it->glyph_row->x = 0;
18280 while (g < toend && w < it->truncation_pixel_width)
18282 w += g->pixel_width;
18283 ++g;
18285 if (g - to - tused > 0)
18287 memmove (to + tused, g, (toend - g) * sizeof(*g));
18288 it->glyph_row->used[TEXT_AREA] -= g - to - tused;
18290 used = it->glyph_row->used[TEXT_AREA];
18291 if (it->glyph_row->truncated_on_right_p
18292 && WINDOW_RIGHT_FRINGE_WIDTH (it->w) == 0
18293 && it->glyph_row->glyphs[TEXT_AREA][used - 2].type
18294 == STRETCH_GLYPH)
18296 int extra = w - it->truncation_pixel_width;
18298 it->glyph_row->glyphs[TEXT_AREA][used - 2].pixel_width += extra;
18302 while (from < end)
18303 *to++ = *from++;
18305 /* There may be padding glyphs left over. Overwrite them too. */
18306 if (!FRAME_WINDOW_P (it->f))
18308 while (to < toend && CHAR_GLYPH_PADDING_P (*to))
18310 from = truncate_it.glyph_row->glyphs[TEXT_AREA];
18311 while (from < end)
18312 *to++ = *from++;
18316 if (to > toend)
18317 it->glyph_row->used[TEXT_AREA] = to - it->glyph_row->glyphs[TEXT_AREA];
18319 else
18321 short tused = truncate_it.glyph_row->used[TEXT_AREA];
18323 /* In R2L rows, overwrite the last (rightmost) glyphs, and do
18324 that back to front. */
18325 end = truncate_it.glyph_row->glyphs[TEXT_AREA];
18326 from = end + truncate_it.glyph_row->used[TEXT_AREA] - 1;
18327 toend = it->glyph_row->glyphs[TEXT_AREA];
18328 to = toend + it->glyph_row->used[TEXT_AREA] - 1;
18329 if (FRAME_WINDOW_P (it->f))
18331 int w = 0;
18332 struct glyph *g = to;
18334 while (g >= toend && w < it->truncation_pixel_width)
18336 w += g->pixel_width;
18337 --g;
18339 if (to - g - tused > 0)
18340 to = g + tused;
18341 if (it->glyph_row->truncated_on_right_p
18342 && WINDOW_LEFT_FRINGE_WIDTH (it->w) == 0
18343 && it->glyph_row->glyphs[TEXT_AREA][1].type == STRETCH_GLYPH)
18345 int extra = w - it->truncation_pixel_width;
18347 it->glyph_row->glyphs[TEXT_AREA][1].pixel_width += extra;
18351 while (from >= end && to >= toend)
18352 *to-- = *from--;
18353 if (!FRAME_WINDOW_P (it->f))
18355 while (to >= toend && CHAR_GLYPH_PADDING_P (*to))
18357 from =
18358 truncate_it.glyph_row->glyphs[TEXT_AREA]
18359 + truncate_it.glyph_row->used[TEXT_AREA] - 1;
18360 while (from >= end && to >= toend)
18361 *to-- = *from--;
18364 if (from >= end)
18366 /* Need to free some room before prepending additional
18367 glyphs. */
18368 int move_by = from - end + 1;
18369 struct glyph *g0 = it->glyph_row->glyphs[TEXT_AREA];
18370 struct glyph *g = g0 + it->glyph_row->used[TEXT_AREA] - 1;
18372 for ( ; g >= g0; g--)
18373 g[move_by] = *g;
18374 while (from >= end)
18375 *to-- = *from--;
18376 it->glyph_row->used[TEXT_AREA] += move_by;
18381 /* Compute the hash code for ROW. */
18382 unsigned
18383 row_hash (struct glyph_row *row)
18385 int area, k;
18386 unsigned hashval = 0;
18388 for (area = LEFT_MARGIN_AREA; area < LAST_AREA; ++area)
18389 for (k = 0; k < row->used[area]; ++k)
18390 hashval = ((((hashval << 4) + (hashval >> 24)) & 0x0fffffff)
18391 + row->glyphs[area][k].u.val
18392 + row->glyphs[area][k].face_id
18393 + row->glyphs[area][k].padding_p
18394 + (row->glyphs[area][k].type << 2));
18396 return hashval;
18399 /* Compute the pixel height and width of IT->glyph_row.
18401 Most of the time, ascent and height of a display line will be equal
18402 to the max_ascent and max_height values of the display iterator
18403 structure. This is not the case if
18405 1. We hit ZV without displaying anything. In this case, max_ascent
18406 and max_height will be zero.
18408 2. We have some glyphs that don't contribute to the line height.
18409 (The glyph row flag contributes_to_line_height_p is for future
18410 pixmap extensions).
18412 The first case is easily covered by using default values because in
18413 these cases, the line height does not really matter, except that it
18414 must not be zero. */
18416 static void
18417 compute_line_metrics (struct it *it)
18419 struct glyph_row *row = it->glyph_row;
18421 if (FRAME_WINDOW_P (it->f))
18423 int i, min_y, max_y;
18425 /* The line may consist of one space only, that was added to
18426 place the cursor on it. If so, the row's height hasn't been
18427 computed yet. */
18428 if (row->height == 0)
18430 if (it->max_ascent + it->max_descent == 0)
18431 it->max_descent = it->max_phys_descent = FRAME_LINE_HEIGHT (it->f);
18432 row->ascent = it->max_ascent;
18433 row->height = it->max_ascent + it->max_descent;
18434 row->phys_ascent = it->max_phys_ascent;
18435 row->phys_height = it->max_phys_ascent + it->max_phys_descent;
18436 row->extra_line_spacing = it->max_extra_line_spacing;
18439 /* Compute the width of this line. */
18440 row->pixel_width = row->x;
18441 for (i = 0; i < row->used[TEXT_AREA]; ++i)
18442 row->pixel_width += row->glyphs[TEXT_AREA][i].pixel_width;
18444 eassert (row->pixel_width >= 0);
18445 eassert (row->ascent >= 0 && row->height > 0);
18447 row->overlapping_p = (MATRIX_ROW_OVERLAPS_SUCC_P (row)
18448 || MATRIX_ROW_OVERLAPS_PRED_P (row));
18450 /* If first line's physical ascent is larger than its logical
18451 ascent, use the physical ascent, and make the row taller.
18452 This makes accented characters fully visible. */
18453 if (row == MATRIX_FIRST_TEXT_ROW (it->w->desired_matrix)
18454 && row->phys_ascent > row->ascent)
18456 row->height += row->phys_ascent - row->ascent;
18457 row->ascent = row->phys_ascent;
18460 /* Compute how much of the line is visible. */
18461 row->visible_height = row->height;
18463 min_y = WINDOW_HEADER_LINE_HEIGHT (it->w);
18464 max_y = WINDOW_BOX_HEIGHT_NO_MODE_LINE (it->w);
18466 if (row->y < min_y)
18467 row->visible_height -= min_y - row->y;
18468 if (row->y + row->height > max_y)
18469 row->visible_height -= row->y + row->height - max_y;
18471 else
18473 row->pixel_width = row->used[TEXT_AREA];
18474 if (row->continued_p)
18475 row->pixel_width -= it->continuation_pixel_width;
18476 else if (row->truncated_on_right_p)
18477 row->pixel_width -= it->truncation_pixel_width;
18478 row->ascent = row->phys_ascent = 0;
18479 row->height = row->phys_height = row->visible_height = 1;
18480 row->extra_line_spacing = 0;
18483 /* Compute a hash code for this row. */
18484 row->hash = row_hash (row);
18486 it->max_ascent = it->max_descent = 0;
18487 it->max_phys_ascent = it->max_phys_descent = 0;
18491 /* Append one space to the glyph row of iterator IT if doing a
18492 window-based redisplay. The space has the same face as
18493 IT->face_id. Value is non-zero if a space was added.
18495 This function is called to make sure that there is always one glyph
18496 at the end of a glyph row that the cursor can be set on under
18497 window-systems. (If there weren't such a glyph we would not know
18498 how wide and tall a box cursor should be displayed).
18500 At the same time this space let's a nicely handle clearing to the
18501 end of the line if the row ends in italic text. */
18503 static int
18504 append_space_for_newline (struct it *it, int default_face_p)
18506 if (FRAME_WINDOW_P (it->f))
18508 int n = it->glyph_row->used[TEXT_AREA];
18510 if (it->glyph_row->glyphs[TEXT_AREA] + n
18511 < it->glyph_row->glyphs[1 + TEXT_AREA])
18513 /* Save some values that must not be changed.
18514 Must save IT->c and IT->len because otherwise
18515 ITERATOR_AT_END_P wouldn't work anymore after
18516 append_space_for_newline has been called. */
18517 enum display_element_type saved_what = it->what;
18518 int saved_c = it->c, saved_len = it->len;
18519 int saved_char_to_display = it->char_to_display;
18520 int saved_x = it->current_x;
18521 int saved_face_id = it->face_id;
18522 int saved_box_end = it->end_of_box_run_p;
18523 struct text_pos saved_pos;
18524 Lisp_Object saved_object;
18525 struct face *face;
18527 saved_object = it->object;
18528 saved_pos = it->position;
18530 it->what = IT_CHARACTER;
18531 memset (&it->position, 0, sizeof it->position);
18532 it->object = make_number (0);
18533 it->c = it->char_to_display = ' ';
18534 it->len = 1;
18536 /* If the default face was remapped, be sure to use the
18537 remapped face for the appended newline. */
18538 if (default_face_p)
18539 it->face_id = lookup_basic_face (it->f, DEFAULT_FACE_ID);
18540 else if (it->face_before_selective_p)
18541 it->face_id = it->saved_face_id;
18542 face = FACE_FROM_ID (it->f, it->face_id);
18543 it->face_id = FACE_FOR_CHAR (it->f, face, 0, -1, Qnil);
18544 /* In R2L rows, we will prepend a stretch glyph that will
18545 have the end_of_box_run_p flag set for it, so there's no
18546 need for the appended newline glyph to have that flag
18547 set. */
18548 if (it->glyph_row->reversed_p
18549 /* But if the appended newline glyph goes all the way to
18550 the end of the row, there will be no stretch glyph,
18551 so leave the box flag set. */
18552 && saved_x + FRAME_COLUMN_WIDTH (it->f) < it->last_visible_x)
18553 it->end_of_box_run_p = 0;
18555 PRODUCE_GLYPHS (it);
18557 it->override_ascent = -1;
18558 it->constrain_row_ascent_descent_p = 0;
18559 it->current_x = saved_x;
18560 it->object = saved_object;
18561 it->position = saved_pos;
18562 it->what = saved_what;
18563 it->face_id = saved_face_id;
18564 it->len = saved_len;
18565 it->c = saved_c;
18566 it->char_to_display = saved_char_to_display;
18567 it->end_of_box_run_p = saved_box_end;
18568 return 1;
18572 return 0;
18576 /* Extend the face of the last glyph in the text area of IT->glyph_row
18577 to the end of the display line. Called from display_line. If the
18578 glyph row is empty, add a space glyph to it so that we know the
18579 face to draw. Set the glyph row flag fill_line_p. If the glyph
18580 row is R2L, prepend a stretch glyph to cover the empty space to the
18581 left of the leftmost glyph. */
18583 static void
18584 extend_face_to_end_of_line (struct it *it)
18586 struct face *face, *default_face;
18587 struct frame *f = it->f;
18589 /* If line is already filled, do nothing. Non window-system frames
18590 get a grace of one more ``pixel'' because their characters are
18591 1-``pixel'' wide, so they hit the equality too early. This grace
18592 is needed only for R2L rows that are not continued, to produce
18593 one extra blank where we could display the cursor. */
18594 if (it->current_x >= it->last_visible_x
18595 + (!FRAME_WINDOW_P (f)
18596 && it->glyph_row->reversed_p
18597 && !it->glyph_row->continued_p))
18598 return;
18600 /* The default face, possibly remapped. */
18601 default_face = FACE_FROM_ID (f, lookup_basic_face (f, DEFAULT_FACE_ID));
18603 /* Face extension extends the background and box of IT->face_id
18604 to the end of the line. If the background equals the background
18605 of the frame, we don't have to do anything. */
18606 if (it->face_before_selective_p)
18607 face = FACE_FROM_ID (f, it->saved_face_id);
18608 else
18609 face = FACE_FROM_ID (f, it->face_id);
18611 if (FRAME_WINDOW_P (f)
18612 && MATRIX_ROW_DISPLAYS_TEXT_P (it->glyph_row)
18613 && face->box == FACE_NO_BOX
18614 && face->background == FRAME_BACKGROUND_PIXEL (f)
18615 && !face->stipple
18616 && !it->glyph_row->reversed_p)
18617 return;
18619 /* Set the glyph row flag indicating that the face of the last glyph
18620 in the text area has to be drawn to the end of the text area. */
18621 it->glyph_row->fill_line_p = 1;
18623 /* If current character of IT is not ASCII, make sure we have the
18624 ASCII face. This will be automatically undone the next time
18625 get_next_display_element returns a multibyte character. Note
18626 that the character will always be single byte in unibyte
18627 text. */
18628 if (!ASCII_CHAR_P (it->c))
18630 it->face_id = FACE_FOR_CHAR (f, face, 0, -1, Qnil);
18633 if (FRAME_WINDOW_P (f))
18635 /* If the row is empty, add a space with the current face of IT,
18636 so that we know which face to draw. */
18637 if (it->glyph_row->used[TEXT_AREA] == 0)
18639 it->glyph_row->glyphs[TEXT_AREA][0] = space_glyph;
18640 it->glyph_row->glyphs[TEXT_AREA][0].face_id = face->id;
18641 it->glyph_row->used[TEXT_AREA] = 1;
18643 #ifdef HAVE_WINDOW_SYSTEM
18644 if (it->glyph_row->reversed_p)
18646 /* Prepend a stretch glyph to the row, such that the
18647 rightmost glyph will be drawn flushed all the way to the
18648 right margin of the window. The stretch glyph that will
18649 occupy the empty space, if any, to the left of the
18650 glyphs. */
18651 struct font *font = face->font ? face->font : FRAME_FONT (f);
18652 struct glyph *row_start = it->glyph_row->glyphs[TEXT_AREA];
18653 struct glyph *row_end = row_start + it->glyph_row->used[TEXT_AREA];
18654 struct glyph *g;
18655 int row_width, stretch_ascent, stretch_width;
18656 struct text_pos saved_pos;
18657 int saved_face_id, saved_avoid_cursor, saved_box_start;
18659 for (row_width = 0, g = row_start; g < row_end; g++)
18660 row_width += g->pixel_width;
18661 stretch_width = window_box_width (it->w, TEXT_AREA) - row_width;
18662 if (stretch_width > 0)
18664 stretch_ascent =
18665 (((it->ascent + it->descent)
18666 * FONT_BASE (font)) / FONT_HEIGHT (font));
18667 saved_pos = it->position;
18668 memset (&it->position, 0, sizeof it->position);
18669 saved_avoid_cursor = it->avoid_cursor_p;
18670 it->avoid_cursor_p = 1;
18671 saved_face_id = it->face_id;
18672 saved_box_start = it->start_of_box_run_p;
18673 /* The last row's stretch glyph should get the default
18674 face, to avoid painting the rest of the window with
18675 the region face, if the region ends at ZV. */
18676 if (it->glyph_row->ends_at_zv_p)
18677 it->face_id = default_face->id;
18678 else
18679 it->face_id = face->id;
18680 it->start_of_box_run_p = 0;
18681 append_stretch_glyph (it, make_number (0), stretch_width,
18682 it->ascent + it->descent, stretch_ascent);
18683 it->position = saved_pos;
18684 it->avoid_cursor_p = saved_avoid_cursor;
18685 it->face_id = saved_face_id;
18686 it->start_of_box_run_p = saved_box_start;
18689 #endif /* HAVE_WINDOW_SYSTEM */
18691 else
18693 /* Save some values that must not be changed. */
18694 int saved_x = it->current_x;
18695 struct text_pos saved_pos;
18696 Lisp_Object saved_object;
18697 enum display_element_type saved_what = it->what;
18698 int saved_face_id = it->face_id;
18700 saved_object = it->object;
18701 saved_pos = it->position;
18703 it->what = IT_CHARACTER;
18704 memset (&it->position, 0, sizeof it->position);
18705 it->object = make_number (0);
18706 it->c = it->char_to_display = ' ';
18707 it->len = 1;
18708 /* The last row's blank glyphs should get the default face, to
18709 avoid painting the rest of the window with the region face,
18710 if the region ends at ZV. */
18711 if (it->glyph_row->ends_at_zv_p)
18712 it->face_id = default_face->id;
18713 else
18714 it->face_id = face->id;
18716 PRODUCE_GLYPHS (it);
18718 while (it->current_x <= it->last_visible_x)
18719 PRODUCE_GLYPHS (it);
18721 /* Don't count these blanks really. It would let us insert a left
18722 truncation glyph below and make us set the cursor on them, maybe. */
18723 it->current_x = saved_x;
18724 it->object = saved_object;
18725 it->position = saved_pos;
18726 it->what = saved_what;
18727 it->face_id = saved_face_id;
18732 /* Value is non-zero if text starting at CHARPOS in current_buffer is
18733 trailing whitespace. */
18735 static int
18736 trailing_whitespace_p (ptrdiff_t charpos)
18738 ptrdiff_t bytepos = CHAR_TO_BYTE (charpos);
18739 int c = 0;
18741 while (bytepos < ZV_BYTE
18742 && (c = FETCH_CHAR (bytepos),
18743 c == ' ' || c == '\t'))
18744 ++bytepos;
18746 if (bytepos >= ZV_BYTE || c == '\n' || c == '\r')
18748 if (bytepos != PT_BYTE)
18749 return 1;
18751 return 0;
18755 /* Highlight trailing whitespace, if any, in ROW. */
18757 static void
18758 highlight_trailing_whitespace (struct frame *f, struct glyph_row *row)
18760 int used = row->used[TEXT_AREA];
18762 if (used)
18764 struct glyph *start = row->glyphs[TEXT_AREA];
18765 struct glyph *glyph = start + used - 1;
18767 if (row->reversed_p)
18769 /* Right-to-left rows need to be processed in the opposite
18770 direction, so swap the edge pointers. */
18771 glyph = start;
18772 start = row->glyphs[TEXT_AREA] + used - 1;
18775 /* Skip over glyphs inserted to display the cursor at the
18776 end of a line, for extending the face of the last glyph
18777 to the end of the line on terminals, and for truncation
18778 and continuation glyphs. */
18779 if (!row->reversed_p)
18781 while (glyph >= start
18782 && glyph->type == CHAR_GLYPH
18783 && INTEGERP (glyph->object))
18784 --glyph;
18786 else
18788 while (glyph <= start
18789 && glyph->type == CHAR_GLYPH
18790 && INTEGERP (glyph->object))
18791 ++glyph;
18794 /* If last glyph is a space or stretch, and it's trailing
18795 whitespace, set the face of all trailing whitespace glyphs in
18796 IT->glyph_row to `trailing-whitespace'. */
18797 if ((row->reversed_p ? glyph <= start : glyph >= start)
18798 && BUFFERP (glyph->object)
18799 && (glyph->type == STRETCH_GLYPH
18800 || (glyph->type == CHAR_GLYPH
18801 && glyph->u.ch == ' '))
18802 && trailing_whitespace_p (glyph->charpos))
18804 int face_id = lookup_named_face (f, Qtrailing_whitespace, 0);
18805 if (face_id < 0)
18806 return;
18808 if (!row->reversed_p)
18810 while (glyph >= start
18811 && BUFFERP (glyph->object)
18812 && (glyph->type == STRETCH_GLYPH
18813 || (glyph->type == CHAR_GLYPH
18814 && glyph->u.ch == ' ')))
18815 (glyph--)->face_id = face_id;
18817 else
18819 while (glyph <= start
18820 && BUFFERP (glyph->object)
18821 && (glyph->type == STRETCH_GLYPH
18822 || (glyph->type == CHAR_GLYPH
18823 && glyph->u.ch == ' ')))
18824 (glyph++)->face_id = face_id;
18831 /* Value is non-zero if glyph row ROW should be
18832 considered to hold the buffer position CHARPOS. */
18834 static int
18835 row_for_charpos_p (struct glyph_row *row, ptrdiff_t charpos)
18837 int result = 1;
18839 if (charpos == CHARPOS (row->end.pos)
18840 || charpos == MATRIX_ROW_END_CHARPOS (row))
18842 /* Suppose the row ends on a string.
18843 Unless the row is continued, that means it ends on a newline
18844 in the string. If it's anything other than a display string
18845 (e.g., a before-string from an overlay), we don't want the
18846 cursor there. (This heuristic seems to give the optimal
18847 behavior for the various types of multi-line strings.)
18848 One exception: if the string has `cursor' property on one of
18849 its characters, we _do_ want the cursor there. */
18850 if (CHARPOS (row->end.string_pos) >= 0)
18852 if (row->continued_p)
18853 result = 1;
18854 else
18856 /* Check for `display' property. */
18857 struct glyph *beg = row->glyphs[TEXT_AREA];
18858 struct glyph *end = beg + row->used[TEXT_AREA] - 1;
18859 struct glyph *glyph;
18861 result = 0;
18862 for (glyph = end; glyph >= beg; --glyph)
18863 if (STRINGP (glyph->object))
18865 Lisp_Object prop
18866 = Fget_char_property (make_number (charpos),
18867 Qdisplay, Qnil);
18868 result =
18869 (!NILP (prop)
18870 && display_prop_string_p (prop, glyph->object));
18871 /* If there's a `cursor' property on one of the
18872 string's characters, this row is a cursor row,
18873 even though this is not a display string. */
18874 if (!result)
18876 Lisp_Object s = glyph->object;
18878 for ( ; glyph >= beg && EQ (glyph->object, s); --glyph)
18880 ptrdiff_t gpos = glyph->charpos;
18882 if (!NILP (Fget_char_property (make_number (gpos),
18883 Qcursor, s)))
18885 result = 1;
18886 break;
18890 break;
18894 else if (MATRIX_ROW_ENDS_IN_MIDDLE_OF_CHAR_P (row))
18896 /* If the row ends in middle of a real character,
18897 and the line is continued, we want the cursor here.
18898 That's because CHARPOS (ROW->end.pos) would equal
18899 PT if PT is before the character. */
18900 if (!row->ends_in_ellipsis_p)
18901 result = row->continued_p;
18902 else
18903 /* If the row ends in an ellipsis, then
18904 CHARPOS (ROW->end.pos) will equal point after the
18905 invisible text. We want that position to be displayed
18906 after the ellipsis. */
18907 result = 0;
18909 /* If the row ends at ZV, display the cursor at the end of that
18910 row instead of at the start of the row below. */
18911 else if (row->ends_at_zv_p)
18912 result = 1;
18913 else
18914 result = 0;
18917 return result;
18920 /* Value is non-zero if glyph row ROW should be
18921 used to hold the cursor. */
18923 static int
18924 cursor_row_p (struct glyph_row *row)
18926 return row_for_charpos_p (row, PT);
18931 /* Push the property PROP so that it will be rendered at the current
18932 position in IT. Return 1 if PROP was successfully pushed, 0
18933 otherwise. Called from handle_line_prefix to handle the
18934 `line-prefix' and `wrap-prefix' properties. */
18936 static int
18937 push_prefix_prop (struct it *it, Lisp_Object prop)
18939 struct text_pos pos =
18940 STRINGP (it->string) ? it->current.string_pos : it->current.pos;
18942 eassert (it->method == GET_FROM_BUFFER
18943 || it->method == GET_FROM_DISPLAY_VECTOR
18944 || it->method == GET_FROM_STRING);
18946 /* We need to save the current buffer/string position, so it will be
18947 restored by pop_it, because iterate_out_of_display_property
18948 depends on that being set correctly, but some situations leave
18949 it->position not yet set when this function is called. */
18950 push_it (it, &pos);
18952 if (STRINGP (prop))
18954 if (SCHARS (prop) == 0)
18956 pop_it (it);
18957 return 0;
18960 it->string = prop;
18961 it->string_from_prefix_prop_p = 1;
18962 it->multibyte_p = STRING_MULTIBYTE (it->string);
18963 it->current.overlay_string_index = -1;
18964 IT_STRING_CHARPOS (*it) = IT_STRING_BYTEPOS (*it) = 0;
18965 it->end_charpos = it->string_nchars = SCHARS (it->string);
18966 it->method = GET_FROM_STRING;
18967 it->stop_charpos = 0;
18968 it->prev_stop = 0;
18969 it->base_level_stop = 0;
18971 /* Force paragraph direction to be that of the parent
18972 buffer/string. */
18973 if (it->bidi_p && it->bidi_it.paragraph_dir == R2L)
18974 it->paragraph_embedding = it->bidi_it.paragraph_dir;
18975 else
18976 it->paragraph_embedding = L2R;
18978 /* Set up the bidi iterator for this display string. */
18979 if (it->bidi_p)
18981 it->bidi_it.string.lstring = it->string;
18982 it->bidi_it.string.s = NULL;
18983 it->bidi_it.string.schars = it->end_charpos;
18984 it->bidi_it.string.bufpos = IT_CHARPOS (*it);
18985 it->bidi_it.string.from_disp_str = it->string_from_display_prop_p;
18986 it->bidi_it.string.unibyte = !it->multibyte_p;
18987 it->bidi_it.w = it->w;
18988 bidi_init_it (0, 0, FRAME_WINDOW_P (it->f), &it->bidi_it);
18991 else if (CONSP (prop) && EQ (XCAR (prop), Qspace))
18993 it->method = GET_FROM_STRETCH;
18994 it->object = prop;
18996 #ifdef HAVE_WINDOW_SYSTEM
18997 else if (IMAGEP (prop))
18999 it->what = IT_IMAGE;
19000 it->image_id = lookup_image (it->f, prop);
19001 it->method = GET_FROM_IMAGE;
19003 #endif /* HAVE_WINDOW_SYSTEM */
19004 else
19006 pop_it (it); /* bogus display property, give up */
19007 return 0;
19010 return 1;
19013 /* Return the character-property PROP at the current position in IT. */
19015 static Lisp_Object
19016 get_it_property (struct it *it, Lisp_Object prop)
19018 Lisp_Object position, object = it->object;
19020 if (STRINGP (object))
19021 position = make_number (IT_STRING_CHARPOS (*it));
19022 else if (BUFFERP (object))
19024 position = make_number (IT_CHARPOS (*it));
19025 object = it->window;
19027 else
19028 return Qnil;
19030 return Fget_char_property (position, prop, object);
19033 /* See if there's a line- or wrap-prefix, and if so, push it on IT. */
19035 static void
19036 handle_line_prefix (struct it *it)
19038 Lisp_Object prefix;
19040 if (it->continuation_lines_width > 0)
19042 prefix = get_it_property (it, Qwrap_prefix);
19043 if (NILP (prefix))
19044 prefix = Vwrap_prefix;
19046 else
19048 prefix = get_it_property (it, Qline_prefix);
19049 if (NILP (prefix))
19050 prefix = Vline_prefix;
19052 if (! NILP (prefix) && push_prefix_prop (it, prefix))
19054 /* If the prefix is wider than the window, and we try to wrap
19055 it, it would acquire its own wrap prefix, and so on till the
19056 iterator stack overflows. So, don't wrap the prefix. */
19057 it->line_wrap = TRUNCATE;
19058 it->avoid_cursor_p = 1;
19064 /* Remove N glyphs at the start of a reversed IT->glyph_row. Called
19065 only for R2L lines from display_line and display_string, when they
19066 decide that too many glyphs were produced by PRODUCE_GLYPHS, and
19067 the line/string needs to be continued on the next glyph row. */
19068 static void
19069 unproduce_glyphs (struct it *it, int n)
19071 struct glyph *glyph, *end;
19073 eassert (it->glyph_row);
19074 eassert (it->glyph_row->reversed_p);
19075 eassert (it->area == TEXT_AREA);
19076 eassert (n <= it->glyph_row->used[TEXT_AREA]);
19078 if (n > it->glyph_row->used[TEXT_AREA])
19079 n = it->glyph_row->used[TEXT_AREA];
19080 glyph = it->glyph_row->glyphs[TEXT_AREA] + n;
19081 end = it->glyph_row->glyphs[TEXT_AREA] + it->glyph_row->used[TEXT_AREA];
19082 for ( ; glyph < end; glyph++)
19083 glyph[-n] = *glyph;
19086 /* Find the positions in a bidi-reordered ROW to serve as ROW->minpos
19087 and ROW->maxpos. */
19088 static void
19089 find_row_edges (struct it *it, struct glyph_row *row,
19090 ptrdiff_t min_pos, ptrdiff_t min_bpos,
19091 ptrdiff_t max_pos, ptrdiff_t max_bpos)
19093 /* FIXME: Revisit this when glyph ``spilling'' in continuation
19094 lines' rows is implemented for bidi-reordered rows. */
19096 /* ROW->minpos is the value of min_pos, the minimal buffer position
19097 we have in ROW, or ROW->start.pos if that is smaller. */
19098 if (min_pos <= ZV && min_pos < row->start.pos.charpos)
19099 SET_TEXT_POS (row->minpos, min_pos, min_bpos);
19100 else
19101 /* We didn't find buffer positions smaller than ROW->start, or
19102 didn't find _any_ valid buffer positions in any of the glyphs,
19103 so we must trust the iterator's computed positions. */
19104 row->minpos = row->start.pos;
19105 if (max_pos <= 0)
19107 max_pos = CHARPOS (it->current.pos);
19108 max_bpos = BYTEPOS (it->current.pos);
19111 /* Here are the various use-cases for ending the row, and the
19112 corresponding values for ROW->maxpos:
19114 Line ends in a newline from buffer eol_pos + 1
19115 Line is continued from buffer max_pos + 1
19116 Line is truncated on right it->current.pos
19117 Line ends in a newline from string max_pos + 1(*)
19118 (*) + 1 only when line ends in a forward scan
19119 Line is continued from string max_pos
19120 Line is continued from display vector max_pos
19121 Line is entirely from a string min_pos == max_pos
19122 Line is entirely from a display vector min_pos == max_pos
19123 Line that ends at ZV ZV
19125 If you discover other use-cases, please add them here as
19126 appropriate. */
19127 if (row->ends_at_zv_p)
19128 row->maxpos = it->current.pos;
19129 else if (row->used[TEXT_AREA])
19131 int seen_this_string = 0;
19132 struct glyph_row *r1 = row - 1;
19134 /* Did we see the same display string on the previous row? */
19135 if (STRINGP (it->object)
19136 /* this is not the first row */
19137 && row > it->w->desired_matrix->rows
19138 /* previous row is not the header line */
19139 && !r1->mode_line_p
19140 /* previous row also ends in a newline from a string */
19141 && r1->ends_in_newline_from_string_p)
19143 struct glyph *start, *end;
19145 /* Search for the last glyph of the previous row that came
19146 from buffer or string. Depending on whether the row is
19147 L2R or R2L, we need to process it front to back or the
19148 other way round. */
19149 if (!r1->reversed_p)
19151 start = r1->glyphs[TEXT_AREA];
19152 end = start + r1->used[TEXT_AREA];
19153 /* Glyphs inserted by redisplay have an integer (zero)
19154 as their object. */
19155 while (end > start
19156 && INTEGERP ((end - 1)->object)
19157 && (end - 1)->charpos <= 0)
19158 --end;
19159 if (end > start)
19161 if (EQ ((end - 1)->object, it->object))
19162 seen_this_string = 1;
19164 else
19165 /* If all the glyphs of the previous row were inserted
19166 by redisplay, it means the previous row was
19167 produced from a single newline, which is only
19168 possible if that newline came from the same string
19169 as the one which produced this ROW. */
19170 seen_this_string = 1;
19172 else
19174 end = r1->glyphs[TEXT_AREA] - 1;
19175 start = end + r1->used[TEXT_AREA];
19176 while (end < start
19177 && INTEGERP ((end + 1)->object)
19178 && (end + 1)->charpos <= 0)
19179 ++end;
19180 if (end < start)
19182 if (EQ ((end + 1)->object, it->object))
19183 seen_this_string = 1;
19185 else
19186 seen_this_string = 1;
19189 /* Take note of each display string that covers a newline only
19190 once, the first time we see it. This is for when a display
19191 string includes more than one newline in it. */
19192 if (row->ends_in_newline_from_string_p && !seen_this_string)
19194 /* If we were scanning the buffer forward when we displayed
19195 the string, we want to account for at least one buffer
19196 position that belongs to this row (position covered by
19197 the display string), so that cursor positioning will
19198 consider this row as a candidate when point is at the end
19199 of the visual line represented by this row. This is not
19200 required when scanning back, because max_pos will already
19201 have a much larger value. */
19202 if (CHARPOS (row->end.pos) > max_pos)
19203 INC_BOTH (max_pos, max_bpos);
19204 SET_TEXT_POS (row->maxpos, max_pos, max_bpos);
19206 else if (CHARPOS (it->eol_pos) > 0)
19207 SET_TEXT_POS (row->maxpos,
19208 CHARPOS (it->eol_pos) + 1, BYTEPOS (it->eol_pos) + 1);
19209 else if (row->continued_p)
19211 /* If max_pos is different from IT's current position, it
19212 means IT->method does not belong to the display element
19213 at max_pos. However, it also means that the display
19214 element at max_pos was displayed in its entirety on this
19215 line, which is equivalent to saying that the next line
19216 starts at the next buffer position. */
19217 if (IT_CHARPOS (*it) == max_pos && it->method != GET_FROM_BUFFER)
19218 SET_TEXT_POS (row->maxpos, max_pos, max_bpos);
19219 else
19221 INC_BOTH (max_pos, max_bpos);
19222 SET_TEXT_POS (row->maxpos, max_pos, max_bpos);
19225 else if (row->truncated_on_right_p)
19226 /* display_line already called reseat_at_next_visible_line_start,
19227 which puts the iterator at the beginning of the next line, in
19228 the logical order. */
19229 row->maxpos = it->current.pos;
19230 else if (max_pos == min_pos && it->method != GET_FROM_BUFFER)
19231 /* A line that is entirely from a string/image/stretch... */
19232 row->maxpos = row->minpos;
19233 else
19234 emacs_abort ();
19236 else
19237 row->maxpos = it->current.pos;
19240 /* Construct the glyph row IT->glyph_row in the desired matrix of
19241 IT->w from text at the current position of IT. See dispextern.h
19242 for an overview of struct it. Value is non-zero if
19243 IT->glyph_row displays text, as opposed to a line displaying ZV
19244 only. */
19246 static int
19247 display_line (struct it *it)
19249 struct glyph_row *row = it->glyph_row;
19250 Lisp_Object overlay_arrow_string;
19251 struct it wrap_it;
19252 void *wrap_data = NULL;
19253 int may_wrap = 0, wrap_x IF_LINT (= 0);
19254 int wrap_row_used = -1;
19255 int wrap_row_ascent IF_LINT (= 0), wrap_row_height IF_LINT (= 0);
19256 int wrap_row_phys_ascent IF_LINT (= 0), wrap_row_phys_height IF_LINT (= 0);
19257 int wrap_row_extra_line_spacing IF_LINT (= 0);
19258 ptrdiff_t wrap_row_min_pos IF_LINT (= 0), wrap_row_min_bpos IF_LINT (= 0);
19259 ptrdiff_t wrap_row_max_pos IF_LINT (= 0), wrap_row_max_bpos IF_LINT (= 0);
19260 int cvpos;
19261 ptrdiff_t min_pos = ZV + 1, max_pos = 0;
19262 ptrdiff_t min_bpos IF_LINT (= 0), max_bpos IF_LINT (= 0);
19264 /* We always start displaying at hpos zero even if hscrolled. */
19265 eassert (it->hpos == 0 && it->current_x == 0);
19267 if (MATRIX_ROW_VPOS (row, it->w->desired_matrix)
19268 >= it->w->desired_matrix->nrows)
19270 it->w->nrows_scale_factor++;
19271 fonts_changed_p = 1;
19272 return 0;
19275 /* Is IT->w showing the region? */
19276 it->w->region_showing = it->region_beg_charpos > 0 ? it->region_beg_charpos : 0;
19278 /* Clear the result glyph row and enable it. */
19279 prepare_desired_row (row);
19281 row->y = it->current_y;
19282 row->start = it->start;
19283 row->continuation_lines_width = it->continuation_lines_width;
19284 row->displays_text_p = 1;
19285 row->starts_in_middle_of_char_p = it->starts_in_middle_of_char_p;
19286 it->starts_in_middle_of_char_p = 0;
19288 /* Arrange the overlays nicely for our purposes. Usually, we call
19289 display_line on only one line at a time, in which case this
19290 can't really hurt too much, or we call it on lines which appear
19291 one after another in the buffer, in which case all calls to
19292 recenter_overlay_lists but the first will be pretty cheap. */
19293 recenter_overlay_lists (current_buffer, IT_CHARPOS (*it));
19295 /* Move over display elements that are not visible because we are
19296 hscrolled. This may stop at an x-position < IT->first_visible_x
19297 if the first glyph is partially visible or if we hit a line end. */
19298 if (it->current_x < it->first_visible_x)
19300 enum move_it_result move_result;
19302 this_line_min_pos = row->start.pos;
19303 move_result = move_it_in_display_line_to (it, ZV, it->first_visible_x,
19304 MOVE_TO_POS | MOVE_TO_X);
19305 /* If we are under a large hscroll, move_it_in_display_line_to
19306 could hit the end of the line without reaching
19307 it->first_visible_x. Pretend that we did reach it. This is
19308 especially important on a TTY, where we will call
19309 extend_face_to_end_of_line, which needs to know how many
19310 blank glyphs to produce. */
19311 if (it->current_x < it->first_visible_x
19312 && (move_result == MOVE_NEWLINE_OR_CR
19313 || move_result == MOVE_POS_MATCH_OR_ZV))
19314 it->current_x = it->first_visible_x;
19316 /* Record the smallest positions seen while we moved over
19317 display elements that are not visible. This is needed by
19318 redisplay_internal for optimizing the case where the cursor
19319 stays inside the same line. The rest of this function only
19320 considers positions that are actually displayed, so
19321 RECORD_MAX_MIN_POS will not otherwise record positions that
19322 are hscrolled to the left of the left edge of the window. */
19323 min_pos = CHARPOS (this_line_min_pos);
19324 min_bpos = BYTEPOS (this_line_min_pos);
19326 else
19328 /* We only do this when not calling `move_it_in_display_line_to'
19329 above, because move_it_in_display_line_to calls
19330 handle_line_prefix itself. */
19331 handle_line_prefix (it);
19334 /* Get the initial row height. This is either the height of the
19335 text hscrolled, if there is any, or zero. */
19336 row->ascent = it->max_ascent;
19337 row->height = it->max_ascent + it->max_descent;
19338 row->phys_ascent = it->max_phys_ascent;
19339 row->phys_height = it->max_phys_ascent + it->max_phys_descent;
19340 row->extra_line_spacing = it->max_extra_line_spacing;
19342 /* Utility macro to record max and min buffer positions seen until now. */
19343 #define RECORD_MAX_MIN_POS(IT) \
19344 do \
19346 int composition_p = !STRINGP ((IT)->string) \
19347 && ((IT)->what == IT_COMPOSITION); \
19348 ptrdiff_t current_pos = \
19349 composition_p ? (IT)->cmp_it.charpos \
19350 : IT_CHARPOS (*(IT)); \
19351 ptrdiff_t current_bpos = \
19352 composition_p ? CHAR_TO_BYTE (current_pos) \
19353 : IT_BYTEPOS (*(IT)); \
19354 if (current_pos < min_pos) \
19356 min_pos = current_pos; \
19357 min_bpos = current_bpos; \
19359 if (IT_CHARPOS (*it) > max_pos) \
19361 max_pos = IT_CHARPOS (*it); \
19362 max_bpos = IT_BYTEPOS (*it); \
19365 while (0)
19367 /* Loop generating characters. The loop is left with IT on the next
19368 character to display. */
19369 while (1)
19371 int n_glyphs_before, hpos_before, x_before;
19372 int x, nglyphs;
19373 int ascent = 0, descent = 0, phys_ascent = 0, phys_descent = 0;
19375 /* Retrieve the next thing to display. Value is zero if end of
19376 buffer reached. */
19377 if (!get_next_display_element (it))
19379 /* Maybe add a space at the end of this line that is used to
19380 display the cursor there under X. Set the charpos of the
19381 first glyph of blank lines not corresponding to any text
19382 to -1. */
19383 if (IT_OVERFLOW_NEWLINE_INTO_FRINGE (it))
19384 row->exact_window_width_line_p = 1;
19385 else if ((append_space_for_newline (it, 1) && row->used[TEXT_AREA] == 1)
19386 || row->used[TEXT_AREA] == 0)
19388 row->glyphs[TEXT_AREA]->charpos = -1;
19389 row->displays_text_p = 0;
19391 if (!NILP (BVAR (XBUFFER (it->w->contents), indicate_empty_lines))
19392 && (!MINI_WINDOW_P (it->w)
19393 || (minibuf_level && EQ (it->window, minibuf_window))))
19394 row->indicate_empty_line_p = 1;
19397 it->continuation_lines_width = 0;
19398 row->ends_at_zv_p = 1;
19399 /* A row that displays right-to-left text must always have
19400 its last face extended all the way to the end of line,
19401 even if this row ends in ZV, because we still write to
19402 the screen left to right. We also need to extend the
19403 last face if the default face is remapped to some
19404 different face, otherwise the functions that clear
19405 portions of the screen will clear with the default face's
19406 background color. */
19407 if (row->reversed_p
19408 || lookup_basic_face (it->f, DEFAULT_FACE_ID) != DEFAULT_FACE_ID)
19409 extend_face_to_end_of_line (it);
19410 break;
19413 /* Now, get the metrics of what we want to display. This also
19414 generates glyphs in `row' (which is IT->glyph_row). */
19415 n_glyphs_before = row->used[TEXT_AREA];
19416 x = it->current_x;
19418 /* Remember the line height so far in case the next element doesn't
19419 fit on the line. */
19420 if (it->line_wrap != TRUNCATE)
19422 ascent = it->max_ascent;
19423 descent = it->max_descent;
19424 phys_ascent = it->max_phys_ascent;
19425 phys_descent = it->max_phys_descent;
19427 if (it->line_wrap == WORD_WRAP && it->area == TEXT_AREA)
19429 if (IT_DISPLAYING_WHITESPACE (it))
19430 may_wrap = 1;
19431 else if (may_wrap)
19433 SAVE_IT (wrap_it, *it, wrap_data);
19434 wrap_x = x;
19435 wrap_row_used = row->used[TEXT_AREA];
19436 wrap_row_ascent = row->ascent;
19437 wrap_row_height = row->height;
19438 wrap_row_phys_ascent = row->phys_ascent;
19439 wrap_row_phys_height = row->phys_height;
19440 wrap_row_extra_line_spacing = row->extra_line_spacing;
19441 wrap_row_min_pos = min_pos;
19442 wrap_row_min_bpos = min_bpos;
19443 wrap_row_max_pos = max_pos;
19444 wrap_row_max_bpos = max_bpos;
19445 may_wrap = 0;
19450 PRODUCE_GLYPHS (it);
19452 /* If this display element was in marginal areas, continue with
19453 the next one. */
19454 if (it->area != TEXT_AREA)
19456 row->ascent = max (row->ascent, it->max_ascent);
19457 row->height = max (row->height, it->max_ascent + it->max_descent);
19458 row->phys_ascent = max (row->phys_ascent, it->max_phys_ascent);
19459 row->phys_height = max (row->phys_height,
19460 it->max_phys_ascent + it->max_phys_descent);
19461 row->extra_line_spacing = max (row->extra_line_spacing,
19462 it->max_extra_line_spacing);
19463 set_iterator_to_next (it, 1);
19464 continue;
19467 /* Does the display element fit on the line? If we truncate
19468 lines, we should draw past the right edge of the window. If
19469 we don't truncate, we want to stop so that we can display the
19470 continuation glyph before the right margin. If lines are
19471 continued, there are two possible strategies for characters
19472 resulting in more than 1 glyph (e.g. tabs): Display as many
19473 glyphs as possible in this line and leave the rest for the
19474 continuation line, or display the whole element in the next
19475 line. Original redisplay did the former, so we do it also. */
19476 nglyphs = row->used[TEXT_AREA] - n_glyphs_before;
19477 hpos_before = it->hpos;
19478 x_before = x;
19480 if (/* Not a newline. */
19481 nglyphs > 0
19482 /* Glyphs produced fit entirely in the line. */
19483 && it->current_x < it->last_visible_x)
19485 it->hpos += nglyphs;
19486 row->ascent = max (row->ascent, it->max_ascent);
19487 row->height = max (row->height, it->max_ascent + it->max_descent);
19488 row->phys_ascent = max (row->phys_ascent, it->max_phys_ascent);
19489 row->phys_height = max (row->phys_height,
19490 it->max_phys_ascent + it->max_phys_descent);
19491 row->extra_line_spacing = max (row->extra_line_spacing,
19492 it->max_extra_line_spacing);
19493 if (it->current_x - it->pixel_width < it->first_visible_x)
19494 row->x = x - it->first_visible_x;
19495 /* Record the maximum and minimum buffer positions seen so
19496 far in glyphs that will be displayed by this row. */
19497 if (it->bidi_p)
19498 RECORD_MAX_MIN_POS (it);
19500 else
19502 int i, new_x;
19503 struct glyph *glyph;
19505 for (i = 0; i < nglyphs; ++i, x = new_x)
19507 glyph = row->glyphs[TEXT_AREA] + n_glyphs_before + i;
19508 new_x = x + glyph->pixel_width;
19510 if (/* Lines are continued. */
19511 it->line_wrap != TRUNCATE
19512 && (/* Glyph doesn't fit on the line. */
19513 new_x > it->last_visible_x
19514 /* Or it fits exactly on a window system frame. */
19515 || (new_x == it->last_visible_x
19516 && FRAME_WINDOW_P (it->f)
19517 && (row->reversed_p
19518 ? WINDOW_LEFT_FRINGE_WIDTH (it->w)
19519 : WINDOW_RIGHT_FRINGE_WIDTH (it->w)))))
19521 /* End of a continued line. */
19523 if (it->hpos == 0
19524 || (new_x == it->last_visible_x
19525 && FRAME_WINDOW_P (it->f)
19526 && (row->reversed_p
19527 ? WINDOW_LEFT_FRINGE_WIDTH (it->w)
19528 : WINDOW_RIGHT_FRINGE_WIDTH (it->w))))
19530 /* Current glyph is the only one on the line or
19531 fits exactly on the line. We must continue
19532 the line because we can't draw the cursor
19533 after the glyph. */
19534 row->continued_p = 1;
19535 it->current_x = new_x;
19536 it->continuation_lines_width += new_x;
19537 ++it->hpos;
19538 if (i == nglyphs - 1)
19540 /* If line-wrap is on, check if a previous
19541 wrap point was found. */
19542 if (wrap_row_used > 0
19543 /* Even if there is a previous wrap
19544 point, continue the line here as
19545 usual, if (i) the previous character
19546 was a space or tab AND (ii) the
19547 current character is not. */
19548 && (!may_wrap
19549 || IT_DISPLAYING_WHITESPACE (it)))
19550 goto back_to_wrap;
19552 /* Record the maximum and minimum buffer
19553 positions seen so far in glyphs that will be
19554 displayed by this row. */
19555 if (it->bidi_p)
19556 RECORD_MAX_MIN_POS (it);
19557 set_iterator_to_next (it, 1);
19558 if (IT_OVERFLOW_NEWLINE_INTO_FRINGE (it))
19560 if (!get_next_display_element (it))
19562 row->exact_window_width_line_p = 1;
19563 it->continuation_lines_width = 0;
19564 row->continued_p = 0;
19565 row->ends_at_zv_p = 1;
19567 else if (ITERATOR_AT_END_OF_LINE_P (it))
19569 row->continued_p = 0;
19570 row->exact_window_width_line_p = 1;
19574 else if (it->bidi_p)
19575 RECORD_MAX_MIN_POS (it);
19577 else if (CHAR_GLYPH_PADDING_P (*glyph)
19578 && !FRAME_WINDOW_P (it->f))
19580 /* A padding glyph that doesn't fit on this line.
19581 This means the whole character doesn't fit
19582 on the line. */
19583 if (row->reversed_p)
19584 unproduce_glyphs (it, row->used[TEXT_AREA]
19585 - n_glyphs_before);
19586 row->used[TEXT_AREA] = n_glyphs_before;
19588 /* Fill the rest of the row with continuation
19589 glyphs like in 20.x. */
19590 while (row->glyphs[TEXT_AREA] + row->used[TEXT_AREA]
19591 < row->glyphs[1 + TEXT_AREA])
19592 produce_special_glyphs (it, IT_CONTINUATION);
19594 row->continued_p = 1;
19595 it->current_x = x_before;
19596 it->continuation_lines_width += x_before;
19598 /* Restore the height to what it was before the
19599 element not fitting on the line. */
19600 it->max_ascent = ascent;
19601 it->max_descent = descent;
19602 it->max_phys_ascent = phys_ascent;
19603 it->max_phys_descent = phys_descent;
19605 else if (wrap_row_used > 0)
19607 back_to_wrap:
19608 if (row->reversed_p)
19609 unproduce_glyphs (it,
19610 row->used[TEXT_AREA] - wrap_row_used);
19611 RESTORE_IT (it, &wrap_it, wrap_data);
19612 it->continuation_lines_width += wrap_x;
19613 row->used[TEXT_AREA] = wrap_row_used;
19614 row->ascent = wrap_row_ascent;
19615 row->height = wrap_row_height;
19616 row->phys_ascent = wrap_row_phys_ascent;
19617 row->phys_height = wrap_row_phys_height;
19618 row->extra_line_spacing = wrap_row_extra_line_spacing;
19619 min_pos = wrap_row_min_pos;
19620 min_bpos = wrap_row_min_bpos;
19621 max_pos = wrap_row_max_pos;
19622 max_bpos = wrap_row_max_bpos;
19623 row->continued_p = 1;
19624 row->ends_at_zv_p = 0;
19625 row->exact_window_width_line_p = 0;
19626 it->continuation_lines_width += x;
19628 /* Make sure that a non-default face is extended
19629 up to the right margin of the window. */
19630 extend_face_to_end_of_line (it);
19632 else if (it->c == '\t' && FRAME_WINDOW_P (it->f))
19634 /* A TAB that extends past the right edge of the
19635 window. This produces a single glyph on
19636 window system frames. We leave the glyph in
19637 this row and let it fill the row, but don't
19638 consume the TAB. */
19639 if ((row->reversed_p
19640 ? WINDOW_LEFT_FRINGE_WIDTH (it->w)
19641 : WINDOW_RIGHT_FRINGE_WIDTH (it->w)) == 0)
19642 produce_special_glyphs (it, IT_CONTINUATION);
19643 it->continuation_lines_width += it->last_visible_x;
19644 row->ends_in_middle_of_char_p = 1;
19645 row->continued_p = 1;
19646 glyph->pixel_width = it->last_visible_x - x;
19647 it->starts_in_middle_of_char_p = 1;
19649 else
19651 /* Something other than a TAB that draws past
19652 the right edge of the window. Restore
19653 positions to values before the element. */
19654 if (row->reversed_p)
19655 unproduce_glyphs (it, row->used[TEXT_AREA]
19656 - (n_glyphs_before + i));
19657 row->used[TEXT_AREA] = n_glyphs_before + i;
19659 /* Display continuation glyphs. */
19660 it->current_x = x_before;
19661 it->continuation_lines_width += x;
19662 if (!FRAME_WINDOW_P (it->f)
19663 || (row->reversed_p
19664 ? WINDOW_LEFT_FRINGE_WIDTH (it->w)
19665 : WINDOW_RIGHT_FRINGE_WIDTH (it->w)) == 0)
19666 produce_special_glyphs (it, IT_CONTINUATION);
19667 row->continued_p = 1;
19669 extend_face_to_end_of_line (it);
19671 if (nglyphs > 1 && i > 0)
19673 row->ends_in_middle_of_char_p = 1;
19674 it->starts_in_middle_of_char_p = 1;
19677 /* Restore the height to what it was before the
19678 element not fitting on the line. */
19679 it->max_ascent = ascent;
19680 it->max_descent = descent;
19681 it->max_phys_ascent = phys_ascent;
19682 it->max_phys_descent = phys_descent;
19685 break;
19687 else if (new_x > it->first_visible_x)
19689 /* Increment number of glyphs actually displayed. */
19690 ++it->hpos;
19692 /* Record the maximum and minimum buffer positions
19693 seen so far in glyphs that will be displayed by
19694 this row. */
19695 if (it->bidi_p)
19696 RECORD_MAX_MIN_POS (it);
19698 if (x < it->first_visible_x)
19699 /* Glyph is partially visible, i.e. row starts at
19700 negative X position. */
19701 row->x = x - it->first_visible_x;
19703 else
19705 /* Glyph is completely off the left margin of the
19706 window. This should not happen because of the
19707 move_it_in_display_line at the start of this
19708 function, unless the text display area of the
19709 window is empty. */
19710 eassert (it->first_visible_x <= it->last_visible_x);
19713 /* Even if this display element produced no glyphs at all,
19714 we want to record its position. */
19715 if (it->bidi_p && nglyphs == 0)
19716 RECORD_MAX_MIN_POS (it);
19718 row->ascent = max (row->ascent, it->max_ascent);
19719 row->height = max (row->height, it->max_ascent + it->max_descent);
19720 row->phys_ascent = max (row->phys_ascent, it->max_phys_ascent);
19721 row->phys_height = max (row->phys_height,
19722 it->max_phys_ascent + it->max_phys_descent);
19723 row->extra_line_spacing = max (row->extra_line_spacing,
19724 it->max_extra_line_spacing);
19726 /* End of this display line if row is continued. */
19727 if (row->continued_p || row->ends_at_zv_p)
19728 break;
19731 at_end_of_line:
19732 /* Is this a line end? If yes, we're also done, after making
19733 sure that a non-default face is extended up to the right
19734 margin of the window. */
19735 if (ITERATOR_AT_END_OF_LINE_P (it))
19737 int used_before = row->used[TEXT_AREA];
19739 row->ends_in_newline_from_string_p = STRINGP (it->object);
19741 /* Add a space at the end of the line that is used to
19742 display the cursor there. */
19743 if (!IT_OVERFLOW_NEWLINE_INTO_FRINGE (it))
19744 append_space_for_newline (it, 0);
19746 /* Extend the face to the end of the line. */
19747 extend_face_to_end_of_line (it);
19749 /* Make sure we have the position. */
19750 if (used_before == 0)
19751 row->glyphs[TEXT_AREA]->charpos = CHARPOS (it->position);
19753 /* Record the position of the newline, for use in
19754 find_row_edges. */
19755 it->eol_pos = it->current.pos;
19757 /* Consume the line end. This skips over invisible lines. */
19758 set_iterator_to_next (it, 1);
19759 it->continuation_lines_width = 0;
19760 break;
19763 /* Proceed with next display element. Note that this skips
19764 over lines invisible because of selective display. */
19765 set_iterator_to_next (it, 1);
19767 /* If we truncate lines, we are done when the last displayed
19768 glyphs reach past the right margin of the window. */
19769 if (it->line_wrap == TRUNCATE
19770 && (FRAME_WINDOW_P (it->f) && WINDOW_RIGHT_FRINGE_WIDTH (it->w)
19771 ? (it->current_x >= it->last_visible_x)
19772 : (it->current_x > it->last_visible_x)))
19774 /* Maybe add truncation glyphs. */
19775 if (!FRAME_WINDOW_P (it->f)
19776 || (row->reversed_p
19777 ? WINDOW_LEFT_FRINGE_WIDTH (it->w)
19778 : WINDOW_RIGHT_FRINGE_WIDTH (it->w)) == 0)
19780 int i, n;
19782 if (!row->reversed_p)
19784 for (i = row->used[TEXT_AREA] - 1; i > 0; --i)
19785 if (!CHAR_GLYPH_PADDING_P (row->glyphs[TEXT_AREA][i]))
19786 break;
19788 else
19790 for (i = 0; i < row->used[TEXT_AREA]; i++)
19791 if (!CHAR_GLYPH_PADDING_P (row->glyphs[TEXT_AREA][i]))
19792 break;
19793 /* Remove any padding glyphs at the front of ROW, to
19794 make room for the truncation glyphs we will be
19795 adding below. The loop below always inserts at
19796 least one truncation glyph, so also remove the
19797 last glyph added to ROW. */
19798 unproduce_glyphs (it, i + 1);
19799 /* Adjust i for the loop below. */
19800 i = row->used[TEXT_AREA] - (i + 1);
19803 it->current_x = x_before;
19804 if (!FRAME_WINDOW_P (it->f))
19806 for (n = row->used[TEXT_AREA]; i < n; ++i)
19808 row->used[TEXT_AREA] = i;
19809 produce_special_glyphs (it, IT_TRUNCATION);
19812 else
19814 row->used[TEXT_AREA] = i;
19815 produce_special_glyphs (it, IT_TRUNCATION);
19818 else if (IT_OVERFLOW_NEWLINE_INTO_FRINGE (it))
19820 /* Don't truncate if we can overflow newline into fringe. */
19821 if (!get_next_display_element (it))
19823 it->continuation_lines_width = 0;
19824 row->ends_at_zv_p = 1;
19825 row->exact_window_width_line_p = 1;
19826 break;
19828 if (ITERATOR_AT_END_OF_LINE_P (it))
19830 row->exact_window_width_line_p = 1;
19831 goto at_end_of_line;
19833 it->current_x = x_before;
19836 row->truncated_on_right_p = 1;
19837 it->continuation_lines_width = 0;
19838 reseat_at_next_visible_line_start (it, 0);
19839 row->ends_at_zv_p = FETCH_BYTE (IT_BYTEPOS (*it) - 1) != '\n';
19840 it->hpos = hpos_before;
19841 break;
19845 if (wrap_data)
19846 bidi_unshelve_cache (wrap_data, 1);
19848 /* If line is not empty and hscrolled, maybe insert truncation glyphs
19849 at the left window margin. */
19850 if (it->first_visible_x
19851 && IT_CHARPOS (*it) != CHARPOS (row->start.pos))
19853 if (!FRAME_WINDOW_P (it->f)
19854 || (row->reversed_p
19855 ? WINDOW_RIGHT_FRINGE_WIDTH (it->w)
19856 : WINDOW_LEFT_FRINGE_WIDTH (it->w)) == 0)
19857 insert_left_trunc_glyphs (it);
19858 row->truncated_on_left_p = 1;
19861 /* Remember the position at which this line ends.
19863 BIDI Note: any code that needs MATRIX_ROW_START/END_CHARPOS
19864 cannot be before the call to find_row_edges below, since that is
19865 where these positions are determined. */
19866 row->end = it->current;
19867 if (!it->bidi_p)
19869 row->minpos = row->start.pos;
19870 row->maxpos = row->end.pos;
19872 else
19874 /* ROW->minpos and ROW->maxpos must be the smallest and
19875 `1 + the largest' buffer positions in ROW. But if ROW was
19876 bidi-reordered, these two positions can be anywhere in the
19877 row, so we must determine them now. */
19878 find_row_edges (it, row, min_pos, min_bpos, max_pos, max_bpos);
19881 /* If the start of this line is the overlay arrow-position, then
19882 mark this glyph row as the one containing the overlay arrow.
19883 This is clearly a mess with variable size fonts. It would be
19884 better to let it be displayed like cursors under X. */
19885 if ((MATRIX_ROW_DISPLAYS_TEXT_P (row) || !overlay_arrow_seen)
19886 && (overlay_arrow_string = overlay_arrow_at_row (it, row),
19887 !NILP (overlay_arrow_string)))
19889 /* Overlay arrow in window redisplay is a fringe bitmap. */
19890 if (STRINGP (overlay_arrow_string))
19892 struct glyph_row *arrow_row
19893 = get_overlay_arrow_glyph_row (it->w, overlay_arrow_string);
19894 struct glyph *glyph = arrow_row->glyphs[TEXT_AREA];
19895 struct glyph *arrow_end = glyph + arrow_row->used[TEXT_AREA];
19896 struct glyph *p = row->glyphs[TEXT_AREA];
19897 struct glyph *p2, *end;
19899 /* Copy the arrow glyphs. */
19900 while (glyph < arrow_end)
19901 *p++ = *glyph++;
19903 /* Throw away padding glyphs. */
19904 p2 = p;
19905 end = row->glyphs[TEXT_AREA] + row->used[TEXT_AREA];
19906 while (p2 < end && CHAR_GLYPH_PADDING_P (*p2))
19907 ++p2;
19908 if (p2 > p)
19910 while (p2 < end)
19911 *p++ = *p2++;
19912 row->used[TEXT_AREA] = p2 - row->glyphs[TEXT_AREA];
19915 else
19917 eassert (INTEGERP (overlay_arrow_string));
19918 row->overlay_arrow_bitmap = XINT (overlay_arrow_string);
19920 overlay_arrow_seen = 1;
19923 /* Highlight trailing whitespace. */
19924 if (!NILP (Vshow_trailing_whitespace))
19925 highlight_trailing_whitespace (it->f, it->glyph_row);
19927 /* Compute pixel dimensions of this line. */
19928 compute_line_metrics (it);
19930 /* Implementation note: No changes in the glyphs of ROW or in their
19931 faces can be done past this point, because compute_line_metrics
19932 computes ROW's hash value and stores it within the glyph_row
19933 structure. */
19935 /* Record whether this row ends inside an ellipsis. */
19936 row->ends_in_ellipsis_p
19937 = (it->method == GET_FROM_DISPLAY_VECTOR
19938 && it->ellipsis_p);
19940 /* Save fringe bitmaps in this row. */
19941 row->left_user_fringe_bitmap = it->left_user_fringe_bitmap;
19942 row->left_user_fringe_face_id = it->left_user_fringe_face_id;
19943 row->right_user_fringe_bitmap = it->right_user_fringe_bitmap;
19944 row->right_user_fringe_face_id = it->right_user_fringe_face_id;
19946 it->left_user_fringe_bitmap = 0;
19947 it->left_user_fringe_face_id = 0;
19948 it->right_user_fringe_bitmap = 0;
19949 it->right_user_fringe_face_id = 0;
19951 /* Maybe set the cursor. */
19952 cvpos = it->w->cursor.vpos;
19953 if ((cvpos < 0
19954 /* In bidi-reordered rows, keep checking for proper cursor
19955 position even if one has been found already, because buffer
19956 positions in such rows change non-linearly with ROW->VPOS,
19957 when a line is continued. One exception: when we are at ZV,
19958 display cursor on the first suitable glyph row, since all
19959 the empty rows after that also have their position set to ZV. */
19960 /* FIXME: Revisit this when glyph ``spilling'' in continuation
19961 lines' rows is implemented for bidi-reordered rows. */
19962 || (it->bidi_p
19963 && !MATRIX_ROW (it->w->desired_matrix, cvpos)->ends_at_zv_p))
19964 && PT >= MATRIX_ROW_START_CHARPOS (row)
19965 && PT <= MATRIX_ROW_END_CHARPOS (row)
19966 && cursor_row_p (row))
19967 set_cursor_from_row (it->w, row, it->w->desired_matrix, 0, 0, 0, 0);
19969 /* Prepare for the next line. This line starts horizontally at (X
19970 HPOS) = (0 0). Vertical positions are incremented. As a
19971 convenience for the caller, IT->glyph_row is set to the next
19972 row to be used. */
19973 it->current_x = it->hpos = 0;
19974 it->current_y += row->height;
19975 SET_TEXT_POS (it->eol_pos, 0, 0);
19976 ++it->vpos;
19977 ++it->glyph_row;
19978 /* The next row should by default use the same value of the
19979 reversed_p flag as this one. set_iterator_to_next decides when
19980 it's a new paragraph, and PRODUCE_GLYPHS recomputes the value of
19981 the flag accordingly. */
19982 if (it->glyph_row < MATRIX_BOTTOM_TEXT_ROW (it->w->desired_matrix, it->w))
19983 it->glyph_row->reversed_p = row->reversed_p;
19984 it->start = row->end;
19985 return MATRIX_ROW_DISPLAYS_TEXT_P (row);
19987 #undef RECORD_MAX_MIN_POS
19990 DEFUN ("current-bidi-paragraph-direction", Fcurrent_bidi_paragraph_direction,
19991 Scurrent_bidi_paragraph_direction, 0, 1, 0,
19992 doc: /* Return paragraph direction at point in BUFFER.
19993 Value is either `left-to-right' or `right-to-left'.
19994 If BUFFER is omitted or nil, it defaults to the current buffer.
19996 Paragraph direction determines how the text in the paragraph is displayed.
19997 In left-to-right paragraphs, text begins at the left margin of the window
19998 and the reading direction is generally left to right. In right-to-left
19999 paragraphs, text begins at the right margin and is read from right to left.
20001 See also `bidi-paragraph-direction'. */)
20002 (Lisp_Object buffer)
20004 struct buffer *buf = current_buffer;
20005 struct buffer *old = buf;
20007 if (! NILP (buffer))
20009 CHECK_BUFFER (buffer);
20010 buf = XBUFFER (buffer);
20013 if (NILP (BVAR (buf, bidi_display_reordering))
20014 || NILP (BVAR (buf, enable_multibyte_characters))
20015 /* When we are loading loadup.el, the character property tables
20016 needed for bidi iteration are not yet available. */
20017 || !NILP (Vpurify_flag))
20018 return Qleft_to_right;
20019 else if (!NILP (BVAR (buf, bidi_paragraph_direction)))
20020 return BVAR (buf, bidi_paragraph_direction);
20021 else
20023 /* Determine the direction from buffer text. We could try to
20024 use current_matrix if it is up to date, but this seems fast
20025 enough as it is. */
20026 struct bidi_it itb;
20027 ptrdiff_t pos = BUF_PT (buf);
20028 ptrdiff_t bytepos = BUF_PT_BYTE (buf);
20029 int c;
20030 void *itb_data = bidi_shelve_cache ();
20032 set_buffer_temp (buf);
20033 /* bidi_paragraph_init finds the base direction of the paragraph
20034 by searching forward from paragraph start. We need the base
20035 direction of the current or _previous_ paragraph, so we need
20036 to make sure we are within that paragraph. To that end, find
20037 the previous non-empty line. */
20038 if (pos >= ZV && pos > BEGV)
20039 DEC_BOTH (pos, bytepos);
20040 if (fast_looking_at (build_string ("[\f\t ]*\n"),
20041 pos, bytepos, ZV, ZV_BYTE, Qnil) > 0)
20043 while ((c = FETCH_BYTE (bytepos)) == '\n'
20044 || c == ' ' || c == '\t' || c == '\f')
20046 if (bytepos <= BEGV_BYTE)
20047 break;
20048 bytepos--;
20049 pos--;
20051 while (!CHAR_HEAD_P (FETCH_BYTE (bytepos)))
20052 bytepos--;
20054 bidi_init_it (pos, bytepos, FRAME_WINDOW_P (SELECTED_FRAME ()), &itb);
20055 itb.paragraph_dir = NEUTRAL_DIR;
20056 itb.string.s = NULL;
20057 itb.string.lstring = Qnil;
20058 itb.string.bufpos = 0;
20059 itb.string.unibyte = 0;
20060 /* We have no window to use here for ignoring window-specific
20061 overlays. Using NULL for window pointer will cause
20062 compute_display_string_pos to use the current buffer. */
20063 itb.w = NULL;
20064 bidi_paragraph_init (NEUTRAL_DIR, &itb, 1);
20065 bidi_unshelve_cache (itb_data, 0);
20066 set_buffer_temp (old);
20067 switch (itb.paragraph_dir)
20069 case L2R:
20070 return Qleft_to_right;
20071 break;
20072 case R2L:
20073 return Qright_to_left;
20074 break;
20075 default:
20076 emacs_abort ();
20081 DEFUN ("move-point-visually", Fmove_point_visually,
20082 Smove_point_visually, 1, 1, 0,
20083 doc: /* Move point in the visual order in the specified DIRECTION.
20084 DIRECTION can be 1, meaning move to the right, or -1, which moves to the
20085 left.
20087 Value is the new character position of point. */)
20088 (Lisp_Object direction)
20090 struct window *w = XWINDOW (selected_window);
20091 struct buffer *b = XBUFFER (w->contents);
20092 struct glyph_row *row;
20093 int dir;
20094 Lisp_Object paragraph_dir;
20096 #define ROW_GLYPH_NEWLINE_P(ROW,GLYPH) \
20097 (!(ROW)->continued_p \
20098 && INTEGERP ((GLYPH)->object) \
20099 && (GLYPH)->type == CHAR_GLYPH \
20100 && (GLYPH)->u.ch == ' ' \
20101 && (GLYPH)->charpos >= 0 \
20102 && !(GLYPH)->avoid_cursor_p)
20104 CHECK_NUMBER (direction);
20105 dir = XINT (direction);
20106 if (dir > 0)
20107 dir = 1;
20108 else
20109 dir = -1;
20111 /* If current matrix is up-to-date, we can use the information
20112 recorded in the glyphs, at least as long as the goal is on the
20113 screen. */
20114 if (w->window_end_valid
20115 && !windows_or_buffers_changed
20116 && b
20117 && !b->clip_changed
20118 && !b->prevent_redisplay_optimizations_p
20119 && !window_outdated (w)
20120 && w->cursor.vpos >= 0
20121 && w->cursor.vpos < w->current_matrix->nrows
20122 && (row = MATRIX_ROW (w->current_matrix, w->cursor.vpos))->enabled_p)
20124 struct glyph *g = row->glyphs[TEXT_AREA];
20125 struct glyph *e = dir > 0 ? g + row->used[TEXT_AREA] : g - 1;
20126 struct glyph *gpt = g + w->cursor.hpos;
20128 for (g = gpt + dir; (dir > 0 ? g < e : g > e); g += dir)
20130 if (BUFFERP (g->object) && g->charpos != PT)
20132 SET_PT (g->charpos);
20133 w->cursor.vpos = -1;
20134 return make_number (PT);
20136 else if (!INTEGERP (g->object) && !EQ (g->object, gpt->object))
20138 ptrdiff_t new_pos;
20140 if (BUFFERP (gpt->object))
20142 new_pos = PT;
20143 if ((gpt->resolved_level - row->reversed_p) % 2 == 0)
20144 new_pos += (row->reversed_p ? -dir : dir);
20145 else
20146 new_pos -= (row->reversed_p ? -dir : dir);;
20148 else if (BUFFERP (g->object))
20149 new_pos = g->charpos;
20150 else
20151 break;
20152 SET_PT (new_pos);
20153 w->cursor.vpos = -1;
20154 return make_number (PT);
20156 else if (ROW_GLYPH_NEWLINE_P (row, g))
20158 /* Glyphs inserted at the end of a non-empty line for
20159 positioning the cursor have zero charpos, so we must
20160 deduce the value of point by other means. */
20161 if (g->charpos > 0)
20162 SET_PT (g->charpos);
20163 else if (row->ends_at_zv_p && PT != ZV)
20164 SET_PT (ZV);
20165 else if (PT != MATRIX_ROW_END_CHARPOS (row) - 1)
20166 SET_PT (MATRIX_ROW_END_CHARPOS (row) - 1);
20167 else
20168 break;
20169 w->cursor.vpos = -1;
20170 return make_number (PT);
20173 if (g == e || INTEGERP (g->object))
20175 if (row->truncated_on_left_p || row->truncated_on_right_p)
20176 goto simulate_display;
20177 if (!row->reversed_p)
20178 row += dir;
20179 else
20180 row -= dir;
20181 if (row < MATRIX_FIRST_TEXT_ROW (w->current_matrix)
20182 || row > MATRIX_BOTTOM_TEXT_ROW (w->current_matrix, w))
20183 goto simulate_display;
20185 if (dir > 0)
20187 if (row->reversed_p && !row->continued_p)
20189 SET_PT (MATRIX_ROW_END_CHARPOS (row) - 1);
20190 w->cursor.vpos = -1;
20191 return make_number (PT);
20193 g = row->glyphs[TEXT_AREA];
20194 e = g + row->used[TEXT_AREA];
20195 for ( ; g < e; g++)
20197 if (BUFFERP (g->object)
20198 /* Empty lines have only one glyph, which stands
20199 for the newline, and whose charpos is the
20200 buffer position of the newline. */
20201 || ROW_GLYPH_NEWLINE_P (row, g)
20202 /* When the buffer ends in a newline, the line at
20203 EOB also has one glyph, but its charpos is -1. */
20204 || (row->ends_at_zv_p
20205 && !row->reversed_p
20206 && INTEGERP (g->object)
20207 && g->type == CHAR_GLYPH
20208 && g->u.ch == ' '))
20210 if (g->charpos > 0)
20211 SET_PT (g->charpos);
20212 else if (!row->reversed_p
20213 && row->ends_at_zv_p
20214 && PT != ZV)
20215 SET_PT (ZV);
20216 else
20217 continue;
20218 w->cursor.vpos = -1;
20219 return make_number (PT);
20223 else
20225 if (!row->reversed_p && !row->continued_p)
20227 SET_PT (MATRIX_ROW_END_CHARPOS (row) - 1);
20228 w->cursor.vpos = -1;
20229 return make_number (PT);
20231 e = row->glyphs[TEXT_AREA];
20232 g = e + row->used[TEXT_AREA] - 1;
20233 for ( ; g >= e; g--)
20235 if (BUFFERP (g->object)
20236 || (ROW_GLYPH_NEWLINE_P (row, g)
20237 && g->charpos > 0)
20238 /* Empty R2L lines on GUI frames have the buffer
20239 position of the newline stored in the stretch
20240 glyph. */
20241 || g->type == STRETCH_GLYPH
20242 || (row->ends_at_zv_p
20243 && row->reversed_p
20244 && INTEGERP (g->object)
20245 && g->type == CHAR_GLYPH
20246 && g->u.ch == ' '))
20248 if (g->charpos > 0)
20249 SET_PT (g->charpos);
20250 else if (row->reversed_p
20251 && row->ends_at_zv_p
20252 && PT != ZV)
20253 SET_PT (ZV);
20254 else
20255 continue;
20256 w->cursor.vpos = -1;
20257 return make_number (PT);
20264 simulate_display:
20266 /* If we wind up here, we failed to move by using the glyphs, so we
20267 need to simulate display instead. */
20269 if (b)
20270 paragraph_dir = Fcurrent_bidi_paragraph_direction (w->contents);
20271 else
20272 paragraph_dir = Qleft_to_right;
20273 if (EQ (paragraph_dir, Qright_to_left))
20274 dir = -dir;
20275 if (PT <= BEGV && dir < 0)
20276 xsignal0 (Qbeginning_of_buffer);
20277 else if (PT >= ZV && dir > 0)
20278 xsignal0 (Qend_of_buffer);
20279 else
20281 struct text_pos pt;
20282 struct it it;
20283 int pt_x, target_x, pixel_width, pt_vpos;
20284 bool at_eol_p;
20285 bool overshoot_expected = false;
20286 bool target_is_eol_p = false;
20288 /* Setup the arena. */
20289 SET_TEXT_POS (pt, PT, PT_BYTE);
20290 start_display (&it, w, pt);
20292 if (it.cmp_it.id < 0
20293 && it.method == GET_FROM_STRING
20294 && it.area == TEXT_AREA
20295 && it.string_from_display_prop_p
20296 && (it.sp > 0 && it.stack[it.sp - 1].method == GET_FROM_BUFFER))
20297 overshoot_expected = true;
20299 /* Find the X coordinate of point. We start from the beginning
20300 of this or previous line to make sure we are before point in
20301 the logical order (since the move_it_* functions can only
20302 move forward). */
20303 reseat_at_previous_visible_line_start (&it);
20304 it.current_x = it.hpos = it.current_y = it.vpos = 0;
20305 if (IT_CHARPOS (it) != PT)
20306 move_it_to (&it, overshoot_expected ? PT - 1 : PT,
20307 -1, -1, -1, MOVE_TO_POS);
20308 pt_x = it.current_x;
20309 pt_vpos = it.vpos;
20310 if (dir > 0 || overshoot_expected)
20312 struct glyph_row *row = it.glyph_row;
20314 /* When point is at beginning of line, we don't have
20315 information about the glyph there loaded into struct
20316 it. Calling get_next_display_element fixes that. */
20317 if (pt_x == 0)
20318 get_next_display_element (&it);
20319 at_eol_p = ITERATOR_AT_END_OF_LINE_P (&it);
20320 it.glyph_row = NULL;
20321 PRODUCE_GLYPHS (&it); /* compute it.pixel_width */
20322 it.glyph_row = row;
20323 /* PRODUCE_GLYPHS advances it.current_x, so we must restore
20324 it, lest it will become out of sync with it's buffer
20325 position. */
20326 it.current_x = pt_x;
20328 else
20329 at_eol_p = ITERATOR_AT_END_OF_LINE_P (&it);
20330 pixel_width = it.pixel_width;
20331 if (overshoot_expected && at_eol_p)
20332 pixel_width = 0;
20333 else if (pixel_width <= 0)
20334 pixel_width = 1;
20336 /* If there's a display string at point, we are actually at the
20337 glyph to the left of point, so we need to correct the X
20338 coordinate. */
20339 if (overshoot_expected)
20340 pt_x += pixel_width;
20342 /* Compute target X coordinate, either to the left or to the
20343 right of point. On TTY frames, all characters have the same
20344 pixel width of 1, so we can use that. On GUI frames we don't
20345 have an easy way of getting at the pixel width of the
20346 character to the left of point, so we use a different method
20347 of getting to that place. */
20348 if (dir > 0)
20349 target_x = pt_x + pixel_width;
20350 else
20351 target_x = pt_x - (!FRAME_WINDOW_P (it.f)) * pixel_width;
20353 /* Target X coordinate could be one line above or below the line
20354 of point, in which case we need to adjust the target X
20355 coordinate. Also, if moving to the left, we need to begin at
20356 the left edge of the point's screen line. */
20357 if (dir < 0)
20359 if (pt_x > 0)
20361 start_display (&it, w, pt);
20362 reseat_at_previous_visible_line_start (&it);
20363 it.current_x = it.current_y = it.hpos = 0;
20364 if (pt_vpos != 0)
20365 move_it_by_lines (&it, pt_vpos);
20367 else
20369 move_it_by_lines (&it, -1);
20370 target_x = it.last_visible_x - !FRAME_WINDOW_P (it.f);
20371 target_is_eol_p = true;
20374 else
20376 if (at_eol_p
20377 || (target_x >= it.last_visible_x
20378 && it.line_wrap != TRUNCATE))
20380 if (pt_x > 0)
20381 move_it_by_lines (&it, 0);
20382 move_it_by_lines (&it, 1);
20383 target_x = 0;
20387 /* Move to the target X coordinate. */
20388 #ifdef HAVE_WINDOW_SYSTEM
20389 /* On GUI frames, as we don't know the X coordinate of the
20390 character to the left of point, moving point to the left
20391 requires walking, one grapheme cluster at a time, until we
20392 find ourself at a place immediately to the left of the
20393 character at point. */
20394 if (FRAME_WINDOW_P (it.f) && dir < 0)
20396 struct text_pos new_pos = it.current.pos;
20397 enum move_it_result rc = MOVE_X_REACHED;
20399 while (it.current_x + it.pixel_width <= target_x
20400 && rc == MOVE_X_REACHED)
20402 int new_x = it.current_x + it.pixel_width;
20404 new_pos = it.current.pos;
20405 if (new_x == it.current_x)
20406 new_x++;
20407 rc = move_it_in_display_line_to (&it, ZV, new_x,
20408 MOVE_TO_POS | MOVE_TO_X);
20409 if (ITERATOR_AT_END_OF_LINE_P (&it) && !target_is_eol_p)
20410 break;
20412 /* If we ended up on a composed character inside
20413 bidi-reordered text (e.g., Hebrew text with diacritics),
20414 the iterator gives us the buffer position of the last (in
20415 logical order) character of the composed grapheme cluster,
20416 which is not what we want. So we cheat: we compute the
20417 character position of the character that follows (in the
20418 logical order) the one where the above loop stopped. That
20419 character will appear on display to the left of point. */
20420 if (it.bidi_p
20421 && it.bidi_it.scan_dir == -1
20422 && new_pos.charpos - IT_CHARPOS (it) > 1)
20424 new_pos.charpos = IT_CHARPOS (it) + 1;
20425 new_pos.bytepos = CHAR_TO_BYTE (new_pos.charpos);
20427 it.current.pos = new_pos;
20429 else
20430 #endif
20431 if (it.current_x != target_x)
20432 move_it_in_display_line_to (&it, ZV, target_x, MOVE_TO_POS | MOVE_TO_X);
20434 /* When lines are truncated, the above loop will stop at the
20435 window edge. But we want to get to the end of line, even if
20436 it is beyond the window edge; automatic hscroll will then
20437 scroll the window to show point as appropriate. */
20438 if (target_is_eol_p && it.line_wrap == TRUNCATE
20439 && get_next_display_element (&it))
20441 struct text_pos new_pos = it.current.pos;
20443 while (!ITERATOR_AT_END_OF_LINE_P (&it))
20445 set_iterator_to_next (&it, 0);
20446 if (it.method == GET_FROM_BUFFER)
20447 new_pos = it.current.pos;
20448 if (!get_next_display_element (&it))
20449 break;
20452 it.current.pos = new_pos;
20455 /* If we ended up in a display string that covers point, move to
20456 buffer position to the right in the visual order. */
20457 if (dir > 0)
20459 while (IT_CHARPOS (it) == PT)
20461 set_iterator_to_next (&it, 0);
20462 if (!get_next_display_element (&it))
20463 break;
20467 /* Move point to that position. */
20468 SET_PT_BOTH (IT_CHARPOS (it), IT_BYTEPOS (it));
20471 return make_number (PT);
20473 #undef ROW_GLYPH_NEWLINE_P
20477 /***********************************************************************
20478 Menu Bar
20479 ***********************************************************************/
20481 /* Redisplay the menu bar in the frame for window W.
20483 The menu bar of X frames that don't have X toolkit support is
20484 displayed in a special window W->frame->menu_bar_window.
20486 The menu bar of terminal frames is treated specially as far as
20487 glyph matrices are concerned. Menu bar lines are not part of
20488 windows, so the update is done directly on the frame matrix rows
20489 for the menu bar. */
20491 static void
20492 display_menu_bar (struct window *w)
20494 struct frame *f = XFRAME (WINDOW_FRAME (w));
20495 struct it it;
20496 Lisp_Object items;
20497 int i;
20499 /* Don't do all this for graphical frames. */
20500 #ifdef HAVE_NTGUI
20501 if (FRAME_W32_P (f))
20502 return;
20503 #endif
20504 #if defined (USE_X_TOOLKIT) || defined (USE_GTK)
20505 if (FRAME_X_P (f))
20506 return;
20507 #endif
20509 #ifdef HAVE_NS
20510 if (FRAME_NS_P (f))
20511 return;
20512 #endif /* HAVE_NS */
20514 #if defined (USE_X_TOOLKIT) || defined (USE_GTK)
20515 eassert (!FRAME_WINDOW_P (f));
20516 init_iterator (&it, w, -1, -1, f->desired_matrix->rows, MENU_FACE_ID);
20517 it.first_visible_x = 0;
20518 it.last_visible_x = FRAME_TOTAL_COLS (f) * FRAME_COLUMN_WIDTH (f);
20519 #elif defined (HAVE_X_WINDOWS) /* X without toolkit. */
20520 if (FRAME_WINDOW_P (f))
20522 /* Menu bar lines are displayed in the desired matrix of the
20523 dummy window menu_bar_window. */
20524 struct window *menu_w;
20525 menu_w = XWINDOW (f->menu_bar_window);
20526 init_iterator (&it, menu_w, -1, -1, menu_w->desired_matrix->rows,
20527 MENU_FACE_ID);
20528 it.first_visible_x = 0;
20529 it.last_visible_x = FRAME_TOTAL_COLS (f) * FRAME_COLUMN_WIDTH (f);
20531 else
20532 #endif /* not USE_X_TOOLKIT and not USE_GTK */
20534 /* This is a TTY frame, i.e. character hpos/vpos are used as
20535 pixel x/y. */
20536 init_iterator (&it, w, -1, -1, f->desired_matrix->rows,
20537 MENU_FACE_ID);
20538 it.first_visible_x = 0;
20539 it.last_visible_x = FRAME_COLS (f);
20542 /* FIXME: This should be controlled by a user option. See the
20543 comments in redisplay_tool_bar and display_mode_line about
20544 this. */
20545 it.paragraph_embedding = L2R;
20547 /* Clear all rows of the menu bar. */
20548 for (i = 0; i < FRAME_MENU_BAR_LINES (f); ++i)
20550 struct glyph_row *row = it.glyph_row + i;
20551 clear_glyph_row (row);
20552 row->enabled_p = 1;
20553 row->full_width_p = 1;
20556 /* Display all items of the menu bar. */
20557 items = FRAME_MENU_BAR_ITEMS (it.f);
20558 for (i = 0; i < ASIZE (items); i += 4)
20560 Lisp_Object string;
20562 /* Stop at nil string. */
20563 string = AREF (items, i + 1);
20564 if (NILP (string))
20565 break;
20567 /* Remember where item was displayed. */
20568 ASET (items, i + 3, make_number (it.hpos));
20570 /* Display the item, pad with one space. */
20571 if (it.current_x < it.last_visible_x)
20572 display_string (NULL, string, Qnil, 0, 0, &it,
20573 SCHARS (string) + 1, 0, 0, -1);
20576 /* Fill out the line with spaces. */
20577 if (it.current_x < it.last_visible_x)
20578 display_string ("", Qnil, Qnil, 0, 0, &it, -1, 0, 0, -1);
20580 /* Compute the total height of the lines. */
20581 compute_line_metrics (&it);
20586 /***********************************************************************
20587 Mode Line
20588 ***********************************************************************/
20590 /* Redisplay mode lines in the window tree whose root is WINDOW. If
20591 FORCE is non-zero, redisplay mode lines unconditionally.
20592 Otherwise, redisplay only mode lines that are garbaged. Value is
20593 the number of windows whose mode lines were redisplayed. */
20595 static int
20596 redisplay_mode_lines (Lisp_Object window, int force)
20598 int nwindows = 0;
20600 while (!NILP (window))
20602 struct window *w = XWINDOW (window);
20604 if (WINDOWP (w->contents))
20605 nwindows += redisplay_mode_lines (w->contents, force);
20606 else if (force
20607 || FRAME_GARBAGED_P (XFRAME (w->frame))
20608 || !MATRIX_MODE_LINE_ROW (w->current_matrix)->enabled_p)
20610 struct text_pos lpoint;
20611 struct buffer *old = current_buffer;
20613 /* Set the window's buffer for the mode line display. */
20614 SET_TEXT_POS (lpoint, PT, PT_BYTE);
20615 set_buffer_internal_1 (XBUFFER (w->contents));
20617 /* Point refers normally to the selected window. For any
20618 other window, set up appropriate value. */
20619 if (!EQ (window, selected_window))
20621 struct text_pos pt;
20623 SET_TEXT_POS_FROM_MARKER (pt, w->pointm);
20624 if (CHARPOS (pt) < BEGV)
20625 TEMP_SET_PT_BOTH (BEGV, BEGV_BYTE);
20626 else if (CHARPOS (pt) > (ZV - 1))
20627 TEMP_SET_PT_BOTH (ZV, ZV_BYTE);
20628 else
20629 TEMP_SET_PT_BOTH (CHARPOS (pt), BYTEPOS (pt));
20632 /* Display mode lines. */
20633 clear_glyph_matrix (w->desired_matrix);
20634 if (display_mode_lines (w))
20636 ++nwindows;
20637 w->must_be_updated_p = 1;
20640 /* Restore old settings. */
20641 set_buffer_internal_1 (old);
20642 TEMP_SET_PT_BOTH (CHARPOS (lpoint), BYTEPOS (lpoint));
20645 window = w->next;
20648 return nwindows;
20652 /* Display the mode and/or header line of window W. Value is the
20653 sum number of mode lines and header lines displayed. */
20655 static int
20656 display_mode_lines (struct window *w)
20658 Lisp_Object old_selected_window = selected_window;
20659 Lisp_Object old_selected_frame = selected_frame;
20660 Lisp_Object new_frame = w->frame;
20661 Lisp_Object old_frame_selected_window = XFRAME (new_frame)->selected_window;
20662 int n = 0;
20664 selected_frame = new_frame;
20665 /* FIXME: If we were to allow the mode-line's computation changing the buffer
20666 or window's point, then we'd need select_window_1 here as well. */
20667 XSETWINDOW (selected_window, w);
20668 XFRAME (new_frame)->selected_window = selected_window;
20670 /* These will be set while the mode line specs are processed. */
20671 line_number_displayed = 0;
20672 w->column_number_displayed = -1;
20674 if (WINDOW_WANTS_MODELINE_P (w))
20676 struct window *sel_w = XWINDOW (old_selected_window);
20678 /* Select mode line face based on the real selected window. */
20679 display_mode_line (w, CURRENT_MODE_LINE_FACE_ID_3 (sel_w, sel_w, w),
20680 BVAR (current_buffer, mode_line_format));
20681 ++n;
20684 if (WINDOW_WANTS_HEADER_LINE_P (w))
20686 display_mode_line (w, HEADER_LINE_FACE_ID,
20687 BVAR (current_buffer, header_line_format));
20688 ++n;
20691 XFRAME (new_frame)->selected_window = old_frame_selected_window;
20692 selected_frame = old_selected_frame;
20693 selected_window = old_selected_window;
20694 return n;
20698 /* Display mode or header line of window W. FACE_ID specifies which
20699 line to display; it is either MODE_LINE_FACE_ID or
20700 HEADER_LINE_FACE_ID. FORMAT is the mode/header line format to
20701 display. Value is the pixel height of the mode/header line
20702 displayed. */
20704 static int
20705 display_mode_line (struct window *w, enum face_id face_id, Lisp_Object format)
20707 struct it it;
20708 struct face *face;
20709 ptrdiff_t count = SPECPDL_INDEX ();
20711 init_iterator (&it, w, -1, -1, NULL, face_id);
20712 /* Don't extend on a previously drawn mode-line.
20713 This may happen if called from pos_visible_p. */
20714 it.glyph_row->enabled_p = 0;
20715 prepare_desired_row (it.glyph_row);
20717 it.glyph_row->mode_line_p = 1;
20719 /* FIXME: This should be controlled by a user option. But
20720 supporting such an option is not trivial, since the mode line is
20721 made up of many separate strings. */
20722 it.paragraph_embedding = L2R;
20724 record_unwind_protect (unwind_format_mode_line,
20725 format_mode_line_unwind_data (NULL, NULL, Qnil, 0));
20727 mode_line_target = MODE_LINE_DISPLAY;
20729 /* Temporarily make frame's keyboard the current kboard so that
20730 kboard-local variables in the mode_line_format will get the right
20731 values. */
20732 push_kboard (FRAME_KBOARD (it.f));
20733 record_unwind_save_match_data ();
20734 display_mode_element (&it, 0, 0, 0, format, Qnil, 0);
20735 pop_kboard ();
20737 unbind_to (count, Qnil);
20739 /* Fill up with spaces. */
20740 display_string (" ", Qnil, Qnil, 0, 0, &it, 10000, -1, -1, 0);
20742 compute_line_metrics (&it);
20743 it.glyph_row->full_width_p = 1;
20744 it.glyph_row->continued_p = 0;
20745 it.glyph_row->truncated_on_left_p = 0;
20746 it.glyph_row->truncated_on_right_p = 0;
20748 /* Make a 3D mode-line have a shadow at its right end. */
20749 face = FACE_FROM_ID (it.f, face_id);
20750 extend_face_to_end_of_line (&it);
20751 if (face->box != FACE_NO_BOX)
20753 struct glyph *last = (it.glyph_row->glyphs[TEXT_AREA]
20754 + it.glyph_row->used[TEXT_AREA] - 1);
20755 last->right_box_line_p = 1;
20758 return it.glyph_row->height;
20761 /* Move element ELT in LIST to the front of LIST.
20762 Return the updated list. */
20764 static Lisp_Object
20765 move_elt_to_front (Lisp_Object elt, Lisp_Object list)
20767 register Lisp_Object tail, prev;
20768 register Lisp_Object tem;
20770 tail = list;
20771 prev = Qnil;
20772 while (CONSP (tail))
20774 tem = XCAR (tail);
20776 if (EQ (elt, tem))
20778 /* Splice out the link TAIL. */
20779 if (NILP (prev))
20780 list = XCDR (tail);
20781 else
20782 Fsetcdr (prev, XCDR (tail));
20784 /* Now make it the first. */
20785 Fsetcdr (tail, list);
20786 return tail;
20788 else
20789 prev = tail;
20790 tail = XCDR (tail);
20791 QUIT;
20794 /* Not found--return unchanged LIST. */
20795 return list;
20798 /* Contribute ELT to the mode line for window IT->w. How it
20799 translates into text depends on its data type.
20801 IT describes the display environment in which we display, as usual.
20803 DEPTH is the depth in recursion. It is used to prevent
20804 infinite recursion here.
20806 FIELD_WIDTH is the number of characters the display of ELT should
20807 occupy in the mode line, and PRECISION is the maximum number of
20808 characters to display from ELT's representation. See
20809 display_string for details.
20811 Returns the hpos of the end of the text generated by ELT.
20813 PROPS is a property list to add to any string we encounter.
20815 If RISKY is nonzero, remove (disregard) any properties in any string
20816 we encounter, and ignore :eval and :propertize.
20818 The global variable `mode_line_target' determines whether the
20819 output is passed to `store_mode_line_noprop',
20820 `store_mode_line_string', or `display_string'. */
20822 static int
20823 display_mode_element (struct it *it, int depth, int field_width, int precision,
20824 Lisp_Object elt, Lisp_Object props, int risky)
20826 int n = 0, field, prec;
20827 int literal = 0;
20829 tail_recurse:
20830 if (depth > 100)
20831 elt = build_string ("*too-deep*");
20833 depth++;
20835 switch (XTYPE (elt))
20837 case Lisp_String:
20839 /* A string: output it and check for %-constructs within it. */
20840 unsigned char c;
20841 ptrdiff_t offset = 0;
20843 if (SCHARS (elt) > 0
20844 && (!NILP (props) || risky))
20846 Lisp_Object oprops, aelt;
20847 oprops = Ftext_properties_at (make_number (0), elt);
20849 /* If the starting string's properties are not what
20850 we want, translate the string. Also, if the string
20851 is risky, do that anyway. */
20853 if (NILP (Fequal (props, oprops)) || risky)
20855 /* If the starting string has properties,
20856 merge the specified ones onto the existing ones. */
20857 if (! NILP (oprops) && !risky)
20859 Lisp_Object tem;
20861 oprops = Fcopy_sequence (oprops);
20862 tem = props;
20863 while (CONSP (tem))
20865 oprops = Fplist_put (oprops, XCAR (tem),
20866 XCAR (XCDR (tem)));
20867 tem = XCDR (XCDR (tem));
20869 props = oprops;
20872 aelt = Fassoc (elt, mode_line_proptrans_alist);
20873 if (! NILP (aelt) && !NILP (Fequal (props, XCDR (aelt))))
20875 /* AELT is what we want. Move it to the front
20876 without consing. */
20877 elt = XCAR (aelt);
20878 mode_line_proptrans_alist
20879 = move_elt_to_front (aelt, mode_line_proptrans_alist);
20881 else
20883 Lisp_Object tem;
20885 /* If AELT has the wrong props, it is useless.
20886 so get rid of it. */
20887 if (! NILP (aelt))
20888 mode_line_proptrans_alist
20889 = Fdelq (aelt, mode_line_proptrans_alist);
20891 elt = Fcopy_sequence (elt);
20892 Fset_text_properties (make_number (0), Flength (elt),
20893 props, elt);
20894 /* Add this item to mode_line_proptrans_alist. */
20895 mode_line_proptrans_alist
20896 = Fcons (Fcons (elt, props),
20897 mode_line_proptrans_alist);
20898 /* Truncate mode_line_proptrans_alist
20899 to at most 50 elements. */
20900 tem = Fnthcdr (make_number (50),
20901 mode_line_proptrans_alist);
20902 if (! NILP (tem))
20903 XSETCDR (tem, Qnil);
20908 offset = 0;
20910 if (literal)
20912 prec = precision - n;
20913 switch (mode_line_target)
20915 case MODE_LINE_NOPROP:
20916 case MODE_LINE_TITLE:
20917 n += store_mode_line_noprop (SSDATA (elt), -1, prec);
20918 break;
20919 case MODE_LINE_STRING:
20920 n += store_mode_line_string (NULL, elt, 1, 0, prec, Qnil);
20921 break;
20922 case MODE_LINE_DISPLAY:
20923 n += display_string (NULL, elt, Qnil, 0, 0, it,
20924 0, prec, 0, STRING_MULTIBYTE (elt));
20925 break;
20928 break;
20931 /* Handle the non-literal case. */
20933 while ((precision <= 0 || n < precision)
20934 && SREF (elt, offset) != 0
20935 && (mode_line_target != MODE_LINE_DISPLAY
20936 || it->current_x < it->last_visible_x))
20938 ptrdiff_t last_offset = offset;
20940 /* Advance to end of string or next format specifier. */
20941 while ((c = SREF (elt, offset++)) != '\0' && c != '%')
20944 if (offset - 1 != last_offset)
20946 ptrdiff_t nchars, nbytes;
20948 /* Output to end of string or up to '%'. Field width
20949 is length of string. Don't output more than
20950 PRECISION allows us. */
20951 offset--;
20953 prec = c_string_width (SDATA (elt) + last_offset,
20954 offset - last_offset, precision - n,
20955 &nchars, &nbytes);
20957 switch (mode_line_target)
20959 case MODE_LINE_NOPROP:
20960 case MODE_LINE_TITLE:
20961 n += store_mode_line_noprop (SSDATA (elt) + last_offset, 0, prec);
20962 break;
20963 case MODE_LINE_STRING:
20965 ptrdiff_t bytepos = last_offset;
20966 ptrdiff_t charpos = string_byte_to_char (elt, bytepos);
20967 ptrdiff_t endpos = (precision <= 0
20968 ? string_byte_to_char (elt, offset)
20969 : charpos + nchars);
20971 n += store_mode_line_string (NULL,
20972 Fsubstring (elt, make_number (charpos),
20973 make_number (endpos)),
20974 0, 0, 0, Qnil);
20976 break;
20977 case MODE_LINE_DISPLAY:
20979 ptrdiff_t bytepos = last_offset;
20980 ptrdiff_t charpos = string_byte_to_char (elt, bytepos);
20982 if (precision <= 0)
20983 nchars = string_byte_to_char (elt, offset) - charpos;
20984 n += display_string (NULL, elt, Qnil, 0, charpos,
20985 it, 0, nchars, 0,
20986 STRING_MULTIBYTE (elt));
20988 break;
20991 else /* c == '%' */
20993 ptrdiff_t percent_position = offset;
20995 /* Get the specified minimum width. Zero means
20996 don't pad. */
20997 field = 0;
20998 while ((c = SREF (elt, offset++)) >= '0' && c <= '9')
20999 field = field * 10 + c - '0';
21001 /* Don't pad beyond the total padding allowed. */
21002 if (field_width - n > 0 && field > field_width - n)
21003 field = field_width - n;
21005 /* Note that either PRECISION <= 0 or N < PRECISION. */
21006 prec = precision - n;
21008 if (c == 'M')
21009 n += display_mode_element (it, depth, field, prec,
21010 Vglobal_mode_string, props,
21011 risky);
21012 else if (c != 0)
21014 bool multibyte;
21015 ptrdiff_t bytepos, charpos;
21016 const char *spec;
21017 Lisp_Object string;
21019 bytepos = percent_position;
21020 charpos = (STRING_MULTIBYTE (elt)
21021 ? string_byte_to_char (elt, bytepos)
21022 : bytepos);
21023 spec = decode_mode_spec (it->w, c, field, &string);
21024 multibyte = STRINGP (string) && STRING_MULTIBYTE (string);
21026 switch (mode_line_target)
21028 case MODE_LINE_NOPROP:
21029 case MODE_LINE_TITLE:
21030 n += store_mode_line_noprop (spec, field, prec);
21031 break;
21032 case MODE_LINE_STRING:
21034 Lisp_Object tem = build_string (spec);
21035 props = Ftext_properties_at (make_number (charpos), elt);
21036 /* Should only keep face property in props */
21037 n += store_mode_line_string (NULL, tem, 0, field, prec, props);
21039 break;
21040 case MODE_LINE_DISPLAY:
21042 int nglyphs_before, nwritten;
21044 nglyphs_before = it->glyph_row->used[TEXT_AREA];
21045 nwritten = display_string (spec, string, elt,
21046 charpos, 0, it,
21047 field, prec, 0,
21048 multibyte);
21050 /* Assign to the glyphs written above the
21051 string where the `%x' came from, position
21052 of the `%'. */
21053 if (nwritten > 0)
21055 struct glyph *glyph
21056 = (it->glyph_row->glyphs[TEXT_AREA]
21057 + nglyphs_before);
21058 int i;
21060 for (i = 0; i < nwritten; ++i)
21062 glyph[i].object = elt;
21063 glyph[i].charpos = charpos;
21066 n += nwritten;
21069 break;
21072 else /* c == 0 */
21073 break;
21077 break;
21079 case Lisp_Symbol:
21080 /* A symbol: process the value of the symbol recursively
21081 as if it appeared here directly. Avoid error if symbol void.
21082 Special case: if value of symbol is a string, output the string
21083 literally. */
21085 register Lisp_Object tem;
21087 /* If the variable is not marked as risky to set
21088 then its contents are risky to use. */
21089 if (NILP (Fget (elt, Qrisky_local_variable)))
21090 risky = 1;
21092 tem = Fboundp (elt);
21093 if (!NILP (tem))
21095 tem = Fsymbol_value (elt);
21096 /* If value is a string, output that string literally:
21097 don't check for % within it. */
21098 if (STRINGP (tem))
21099 literal = 1;
21101 if (!EQ (tem, elt))
21103 /* Give up right away for nil or t. */
21104 elt = tem;
21105 goto tail_recurse;
21109 break;
21111 case Lisp_Cons:
21113 register Lisp_Object car, tem;
21115 /* A cons cell: five distinct cases.
21116 If first element is :eval or :propertize, do something special.
21117 If first element is a string or a cons, process all the elements
21118 and effectively concatenate them.
21119 If first element is a negative number, truncate displaying cdr to
21120 at most that many characters. If positive, pad (with spaces)
21121 to at least that many characters.
21122 If first element is a symbol, process the cadr or caddr recursively
21123 according to whether the symbol's value is non-nil or nil. */
21124 car = XCAR (elt);
21125 if (EQ (car, QCeval))
21127 /* An element of the form (:eval FORM) means evaluate FORM
21128 and use the result as mode line elements. */
21130 if (risky)
21131 break;
21133 if (CONSP (XCDR (elt)))
21135 Lisp_Object spec;
21136 spec = safe_eval (XCAR (XCDR (elt)));
21137 n += display_mode_element (it, depth, field_width - n,
21138 precision - n, spec, props,
21139 risky);
21142 else if (EQ (car, QCpropertize))
21144 /* An element of the form (:propertize ELT PROPS...)
21145 means display ELT but applying properties PROPS. */
21147 if (risky)
21148 break;
21150 if (CONSP (XCDR (elt)))
21151 n += display_mode_element (it, depth, field_width - n,
21152 precision - n, XCAR (XCDR (elt)),
21153 XCDR (XCDR (elt)), risky);
21155 else if (SYMBOLP (car))
21157 tem = Fboundp (car);
21158 elt = XCDR (elt);
21159 if (!CONSP (elt))
21160 goto invalid;
21161 /* elt is now the cdr, and we know it is a cons cell.
21162 Use its car if CAR has a non-nil value. */
21163 if (!NILP (tem))
21165 tem = Fsymbol_value (car);
21166 if (!NILP (tem))
21168 elt = XCAR (elt);
21169 goto tail_recurse;
21172 /* Symbol's value is nil (or symbol is unbound)
21173 Get the cddr of the original list
21174 and if possible find the caddr and use that. */
21175 elt = XCDR (elt);
21176 if (NILP (elt))
21177 break;
21178 else if (!CONSP (elt))
21179 goto invalid;
21180 elt = XCAR (elt);
21181 goto tail_recurse;
21183 else if (INTEGERP (car))
21185 register int lim = XINT (car);
21186 elt = XCDR (elt);
21187 if (lim < 0)
21189 /* Negative int means reduce maximum width. */
21190 if (precision <= 0)
21191 precision = -lim;
21192 else
21193 precision = min (precision, -lim);
21195 else if (lim > 0)
21197 /* Padding specified. Don't let it be more than
21198 current maximum. */
21199 if (precision > 0)
21200 lim = min (precision, lim);
21202 /* If that's more padding than already wanted, queue it.
21203 But don't reduce padding already specified even if
21204 that is beyond the current truncation point. */
21205 field_width = max (lim, field_width);
21207 goto tail_recurse;
21209 else if (STRINGP (car) || CONSP (car))
21211 Lisp_Object halftail = elt;
21212 int len = 0;
21214 while (CONSP (elt)
21215 && (precision <= 0 || n < precision))
21217 n += display_mode_element (it, depth,
21218 /* Do padding only after the last
21219 element in the list. */
21220 (! CONSP (XCDR (elt))
21221 ? field_width - n
21222 : 0),
21223 precision - n, XCAR (elt),
21224 props, risky);
21225 elt = XCDR (elt);
21226 len++;
21227 if ((len & 1) == 0)
21228 halftail = XCDR (halftail);
21229 /* Check for cycle. */
21230 if (EQ (halftail, elt))
21231 break;
21235 break;
21237 default:
21238 invalid:
21239 elt = build_string ("*invalid*");
21240 goto tail_recurse;
21243 /* Pad to FIELD_WIDTH. */
21244 if (field_width > 0 && n < field_width)
21246 switch (mode_line_target)
21248 case MODE_LINE_NOPROP:
21249 case MODE_LINE_TITLE:
21250 n += store_mode_line_noprop ("", field_width - n, 0);
21251 break;
21252 case MODE_LINE_STRING:
21253 n += store_mode_line_string ("", Qnil, 0, field_width - n, 0, Qnil);
21254 break;
21255 case MODE_LINE_DISPLAY:
21256 n += display_string ("", Qnil, Qnil, 0, 0, it, field_width - n,
21257 0, 0, 0);
21258 break;
21262 return n;
21265 /* Store a mode-line string element in mode_line_string_list.
21267 If STRING is non-null, display that C string. Otherwise, the Lisp
21268 string LISP_STRING is displayed.
21270 FIELD_WIDTH is the minimum number of output glyphs to produce.
21271 If STRING has fewer characters than FIELD_WIDTH, pad to the right
21272 with spaces. FIELD_WIDTH <= 0 means don't pad.
21274 PRECISION is the maximum number of characters to output from
21275 STRING. PRECISION <= 0 means don't truncate the string.
21277 If COPY_STRING is non-zero, make a copy of LISP_STRING before adding
21278 properties to the string.
21280 PROPS are the properties to add to the string.
21281 The mode_line_string_face face property is always added to the string.
21284 static int
21285 store_mode_line_string (const char *string, Lisp_Object lisp_string, int copy_string,
21286 int field_width, int precision, Lisp_Object props)
21288 ptrdiff_t len;
21289 int n = 0;
21291 if (string != NULL)
21293 len = strlen (string);
21294 if (precision > 0 && len > precision)
21295 len = precision;
21296 lisp_string = make_string (string, len);
21297 if (NILP (props))
21298 props = mode_line_string_face_prop;
21299 else if (!NILP (mode_line_string_face))
21301 Lisp_Object face = Fplist_get (props, Qface);
21302 props = Fcopy_sequence (props);
21303 if (NILP (face))
21304 face = mode_line_string_face;
21305 else
21306 face = list2 (face, mode_line_string_face);
21307 props = Fplist_put (props, Qface, face);
21309 Fadd_text_properties (make_number (0), make_number (len),
21310 props, lisp_string);
21312 else
21314 len = XFASTINT (Flength (lisp_string));
21315 if (precision > 0 && len > precision)
21317 len = precision;
21318 lisp_string = Fsubstring (lisp_string, make_number (0), make_number (len));
21319 precision = -1;
21321 if (!NILP (mode_line_string_face))
21323 Lisp_Object face;
21324 if (NILP (props))
21325 props = Ftext_properties_at (make_number (0), lisp_string);
21326 face = Fplist_get (props, Qface);
21327 if (NILP (face))
21328 face = mode_line_string_face;
21329 else
21330 face = list2 (face, mode_line_string_face);
21331 props = list2 (Qface, face);
21332 if (copy_string)
21333 lisp_string = Fcopy_sequence (lisp_string);
21335 if (!NILP (props))
21336 Fadd_text_properties (make_number (0), make_number (len),
21337 props, lisp_string);
21340 if (len > 0)
21342 mode_line_string_list = Fcons (lisp_string, mode_line_string_list);
21343 n += len;
21346 if (field_width > len)
21348 field_width -= len;
21349 lisp_string = Fmake_string (make_number (field_width), make_number (' '));
21350 if (!NILP (props))
21351 Fadd_text_properties (make_number (0), make_number (field_width),
21352 props, lisp_string);
21353 mode_line_string_list = Fcons (lisp_string, mode_line_string_list);
21354 n += field_width;
21357 return n;
21361 DEFUN ("format-mode-line", Fformat_mode_line, Sformat_mode_line,
21362 1, 4, 0,
21363 doc: /* Format a string out of a mode line format specification.
21364 First arg FORMAT specifies the mode line format (see `mode-line-format'
21365 for details) to use.
21367 By default, the format is evaluated for the currently selected window.
21369 Optional second arg FACE specifies the face property to put on all
21370 characters for which no face is specified. The value nil means the
21371 default face. The value t means whatever face the window's mode line
21372 currently uses (either `mode-line' or `mode-line-inactive',
21373 depending on whether the window is the selected window or not).
21374 An integer value means the value string has no text
21375 properties.
21377 Optional third and fourth args WINDOW and BUFFER specify the window
21378 and buffer to use as the context for the formatting (defaults
21379 are the selected window and the WINDOW's buffer). */)
21380 (Lisp_Object format, Lisp_Object face,
21381 Lisp_Object window, Lisp_Object buffer)
21383 struct it it;
21384 int len;
21385 struct window *w;
21386 struct buffer *old_buffer = NULL;
21387 int face_id;
21388 int no_props = INTEGERP (face);
21389 ptrdiff_t count = SPECPDL_INDEX ();
21390 Lisp_Object str;
21391 int string_start = 0;
21393 w = decode_any_window (window);
21394 XSETWINDOW (window, w);
21396 if (NILP (buffer))
21397 buffer = w->contents;
21398 CHECK_BUFFER (buffer);
21400 /* Make formatting the modeline a non-op when noninteractive, otherwise
21401 there will be problems later caused by a partially initialized frame. */
21402 if (NILP (format) || noninteractive)
21403 return empty_unibyte_string;
21405 if (no_props)
21406 face = Qnil;
21408 face_id = (NILP (face) || EQ (face, Qdefault)) ? DEFAULT_FACE_ID
21409 : EQ (face, Qt) ? (EQ (window, selected_window)
21410 ? MODE_LINE_FACE_ID : MODE_LINE_INACTIVE_FACE_ID)
21411 : EQ (face, Qmode_line) ? MODE_LINE_FACE_ID
21412 : EQ (face, Qmode_line_inactive) ? MODE_LINE_INACTIVE_FACE_ID
21413 : EQ (face, Qheader_line) ? HEADER_LINE_FACE_ID
21414 : EQ (face, Qtool_bar) ? TOOL_BAR_FACE_ID
21415 : DEFAULT_FACE_ID;
21417 old_buffer = current_buffer;
21419 /* Save things including mode_line_proptrans_alist,
21420 and set that to nil so that we don't alter the outer value. */
21421 record_unwind_protect (unwind_format_mode_line,
21422 format_mode_line_unwind_data
21423 (XFRAME (WINDOW_FRAME (w)),
21424 old_buffer, selected_window, 1));
21425 mode_line_proptrans_alist = Qnil;
21427 Fselect_window (window, Qt);
21428 set_buffer_internal_1 (XBUFFER (buffer));
21430 init_iterator (&it, w, -1, -1, NULL, face_id);
21432 if (no_props)
21434 mode_line_target = MODE_LINE_NOPROP;
21435 mode_line_string_face_prop = Qnil;
21436 mode_line_string_list = Qnil;
21437 string_start = MODE_LINE_NOPROP_LEN (0);
21439 else
21441 mode_line_target = MODE_LINE_STRING;
21442 mode_line_string_list = Qnil;
21443 mode_line_string_face = face;
21444 mode_line_string_face_prop
21445 = NILP (face) ? Qnil : list2 (Qface, face);
21448 push_kboard (FRAME_KBOARD (it.f));
21449 display_mode_element (&it, 0, 0, 0, format, Qnil, 0);
21450 pop_kboard ();
21452 if (no_props)
21454 len = MODE_LINE_NOPROP_LEN (string_start);
21455 str = make_string (mode_line_noprop_buf + string_start, len);
21457 else
21459 mode_line_string_list = Fnreverse (mode_line_string_list);
21460 str = Fmapconcat (intern ("identity"), mode_line_string_list,
21461 empty_unibyte_string);
21464 unbind_to (count, Qnil);
21465 return str;
21468 /* Write a null-terminated, right justified decimal representation of
21469 the positive integer D to BUF using a minimal field width WIDTH. */
21471 static void
21472 pint2str (register char *buf, register int width, register ptrdiff_t d)
21474 register char *p = buf;
21476 if (d <= 0)
21477 *p++ = '0';
21478 else
21480 while (d > 0)
21482 *p++ = d % 10 + '0';
21483 d /= 10;
21487 for (width -= (int) (p - buf); width > 0; --width)
21488 *p++ = ' ';
21489 *p-- = '\0';
21490 while (p > buf)
21492 d = *buf;
21493 *buf++ = *p;
21494 *p-- = d;
21498 /* Write a null-terminated, right justified decimal and "human
21499 readable" representation of the nonnegative integer D to BUF using
21500 a minimal field width WIDTH. D should be smaller than 999.5e24. */
21502 static const char power_letter[] =
21504 0, /* no letter */
21505 'k', /* kilo */
21506 'M', /* mega */
21507 'G', /* giga */
21508 'T', /* tera */
21509 'P', /* peta */
21510 'E', /* exa */
21511 'Z', /* zetta */
21512 'Y' /* yotta */
21515 static void
21516 pint2hrstr (char *buf, int width, ptrdiff_t d)
21518 /* We aim to represent the nonnegative integer D as
21519 QUOTIENT.TENTHS * 10 ^ (3 * EXPONENT). */
21520 ptrdiff_t quotient = d;
21521 int remainder = 0;
21522 /* -1 means: do not use TENTHS. */
21523 int tenths = -1;
21524 int exponent = 0;
21526 /* Length of QUOTIENT.TENTHS as a string. */
21527 int length;
21529 char * psuffix;
21530 char * p;
21532 if (quotient >= 1000)
21534 /* Scale to the appropriate EXPONENT. */
21537 remainder = quotient % 1000;
21538 quotient /= 1000;
21539 exponent++;
21541 while (quotient >= 1000);
21543 /* Round to nearest and decide whether to use TENTHS or not. */
21544 if (quotient <= 9)
21546 tenths = remainder / 100;
21547 if (remainder % 100 >= 50)
21549 if (tenths < 9)
21550 tenths++;
21551 else
21553 quotient++;
21554 if (quotient == 10)
21555 tenths = -1;
21556 else
21557 tenths = 0;
21561 else
21562 if (remainder >= 500)
21564 if (quotient < 999)
21565 quotient++;
21566 else
21568 quotient = 1;
21569 exponent++;
21570 tenths = 0;
21575 /* Calculate the LENGTH of QUOTIENT.TENTHS as a string. */
21576 if (tenths == -1 && quotient <= 99)
21577 if (quotient <= 9)
21578 length = 1;
21579 else
21580 length = 2;
21581 else
21582 length = 3;
21583 p = psuffix = buf + max (width, length);
21585 /* Print EXPONENT. */
21586 *psuffix++ = power_letter[exponent];
21587 *psuffix = '\0';
21589 /* Print TENTHS. */
21590 if (tenths >= 0)
21592 *--p = '0' + tenths;
21593 *--p = '.';
21596 /* Print QUOTIENT. */
21599 int digit = quotient % 10;
21600 *--p = '0' + digit;
21602 while ((quotient /= 10) != 0);
21604 /* Print leading spaces. */
21605 while (buf < p)
21606 *--p = ' ';
21609 /* Set a mnemonic character for coding_system (Lisp symbol) in BUF.
21610 If EOL_FLAG is 1, set also a mnemonic character for end-of-line
21611 type of CODING_SYSTEM. Return updated pointer into BUF. */
21613 static unsigned char invalid_eol_type[] = "(*invalid*)";
21615 static char *
21616 decode_mode_spec_coding (Lisp_Object coding_system, register char *buf, int eol_flag)
21618 Lisp_Object val;
21619 bool multibyte = !NILP (BVAR (current_buffer, enable_multibyte_characters));
21620 const unsigned char *eol_str;
21621 int eol_str_len;
21622 /* The EOL conversion we are using. */
21623 Lisp_Object eoltype;
21625 val = CODING_SYSTEM_SPEC (coding_system);
21626 eoltype = Qnil;
21628 if (!VECTORP (val)) /* Not yet decided. */
21630 *buf++ = multibyte ? '-' : ' ';
21631 if (eol_flag)
21632 eoltype = eol_mnemonic_undecided;
21633 /* Don't mention EOL conversion if it isn't decided. */
21635 else
21637 Lisp_Object attrs;
21638 Lisp_Object eolvalue;
21640 attrs = AREF (val, 0);
21641 eolvalue = AREF (val, 2);
21643 *buf++ = multibyte
21644 ? XFASTINT (CODING_ATTR_MNEMONIC (attrs))
21645 : ' ';
21647 if (eol_flag)
21649 /* The EOL conversion that is normal on this system. */
21651 if (NILP (eolvalue)) /* Not yet decided. */
21652 eoltype = eol_mnemonic_undecided;
21653 else if (VECTORP (eolvalue)) /* Not yet decided. */
21654 eoltype = eol_mnemonic_undecided;
21655 else /* eolvalue is Qunix, Qdos, or Qmac. */
21656 eoltype = (EQ (eolvalue, Qunix)
21657 ? eol_mnemonic_unix
21658 : (EQ (eolvalue, Qdos) == 1
21659 ? eol_mnemonic_dos : eol_mnemonic_mac));
21663 if (eol_flag)
21665 /* Mention the EOL conversion if it is not the usual one. */
21666 if (STRINGP (eoltype))
21668 eol_str = SDATA (eoltype);
21669 eol_str_len = SBYTES (eoltype);
21671 else if (CHARACTERP (eoltype))
21673 unsigned char *tmp = alloca (MAX_MULTIBYTE_LENGTH);
21674 int c = XFASTINT (eoltype);
21675 eol_str_len = CHAR_STRING (c, tmp);
21676 eol_str = tmp;
21678 else
21680 eol_str = invalid_eol_type;
21681 eol_str_len = sizeof (invalid_eol_type) - 1;
21683 memcpy (buf, eol_str, eol_str_len);
21684 buf += eol_str_len;
21687 return buf;
21690 /* Return a string for the output of a mode line %-spec for window W,
21691 generated by character C. FIELD_WIDTH > 0 means pad the string
21692 returned with spaces to that value. Return a Lisp string in
21693 *STRING if the resulting string is taken from that Lisp string.
21695 Note we operate on the current buffer for most purposes. */
21697 static char lots_of_dashes[] = "--------------------------------------------------------------------------------------------------------------------------------------------";
21699 static const char *
21700 decode_mode_spec (struct window *w, register int c, int field_width,
21701 Lisp_Object *string)
21703 Lisp_Object obj;
21704 struct frame *f = XFRAME (WINDOW_FRAME (w));
21705 char *decode_mode_spec_buf = f->decode_mode_spec_buffer;
21706 /* We are going to use f->decode_mode_spec_buffer as the buffer to
21707 produce strings from numerical values, so limit preposterously
21708 large values of FIELD_WIDTH to avoid overrunning the buffer's
21709 end. The size of the buffer is enough for FRAME_MESSAGE_BUF_SIZE
21710 bytes plus the terminating null. */
21711 int width = min (field_width, FRAME_MESSAGE_BUF_SIZE (f));
21712 struct buffer *b = current_buffer;
21714 obj = Qnil;
21715 *string = Qnil;
21717 switch (c)
21719 case '*':
21720 if (!NILP (BVAR (b, read_only)))
21721 return "%";
21722 if (BUF_MODIFF (b) > BUF_SAVE_MODIFF (b))
21723 return "*";
21724 return "-";
21726 case '+':
21727 /* This differs from %* only for a modified read-only buffer. */
21728 if (BUF_MODIFF (b) > BUF_SAVE_MODIFF (b))
21729 return "*";
21730 if (!NILP (BVAR (b, read_only)))
21731 return "%";
21732 return "-";
21734 case '&':
21735 /* This differs from %* in ignoring read-only-ness. */
21736 if (BUF_MODIFF (b) > BUF_SAVE_MODIFF (b))
21737 return "*";
21738 return "-";
21740 case '%':
21741 return "%";
21743 case '[':
21745 int i;
21746 char *p;
21748 if (command_loop_level > 5)
21749 return "[[[... ";
21750 p = decode_mode_spec_buf;
21751 for (i = 0; i < command_loop_level; i++)
21752 *p++ = '[';
21753 *p = 0;
21754 return decode_mode_spec_buf;
21757 case ']':
21759 int i;
21760 char *p;
21762 if (command_loop_level > 5)
21763 return " ...]]]";
21764 p = decode_mode_spec_buf;
21765 for (i = 0; i < command_loop_level; i++)
21766 *p++ = ']';
21767 *p = 0;
21768 return decode_mode_spec_buf;
21771 case '-':
21773 register int i;
21775 /* Let lots_of_dashes be a string of infinite length. */
21776 if (mode_line_target == MODE_LINE_NOPROP
21777 || mode_line_target == MODE_LINE_STRING)
21778 return "--";
21779 if (field_width <= 0
21780 || field_width > sizeof (lots_of_dashes))
21782 for (i = 0; i < FRAME_MESSAGE_BUF_SIZE (f) - 1; ++i)
21783 decode_mode_spec_buf[i] = '-';
21784 decode_mode_spec_buf[i] = '\0';
21785 return decode_mode_spec_buf;
21787 else
21788 return lots_of_dashes;
21791 case 'b':
21792 obj = BVAR (b, name);
21793 break;
21795 case 'c':
21796 /* %c and %l are ignored in `frame-title-format'.
21797 (In redisplay_internal, the frame title is drawn _before_ the
21798 windows are updated, so the stuff which depends on actual
21799 window contents (such as %l) may fail to render properly, or
21800 even crash emacs.) */
21801 if (mode_line_target == MODE_LINE_TITLE)
21802 return "";
21803 else
21805 ptrdiff_t col = current_column ();
21806 w->column_number_displayed = col;
21807 pint2str (decode_mode_spec_buf, width, col);
21808 return decode_mode_spec_buf;
21811 case 'e':
21812 #ifndef SYSTEM_MALLOC
21814 if (NILP (Vmemory_full))
21815 return "";
21816 else
21817 return "!MEM FULL! ";
21819 #else
21820 return "";
21821 #endif
21823 case 'F':
21824 /* %F displays the frame name. */
21825 if (!NILP (f->title))
21826 return SSDATA (f->title);
21827 if (f->explicit_name || ! FRAME_WINDOW_P (f))
21828 return SSDATA (f->name);
21829 return "Emacs";
21831 case 'f':
21832 obj = BVAR (b, filename);
21833 break;
21835 case 'i':
21837 ptrdiff_t size = ZV - BEGV;
21838 pint2str (decode_mode_spec_buf, width, size);
21839 return decode_mode_spec_buf;
21842 case 'I':
21844 ptrdiff_t size = ZV - BEGV;
21845 pint2hrstr (decode_mode_spec_buf, width, size);
21846 return decode_mode_spec_buf;
21849 case 'l':
21851 ptrdiff_t startpos, startpos_byte, line, linepos, linepos_byte;
21852 ptrdiff_t topline, nlines, height;
21853 ptrdiff_t junk;
21855 /* %c and %l are ignored in `frame-title-format'. */
21856 if (mode_line_target == MODE_LINE_TITLE)
21857 return "";
21859 startpos = marker_position (w->start);
21860 startpos_byte = marker_byte_position (w->start);
21861 height = WINDOW_TOTAL_LINES (w);
21863 /* If we decided that this buffer isn't suitable for line numbers,
21864 don't forget that too fast. */
21865 if (w->base_line_pos == -1)
21866 goto no_value;
21868 /* If the buffer is very big, don't waste time. */
21869 if (INTEGERP (Vline_number_display_limit)
21870 && BUF_ZV (b) - BUF_BEGV (b) > XINT (Vline_number_display_limit))
21872 w->base_line_pos = 0;
21873 w->base_line_number = 0;
21874 goto no_value;
21877 if (w->base_line_number > 0
21878 && w->base_line_pos > 0
21879 && w->base_line_pos <= startpos)
21881 line = w->base_line_number;
21882 linepos = w->base_line_pos;
21883 linepos_byte = buf_charpos_to_bytepos (b, linepos);
21885 else
21887 line = 1;
21888 linepos = BUF_BEGV (b);
21889 linepos_byte = BUF_BEGV_BYTE (b);
21892 /* Count lines from base line to window start position. */
21893 nlines = display_count_lines (linepos_byte,
21894 startpos_byte,
21895 startpos, &junk);
21897 topline = nlines + line;
21899 /* Determine a new base line, if the old one is too close
21900 or too far away, or if we did not have one.
21901 "Too close" means it's plausible a scroll-down would
21902 go back past it. */
21903 if (startpos == BUF_BEGV (b))
21905 w->base_line_number = topline;
21906 w->base_line_pos = BUF_BEGV (b);
21908 else if (nlines < height + 25 || nlines > height * 3 + 50
21909 || linepos == BUF_BEGV (b))
21911 ptrdiff_t limit = BUF_BEGV (b);
21912 ptrdiff_t limit_byte = BUF_BEGV_BYTE (b);
21913 ptrdiff_t position;
21914 ptrdiff_t distance =
21915 (height * 2 + 30) * line_number_display_limit_width;
21917 if (startpos - distance > limit)
21919 limit = startpos - distance;
21920 limit_byte = CHAR_TO_BYTE (limit);
21923 nlines = display_count_lines (startpos_byte,
21924 limit_byte,
21925 - (height * 2 + 30),
21926 &position);
21927 /* If we couldn't find the lines we wanted within
21928 line_number_display_limit_width chars per line,
21929 give up on line numbers for this window. */
21930 if (position == limit_byte && limit == startpos - distance)
21932 w->base_line_pos = -1;
21933 w->base_line_number = 0;
21934 goto no_value;
21937 w->base_line_number = topline - nlines;
21938 w->base_line_pos = BYTE_TO_CHAR (position);
21941 /* Now count lines from the start pos to point. */
21942 nlines = display_count_lines (startpos_byte,
21943 PT_BYTE, PT, &junk);
21945 /* Record that we did display the line number. */
21946 line_number_displayed = 1;
21948 /* Make the string to show. */
21949 pint2str (decode_mode_spec_buf, width, topline + nlines);
21950 return decode_mode_spec_buf;
21951 no_value:
21953 char* p = decode_mode_spec_buf;
21954 int pad = width - 2;
21955 while (pad-- > 0)
21956 *p++ = ' ';
21957 *p++ = '?';
21958 *p++ = '?';
21959 *p = '\0';
21960 return decode_mode_spec_buf;
21963 break;
21965 case 'm':
21966 obj = BVAR (b, mode_name);
21967 break;
21969 case 'n':
21970 if (BUF_BEGV (b) > BUF_BEG (b) || BUF_ZV (b) < BUF_Z (b))
21971 return " Narrow";
21972 break;
21974 case 'p':
21976 ptrdiff_t pos = marker_position (w->start);
21977 ptrdiff_t total = BUF_ZV (b) - BUF_BEGV (b);
21979 if (w->window_end_pos <= BUF_Z (b) - BUF_ZV (b))
21981 if (pos <= BUF_BEGV (b))
21982 return "All";
21983 else
21984 return "Bottom";
21986 else if (pos <= BUF_BEGV (b))
21987 return "Top";
21988 else
21990 if (total > 1000000)
21991 /* Do it differently for a large value, to avoid overflow. */
21992 total = ((pos - BUF_BEGV (b)) + (total / 100) - 1) / (total / 100);
21993 else
21994 total = ((pos - BUF_BEGV (b)) * 100 + total - 1) / total;
21995 /* We can't normally display a 3-digit number,
21996 so get us a 2-digit number that is close. */
21997 if (total == 100)
21998 total = 99;
21999 sprintf (decode_mode_spec_buf, "%2"pD"d%%", total);
22000 return decode_mode_spec_buf;
22004 /* Display percentage of size above the bottom of the screen. */
22005 case 'P':
22007 ptrdiff_t toppos = marker_position (w->start);
22008 ptrdiff_t botpos = BUF_Z (b) - w->window_end_pos;
22009 ptrdiff_t total = BUF_ZV (b) - BUF_BEGV (b);
22011 if (botpos >= BUF_ZV (b))
22013 if (toppos <= BUF_BEGV (b))
22014 return "All";
22015 else
22016 return "Bottom";
22018 else
22020 if (total > 1000000)
22021 /* Do it differently for a large value, to avoid overflow. */
22022 total = ((botpos - BUF_BEGV (b)) + (total / 100) - 1) / (total / 100);
22023 else
22024 total = ((botpos - BUF_BEGV (b)) * 100 + total - 1) / total;
22025 /* We can't normally display a 3-digit number,
22026 so get us a 2-digit number that is close. */
22027 if (total == 100)
22028 total = 99;
22029 if (toppos <= BUF_BEGV (b))
22030 sprintf (decode_mode_spec_buf, "Top%2"pD"d%%", total);
22031 else
22032 sprintf (decode_mode_spec_buf, "%2"pD"d%%", total);
22033 return decode_mode_spec_buf;
22037 case 's':
22038 /* status of process */
22039 obj = Fget_buffer_process (Fcurrent_buffer ());
22040 if (NILP (obj))
22041 return "no process";
22042 #ifndef MSDOS
22043 obj = Fsymbol_name (Fprocess_status (obj));
22044 #endif
22045 break;
22047 case '@':
22049 ptrdiff_t count = inhibit_garbage_collection ();
22050 Lisp_Object val = call1 (intern ("file-remote-p"),
22051 BVAR (current_buffer, directory));
22052 unbind_to (count, Qnil);
22054 if (NILP (val))
22055 return "-";
22056 else
22057 return "@";
22060 case 'z':
22061 /* coding-system (not including end-of-line format) */
22062 case 'Z':
22063 /* coding-system (including end-of-line type) */
22065 int eol_flag = (c == 'Z');
22066 char *p = decode_mode_spec_buf;
22068 if (! FRAME_WINDOW_P (f))
22070 /* No need to mention EOL here--the terminal never needs
22071 to do EOL conversion. */
22072 p = decode_mode_spec_coding (CODING_ID_NAME
22073 (FRAME_KEYBOARD_CODING (f)->id),
22074 p, 0);
22075 p = decode_mode_spec_coding (CODING_ID_NAME
22076 (FRAME_TERMINAL_CODING (f)->id),
22077 p, 0);
22079 p = decode_mode_spec_coding (BVAR (b, buffer_file_coding_system),
22080 p, eol_flag);
22082 #if 0 /* This proves to be annoying; I think we can do without. -- rms. */
22083 #ifdef subprocesses
22084 obj = Fget_buffer_process (Fcurrent_buffer ());
22085 if (PROCESSP (obj))
22087 p = decode_mode_spec_coding
22088 (XPROCESS (obj)->decode_coding_system, p, eol_flag);
22089 p = decode_mode_spec_coding
22090 (XPROCESS (obj)->encode_coding_system, p, eol_flag);
22092 #endif /* subprocesses */
22093 #endif /* 0 */
22094 *p = 0;
22095 return decode_mode_spec_buf;
22099 if (STRINGP (obj))
22101 *string = obj;
22102 return SSDATA (obj);
22104 else
22105 return "";
22109 /* Count up to COUNT lines starting from START_BYTE. COUNT negative
22110 means count lines back from START_BYTE. But don't go beyond
22111 LIMIT_BYTE. Return the number of lines thus found (always
22112 nonnegative).
22114 Set *BYTE_POS_PTR to the byte position where we stopped. This is
22115 either the position COUNT lines after/before START_BYTE, if we
22116 found COUNT lines, or LIMIT_BYTE if we hit the limit before finding
22117 COUNT lines. */
22119 static ptrdiff_t
22120 display_count_lines (ptrdiff_t start_byte,
22121 ptrdiff_t limit_byte, ptrdiff_t count,
22122 ptrdiff_t *byte_pos_ptr)
22124 register unsigned char *cursor;
22125 unsigned char *base;
22127 register ptrdiff_t ceiling;
22128 register unsigned char *ceiling_addr;
22129 ptrdiff_t orig_count = count;
22131 /* If we are not in selective display mode,
22132 check only for newlines. */
22133 int selective_display = (!NILP (BVAR (current_buffer, selective_display))
22134 && !INTEGERP (BVAR (current_buffer, selective_display)));
22136 if (count > 0)
22138 while (start_byte < limit_byte)
22140 ceiling = BUFFER_CEILING_OF (start_byte);
22141 ceiling = min (limit_byte - 1, ceiling);
22142 ceiling_addr = BYTE_POS_ADDR (ceiling) + 1;
22143 base = (cursor = BYTE_POS_ADDR (start_byte));
22147 if (selective_display)
22149 while (*cursor != '\n' && *cursor != 015
22150 && ++cursor != ceiling_addr)
22151 continue;
22152 if (cursor == ceiling_addr)
22153 break;
22155 else
22157 cursor = memchr (cursor, '\n', ceiling_addr - cursor);
22158 if (! cursor)
22159 break;
22162 cursor++;
22164 if (--count == 0)
22166 start_byte += cursor - base;
22167 *byte_pos_ptr = start_byte;
22168 return orig_count;
22171 while (cursor < ceiling_addr);
22173 start_byte += ceiling_addr - base;
22176 else
22178 while (start_byte > limit_byte)
22180 ceiling = BUFFER_FLOOR_OF (start_byte - 1);
22181 ceiling = max (limit_byte, ceiling);
22182 ceiling_addr = BYTE_POS_ADDR (ceiling);
22183 base = (cursor = BYTE_POS_ADDR (start_byte - 1) + 1);
22184 while (1)
22186 if (selective_display)
22188 while (--cursor >= ceiling_addr
22189 && *cursor != '\n' && *cursor != 015)
22190 continue;
22191 if (cursor < ceiling_addr)
22192 break;
22194 else
22196 cursor = memrchr (ceiling_addr, '\n', cursor - ceiling_addr);
22197 if (! cursor)
22198 break;
22201 if (++count == 0)
22203 start_byte += cursor - base + 1;
22204 *byte_pos_ptr = start_byte;
22205 /* When scanning backwards, we should
22206 not count the newline posterior to which we stop. */
22207 return - orig_count - 1;
22210 start_byte += ceiling_addr - base;
22214 *byte_pos_ptr = limit_byte;
22216 if (count < 0)
22217 return - orig_count + count;
22218 return orig_count - count;
22224 /***********************************************************************
22225 Displaying strings
22226 ***********************************************************************/
22228 /* Display a NUL-terminated string, starting with index START.
22230 If STRING is non-null, display that C string. Otherwise, the Lisp
22231 string LISP_STRING is displayed. There's a case that STRING is
22232 non-null and LISP_STRING is not nil. It means STRING is a string
22233 data of LISP_STRING. In that case, we display LISP_STRING while
22234 ignoring its text properties.
22236 If FACE_STRING is not nil, FACE_STRING_POS is a position in
22237 FACE_STRING. Display STRING or LISP_STRING with the face at
22238 FACE_STRING_POS in FACE_STRING:
22240 Display the string in the environment given by IT, but use the
22241 standard display table, temporarily.
22243 FIELD_WIDTH is the minimum number of output glyphs to produce.
22244 If STRING has fewer characters than FIELD_WIDTH, pad to the right
22245 with spaces. If STRING has more characters, more than FIELD_WIDTH
22246 glyphs will be produced. FIELD_WIDTH <= 0 means don't pad.
22248 PRECISION is the maximum number of characters to output from
22249 STRING. PRECISION < 0 means don't truncate the string.
22251 This is roughly equivalent to printf format specifiers:
22253 FIELD_WIDTH PRECISION PRINTF
22254 ----------------------------------------
22255 -1 -1 %s
22256 -1 10 %.10s
22257 10 -1 %10s
22258 20 10 %20.10s
22260 MULTIBYTE zero means do not display multibyte chars, > 0 means do
22261 display them, and < 0 means obey the current buffer's value of
22262 enable_multibyte_characters.
22264 Value is the number of columns displayed. */
22266 static int
22267 display_string (const char *string, Lisp_Object lisp_string, Lisp_Object face_string,
22268 ptrdiff_t face_string_pos, ptrdiff_t start, struct it *it,
22269 int field_width, int precision, int max_x, int multibyte)
22271 int hpos_at_start = it->hpos;
22272 int saved_face_id = it->face_id;
22273 struct glyph_row *row = it->glyph_row;
22274 ptrdiff_t it_charpos;
22276 /* Initialize the iterator IT for iteration over STRING beginning
22277 with index START. */
22278 reseat_to_string (it, NILP (lisp_string) ? string : NULL, lisp_string, start,
22279 precision, field_width, multibyte);
22280 if (string && STRINGP (lisp_string))
22281 /* LISP_STRING is the one returned by decode_mode_spec. We should
22282 ignore its text properties. */
22283 it->stop_charpos = it->end_charpos;
22285 /* If displaying STRING, set up the face of the iterator from
22286 FACE_STRING, if that's given. */
22287 if (STRINGP (face_string))
22289 ptrdiff_t endptr;
22290 struct face *face;
22292 it->face_id
22293 = face_at_string_position (it->w, face_string, face_string_pos,
22294 0, it->region_beg_charpos,
22295 it->region_end_charpos,
22296 &endptr, it->base_face_id, 0);
22297 face = FACE_FROM_ID (it->f, it->face_id);
22298 it->face_box_p = face->box != FACE_NO_BOX;
22301 /* Set max_x to the maximum allowed X position. Don't let it go
22302 beyond the right edge of the window. */
22303 if (max_x <= 0)
22304 max_x = it->last_visible_x;
22305 else
22306 max_x = min (max_x, it->last_visible_x);
22308 /* Skip over display elements that are not visible. because IT->w is
22309 hscrolled. */
22310 if (it->current_x < it->first_visible_x)
22311 move_it_in_display_line_to (it, 100000, it->first_visible_x,
22312 MOVE_TO_POS | MOVE_TO_X);
22314 row->ascent = it->max_ascent;
22315 row->height = it->max_ascent + it->max_descent;
22316 row->phys_ascent = it->max_phys_ascent;
22317 row->phys_height = it->max_phys_ascent + it->max_phys_descent;
22318 row->extra_line_spacing = it->max_extra_line_spacing;
22320 if (STRINGP (it->string))
22321 it_charpos = IT_STRING_CHARPOS (*it);
22322 else
22323 it_charpos = IT_CHARPOS (*it);
22325 /* This condition is for the case that we are called with current_x
22326 past last_visible_x. */
22327 while (it->current_x < max_x)
22329 int x_before, x, n_glyphs_before, i, nglyphs;
22331 /* Get the next display element. */
22332 if (!get_next_display_element (it))
22333 break;
22335 /* Produce glyphs. */
22336 x_before = it->current_x;
22337 n_glyphs_before = row->used[TEXT_AREA];
22338 PRODUCE_GLYPHS (it);
22340 nglyphs = row->used[TEXT_AREA] - n_glyphs_before;
22341 i = 0;
22342 x = x_before;
22343 while (i < nglyphs)
22345 struct glyph *glyph = row->glyphs[TEXT_AREA] + n_glyphs_before + i;
22347 if (it->line_wrap != TRUNCATE
22348 && x + glyph->pixel_width > max_x)
22350 /* End of continued line or max_x reached. */
22351 if (CHAR_GLYPH_PADDING_P (*glyph))
22353 /* A wide character is unbreakable. */
22354 if (row->reversed_p)
22355 unproduce_glyphs (it, row->used[TEXT_AREA]
22356 - n_glyphs_before);
22357 row->used[TEXT_AREA] = n_glyphs_before;
22358 it->current_x = x_before;
22360 else
22362 if (row->reversed_p)
22363 unproduce_glyphs (it, row->used[TEXT_AREA]
22364 - (n_glyphs_before + i));
22365 row->used[TEXT_AREA] = n_glyphs_before + i;
22366 it->current_x = x;
22368 break;
22370 else if (x + glyph->pixel_width >= it->first_visible_x)
22372 /* Glyph is at least partially visible. */
22373 ++it->hpos;
22374 if (x < it->first_visible_x)
22375 row->x = x - it->first_visible_x;
22377 else
22379 /* Glyph is off the left margin of the display area.
22380 Should not happen. */
22381 emacs_abort ();
22384 row->ascent = max (row->ascent, it->max_ascent);
22385 row->height = max (row->height, it->max_ascent + it->max_descent);
22386 row->phys_ascent = max (row->phys_ascent, it->max_phys_ascent);
22387 row->phys_height = max (row->phys_height,
22388 it->max_phys_ascent + it->max_phys_descent);
22389 row->extra_line_spacing = max (row->extra_line_spacing,
22390 it->max_extra_line_spacing);
22391 x += glyph->pixel_width;
22392 ++i;
22395 /* Stop if max_x reached. */
22396 if (i < nglyphs)
22397 break;
22399 /* Stop at line ends. */
22400 if (ITERATOR_AT_END_OF_LINE_P (it))
22402 it->continuation_lines_width = 0;
22403 break;
22406 set_iterator_to_next (it, 1);
22407 if (STRINGP (it->string))
22408 it_charpos = IT_STRING_CHARPOS (*it);
22409 else
22410 it_charpos = IT_CHARPOS (*it);
22412 /* Stop if truncating at the right edge. */
22413 if (it->line_wrap == TRUNCATE
22414 && it->current_x >= it->last_visible_x)
22416 /* Add truncation mark, but don't do it if the line is
22417 truncated at a padding space. */
22418 if (it_charpos < it->string_nchars)
22420 if (!FRAME_WINDOW_P (it->f))
22422 int ii, n;
22424 if (it->current_x > it->last_visible_x)
22426 if (!row->reversed_p)
22428 for (ii = row->used[TEXT_AREA] - 1; ii > 0; --ii)
22429 if (!CHAR_GLYPH_PADDING_P (row->glyphs[TEXT_AREA][ii]))
22430 break;
22432 else
22434 for (ii = 0; ii < row->used[TEXT_AREA]; ii++)
22435 if (!CHAR_GLYPH_PADDING_P (row->glyphs[TEXT_AREA][ii]))
22436 break;
22437 unproduce_glyphs (it, ii + 1);
22438 ii = row->used[TEXT_AREA] - (ii + 1);
22440 for (n = row->used[TEXT_AREA]; ii < n; ++ii)
22442 row->used[TEXT_AREA] = ii;
22443 produce_special_glyphs (it, IT_TRUNCATION);
22446 produce_special_glyphs (it, IT_TRUNCATION);
22448 row->truncated_on_right_p = 1;
22450 break;
22454 /* Maybe insert a truncation at the left. */
22455 if (it->first_visible_x
22456 && it_charpos > 0)
22458 if (!FRAME_WINDOW_P (it->f)
22459 || (row->reversed_p
22460 ? WINDOW_RIGHT_FRINGE_WIDTH (it->w)
22461 : WINDOW_LEFT_FRINGE_WIDTH (it->w)) == 0)
22462 insert_left_trunc_glyphs (it);
22463 row->truncated_on_left_p = 1;
22466 it->face_id = saved_face_id;
22468 /* Value is number of columns displayed. */
22469 return it->hpos - hpos_at_start;
22474 /* This is like a combination of memq and assq. Return 1/2 if PROPVAL
22475 appears as an element of LIST or as the car of an element of LIST.
22476 If PROPVAL is a list, compare each element against LIST in that
22477 way, and return 1/2 if any element of PROPVAL is found in LIST.
22478 Otherwise return 0. This function cannot quit.
22479 The return value is 2 if the text is invisible but with an ellipsis
22480 and 1 if it's invisible and without an ellipsis. */
22483 invisible_p (register Lisp_Object propval, Lisp_Object list)
22485 register Lisp_Object tail, proptail;
22487 for (tail = list; CONSP (tail); tail = XCDR (tail))
22489 register Lisp_Object tem;
22490 tem = XCAR (tail);
22491 if (EQ (propval, tem))
22492 return 1;
22493 if (CONSP (tem) && EQ (propval, XCAR (tem)))
22494 return NILP (XCDR (tem)) ? 1 : 2;
22497 if (CONSP (propval))
22499 for (proptail = propval; CONSP (proptail); proptail = XCDR (proptail))
22501 Lisp_Object propelt;
22502 propelt = XCAR (proptail);
22503 for (tail = list; CONSP (tail); tail = XCDR (tail))
22505 register Lisp_Object tem;
22506 tem = XCAR (tail);
22507 if (EQ (propelt, tem))
22508 return 1;
22509 if (CONSP (tem) && EQ (propelt, XCAR (tem)))
22510 return NILP (XCDR (tem)) ? 1 : 2;
22515 return 0;
22518 DEFUN ("invisible-p", Finvisible_p, Sinvisible_p, 1, 1, 0,
22519 doc: /* Non-nil if the property makes the text invisible.
22520 POS-OR-PROP can be a marker or number, in which case it is taken to be
22521 a position in the current buffer and the value of the `invisible' property
22522 is checked; or it can be some other value, which is then presumed to be the
22523 value of the `invisible' property of the text of interest.
22524 The non-nil value returned can be t for truly invisible text or something
22525 else if the text is replaced by an ellipsis. */)
22526 (Lisp_Object pos_or_prop)
22528 Lisp_Object prop
22529 = (NATNUMP (pos_or_prop) || MARKERP (pos_or_prop)
22530 ? Fget_char_property (pos_or_prop, Qinvisible, Qnil)
22531 : pos_or_prop);
22532 int invis = TEXT_PROP_MEANS_INVISIBLE (prop);
22533 return (invis == 0 ? Qnil
22534 : invis == 1 ? Qt
22535 : make_number (invis));
22538 /* Calculate a width or height in pixels from a specification using
22539 the following elements:
22541 SPEC ::=
22542 NUM - a (fractional) multiple of the default font width/height
22543 (NUM) - specifies exactly NUM pixels
22544 UNIT - a fixed number of pixels, see below.
22545 ELEMENT - size of a display element in pixels, see below.
22546 (NUM . SPEC) - equals NUM * SPEC
22547 (+ SPEC SPEC ...) - add pixel values
22548 (- SPEC SPEC ...) - subtract pixel values
22549 (- SPEC) - negate pixel value
22551 NUM ::=
22552 INT or FLOAT - a number constant
22553 SYMBOL - use symbol's (buffer local) variable binding.
22555 UNIT ::=
22556 in - pixels per inch *)
22557 mm - pixels per 1/1000 meter *)
22558 cm - pixels per 1/100 meter *)
22559 width - width of current font in pixels.
22560 height - height of current font in pixels.
22562 *) using the ratio(s) defined in display-pixels-per-inch.
22564 ELEMENT ::=
22566 left-fringe - left fringe width in pixels
22567 right-fringe - right fringe width in pixels
22569 left-margin - left margin width in pixels
22570 right-margin - right margin width in pixels
22572 scroll-bar - scroll-bar area width in pixels
22574 Examples:
22576 Pixels corresponding to 5 inches:
22577 (5 . in)
22579 Total width of non-text areas on left side of window (if scroll-bar is on left):
22580 '(space :width (+ left-fringe left-margin scroll-bar))
22582 Align to first text column (in header line):
22583 '(space :align-to 0)
22585 Align to middle of text area minus half the width of variable `my-image'
22586 containing a loaded image:
22587 '(space :align-to (0.5 . (- text my-image)))
22589 Width of left margin minus width of 1 character in the default font:
22590 '(space :width (- left-margin 1))
22592 Width of left margin minus width of 2 characters in the current font:
22593 '(space :width (- left-margin (2 . width)))
22595 Center 1 character over left-margin (in header line):
22596 '(space :align-to (+ left-margin (0.5 . left-margin) -0.5))
22598 Different ways to express width of left fringe plus left margin minus one pixel:
22599 '(space :width (- (+ left-fringe left-margin) (1)))
22600 '(space :width (+ left-fringe left-margin (- (1))))
22601 '(space :width (+ left-fringe left-margin (-1)))
22605 static int
22606 calc_pixel_width_or_height (double *res, struct it *it, Lisp_Object prop,
22607 struct font *font, int width_p, int *align_to)
22609 double pixels;
22611 #define OK_PIXELS(val) ((*res = (double)(val)), 1)
22612 #define OK_ALIGN_TO(val) ((*align_to = (int)(val)), 1)
22614 if (NILP (prop))
22615 return OK_PIXELS (0);
22617 eassert (FRAME_LIVE_P (it->f));
22619 if (SYMBOLP (prop))
22621 if (SCHARS (SYMBOL_NAME (prop)) == 2)
22623 char *unit = SSDATA (SYMBOL_NAME (prop));
22625 if (unit[0] == 'i' && unit[1] == 'n')
22626 pixels = 1.0;
22627 else if (unit[0] == 'm' && unit[1] == 'm')
22628 pixels = 25.4;
22629 else if (unit[0] == 'c' && unit[1] == 'm')
22630 pixels = 2.54;
22631 else
22632 pixels = 0;
22633 if (pixels > 0)
22635 double ppi = (width_p ? FRAME_RES_X (it->f)
22636 : FRAME_RES_Y (it->f));
22638 if (ppi > 0)
22639 return OK_PIXELS (ppi / pixels);
22640 return 0;
22644 #ifdef HAVE_WINDOW_SYSTEM
22645 if (EQ (prop, Qheight))
22646 return OK_PIXELS (font ? FONT_HEIGHT (font) : FRAME_LINE_HEIGHT (it->f));
22647 if (EQ (prop, Qwidth))
22648 return OK_PIXELS (font ? FONT_WIDTH (font) : FRAME_COLUMN_WIDTH (it->f));
22649 #else
22650 if (EQ (prop, Qheight) || EQ (prop, Qwidth))
22651 return OK_PIXELS (1);
22652 #endif
22654 if (EQ (prop, Qtext))
22655 return OK_PIXELS (width_p
22656 ? window_box_width (it->w, TEXT_AREA)
22657 : WINDOW_BOX_HEIGHT_NO_MODE_LINE (it->w));
22659 if (align_to && *align_to < 0)
22661 *res = 0;
22662 if (EQ (prop, Qleft))
22663 return OK_ALIGN_TO (window_box_left_offset (it->w, TEXT_AREA));
22664 if (EQ (prop, Qright))
22665 return OK_ALIGN_TO (window_box_right_offset (it->w, TEXT_AREA));
22666 if (EQ (prop, Qcenter))
22667 return OK_ALIGN_TO (window_box_left_offset (it->w, TEXT_AREA)
22668 + window_box_width (it->w, TEXT_AREA) / 2);
22669 if (EQ (prop, Qleft_fringe))
22670 return OK_ALIGN_TO (WINDOW_HAS_FRINGES_OUTSIDE_MARGINS (it->w)
22671 ? WINDOW_LEFT_SCROLL_BAR_AREA_WIDTH (it->w)
22672 : window_box_right_offset (it->w, LEFT_MARGIN_AREA));
22673 if (EQ (prop, Qright_fringe))
22674 return OK_ALIGN_TO (WINDOW_HAS_FRINGES_OUTSIDE_MARGINS (it->w)
22675 ? window_box_right_offset (it->w, RIGHT_MARGIN_AREA)
22676 : window_box_right_offset (it->w, TEXT_AREA));
22677 if (EQ (prop, Qleft_margin))
22678 return OK_ALIGN_TO (window_box_left_offset (it->w, LEFT_MARGIN_AREA));
22679 if (EQ (prop, Qright_margin))
22680 return OK_ALIGN_TO (window_box_left_offset (it->w, RIGHT_MARGIN_AREA));
22681 if (EQ (prop, Qscroll_bar))
22682 return OK_ALIGN_TO (WINDOW_HAS_VERTICAL_SCROLL_BAR_ON_LEFT (it->w)
22684 : (window_box_right_offset (it->w, RIGHT_MARGIN_AREA)
22685 + (WINDOW_HAS_FRINGES_OUTSIDE_MARGINS (it->w)
22686 ? WINDOW_RIGHT_FRINGE_WIDTH (it->w)
22687 : 0)));
22689 else
22691 if (EQ (prop, Qleft_fringe))
22692 return OK_PIXELS (WINDOW_LEFT_FRINGE_WIDTH (it->w));
22693 if (EQ (prop, Qright_fringe))
22694 return OK_PIXELS (WINDOW_RIGHT_FRINGE_WIDTH (it->w));
22695 if (EQ (prop, Qleft_margin))
22696 return OK_PIXELS (WINDOW_LEFT_MARGIN_WIDTH (it->w));
22697 if (EQ (prop, Qright_margin))
22698 return OK_PIXELS (WINDOW_RIGHT_MARGIN_WIDTH (it->w));
22699 if (EQ (prop, Qscroll_bar))
22700 return OK_PIXELS (WINDOW_SCROLL_BAR_AREA_WIDTH (it->w));
22703 prop = buffer_local_value_1 (prop, it->w->contents);
22704 if (EQ (prop, Qunbound))
22705 prop = Qnil;
22708 if (INTEGERP (prop) || FLOATP (prop))
22710 int base_unit = (width_p
22711 ? FRAME_COLUMN_WIDTH (it->f)
22712 : FRAME_LINE_HEIGHT (it->f));
22713 return OK_PIXELS (XFLOATINT (prop) * base_unit);
22716 if (CONSP (prop))
22718 Lisp_Object car = XCAR (prop);
22719 Lisp_Object cdr = XCDR (prop);
22721 if (SYMBOLP (car))
22723 #ifdef HAVE_WINDOW_SYSTEM
22724 if (FRAME_WINDOW_P (it->f)
22725 && valid_image_p (prop))
22727 ptrdiff_t id = lookup_image (it->f, prop);
22728 struct image *img = IMAGE_FROM_ID (it->f, id);
22730 return OK_PIXELS (width_p ? img->width : img->height);
22732 #endif
22733 if (EQ (car, Qplus) || EQ (car, Qminus))
22735 int first = 1;
22736 double px;
22738 pixels = 0;
22739 while (CONSP (cdr))
22741 if (!calc_pixel_width_or_height (&px, it, XCAR (cdr),
22742 font, width_p, align_to))
22743 return 0;
22744 if (first)
22745 pixels = (EQ (car, Qplus) ? px : -px), first = 0;
22746 else
22747 pixels += px;
22748 cdr = XCDR (cdr);
22750 if (EQ (car, Qminus))
22751 pixels = -pixels;
22752 return OK_PIXELS (pixels);
22755 car = buffer_local_value_1 (car, it->w->contents);
22756 if (EQ (car, Qunbound))
22757 car = Qnil;
22760 if (INTEGERP (car) || FLOATP (car))
22762 double fact;
22763 pixels = XFLOATINT (car);
22764 if (NILP (cdr))
22765 return OK_PIXELS (pixels);
22766 if (calc_pixel_width_or_height (&fact, it, cdr,
22767 font, width_p, align_to))
22768 return OK_PIXELS (pixels * fact);
22769 return 0;
22772 return 0;
22775 return 0;
22779 /***********************************************************************
22780 Glyph Display
22781 ***********************************************************************/
22783 #ifdef HAVE_WINDOW_SYSTEM
22785 #ifdef GLYPH_DEBUG
22787 void
22788 dump_glyph_string (struct glyph_string *s)
22790 fprintf (stderr, "glyph string\n");
22791 fprintf (stderr, " x, y, w, h = %d, %d, %d, %d\n",
22792 s->x, s->y, s->width, s->height);
22793 fprintf (stderr, " ybase = %d\n", s->ybase);
22794 fprintf (stderr, " hl = %d\n", s->hl);
22795 fprintf (stderr, " left overhang = %d, right = %d\n",
22796 s->left_overhang, s->right_overhang);
22797 fprintf (stderr, " nchars = %d\n", s->nchars);
22798 fprintf (stderr, " extends to end of line = %d\n",
22799 s->extends_to_end_of_line_p);
22800 fprintf (stderr, " font height = %d\n", FONT_HEIGHT (s->font));
22801 fprintf (stderr, " bg width = %d\n", s->background_width);
22804 #endif /* GLYPH_DEBUG */
22806 /* Initialize glyph string S. CHAR2B is a suitably allocated vector
22807 of XChar2b structures for S; it can't be allocated in
22808 init_glyph_string because it must be allocated via `alloca'. W
22809 is the window on which S is drawn. ROW and AREA are the glyph row
22810 and area within the row from which S is constructed. START is the
22811 index of the first glyph structure covered by S. HL is a
22812 face-override for drawing S. */
22814 #ifdef HAVE_NTGUI
22815 #define OPTIONAL_HDC(hdc) HDC hdc,
22816 #define DECLARE_HDC(hdc) HDC hdc;
22817 #define ALLOCATE_HDC(hdc, f) hdc = get_frame_dc ((f))
22818 #define RELEASE_HDC(hdc, f) release_frame_dc ((f), (hdc))
22819 #endif
22821 #ifndef OPTIONAL_HDC
22822 #define OPTIONAL_HDC(hdc)
22823 #define DECLARE_HDC(hdc)
22824 #define ALLOCATE_HDC(hdc, f)
22825 #define RELEASE_HDC(hdc, f)
22826 #endif
22828 static void
22829 init_glyph_string (struct glyph_string *s,
22830 OPTIONAL_HDC (hdc)
22831 XChar2b *char2b, struct window *w, struct glyph_row *row,
22832 enum glyph_row_area area, int start, enum draw_glyphs_face hl)
22834 memset (s, 0, sizeof *s);
22835 s->w = w;
22836 s->f = XFRAME (w->frame);
22837 #ifdef HAVE_NTGUI
22838 s->hdc = hdc;
22839 #endif
22840 s->display = FRAME_X_DISPLAY (s->f);
22841 s->window = FRAME_X_WINDOW (s->f);
22842 s->char2b = char2b;
22843 s->hl = hl;
22844 s->row = row;
22845 s->area = area;
22846 s->first_glyph = row->glyphs[area] + start;
22847 s->height = row->height;
22848 s->y = WINDOW_TO_FRAME_PIXEL_Y (w, row->y);
22849 s->ybase = s->y + row->ascent;
22853 /* Append the list of glyph strings with head H and tail T to the list
22854 with head *HEAD and tail *TAIL. Set *HEAD and *TAIL to the result. */
22856 static void
22857 append_glyph_string_lists (struct glyph_string **head, struct glyph_string **tail,
22858 struct glyph_string *h, struct glyph_string *t)
22860 if (h)
22862 if (*head)
22863 (*tail)->next = h;
22864 else
22865 *head = h;
22866 h->prev = *tail;
22867 *tail = t;
22872 /* Prepend the list of glyph strings with head H and tail T to the
22873 list with head *HEAD and tail *TAIL. Set *HEAD and *TAIL to the
22874 result. */
22876 static void
22877 prepend_glyph_string_lists (struct glyph_string **head, struct glyph_string **tail,
22878 struct glyph_string *h, struct glyph_string *t)
22880 if (h)
22882 if (*head)
22883 (*head)->prev = t;
22884 else
22885 *tail = t;
22886 t->next = *head;
22887 *head = h;
22892 /* Append glyph string S to the list with head *HEAD and tail *TAIL.
22893 Set *HEAD and *TAIL to the resulting list. */
22895 static void
22896 append_glyph_string (struct glyph_string **head, struct glyph_string **tail,
22897 struct glyph_string *s)
22899 s->next = s->prev = NULL;
22900 append_glyph_string_lists (head, tail, s, s);
22904 /* Get face and two-byte form of character C in face FACE_ID on frame F.
22905 The encoding of C is returned in *CHAR2B. DISPLAY_P non-zero means
22906 make sure that X resources for the face returned are allocated.
22907 Value is a pointer to a realized face that is ready for display if
22908 DISPLAY_P is non-zero. */
22910 static struct face *
22911 get_char_face_and_encoding (struct frame *f, int c, int face_id,
22912 XChar2b *char2b, int display_p)
22914 struct face *face = FACE_FROM_ID (f, face_id);
22915 unsigned code = 0;
22917 if (face->font)
22919 code = face->font->driver->encode_char (face->font, c);
22921 if (code == FONT_INVALID_CODE)
22922 code = 0;
22924 STORE_XCHAR2B (char2b, (code >> 8), (code & 0xFF));
22926 /* Make sure X resources of the face are allocated. */
22927 #ifdef HAVE_X_WINDOWS
22928 if (display_p)
22929 #endif
22931 eassert (face != NULL);
22932 PREPARE_FACE_FOR_DISPLAY (f, face);
22935 return face;
22939 /* Get face and two-byte form of character glyph GLYPH on frame F.
22940 The encoding of GLYPH->u.ch is returned in *CHAR2B. Value is
22941 a pointer to a realized face that is ready for display. */
22943 static struct face *
22944 get_glyph_face_and_encoding (struct frame *f, struct glyph *glyph,
22945 XChar2b *char2b, int *two_byte_p)
22947 struct face *face;
22948 unsigned code = 0;
22950 eassert (glyph->type == CHAR_GLYPH);
22951 face = FACE_FROM_ID (f, glyph->face_id);
22953 /* Make sure X resources of the face are allocated. */
22954 eassert (face != NULL);
22955 PREPARE_FACE_FOR_DISPLAY (f, face);
22957 if (two_byte_p)
22958 *two_byte_p = 0;
22960 if (face->font)
22962 if (CHAR_BYTE8_P (glyph->u.ch))
22963 code = CHAR_TO_BYTE8 (glyph->u.ch);
22964 else
22965 code = face->font->driver->encode_char (face->font, glyph->u.ch);
22967 if (code == FONT_INVALID_CODE)
22968 code = 0;
22971 STORE_XCHAR2B (char2b, (code >> 8), (code & 0xFF));
22972 return face;
22976 /* Get glyph code of character C in FONT in the two-byte form CHAR2B.
22977 Return 1 if FONT has a glyph for C, otherwise return 0. */
22979 static int
22980 get_char_glyph_code (int c, struct font *font, XChar2b *char2b)
22982 unsigned code;
22984 if (CHAR_BYTE8_P (c))
22985 code = CHAR_TO_BYTE8 (c);
22986 else
22987 code = font->driver->encode_char (font, c);
22989 if (code == FONT_INVALID_CODE)
22990 return 0;
22991 STORE_XCHAR2B (char2b, (code >> 8), (code & 0xFF));
22992 return 1;
22996 /* Fill glyph string S with composition components specified by S->cmp.
22998 BASE_FACE is the base face of the composition.
22999 S->cmp_from is the index of the first component for S.
23001 OVERLAPS non-zero means S should draw the foreground only, and use
23002 its physical height for clipping. See also draw_glyphs.
23004 Value is the index of a component not in S. */
23006 static int
23007 fill_composite_glyph_string (struct glyph_string *s, struct face *base_face,
23008 int overlaps)
23010 int i;
23011 /* For all glyphs of this composition, starting at the offset
23012 S->cmp_from, until we reach the end of the definition or encounter a
23013 glyph that requires the different face, add it to S. */
23014 struct face *face;
23016 eassert (s);
23018 s->for_overlaps = overlaps;
23019 s->face = NULL;
23020 s->font = NULL;
23021 for (i = s->cmp_from; i < s->cmp->glyph_len; i++)
23023 int c = COMPOSITION_GLYPH (s->cmp, i);
23025 /* TAB in a composition means display glyphs with padding space
23026 on the left or right. */
23027 if (c != '\t')
23029 int face_id = FACE_FOR_CHAR (s->f, base_face->ascii_face, c,
23030 -1, Qnil);
23032 face = get_char_face_and_encoding (s->f, c, face_id,
23033 s->char2b + i, 1);
23034 if (face)
23036 if (! s->face)
23038 s->face = face;
23039 s->font = s->face->font;
23041 else if (s->face != face)
23042 break;
23045 ++s->nchars;
23047 s->cmp_to = i;
23049 if (s->face == NULL)
23051 s->face = base_face->ascii_face;
23052 s->font = s->face->font;
23055 /* All glyph strings for the same composition has the same width,
23056 i.e. the width set for the first component of the composition. */
23057 s->width = s->first_glyph->pixel_width;
23059 /* If the specified font could not be loaded, use the frame's
23060 default font, but record the fact that we couldn't load it in
23061 the glyph string so that we can draw rectangles for the
23062 characters of the glyph string. */
23063 if (s->font == NULL)
23065 s->font_not_found_p = 1;
23066 s->font = FRAME_FONT (s->f);
23069 /* Adjust base line for subscript/superscript text. */
23070 s->ybase += s->first_glyph->voffset;
23072 /* This glyph string must always be drawn with 16-bit functions. */
23073 s->two_byte_p = 1;
23075 return s->cmp_to;
23078 static int
23079 fill_gstring_glyph_string (struct glyph_string *s, int face_id,
23080 int start, int end, int overlaps)
23082 struct glyph *glyph, *last;
23083 Lisp_Object lgstring;
23084 int i;
23086 s->for_overlaps = overlaps;
23087 glyph = s->row->glyphs[s->area] + start;
23088 last = s->row->glyphs[s->area] + end;
23089 s->cmp_id = glyph->u.cmp.id;
23090 s->cmp_from = glyph->slice.cmp.from;
23091 s->cmp_to = glyph->slice.cmp.to + 1;
23092 s->face = FACE_FROM_ID (s->f, face_id);
23093 lgstring = composition_gstring_from_id (s->cmp_id);
23094 s->font = XFONT_OBJECT (LGSTRING_FONT (lgstring));
23095 glyph++;
23096 while (glyph < last
23097 && glyph->u.cmp.automatic
23098 && glyph->u.cmp.id == s->cmp_id
23099 && s->cmp_to == glyph->slice.cmp.from)
23100 s->cmp_to = (glyph++)->slice.cmp.to + 1;
23102 for (i = s->cmp_from; i < s->cmp_to; i++)
23104 Lisp_Object lglyph = LGSTRING_GLYPH (lgstring, i);
23105 unsigned code = LGLYPH_CODE (lglyph);
23107 STORE_XCHAR2B ((s->char2b + i), code >> 8, code & 0xFF);
23109 s->width = composition_gstring_width (lgstring, s->cmp_from, s->cmp_to, NULL);
23110 return glyph - s->row->glyphs[s->area];
23114 /* Fill glyph string S from a sequence glyphs for glyphless characters.
23115 See the comment of fill_glyph_string for arguments.
23116 Value is the index of the first glyph not in S. */
23119 static int
23120 fill_glyphless_glyph_string (struct glyph_string *s, int face_id,
23121 int start, int end, int overlaps)
23123 struct glyph *glyph, *last;
23124 int voffset;
23126 eassert (s->first_glyph->type == GLYPHLESS_GLYPH);
23127 s->for_overlaps = overlaps;
23128 glyph = s->row->glyphs[s->area] + start;
23129 last = s->row->glyphs[s->area] + end;
23130 voffset = glyph->voffset;
23131 s->face = FACE_FROM_ID (s->f, face_id);
23132 s->font = s->face->font ? s->face->font : FRAME_FONT (s->f);
23133 s->nchars = 1;
23134 s->width = glyph->pixel_width;
23135 glyph++;
23136 while (glyph < last
23137 && glyph->type == GLYPHLESS_GLYPH
23138 && glyph->voffset == voffset
23139 && glyph->face_id == face_id)
23141 s->nchars++;
23142 s->width += glyph->pixel_width;
23143 glyph++;
23145 s->ybase += voffset;
23146 return glyph - s->row->glyphs[s->area];
23150 /* Fill glyph string S from a sequence of character glyphs.
23152 FACE_ID is the face id of the string. START is the index of the
23153 first glyph to consider, END is the index of the last + 1.
23154 OVERLAPS non-zero means S should draw the foreground only, and use
23155 its physical height for clipping. See also draw_glyphs.
23157 Value is the index of the first glyph not in S. */
23159 static int
23160 fill_glyph_string (struct glyph_string *s, int face_id,
23161 int start, int end, int overlaps)
23163 struct glyph *glyph, *last;
23164 int voffset;
23165 int glyph_not_available_p;
23167 eassert (s->f == XFRAME (s->w->frame));
23168 eassert (s->nchars == 0);
23169 eassert (start >= 0 && end > start);
23171 s->for_overlaps = overlaps;
23172 glyph = s->row->glyphs[s->area] + start;
23173 last = s->row->glyphs[s->area] + end;
23174 voffset = glyph->voffset;
23175 s->padding_p = glyph->padding_p;
23176 glyph_not_available_p = glyph->glyph_not_available_p;
23178 while (glyph < last
23179 && glyph->type == CHAR_GLYPH
23180 && glyph->voffset == voffset
23181 /* Same face id implies same font, nowadays. */
23182 && glyph->face_id == face_id
23183 && glyph->glyph_not_available_p == glyph_not_available_p)
23185 int two_byte_p;
23187 s->face = get_glyph_face_and_encoding (s->f, glyph,
23188 s->char2b + s->nchars,
23189 &two_byte_p);
23190 s->two_byte_p = two_byte_p;
23191 ++s->nchars;
23192 eassert (s->nchars <= end - start);
23193 s->width += glyph->pixel_width;
23194 if (glyph++->padding_p != s->padding_p)
23195 break;
23198 s->font = s->face->font;
23200 /* If the specified font could not be loaded, use the frame's font,
23201 but record the fact that we couldn't load it in
23202 S->font_not_found_p so that we can draw rectangles for the
23203 characters of the glyph string. */
23204 if (s->font == NULL || glyph_not_available_p)
23206 s->font_not_found_p = 1;
23207 s->font = FRAME_FONT (s->f);
23210 /* Adjust base line for subscript/superscript text. */
23211 s->ybase += voffset;
23213 eassert (s->face && s->face->gc);
23214 return glyph - s->row->glyphs[s->area];
23218 /* Fill glyph string S from image glyph S->first_glyph. */
23220 static void
23221 fill_image_glyph_string (struct glyph_string *s)
23223 eassert (s->first_glyph->type == IMAGE_GLYPH);
23224 s->img = IMAGE_FROM_ID (s->f, s->first_glyph->u.img_id);
23225 eassert (s->img);
23226 s->slice = s->first_glyph->slice.img;
23227 s->face = FACE_FROM_ID (s->f, s->first_glyph->face_id);
23228 s->font = s->face->font;
23229 s->width = s->first_glyph->pixel_width;
23231 /* Adjust base line for subscript/superscript text. */
23232 s->ybase += s->first_glyph->voffset;
23236 /* Fill glyph string S from a sequence of stretch glyphs.
23238 START is the index of the first glyph to consider,
23239 END is the index of the last + 1.
23241 Value is the index of the first glyph not in S. */
23243 static int
23244 fill_stretch_glyph_string (struct glyph_string *s, int start, int end)
23246 struct glyph *glyph, *last;
23247 int voffset, face_id;
23249 eassert (s->first_glyph->type == STRETCH_GLYPH);
23251 glyph = s->row->glyphs[s->area] + start;
23252 last = s->row->glyphs[s->area] + end;
23253 face_id = glyph->face_id;
23254 s->face = FACE_FROM_ID (s->f, face_id);
23255 s->font = s->face->font;
23256 s->width = glyph->pixel_width;
23257 s->nchars = 1;
23258 voffset = glyph->voffset;
23260 for (++glyph;
23261 (glyph < last
23262 && glyph->type == STRETCH_GLYPH
23263 && glyph->voffset == voffset
23264 && glyph->face_id == face_id);
23265 ++glyph)
23266 s->width += glyph->pixel_width;
23268 /* Adjust base line for subscript/superscript text. */
23269 s->ybase += voffset;
23271 /* The case that face->gc == 0 is handled when drawing the glyph
23272 string by calling PREPARE_FACE_FOR_DISPLAY. */
23273 eassert (s->face);
23274 return glyph - s->row->glyphs[s->area];
23277 static struct font_metrics *
23278 get_per_char_metric (struct font *font, XChar2b *char2b)
23280 static struct font_metrics metrics;
23281 unsigned code;
23283 if (! font)
23284 return NULL;
23285 code = (XCHAR2B_BYTE1 (char2b) << 8) | XCHAR2B_BYTE2 (char2b);
23286 if (code == FONT_INVALID_CODE)
23287 return NULL;
23288 font->driver->text_extents (font, &code, 1, &metrics);
23289 return &metrics;
23292 /* EXPORT for RIF:
23293 Set *LEFT and *RIGHT to the left and right overhang of GLYPH on
23294 frame F. Overhangs of glyphs other than type CHAR_GLYPH are
23295 assumed to be zero. */
23297 void
23298 x_get_glyph_overhangs (struct glyph *glyph, struct frame *f, int *left, int *right)
23300 *left = *right = 0;
23302 if (glyph->type == CHAR_GLYPH)
23304 struct face *face;
23305 XChar2b char2b;
23306 struct font_metrics *pcm;
23308 face = get_glyph_face_and_encoding (f, glyph, &char2b, NULL);
23309 if (face->font && (pcm = get_per_char_metric (face->font, &char2b)))
23311 if (pcm->rbearing > pcm->width)
23312 *right = pcm->rbearing - pcm->width;
23313 if (pcm->lbearing < 0)
23314 *left = -pcm->lbearing;
23317 else if (glyph->type == COMPOSITE_GLYPH)
23319 if (! glyph->u.cmp.automatic)
23321 struct composition *cmp = composition_table[glyph->u.cmp.id];
23323 if (cmp->rbearing > cmp->pixel_width)
23324 *right = cmp->rbearing - cmp->pixel_width;
23325 if (cmp->lbearing < 0)
23326 *left = - cmp->lbearing;
23328 else
23330 Lisp_Object gstring = composition_gstring_from_id (glyph->u.cmp.id);
23331 struct font_metrics metrics;
23333 composition_gstring_width (gstring, glyph->slice.cmp.from,
23334 glyph->slice.cmp.to + 1, &metrics);
23335 if (metrics.rbearing > metrics.width)
23336 *right = metrics.rbearing - metrics.width;
23337 if (metrics.lbearing < 0)
23338 *left = - metrics.lbearing;
23344 /* Return the index of the first glyph preceding glyph string S that
23345 is overwritten by S because of S's left overhang. Value is -1
23346 if no glyphs are overwritten. */
23348 static int
23349 left_overwritten (struct glyph_string *s)
23351 int k;
23353 if (s->left_overhang)
23355 int x = 0, i;
23356 struct glyph *glyphs = s->row->glyphs[s->area];
23357 int first = s->first_glyph - glyphs;
23359 for (i = first - 1; i >= 0 && x > -s->left_overhang; --i)
23360 x -= glyphs[i].pixel_width;
23362 k = i + 1;
23364 else
23365 k = -1;
23367 return k;
23371 /* Return the index of the first glyph preceding glyph string S that
23372 is overwriting S because of its right overhang. Value is -1 if no
23373 glyph in front of S overwrites S. */
23375 static int
23376 left_overwriting (struct glyph_string *s)
23378 int i, k, x;
23379 struct glyph *glyphs = s->row->glyphs[s->area];
23380 int first = s->first_glyph - glyphs;
23382 k = -1;
23383 x = 0;
23384 for (i = first - 1; i >= 0; --i)
23386 int left, right;
23387 x_get_glyph_overhangs (glyphs + i, s->f, &left, &right);
23388 if (x + right > 0)
23389 k = i;
23390 x -= glyphs[i].pixel_width;
23393 return k;
23397 /* Return the index of the last glyph following glyph string S that is
23398 overwritten by S because of S's right overhang. Value is -1 if
23399 no such glyph is found. */
23401 static int
23402 right_overwritten (struct glyph_string *s)
23404 int k = -1;
23406 if (s->right_overhang)
23408 int x = 0, i;
23409 struct glyph *glyphs = s->row->glyphs[s->area];
23410 int first = (s->first_glyph - glyphs
23411 + (s->first_glyph->type == COMPOSITE_GLYPH ? 1 : s->nchars));
23412 int end = s->row->used[s->area];
23414 for (i = first; i < end && s->right_overhang > x; ++i)
23415 x += glyphs[i].pixel_width;
23417 k = i;
23420 return k;
23424 /* Return the index of the last glyph following glyph string S that
23425 overwrites S because of its left overhang. Value is negative
23426 if no such glyph is found. */
23428 static int
23429 right_overwriting (struct glyph_string *s)
23431 int i, k, x;
23432 int end = s->row->used[s->area];
23433 struct glyph *glyphs = s->row->glyphs[s->area];
23434 int first = (s->first_glyph - glyphs
23435 + (s->first_glyph->type == COMPOSITE_GLYPH ? 1 : s->nchars));
23437 k = -1;
23438 x = 0;
23439 for (i = first; i < end; ++i)
23441 int left, right;
23442 x_get_glyph_overhangs (glyphs + i, s->f, &left, &right);
23443 if (x - left < 0)
23444 k = i;
23445 x += glyphs[i].pixel_width;
23448 return k;
23452 /* Set background width of glyph string S. START is the index of the
23453 first glyph following S. LAST_X is the right-most x-position + 1
23454 in the drawing area. */
23456 static void
23457 set_glyph_string_background_width (struct glyph_string *s, int start, int last_x)
23459 /* If the face of this glyph string has to be drawn to the end of
23460 the drawing area, set S->extends_to_end_of_line_p. */
23462 if (start == s->row->used[s->area]
23463 && s->area == TEXT_AREA
23464 && ((s->row->fill_line_p
23465 && (s->hl == DRAW_NORMAL_TEXT
23466 || s->hl == DRAW_IMAGE_RAISED
23467 || s->hl == DRAW_IMAGE_SUNKEN))
23468 || s->hl == DRAW_MOUSE_FACE))
23469 s->extends_to_end_of_line_p = 1;
23471 /* If S extends its face to the end of the line, set its
23472 background_width to the distance to the right edge of the drawing
23473 area. */
23474 if (s->extends_to_end_of_line_p)
23475 s->background_width = last_x - s->x + 1;
23476 else
23477 s->background_width = s->width;
23481 /* Compute overhangs and x-positions for glyph string S and its
23482 predecessors, or successors. X is the starting x-position for S.
23483 BACKWARD_P non-zero means process predecessors. */
23485 static void
23486 compute_overhangs_and_x (struct glyph_string *s, int x, int backward_p)
23488 if (backward_p)
23490 while (s)
23492 if (FRAME_RIF (s->f)->compute_glyph_string_overhangs)
23493 FRAME_RIF (s->f)->compute_glyph_string_overhangs (s);
23494 x -= s->width;
23495 s->x = x;
23496 s = s->prev;
23499 else
23501 while (s)
23503 if (FRAME_RIF (s->f)->compute_glyph_string_overhangs)
23504 FRAME_RIF (s->f)->compute_glyph_string_overhangs (s);
23505 s->x = x;
23506 x += s->width;
23507 s = s->next;
23514 /* The following macros are only called from draw_glyphs below.
23515 They reference the following parameters of that function directly:
23516 `w', `row', `area', and `overlap_p'
23517 as well as the following local variables:
23518 `s', `f', and `hdc' (in W32) */
23520 #ifdef HAVE_NTGUI
23521 /* On W32, silently add local `hdc' variable to argument list of
23522 init_glyph_string. */
23523 #define INIT_GLYPH_STRING(s, char2b, w, row, area, start, hl) \
23524 init_glyph_string (s, hdc, char2b, w, row, area, start, hl)
23525 #else
23526 #define INIT_GLYPH_STRING(s, char2b, w, row, area, start, hl) \
23527 init_glyph_string (s, char2b, w, row, area, start, hl)
23528 #endif
23530 /* Add a glyph string for a stretch glyph to the list of strings
23531 between HEAD and TAIL. START is the index of the stretch glyph in
23532 row area AREA of glyph row ROW. END is the index of the last glyph
23533 in that glyph row area. X is the current output position assigned
23534 to the new glyph string constructed. HL overrides that face of the
23535 glyph; e.g. it is DRAW_CURSOR if a cursor has to be drawn. LAST_X
23536 is the right-most x-position of the drawing area. */
23538 /* SunOS 4 bundled cc, barfed on continuations in the arg lists here
23539 and below -- keep them on one line. */
23540 #define BUILD_STRETCH_GLYPH_STRING(START, END, HEAD, TAIL, HL, X, LAST_X) \
23541 do \
23543 s = alloca (sizeof *s); \
23544 INIT_GLYPH_STRING (s, NULL, w, row, area, START, HL); \
23545 START = fill_stretch_glyph_string (s, START, END); \
23546 append_glyph_string (&HEAD, &TAIL, s); \
23547 s->x = (X); \
23549 while (0)
23552 /* Add a glyph string for an image glyph to the list of strings
23553 between HEAD and TAIL. START is the index of the image glyph in
23554 row area AREA of glyph row ROW. END is the index of the last glyph
23555 in that glyph row area. X is the current output position assigned
23556 to the new glyph string constructed. HL overrides that face of the
23557 glyph; e.g. it is DRAW_CURSOR if a cursor has to be drawn. LAST_X
23558 is the right-most x-position of the drawing area. */
23560 #define BUILD_IMAGE_GLYPH_STRING(START, END, HEAD, TAIL, HL, X, LAST_X) \
23561 do \
23563 s = alloca (sizeof *s); \
23564 INIT_GLYPH_STRING (s, NULL, w, row, area, START, HL); \
23565 fill_image_glyph_string (s); \
23566 append_glyph_string (&HEAD, &TAIL, s); \
23567 ++START; \
23568 s->x = (X); \
23570 while (0)
23573 /* Add a glyph string for a sequence of character glyphs to the list
23574 of strings between HEAD and TAIL. START is the index of the first
23575 glyph in row area AREA of glyph row ROW that is part of the new
23576 glyph string. END is the index of the last glyph in that glyph row
23577 area. X is the current output position assigned to the new glyph
23578 string constructed. HL overrides that face of the glyph; e.g. it
23579 is DRAW_CURSOR if a cursor has to be drawn. LAST_X is the
23580 right-most x-position of the drawing area. */
23582 #define BUILD_CHAR_GLYPH_STRINGS(START, END, HEAD, TAIL, HL, X, LAST_X) \
23583 do \
23585 int face_id; \
23586 XChar2b *char2b; \
23588 face_id = (row)->glyphs[area][START].face_id; \
23590 s = alloca (sizeof *s); \
23591 char2b = alloca ((END - START) * sizeof *char2b); \
23592 INIT_GLYPH_STRING (s, char2b, w, row, area, START, HL); \
23593 append_glyph_string (&HEAD, &TAIL, s); \
23594 s->x = (X); \
23595 START = fill_glyph_string (s, face_id, START, END, overlaps); \
23597 while (0)
23600 /* Add a glyph string for a composite sequence to the list of strings
23601 between HEAD and TAIL. START is the index of the first glyph in
23602 row area AREA of glyph row ROW that is part of the new glyph
23603 string. END is the index of the last glyph in that glyph row area.
23604 X is the current output position assigned to the new glyph string
23605 constructed. HL overrides that face of the glyph; e.g. it is
23606 DRAW_CURSOR if a cursor has to be drawn. LAST_X is the right-most
23607 x-position of the drawing area. */
23609 #define BUILD_COMPOSITE_GLYPH_STRING(START, END, HEAD, TAIL, HL, X, LAST_X) \
23610 do { \
23611 int face_id = (row)->glyphs[area][START].face_id; \
23612 struct face *base_face = FACE_FROM_ID (f, face_id); \
23613 ptrdiff_t cmp_id = (row)->glyphs[area][START].u.cmp.id; \
23614 struct composition *cmp = composition_table[cmp_id]; \
23615 XChar2b *char2b; \
23616 struct glyph_string *first_s = NULL; \
23617 int n; \
23619 char2b = alloca (cmp->glyph_len * sizeof *char2b); \
23621 /* Make glyph_strings for each glyph sequence that is drawable by \
23622 the same face, and append them to HEAD/TAIL. */ \
23623 for (n = 0; n < cmp->glyph_len;) \
23625 s = alloca (sizeof *s); \
23626 INIT_GLYPH_STRING (s, char2b, w, row, area, START, HL); \
23627 append_glyph_string (&(HEAD), &(TAIL), s); \
23628 s->cmp = cmp; \
23629 s->cmp_from = n; \
23630 s->x = (X); \
23631 if (n == 0) \
23632 first_s = s; \
23633 n = fill_composite_glyph_string (s, base_face, overlaps); \
23636 ++START; \
23637 s = first_s; \
23638 } while (0)
23641 /* Add a glyph string for a glyph-string sequence to the list of strings
23642 between HEAD and TAIL. */
23644 #define BUILD_GSTRING_GLYPH_STRING(START, END, HEAD, TAIL, HL, X, LAST_X) \
23645 do { \
23646 int face_id; \
23647 XChar2b *char2b; \
23648 Lisp_Object gstring; \
23650 face_id = (row)->glyphs[area][START].face_id; \
23651 gstring = (composition_gstring_from_id \
23652 ((row)->glyphs[area][START].u.cmp.id)); \
23653 s = alloca (sizeof *s); \
23654 char2b = alloca (LGSTRING_GLYPH_LEN (gstring) * sizeof *char2b); \
23655 INIT_GLYPH_STRING (s, char2b, w, row, area, START, HL); \
23656 append_glyph_string (&(HEAD), &(TAIL), s); \
23657 s->x = (X); \
23658 START = fill_gstring_glyph_string (s, face_id, START, END, overlaps); \
23659 } while (0)
23662 /* Add a glyph string for a sequence of glyphless character's glyphs
23663 to the list of strings between HEAD and TAIL. The meanings of
23664 arguments are the same as those of BUILD_CHAR_GLYPH_STRINGS. */
23666 #define BUILD_GLYPHLESS_GLYPH_STRING(START, END, HEAD, TAIL, HL, X, LAST_X) \
23667 do \
23669 int face_id; \
23671 face_id = (row)->glyphs[area][START].face_id; \
23673 s = alloca (sizeof *s); \
23674 INIT_GLYPH_STRING (s, NULL, w, row, area, START, HL); \
23675 append_glyph_string (&HEAD, &TAIL, s); \
23676 s->x = (X); \
23677 START = fill_glyphless_glyph_string (s, face_id, START, END, \
23678 overlaps); \
23680 while (0)
23683 /* Build a list of glyph strings between HEAD and TAIL for the glyphs
23684 of AREA of glyph row ROW on window W between indices START and END.
23685 HL overrides the face for drawing glyph strings, e.g. it is
23686 DRAW_CURSOR to draw a cursor. X and LAST_X are start and end
23687 x-positions of the drawing area.
23689 This is an ugly monster macro construct because we must use alloca
23690 to allocate glyph strings (because draw_glyphs can be called
23691 asynchronously). */
23693 #define BUILD_GLYPH_STRINGS(START, END, HEAD, TAIL, HL, X, LAST_X) \
23694 do \
23696 HEAD = TAIL = NULL; \
23697 while (START < END) \
23699 struct glyph *first_glyph = (row)->glyphs[area] + START; \
23700 switch (first_glyph->type) \
23702 case CHAR_GLYPH: \
23703 BUILD_CHAR_GLYPH_STRINGS (START, END, HEAD, TAIL, \
23704 HL, X, LAST_X); \
23705 break; \
23707 case COMPOSITE_GLYPH: \
23708 if (first_glyph->u.cmp.automatic) \
23709 BUILD_GSTRING_GLYPH_STRING (START, END, HEAD, TAIL, \
23710 HL, X, LAST_X); \
23711 else \
23712 BUILD_COMPOSITE_GLYPH_STRING (START, END, HEAD, TAIL, \
23713 HL, X, LAST_X); \
23714 break; \
23716 case STRETCH_GLYPH: \
23717 BUILD_STRETCH_GLYPH_STRING (START, END, HEAD, TAIL, \
23718 HL, X, LAST_X); \
23719 break; \
23721 case IMAGE_GLYPH: \
23722 BUILD_IMAGE_GLYPH_STRING (START, END, HEAD, TAIL, \
23723 HL, X, LAST_X); \
23724 break; \
23726 case GLYPHLESS_GLYPH: \
23727 BUILD_GLYPHLESS_GLYPH_STRING (START, END, HEAD, TAIL, \
23728 HL, X, LAST_X); \
23729 break; \
23731 default: \
23732 emacs_abort (); \
23735 if (s) \
23737 set_glyph_string_background_width (s, START, LAST_X); \
23738 (X) += s->width; \
23741 } while (0)
23744 /* Draw glyphs between START and END in AREA of ROW on window W,
23745 starting at x-position X. X is relative to AREA in W. HL is a
23746 face-override with the following meaning:
23748 DRAW_NORMAL_TEXT draw normally
23749 DRAW_CURSOR draw in cursor face
23750 DRAW_MOUSE_FACE draw in mouse face.
23751 DRAW_INVERSE_VIDEO draw in mode line face
23752 DRAW_IMAGE_SUNKEN draw an image with a sunken relief around it
23753 DRAW_IMAGE_RAISED draw an image with a raised relief around it
23755 If OVERLAPS is non-zero, draw only the foreground of characters and
23756 clip to the physical height of ROW. Non-zero value also defines
23757 the overlapping part to be drawn:
23759 OVERLAPS_PRED overlap with preceding rows
23760 OVERLAPS_SUCC overlap with succeeding rows
23761 OVERLAPS_BOTH overlap with both preceding/succeeding rows
23762 OVERLAPS_ERASED_CURSOR overlap with erased cursor area
23764 Value is the x-position reached, relative to AREA of W. */
23766 static int
23767 draw_glyphs (struct window *w, int x, struct glyph_row *row,
23768 enum glyph_row_area area, ptrdiff_t start, ptrdiff_t end,
23769 enum draw_glyphs_face hl, int overlaps)
23771 struct glyph_string *head, *tail;
23772 struct glyph_string *s;
23773 struct glyph_string *clip_head = NULL, *clip_tail = NULL;
23774 int i, j, x_reached, last_x, area_left = 0;
23775 struct frame *f = XFRAME (WINDOW_FRAME (w));
23776 DECLARE_HDC (hdc);
23778 ALLOCATE_HDC (hdc, f);
23780 /* Let's rather be paranoid than getting a SEGV. */
23781 end = min (end, row->used[area]);
23782 start = clip_to_bounds (0, start, end);
23784 /* Translate X to frame coordinates. Set last_x to the right
23785 end of the drawing area. */
23786 if (row->full_width_p)
23788 /* X is relative to the left edge of W, without scroll bars
23789 or fringes. */
23790 area_left = WINDOW_LEFT_EDGE_X (w);
23791 last_x = WINDOW_LEFT_EDGE_X (w) + WINDOW_TOTAL_WIDTH (w);
23793 else
23795 area_left = window_box_left (w, area);
23796 last_x = area_left + window_box_width (w, area);
23798 x += area_left;
23800 /* Build a doubly-linked list of glyph_string structures between
23801 head and tail from what we have to draw. Note that the macro
23802 BUILD_GLYPH_STRINGS will modify its start parameter. That's
23803 the reason we use a separate variable `i'. */
23804 i = start;
23805 BUILD_GLYPH_STRINGS (i, end, head, tail, hl, x, last_x);
23806 if (tail)
23807 x_reached = tail->x + tail->background_width;
23808 else
23809 x_reached = x;
23811 /* If there are any glyphs with lbearing < 0 or rbearing > width in
23812 the row, redraw some glyphs in front or following the glyph
23813 strings built above. */
23814 if (head && !overlaps && row->contains_overlapping_glyphs_p)
23816 struct glyph_string *h, *t;
23817 Mouse_HLInfo *hlinfo = MOUSE_HL_INFO (f);
23818 int mouse_beg_col IF_LINT (= 0), mouse_end_col IF_LINT (= 0);
23819 int check_mouse_face = 0;
23820 int dummy_x = 0;
23822 /* If mouse highlighting is on, we may need to draw adjacent
23823 glyphs using mouse-face highlighting. */
23824 if (area == TEXT_AREA && row->mouse_face_p
23825 && hlinfo->mouse_face_beg_row >= 0
23826 && hlinfo->mouse_face_end_row >= 0)
23828 ptrdiff_t row_vpos = MATRIX_ROW_VPOS (row, w->current_matrix);
23830 if (row_vpos >= hlinfo->mouse_face_beg_row
23831 && row_vpos <= hlinfo->mouse_face_end_row)
23833 check_mouse_face = 1;
23834 mouse_beg_col = (row_vpos == hlinfo->mouse_face_beg_row)
23835 ? hlinfo->mouse_face_beg_col : 0;
23836 mouse_end_col = (row_vpos == hlinfo->mouse_face_end_row)
23837 ? hlinfo->mouse_face_end_col
23838 : row->used[TEXT_AREA];
23842 /* Compute overhangs for all glyph strings. */
23843 if (FRAME_RIF (f)->compute_glyph_string_overhangs)
23844 for (s = head; s; s = s->next)
23845 FRAME_RIF (f)->compute_glyph_string_overhangs (s);
23847 /* Prepend glyph strings for glyphs in front of the first glyph
23848 string that are overwritten because of the first glyph
23849 string's left overhang. The background of all strings
23850 prepended must be drawn because the first glyph string
23851 draws over it. */
23852 i = left_overwritten (head);
23853 if (i >= 0)
23855 enum draw_glyphs_face overlap_hl;
23857 /* If this row contains mouse highlighting, attempt to draw
23858 the overlapped glyphs with the correct highlight. This
23859 code fails if the overlap encompasses more than one glyph
23860 and mouse-highlight spans only some of these glyphs.
23861 However, making it work perfectly involves a lot more
23862 code, and I don't know if the pathological case occurs in
23863 practice, so we'll stick to this for now. --- cyd */
23864 if (check_mouse_face
23865 && mouse_beg_col < start && mouse_end_col > i)
23866 overlap_hl = DRAW_MOUSE_FACE;
23867 else
23868 overlap_hl = DRAW_NORMAL_TEXT;
23870 j = i;
23871 BUILD_GLYPH_STRINGS (j, start, h, t,
23872 overlap_hl, dummy_x, last_x);
23873 start = i;
23874 compute_overhangs_and_x (t, head->x, 1);
23875 prepend_glyph_string_lists (&head, &tail, h, t);
23876 clip_head = head;
23879 /* Prepend glyph strings for glyphs in front of the first glyph
23880 string that overwrite that glyph string because of their
23881 right overhang. For these strings, only the foreground must
23882 be drawn, because it draws over the glyph string at `head'.
23883 The background must not be drawn because this would overwrite
23884 right overhangs of preceding glyphs for which no glyph
23885 strings exist. */
23886 i = left_overwriting (head);
23887 if (i >= 0)
23889 enum draw_glyphs_face overlap_hl;
23891 if (check_mouse_face
23892 && mouse_beg_col < start && mouse_end_col > i)
23893 overlap_hl = DRAW_MOUSE_FACE;
23894 else
23895 overlap_hl = DRAW_NORMAL_TEXT;
23897 clip_head = head;
23898 BUILD_GLYPH_STRINGS (i, start, h, t,
23899 overlap_hl, dummy_x, last_x);
23900 for (s = h; s; s = s->next)
23901 s->background_filled_p = 1;
23902 compute_overhangs_and_x (t, head->x, 1);
23903 prepend_glyph_string_lists (&head, &tail, h, t);
23906 /* Append glyphs strings for glyphs following the last glyph
23907 string tail that are overwritten by tail. The background of
23908 these strings has to be drawn because tail's foreground draws
23909 over it. */
23910 i = right_overwritten (tail);
23911 if (i >= 0)
23913 enum draw_glyphs_face overlap_hl;
23915 if (check_mouse_face
23916 && mouse_beg_col < i && mouse_end_col > end)
23917 overlap_hl = DRAW_MOUSE_FACE;
23918 else
23919 overlap_hl = DRAW_NORMAL_TEXT;
23921 BUILD_GLYPH_STRINGS (end, i, h, t,
23922 overlap_hl, x, last_x);
23923 /* Because BUILD_GLYPH_STRINGS updates the first argument,
23924 we don't have `end = i;' here. */
23925 compute_overhangs_and_x (h, tail->x + tail->width, 0);
23926 append_glyph_string_lists (&head, &tail, h, t);
23927 clip_tail = tail;
23930 /* Append glyph strings for glyphs following the last glyph
23931 string tail that overwrite tail. The foreground of such
23932 glyphs has to be drawn because it writes into the background
23933 of tail. The background must not be drawn because it could
23934 paint over the foreground of following glyphs. */
23935 i = right_overwriting (tail);
23936 if (i >= 0)
23938 enum draw_glyphs_face overlap_hl;
23939 if (check_mouse_face
23940 && mouse_beg_col < i && mouse_end_col > end)
23941 overlap_hl = DRAW_MOUSE_FACE;
23942 else
23943 overlap_hl = DRAW_NORMAL_TEXT;
23945 clip_tail = tail;
23946 i++; /* We must include the Ith glyph. */
23947 BUILD_GLYPH_STRINGS (end, i, h, t,
23948 overlap_hl, x, last_x);
23949 for (s = h; s; s = s->next)
23950 s->background_filled_p = 1;
23951 compute_overhangs_and_x (h, tail->x + tail->width, 0);
23952 append_glyph_string_lists (&head, &tail, h, t);
23954 if (clip_head || clip_tail)
23955 for (s = head; s; s = s->next)
23957 s->clip_head = clip_head;
23958 s->clip_tail = clip_tail;
23962 /* Draw all strings. */
23963 for (s = head; s; s = s->next)
23964 FRAME_RIF (f)->draw_glyph_string (s);
23966 #ifndef HAVE_NS
23967 /* When focus a sole frame and move horizontally, this sets on_p to 0
23968 causing a failure to erase prev cursor position. */
23969 if (area == TEXT_AREA
23970 && !row->full_width_p
23971 /* When drawing overlapping rows, only the glyph strings'
23972 foreground is drawn, which doesn't erase a cursor
23973 completely. */
23974 && !overlaps)
23976 int x0 = clip_head ? clip_head->x : (head ? head->x : x);
23977 int x1 = (clip_tail ? clip_tail->x + clip_tail->background_width
23978 : (tail ? tail->x + tail->background_width : x));
23979 x0 -= area_left;
23980 x1 -= area_left;
23982 notice_overwritten_cursor (w, TEXT_AREA, x0, x1,
23983 row->y, MATRIX_ROW_BOTTOM_Y (row));
23985 #endif
23987 /* Value is the x-position up to which drawn, relative to AREA of W.
23988 This doesn't include parts drawn because of overhangs. */
23989 if (row->full_width_p)
23990 x_reached = FRAME_TO_WINDOW_PIXEL_X (w, x_reached);
23991 else
23992 x_reached -= area_left;
23994 RELEASE_HDC (hdc, f);
23996 return x_reached;
23999 /* Expand row matrix if too narrow. Don't expand if area
24000 is not present. */
24002 #define IT_EXPAND_MATRIX_WIDTH(it, area) \
24004 if (!fonts_changed_p \
24005 && (it->glyph_row->glyphs[area] \
24006 < it->glyph_row->glyphs[area + 1])) \
24008 it->w->ncols_scale_factor++; \
24009 fonts_changed_p = 1; \
24013 /* Store one glyph for IT->char_to_display in IT->glyph_row.
24014 Called from x_produce_glyphs when IT->glyph_row is non-null. */
24016 static void
24017 append_glyph (struct it *it)
24019 struct glyph *glyph;
24020 enum glyph_row_area area = it->area;
24022 eassert (it->glyph_row);
24023 eassert (it->char_to_display != '\n' && it->char_to_display != '\t');
24025 glyph = it->glyph_row->glyphs[area] + it->glyph_row->used[area];
24026 if (glyph < it->glyph_row->glyphs[area + 1])
24028 /* If the glyph row is reversed, we need to prepend the glyph
24029 rather than append it. */
24030 if (it->glyph_row->reversed_p && area == TEXT_AREA)
24032 struct glyph *g;
24034 /* Make room for the additional glyph. */
24035 for (g = glyph - 1; g >= it->glyph_row->glyphs[area]; g--)
24036 g[1] = *g;
24037 glyph = it->glyph_row->glyphs[area];
24039 glyph->charpos = CHARPOS (it->position);
24040 glyph->object = it->object;
24041 if (it->pixel_width > 0)
24043 glyph->pixel_width = it->pixel_width;
24044 glyph->padding_p = 0;
24046 else
24048 /* Assure at least 1-pixel width. Otherwise, cursor can't
24049 be displayed correctly. */
24050 glyph->pixel_width = 1;
24051 glyph->padding_p = 1;
24053 glyph->ascent = it->ascent;
24054 glyph->descent = it->descent;
24055 glyph->voffset = it->voffset;
24056 glyph->type = CHAR_GLYPH;
24057 glyph->avoid_cursor_p = it->avoid_cursor_p;
24058 glyph->multibyte_p = it->multibyte_p;
24059 if (it->glyph_row->reversed_p && area == TEXT_AREA)
24061 /* In R2L rows, the left and the right box edges need to be
24062 drawn in reverse direction. */
24063 glyph->right_box_line_p = it->start_of_box_run_p;
24064 glyph->left_box_line_p = it->end_of_box_run_p;
24066 else
24068 glyph->left_box_line_p = it->start_of_box_run_p;
24069 glyph->right_box_line_p = it->end_of_box_run_p;
24071 glyph->overlaps_vertically_p = (it->phys_ascent > it->ascent
24072 || it->phys_descent > it->descent);
24073 glyph->glyph_not_available_p = it->glyph_not_available_p;
24074 glyph->face_id = it->face_id;
24075 glyph->u.ch = it->char_to_display;
24076 glyph->slice.img = null_glyph_slice;
24077 glyph->font_type = FONT_TYPE_UNKNOWN;
24078 if (it->bidi_p)
24080 glyph->resolved_level = it->bidi_it.resolved_level;
24081 if ((it->bidi_it.type & 7) != it->bidi_it.type)
24082 emacs_abort ();
24083 glyph->bidi_type = it->bidi_it.type;
24085 else
24087 glyph->resolved_level = 0;
24088 glyph->bidi_type = UNKNOWN_BT;
24090 ++it->glyph_row->used[area];
24092 else
24093 IT_EXPAND_MATRIX_WIDTH (it, area);
24096 /* Store one glyph for the composition IT->cmp_it.id in
24097 IT->glyph_row. Called from x_produce_glyphs when IT->glyph_row is
24098 non-null. */
24100 static void
24101 append_composite_glyph (struct it *it)
24103 struct glyph *glyph;
24104 enum glyph_row_area area = it->area;
24106 eassert (it->glyph_row);
24108 glyph = it->glyph_row->glyphs[area] + it->glyph_row->used[area];
24109 if (glyph < it->glyph_row->glyphs[area + 1])
24111 /* If the glyph row is reversed, we need to prepend the glyph
24112 rather than append it. */
24113 if (it->glyph_row->reversed_p && it->area == TEXT_AREA)
24115 struct glyph *g;
24117 /* Make room for the new glyph. */
24118 for (g = glyph - 1; g >= it->glyph_row->glyphs[it->area]; g--)
24119 g[1] = *g;
24120 glyph = it->glyph_row->glyphs[it->area];
24122 glyph->charpos = it->cmp_it.charpos;
24123 glyph->object = it->object;
24124 glyph->pixel_width = it->pixel_width;
24125 glyph->ascent = it->ascent;
24126 glyph->descent = it->descent;
24127 glyph->voffset = it->voffset;
24128 glyph->type = COMPOSITE_GLYPH;
24129 if (it->cmp_it.ch < 0)
24131 glyph->u.cmp.automatic = 0;
24132 glyph->u.cmp.id = it->cmp_it.id;
24133 glyph->slice.cmp.from = glyph->slice.cmp.to = 0;
24135 else
24137 glyph->u.cmp.automatic = 1;
24138 glyph->u.cmp.id = it->cmp_it.id;
24139 glyph->slice.cmp.from = it->cmp_it.from;
24140 glyph->slice.cmp.to = it->cmp_it.to - 1;
24142 glyph->avoid_cursor_p = it->avoid_cursor_p;
24143 glyph->multibyte_p = it->multibyte_p;
24144 if (it->glyph_row->reversed_p && area == TEXT_AREA)
24146 /* In R2L rows, the left and the right box edges need to be
24147 drawn in reverse direction. */
24148 glyph->right_box_line_p = it->start_of_box_run_p;
24149 glyph->left_box_line_p = it->end_of_box_run_p;
24151 else
24153 glyph->left_box_line_p = it->start_of_box_run_p;
24154 glyph->right_box_line_p = it->end_of_box_run_p;
24156 glyph->overlaps_vertically_p = (it->phys_ascent > it->ascent
24157 || it->phys_descent > it->descent);
24158 glyph->padding_p = 0;
24159 glyph->glyph_not_available_p = 0;
24160 glyph->face_id = it->face_id;
24161 glyph->font_type = FONT_TYPE_UNKNOWN;
24162 if (it->bidi_p)
24164 glyph->resolved_level = it->bidi_it.resolved_level;
24165 if ((it->bidi_it.type & 7) != it->bidi_it.type)
24166 emacs_abort ();
24167 glyph->bidi_type = it->bidi_it.type;
24169 ++it->glyph_row->used[area];
24171 else
24172 IT_EXPAND_MATRIX_WIDTH (it, area);
24176 /* Change IT->ascent and IT->height according to the setting of
24177 IT->voffset. */
24179 static void
24180 take_vertical_position_into_account (struct it *it)
24182 if (it->voffset)
24184 if (it->voffset < 0)
24185 /* Increase the ascent so that we can display the text higher
24186 in the line. */
24187 it->ascent -= it->voffset;
24188 else
24189 /* Increase the descent so that we can display the text lower
24190 in the line. */
24191 it->descent += it->voffset;
24196 /* Produce glyphs/get display metrics for the image IT is loaded with.
24197 See the description of struct display_iterator in dispextern.h for
24198 an overview of struct display_iterator. */
24200 static void
24201 produce_image_glyph (struct it *it)
24203 struct image *img;
24204 struct face *face;
24205 int glyph_ascent, crop;
24206 struct glyph_slice slice;
24208 eassert (it->what == IT_IMAGE);
24210 face = FACE_FROM_ID (it->f, it->face_id);
24211 eassert (face);
24212 /* Make sure X resources of the face is loaded. */
24213 PREPARE_FACE_FOR_DISPLAY (it->f, face);
24215 if (it->image_id < 0)
24217 /* Fringe bitmap. */
24218 it->ascent = it->phys_ascent = 0;
24219 it->descent = it->phys_descent = 0;
24220 it->pixel_width = 0;
24221 it->nglyphs = 0;
24222 return;
24225 img = IMAGE_FROM_ID (it->f, it->image_id);
24226 eassert (img);
24227 /* Make sure X resources of the image is loaded. */
24228 prepare_image_for_display (it->f, img);
24230 slice.x = slice.y = 0;
24231 slice.width = img->width;
24232 slice.height = img->height;
24234 if (INTEGERP (it->slice.x))
24235 slice.x = XINT (it->slice.x);
24236 else if (FLOATP (it->slice.x))
24237 slice.x = XFLOAT_DATA (it->slice.x) * img->width;
24239 if (INTEGERP (it->slice.y))
24240 slice.y = XINT (it->slice.y);
24241 else if (FLOATP (it->slice.y))
24242 slice.y = XFLOAT_DATA (it->slice.y) * img->height;
24244 if (INTEGERP (it->slice.width))
24245 slice.width = XINT (it->slice.width);
24246 else if (FLOATP (it->slice.width))
24247 slice.width = XFLOAT_DATA (it->slice.width) * img->width;
24249 if (INTEGERP (it->slice.height))
24250 slice.height = XINT (it->slice.height);
24251 else if (FLOATP (it->slice.height))
24252 slice.height = XFLOAT_DATA (it->slice.height) * img->height;
24254 if (slice.x >= img->width)
24255 slice.x = img->width;
24256 if (slice.y >= img->height)
24257 slice.y = img->height;
24258 if (slice.x + slice.width >= img->width)
24259 slice.width = img->width - slice.x;
24260 if (slice.y + slice.height > img->height)
24261 slice.height = img->height - slice.y;
24263 if (slice.width == 0 || slice.height == 0)
24264 return;
24266 it->ascent = it->phys_ascent = glyph_ascent = image_ascent (img, face, &slice);
24268 it->descent = slice.height - glyph_ascent;
24269 if (slice.y == 0)
24270 it->descent += img->vmargin;
24271 if (slice.y + slice.height == img->height)
24272 it->descent += img->vmargin;
24273 it->phys_descent = it->descent;
24275 it->pixel_width = slice.width;
24276 if (slice.x == 0)
24277 it->pixel_width += img->hmargin;
24278 if (slice.x + slice.width == img->width)
24279 it->pixel_width += img->hmargin;
24281 /* It's quite possible for images to have an ascent greater than
24282 their height, so don't get confused in that case. */
24283 if (it->descent < 0)
24284 it->descent = 0;
24286 it->nglyphs = 1;
24288 if (face->box != FACE_NO_BOX)
24290 if (face->box_line_width > 0)
24292 if (slice.y == 0)
24293 it->ascent += face->box_line_width;
24294 if (slice.y + slice.height == img->height)
24295 it->descent += face->box_line_width;
24298 if (it->start_of_box_run_p && slice.x == 0)
24299 it->pixel_width += eabs (face->box_line_width);
24300 if (it->end_of_box_run_p && slice.x + slice.width == img->width)
24301 it->pixel_width += eabs (face->box_line_width);
24304 take_vertical_position_into_account (it);
24306 /* Automatically crop wide image glyphs at right edge so we can
24307 draw the cursor on same display row. */
24308 if ((crop = it->pixel_width - (it->last_visible_x - it->current_x), crop > 0)
24309 && (it->hpos == 0 || it->pixel_width > it->last_visible_x / 4))
24311 it->pixel_width -= crop;
24312 slice.width -= crop;
24315 if (it->glyph_row)
24317 struct glyph *glyph;
24318 enum glyph_row_area area = it->area;
24320 glyph = it->glyph_row->glyphs[area] + it->glyph_row->used[area];
24321 if (glyph < it->glyph_row->glyphs[area + 1])
24323 glyph->charpos = CHARPOS (it->position);
24324 glyph->object = it->object;
24325 glyph->pixel_width = it->pixel_width;
24326 glyph->ascent = glyph_ascent;
24327 glyph->descent = it->descent;
24328 glyph->voffset = it->voffset;
24329 glyph->type = IMAGE_GLYPH;
24330 glyph->avoid_cursor_p = it->avoid_cursor_p;
24331 glyph->multibyte_p = it->multibyte_p;
24332 if (it->glyph_row->reversed_p && area == TEXT_AREA)
24334 /* In R2L rows, the left and the right box edges need to be
24335 drawn in reverse direction. */
24336 glyph->right_box_line_p = it->start_of_box_run_p;
24337 glyph->left_box_line_p = it->end_of_box_run_p;
24339 else
24341 glyph->left_box_line_p = it->start_of_box_run_p;
24342 glyph->right_box_line_p = it->end_of_box_run_p;
24344 glyph->overlaps_vertically_p = 0;
24345 glyph->padding_p = 0;
24346 glyph->glyph_not_available_p = 0;
24347 glyph->face_id = it->face_id;
24348 glyph->u.img_id = img->id;
24349 glyph->slice.img = slice;
24350 glyph->font_type = FONT_TYPE_UNKNOWN;
24351 if (it->bidi_p)
24353 glyph->resolved_level = it->bidi_it.resolved_level;
24354 if ((it->bidi_it.type & 7) != it->bidi_it.type)
24355 emacs_abort ();
24356 glyph->bidi_type = it->bidi_it.type;
24358 ++it->glyph_row->used[area];
24360 else
24361 IT_EXPAND_MATRIX_WIDTH (it, area);
24366 /* Append a stretch glyph to IT->glyph_row. OBJECT is the source
24367 of the glyph, WIDTH and HEIGHT are the width and height of the
24368 stretch. ASCENT is the ascent of the glyph (0 <= ASCENT <= HEIGHT). */
24370 static void
24371 append_stretch_glyph (struct it *it, Lisp_Object object,
24372 int width, int height, int ascent)
24374 struct glyph *glyph;
24375 enum glyph_row_area area = it->area;
24377 eassert (ascent >= 0 && ascent <= height);
24379 glyph = it->glyph_row->glyphs[area] + it->glyph_row->used[area];
24380 if (glyph < it->glyph_row->glyphs[area + 1])
24382 /* If the glyph row is reversed, we need to prepend the glyph
24383 rather than append it. */
24384 if (it->glyph_row->reversed_p && area == TEXT_AREA)
24386 struct glyph *g;
24388 /* Make room for the additional glyph. */
24389 for (g = glyph - 1; g >= it->glyph_row->glyphs[area]; g--)
24390 g[1] = *g;
24391 glyph = it->glyph_row->glyphs[area];
24393 glyph->charpos = CHARPOS (it->position);
24394 glyph->object = object;
24395 glyph->pixel_width = width;
24396 glyph->ascent = ascent;
24397 glyph->descent = height - ascent;
24398 glyph->voffset = it->voffset;
24399 glyph->type = STRETCH_GLYPH;
24400 glyph->avoid_cursor_p = it->avoid_cursor_p;
24401 glyph->multibyte_p = it->multibyte_p;
24402 if (it->glyph_row->reversed_p && area == TEXT_AREA)
24404 /* In R2L rows, the left and the right box edges need to be
24405 drawn in reverse direction. */
24406 glyph->right_box_line_p = it->start_of_box_run_p;
24407 glyph->left_box_line_p = it->end_of_box_run_p;
24409 else
24411 glyph->left_box_line_p = it->start_of_box_run_p;
24412 glyph->right_box_line_p = it->end_of_box_run_p;
24414 glyph->overlaps_vertically_p = 0;
24415 glyph->padding_p = 0;
24416 glyph->glyph_not_available_p = 0;
24417 glyph->face_id = it->face_id;
24418 glyph->u.stretch.ascent = ascent;
24419 glyph->u.stretch.height = height;
24420 glyph->slice.img = null_glyph_slice;
24421 glyph->font_type = FONT_TYPE_UNKNOWN;
24422 if (it->bidi_p)
24424 glyph->resolved_level = it->bidi_it.resolved_level;
24425 if ((it->bidi_it.type & 7) != it->bidi_it.type)
24426 emacs_abort ();
24427 glyph->bidi_type = it->bidi_it.type;
24429 else
24431 glyph->resolved_level = 0;
24432 glyph->bidi_type = UNKNOWN_BT;
24434 ++it->glyph_row->used[area];
24436 else
24437 IT_EXPAND_MATRIX_WIDTH (it, area);
24440 #endif /* HAVE_WINDOW_SYSTEM */
24442 /* Produce a stretch glyph for iterator IT. IT->object is the value
24443 of the glyph property displayed. The value must be a list
24444 `(space KEYWORD VALUE ...)' with the following KEYWORD/VALUE pairs
24445 being recognized:
24447 1. `:width WIDTH' specifies that the space should be WIDTH *
24448 canonical char width wide. WIDTH may be an integer or floating
24449 point number.
24451 2. `:relative-width FACTOR' specifies that the width of the stretch
24452 should be computed from the width of the first character having the
24453 `glyph' property, and should be FACTOR times that width.
24455 3. `:align-to HPOS' specifies that the space should be wide enough
24456 to reach HPOS, a value in canonical character units.
24458 Exactly one of the above pairs must be present.
24460 4. `:height HEIGHT' specifies that the height of the stretch produced
24461 should be HEIGHT, measured in canonical character units.
24463 5. `:relative-height FACTOR' specifies that the height of the
24464 stretch should be FACTOR times the height of the characters having
24465 the glyph property.
24467 Either none or exactly one of 4 or 5 must be present.
24469 6. `:ascent ASCENT' specifies that ASCENT percent of the height
24470 of the stretch should be used for the ascent of the stretch.
24471 ASCENT must be in the range 0 <= ASCENT <= 100. */
24473 void
24474 produce_stretch_glyph (struct it *it)
24476 /* (space :width WIDTH :height HEIGHT ...) */
24477 Lisp_Object prop, plist;
24478 int width = 0, height = 0, align_to = -1;
24479 int zero_width_ok_p = 0;
24480 double tem;
24481 struct font *font = NULL;
24483 #ifdef HAVE_WINDOW_SYSTEM
24484 int ascent = 0;
24485 int zero_height_ok_p = 0;
24487 if (FRAME_WINDOW_P (it->f))
24489 struct face *face = FACE_FROM_ID (it->f, it->face_id);
24490 font = face->font ? face->font : FRAME_FONT (it->f);
24491 PREPARE_FACE_FOR_DISPLAY (it->f, face);
24493 #endif
24495 /* List should start with `space'. */
24496 eassert (CONSP (it->object) && EQ (XCAR (it->object), Qspace));
24497 plist = XCDR (it->object);
24499 /* Compute the width of the stretch. */
24500 if ((prop = Fplist_get (plist, QCwidth), !NILP (prop))
24501 && calc_pixel_width_or_height (&tem, it, prop, font, 1, 0))
24503 /* Absolute width `:width WIDTH' specified and valid. */
24504 zero_width_ok_p = 1;
24505 width = (int)tem;
24507 #ifdef HAVE_WINDOW_SYSTEM
24508 else if (FRAME_WINDOW_P (it->f)
24509 && (prop = Fplist_get (plist, QCrelative_width), NUMVAL (prop) > 0))
24511 /* Relative width `:relative-width FACTOR' specified and valid.
24512 Compute the width of the characters having the `glyph'
24513 property. */
24514 struct it it2;
24515 unsigned char *p = BYTE_POS_ADDR (IT_BYTEPOS (*it));
24517 it2 = *it;
24518 if (it->multibyte_p)
24519 it2.c = it2.char_to_display = STRING_CHAR_AND_LENGTH (p, it2.len);
24520 else
24522 it2.c = it2.char_to_display = *p, it2.len = 1;
24523 if (! ASCII_CHAR_P (it2.c))
24524 it2.char_to_display = BYTE8_TO_CHAR (it2.c);
24527 it2.glyph_row = NULL;
24528 it2.what = IT_CHARACTER;
24529 x_produce_glyphs (&it2);
24530 width = NUMVAL (prop) * it2.pixel_width;
24532 #endif /* HAVE_WINDOW_SYSTEM */
24533 else if ((prop = Fplist_get (plist, QCalign_to), !NILP (prop))
24534 && calc_pixel_width_or_height (&tem, it, prop, font, 1, &align_to))
24536 if (it->glyph_row == NULL || !it->glyph_row->mode_line_p)
24537 align_to = (align_to < 0
24539 : align_to - window_box_left_offset (it->w, TEXT_AREA));
24540 else if (align_to < 0)
24541 align_to = window_box_left_offset (it->w, TEXT_AREA);
24542 width = max (0, (int)tem + align_to - it->current_x);
24543 zero_width_ok_p = 1;
24545 else
24546 /* Nothing specified -> width defaults to canonical char width. */
24547 width = FRAME_COLUMN_WIDTH (it->f);
24549 if (width <= 0 && (width < 0 || !zero_width_ok_p))
24550 width = 1;
24552 #ifdef HAVE_WINDOW_SYSTEM
24553 /* Compute height. */
24554 if (FRAME_WINDOW_P (it->f))
24556 if ((prop = Fplist_get (plist, QCheight), !NILP (prop))
24557 && calc_pixel_width_or_height (&tem, it, prop, font, 0, 0))
24559 height = (int)tem;
24560 zero_height_ok_p = 1;
24562 else if (prop = Fplist_get (plist, QCrelative_height),
24563 NUMVAL (prop) > 0)
24564 height = FONT_HEIGHT (font) * NUMVAL (prop);
24565 else
24566 height = FONT_HEIGHT (font);
24568 if (height <= 0 && (height < 0 || !zero_height_ok_p))
24569 height = 1;
24571 /* Compute percentage of height used for ascent. If
24572 `:ascent ASCENT' is present and valid, use that. Otherwise,
24573 derive the ascent from the font in use. */
24574 if (prop = Fplist_get (plist, QCascent),
24575 NUMVAL (prop) > 0 && NUMVAL (prop) <= 100)
24576 ascent = height * NUMVAL (prop) / 100.0;
24577 else if (!NILP (prop)
24578 && calc_pixel_width_or_height (&tem, it, prop, font, 0, 0))
24579 ascent = min (max (0, (int)tem), height);
24580 else
24581 ascent = (height * FONT_BASE (font)) / FONT_HEIGHT (font);
24583 else
24584 #endif /* HAVE_WINDOW_SYSTEM */
24585 height = 1;
24587 if (width > 0 && it->line_wrap != TRUNCATE
24588 && it->current_x + width > it->last_visible_x)
24590 width = it->last_visible_x - it->current_x;
24591 #ifdef HAVE_WINDOW_SYSTEM
24592 /* Subtract one more pixel from the stretch width, but only on
24593 GUI frames, since on a TTY each glyph is one "pixel" wide. */
24594 width -= FRAME_WINDOW_P (it->f);
24595 #endif
24598 if (width > 0 && height > 0 && it->glyph_row)
24600 Lisp_Object o_object = it->object;
24601 Lisp_Object object = it->stack[it->sp - 1].string;
24602 int n = width;
24604 if (!STRINGP (object))
24605 object = it->w->contents;
24606 #ifdef HAVE_WINDOW_SYSTEM
24607 if (FRAME_WINDOW_P (it->f))
24608 append_stretch_glyph (it, object, width, height, ascent);
24609 else
24610 #endif
24612 it->object = object;
24613 it->char_to_display = ' ';
24614 it->pixel_width = it->len = 1;
24615 while (n--)
24616 tty_append_glyph (it);
24617 it->object = o_object;
24621 it->pixel_width = width;
24622 #ifdef HAVE_WINDOW_SYSTEM
24623 if (FRAME_WINDOW_P (it->f))
24625 it->ascent = it->phys_ascent = ascent;
24626 it->descent = it->phys_descent = height - it->ascent;
24627 it->nglyphs = width > 0 && height > 0 ? 1 : 0;
24628 take_vertical_position_into_account (it);
24630 else
24631 #endif
24632 it->nglyphs = width;
24635 /* Get information about special display element WHAT in an
24636 environment described by IT. WHAT is one of IT_TRUNCATION or
24637 IT_CONTINUATION. Maybe produce glyphs for WHAT if IT has a
24638 non-null glyph_row member. This function ensures that fields like
24639 face_id, c, len of IT are left untouched. */
24641 static void
24642 produce_special_glyphs (struct it *it, enum display_element_type what)
24644 struct it temp_it;
24645 Lisp_Object gc;
24646 GLYPH glyph;
24648 temp_it = *it;
24649 temp_it.object = make_number (0);
24650 memset (&temp_it.current, 0, sizeof temp_it.current);
24652 if (what == IT_CONTINUATION)
24654 /* Continuation glyph. For R2L lines, we mirror it by hand. */
24655 if (it->bidi_it.paragraph_dir == R2L)
24656 SET_GLYPH_FROM_CHAR (glyph, '/');
24657 else
24658 SET_GLYPH_FROM_CHAR (glyph, '\\');
24659 if (it->dp
24660 && (gc = DISP_CONTINUE_GLYPH (it->dp), GLYPH_CODE_P (gc)))
24662 /* FIXME: Should we mirror GC for R2L lines? */
24663 SET_GLYPH_FROM_GLYPH_CODE (glyph, gc);
24664 spec_glyph_lookup_face (XWINDOW (it->window), &glyph);
24667 else if (what == IT_TRUNCATION)
24669 /* Truncation glyph. */
24670 SET_GLYPH_FROM_CHAR (glyph, '$');
24671 if (it->dp
24672 && (gc = DISP_TRUNC_GLYPH (it->dp), GLYPH_CODE_P (gc)))
24674 /* FIXME: Should we mirror GC for R2L lines? */
24675 SET_GLYPH_FROM_GLYPH_CODE (glyph, gc);
24676 spec_glyph_lookup_face (XWINDOW (it->window), &glyph);
24679 else
24680 emacs_abort ();
24682 #ifdef HAVE_WINDOW_SYSTEM
24683 /* On a GUI frame, when the right fringe (left fringe for R2L rows)
24684 is turned off, we precede the truncation/continuation glyphs by a
24685 stretch glyph whose width is computed such that these special
24686 glyphs are aligned at the window margin, even when very different
24687 fonts are used in different glyph rows. */
24688 if (FRAME_WINDOW_P (temp_it.f)
24689 /* init_iterator calls this with it->glyph_row == NULL, and it
24690 wants only the pixel width of the truncation/continuation
24691 glyphs. */
24692 && temp_it.glyph_row
24693 /* insert_left_trunc_glyphs calls us at the beginning of the
24694 row, and it has its own calculation of the stretch glyph
24695 width. */
24696 && temp_it.glyph_row->used[TEXT_AREA] > 0
24697 && (temp_it.glyph_row->reversed_p
24698 ? WINDOW_LEFT_FRINGE_WIDTH (temp_it.w)
24699 : WINDOW_RIGHT_FRINGE_WIDTH (temp_it.w)) == 0)
24701 int stretch_width = temp_it.last_visible_x - temp_it.current_x;
24703 if (stretch_width > 0)
24705 struct face *face = FACE_FROM_ID (temp_it.f, temp_it.face_id);
24706 struct font *font =
24707 face->font ? face->font : FRAME_FONT (temp_it.f);
24708 int stretch_ascent =
24709 (((temp_it.ascent + temp_it.descent)
24710 * FONT_BASE (font)) / FONT_HEIGHT (font));
24712 append_stretch_glyph (&temp_it, make_number (0), stretch_width,
24713 temp_it.ascent + temp_it.descent,
24714 stretch_ascent);
24717 #endif
24719 temp_it.dp = NULL;
24720 temp_it.what = IT_CHARACTER;
24721 temp_it.len = 1;
24722 temp_it.c = temp_it.char_to_display = GLYPH_CHAR (glyph);
24723 temp_it.face_id = GLYPH_FACE (glyph);
24724 temp_it.len = CHAR_BYTES (temp_it.c);
24726 PRODUCE_GLYPHS (&temp_it);
24727 it->pixel_width = temp_it.pixel_width;
24728 it->nglyphs = temp_it.pixel_width;
24731 #ifdef HAVE_WINDOW_SYSTEM
24733 /* Calculate line-height and line-spacing properties.
24734 An integer value specifies explicit pixel value.
24735 A float value specifies relative value to current face height.
24736 A cons (float . face-name) specifies relative value to
24737 height of specified face font.
24739 Returns height in pixels, or nil. */
24742 static Lisp_Object
24743 calc_line_height_property (struct it *it, Lisp_Object val, struct font *font,
24744 int boff, int override)
24746 Lisp_Object face_name = Qnil;
24747 int ascent, descent, height;
24749 if (NILP (val) || INTEGERP (val) || (override && EQ (val, Qt)))
24750 return val;
24752 if (CONSP (val))
24754 face_name = XCAR (val);
24755 val = XCDR (val);
24756 if (!NUMBERP (val))
24757 val = make_number (1);
24758 if (NILP (face_name))
24760 height = it->ascent + it->descent;
24761 goto scale;
24765 if (NILP (face_name))
24767 font = FRAME_FONT (it->f);
24768 boff = FRAME_BASELINE_OFFSET (it->f);
24770 else if (EQ (face_name, Qt))
24772 override = 0;
24774 else
24776 int face_id;
24777 struct face *face;
24779 face_id = lookup_named_face (it->f, face_name, 0);
24780 if (face_id < 0)
24781 return make_number (-1);
24783 face = FACE_FROM_ID (it->f, face_id);
24784 font = face->font;
24785 if (font == NULL)
24786 return make_number (-1);
24787 boff = font->baseline_offset;
24788 if (font->vertical_centering)
24789 boff = VCENTER_BASELINE_OFFSET (font, it->f) - boff;
24792 ascent = FONT_BASE (font) + boff;
24793 descent = FONT_DESCENT (font) - boff;
24795 if (override)
24797 it->override_ascent = ascent;
24798 it->override_descent = descent;
24799 it->override_boff = boff;
24802 height = ascent + descent;
24804 scale:
24805 if (FLOATP (val))
24806 height = (int)(XFLOAT_DATA (val) * height);
24807 else if (INTEGERP (val))
24808 height *= XINT (val);
24810 return make_number (height);
24814 /* Append a glyph for a glyphless character to IT->glyph_row. FACE_ID
24815 is a face ID to be used for the glyph. FOR_NO_FONT is nonzero if
24816 and only if this is for a character for which no font was found.
24818 If the display method (it->glyphless_method) is
24819 GLYPHLESS_DISPLAY_ACRONYM or GLYPHLESS_DISPLAY_HEX_CODE, LEN is a
24820 length of the acronym or the hexadecimal string, UPPER_XOFF and
24821 UPPER_YOFF are pixel offsets for the upper part of the string,
24822 LOWER_XOFF and LOWER_YOFF are for the lower part.
24824 For the other display methods, LEN through LOWER_YOFF are zero. */
24826 static void
24827 append_glyphless_glyph (struct it *it, int face_id, int for_no_font, int len,
24828 short upper_xoff, short upper_yoff,
24829 short lower_xoff, short lower_yoff)
24831 struct glyph *glyph;
24832 enum glyph_row_area area = it->area;
24834 glyph = it->glyph_row->glyphs[area] + it->glyph_row->used[area];
24835 if (glyph < it->glyph_row->glyphs[area + 1])
24837 /* If the glyph row is reversed, we need to prepend the glyph
24838 rather than append it. */
24839 if (it->glyph_row->reversed_p && area == TEXT_AREA)
24841 struct glyph *g;
24843 /* Make room for the additional glyph. */
24844 for (g = glyph - 1; g >= it->glyph_row->glyphs[area]; g--)
24845 g[1] = *g;
24846 glyph = it->glyph_row->glyphs[area];
24848 glyph->charpos = CHARPOS (it->position);
24849 glyph->object = it->object;
24850 glyph->pixel_width = it->pixel_width;
24851 glyph->ascent = it->ascent;
24852 glyph->descent = it->descent;
24853 glyph->voffset = it->voffset;
24854 glyph->type = GLYPHLESS_GLYPH;
24855 glyph->u.glyphless.method = it->glyphless_method;
24856 glyph->u.glyphless.for_no_font = for_no_font;
24857 glyph->u.glyphless.len = len;
24858 glyph->u.glyphless.ch = it->c;
24859 glyph->slice.glyphless.upper_xoff = upper_xoff;
24860 glyph->slice.glyphless.upper_yoff = upper_yoff;
24861 glyph->slice.glyphless.lower_xoff = lower_xoff;
24862 glyph->slice.glyphless.lower_yoff = lower_yoff;
24863 glyph->avoid_cursor_p = it->avoid_cursor_p;
24864 glyph->multibyte_p = it->multibyte_p;
24865 if (it->glyph_row->reversed_p && area == TEXT_AREA)
24867 /* In R2L rows, the left and the right box edges need to be
24868 drawn in reverse direction. */
24869 glyph->right_box_line_p = it->start_of_box_run_p;
24870 glyph->left_box_line_p = it->end_of_box_run_p;
24872 else
24874 glyph->left_box_line_p = it->start_of_box_run_p;
24875 glyph->right_box_line_p = it->end_of_box_run_p;
24877 glyph->overlaps_vertically_p = (it->phys_ascent > it->ascent
24878 || it->phys_descent > it->descent);
24879 glyph->padding_p = 0;
24880 glyph->glyph_not_available_p = 0;
24881 glyph->face_id = face_id;
24882 glyph->font_type = FONT_TYPE_UNKNOWN;
24883 if (it->bidi_p)
24885 glyph->resolved_level = it->bidi_it.resolved_level;
24886 if ((it->bidi_it.type & 7) != it->bidi_it.type)
24887 emacs_abort ();
24888 glyph->bidi_type = it->bidi_it.type;
24890 ++it->glyph_row->used[area];
24892 else
24893 IT_EXPAND_MATRIX_WIDTH (it, area);
24897 /* Produce a glyph for a glyphless character for iterator IT.
24898 IT->glyphless_method specifies which method to use for displaying
24899 the character. See the description of enum
24900 glyphless_display_method in dispextern.h for the detail.
24902 FOR_NO_FONT is nonzero if and only if this is for a character for
24903 which no font was found. ACRONYM, if non-nil, is an acronym string
24904 for the character. */
24906 static void
24907 produce_glyphless_glyph (struct it *it, int for_no_font, Lisp_Object acronym)
24909 int face_id;
24910 struct face *face;
24911 struct font *font;
24912 int base_width, base_height, width, height;
24913 short upper_xoff, upper_yoff, lower_xoff, lower_yoff;
24914 int len;
24916 /* Get the metrics of the base font. We always refer to the current
24917 ASCII face. */
24918 face = FACE_FROM_ID (it->f, it->face_id)->ascii_face;
24919 font = face->font ? face->font : FRAME_FONT (it->f);
24920 it->ascent = FONT_BASE (font) + font->baseline_offset;
24921 it->descent = FONT_DESCENT (font) - font->baseline_offset;
24922 base_height = it->ascent + it->descent;
24923 base_width = font->average_width;
24925 /* Get a face ID for the glyph by utilizing a cache (the same way as
24926 done for `escape-glyph' in get_next_display_element). */
24927 if (it->f == last_glyphless_glyph_frame
24928 && it->face_id == last_glyphless_glyph_face_id)
24930 face_id = last_glyphless_glyph_merged_face_id;
24932 else
24934 /* Merge the `glyphless-char' face into the current face. */
24935 face_id = merge_faces (it->f, Qglyphless_char, 0, it->face_id);
24936 last_glyphless_glyph_frame = it->f;
24937 last_glyphless_glyph_face_id = it->face_id;
24938 last_glyphless_glyph_merged_face_id = face_id;
24941 if (it->glyphless_method == GLYPHLESS_DISPLAY_THIN_SPACE)
24943 it->pixel_width = THIN_SPACE_WIDTH;
24944 len = 0;
24945 upper_xoff = upper_yoff = lower_xoff = lower_yoff = 0;
24947 else if (it->glyphless_method == GLYPHLESS_DISPLAY_EMPTY_BOX)
24949 width = CHAR_WIDTH (it->c);
24950 if (width == 0)
24951 width = 1;
24952 else if (width > 4)
24953 width = 4;
24954 it->pixel_width = base_width * width;
24955 len = 0;
24956 upper_xoff = upper_yoff = lower_xoff = lower_yoff = 0;
24958 else
24960 char buf[7];
24961 const char *str;
24962 unsigned int code[6];
24963 int upper_len;
24964 int ascent, descent;
24965 struct font_metrics metrics_upper, metrics_lower;
24967 face = FACE_FROM_ID (it->f, face_id);
24968 font = face->font ? face->font : FRAME_FONT (it->f);
24969 PREPARE_FACE_FOR_DISPLAY (it->f, face);
24971 if (it->glyphless_method == GLYPHLESS_DISPLAY_ACRONYM)
24973 if (! STRINGP (acronym) && CHAR_TABLE_P (Vglyphless_char_display))
24974 acronym = CHAR_TABLE_REF (Vglyphless_char_display, it->c);
24975 if (CONSP (acronym))
24976 acronym = XCAR (acronym);
24977 str = STRINGP (acronym) ? SSDATA (acronym) : "";
24979 else
24981 eassert (it->glyphless_method == GLYPHLESS_DISPLAY_HEX_CODE);
24982 sprintf (buf, "%0*X", it->c < 0x10000 ? 4 : 6, it->c);
24983 str = buf;
24985 for (len = 0; str[len] && ASCII_BYTE_P (str[len]) && len < 6; len++)
24986 code[len] = font->driver->encode_char (font, str[len]);
24987 upper_len = (len + 1) / 2;
24988 font->driver->text_extents (font, code, upper_len,
24989 &metrics_upper);
24990 font->driver->text_extents (font, code + upper_len, len - upper_len,
24991 &metrics_lower);
24995 /* +4 is for vertical bars of a box plus 1-pixel spaces at both side. */
24996 width = max (metrics_upper.width, metrics_lower.width) + 4;
24997 upper_xoff = upper_yoff = 2; /* the typical case */
24998 if (base_width >= width)
25000 /* Align the upper to the left, the lower to the right. */
25001 it->pixel_width = base_width;
25002 lower_xoff = base_width - 2 - metrics_lower.width;
25004 else
25006 /* Center the shorter one. */
25007 it->pixel_width = width;
25008 if (metrics_upper.width >= metrics_lower.width)
25009 lower_xoff = (width - metrics_lower.width) / 2;
25010 else
25012 /* FIXME: This code doesn't look right. It formerly was
25013 missing the "lower_xoff = 0;", which couldn't have
25014 been right since it left lower_xoff uninitialized. */
25015 lower_xoff = 0;
25016 upper_xoff = (width - metrics_upper.width) / 2;
25020 /* +5 is for horizontal bars of a box plus 1-pixel spaces at
25021 top, bottom, and between upper and lower strings. */
25022 height = (metrics_upper.ascent + metrics_upper.descent
25023 + metrics_lower.ascent + metrics_lower.descent) + 5;
25024 /* Center vertically.
25025 H:base_height, D:base_descent
25026 h:height, ld:lower_descent, la:lower_ascent, ud:upper_descent
25028 ascent = - (D - H/2 - h/2 + 1); "+ 1" for rounding up
25029 descent = D - H/2 + h/2;
25030 lower_yoff = descent - 2 - ld;
25031 upper_yoff = lower_yoff - la - 1 - ud; */
25032 ascent = - (it->descent - (base_height + height + 1) / 2);
25033 descent = it->descent - (base_height - height) / 2;
25034 lower_yoff = descent - 2 - metrics_lower.descent;
25035 upper_yoff = (lower_yoff - metrics_lower.ascent - 1
25036 - metrics_upper.descent);
25037 /* Don't make the height shorter than the base height. */
25038 if (height > base_height)
25040 it->ascent = ascent;
25041 it->descent = descent;
25045 it->phys_ascent = it->ascent;
25046 it->phys_descent = it->descent;
25047 if (it->glyph_row)
25048 append_glyphless_glyph (it, face_id, for_no_font, len,
25049 upper_xoff, upper_yoff,
25050 lower_xoff, lower_yoff);
25051 it->nglyphs = 1;
25052 take_vertical_position_into_account (it);
25056 /* RIF:
25057 Produce glyphs/get display metrics for the display element IT is
25058 loaded with. See the description of struct it in dispextern.h
25059 for an overview of struct it. */
25061 void
25062 x_produce_glyphs (struct it *it)
25064 int extra_line_spacing = it->extra_line_spacing;
25066 it->glyph_not_available_p = 0;
25068 if (it->what == IT_CHARACTER)
25070 XChar2b char2b;
25071 struct face *face = FACE_FROM_ID (it->f, it->face_id);
25072 struct font *font = face->font;
25073 struct font_metrics *pcm = NULL;
25074 int boff; /* baseline offset */
25076 if (font == NULL)
25078 /* When no suitable font is found, display this character by
25079 the method specified in the first extra slot of
25080 Vglyphless_char_display. */
25081 Lisp_Object acronym = lookup_glyphless_char_display (-1, it);
25083 eassert (it->what == IT_GLYPHLESS);
25084 produce_glyphless_glyph (it, 1, STRINGP (acronym) ? acronym : Qnil);
25085 goto done;
25088 boff = font->baseline_offset;
25089 if (font->vertical_centering)
25090 boff = VCENTER_BASELINE_OFFSET (font, it->f) - boff;
25092 if (it->char_to_display != '\n' && it->char_to_display != '\t')
25094 int stretched_p;
25096 it->nglyphs = 1;
25098 if (it->override_ascent >= 0)
25100 it->ascent = it->override_ascent;
25101 it->descent = it->override_descent;
25102 boff = it->override_boff;
25104 else
25106 it->ascent = FONT_BASE (font) + boff;
25107 it->descent = FONT_DESCENT (font) - boff;
25110 if (get_char_glyph_code (it->char_to_display, font, &char2b))
25112 pcm = get_per_char_metric (font, &char2b);
25113 if (pcm->width == 0
25114 && pcm->rbearing == 0 && pcm->lbearing == 0)
25115 pcm = NULL;
25118 if (pcm)
25120 it->phys_ascent = pcm->ascent + boff;
25121 it->phys_descent = pcm->descent - boff;
25122 it->pixel_width = pcm->width;
25124 else
25126 it->glyph_not_available_p = 1;
25127 it->phys_ascent = it->ascent;
25128 it->phys_descent = it->descent;
25129 it->pixel_width = font->space_width;
25132 if (it->constrain_row_ascent_descent_p)
25134 if (it->descent > it->max_descent)
25136 it->ascent += it->descent - it->max_descent;
25137 it->descent = it->max_descent;
25139 if (it->ascent > it->max_ascent)
25141 it->descent = min (it->max_descent, it->descent + it->ascent - it->max_ascent);
25142 it->ascent = it->max_ascent;
25144 it->phys_ascent = min (it->phys_ascent, it->ascent);
25145 it->phys_descent = min (it->phys_descent, it->descent);
25146 extra_line_spacing = 0;
25149 /* If this is a space inside a region of text with
25150 `space-width' property, change its width. */
25151 stretched_p = it->char_to_display == ' ' && !NILP (it->space_width);
25152 if (stretched_p)
25153 it->pixel_width *= XFLOATINT (it->space_width);
25155 /* If face has a box, add the box thickness to the character
25156 height. If character has a box line to the left and/or
25157 right, add the box line width to the character's width. */
25158 if (face->box != FACE_NO_BOX)
25160 int thick = face->box_line_width;
25162 if (thick > 0)
25164 it->ascent += thick;
25165 it->descent += thick;
25167 else
25168 thick = -thick;
25170 if (it->start_of_box_run_p)
25171 it->pixel_width += thick;
25172 if (it->end_of_box_run_p)
25173 it->pixel_width += thick;
25176 /* If face has an overline, add the height of the overline
25177 (1 pixel) and a 1 pixel margin to the character height. */
25178 if (face->overline_p)
25179 it->ascent += overline_margin;
25181 if (it->constrain_row_ascent_descent_p)
25183 if (it->ascent > it->max_ascent)
25184 it->ascent = it->max_ascent;
25185 if (it->descent > it->max_descent)
25186 it->descent = it->max_descent;
25189 take_vertical_position_into_account (it);
25191 /* If we have to actually produce glyphs, do it. */
25192 if (it->glyph_row)
25194 if (stretched_p)
25196 /* Translate a space with a `space-width' property
25197 into a stretch glyph. */
25198 int ascent = (((it->ascent + it->descent) * FONT_BASE (font))
25199 / FONT_HEIGHT (font));
25200 append_stretch_glyph (it, it->object, it->pixel_width,
25201 it->ascent + it->descent, ascent);
25203 else
25204 append_glyph (it);
25206 /* If characters with lbearing or rbearing are displayed
25207 in this line, record that fact in a flag of the
25208 glyph row. This is used to optimize X output code. */
25209 if (pcm && (pcm->lbearing < 0 || pcm->rbearing > pcm->width))
25210 it->glyph_row->contains_overlapping_glyphs_p = 1;
25212 if (! stretched_p && it->pixel_width == 0)
25213 /* We assure that all visible glyphs have at least 1-pixel
25214 width. */
25215 it->pixel_width = 1;
25217 else if (it->char_to_display == '\n')
25219 /* A newline has no width, but we need the height of the
25220 line. But if previous part of the line sets a height,
25221 don't increase that height */
25223 Lisp_Object height;
25224 Lisp_Object total_height = Qnil;
25226 it->override_ascent = -1;
25227 it->pixel_width = 0;
25228 it->nglyphs = 0;
25230 height = get_it_property (it, Qline_height);
25231 /* Split (line-height total-height) list */
25232 if (CONSP (height)
25233 && CONSP (XCDR (height))
25234 && NILP (XCDR (XCDR (height))))
25236 total_height = XCAR (XCDR (height));
25237 height = XCAR (height);
25239 height = calc_line_height_property (it, height, font, boff, 1);
25241 if (it->override_ascent >= 0)
25243 it->ascent = it->override_ascent;
25244 it->descent = it->override_descent;
25245 boff = it->override_boff;
25247 else
25249 it->ascent = FONT_BASE (font) + boff;
25250 it->descent = FONT_DESCENT (font) - boff;
25253 if (EQ (height, Qt))
25255 if (it->descent > it->max_descent)
25257 it->ascent += it->descent - it->max_descent;
25258 it->descent = it->max_descent;
25260 if (it->ascent > it->max_ascent)
25262 it->descent = min (it->max_descent, it->descent + it->ascent - it->max_ascent);
25263 it->ascent = it->max_ascent;
25265 it->phys_ascent = min (it->phys_ascent, it->ascent);
25266 it->phys_descent = min (it->phys_descent, it->descent);
25267 it->constrain_row_ascent_descent_p = 1;
25268 extra_line_spacing = 0;
25270 else
25272 Lisp_Object spacing;
25274 it->phys_ascent = it->ascent;
25275 it->phys_descent = it->descent;
25277 if ((it->max_ascent > 0 || it->max_descent > 0)
25278 && face->box != FACE_NO_BOX
25279 && face->box_line_width > 0)
25281 it->ascent += face->box_line_width;
25282 it->descent += face->box_line_width;
25284 if (!NILP (height)
25285 && XINT (height) > it->ascent + it->descent)
25286 it->ascent = XINT (height) - it->descent;
25288 if (!NILP (total_height))
25289 spacing = calc_line_height_property (it, total_height, font, boff, 0);
25290 else
25292 spacing = get_it_property (it, Qline_spacing);
25293 spacing = calc_line_height_property (it, spacing, font, boff, 0);
25295 if (INTEGERP (spacing))
25297 extra_line_spacing = XINT (spacing);
25298 if (!NILP (total_height))
25299 extra_line_spacing -= (it->phys_ascent + it->phys_descent);
25303 else /* i.e. (it->char_to_display == '\t') */
25305 if (font->space_width > 0)
25307 int tab_width = it->tab_width * font->space_width;
25308 int x = it->current_x + it->continuation_lines_width;
25309 int next_tab_x = ((1 + x + tab_width - 1) / tab_width) * tab_width;
25311 /* If the distance from the current position to the next tab
25312 stop is less than a space character width, use the
25313 tab stop after that. */
25314 if (next_tab_x - x < font->space_width)
25315 next_tab_x += tab_width;
25317 it->pixel_width = next_tab_x - x;
25318 it->nglyphs = 1;
25319 it->ascent = it->phys_ascent = FONT_BASE (font) + boff;
25320 it->descent = it->phys_descent = FONT_DESCENT (font) - boff;
25322 if (it->glyph_row)
25324 append_stretch_glyph (it, it->object, it->pixel_width,
25325 it->ascent + it->descent, it->ascent);
25328 else
25330 it->pixel_width = 0;
25331 it->nglyphs = 1;
25335 else if (it->what == IT_COMPOSITION && it->cmp_it.ch < 0)
25337 /* A static composition.
25339 Note: A composition is represented as one glyph in the
25340 glyph matrix. There are no padding glyphs.
25342 Important note: pixel_width, ascent, and descent are the
25343 values of what is drawn by draw_glyphs (i.e. the values of
25344 the overall glyphs composed). */
25345 struct face *face = FACE_FROM_ID (it->f, it->face_id);
25346 int boff; /* baseline offset */
25347 struct composition *cmp = composition_table[it->cmp_it.id];
25348 int glyph_len = cmp->glyph_len;
25349 struct font *font = face->font;
25351 it->nglyphs = 1;
25353 /* If we have not yet calculated pixel size data of glyphs of
25354 the composition for the current face font, calculate them
25355 now. Theoretically, we have to check all fonts for the
25356 glyphs, but that requires much time and memory space. So,
25357 here we check only the font of the first glyph. This may
25358 lead to incorrect display, but it's very rare, and C-l
25359 (recenter-top-bottom) can correct the display anyway. */
25360 if (! cmp->font || cmp->font != font)
25362 /* Ascent and descent of the font of the first character
25363 of this composition (adjusted by baseline offset).
25364 Ascent and descent of overall glyphs should not be less
25365 than these, respectively. */
25366 int font_ascent, font_descent, font_height;
25367 /* Bounding box of the overall glyphs. */
25368 int leftmost, rightmost, lowest, highest;
25369 int lbearing, rbearing;
25370 int i, width, ascent, descent;
25371 int left_padded = 0, right_padded = 0;
25372 int c IF_LINT (= 0); /* cmp->glyph_len can't be zero; see Bug#8512 */
25373 XChar2b char2b;
25374 struct font_metrics *pcm;
25375 int font_not_found_p;
25376 ptrdiff_t pos;
25378 for (glyph_len = cmp->glyph_len; glyph_len > 0; glyph_len--)
25379 if ((c = COMPOSITION_GLYPH (cmp, glyph_len - 1)) != '\t')
25380 break;
25381 if (glyph_len < cmp->glyph_len)
25382 right_padded = 1;
25383 for (i = 0; i < glyph_len; i++)
25385 if ((c = COMPOSITION_GLYPH (cmp, i)) != '\t')
25386 break;
25387 cmp->offsets[i * 2] = cmp->offsets[i * 2 + 1] = 0;
25389 if (i > 0)
25390 left_padded = 1;
25392 pos = (STRINGP (it->string) ? IT_STRING_CHARPOS (*it)
25393 : IT_CHARPOS (*it));
25394 /* If no suitable font is found, use the default font. */
25395 font_not_found_p = font == NULL;
25396 if (font_not_found_p)
25398 face = face->ascii_face;
25399 font = face->font;
25401 boff = font->baseline_offset;
25402 if (font->vertical_centering)
25403 boff = VCENTER_BASELINE_OFFSET (font, it->f) - boff;
25404 font_ascent = FONT_BASE (font) + boff;
25405 font_descent = FONT_DESCENT (font) - boff;
25406 font_height = FONT_HEIGHT (font);
25408 cmp->font = font;
25410 pcm = NULL;
25411 if (! font_not_found_p)
25413 get_char_face_and_encoding (it->f, c, it->face_id,
25414 &char2b, 0);
25415 pcm = get_per_char_metric (font, &char2b);
25418 /* Initialize the bounding box. */
25419 if (pcm)
25421 width = cmp->glyph_len > 0 ? pcm->width : 0;
25422 ascent = pcm->ascent;
25423 descent = pcm->descent;
25424 lbearing = pcm->lbearing;
25425 rbearing = pcm->rbearing;
25427 else
25429 width = cmp->glyph_len > 0 ? font->space_width : 0;
25430 ascent = FONT_BASE (font);
25431 descent = FONT_DESCENT (font);
25432 lbearing = 0;
25433 rbearing = width;
25436 rightmost = width;
25437 leftmost = 0;
25438 lowest = - descent + boff;
25439 highest = ascent + boff;
25441 if (! font_not_found_p
25442 && font->default_ascent
25443 && CHAR_TABLE_P (Vuse_default_ascent)
25444 && !NILP (Faref (Vuse_default_ascent,
25445 make_number (it->char_to_display))))
25446 highest = font->default_ascent + boff;
25448 /* Draw the first glyph at the normal position. It may be
25449 shifted to right later if some other glyphs are drawn
25450 at the left. */
25451 cmp->offsets[i * 2] = 0;
25452 cmp->offsets[i * 2 + 1] = boff;
25453 cmp->lbearing = lbearing;
25454 cmp->rbearing = rbearing;
25456 /* Set cmp->offsets for the remaining glyphs. */
25457 for (i++; i < glyph_len; i++)
25459 int left, right, btm, top;
25460 int ch = COMPOSITION_GLYPH (cmp, i);
25461 int face_id;
25462 struct face *this_face;
25464 if (ch == '\t')
25465 ch = ' ';
25466 face_id = FACE_FOR_CHAR (it->f, face, ch, pos, it->string);
25467 this_face = FACE_FROM_ID (it->f, face_id);
25468 font = this_face->font;
25470 if (font == NULL)
25471 pcm = NULL;
25472 else
25474 get_char_face_and_encoding (it->f, ch, face_id,
25475 &char2b, 0);
25476 pcm = get_per_char_metric (font, &char2b);
25478 if (! pcm)
25479 cmp->offsets[i * 2] = cmp->offsets[i * 2 + 1] = 0;
25480 else
25482 width = pcm->width;
25483 ascent = pcm->ascent;
25484 descent = pcm->descent;
25485 lbearing = pcm->lbearing;
25486 rbearing = pcm->rbearing;
25487 if (cmp->method != COMPOSITION_WITH_RULE_ALTCHARS)
25489 /* Relative composition with or without
25490 alternate chars. */
25491 left = (leftmost + rightmost - width) / 2;
25492 btm = - descent + boff;
25493 if (font->relative_compose
25494 && (! CHAR_TABLE_P (Vignore_relative_composition)
25495 || NILP (Faref (Vignore_relative_composition,
25496 make_number (ch)))))
25499 if (- descent >= font->relative_compose)
25500 /* One extra pixel between two glyphs. */
25501 btm = highest + 1;
25502 else if (ascent <= 0)
25503 /* One extra pixel between two glyphs. */
25504 btm = lowest - 1 - ascent - descent;
25507 else
25509 /* A composition rule is specified by an integer
25510 value that encodes global and new reference
25511 points (GREF and NREF). GREF and NREF are
25512 specified by numbers as below:
25514 0---1---2 -- ascent
25518 9--10--11 -- center
25520 ---3---4---5--- baseline
25522 6---7---8 -- descent
25524 int rule = COMPOSITION_RULE (cmp, i);
25525 int gref, nref, grefx, grefy, nrefx, nrefy, xoff, yoff;
25527 COMPOSITION_DECODE_RULE (rule, gref, nref, xoff, yoff);
25528 grefx = gref % 3, nrefx = nref % 3;
25529 grefy = gref / 3, nrefy = nref / 3;
25530 if (xoff)
25531 xoff = font_height * (xoff - 128) / 256;
25532 if (yoff)
25533 yoff = font_height * (yoff - 128) / 256;
25535 left = (leftmost
25536 + grefx * (rightmost - leftmost) / 2
25537 - nrefx * width / 2
25538 + xoff);
25540 btm = ((grefy == 0 ? highest
25541 : grefy == 1 ? 0
25542 : grefy == 2 ? lowest
25543 : (highest + lowest) / 2)
25544 - (nrefy == 0 ? ascent + descent
25545 : nrefy == 1 ? descent - boff
25546 : nrefy == 2 ? 0
25547 : (ascent + descent) / 2)
25548 + yoff);
25551 cmp->offsets[i * 2] = left;
25552 cmp->offsets[i * 2 + 1] = btm + descent;
25554 /* Update the bounding box of the overall glyphs. */
25555 if (width > 0)
25557 right = left + width;
25558 if (left < leftmost)
25559 leftmost = left;
25560 if (right > rightmost)
25561 rightmost = right;
25563 top = btm + descent + ascent;
25564 if (top > highest)
25565 highest = top;
25566 if (btm < lowest)
25567 lowest = btm;
25569 if (cmp->lbearing > left + lbearing)
25570 cmp->lbearing = left + lbearing;
25571 if (cmp->rbearing < left + rbearing)
25572 cmp->rbearing = left + rbearing;
25576 /* If there are glyphs whose x-offsets are negative,
25577 shift all glyphs to the right and make all x-offsets
25578 non-negative. */
25579 if (leftmost < 0)
25581 for (i = 0; i < cmp->glyph_len; i++)
25582 cmp->offsets[i * 2] -= leftmost;
25583 rightmost -= leftmost;
25584 cmp->lbearing -= leftmost;
25585 cmp->rbearing -= leftmost;
25588 if (left_padded && cmp->lbearing < 0)
25590 for (i = 0; i < cmp->glyph_len; i++)
25591 cmp->offsets[i * 2] -= cmp->lbearing;
25592 rightmost -= cmp->lbearing;
25593 cmp->rbearing -= cmp->lbearing;
25594 cmp->lbearing = 0;
25596 if (right_padded && rightmost < cmp->rbearing)
25598 rightmost = cmp->rbearing;
25601 cmp->pixel_width = rightmost;
25602 cmp->ascent = highest;
25603 cmp->descent = - lowest;
25604 if (cmp->ascent < font_ascent)
25605 cmp->ascent = font_ascent;
25606 if (cmp->descent < font_descent)
25607 cmp->descent = font_descent;
25610 if (it->glyph_row
25611 && (cmp->lbearing < 0
25612 || cmp->rbearing > cmp->pixel_width))
25613 it->glyph_row->contains_overlapping_glyphs_p = 1;
25615 it->pixel_width = cmp->pixel_width;
25616 it->ascent = it->phys_ascent = cmp->ascent;
25617 it->descent = it->phys_descent = cmp->descent;
25618 if (face->box != FACE_NO_BOX)
25620 int thick = face->box_line_width;
25622 if (thick > 0)
25624 it->ascent += thick;
25625 it->descent += thick;
25627 else
25628 thick = - thick;
25630 if (it->start_of_box_run_p)
25631 it->pixel_width += thick;
25632 if (it->end_of_box_run_p)
25633 it->pixel_width += thick;
25636 /* If face has an overline, add the height of the overline
25637 (1 pixel) and a 1 pixel margin to the character height. */
25638 if (face->overline_p)
25639 it->ascent += overline_margin;
25641 take_vertical_position_into_account (it);
25642 if (it->ascent < 0)
25643 it->ascent = 0;
25644 if (it->descent < 0)
25645 it->descent = 0;
25647 if (it->glyph_row && cmp->glyph_len > 0)
25648 append_composite_glyph (it);
25650 else if (it->what == IT_COMPOSITION)
25652 /* A dynamic (automatic) composition. */
25653 struct face *face = FACE_FROM_ID (it->f, it->face_id);
25654 Lisp_Object gstring;
25655 struct font_metrics metrics;
25657 it->nglyphs = 1;
25659 gstring = composition_gstring_from_id (it->cmp_it.id);
25660 it->pixel_width
25661 = composition_gstring_width (gstring, it->cmp_it.from, it->cmp_it.to,
25662 &metrics);
25663 if (it->glyph_row
25664 && (metrics.lbearing < 0 || metrics.rbearing > metrics.width))
25665 it->glyph_row->contains_overlapping_glyphs_p = 1;
25666 it->ascent = it->phys_ascent = metrics.ascent;
25667 it->descent = it->phys_descent = metrics.descent;
25668 if (face->box != FACE_NO_BOX)
25670 int thick = face->box_line_width;
25672 if (thick > 0)
25674 it->ascent += thick;
25675 it->descent += thick;
25677 else
25678 thick = - thick;
25680 if (it->start_of_box_run_p)
25681 it->pixel_width += thick;
25682 if (it->end_of_box_run_p)
25683 it->pixel_width += thick;
25685 /* If face has an overline, add the height of the overline
25686 (1 pixel) and a 1 pixel margin to the character height. */
25687 if (face->overline_p)
25688 it->ascent += overline_margin;
25689 take_vertical_position_into_account (it);
25690 if (it->ascent < 0)
25691 it->ascent = 0;
25692 if (it->descent < 0)
25693 it->descent = 0;
25695 if (it->glyph_row)
25696 append_composite_glyph (it);
25698 else if (it->what == IT_GLYPHLESS)
25699 produce_glyphless_glyph (it, 0, Qnil);
25700 else if (it->what == IT_IMAGE)
25701 produce_image_glyph (it);
25702 else if (it->what == IT_STRETCH)
25703 produce_stretch_glyph (it);
25705 done:
25706 /* Accumulate dimensions. Note: can't assume that it->descent > 0
25707 because this isn't true for images with `:ascent 100'. */
25708 eassert (it->ascent >= 0 && it->descent >= 0);
25709 if (it->area == TEXT_AREA)
25710 it->current_x += it->pixel_width;
25712 if (extra_line_spacing > 0)
25714 it->descent += extra_line_spacing;
25715 if (extra_line_spacing > it->max_extra_line_spacing)
25716 it->max_extra_line_spacing = extra_line_spacing;
25719 it->max_ascent = max (it->max_ascent, it->ascent);
25720 it->max_descent = max (it->max_descent, it->descent);
25721 it->max_phys_ascent = max (it->max_phys_ascent, it->phys_ascent);
25722 it->max_phys_descent = max (it->max_phys_descent, it->phys_descent);
25725 /* EXPORT for RIF:
25726 Output LEN glyphs starting at START at the nominal cursor position.
25727 Advance the nominal cursor over the text. The global variable
25728 updated_row is the glyph row being updated, and updated_area is the
25729 area of that row being updated. */
25731 void
25732 x_write_glyphs (struct window *w, struct glyph *start, int len)
25734 int x, hpos, chpos = w->phys_cursor.hpos;
25736 eassert (updated_row);
25737 /* When the window is hscrolled, cursor hpos can legitimately be out
25738 of bounds, but we draw the cursor at the corresponding window
25739 margin in that case. */
25740 if (!updated_row->reversed_p && chpos < 0)
25741 chpos = 0;
25742 if (updated_row->reversed_p && chpos >= updated_row->used[TEXT_AREA])
25743 chpos = updated_row->used[TEXT_AREA] - 1;
25745 block_input ();
25747 /* Write glyphs. */
25749 hpos = start - updated_row->glyphs[updated_area];
25750 x = draw_glyphs (w, output_cursor.x,
25751 updated_row, updated_area,
25752 hpos, hpos + len,
25753 DRAW_NORMAL_TEXT, 0);
25755 /* Invalidate old phys cursor if the glyph at its hpos is redrawn. */
25756 if (updated_area == TEXT_AREA
25757 && w->phys_cursor_on_p
25758 && w->phys_cursor.vpos == output_cursor.vpos
25759 && chpos >= hpos
25760 && chpos < hpos + len)
25761 w->phys_cursor_on_p = 0;
25763 unblock_input ();
25765 /* Advance the output cursor. */
25766 output_cursor.hpos += len;
25767 output_cursor.x = x;
25771 /* EXPORT for RIF:
25772 Insert LEN glyphs from START at the nominal cursor position. */
25774 void
25775 x_insert_glyphs (struct window *w, struct glyph *start, int len)
25777 struct frame *f;
25778 int line_height, shift_by_width, shifted_region_width;
25779 struct glyph_row *row;
25780 struct glyph *glyph;
25781 int frame_x, frame_y;
25782 ptrdiff_t hpos;
25784 eassert (updated_row);
25785 block_input ();
25786 f = XFRAME (WINDOW_FRAME (w));
25788 /* Get the height of the line we are in. */
25789 row = updated_row;
25790 line_height = row->height;
25792 /* Get the width of the glyphs to insert. */
25793 shift_by_width = 0;
25794 for (glyph = start; glyph < start + len; ++glyph)
25795 shift_by_width += glyph->pixel_width;
25797 /* Get the width of the region to shift right. */
25798 shifted_region_width = (window_box_width (w, updated_area)
25799 - output_cursor.x
25800 - shift_by_width);
25802 /* Shift right. */
25803 frame_x = window_box_left (w, updated_area) + output_cursor.x;
25804 frame_y = WINDOW_TO_FRAME_PIXEL_Y (w, output_cursor.y);
25806 FRAME_RIF (f)->shift_glyphs_for_insert (f, frame_x, frame_y, shifted_region_width,
25807 line_height, shift_by_width);
25809 /* Write the glyphs. */
25810 hpos = start - row->glyphs[updated_area];
25811 draw_glyphs (w, output_cursor.x, row, updated_area,
25812 hpos, hpos + len,
25813 DRAW_NORMAL_TEXT, 0);
25815 /* Advance the output cursor. */
25816 output_cursor.hpos += len;
25817 output_cursor.x += shift_by_width;
25818 unblock_input ();
25822 /* EXPORT for RIF:
25823 Erase the current text line from the nominal cursor position
25824 (inclusive) to pixel column TO_X (exclusive). The idea is that
25825 everything from TO_X onward is already erased.
25827 TO_X is a pixel position relative to updated_area of currently
25828 updated window W. TO_X == -1 means clear to the end of this area. */
25830 void
25831 x_clear_end_of_line (struct window *w, int to_x)
25833 struct frame *f;
25834 int max_x, min_y, max_y;
25835 int from_x, from_y, to_y;
25837 eassert (updated_row);
25838 f = XFRAME (w->frame);
25840 if (updated_row->full_width_p)
25841 max_x = WINDOW_TOTAL_WIDTH (w);
25842 else
25843 max_x = window_box_width (w, updated_area);
25844 max_y = window_text_bottom_y (w);
25846 /* TO_X == 0 means don't do anything. TO_X < 0 means clear to end
25847 of window. For TO_X > 0, truncate to end of drawing area. */
25848 if (to_x == 0)
25849 return;
25850 else if (to_x < 0)
25851 to_x = max_x;
25852 else
25853 to_x = min (to_x, max_x);
25855 to_y = min (max_y, output_cursor.y + updated_row->height);
25857 /* Notice if the cursor will be cleared by this operation. */
25858 if (!updated_row->full_width_p)
25859 notice_overwritten_cursor (w, updated_area,
25860 output_cursor.x, -1,
25861 updated_row->y,
25862 MATRIX_ROW_BOTTOM_Y (updated_row));
25864 from_x = output_cursor.x;
25866 /* Translate to frame coordinates. */
25867 if (updated_row->full_width_p)
25869 from_x = WINDOW_TO_FRAME_PIXEL_X (w, from_x);
25870 to_x = WINDOW_TO_FRAME_PIXEL_X (w, to_x);
25872 else
25874 int area_left = window_box_left (w, updated_area);
25875 from_x += area_left;
25876 to_x += area_left;
25879 min_y = WINDOW_HEADER_LINE_HEIGHT (w);
25880 from_y = WINDOW_TO_FRAME_PIXEL_Y (w, max (min_y, output_cursor.y));
25881 to_y = WINDOW_TO_FRAME_PIXEL_Y (w, to_y);
25883 /* Prevent inadvertently clearing to end of the X window. */
25884 if (to_x > from_x && to_y > from_y)
25886 block_input ();
25887 FRAME_RIF (f)->clear_frame_area (f, from_x, from_y,
25888 to_x - from_x, to_y - from_y);
25889 unblock_input ();
25893 #endif /* HAVE_WINDOW_SYSTEM */
25897 /***********************************************************************
25898 Cursor types
25899 ***********************************************************************/
25901 /* Value is the internal representation of the specified cursor type
25902 ARG. If type is BAR_CURSOR, return in *WIDTH the specified width
25903 of the bar cursor. */
25905 static enum text_cursor_kinds
25906 get_specified_cursor_type (Lisp_Object arg, int *width)
25908 enum text_cursor_kinds type;
25910 if (NILP (arg))
25911 return NO_CURSOR;
25913 if (EQ (arg, Qbox))
25914 return FILLED_BOX_CURSOR;
25916 if (EQ (arg, Qhollow))
25917 return HOLLOW_BOX_CURSOR;
25919 if (EQ (arg, Qbar))
25921 *width = 2;
25922 return BAR_CURSOR;
25925 if (CONSP (arg)
25926 && EQ (XCAR (arg), Qbar)
25927 && RANGED_INTEGERP (0, XCDR (arg), INT_MAX))
25929 *width = XINT (XCDR (arg));
25930 return BAR_CURSOR;
25933 if (EQ (arg, Qhbar))
25935 *width = 2;
25936 return HBAR_CURSOR;
25939 if (CONSP (arg)
25940 && EQ (XCAR (arg), Qhbar)
25941 && RANGED_INTEGERP (0, XCDR (arg), INT_MAX))
25943 *width = XINT (XCDR (arg));
25944 return HBAR_CURSOR;
25947 /* Treat anything unknown as "hollow box cursor".
25948 It was bad to signal an error; people have trouble fixing
25949 .Xdefaults with Emacs, when it has something bad in it. */
25950 type = HOLLOW_BOX_CURSOR;
25952 return type;
25955 /* Set the default cursor types for specified frame. */
25956 void
25957 set_frame_cursor_types (struct frame *f, Lisp_Object arg)
25959 int width = 1;
25960 Lisp_Object tem;
25962 FRAME_DESIRED_CURSOR (f) = get_specified_cursor_type (arg, &width);
25963 FRAME_CURSOR_WIDTH (f) = width;
25965 /* By default, set up the blink-off state depending on the on-state. */
25967 tem = Fassoc (arg, Vblink_cursor_alist);
25968 if (!NILP (tem))
25970 FRAME_BLINK_OFF_CURSOR (f)
25971 = get_specified_cursor_type (XCDR (tem), &width);
25972 FRAME_BLINK_OFF_CURSOR_WIDTH (f) = width;
25974 else
25975 FRAME_BLINK_OFF_CURSOR (f) = DEFAULT_CURSOR;
25977 /* Make sure the cursor gets redrawn. */
25978 cursor_type_changed = 1;
25982 #ifdef HAVE_WINDOW_SYSTEM
25984 /* Return the cursor we want to be displayed in window W. Return
25985 width of bar/hbar cursor through WIDTH arg. Return with
25986 ACTIVE_CURSOR arg set to 1 if cursor in window W is `active'
25987 (i.e. if the `system caret' should track this cursor).
25989 In a mini-buffer window, we want the cursor only to appear if we
25990 are reading input from this window. For the selected window, we
25991 want the cursor type given by the frame parameter or buffer local
25992 setting of cursor-type. If explicitly marked off, draw no cursor.
25993 In all other cases, we want a hollow box cursor. */
25995 static enum text_cursor_kinds
25996 get_window_cursor_type (struct window *w, struct glyph *glyph, int *width,
25997 int *active_cursor)
25999 struct frame *f = XFRAME (w->frame);
26000 struct buffer *b = XBUFFER (w->contents);
26001 int cursor_type = DEFAULT_CURSOR;
26002 Lisp_Object alt_cursor;
26003 int non_selected = 0;
26005 *active_cursor = 1;
26007 /* Echo area */
26008 if (cursor_in_echo_area
26009 && FRAME_HAS_MINIBUF_P (f)
26010 && EQ (FRAME_MINIBUF_WINDOW (f), echo_area_window))
26012 if (w == XWINDOW (echo_area_window))
26014 if (EQ (BVAR (b, cursor_type), Qt) || NILP (BVAR (b, cursor_type)))
26016 *width = FRAME_CURSOR_WIDTH (f);
26017 return FRAME_DESIRED_CURSOR (f);
26019 else
26020 return get_specified_cursor_type (BVAR (b, cursor_type), width);
26023 *active_cursor = 0;
26024 non_selected = 1;
26027 /* Detect a nonselected window or nonselected frame. */
26028 else if (w != XWINDOW (f->selected_window)
26029 || f != FRAME_X_DISPLAY_INFO (f)->x_highlight_frame)
26031 *active_cursor = 0;
26033 if (MINI_WINDOW_P (w) && minibuf_level == 0)
26034 return NO_CURSOR;
26036 non_selected = 1;
26039 /* Never display a cursor in a window in which cursor-type is nil. */
26040 if (NILP (BVAR (b, cursor_type)))
26041 return NO_CURSOR;
26043 /* Get the normal cursor type for this window. */
26044 if (EQ (BVAR (b, cursor_type), Qt))
26046 cursor_type = FRAME_DESIRED_CURSOR (f);
26047 *width = FRAME_CURSOR_WIDTH (f);
26049 else
26050 cursor_type = get_specified_cursor_type (BVAR (b, cursor_type), width);
26052 /* Use cursor-in-non-selected-windows instead
26053 for non-selected window or frame. */
26054 if (non_selected)
26056 alt_cursor = BVAR (b, cursor_in_non_selected_windows);
26057 if (!EQ (Qt, alt_cursor))
26058 return get_specified_cursor_type (alt_cursor, width);
26059 /* t means modify the normal cursor type. */
26060 if (cursor_type == FILLED_BOX_CURSOR)
26061 cursor_type = HOLLOW_BOX_CURSOR;
26062 else if (cursor_type == BAR_CURSOR && *width > 1)
26063 --*width;
26064 return cursor_type;
26067 /* Use normal cursor if not blinked off. */
26068 if (!w->cursor_off_p)
26070 if (glyph != NULL && glyph->type == IMAGE_GLYPH)
26072 if (cursor_type == FILLED_BOX_CURSOR)
26074 /* Using a block cursor on large images can be very annoying.
26075 So use a hollow cursor for "large" images.
26076 If image is not transparent (no mask), also use hollow cursor. */
26077 struct image *img = IMAGE_FROM_ID (f, glyph->u.img_id);
26078 if (img != NULL && IMAGEP (img->spec))
26080 /* Arbitrarily, interpret "Large" as >32x32 and >NxN
26081 where N = size of default frame font size.
26082 This should cover most of the "tiny" icons people may use. */
26083 if (!img->mask
26084 || img->width > max (32, WINDOW_FRAME_COLUMN_WIDTH (w))
26085 || img->height > max (32, WINDOW_FRAME_LINE_HEIGHT (w)))
26086 cursor_type = HOLLOW_BOX_CURSOR;
26089 else if (cursor_type != NO_CURSOR)
26091 /* Display current only supports BOX and HOLLOW cursors for images.
26092 So for now, unconditionally use a HOLLOW cursor when cursor is
26093 not a solid box cursor. */
26094 cursor_type = HOLLOW_BOX_CURSOR;
26097 return cursor_type;
26100 /* Cursor is blinked off, so determine how to "toggle" it. */
26102 /* First look for an entry matching the buffer's cursor-type in blink-cursor-alist. */
26103 if ((alt_cursor = Fassoc (BVAR (b, cursor_type), Vblink_cursor_alist), !NILP (alt_cursor)))
26104 return get_specified_cursor_type (XCDR (alt_cursor), width);
26106 /* Then see if frame has specified a specific blink off cursor type. */
26107 if (FRAME_BLINK_OFF_CURSOR (f) != DEFAULT_CURSOR)
26109 *width = FRAME_BLINK_OFF_CURSOR_WIDTH (f);
26110 return FRAME_BLINK_OFF_CURSOR (f);
26113 #if 0
26114 /* Some people liked having a permanently visible blinking cursor,
26115 while others had very strong opinions against it. So it was
26116 decided to remove it. KFS 2003-09-03 */
26118 /* Finally perform built-in cursor blinking:
26119 filled box <-> hollow box
26120 wide [h]bar <-> narrow [h]bar
26121 narrow [h]bar <-> no cursor
26122 other type <-> no cursor */
26124 if (cursor_type == FILLED_BOX_CURSOR)
26125 return HOLLOW_BOX_CURSOR;
26127 if ((cursor_type == BAR_CURSOR || cursor_type == HBAR_CURSOR) && *width > 1)
26129 *width = 1;
26130 return cursor_type;
26132 #endif
26134 return NO_CURSOR;
26138 /* Notice when the text cursor of window W has been completely
26139 overwritten by a drawing operation that outputs glyphs in AREA
26140 starting at X0 and ending at X1 in the line starting at Y0 and
26141 ending at Y1. X coordinates are area-relative. X1 < 0 means all
26142 the rest of the line after X0 has been written. Y coordinates
26143 are window-relative. */
26145 static void
26146 notice_overwritten_cursor (struct window *w, enum glyph_row_area area,
26147 int x0, int x1, int y0, int y1)
26149 int cx0, cx1, cy0, cy1;
26150 struct glyph_row *row;
26152 if (!w->phys_cursor_on_p)
26153 return;
26154 if (area != TEXT_AREA)
26155 return;
26157 if (w->phys_cursor.vpos < 0
26158 || w->phys_cursor.vpos >= w->current_matrix->nrows
26159 || (row = w->current_matrix->rows + w->phys_cursor.vpos,
26160 !(row->enabled_p && MATRIX_ROW_DISPLAYS_TEXT_P (row))))
26161 return;
26163 if (row->cursor_in_fringe_p)
26165 row->cursor_in_fringe_p = 0;
26166 draw_fringe_bitmap (w, row, row->reversed_p);
26167 w->phys_cursor_on_p = 0;
26168 return;
26171 cx0 = w->phys_cursor.x;
26172 cx1 = cx0 + w->phys_cursor_width;
26173 if (x0 > cx0 || (x1 >= 0 && x1 < cx1))
26174 return;
26176 /* The cursor image will be completely removed from the
26177 screen if the output area intersects the cursor area in
26178 y-direction. When we draw in [y0 y1[, and some part of
26179 the cursor is at y < y0, that part must have been drawn
26180 before. When scrolling, the cursor is erased before
26181 actually scrolling, so we don't come here. When not
26182 scrolling, the rows above the old cursor row must have
26183 changed, and in this case these rows must have written
26184 over the cursor image.
26186 Likewise if part of the cursor is below y1, with the
26187 exception of the cursor being in the first blank row at
26188 the buffer and window end because update_text_area
26189 doesn't draw that row. (Except when it does, but
26190 that's handled in update_text_area.) */
26192 cy0 = w->phys_cursor.y;
26193 cy1 = cy0 + w->phys_cursor_height;
26194 if ((y0 < cy0 || y0 >= cy1) && (y1 <= cy0 || y1 >= cy1))
26195 return;
26197 w->phys_cursor_on_p = 0;
26200 #endif /* HAVE_WINDOW_SYSTEM */
26203 /************************************************************************
26204 Mouse Face
26205 ************************************************************************/
26207 #ifdef HAVE_WINDOW_SYSTEM
26209 /* EXPORT for RIF:
26210 Fix the display of area AREA of overlapping row ROW in window W
26211 with respect to the overlapping part OVERLAPS. */
26213 void
26214 x_fix_overlapping_area (struct window *w, struct glyph_row *row,
26215 enum glyph_row_area area, int overlaps)
26217 int i, x;
26219 block_input ();
26221 x = 0;
26222 for (i = 0; i < row->used[area];)
26224 if (row->glyphs[area][i].overlaps_vertically_p)
26226 int start = i, start_x = x;
26230 x += row->glyphs[area][i].pixel_width;
26231 ++i;
26233 while (i < row->used[area]
26234 && row->glyphs[area][i].overlaps_vertically_p);
26236 draw_glyphs (w, start_x, row, area,
26237 start, i,
26238 DRAW_NORMAL_TEXT, overlaps);
26240 else
26242 x += row->glyphs[area][i].pixel_width;
26243 ++i;
26247 unblock_input ();
26251 /* EXPORT:
26252 Draw the cursor glyph of window W in glyph row ROW. See the
26253 comment of draw_glyphs for the meaning of HL. */
26255 void
26256 draw_phys_cursor_glyph (struct window *w, struct glyph_row *row,
26257 enum draw_glyphs_face hl)
26259 /* If cursor hpos is out of bounds, don't draw garbage. This can
26260 happen in mini-buffer windows when switching between echo area
26261 glyphs and mini-buffer. */
26262 if ((row->reversed_p
26263 ? (w->phys_cursor.hpos >= 0)
26264 : (w->phys_cursor.hpos < row->used[TEXT_AREA])))
26266 int on_p = w->phys_cursor_on_p;
26267 int x1;
26268 int hpos = w->phys_cursor.hpos;
26270 /* When the window is hscrolled, cursor hpos can legitimately be
26271 out of bounds, but we draw the cursor at the corresponding
26272 window margin in that case. */
26273 if (!row->reversed_p && hpos < 0)
26274 hpos = 0;
26275 if (row->reversed_p && hpos >= row->used[TEXT_AREA])
26276 hpos = row->used[TEXT_AREA] - 1;
26278 x1 = draw_glyphs (w, w->phys_cursor.x, row, TEXT_AREA, hpos, hpos + 1,
26279 hl, 0);
26280 w->phys_cursor_on_p = on_p;
26282 if (hl == DRAW_CURSOR)
26283 w->phys_cursor_width = x1 - w->phys_cursor.x;
26284 /* When we erase the cursor, and ROW is overlapped by other
26285 rows, make sure that these overlapping parts of other rows
26286 are redrawn. */
26287 else if (hl == DRAW_NORMAL_TEXT && row->overlapped_p)
26289 w->phys_cursor_width = x1 - w->phys_cursor.x;
26291 if (row > w->current_matrix->rows
26292 && MATRIX_ROW_OVERLAPS_SUCC_P (row - 1))
26293 x_fix_overlapping_area (w, row - 1, TEXT_AREA,
26294 OVERLAPS_ERASED_CURSOR);
26296 if (MATRIX_ROW_BOTTOM_Y (row) < window_text_bottom_y (w)
26297 && MATRIX_ROW_OVERLAPS_PRED_P (row + 1))
26298 x_fix_overlapping_area (w, row + 1, TEXT_AREA,
26299 OVERLAPS_ERASED_CURSOR);
26305 /* EXPORT:
26306 Erase the image of a cursor of window W from the screen. */
26308 void
26309 erase_phys_cursor (struct window *w)
26311 struct frame *f = XFRAME (w->frame);
26312 Mouse_HLInfo *hlinfo = MOUSE_HL_INFO (f);
26313 int hpos = w->phys_cursor.hpos;
26314 int vpos = w->phys_cursor.vpos;
26315 int mouse_face_here_p = 0;
26316 struct glyph_matrix *active_glyphs = w->current_matrix;
26317 struct glyph_row *cursor_row;
26318 struct glyph *cursor_glyph;
26319 enum draw_glyphs_face hl;
26321 /* No cursor displayed or row invalidated => nothing to do on the
26322 screen. */
26323 if (w->phys_cursor_type == NO_CURSOR)
26324 goto mark_cursor_off;
26326 /* VPOS >= active_glyphs->nrows means that window has been resized.
26327 Don't bother to erase the cursor. */
26328 if (vpos >= active_glyphs->nrows)
26329 goto mark_cursor_off;
26331 /* If row containing cursor is marked invalid, there is nothing we
26332 can do. */
26333 cursor_row = MATRIX_ROW (active_glyphs, vpos);
26334 if (!cursor_row->enabled_p)
26335 goto mark_cursor_off;
26337 /* If line spacing is > 0, old cursor may only be partially visible in
26338 window after split-window. So adjust visible height. */
26339 cursor_row->visible_height = min (cursor_row->visible_height,
26340 window_text_bottom_y (w) - cursor_row->y);
26342 /* If row is completely invisible, don't attempt to delete a cursor which
26343 isn't there. This can happen if cursor is at top of a window, and
26344 we switch to a buffer with a header line in that window. */
26345 if (cursor_row->visible_height <= 0)
26346 goto mark_cursor_off;
26348 /* If cursor is in the fringe, erase by drawing actual bitmap there. */
26349 if (cursor_row->cursor_in_fringe_p)
26351 cursor_row->cursor_in_fringe_p = 0;
26352 draw_fringe_bitmap (w, cursor_row, cursor_row->reversed_p);
26353 goto mark_cursor_off;
26356 /* This can happen when the new row is shorter than the old one.
26357 In this case, either draw_glyphs or clear_end_of_line
26358 should have cleared the cursor. Note that we wouldn't be
26359 able to erase the cursor in this case because we don't have a
26360 cursor glyph at hand. */
26361 if ((cursor_row->reversed_p
26362 ? (w->phys_cursor.hpos < 0)
26363 : (w->phys_cursor.hpos >= cursor_row->used[TEXT_AREA])))
26364 goto mark_cursor_off;
26366 /* When the window is hscrolled, cursor hpos can legitimately be out
26367 of bounds, but we draw the cursor at the corresponding window
26368 margin in that case. */
26369 if (!cursor_row->reversed_p && hpos < 0)
26370 hpos = 0;
26371 if (cursor_row->reversed_p && hpos >= cursor_row->used[TEXT_AREA])
26372 hpos = cursor_row->used[TEXT_AREA] - 1;
26374 /* If the cursor is in the mouse face area, redisplay that when
26375 we clear the cursor. */
26376 if (! NILP (hlinfo->mouse_face_window)
26377 && coords_in_mouse_face_p (w, hpos, vpos)
26378 /* Don't redraw the cursor's spot in mouse face if it is at the
26379 end of a line (on a newline). The cursor appears there, but
26380 mouse highlighting does not. */
26381 && cursor_row->used[TEXT_AREA] > hpos && hpos >= 0)
26382 mouse_face_here_p = 1;
26384 /* Maybe clear the display under the cursor. */
26385 if (w->phys_cursor_type == HOLLOW_BOX_CURSOR)
26387 int x, y, left_x;
26388 int header_line_height = WINDOW_HEADER_LINE_HEIGHT (w);
26389 int width;
26391 cursor_glyph = get_phys_cursor_glyph (w);
26392 if (cursor_glyph == NULL)
26393 goto mark_cursor_off;
26395 width = cursor_glyph->pixel_width;
26396 left_x = window_box_left_offset (w, TEXT_AREA);
26397 x = w->phys_cursor.x;
26398 if (x < left_x)
26399 width -= left_x - x;
26400 width = min (width, window_box_width (w, TEXT_AREA) - x);
26401 y = WINDOW_TO_FRAME_PIXEL_Y (w, max (header_line_height, cursor_row->y));
26402 x = WINDOW_TEXT_TO_FRAME_PIXEL_X (w, max (x, left_x));
26404 if (width > 0)
26405 FRAME_RIF (f)->clear_frame_area (f, x, y, width, cursor_row->visible_height);
26408 /* Erase the cursor by redrawing the character underneath it. */
26409 if (mouse_face_here_p)
26410 hl = DRAW_MOUSE_FACE;
26411 else
26412 hl = DRAW_NORMAL_TEXT;
26413 draw_phys_cursor_glyph (w, cursor_row, hl);
26415 mark_cursor_off:
26416 w->phys_cursor_on_p = 0;
26417 w->phys_cursor_type = NO_CURSOR;
26421 /* EXPORT:
26422 Display or clear cursor of window W. If ON is zero, clear the
26423 cursor. If it is non-zero, display the cursor. If ON is nonzero,
26424 where to put the cursor is specified by HPOS, VPOS, X and Y. */
26426 void
26427 display_and_set_cursor (struct window *w, int on,
26428 int hpos, int vpos, int x, int y)
26430 struct frame *f = XFRAME (w->frame);
26431 int new_cursor_type;
26432 int new_cursor_width;
26433 int active_cursor;
26434 struct glyph_row *glyph_row;
26435 struct glyph *glyph;
26437 /* This is pointless on invisible frames, and dangerous on garbaged
26438 windows and frames; in the latter case, the frame or window may
26439 be in the midst of changing its size, and x and y may be off the
26440 window. */
26441 if (! FRAME_VISIBLE_P (f)
26442 || FRAME_GARBAGED_P (f)
26443 || vpos >= w->current_matrix->nrows
26444 || hpos >= w->current_matrix->matrix_w)
26445 return;
26447 /* If cursor is off and we want it off, return quickly. */
26448 if (!on && !w->phys_cursor_on_p)
26449 return;
26451 glyph_row = MATRIX_ROW (w->current_matrix, vpos);
26452 /* If cursor row is not enabled, we don't really know where to
26453 display the cursor. */
26454 if (!glyph_row->enabled_p)
26456 w->phys_cursor_on_p = 0;
26457 return;
26460 glyph = NULL;
26461 if (!glyph_row->exact_window_width_line_p
26462 || (0 <= hpos && hpos < glyph_row->used[TEXT_AREA]))
26463 glyph = glyph_row->glyphs[TEXT_AREA] + hpos;
26465 eassert (input_blocked_p ());
26467 /* Set new_cursor_type to the cursor we want to be displayed. */
26468 new_cursor_type = get_window_cursor_type (w, glyph,
26469 &new_cursor_width, &active_cursor);
26471 /* If cursor is currently being shown and we don't want it to be or
26472 it is in the wrong place, or the cursor type is not what we want,
26473 erase it. */
26474 if (w->phys_cursor_on_p
26475 && (!on
26476 || w->phys_cursor.x != x
26477 || w->phys_cursor.y != y
26478 || new_cursor_type != w->phys_cursor_type
26479 || ((new_cursor_type == BAR_CURSOR || new_cursor_type == HBAR_CURSOR)
26480 && new_cursor_width != w->phys_cursor_width)))
26481 erase_phys_cursor (w);
26483 /* Don't check phys_cursor_on_p here because that flag is only set
26484 to zero in some cases where we know that the cursor has been
26485 completely erased, to avoid the extra work of erasing the cursor
26486 twice. In other words, phys_cursor_on_p can be 1 and the cursor
26487 still not be visible, or it has only been partly erased. */
26488 if (on)
26490 w->phys_cursor_ascent = glyph_row->ascent;
26491 w->phys_cursor_height = glyph_row->height;
26493 /* Set phys_cursor_.* before x_draw_.* is called because some
26494 of them may need the information. */
26495 w->phys_cursor.x = x;
26496 w->phys_cursor.y = glyph_row->y;
26497 w->phys_cursor.hpos = hpos;
26498 w->phys_cursor.vpos = vpos;
26501 FRAME_RIF (f)->draw_window_cursor (w, glyph_row, x, y,
26502 new_cursor_type, new_cursor_width,
26503 on, active_cursor);
26507 /* Switch the display of W's cursor on or off, according to the value
26508 of ON. */
26510 static void
26511 update_window_cursor (struct window *w, int on)
26513 /* Don't update cursor in windows whose frame is in the process
26514 of being deleted. */
26515 if (w->current_matrix)
26517 int hpos = w->phys_cursor.hpos;
26518 int vpos = w->phys_cursor.vpos;
26519 struct glyph_row *row;
26521 if (vpos >= w->current_matrix->nrows
26522 || hpos >= w->current_matrix->matrix_w)
26523 return;
26525 row = MATRIX_ROW (w->current_matrix, vpos);
26527 /* When the window is hscrolled, cursor hpos can legitimately be
26528 out of bounds, but we draw the cursor at the corresponding
26529 window margin in that case. */
26530 if (!row->reversed_p && hpos < 0)
26531 hpos = 0;
26532 if (row->reversed_p && hpos >= row->used[TEXT_AREA])
26533 hpos = row->used[TEXT_AREA] - 1;
26535 block_input ();
26536 display_and_set_cursor (w, on, hpos, vpos,
26537 w->phys_cursor.x, w->phys_cursor.y);
26538 unblock_input ();
26543 /* Call update_window_cursor with parameter ON_P on all leaf windows
26544 in the window tree rooted at W. */
26546 static void
26547 update_cursor_in_window_tree (struct window *w, int on_p)
26549 while (w)
26551 if (WINDOWP (w->contents))
26552 update_cursor_in_window_tree (XWINDOW (w->contents), on_p);
26553 else
26554 update_window_cursor (w, on_p);
26556 w = NILP (w->next) ? 0 : XWINDOW (w->next);
26561 /* EXPORT:
26562 Display the cursor on window W, or clear it, according to ON_P.
26563 Don't change the cursor's position. */
26565 void
26566 x_update_cursor (struct frame *f, int on_p)
26568 update_cursor_in_window_tree (XWINDOW (f->root_window), on_p);
26572 /* EXPORT:
26573 Clear the cursor of window W to background color, and mark the
26574 cursor as not shown. This is used when the text where the cursor
26575 is about to be rewritten. */
26577 void
26578 x_clear_cursor (struct window *w)
26580 if (FRAME_VISIBLE_P (XFRAME (w->frame)) && w->phys_cursor_on_p)
26581 update_window_cursor (w, 0);
26584 #endif /* HAVE_WINDOW_SYSTEM */
26586 /* Implementation of draw_row_with_mouse_face for GUI sessions, GPM,
26587 and MSDOS. */
26588 static void
26589 draw_row_with_mouse_face (struct window *w, int start_x, struct glyph_row *row,
26590 int start_hpos, int end_hpos,
26591 enum draw_glyphs_face draw)
26593 #ifdef HAVE_WINDOW_SYSTEM
26594 if (FRAME_WINDOW_P (XFRAME (w->frame)))
26596 draw_glyphs (w, start_x, row, TEXT_AREA, start_hpos, end_hpos, draw, 0);
26597 return;
26599 #endif
26600 #if defined (HAVE_GPM) || defined (MSDOS) || defined (WINDOWSNT)
26601 tty_draw_row_with_mouse_face (w, row, start_hpos, end_hpos, draw);
26602 #endif
26605 /* Display the active region described by mouse_face_* according to DRAW. */
26607 static void
26608 show_mouse_face (Mouse_HLInfo *hlinfo, enum draw_glyphs_face draw)
26610 struct window *w = XWINDOW (hlinfo->mouse_face_window);
26611 struct frame *f = XFRAME (WINDOW_FRAME (w));
26613 if (/* If window is in the process of being destroyed, don't bother
26614 to do anything. */
26615 w->current_matrix != NULL
26616 /* Don't update mouse highlight if hidden */
26617 && (draw != DRAW_MOUSE_FACE || !hlinfo->mouse_face_hidden)
26618 /* Recognize when we are called to operate on rows that don't exist
26619 anymore. This can happen when a window is split. */
26620 && hlinfo->mouse_face_end_row < w->current_matrix->nrows)
26622 int phys_cursor_on_p = w->phys_cursor_on_p;
26623 struct glyph_row *row, *first, *last;
26625 first = MATRIX_ROW (w->current_matrix, hlinfo->mouse_face_beg_row);
26626 last = MATRIX_ROW (w->current_matrix, hlinfo->mouse_face_end_row);
26628 for (row = first; row <= last && row->enabled_p; ++row)
26630 int start_hpos, end_hpos, start_x;
26632 /* For all but the first row, the highlight starts at column 0. */
26633 if (row == first)
26635 /* R2L rows have BEG and END in reversed order, but the
26636 screen drawing geometry is always left to right. So
26637 we need to mirror the beginning and end of the
26638 highlighted area in R2L rows. */
26639 if (!row->reversed_p)
26641 start_hpos = hlinfo->mouse_face_beg_col;
26642 start_x = hlinfo->mouse_face_beg_x;
26644 else if (row == last)
26646 start_hpos = hlinfo->mouse_face_end_col;
26647 start_x = hlinfo->mouse_face_end_x;
26649 else
26651 start_hpos = 0;
26652 start_x = 0;
26655 else if (row->reversed_p && row == last)
26657 start_hpos = hlinfo->mouse_face_end_col;
26658 start_x = hlinfo->mouse_face_end_x;
26660 else
26662 start_hpos = 0;
26663 start_x = 0;
26666 if (row == last)
26668 if (!row->reversed_p)
26669 end_hpos = hlinfo->mouse_face_end_col;
26670 else if (row == first)
26671 end_hpos = hlinfo->mouse_face_beg_col;
26672 else
26674 end_hpos = row->used[TEXT_AREA];
26675 if (draw == DRAW_NORMAL_TEXT)
26676 row->fill_line_p = 1; /* Clear to end of line */
26679 else if (row->reversed_p && row == first)
26680 end_hpos = hlinfo->mouse_face_beg_col;
26681 else
26683 end_hpos = row->used[TEXT_AREA];
26684 if (draw == DRAW_NORMAL_TEXT)
26685 row->fill_line_p = 1; /* Clear to end of line */
26688 if (end_hpos > start_hpos)
26690 draw_row_with_mouse_face (w, start_x, row,
26691 start_hpos, end_hpos, draw);
26693 row->mouse_face_p
26694 = draw == DRAW_MOUSE_FACE || draw == DRAW_IMAGE_RAISED;
26698 #ifdef HAVE_WINDOW_SYSTEM
26699 /* When we've written over the cursor, arrange for it to
26700 be displayed again. */
26701 if (FRAME_WINDOW_P (f)
26702 && phys_cursor_on_p && !w->phys_cursor_on_p)
26704 int hpos = w->phys_cursor.hpos;
26706 /* When the window is hscrolled, cursor hpos can legitimately be
26707 out of bounds, but we draw the cursor at the corresponding
26708 window margin in that case. */
26709 if (!row->reversed_p && hpos < 0)
26710 hpos = 0;
26711 if (row->reversed_p && hpos >= row->used[TEXT_AREA])
26712 hpos = row->used[TEXT_AREA] - 1;
26714 block_input ();
26715 display_and_set_cursor (w, 1, hpos, w->phys_cursor.vpos,
26716 w->phys_cursor.x, w->phys_cursor.y);
26717 unblock_input ();
26719 #endif /* HAVE_WINDOW_SYSTEM */
26722 #ifdef HAVE_WINDOW_SYSTEM
26723 /* Change the mouse cursor. */
26724 if (FRAME_WINDOW_P (f))
26726 if (draw == DRAW_NORMAL_TEXT
26727 && !EQ (hlinfo->mouse_face_window, f->tool_bar_window))
26728 FRAME_RIF (f)->define_frame_cursor (f, FRAME_X_OUTPUT (f)->text_cursor);
26729 else if (draw == DRAW_MOUSE_FACE)
26730 FRAME_RIF (f)->define_frame_cursor (f, FRAME_X_OUTPUT (f)->hand_cursor);
26731 else
26732 FRAME_RIF (f)->define_frame_cursor (f, FRAME_X_OUTPUT (f)->nontext_cursor);
26734 #endif /* HAVE_WINDOW_SYSTEM */
26737 /* EXPORT:
26738 Clear out the mouse-highlighted active region.
26739 Redraw it un-highlighted first. Value is non-zero if mouse
26740 face was actually drawn unhighlighted. */
26743 clear_mouse_face (Mouse_HLInfo *hlinfo)
26745 int cleared = 0;
26747 if (!hlinfo->mouse_face_hidden && !NILP (hlinfo->mouse_face_window))
26749 show_mouse_face (hlinfo, DRAW_NORMAL_TEXT);
26750 cleared = 1;
26753 hlinfo->mouse_face_beg_row = hlinfo->mouse_face_beg_col = -1;
26754 hlinfo->mouse_face_end_row = hlinfo->mouse_face_end_col = -1;
26755 hlinfo->mouse_face_window = Qnil;
26756 hlinfo->mouse_face_overlay = Qnil;
26757 return cleared;
26760 /* Return non-zero if the coordinates HPOS and VPOS on windows W are
26761 within the mouse face on that window. */
26762 static int
26763 coords_in_mouse_face_p (struct window *w, int hpos, int vpos)
26765 Mouse_HLInfo *hlinfo = MOUSE_HL_INFO (XFRAME (w->frame));
26767 /* Quickly resolve the easy cases. */
26768 if (!(WINDOWP (hlinfo->mouse_face_window)
26769 && XWINDOW (hlinfo->mouse_face_window) == w))
26770 return 0;
26771 if (vpos < hlinfo->mouse_face_beg_row
26772 || vpos > hlinfo->mouse_face_end_row)
26773 return 0;
26774 if (vpos > hlinfo->mouse_face_beg_row
26775 && vpos < hlinfo->mouse_face_end_row)
26776 return 1;
26778 if (!MATRIX_ROW (w->current_matrix, vpos)->reversed_p)
26780 if (hlinfo->mouse_face_beg_row == hlinfo->mouse_face_end_row)
26782 if (hlinfo->mouse_face_beg_col <= hpos && hpos < hlinfo->mouse_face_end_col)
26783 return 1;
26785 else if ((vpos == hlinfo->mouse_face_beg_row
26786 && hpos >= hlinfo->mouse_face_beg_col)
26787 || (vpos == hlinfo->mouse_face_end_row
26788 && hpos < hlinfo->mouse_face_end_col))
26789 return 1;
26791 else
26793 if (hlinfo->mouse_face_beg_row == hlinfo->mouse_face_end_row)
26795 if (hlinfo->mouse_face_end_col < hpos && hpos <= hlinfo->mouse_face_beg_col)
26796 return 1;
26798 else if ((vpos == hlinfo->mouse_face_beg_row
26799 && hpos <= hlinfo->mouse_face_beg_col)
26800 || (vpos == hlinfo->mouse_face_end_row
26801 && hpos > hlinfo->mouse_face_end_col))
26802 return 1;
26804 return 0;
26808 /* EXPORT:
26809 Non-zero if physical cursor of window W is within mouse face. */
26812 cursor_in_mouse_face_p (struct window *w)
26814 int hpos = w->phys_cursor.hpos;
26815 int vpos = w->phys_cursor.vpos;
26816 struct glyph_row *row = MATRIX_ROW (w->current_matrix, vpos);
26818 /* When the window is hscrolled, cursor hpos can legitimately be out
26819 of bounds, but we draw the cursor at the corresponding window
26820 margin in that case. */
26821 if (!row->reversed_p && hpos < 0)
26822 hpos = 0;
26823 if (row->reversed_p && hpos >= row->used[TEXT_AREA])
26824 hpos = row->used[TEXT_AREA] - 1;
26826 return coords_in_mouse_face_p (w, hpos, vpos);
26831 /* Find the glyph rows START_ROW and END_ROW of window W that display
26832 characters between buffer positions START_CHARPOS and END_CHARPOS
26833 (excluding END_CHARPOS). DISP_STRING is a display string that
26834 covers these buffer positions. This is similar to
26835 row_containing_pos, but is more accurate when bidi reordering makes
26836 buffer positions change non-linearly with glyph rows. */
26837 static void
26838 rows_from_pos_range (struct window *w,
26839 ptrdiff_t start_charpos, ptrdiff_t end_charpos,
26840 Lisp_Object disp_string,
26841 struct glyph_row **start, struct glyph_row **end)
26843 struct glyph_row *first = MATRIX_FIRST_TEXT_ROW (w->current_matrix);
26844 int last_y = window_text_bottom_y (w);
26845 struct glyph_row *row;
26847 *start = NULL;
26848 *end = NULL;
26850 while (!first->enabled_p
26851 && first < MATRIX_BOTTOM_TEXT_ROW (w->current_matrix, w))
26852 first++;
26854 /* Find the START row. */
26855 for (row = first;
26856 row->enabled_p && MATRIX_ROW_BOTTOM_Y (row) <= last_y;
26857 row++)
26859 /* A row can potentially be the START row if the range of the
26860 characters it displays intersects the range
26861 [START_CHARPOS..END_CHARPOS). */
26862 if (! ((start_charpos < MATRIX_ROW_START_CHARPOS (row)
26863 && end_charpos < MATRIX_ROW_START_CHARPOS (row))
26864 /* See the commentary in row_containing_pos, for the
26865 explanation of the complicated way to check whether
26866 some position is beyond the end of the characters
26867 displayed by a row. */
26868 || ((start_charpos > MATRIX_ROW_END_CHARPOS (row)
26869 || (start_charpos == MATRIX_ROW_END_CHARPOS (row)
26870 && !row->ends_at_zv_p
26871 && !MATRIX_ROW_ENDS_IN_MIDDLE_OF_CHAR_P (row)))
26872 && (end_charpos > MATRIX_ROW_END_CHARPOS (row)
26873 || (end_charpos == MATRIX_ROW_END_CHARPOS (row)
26874 && !row->ends_at_zv_p
26875 && !MATRIX_ROW_ENDS_IN_MIDDLE_OF_CHAR_P (row))))))
26877 /* Found a candidate row. Now make sure at least one of the
26878 glyphs it displays has a charpos from the range
26879 [START_CHARPOS..END_CHARPOS).
26881 This is not obvious because bidi reordering could make
26882 buffer positions of a row be 1,2,3,102,101,100, and if we
26883 want to highlight characters in [50..60), we don't want
26884 this row, even though [50..60) does intersect [1..103),
26885 the range of character positions given by the row's start
26886 and end positions. */
26887 struct glyph *g = row->glyphs[TEXT_AREA];
26888 struct glyph *e = g + row->used[TEXT_AREA];
26890 while (g < e)
26892 if (((BUFFERP (g->object) || INTEGERP (g->object))
26893 && start_charpos <= g->charpos && g->charpos < end_charpos)
26894 /* A glyph that comes from DISP_STRING is by
26895 definition to be highlighted. */
26896 || EQ (g->object, disp_string))
26897 *start = row;
26898 g++;
26900 if (*start)
26901 break;
26905 /* Find the END row. */
26906 if (!*start
26907 /* If the last row is partially visible, start looking for END
26908 from that row, instead of starting from FIRST. */
26909 && !(row->enabled_p
26910 && row->y < last_y && MATRIX_ROW_BOTTOM_Y (row) > last_y))
26911 row = first;
26912 for ( ; row->enabled_p && MATRIX_ROW_BOTTOM_Y (row) <= last_y; row++)
26914 struct glyph_row *next = row + 1;
26915 ptrdiff_t next_start = MATRIX_ROW_START_CHARPOS (next);
26917 if (!next->enabled_p
26918 || next >= MATRIX_BOTTOM_TEXT_ROW (w->current_matrix, w)
26919 /* The first row >= START whose range of displayed characters
26920 does NOT intersect the range [START_CHARPOS..END_CHARPOS]
26921 is the row END + 1. */
26922 || (start_charpos < next_start
26923 && end_charpos < next_start)
26924 || ((start_charpos > MATRIX_ROW_END_CHARPOS (next)
26925 || (start_charpos == MATRIX_ROW_END_CHARPOS (next)
26926 && !next->ends_at_zv_p
26927 && !MATRIX_ROW_ENDS_IN_MIDDLE_OF_CHAR_P (next)))
26928 && (end_charpos > MATRIX_ROW_END_CHARPOS (next)
26929 || (end_charpos == MATRIX_ROW_END_CHARPOS (next)
26930 && !next->ends_at_zv_p
26931 && !MATRIX_ROW_ENDS_IN_MIDDLE_OF_CHAR_P (next)))))
26933 *end = row;
26934 break;
26936 else
26938 /* If the next row's edges intersect [START_CHARPOS..END_CHARPOS],
26939 but none of the characters it displays are in the range, it is
26940 also END + 1. */
26941 struct glyph *g = next->glyphs[TEXT_AREA];
26942 struct glyph *s = g;
26943 struct glyph *e = g + next->used[TEXT_AREA];
26945 while (g < e)
26947 if (((BUFFERP (g->object) || INTEGERP (g->object))
26948 && ((start_charpos <= g->charpos && g->charpos < end_charpos)
26949 /* If the buffer position of the first glyph in
26950 the row is equal to END_CHARPOS, it means
26951 the last character to be highlighted is the
26952 newline of ROW, and we must consider NEXT as
26953 END, not END+1. */
26954 || (((!next->reversed_p && g == s)
26955 || (next->reversed_p && g == e - 1))
26956 && (g->charpos == end_charpos
26957 /* Special case for when NEXT is an
26958 empty line at ZV. */
26959 || (g->charpos == -1
26960 && !row->ends_at_zv_p
26961 && next_start == end_charpos)))))
26962 /* A glyph that comes from DISP_STRING is by
26963 definition to be highlighted. */
26964 || EQ (g->object, disp_string))
26965 break;
26966 g++;
26968 if (g == e)
26970 *end = row;
26971 break;
26973 /* The first row that ends at ZV must be the last to be
26974 highlighted. */
26975 else if (next->ends_at_zv_p)
26977 *end = next;
26978 break;
26984 /* This function sets the mouse_face_* elements of HLINFO, assuming
26985 the mouse cursor is on a glyph with buffer charpos MOUSE_CHARPOS in
26986 window WINDOW. START_CHARPOS and END_CHARPOS are buffer positions
26987 for the overlay or run of text properties specifying the mouse
26988 face. BEFORE_STRING and AFTER_STRING, if non-nil, are a
26989 before-string and after-string that must also be highlighted.
26990 DISP_STRING, if non-nil, is a display string that may cover some
26991 or all of the highlighted text. */
26993 static void
26994 mouse_face_from_buffer_pos (Lisp_Object window,
26995 Mouse_HLInfo *hlinfo,
26996 ptrdiff_t mouse_charpos,
26997 ptrdiff_t start_charpos,
26998 ptrdiff_t end_charpos,
26999 Lisp_Object before_string,
27000 Lisp_Object after_string,
27001 Lisp_Object disp_string)
27003 struct window *w = XWINDOW (window);
27004 struct glyph_row *first = MATRIX_FIRST_TEXT_ROW (w->current_matrix);
27005 struct glyph_row *r1, *r2;
27006 struct glyph *glyph, *end;
27007 ptrdiff_t ignore, pos;
27008 int x;
27010 eassert (NILP (disp_string) || STRINGP (disp_string));
27011 eassert (NILP (before_string) || STRINGP (before_string));
27012 eassert (NILP (after_string) || STRINGP (after_string));
27014 /* Find the rows corresponding to START_CHARPOS and END_CHARPOS. */
27015 rows_from_pos_range (w, start_charpos, end_charpos, disp_string, &r1, &r2);
27016 if (r1 == NULL)
27017 r1 = MATRIX_ROW (w->current_matrix, w->window_end_vpos);
27018 /* If the before-string or display-string contains newlines,
27019 rows_from_pos_range skips to its last row. Move back. */
27020 if (!NILP (before_string) || !NILP (disp_string))
27022 struct glyph_row *prev;
27023 while ((prev = r1 - 1, prev >= first)
27024 && MATRIX_ROW_END_CHARPOS (prev) == start_charpos
27025 && prev->used[TEXT_AREA] > 0)
27027 struct glyph *beg = prev->glyphs[TEXT_AREA];
27028 glyph = beg + prev->used[TEXT_AREA];
27029 while (--glyph >= beg && INTEGERP (glyph->object));
27030 if (glyph < beg
27031 || !(EQ (glyph->object, before_string)
27032 || EQ (glyph->object, disp_string)))
27033 break;
27034 r1 = prev;
27037 if (r2 == NULL)
27039 r2 = MATRIX_ROW (w->current_matrix, w->window_end_vpos);
27040 hlinfo->mouse_face_past_end = 1;
27042 else if (!NILP (after_string))
27044 /* If the after-string has newlines, advance to its last row. */
27045 struct glyph_row *next;
27046 struct glyph_row *last
27047 = MATRIX_ROW (w->current_matrix, w->window_end_vpos);
27049 for (next = r2 + 1;
27050 next <= last
27051 && next->used[TEXT_AREA] > 0
27052 && EQ (next->glyphs[TEXT_AREA]->object, after_string);
27053 ++next)
27054 r2 = next;
27056 /* The rest of the display engine assumes that mouse_face_beg_row is
27057 either above mouse_face_end_row or identical to it. But with
27058 bidi-reordered continued lines, the row for START_CHARPOS could
27059 be below the row for END_CHARPOS. If so, swap the rows and store
27060 them in correct order. */
27061 if (r1->y > r2->y)
27063 struct glyph_row *tem = r2;
27065 r2 = r1;
27066 r1 = tem;
27069 hlinfo->mouse_face_beg_y = r1->y;
27070 hlinfo->mouse_face_beg_row = MATRIX_ROW_VPOS (r1, w->current_matrix);
27071 hlinfo->mouse_face_end_y = r2->y;
27072 hlinfo->mouse_face_end_row = MATRIX_ROW_VPOS (r2, w->current_matrix);
27074 /* For a bidi-reordered row, the positions of BEFORE_STRING,
27075 AFTER_STRING, DISP_STRING, START_CHARPOS, and END_CHARPOS
27076 could be anywhere in the row and in any order. The strategy
27077 below is to find the leftmost and the rightmost glyph that
27078 belongs to either of these 3 strings, or whose position is
27079 between START_CHARPOS and END_CHARPOS, and highlight all the
27080 glyphs between those two. This may cover more than just the text
27081 between START_CHARPOS and END_CHARPOS if the range of characters
27082 strides the bidi level boundary, e.g. if the beginning is in R2L
27083 text while the end is in L2R text or vice versa. */
27084 if (!r1->reversed_p)
27086 /* This row is in a left to right paragraph. Scan it left to
27087 right. */
27088 glyph = r1->glyphs[TEXT_AREA];
27089 end = glyph + r1->used[TEXT_AREA];
27090 x = r1->x;
27092 /* Skip truncation glyphs at the start of the glyph row. */
27093 if (MATRIX_ROW_DISPLAYS_TEXT_P (r1))
27094 for (; glyph < end
27095 && INTEGERP (glyph->object)
27096 && glyph->charpos < 0;
27097 ++glyph)
27098 x += glyph->pixel_width;
27100 /* Scan the glyph row, looking for BEFORE_STRING, AFTER_STRING,
27101 or DISP_STRING, and the first glyph from buffer whose
27102 position is between START_CHARPOS and END_CHARPOS. */
27103 for (; glyph < end
27104 && !INTEGERP (glyph->object)
27105 && !EQ (glyph->object, disp_string)
27106 && !(BUFFERP (glyph->object)
27107 && (glyph->charpos >= start_charpos
27108 && glyph->charpos < end_charpos));
27109 ++glyph)
27111 /* BEFORE_STRING or AFTER_STRING are only relevant if they
27112 are present at buffer positions between START_CHARPOS and
27113 END_CHARPOS, or if they come from an overlay. */
27114 if (EQ (glyph->object, before_string))
27116 pos = string_buffer_position (before_string,
27117 start_charpos);
27118 /* If pos == 0, it means before_string came from an
27119 overlay, not from a buffer position. */
27120 if (!pos || (pos >= start_charpos && pos < end_charpos))
27121 break;
27123 else if (EQ (glyph->object, after_string))
27125 pos = string_buffer_position (after_string, end_charpos);
27126 if (!pos || (pos >= start_charpos && pos < end_charpos))
27127 break;
27129 x += glyph->pixel_width;
27131 hlinfo->mouse_face_beg_x = x;
27132 hlinfo->mouse_face_beg_col = glyph - r1->glyphs[TEXT_AREA];
27134 else
27136 /* This row is in a right to left paragraph. Scan it right to
27137 left. */
27138 struct glyph *g;
27140 end = r1->glyphs[TEXT_AREA] - 1;
27141 glyph = end + r1->used[TEXT_AREA];
27143 /* Skip truncation glyphs at the start of the glyph row. */
27144 if (MATRIX_ROW_DISPLAYS_TEXT_P (r1))
27145 for (; glyph > end
27146 && INTEGERP (glyph->object)
27147 && glyph->charpos < 0;
27148 --glyph)
27151 /* Scan the glyph row, looking for BEFORE_STRING, AFTER_STRING,
27152 or DISP_STRING, and the first glyph from buffer whose
27153 position is between START_CHARPOS and END_CHARPOS. */
27154 for (; glyph > end
27155 && !INTEGERP (glyph->object)
27156 && !EQ (glyph->object, disp_string)
27157 && !(BUFFERP (glyph->object)
27158 && (glyph->charpos >= start_charpos
27159 && glyph->charpos < end_charpos));
27160 --glyph)
27162 /* BEFORE_STRING or AFTER_STRING are only relevant if they
27163 are present at buffer positions between START_CHARPOS and
27164 END_CHARPOS, or if they come from an overlay. */
27165 if (EQ (glyph->object, before_string))
27167 pos = string_buffer_position (before_string, start_charpos);
27168 /* If pos == 0, it means before_string came from an
27169 overlay, not from a buffer position. */
27170 if (!pos || (pos >= start_charpos && pos < end_charpos))
27171 break;
27173 else if (EQ (glyph->object, after_string))
27175 pos = string_buffer_position (after_string, end_charpos);
27176 if (!pos || (pos >= start_charpos && pos < end_charpos))
27177 break;
27181 glyph++; /* first glyph to the right of the highlighted area */
27182 for (g = r1->glyphs[TEXT_AREA], x = r1->x; g < glyph; g++)
27183 x += g->pixel_width;
27184 hlinfo->mouse_face_beg_x = x;
27185 hlinfo->mouse_face_beg_col = glyph - r1->glyphs[TEXT_AREA];
27188 /* If the highlight ends in a different row, compute GLYPH and END
27189 for the end row. Otherwise, reuse the values computed above for
27190 the row where the highlight begins. */
27191 if (r2 != r1)
27193 if (!r2->reversed_p)
27195 glyph = r2->glyphs[TEXT_AREA];
27196 end = glyph + r2->used[TEXT_AREA];
27197 x = r2->x;
27199 else
27201 end = r2->glyphs[TEXT_AREA] - 1;
27202 glyph = end + r2->used[TEXT_AREA];
27206 if (!r2->reversed_p)
27208 /* Skip truncation and continuation glyphs near the end of the
27209 row, and also blanks and stretch glyphs inserted by
27210 extend_face_to_end_of_line. */
27211 while (end > glyph
27212 && INTEGERP ((end - 1)->object))
27213 --end;
27214 /* Scan the rest of the glyph row from the end, looking for the
27215 first glyph that comes from BEFORE_STRING, AFTER_STRING, or
27216 DISP_STRING, or whose position is between START_CHARPOS
27217 and END_CHARPOS */
27218 for (--end;
27219 end > glyph
27220 && !INTEGERP (end->object)
27221 && !EQ (end->object, disp_string)
27222 && !(BUFFERP (end->object)
27223 && (end->charpos >= start_charpos
27224 && end->charpos < end_charpos));
27225 --end)
27227 /* BEFORE_STRING or AFTER_STRING are only relevant if they
27228 are present at buffer positions between START_CHARPOS and
27229 END_CHARPOS, or if they come from an overlay. */
27230 if (EQ (end->object, before_string))
27232 pos = string_buffer_position (before_string, start_charpos);
27233 if (!pos || (pos >= start_charpos && pos < end_charpos))
27234 break;
27236 else if (EQ (end->object, after_string))
27238 pos = string_buffer_position (after_string, end_charpos);
27239 if (!pos || (pos >= start_charpos && pos < end_charpos))
27240 break;
27243 /* Find the X coordinate of the last glyph to be highlighted. */
27244 for (; glyph <= end; ++glyph)
27245 x += glyph->pixel_width;
27247 hlinfo->mouse_face_end_x = x;
27248 hlinfo->mouse_face_end_col = glyph - r2->glyphs[TEXT_AREA];
27250 else
27252 /* Skip truncation and continuation glyphs near the end of the
27253 row, and also blanks and stretch glyphs inserted by
27254 extend_face_to_end_of_line. */
27255 x = r2->x;
27256 end++;
27257 while (end < glyph
27258 && INTEGERP (end->object))
27260 x += end->pixel_width;
27261 ++end;
27263 /* Scan the rest of the glyph row from the end, looking for the
27264 first glyph that comes from BEFORE_STRING, AFTER_STRING, or
27265 DISP_STRING, or whose position is between START_CHARPOS
27266 and END_CHARPOS */
27267 for ( ;
27268 end < glyph
27269 && !INTEGERP (end->object)
27270 && !EQ (end->object, disp_string)
27271 && !(BUFFERP (end->object)
27272 && (end->charpos >= start_charpos
27273 && end->charpos < end_charpos));
27274 ++end)
27276 /* BEFORE_STRING or AFTER_STRING are only relevant if they
27277 are present at buffer positions between START_CHARPOS and
27278 END_CHARPOS, or if they come from an overlay. */
27279 if (EQ (end->object, before_string))
27281 pos = string_buffer_position (before_string, start_charpos);
27282 if (!pos || (pos >= start_charpos && pos < end_charpos))
27283 break;
27285 else if (EQ (end->object, after_string))
27287 pos = string_buffer_position (after_string, end_charpos);
27288 if (!pos || (pos >= start_charpos && pos < end_charpos))
27289 break;
27291 x += end->pixel_width;
27293 /* If we exited the above loop because we arrived at the last
27294 glyph of the row, and its buffer position is still not in
27295 range, it means the last character in range is the preceding
27296 newline. Bump the end column and x values to get past the
27297 last glyph. */
27298 if (end == glyph
27299 && BUFFERP (end->object)
27300 && (end->charpos < start_charpos
27301 || end->charpos >= end_charpos))
27303 x += end->pixel_width;
27304 ++end;
27306 hlinfo->mouse_face_end_x = x;
27307 hlinfo->mouse_face_end_col = end - r2->glyphs[TEXT_AREA];
27310 hlinfo->mouse_face_window = window;
27311 hlinfo->mouse_face_face_id
27312 = face_at_buffer_position (w, mouse_charpos, 0, 0, &ignore,
27313 mouse_charpos + 1,
27314 !hlinfo->mouse_face_hidden, -1);
27315 show_mouse_face (hlinfo, DRAW_MOUSE_FACE);
27318 /* The following function is not used anymore (replaced with
27319 mouse_face_from_string_pos), but I leave it here for the time
27320 being, in case someone would. */
27322 #if 0 /* not used */
27324 /* Find the position of the glyph for position POS in OBJECT in
27325 window W's current matrix, and return in *X, *Y the pixel
27326 coordinates, and return in *HPOS, *VPOS the column/row of the glyph.
27328 RIGHT_P non-zero means return the position of the right edge of the
27329 glyph, RIGHT_P zero means return the left edge position.
27331 If no glyph for POS exists in the matrix, return the position of
27332 the glyph with the next smaller position that is in the matrix, if
27333 RIGHT_P is zero. If RIGHT_P is non-zero, and no glyph for POS
27334 exists in the matrix, return the position of the glyph with the
27335 next larger position in OBJECT.
27337 Value is non-zero if a glyph was found. */
27339 static int
27340 fast_find_string_pos (struct window *w, ptrdiff_t pos, Lisp_Object object,
27341 int *hpos, int *vpos, int *x, int *y, int right_p)
27343 int yb = window_text_bottom_y (w);
27344 struct glyph_row *r;
27345 struct glyph *best_glyph = NULL;
27346 struct glyph_row *best_row = NULL;
27347 int best_x = 0;
27349 for (r = MATRIX_FIRST_TEXT_ROW (w->current_matrix);
27350 r->enabled_p && r->y < yb;
27351 ++r)
27353 struct glyph *g = r->glyphs[TEXT_AREA];
27354 struct glyph *e = g + r->used[TEXT_AREA];
27355 int gx;
27357 for (gx = r->x; g < e; gx += g->pixel_width, ++g)
27358 if (EQ (g->object, object))
27360 if (g->charpos == pos)
27362 best_glyph = g;
27363 best_x = gx;
27364 best_row = r;
27365 goto found;
27367 else if (best_glyph == NULL
27368 || ((eabs (g->charpos - pos)
27369 < eabs (best_glyph->charpos - pos))
27370 && (right_p
27371 ? g->charpos < pos
27372 : g->charpos > pos)))
27374 best_glyph = g;
27375 best_x = gx;
27376 best_row = r;
27381 found:
27383 if (best_glyph)
27385 *x = best_x;
27386 *hpos = best_glyph - best_row->glyphs[TEXT_AREA];
27388 if (right_p)
27390 *x += best_glyph->pixel_width;
27391 ++*hpos;
27394 *y = best_row->y;
27395 *vpos = MATRIX_ROW_VPOS (best_row, w->current_matrix);
27398 return best_glyph != NULL;
27400 #endif /* not used */
27402 /* Find the positions of the first and the last glyphs in window W's
27403 current matrix that occlude positions [STARTPOS..ENDPOS] in OBJECT
27404 (assumed to be a string), and return in HLINFO's mouse_face_*
27405 members the pixel and column/row coordinates of those glyphs. */
27407 static void
27408 mouse_face_from_string_pos (struct window *w, Mouse_HLInfo *hlinfo,
27409 Lisp_Object object,
27410 ptrdiff_t startpos, ptrdiff_t endpos)
27412 int yb = window_text_bottom_y (w);
27413 struct glyph_row *r;
27414 struct glyph *g, *e;
27415 int gx;
27416 int found = 0;
27418 /* Find the glyph row with at least one position in the range
27419 [STARTPOS..ENDPOS], and the first glyph in that row whose
27420 position belongs to that range. */
27421 for (r = MATRIX_FIRST_TEXT_ROW (w->current_matrix);
27422 r->enabled_p && r->y < yb;
27423 ++r)
27425 if (!r->reversed_p)
27427 g = r->glyphs[TEXT_AREA];
27428 e = g + r->used[TEXT_AREA];
27429 for (gx = r->x; g < e; gx += g->pixel_width, ++g)
27430 if (EQ (g->object, object)
27431 && startpos <= g->charpos && g->charpos <= endpos)
27433 hlinfo->mouse_face_beg_row
27434 = MATRIX_ROW_VPOS (r, w->current_matrix);
27435 hlinfo->mouse_face_beg_y = r->y;
27436 hlinfo->mouse_face_beg_col = g - r->glyphs[TEXT_AREA];
27437 hlinfo->mouse_face_beg_x = gx;
27438 found = 1;
27439 break;
27442 else
27444 struct glyph *g1;
27446 e = r->glyphs[TEXT_AREA];
27447 g = e + r->used[TEXT_AREA];
27448 for ( ; g > e; --g)
27449 if (EQ ((g-1)->object, object)
27450 && startpos <= (g-1)->charpos && (g-1)->charpos <= endpos)
27452 hlinfo->mouse_face_beg_row
27453 = MATRIX_ROW_VPOS (r, w->current_matrix);
27454 hlinfo->mouse_face_beg_y = r->y;
27455 hlinfo->mouse_face_beg_col = g - r->glyphs[TEXT_AREA];
27456 for (gx = r->x, g1 = r->glyphs[TEXT_AREA]; g1 < g; ++g1)
27457 gx += g1->pixel_width;
27458 hlinfo->mouse_face_beg_x = gx;
27459 found = 1;
27460 break;
27463 if (found)
27464 break;
27467 if (!found)
27468 return;
27470 /* Starting with the next row, look for the first row which does NOT
27471 include any glyphs whose positions are in the range. */
27472 for (++r; r->enabled_p && r->y < yb; ++r)
27474 g = r->glyphs[TEXT_AREA];
27475 e = g + r->used[TEXT_AREA];
27476 found = 0;
27477 for ( ; g < e; ++g)
27478 if (EQ (g->object, object)
27479 && startpos <= g->charpos && g->charpos <= endpos)
27481 found = 1;
27482 break;
27484 if (!found)
27485 break;
27488 /* The highlighted region ends on the previous row. */
27489 r--;
27491 /* Set the end row and its vertical pixel coordinate. */
27492 hlinfo->mouse_face_end_row = MATRIX_ROW_VPOS (r, w->current_matrix);
27493 hlinfo->mouse_face_end_y = r->y;
27495 /* Compute and set the end column and the end column's horizontal
27496 pixel coordinate. */
27497 if (!r->reversed_p)
27499 g = r->glyphs[TEXT_AREA];
27500 e = g + r->used[TEXT_AREA];
27501 for ( ; e > g; --e)
27502 if (EQ ((e-1)->object, object)
27503 && startpos <= (e-1)->charpos && (e-1)->charpos <= endpos)
27504 break;
27505 hlinfo->mouse_face_end_col = e - g;
27507 for (gx = r->x; g < e; ++g)
27508 gx += g->pixel_width;
27509 hlinfo->mouse_face_end_x = gx;
27511 else
27513 e = r->glyphs[TEXT_AREA];
27514 g = e + r->used[TEXT_AREA];
27515 for (gx = r->x ; e < g; ++e)
27517 if (EQ (e->object, object)
27518 && startpos <= e->charpos && e->charpos <= endpos)
27519 break;
27520 gx += e->pixel_width;
27522 hlinfo->mouse_face_end_col = e - r->glyphs[TEXT_AREA];
27523 hlinfo->mouse_face_end_x = gx;
27527 #ifdef HAVE_WINDOW_SYSTEM
27529 /* See if position X, Y is within a hot-spot of an image. */
27531 static int
27532 on_hot_spot_p (Lisp_Object hot_spot, int x, int y)
27534 if (!CONSP (hot_spot))
27535 return 0;
27537 if (EQ (XCAR (hot_spot), Qrect))
27539 /* CDR is (Top-Left . Bottom-Right) = ((x0 . y0) . (x1 . y1)) */
27540 Lisp_Object rect = XCDR (hot_spot);
27541 Lisp_Object tem;
27542 if (!CONSP (rect))
27543 return 0;
27544 if (!CONSP (XCAR (rect)))
27545 return 0;
27546 if (!CONSP (XCDR (rect)))
27547 return 0;
27548 if (!(tem = XCAR (XCAR (rect)), INTEGERP (tem) && x >= XINT (tem)))
27549 return 0;
27550 if (!(tem = XCDR (XCAR (rect)), INTEGERP (tem) && y >= XINT (tem)))
27551 return 0;
27552 if (!(tem = XCAR (XCDR (rect)), INTEGERP (tem) && x <= XINT (tem)))
27553 return 0;
27554 if (!(tem = XCDR (XCDR (rect)), INTEGERP (tem) && y <= XINT (tem)))
27555 return 0;
27556 return 1;
27558 else if (EQ (XCAR (hot_spot), Qcircle))
27560 /* CDR is (Center . Radius) = ((x0 . y0) . r) */
27561 Lisp_Object circ = XCDR (hot_spot);
27562 Lisp_Object lr, lx0, ly0;
27563 if (CONSP (circ)
27564 && CONSP (XCAR (circ))
27565 && (lr = XCDR (circ), INTEGERP (lr) || FLOATP (lr))
27566 && (lx0 = XCAR (XCAR (circ)), INTEGERP (lx0))
27567 && (ly0 = XCDR (XCAR (circ)), INTEGERP (ly0)))
27569 double r = XFLOATINT (lr);
27570 double dx = XINT (lx0) - x;
27571 double dy = XINT (ly0) - y;
27572 return (dx * dx + dy * dy <= r * r);
27575 else if (EQ (XCAR (hot_spot), Qpoly))
27577 /* CDR is [x0 y0 x1 y1 x2 y2 ...x(n-1) y(n-1)] */
27578 if (VECTORP (XCDR (hot_spot)))
27580 struct Lisp_Vector *v = XVECTOR (XCDR (hot_spot));
27581 Lisp_Object *poly = v->contents;
27582 ptrdiff_t n = v->header.size;
27583 ptrdiff_t i;
27584 int inside = 0;
27585 Lisp_Object lx, ly;
27586 int x0, y0;
27588 /* Need an even number of coordinates, and at least 3 edges. */
27589 if (n < 6 || n & 1)
27590 return 0;
27592 /* Count edge segments intersecting line from (X,Y) to (X,infinity).
27593 If count is odd, we are inside polygon. Pixels on edges
27594 may or may not be included depending on actual geometry of the
27595 polygon. */
27596 if ((lx = poly[n-2], !INTEGERP (lx))
27597 || (ly = poly[n-1], !INTEGERP (lx)))
27598 return 0;
27599 x0 = XINT (lx), y0 = XINT (ly);
27600 for (i = 0; i < n; i += 2)
27602 int x1 = x0, y1 = y0;
27603 if ((lx = poly[i], !INTEGERP (lx))
27604 || (ly = poly[i+1], !INTEGERP (ly)))
27605 return 0;
27606 x0 = XINT (lx), y0 = XINT (ly);
27608 /* Does this segment cross the X line? */
27609 if (x0 >= x)
27611 if (x1 >= x)
27612 continue;
27614 else if (x1 < x)
27615 continue;
27616 if (y > y0 && y > y1)
27617 continue;
27618 if (y < y0 + ((y1 - y0) * (x - x0)) / (x1 - x0))
27619 inside = !inside;
27621 return inside;
27624 return 0;
27627 Lisp_Object
27628 find_hot_spot (Lisp_Object map, int x, int y)
27630 while (CONSP (map))
27632 if (CONSP (XCAR (map))
27633 && on_hot_spot_p (XCAR (XCAR (map)), x, y))
27634 return XCAR (map);
27635 map = XCDR (map);
27638 return Qnil;
27641 DEFUN ("lookup-image-map", Flookup_image_map, Slookup_image_map,
27642 3, 3, 0,
27643 doc: /* Lookup in image map MAP coordinates X and Y.
27644 An image map is an alist where each element has the format (AREA ID PLIST).
27645 An AREA is specified as either a rectangle, a circle, or a polygon:
27646 A rectangle is a cons (rect . ((x0 . y0) . (x1 . y1))) specifying the
27647 pixel coordinates of the upper left and bottom right corners.
27648 A circle is a cons (circle . ((x0 . y0) . r)) specifying the center
27649 and the radius of the circle; r may be a float or integer.
27650 A polygon is a cons (poly . [x0 y0 x1 y1 ...]) where each pair in the
27651 vector describes one corner in the polygon.
27652 Returns the alist element for the first matching AREA in MAP. */)
27653 (Lisp_Object map, Lisp_Object x, Lisp_Object y)
27655 if (NILP (map))
27656 return Qnil;
27658 CHECK_NUMBER (x);
27659 CHECK_NUMBER (y);
27661 return find_hot_spot (map,
27662 clip_to_bounds (INT_MIN, XINT (x), INT_MAX),
27663 clip_to_bounds (INT_MIN, XINT (y), INT_MAX));
27667 /* Display frame CURSOR, optionally using shape defined by POINTER. */
27668 static void
27669 define_frame_cursor1 (struct frame *f, Cursor cursor, Lisp_Object pointer)
27671 /* Do not change cursor shape while dragging mouse. */
27672 if (!NILP (do_mouse_tracking))
27673 return;
27675 if (!NILP (pointer))
27677 if (EQ (pointer, Qarrow))
27678 cursor = FRAME_X_OUTPUT (f)->nontext_cursor;
27679 else if (EQ (pointer, Qhand))
27680 cursor = FRAME_X_OUTPUT (f)->hand_cursor;
27681 else if (EQ (pointer, Qtext))
27682 cursor = FRAME_X_OUTPUT (f)->text_cursor;
27683 else if (EQ (pointer, intern ("hdrag")))
27684 cursor = FRAME_X_OUTPUT (f)->horizontal_drag_cursor;
27685 #ifdef HAVE_X_WINDOWS
27686 else if (EQ (pointer, intern ("vdrag")))
27687 cursor = FRAME_X_DISPLAY_INFO (f)->vertical_scroll_bar_cursor;
27688 #endif
27689 else if (EQ (pointer, intern ("hourglass")))
27690 cursor = FRAME_X_OUTPUT (f)->hourglass_cursor;
27691 else if (EQ (pointer, Qmodeline))
27692 cursor = FRAME_X_OUTPUT (f)->modeline_cursor;
27693 else
27694 cursor = FRAME_X_OUTPUT (f)->nontext_cursor;
27697 if (cursor != No_Cursor)
27698 FRAME_RIF (f)->define_frame_cursor (f, cursor);
27701 #endif /* HAVE_WINDOW_SYSTEM */
27703 /* Take proper action when mouse has moved to the mode or header line
27704 or marginal area AREA of window W, x-position X and y-position Y.
27705 X is relative to the start of the text display area of W, so the
27706 width of bitmap areas and scroll bars must be subtracted to get a
27707 position relative to the start of the mode line. */
27709 static void
27710 note_mode_line_or_margin_highlight (Lisp_Object window, int x, int y,
27711 enum window_part area)
27713 struct window *w = XWINDOW (window);
27714 struct frame *f = XFRAME (w->frame);
27715 Mouse_HLInfo *hlinfo = MOUSE_HL_INFO (f);
27716 #ifdef HAVE_WINDOW_SYSTEM
27717 Display_Info *dpyinfo;
27718 #endif
27719 Cursor cursor = No_Cursor;
27720 Lisp_Object pointer = Qnil;
27721 int dx, dy, width, height;
27722 ptrdiff_t charpos;
27723 Lisp_Object string, object = Qnil;
27724 Lisp_Object pos IF_LINT (= Qnil), help;
27726 Lisp_Object mouse_face;
27727 int original_x_pixel = x;
27728 struct glyph * glyph = NULL, * row_start_glyph = NULL;
27729 struct glyph_row *row IF_LINT (= 0);
27731 if (area == ON_MODE_LINE || area == ON_HEADER_LINE)
27733 int x0;
27734 struct glyph *end;
27736 /* Kludge alert: mode_line_string takes X/Y in pixels, but
27737 returns them in row/column units! */
27738 string = mode_line_string (w, area, &x, &y, &charpos,
27739 &object, &dx, &dy, &width, &height);
27741 row = (area == ON_MODE_LINE
27742 ? MATRIX_MODE_LINE_ROW (w->current_matrix)
27743 : MATRIX_HEADER_LINE_ROW (w->current_matrix));
27745 /* Find the glyph under the mouse pointer. */
27746 if (row->mode_line_p && row->enabled_p)
27748 glyph = row_start_glyph = row->glyphs[TEXT_AREA];
27749 end = glyph + row->used[TEXT_AREA];
27751 for (x0 = original_x_pixel;
27752 glyph < end && x0 >= glyph->pixel_width;
27753 ++glyph)
27754 x0 -= glyph->pixel_width;
27756 if (glyph >= end)
27757 glyph = NULL;
27760 else
27762 x -= WINDOW_LEFT_SCROLL_BAR_AREA_WIDTH (w);
27763 /* Kludge alert: marginal_area_string takes X/Y in pixels, but
27764 returns them in row/column units! */
27765 string = marginal_area_string (w, area, &x, &y, &charpos,
27766 &object, &dx, &dy, &width, &height);
27769 help = Qnil;
27771 #ifdef HAVE_WINDOW_SYSTEM
27772 if (IMAGEP (object))
27774 Lisp_Object image_map, hotspot;
27775 if ((image_map = Fplist_get (XCDR (object), QCmap),
27776 !NILP (image_map))
27777 && (hotspot = find_hot_spot (image_map, dx, dy),
27778 CONSP (hotspot))
27779 && (hotspot = XCDR (hotspot), CONSP (hotspot)))
27781 Lisp_Object plist;
27783 /* Could check XCAR (hotspot) to see if we enter/leave this hot-spot.
27784 If so, we could look for mouse-enter, mouse-leave
27785 properties in PLIST (and do something...). */
27786 hotspot = XCDR (hotspot);
27787 if (CONSP (hotspot)
27788 && (plist = XCAR (hotspot), CONSP (plist)))
27790 pointer = Fplist_get (plist, Qpointer);
27791 if (NILP (pointer))
27792 pointer = Qhand;
27793 help = Fplist_get (plist, Qhelp_echo);
27794 if (!NILP (help))
27796 help_echo_string = help;
27797 XSETWINDOW (help_echo_window, w);
27798 help_echo_object = w->contents;
27799 help_echo_pos = charpos;
27803 if (NILP (pointer))
27804 pointer = Fplist_get (XCDR (object), QCpointer);
27806 #endif /* HAVE_WINDOW_SYSTEM */
27808 if (STRINGP (string))
27809 pos = make_number (charpos);
27811 /* Set the help text and mouse pointer. If the mouse is on a part
27812 of the mode line without any text (e.g. past the right edge of
27813 the mode line text), use the default help text and pointer. */
27814 if (STRINGP (string) || area == ON_MODE_LINE)
27816 /* Arrange to display the help by setting the global variables
27817 help_echo_string, help_echo_object, and help_echo_pos. */
27818 if (NILP (help))
27820 if (STRINGP (string))
27821 help = Fget_text_property (pos, Qhelp_echo, string);
27823 if (!NILP (help))
27825 help_echo_string = help;
27826 XSETWINDOW (help_echo_window, w);
27827 help_echo_object = string;
27828 help_echo_pos = charpos;
27830 else if (area == ON_MODE_LINE)
27832 Lisp_Object default_help
27833 = buffer_local_value_1 (Qmode_line_default_help_echo,
27834 w->contents);
27836 if (STRINGP (default_help))
27838 help_echo_string = default_help;
27839 XSETWINDOW (help_echo_window, w);
27840 help_echo_object = Qnil;
27841 help_echo_pos = -1;
27846 #ifdef HAVE_WINDOW_SYSTEM
27847 /* Change the mouse pointer according to what is under it. */
27848 if (FRAME_WINDOW_P (f))
27850 dpyinfo = FRAME_X_DISPLAY_INFO (f);
27851 if (STRINGP (string))
27853 cursor = FRAME_X_OUTPUT (f)->nontext_cursor;
27855 if (NILP (pointer))
27856 pointer = Fget_text_property (pos, Qpointer, string);
27858 /* Change the mouse pointer according to what is under X/Y. */
27859 if (NILP (pointer)
27860 && ((area == ON_MODE_LINE) || (area == ON_HEADER_LINE)))
27862 Lisp_Object map;
27863 map = Fget_text_property (pos, Qlocal_map, string);
27864 if (!KEYMAPP (map))
27865 map = Fget_text_property (pos, Qkeymap, string);
27866 if (!KEYMAPP (map))
27867 cursor = dpyinfo->vertical_scroll_bar_cursor;
27870 else
27871 /* Default mode-line pointer. */
27872 cursor = FRAME_X_DISPLAY_INFO (f)->vertical_scroll_bar_cursor;
27874 #endif
27877 /* Change the mouse face according to what is under X/Y. */
27878 if (STRINGP (string))
27880 mouse_face = Fget_text_property (pos, Qmouse_face, string);
27881 if (!NILP (Vmouse_highlight) && !NILP (mouse_face)
27882 && ((area == ON_MODE_LINE) || (area == ON_HEADER_LINE))
27883 && glyph)
27885 Lisp_Object b, e;
27887 struct glyph * tmp_glyph;
27889 int gpos;
27890 int gseq_length;
27891 int total_pixel_width;
27892 ptrdiff_t begpos, endpos, ignore;
27894 int vpos, hpos;
27896 b = Fprevious_single_property_change (make_number (charpos + 1),
27897 Qmouse_face, string, Qnil);
27898 if (NILP (b))
27899 begpos = 0;
27900 else
27901 begpos = XINT (b);
27903 e = Fnext_single_property_change (pos, Qmouse_face, string, Qnil);
27904 if (NILP (e))
27905 endpos = SCHARS (string);
27906 else
27907 endpos = XINT (e);
27909 /* Calculate the glyph position GPOS of GLYPH in the
27910 displayed string, relative to the beginning of the
27911 highlighted part of the string.
27913 Note: GPOS is different from CHARPOS. CHARPOS is the
27914 position of GLYPH in the internal string object. A mode
27915 line string format has structures which are converted to
27916 a flattened string by the Emacs Lisp interpreter. The
27917 internal string is an element of those structures. The
27918 displayed string is the flattened string. */
27919 tmp_glyph = row_start_glyph;
27920 while (tmp_glyph < glyph
27921 && (!(EQ (tmp_glyph->object, glyph->object)
27922 && begpos <= tmp_glyph->charpos
27923 && tmp_glyph->charpos < endpos)))
27924 tmp_glyph++;
27925 gpos = glyph - tmp_glyph;
27927 /* Calculate the length GSEQ_LENGTH of the glyph sequence of
27928 the highlighted part of the displayed string to which
27929 GLYPH belongs. Note: GSEQ_LENGTH is different from
27930 SCHARS (STRING), because the latter returns the length of
27931 the internal string. */
27932 for (tmp_glyph = row->glyphs[TEXT_AREA] + row->used[TEXT_AREA] - 1;
27933 tmp_glyph > glyph
27934 && (!(EQ (tmp_glyph->object, glyph->object)
27935 && begpos <= tmp_glyph->charpos
27936 && tmp_glyph->charpos < endpos));
27937 tmp_glyph--)
27939 gseq_length = gpos + (tmp_glyph - glyph) + 1;
27941 /* Calculate the total pixel width of all the glyphs between
27942 the beginning of the highlighted area and GLYPH. */
27943 total_pixel_width = 0;
27944 for (tmp_glyph = glyph - gpos; tmp_glyph != glyph; tmp_glyph++)
27945 total_pixel_width += tmp_glyph->pixel_width;
27947 /* Pre calculation of re-rendering position. Note: X is in
27948 column units here, after the call to mode_line_string or
27949 marginal_area_string. */
27950 hpos = x - gpos;
27951 vpos = (area == ON_MODE_LINE
27952 ? (w->current_matrix)->nrows - 1
27953 : 0);
27955 /* If GLYPH's position is included in the region that is
27956 already drawn in mouse face, we have nothing to do. */
27957 if ( EQ (window, hlinfo->mouse_face_window)
27958 && (!row->reversed_p
27959 ? (hlinfo->mouse_face_beg_col <= hpos
27960 && hpos < hlinfo->mouse_face_end_col)
27961 /* In R2L rows we swap BEG and END, see below. */
27962 : (hlinfo->mouse_face_end_col <= hpos
27963 && hpos < hlinfo->mouse_face_beg_col))
27964 && hlinfo->mouse_face_beg_row == vpos )
27965 return;
27967 if (clear_mouse_face (hlinfo))
27968 cursor = No_Cursor;
27970 if (!row->reversed_p)
27972 hlinfo->mouse_face_beg_col = hpos;
27973 hlinfo->mouse_face_beg_x = original_x_pixel
27974 - (total_pixel_width + dx);
27975 hlinfo->mouse_face_end_col = hpos + gseq_length;
27976 hlinfo->mouse_face_end_x = 0;
27978 else
27980 /* In R2L rows, show_mouse_face expects BEG and END
27981 coordinates to be swapped. */
27982 hlinfo->mouse_face_end_col = hpos;
27983 hlinfo->mouse_face_end_x = original_x_pixel
27984 - (total_pixel_width + dx);
27985 hlinfo->mouse_face_beg_col = hpos + gseq_length;
27986 hlinfo->mouse_face_beg_x = 0;
27989 hlinfo->mouse_face_beg_row = vpos;
27990 hlinfo->mouse_face_end_row = hlinfo->mouse_face_beg_row;
27991 hlinfo->mouse_face_beg_y = 0;
27992 hlinfo->mouse_face_end_y = 0;
27993 hlinfo->mouse_face_past_end = 0;
27994 hlinfo->mouse_face_window = window;
27996 hlinfo->mouse_face_face_id = face_at_string_position (w, string,
27997 charpos,
27998 0, 0, 0,
27999 &ignore,
28000 glyph->face_id,
28002 show_mouse_face (hlinfo, DRAW_MOUSE_FACE);
28004 if (NILP (pointer))
28005 pointer = Qhand;
28007 else if ((area == ON_MODE_LINE) || (area == ON_HEADER_LINE))
28008 clear_mouse_face (hlinfo);
28010 #ifdef HAVE_WINDOW_SYSTEM
28011 if (FRAME_WINDOW_P (f))
28012 define_frame_cursor1 (f, cursor, pointer);
28013 #endif
28017 /* EXPORT:
28018 Take proper action when the mouse has moved to position X, Y on
28019 frame F with regards to highlighting portions of display that have
28020 mouse-face properties. Also de-highlight portions of display where
28021 the mouse was before, set the mouse pointer shape as appropriate
28022 for the mouse coordinates, and activate help echo (tooltips).
28023 X and Y can be negative or out of range. */
28025 void
28026 note_mouse_highlight (struct frame *f, int x, int y)
28028 Mouse_HLInfo *hlinfo = MOUSE_HL_INFO (f);
28029 enum window_part part = ON_NOTHING;
28030 Lisp_Object window;
28031 struct window *w;
28032 Cursor cursor = No_Cursor;
28033 Lisp_Object pointer = Qnil; /* Takes precedence over cursor! */
28034 struct buffer *b;
28036 /* When a menu is active, don't highlight because this looks odd. */
28037 #if defined (USE_X_TOOLKIT) || defined (USE_GTK) || defined (HAVE_NS) || defined (MSDOS)
28038 if (popup_activated ())
28039 return;
28040 #endif
28042 if (!f->glyphs_initialized_p
28043 || f->pointer_invisible)
28044 return;
28046 hlinfo->mouse_face_mouse_x = x;
28047 hlinfo->mouse_face_mouse_y = y;
28048 hlinfo->mouse_face_mouse_frame = f;
28050 if (hlinfo->mouse_face_defer)
28051 return;
28053 /* Which window is that in? */
28054 window = window_from_coordinates (f, x, y, &part, 1);
28056 /* If displaying active text in another window, clear that. */
28057 if (! EQ (window, hlinfo->mouse_face_window)
28058 /* Also clear if we move out of text area in same window. */
28059 || (!NILP (hlinfo->mouse_face_window)
28060 && !NILP (window)
28061 && part != ON_TEXT
28062 && part != ON_MODE_LINE
28063 && part != ON_HEADER_LINE))
28064 clear_mouse_face (hlinfo);
28066 /* Not on a window -> return. */
28067 if (!WINDOWP (window))
28068 return;
28070 /* Reset help_echo_string. It will get recomputed below. */
28071 help_echo_string = Qnil;
28073 /* Convert to window-relative pixel coordinates. */
28074 w = XWINDOW (window);
28075 frame_to_window_pixel_xy (w, &x, &y);
28077 #ifdef HAVE_WINDOW_SYSTEM
28078 /* Handle tool-bar window differently since it doesn't display a
28079 buffer. */
28080 if (EQ (window, f->tool_bar_window))
28082 note_tool_bar_highlight (f, x, y);
28083 return;
28085 #endif
28087 /* Mouse is on the mode, header line or margin? */
28088 if (part == ON_MODE_LINE || part == ON_HEADER_LINE
28089 || part == ON_LEFT_MARGIN || part == ON_RIGHT_MARGIN)
28091 note_mode_line_or_margin_highlight (window, x, y, part);
28092 return;
28095 #ifdef HAVE_WINDOW_SYSTEM
28096 if (part == ON_VERTICAL_BORDER)
28098 cursor = FRAME_X_OUTPUT (f)->horizontal_drag_cursor;
28099 help_echo_string = build_string ("drag-mouse-1: resize");
28101 else if (part == ON_LEFT_FRINGE || part == ON_RIGHT_FRINGE
28102 || part == ON_SCROLL_BAR)
28103 cursor = FRAME_X_OUTPUT (f)->nontext_cursor;
28104 else
28105 cursor = FRAME_X_OUTPUT (f)->text_cursor;
28106 #endif
28108 /* Are we in a window whose display is up to date?
28109 And verify the buffer's text has not changed. */
28110 b = XBUFFER (w->contents);
28111 if (part == ON_TEXT && w->window_end_valid && !window_outdated (w))
28113 int hpos, vpos, dx, dy, area = LAST_AREA;
28114 ptrdiff_t pos;
28115 struct glyph *glyph;
28116 Lisp_Object object;
28117 Lisp_Object mouse_face = Qnil, position;
28118 Lisp_Object *overlay_vec = NULL;
28119 ptrdiff_t i, noverlays;
28120 struct buffer *obuf;
28121 ptrdiff_t obegv, ozv;
28122 int same_region;
28124 /* Find the glyph under X/Y. */
28125 glyph = x_y_to_hpos_vpos (w, x, y, &hpos, &vpos, &dx, &dy, &area);
28127 #ifdef HAVE_WINDOW_SYSTEM
28128 /* Look for :pointer property on image. */
28129 if (glyph != NULL && glyph->type == IMAGE_GLYPH)
28131 struct image *img = IMAGE_FROM_ID (f, glyph->u.img_id);
28132 if (img != NULL && IMAGEP (img->spec))
28134 Lisp_Object image_map, hotspot;
28135 if ((image_map = Fplist_get (XCDR (img->spec), QCmap),
28136 !NILP (image_map))
28137 && (hotspot = find_hot_spot (image_map,
28138 glyph->slice.img.x + dx,
28139 glyph->slice.img.y + dy),
28140 CONSP (hotspot))
28141 && (hotspot = XCDR (hotspot), CONSP (hotspot)))
28143 Lisp_Object plist;
28145 /* Could check XCAR (hotspot) to see if we enter/leave
28146 this hot-spot.
28147 If so, we could look for mouse-enter, mouse-leave
28148 properties in PLIST (and do something...). */
28149 hotspot = XCDR (hotspot);
28150 if (CONSP (hotspot)
28151 && (plist = XCAR (hotspot), CONSP (plist)))
28153 pointer = Fplist_get (plist, Qpointer);
28154 if (NILP (pointer))
28155 pointer = Qhand;
28156 help_echo_string = Fplist_get (plist, Qhelp_echo);
28157 if (!NILP (help_echo_string))
28159 help_echo_window = window;
28160 help_echo_object = glyph->object;
28161 help_echo_pos = glyph->charpos;
28165 if (NILP (pointer))
28166 pointer = Fplist_get (XCDR (img->spec), QCpointer);
28169 #endif /* HAVE_WINDOW_SYSTEM */
28171 /* Clear mouse face if X/Y not over text. */
28172 if (glyph == NULL
28173 || area != TEXT_AREA
28174 || !MATRIX_ROW_DISPLAYS_TEXT_P (MATRIX_ROW (w->current_matrix, vpos))
28175 /* Glyph's OBJECT is an integer for glyphs inserted by the
28176 display engine for its internal purposes, like truncation
28177 and continuation glyphs and blanks beyond the end of
28178 line's text on text terminals. If we are over such a
28179 glyph, we are not over any text. */
28180 || INTEGERP (glyph->object)
28181 /* R2L rows have a stretch glyph at their front, which
28182 stands for no text, whereas L2R rows have no glyphs at
28183 all beyond the end of text. Treat such stretch glyphs
28184 like we do with NULL glyphs in L2R rows. */
28185 || (MATRIX_ROW (w->current_matrix, vpos)->reversed_p
28186 && glyph == MATRIX_ROW_GLYPH_START (w->current_matrix, vpos)
28187 && glyph->type == STRETCH_GLYPH
28188 && glyph->avoid_cursor_p))
28190 if (clear_mouse_face (hlinfo))
28191 cursor = No_Cursor;
28192 #ifdef HAVE_WINDOW_SYSTEM
28193 if (FRAME_WINDOW_P (f) && NILP (pointer))
28195 if (area != TEXT_AREA)
28196 cursor = FRAME_X_OUTPUT (f)->nontext_cursor;
28197 else
28198 pointer = Vvoid_text_area_pointer;
28200 #endif
28201 goto set_cursor;
28204 pos = glyph->charpos;
28205 object = glyph->object;
28206 if (!STRINGP (object) && !BUFFERP (object))
28207 goto set_cursor;
28209 /* If we get an out-of-range value, return now; avoid an error. */
28210 if (BUFFERP (object) && pos > BUF_Z (b))
28211 goto set_cursor;
28213 /* Make the window's buffer temporarily current for
28214 overlays_at and compute_char_face. */
28215 obuf = current_buffer;
28216 current_buffer = b;
28217 obegv = BEGV;
28218 ozv = ZV;
28219 BEGV = BEG;
28220 ZV = Z;
28222 /* Is this char mouse-active or does it have help-echo? */
28223 position = make_number (pos);
28225 if (BUFFERP (object))
28227 /* Put all the overlays we want in a vector in overlay_vec. */
28228 GET_OVERLAYS_AT (pos, overlay_vec, noverlays, NULL, 0);
28229 /* Sort overlays into increasing priority order. */
28230 noverlays = sort_overlays (overlay_vec, noverlays, w);
28232 else
28233 noverlays = 0;
28235 if (NILP (Vmouse_highlight))
28237 clear_mouse_face (hlinfo);
28238 goto check_help_echo;
28241 same_region = coords_in_mouse_face_p (w, hpos, vpos);
28243 if (same_region)
28244 cursor = No_Cursor;
28246 /* Check mouse-face highlighting. */
28247 if (! same_region
28248 /* If there exists an overlay with mouse-face overlapping
28249 the one we are currently highlighting, we have to
28250 check if we enter the overlapping overlay, and then
28251 highlight only that. */
28252 || (OVERLAYP (hlinfo->mouse_face_overlay)
28253 && mouse_face_overlay_overlaps (hlinfo->mouse_face_overlay)))
28255 /* Find the highest priority overlay with a mouse-face. */
28256 Lisp_Object overlay = Qnil;
28257 for (i = noverlays - 1; i >= 0 && NILP (overlay); --i)
28259 mouse_face = Foverlay_get (overlay_vec[i], Qmouse_face);
28260 if (!NILP (mouse_face))
28261 overlay = overlay_vec[i];
28264 /* If we're highlighting the same overlay as before, there's
28265 no need to do that again. */
28266 if (!NILP (overlay) && EQ (overlay, hlinfo->mouse_face_overlay))
28267 goto check_help_echo;
28268 hlinfo->mouse_face_overlay = overlay;
28270 /* Clear the display of the old active region, if any. */
28271 if (clear_mouse_face (hlinfo))
28272 cursor = No_Cursor;
28274 /* If no overlay applies, get a text property. */
28275 if (NILP (overlay))
28276 mouse_face = Fget_text_property (position, Qmouse_face, object);
28278 /* Next, compute the bounds of the mouse highlighting and
28279 display it. */
28280 if (!NILP (mouse_face) && STRINGP (object))
28282 /* The mouse-highlighting comes from a display string
28283 with a mouse-face. */
28284 Lisp_Object s, e;
28285 ptrdiff_t ignore;
28287 s = Fprevious_single_property_change
28288 (make_number (pos + 1), Qmouse_face, object, Qnil);
28289 e = Fnext_single_property_change
28290 (position, Qmouse_face, object, Qnil);
28291 if (NILP (s))
28292 s = make_number (0);
28293 if (NILP (e))
28294 e = make_number (SCHARS (object) - 1);
28295 mouse_face_from_string_pos (w, hlinfo, object,
28296 XINT (s), XINT (e));
28297 hlinfo->mouse_face_past_end = 0;
28298 hlinfo->mouse_face_window = window;
28299 hlinfo->mouse_face_face_id
28300 = face_at_string_position (w, object, pos, 0, 0, 0, &ignore,
28301 glyph->face_id, 1);
28302 show_mouse_face (hlinfo, DRAW_MOUSE_FACE);
28303 cursor = No_Cursor;
28305 else
28307 /* The mouse-highlighting, if any, comes from an overlay
28308 or text property in the buffer. */
28309 Lisp_Object buffer IF_LINT (= Qnil);
28310 Lisp_Object disp_string IF_LINT (= Qnil);
28312 if (STRINGP (object))
28314 /* If we are on a display string with no mouse-face,
28315 check if the text under it has one. */
28316 struct glyph_row *r = MATRIX_ROW (w->current_matrix, vpos);
28317 ptrdiff_t start = MATRIX_ROW_START_CHARPOS (r);
28318 pos = string_buffer_position (object, start);
28319 if (pos > 0)
28321 mouse_face = get_char_property_and_overlay
28322 (make_number (pos), Qmouse_face, w->contents, &overlay);
28323 buffer = w->contents;
28324 disp_string = object;
28327 else
28329 buffer = object;
28330 disp_string = Qnil;
28333 if (!NILP (mouse_face))
28335 Lisp_Object before, after;
28336 Lisp_Object before_string, after_string;
28337 /* To correctly find the limits of mouse highlight
28338 in a bidi-reordered buffer, we must not use the
28339 optimization of limiting the search in
28340 previous-single-property-change and
28341 next-single-property-change, because
28342 rows_from_pos_range needs the real start and end
28343 positions to DTRT in this case. That's because
28344 the first row visible in a window does not
28345 necessarily display the character whose position
28346 is the smallest. */
28347 Lisp_Object lim1 =
28348 NILP (BVAR (XBUFFER (buffer), bidi_display_reordering))
28349 ? Fmarker_position (w->start)
28350 : Qnil;
28351 Lisp_Object lim2 =
28352 NILP (BVAR (XBUFFER (buffer), bidi_display_reordering))
28353 ? make_number (BUF_Z (XBUFFER (buffer)) - w->window_end_pos)
28354 : Qnil;
28356 if (NILP (overlay))
28358 /* Handle the text property case. */
28359 before = Fprevious_single_property_change
28360 (make_number (pos + 1), Qmouse_face, buffer, lim1);
28361 after = Fnext_single_property_change
28362 (make_number (pos), Qmouse_face, buffer, lim2);
28363 before_string = after_string = Qnil;
28365 else
28367 /* Handle the overlay case. */
28368 before = Foverlay_start (overlay);
28369 after = Foverlay_end (overlay);
28370 before_string = Foverlay_get (overlay, Qbefore_string);
28371 after_string = Foverlay_get (overlay, Qafter_string);
28373 if (!STRINGP (before_string)) before_string = Qnil;
28374 if (!STRINGP (after_string)) after_string = Qnil;
28377 mouse_face_from_buffer_pos (window, hlinfo, pos,
28378 NILP (before)
28380 : XFASTINT (before),
28381 NILP (after)
28382 ? BUF_Z (XBUFFER (buffer))
28383 : XFASTINT (after),
28384 before_string, after_string,
28385 disp_string);
28386 cursor = No_Cursor;
28391 check_help_echo:
28393 /* Look for a `help-echo' property. */
28394 if (NILP (help_echo_string)) {
28395 Lisp_Object help, overlay;
28397 /* Check overlays first. */
28398 help = overlay = Qnil;
28399 for (i = noverlays - 1; i >= 0 && NILP (help); --i)
28401 overlay = overlay_vec[i];
28402 help = Foverlay_get (overlay, Qhelp_echo);
28405 if (!NILP (help))
28407 help_echo_string = help;
28408 help_echo_window = window;
28409 help_echo_object = overlay;
28410 help_echo_pos = pos;
28412 else
28414 Lisp_Object obj = glyph->object;
28415 ptrdiff_t charpos = glyph->charpos;
28417 /* Try text properties. */
28418 if (STRINGP (obj)
28419 && charpos >= 0
28420 && charpos < SCHARS (obj))
28422 help = Fget_text_property (make_number (charpos),
28423 Qhelp_echo, obj);
28424 if (NILP (help))
28426 /* If the string itself doesn't specify a help-echo,
28427 see if the buffer text ``under'' it does. */
28428 struct glyph_row *r
28429 = MATRIX_ROW (w->current_matrix, vpos);
28430 ptrdiff_t start = MATRIX_ROW_START_CHARPOS (r);
28431 ptrdiff_t p = string_buffer_position (obj, start);
28432 if (p > 0)
28434 help = Fget_char_property (make_number (p),
28435 Qhelp_echo, w->contents);
28436 if (!NILP (help))
28438 charpos = p;
28439 obj = w->contents;
28444 else if (BUFFERP (obj)
28445 && charpos >= BEGV
28446 && charpos < ZV)
28447 help = Fget_text_property (make_number (charpos), Qhelp_echo,
28448 obj);
28450 if (!NILP (help))
28452 help_echo_string = help;
28453 help_echo_window = window;
28454 help_echo_object = obj;
28455 help_echo_pos = charpos;
28460 #ifdef HAVE_WINDOW_SYSTEM
28461 /* Look for a `pointer' property. */
28462 if (FRAME_WINDOW_P (f) && NILP (pointer))
28464 /* Check overlays first. */
28465 for (i = noverlays - 1; i >= 0 && NILP (pointer); --i)
28466 pointer = Foverlay_get (overlay_vec[i], Qpointer);
28468 if (NILP (pointer))
28470 Lisp_Object obj = glyph->object;
28471 ptrdiff_t charpos = glyph->charpos;
28473 /* Try text properties. */
28474 if (STRINGP (obj)
28475 && charpos >= 0
28476 && charpos < SCHARS (obj))
28478 pointer = Fget_text_property (make_number (charpos),
28479 Qpointer, obj);
28480 if (NILP (pointer))
28482 /* If the string itself doesn't specify a pointer,
28483 see if the buffer text ``under'' it does. */
28484 struct glyph_row *r
28485 = MATRIX_ROW (w->current_matrix, vpos);
28486 ptrdiff_t start = MATRIX_ROW_START_CHARPOS (r);
28487 ptrdiff_t p = string_buffer_position (obj, start);
28488 if (p > 0)
28489 pointer = Fget_char_property (make_number (p),
28490 Qpointer, w->contents);
28493 else if (BUFFERP (obj)
28494 && charpos >= BEGV
28495 && charpos < ZV)
28496 pointer = Fget_text_property (make_number (charpos),
28497 Qpointer, obj);
28500 #endif /* HAVE_WINDOW_SYSTEM */
28502 BEGV = obegv;
28503 ZV = ozv;
28504 current_buffer = obuf;
28507 set_cursor:
28509 #ifdef HAVE_WINDOW_SYSTEM
28510 if (FRAME_WINDOW_P (f))
28511 define_frame_cursor1 (f, cursor, pointer);
28512 #else
28513 /* This is here to prevent a compiler error, about "label at end of
28514 compound statement". */
28515 return;
28516 #endif
28520 /* EXPORT for RIF:
28521 Clear any mouse-face on window W. This function is part of the
28522 redisplay interface, and is called from try_window_id and similar
28523 functions to ensure the mouse-highlight is off. */
28525 void
28526 x_clear_window_mouse_face (struct window *w)
28528 Mouse_HLInfo *hlinfo = MOUSE_HL_INFO (XFRAME (w->frame));
28529 Lisp_Object window;
28531 block_input ();
28532 XSETWINDOW (window, w);
28533 if (EQ (window, hlinfo->mouse_face_window))
28534 clear_mouse_face (hlinfo);
28535 unblock_input ();
28539 /* EXPORT:
28540 Just discard the mouse face information for frame F, if any.
28541 This is used when the size of F is changed. */
28543 void
28544 cancel_mouse_face (struct frame *f)
28546 Lisp_Object window;
28547 Mouse_HLInfo *hlinfo = MOUSE_HL_INFO (f);
28549 window = hlinfo->mouse_face_window;
28550 if (! NILP (window) && XFRAME (XWINDOW (window)->frame) == f)
28552 hlinfo->mouse_face_beg_row = hlinfo->mouse_face_beg_col = -1;
28553 hlinfo->mouse_face_end_row = hlinfo->mouse_face_end_col = -1;
28554 hlinfo->mouse_face_window = Qnil;
28560 /***********************************************************************
28561 Exposure Events
28562 ***********************************************************************/
28564 #ifdef HAVE_WINDOW_SYSTEM
28566 /* Redraw the part of glyph row area AREA of glyph row ROW on window W
28567 which intersects rectangle R. R is in window-relative coordinates. */
28569 static void
28570 expose_area (struct window *w, struct glyph_row *row, XRectangle *r,
28571 enum glyph_row_area area)
28573 struct glyph *first = row->glyphs[area];
28574 struct glyph *end = row->glyphs[area] + row->used[area];
28575 struct glyph *last;
28576 int first_x, start_x, x;
28578 if (area == TEXT_AREA && row->fill_line_p)
28579 /* If row extends face to end of line write the whole line. */
28580 draw_glyphs (w, 0, row, area,
28581 0, row->used[area],
28582 DRAW_NORMAL_TEXT, 0);
28583 else
28585 /* Set START_X to the window-relative start position for drawing glyphs of
28586 AREA. The first glyph of the text area can be partially visible.
28587 The first glyphs of other areas cannot. */
28588 start_x = window_box_left_offset (w, area);
28589 x = start_x;
28590 if (area == TEXT_AREA)
28591 x += row->x;
28593 /* Find the first glyph that must be redrawn. */
28594 while (first < end
28595 && x + first->pixel_width < r->x)
28597 x += first->pixel_width;
28598 ++first;
28601 /* Find the last one. */
28602 last = first;
28603 first_x = x;
28604 while (last < end
28605 && x < r->x + r->width)
28607 x += last->pixel_width;
28608 ++last;
28611 /* Repaint. */
28612 if (last > first)
28613 draw_glyphs (w, first_x - start_x, row, area,
28614 first - row->glyphs[area], last - row->glyphs[area],
28615 DRAW_NORMAL_TEXT, 0);
28620 /* Redraw the parts of the glyph row ROW on window W intersecting
28621 rectangle R. R is in window-relative coordinates. Value is
28622 non-zero if mouse-face was overwritten. */
28624 static int
28625 expose_line (struct window *w, struct glyph_row *row, XRectangle *r)
28627 eassert (row->enabled_p);
28629 if (row->mode_line_p || w->pseudo_window_p)
28630 draw_glyphs (w, 0, row, TEXT_AREA,
28631 0, row->used[TEXT_AREA],
28632 DRAW_NORMAL_TEXT, 0);
28633 else
28635 if (row->used[LEFT_MARGIN_AREA])
28636 expose_area (w, row, r, LEFT_MARGIN_AREA);
28637 if (row->used[TEXT_AREA])
28638 expose_area (w, row, r, TEXT_AREA);
28639 if (row->used[RIGHT_MARGIN_AREA])
28640 expose_area (w, row, r, RIGHT_MARGIN_AREA);
28641 draw_row_fringe_bitmaps (w, row);
28644 return row->mouse_face_p;
28648 /* Redraw those parts of glyphs rows during expose event handling that
28649 overlap other rows. Redrawing of an exposed line writes over parts
28650 of lines overlapping that exposed line; this function fixes that.
28652 W is the window being exposed. FIRST_OVERLAPPING_ROW is the first
28653 row in W's current matrix that is exposed and overlaps other rows.
28654 LAST_OVERLAPPING_ROW is the last such row. */
28656 static void
28657 expose_overlaps (struct window *w,
28658 struct glyph_row *first_overlapping_row,
28659 struct glyph_row *last_overlapping_row,
28660 XRectangle *r)
28662 struct glyph_row *row;
28664 for (row = first_overlapping_row; row <= last_overlapping_row; ++row)
28665 if (row->overlapping_p)
28667 eassert (row->enabled_p && !row->mode_line_p);
28669 row->clip = r;
28670 if (row->used[LEFT_MARGIN_AREA])
28671 x_fix_overlapping_area (w, row, LEFT_MARGIN_AREA, OVERLAPS_BOTH);
28673 if (row->used[TEXT_AREA])
28674 x_fix_overlapping_area (w, row, TEXT_AREA, OVERLAPS_BOTH);
28676 if (row->used[RIGHT_MARGIN_AREA])
28677 x_fix_overlapping_area (w, row, RIGHT_MARGIN_AREA, OVERLAPS_BOTH);
28678 row->clip = NULL;
28683 /* Return non-zero if W's cursor intersects rectangle R. */
28685 static int
28686 phys_cursor_in_rect_p (struct window *w, XRectangle *r)
28688 XRectangle cr, result;
28689 struct glyph *cursor_glyph;
28690 struct glyph_row *row;
28692 if (w->phys_cursor.vpos >= 0
28693 && w->phys_cursor.vpos < w->current_matrix->nrows
28694 && (row = MATRIX_ROW (w->current_matrix, w->phys_cursor.vpos),
28695 row->enabled_p)
28696 && row->cursor_in_fringe_p)
28698 /* Cursor is in the fringe. */
28699 cr.x = window_box_right_offset (w,
28700 (WINDOW_HAS_FRINGES_OUTSIDE_MARGINS (w)
28701 ? RIGHT_MARGIN_AREA
28702 : TEXT_AREA));
28703 cr.y = row->y;
28704 cr.width = WINDOW_RIGHT_FRINGE_WIDTH (w);
28705 cr.height = row->height;
28706 return x_intersect_rectangles (&cr, r, &result);
28709 cursor_glyph = get_phys_cursor_glyph (w);
28710 if (cursor_glyph)
28712 /* r is relative to W's box, but w->phys_cursor.x is relative
28713 to left edge of W's TEXT area. Adjust it. */
28714 cr.x = window_box_left_offset (w, TEXT_AREA) + w->phys_cursor.x;
28715 cr.y = w->phys_cursor.y;
28716 cr.width = cursor_glyph->pixel_width;
28717 cr.height = w->phys_cursor_height;
28718 /* ++KFS: W32 version used W32-specific IntersectRect here, but
28719 I assume the effect is the same -- and this is portable. */
28720 return x_intersect_rectangles (&cr, r, &result);
28722 /* If we don't understand the format, pretend we're not in the hot-spot. */
28723 return 0;
28727 /* EXPORT:
28728 Draw a vertical window border to the right of window W if W doesn't
28729 have vertical scroll bars. */
28731 void
28732 x_draw_vertical_border (struct window *w)
28734 struct frame *f = XFRAME (WINDOW_FRAME (w));
28736 /* We could do better, if we knew what type of scroll-bar the adjacent
28737 windows (on either side) have... But we don't :-(
28738 However, I think this works ok. ++KFS 2003-04-25 */
28740 /* Redraw borders between horizontally adjacent windows. Don't
28741 do it for frames with vertical scroll bars because either the
28742 right scroll bar of a window, or the left scroll bar of its
28743 neighbor will suffice as a border. */
28744 if (FRAME_HAS_VERTICAL_SCROLL_BARS (XFRAME (w->frame)))
28745 return;
28747 /* Note: It is necessary to redraw both the left and the right
28748 borders, for when only this single window W is being
28749 redisplayed. */
28750 if (!WINDOW_RIGHTMOST_P (w)
28751 && !WINDOW_HAS_VERTICAL_SCROLL_BAR_ON_RIGHT (w))
28753 int x0, x1, y0, y1;
28755 window_box_edges (w, -1, &x0, &y0, &x1, &y1);
28756 y1 -= 1;
28758 if (WINDOW_LEFT_FRINGE_WIDTH (w) == 0)
28759 x1 -= 1;
28761 FRAME_RIF (f)->draw_vertical_window_border (w, x1, y0, y1);
28763 if (!WINDOW_LEFTMOST_P (w)
28764 && !WINDOW_HAS_VERTICAL_SCROLL_BAR_ON_LEFT (w))
28766 int x0, x1, y0, y1;
28768 window_box_edges (w, -1, &x0, &y0, &x1, &y1);
28769 y1 -= 1;
28771 if (WINDOW_LEFT_FRINGE_WIDTH (w) == 0)
28772 x0 -= 1;
28774 FRAME_RIF (f)->draw_vertical_window_border (w, x0, y0, y1);
28779 /* Redraw the part of window W intersection rectangle FR. Pixel
28780 coordinates in FR are frame-relative. Call this function with
28781 input blocked. Value is non-zero if the exposure overwrites
28782 mouse-face. */
28784 static int
28785 expose_window (struct window *w, XRectangle *fr)
28787 struct frame *f = XFRAME (w->frame);
28788 XRectangle wr, r;
28789 int mouse_face_overwritten_p = 0;
28791 /* If window is not yet fully initialized, do nothing. This can
28792 happen when toolkit scroll bars are used and a window is split.
28793 Reconfiguring the scroll bar will generate an expose for a newly
28794 created window. */
28795 if (w->current_matrix == NULL)
28796 return 0;
28798 /* When we're currently updating the window, display and current
28799 matrix usually don't agree. Arrange for a thorough display
28800 later. */
28801 if (w->must_be_updated_p)
28803 SET_FRAME_GARBAGED (f);
28804 return 0;
28807 /* Frame-relative pixel rectangle of W. */
28808 wr.x = WINDOW_LEFT_EDGE_X (w);
28809 wr.y = WINDOW_TOP_EDGE_Y (w);
28810 wr.width = WINDOW_TOTAL_WIDTH (w);
28811 wr.height = WINDOW_TOTAL_HEIGHT (w);
28813 if (x_intersect_rectangles (fr, &wr, &r))
28815 int yb = window_text_bottom_y (w);
28816 struct glyph_row *row;
28817 int cursor_cleared_p, phys_cursor_on_p;
28818 struct glyph_row *first_overlapping_row, *last_overlapping_row;
28820 TRACE ((stderr, "expose_window (%d, %d, %d, %d)\n",
28821 r.x, r.y, r.width, r.height));
28823 /* Convert to window coordinates. */
28824 r.x -= WINDOW_LEFT_EDGE_X (w);
28825 r.y -= WINDOW_TOP_EDGE_Y (w);
28827 /* Turn off the cursor. */
28828 if (!w->pseudo_window_p
28829 && phys_cursor_in_rect_p (w, &r))
28831 x_clear_cursor (w);
28832 cursor_cleared_p = 1;
28834 else
28835 cursor_cleared_p = 0;
28837 /* If the row containing the cursor extends face to end of line,
28838 then expose_area might overwrite the cursor outside the
28839 rectangle and thus notice_overwritten_cursor might clear
28840 w->phys_cursor_on_p. We remember the original value and
28841 check later if it is changed. */
28842 phys_cursor_on_p = w->phys_cursor_on_p;
28844 /* Update lines intersecting rectangle R. */
28845 first_overlapping_row = last_overlapping_row = NULL;
28846 for (row = w->current_matrix->rows;
28847 row->enabled_p;
28848 ++row)
28850 int y0 = row->y;
28851 int y1 = MATRIX_ROW_BOTTOM_Y (row);
28853 if ((y0 >= r.y && y0 < r.y + r.height)
28854 || (y1 > r.y && y1 < r.y + r.height)
28855 || (r.y >= y0 && r.y < y1)
28856 || (r.y + r.height > y0 && r.y + r.height < y1))
28858 /* A header line may be overlapping, but there is no need
28859 to fix overlapping areas for them. KFS 2005-02-12 */
28860 if (row->overlapping_p && !row->mode_line_p)
28862 if (first_overlapping_row == NULL)
28863 first_overlapping_row = row;
28864 last_overlapping_row = row;
28867 row->clip = fr;
28868 if (expose_line (w, row, &r))
28869 mouse_face_overwritten_p = 1;
28870 row->clip = NULL;
28872 else if (row->overlapping_p)
28874 /* We must redraw a row overlapping the exposed area. */
28875 if (y0 < r.y
28876 ? y0 + row->phys_height > r.y
28877 : y0 + row->ascent - row->phys_ascent < r.y +r.height)
28879 if (first_overlapping_row == NULL)
28880 first_overlapping_row = row;
28881 last_overlapping_row = row;
28885 if (y1 >= yb)
28886 break;
28889 /* Display the mode line if there is one. */
28890 if (WINDOW_WANTS_MODELINE_P (w)
28891 && (row = MATRIX_MODE_LINE_ROW (w->current_matrix),
28892 row->enabled_p)
28893 && row->y < r.y + r.height)
28895 if (expose_line (w, row, &r))
28896 mouse_face_overwritten_p = 1;
28899 if (!w->pseudo_window_p)
28901 /* Fix the display of overlapping rows. */
28902 if (first_overlapping_row)
28903 expose_overlaps (w, first_overlapping_row, last_overlapping_row,
28904 fr);
28906 /* Draw border between windows. */
28907 x_draw_vertical_border (w);
28909 /* Turn the cursor on again. */
28910 if (cursor_cleared_p
28911 || (phys_cursor_on_p && !w->phys_cursor_on_p))
28912 update_window_cursor (w, 1);
28916 return mouse_face_overwritten_p;
28921 /* Redraw (parts) of all windows in the window tree rooted at W that
28922 intersect R. R contains frame pixel coordinates. Value is
28923 non-zero if the exposure overwrites mouse-face. */
28925 static int
28926 expose_window_tree (struct window *w, XRectangle *r)
28928 struct frame *f = XFRAME (w->frame);
28929 int mouse_face_overwritten_p = 0;
28931 while (w && !FRAME_GARBAGED_P (f))
28933 if (WINDOWP (w->contents))
28934 mouse_face_overwritten_p
28935 |= expose_window_tree (XWINDOW (w->contents), r);
28936 else
28937 mouse_face_overwritten_p |= expose_window (w, r);
28939 w = NILP (w->next) ? NULL : XWINDOW (w->next);
28942 return mouse_face_overwritten_p;
28946 /* EXPORT:
28947 Redisplay an exposed area of frame F. X and Y are the upper-left
28948 corner of the exposed rectangle. W and H are width and height of
28949 the exposed area. All are pixel values. W or H zero means redraw
28950 the entire frame. */
28952 void
28953 expose_frame (struct frame *f, int x, int y, int w, int h)
28955 XRectangle r;
28956 int mouse_face_overwritten_p = 0;
28958 TRACE ((stderr, "expose_frame "));
28960 /* No need to redraw if frame will be redrawn soon. */
28961 if (FRAME_GARBAGED_P (f))
28963 TRACE ((stderr, " garbaged\n"));
28964 return;
28967 /* If basic faces haven't been realized yet, there is no point in
28968 trying to redraw anything. This can happen when we get an expose
28969 event while Emacs is starting, e.g. by moving another window. */
28970 if (FRAME_FACE_CACHE (f) == NULL
28971 || FRAME_FACE_CACHE (f)->used < BASIC_FACE_ID_SENTINEL)
28973 TRACE ((stderr, " no faces\n"));
28974 return;
28977 if (w == 0 || h == 0)
28979 r.x = r.y = 0;
28980 r.width = FRAME_COLUMN_WIDTH (f) * FRAME_COLS (f);
28981 r.height = FRAME_LINE_HEIGHT (f) * FRAME_LINES (f);
28983 else
28985 r.x = x;
28986 r.y = y;
28987 r.width = w;
28988 r.height = h;
28991 TRACE ((stderr, "(%d, %d, %d, %d)\n", r.x, r.y, r.width, r.height));
28992 mouse_face_overwritten_p = expose_window_tree (XWINDOW (f->root_window), &r);
28994 if (WINDOWP (f->tool_bar_window))
28995 mouse_face_overwritten_p
28996 |= expose_window (XWINDOW (f->tool_bar_window), &r);
28998 #ifdef HAVE_X_WINDOWS
28999 #ifndef MSDOS
29000 #if ! defined (USE_X_TOOLKIT) && ! defined (USE_GTK)
29001 if (WINDOWP (f->menu_bar_window))
29002 mouse_face_overwritten_p
29003 |= expose_window (XWINDOW (f->menu_bar_window), &r);
29004 #endif /* not USE_X_TOOLKIT and not USE_GTK */
29005 #endif
29006 #endif
29008 /* Some window managers support a focus-follows-mouse style with
29009 delayed raising of frames. Imagine a partially obscured frame,
29010 and moving the mouse into partially obscured mouse-face on that
29011 frame. The visible part of the mouse-face will be highlighted,
29012 then the WM raises the obscured frame. With at least one WM, KDE
29013 2.1, Emacs is not getting any event for the raising of the frame
29014 (even tried with SubstructureRedirectMask), only Expose events.
29015 These expose events will draw text normally, i.e. not
29016 highlighted. Which means we must redo the highlight here.
29017 Subsume it under ``we love X''. --gerd 2001-08-15 */
29018 /* Included in Windows version because Windows most likely does not
29019 do the right thing if any third party tool offers
29020 focus-follows-mouse with delayed raise. --jason 2001-10-12 */
29021 if (mouse_face_overwritten_p && !FRAME_GARBAGED_P (f))
29023 Mouse_HLInfo *hlinfo = MOUSE_HL_INFO (f);
29024 if (f == hlinfo->mouse_face_mouse_frame)
29026 int mouse_x = hlinfo->mouse_face_mouse_x;
29027 int mouse_y = hlinfo->mouse_face_mouse_y;
29028 clear_mouse_face (hlinfo);
29029 note_mouse_highlight (f, mouse_x, mouse_y);
29035 /* EXPORT:
29036 Determine the intersection of two rectangles R1 and R2. Return
29037 the intersection in *RESULT. Value is non-zero if RESULT is not
29038 empty. */
29041 x_intersect_rectangles (XRectangle *r1, XRectangle *r2, XRectangle *result)
29043 XRectangle *left, *right;
29044 XRectangle *upper, *lower;
29045 int intersection_p = 0;
29047 /* Rearrange so that R1 is the left-most rectangle. */
29048 if (r1->x < r2->x)
29049 left = r1, right = r2;
29050 else
29051 left = r2, right = r1;
29053 /* X0 of the intersection is right.x0, if this is inside R1,
29054 otherwise there is no intersection. */
29055 if (right->x <= left->x + left->width)
29057 result->x = right->x;
29059 /* The right end of the intersection is the minimum of
29060 the right ends of left and right. */
29061 result->width = (min (left->x + left->width, right->x + right->width)
29062 - result->x);
29064 /* Same game for Y. */
29065 if (r1->y < r2->y)
29066 upper = r1, lower = r2;
29067 else
29068 upper = r2, lower = r1;
29070 /* The upper end of the intersection is lower.y0, if this is inside
29071 of upper. Otherwise, there is no intersection. */
29072 if (lower->y <= upper->y + upper->height)
29074 result->y = lower->y;
29076 /* The lower end of the intersection is the minimum of the lower
29077 ends of upper and lower. */
29078 result->height = (min (lower->y + lower->height,
29079 upper->y + upper->height)
29080 - result->y);
29081 intersection_p = 1;
29085 return intersection_p;
29088 #endif /* HAVE_WINDOW_SYSTEM */
29091 /***********************************************************************
29092 Initialization
29093 ***********************************************************************/
29095 void
29096 syms_of_xdisp (void)
29098 Vwith_echo_area_save_vector = Qnil;
29099 staticpro (&Vwith_echo_area_save_vector);
29101 Vmessage_stack = Qnil;
29102 staticpro (&Vmessage_stack);
29104 DEFSYM (Qinhibit_redisplay, "inhibit-redisplay");
29105 DEFSYM (Qredisplay_internal, "redisplay_internal (C function)");
29107 message_dolog_marker1 = Fmake_marker ();
29108 staticpro (&message_dolog_marker1);
29109 message_dolog_marker2 = Fmake_marker ();
29110 staticpro (&message_dolog_marker2);
29111 message_dolog_marker3 = Fmake_marker ();
29112 staticpro (&message_dolog_marker3);
29114 #ifdef GLYPH_DEBUG
29115 defsubr (&Sdump_frame_glyph_matrix);
29116 defsubr (&Sdump_glyph_matrix);
29117 defsubr (&Sdump_glyph_row);
29118 defsubr (&Sdump_tool_bar_row);
29119 defsubr (&Strace_redisplay);
29120 defsubr (&Strace_to_stderr);
29121 #endif
29122 #ifdef HAVE_WINDOW_SYSTEM
29123 defsubr (&Stool_bar_lines_needed);
29124 defsubr (&Slookup_image_map);
29125 #endif
29126 defsubr (&Sline_pixel_height);
29127 defsubr (&Sformat_mode_line);
29128 defsubr (&Sinvisible_p);
29129 defsubr (&Scurrent_bidi_paragraph_direction);
29130 defsubr (&Smove_point_visually);
29132 DEFSYM (Qmenu_bar_update_hook, "menu-bar-update-hook");
29133 DEFSYM (Qoverriding_terminal_local_map, "overriding-terminal-local-map");
29134 DEFSYM (Qoverriding_local_map, "overriding-local-map");
29135 DEFSYM (Qwindow_scroll_functions, "window-scroll-functions");
29136 DEFSYM (Qwindow_text_change_functions, "window-text-change-functions");
29137 DEFSYM (Qredisplay_end_trigger_functions, "redisplay-end-trigger-functions");
29138 DEFSYM (Qinhibit_point_motion_hooks, "inhibit-point-motion-hooks");
29139 DEFSYM (Qeval, "eval");
29140 DEFSYM (QCdata, ":data");
29141 DEFSYM (Qdisplay, "display");
29142 DEFSYM (Qspace_width, "space-width");
29143 DEFSYM (Qraise, "raise");
29144 DEFSYM (Qslice, "slice");
29145 DEFSYM (Qspace, "space");
29146 DEFSYM (Qmargin, "margin");
29147 DEFSYM (Qpointer, "pointer");
29148 DEFSYM (Qleft_margin, "left-margin");
29149 DEFSYM (Qright_margin, "right-margin");
29150 DEFSYM (Qcenter, "center");
29151 DEFSYM (Qline_height, "line-height");
29152 DEFSYM (QCalign_to, ":align-to");
29153 DEFSYM (QCrelative_width, ":relative-width");
29154 DEFSYM (QCrelative_height, ":relative-height");
29155 DEFSYM (QCeval, ":eval");
29156 DEFSYM (QCpropertize, ":propertize");
29157 DEFSYM (QCfile, ":file");
29158 DEFSYM (Qfontified, "fontified");
29159 DEFSYM (Qfontification_functions, "fontification-functions");
29160 DEFSYM (Qtrailing_whitespace, "trailing-whitespace");
29161 DEFSYM (Qescape_glyph, "escape-glyph");
29162 DEFSYM (Qnobreak_space, "nobreak-space");
29163 DEFSYM (Qimage, "image");
29164 DEFSYM (Qtext, "text");
29165 DEFSYM (Qboth, "both");
29166 DEFSYM (Qboth_horiz, "both-horiz");
29167 DEFSYM (Qtext_image_horiz, "text-image-horiz");
29168 DEFSYM (QCmap, ":map");
29169 DEFSYM (QCpointer, ":pointer");
29170 DEFSYM (Qrect, "rect");
29171 DEFSYM (Qcircle, "circle");
29172 DEFSYM (Qpoly, "poly");
29173 DEFSYM (Qmessage_truncate_lines, "message-truncate-lines");
29174 DEFSYM (Qgrow_only, "grow-only");
29175 DEFSYM (Qinhibit_menubar_update, "inhibit-menubar-update");
29176 DEFSYM (Qinhibit_eval_during_redisplay, "inhibit-eval-during-redisplay");
29177 DEFSYM (Qposition, "position");
29178 DEFSYM (Qbuffer_position, "buffer-position");
29179 DEFSYM (Qobject, "object");
29180 DEFSYM (Qbar, "bar");
29181 DEFSYM (Qhbar, "hbar");
29182 DEFSYM (Qbox, "box");
29183 DEFSYM (Qhollow, "hollow");
29184 DEFSYM (Qhand, "hand");
29185 DEFSYM (Qarrow, "arrow");
29186 DEFSYM (Qinhibit_free_realized_faces, "inhibit-free-realized-faces");
29188 list_of_error = list1 (list2 (intern_c_string ("error"),
29189 intern_c_string ("void-variable")));
29190 staticpro (&list_of_error);
29192 DEFSYM (Qlast_arrow_position, "last-arrow-position");
29193 DEFSYM (Qlast_arrow_string, "last-arrow-string");
29194 DEFSYM (Qoverlay_arrow_string, "overlay-arrow-string");
29195 DEFSYM (Qoverlay_arrow_bitmap, "overlay-arrow-bitmap");
29197 echo_buffer[0] = echo_buffer[1] = Qnil;
29198 staticpro (&echo_buffer[0]);
29199 staticpro (&echo_buffer[1]);
29201 echo_area_buffer[0] = echo_area_buffer[1] = Qnil;
29202 staticpro (&echo_area_buffer[0]);
29203 staticpro (&echo_area_buffer[1]);
29205 Vmessages_buffer_name = build_pure_c_string ("*Messages*");
29206 staticpro (&Vmessages_buffer_name);
29208 mode_line_proptrans_alist = Qnil;
29209 staticpro (&mode_line_proptrans_alist);
29210 mode_line_string_list = Qnil;
29211 staticpro (&mode_line_string_list);
29212 mode_line_string_face = Qnil;
29213 staticpro (&mode_line_string_face);
29214 mode_line_string_face_prop = Qnil;
29215 staticpro (&mode_line_string_face_prop);
29216 Vmode_line_unwind_vector = Qnil;
29217 staticpro (&Vmode_line_unwind_vector);
29219 DEFSYM (Qmode_line_default_help_echo, "mode-line-default-help-echo");
29221 help_echo_string = Qnil;
29222 staticpro (&help_echo_string);
29223 help_echo_object = Qnil;
29224 staticpro (&help_echo_object);
29225 help_echo_window = Qnil;
29226 staticpro (&help_echo_window);
29227 previous_help_echo_string = Qnil;
29228 staticpro (&previous_help_echo_string);
29229 help_echo_pos = -1;
29231 DEFSYM (Qright_to_left, "right-to-left");
29232 DEFSYM (Qleft_to_right, "left-to-right");
29234 #ifdef HAVE_WINDOW_SYSTEM
29235 DEFVAR_BOOL ("x-stretch-cursor", x_stretch_cursor_p,
29236 doc: /* Non-nil means draw block cursor as wide as the glyph under it.
29237 For example, if a block cursor is over a tab, it will be drawn as
29238 wide as that tab on the display. */);
29239 x_stretch_cursor_p = 0;
29240 #endif
29242 DEFVAR_LISP ("show-trailing-whitespace", Vshow_trailing_whitespace,
29243 doc: /* Non-nil means highlight trailing whitespace.
29244 The face used for trailing whitespace is `trailing-whitespace'. */);
29245 Vshow_trailing_whitespace = Qnil;
29247 DEFVAR_LISP ("nobreak-char-display", Vnobreak_char_display,
29248 doc: /* Control highlighting of non-ASCII space and hyphen chars.
29249 If the value is t, Emacs highlights non-ASCII chars which have the
29250 same appearance as an ASCII space or hyphen, using the `nobreak-space'
29251 or `escape-glyph' face respectively.
29253 U+00A0 (no-break space), U+00AD (soft hyphen), U+2010 (hyphen), and
29254 U+2011 (non-breaking hyphen) are affected.
29256 Any other non-nil value means to display these characters as a escape
29257 glyph followed by an ordinary space or hyphen.
29259 A value of nil means no special handling of these characters. */);
29260 Vnobreak_char_display = Qt;
29262 DEFVAR_LISP ("void-text-area-pointer", Vvoid_text_area_pointer,
29263 doc: /* The pointer shape to show in void text areas.
29264 A value of nil means to show the text pointer. Other options are `arrow',
29265 `text', `hand', `vdrag', `hdrag', `modeline', and `hourglass'. */);
29266 Vvoid_text_area_pointer = Qarrow;
29268 DEFVAR_LISP ("inhibit-redisplay", Vinhibit_redisplay,
29269 doc: /* Non-nil means don't actually do any redisplay.
29270 This is used for internal purposes. */);
29271 Vinhibit_redisplay = Qnil;
29273 DEFVAR_LISP ("global-mode-string", Vglobal_mode_string,
29274 doc: /* String (or mode line construct) included (normally) in `mode-line-format'. */);
29275 Vglobal_mode_string = Qnil;
29277 DEFVAR_LISP ("overlay-arrow-position", Voverlay_arrow_position,
29278 doc: /* Marker for where to display an arrow on top of the buffer text.
29279 This must be the beginning of a line in order to work.
29280 See also `overlay-arrow-string'. */);
29281 Voverlay_arrow_position = Qnil;
29283 DEFVAR_LISP ("overlay-arrow-string", Voverlay_arrow_string,
29284 doc: /* String to display as an arrow in non-window frames.
29285 See also `overlay-arrow-position'. */);
29286 Voverlay_arrow_string = build_pure_c_string ("=>");
29288 DEFVAR_LISP ("overlay-arrow-variable-list", Voverlay_arrow_variable_list,
29289 doc: /* List of variables (symbols) which hold markers for overlay arrows.
29290 The symbols on this list are examined during redisplay to determine
29291 where to display overlay arrows. */);
29292 Voverlay_arrow_variable_list
29293 = list1 (intern_c_string ("overlay-arrow-position"));
29295 DEFVAR_INT ("scroll-step", emacs_scroll_step,
29296 doc: /* The number of lines to try scrolling a window by when point moves out.
29297 If that fails to bring point back on frame, point is centered instead.
29298 If this is zero, point is always centered after it moves off frame.
29299 If you want scrolling to always be a line at a time, you should set
29300 `scroll-conservatively' to a large value rather than set this to 1. */);
29302 DEFVAR_INT ("scroll-conservatively", scroll_conservatively,
29303 doc: /* Scroll up to this many lines, to bring point back on screen.
29304 If point moves off-screen, redisplay will scroll by up to
29305 `scroll-conservatively' lines in order to bring point just barely
29306 onto the screen again. If that cannot be done, then redisplay
29307 recenters point as usual.
29309 If the value is greater than 100, redisplay will never recenter point,
29310 but will always scroll just enough text to bring point into view, even
29311 if you move far away.
29313 A value of zero means always recenter point if it moves off screen. */);
29314 scroll_conservatively = 0;
29316 DEFVAR_INT ("scroll-margin", scroll_margin,
29317 doc: /* Number of lines of margin at the top and bottom of a window.
29318 Recenter the window whenever point gets within this many lines
29319 of the top or bottom of the window. */);
29320 scroll_margin = 0;
29322 DEFVAR_LISP ("display-pixels-per-inch", Vdisplay_pixels_per_inch,
29323 doc: /* Pixels per inch value for non-window system displays.
29324 Value is a number or a cons (WIDTH-DPI . HEIGHT-DPI). */);
29325 Vdisplay_pixels_per_inch = make_float (72.0);
29327 #ifdef GLYPH_DEBUG
29328 DEFVAR_INT ("debug-end-pos", debug_end_pos, doc: /* Don't ask. */);
29329 #endif
29331 DEFVAR_LISP ("truncate-partial-width-windows",
29332 Vtruncate_partial_width_windows,
29333 doc: /* Non-nil means truncate lines in windows narrower than the frame.
29334 For an integer value, truncate lines in each window narrower than the
29335 full frame width, provided the window width is less than that integer;
29336 otherwise, respect the value of `truncate-lines'.
29338 For any other non-nil value, truncate lines in all windows that do
29339 not span the full frame width.
29341 A value of nil means to respect the value of `truncate-lines'.
29343 If `word-wrap' is enabled, you might want to reduce this. */);
29344 Vtruncate_partial_width_windows = make_number (50);
29346 DEFVAR_LISP ("line-number-display-limit", Vline_number_display_limit,
29347 doc: /* Maximum buffer size for which line number should be displayed.
29348 If the buffer is bigger than this, the line number does not appear
29349 in the mode line. A value of nil means no limit. */);
29350 Vline_number_display_limit = Qnil;
29352 DEFVAR_INT ("line-number-display-limit-width",
29353 line_number_display_limit_width,
29354 doc: /* Maximum line width (in characters) for line number display.
29355 If the average length of the lines near point is bigger than this, then the
29356 line number may be omitted from the mode line. */);
29357 line_number_display_limit_width = 200;
29359 DEFVAR_BOOL ("highlight-nonselected-windows", highlight_nonselected_windows,
29360 doc: /* Non-nil means highlight region even in nonselected windows. */);
29361 highlight_nonselected_windows = 0;
29363 DEFVAR_BOOL ("multiple-frames", multiple_frames,
29364 doc: /* Non-nil if more than one frame is visible on this display.
29365 Minibuffer-only frames don't count, but iconified frames do.
29366 This variable is not guaranteed to be accurate except while processing
29367 `frame-title-format' and `icon-title-format'. */);
29369 DEFVAR_LISP ("frame-title-format", Vframe_title_format,
29370 doc: /* Template for displaying the title bar of visible frames.
29371 \(Assuming the window manager supports this feature.)
29373 This variable has the same structure as `mode-line-format', except that
29374 the %c and %l constructs are ignored. It is used only on frames for
29375 which no explicit name has been set \(see `modify-frame-parameters'). */);
29377 DEFVAR_LISP ("icon-title-format", Vicon_title_format,
29378 doc: /* Template for displaying the title bar of an iconified frame.
29379 \(Assuming the window manager supports this feature.)
29380 This variable has the same structure as `mode-line-format' (which see),
29381 and is used only on frames for which no explicit name has been set
29382 \(see `modify-frame-parameters'). */);
29383 Vicon_title_format
29384 = Vframe_title_format
29385 = listn (CONSTYPE_PURE, 3,
29386 intern_c_string ("multiple-frames"),
29387 build_pure_c_string ("%b"),
29388 listn (CONSTYPE_PURE, 4,
29389 empty_unibyte_string,
29390 intern_c_string ("invocation-name"),
29391 build_pure_c_string ("@"),
29392 intern_c_string ("system-name")));
29394 DEFVAR_LISP ("message-log-max", Vmessage_log_max,
29395 doc: /* Maximum number of lines to keep in the message log buffer.
29396 If nil, disable message logging. If t, log messages but don't truncate
29397 the buffer when it becomes large. */);
29398 Vmessage_log_max = make_number (1000);
29400 DEFVAR_LISP ("window-size-change-functions", Vwindow_size_change_functions,
29401 doc: /* Functions called before redisplay, if window sizes have changed.
29402 The value should be a list of functions that take one argument.
29403 Just before redisplay, for each frame, if any of its windows have changed
29404 size since the last redisplay, or have been split or deleted,
29405 all the functions in the list are called, with the frame as argument. */);
29406 Vwindow_size_change_functions = Qnil;
29408 DEFVAR_LISP ("window-scroll-functions", Vwindow_scroll_functions,
29409 doc: /* List of functions to call before redisplaying a window with scrolling.
29410 Each function is called with two arguments, the window and its new
29411 display-start position. Note that these functions are also called by
29412 `set-window-buffer'. Also note that the value of `window-end' is not
29413 valid when these functions are called.
29415 Warning: Do not use this feature to alter the way the window
29416 is scrolled. It is not designed for that, and such use probably won't
29417 work. */);
29418 Vwindow_scroll_functions = Qnil;
29420 DEFVAR_LISP ("window-text-change-functions",
29421 Vwindow_text_change_functions,
29422 doc: /* Functions to call in redisplay when text in the window might change. */);
29423 Vwindow_text_change_functions = Qnil;
29425 DEFVAR_LISP ("redisplay-end-trigger-functions", Vredisplay_end_trigger_functions,
29426 doc: /* Functions called when redisplay of a window reaches the end trigger.
29427 Each function is called with two arguments, the window and the end trigger value.
29428 See `set-window-redisplay-end-trigger'. */);
29429 Vredisplay_end_trigger_functions = Qnil;
29431 DEFVAR_LISP ("mouse-autoselect-window", Vmouse_autoselect_window,
29432 doc: /* Non-nil means autoselect window with mouse pointer.
29433 If nil, do not autoselect windows.
29434 A positive number means delay autoselection by that many seconds: a
29435 window is autoselected only after the mouse has remained in that
29436 window for the duration of the delay.
29437 A negative number has a similar effect, but causes windows to be
29438 autoselected only after the mouse has stopped moving. \(Because of
29439 the way Emacs compares mouse events, you will occasionally wait twice
29440 that time before the window gets selected.\)
29441 Any other value means to autoselect window instantaneously when the
29442 mouse pointer enters it.
29444 Autoselection selects the minibuffer only if it is active, and never
29445 unselects the minibuffer if it is active.
29447 When customizing this variable make sure that the actual value of
29448 `focus-follows-mouse' matches the behavior of your window manager. */);
29449 Vmouse_autoselect_window = Qnil;
29451 DEFVAR_LISP ("auto-resize-tool-bars", Vauto_resize_tool_bars,
29452 doc: /* Non-nil means automatically resize tool-bars.
29453 This dynamically changes the tool-bar's height to the minimum height
29454 that is needed to make all tool-bar items visible.
29455 If value is `grow-only', the tool-bar's height is only increased
29456 automatically; to decrease the tool-bar height, use \\[recenter]. */);
29457 Vauto_resize_tool_bars = Qt;
29459 DEFVAR_BOOL ("auto-raise-tool-bar-buttons", auto_raise_tool_bar_buttons_p,
29460 doc: /* Non-nil means raise tool-bar buttons when the mouse moves over them. */);
29461 auto_raise_tool_bar_buttons_p = 1;
29463 DEFVAR_BOOL ("make-cursor-line-fully-visible", make_cursor_line_fully_visible_p,
29464 doc: /* Non-nil means to scroll (recenter) cursor line if it is not fully visible. */);
29465 make_cursor_line_fully_visible_p = 1;
29467 DEFVAR_LISP ("tool-bar-border", Vtool_bar_border,
29468 doc: /* Border below tool-bar in pixels.
29469 If an integer, use it as the height of the border.
29470 If it is one of `internal-border-width' or `border-width', use the
29471 value of the corresponding frame parameter.
29472 Otherwise, no border is added below the tool-bar. */);
29473 Vtool_bar_border = Qinternal_border_width;
29475 DEFVAR_LISP ("tool-bar-button-margin", Vtool_bar_button_margin,
29476 doc: /* Margin around tool-bar buttons in pixels.
29477 If an integer, use that for both horizontal and vertical margins.
29478 Otherwise, value should be a pair of integers `(HORZ . VERT)' with
29479 HORZ specifying the horizontal margin, and VERT specifying the
29480 vertical margin. */);
29481 Vtool_bar_button_margin = make_number (DEFAULT_TOOL_BAR_BUTTON_MARGIN);
29483 DEFVAR_INT ("tool-bar-button-relief", tool_bar_button_relief,
29484 doc: /* Relief thickness of tool-bar buttons. */);
29485 tool_bar_button_relief = DEFAULT_TOOL_BAR_BUTTON_RELIEF;
29487 DEFVAR_LISP ("tool-bar-style", Vtool_bar_style,
29488 doc: /* Tool bar style to use.
29489 It can be one of
29490 image - show images only
29491 text - show text only
29492 both - show both, text below image
29493 both-horiz - show text to the right of the image
29494 text-image-horiz - show text to the left of the image
29495 any other - use system default or image if no system default.
29497 This variable only affects the GTK+ toolkit version of Emacs. */);
29498 Vtool_bar_style = Qnil;
29500 DEFVAR_INT ("tool-bar-max-label-size", tool_bar_max_label_size,
29501 doc: /* Maximum number of characters a label can have to be shown.
29502 The tool bar style must also show labels for this to have any effect, see
29503 `tool-bar-style'. */);
29504 tool_bar_max_label_size = DEFAULT_TOOL_BAR_LABEL_SIZE;
29506 DEFVAR_LISP ("fontification-functions", Vfontification_functions,
29507 doc: /* List of functions to call to fontify regions of text.
29508 Each function is called with one argument POS. Functions must
29509 fontify a region starting at POS in the current buffer, and give
29510 fontified regions the property `fontified'. */);
29511 Vfontification_functions = Qnil;
29512 Fmake_variable_buffer_local (Qfontification_functions);
29514 DEFVAR_BOOL ("unibyte-display-via-language-environment",
29515 unibyte_display_via_language_environment,
29516 doc: /* Non-nil means display unibyte text according to language environment.
29517 Specifically, this means that raw bytes in the range 160-255 decimal
29518 are displayed by converting them to the equivalent multibyte characters
29519 according to the current language environment. As a result, they are
29520 displayed according to the current fontset.
29522 Note that this variable affects only how these bytes are displayed,
29523 but does not change the fact they are interpreted as raw bytes. */);
29524 unibyte_display_via_language_environment = 0;
29526 DEFVAR_LISP ("max-mini-window-height", Vmax_mini_window_height,
29527 doc: /* Maximum height for resizing mini-windows (the minibuffer and the echo area).
29528 If a float, it specifies a fraction of the mini-window frame's height.
29529 If an integer, it specifies a number of lines. */);
29530 Vmax_mini_window_height = make_float (0.25);
29532 DEFVAR_LISP ("resize-mini-windows", Vresize_mini_windows,
29533 doc: /* How to resize mini-windows (the minibuffer and the echo area).
29534 A value of nil means don't automatically resize mini-windows.
29535 A value of t means resize them to fit the text displayed in them.
29536 A value of `grow-only', the default, means let mini-windows grow only;
29537 they return to their normal size when the minibuffer is closed, or the
29538 echo area becomes empty. */);
29539 Vresize_mini_windows = Qgrow_only;
29541 DEFVAR_LISP ("blink-cursor-alist", Vblink_cursor_alist,
29542 doc: /* Alist specifying how to blink the cursor off.
29543 Each element has the form (ON-STATE . OFF-STATE). Whenever the
29544 `cursor-type' frame-parameter or variable equals ON-STATE,
29545 comparing using `equal', Emacs uses OFF-STATE to specify
29546 how to blink it off. ON-STATE and OFF-STATE are values for
29547 the `cursor-type' frame parameter.
29549 If a frame's ON-STATE has no entry in this list,
29550 the frame's other specifications determine how to blink the cursor off. */);
29551 Vblink_cursor_alist = Qnil;
29553 DEFVAR_BOOL ("auto-hscroll-mode", automatic_hscrolling_p,
29554 doc: /* Allow or disallow automatic horizontal scrolling of windows.
29555 If non-nil, windows are automatically scrolled horizontally to make
29556 point visible. */);
29557 automatic_hscrolling_p = 1;
29558 DEFSYM (Qauto_hscroll_mode, "auto-hscroll-mode");
29560 DEFVAR_INT ("hscroll-margin", hscroll_margin,
29561 doc: /* How many columns away from the window edge point is allowed to get
29562 before automatic hscrolling will horizontally scroll the window. */);
29563 hscroll_margin = 5;
29565 DEFVAR_LISP ("hscroll-step", Vhscroll_step,
29566 doc: /* How many columns to scroll the window when point gets too close to the edge.
29567 When point is less than `hscroll-margin' columns from the window
29568 edge, automatic hscrolling will scroll the window by the amount of columns
29569 determined by this variable. If its value is a positive integer, scroll that
29570 many columns. If it's a positive floating-point number, it specifies the
29571 fraction of the window's width to scroll. If it's nil or zero, point will be
29572 centered horizontally after the scroll. Any other value, including negative
29573 numbers, are treated as if the value were zero.
29575 Automatic hscrolling always moves point outside the scroll margin, so if
29576 point was more than scroll step columns inside the margin, the window will
29577 scroll more than the value given by the scroll step.
29579 Note that the lower bound for automatic hscrolling specified by `scroll-left'
29580 and `scroll-right' overrides this variable's effect. */);
29581 Vhscroll_step = make_number (0);
29583 DEFVAR_BOOL ("message-truncate-lines", message_truncate_lines,
29584 doc: /* If non-nil, messages are truncated instead of resizing the echo area.
29585 Bind this around calls to `message' to let it take effect. */);
29586 message_truncate_lines = 0;
29588 DEFVAR_LISP ("menu-bar-update-hook", Vmenu_bar_update_hook,
29589 doc: /* Normal hook run to update the menu bar definitions.
29590 Redisplay runs this hook before it redisplays the menu bar.
29591 This is used to update submenus such as Buffers,
29592 whose contents depend on various data. */);
29593 Vmenu_bar_update_hook = Qnil;
29595 DEFVAR_LISP ("menu-updating-frame", Vmenu_updating_frame,
29596 doc: /* Frame for which we are updating a menu.
29597 The enable predicate for a menu binding should check this variable. */);
29598 Vmenu_updating_frame = Qnil;
29600 DEFVAR_BOOL ("inhibit-menubar-update", inhibit_menubar_update,
29601 doc: /* Non-nil means don't update menu bars. Internal use only. */);
29602 inhibit_menubar_update = 0;
29604 DEFVAR_LISP ("wrap-prefix", Vwrap_prefix,
29605 doc: /* Prefix prepended to all continuation lines at display time.
29606 The value may be a string, an image, or a stretch-glyph; it is
29607 interpreted in the same way as the value of a `display' text property.
29609 This variable is overridden by any `wrap-prefix' text or overlay
29610 property.
29612 To add a prefix to non-continuation lines, use `line-prefix'. */);
29613 Vwrap_prefix = Qnil;
29614 DEFSYM (Qwrap_prefix, "wrap-prefix");
29615 Fmake_variable_buffer_local (Qwrap_prefix);
29617 DEFVAR_LISP ("line-prefix", Vline_prefix,
29618 doc: /* Prefix prepended to all non-continuation lines at display time.
29619 The value may be a string, an image, or a stretch-glyph; it is
29620 interpreted in the same way as the value of a `display' text property.
29622 This variable is overridden by any `line-prefix' text or overlay
29623 property.
29625 To add a prefix to continuation lines, use `wrap-prefix'. */);
29626 Vline_prefix = Qnil;
29627 DEFSYM (Qline_prefix, "line-prefix");
29628 Fmake_variable_buffer_local (Qline_prefix);
29630 DEFVAR_BOOL ("inhibit-eval-during-redisplay", inhibit_eval_during_redisplay,
29631 doc: /* Non-nil means don't eval Lisp during redisplay. */);
29632 inhibit_eval_during_redisplay = 0;
29634 DEFVAR_BOOL ("inhibit-free-realized-faces", inhibit_free_realized_faces,
29635 doc: /* Non-nil means don't free realized faces. Internal use only. */);
29636 inhibit_free_realized_faces = 0;
29638 #ifdef GLYPH_DEBUG
29639 DEFVAR_BOOL ("inhibit-try-window-id", inhibit_try_window_id,
29640 doc: /* Inhibit try_window_id display optimization. */);
29641 inhibit_try_window_id = 0;
29643 DEFVAR_BOOL ("inhibit-try-window-reusing", inhibit_try_window_reusing,
29644 doc: /* Inhibit try_window_reusing display optimization. */);
29645 inhibit_try_window_reusing = 0;
29647 DEFVAR_BOOL ("inhibit-try-cursor-movement", inhibit_try_cursor_movement,
29648 doc: /* Inhibit try_cursor_movement display optimization. */);
29649 inhibit_try_cursor_movement = 0;
29650 #endif /* GLYPH_DEBUG */
29652 DEFVAR_INT ("overline-margin", overline_margin,
29653 doc: /* Space between overline and text, in pixels.
29654 The default value is 2: the height of the overline (1 pixel) plus 1 pixel
29655 margin to the character height. */);
29656 overline_margin = 2;
29658 DEFVAR_INT ("underline-minimum-offset",
29659 underline_minimum_offset,
29660 doc: /* Minimum distance between baseline and underline.
29661 This can improve legibility of underlined text at small font sizes,
29662 particularly when using variable `x-use-underline-position-properties'
29663 with fonts that specify an UNDERLINE_POSITION relatively close to the
29664 baseline. The default value is 1. */);
29665 underline_minimum_offset = 1;
29667 DEFVAR_BOOL ("display-hourglass", display_hourglass_p,
29668 doc: /* Non-nil means show an hourglass pointer, when Emacs is busy.
29669 This feature only works when on a window system that can change
29670 cursor shapes. */);
29671 display_hourglass_p = 1;
29673 DEFVAR_LISP ("hourglass-delay", Vhourglass_delay,
29674 doc: /* Seconds to wait before displaying an hourglass pointer when Emacs is busy. */);
29675 Vhourglass_delay = make_number (DEFAULT_HOURGLASS_DELAY);
29677 hourglass_atimer = NULL;
29678 hourglass_shown_p = 0;
29680 DEFSYM (Qglyphless_char, "glyphless-char");
29681 DEFSYM (Qhex_code, "hex-code");
29682 DEFSYM (Qempty_box, "empty-box");
29683 DEFSYM (Qthin_space, "thin-space");
29684 DEFSYM (Qzero_width, "zero-width");
29686 DEFSYM (Qglyphless_char_display, "glyphless-char-display");
29687 /* Intern this now in case it isn't already done.
29688 Setting this variable twice is harmless.
29689 But don't staticpro it here--that is done in alloc.c. */
29690 Qchar_table_extra_slots = intern_c_string ("char-table-extra-slots");
29691 Fput (Qglyphless_char_display, Qchar_table_extra_slots, make_number (1));
29693 DEFVAR_LISP ("glyphless-char-display", Vglyphless_char_display,
29694 doc: /* Char-table defining glyphless characters.
29695 Each element, if non-nil, should be one of the following:
29696 an ASCII acronym string: display this string in a box
29697 `hex-code': display the hexadecimal code of a character in a box
29698 `empty-box': display as an empty box
29699 `thin-space': display as 1-pixel width space
29700 `zero-width': don't display
29701 An element may also be a cons cell (GRAPHICAL . TEXT), which specifies the
29702 display method for graphical terminals and text terminals respectively.
29703 GRAPHICAL and TEXT should each have one of the values listed above.
29705 The char-table has one extra slot to control the display of a character for
29706 which no font is found. This slot only takes effect on graphical terminals.
29707 Its value should be an ASCII acronym string, `hex-code', `empty-box', or
29708 `thin-space'. The default is `empty-box'. */);
29709 Vglyphless_char_display = Fmake_char_table (Qglyphless_char_display, Qnil);
29710 Fset_char_table_extra_slot (Vglyphless_char_display, make_number (0),
29711 Qempty_box);
29713 DEFVAR_LISP ("debug-on-message", Vdebug_on_message,
29714 doc: /* If non-nil, debug if a message matching this regexp is displayed. */);
29715 Vdebug_on_message = Qnil;
29719 /* Initialize this module when Emacs starts. */
29721 void
29722 init_xdisp (void)
29724 current_header_line_height = current_mode_line_height = -1;
29726 CHARPOS (this_line_start_pos) = 0;
29728 if (!noninteractive)
29730 struct window *m = XWINDOW (minibuf_window);
29731 Lisp_Object frame = m->frame;
29732 struct frame *f = XFRAME (frame);
29733 Lisp_Object root = FRAME_ROOT_WINDOW (f);
29734 struct window *r = XWINDOW (root);
29735 int i;
29737 echo_area_window = minibuf_window;
29739 r->top_line = FRAME_TOP_MARGIN (f);
29740 r->total_lines = FRAME_LINES (f) - 1 - FRAME_TOP_MARGIN (f);
29741 r->total_cols = FRAME_COLS (f);
29743 m->top_line = FRAME_LINES (f) - 1;
29744 m->total_lines = 1;
29745 m->total_cols = FRAME_COLS (f);
29747 scratch_glyph_row.glyphs[TEXT_AREA] = scratch_glyphs;
29748 scratch_glyph_row.glyphs[TEXT_AREA + 1]
29749 = scratch_glyphs + MAX_SCRATCH_GLYPHS;
29751 /* The default ellipsis glyphs `...'. */
29752 for (i = 0; i < 3; ++i)
29753 default_invis_vector[i] = make_number ('.');
29757 /* Allocate the buffer for frame titles.
29758 Also used for `format-mode-line'. */
29759 int size = 100;
29760 mode_line_noprop_buf = xmalloc (size);
29761 mode_line_noprop_buf_end = mode_line_noprop_buf + size;
29762 mode_line_noprop_ptr = mode_line_noprop_buf;
29763 mode_line_target = MODE_LINE_DISPLAY;
29766 help_echo_showing_p = 0;
29769 /* Platform-independent portion of hourglass implementation. */
29771 /* Cancel a currently active hourglass timer, and start a new one. */
29772 void
29773 start_hourglass (void)
29775 #if defined (HAVE_WINDOW_SYSTEM)
29776 EMACS_TIME delay;
29778 cancel_hourglass ();
29780 if (INTEGERP (Vhourglass_delay)
29781 && XINT (Vhourglass_delay) > 0)
29782 delay = make_emacs_time (min (XINT (Vhourglass_delay),
29783 TYPE_MAXIMUM (time_t)),
29785 else if (FLOATP (Vhourglass_delay)
29786 && XFLOAT_DATA (Vhourglass_delay) > 0)
29787 delay = EMACS_TIME_FROM_DOUBLE (XFLOAT_DATA (Vhourglass_delay));
29788 else
29789 delay = make_emacs_time (DEFAULT_HOURGLASS_DELAY, 0);
29791 #ifdef HAVE_NTGUI
29793 extern void w32_note_current_window (void);
29794 w32_note_current_window ();
29796 #endif /* HAVE_NTGUI */
29798 hourglass_atimer = start_atimer (ATIMER_RELATIVE, delay,
29799 show_hourglass, NULL);
29800 #endif
29804 /* Cancel the hourglass cursor timer if active, hide a busy cursor if
29805 shown. */
29806 void
29807 cancel_hourglass (void)
29809 #if defined (HAVE_WINDOW_SYSTEM)
29810 if (hourglass_atimer)
29812 cancel_atimer (hourglass_atimer);
29813 hourglass_atimer = NULL;
29816 if (hourglass_shown_p)
29817 hide_hourglass ();
29818 #endif