Support higher-resolution time stamps.
[emacs.git] / src / xdisp.c
blob0050d64493168ea8de993afd6eaf03fbc7c2f31e
1 /* Display generation from window structure and buffer text.
3 Copyright (C) 1985-1988, 1993-1995, 1997-2012 Free Software Foundation, Inc.
5 This file is part of GNU Emacs.
7 GNU Emacs is free software: you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation, either version 3 of the License, or
10 (at your option) any later version.
12 GNU Emacs is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
20 /* New redisplay written by Gerd Moellmann <gerd@gnu.org>.
22 Redisplay.
24 Emacs separates the task of updating the display from code
25 modifying global state, e.g. buffer text. This way functions
26 operating on buffers don't also have to be concerned with updating
27 the display.
29 Updating the display is triggered by the Lisp interpreter when it
30 decides it's time to do it. This is done either automatically for
31 you as part of the interpreter's command loop or as the result of
32 calling Lisp functions like `sit-for'. The C function `redisplay'
33 in xdisp.c is the only entry into the inner redisplay code.
35 The following diagram shows how redisplay code is invoked. As you
36 can see, Lisp calls redisplay and vice versa. Under window systems
37 like X, some portions of the redisplay code are also called
38 asynchronously during mouse movement or expose events. It is very
39 important that these code parts do NOT use the C library (malloc,
40 free) because many C libraries under Unix are not reentrant. They
41 may also NOT call functions of the Lisp interpreter which could
42 change the interpreter's state. If you don't follow these rules,
43 you will encounter bugs which are very hard to explain.
45 +--------------+ redisplay +----------------+
46 | Lisp machine |---------------->| Redisplay code |<--+
47 +--------------+ (xdisp.c) +----------------+ |
48 ^ | |
49 +----------------------------------+ |
50 Don't use this path when called |
51 asynchronously! |
53 expose_window (asynchronous) |
55 X expose events -----+
57 What does redisplay do? Obviously, it has to figure out somehow what
58 has been changed since the last time the display has been updated,
59 and to make these changes visible. Preferably it would do that in
60 a moderately intelligent way, i.e. fast.
62 Changes in buffer text can be deduced from window and buffer
63 structures, and from some global variables like `beg_unchanged' and
64 `end_unchanged'. The contents of the display are additionally
65 recorded in a `glyph matrix', a two-dimensional matrix of glyph
66 structures. Each row in such a matrix corresponds to a line on the
67 display, and each glyph in a row corresponds to a column displaying
68 a character, an image, or what else. This matrix is called the
69 `current glyph matrix' or `current matrix' in redisplay
70 terminology.
72 For buffer parts that have been changed since the last update, a
73 second glyph matrix is constructed, the so called `desired glyph
74 matrix' or short `desired matrix'. Current and desired matrix are
75 then compared to find a cheap way to update the display, e.g. by
76 reusing part of the display by scrolling lines.
78 You will find a lot of redisplay optimizations when you start
79 looking at the innards of redisplay. The overall goal of all these
80 optimizations is to make redisplay fast because it is done
81 frequently. Some of these optimizations are implemented by the
82 following functions:
84 . try_cursor_movement
86 This function tries to update the display if the text in the
87 window did not change and did not scroll, only point moved, and
88 it did not move off the displayed portion of the text.
90 . try_window_reusing_current_matrix
92 This function reuses the current matrix of a window when text
93 has not changed, but the window start changed (e.g., due to
94 scrolling).
96 . try_window_id
98 This function attempts to redisplay a window by reusing parts of
99 its existing display. It finds and reuses the part that was not
100 changed, and redraws the rest.
102 . try_window
104 This function performs the full redisplay of a single window
105 assuming that its fonts were not changed and that the cursor
106 will not end up in the scroll margins. (Loading fonts requires
107 re-adjustment of dimensions of glyph matrices, which makes this
108 method impossible to use.)
110 These optimizations are tried in sequence (some can be skipped if
111 it is known that they are not applicable). If none of the
112 optimizations were successful, redisplay calls redisplay_windows,
113 which performs a full redisplay of all windows.
115 Desired matrices.
117 Desired matrices are always built per Emacs window. The function
118 `display_line' is the central function to look at if you are
119 interested. It constructs one row in a desired matrix given an
120 iterator structure containing both a buffer position and a
121 description of the environment in which the text is to be
122 displayed. But this is too early, read on.
124 Characters and pixmaps displayed for a range of buffer text depend
125 on various settings of buffers and windows, on overlays and text
126 properties, on display tables, on selective display. The good news
127 is that all this hairy stuff is hidden behind a small set of
128 interface functions taking an iterator structure (struct it)
129 argument.
131 Iteration over things to be displayed is then simple. It is
132 started by initializing an iterator with a call to init_iterator,
133 passing it the buffer position where to start iteration. For
134 iteration over strings, pass -1 as the position to init_iterator,
135 and call reseat_to_string when the string is ready, to initialize
136 the iterator for that string. Thereafter, calls to
137 get_next_display_element fill the iterator structure with relevant
138 information about the next thing to display. Calls to
139 set_iterator_to_next move the iterator to the next thing.
141 Besides this, an iterator also contains information about the
142 display environment in which glyphs for display elements are to be
143 produced. It has fields for the width and height of the display,
144 the information whether long lines are truncated or continued, a
145 current X and Y position, and lots of other stuff you can better
146 see in dispextern.h.
148 Glyphs in a desired matrix are normally constructed in a loop
149 calling get_next_display_element and then PRODUCE_GLYPHS. The call
150 to PRODUCE_GLYPHS will fill the iterator structure with pixel
151 information about the element being displayed and at the same time
152 produce glyphs for it. If the display element fits on the line
153 being displayed, set_iterator_to_next is called next, otherwise the
154 glyphs produced are discarded. The function display_line is the
155 workhorse of filling glyph rows in the desired matrix with glyphs.
156 In addition to producing glyphs, it also handles line truncation
157 and continuation, word wrap, and cursor positioning (for the
158 latter, see also set_cursor_from_row).
160 Frame matrices.
162 That just couldn't be all, could it? What about terminal types not
163 supporting operations on sub-windows of the screen? To update the
164 display on such a terminal, window-based glyph matrices are not
165 well suited. To be able to reuse part of the display (scrolling
166 lines up and down), we must instead have a view of the whole
167 screen. This is what `frame matrices' are for. They are a trick.
169 Frames on terminals like above have a glyph pool. Windows on such
170 a frame sub-allocate their glyph memory from their frame's glyph
171 pool. The frame itself is given its own glyph matrices. By
172 coincidence---or maybe something else---rows in window glyph
173 matrices are slices of corresponding rows in frame matrices. Thus
174 writing to window matrices implicitly updates a frame matrix which
175 provides us with the view of the whole screen that we originally
176 wanted to have without having to move many bytes around. To be
177 honest, there is a little bit more done, but not much more. If you
178 plan to extend that code, take a look at dispnew.c. The function
179 build_frame_matrix is a good starting point.
181 Bidirectional display.
183 Bidirectional display adds quite some hair to this already complex
184 design. The good news are that a large portion of that hairy stuff
185 is hidden in bidi.c behind only 3 interfaces. bidi.c implements a
186 reordering engine which is called by set_iterator_to_next and
187 returns the next character to display in the visual order. See
188 commentary on bidi.c for more details. As far as redisplay is
189 concerned, the effect of calling bidi_move_to_visually_next, the
190 main interface of the reordering engine, is that the iterator gets
191 magically placed on the buffer or string position that is to be
192 displayed next. In other words, a linear iteration through the
193 buffer/string is replaced with a non-linear one. All the rest of
194 the redisplay is oblivious to the bidi reordering.
196 Well, almost oblivious---there are still complications, most of
197 them due to the fact that buffer and string positions no longer
198 change monotonously with glyph indices in a glyph row. Moreover,
199 for continued lines, the buffer positions may not even be
200 monotonously changing with vertical positions. Also, accounting
201 for face changes, overlays, etc. becomes more complex because
202 non-linear iteration could potentially skip many positions with
203 changes, and then cross them again on the way back...
205 One other prominent effect of bidirectional display is that some
206 paragraphs of text need to be displayed starting at the right
207 margin of the window---the so-called right-to-left, or R2L
208 paragraphs. R2L paragraphs are displayed with R2L glyph rows,
209 which have their reversed_p flag set. The bidi reordering engine
210 produces characters in such rows starting from the character which
211 should be the rightmost on display. PRODUCE_GLYPHS then reverses
212 the order, when it fills up the glyph row whose reversed_p flag is
213 set, by prepending each new glyph to what is already there, instead
214 of appending it. When the glyph row is complete, the function
215 extend_face_to_end_of_line fills the empty space to the left of the
216 leftmost character with special glyphs, which will display as,
217 well, empty. On text terminals, these special glyphs are simply
218 blank characters. On graphics terminals, there's a single stretch
219 glyph of a suitably computed width. Both the blanks and the
220 stretch glyph are given the face of the background of the line.
221 This way, the terminal-specific back-end can still draw the glyphs
222 left to right, even for R2L lines.
224 Bidirectional display and character compositions
226 Some scripts cannot be displayed by drawing each character
227 individually, because adjacent characters change each other's shape
228 on display. For example, Arabic and Indic scripts belong to this
229 category.
231 Emacs display supports this by providing "character compositions",
232 most of which is implemented in composite.c. During the buffer
233 scan that delivers characters to PRODUCE_GLYPHS, if the next
234 character to be delivered is a composed character, the iteration
235 calls composition_reseat_it and next_element_from_composition. If
236 they succeed to compose the character with one or more of the
237 following characters, the whole sequence of characters that where
238 composed is recorded in the `struct composition_it' object that is
239 part of the buffer iterator. The composed sequence could produce
240 one or more font glyphs (called "grapheme clusters") on the screen.
241 Each of these grapheme clusters is then delivered to PRODUCE_GLYPHS
242 in the direction corresponding to the current bidi scan direction
243 (recorded in the scan_dir member of the `struct bidi_it' object
244 that is part of the buffer iterator). In particular, if the bidi
245 iterator currently scans the buffer backwards, the grapheme
246 clusters are delivered back to front. This reorders the grapheme
247 clusters as appropriate for the current bidi context. Note that
248 this means that the grapheme clusters are always stored in the
249 LGSTRING object (see composite.c) in the logical order.
251 Moving an iterator in bidirectional text
252 without producing glyphs
254 Note one important detail mentioned above: that the bidi reordering
255 engine, driven by the iterator, produces characters in R2L rows
256 starting at the character that will be the rightmost on display.
257 As far as the iterator is concerned, the geometry of such rows is
258 still left to right, i.e. the iterator "thinks" the first character
259 is at the leftmost pixel position. The iterator does not know that
260 PRODUCE_GLYPHS reverses the order of the glyphs that the iterator
261 delivers. This is important when functions from the move_it_*
262 family are used to get to certain screen position or to match
263 screen coordinates with buffer coordinates: these functions use the
264 iterator geometry, which is left to right even in R2L paragraphs.
265 This works well with most callers of move_it_*, because they need
266 to get to a specific column, and columns are still numbered in the
267 reading order, i.e. the rightmost character in a R2L paragraph is
268 still column zero. But some callers do not get well with this; a
269 notable example is mouse clicks that need to find the character
270 that corresponds to certain pixel coordinates. See
271 buffer_posn_from_coords in dispnew.c for how this is handled. */
273 #include <config.h>
274 #include <stdio.h>
275 #include <limits.h>
276 #include <setjmp.h>
278 #include "lisp.h"
279 #include "keyboard.h"
280 #include "frame.h"
281 #include "window.h"
282 #include "termchar.h"
283 #include "dispextern.h"
284 #include "character.h"
285 #include "buffer.h"
286 #include "charset.h"
287 #include "indent.h"
288 #include "commands.h"
289 #include "keymap.h"
290 #include "macros.h"
291 #include "disptab.h"
292 #include "termhooks.h"
293 #include "termopts.h"
294 #include "intervals.h"
295 #include "coding.h"
296 #include "process.h"
297 #include "region-cache.h"
298 #include "font.h"
299 #include "fontset.h"
300 #include "blockinput.h"
302 #ifdef HAVE_X_WINDOWS
303 #include "xterm.h"
304 #endif
305 #ifdef WINDOWSNT
306 #include "w32term.h"
307 #endif
308 #ifdef HAVE_NS
309 #include "nsterm.h"
310 #endif
311 #ifdef USE_GTK
312 #include "gtkutil.h"
313 #endif
315 #include "font.h"
317 #ifndef FRAME_X_OUTPUT
318 #define FRAME_X_OUTPUT(f) ((f)->output_data.x)
319 #endif
321 #define INFINITY 10000000
323 Lisp_Object Qoverriding_local_map, Qoverriding_terminal_local_map;
324 Lisp_Object Qwindow_scroll_functions;
325 static Lisp_Object Qwindow_text_change_functions;
326 static Lisp_Object Qredisplay_end_trigger_functions;
327 Lisp_Object Qinhibit_point_motion_hooks;
328 static Lisp_Object QCeval, QCpropertize;
329 Lisp_Object QCfile, QCdata;
330 static Lisp_Object Qfontified;
331 static Lisp_Object Qgrow_only;
332 static Lisp_Object Qinhibit_eval_during_redisplay;
333 static Lisp_Object Qbuffer_position, Qposition, Qobject;
334 static Lisp_Object Qright_to_left, Qleft_to_right;
336 /* Cursor shapes */
337 Lisp_Object Qbar, Qhbar, Qbox, Qhollow;
339 /* Pointer shapes */
340 static Lisp_Object Qarrow, Qhand;
341 Lisp_Object Qtext;
343 /* Holds the list (error). */
344 static Lisp_Object list_of_error;
346 static Lisp_Object Qfontification_functions;
348 static Lisp_Object Qwrap_prefix;
349 static Lisp_Object Qline_prefix;
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 \
380 && (IT)->line_wrap != WORD_WRAP)
382 #else /* !HAVE_WINDOW_SYSTEM */
383 #define IT_OVERFLOW_NEWLINE_INTO_FRINGE(it) 0
384 #endif /* HAVE_WINDOW_SYSTEM */
386 /* Test if the display element loaded in IT, or the underlying buffer
387 or string character, is a space or a TAB character. This is used
388 to determine where word wrapping can occur. */
390 #define IT_DISPLAYING_WHITESPACE(it) \
391 ((it->what == IT_CHARACTER && (it->c == ' ' || it->c == '\t')) \
392 || ((STRINGP (it->string) \
393 && (SREF (it->string, IT_STRING_BYTEPOS (*it)) == ' ' \
394 || SREF (it->string, IT_STRING_BYTEPOS (*it)) == '\t')) \
395 || (it->s \
396 && (it->s[IT_BYTEPOS (*it)] == ' ' \
397 || it->s[IT_BYTEPOS (*it)] == '\t')) \
398 || (IT_BYTEPOS (*it) < ZV_BYTE \
399 && (*BYTE_POS_ADDR (IT_BYTEPOS (*it)) == ' ' \
400 || *BYTE_POS_ADDR (IT_BYTEPOS (*it)) == '\t')))) \
402 /* Name of the face used to highlight trailing whitespace. */
404 static Lisp_Object Qtrailing_whitespace;
406 /* Name and number of the face used to highlight escape glyphs. */
408 static Lisp_Object Qescape_glyph;
410 /* Name and number of the face used to highlight non-breaking spaces. */
412 static Lisp_Object Qnobreak_space;
414 /* The symbol `image' which is the car of the lists used to represent
415 images in Lisp. Also a tool bar style. */
417 Lisp_Object Qimage;
419 /* The image map types. */
420 Lisp_Object QCmap;
421 static Lisp_Object QCpointer;
422 static Lisp_Object Qrect, Qcircle, Qpoly;
424 /* Tool bar styles */
425 Lisp_Object Qboth, Qboth_horiz, Qtext_image_horiz;
427 /* Non-zero means print newline to stdout before next mini-buffer
428 message. */
430 int noninteractive_need_newline;
432 /* Non-zero means print newline to message log before next message. */
434 static int message_log_need_newline;
436 /* Three markers that message_dolog uses.
437 It could allocate them itself, but that causes trouble
438 in handling memory-full errors. */
439 static Lisp_Object message_dolog_marker1;
440 static Lisp_Object message_dolog_marker2;
441 static Lisp_Object message_dolog_marker3;
443 /* The buffer position of the first character appearing entirely or
444 partially on the line of the selected window which contains the
445 cursor; <= 0 if not known. Set by set_cursor_from_row, used for
446 redisplay optimization in redisplay_internal. */
448 static struct text_pos this_line_start_pos;
450 /* Number of characters past the end of the line above, including the
451 terminating newline. */
453 static struct text_pos this_line_end_pos;
455 /* The vertical positions and the height of this line. */
457 static int this_line_vpos;
458 static int this_line_y;
459 static int this_line_pixel_height;
461 /* X position at which this display line starts. Usually zero;
462 negative if first character is partially visible. */
464 static int this_line_start_x;
466 /* The smallest character position seen by move_it_* functions as they
467 move across display lines. Used to set MATRIX_ROW_START_CHARPOS of
468 hscrolled lines, see display_line. */
470 static struct text_pos this_line_min_pos;
472 /* Buffer that this_line_.* variables are referring to. */
474 static struct buffer *this_line_buffer;
477 /* Values of those variables at last redisplay are stored as
478 properties on `overlay-arrow-position' symbol. However, if
479 Voverlay_arrow_position is a marker, last-arrow-position is its
480 numerical position. */
482 static Lisp_Object Qlast_arrow_position, Qlast_arrow_string;
484 /* Alternative overlay-arrow-string and overlay-arrow-bitmap
485 properties on a symbol in overlay-arrow-variable-list. */
487 static Lisp_Object Qoverlay_arrow_string, Qoverlay_arrow_bitmap;
489 Lisp_Object Qmenu_bar_update_hook;
491 /* Nonzero if an overlay arrow has been displayed in this window. */
493 static int overlay_arrow_seen;
495 /* Number of windows showing the buffer of the selected window (or
496 another buffer with the same base buffer). keyboard.c refers to
497 this. */
499 int buffer_shared;
501 /* Vector containing glyphs for an ellipsis `...'. */
503 static Lisp_Object default_invis_vector[3];
505 /* This is the window where the echo area message was displayed. It
506 is always a mini-buffer window, but it may not be the same window
507 currently active as a mini-buffer. */
509 Lisp_Object echo_area_window;
511 /* List of pairs (MESSAGE . MULTIBYTE). The function save_message
512 pushes the current message and the value of
513 message_enable_multibyte on the stack, the function restore_message
514 pops the stack and displays MESSAGE again. */
516 static Lisp_Object Vmessage_stack;
518 /* Nonzero means multibyte characters were enabled when the echo area
519 message was specified. */
521 static int message_enable_multibyte;
523 /* Nonzero if we should redraw the mode lines on the next redisplay. */
525 int update_mode_lines;
527 /* Nonzero if window sizes or contents have changed since last
528 redisplay that finished. */
530 int windows_or_buffers_changed;
532 /* Nonzero means a frame's cursor type has been changed. */
534 int cursor_type_changed;
536 /* Nonzero after display_mode_line if %l was used and it displayed a
537 line number. */
539 static int line_number_displayed;
541 /* The name of the *Messages* buffer, a string. */
543 static Lisp_Object Vmessages_buffer_name;
545 /* Current, index 0, and last displayed echo area message. Either
546 buffers from echo_buffers, or nil to indicate no message. */
548 Lisp_Object echo_area_buffer[2];
550 /* The buffers referenced from echo_area_buffer. */
552 static Lisp_Object echo_buffer[2];
554 /* A vector saved used in with_area_buffer to reduce consing. */
556 static Lisp_Object Vwith_echo_area_save_vector;
558 /* Non-zero means display_echo_area should display the last echo area
559 message again. Set by redisplay_preserve_echo_area. */
561 static int display_last_displayed_message_p;
563 /* Nonzero if echo area is being used by print; zero if being used by
564 message. */
566 static int message_buf_print;
568 /* The symbol `inhibit-menubar-update' and its DEFVAR_BOOL variable. */
570 static Lisp_Object Qinhibit_menubar_update;
571 static Lisp_Object Qmessage_truncate_lines;
573 /* Set to 1 in clear_message to make redisplay_internal aware
574 of an emptied echo area. */
576 static int message_cleared_p;
578 /* A scratch glyph row with contents used for generating truncation
579 glyphs. Also used in direct_output_for_insert. */
581 #define MAX_SCRATCH_GLYPHS 100
582 static struct glyph_row scratch_glyph_row;
583 static struct glyph scratch_glyphs[MAX_SCRATCH_GLYPHS];
585 /* Ascent and height of the last line processed by move_it_to. */
587 static int last_max_ascent, last_height;
589 /* Non-zero if there's a help-echo in the echo area. */
591 int help_echo_showing_p;
593 /* If >= 0, computed, exact values of mode-line and header-line height
594 to use in the macros CURRENT_MODE_LINE_HEIGHT and
595 CURRENT_HEADER_LINE_HEIGHT. */
597 int current_mode_line_height, current_header_line_height;
599 /* The maximum distance to look ahead for text properties. Values
600 that are too small let us call compute_char_face and similar
601 functions too often which is expensive. Values that are too large
602 let us call compute_char_face and alike too often because we
603 might not be interested in text properties that far away. */
605 #define TEXT_PROP_DISTANCE_LIMIT 100
607 /* SAVE_IT and RESTORE_IT are called when we save a snapshot of the
608 iterator state and later restore it. This is needed because the
609 bidi iterator on bidi.c keeps a stacked cache of its states, which
610 is really a singleton. When we use scratch iterator objects to
611 move around the buffer, we can cause the bidi cache to be pushed or
612 popped, and therefore we need to restore the cache state when we
613 return to the original iterator. */
614 #define SAVE_IT(ITCOPY,ITORIG,CACHE) \
615 do { \
616 if (CACHE) \
617 bidi_unshelve_cache (CACHE, 1); \
618 ITCOPY = ITORIG; \
619 CACHE = bidi_shelve_cache (); \
620 } while (0)
622 #define RESTORE_IT(pITORIG,pITCOPY,CACHE) \
623 do { \
624 if (pITORIG != pITCOPY) \
625 *(pITORIG) = *(pITCOPY); \
626 bidi_unshelve_cache (CACHE, 0); \
627 CACHE = NULL; \
628 } while (0)
630 #if GLYPH_DEBUG
632 /* Non-zero means print traces of redisplay if compiled with
633 GLYPH_DEBUG != 0. */
635 int trace_redisplay_p;
637 #endif /* GLYPH_DEBUG */
639 #ifdef DEBUG_TRACE_MOVE
640 /* Non-zero means trace with TRACE_MOVE to stderr. */
641 int trace_move;
643 #define TRACE_MOVE(x) if (trace_move) fprintf x; else (void) 0
644 #else
645 #define TRACE_MOVE(x) (void) 0
646 #endif
648 static Lisp_Object Qauto_hscroll_mode;
650 /* Buffer being redisplayed -- for redisplay_window_error. */
652 static struct buffer *displayed_buffer;
654 /* Value returned from text property handlers (see below). */
656 enum prop_handled
658 HANDLED_NORMALLY,
659 HANDLED_RECOMPUTE_PROPS,
660 HANDLED_OVERLAY_STRING_CONSUMED,
661 HANDLED_RETURN
664 /* A description of text properties that redisplay is interested
665 in. */
667 struct props
669 /* The name of the property. */
670 Lisp_Object *name;
672 /* A unique index for the property. */
673 enum prop_idx idx;
675 /* A handler function called to set up iterator IT from the property
676 at IT's current position. Value is used to steer handle_stop. */
677 enum prop_handled (*handler) (struct it *it);
680 static enum prop_handled handle_face_prop (struct it *);
681 static enum prop_handled handle_invisible_prop (struct it *);
682 static enum prop_handled handle_display_prop (struct it *);
683 static enum prop_handled handle_composition_prop (struct it *);
684 static enum prop_handled handle_overlay_change (struct it *);
685 static enum prop_handled handle_fontified_prop (struct it *);
687 /* Properties handled by iterators. */
689 static struct props it_props[] =
691 {&Qfontified, FONTIFIED_PROP_IDX, handle_fontified_prop},
692 /* Handle `face' before `display' because some sub-properties of
693 `display' need to know the face. */
694 {&Qface, FACE_PROP_IDX, handle_face_prop},
695 {&Qdisplay, DISPLAY_PROP_IDX, handle_display_prop},
696 {&Qinvisible, INVISIBLE_PROP_IDX, handle_invisible_prop},
697 {&Qcomposition, COMPOSITION_PROP_IDX, handle_composition_prop},
698 {NULL, 0, NULL}
701 /* Value is the position described by X. If X is a marker, value is
702 the marker_position of X. Otherwise, value is X. */
704 #define COERCE_MARKER(X) (MARKERP ((X)) ? Fmarker_position (X) : (X))
706 /* Enumeration returned by some move_it_.* functions internally. */
708 enum move_it_result
710 /* Not used. Undefined value. */
711 MOVE_UNDEFINED,
713 /* Move ended at the requested buffer position or ZV. */
714 MOVE_POS_MATCH_OR_ZV,
716 /* Move ended at the requested X pixel position. */
717 MOVE_X_REACHED,
719 /* Move within a line ended at the end of a line that must be
720 continued. */
721 MOVE_LINE_CONTINUED,
723 /* Move within a line ended at the end of a line that would
724 be displayed truncated. */
725 MOVE_LINE_TRUNCATED,
727 /* Move within a line ended at a line end. */
728 MOVE_NEWLINE_OR_CR
731 /* This counter is used to clear the face cache every once in a while
732 in redisplay_internal. It is incremented for each redisplay.
733 Every CLEAR_FACE_CACHE_COUNT full redisplays, the face cache is
734 cleared. */
736 #define CLEAR_FACE_CACHE_COUNT 500
737 static int clear_face_cache_count;
739 /* Similarly for the image cache. */
741 #ifdef HAVE_WINDOW_SYSTEM
742 #define CLEAR_IMAGE_CACHE_COUNT 101
743 static int clear_image_cache_count;
745 /* Null glyph slice */
746 static struct glyph_slice null_glyph_slice = { 0, 0, 0, 0 };
747 #endif
749 /* Non-zero while redisplay_internal is in progress. */
751 int redisplaying_p;
753 static Lisp_Object Qinhibit_free_realized_faces;
754 static Lisp_Object Qmode_line_default_help_echo;
756 /* If a string, XTread_socket generates an event to display that string.
757 (The display is done in read_char.) */
759 Lisp_Object help_echo_string;
760 Lisp_Object help_echo_window;
761 Lisp_Object help_echo_object;
762 ptrdiff_t help_echo_pos;
764 /* Temporary variable for XTread_socket. */
766 Lisp_Object previous_help_echo_string;
768 /* Platform-independent portion of hourglass implementation. */
770 /* Non-zero means an hourglass cursor is currently shown. */
771 int hourglass_shown_p;
773 /* If non-null, an asynchronous timer that, when it expires, displays
774 an hourglass cursor on all frames. */
775 struct atimer *hourglass_atimer;
777 /* Name of the face used to display glyphless characters. */
778 Lisp_Object Qglyphless_char;
780 /* Symbol for the purpose of Vglyphless_char_display. */
781 static Lisp_Object Qglyphless_char_display;
783 /* Method symbols for Vglyphless_char_display. */
784 static Lisp_Object Qhex_code, Qempty_box, Qthin_space, Qzero_width;
786 /* Default pixel width of `thin-space' display method. */
787 #define THIN_SPACE_WIDTH 1
789 /* Default number of seconds to wait before displaying an hourglass
790 cursor. */
791 #define DEFAULT_HOURGLASS_DELAY 1
794 /* Function prototypes. */
796 static void setup_for_ellipsis (struct it *, int);
797 static void set_iterator_to_next (struct it *, int);
798 static void mark_window_display_accurate_1 (struct window *, int);
799 static int single_display_spec_string_p (Lisp_Object, Lisp_Object);
800 static int display_prop_string_p (Lisp_Object, Lisp_Object);
801 static int cursor_row_p (struct glyph_row *);
802 static int redisplay_mode_lines (Lisp_Object, int);
803 static char *decode_mode_spec_coding (Lisp_Object, char *, int);
805 static Lisp_Object get_it_property (struct it *it, Lisp_Object prop);
807 static void handle_line_prefix (struct it *);
809 static void pint2str (char *, int, ptrdiff_t);
810 static void pint2hrstr (char *, int, ptrdiff_t);
811 static struct text_pos run_window_scroll_functions (Lisp_Object,
812 struct text_pos);
813 static void reconsider_clip_changes (struct window *, struct buffer *);
814 static int text_outside_line_unchanged_p (struct window *,
815 ptrdiff_t, ptrdiff_t);
816 static void store_mode_line_noprop_char (char);
817 static int store_mode_line_noprop (const char *, int, int);
818 static void handle_stop (struct it *);
819 static void handle_stop_backwards (struct it *, ptrdiff_t);
820 static void vmessage (const char *, va_list) ATTRIBUTE_FORMAT_PRINTF (1, 0);
821 static void ensure_echo_area_buffers (void);
822 static Lisp_Object unwind_with_echo_area_buffer (Lisp_Object);
823 static Lisp_Object with_echo_area_buffer_unwind_data (struct window *);
824 static int with_echo_area_buffer (struct window *, int,
825 int (*) (ptrdiff_t, Lisp_Object, ptrdiff_t, ptrdiff_t),
826 ptrdiff_t, Lisp_Object, ptrdiff_t, ptrdiff_t);
827 static void clear_garbaged_frames (void);
828 static int current_message_1 (ptrdiff_t, Lisp_Object, ptrdiff_t, ptrdiff_t);
829 static void pop_message (void);
830 static int truncate_message_1 (ptrdiff_t, Lisp_Object, ptrdiff_t, ptrdiff_t);
831 static void set_message (const char *, Lisp_Object, ptrdiff_t, int);
832 static int set_message_1 (ptrdiff_t, Lisp_Object, ptrdiff_t, ptrdiff_t);
833 static int display_echo_area (struct window *);
834 static int display_echo_area_1 (ptrdiff_t, Lisp_Object, ptrdiff_t, ptrdiff_t);
835 static int resize_mini_window_1 (ptrdiff_t, Lisp_Object, ptrdiff_t, ptrdiff_t);
836 static Lisp_Object unwind_redisplay (Lisp_Object);
837 static int string_char_and_length (const unsigned char *, int *);
838 static struct text_pos display_prop_end (struct it *, Lisp_Object,
839 struct text_pos);
840 static int compute_window_start_on_continuation_line (struct window *);
841 static Lisp_Object safe_eval_handler (Lisp_Object);
842 static void insert_left_trunc_glyphs (struct it *);
843 static struct glyph_row *get_overlay_arrow_glyph_row (struct window *,
844 Lisp_Object);
845 static void extend_face_to_end_of_line (struct it *);
846 static int append_space_for_newline (struct it *, int);
847 static int cursor_row_fully_visible_p (struct window *, int, int);
848 static int try_scrolling (Lisp_Object, int, ptrdiff_t, ptrdiff_t, int, int);
849 static int try_cursor_movement (Lisp_Object, struct text_pos, int *);
850 static int trailing_whitespace_p (ptrdiff_t);
851 static intmax_t message_log_check_duplicate (ptrdiff_t, ptrdiff_t);
852 static void push_it (struct it *, struct text_pos *);
853 static void iterate_out_of_display_property (struct it *);
854 static void pop_it (struct it *);
855 static void sync_frame_with_window_matrix_rows (struct window *);
856 static void select_frame_for_redisplay (Lisp_Object);
857 static void redisplay_internal (void);
858 static int echo_area_display (int);
859 static void redisplay_windows (Lisp_Object);
860 static void redisplay_window (Lisp_Object, int);
861 static Lisp_Object redisplay_window_error (Lisp_Object);
862 static Lisp_Object redisplay_window_0 (Lisp_Object);
863 static Lisp_Object redisplay_window_1 (Lisp_Object);
864 static int set_cursor_from_row (struct window *, struct glyph_row *,
865 struct glyph_matrix *, ptrdiff_t, ptrdiff_t,
866 int, int);
867 static int update_menu_bar (struct frame *, int, int);
868 static int try_window_reusing_current_matrix (struct window *);
869 static int try_window_id (struct window *);
870 static int display_line (struct it *);
871 static int display_mode_lines (struct window *);
872 static int display_mode_line (struct window *, enum face_id, Lisp_Object);
873 static int display_mode_element (struct it *, int, int, int, Lisp_Object, Lisp_Object, int);
874 static int store_mode_line_string (const char *, Lisp_Object, int, int, int, Lisp_Object);
875 static const char *decode_mode_spec (struct window *, int, int, Lisp_Object *);
876 static void display_menu_bar (struct window *);
877 static ptrdiff_t display_count_lines (ptrdiff_t, ptrdiff_t, ptrdiff_t,
878 ptrdiff_t *);
879 static int display_string (const char *, Lisp_Object, Lisp_Object,
880 ptrdiff_t, ptrdiff_t, struct it *, int, int, int, int);
881 static void compute_line_metrics (struct it *);
882 static void run_redisplay_end_trigger_hook (struct it *);
883 static int get_overlay_strings (struct it *, ptrdiff_t);
884 static int get_overlay_strings_1 (struct it *, ptrdiff_t, int);
885 static void next_overlay_string (struct it *);
886 static void reseat (struct it *, struct text_pos, int);
887 static void reseat_1 (struct it *, struct text_pos, int);
888 static void back_to_previous_visible_line_start (struct it *);
889 void reseat_at_previous_visible_line_start (struct it *);
890 static void reseat_at_next_visible_line_start (struct it *, int);
891 static int next_element_from_ellipsis (struct it *);
892 static int next_element_from_display_vector (struct it *);
893 static int next_element_from_string (struct it *);
894 static int next_element_from_c_string (struct it *);
895 static int next_element_from_buffer (struct it *);
896 static int next_element_from_composition (struct it *);
897 static int next_element_from_image (struct it *);
898 static int next_element_from_stretch (struct it *);
899 static void load_overlay_strings (struct it *, ptrdiff_t);
900 static int init_from_display_pos (struct it *, struct window *,
901 struct display_pos *);
902 static void reseat_to_string (struct it *, const char *,
903 Lisp_Object, ptrdiff_t, ptrdiff_t, int, int);
904 static int get_next_display_element (struct it *);
905 static enum move_it_result
906 move_it_in_display_line_to (struct it *, ptrdiff_t, int,
907 enum move_operation_enum);
908 void move_it_vertically_backward (struct it *, int);
909 static void init_to_row_start (struct it *, struct window *,
910 struct glyph_row *);
911 static int init_to_row_end (struct it *, struct window *,
912 struct glyph_row *);
913 static void back_to_previous_line_start (struct it *);
914 static int forward_to_next_line_start (struct it *, int *, struct bidi_it *);
915 static struct text_pos string_pos_nchars_ahead (struct text_pos,
916 Lisp_Object, ptrdiff_t);
917 static struct text_pos string_pos (ptrdiff_t, Lisp_Object);
918 static struct text_pos c_string_pos (ptrdiff_t, const char *, int);
919 static ptrdiff_t number_of_chars (const char *, int);
920 static void compute_stop_pos (struct it *);
921 static void compute_string_pos (struct text_pos *, struct text_pos,
922 Lisp_Object);
923 static int face_before_or_after_it_pos (struct it *, int);
924 static ptrdiff_t next_overlay_change (ptrdiff_t);
925 static int handle_display_spec (struct it *, Lisp_Object, Lisp_Object,
926 Lisp_Object, struct text_pos *, ptrdiff_t, int);
927 static int handle_single_display_spec (struct it *, Lisp_Object,
928 Lisp_Object, Lisp_Object,
929 struct text_pos *, ptrdiff_t, int, int);
930 static int underlying_face_id (struct it *);
931 static int in_ellipses_for_invisible_text_p (struct display_pos *,
932 struct window *);
934 #define face_before_it_pos(IT) face_before_or_after_it_pos ((IT), 1)
935 #define face_after_it_pos(IT) face_before_or_after_it_pos ((IT), 0)
937 #ifdef HAVE_WINDOW_SYSTEM
939 static void x_consider_frame_title (Lisp_Object);
940 static int tool_bar_lines_needed (struct frame *, int *);
941 static void update_tool_bar (struct frame *, int);
942 static void build_desired_tool_bar_string (struct frame *f);
943 static int redisplay_tool_bar (struct frame *);
944 static void display_tool_bar_line (struct it *, int);
945 static void notice_overwritten_cursor (struct window *,
946 enum glyph_row_area,
947 int, int, int, int);
948 static void append_stretch_glyph (struct it *, Lisp_Object,
949 int, int, int);
952 #endif /* HAVE_WINDOW_SYSTEM */
954 static void show_mouse_face (Mouse_HLInfo *, enum draw_glyphs_face);
955 static int coords_in_mouse_face_p (struct window *, int, int);
959 /***********************************************************************
960 Window display dimensions
961 ***********************************************************************/
963 /* Return the bottom boundary y-position for text lines in window W.
964 This is the first y position at which a line cannot start.
965 It is relative to the top of the window.
967 This is the height of W minus the height of a mode line, if any. */
970 window_text_bottom_y (struct window *w)
972 int height = WINDOW_TOTAL_HEIGHT (w);
974 if (WINDOW_WANTS_MODELINE_P (w))
975 height -= CURRENT_MODE_LINE_HEIGHT (w);
976 return height;
979 /* Return the pixel width of display area AREA of window W. AREA < 0
980 means return the total width of W, not including fringes to
981 the left and right of the window. */
984 window_box_width (struct window *w, int area)
986 int cols = XFASTINT (w->total_cols);
987 int pixels = 0;
989 if (!w->pseudo_window_p)
991 cols -= WINDOW_SCROLL_BAR_COLS (w);
993 if (area == TEXT_AREA)
995 if (INTEGERP (w->left_margin_cols))
996 cols -= XFASTINT (w->left_margin_cols);
997 if (INTEGERP (w->right_margin_cols))
998 cols -= XFASTINT (w->right_margin_cols);
999 pixels = -WINDOW_TOTAL_FRINGE_WIDTH (w);
1001 else if (area == LEFT_MARGIN_AREA)
1003 cols = (INTEGERP (w->left_margin_cols)
1004 ? XFASTINT (w->left_margin_cols) : 0);
1005 pixels = 0;
1007 else if (area == RIGHT_MARGIN_AREA)
1009 cols = (INTEGERP (w->right_margin_cols)
1010 ? XFASTINT (w->right_margin_cols) : 0);
1011 pixels = 0;
1015 return cols * WINDOW_FRAME_COLUMN_WIDTH (w) + pixels;
1019 /* Return the pixel height of the display area of window W, not
1020 including mode lines of W, if any. */
1023 window_box_height (struct window *w)
1025 struct frame *f = XFRAME (w->frame);
1026 int height = WINDOW_TOTAL_HEIGHT (w);
1028 xassert (height >= 0);
1030 /* Note: the code below that determines the mode-line/header-line
1031 height is essentially the same as that contained in the macro
1032 CURRENT_{MODE,HEADER}_LINE_HEIGHT, except that it checks whether
1033 the appropriate glyph row has its `mode_line_p' flag set,
1034 and if it doesn't, uses estimate_mode_line_height instead. */
1036 if (WINDOW_WANTS_MODELINE_P (w))
1038 struct glyph_row *ml_row
1039 = (w->current_matrix && w->current_matrix->rows
1040 ? MATRIX_MODE_LINE_ROW (w->current_matrix)
1041 : 0);
1042 if (ml_row && ml_row->mode_line_p)
1043 height -= ml_row->height;
1044 else
1045 height -= estimate_mode_line_height (f, CURRENT_MODE_LINE_FACE_ID (w));
1048 if (WINDOW_WANTS_HEADER_LINE_P (w))
1050 struct glyph_row *hl_row
1051 = (w->current_matrix && w->current_matrix->rows
1052 ? MATRIX_HEADER_LINE_ROW (w->current_matrix)
1053 : 0);
1054 if (hl_row && hl_row->mode_line_p)
1055 height -= hl_row->height;
1056 else
1057 height -= estimate_mode_line_height (f, HEADER_LINE_FACE_ID);
1060 /* With a very small font and a mode-line that's taller than
1061 default, we might end up with a negative height. */
1062 return max (0, height);
1065 /* Return the window-relative coordinate of the left edge of display
1066 area AREA of window W. AREA < 0 means return the left edge of the
1067 whole window, to the right of the left fringe of W. */
1070 window_box_left_offset (struct window *w, int area)
1072 int x;
1074 if (w->pseudo_window_p)
1075 return 0;
1077 x = WINDOW_LEFT_SCROLL_BAR_AREA_WIDTH (w);
1079 if (area == TEXT_AREA)
1080 x += (WINDOW_LEFT_FRINGE_WIDTH (w)
1081 + window_box_width (w, LEFT_MARGIN_AREA));
1082 else if (area == RIGHT_MARGIN_AREA)
1083 x += (WINDOW_LEFT_FRINGE_WIDTH (w)
1084 + window_box_width (w, LEFT_MARGIN_AREA)
1085 + window_box_width (w, TEXT_AREA)
1086 + (WINDOW_HAS_FRINGES_OUTSIDE_MARGINS (w)
1088 : WINDOW_RIGHT_FRINGE_WIDTH (w)));
1089 else if (area == LEFT_MARGIN_AREA
1090 && WINDOW_HAS_FRINGES_OUTSIDE_MARGINS (w))
1091 x += WINDOW_LEFT_FRINGE_WIDTH (w);
1093 return x;
1097 /* Return the window-relative coordinate of the right edge of display
1098 area AREA of window W. AREA < 0 means return the right edge of the
1099 whole window, to the left of the right fringe of W. */
1102 window_box_right_offset (struct window *w, int area)
1104 return window_box_left_offset (w, area) + window_box_width (w, area);
1107 /* Return the frame-relative coordinate of the left edge of display
1108 area AREA of window W. AREA < 0 means return the left edge of the
1109 whole window, to the right of the left fringe of W. */
1112 window_box_left (struct window *w, int area)
1114 struct frame *f = XFRAME (w->frame);
1115 int x;
1117 if (w->pseudo_window_p)
1118 return FRAME_INTERNAL_BORDER_WIDTH (f);
1120 x = (WINDOW_LEFT_EDGE_X (w)
1121 + window_box_left_offset (w, area));
1123 return x;
1127 /* Return the frame-relative coordinate of the right edge of display
1128 area AREA of window W. AREA < 0 means return the right edge of the
1129 whole window, to the left of the right fringe of W. */
1132 window_box_right (struct window *w, int area)
1134 return window_box_left (w, area) + window_box_width (w, area);
1137 /* Get the bounding box of the display area AREA of window W, without
1138 mode lines, in frame-relative coordinates. AREA < 0 means the
1139 whole window, not including the left and right fringes of
1140 the window. Return in *BOX_X and *BOX_Y the frame-relative pixel
1141 coordinates of the upper-left corner of the box. Return in
1142 *BOX_WIDTH, and *BOX_HEIGHT the pixel width and height of the box. */
1144 void
1145 window_box (struct window *w, int area, int *box_x, int *box_y,
1146 int *box_width, int *box_height)
1148 if (box_width)
1149 *box_width = window_box_width (w, area);
1150 if (box_height)
1151 *box_height = window_box_height (w);
1152 if (box_x)
1153 *box_x = window_box_left (w, area);
1154 if (box_y)
1156 *box_y = WINDOW_TOP_EDGE_Y (w);
1157 if (WINDOW_WANTS_HEADER_LINE_P (w))
1158 *box_y += CURRENT_HEADER_LINE_HEIGHT (w);
1163 /* Get the bounding box of the display area AREA of window W, without
1164 mode lines. AREA < 0 means the whole window, not including the
1165 left and right fringe of the window. Return in *TOP_LEFT_X
1166 and TOP_LEFT_Y the frame-relative pixel coordinates of the
1167 upper-left corner of the box. Return in *BOTTOM_RIGHT_X, and
1168 *BOTTOM_RIGHT_Y the coordinates of the bottom-right corner of the
1169 box. */
1171 static inline void
1172 window_box_edges (struct window *w, int area, int *top_left_x, int *top_left_y,
1173 int *bottom_right_x, int *bottom_right_y)
1175 window_box (w, area, top_left_x, top_left_y, bottom_right_x,
1176 bottom_right_y);
1177 *bottom_right_x += *top_left_x;
1178 *bottom_right_y += *top_left_y;
1183 /***********************************************************************
1184 Utilities
1185 ***********************************************************************/
1187 /* Return the bottom y-position of the line the iterator IT is in.
1188 This can modify IT's settings. */
1191 line_bottom_y (struct it *it)
1193 int line_height = it->max_ascent + it->max_descent;
1194 int line_top_y = it->current_y;
1196 if (line_height == 0)
1198 if (last_height)
1199 line_height = last_height;
1200 else if (IT_CHARPOS (*it) < ZV)
1202 move_it_by_lines (it, 1);
1203 line_height = (it->max_ascent || it->max_descent
1204 ? it->max_ascent + it->max_descent
1205 : last_height);
1207 else
1209 struct glyph_row *row = it->glyph_row;
1211 /* Use the default character height. */
1212 it->glyph_row = NULL;
1213 it->what = IT_CHARACTER;
1214 it->c = ' ';
1215 it->len = 1;
1216 PRODUCE_GLYPHS (it);
1217 line_height = it->ascent + it->descent;
1218 it->glyph_row = row;
1222 return line_top_y + line_height;
1225 /* Subroutine of pos_visible_p below. Extracts a display string, if
1226 any, from the display spec given as its argument. */
1227 static Lisp_Object
1228 string_from_display_spec (Lisp_Object spec)
1230 if (CONSP (spec))
1232 while (CONSP (spec))
1234 if (STRINGP (XCAR (spec)))
1235 return XCAR (spec);
1236 spec = XCDR (spec);
1239 else if (VECTORP (spec))
1241 ptrdiff_t i;
1243 for (i = 0; i < ASIZE (spec); i++)
1245 if (STRINGP (AREF (spec, i)))
1246 return AREF (spec, i);
1248 return Qnil;
1251 return spec;
1254 /* Return 1 if position CHARPOS is visible in window W.
1255 CHARPOS < 0 means return info about WINDOW_END position.
1256 If visible, set *X and *Y to pixel coordinates of top left corner.
1257 Set *RTOP and *RBOT to pixel height of an invisible area of glyph at POS.
1258 Set *ROWH and *VPOS to row's visible height and VPOS (row number). */
1261 pos_visible_p (struct window *w, ptrdiff_t charpos, int *x, int *y,
1262 int *rtop, int *rbot, int *rowh, int *vpos)
1264 struct it it;
1265 void *itdata = bidi_shelve_cache ();
1266 struct text_pos top;
1267 int visible_p = 0;
1268 struct buffer *old_buffer = NULL;
1270 if (FRAME_INITIAL_P (XFRAME (WINDOW_FRAME (w))))
1271 return visible_p;
1273 if (XBUFFER (w->buffer) != current_buffer)
1275 old_buffer = current_buffer;
1276 set_buffer_internal_1 (XBUFFER (w->buffer));
1279 SET_TEXT_POS_FROM_MARKER (top, w->start);
1280 /* Scrolling a minibuffer window via scroll bar when the echo area
1281 shows long text sometimes resets the minibuffer contents behind
1282 our backs. */
1283 if (CHARPOS (top) > ZV)
1284 SET_TEXT_POS (top, BEGV, BEGV_BYTE);
1286 /* Compute exact mode line heights. */
1287 if (WINDOW_WANTS_MODELINE_P (w))
1288 current_mode_line_height
1289 = display_mode_line (w, CURRENT_MODE_LINE_FACE_ID (w),
1290 BVAR (current_buffer, mode_line_format));
1292 if (WINDOW_WANTS_HEADER_LINE_P (w))
1293 current_header_line_height
1294 = display_mode_line (w, HEADER_LINE_FACE_ID,
1295 BVAR (current_buffer, header_line_format));
1297 start_display (&it, w, top);
1298 move_it_to (&it, charpos, -1, it.last_visible_y-1, -1,
1299 (charpos >= 0 ? MOVE_TO_POS : 0) | MOVE_TO_Y);
1301 if (charpos >= 0
1302 && (((!it.bidi_p || it.bidi_it.scan_dir == 1)
1303 && IT_CHARPOS (it) >= charpos)
1304 /* When scanning backwards under bidi iteration, move_it_to
1305 stops at or _before_ CHARPOS, because it stops at or to
1306 the _right_ of the character at CHARPOS. */
1307 || (it.bidi_p && it.bidi_it.scan_dir == -1
1308 && IT_CHARPOS (it) <= charpos)))
1310 /* We have reached CHARPOS, or passed it. How the call to
1311 move_it_to can overshoot: (i) If CHARPOS is on invisible text
1312 or covered by a display property, move_it_to stops at the end
1313 of the invisible text, to the right of CHARPOS. (ii) If
1314 CHARPOS is in a display vector, move_it_to stops on its last
1315 glyph. */
1316 int top_x = it.current_x;
1317 int top_y = it.current_y;
1318 /* Calling line_bottom_y may change it.method, it.position, etc. */
1319 enum it_method it_method = it.method;
1320 int bottom_y = (last_height = 0, line_bottom_y (&it));
1321 int window_top_y = WINDOW_HEADER_LINE_HEIGHT (w);
1323 if (top_y < window_top_y)
1324 visible_p = bottom_y > window_top_y;
1325 else if (top_y < it.last_visible_y)
1326 visible_p = 1;
1327 if (bottom_y >= it.last_visible_y
1328 && it.bidi_p && it.bidi_it.scan_dir == -1
1329 && IT_CHARPOS (it) < charpos)
1331 /* When the last line of the window is scanned backwards
1332 under bidi iteration, we could be duped into thinking
1333 that we have passed CHARPOS, when in fact move_it_to
1334 simply stopped short of CHARPOS because it reached
1335 last_visible_y. To see if that's what happened, we call
1336 move_it_to again with a slightly larger vertical limit,
1337 and see if it actually moved vertically; if it did, we
1338 didn't really reach CHARPOS, which is beyond window end. */
1339 struct it save_it = it;
1340 /* Why 10? because we don't know how many canonical lines
1341 will the height of the next line(s) be. So we guess. */
1342 int ten_more_lines =
1343 10 * FRAME_LINE_HEIGHT (XFRAME (WINDOW_FRAME (w)));
1345 move_it_to (&it, charpos, -1, bottom_y + ten_more_lines, -1,
1346 MOVE_TO_POS | MOVE_TO_Y);
1347 if (it.current_y > top_y)
1348 visible_p = 0;
1350 it = save_it;
1352 if (visible_p)
1354 if (it_method == GET_FROM_DISPLAY_VECTOR)
1356 /* We stopped on the last glyph of a display vector.
1357 Try and recompute. Hack alert! */
1358 if (charpos < 2 || top.charpos >= charpos)
1359 top_x = it.glyph_row->x;
1360 else
1362 struct it it2;
1363 start_display (&it2, w, top);
1364 move_it_to (&it2, charpos - 1, -1, -1, -1, MOVE_TO_POS);
1365 get_next_display_element (&it2);
1366 PRODUCE_GLYPHS (&it2);
1367 if (ITERATOR_AT_END_OF_LINE_P (&it2)
1368 || it2.current_x > it2.last_visible_x)
1369 top_x = it.glyph_row->x;
1370 else
1372 top_x = it2.current_x;
1373 top_y = it2.current_y;
1377 else if (IT_CHARPOS (it) != charpos)
1379 Lisp_Object cpos = make_number (charpos);
1380 Lisp_Object spec = Fget_char_property (cpos, Qdisplay, Qnil);
1381 Lisp_Object string = string_from_display_spec (spec);
1382 int newline_in_string = 0;
1384 if (STRINGP (string))
1386 const char *s = SSDATA (string);
1387 const char *e = s + SBYTES (string);
1388 while (s < e)
1390 if (*s++ == '\n')
1392 newline_in_string = 1;
1393 break;
1397 /* The tricky code below is needed because there's a
1398 discrepancy between move_it_to and how we set cursor
1399 when the display line ends in a newline from a
1400 display string. move_it_to will stop _after_ such
1401 display strings, whereas set_cursor_from_row
1402 conspires with cursor_row_p to place the cursor on
1403 the first glyph produced from the display string. */
1405 /* We have overshoot PT because it is covered by a
1406 display property whose value is a string. If the
1407 string includes embedded newlines, we are also in the
1408 wrong display line. Backtrack to the correct line,
1409 where the display string begins. */
1410 if (newline_in_string)
1412 Lisp_Object startpos, endpos;
1413 EMACS_INT start, end;
1414 struct it it3;
1415 int it3_moved;
1417 /* Find the first and the last buffer positions
1418 covered by the display string. */
1419 endpos =
1420 Fnext_single_char_property_change (cpos, Qdisplay,
1421 Qnil, Qnil);
1422 startpos =
1423 Fprevious_single_char_property_change (endpos, Qdisplay,
1424 Qnil, Qnil);
1425 start = XFASTINT (startpos);
1426 end = XFASTINT (endpos);
1427 /* Move to the last buffer position before the
1428 display property. */
1429 start_display (&it3, w, top);
1430 move_it_to (&it3, start - 1, -1, -1, -1, MOVE_TO_POS);
1431 /* Move forward one more line if the position before
1432 the display string is a newline or if it is the
1433 rightmost character on a line that is
1434 continued or word-wrapped. */
1435 if (it3.method == GET_FROM_BUFFER
1436 && it3.c == '\n')
1437 move_it_by_lines (&it3, 1);
1438 else if (move_it_in_display_line_to (&it3, -1,
1439 it3.current_x
1440 + it3.pixel_width,
1441 MOVE_TO_X)
1442 == MOVE_LINE_CONTINUED)
1444 move_it_by_lines (&it3, 1);
1445 /* When we are under word-wrap, the #$@%!
1446 move_it_by_lines moves 2 lines, so we need to
1447 fix that up. */
1448 if (it3.line_wrap == WORD_WRAP)
1449 move_it_by_lines (&it3, -1);
1452 /* Record the vertical coordinate of the display
1453 line where we wound up. */
1454 top_y = it3.current_y;
1455 if (it3.bidi_p)
1457 /* When characters are reordered for display,
1458 the character displayed to the left of the
1459 display string could be _after_ the display
1460 property in the logical order. Use the
1461 smallest vertical position of these two. */
1462 start_display (&it3, w, top);
1463 move_it_to (&it3, end + 1, -1, -1, -1, MOVE_TO_POS);
1464 if (it3.current_y < top_y)
1465 top_y = it3.current_y;
1467 /* Move from the top of the window to the beginning
1468 of the display line where the display string
1469 begins. */
1470 start_display (&it3, w, top);
1471 move_it_to (&it3, -1, 0, top_y, -1, MOVE_TO_X | MOVE_TO_Y);
1472 /* If it3_moved stays zero after the 'while' loop
1473 below, that means we already were at a newline
1474 before the loop (e.g., the display string begins
1475 with a newline), so we don't need to (and cannot)
1476 inspect the glyphs of it3.glyph_row, because
1477 PRODUCE_GLYPHS will not produce anything for a
1478 newline, and thus it3.glyph_row stays at its
1479 stale content it got at top of the window. */
1480 it3_moved = 0;
1481 /* Finally, advance the iterator until we hit the
1482 first display element whose character position is
1483 CHARPOS, or until the first newline from the
1484 display string, which signals the end of the
1485 display line. */
1486 while (get_next_display_element (&it3))
1488 PRODUCE_GLYPHS (&it3);
1489 if (IT_CHARPOS (it3) == charpos
1490 || ITERATOR_AT_END_OF_LINE_P (&it3))
1491 break;
1492 it3_moved = 1;
1493 set_iterator_to_next (&it3, 0);
1495 top_x = it3.current_x - it3.pixel_width;
1496 /* Normally, we would exit the above loop because we
1497 found the display element whose character
1498 position is CHARPOS. For the contingency that we
1499 didn't, and stopped at the first newline from the
1500 display string, move back over the glyphs
1501 produced from the string, until we find the
1502 rightmost glyph not from the string. */
1503 if (it3_moved
1504 && IT_CHARPOS (it3) != charpos && EQ (it3.object, string))
1506 struct glyph *g = it3.glyph_row->glyphs[TEXT_AREA]
1507 + it3.glyph_row->used[TEXT_AREA];
1509 while (EQ ((g - 1)->object, string))
1511 --g;
1512 top_x -= g->pixel_width;
1514 xassert (g < it3.glyph_row->glyphs[TEXT_AREA]
1515 + it3.glyph_row->used[TEXT_AREA]);
1520 *x = top_x;
1521 *y = max (top_y + max (0, it.max_ascent - it.ascent), window_top_y);
1522 *rtop = max (0, window_top_y - top_y);
1523 *rbot = max (0, bottom_y - it.last_visible_y);
1524 *rowh = max (0, (min (bottom_y, it.last_visible_y)
1525 - max (top_y, window_top_y)));
1526 *vpos = it.vpos;
1529 else
1531 /* We were asked to provide info about WINDOW_END. */
1532 struct it it2;
1533 void *it2data = NULL;
1535 SAVE_IT (it2, it, it2data);
1536 if (IT_CHARPOS (it) < ZV && FETCH_BYTE (IT_BYTEPOS (it)) != '\n')
1537 move_it_by_lines (&it, 1);
1538 if (charpos < IT_CHARPOS (it)
1539 || (it.what == IT_EOB && charpos == IT_CHARPOS (it)))
1541 visible_p = 1;
1542 RESTORE_IT (&it2, &it2, it2data);
1543 move_it_to (&it2, charpos, -1, -1, -1, MOVE_TO_POS);
1544 *x = it2.current_x;
1545 *y = it2.current_y + it2.max_ascent - it2.ascent;
1546 *rtop = max (0, -it2.current_y);
1547 *rbot = max (0, ((it2.current_y + it2.max_ascent + it2.max_descent)
1548 - it.last_visible_y));
1549 *rowh = max (0, (min (it2.current_y + it2.max_ascent + it2.max_descent,
1550 it.last_visible_y)
1551 - max (it2.current_y,
1552 WINDOW_HEADER_LINE_HEIGHT (w))));
1553 *vpos = it2.vpos;
1555 else
1556 bidi_unshelve_cache (it2data, 1);
1558 bidi_unshelve_cache (itdata, 0);
1560 if (old_buffer)
1561 set_buffer_internal_1 (old_buffer);
1563 current_header_line_height = current_mode_line_height = -1;
1565 if (visible_p && XFASTINT (w->hscroll) > 0)
1566 *x -= XFASTINT (w->hscroll) * WINDOW_FRAME_COLUMN_WIDTH (w);
1568 #if 0
1569 /* Debugging code. */
1570 if (visible_p)
1571 fprintf (stderr, "+pv pt=%d vs=%d --> x=%d y=%d rt=%d rb=%d rh=%d vp=%d\n",
1572 charpos, w->vscroll, *x, *y, *rtop, *rbot, *rowh, *vpos);
1573 else
1574 fprintf (stderr, "-pv pt=%d vs=%d\n", charpos, w->vscroll);
1575 #endif
1577 return visible_p;
1581 /* Return the next character from STR. Return in *LEN the length of
1582 the character. This is like STRING_CHAR_AND_LENGTH but never
1583 returns an invalid character. If we find one, we return a `?', but
1584 with the length of the invalid character. */
1586 static inline int
1587 string_char_and_length (const unsigned char *str, int *len)
1589 int c;
1591 c = STRING_CHAR_AND_LENGTH (str, *len);
1592 if (!CHAR_VALID_P (c))
1593 /* We may not change the length here because other places in Emacs
1594 don't use this function, i.e. they silently accept invalid
1595 characters. */
1596 c = '?';
1598 return c;
1603 /* Given a position POS containing a valid character and byte position
1604 in STRING, return the position NCHARS ahead (NCHARS >= 0). */
1606 static struct text_pos
1607 string_pos_nchars_ahead (struct text_pos pos, Lisp_Object string, ptrdiff_t nchars)
1609 xassert (STRINGP (string) && nchars >= 0);
1611 if (STRING_MULTIBYTE (string))
1613 const unsigned char *p = SDATA (string) + BYTEPOS (pos);
1614 int len;
1616 while (nchars--)
1618 string_char_and_length (p, &len);
1619 p += len;
1620 CHARPOS (pos) += 1;
1621 BYTEPOS (pos) += len;
1624 else
1625 SET_TEXT_POS (pos, CHARPOS (pos) + nchars, BYTEPOS (pos) + nchars);
1627 return pos;
1631 /* Value is the text position, i.e. character and byte position,
1632 for character position CHARPOS in STRING. */
1634 static inline struct text_pos
1635 string_pos (ptrdiff_t charpos, Lisp_Object string)
1637 struct text_pos pos;
1638 xassert (STRINGP (string));
1639 xassert (charpos >= 0);
1640 SET_TEXT_POS (pos, charpos, string_char_to_byte (string, charpos));
1641 return pos;
1645 /* Value is a text position, i.e. character and byte position, for
1646 character position CHARPOS in C string S. MULTIBYTE_P non-zero
1647 means recognize multibyte characters. */
1649 static struct text_pos
1650 c_string_pos (ptrdiff_t charpos, const char *s, int multibyte_p)
1652 struct text_pos pos;
1654 xassert (s != NULL);
1655 xassert (charpos >= 0);
1657 if (multibyte_p)
1659 int len;
1661 SET_TEXT_POS (pos, 0, 0);
1662 while (charpos--)
1664 string_char_and_length ((const unsigned char *) s, &len);
1665 s += len;
1666 CHARPOS (pos) += 1;
1667 BYTEPOS (pos) += len;
1670 else
1671 SET_TEXT_POS (pos, charpos, charpos);
1673 return pos;
1677 /* Value is the number of characters in C string S. MULTIBYTE_P
1678 non-zero means recognize multibyte characters. */
1680 static ptrdiff_t
1681 number_of_chars (const char *s, int multibyte_p)
1683 ptrdiff_t nchars;
1685 if (multibyte_p)
1687 ptrdiff_t rest = strlen (s);
1688 int len;
1689 const unsigned char *p = (const unsigned char *) s;
1691 for (nchars = 0; rest > 0; ++nchars)
1693 string_char_and_length (p, &len);
1694 rest -= len, p += len;
1697 else
1698 nchars = strlen (s);
1700 return nchars;
1704 /* Compute byte position NEWPOS->bytepos corresponding to
1705 NEWPOS->charpos. POS is a known position in string STRING.
1706 NEWPOS->charpos must be >= POS.charpos. */
1708 static void
1709 compute_string_pos (struct text_pos *newpos, struct text_pos pos, Lisp_Object string)
1711 xassert (STRINGP (string));
1712 xassert (CHARPOS (*newpos) >= CHARPOS (pos));
1714 if (STRING_MULTIBYTE (string))
1715 *newpos = string_pos_nchars_ahead (pos, string,
1716 CHARPOS (*newpos) - CHARPOS (pos));
1717 else
1718 BYTEPOS (*newpos) = CHARPOS (*newpos);
1721 /* EXPORT:
1722 Return an estimation of the pixel height of mode or header lines on
1723 frame F. FACE_ID specifies what line's height to estimate. */
1726 estimate_mode_line_height (struct frame *f, enum face_id face_id)
1728 #ifdef HAVE_WINDOW_SYSTEM
1729 if (FRAME_WINDOW_P (f))
1731 int height = FONT_HEIGHT (FRAME_FONT (f));
1733 /* This function is called so early when Emacs starts that the face
1734 cache and mode line face are not yet initialized. */
1735 if (FRAME_FACE_CACHE (f))
1737 struct face *face = FACE_FROM_ID (f, face_id);
1738 if (face)
1740 if (face->font)
1741 height = FONT_HEIGHT (face->font);
1742 if (face->box_line_width > 0)
1743 height += 2 * face->box_line_width;
1747 return height;
1749 #endif
1751 return 1;
1754 /* Given a pixel position (PIX_X, PIX_Y) on frame F, return glyph
1755 co-ordinates in (*X, *Y). Set *BOUNDS to the rectangle that the
1756 glyph at X, Y occupies, if BOUNDS != 0. If NOCLIP is non-zero, do
1757 not force the value into range. */
1759 void
1760 pixel_to_glyph_coords (FRAME_PTR f, register int pix_x, register int pix_y,
1761 int *x, int *y, NativeRectangle *bounds, int noclip)
1764 #ifdef HAVE_WINDOW_SYSTEM
1765 if (FRAME_WINDOW_P (f))
1767 /* Arrange for the division in FRAME_PIXEL_X_TO_COL etc. to round down
1768 even for negative values. */
1769 if (pix_x < 0)
1770 pix_x -= FRAME_COLUMN_WIDTH (f) - 1;
1771 if (pix_y < 0)
1772 pix_y -= FRAME_LINE_HEIGHT (f) - 1;
1774 pix_x = FRAME_PIXEL_X_TO_COL (f, pix_x);
1775 pix_y = FRAME_PIXEL_Y_TO_LINE (f, pix_y);
1777 if (bounds)
1778 STORE_NATIVE_RECT (*bounds,
1779 FRAME_COL_TO_PIXEL_X (f, pix_x),
1780 FRAME_LINE_TO_PIXEL_Y (f, pix_y),
1781 FRAME_COLUMN_WIDTH (f) - 1,
1782 FRAME_LINE_HEIGHT (f) - 1);
1784 if (!noclip)
1786 if (pix_x < 0)
1787 pix_x = 0;
1788 else if (pix_x > FRAME_TOTAL_COLS (f))
1789 pix_x = FRAME_TOTAL_COLS (f);
1791 if (pix_y < 0)
1792 pix_y = 0;
1793 else if (pix_y > FRAME_LINES (f))
1794 pix_y = FRAME_LINES (f);
1797 #endif
1799 *x = pix_x;
1800 *y = pix_y;
1804 /* Find the glyph under window-relative coordinates X/Y in window W.
1805 Consider only glyphs from buffer text, i.e. no glyphs from overlay
1806 strings. Return in *HPOS and *VPOS the row and column number of
1807 the glyph found. Return in *AREA the glyph area containing X.
1808 Value is a pointer to the glyph found or null if X/Y is not on
1809 text, or we can't tell because W's current matrix is not up to
1810 date. */
1812 static
1813 struct glyph *
1814 x_y_to_hpos_vpos (struct window *w, int x, int y, int *hpos, int *vpos,
1815 int *dx, int *dy, int *area)
1817 struct glyph *glyph, *end;
1818 struct glyph_row *row = NULL;
1819 int x0, i;
1821 /* Find row containing Y. Give up if some row is not enabled. */
1822 for (i = 0; i < w->current_matrix->nrows; ++i)
1824 row = MATRIX_ROW (w->current_matrix, i);
1825 if (!row->enabled_p)
1826 return NULL;
1827 if (y >= row->y && y < MATRIX_ROW_BOTTOM_Y (row))
1828 break;
1831 *vpos = i;
1832 *hpos = 0;
1834 /* Give up if Y is not in the window. */
1835 if (i == w->current_matrix->nrows)
1836 return NULL;
1838 /* Get the glyph area containing X. */
1839 if (w->pseudo_window_p)
1841 *area = TEXT_AREA;
1842 x0 = 0;
1844 else
1846 if (x < window_box_left_offset (w, TEXT_AREA))
1848 *area = LEFT_MARGIN_AREA;
1849 x0 = window_box_left_offset (w, LEFT_MARGIN_AREA);
1851 else if (x < window_box_right_offset (w, TEXT_AREA))
1853 *area = TEXT_AREA;
1854 x0 = window_box_left_offset (w, TEXT_AREA) + min (row->x, 0);
1856 else
1858 *area = RIGHT_MARGIN_AREA;
1859 x0 = window_box_left_offset (w, RIGHT_MARGIN_AREA);
1863 /* Find glyph containing X. */
1864 glyph = row->glyphs[*area];
1865 end = glyph + row->used[*area];
1866 x -= x0;
1867 while (glyph < end && x >= glyph->pixel_width)
1869 x -= glyph->pixel_width;
1870 ++glyph;
1873 if (glyph == end)
1874 return NULL;
1876 if (dx)
1878 *dx = x;
1879 *dy = y - (row->y + row->ascent - glyph->ascent);
1882 *hpos = glyph - row->glyphs[*area];
1883 return glyph;
1886 /* Convert frame-relative x/y to coordinates relative to window W.
1887 Takes pseudo-windows into account. */
1889 static void
1890 frame_to_window_pixel_xy (struct window *w, int *x, int *y)
1892 if (w->pseudo_window_p)
1894 /* A pseudo-window is always full-width, and starts at the
1895 left edge of the frame, plus a frame border. */
1896 struct frame *f = XFRAME (w->frame);
1897 *x -= FRAME_INTERNAL_BORDER_WIDTH (f);
1898 *y = FRAME_TO_WINDOW_PIXEL_Y (w, *y);
1900 else
1902 *x -= WINDOW_LEFT_EDGE_X (w);
1903 *y = FRAME_TO_WINDOW_PIXEL_Y (w, *y);
1907 #ifdef HAVE_WINDOW_SYSTEM
1909 /* EXPORT:
1910 Return in RECTS[] at most N clipping rectangles for glyph string S.
1911 Return the number of stored rectangles. */
1914 get_glyph_string_clip_rects (struct glyph_string *s, NativeRectangle *rects, int n)
1916 XRectangle r;
1918 if (n <= 0)
1919 return 0;
1921 if (s->row->full_width_p)
1923 /* Draw full-width. X coordinates are relative to S->w->left_col. */
1924 r.x = WINDOW_LEFT_EDGE_X (s->w);
1925 r.width = WINDOW_TOTAL_WIDTH (s->w);
1927 /* Unless displaying a mode or menu bar line, which are always
1928 fully visible, clip to the visible part of the row. */
1929 if (s->w->pseudo_window_p)
1930 r.height = s->row->visible_height;
1931 else
1932 r.height = s->height;
1934 else
1936 /* This is a text line that may be partially visible. */
1937 r.x = window_box_left (s->w, s->area);
1938 r.width = window_box_width (s->w, s->area);
1939 r.height = s->row->visible_height;
1942 if (s->clip_head)
1943 if (r.x < s->clip_head->x)
1945 if (r.width >= s->clip_head->x - r.x)
1946 r.width -= s->clip_head->x - r.x;
1947 else
1948 r.width = 0;
1949 r.x = s->clip_head->x;
1951 if (s->clip_tail)
1952 if (r.x + r.width > s->clip_tail->x + s->clip_tail->background_width)
1954 if (s->clip_tail->x + s->clip_tail->background_width >= r.x)
1955 r.width = s->clip_tail->x + s->clip_tail->background_width - r.x;
1956 else
1957 r.width = 0;
1960 /* If S draws overlapping rows, it's sufficient to use the top and
1961 bottom of the window for clipping because this glyph string
1962 intentionally draws over other lines. */
1963 if (s->for_overlaps)
1965 r.y = WINDOW_HEADER_LINE_HEIGHT (s->w);
1966 r.height = window_text_bottom_y (s->w) - r.y;
1968 /* Alas, the above simple strategy does not work for the
1969 environments with anti-aliased text: if the same text is
1970 drawn onto the same place multiple times, it gets thicker.
1971 If the overlap we are processing is for the erased cursor, we
1972 take the intersection with the rectangle of the cursor. */
1973 if (s->for_overlaps & OVERLAPS_ERASED_CURSOR)
1975 XRectangle rc, r_save = r;
1977 rc.x = WINDOW_TEXT_TO_FRAME_PIXEL_X (s->w, s->w->phys_cursor.x);
1978 rc.y = s->w->phys_cursor.y;
1979 rc.width = s->w->phys_cursor_width;
1980 rc.height = s->w->phys_cursor_height;
1982 x_intersect_rectangles (&r_save, &rc, &r);
1985 else
1987 /* Don't use S->y for clipping because it doesn't take partially
1988 visible lines into account. For example, it can be negative for
1989 partially visible lines at the top of a window. */
1990 if (!s->row->full_width_p
1991 && MATRIX_ROW_PARTIALLY_VISIBLE_AT_TOP_P (s->w, s->row))
1992 r.y = WINDOW_HEADER_LINE_HEIGHT (s->w);
1993 else
1994 r.y = max (0, s->row->y);
1997 r.y = WINDOW_TO_FRAME_PIXEL_Y (s->w, r.y);
1999 /* If drawing the cursor, don't let glyph draw outside its
2000 advertised boundaries. Cleartype does this under some circumstances. */
2001 if (s->hl == DRAW_CURSOR)
2003 struct glyph *glyph = s->first_glyph;
2004 int height, max_y;
2006 if (s->x > r.x)
2008 r.width -= s->x - r.x;
2009 r.x = s->x;
2011 r.width = min (r.width, glyph->pixel_width);
2013 /* If r.y is below window bottom, ensure that we still see a cursor. */
2014 height = min (glyph->ascent + glyph->descent,
2015 min (FRAME_LINE_HEIGHT (s->f), s->row->visible_height));
2016 max_y = window_text_bottom_y (s->w) - height;
2017 max_y = WINDOW_TO_FRAME_PIXEL_Y (s->w, max_y);
2018 if (s->ybase - glyph->ascent > max_y)
2020 r.y = max_y;
2021 r.height = height;
2023 else
2025 /* Don't draw cursor glyph taller than our actual glyph. */
2026 height = max (FRAME_LINE_HEIGHT (s->f), glyph->ascent + glyph->descent);
2027 if (height < r.height)
2029 max_y = r.y + r.height;
2030 r.y = min (max_y, max (r.y, s->ybase + glyph->descent - height));
2031 r.height = min (max_y - r.y, height);
2036 if (s->row->clip)
2038 XRectangle r_save = r;
2040 if (! x_intersect_rectangles (&r_save, s->row->clip, &r))
2041 r.width = 0;
2044 if ((s->for_overlaps & OVERLAPS_BOTH) == 0
2045 || ((s->for_overlaps & OVERLAPS_BOTH) == OVERLAPS_BOTH && n == 1))
2047 #ifdef CONVERT_FROM_XRECT
2048 CONVERT_FROM_XRECT (r, *rects);
2049 #else
2050 *rects = r;
2051 #endif
2052 return 1;
2054 else
2056 /* If we are processing overlapping and allowed to return
2057 multiple clipping rectangles, we exclude the row of the glyph
2058 string from the clipping rectangle. This is to avoid drawing
2059 the same text on the environment with anti-aliasing. */
2060 #ifdef CONVERT_FROM_XRECT
2061 XRectangle rs[2];
2062 #else
2063 XRectangle *rs = rects;
2064 #endif
2065 int i = 0, row_y = WINDOW_TO_FRAME_PIXEL_Y (s->w, s->row->y);
2067 if (s->for_overlaps & OVERLAPS_PRED)
2069 rs[i] = r;
2070 if (r.y + r.height > row_y)
2072 if (r.y < row_y)
2073 rs[i].height = row_y - r.y;
2074 else
2075 rs[i].height = 0;
2077 i++;
2079 if (s->for_overlaps & OVERLAPS_SUCC)
2081 rs[i] = r;
2082 if (r.y < row_y + s->row->visible_height)
2084 if (r.y + r.height > row_y + s->row->visible_height)
2086 rs[i].y = row_y + s->row->visible_height;
2087 rs[i].height = r.y + r.height - rs[i].y;
2089 else
2090 rs[i].height = 0;
2092 i++;
2095 n = i;
2096 #ifdef CONVERT_FROM_XRECT
2097 for (i = 0; i < n; i++)
2098 CONVERT_FROM_XRECT (rs[i], rects[i]);
2099 #endif
2100 return n;
2104 /* EXPORT:
2105 Return in *NR the clipping rectangle for glyph string S. */
2107 void
2108 get_glyph_string_clip_rect (struct glyph_string *s, NativeRectangle *nr)
2110 get_glyph_string_clip_rects (s, nr, 1);
2114 /* EXPORT:
2115 Return the position and height of the phys cursor in window W.
2116 Set w->phys_cursor_width to width of phys cursor.
2119 void
2120 get_phys_cursor_geometry (struct window *w, struct glyph_row *row,
2121 struct glyph *glyph, int *xp, int *yp, int *heightp)
2123 struct frame *f = XFRAME (WINDOW_FRAME (w));
2124 int x, y, wd, h, h0, y0;
2126 /* Compute the width of the rectangle to draw. If on a stretch
2127 glyph, and `x-stretch-block-cursor' is nil, don't draw a
2128 rectangle as wide as the glyph, but use a canonical character
2129 width instead. */
2130 wd = glyph->pixel_width - 1;
2131 #if defined (HAVE_NTGUI) || defined (HAVE_NS)
2132 wd++; /* Why? */
2133 #endif
2135 x = w->phys_cursor.x;
2136 if (x < 0)
2138 wd += x;
2139 x = 0;
2142 if (glyph->type == STRETCH_GLYPH
2143 && !x_stretch_cursor_p)
2144 wd = min (FRAME_COLUMN_WIDTH (f), wd);
2145 w->phys_cursor_width = wd;
2147 y = w->phys_cursor.y + row->ascent - glyph->ascent;
2149 /* If y is below window bottom, ensure that we still see a cursor. */
2150 h0 = min (FRAME_LINE_HEIGHT (f), row->visible_height);
2152 h = max (h0, glyph->ascent + glyph->descent);
2153 h0 = min (h0, glyph->ascent + glyph->descent);
2155 y0 = WINDOW_HEADER_LINE_HEIGHT (w);
2156 if (y < y0)
2158 h = max (h - (y0 - y) + 1, h0);
2159 y = y0 - 1;
2161 else
2163 y0 = window_text_bottom_y (w) - h0;
2164 if (y > y0)
2166 h += y - y0;
2167 y = y0;
2171 *xp = WINDOW_TEXT_TO_FRAME_PIXEL_X (w, x);
2172 *yp = WINDOW_TO_FRAME_PIXEL_Y (w, y);
2173 *heightp = h;
2177 * Remember which glyph the mouse is over.
2180 void
2181 remember_mouse_glyph (struct frame *f, int gx, int gy, NativeRectangle *rect)
2183 Lisp_Object window;
2184 struct window *w;
2185 struct glyph_row *r, *gr, *end_row;
2186 enum window_part part;
2187 enum glyph_row_area area;
2188 int x, y, width, height;
2190 /* Try to determine frame pixel position and size of the glyph under
2191 frame pixel coordinates X/Y on frame F. */
2193 if (!f->glyphs_initialized_p
2194 || (window = window_from_coordinates (f, gx, gy, &part, 0),
2195 NILP (window)))
2197 width = FRAME_SMALLEST_CHAR_WIDTH (f);
2198 height = FRAME_SMALLEST_FONT_HEIGHT (f);
2199 goto virtual_glyph;
2202 w = XWINDOW (window);
2203 width = WINDOW_FRAME_COLUMN_WIDTH (w);
2204 height = WINDOW_FRAME_LINE_HEIGHT (w);
2206 x = window_relative_x_coord (w, part, gx);
2207 y = gy - WINDOW_TOP_EDGE_Y (w);
2209 r = MATRIX_FIRST_TEXT_ROW (w->current_matrix);
2210 end_row = MATRIX_BOTTOM_TEXT_ROW (w->current_matrix, w);
2212 if (w->pseudo_window_p)
2214 area = TEXT_AREA;
2215 part = ON_MODE_LINE; /* Don't adjust margin. */
2216 goto text_glyph;
2219 switch (part)
2221 case ON_LEFT_MARGIN:
2222 area = LEFT_MARGIN_AREA;
2223 goto text_glyph;
2225 case ON_RIGHT_MARGIN:
2226 area = RIGHT_MARGIN_AREA;
2227 goto text_glyph;
2229 case ON_HEADER_LINE:
2230 case ON_MODE_LINE:
2231 gr = (part == ON_HEADER_LINE
2232 ? MATRIX_HEADER_LINE_ROW (w->current_matrix)
2233 : MATRIX_MODE_LINE_ROW (w->current_matrix));
2234 gy = gr->y;
2235 area = TEXT_AREA;
2236 goto text_glyph_row_found;
2238 case ON_TEXT:
2239 area = TEXT_AREA;
2241 text_glyph:
2242 gr = 0; gy = 0;
2243 for (; r <= end_row && r->enabled_p; ++r)
2244 if (r->y + r->height > y)
2246 gr = r; gy = r->y;
2247 break;
2250 text_glyph_row_found:
2251 if (gr && gy <= y)
2253 struct glyph *g = gr->glyphs[area];
2254 struct glyph *end = g + gr->used[area];
2256 height = gr->height;
2257 for (gx = gr->x; g < end; gx += g->pixel_width, ++g)
2258 if (gx + g->pixel_width > x)
2259 break;
2261 if (g < end)
2263 if (g->type == IMAGE_GLYPH)
2265 /* Don't remember when mouse is over image, as
2266 image may have hot-spots. */
2267 STORE_NATIVE_RECT (*rect, 0, 0, 0, 0);
2268 return;
2270 width = g->pixel_width;
2272 else
2274 /* Use nominal char spacing at end of line. */
2275 x -= gx;
2276 gx += (x / width) * width;
2279 if (part != ON_MODE_LINE && part != ON_HEADER_LINE)
2280 gx += window_box_left_offset (w, area);
2282 else
2284 /* Use nominal line height at end of window. */
2285 gx = (x / width) * width;
2286 y -= gy;
2287 gy += (y / height) * height;
2289 break;
2291 case ON_LEFT_FRINGE:
2292 gx = (WINDOW_HAS_FRINGES_OUTSIDE_MARGINS (w)
2293 ? WINDOW_LEFT_SCROLL_BAR_AREA_WIDTH (w)
2294 : window_box_right_offset (w, LEFT_MARGIN_AREA));
2295 width = WINDOW_LEFT_FRINGE_WIDTH (w);
2296 goto row_glyph;
2298 case ON_RIGHT_FRINGE:
2299 gx = (WINDOW_HAS_FRINGES_OUTSIDE_MARGINS (w)
2300 ? window_box_right_offset (w, RIGHT_MARGIN_AREA)
2301 : window_box_right_offset (w, TEXT_AREA));
2302 width = WINDOW_RIGHT_FRINGE_WIDTH (w);
2303 goto row_glyph;
2305 case ON_SCROLL_BAR:
2306 gx = (WINDOW_HAS_VERTICAL_SCROLL_BAR_ON_LEFT (w)
2308 : (window_box_right_offset (w, RIGHT_MARGIN_AREA)
2309 + (WINDOW_HAS_FRINGES_OUTSIDE_MARGINS (w)
2310 ? WINDOW_RIGHT_FRINGE_WIDTH (w)
2311 : 0)));
2312 width = WINDOW_SCROLL_BAR_AREA_WIDTH (w);
2314 row_glyph:
2315 gr = 0, gy = 0;
2316 for (; r <= end_row && r->enabled_p; ++r)
2317 if (r->y + r->height > y)
2319 gr = r; gy = r->y;
2320 break;
2323 if (gr && gy <= y)
2324 height = gr->height;
2325 else
2327 /* Use nominal line height at end of window. */
2328 y -= gy;
2329 gy += (y / height) * height;
2331 break;
2333 default:
2335 virtual_glyph:
2336 /* If there is no glyph under the mouse, then we divide the screen
2337 into a grid of the smallest glyph in the frame, and use that
2338 as our "glyph". */
2340 /* Arrange for the division in FRAME_PIXEL_X_TO_COL etc. to
2341 round down even for negative values. */
2342 if (gx < 0)
2343 gx -= width - 1;
2344 if (gy < 0)
2345 gy -= height - 1;
2347 gx = (gx / width) * width;
2348 gy = (gy / height) * height;
2350 goto store_rect;
2353 gx += WINDOW_LEFT_EDGE_X (w);
2354 gy += WINDOW_TOP_EDGE_Y (w);
2356 store_rect:
2357 STORE_NATIVE_RECT (*rect, gx, gy, width, height);
2359 /* Visible feedback for debugging. */
2360 #if 0
2361 #if HAVE_X_WINDOWS
2362 XDrawRectangle (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
2363 f->output_data.x->normal_gc,
2364 gx, gy, width, height);
2365 #endif
2366 #endif
2370 #endif /* HAVE_WINDOW_SYSTEM */
2373 /***********************************************************************
2374 Lisp form evaluation
2375 ***********************************************************************/
2377 /* Error handler for safe_eval and safe_call. */
2379 static Lisp_Object
2380 safe_eval_handler (Lisp_Object arg)
2382 add_to_log ("Error during redisplay: %S", arg, Qnil);
2383 return Qnil;
2387 /* Evaluate SEXPR and return the result, or nil if something went
2388 wrong. Prevent redisplay during the evaluation. */
2390 /* Call function ARGS[0] with arguments ARGS[1] to ARGS[NARGS - 1].
2391 Return the result, or nil if something went wrong. Prevent
2392 redisplay during the evaluation. */
2394 Lisp_Object
2395 safe_call (ptrdiff_t nargs, Lisp_Object *args)
2397 Lisp_Object val;
2399 if (inhibit_eval_during_redisplay)
2400 val = Qnil;
2401 else
2403 ptrdiff_t count = SPECPDL_INDEX ();
2404 struct gcpro gcpro1;
2406 GCPRO1 (args[0]);
2407 gcpro1.nvars = nargs;
2408 specbind (Qinhibit_redisplay, Qt);
2409 /* Use Qt to ensure debugger does not run,
2410 so there is no possibility of wanting to redisplay. */
2411 val = internal_condition_case_n (Ffuncall, nargs, args, Qt,
2412 safe_eval_handler);
2413 UNGCPRO;
2414 val = unbind_to (count, val);
2417 return val;
2421 /* Call function FN with one argument ARG.
2422 Return the result, or nil if something went wrong. */
2424 Lisp_Object
2425 safe_call1 (Lisp_Object fn, Lisp_Object arg)
2427 Lisp_Object args[2];
2428 args[0] = fn;
2429 args[1] = arg;
2430 return safe_call (2, args);
2433 static Lisp_Object Qeval;
2435 Lisp_Object
2436 safe_eval (Lisp_Object sexpr)
2438 return safe_call1 (Qeval, sexpr);
2441 /* Call function FN with one argument ARG.
2442 Return the result, or nil if something went wrong. */
2444 Lisp_Object
2445 safe_call2 (Lisp_Object fn, Lisp_Object arg1, Lisp_Object arg2)
2447 Lisp_Object args[3];
2448 args[0] = fn;
2449 args[1] = arg1;
2450 args[2] = arg2;
2451 return safe_call (3, args);
2456 /***********************************************************************
2457 Debugging
2458 ***********************************************************************/
2460 #if 0
2462 /* Define CHECK_IT to perform sanity checks on iterators.
2463 This is for debugging. It is too slow to do unconditionally. */
2465 static void
2466 check_it (struct it *it)
2468 if (it->method == GET_FROM_STRING)
2470 xassert (STRINGP (it->string));
2471 xassert (IT_STRING_CHARPOS (*it) >= 0);
2473 else
2475 xassert (IT_STRING_CHARPOS (*it) < 0);
2476 if (it->method == GET_FROM_BUFFER)
2478 /* Check that character and byte positions agree. */
2479 xassert (IT_CHARPOS (*it) == BYTE_TO_CHAR (IT_BYTEPOS (*it)));
2483 if (it->dpvec)
2484 xassert (it->current.dpvec_index >= 0);
2485 else
2486 xassert (it->current.dpvec_index < 0);
2489 #define CHECK_IT(IT) check_it ((IT))
2491 #else /* not 0 */
2493 #define CHECK_IT(IT) (void) 0
2495 #endif /* not 0 */
2498 #if GLYPH_DEBUG && XASSERTS
2500 /* Check that the window end of window W is what we expect it
2501 to be---the last row in the current matrix displaying text. */
2503 static void
2504 check_window_end (struct window *w)
2506 if (!MINI_WINDOW_P (w)
2507 && !NILP (w->window_end_valid))
2509 struct glyph_row *row;
2510 xassert ((row = MATRIX_ROW (w->current_matrix,
2511 XFASTINT (w->window_end_vpos)),
2512 !row->enabled_p
2513 || MATRIX_ROW_DISPLAYS_TEXT_P (row)
2514 || MATRIX_ROW_VPOS (row, w->current_matrix) == 0));
2518 #define CHECK_WINDOW_END(W) check_window_end ((W))
2520 #else
2522 #define CHECK_WINDOW_END(W) (void) 0
2524 #endif
2528 /***********************************************************************
2529 Iterator initialization
2530 ***********************************************************************/
2532 /* Initialize IT for displaying current_buffer in window W, starting
2533 at character position CHARPOS. CHARPOS < 0 means that no buffer
2534 position is specified which is useful when the iterator is assigned
2535 a position later. BYTEPOS is the byte position corresponding to
2536 CHARPOS. BYTEPOS < 0 means compute it from CHARPOS.
2538 If ROW is not null, calls to produce_glyphs with IT as parameter
2539 will produce glyphs in that row.
2541 BASE_FACE_ID is the id of a base face to use. It must be one of
2542 DEFAULT_FACE_ID for normal text, MODE_LINE_FACE_ID,
2543 MODE_LINE_INACTIVE_FACE_ID, or HEADER_LINE_FACE_ID for displaying
2544 mode lines, or TOOL_BAR_FACE_ID for displaying the tool-bar.
2546 If ROW is null and BASE_FACE_ID is equal to MODE_LINE_FACE_ID,
2547 MODE_LINE_INACTIVE_FACE_ID, or HEADER_LINE_FACE_ID, the iterator
2548 will be initialized to use the corresponding mode line glyph row of
2549 the desired matrix of W. */
2551 void
2552 init_iterator (struct it *it, struct window *w,
2553 ptrdiff_t charpos, ptrdiff_t bytepos,
2554 struct glyph_row *row, enum face_id base_face_id)
2556 int highlight_region_p;
2557 enum face_id remapped_base_face_id = base_face_id;
2559 /* Some precondition checks. */
2560 xassert (w != NULL && it != NULL);
2561 xassert (charpos < 0 || (charpos >= BUF_BEG (current_buffer)
2562 && charpos <= ZV));
2564 /* If face attributes have been changed since the last redisplay,
2565 free realized faces now because they depend on face definitions
2566 that might have changed. Don't free faces while there might be
2567 desired matrices pending which reference these faces. */
2568 if (face_change_count && !inhibit_free_realized_faces)
2570 face_change_count = 0;
2571 free_all_realized_faces (Qnil);
2574 /* Perhaps remap BASE_FACE_ID to a user-specified alternative. */
2575 if (! NILP (Vface_remapping_alist))
2576 remapped_base_face_id = lookup_basic_face (XFRAME (w->frame), base_face_id);
2578 /* Use one of the mode line rows of W's desired matrix if
2579 appropriate. */
2580 if (row == NULL)
2582 if (base_face_id == MODE_LINE_FACE_ID
2583 || base_face_id == MODE_LINE_INACTIVE_FACE_ID)
2584 row = MATRIX_MODE_LINE_ROW (w->desired_matrix);
2585 else if (base_face_id == HEADER_LINE_FACE_ID)
2586 row = MATRIX_HEADER_LINE_ROW (w->desired_matrix);
2589 /* Clear IT. */
2590 memset (it, 0, sizeof *it);
2591 it->current.overlay_string_index = -1;
2592 it->current.dpvec_index = -1;
2593 it->base_face_id = remapped_base_face_id;
2594 it->string = Qnil;
2595 IT_STRING_CHARPOS (*it) = IT_STRING_BYTEPOS (*it) = -1;
2596 it->paragraph_embedding = L2R;
2597 it->bidi_it.string.lstring = Qnil;
2598 it->bidi_it.string.s = NULL;
2599 it->bidi_it.string.bufpos = 0;
2601 /* The window in which we iterate over current_buffer: */
2602 XSETWINDOW (it->window, w);
2603 it->w = w;
2604 it->f = XFRAME (w->frame);
2606 it->cmp_it.id = -1;
2608 /* Extra space between lines (on window systems only). */
2609 if (base_face_id == DEFAULT_FACE_ID
2610 && FRAME_WINDOW_P (it->f))
2612 if (NATNUMP (BVAR (current_buffer, extra_line_spacing)))
2613 it->extra_line_spacing = XFASTINT (BVAR (current_buffer, extra_line_spacing));
2614 else if (FLOATP (BVAR (current_buffer, extra_line_spacing)))
2615 it->extra_line_spacing = (XFLOAT_DATA (BVAR (current_buffer, extra_line_spacing))
2616 * FRAME_LINE_HEIGHT (it->f));
2617 else if (it->f->extra_line_spacing > 0)
2618 it->extra_line_spacing = it->f->extra_line_spacing;
2619 it->max_extra_line_spacing = 0;
2622 /* If realized faces have been removed, e.g. because of face
2623 attribute changes of named faces, recompute them. When running
2624 in batch mode, the face cache of the initial frame is null. If
2625 we happen to get called, make a dummy face cache. */
2626 if (FRAME_FACE_CACHE (it->f) == NULL)
2627 init_frame_faces (it->f);
2628 if (FRAME_FACE_CACHE (it->f)->used == 0)
2629 recompute_basic_faces (it->f);
2631 /* Current value of the `slice', `space-width', and 'height' properties. */
2632 it->slice.x = it->slice.y = it->slice.width = it->slice.height = Qnil;
2633 it->space_width = Qnil;
2634 it->font_height = Qnil;
2635 it->override_ascent = -1;
2637 /* Are control characters displayed as `^C'? */
2638 it->ctl_arrow_p = !NILP (BVAR (current_buffer, ctl_arrow));
2640 /* -1 means everything between a CR and the following line end
2641 is invisible. >0 means lines indented more than this value are
2642 invisible. */
2643 it->selective = (INTEGERP (BVAR (current_buffer, selective_display))
2644 ? clip_to_bounds (-1, XINT (BVAR (current_buffer,
2645 selective_display)),
2646 PTRDIFF_MAX)
2647 : (!NILP (BVAR (current_buffer, selective_display))
2648 ? -1 : 0));
2649 it->selective_display_ellipsis_p
2650 = !NILP (BVAR (current_buffer, selective_display_ellipses));
2652 /* Display table to use. */
2653 it->dp = window_display_table (w);
2655 /* Are multibyte characters enabled in current_buffer? */
2656 it->multibyte_p = !NILP (BVAR (current_buffer, enable_multibyte_characters));
2658 /* Non-zero if we should highlight the region. */
2659 highlight_region_p
2660 = (!NILP (Vtransient_mark_mode)
2661 && !NILP (BVAR (current_buffer, mark_active))
2662 && XMARKER (BVAR (current_buffer, mark))->buffer != 0);
2664 /* Set IT->region_beg_charpos and IT->region_end_charpos to the
2665 start and end of a visible region in window IT->w. Set both to
2666 -1 to indicate no region. */
2667 if (highlight_region_p
2668 /* Maybe highlight only in selected window. */
2669 && (/* Either show region everywhere. */
2670 highlight_nonselected_windows
2671 /* Or show region in the selected window. */
2672 || w == XWINDOW (selected_window)
2673 /* Or show the region if we are in the mini-buffer and W is
2674 the window the mini-buffer refers to. */
2675 || (MINI_WINDOW_P (XWINDOW (selected_window))
2676 && WINDOWP (minibuf_selected_window)
2677 && w == XWINDOW (minibuf_selected_window))))
2679 ptrdiff_t markpos = marker_position (BVAR (current_buffer, mark));
2680 it->region_beg_charpos = min (PT, markpos);
2681 it->region_end_charpos = max (PT, markpos);
2683 else
2684 it->region_beg_charpos = it->region_end_charpos = -1;
2686 /* Get the position at which the redisplay_end_trigger hook should
2687 be run, if it is to be run at all. */
2688 if (MARKERP (w->redisplay_end_trigger)
2689 && XMARKER (w->redisplay_end_trigger)->buffer != 0)
2690 it->redisplay_end_trigger_charpos
2691 = marker_position (w->redisplay_end_trigger);
2692 else if (INTEGERP (w->redisplay_end_trigger))
2693 it->redisplay_end_trigger_charpos =
2694 clip_to_bounds (PTRDIFF_MIN, XINT (w->redisplay_end_trigger), PTRDIFF_MAX);
2696 it->tab_width = SANE_TAB_WIDTH (current_buffer);
2698 /* Are lines in the display truncated? */
2699 if (base_face_id != DEFAULT_FACE_ID
2700 || XINT (it->w->hscroll)
2701 || (! WINDOW_FULL_WIDTH_P (it->w)
2702 && ((!NILP (Vtruncate_partial_width_windows)
2703 && !INTEGERP (Vtruncate_partial_width_windows))
2704 || (INTEGERP (Vtruncate_partial_width_windows)
2705 && (WINDOW_TOTAL_COLS (it->w)
2706 < XINT (Vtruncate_partial_width_windows))))))
2707 it->line_wrap = TRUNCATE;
2708 else if (NILP (BVAR (current_buffer, truncate_lines)))
2709 it->line_wrap = NILP (BVAR (current_buffer, word_wrap))
2710 ? WINDOW_WRAP : WORD_WRAP;
2711 else
2712 it->line_wrap = TRUNCATE;
2714 /* Get dimensions of truncation and continuation glyphs. These are
2715 displayed as fringe bitmaps under X, so we don't need them for such
2716 frames. */
2717 if (!FRAME_WINDOW_P (it->f))
2719 if (it->line_wrap == TRUNCATE)
2721 /* We will need the truncation glyph. */
2722 xassert (it->glyph_row == NULL);
2723 produce_special_glyphs (it, IT_TRUNCATION);
2724 it->truncation_pixel_width = it->pixel_width;
2726 else
2728 /* We will need the continuation glyph. */
2729 xassert (it->glyph_row == NULL);
2730 produce_special_glyphs (it, IT_CONTINUATION);
2731 it->continuation_pixel_width = it->pixel_width;
2734 /* Reset these values to zero because the produce_special_glyphs
2735 above has changed them. */
2736 it->pixel_width = it->ascent = it->descent = 0;
2737 it->phys_ascent = it->phys_descent = 0;
2740 /* Set this after getting the dimensions of truncation and
2741 continuation glyphs, so that we don't produce glyphs when calling
2742 produce_special_glyphs, above. */
2743 it->glyph_row = row;
2744 it->area = TEXT_AREA;
2746 /* Forget any previous info about this row being reversed. */
2747 if (it->glyph_row)
2748 it->glyph_row->reversed_p = 0;
2750 /* Get the dimensions of the display area. The display area
2751 consists of the visible window area plus a horizontally scrolled
2752 part to the left of the window. All x-values are relative to the
2753 start of this total display area. */
2754 if (base_face_id != DEFAULT_FACE_ID)
2756 /* Mode lines, menu bar in terminal frames. */
2757 it->first_visible_x = 0;
2758 it->last_visible_x = WINDOW_TOTAL_WIDTH (w);
2760 else
2762 it->first_visible_x
2763 = XFASTINT (it->w->hscroll) * FRAME_COLUMN_WIDTH (it->f);
2764 it->last_visible_x = (it->first_visible_x
2765 + window_box_width (w, TEXT_AREA));
2767 /* If we truncate lines, leave room for the truncator glyph(s) at
2768 the right margin. Otherwise, leave room for the continuation
2769 glyph(s). Truncation and continuation glyphs are not inserted
2770 for window-based redisplay. */
2771 if (!FRAME_WINDOW_P (it->f))
2773 if (it->line_wrap == TRUNCATE)
2774 it->last_visible_x -= it->truncation_pixel_width;
2775 else
2776 it->last_visible_x -= it->continuation_pixel_width;
2779 it->header_line_p = WINDOW_WANTS_HEADER_LINE_P (w);
2780 it->current_y = WINDOW_HEADER_LINE_HEIGHT (w) + w->vscroll;
2783 /* Leave room for a border glyph. */
2784 if (!FRAME_WINDOW_P (it->f)
2785 && !WINDOW_RIGHTMOST_P (it->w))
2786 it->last_visible_x -= 1;
2788 it->last_visible_y = window_text_bottom_y (w);
2790 /* For mode lines and alike, arrange for the first glyph having a
2791 left box line if the face specifies a box. */
2792 if (base_face_id != DEFAULT_FACE_ID)
2794 struct face *face;
2796 it->face_id = remapped_base_face_id;
2798 /* If we have a boxed mode line, make the first character appear
2799 with a left box line. */
2800 face = FACE_FROM_ID (it->f, remapped_base_face_id);
2801 if (face->box != FACE_NO_BOX)
2802 it->start_of_box_run_p = 1;
2805 /* If a buffer position was specified, set the iterator there,
2806 getting overlays and face properties from that position. */
2807 if (charpos >= BUF_BEG (current_buffer))
2809 it->end_charpos = ZV;
2810 IT_CHARPOS (*it) = charpos;
2812 /* We will rely on `reseat' to set this up properly, via
2813 handle_face_prop. */
2814 it->face_id = it->base_face_id;
2816 /* Compute byte position if not specified. */
2817 if (bytepos < charpos)
2818 IT_BYTEPOS (*it) = CHAR_TO_BYTE (charpos);
2819 else
2820 IT_BYTEPOS (*it) = bytepos;
2822 it->start = it->current;
2823 /* Do we need to reorder bidirectional text? Not if this is a
2824 unibyte buffer: by definition, none of the single-byte
2825 characters are strong R2L, so no reordering is needed. And
2826 bidi.c doesn't support unibyte buffers anyway. Also, don't
2827 reorder while we are loading loadup.el, since the tables of
2828 character properties needed for reordering are not yet
2829 available. */
2830 it->bidi_p =
2831 NILP (Vpurify_flag)
2832 && !NILP (BVAR (current_buffer, bidi_display_reordering))
2833 && it->multibyte_p;
2835 /* If we are to reorder bidirectional text, init the bidi
2836 iterator. */
2837 if (it->bidi_p)
2839 /* Note the paragraph direction that this buffer wants to
2840 use. */
2841 if (EQ (BVAR (current_buffer, bidi_paragraph_direction),
2842 Qleft_to_right))
2843 it->paragraph_embedding = L2R;
2844 else if (EQ (BVAR (current_buffer, bidi_paragraph_direction),
2845 Qright_to_left))
2846 it->paragraph_embedding = R2L;
2847 else
2848 it->paragraph_embedding = NEUTRAL_DIR;
2849 bidi_unshelve_cache (NULL, 0);
2850 bidi_init_it (charpos, IT_BYTEPOS (*it), FRAME_WINDOW_P (it->f),
2851 &it->bidi_it);
2854 /* Compute faces etc. */
2855 reseat (it, it->current.pos, 1);
2858 CHECK_IT (it);
2862 /* Initialize IT for the display of window W with window start POS. */
2864 void
2865 start_display (struct it *it, struct window *w, struct text_pos pos)
2867 struct glyph_row *row;
2868 int first_vpos = WINDOW_WANTS_HEADER_LINE_P (w) ? 1 : 0;
2870 row = w->desired_matrix->rows + first_vpos;
2871 init_iterator (it, w, CHARPOS (pos), BYTEPOS (pos), row, DEFAULT_FACE_ID);
2872 it->first_vpos = first_vpos;
2874 /* Don't reseat to previous visible line start if current start
2875 position is in a string or image. */
2876 if (it->method == GET_FROM_BUFFER && it->line_wrap != TRUNCATE)
2878 int start_at_line_beg_p;
2879 int first_y = it->current_y;
2881 /* If window start is not at a line start, skip forward to POS to
2882 get the correct continuation lines width. */
2883 start_at_line_beg_p = (CHARPOS (pos) == BEGV
2884 || FETCH_BYTE (BYTEPOS (pos) - 1) == '\n');
2885 if (!start_at_line_beg_p)
2887 int new_x;
2889 reseat_at_previous_visible_line_start (it);
2890 move_it_to (it, CHARPOS (pos), -1, -1, -1, MOVE_TO_POS);
2892 new_x = it->current_x + it->pixel_width;
2894 /* If lines are continued, this line may end in the middle
2895 of a multi-glyph character (e.g. a control character
2896 displayed as \003, or in the middle of an overlay
2897 string). In this case move_it_to above will not have
2898 taken us to the start of the continuation line but to the
2899 end of the continued line. */
2900 if (it->current_x > 0
2901 && it->line_wrap != TRUNCATE /* Lines are continued. */
2902 && (/* And glyph doesn't fit on the line. */
2903 new_x > it->last_visible_x
2904 /* Or it fits exactly and we're on a window
2905 system frame. */
2906 || (new_x == it->last_visible_x
2907 && FRAME_WINDOW_P (it->f))))
2909 if ((it->current.dpvec_index >= 0
2910 || it->current.overlay_string_index >= 0)
2911 /* If we are on a newline from a display vector or
2912 overlay string, then we are already at the end of
2913 a screen line; no need to go to the next line in
2914 that case, as this line is not really continued.
2915 (If we do go to the next line, C-e will not DTRT.) */
2916 && it->c != '\n')
2918 set_iterator_to_next (it, 1);
2919 move_it_in_display_line_to (it, -1, -1, 0);
2922 it->continuation_lines_width += it->current_x;
2924 /* If the character at POS is displayed via a display
2925 vector, move_it_to above stops at the final glyph of
2926 IT->dpvec. To make the caller redisplay that character
2927 again (a.k.a. start at POS), we need to reset the
2928 dpvec_index to the beginning of IT->dpvec. */
2929 else if (it->current.dpvec_index >= 0)
2930 it->current.dpvec_index = 0;
2932 /* We're starting a new display line, not affected by the
2933 height of the continued line, so clear the appropriate
2934 fields in the iterator structure. */
2935 it->max_ascent = it->max_descent = 0;
2936 it->max_phys_ascent = it->max_phys_descent = 0;
2938 it->current_y = first_y;
2939 it->vpos = 0;
2940 it->current_x = it->hpos = 0;
2946 /* Return 1 if POS is a position in ellipses displayed for invisible
2947 text. W is the window we display, for text property lookup. */
2949 static int
2950 in_ellipses_for_invisible_text_p (struct display_pos *pos, struct window *w)
2952 Lisp_Object prop, window;
2953 int ellipses_p = 0;
2954 ptrdiff_t charpos = CHARPOS (pos->pos);
2956 /* If POS specifies a position in a display vector, this might
2957 be for an ellipsis displayed for invisible text. We won't
2958 get the iterator set up for delivering that ellipsis unless
2959 we make sure that it gets aware of the invisible text. */
2960 if (pos->dpvec_index >= 0
2961 && pos->overlay_string_index < 0
2962 && CHARPOS (pos->string_pos) < 0
2963 && charpos > BEGV
2964 && (XSETWINDOW (window, w),
2965 prop = Fget_char_property (make_number (charpos),
2966 Qinvisible, window),
2967 !TEXT_PROP_MEANS_INVISIBLE (prop)))
2969 prop = Fget_char_property (make_number (charpos - 1), Qinvisible,
2970 window);
2971 ellipses_p = 2 == TEXT_PROP_MEANS_INVISIBLE (prop);
2974 return ellipses_p;
2978 /* Initialize IT for stepping through current_buffer in window W,
2979 starting at position POS that includes overlay string and display
2980 vector/ control character translation position information. Value
2981 is zero if there are overlay strings with newlines at POS. */
2983 static int
2984 init_from_display_pos (struct it *it, struct window *w, struct display_pos *pos)
2986 ptrdiff_t charpos = CHARPOS (pos->pos), bytepos = BYTEPOS (pos->pos);
2987 int i, overlay_strings_with_newlines = 0;
2989 /* If POS specifies a position in a display vector, this might
2990 be for an ellipsis displayed for invisible text. We won't
2991 get the iterator set up for delivering that ellipsis unless
2992 we make sure that it gets aware of the invisible text. */
2993 if (in_ellipses_for_invisible_text_p (pos, w))
2995 --charpos;
2996 bytepos = 0;
2999 /* Keep in mind: the call to reseat in init_iterator skips invisible
3000 text, so we might end up at a position different from POS. This
3001 is only a problem when POS is a row start after a newline and an
3002 overlay starts there with an after-string, and the overlay has an
3003 invisible property. Since we don't skip invisible text in
3004 display_line and elsewhere immediately after consuming the
3005 newline before the row start, such a POS will not be in a string,
3006 but the call to init_iterator below will move us to the
3007 after-string. */
3008 init_iterator (it, w, charpos, bytepos, NULL, DEFAULT_FACE_ID);
3010 /* This only scans the current chunk -- it should scan all chunks.
3011 However, OVERLAY_STRING_CHUNK_SIZE has been increased from 3 in 21.1
3012 to 16 in 22.1 to make this a lesser problem. */
3013 for (i = 0; i < it->n_overlay_strings && i < OVERLAY_STRING_CHUNK_SIZE; ++i)
3015 const char *s = SSDATA (it->overlay_strings[i]);
3016 const char *e = s + SBYTES (it->overlay_strings[i]);
3018 while (s < e && *s != '\n')
3019 ++s;
3021 if (s < e)
3023 overlay_strings_with_newlines = 1;
3024 break;
3028 /* If position is within an overlay string, set up IT to the right
3029 overlay string. */
3030 if (pos->overlay_string_index >= 0)
3032 int relative_index;
3034 /* If the first overlay string happens to have a `display'
3035 property for an image, the iterator will be set up for that
3036 image, and we have to undo that setup first before we can
3037 correct the overlay string index. */
3038 if (it->method == GET_FROM_IMAGE)
3039 pop_it (it);
3041 /* We already have the first chunk of overlay strings in
3042 IT->overlay_strings. Load more until the one for
3043 pos->overlay_string_index is in IT->overlay_strings. */
3044 if (pos->overlay_string_index >= OVERLAY_STRING_CHUNK_SIZE)
3046 ptrdiff_t n = pos->overlay_string_index / OVERLAY_STRING_CHUNK_SIZE;
3047 it->current.overlay_string_index = 0;
3048 while (n--)
3050 load_overlay_strings (it, 0);
3051 it->current.overlay_string_index += OVERLAY_STRING_CHUNK_SIZE;
3055 it->current.overlay_string_index = pos->overlay_string_index;
3056 relative_index = (it->current.overlay_string_index
3057 % OVERLAY_STRING_CHUNK_SIZE);
3058 it->string = it->overlay_strings[relative_index];
3059 xassert (STRINGP (it->string));
3060 it->current.string_pos = pos->string_pos;
3061 it->method = GET_FROM_STRING;
3064 if (CHARPOS (pos->string_pos) >= 0)
3066 /* Recorded position is not in an overlay string, but in another
3067 string. This can only be a string from a `display' property.
3068 IT should already be filled with that string. */
3069 it->current.string_pos = pos->string_pos;
3070 xassert (STRINGP (it->string));
3073 /* Restore position in display vector translations, control
3074 character translations or ellipses. */
3075 if (pos->dpvec_index >= 0)
3077 if (it->dpvec == NULL)
3078 get_next_display_element (it);
3079 xassert (it->dpvec && it->current.dpvec_index == 0);
3080 it->current.dpvec_index = pos->dpvec_index;
3083 CHECK_IT (it);
3084 return !overlay_strings_with_newlines;
3088 /* Initialize IT for stepping through current_buffer in window W
3089 starting at ROW->start. */
3091 static void
3092 init_to_row_start (struct it *it, struct window *w, struct glyph_row *row)
3094 init_from_display_pos (it, w, &row->start);
3095 it->start = row->start;
3096 it->continuation_lines_width = row->continuation_lines_width;
3097 CHECK_IT (it);
3101 /* Initialize IT for stepping through current_buffer in window W
3102 starting in the line following ROW, i.e. starting at ROW->end.
3103 Value is zero if there are overlay strings with newlines at ROW's
3104 end position. */
3106 static int
3107 init_to_row_end (struct it *it, struct window *w, struct glyph_row *row)
3109 int success = 0;
3111 if (init_from_display_pos (it, w, &row->end))
3113 if (row->continued_p)
3114 it->continuation_lines_width
3115 = row->continuation_lines_width + row->pixel_width;
3116 CHECK_IT (it);
3117 success = 1;
3120 return success;
3126 /***********************************************************************
3127 Text properties
3128 ***********************************************************************/
3130 /* Called when IT reaches IT->stop_charpos. Handle text property and
3131 overlay changes. Set IT->stop_charpos to the next position where
3132 to stop. */
3134 static void
3135 handle_stop (struct it *it)
3137 enum prop_handled handled;
3138 int handle_overlay_change_p;
3139 struct props *p;
3141 it->dpvec = NULL;
3142 it->current.dpvec_index = -1;
3143 handle_overlay_change_p = !it->ignore_overlay_strings_at_pos_p;
3144 it->ignore_overlay_strings_at_pos_p = 0;
3145 it->ellipsis_p = 0;
3147 /* Use face of preceding text for ellipsis (if invisible) */
3148 if (it->selective_display_ellipsis_p)
3149 it->saved_face_id = it->face_id;
3153 handled = HANDLED_NORMALLY;
3155 /* Call text property handlers. */
3156 for (p = it_props; p->handler; ++p)
3158 handled = p->handler (it);
3160 if (handled == HANDLED_RECOMPUTE_PROPS)
3161 break;
3162 else if (handled == HANDLED_RETURN)
3164 /* We still want to show before and after strings from
3165 overlays even if the actual buffer text is replaced. */
3166 if (!handle_overlay_change_p
3167 || it->sp > 1
3168 /* Don't call get_overlay_strings_1 if we already
3169 have overlay strings loaded, because doing so
3170 will load them again and push the iterator state
3171 onto the stack one more time, which is not
3172 expected by the rest of the code that processes
3173 overlay strings. */
3174 || (it->current.overlay_string_index < 0
3175 ? !get_overlay_strings_1 (it, 0, 0)
3176 : 0))
3178 if (it->ellipsis_p)
3179 setup_for_ellipsis (it, 0);
3180 /* When handling a display spec, we might load an
3181 empty string. In that case, discard it here. We
3182 used to discard it in handle_single_display_spec,
3183 but that causes get_overlay_strings_1, above, to
3184 ignore overlay strings that we must check. */
3185 if (STRINGP (it->string) && !SCHARS (it->string))
3186 pop_it (it);
3187 return;
3189 else if (STRINGP (it->string) && !SCHARS (it->string))
3190 pop_it (it);
3191 else
3193 it->ignore_overlay_strings_at_pos_p = 1;
3194 it->string_from_display_prop_p = 0;
3195 it->from_disp_prop_p = 0;
3196 handle_overlay_change_p = 0;
3198 handled = HANDLED_RECOMPUTE_PROPS;
3199 break;
3201 else if (handled == HANDLED_OVERLAY_STRING_CONSUMED)
3202 handle_overlay_change_p = 0;
3205 if (handled != HANDLED_RECOMPUTE_PROPS)
3207 /* Don't check for overlay strings below when set to deliver
3208 characters from a display vector. */
3209 if (it->method == GET_FROM_DISPLAY_VECTOR)
3210 handle_overlay_change_p = 0;
3212 /* Handle overlay changes.
3213 This sets HANDLED to HANDLED_RECOMPUTE_PROPS
3214 if it finds overlays. */
3215 if (handle_overlay_change_p)
3216 handled = handle_overlay_change (it);
3219 if (it->ellipsis_p)
3221 setup_for_ellipsis (it, 0);
3222 break;
3225 while (handled == HANDLED_RECOMPUTE_PROPS);
3227 /* Determine where to stop next. */
3228 if (handled == HANDLED_NORMALLY)
3229 compute_stop_pos (it);
3233 /* Compute IT->stop_charpos from text property and overlay change
3234 information for IT's current position. */
3236 static void
3237 compute_stop_pos (struct it *it)
3239 register INTERVAL iv, next_iv;
3240 Lisp_Object object, limit, position;
3241 ptrdiff_t charpos, bytepos;
3243 if (STRINGP (it->string))
3245 /* Strings are usually short, so don't limit the search for
3246 properties. */
3247 it->stop_charpos = it->end_charpos;
3248 object = it->string;
3249 limit = Qnil;
3250 charpos = IT_STRING_CHARPOS (*it);
3251 bytepos = IT_STRING_BYTEPOS (*it);
3253 else
3255 ptrdiff_t pos;
3257 /* If end_charpos is out of range for some reason, such as a
3258 misbehaving display function, rationalize it (Bug#5984). */
3259 if (it->end_charpos > ZV)
3260 it->end_charpos = ZV;
3261 it->stop_charpos = it->end_charpos;
3263 /* If next overlay change is in front of the current stop pos
3264 (which is IT->end_charpos), stop there. Note: value of
3265 next_overlay_change is point-max if no overlay change
3266 follows. */
3267 charpos = IT_CHARPOS (*it);
3268 bytepos = IT_BYTEPOS (*it);
3269 pos = next_overlay_change (charpos);
3270 if (pos < it->stop_charpos)
3271 it->stop_charpos = pos;
3273 /* If showing the region, we have to stop at the region
3274 start or end because the face might change there. */
3275 if (it->region_beg_charpos > 0)
3277 if (IT_CHARPOS (*it) < it->region_beg_charpos)
3278 it->stop_charpos = min (it->stop_charpos, it->region_beg_charpos);
3279 else if (IT_CHARPOS (*it) < it->region_end_charpos)
3280 it->stop_charpos = min (it->stop_charpos, it->region_end_charpos);
3283 /* Set up variables for computing the stop position from text
3284 property changes. */
3285 XSETBUFFER (object, current_buffer);
3286 limit = make_number (IT_CHARPOS (*it) + TEXT_PROP_DISTANCE_LIMIT);
3289 /* Get the interval containing IT's position. Value is a null
3290 interval if there isn't such an interval. */
3291 position = make_number (charpos);
3292 iv = validate_interval_range (object, &position, &position, 0);
3293 if (!NULL_INTERVAL_P (iv))
3295 Lisp_Object values_here[LAST_PROP_IDX];
3296 struct props *p;
3298 /* Get properties here. */
3299 for (p = it_props; p->handler; ++p)
3300 values_here[p->idx] = textget (iv->plist, *p->name);
3302 /* Look for an interval following iv that has different
3303 properties. */
3304 for (next_iv = next_interval (iv);
3305 (!NULL_INTERVAL_P (next_iv)
3306 && (NILP (limit)
3307 || XFASTINT (limit) > next_iv->position));
3308 next_iv = next_interval (next_iv))
3310 for (p = it_props; p->handler; ++p)
3312 Lisp_Object new_value;
3314 new_value = textget (next_iv->plist, *p->name);
3315 if (!EQ (values_here[p->idx], new_value))
3316 break;
3319 if (p->handler)
3320 break;
3323 if (!NULL_INTERVAL_P (next_iv))
3325 if (INTEGERP (limit)
3326 && next_iv->position >= XFASTINT (limit))
3327 /* No text property change up to limit. */
3328 it->stop_charpos = min (XFASTINT (limit), it->stop_charpos);
3329 else
3330 /* Text properties change in next_iv. */
3331 it->stop_charpos = min (it->stop_charpos, next_iv->position);
3335 if (it->cmp_it.id < 0)
3337 ptrdiff_t stoppos = it->end_charpos;
3339 if (it->bidi_p && it->bidi_it.scan_dir < 0)
3340 stoppos = -1;
3341 composition_compute_stop_pos (&it->cmp_it, charpos, bytepos,
3342 stoppos, it->string);
3345 xassert (STRINGP (it->string)
3346 || (it->stop_charpos >= BEGV
3347 && it->stop_charpos >= IT_CHARPOS (*it)));
3351 /* Return the position of the next overlay change after POS in
3352 current_buffer. Value is point-max if no overlay change
3353 follows. This is like `next-overlay-change' but doesn't use
3354 xmalloc. */
3356 static ptrdiff_t
3357 next_overlay_change (ptrdiff_t pos)
3359 ptrdiff_t i, noverlays;
3360 ptrdiff_t endpos;
3361 Lisp_Object *overlays;
3363 /* Get all overlays at the given position. */
3364 GET_OVERLAYS_AT (pos, overlays, noverlays, &endpos, 1);
3366 /* If any of these overlays ends before endpos,
3367 use its ending point instead. */
3368 for (i = 0; i < noverlays; ++i)
3370 Lisp_Object oend;
3371 ptrdiff_t oendpos;
3373 oend = OVERLAY_END (overlays[i]);
3374 oendpos = OVERLAY_POSITION (oend);
3375 endpos = min (endpos, oendpos);
3378 return endpos;
3381 /* How many characters forward to search for a display property or
3382 display string. Searching too far forward makes the bidi display
3383 sluggish, especially in small windows. */
3384 #define MAX_DISP_SCAN 250
3386 /* Return the character position of a display string at or after
3387 position specified by POSITION. If no display string exists at or
3388 after POSITION, return ZV. A display string is either an overlay
3389 with `display' property whose value is a string, or a `display'
3390 text property whose value is a string. STRING is data about the
3391 string to iterate; if STRING->lstring is nil, we are iterating a
3392 buffer. FRAME_WINDOW_P is non-zero when we are displaying a window
3393 on a GUI frame. DISP_PROP is set to zero if we searched
3394 MAX_DISP_SCAN characters forward without finding any display
3395 strings, non-zero otherwise. It is set to 2 if the display string
3396 uses any kind of `(space ...)' spec that will produce a stretch of
3397 white space in the text area. */
3398 ptrdiff_t
3399 compute_display_string_pos (struct text_pos *position,
3400 struct bidi_string_data *string,
3401 int frame_window_p, int *disp_prop)
3403 /* OBJECT = nil means current buffer. */
3404 Lisp_Object object =
3405 (string && STRINGP (string->lstring)) ? string->lstring : Qnil;
3406 Lisp_Object pos, spec, limpos;
3407 int string_p = (string && (STRINGP (string->lstring) || string->s));
3408 ptrdiff_t eob = string_p ? string->schars : ZV;
3409 ptrdiff_t begb = string_p ? 0 : BEGV;
3410 ptrdiff_t bufpos, charpos = CHARPOS (*position);
3411 ptrdiff_t lim =
3412 (charpos < eob - MAX_DISP_SCAN) ? charpos + MAX_DISP_SCAN : eob;
3413 struct text_pos tpos;
3414 int rv = 0;
3416 *disp_prop = 1;
3418 if (charpos >= eob
3419 /* We don't support display properties whose values are strings
3420 that have display string properties. */
3421 || string->from_disp_str
3422 /* C strings cannot have display properties. */
3423 || (string->s && !STRINGP (object)))
3425 *disp_prop = 0;
3426 return eob;
3429 /* If the character at CHARPOS is where the display string begins,
3430 return CHARPOS. */
3431 pos = make_number (charpos);
3432 if (STRINGP (object))
3433 bufpos = string->bufpos;
3434 else
3435 bufpos = charpos;
3436 tpos = *position;
3437 if (!NILP (spec = Fget_char_property (pos, Qdisplay, object))
3438 && (charpos <= begb
3439 || !EQ (Fget_char_property (make_number (charpos - 1), Qdisplay,
3440 object),
3441 spec))
3442 && (rv = handle_display_spec (NULL, spec, object, Qnil, &tpos, bufpos,
3443 frame_window_p)))
3445 if (rv == 2)
3446 *disp_prop = 2;
3447 return charpos;
3450 /* Look forward for the first character with a `display' property
3451 that will replace the underlying text when displayed. */
3452 limpos = make_number (lim);
3453 do {
3454 pos = Fnext_single_char_property_change (pos, Qdisplay, object, limpos);
3455 CHARPOS (tpos) = XFASTINT (pos);
3456 if (CHARPOS (tpos) >= lim)
3458 *disp_prop = 0;
3459 break;
3461 if (STRINGP (object))
3462 BYTEPOS (tpos) = string_char_to_byte (object, CHARPOS (tpos));
3463 else
3464 BYTEPOS (tpos) = CHAR_TO_BYTE (CHARPOS (tpos));
3465 spec = Fget_char_property (pos, Qdisplay, object);
3466 if (!STRINGP (object))
3467 bufpos = CHARPOS (tpos);
3468 } while (NILP (spec)
3469 || !(rv = handle_display_spec (NULL, spec, object, Qnil, &tpos,
3470 bufpos, frame_window_p)));
3471 if (rv == 2)
3472 *disp_prop = 2;
3474 return CHARPOS (tpos);
3477 /* Return the character position of the end of the display string that
3478 started at CHARPOS. If there's no display string at CHARPOS,
3479 return -1. A display string is either an overlay with `display'
3480 property whose value is a string or a `display' text property whose
3481 value is a string. */
3482 ptrdiff_t
3483 compute_display_string_end (ptrdiff_t charpos, struct bidi_string_data *string)
3485 /* OBJECT = nil means current buffer. */
3486 Lisp_Object object =
3487 (string && STRINGP (string->lstring)) ? string->lstring : Qnil;
3488 Lisp_Object pos = make_number (charpos);
3489 ptrdiff_t eob =
3490 (STRINGP (object) || (string && string->s)) ? string->schars : ZV;
3492 if (charpos >= eob || (string->s && !STRINGP (object)))
3493 return eob;
3495 /* It could happen that the display property or overlay was removed
3496 since we found it in compute_display_string_pos above. One way
3497 this can happen is if JIT font-lock was called (through
3498 handle_fontified_prop), and jit-lock-functions remove text
3499 properties or overlays from the portion of buffer that includes
3500 CHARPOS. Muse mode is known to do that, for example. In this
3501 case, we return -1 to the caller, to signal that no display
3502 string is actually present at CHARPOS. See bidi_fetch_char for
3503 how this is handled.
3505 An alternative would be to never look for display properties past
3506 it->stop_charpos. But neither compute_display_string_pos nor
3507 bidi_fetch_char that calls it know or care where the next
3508 stop_charpos is. */
3509 if (NILP (Fget_char_property (pos, Qdisplay, object)))
3510 return -1;
3512 /* Look forward for the first character where the `display' property
3513 changes. */
3514 pos = Fnext_single_char_property_change (pos, Qdisplay, object, Qnil);
3516 return XFASTINT (pos);
3521 /***********************************************************************
3522 Fontification
3523 ***********************************************************************/
3525 /* Handle changes in the `fontified' property of the current buffer by
3526 calling hook functions from Qfontification_functions to fontify
3527 regions of text. */
3529 static enum prop_handled
3530 handle_fontified_prop (struct it *it)
3532 Lisp_Object prop, pos;
3533 enum prop_handled handled = HANDLED_NORMALLY;
3535 if (!NILP (Vmemory_full))
3536 return handled;
3538 /* Get the value of the `fontified' property at IT's current buffer
3539 position. (The `fontified' property doesn't have a special
3540 meaning in strings.) If the value is nil, call functions from
3541 Qfontification_functions. */
3542 if (!STRINGP (it->string)
3543 && it->s == NULL
3544 && !NILP (Vfontification_functions)
3545 && !NILP (Vrun_hooks)
3546 && (pos = make_number (IT_CHARPOS (*it)),
3547 prop = Fget_char_property (pos, Qfontified, Qnil),
3548 /* Ignore the special cased nil value always present at EOB since
3549 no amount of fontifying will be able to change it. */
3550 NILP (prop) && IT_CHARPOS (*it) < Z))
3552 ptrdiff_t count = SPECPDL_INDEX ();
3553 Lisp_Object val;
3554 struct buffer *obuf = current_buffer;
3555 int begv = BEGV, zv = ZV;
3556 int old_clip_changed = current_buffer->clip_changed;
3558 val = Vfontification_functions;
3559 specbind (Qfontification_functions, Qnil);
3561 xassert (it->end_charpos == ZV);
3563 if (!CONSP (val) || EQ (XCAR (val), Qlambda))
3564 safe_call1 (val, pos);
3565 else
3567 Lisp_Object fns, fn;
3568 struct gcpro gcpro1, gcpro2;
3570 fns = Qnil;
3571 GCPRO2 (val, fns);
3573 for (; CONSP (val); val = XCDR (val))
3575 fn = XCAR (val);
3577 if (EQ (fn, Qt))
3579 /* A value of t indicates this hook has a local
3580 binding; it means to run the global binding too.
3581 In a global value, t should not occur. If it
3582 does, we must ignore it to avoid an endless
3583 loop. */
3584 for (fns = Fdefault_value (Qfontification_functions);
3585 CONSP (fns);
3586 fns = XCDR (fns))
3588 fn = XCAR (fns);
3589 if (!EQ (fn, Qt))
3590 safe_call1 (fn, pos);
3593 else
3594 safe_call1 (fn, pos);
3597 UNGCPRO;
3600 unbind_to (count, Qnil);
3602 /* Fontification functions routinely call `save-restriction'.
3603 Normally, this tags clip_changed, which can confuse redisplay
3604 (see discussion in Bug#6671). Since we don't perform any
3605 special handling of fontification changes in the case where
3606 `save-restriction' isn't called, there's no point doing so in
3607 this case either. So, if the buffer's restrictions are
3608 actually left unchanged, reset clip_changed. */
3609 if (obuf == current_buffer)
3611 if (begv == BEGV && zv == ZV)
3612 current_buffer->clip_changed = old_clip_changed;
3614 /* There isn't much we can reasonably do to protect against
3615 misbehaving fontification, but here's a fig leaf. */
3616 else if (!NILP (BVAR (obuf, name)))
3617 set_buffer_internal_1 (obuf);
3619 /* The fontification code may have added/removed text.
3620 It could do even a lot worse, but let's at least protect against
3621 the most obvious case where only the text past `pos' gets changed',
3622 as is/was done in grep.el where some escapes sequences are turned
3623 into face properties (bug#7876). */
3624 it->end_charpos = ZV;
3626 /* Return HANDLED_RECOMPUTE_PROPS only if function fontified
3627 something. This avoids an endless loop if they failed to
3628 fontify the text for which reason ever. */
3629 if (!NILP (Fget_char_property (pos, Qfontified, Qnil)))
3630 handled = HANDLED_RECOMPUTE_PROPS;
3633 return handled;
3638 /***********************************************************************
3639 Faces
3640 ***********************************************************************/
3642 /* Set up iterator IT from face properties at its current position.
3643 Called from handle_stop. */
3645 static enum prop_handled
3646 handle_face_prop (struct it *it)
3648 int new_face_id;
3649 ptrdiff_t next_stop;
3651 if (!STRINGP (it->string))
3653 new_face_id
3654 = face_at_buffer_position (it->w,
3655 IT_CHARPOS (*it),
3656 it->region_beg_charpos,
3657 it->region_end_charpos,
3658 &next_stop,
3659 (IT_CHARPOS (*it)
3660 + TEXT_PROP_DISTANCE_LIMIT),
3661 0, it->base_face_id);
3663 /* Is this a start of a run of characters with box face?
3664 Caveat: this can be called for a freshly initialized
3665 iterator; face_id is -1 in this case. We know that the new
3666 face will not change until limit, i.e. if the new face has a
3667 box, all characters up to limit will have one. But, as
3668 usual, we don't know whether limit is really the end. */
3669 if (new_face_id != it->face_id)
3671 struct face *new_face = FACE_FROM_ID (it->f, new_face_id);
3673 /* If new face has a box but old face has not, this is
3674 the start of a run of characters with box, i.e. it has
3675 a shadow on the left side. The value of face_id of the
3676 iterator will be -1 if this is the initial call that gets
3677 the face. In this case, we have to look in front of IT's
3678 position and see whether there is a face != new_face_id. */
3679 it->start_of_box_run_p
3680 = (new_face->box != FACE_NO_BOX
3681 && (it->face_id >= 0
3682 || IT_CHARPOS (*it) == BEG
3683 || new_face_id != face_before_it_pos (it)));
3684 it->face_box_p = new_face->box != FACE_NO_BOX;
3687 else
3689 int base_face_id;
3690 ptrdiff_t bufpos;
3691 int i;
3692 Lisp_Object from_overlay
3693 = (it->current.overlay_string_index >= 0
3694 ? it->string_overlays[it->current.overlay_string_index
3695 % OVERLAY_STRING_CHUNK_SIZE]
3696 : Qnil);
3698 /* See if we got to this string directly or indirectly from
3699 an overlay property. That includes the before-string or
3700 after-string of an overlay, strings in display properties
3701 provided by an overlay, their text properties, etc.
3703 FROM_OVERLAY is the overlay that brought us here, or nil if none. */
3704 if (! NILP (from_overlay))
3705 for (i = it->sp - 1; i >= 0; i--)
3707 if (it->stack[i].current.overlay_string_index >= 0)
3708 from_overlay
3709 = it->string_overlays[it->stack[i].current.overlay_string_index
3710 % OVERLAY_STRING_CHUNK_SIZE];
3711 else if (! NILP (it->stack[i].from_overlay))
3712 from_overlay = it->stack[i].from_overlay;
3714 if (!NILP (from_overlay))
3715 break;
3718 if (! NILP (from_overlay))
3720 bufpos = IT_CHARPOS (*it);
3721 /* For a string from an overlay, the base face depends
3722 only on text properties and ignores overlays. */
3723 base_face_id
3724 = face_for_overlay_string (it->w,
3725 IT_CHARPOS (*it),
3726 it->region_beg_charpos,
3727 it->region_end_charpos,
3728 &next_stop,
3729 (IT_CHARPOS (*it)
3730 + TEXT_PROP_DISTANCE_LIMIT),
3732 from_overlay);
3734 else
3736 bufpos = 0;
3738 /* For strings from a `display' property, use the face at
3739 IT's current buffer position as the base face to merge
3740 with, so that overlay strings appear in the same face as
3741 surrounding text, unless they specify their own
3742 faces. */
3743 base_face_id = it->string_from_prefix_prop_p
3744 ? DEFAULT_FACE_ID
3745 : underlying_face_id (it);
3748 new_face_id = face_at_string_position (it->w,
3749 it->string,
3750 IT_STRING_CHARPOS (*it),
3751 bufpos,
3752 it->region_beg_charpos,
3753 it->region_end_charpos,
3754 &next_stop,
3755 base_face_id, 0);
3757 /* Is this a start of a run of characters with box? Caveat:
3758 this can be called for a freshly allocated iterator; face_id
3759 is -1 is this case. We know that the new face will not
3760 change until the next check pos, i.e. if the new face has a
3761 box, all characters up to that position will have a
3762 box. But, as usual, we don't know whether that position
3763 is really the end. */
3764 if (new_face_id != it->face_id)
3766 struct face *new_face = FACE_FROM_ID (it->f, new_face_id);
3767 struct face *old_face = FACE_FROM_ID (it->f, it->face_id);
3769 /* If new face has a box but old face hasn't, this is the
3770 start of a run of characters with box, i.e. it has a
3771 shadow on the left side. */
3772 it->start_of_box_run_p
3773 = new_face->box && (old_face == NULL || !old_face->box);
3774 it->face_box_p = new_face->box != FACE_NO_BOX;
3778 it->face_id = new_face_id;
3779 return HANDLED_NORMALLY;
3783 /* Return the ID of the face ``underlying'' IT's current position,
3784 which is in a string. If the iterator is associated with a
3785 buffer, return the face at IT's current buffer position.
3786 Otherwise, use the iterator's base_face_id. */
3788 static int
3789 underlying_face_id (struct it *it)
3791 int face_id = it->base_face_id, i;
3793 xassert (STRINGP (it->string));
3795 for (i = it->sp - 1; i >= 0; --i)
3796 if (NILP (it->stack[i].string))
3797 face_id = it->stack[i].face_id;
3799 return face_id;
3803 /* Compute the face one character before or after the current position
3804 of IT, in the visual order. BEFORE_P non-zero means get the face
3805 in front (to the left in L2R paragraphs, to the right in R2L
3806 paragraphs) of IT's screen position. Value is the ID of the face. */
3808 static int
3809 face_before_or_after_it_pos (struct it *it, int before_p)
3811 int face_id, limit;
3812 ptrdiff_t next_check_charpos;
3813 struct it it_copy;
3814 void *it_copy_data = NULL;
3816 xassert (it->s == NULL);
3818 if (STRINGP (it->string))
3820 ptrdiff_t bufpos, charpos;
3821 int base_face_id;
3823 /* No face change past the end of the string (for the case
3824 we are padding with spaces). No face change before the
3825 string start. */
3826 if (IT_STRING_CHARPOS (*it) >= SCHARS (it->string)
3827 || (IT_STRING_CHARPOS (*it) == 0 && before_p))
3828 return it->face_id;
3830 if (!it->bidi_p)
3832 /* Set charpos to the position before or after IT's current
3833 position, in the logical order, which in the non-bidi
3834 case is the same as the visual order. */
3835 if (before_p)
3836 charpos = IT_STRING_CHARPOS (*it) - 1;
3837 else if (it->what == IT_COMPOSITION)
3838 /* For composition, we must check the character after the
3839 composition. */
3840 charpos = IT_STRING_CHARPOS (*it) + it->cmp_it.nchars;
3841 else
3842 charpos = IT_STRING_CHARPOS (*it) + 1;
3844 else
3846 if (before_p)
3848 /* With bidi iteration, the character before the current
3849 in the visual order cannot be found by simple
3850 iteration, because "reverse" reordering is not
3851 supported. Instead, we need to use the move_it_*
3852 family of functions. */
3853 /* Ignore face changes before the first visible
3854 character on this display line. */
3855 if (it->current_x <= it->first_visible_x)
3856 return it->face_id;
3857 SAVE_IT (it_copy, *it, it_copy_data);
3858 /* Implementation note: Since move_it_in_display_line
3859 works in the iterator geometry, and thinks the first
3860 character is always the leftmost, even in R2L lines,
3861 we don't need to distinguish between the R2L and L2R
3862 cases here. */
3863 move_it_in_display_line (&it_copy, SCHARS (it_copy.string),
3864 it_copy.current_x - 1, MOVE_TO_X);
3865 charpos = IT_STRING_CHARPOS (it_copy);
3866 RESTORE_IT (it, it, it_copy_data);
3868 else
3870 /* Set charpos to the string position of the character
3871 that comes after IT's current position in the visual
3872 order. */
3873 int n = (it->what == IT_COMPOSITION ? it->cmp_it.nchars : 1);
3875 it_copy = *it;
3876 while (n--)
3877 bidi_move_to_visually_next (&it_copy.bidi_it);
3879 charpos = it_copy.bidi_it.charpos;
3882 xassert (0 <= charpos && charpos <= SCHARS (it->string));
3884 if (it->current.overlay_string_index >= 0)
3885 bufpos = IT_CHARPOS (*it);
3886 else
3887 bufpos = 0;
3889 base_face_id = underlying_face_id (it);
3891 /* Get the face for ASCII, or unibyte. */
3892 face_id = face_at_string_position (it->w,
3893 it->string,
3894 charpos,
3895 bufpos,
3896 it->region_beg_charpos,
3897 it->region_end_charpos,
3898 &next_check_charpos,
3899 base_face_id, 0);
3901 /* Correct the face for charsets different from ASCII. Do it
3902 for the multibyte case only. The face returned above is
3903 suitable for unibyte text if IT->string is unibyte. */
3904 if (STRING_MULTIBYTE (it->string))
3906 struct text_pos pos1 = string_pos (charpos, it->string);
3907 const unsigned char *p = SDATA (it->string) + BYTEPOS (pos1);
3908 int c, len;
3909 struct face *face = FACE_FROM_ID (it->f, face_id);
3911 c = string_char_and_length (p, &len);
3912 face_id = FACE_FOR_CHAR (it->f, face, c, charpos, it->string);
3915 else
3917 struct text_pos pos;
3919 if ((IT_CHARPOS (*it) >= ZV && !before_p)
3920 || (IT_CHARPOS (*it) <= BEGV && before_p))
3921 return it->face_id;
3923 limit = IT_CHARPOS (*it) + TEXT_PROP_DISTANCE_LIMIT;
3924 pos = it->current.pos;
3926 if (!it->bidi_p)
3928 if (before_p)
3929 DEC_TEXT_POS (pos, it->multibyte_p);
3930 else
3932 if (it->what == IT_COMPOSITION)
3934 /* For composition, we must check the position after
3935 the composition. */
3936 pos.charpos += it->cmp_it.nchars;
3937 pos.bytepos += it->len;
3939 else
3940 INC_TEXT_POS (pos, it->multibyte_p);
3943 else
3945 if (before_p)
3947 /* With bidi iteration, the character before the current
3948 in the visual order cannot be found by simple
3949 iteration, because "reverse" reordering is not
3950 supported. Instead, we need to use the move_it_*
3951 family of functions. */
3952 /* Ignore face changes before the first visible
3953 character on this display line. */
3954 if (it->current_x <= it->first_visible_x)
3955 return it->face_id;
3956 SAVE_IT (it_copy, *it, it_copy_data);
3957 /* Implementation note: Since move_it_in_display_line
3958 works in the iterator geometry, and thinks the first
3959 character is always the leftmost, even in R2L lines,
3960 we don't need to distinguish between the R2L and L2R
3961 cases here. */
3962 move_it_in_display_line (&it_copy, ZV,
3963 it_copy.current_x - 1, MOVE_TO_X);
3964 pos = it_copy.current.pos;
3965 RESTORE_IT (it, it, it_copy_data);
3967 else
3969 /* Set charpos to the buffer position of the character
3970 that comes after IT's current position in the visual
3971 order. */
3972 int n = (it->what == IT_COMPOSITION ? it->cmp_it.nchars : 1);
3974 it_copy = *it;
3975 while (n--)
3976 bidi_move_to_visually_next (&it_copy.bidi_it);
3978 SET_TEXT_POS (pos,
3979 it_copy.bidi_it.charpos, it_copy.bidi_it.bytepos);
3982 xassert (BEGV <= CHARPOS (pos) && CHARPOS (pos) <= ZV);
3984 /* Determine face for CHARSET_ASCII, or unibyte. */
3985 face_id = face_at_buffer_position (it->w,
3986 CHARPOS (pos),
3987 it->region_beg_charpos,
3988 it->region_end_charpos,
3989 &next_check_charpos,
3990 limit, 0, -1);
3992 /* Correct the face for charsets different from ASCII. Do it
3993 for the multibyte case only. The face returned above is
3994 suitable for unibyte text if current_buffer is unibyte. */
3995 if (it->multibyte_p)
3997 int c = FETCH_MULTIBYTE_CHAR (BYTEPOS (pos));
3998 struct face *face = FACE_FROM_ID (it->f, face_id);
3999 face_id = FACE_FOR_CHAR (it->f, face, c, CHARPOS (pos), Qnil);
4003 return face_id;
4008 /***********************************************************************
4009 Invisible text
4010 ***********************************************************************/
4012 /* Set up iterator IT from invisible properties at its current
4013 position. Called from handle_stop. */
4015 static enum prop_handled
4016 handle_invisible_prop (struct it *it)
4018 enum prop_handled handled = HANDLED_NORMALLY;
4020 if (STRINGP (it->string))
4022 Lisp_Object prop, end_charpos, limit, charpos;
4024 /* Get the value of the invisible text property at the
4025 current position. Value will be nil if there is no such
4026 property. */
4027 charpos = make_number (IT_STRING_CHARPOS (*it));
4028 prop = Fget_text_property (charpos, Qinvisible, it->string);
4030 if (!NILP (prop)
4031 && IT_STRING_CHARPOS (*it) < it->end_charpos)
4033 ptrdiff_t endpos;
4035 handled = HANDLED_RECOMPUTE_PROPS;
4037 /* Get the position at which the next change of the
4038 invisible text property can be found in IT->string.
4039 Value will be nil if the property value is the same for
4040 all the rest of IT->string. */
4041 XSETINT (limit, SCHARS (it->string));
4042 end_charpos = Fnext_single_property_change (charpos, Qinvisible,
4043 it->string, limit);
4045 /* Text at current position is invisible. The next
4046 change in the property is at position end_charpos.
4047 Move IT's current position to that position. */
4048 if (INTEGERP (end_charpos)
4049 && (endpos = XFASTINT (end_charpos)) < XFASTINT (limit))
4051 struct text_pos old;
4052 ptrdiff_t oldpos;
4054 old = it->current.string_pos;
4055 oldpos = CHARPOS (old);
4056 if (it->bidi_p)
4058 if (it->bidi_it.first_elt
4059 && it->bidi_it.charpos < SCHARS (it->string))
4060 bidi_paragraph_init (it->paragraph_embedding,
4061 &it->bidi_it, 1);
4062 /* Bidi-iterate out of the invisible text. */
4065 bidi_move_to_visually_next (&it->bidi_it);
4067 while (oldpos <= it->bidi_it.charpos
4068 && it->bidi_it.charpos < endpos);
4070 IT_STRING_CHARPOS (*it) = it->bidi_it.charpos;
4071 IT_STRING_BYTEPOS (*it) = it->bidi_it.bytepos;
4072 if (IT_CHARPOS (*it) >= endpos)
4073 it->prev_stop = endpos;
4075 else
4077 IT_STRING_CHARPOS (*it) = XFASTINT (end_charpos);
4078 compute_string_pos (&it->current.string_pos, old, it->string);
4081 else
4083 /* The rest of the string is invisible. If this is an
4084 overlay string, proceed with the next overlay string
4085 or whatever comes and return a character from there. */
4086 if (it->current.overlay_string_index >= 0)
4088 next_overlay_string (it);
4089 /* Don't check for overlay strings when we just
4090 finished processing them. */
4091 handled = HANDLED_OVERLAY_STRING_CONSUMED;
4093 else
4095 IT_STRING_CHARPOS (*it) = SCHARS (it->string);
4096 IT_STRING_BYTEPOS (*it) = SBYTES (it->string);
4101 else
4103 int invis_p;
4104 ptrdiff_t newpos, next_stop, start_charpos, tem;
4105 Lisp_Object pos, prop, overlay;
4107 /* First of all, is there invisible text at this position? */
4108 tem = start_charpos = IT_CHARPOS (*it);
4109 pos = make_number (tem);
4110 prop = get_char_property_and_overlay (pos, Qinvisible, it->window,
4111 &overlay);
4112 invis_p = TEXT_PROP_MEANS_INVISIBLE (prop);
4114 /* If we are on invisible text, skip over it. */
4115 if (invis_p && start_charpos < it->end_charpos)
4117 /* Record whether we have to display an ellipsis for the
4118 invisible text. */
4119 int display_ellipsis_p = invis_p == 2;
4121 handled = HANDLED_RECOMPUTE_PROPS;
4123 /* Loop skipping over invisible text. The loop is left at
4124 ZV or with IT on the first char being visible again. */
4127 /* Try to skip some invisible text. Return value is the
4128 position reached which can be equal to where we start
4129 if there is nothing invisible there. This skips both
4130 over invisible text properties and overlays with
4131 invisible property. */
4132 newpos = skip_invisible (tem, &next_stop, ZV, it->window);
4134 /* If we skipped nothing at all we weren't at invisible
4135 text in the first place. If everything to the end of
4136 the buffer was skipped, end the loop. */
4137 if (newpos == tem || newpos >= ZV)
4138 invis_p = 0;
4139 else
4141 /* We skipped some characters but not necessarily
4142 all there are. Check if we ended up on visible
4143 text. Fget_char_property returns the property of
4144 the char before the given position, i.e. if we
4145 get invis_p = 0, this means that the char at
4146 newpos is visible. */
4147 pos = make_number (newpos);
4148 prop = Fget_char_property (pos, Qinvisible, it->window);
4149 invis_p = TEXT_PROP_MEANS_INVISIBLE (prop);
4152 /* If we ended up on invisible text, proceed to
4153 skip starting with next_stop. */
4154 if (invis_p)
4155 tem = next_stop;
4157 /* If there are adjacent invisible texts, don't lose the
4158 second one's ellipsis. */
4159 if (invis_p == 2)
4160 display_ellipsis_p = 1;
4162 while (invis_p);
4164 /* The position newpos is now either ZV or on visible text. */
4165 if (it->bidi_p)
4167 ptrdiff_t bpos = CHAR_TO_BYTE (newpos);
4168 int on_newline =
4169 bpos == ZV_BYTE || FETCH_BYTE (bpos) == '\n';
4170 int after_newline =
4171 newpos <= BEGV || FETCH_BYTE (bpos - 1) == '\n';
4173 /* If the invisible text ends on a newline or on a
4174 character after a newline, we can avoid the costly,
4175 character by character, bidi iteration to NEWPOS, and
4176 instead simply reseat the iterator there. That's
4177 because all bidi reordering information is tossed at
4178 the newline. This is a big win for modes that hide
4179 complete lines, like Outline, Org, etc. */
4180 if (on_newline || after_newline)
4182 struct text_pos tpos;
4183 bidi_dir_t pdir = it->bidi_it.paragraph_dir;
4185 SET_TEXT_POS (tpos, newpos, bpos);
4186 reseat_1 (it, tpos, 0);
4187 /* If we reseat on a newline/ZV, we need to prep the
4188 bidi iterator for advancing to the next character
4189 after the newline/EOB, keeping the current paragraph
4190 direction (so that PRODUCE_GLYPHS does TRT wrt
4191 prepending/appending glyphs to a glyph row). */
4192 if (on_newline)
4194 it->bidi_it.first_elt = 0;
4195 it->bidi_it.paragraph_dir = pdir;
4196 it->bidi_it.ch = (bpos == ZV_BYTE) ? -1 : '\n';
4197 it->bidi_it.nchars = 1;
4198 it->bidi_it.ch_len = 1;
4201 else /* Must use the slow method. */
4203 /* With bidi iteration, the region of invisible text
4204 could start and/or end in the middle of a
4205 non-base embedding level. Therefore, we need to
4206 skip invisible text using the bidi iterator,
4207 starting at IT's current position, until we find
4208 ourselves outside of the invisible text.
4209 Skipping invisible text _after_ bidi iteration
4210 avoids affecting the visual order of the
4211 displayed text when invisible properties are
4212 added or removed. */
4213 if (it->bidi_it.first_elt && it->bidi_it.charpos < ZV)
4215 /* If we were `reseat'ed to a new paragraph,
4216 determine the paragraph base direction. We
4217 need to do it now because
4218 next_element_from_buffer may not have a
4219 chance to do it, if we are going to skip any
4220 text at the beginning, which resets the
4221 FIRST_ELT flag. */
4222 bidi_paragraph_init (it->paragraph_embedding,
4223 &it->bidi_it, 1);
4227 bidi_move_to_visually_next (&it->bidi_it);
4229 while (it->stop_charpos <= it->bidi_it.charpos
4230 && it->bidi_it.charpos < newpos);
4231 IT_CHARPOS (*it) = it->bidi_it.charpos;
4232 IT_BYTEPOS (*it) = it->bidi_it.bytepos;
4233 /* If we overstepped NEWPOS, record its position in
4234 the iterator, so that we skip invisible text if
4235 later the bidi iteration lands us in the
4236 invisible region again. */
4237 if (IT_CHARPOS (*it) >= newpos)
4238 it->prev_stop = newpos;
4241 else
4243 IT_CHARPOS (*it) = newpos;
4244 IT_BYTEPOS (*it) = CHAR_TO_BYTE (newpos);
4247 /* If there are before-strings at the start of invisible
4248 text, and the text is invisible because of a text
4249 property, arrange to show before-strings because 20.x did
4250 it that way. (If the text is invisible because of an
4251 overlay property instead of a text property, this is
4252 already handled in the overlay code.) */
4253 if (NILP (overlay)
4254 && get_overlay_strings (it, it->stop_charpos))
4256 handled = HANDLED_RECOMPUTE_PROPS;
4257 it->stack[it->sp - 1].display_ellipsis_p = display_ellipsis_p;
4259 else if (display_ellipsis_p)
4261 /* Make sure that the glyphs of the ellipsis will get
4262 correct `charpos' values. If we would not update
4263 it->position here, the glyphs would belong to the
4264 last visible character _before_ the invisible
4265 text, which confuses `set_cursor_from_row'.
4267 We use the last invisible position instead of the
4268 first because this way the cursor is always drawn on
4269 the first "." of the ellipsis, whenever PT is inside
4270 the invisible text. Otherwise the cursor would be
4271 placed _after_ the ellipsis when the point is after the
4272 first invisible character. */
4273 if (!STRINGP (it->object))
4275 it->position.charpos = newpos - 1;
4276 it->position.bytepos = CHAR_TO_BYTE (it->position.charpos);
4278 it->ellipsis_p = 1;
4279 /* Let the ellipsis display before
4280 considering any properties of the following char.
4281 Fixes jasonr@gnu.org 01 Oct 07 bug. */
4282 handled = HANDLED_RETURN;
4287 return handled;
4291 /* Make iterator IT return `...' next.
4292 Replaces LEN characters from buffer. */
4294 static void
4295 setup_for_ellipsis (struct it *it, int len)
4297 /* Use the display table definition for `...'. Invalid glyphs
4298 will be handled by the method returning elements from dpvec. */
4299 if (it->dp && VECTORP (DISP_INVIS_VECTOR (it->dp)))
4301 struct Lisp_Vector *v = XVECTOR (DISP_INVIS_VECTOR (it->dp));
4302 it->dpvec = v->contents;
4303 it->dpend = v->contents + v->header.size;
4305 else
4307 /* Default `...'. */
4308 it->dpvec = default_invis_vector;
4309 it->dpend = default_invis_vector + 3;
4312 it->dpvec_char_len = len;
4313 it->current.dpvec_index = 0;
4314 it->dpvec_face_id = -1;
4316 /* Remember the current face id in case glyphs specify faces.
4317 IT's face is restored in set_iterator_to_next.
4318 saved_face_id was set to preceding char's face in handle_stop. */
4319 if (it->saved_face_id < 0 || it->saved_face_id != it->face_id)
4320 it->saved_face_id = it->face_id = DEFAULT_FACE_ID;
4322 it->method = GET_FROM_DISPLAY_VECTOR;
4323 it->ellipsis_p = 1;
4328 /***********************************************************************
4329 'display' property
4330 ***********************************************************************/
4332 /* Set up iterator IT from `display' property at its current position.
4333 Called from handle_stop.
4334 We return HANDLED_RETURN if some part of the display property
4335 overrides the display of the buffer text itself.
4336 Otherwise we return HANDLED_NORMALLY. */
4338 static enum prop_handled
4339 handle_display_prop (struct it *it)
4341 Lisp_Object propval, object, overlay;
4342 struct text_pos *position;
4343 ptrdiff_t bufpos;
4344 /* Nonzero if some property replaces the display of the text itself. */
4345 int display_replaced_p = 0;
4347 if (STRINGP (it->string))
4349 object = it->string;
4350 position = &it->current.string_pos;
4351 bufpos = CHARPOS (it->current.pos);
4353 else
4355 XSETWINDOW (object, it->w);
4356 position = &it->current.pos;
4357 bufpos = CHARPOS (*position);
4360 /* Reset those iterator values set from display property values. */
4361 it->slice.x = it->slice.y = it->slice.width = it->slice.height = Qnil;
4362 it->space_width = Qnil;
4363 it->font_height = Qnil;
4364 it->voffset = 0;
4366 /* We don't support recursive `display' properties, i.e. string
4367 values that have a string `display' property, that have a string
4368 `display' property etc. */
4369 if (!it->string_from_display_prop_p)
4370 it->area = TEXT_AREA;
4372 propval = get_char_property_and_overlay (make_number (position->charpos),
4373 Qdisplay, object, &overlay);
4374 if (NILP (propval))
4375 return HANDLED_NORMALLY;
4376 /* Now OVERLAY is the overlay that gave us this property, or nil
4377 if it was a text property. */
4379 if (!STRINGP (it->string))
4380 object = it->w->buffer;
4382 display_replaced_p = handle_display_spec (it, propval, object, overlay,
4383 position, bufpos,
4384 FRAME_WINDOW_P (it->f));
4386 return display_replaced_p ? HANDLED_RETURN : HANDLED_NORMALLY;
4389 /* Subroutine of handle_display_prop. Returns non-zero if the display
4390 specification in SPEC is a replacing specification, i.e. it would
4391 replace the text covered by `display' property with something else,
4392 such as an image or a display string. If SPEC includes any kind or
4393 `(space ...) specification, the value is 2; this is used by
4394 compute_display_string_pos, which see.
4396 See handle_single_display_spec for documentation of arguments.
4397 frame_window_p is non-zero if the window being redisplayed is on a
4398 GUI frame; this argument is used only if IT is NULL, see below.
4400 IT can be NULL, if this is called by the bidi reordering code
4401 through compute_display_string_pos, which see. In that case, this
4402 function only examines SPEC, but does not otherwise "handle" it, in
4403 the sense that it doesn't set up members of IT from the display
4404 spec. */
4405 static int
4406 handle_display_spec (struct it *it, Lisp_Object spec, Lisp_Object object,
4407 Lisp_Object overlay, struct text_pos *position,
4408 ptrdiff_t bufpos, int frame_window_p)
4410 int replacing_p = 0;
4411 int rv;
4413 if (CONSP (spec)
4414 /* Simple specifications. */
4415 && !EQ (XCAR (spec), Qimage)
4416 && !EQ (XCAR (spec), Qspace)
4417 && !EQ (XCAR (spec), Qwhen)
4418 && !EQ (XCAR (spec), Qslice)
4419 && !EQ (XCAR (spec), Qspace_width)
4420 && !EQ (XCAR (spec), Qheight)
4421 && !EQ (XCAR (spec), Qraise)
4422 /* Marginal area specifications. */
4423 && !(CONSP (XCAR (spec)) && EQ (XCAR (XCAR (spec)), Qmargin))
4424 && !EQ (XCAR (spec), Qleft_fringe)
4425 && !EQ (XCAR (spec), Qright_fringe)
4426 && !NILP (XCAR (spec)))
4428 for (; CONSP (spec); spec = XCDR (spec))
4430 if ((rv = handle_single_display_spec (it, XCAR (spec), object,
4431 overlay, position, bufpos,
4432 replacing_p, frame_window_p)))
4434 replacing_p = rv;
4435 /* If some text in a string is replaced, `position' no
4436 longer points to the position of `object'. */
4437 if (!it || STRINGP (object))
4438 break;
4442 else if (VECTORP (spec))
4444 ptrdiff_t i;
4445 for (i = 0; i < ASIZE (spec); ++i)
4446 if ((rv = handle_single_display_spec (it, AREF (spec, i), object,
4447 overlay, position, bufpos,
4448 replacing_p, frame_window_p)))
4450 replacing_p = rv;
4451 /* If some text in a string is replaced, `position' no
4452 longer points to the position of `object'. */
4453 if (!it || STRINGP (object))
4454 break;
4457 else
4459 if ((rv = handle_single_display_spec (it, spec, object, overlay,
4460 position, bufpos, 0,
4461 frame_window_p)))
4462 replacing_p = rv;
4465 return replacing_p;
4468 /* Value is the position of the end of the `display' property starting
4469 at START_POS in OBJECT. */
4471 static struct text_pos
4472 display_prop_end (struct it *it, Lisp_Object object, struct text_pos start_pos)
4474 Lisp_Object end;
4475 struct text_pos end_pos;
4477 end = Fnext_single_char_property_change (make_number (CHARPOS (start_pos)),
4478 Qdisplay, object, Qnil);
4479 CHARPOS (end_pos) = XFASTINT (end);
4480 if (STRINGP (object))
4481 compute_string_pos (&end_pos, start_pos, it->string);
4482 else
4483 BYTEPOS (end_pos) = CHAR_TO_BYTE (XFASTINT (end));
4485 return end_pos;
4489 /* Set up IT from a single `display' property specification SPEC. OBJECT
4490 is the object in which the `display' property was found. *POSITION
4491 is the position in OBJECT at which the `display' property was found.
4492 BUFPOS is the buffer position of OBJECT (different from POSITION if
4493 OBJECT is not a buffer). DISPLAY_REPLACED_P non-zero means that we
4494 previously saw a display specification which already replaced text
4495 display with something else, for example an image; we ignore such
4496 properties after the first one has been processed.
4498 OVERLAY is the overlay this `display' property came from,
4499 or nil if it was a text property.
4501 If SPEC is a `space' or `image' specification, and in some other
4502 cases too, set *POSITION to the position where the `display'
4503 property ends.
4505 If IT is NULL, only examine the property specification in SPEC, but
4506 don't set up IT. In that case, FRAME_WINDOW_P non-zero means SPEC
4507 is intended to be displayed in a window on a GUI frame.
4509 Value is non-zero if something was found which replaces the display
4510 of buffer or string text. */
4512 static int
4513 handle_single_display_spec (struct it *it, Lisp_Object spec, Lisp_Object object,
4514 Lisp_Object overlay, struct text_pos *position,
4515 ptrdiff_t bufpos, int display_replaced_p,
4516 int frame_window_p)
4518 Lisp_Object form;
4519 Lisp_Object location, value;
4520 struct text_pos start_pos = *position;
4521 int valid_p;
4523 /* If SPEC is a list of the form `(when FORM . VALUE)', evaluate FORM.
4524 If the result is non-nil, use VALUE instead of SPEC. */
4525 form = Qt;
4526 if (CONSP (spec) && EQ (XCAR (spec), Qwhen))
4528 spec = XCDR (spec);
4529 if (!CONSP (spec))
4530 return 0;
4531 form = XCAR (spec);
4532 spec = XCDR (spec);
4535 if (!NILP (form) && !EQ (form, Qt))
4537 ptrdiff_t count = SPECPDL_INDEX ();
4538 struct gcpro gcpro1;
4540 /* Bind `object' to the object having the `display' property, a
4541 buffer or string. Bind `position' to the position in the
4542 object where the property was found, and `buffer-position'
4543 to the current position in the buffer. */
4545 if (NILP (object))
4546 XSETBUFFER (object, current_buffer);
4547 specbind (Qobject, object);
4548 specbind (Qposition, make_number (CHARPOS (*position)));
4549 specbind (Qbuffer_position, make_number (bufpos));
4550 GCPRO1 (form);
4551 form = safe_eval (form);
4552 UNGCPRO;
4553 unbind_to (count, Qnil);
4556 if (NILP (form))
4557 return 0;
4559 /* Handle `(height HEIGHT)' specifications. */
4560 if (CONSP (spec)
4561 && EQ (XCAR (spec), Qheight)
4562 && CONSP (XCDR (spec)))
4564 if (it)
4566 if (!FRAME_WINDOW_P (it->f))
4567 return 0;
4569 it->font_height = XCAR (XCDR (spec));
4570 if (!NILP (it->font_height))
4572 struct face *face = FACE_FROM_ID (it->f, it->face_id);
4573 int new_height = -1;
4575 if (CONSP (it->font_height)
4576 && (EQ (XCAR (it->font_height), Qplus)
4577 || EQ (XCAR (it->font_height), Qminus))
4578 && CONSP (XCDR (it->font_height))
4579 && RANGED_INTEGERP (0, XCAR (XCDR (it->font_height)), INT_MAX))
4581 /* `(+ N)' or `(- N)' where N is an integer. */
4582 int steps = XINT (XCAR (XCDR (it->font_height)));
4583 if (EQ (XCAR (it->font_height), Qplus))
4584 steps = - steps;
4585 it->face_id = smaller_face (it->f, it->face_id, steps);
4587 else if (FUNCTIONP (it->font_height))
4589 /* Call function with current height as argument.
4590 Value is the new height. */
4591 Lisp_Object height;
4592 height = safe_call1 (it->font_height,
4593 face->lface[LFACE_HEIGHT_INDEX]);
4594 if (NUMBERP (height))
4595 new_height = XFLOATINT (height);
4597 else if (NUMBERP (it->font_height))
4599 /* Value is a multiple of the canonical char height. */
4600 struct face *f;
4602 f = FACE_FROM_ID (it->f,
4603 lookup_basic_face (it->f, DEFAULT_FACE_ID));
4604 new_height = (XFLOATINT (it->font_height)
4605 * XINT (f->lface[LFACE_HEIGHT_INDEX]));
4607 else
4609 /* Evaluate IT->font_height with `height' bound to the
4610 current specified height to get the new height. */
4611 ptrdiff_t count = SPECPDL_INDEX ();
4613 specbind (Qheight, face->lface[LFACE_HEIGHT_INDEX]);
4614 value = safe_eval (it->font_height);
4615 unbind_to (count, Qnil);
4617 if (NUMBERP (value))
4618 new_height = XFLOATINT (value);
4621 if (new_height > 0)
4622 it->face_id = face_with_height (it->f, it->face_id, new_height);
4626 return 0;
4629 /* Handle `(space-width WIDTH)'. */
4630 if (CONSP (spec)
4631 && EQ (XCAR (spec), Qspace_width)
4632 && CONSP (XCDR (spec)))
4634 if (it)
4636 if (!FRAME_WINDOW_P (it->f))
4637 return 0;
4639 value = XCAR (XCDR (spec));
4640 if (NUMBERP (value) && XFLOATINT (value) > 0)
4641 it->space_width = value;
4644 return 0;
4647 /* Handle `(slice X Y WIDTH HEIGHT)'. */
4648 if (CONSP (spec)
4649 && EQ (XCAR (spec), Qslice))
4651 Lisp_Object tem;
4653 if (it)
4655 if (!FRAME_WINDOW_P (it->f))
4656 return 0;
4658 if (tem = XCDR (spec), CONSP (tem))
4660 it->slice.x = XCAR (tem);
4661 if (tem = XCDR (tem), CONSP (tem))
4663 it->slice.y = XCAR (tem);
4664 if (tem = XCDR (tem), CONSP (tem))
4666 it->slice.width = XCAR (tem);
4667 if (tem = XCDR (tem), CONSP (tem))
4668 it->slice.height = XCAR (tem);
4674 return 0;
4677 /* Handle `(raise FACTOR)'. */
4678 if (CONSP (spec)
4679 && EQ (XCAR (spec), Qraise)
4680 && CONSP (XCDR (spec)))
4682 if (it)
4684 if (!FRAME_WINDOW_P (it->f))
4685 return 0;
4687 #ifdef HAVE_WINDOW_SYSTEM
4688 value = XCAR (XCDR (spec));
4689 if (NUMBERP (value))
4691 struct face *face = FACE_FROM_ID (it->f, it->face_id);
4692 it->voffset = - (XFLOATINT (value)
4693 * (FONT_HEIGHT (face->font)));
4695 #endif /* HAVE_WINDOW_SYSTEM */
4698 return 0;
4701 /* Don't handle the other kinds of display specifications
4702 inside a string that we got from a `display' property. */
4703 if (it && it->string_from_display_prop_p)
4704 return 0;
4706 /* Characters having this form of property are not displayed, so
4707 we have to find the end of the property. */
4708 if (it)
4710 start_pos = *position;
4711 *position = display_prop_end (it, object, start_pos);
4713 value = Qnil;
4715 /* Stop the scan at that end position--we assume that all
4716 text properties change there. */
4717 if (it)
4718 it->stop_charpos = position->charpos;
4720 /* Handle `(left-fringe BITMAP [FACE])'
4721 and `(right-fringe BITMAP [FACE])'. */
4722 if (CONSP (spec)
4723 && (EQ (XCAR (spec), Qleft_fringe)
4724 || EQ (XCAR (spec), Qright_fringe))
4725 && CONSP (XCDR (spec)))
4727 int fringe_bitmap;
4729 if (it)
4731 if (!FRAME_WINDOW_P (it->f))
4732 /* If we return here, POSITION has been advanced
4733 across the text with this property. */
4735 /* Synchronize the bidi iterator with POSITION. This is
4736 needed because we are not going to push the iterator
4737 on behalf of this display property, so there will be
4738 no pop_it call to do this synchronization for us. */
4739 if (it->bidi_p)
4741 it->position = *position;
4742 iterate_out_of_display_property (it);
4743 *position = it->position;
4745 return 1;
4748 else if (!frame_window_p)
4749 return 1;
4751 #ifdef HAVE_WINDOW_SYSTEM
4752 value = XCAR (XCDR (spec));
4753 if (!SYMBOLP (value)
4754 || !(fringe_bitmap = lookup_fringe_bitmap (value)))
4755 /* If we return here, POSITION has been advanced
4756 across the text with this property. */
4758 if (it && it->bidi_p)
4760 it->position = *position;
4761 iterate_out_of_display_property (it);
4762 *position = it->position;
4764 return 1;
4767 if (it)
4769 int face_id = lookup_basic_face (it->f, DEFAULT_FACE_ID);;
4771 if (CONSP (XCDR (XCDR (spec))))
4773 Lisp_Object face_name = XCAR (XCDR (XCDR (spec)));
4774 int face_id2 = lookup_derived_face (it->f, face_name,
4775 FRINGE_FACE_ID, 0);
4776 if (face_id2 >= 0)
4777 face_id = face_id2;
4780 /* Save current settings of IT so that we can restore them
4781 when we are finished with the glyph property value. */
4782 push_it (it, position);
4784 it->area = TEXT_AREA;
4785 it->what = IT_IMAGE;
4786 it->image_id = -1; /* no image */
4787 it->position = start_pos;
4788 it->object = NILP (object) ? it->w->buffer : object;
4789 it->method = GET_FROM_IMAGE;
4790 it->from_overlay = Qnil;
4791 it->face_id = face_id;
4792 it->from_disp_prop_p = 1;
4794 /* Say that we haven't consumed the characters with
4795 `display' property yet. The call to pop_it in
4796 set_iterator_to_next will clean this up. */
4797 *position = start_pos;
4799 if (EQ (XCAR (spec), Qleft_fringe))
4801 it->left_user_fringe_bitmap = fringe_bitmap;
4802 it->left_user_fringe_face_id = face_id;
4804 else
4806 it->right_user_fringe_bitmap = fringe_bitmap;
4807 it->right_user_fringe_face_id = face_id;
4810 #endif /* HAVE_WINDOW_SYSTEM */
4811 return 1;
4814 /* Prepare to handle `((margin left-margin) ...)',
4815 `((margin right-margin) ...)' and `((margin nil) ...)'
4816 prefixes for display specifications. */
4817 location = Qunbound;
4818 if (CONSP (spec) && CONSP (XCAR (spec)))
4820 Lisp_Object tem;
4822 value = XCDR (spec);
4823 if (CONSP (value))
4824 value = XCAR (value);
4826 tem = XCAR (spec);
4827 if (EQ (XCAR (tem), Qmargin)
4828 && (tem = XCDR (tem),
4829 tem = CONSP (tem) ? XCAR (tem) : Qnil,
4830 (NILP (tem)
4831 || EQ (tem, Qleft_margin)
4832 || EQ (tem, Qright_margin))))
4833 location = tem;
4836 if (EQ (location, Qunbound))
4838 location = Qnil;
4839 value = spec;
4842 /* After this point, VALUE is the property after any
4843 margin prefix has been stripped. It must be a string,
4844 an image specification, or `(space ...)'.
4846 LOCATION specifies where to display: `left-margin',
4847 `right-margin' or nil. */
4849 valid_p = (STRINGP (value)
4850 #ifdef HAVE_WINDOW_SYSTEM
4851 || ((it ? FRAME_WINDOW_P (it->f) : frame_window_p)
4852 && valid_image_p (value))
4853 #endif /* not HAVE_WINDOW_SYSTEM */
4854 || (CONSP (value) && EQ (XCAR (value), Qspace)));
4856 if (valid_p && !display_replaced_p)
4858 int retval = 1;
4860 if (!it)
4862 /* Callers need to know whether the display spec is any kind
4863 of `(space ...)' spec that is about to affect text-area
4864 display. */
4865 if (CONSP (value) && EQ (XCAR (value), Qspace) && NILP (location))
4866 retval = 2;
4867 return retval;
4870 /* Save current settings of IT so that we can restore them
4871 when we are finished with the glyph property value. */
4872 push_it (it, position);
4873 it->from_overlay = overlay;
4874 it->from_disp_prop_p = 1;
4876 if (NILP (location))
4877 it->area = TEXT_AREA;
4878 else if (EQ (location, Qleft_margin))
4879 it->area = LEFT_MARGIN_AREA;
4880 else
4881 it->area = RIGHT_MARGIN_AREA;
4883 if (STRINGP (value))
4885 it->string = value;
4886 it->multibyte_p = STRING_MULTIBYTE (it->string);
4887 it->current.overlay_string_index = -1;
4888 IT_STRING_CHARPOS (*it) = IT_STRING_BYTEPOS (*it) = 0;
4889 it->end_charpos = it->string_nchars = SCHARS (it->string);
4890 it->method = GET_FROM_STRING;
4891 it->stop_charpos = 0;
4892 it->prev_stop = 0;
4893 it->base_level_stop = 0;
4894 it->string_from_display_prop_p = 1;
4895 /* Say that we haven't consumed the characters with
4896 `display' property yet. The call to pop_it in
4897 set_iterator_to_next will clean this up. */
4898 if (BUFFERP (object))
4899 *position = start_pos;
4901 /* Force paragraph direction to be that of the parent
4902 object. If the parent object's paragraph direction is
4903 not yet determined, default to L2R. */
4904 if (it->bidi_p && it->bidi_it.paragraph_dir == R2L)
4905 it->paragraph_embedding = it->bidi_it.paragraph_dir;
4906 else
4907 it->paragraph_embedding = L2R;
4909 /* Set up the bidi iterator for this display string. */
4910 if (it->bidi_p)
4912 it->bidi_it.string.lstring = it->string;
4913 it->bidi_it.string.s = NULL;
4914 it->bidi_it.string.schars = it->end_charpos;
4915 it->bidi_it.string.bufpos = bufpos;
4916 it->bidi_it.string.from_disp_str = 1;
4917 it->bidi_it.string.unibyte = !it->multibyte_p;
4918 bidi_init_it (0, 0, FRAME_WINDOW_P (it->f), &it->bidi_it);
4921 else if (CONSP (value) && EQ (XCAR (value), Qspace))
4923 it->method = GET_FROM_STRETCH;
4924 it->object = value;
4925 *position = it->position = start_pos;
4926 retval = 1 + (it->area == TEXT_AREA);
4928 #ifdef HAVE_WINDOW_SYSTEM
4929 else
4931 it->what = IT_IMAGE;
4932 it->image_id = lookup_image (it->f, value);
4933 it->position = start_pos;
4934 it->object = NILP (object) ? it->w->buffer : object;
4935 it->method = GET_FROM_IMAGE;
4937 /* Say that we haven't consumed the characters with
4938 `display' property yet. The call to pop_it in
4939 set_iterator_to_next will clean this up. */
4940 *position = start_pos;
4942 #endif /* HAVE_WINDOW_SYSTEM */
4944 return retval;
4947 /* Invalid property or property not supported. Restore
4948 POSITION to what it was before. */
4949 *position = start_pos;
4950 return 0;
4953 /* Check if PROP is a display property value whose text should be
4954 treated as intangible. OVERLAY is the overlay from which PROP
4955 came, or nil if it came from a text property. CHARPOS and BYTEPOS
4956 specify the buffer position covered by PROP. */
4959 display_prop_intangible_p (Lisp_Object prop, Lisp_Object overlay,
4960 ptrdiff_t charpos, ptrdiff_t bytepos)
4962 int frame_window_p = FRAME_WINDOW_P (XFRAME (selected_frame));
4963 struct text_pos position;
4965 SET_TEXT_POS (position, charpos, bytepos);
4966 return handle_display_spec (NULL, prop, Qnil, overlay,
4967 &position, charpos, frame_window_p);
4971 /* Return 1 if PROP is a display sub-property value containing STRING.
4973 Implementation note: this and the following function are really
4974 special cases of handle_display_spec and
4975 handle_single_display_spec, and should ideally use the same code.
4976 Until they do, these two pairs must be consistent and must be
4977 modified in sync. */
4979 static int
4980 single_display_spec_string_p (Lisp_Object prop, Lisp_Object string)
4982 if (EQ (string, prop))
4983 return 1;
4985 /* Skip over `when FORM'. */
4986 if (CONSP (prop) && EQ (XCAR (prop), Qwhen))
4988 prop = XCDR (prop);
4989 if (!CONSP (prop))
4990 return 0;
4991 /* Actually, the condition following `when' should be eval'ed,
4992 like handle_single_display_spec does, and we should return
4993 zero if it evaluates to nil. However, this function is
4994 called only when the buffer was already displayed and some
4995 glyph in the glyph matrix was found to come from a display
4996 string. Therefore, the condition was already evaluated, and
4997 the result was non-nil, otherwise the display string wouldn't
4998 have been displayed and we would have never been called for
4999 this property. Thus, we can skip the evaluation and assume
5000 its result is non-nil. */
5001 prop = XCDR (prop);
5004 if (CONSP (prop))
5005 /* Skip over `margin LOCATION'. */
5006 if (EQ (XCAR (prop), Qmargin))
5008 prop = XCDR (prop);
5009 if (!CONSP (prop))
5010 return 0;
5012 prop = XCDR (prop);
5013 if (!CONSP (prop))
5014 return 0;
5017 return EQ (prop, string) || (CONSP (prop) && EQ (XCAR (prop), string));
5021 /* Return 1 if STRING appears in the `display' property PROP. */
5023 static int
5024 display_prop_string_p (Lisp_Object prop, Lisp_Object string)
5026 if (CONSP (prop)
5027 && !EQ (XCAR (prop), Qwhen)
5028 && !(CONSP (XCAR (prop)) && EQ (Qmargin, XCAR (XCAR (prop)))))
5030 /* A list of sub-properties. */
5031 while (CONSP (prop))
5033 if (single_display_spec_string_p (XCAR (prop), string))
5034 return 1;
5035 prop = XCDR (prop);
5038 else if (VECTORP (prop))
5040 /* A vector of sub-properties. */
5041 ptrdiff_t i;
5042 for (i = 0; i < ASIZE (prop); ++i)
5043 if (single_display_spec_string_p (AREF (prop, i), string))
5044 return 1;
5046 else
5047 return single_display_spec_string_p (prop, string);
5049 return 0;
5052 /* Look for STRING in overlays and text properties in the current
5053 buffer, between character positions FROM and TO (excluding TO).
5054 BACK_P non-zero means look back (in this case, TO is supposed to be
5055 less than FROM).
5056 Value is the first character position where STRING was found, or
5057 zero if it wasn't found before hitting TO.
5059 This function may only use code that doesn't eval because it is
5060 called asynchronously from note_mouse_highlight. */
5062 static ptrdiff_t
5063 string_buffer_position_lim (Lisp_Object string,
5064 ptrdiff_t from, ptrdiff_t to, int back_p)
5066 Lisp_Object limit, prop, pos;
5067 int found = 0;
5069 pos = make_number (max (from, BEGV));
5071 if (!back_p) /* looking forward */
5073 limit = make_number (min (to, ZV));
5074 while (!found && !EQ (pos, limit))
5076 prop = Fget_char_property (pos, Qdisplay, Qnil);
5077 if (!NILP (prop) && display_prop_string_p (prop, string))
5078 found = 1;
5079 else
5080 pos = Fnext_single_char_property_change (pos, Qdisplay, Qnil,
5081 limit);
5084 else /* looking back */
5086 limit = make_number (max (to, BEGV));
5087 while (!found && !EQ (pos, limit))
5089 prop = Fget_char_property (pos, Qdisplay, Qnil);
5090 if (!NILP (prop) && display_prop_string_p (prop, string))
5091 found = 1;
5092 else
5093 pos = Fprevious_single_char_property_change (pos, Qdisplay, Qnil,
5094 limit);
5098 return found ? XINT (pos) : 0;
5101 /* Determine which buffer position in current buffer STRING comes from.
5102 AROUND_CHARPOS is an approximate position where it could come from.
5103 Value is the buffer position or 0 if it couldn't be determined.
5105 This function is necessary because we don't record buffer positions
5106 in glyphs generated from strings (to keep struct glyph small).
5107 This function may only use code that doesn't eval because it is
5108 called asynchronously from note_mouse_highlight. */
5110 static ptrdiff_t
5111 string_buffer_position (Lisp_Object string, ptrdiff_t around_charpos)
5113 const int MAX_DISTANCE = 1000;
5114 ptrdiff_t found = string_buffer_position_lim (string, around_charpos,
5115 around_charpos + MAX_DISTANCE,
5118 if (!found)
5119 found = string_buffer_position_lim (string, around_charpos,
5120 around_charpos - MAX_DISTANCE, 1);
5121 return found;
5126 /***********************************************************************
5127 `composition' property
5128 ***********************************************************************/
5130 /* Set up iterator IT from `composition' property at its current
5131 position. Called from handle_stop. */
5133 static enum prop_handled
5134 handle_composition_prop (struct it *it)
5136 Lisp_Object prop, string;
5137 ptrdiff_t pos, pos_byte, start, end;
5139 if (STRINGP (it->string))
5141 unsigned char *s;
5143 pos = IT_STRING_CHARPOS (*it);
5144 pos_byte = IT_STRING_BYTEPOS (*it);
5145 string = it->string;
5146 s = SDATA (string) + pos_byte;
5147 it->c = STRING_CHAR (s);
5149 else
5151 pos = IT_CHARPOS (*it);
5152 pos_byte = IT_BYTEPOS (*it);
5153 string = Qnil;
5154 it->c = FETCH_CHAR (pos_byte);
5157 /* If there's a valid composition and point is not inside of the
5158 composition (in the case that the composition is from the current
5159 buffer), draw a glyph composed from the composition components. */
5160 if (find_composition (pos, -1, &start, &end, &prop, string)
5161 && COMPOSITION_VALID_P (start, end, prop)
5162 && (STRINGP (it->string) || (PT <= start || PT >= end)))
5164 if (start < pos)
5165 /* As we can't handle this situation (perhaps font-lock added
5166 a new composition), we just return here hoping that next
5167 redisplay will detect this composition much earlier. */
5168 return HANDLED_NORMALLY;
5169 if (start != pos)
5171 if (STRINGP (it->string))
5172 pos_byte = string_char_to_byte (it->string, start);
5173 else
5174 pos_byte = CHAR_TO_BYTE (start);
5176 it->cmp_it.id = get_composition_id (start, pos_byte, end - start,
5177 prop, string);
5179 if (it->cmp_it.id >= 0)
5181 it->cmp_it.ch = -1;
5182 it->cmp_it.nchars = COMPOSITION_LENGTH (prop);
5183 it->cmp_it.nglyphs = -1;
5187 return HANDLED_NORMALLY;
5192 /***********************************************************************
5193 Overlay strings
5194 ***********************************************************************/
5196 /* The following structure is used to record overlay strings for
5197 later sorting in load_overlay_strings. */
5199 struct overlay_entry
5201 Lisp_Object overlay;
5202 Lisp_Object string;
5203 EMACS_INT priority;
5204 int after_string_p;
5208 /* Set up iterator IT from overlay strings at its current position.
5209 Called from handle_stop. */
5211 static enum prop_handled
5212 handle_overlay_change (struct it *it)
5214 if (!STRINGP (it->string) && get_overlay_strings (it, 0))
5215 return HANDLED_RECOMPUTE_PROPS;
5216 else
5217 return HANDLED_NORMALLY;
5221 /* Set up the next overlay string for delivery by IT, if there is an
5222 overlay string to deliver. Called by set_iterator_to_next when the
5223 end of the current overlay string is reached. If there are more
5224 overlay strings to display, IT->string and
5225 IT->current.overlay_string_index are set appropriately here.
5226 Otherwise IT->string is set to nil. */
5228 static void
5229 next_overlay_string (struct it *it)
5231 ++it->current.overlay_string_index;
5232 if (it->current.overlay_string_index == it->n_overlay_strings)
5234 /* No more overlay strings. Restore IT's settings to what
5235 they were before overlay strings were processed, and
5236 continue to deliver from current_buffer. */
5238 it->ellipsis_p = (it->stack[it->sp - 1].display_ellipsis_p != 0);
5239 pop_it (it);
5240 xassert (it->sp > 0
5241 || (NILP (it->string)
5242 && it->method == GET_FROM_BUFFER
5243 && it->stop_charpos >= BEGV
5244 && it->stop_charpos <= it->end_charpos));
5245 it->current.overlay_string_index = -1;
5246 it->n_overlay_strings = 0;
5247 it->overlay_strings_charpos = -1;
5248 /* If there's an empty display string on the stack, pop the
5249 stack, to resync the bidi iterator with IT's position. Such
5250 empty strings are pushed onto the stack in
5251 get_overlay_strings_1. */
5252 if (it->sp > 0 && STRINGP (it->string) && !SCHARS (it->string))
5253 pop_it (it);
5255 /* If we're at the end of the buffer, record that we have
5256 processed the overlay strings there already, so that
5257 next_element_from_buffer doesn't try it again. */
5258 if (NILP (it->string) && IT_CHARPOS (*it) >= it->end_charpos)
5259 it->overlay_strings_at_end_processed_p = 1;
5261 else
5263 /* There are more overlay strings to process. If
5264 IT->current.overlay_string_index has advanced to a position
5265 where we must load IT->overlay_strings with more strings, do
5266 it. We must load at the IT->overlay_strings_charpos where
5267 IT->n_overlay_strings was originally computed; when invisible
5268 text is present, this might not be IT_CHARPOS (Bug#7016). */
5269 int i = it->current.overlay_string_index % OVERLAY_STRING_CHUNK_SIZE;
5271 if (it->current.overlay_string_index && i == 0)
5272 load_overlay_strings (it, it->overlay_strings_charpos);
5274 /* Initialize IT to deliver display elements from the overlay
5275 string. */
5276 it->string = it->overlay_strings[i];
5277 it->multibyte_p = STRING_MULTIBYTE (it->string);
5278 SET_TEXT_POS (it->current.string_pos, 0, 0);
5279 it->method = GET_FROM_STRING;
5280 it->stop_charpos = 0;
5281 if (it->cmp_it.stop_pos >= 0)
5282 it->cmp_it.stop_pos = 0;
5283 it->prev_stop = 0;
5284 it->base_level_stop = 0;
5286 /* Set up the bidi iterator for this overlay string. */
5287 if (it->bidi_p)
5289 it->bidi_it.string.lstring = it->string;
5290 it->bidi_it.string.s = NULL;
5291 it->bidi_it.string.schars = SCHARS (it->string);
5292 it->bidi_it.string.bufpos = it->overlay_strings_charpos;
5293 it->bidi_it.string.from_disp_str = it->string_from_display_prop_p;
5294 it->bidi_it.string.unibyte = !it->multibyte_p;
5295 bidi_init_it (0, 0, FRAME_WINDOW_P (it->f), &it->bidi_it);
5299 CHECK_IT (it);
5303 /* Compare two overlay_entry structures E1 and E2. Used as a
5304 comparison function for qsort in load_overlay_strings. Overlay
5305 strings for the same position are sorted so that
5307 1. All after-strings come in front of before-strings, except
5308 when they come from the same overlay.
5310 2. Within after-strings, strings are sorted so that overlay strings
5311 from overlays with higher priorities come first.
5313 2. Within before-strings, strings are sorted so that overlay
5314 strings from overlays with higher priorities come last.
5316 Value is analogous to strcmp. */
5319 static int
5320 compare_overlay_entries (const void *e1, const void *e2)
5322 struct overlay_entry *entry1 = (struct overlay_entry *) e1;
5323 struct overlay_entry *entry2 = (struct overlay_entry *) e2;
5324 int result;
5326 if (entry1->after_string_p != entry2->after_string_p)
5328 /* Let after-strings appear in front of before-strings if
5329 they come from different overlays. */
5330 if (EQ (entry1->overlay, entry2->overlay))
5331 result = entry1->after_string_p ? 1 : -1;
5332 else
5333 result = entry1->after_string_p ? -1 : 1;
5335 else if (entry1->priority != entry2->priority)
5337 if (entry1->after_string_p)
5338 /* After-strings sorted in order of decreasing priority. */
5339 result = entry2->priority < entry1->priority ? -1 : 1;
5340 else
5341 /* Before-strings sorted in order of increasing priority. */
5342 result = entry1->priority < entry2->priority ? -1 : 1;
5344 else
5345 result = 0;
5347 return result;
5351 /* Load the vector IT->overlay_strings with overlay strings from IT's
5352 current buffer position, or from CHARPOS if that is > 0. Set
5353 IT->n_overlays to the total number of overlay strings found.
5355 Overlay strings are processed OVERLAY_STRING_CHUNK_SIZE strings at
5356 a time. On entry into load_overlay_strings,
5357 IT->current.overlay_string_index gives the number of overlay
5358 strings that have already been loaded by previous calls to this
5359 function.
5361 IT->add_overlay_start contains an additional overlay start
5362 position to consider for taking overlay strings from, if non-zero.
5363 This position comes into play when the overlay has an `invisible'
5364 property, and both before and after-strings. When we've skipped to
5365 the end of the overlay, because of its `invisible' property, we
5366 nevertheless want its before-string to appear.
5367 IT->add_overlay_start will contain the overlay start position
5368 in this case.
5370 Overlay strings are sorted so that after-string strings come in
5371 front of before-string strings. Within before and after-strings,
5372 strings are sorted by overlay priority. See also function
5373 compare_overlay_entries. */
5375 static void
5376 load_overlay_strings (struct it *it, ptrdiff_t charpos)
5378 Lisp_Object overlay, window, str, invisible;
5379 struct Lisp_Overlay *ov;
5380 ptrdiff_t start, end;
5381 ptrdiff_t size = 20;
5382 ptrdiff_t n = 0, i, j;
5383 int invis_p;
5384 struct overlay_entry *entries
5385 = (struct overlay_entry *) alloca (size * sizeof *entries);
5386 USE_SAFE_ALLOCA;
5388 if (charpos <= 0)
5389 charpos = IT_CHARPOS (*it);
5391 /* Append the overlay string STRING of overlay OVERLAY to vector
5392 `entries' which has size `size' and currently contains `n'
5393 elements. AFTER_P non-zero means STRING is an after-string of
5394 OVERLAY. */
5395 #define RECORD_OVERLAY_STRING(OVERLAY, STRING, AFTER_P) \
5396 do \
5398 Lisp_Object priority; \
5400 if (n == size) \
5402 struct overlay_entry *old = entries; \
5403 SAFE_NALLOCA (entries, 2, size); \
5404 memcpy (entries, old, size * sizeof *entries); \
5405 size *= 2; \
5408 entries[n].string = (STRING); \
5409 entries[n].overlay = (OVERLAY); \
5410 priority = Foverlay_get ((OVERLAY), Qpriority); \
5411 entries[n].priority = INTEGERP (priority) ? XINT (priority) : 0; \
5412 entries[n].after_string_p = (AFTER_P); \
5413 ++n; \
5415 while (0)
5417 /* Process overlay before the overlay center. */
5418 for (ov = current_buffer->overlays_before; ov; ov = ov->next)
5420 XSETMISC (overlay, ov);
5421 xassert (OVERLAYP (overlay));
5422 start = OVERLAY_POSITION (OVERLAY_START (overlay));
5423 end = OVERLAY_POSITION (OVERLAY_END (overlay));
5425 if (end < charpos)
5426 break;
5428 /* Skip this overlay if it doesn't start or end at IT's current
5429 position. */
5430 if (end != charpos && start != charpos)
5431 continue;
5433 /* Skip this overlay if it doesn't apply to IT->w. */
5434 window = Foverlay_get (overlay, Qwindow);
5435 if (WINDOWP (window) && XWINDOW (window) != it->w)
5436 continue;
5438 /* If the text ``under'' the overlay is invisible, both before-
5439 and after-strings from this overlay are visible; start and
5440 end position are indistinguishable. */
5441 invisible = Foverlay_get (overlay, Qinvisible);
5442 invis_p = TEXT_PROP_MEANS_INVISIBLE (invisible);
5444 /* If overlay has a non-empty before-string, record it. */
5445 if ((start == charpos || (end == charpos && invis_p))
5446 && (str = Foverlay_get (overlay, Qbefore_string), STRINGP (str))
5447 && SCHARS (str))
5448 RECORD_OVERLAY_STRING (overlay, str, 0);
5450 /* If overlay has a non-empty after-string, record it. */
5451 if ((end == charpos || (start == charpos && invis_p))
5452 && (str = Foverlay_get (overlay, Qafter_string), STRINGP (str))
5453 && SCHARS (str))
5454 RECORD_OVERLAY_STRING (overlay, str, 1);
5457 /* Process overlays after the overlay center. */
5458 for (ov = current_buffer->overlays_after; ov; ov = ov->next)
5460 XSETMISC (overlay, ov);
5461 xassert (OVERLAYP (overlay));
5462 start = OVERLAY_POSITION (OVERLAY_START (overlay));
5463 end = OVERLAY_POSITION (OVERLAY_END (overlay));
5465 if (start > charpos)
5466 break;
5468 /* Skip this overlay if it doesn't start or end at IT's current
5469 position. */
5470 if (end != charpos && start != charpos)
5471 continue;
5473 /* Skip this overlay if it doesn't apply to IT->w. */
5474 window = Foverlay_get (overlay, Qwindow);
5475 if (WINDOWP (window) && XWINDOW (window) != it->w)
5476 continue;
5478 /* If the text ``under'' the overlay is invisible, it has a zero
5479 dimension, and both before- and after-strings apply. */
5480 invisible = Foverlay_get (overlay, Qinvisible);
5481 invis_p = TEXT_PROP_MEANS_INVISIBLE (invisible);
5483 /* If overlay has a non-empty before-string, record it. */
5484 if ((start == charpos || (end == charpos && invis_p))
5485 && (str = Foverlay_get (overlay, Qbefore_string), STRINGP (str))
5486 && SCHARS (str))
5487 RECORD_OVERLAY_STRING (overlay, str, 0);
5489 /* If overlay has a non-empty after-string, record it. */
5490 if ((end == charpos || (start == charpos && invis_p))
5491 && (str = Foverlay_get (overlay, Qafter_string), STRINGP (str))
5492 && SCHARS (str))
5493 RECORD_OVERLAY_STRING (overlay, str, 1);
5496 #undef RECORD_OVERLAY_STRING
5498 /* Sort entries. */
5499 if (n > 1)
5500 qsort (entries, n, sizeof *entries, compare_overlay_entries);
5502 /* Record number of overlay strings, and where we computed it. */
5503 it->n_overlay_strings = n;
5504 it->overlay_strings_charpos = charpos;
5506 /* IT->current.overlay_string_index is the number of overlay strings
5507 that have already been consumed by IT. Copy some of the
5508 remaining overlay strings to IT->overlay_strings. */
5509 i = 0;
5510 j = it->current.overlay_string_index;
5511 while (i < OVERLAY_STRING_CHUNK_SIZE && j < n)
5513 it->overlay_strings[i] = entries[j].string;
5514 it->string_overlays[i++] = entries[j++].overlay;
5517 CHECK_IT (it);
5518 SAFE_FREE ();
5522 /* Get the first chunk of overlay strings at IT's current buffer
5523 position, or at CHARPOS if that is > 0. Value is non-zero if at
5524 least one overlay string was found. */
5526 static int
5527 get_overlay_strings_1 (struct it *it, ptrdiff_t charpos, int compute_stop_p)
5529 /* Get the first OVERLAY_STRING_CHUNK_SIZE overlay strings to
5530 process. This fills IT->overlay_strings with strings, and sets
5531 IT->n_overlay_strings to the total number of strings to process.
5532 IT->pos.overlay_string_index has to be set temporarily to zero
5533 because load_overlay_strings needs this; it must be set to -1
5534 when no overlay strings are found because a zero value would
5535 indicate a position in the first overlay string. */
5536 it->current.overlay_string_index = 0;
5537 load_overlay_strings (it, charpos);
5539 /* If we found overlay strings, set up IT to deliver display
5540 elements from the first one. Otherwise set up IT to deliver
5541 from current_buffer. */
5542 if (it->n_overlay_strings)
5544 /* Make sure we know settings in current_buffer, so that we can
5545 restore meaningful values when we're done with the overlay
5546 strings. */
5547 if (compute_stop_p)
5548 compute_stop_pos (it);
5549 xassert (it->face_id >= 0);
5551 /* Save IT's settings. They are restored after all overlay
5552 strings have been processed. */
5553 xassert (!compute_stop_p || it->sp == 0);
5555 /* When called from handle_stop, there might be an empty display
5556 string loaded. In that case, don't bother saving it. But
5557 don't use this optimization with the bidi iterator, since we
5558 need the corresponding pop_it call to resync the bidi
5559 iterator's position with IT's position, after we are done
5560 with the overlay strings. (The corresponding call to pop_it
5561 in case of an empty display string is in
5562 next_overlay_string.) */
5563 if (!(!it->bidi_p
5564 && STRINGP (it->string) && !SCHARS (it->string)))
5565 push_it (it, NULL);
5567 /* Set up IT to deliver display elements from the first overlay
5568 string. */
5569 IT_STRING_CHARPOS (*it) = IT_STRING_BYTEPOS (*it) = 0;
5570 it->string = it->overlay_strings[0];
5571 it->from_overlay = Qnil;
5572 it->stop_charpos = 0;
5573 xassert (STRINGP (it->string));
5574 it->end_charpos = SCHARS (it->string);
5575 it->prev_stop = 0;
5576 it->base_level_stop = 0;
5577 it->multibyte_p = STRING_MULTIBYTE (it->string);
5578 it->method = GET_FROM_STRING;
5579 it->from_disp_prop_p = 0;
5581 /* Force paragraph direction to be that of the parent
5582 buffer. */
5583 if (it->bidi_p && it->bidi_it.paragraph_dir == R2L)
5584 it->paragraph_embedding = it->bidi_it.paragraph_dir;
5585 else
5586 it->paragraph_embedding = L2R;
5588 /* Set up the bidi iterator for this overlay string. */
5589 if (it->bidi_p)
5591 ptrdiff_t pos = (charpos > 0 ? charpos : IT_CHARPOS (*it));
5593 it->bidi_it.string.lstring = it->string;
5594 it->bidi_it.string.s = NULL;
5595 it->bidi_it.string.schars = SCHARS (it->string);
5596 it->bidi_it.string.bufpos = pos;
5597 it->bidi_it.string.from_disp_str = it->string_from_display_prop_p;
5598 it->bidi_it.string.unibyte = !it->multibyte_p;
5599 bidi_init_it (0, 0, FRAME_WINDOW_P (it->f), &it->bidi_it);
5601 return 1;
5604 it->current.overlay_string_index = -1;
5605 return 0;
5608 static int
5609 get_overlay_strings (struct it *it, ptrdiff_t charpos)
5611 it->string = Qnil;
5612 it->method = GET_FROM_BUFFER;
5614 (void) get_overlay_strings_1 (it, charpos, 1);
5616 CHECK_IT (it);
5618 /* Value is non-zero if we found at least one overlay string. */
5619 return STRINGP (it->string);
5624 /***********************************************************************
5625 Saving and restoring state
5626 ***********************************************************************/
5628 /* Save current settings of IT on IT->stack. Called, for example,
5629 before setting up IT for an overlay string, to be able to restore
5630 IT's settings to what they were after the overlay string has been
5631 processed. If POSITION is non-NULL, it is the position to save on
5632 the stack instead of IT->position. */
5634 static void
5635 push_it (struct it *it, struct text_pos *position)
5637 struct iterator_stack_entry *p;
5639 xassert (it->sp < IT_STACK_SIZE);
5640 p = it->stack + it->sp;
5642 p->stop_charpos = it->stop_charpos;
5643 p->prev_stop = it->prev_stop;
5644 p->base_level_stop = it->base_level_stop;
5645 p->cmp_it = it->cmp_it;
5646 xassert (it->face_id >= 0);
5647 p->face_id = it->face_id;
5648 p->string = it->string;
5649 p->method = it->method;
5650 p->from_overlay = it->from_overlay;
5651 switch (p->method)
5653 case GET_FROM_IMAGE:
5654 p->u.image.object = it->object;
5655 p->u.image.image_id = it->image_id;
5656 p->u.image.slice = it->slice;
5657 break;
5658 case GET_FROM_STRETCH:
5659 p->u.stretch.object = it->object;
5660 break;
5662 p->position = position ? *position : it->position;
5663 p->current = it->current;
5664 p->end_charpos = it->end_charpos;
5665 p->string_nchars = it->string_nchars;
5666 p->area = it->area;
5667 p->multibyte_p = it->multibyte_p;
5668 p->avoid_cursor_p = it->avoid_cursor_p;
5669 p->space_width = it->space_width;
5670 p->font_height = it->font_height;
5671 p->voffset = it->voffset;
5672 p->string_from_display_prop_p = it->string_from_display_prop_p;
5673 p->string_from_prefix_prop_p = it->string_from_prefix_prop_p;
5674 p->display_ellipsis_p = 0;
5675 p->line_wrap = it->line_wrap;
5676 p->bidi_p = it->bidi_p;
5677 p->paragraph_embedding = it->paragraph_embedding;
5678 p->from_disp_prop_p = it->from_disp_prop_p;
5679 ++it->sp;
5681 /* Save the state of the bidi iterator as well. */
5682 if (it->bidi_p)
5683 bidi_push_it (&it->bidi_it);
5686 static void
5687 iterate_out_of_display_property (struct it *it)
5689 int buffer_p = !STRINGP (it->string);
5690 ptrdiff_t eob = (buffer_p ? ZV : it->end_charpos);
5691 ptrdiff_t bob = (buffer_p ? BEGV : 0);
5693 xassert (eob >= CHARPOS (it->position) && CHARPOS (it->position) >= bob);
5695 /* Maybe initialize paragraph direction. If we are at the beginning
5696 of a new paragraph, next_element_from_buffer may not have a
5697 chance to do that. */
5698 if (it->bidi_it.first_elt && it->bidi_it.charpos < eob)
5699 bidi_paragraph_init (it->paragraph_embedding, &it->bidi_it, 1);
5700 /* prev_stop can be zero, so check against BEGV as well. */
5701 while (it->bidi_it.charpos >= bob
5702 && it->prev_stop <= it->bidi_it.charpos
5703 && it->bidi_it.charpos < CHARPOS (it->position)
5704 && it->bidi_it.charpos < eob)
5705 bidi_move_to_visually_next (&it->bidi_it);
5706 /* Record the stop_pos we just crossed, for when we cross it
5707 back, maybe. */
5708 if (it->bidi_it.charpos > CHARPOS (it->position))
5709 it->prev_stop = CHARPOS (it->position);
5710 /* If we ended up not where pop_it put us, resync IT's
5711 positional members with the bidi iterator. */
5712 if (it->bidi_it.charpos != CHARPOS (it->position))
5713 SET_TEXT_POS (it->position, it->bidi_it.charpos, it->bidi_it.bytepos);
5714 if (buffer_p)
5715 it->current.pos = it->position;
5716 else
5717 it->current.string_pos = it->position;
5720 /* Restore IT's settings from IT->stack. Called, for example, when no
5721 more overlay strings must be processed, and we return to delivering
5722 display elements from a buffer, or when the end of a string from a
5723 `display' property is reached and we return to delivering display
5724 elements from an overlay string, or from a buffer. */
5726 static void
5727 pop_it (struct it *it)
5729 struct iterator_stack_entry *p;
5730 int from_display_prop = it->from_disp_prop_p;
5732 xassert (it->sp > 0);
5733 --it->sp;
5734 p = it->stack + it->sp;
5735 it->stop_charpos = p->stop_charpos;
5736 it->prev_stop = p->prev_stop;
5737 it->base_level_stop = p->base_level_stop;
5738 it->cmp_it = p->cmp_it;
5739 it->face_id = p->face_id;
5740 it->current = p->current;
5741 it->position = p->position;
5742 it->string = p->string;
5743 it->from_overlay = p->from_overlay;
5744 if (NILP (it->string))
5745 SET_TEXT_POS (it->current.string_pos, -1, -1);
5746 it->method = p->method;
5747 switch (it->method)
5749 case GET_FROM_IMAGE:
5750 it->image_id = p->u.image.image_id;
5751 it->object = p->u.image.object;
5752 it->slice = p->u.image.slice;
5753 break;
5754 case GET_FROM_STRETCH:
5755 it->object = p->u.stretch.object;
5756 break;
5757 case GET_FROM_BUFFER:
5758 it->object = it->w->buffer;
5759 break;
5760 case GET_FROM_STRING:
5761 it->object = it->string;
5762 break;
5763 case GET_FROM_DISPLAY_VECTOR:
5764 if (it->s)
5765 it->method = GET_FROM_C_STRING;
5766 else if (STRINGP (it->string))
5767 it->method = GET_FROM_STRING;
5768 else
5770 it->method = GET_FROM_BUFFER;
5771 it->object = it->w->buffer;
5774 it->end_charpos = p->end_charpos;
5775 it->string_nchars = p->string_nchars;
5776 it->area = p->area;
5777 it->multibyte_p = p->multibyte_p;
5778 it->avoid_cursor_p = p->avoid_cursor_p;
5779 it->space_width = p->space_width;
5780 it->font_height = p->font_height;
5781 it->voffset = p->voffset;
5782 it->string_from_display_prop_p = p->string_from_display_prop_p;
5783 it->string_from_prefix_prop_p = p->string_from_prefix_prop_p;
5784 it->line_wrap = p->line_wrap;
5785 it->bidi_p = p->bidi_p;
5786 it->paragraph_embedding = p->paragraph_embedding;
5787 it->from_disp_prop_p = p->from_disp_prop_p;
5788 if (it->bidi_p)
5790 bidi_pop_it (&it->bidi_it);
5791 /* Bidi-iterate until we get out of the portion of text, if any,
5792 covered by a `display' text property or by an overlay with
5793 `display' property. (We cannot just jump there, because the
5794 internal coherency of the bidi iterator state can not be
5795 preserved across such jumps.) We also must determine the
5796 paragraph base direction if the overlay we just processed is
5797 at the beginning of a new paragraph. */
5798 if (from_display_prop
5799 && (it->method == GET_FROM_BUFFER || it->method == GET_FROM_STRING))
5800 iterate_out_of_display_property (it);
5802 xassert ((BUFFERP (it->object)
5803 && IT_CHARPOS (*it) == it->bidi_it.charpos
5804 && IT_BYTEPOS (*it) == it->bidi_it.bytepos)
5805 || (STRINGP (it->object)
5806 && IT_STRING_CHARPOS (*it) == it->bidi_it.charpos
5807 && IT_STRING_BYTEPOS (*it) == it->bidi_it.bytepos)
5808 || (CONSP (it->object) && it->method == GET_FROM_STRETCH));
5814 /***********************************************************************
5815 Moving over lines
5816 ***********************************************************************/
5818 /* Set IT's current position to the previous line start. */
5820 static void
5821 back_to_previous_line_start (struct it *it)
5823 IT_CHARPOS (*it) = find_next_newline_no_quit (IT_CHARPOS (*it) - 1, -1);
5824 IT_BYTEPOS (*it) = CHAR_TO_BYTE (IT_CHARPOS (*it));
5828 /* Move IT to the next line start.
5830 Value is non-zero if a newline was found. Set *SKIPPED_P to 1 if
5831 we skipped over part of the text (as opposed to moving the iterator
5832 continuously over the text). Otherwise, don't change the value
5833 of *SKIPPED_P.
5835 If BIDI_IT_PREV is non-NULL, store into it the state of the bidi
5836 iterator on the newline, if it was found.
5838 Newlines may come from buffer text, overlay strings, or strings
5839 displayed via the `display' property. That's the reason we can't
5840 simply use find_next_newline_no_quit.
5842 Note that this function may not skip over invisible text that is so
5843 because of text properties and immediately follows a newline. If
5844 it would, function reseat_at_next_visible_line_start, when called
5845 from set_iterator_to_next, would effectively make invisible
5846 characters following a newline part of the wrong glyph row, which
5847 leads to wrong cursor motion. */
5849 static int
5850 forward_to_next_line_start (struct it *it, int *skipped_p,
5851 struct bidi_it *bidi_it_prev)
5853 ptrdiff_t old_selective;
5854 int newline_found_p, n;
5855 const int MAX_NEWLINE_DISTANCE = 500;
5857 /* If already on a newline, just consume it to avoid unintended
5858 skipping over invisible text below. */
5859 if (it->what == IT_CHARACTER
5860 && it->c == '\n'
5861 && CHARPOS (it->position) == IT_CHARPOS (*it))
5863 if (it->bidi_p && bidi_it_prev)
5864 *bidi_it_prev = it->bidi_it;
5865 set_iterator_to_next (it, 0);
5866 it->c = 0;
5867 return 1;
5870 /* Don't handle selective display in the following. It's (a)
5871 unnecessary because it's done by the caller, and (b) leads to an
5872 infinite recursion because next_element_from_ellipsis indirectly
5873 calls this function. */
5874 old_selective = it->selective;
5875 it->selective = 0;
5877 /* Scan for a newline within MAX_NEWLINE_DISTANCE display elements
5878 from buffer text. */
5879 for (n = newline_found_p = 0;
5880 !newline_found_p && n < MAX_NEWLINE_DISTANCE;
5881 n += STRINGP (it->string) ? 0 : 1)
5883 if (!get_next_display_element (it))
5884 return 0;
5885 newline_found_p = it->what == IT_CHARACTER && it->c == '\n';
5886 if (newline_found_p && it->bidi_p && bidi_it_prev)
5887 *bidi_it_prev = it->bidi_it;
5888 set_iterator_to_next (it, 0);
5891 /* If we didn't find a newline near enough, see if we can use a
5892 short-cut. */
5893 if (!newline_found_p)
5895 ptrdiff_t start = IT_CHARPOS (*it);
5896 ptrdiff_t limit = find_next_newline_no_quit (start, 1);
5897 Lisp_Object pos;
5899 xassert (!STRINGP (it->string));
5901 /* If there isn't any `display' property in sight, and no
5902 overlays, we can just use the position of the newline in
5903 buffer text. */
5904 if (it->stop_charpos >= limit
5905 || ((pos = Fnext_single_property_change (make_number (start),
5906 Qdisplay, Qnil,
5907 make_number (limit)),
5908 NILP (pos))
5909 && next_overlay_change (start) == ZV))
5911 if (!it->bidi_p)
5913 IT_CHARPOS (*it) = limit;
5914 IT_BYTEPOS (*it) = CHAR_TO_BYTE (limit);
5916 else
5918 struct bidi_it bprev;
5920 /* Help bidi.c avoid expensive searches for display
5921 properties and overlays, by telling it that there are
5922 none up to `limit'. */
5923 if (it->bidi_it.disp_pos < limit)
5925 it->bidi_it.disp_pos = limit;
5926 it->bidi_it.disp_prop = 0;
5928 do {
5929 bprev = it->bidi_it;
5930 bidi_move_to_visually_next (&it->bidi_it);
5931 } while (it->bidi_it.charpos != limit);
5932 IT_CHARPOS (*it) = limit;
5933 IT_BYTEPOS (*it) = it->bidi_it.bytepos;
5934 if (bidi_it_prev)
5935 *bidi_it_prev = bprev;
5937 *skipped_p = newline_found_p = 1;
5939 else
5941 while (get_next_display_element (it)
5942 && !newline_found_p)
5944 newline_found_p = ITERATOR_AT_END_OF_LINE_P (it);
5945 if (newline_found_p && it->bidi_p && bidi_it_prev)
5946 *bidi_it_prev = it->bidi_it;
5947 set_iterator_to_next (it, 0);
5952 it->selective = old_selective;
5953 return newline_found_p;
5957 /* Set IT's current position to the previous visible line start. Skip
5958 invisible text that is so either due to text properties or due to
5959 selective display. Caution: this does not change IT->current_x and
5960 IT->hpos. */
5962 static void
5963 back_to_previous_visible_line_start (struct it *it)
5965 while (IT_CHARPOS (*it) > BEGV)
5967 back_to_previous_line_start (it);
5969 if (IT_CHARPOS (*it) <= BEGV)
5970 break;
5972 /* If selective > 0, then lines indented more than its value are
5973 invisible. */
5974 if (it->selective > 0
5975 && indented_beyond_p (IT_CHARPOS (*it), IT_BYTEPOS (*it),
5976 it->selective))
5977 continue;
5979 /* Check the newline before point for invisibility. */
5981 Lisp_Object prop;
5982 prop = Fget_char_property (make_number (IT_CHARPOS (*it) - 1),
5983 Qinvisible, it->window);
5984 if (TEXT_PROP_MEANS_INVISIBLE (prop))
5985 continue;
5988 if (IT_CHARPOS (*it) <= BEGV)
5989 break;
5992 struct it it2;
5993 void *it2data = NULL;
5994 ptrdiff_t pos;
5995 ptrdiff_t beg, end;
5996 Lisp_Object val, overlay;
5998 SAVE_IT (it2, *it, it2data);
6000 /* If newline is part of a composition, continue from start of composition */
6001 if (find_composition (IT_CHARPOS (*it), -1, &beg, &end, &val, Qnil)
6002 && beg < IT_CHARPOS (*it))
6003 goto replaced;
6005 /* If newline is replaced by a display property, find start of overlay
6006 or interval and continue search from that point. */
6007 pos = --IT_CHARPOS (it2);
6008 --IT_BYTEPOS (it2);
6009 it2.sp = 0;
6010 bidi_unshelve_cache (NULL, 0);
6011 it2.string_from_display_prop_p = 0;
6012 it2.from_disp_prop_p = 0;
6013 if (handle_display_prop (&it2) == HANDLED_RETURN
6014 && !NILP (val = get_char_property_and_overlay
6015 (make_number (pos), Qdisplay, Qnil, &overlay))
6016 && (OVERLAYP (overlay)
6017 ? (beg = OVERLAY_POSITION (OVERLAY_START (overlay)))
6018 : get_property_and_range (pos, Qdisplay, &val, &beg, &end, Qnil)))
6020 RESTORE_IT (it, it, it2data);
6021 goto replaced;
6024 /* Newline is not replaced by anything -- so we are done. */
6025 RESTORE_IT (it, it, it2data);
6026 break;
6028 replaced:
6029 if (beg < BEGV)
6030 beg = BEGV;
6031 IT_CHARPOS (*it) = beg;
6032 IT_BYTEPOS (*it) = buf_charpos_to_bytepos (current_buffer, beg);
6036 it->continuation_lines_width = 0;
6038 xassert (IT_CHARPOS (*it) >= BEGV);
6039 xassert (IT_CHARPOS (*it) == BEGV
6040 || FETCH_BYTE (IT_BYTEPOS (*it) - 1) == '\n');
6041 CHECK_IT (it);
6045 /* Reseat iterator IT at the previous visible line start. Skip
6046 invisible text that is so either due to text properties or due to
6047 selective display. At the end, update IT's overlay information,
6048 face information etc. */
6050 void
6051 reseat_at_previous_visible_line_start (struct it *it)
6053 back_to_previous_visible_line_start (it);
6054 reseat (it, it->current.pos, 1);
6055 CHECK_IT (it);
6059 /* Reseat iterator IT on the next visible line start in the current
6060 buffer. ON_NEWLINE_P non-zero means position IT on the newline
6061 preceding the line start. Skip over invisible text that is so
6062 because of selective display. Compute faces, overlays etc at the
6063 new position. Note that this function does not skip over text that
6064 is invisible because of text properties. */
6066 static void
6067 reseat_at_next_visible_line_start (struct it *it, int on_newline_p)
6069 int newline_found_p, skipped_p = 0;
6070 struct bidi_it bidi_it_prev;
6072 newline_found_p = forward_to_next_line_start (it, &skipped_p, &bidi_it_prev);
6074 /* Skip over lines that are invisible because they are indented
6075 more than the value of IT->selective. */
6076 if (it->selective > 0)
6077 while (IT_CHARPOS (*it) < ZV
6078 && indented_beyond_p (IT_CHARPOS (*it), IT_BYTEPOS (*it),
6079 it->selective))
6081 xassert (IT_BYTEPOS (*it) == BEGV
6082 || FETCH_BYTE (IT_BYTEPOS (*it) - 1) == '\n');
6083 newline_found_p =
6084 forward_to_next_line_start (it, &skipped_p, &bidi_it_prev);
6087 /* Position on the newline if that's what's requested. */
6088 if (on_newline_p && newline_found_p)
6090 if (STRINGP (it->string))
6092 if (IT_STRING_CHARPOS (*it) > 0)
6094 if (!it->bidi_p)
6096 --IT_STRING_CHARPOS (*it);
6097 --IT_STRING_BYTEPOS (*it);
6099 else
6101 /* We need to restore the bidi iterator to the state
6102 it had on the newline, and resync the IT's
6103 position with that. */
6104 it->bidi_it = bidi_it_prev;
6105 IT_STRING_CHARPOS (*it) = it->bidi_it.charpos;
6106 IT_STRING_BYTEPOS (*it) = it->bidi_it.bytepos;
6110 else if (IT_CHARPOS (*it) > BEGV)
6112 if (!it->bidi_p)
6114 --IT_CHARPOS (*it);
6115 --IT_BYTEPOS (*it);
6117 else
6119 /* We need to restore the bidi iterator to the state it
6120 had on the newline and resync IT with that. */
6121 it->bidi_it = bidi_it_prev;
6122 IT_CHARPOS (*it) = it->bidi_it.charpos;
6123 IT_BYTEPOS (*it) = it->bidi_it.bytepos;
6125 reseat (it, it->current.pos, 0);
6128 else if (skipped_p)
6129 reseat (it, it->current.pos, 0);
6131 CHECK_IT (it);
6136 /***********************************************************************
6137 Changing an iterator's position
6138 ***********************************************************************/
6140 /* Change IT's current position to POS in current_buffer. If FORCE_P
6141 is non-zero, always check for text properties at the new position.
6142 Otherwise, text properties are only looked up if POS >=
6143 IT->check_charpos of a property. */
6145 static void
6146 reseat (struct it *it, struct text_pos pos, int force_p)
6148 ptrdiff_t original_pos = IT_CHARPOS (*it);
6150 reseat_1 (it, pos, 0);
6152 /* Determine where to check text properties. Avoid doing it
6153 where possible because text property lookup is very expensive. */
6154 if (force_p
6155 || CHARPOS (pos) > it->stop_charpos
6156 || CHARPOS (pos) < original_pos)
6158 if (it->bidi_p)
6160 /* For bidi iteration, we need to prime prev_stop and
6161 base_level_stop with our best estimations. */
6162 /* Implementation note: Of course, POS is not necessarily a
6163 stop position, so assigning prev_pos to it is a lie; we
6164 should have called compute_stop_backwards. However, if
6165 the current buffer does not include any R2L characters,
6166 that call would be a waste of cycles, because the
6167 iterator will never move back, and thus never cross this
6168 "fake" stop position. So we delay that backward search
6169 until the time we really need it, in next_element_from_buffer. */
6170 if (CHARPOS (pos) != it->prev_stop)
6171 it->prev_stop = CHARPOS (pos);
6172 if (CHARPOS (pos) < it->base_level_stop)
6173 it->base_level_stop = 0; /* meaning it's unknown */
6174 handle_stop (it);
6176 else
6178 handle_stop (it);
6179 it->prev_stop = it->base_level_stop = 0;
6184 CHECK_IT (it);
6188 /* Change IT's buffer position to POS. SET_STOP_P non-zero means set
6189 IT->stop_pos to POS, also. */
6191 static void
6192 reseat_1 (struct it *it, struct text_pos pos, int set_stop_p)
6194 /* Don't call this function when scanning a C string. */
6195 xassert (it->s == NULL);
6197 /* POS must be a reasonable value. */
6198 xassert (CHARPOS (pos) >= BEGV && CHARPOS (pos) <= ZV);
6200 it->current.pos = it->position = pos;
6201 it->end_charpos = ZV;
6202 it->dpvec = NULL;
6203 it->current.dpvec_index = -1;
6204 it->current.overlay_string_index = -1;
6205 IT_STRING_CHARPOS (*it) = -1;
6206 IT_STRING_BYTEPOS (*it) = -1;
6207 it->string = Qnil;
6208 it->method = GET_FROM_BUFFER;
6209 it->object = it->w->buffer;
6210 it->area = TEXT_AREA;
6211 it->multibyte_p = !NILP (BVAR (current_buffer, enable_multibyte_characters));
6212 it->sp = 0;
6213 it->string_from_display_prop_p = 0;
6214 it->string_from_prefix_prop_p = 0;
6216 it->from_disp_prop_p = 0;
6217 it->face_before_selective_p = 0;
6218 if (it->bidi_p)
6220 bidi_init_it (IT_CHARPOS (*it), IT_BYTEPOS (*it), FRAME_WINDOW_P (it->f),
6221 &it->bidi_it);
6222 bidi_unshelve_cache (NULL, 0);
6223 it->bidi_it.paragraph_dir = NEUTRAL_DIR;
6224 it->bidi_it.string.s = NULL;
6225 it->bidi_it.string.lstring = Qnil;
6226 it->bidi_it.string.bufpos = 0;
6227 it->bidi_it.string.unibyte = 0;
6230 if (set_stop_p)
6232 it->stop_charpos = CHARPOS (pos);
6233 it->base_level_stop = CHARPOS (pos);
6238 /* Set up IT for displaying a string, starting at CHARPOS in window W.
6239 If S is non-null, it is a C string to iterate over. Otherwise,
6240 STRING gives a Lisp string to iterate over.
6242 If PRECISION > 0, don't return more then PRECISION number of
6243 characters from the string.
6245 If FIELD_WIDTH > 0, return padding spaces until FIELD_WIDTH
6246 characters have been returned. FIELD_WIDTH < 0 means an infinite
6247 field width.
6249 MULTIBYTE = 0 means disable processing of multibyte characters,
6250 MULTIBYTE > 0 means enable it,
6251 MULTIBYTE < 0 means use IT->multibyte_p.
6253 IT must be initialized via a prior call to init_iterator before
6254 calling this function. */
6256 static void
6257 reseat_to_string (struct it *it, const char *s, Lisp_Object string,
6258 ptrdiff_t charpos, ptrdiff_t precision, int field_width,
6259 int multibyte)
6261 /* No region in strings. */
6262 it->region_beg_charpos = it->region_end_charpos = -1;
6264 /* No text property checks performed by default, but see below. */
6265 it->stop_charpos = -1;
6267 /* Set iterator position and end position. */
6268 memset (&it->current, 0, sizeof it->current);
6269 it->current.overlay_string_index = -1;
6270 it->current.dpvec_index = -1;
6271 xassert (charpos >= 0);
6273 /* If STRING is specified, use its multibyteness, otherwise use the
6274 setting of MULTIBYTE, if specified. */
6275 if (multibyte >= 0)
6276 it->multibyte_p = multibyte > 0;
6278 /* Bidirectional reordering of strings is controlled by the default
6279 value of bidi-display-reordering. Don't try to reorder while
6280 loading loadup.el, as the necessary character property tables are
6281 not yet available. */
6282 it->bidi_p =
6283 NILP (Vpurify_flag)
6284 && !NILP (BVAR (&buffer_defaults, bidi_display_reordering));
6286 if (s == NULL)
6288 xassert (STRINGP (string));
6289 it->string = string;
6290 it->s = NULL;
6291 it->end_charpos = it->string_nchars = SCHARS (string);
6292 it->method = GET_FROM_STRING;
6293 it->current.string_pos = string_pos (charpos, string);
6295 if (it->bidi_p)
6297 it->bidi_it.string.lstring = string;
6298 it->bidi_it.string.s = NULL;
6299 it->bidi_it.string.schars = it->end_charpos;
6300 it->bidi_it.string.bufpos = 0;
6301 it->bidi_it.string.from_disp_str = 0;
6302 it->bidi_it.string.unibyte = !it->multibyte_p;
6303 bidi_init_it (charpos, IT_STRING_BYTEPOS (*it),
6304 FRAME_WINDOW_P (it->f), &it->bidi_it);
6307 else
6309 it->s = (const unsigned char *) s;
6310 it->string = Qnil;
6312 /* Note that we use IT->current.pos, not it->current.string_pos,
6313 for displaying C strings. */
6314 IT_STRING_CHARPOS (*it) = IT_STRING_BYTEPOS (*it) = -1;
6315 if (it->multibyte_p)
6317 it->current.pos = c_string_pos (charpos, s, 1);
6318 it->end_charpos = it->string_nchars = number_of_chars (s, 1);
6320 else
6322 IT_CHARPOS (*it) = IT_BYTEPOS (*it) = charpos;
6323 it->end_charpos = it->string_nchars = strlen (s);
6326 if (it->bidi_p)
6328 it->bidi_it.string.lstring = Qnil;
6329 it->bidi_it.string.s = (const unsigned char *) s;
6330 it->bidi_it.string.schars = it->end_charpos;
6331 it->bidi_it.string.bufpos = 0;
6332 it->bidi_it.string.from_disp_str = 0;
6333 it->bidi_it.string.unibyte = !it->multibyte_p;
6334 bidi_init_it (charpos, IT_BYTEPOS (*it), FRAME_WINDOW_P (it->f),
6335 &it->bidi_it);
6337 it->method = GET_FROM_C_STRING;
6340 /* PRECISION > 0 means don't return more than PRECISION characters
6341 from the string. */
6342 if (precision > 0 && it->end_charpos - charpos > precision)
6344 it->end_charpos = it->string_nchars = charpos + precision;
6345 if (it->bidi_p)
6346 it->bidi_it.string.schars = it->end_charpos;
6349 /* FIELD_WIDTH > 0 means pad with spaces until FIELD_WIDTH
6350 characters have been returned. FIELD_WIDTH == 0 means don't pad,
6351 FIELD_WIDTH < 0 means infinite field width. This is useful for
6352 padding with `-' at the end of a mode line. */
6353 if (field_width < 0)
6354 field_width = INFINITY;
6355 /* Implementation note: We deliberately don't enlarge
6356 it->bidi_it.string.schars here to fit it->end_charpos, because
6357 the bidi iterator cannot produce characters out of thin air. */
6358 if (field_width > it->end_charpos - charpos)
6359 it->end_charpos = charpos + field_width;
6361 /* Use the standard display table for displaying strings. */
6362 if (DISP_TABLE_P (Vstandard_display_table))
6363 it->dp = XCHAR_TABLE (Vstandard_display_table);
6365 it->stop_charpos = charpos;
6366 it->prev_stop = charpos;
6367 it->base_level_stop = 0;
6368 if (it->bidi_p)
6370 it->bidi_it.first_elt = 1;
6371 it->bidi_it.paragraph_dir = NEUTRAL_DIR;
6372 it->bidi_it.disp_pos = -1;
6374 if (s == NULL && it->multibyte_p)
6376 ptrdiff_t endpos = SCHARS (it->string);
6377 if (endpos > it->end_charpos)
6378 endpos = it->end_charpos;
6379 composition_compute_stop_pos (&it->cmp_it, charpos, -1, endpos,
6380 it->string);
6382 CHECK_IT (it);
6387 /***********************************************************************
6388 Iteration
6389 ***********************************************************************/
6391 /* Map enum it_method value to corresponding next_element_from_* function. */
6393 static int (* get_next_element[NUM_IT_METHODS]) (struct it *it) =
6395 next_element_from_buffer,
6396 next_element_from_display_vector,
6397 next_element_from_string,
6398 next_element_from_c_string,
6399 next_element_from_image,
6400 next_element_from_stretch
6403 #define GET_NEXT_DISPLAY_ELEMENT(it) (*get_next_element[(it)->method]) (it)
6406 /* Return 1 iff a character at CHARPOS (and BYTEPOS) is composed
6407 (possibly with the following characters). */
6409 #define CHAR_COMPOSED_P(IT,CHARPOS,BYTEPOS,END_CHARPOS) \
6410 ((IT)->cmp_it.id >= 0 \
6411 || ((IT)->cmp_it.stop_pos == (CHARPOS) \
6412 && composition_reseat_it (&(IT)->cmp_it, CHARPOS, BYTEPOS, \
6413 END_CHARPOS, (IT)->w, \
6414 FACE_FROM_ID ((IT)->f, (IT)->face_id), \
6415 (IT)->string)))
6418 /* Lookup the char-table Vglyphless_char_display for character C (-1
6419 if we want information for no-font case), and return the display
6420 method symbol. By side-effect, update it->what and
6421 it->glyphless_method. This function is called from
6422 get_next_display_element for each character element, and from
6423 x_produce_glyphs when no suitable font was found. */
6425 Lisp_Object
6426 lookup_glyphless_char_display (int c, struct it *it)
6428 Lisp_Object glyphless_method = Qnil;
6430 if (CHAR_TABLE_P (Vglyphless_char_display)
6431 && CHAR_TABLE_EXTRA_SLOTS (XCHAR_TABLE (Vglyphless_char_display)) >= 1)
6433 if (c >= 0)
6435 glyphless_method = CHAR_TABLE_REF (Vglyphless_char_display, c);
6436 if (CONSP (glyphless_method))
6437 glyphless_method = FRAME_WINDOW_P (it->f)
6438 ? XCAR (glyphless_method)
6439 : XCDR (glyphless_method);
6441 else
6442 glyphless_method = XCHAR_TABLE (Vglyphless_char_display)->extras[0];
6445 retry:
6446 if (NILP (glyphless_method))
6448 if (c >= 0)
6449 /* The default is to display the character by a proper font. */
6450 return Qnil;
6451 /* The default for the no-font case is to display an empty box. */
6452 glyphless_method = Qempty_box;
6454 if (EQ (glyphless_method, Qzero_width))
6456 if (c >= 0)
6457 return glyphless_method;
6458 /* This method can't be used for the no-font case. */
6459 glyphless_method = Qempty_box;
6461 if (EQ (glyphless_method, Qthin_space))
6462 it->glyphless_method = GLYPHLESS_DISPLAY_THIN_SPACE;
6463 else if (EQ (glyphless_method, Qempty_box))
6464 it->glyphless_method = GLYPHLESS_DISPLAY_EMPTY_BOX;
6465 else if (EQ (glyphless_method, Qhex_code))
6466 it->glyphless_method = GLYPHLESS_DISPLAY_HEX_CODE;
6467 else if (STRINGP (glyphless_method))
6468 it->glyphless_method = GLYPHLESS_DISPLAY_ACRONYM;
6469 else
6471 /* Invalid value. We use the default method. */
6472 glyphless_method = Qnil;
6473 goto retry;
6475 it->what = IT_GLYPHLESS;
6476 return glyphless_method;
6479 /* Load IT's display element fields with information about the next
6480 display element from the current position of IT. Value is zero if
6481 end of buffer (or C string) is reached. */
6483 static struct frame *last_escape_glyph_frame = NULL;
6484 static int last_escape_glyph_face_id = (1 << FACE_ID_BITS);
6485 static int last_escape_glyph_merged_face_id = 0;
6487 struct frame *last_glyphless_glyph_frame = NULL;
6488 int last_glyphless_glyph_face_id = (1 << FACE_ID_BITS);
6489 int last_glyphless_glyph_merged_face_id = 0;
6491 static int
6492 get_next_display_element (struct it *it)
6494 /* Non-zero means that we found a display element. Zero means that
6495 we hit the end of what we iterate over. Performance note: the
6496 function pointer `method' used here turns out to be faster than
6497 using a sequence of if-statements. */
6498 int success_p;
6500 get_next:
6501 success_p = GET_NEXT_DISPLAY_ELEMENT (it);
6503 if (it->what == IT_CHARACTER)
6505 /* UAX#9, L4: "A character is depicted by a mirrored glyph if
6506 and only if (a) the resolved directionality of that character
6507 is R..." */
6508 /* FIXME: Do we need an exception for characters from display
6509 tables? */
6510 if (it->bidi_p && it->bidi_it.type == STRONG_R)
6511 it->c = bidi_mirror_char (it->c);
6512 /* Map via display table or translate control characters.
6513 IT->c, IT->len etc. have been set to the next character by
6514 the function call above. If we have a display table, and it
6515 contains an entry for IT->c, translate it. Don't do this if
6516 IT->c itself comes from a display table, otherwise we could
6517 end up in an infinite recursion. (An alternative could be to
6518 count the recursion depth of this function and signal an
6519 error when a certain maximum depth is reached.) Is it worth
6520 it? */
6521 if (success_p && it->dpvec == NULL)
6523 Lisp_Object dv;
6524 struct charset *unibyte = CHARSET_FROM_ID (charset_unibyte);
6525 int nonascii_space_p = 0;
6526 int nonascii_hyphen_p = 0;
6527 int c = it->c; /* This is the character to display. */
6529 if (! it->multibyte_p && ! ASCII_CHAR_P (c))
6531 xassert (SINGLE_BYTE_CHAR_P (c));
6532 if (unibyte_display_via_language_environment)
6534 c = DECODE_CHAR (unibyte, c);
6535 if (c < 0)
6536 c = BYTE8_TO_CHAR (it->c);
6538 else
6539 c = BYTE8_TO_CHAR (it->c);
6542 if (it->dp
6543 && (dv = DISP_CHAR_VECTOR (it->dp, c),
6544 VECTORP (dv)))
6546 struct Lisp_Vector *v = XVECTOR (dv);
6548 /* Return the first character from the display table
6549 entry, if not empty. If empty, don't display the
6550 current character. */
6551 if (v->header.size)
6553 it->dpvec_char_len = it->len;
6554 it->dpvec = v->contents;
6555 it->dpend = v->contents + v->header.size;
6556 it->current.dpvec_index = 0;
6557 it->dpvec_face_id = -1;
6558 it->saved_face_id = it->face_id;
6559 it->method = GET_FROM_DISPLAY_VECTOR;
6560 it->ellipsis_p = 0;
6562 else
6564 set_iterator_to_next (it, 0);
6566 goto get_next;
6569 if (! NILP (lookup_glyphless_char_display (c, it)))
6571 if (it->what == IT_GLYPHLESS)
6572 goto done;
6573 /* Don't display this character. */
6574 set_iterator_to_next (it, 0);
6575 goto get_next;
6578 /* If `nobreak-char-display' is non-nil, we display
6579 non-ASCII spaces and hyphens specially. */
6580 if (! ASCII_CHAR_P (c) && ! NILP (Vnobreak_char_display))
6582 if (c == 0xA0)
6583 nonascii_space_p = 1;
6584 else if (c == 0xAD || c == 0x2010 || c == 0x2011)
6585 nonascii_hyphen_p = 1;
6588 /* Translate control characters into `\003' or `^C' form.
6589 Control characters coming from a display table entry are
6590 currently not translated because we use IT->dpvec to hold
6591 the translation. This could easily be changed but I
6592 don't believe that it is worth doing.
6594 The characters handled by `nobreak-char-display' must be
6595 translated too.
6597 Non-printable characters and raw-byte characters are also
6598 translated to octal form. */
6599 if (((c < ' ' || c == 127) /* ASCII control chars */
6600 ? (it->area != TEXT_AREA
6601 /* In mode line, treat \n, \t like other crl chars. */
6602 || (c != '\t'
6603 && it->glyph_row
6604 && (it->glyph_row->mode_line_p || it->avoid_cursor_p))
6605 || (c != '\n' && c != '\t'))
6606 : (nonascii_space_p
6607 || nonascii_hyphen_p
6608 || CHAR_BYTE8_P (c)
6609 || ! CHAR_PRINTABLE_P (c))))
6611 /* C is a control character, non-ASCII space/hyphen,
6612 raw-byte, or a non-printable character which must be
6613 displayed either as '\003' or as `^C' where the '\\'
6614 and '^' can be defined in the display table. Fill
6615 IT->ctl_chars with glyphs for what we have to
6616 display. Then, set IT->dpvec to these glyphs. */
6617 Lisp_Object gc;
6618 int ctl_len;
6619 int face_id;
6620 int lface_id = 0;
6621 int escape_glyph;
6623 /* Handle control characters with ^. */
6625 if (ASCII_CHAR_P (c) && it->ctl_arrow_p)
6627 int g;
6629 g = '^'; /* default glyph for Control */
6630 /* Set IT->ctl_chars[0] to the glyph for `^'. */
6631 if (it->dp
6632 && (gc = DISP_CTRL_GLYPH (it->dp), GLYPH_CODE_P (gc)))
6634 g = GLYPH_CODE_CHAR (gc);
6635 lface_id = GLYPH_CODE_FACE (gc);
6637 if (lface_id)
6639 face_id = merge_faces (it->f, Qt, lface_id, it->face_id);
6641 else if (it->f == last_escape_glyph_frame
6642 && it->face_id == last_escape_glyph_face_id)
6644 face_id = last_escape_glyph_merged_face_id;
6646 else
6648 /* Merge the escape-glyph face into the current face. */
6649 face_id = merge_faces (it->f, Qescape_glyph, 0,
6650 it->face_id);
6651 last_escape_glyph_frame = it->f;
6652 last_escape_glyph_face_id = it->face_id;
6653 last_escape_glyph_merged_face_id = face_id;
6656 XSETINT (it->ctl_chars[0], g);
6657 XSETINT (it->ctl_chars[1], c ^ 0100);
6658 ctl_len = 2;
6659 goto display_control;
6662 /* Handle non-ascii space in the mode where it only gets
6663 highlighting. */
6665 if (nonascii_space_p && EQ (Vnobreak_char_display, Qt))
6667 /* Merge `nobreak-space' into the current face. */
6668 face_id = merge_faces (it->f, Qnobreak_space, 0,
6669 it->face_id);
6670 XSETINT (it->ctl_chars[0], ' ');
6671 ctl_len = 1;
6672 goto display_control;
6675 /* Handle sequences that start with the "escape glyph". */
6677 /* the default escape glyph is \. */
6678 escape_glyph = '\\';
6680 if (it->dp
6681 && (gc = DISP_ESCAPE_GLYPH (it->dp), GLYPH_CODE_P (gc)))
6683 escape_glyph = GLYPH_CODE_CHAR (gc);
6684 lface_id = GLYPH_CODE_FACE (gc);
6686 if (lface_id)
6688 /* The display table specified a face.
6689 Merge it into face_id and also into escape_glyph. */
6690 face_id = merge_faces (it->f, Qt, lface_id,
6691 it->face_id);
6693 else if (it->f == last_escape_glyph_frame
6694 && it->face_id == last_escape_glyph_face_id)
6696 face_id = last_escape_glyph_merged_face_id;
6698 else
6700 /* Merge the escape-glyph face into the current face. */
6701 face_id = merge_faces (it->f, Qescape_glyph, 0,
6702 it->face_id);
6703 last_escape_glyph_frame = it->f;
6704 last_escape_glyph_face_id = it->face_id;
6705 last_escape_glyph_merged_face_id = face_id;
6708 /* Draw non-ASCII hyphen with just highlighting: */
6710 if (nonascii_hyphen_p && EQ (Vnobreak_char_display, Qt))
6712 XSETINT (it->ctl_chars[0], '-');
6713 ctl_len = 1;
6714 goto display_control;
6717 /* Draw non-ASCII space/hyphen with escape glyph: */
6719 if (nonascii_space_p || nonascii_hyphen_p)
6721 XSETINT (it->ctl_chars[0], escape_glyph);
6722 XSETINT (it->ctl_chars[1], nonascii_space_p ? ' ' : '-');
6723 ctl_len = 2;
6724 goto display_control;
6728 char str[10];
6729 int len, i;
6731 if (CHAR_BYTE8_P (c))
6732 /* Display \200 instead of \17777600. */
6733 c = CHAR_TO_BYTE8 (c);
6734 len = sprintf (str, "%03o", c);
6736 XSETINT (it->ctl_chars[0], escape_glyph);
6737 for (i = 0; i < len; i++)
6738 XSETINT (it->ctl_chars[i + 1], str[i]);
6739 ctl_len = len + 1;
6742 display_control:
6743 /* Set up IT->dpvec and return first character from it. */
6744 it->dpvec_char_len = it->len;
6745 it->dpvec = it->ctl_chars;
6746 it->dpend = it->dpvec + ctl_len;
6747 it->current.dpvec_index = 0;
6748 it->dpvec_face_id = face_id;
6749 it->saved_face_id = it->face_id;
6750 it->method = GET_FROM_DISPLAY_VECTOR;
6751 it->ellipsis_p = 0;
6752 goto get_next;
6754 it->char_to_display = c;
6756 else if (success_p)
6758 it->char_to_display = it->c;
6762 /* Adjust face id for a multibyte character. There are no multibyte
6763 character in unibyte text. */
6764 if ((it->what == IT_CHARACTER || it->what == IT_COMPOSITION)
6765 && it->multibyte_p
6766 && success_p
6767 && FRAME_WINDOW_P (it->f))
6769 struct face *face = FACE_FROM_ID (it->f, it->face_id);
6771 if (it->what == IT_COMPOSITION && it->cmp_it.ch >= 0)
6773 /* Automatic composition with glyph-string. */
6774 Lisp_Object gstring = composition_gstring_from_id (it->cmp_it.id);
6776 it->face_id = face_for_font (it->f, LGSTRING_FONT (gstring), face);
6778 else
6780 ptrdiff_t pos = (it->s ? -1
6781 : STRINGP (it->string) ? IT_STRING_CHARPOS (*it)
6782 : IT_CHARPOS (*it));
6783 int c;
6785 if (it->what == IT_CHARACTER)
6786 c = it->char_to_display;
6787 else
6789 struct composition *cmp = composition_table[it->cmp_it.id];
6790 int i;
6792 c = ' ';
6793 for (i = 0; i < cmp->glyph_len; i++)
6794 /* TAB in a composition means display glyphs with
6795 padding space on the left or right. */
6796 if ((c = COMPOSITION_GLYPH (cmp, i)) != '\t')
6797 break;
6799 it->face_id = FACE_FOR_CHAR (it->f, face, c, pos, it->string);
6803 done:
6804 /* Is this character the last one of a run of characters with
6805 box? If yes, set IT->end_of_box_run_p to 1. */
6806 if (it->face_box_p
6807 && it->s == NULL)
6809 if (it->method == GET_FROM_STRING && it->sp)
6811 int face_id = underlying_face_id (it);
6812 struct face *face = FACE_FROM_ID (it->f, face_id);
6814 if (face)
6816 if (face->box == FACE_NO_BOX)
6818 /* If the box comes from face properties in a
6819 display string, check faces in that string. */
6820 int string_face_id = face_after_it_pos (it);
6821 it->end_of_box_run_p
6822 = (FACE_FROM_ID (it->f, string_face_id)->box
6823 == FACE_NO_BOX);
6825 /* Otherwise, the box comes from the underlying face.
6826 If this is the last string character displayed, check
6827 the next buffer location. */
6828 else if ((IT_STRING_CHARPOS (*it) >= SCHARS (it->string) - 1)
6829 && (it->current.overlay_string_index
6830 == it->n_overlay_strings - 1))
6832 ptrdiff_t ignore;
6833 int next_face_id;
6834 struct text_pos pos = it->current.pos;
6835 INC_TEXT_POS (pos, it->multibyte_p);
6837 next_face_id = face_at_buffer_position
6838 (it->w, CHARPOS (pos), it->region_beg_charpos,
6839 it->region_end_charpos, &ignore,
6840 (IT_CHARPOS (*it) + TEXT_PROP_DISTANCE_LIMIT), 0,
6841 -1);
6842 it->end_of_box_run_p
6843 = (FACE_FROM_ID (it->f, next_face_id)->box
6844 == FACE_NO_BOX);
6848 else
6850 int face_id = face_after_it_pos (it);
6851 it->end_of_box_run_p
6852 = (face_id != it->face_id
6853 && FACE_FROM_ID (it->f, face_id)->box == FACE_NO_BOX);
6856 /* If we reached the end of the object we've been iterating (e.g., a
6857 display string or an overlay string), and there's something on
6858 IT->stack, proceed with what's on the stack. It doesn't make
6859 sense to return zero if there's unprocessed stuff on the stack,
6860 because otherwise that stuff will never be displayed. */
6861 if (!success_p && it->sp > 0)
6863 set_iterator_to_next (it, 0);
6864 success_p = get_next_display_element (it);
6867 /* Value is 0 if end of buffer or string reached. */
6868 return success_p;
6872 /* Move IT to the next display element.
6874 RESEAT_P non-zero means if called on a newline in buffer text,
6875 skip to the next visible line start.
6877 Functions get_next_display_element and set_iterator_to_next are
6878 separate because I find this arrangement easier to handle than a
6879 get_next_display_element function that also increments IT's
6880 position. The way it is we can first look at an iterator's current
6881 display element, decide whether it fits on a line, and if it does,
6882 increment the iterator position. The other way around we probably
6883 would either need a flag indicating whether the iterator has to be
6884 incremented the next time, or we would have to implement a
6885 decrement position function which would not be easy to write. */
6887 void
6888 set_iterator_to_next (struct it *it, int reseat_p)
6890 /* Reset flags indicating start and end of a sequence of characters
6891 with box. Reset them at the start of this function because
6892 moving the iterator to a new position might set them. */
6893 it->start_of_box_run_p = it->end_of_box_run_p = 0;
6895 switch (it->method)
6897 case GET_FROM_BUFFER:
6898 /* The current display element of IT is a character from
6899 current_buffer. Advance in the buffer, and maybe skip over
6900 invisible lines that are so because of selective display. */
6901 if (ITERATOR_AT_END_OF_LINE_P (it) && reseat_p)
6902 reseat_at_next_visible_line_start (it, 0);
6903 else if (it->cmp_it.id >= 0)
6905 /* We are currently getting glyphs from a composition. */
6906 int i;
6908 if (! it->bidi_p)
6910 IT_CHARPOS (*it) += it->cmp_it.nchars;
6911 IT_BYTEPOS (*it) += it->cmp_it.nbytes;
6912 if (it->cmp_it.to < it->cmp_it.nglyphs)
6914 it->cmp_it.from = it->cmp_it.to;
6916 else
6918 it->cmp_it.id = -1;
6919 composition_compute_stop_pos (&it->cmp_it, IT_CHARPOS (*it),
6920 IT_BYTEPOS (*it),
6921 it->end_charpos, Qnil);
6924 else if (! it->cmp_it.reversed_p)
6926 /* Composition created while scanning forward. */
6927 /* Update IT's char/byte positions to point to the first
6928 character of the next grapheme cluster, or to the
6929 character visually after the current composition. */
6930 for (i = 0; i < it->cmp_it.nchars; i++)
6931 bidi_move_to_visually_next (&it->bidi_it);
6932 IT_BYTEPOS (*it) = it->bidi_it.bytepos;
6933 IT_CHARPOS (*it) = it->bidi_it.charpos;
6935 if (it->cmp_it.to < it->cmp_it.nglyphs)
6937 /* Proceed to the next grapheme cluster. */
6938 it->cmp_it.from = it->cmp_it.to;
6940 else
6942 /* No more grapheme clusters in this composition.
6943 Find the next stop position. */
6944 ptrdiff_t stop = it->end_charpos;
6945 if (it->bidi_it.scan_dir < 0)
6946 /* Now we are scanning backward and don't know
6947 where to stop. */
6948 stop = -1;
6949 composition_compute_stop_pos (&it->cmp_it, IT_CHARPOS (*it),
6950 IT_BYTEPOS (*it), stop, Qnil);
6953 else
6955 /* Composition created while scanning backward. */
6956 /* Update IT's char/byte positions to point to the last
6957 character of the previous grapheme cluster, or the
6958 character visually after the current composition. */
6959 for (i = 0; i < it->cmp_it.nchars; i++)
6960 bidi_move_to_visually_next (&it->bidi_it);
6961 IT_BYTEPOS (*it) = it->bidi_it.bytepos;
6962 IT_CHARPOS (*it) = it->bidi_it.charpos;
6963 if (it->cmp_it.from > 0)
6965 /* Proceed to the previous grapheme cluster. */
6966 it->cmp_it.to = it->cmp_it.from;
6968 else
6970 /* No more grapheme clusters in this composition.
6971 Find the next stop position. */
6972 ptrdiff_t stop = it->end_charpos;
6973 if (it->bidi_it.scan_dir < 0)
6974 /* Now we are scanning backward and don't know
6975 where to stop. */
6976 stop = -1;
6977 composition_compute_stop_pos (&it->cmp_it, IT_CHARPOS (*it),
6978 IT_BYTEPOS (*it), stop, Qnil);
6982 else
6984 xassert (it->len != 0);
6986 if (!it->bidi_p)
6988 IT_BYTEPOS (*it) += it->len;
6989 IT_CHARPOS (*it) += 1;
6991 else
6993 int prev_scan_dir = it->bidi_it.scan_dir;
6994 /* If this is a new paragraph, determine its base
6995 direction (a.k.a. its base embedding level). */
6996 if (it->bidi_it.new_paragraph)
6997 bidi_paragraph_init (it->paragraph_embedding, &it->bidi_it, 0);
6998 bidi_move_to_visually_next (&it->bidi_it);
6999 IT_BYTEPOS (*it) = it->bidi_it.bytepos;
7000 IT_CHARPOS (*it) = it->bidi_it.charpos;
7001 if (prev_scan_dir != it->bidi_it.scan_dir)
7003 /* As the scan direction was changed, we must
7004 re-compute the stop position for composition. */
7005 ptrdiff_t stop = it->end_charpos;
7006 if (it->bidi_it.scan_dir < 0)
7007 stop = -1;
7008 composition_compute_stop_pos (&it->cmp_it, IT_CHARPOS (*it),
7009 IT_BYTEPOS (*it), stop, Qnil);
7012 xassert (IT_BYTEPOS (*it) == CHAR_TO_BYTE (IT_CHARPOS (*it)));
7014 break;
7016 case GET_FROM_C_STRING:
7017 /* Current display element of IT is from a C string. */
7018 if (!it->bidi_p
7019 /* If the string position is beyond string's end, it means
7020 next_element_from_c_string is padding the string with
7021 blanks, in which case we bypass the bidi iterator,
7022 because it cannot deal with such virtual characters. */
7023 || IT_CHARPOS (*it) >= it->bidi_it.string.schars)
7025 IT_BYTEPOS (*it) += it->len;
7026 IT_CHARPOS (*it) += 1;
7028 else
7030 bidi_move_to_visually_next (&it->bidi_it);
7031 IT_BYTEPOS (*it) = it->bidi_it.bytepos;
7032 IT_CHARPOS (*it) = it->bidi_it.charpos;
7034 break;
7036 case GET_FROM_DISPLAY_VECTOR:
7037 /* Current display element of IT is from a display table entry.
7038 Advance in the display table definition. Reset it to null if
7039 end reached, and continue with characters from buffers/
7040 strings. */
7041 ++it->current.dpvec_index;
7043 /* Restore face of the iterator to what they were before the
7044 display vector entry (these entries may contain faces). */
7045 it->face_id = it->saved_face_id;
7047 if (it->dpvec + it->current.dpvec_index >= it->dpend)
7049 int recheck_faces = it->ellipsis_p;
7051 if (it->s)
7052 it->method = GET_FROM_C_STRING;
7053 else if (STRINGP (it->string))
7054 it->method = GET_FROM_STRING;
7055 else
7057 it->method = GET_FROM_BUFFER;
7058 it->object = it->w->buffer;
7061 it->dpvec = NULL;
7062 it->current.dpvec_index = -1;
7064 /* Skip over characters which were displayed via IT->dpvec. */
7065 if (it->dpvec_char_len < 0)
7066 reseat_at_next_visible_line_start (it, 1);
7067 else if (it->dpvec_char_len > 0)
7069 if (it->method == GET_FROM_STRING
7070 && it->n_overlay_strings > 0)
7071 it->ignore_overlay_strings_at_pos_p = 1;
7072 it->len = it->dpvec_char_len;
7073 set_iterator_to_next (it, reseat_p);
7076 /* Maybe recheck faces after display vector */
7077 if (recheck_faces)
7078 it->stop_charpos = IT_CHARPOS (*it);
7080 break;
7082 case GET_FROM_STRING:
7083 /* Current display element is a character from a Lisp string. */
7084 xassert (it->s == NULL && STRINGP (it->string));
7085 /* Don't advance past string end. These conditions are true
7086 when set_iterator_to_next is called at the end of
7087 get_next_display_element, in which case the Lisp string is
7088 already exhausted, and all we want is pop the iterator
7089 stack. */
7090 if (it->current.overlay_string_index >= 0)
7092 /* This is an overlay string, so there's no padding with
7093 spaces, and the number of characters in the string is
7094 where the string ends. */
7095 if (IT_STRING_CHARPOS (*it) >= SCHARS (it->string))
7096 goto consider_string_end;
7098 else
7100 /* Not an overlay string. There could be padding, so test
7101 against it->end_charpos . */
7102 if (IT_STRING_CHARPOS (*it) >= it->end_charpos)
7103 goto consider_string_end;
7105 if (it->cmp_it.id >= 0)
7107 int i;
7109 if (! it->bidi_p)
7111 IT_STRING_CHARPOS (*it) += it->cmp_it.nchars;
7112 IT_STRING_BYTEPOS (*it) += it->cmp_it.nbytes;
7113 if (it->cmp_it.to < it->cmp_it.nglyphs)
7114 it->cmp_it.from = it->cmp_it.to;
7115 else
7117 it->cmp_it.id = -1;
7118 composition_compute_stop_pos (&it->cmp_it,
7119 IT_STRING_CHARPOS (*it),
7120 IT_STRING_BYTEPOS (*it),
7121 it->end_charpos, it->string);
7124 else if (! it->cmp_it.reversed_p)
7126 for (i = 0; i < it->cmp_it.nchars; i++)
7127 bidi_move_to_visually_next (&it->bidi_it);
7128 IT_STRING_BYTEPOS (*it) = it->bidi_it.bytepos;
7129 IT_STRING_CHARPOS (*it) = it->bidi_it.charpos;
7131 if (it->cmp_it.to < it->cmp_it.nglyphs)
7132 it->cmp_it.from = it->cmp_it.to;
7133 else
7135 ptrdiff_t stop = it->end_charpos;
7136 if (it->bidi_it.scan_dir < 0)
7137 stop = -1;
7138 composition_compute_stop_pos (&it->cmp_it,
7139 IT_STRING_CHARPOS (*it),
7140 IT_STRING_BYTEPOS (*it), stop,
7141 it->string);
7144 else
7146 for (i = 0; i < it->cmp_it.nchars; i++)
7147 bidi_move_to_visually_next (&it->bidi_it);
7148 IT_STRING_BYTEPOS (*it) = it->bidi_it.bytepos;
7149 IT_STRING_CHARPOS (*it) = it->bidi_it.charpos;
7150 if (it->cmp_it.from > 0)
7151 it->cmp_it.to = it->cmp_it.from;
7152 else
7154 ptrdiff_t stop = it->end_charpos;
7155 if (it->bidi_it.scan_dir < 0)
7156 stop = -1;
7157 composition_compute_stop_pos (&it->cmp_it,
7158 IT_STRING_CHARPOS (*it),
7159 IT_STRING_BYTEPOS (*it), stop,
7160 it->string);
7164 else
7166 if (!it->bidi_p
7167 /* If the string position is beyond string's end, it
7168 means next_element_from_string is padding the string
7169 with blanks, in which case we bypass the bidi
7170 iterator, because it cannot deal with such virtual
7171 characters. */
7172 || IT_STRING_CHARPOS (*it) >= it->bidi_it.string.schars)
7174 IT_STRING_BYTEPOS (*it) += it->len;
7175 IT_STRING_CHARPOS (*it) += 1;
7177 else
7179 int prev_scan_dir = it->bidi_it.scan_dir;
7181 bidi_move_to_visually_next (&it->bidi_it);
7182 IT_STRING_BYTEPOS (*it) = it->bidi_it.bytepos;
7183 IT_STRING_CHARPOS (*it) = it->bidi_it.charpos;
7184 if (prev_scan_dir != it->bidi_it.scan_dir)
7186 ptrdiff_t stop = it->end_charpos;
7188 if (it->bidi_it.scan_dir < 0)
7189 stop = -1;
7190 composition_compute_stop_pos (&it->cmp_it,
7191 IT_STRING_CHARPOS (*it),
7192 IT_STRING_BYTEPOS (*it), stop,
7193 it->string);
7198 consider_string_end:
7200 if (it->current.overlay_string_index >= 0)
7202 /* IT->string is an overlay string. Advance to the
7203 next, if there is one. */
7204 if (IT_STRING_CHARPOS (*it) >= SCHARS (it->string))
7206 it->ellipsis_p = 0;
7207 next_overlay_string (it);
7208 if (it->ellipsis_p)
7209 setup_for_ellipsis (it, 0);
7212 else
7214 /* IT->string is not an overlay string. If we reached
7215 its end, and there is something on IT->stack, proceed
7216 with what is on the stack. This can be either another
7217 string, this time an overlay string, or a buffer. */
7218 if (IT_STRING_CHARPOS (*it) == SCHARS (it->string)
7219 && it->sp > 0)
7221 pop_it (it);
7222 if (it->method == GET_FROM_STRING)
7223 goto consider_string_end;
7226 break;
7228 case GET_FROM_IMAGE:
7229 case GET_FROM_STRETCH:
7230 /* The position etc with which we have to proceed are on
7231 the stack. The position may be at the end of a string,
7232 if the `display' property takes up the whole string. */
7233 xassert (it->sp > 0);
7234 pop_it (it);
7235 if (it->method == GET_FROM_STRING)
7236 goto consider_string_end;
7237 break;
7239 default:
7240 /* There are no other methods defined, so this should be a bug. */
7241 abort ();
7244 xassert (it->method != GET_FROM_STRING
7245 || (STRINGP (it->string)
7246 && IT_STRING_CHARPOS (*it) >= 0));
7249 /* Load IT's display element fields with information about the next
7250 display element which comes from a display table entry or from the
7251 result of translating a control character to one of the forms `^C'
7252 or `\003'.
7254 IT->dpvec holds the glyphs to return as characters.
7255 IT->saved_face_id holds the face id before the display vector--it
7256 is restored into IT->face_id in set_iterator_to_next. */
7258 static int
7259 next_element_from_display_vector (struct it *it)
7261 Lisp_Object gc;
7263 /* Precondition. */
7264 xassert (it->dpvec && it->current.dpvec_index >= 0);
7266 it->face_id = it->saved_face_id;
7268 /* KFS: This code used to check ip->dpvec[0] instead of the current element.
7269 That seemed totally bogus - so I changed it... */
7270 gc = it->dpvec[it->current.dpvec_index];
7272 if (GLYPH_CODE_P (gc))
7274 it->c = GLYPH_CODE_CHAR (gc);
7275 it->len = CHAR_BYTES (it->c);
7277 /* The entry may contain a face id to use. Such a face id is
7278 the id of a Lisp face, not a realized face. A face id of
7279 zero means no face is specified. */
7280 if (it->dpvec_face_id >= 0)
7281 it->face_id = it->dpvec_face_id;
7282 else
7284 int lface_id = GLYPH_CODE_FACE (gc);
7285 if (lface_id > 0)
7286 it->face_id = merge_faces (it->f, Qt, lface_id,
7287 it->saved_face_id);
7290 else
7291 /* Display table entry is invalid. Return a space. */
7292 it->c = ' ', it->len = 1;
7294 /* Don't change position and object of the iterator here. They are
7295 still the values of the character that had this display table
7296 entry or was translated, and that's what we want. */
7297 it->what = IT_CHARACTER;
7298 return 1;
7301 /* Get the first element of string/buffer in the visual order, after
7302 being reseated to a new position in a string or a buffer. */
7303 static void
7304 get_visually_first_element (struct it *it)
7306 int string_p = STRINGP (it->string) || it->s;
7307 ptrdiff_t eob = (string_p ? it->bidi_it.string.schars : ZV);
7308 ptrdiff_t bob = (string_p ? 0 : BEGV);
7310 if (STRINGP (it->string))
7312 it->bidi_it.charpos = IT_STRING_CHARPOS (*it);
7313 it->bidi_it.bytepos = IT_STRING_BYTEPOS (*it);
7315 else
7317 it->bidi_it.charpos = IT_CHARPOS (*it);
7318 it->bidi_it.bytepos = IT_BYTEPOS (*it);
7321 if (it->bidi_it.charpos == eob)
7323 /* Nothing to do, but reset the FIRST_ELT flag, like
7324 bidi_paragraph_init does, because we are not going to
7325 call it. */
7326 it->bidi_it.first_elt = 0;
7328 else if (it->bidi_it.charpos == bob
7329 || (!string_p
7330 && (FETCH_CHAR (it->bidi_it.bytepos - 1) == '\n'
7331 || FETCH_CHAR (it->bidi_it.bytepos) == '\n')))
7333 /* If we are at the beginning of a line/string, we can produce
7334 the next element right away. */
7335 bidi_paragraph_init (it->paragraph_embedding, &it->bidi_it, 1);
7336 bidi_move_to_visually_next (&it->bidi_it);
7338 else
7340 ptrdiff_t orig_bytepos = it->bidi_it.bytepos;
7342 /* We need to prime the bidi iterator starting at the line's or
7343 string's beginning, before we will be able to produce the
7344 next element. */
7345 if (string_p)
7346 it->bidi_it.charpos = it->bidi_it.bytepos = 0;
7347 else
7349 it->bidi_it.charpos = find_next_newline_no_quit (IT_CHARPOS (*it),
7350 -1);
7351 it->bidi_it.bytepos = CHAR_TO_BYTE (it->bidi_it.charpos);
7353 bidi_paragraph_init (it->paragraph_embedding, &it->bidi_it, 1);
7356 /* Now return to buffer/string position where we were asked
7357 to get the next display element, and produce that. */
7358 bidi_move_to_visually_next (&it->bidi_it);
7360 while (it->bidi_it.bytepos != orig_bytepos
7361 && it->bidi_it.charpos < eob);
7364 /* Adjust IT's position information to where we ended up. */
7365 if (STRINGP (it->string))
7367 IT_STRING_CHARPOS (*it) = it->bidi_it.charpos;
7368 IT_STRING_BYTEPOS (*it) = it->bidi_it.bytepos;
7370 else
7372 IT_CHARPOS (*it) = it->bidi_it.charpos;
7373 IT_BYTEPOS (*it) = it->bidi_it.bytepos;
7376 if (STRINGP (it->string) || !it->s)
7378 ptrdiff_t stop, charpos, bytepos;
7380 if (STRINGP (it->string))
7382 xassert (!it->s);
7383 stop = SCHARS (it->string);
7384 if (stop > it->end_charpos)
7385 stop = it->end_charpos;
7386 charpos = IT_STRING_CHARPOS (*it);
7387 bytepos = IT_STRING_BYTEPOS (*it);
7389 else
7391 stop = it->end_charpos;
7392 charpos = IT_CHARPOS (*it);
7393 bytepos = IT_BYTEPOS (*it);
7395 if (it->bidi_it.scan_dir < 0)
7396 stop = -1;
7397 composition_compute_stop_pos (&it->cmp_it, charpos, bytepos, stop,
7398 it->string);
7402 /* Load IT with the next display element from Lisp string IT->string.
7403 IT->current.string_pos is the current position within the string.
7404 If IT->current.overlay_string_index >= 0, the Lisp string is an
7405 overlay string. */
7407 static int
7408 next_element_from_string (struct it *it)
7410 struct text_pos position;
7412 xassert (STRINGP (it->string));
7413 xassert (!it->bidi_p || EQ (it->string, it->bidi_it.string.lstring));
7414 xassert (IT_STRING_CHARPOS (*it) >= 0);
7415 position = it->current.string_pos;
7417 /* With bidi reordering, the character to display might not be the
7418 character at IT_STRING_CHARPOS. BIDI_IT.FIRST_ELT non-zero means
7419 that we were reseat()ed to a new string, whose paragraph
7420 direction is not known. */
7421 if (it->bidi_p && it->bidi_it.first_elt)
7423 get_visually_first_element (it);
7424 SET_TEXT_POS (position, IT_STRING_CHARPOS (*it), IT_STRING_BYTEPOS (*it));
7427 /* Time to check for invisible text? */
7428 if (IT_STRING_CHARPOS (*it) < it->end_charpos)
7430 if (IT_STRING_CHARPOS (*it) >= it->stop_charpos)
7432 if (!(!it->bidi_p
7433 || BIDI_AT_BASE_LEVEL (it->bidi_it)
7434 || IT_STRING_CHARPOS (*it) == it->stop_charpos))
7436 /* With bidi non-linear iteration, we could find
7437 ourselves far beyond the last computed stop_charpos,
7438 with several other stop positions in between that we
7439 missed. Scan them all now, in buffer's logical
7440 order, until we find and handle the last stop_charpos
7441 that precedes our current position. */
7442 handle_stop_backwards (it, it->stop_charpos);
7443 return GET_NEXT_DISPLAY_ELEMENT (it);
7445 else
7447 if (it->bidi_p)
7449 /* Take note of the stop position we just moved
7450 across, for when we will move back across it. */
7451 it->prev_stop = it->stop_charpos;
7452 /* If we are at base paragraph embedding level, take
7453 note of the last stop position seen at this
7454 level. */
7455 if (BIDI_AT_BASE_LEVEL (it->bidi_it))
7456 it->base_level_stop = it->stop_charpos;
7458 handle_stop (it);
7460 /* Since a handler may have changed IT->method, we must
7461 recurse here. */
7462 return GET_NEXT_DISPLAY_ELEMENT (it);
7465 else if (it->bidi_p
7466 /* If we are before prev_stop, we may have overstepped
7467 on our way backwards a stop_pos, and if so, we need
7468 to handle that stop_pos. */
7469 && IT_STRING_CHARPOS (*it) < it->prev_stop
7470 /* We can sometimes back up for reasons that have nothing
7471 to do with bidi reordering. E.g., compositions. The
7472 code below is only needed when we are above the base
7473 embedding level, so test for that explicitly. */
7474 && !BIDI_AT_BASE_LEVEL (it->bidi_it))
7476 /* If we lost track of base_level_stop, we have no better
7477 place for handle_stop_backwards to start from than string
7478 beginning. This happens, e.g., when we were reseated to
7479 the previous screenful of text by vertical-motion. */
7480 if (it->base_level_stop <= 0
7481 || IT_STRING_CHARPOS (*it) < it->base_level_stop)
7482 it->base_level_stop = 0;
7483 handle_stop_backwards (it, it->base_level_stop);
7484 return GET_NEXT_DISPLAY_ELEMENT (it);
7488 if (it->current.overlay_string_index >= 0)
7490 /* Get the next character from an overlay string. In overlay
7491 strings, there is no field width or padding with spaces to
7492 do. */
7493 if (IT_STRING_CHARPOS (*it) >= SCHARS (it->string))
7495 it->what = IT_EOB;
7496 return 0;
7498 else if (CHAR_COMPOSED_P (it, IT_STRING_CHARPOS (*it),
7499 IT_STRING_BYTEPOS (*it),
7500 it->bidi_it.scan_dir < 0
7501 ? -1
7502 : SCHARS (it->string))
7503 && next_element_from_composition (it))
7505 return 1;
7507 else if (STRING_MULTIBYTE (it->string))
7509 const unsigned char *s = (SDATA (it->string)
7510 + IT_STRING_BYTEPOS (*it));
7511 it->c = string_char_and_length (s, &it->len);
7513 else
7515 it->c = SREF (it->string, IT_STRING_BYTEPOS (*it));
7516 it->len = 1;
7519 else
7521 /* Get the next character from a Lisp string that is not an
7522 overlay string. Such strings come from the mode line, for
7523 example. We may have to pad with spaces, or truncate the
7524 string. See also next_element_from_c_string. */
7525 if (IT_STRING_CHARPOS (*it) >= it->end_charpos)
7527 it->what = IT_EOB;
7528 return 0;
7530 else if (IT_STRING_CHARPOS (*it) >= it->string_nchars)
7532 /* Pad with spaces. */
7533 it->c = ' ', it->len = 1;
7534 CHARPOS (position) = BYTEPOS (position) = -1;
7536 else if (CHAR_COMPOSED_P (it, IT_STRING_CHARPOS (*it),
7537 IT_STRING_BYTEPOS (*it),
7538 it->bidi_it.scan_dir < 0
7539 ? -1
7540 : it->string_nchars)
7541 && next_element_from_composition (it))
7543 return 1;
7545 else if (STRING_MULTIBYTE (it->string))
7547 const unsigned char *s = (SDATA (it->string)
7548 + IT_STRING_BYTEPOS (*it));
7549 it->c = string_char_and_length (s, &it->len);
7551 else
7553 it->c = SREF (it->string, IT_STRING_BYTEPOS (*it));
7554 it->len = 1;
7558 /* Record what we have and where it came from. */
7559 it->what = IT_CHARACTER;
7560 it->object = it->string;
7561 it->position = position;
7562 return 1;
7566 /* Load IT with next display element from C string IT->s.
7567 IT->string_nchars is the maximum number of characters to return
7568 from the string. IT->end_charpos may be greater than
7569 IT->string_nchars when this function is called, in which case we
7570 may have to return padding spaces. Value is zero if end of string
7571 reached, including padding spaces. */
7573 static int
7574 next_element_from_c_string (struct it *it)
7576 int success_p = 1;
7578 xassert (it->s);
7579 xassert (!it->bidi_p || it->s == it->bidi_it.string.s);
7580 it->what = IT_CHARACTER;
7581 BYTEPOS (it->position) = CHARPOS (it->position) = 0;
7582 it->object = Qnil;
7584 /* With bidi reordering, the character to display might not be the
7585 character at IT_CHARPOS. BIDI_IT.FIRST_ELT non-zero means that
7586 we were reseated to a new string, whose paragraph direction is
7587 not known. */
7588 if (it->bidi_p && it->bidi_it.first_elt)
7589 get_visually_first_element (it);
7591 /* IT's position can be greater than IT->string_nchars in case a
7592 field width or precision has been specified when the iterator was
7593 initialized. */
7594 if (IT_CHARPOS (*it) >= it->end_charpos)
7596 /* End of the game. */
7597 it->what = IT_EOB;
7598 success_p = 0;
7600 else if (IT_CHARPOS (*it) >= it->string_nchars)
7602 /* Pad with spaces. */
7603 it->c = ' ', it->len = 1;
7604 BYTEPOS (it->position) = CHARPOS (it->position) = -1;
7606 else if (it->multibyte_p)
7607 it->c = string_char_and_length (it->s + IT_BYTEPOS (*it), &it->len);
7608 else
7609 it->c = it->s[IT_BYTEPOS (*it)], it->len = 1;
7611 return success_p;
7615 /* Set up IT to return characters from an ellipsis, if appropriate.
7616 The definition of the ellipsis glyphs may come from a display table
7617 entry. This function fills IT with the first glyph from the
7618 ellipsis if an ellipsis is to be displayed. */
7620 static int
7621 next_element_from_ellipsis (struct it *it)
7623 if (it->selective_display_ellipsis_p)
7624 setup_for_ellipsis (it, it->len);
7625 else
7627 /* The face at the current position may be different from the
7628 face we find after the invisible text. Remember what it
7629 was in IT->saved_face_id, and signal that it's there by
7630 setting face_before_selective_p. */
7631 it->saved_face_id = it->face_id;
7632 it->method = GET_FROM_BUFFER;
7633 it->object = it->w->buffer;
7634 reseat_at_next_visible_line_start (it, 1);
7635 it->face_before_selective_p = 1;
7638 return GET_NEXT_DISPLAY_ELEMENT (it);
7642 /* Deliver an image display element. The iterator IT is already
7643 filled with image information (done in handle_display_prop). Value
7644 is always 1. */
7647 static int
7648 next_element_from_image (struct it *it)
7650 it->what = IT_IMAGE;
7651 it->ignore_overlay_strings_at_pos_p = 0;
7652 return 1;
7656 /* Fill iterator IT with next display element from a stretch glyph
7657 property. IT->object is the value of the text property. Value is
7658 always 1. */
7660 static int
7661 next_element_from_stretch (struct it *it)
7663 it->what = IT_STRETCH;
7664 return 1;
7667 /* Scan backwards from IT's current position until we find a stop
7668 position, or until BEGV. This is called when we find ourself
7669 before both the last known prev_stop and base_level_stop while
7670 reordering bidirectional text. */
7672 static void
7673 compute_stop_pos_backwards (struct it *it)
7675 const int SCAN_BACK_LIMIT = 1000;
7676 struct text_pos pos;
7677 struct display_pos save_current = it->current;
7678 struct text_pos save_position = it->position;
7679 ptrdiff_t charpos = IT_CHARPOS (*it);
7680 ptrdiff_t where_we_are = charpos;
7681 ptrdiff_t save_stop_pos = it->stop_charpos;
7682 ptrdiff_t save_end_pos = it->end_charpos;
7684 xassert (NILP (it->string) && !it->s);
7685 xassert (it->bidi_p);
7686 it->bidi_p = 0;
7689 it->end_charpos = min (charpos + 1, ZV);
7690 charpos = max (charpos - SCAN_BACK_LIMIT, BEGV);
7691 SET_TEXT_POS (pos, charpos, BYTE_TO_CHAR (charpos));
7692 reseat_1 (it, pos, 0);
7693 compute_stop_pos (it);
7694 /* We must advance forward, right? */
7695 if (it->stop_charpos <= charpos)
7696 abort ();
7698 while (charpos > BEGV && it->stop_charpos >= it->end_charpos);
7700 if (it->stop_charpos <= where_we_are)
7701 it->prev_stop = it->stop_charpos;
7702 else
7703 it->prev_stop = BEGV;
7704 it->bidi_p = 1;
7705 it->current = save_current;
7706 it->position = save_position;
7707 it->stop_charpos = save_stop_pos;
7708 it->end_charpos = save_end_pos;
7711 /* Scan forward from CHARPOS in the current buffer/string, until we
7712 find a stop position > current IT's position. Then handle the stop
7713 position before that. This is called when we bump into a stop
7714 position while reordering bidirectional text. CHARPOS should be
7715 the last previously processed stop_pos (or BEGV/0, if none were
7716 processed yet) whose position is less that IT's current
7717 position. */
7719 static void
7720 handle_stop_backwards (struct it *it, ptrdiff_t charpos)
7722 int bufp = !STRINGP (it->string);
7723 ptrdiff_t where_we_are = (bufp ? IT_CHARPOS (*it) : IT_STRING_CHARPOS (*it));
7724 struct display_pos save_current = it->current;
7725 struct text_pos save_position = it->position;
7726 struct text_pos pos1;
7727 ptrdiff_t next_stop;
7729 /* Scan in strict logical order. */
7730 xassert (it->bidi_p);
7731 it->bidi_p = 0;
7734 it->prev_stop = charpos;
7735 if (bufp)
7737 SET_TEXT_POS (pos1, charpos, CHAR_TO_BYTE (charpos));
7738 reseat_1 (it, pos1, 0);
7740 else
7741 it->current.string_pos = string_pos (charpos, it->string);
7742 compute_stop_pos (it);
7743 /* We must advance forward, right? */
7744 if (it->stop_charpos <= it->prev_stop)
7745 abort ();
7746 charpos = it->stop_charpos;
7748 while (charpos <= where_we_are);
7750 it->bidi_p = 1;
7751 it->current = save_current;
7752 it->position = save_position;
7753 next_stop = it->stop_charpos;
7754 it->stop_charpos = it->prev_stop;
7755 handle_stop (it);
7756 it->stop_charpos = next_stop;
7759 /* Load IT with the next display element from current_buffer. Value
7760 is zero if end of buffer reached. IT->stop_charpos is the next
7761 position at which to stop and check for text properties or buffer
7762 end. */
7764 static int
7765 next_element_from_buffer (struct it *it)
7767 int success_p = 1;
7769 xassert (IT_CHARPOS (*it) >= BEGV);
7770 xassert (NILP (it->string) && !it->s);
7771 xassert (!it->bidi_p
7772 || (EQ (it->bidi_it.string.lstring, Qnil)
7773 && it->bidi_it.string.s == NULL));
7775 /* With bidi reordering, the character to display might not be the
7776 character at IT_CHARPOS. BIDI_IT.FIRST_ELT non-zero means that
7777 we were reseat()ed to a new buffer position, which is potentially
7778 a different paragraph. */
7779 if (it->bidi_p && it->bidi_it.first_elt)
7781 get_visually_first_element (it);
7782 SET_TEXT_POS (it->position, IT_CHARPOS (*it), IT_BYTEPOS (*it));
7785 if (IT_CHARPOS (*it) >= it->stop_charpos)
7787 if (IT_CHARPOS (*it) >= it->end_charpos)
7789 int overlay_strings_follow_p;
7791 /* End of the game, except when overlay strings follow that
7792 haven't been returned yet. */
7793 if (it->overlay_strings_at_end_processed_p)
7794 overlay_strings_follow_p = 0;
7795 else
7797 it->overlay_strings_at_end_processed_p = 1;
7798 overlay_strings_follow_p = get_overlay_strings (it, 0);
7801 if (overlay_strings_follow_p)
7802 success_p = GET_NEXT_DISPLAY_ELEMENT (it);
7803 else
7805 it->what = IT_EOB;
7806 it->position = it->current.pos;
7807 success_p = 0;
7810 else if (!(!it->bidi_p
7811 || BIDI_AT_BASE_LEVEL (it->bidi_it)
7812 || IT_CHARPOS (*it) == it->stop_charpos))
7814 /* With bidi non-linear iteration, we could find ourselves
7815 far beyond the last computed stop_charpos, with several
7816 other stop positions in between that we missed. Scan
7817 them all now, in buffer's logical order, until we find
7818 and handle the last stop_charpos that precedes our
7819 current position. */
7820 handle_stop_backwards (it, it->stop_charpos);
7821 return GET_NEXT_DISPLAY_ELEMENT (it);
7823 else
7825 if (it->bidi_p)
7827 /* Take note of the stop position we just moved across,
7828 for when we will move back across it. */
7829 it->prev_stop = it->stop_charpos;
7830 /* If we are at base paragraph embedding level, take
7831 note of the last stop position seen at this
7832 level. */
7833 if (BIDI_AT_BASE_LEVEL (it->bidi_it))
7834 it->base_level_stop = it->stop_charpos;
7836 handle_stop (it);
7837 return GET_NEXT_DISPLAY_ELEMENT (it);
7840 else if (it->bidi_p
7841 /* If we are before prev_stop, we may have overstepped on
7842 our way backwards a stop_pos, and if so, we need to
7843 handle that stop_pos. */
7844 && IT_CHARPOS (*it) < it->prev_stop
7845 /* We can sometimes back up for reasons that have nothing
7846 to do with bidi reordering. E.g., compositions. The
7847 code below is only needed when we are above the base
7848 embedding level, so test for that explicitly. */
7849 && !BIDI_AT_BASE_LEVEL (it->bidi_it))
7851 if (it->base_level_stop <= 0
7852 || IT_CHARPOS (*it) < it->base_level_stop)
7854 /* If we lost track of base_level_stop, we need to find
7855 prev_stop by looking backwards. This happens, e.g., when
7856 we were reseated to the previous screenful of text by
7857 vertical-motion. */
7858 it->base_level_stop = BEGV;
7859 compute_stop_pos_backwards (it);
7860 handle_stop_backwards (it, it->prev_stop);
7862 else
7863 handle_stop_backwards (it, it->base_level_stop);
7864 return GET_NEXT_DISPLAY_ELEMENT (it);
7866 else
7868 /* No face changes, overlays etc. in sight, so just return a
7869 character from current_buffer. */
7870 unsigned char *p;
7871 ptrdiff_t stop;
7873 /* Maybe run the redisplay end trigger hook. Performance note:
7874 This doesn't seem to cost measurable time. */
7875 if (it->redisplay_end_trigger_charpos
7876 && it->glyph_row
7877 && IT_CHARPOS (*it) >= it->redisplay_end_trigger_charpos)
7878 run_redisplay_end_trigger_hook (it);
7880 stop = it->bidi_it.scan_dir < 0 ? -1 : it->end_charpos;
7881 if (CHAR_COMPOSED_P (it, IT_CHARPOS (*it), IT_BYTEPOS (*it),
7882 stop)
7883 && next_element_from_composition (it))
7885 return 1;
7888 /* Get the next character, maybe multibyte. */
7889 p = BYTE_POS_ADDR (IT_BYTEPOS (*it));
7890 if (it->multibyte_p && !ASCII_BYTE_P (*p))
7891 it->c = STRING_CHAR_AND_LENGTH (p, it->len);
7892 else
7893 it->c = *p, it->len = 1;
7895 /* Record what we have and where it came from. */
7896 it->what = IT_CHARACTER;
7897 it->object = it->w->buffer;
7898 it->position = it->current.pos;
7900 /* Normally we return the character found above, except when we
7901 really want to return an ellipsis for selective display. */
7902 if (it->selective)
7904 if (it->c == '\n')
7906 /* A value of selective > 0 means hide lines indented more
7907 than that number of columns. */
7908 if (it->selective > 0
7909 && IT_CHARPOS (*it) + 1 < ZV
7910 && indented_beyond_p (IT_CHARPOS (*it) + 1,
7911 IT_BYTEPOS (*it) + 1,
7912 it->selective))
7914 success_p = next_element_from_ellipsis (it);
7915 it->dpvec_char_len = -1;
7918 else if (it->c == '\r' && it->selective == -1)
7920 /* A value of selective == -1 means that everything from the
7921 CR to the end of the line is invisible, with maybe an
7922 ellipsis displayed for it. */
7923 success_p = next_element_from_ellipsis (it);
7924 it->dpvec_char_len = -1;
7929 /* Value is zero if end of buffer reached. */
7930 xassert (!success_p || it->what != IT_CHARACTER || it->len > 0);
7931 return success_p;
7935 /* Run the redisplay end trigger hook for IT. */
7937 static void
7938 run_redisplay_end_trigger_hook (struct it *it)
7940 Lisp_Object args[3];
7942 /* IT->glyph_row should be non-null, i.e. we should be actually
7943 displaying something, or otherwise we should not run the hook. */
7944 xassert (it->glyph_row);
7946 /* Set up hook arguments. */
7947 args[0] = Qredisplay_end_trigger_functions;
7948 args[1] = it->window;
7949 XSETINT (args[2], it->redisplay_end_trigger_charpos);
7950 it->redisplay_end_trigger_charpos = 0;
7952 /* Since we are *trying* to run these functions, don't try to run
7953 them again, even if they get an error. */
7954 it->w->redisplay_end_trigger = Qnil;
7955 Frun_hook_with_args (3, args);
7957 /* Notice if it changed the face of the character we are on. */
7958 handle_face_prop (it);
7962 /* Deliver a composition display element. Unlike the other
7963 next_element_from_XXX, this function is not registered in the array
7964 get_next_element[]. It is called from next_element_from_buffer and
7965 next_element_from_string when necessary. */
7967 static int
7968 next_element_from_composition (struct it *it)
7970 it->what = IT_COMPOSITION;
7971 it->len = it->cmp_it.nbytes;
7972 if (STRINGP (it->string))
7974 if (it->c < 0)
7976 IT_STRING_CHARPOS (*it) += it->cmp_it.nchars;
7977 IT_STRING_BYTEPOS (*it) += it->cmp_it.nbytes;
7978 return 0;
7980 it->position = it->current.string_pos;
7981 it->object = it->string;
7982 it->c = composition_update_it (&it->cmp_it, IT_STRING_CHARPOS (*it),
7983 IT_STRING_BYTEPOS (*it), it->string);
7985 else
7987 if (it->c < 0)
7989 IT_CHARPOS (*it) += it->cmp_it.nchars;
7990 IT_BYTEPOS (*it) += it->cmp_it.nbytes;
7991 if (it->bidi_p)
7993 if (it->bidi_it.new_paragraph)
7994 bidi_paragraph_init (it->paragraph_embedding, &it->bidi_it, 0);
7995 /* Resync the bidi iterator with IT's new position.
7996 FIXME: this doesn't support bidirectional text. */
7997 while (it->bidi_it.charpos < IT_CHARPOS (*it))
7998 bidi_move_to_visually_next (&it->bidi_it);
8000 return 0;
8002 it->position = it->current.pos;
8003 it->object = it->w->buffer;
8004 it->c = composition_update_it (&it->cmp_it, IT_CHARPOS (*it),
8005 IT_BYTEPOS (*it), Qnil);
8007 return 1;
8012 /***********************************************************************
8013 Moving an iterator without producing glyphs
8014 ***********************************************************************/
8016 /* Check if iterator is at a position corresponding to a valid buffer
8017 position after some move_it_ call. */
8019 #define IT_POS_VALID_AFTER_MOVE_P(it) \
8020 ((it)->method == GET_FROM_STRING \
8021 ? IT_STRING_CHARPOS (*it) == 0 \
8022 : 1)
8025 /* Move iterator IT to a specified buffer or X position within one
8026 line on the display without producing glyphs.
8028 OP should be a bit mask including some or all of these bits:
8029 MOVE_TO_X: Stop upon reaching x-position TO_X.
8030 MOVE_TO_POS: Stop upon reaching buffer or string position TO_CHARPOS.
8031 Regardless of OP's value, stop upon reaching the end of the display line.
8033 TO_X is normally a value 0 <= TO_X <= IT->last_visible_x.
8034 This means, in particular, that TO_X includes window's horizontal
8035 scroll amount.
8037 The return value has several possible values that
8038 say what condition caused the scan to stop:
8040 MOVE_POS_MATCH_OR_ZV
8041 - when TO_POS or ZV was reached.
8043 MOVE_X_REACHED
8044 -when TO_X was reached before TO_POS or ZV were reached.
8046 MOVE_LINE_CONTINUED
8047 - when we reached the end of the display area and the line must
8048 be continued.
8050 MOVE_LINE_TRUNCATED
8051 - when we reached the end of the display area and the line is
8052 truncated.
8054 MOVE_NEWLINE_OR_CR
8055 - when we stopped at a line end, i.e. a newline or a CR and selective
8056 display is on. */
8058 static enum move_it_result
8059 move_it_in_display_line_to (struct it *it,
8060 ptrdiff_t to_charpos, int to_x,
8061 enum move_operation_enum op)
8063 enum move_it_result result = MOVE_UNDEFINED;
8064 struct glyph_row *saved_glyph_row;
8065 struct it wrap_it, atpos_it, atx_it, ppos_it;
8066 void *wrap_data = NULL, *atpos_data = NULL, *atx_data = NULL;
8067 void *ppos_data = NULL;
8068 int may_wrap = 0;
8069 enum it_method prev_method = it->method;
8070 ptrdiff_t prev_pos = IT_CHARPOS (*it);
8071 int saw_smaller_pos = prev_pos < to_charpos;
8073 /* Don't produce glyphs in produce_glyphs. */
8074 saved_glyph_row = it->glyph_row;
8075 it->glyph_row = NULL;
8077 /* Use wrap_it to save a copy of IT wherever a word wrap could
8078 occur. Use atpos_it to save a copy of IT at the desired buffer
8079 position, if found, so that we can scan ahead and check if the
8080 word later overshoots the window edge. Use atx_it similarly, for
8081 pixel positions. */
8082 wrap_it.sp = -1;
8083 atpos_it.sp = -1;
8084 atx_it.sp = -1;
8086 /* Use ppos_it under bidi reordering to save a copy of IT for the
8087 position > CHARPOS that is the closest to CHARPOS. We restore
8088 that position in IT when we have scanned the entire display line
8089 without finding a match for CHARPOS and all the character
8090 positions are greater than CHARPOS. */
8091 if (it->bidi_p)
8093 SAVE_IT (ppos_it, *it, ppos_data);
8094 SET_TEXT_POS (ppos_it.current.pos, ZV, ZV_BYTE);
8095 if ((op & MOVE_TO_POS) && IT_CHARPOS (*it) >= to_charpos)
8096 SAVE_IT (ppos_it, *it, ppos_data);
8099 #define BUFFER_POS_REACHED_P() \
8100 ((op & MOVE_TO_POS) != 0 \
8101 && BUFFERP (it->object) \
8102 && (IT_CHARPOS (*it) == to_charpos \
8103 || ((!it->bidi_p \
8104 || BIDI_AT_BASE_LEVEL (it->bidi_it)) \
8105 && IT_CHARPOS (*it) > to_charpos) \
8106 || (it->what == IT_COMPOSITION \
8107 && ((IT_CHARPOS (*it) > to_charpos \
8108 && to_charpos >= it->cmp_it.charpos) \
8109 || (IT_CHARPOS (*it) < to_charpos \
8110 && to_charpos <= it->cmp_it.charpos)))) \
8111 && (it->method == GET_FROM_BUFFER \
8112 || (it->method == GET_FROM_DISPLAY_VECTOR \
8113 && it->dpvec + it->current.dpvec_index + 1 >= it->dpend)))
8115 /* If there's a line-/wrap-prefix, handle it. */
8116 if (it->hpos == 0 && it->method == GET_FROM_BUFFER
8117 && it->current_y < it->last_visible_y)
8118 handle_line_prefix (it);
8120 if (IT_CHARPOS (*it) < CHARPOS (this_line_min_pos))
8121 SET_TEXT_POS (this_line_min_pos, IT_CHARPOS (*it), IT_BYTEPOS (*it));
8123 while (1)
8125 int x, i, ascent = 0, descent = 0;
8127 /* Utility macro to reset an iterator with x, ascent, and descent. */
8128 #define IT_RESET_X_ASCENT_DESCENT(IT) \
8129 ((IT)->current_x = x, (IT)->max_ascent = ascent, \
8130 (IT)->max_descent = descent)
8132 /* Stop if we move beyond TO_CHARPOS (after an image or a
8133 display string or stretch glyph). */
8134 if ((op & MOVE_TO_POS) != 0
8135 && BUFFERP (it->object)
8136 && it->method == GET_FROM_BUFFER
8137 && (((!it->bidi_p
8138 /* When the iterator is at base embedding level, we
8139 are guaranteed that characters are delivered for
8140 display in strictly increasing order of their
8141 buffer positions. */
8142 || BIDI_AT_BASE_LEVEL (it->bidi_it))
8143 && IT_CHARPOS (*it) > to_charpos)
8144 || (it->bidi_p
8145 && (prev_method == GET_FROM_IMAGE
8146 || prev_method == GET_FROM_STRETCH
8147 || prev_method == GET_FROM_STRING)
8148 /* Passed TO_CHARPOS from left to right. */
8149 && ((prev_pos < to_charpos
8150 && IT_CHARPOS (*it) > to_charpos)
8151 /* Passed TO_CHARPOS from right to left. */
8152 || (prev_pos > to_charpos
8153 && IT_CHARPOS (*it) < to_charpos)))))
8155 if (it->line_wrap != WORD_WRAP || wrap_it.sp < 0)
8157 result = MOVE_POS_MATCH_OR_ZV;
8158 break;
8160 else if (it->line_wrap == WORD_WRAP && atpos_it.sp < 0)
8161 /* If wrap_it is valid, the current position might be in a
8162 word that is wrapped. So, save the iterator in
8163 atpos_it and continue to see if wrapping happens. */
8164 SAVE_IT (atpos_it, *it, atpos_data);
8167 /* Stop when ZV reached.
8168 We used to stop here when TO_CHARPOS reached as well, but that is
8169 too soon if this glyph does not fit on this line. So we handle it
8170 explicitly below. */
8171 if (!get_next_display_element (it))
8173 result = MOVE_POS_MATCH_OR_ZV;
8174 break;
8177 if (it->line_wrap == TRUNCATE)
8179 if (BUFFER_POS_REACHED_P ())
8181 result = MOVE_POS_MATCH_OR_ZV;
8182 break;
8185 else
8187 if (it->line_wrap == WORD_WRAP)
8189 if (IT_DISPLAYING_WHITESPACE (it))
8190 may_wrap = 1;
8191 else if (may_wrap)
8193 /* We have reached a glyph that follows one or more
8194 whitespace characters. If the position is
8195 already found, we are done. */
8196 if (atpos_it.sp >= 0)
8198 RESTORE_IT (it, &atpos_it, atpos_data);
8199 result = MOVE_POS_MATCH_OR_ZV;
8200 goto done;
8202 if (atx_it.sp >= 0)
8204 RESTORE_IT (it, &atx_it, atx_data);
8205 result = MOVE_X_REACHED;
8206 goto done;
8208 /* Otherwise, we can wrap here. */
8209 SAVE_IT (wrap_it, *it, wrap_data);
8210 may_wrap = 0;
8215 /* Remember the line height for the current line, in case
8216 the next element doesn't fit on the line. */
8217 ascent = it->max_ascent;
8218 descent = it->max_descent;
8220 /* The call to produce_glyphs will get the metrics of the
8221 display element IT is loaded with. Record the x-position
8222 before this display element, in case it doesn't fit on the
8223 line. */
8224 x = it->current_x;
8226 PRODUCE_GLYPHS (it);
8228 if (it->area != TEXT_AREA)
8230 prev_method = it->method;
8231 if (it->method == GET_FROM_BUFFER)
8232 prev_pos = IT_CHARPOS (*it);
8233 set_iterator_to_next (it, 1);
8234 if (IT_CHARPOS (*it) < CHARPOS (this_line_min_pos))
8235 SET_TEXT_POS (this_line_min_pos,
8236 IT_CHARPOS (*it), IT_BYTEPOS (*it));
8237 if (it->bidi_p
8238 && (op & MOVE_TO_POS)
8239 && IT_CHARPOS (*it) > to_charpos
8240 && IT_CHARPOS (*it) < IT_CHARPOS (ppos_it))
8241 SAVE_IT (ppos_it, *it, ppos_data);
8242 continue;
8245 /* The number of glyphs we get back in IT->nglyphs will normally
8246 be 1 except when IT->c is (i) a TAB, or (ii) a multi-glyph
8247 character on a terminal frame, or (iii) a line end. For the
8248 second case, IT->nglyphs - 1 padding glyphs will be present.
8249 (On X frames, there is only one glyph produced for a
8250 composite character.)
8252 The behavior implemented below means, for continuation lines,
8253 that as many spaces of a TAB as fit on the current line are
8254 displayed there. For terminal frames, as many glyphs of a
8255 multi-glyph character are displayed in the current line, too.
8256 This is what the old redisplay code did, and we keep it that
8257 way. Under X, the whole shape of a complex character must
8258 fit on the line or it will be completely displayed in the
8259 next line.
8261 Note that both for tabs and padding glyphs, all glyphs have
8262 the same width. */
8263 if (it->nglyphs)
8265 /* More than one glyph or glyph doesn't fit on line. All
8266 glyphs have the same width. */
8267 int single_glyph_width = it->pixel_width / it->nglyphs;
8268 int new_x;
8269 int x_before_this_char = x;
8270 int hpos_before_this_char = it->hpos;
8272 for (i = 0; i < it->nglyphs; ++i, x = new_x)
8274 new_x = x + single_glyph_width;
8276 /* We want to leave anything reaching TO_X to the caller. */
8277 if ((op & MOVE_TO_X) && new_x > to_x)
8279 if (BUFFER_POS_REACHED_P ())
8281 if (it->line_wrap != WORD_WRAP || wrap_it.sp < 0)
8282 goto buffer_pos_reached;
8283 if (atpos_it.sp < 0)
8285 SAVE_IT (atpos_it, *it, atpos_data);
8286 IT_RESET_X_ASCENT_DESCENT (&atpos_it);
8289 else
8291 if (it->line_wrap != WORD_WRAP || wrap_it.sp < 0)
8293 it->current_x = x;
8294 result = MOVE_X_REACHED;
8295 break;
8297 if (atx_it.sp < 0)
8299 SAVE_IT (atx_it, *it, atx_data);
8300 IT_RESET_X_ASCENT_DESCENT (&atx_it);
8305 if (/* Lines are continued. */
8306 it->line_wrap != TRUNCATE
8307 && (/* And glyph doesn't fit on the line. */
8308 new_x > it->last_visible_x
8309 /* Or it fits exactly and we're on a window
8310 system frame. */
8311 || (new_x == it->last_visible_x
8312 && FRAME_WINDOW_P (it->f))))
8314 if (/* IT->hpos == 0 means the very first glyph
8315 doesn't fit on the line, e.g. a wide image. */
8316 it->hpos == 0
8317 || (new_x == it->last_visible_x
8318 && FRAME_WINDOW_P (it->f)))
8320 ++it->hpos;
8321 it->current_x = new_x;
8323 /* The character's last glyph just barely fits
8324 in this row. */
8325 if (i == it->nglyphs - 1)
8327 /* If this is the destination position,
8328 return a position *before* it in this row,
8329 now that we know it fits in this row. */
8330 if (BUFFER_POS_REACHED_P ())
8332 if (it->line_wrap != WORD_WRAP
8333 || wrap_it.sp < 0)
8335 it->hpos = hpos_before_this_char;
8336 it->current_x = x_before_this_char;
8337 result = MOVE_POS_MATCH_OR_ZV;
8338 break;
8340 if (it->line_wrap == WORD_WRAP
8341 && atpos_it.sp < 0)
8343 SAVE_IT (atpos_it, *it, atpos_data);
8344 atpos_it.current_x = x_before_this_char;
8345 atpos_it.hpos = hpos_before_this_char;
8349 prev_method = it->method;
8350 if (it->method == GET_FROM_BUFFER)
8351 prev_pos = IT_CHARPOS (*it);
8352 set_iterator_to_next (it, 1);
8353 if (IT_CHARPOS (*it) < CHARPOS (this_line_min_pos))
8354 SET_TEXT_POS (this_line_min_pos,
8355 IT_CHARPOS (*it), IT_BYTEPOS (*it));
8356 /* On graphical terminals, newlines may
8357 "overflow" into the fringe if
8358 overflow-newline-into-fringe is non-nil.
8359 On text terminals, newlines may overflow
8360 into the last glyph on the display
8361 line.*/
8362 if (!FRAME_WINDOW_P (it->f)
8363 || IT_OVERFLOW_NEWLINE_INTO_FRINGE (it))
8365 if (!get_next_display_element (it))
8367 result = MOVE_POS_MATCH_OR_ZV;
8368 break;
8370 if (BUFFER_POS_REACHED_P ())
8372 if (ITERATOR_AT_END_OF_LINE_P (it))
8373 result = MOVE_POS_MATCH_OR_ZV;
8374 else
8375 result = MOVE_LINE_CONTINUED;
8376 break;
8378 if (ITERATOR_AT_END_OF_LINE_P (it))
8380 result = MOVE_NEWLINE_OR_CR;
8381 break;
8386 else
8387 IT_RESET_X_ASCENT_DESCENT (it);
8389 if (wrap_it.sp >= 0)
8391 RESTORE_IT (it, &wrap_it, wrap_data);
8392 atpos_it.sp = -1;
8393 atx_it.sp = -1;
8396 TRACE_MOVE ((stderr, "move_it_in: continued at %d\n",
8397 IT_CHARPOS (*it)));
8398 result = MOVE_LINE_CONTINUED;
8399 break;
8402 if (BUFFER_POS_REACHED_P ())
8404 if (it->line_wrap != WORD_WRAP || wrap_it.sp < 0)
8405 goto buffer_pos_reached;
8406 if (it->line_wrap == WORD_WRAP && atpos_it.sp < 0)
8408 SAVE_IT (atpos_it, *it, atpos_data);
8409 IT_RESET_X_ASCENT_DESCENT (&atpos_it);
8413 if (new_x > it->first_visible_x)
8415 /* Glyph is visible. Increment number of glyphs that
8416 would be displayed. */
8417 ++it->hpos;
8421 if (result != MOVE_UNDEFINED)
8422 break;
8424 else if (BUFFER_POS_REACHED_P ())
8426 buffer_pos_reached:
8427 IT_RESET_X_ASCENT_DESCENT (it);
8428 result = MOVE_POS_MATCH_OR_ZV;
8429 break;
8431 else if ((op & MOVE_TO_X) && it->current_x >= to_x)
8433 /* Stop when TO_X specified and reached. This check is
8434 necessary here because of lines consisting of a line end,
8435 only. The line end will not produce any glyphs and we
8436 would never get MOVE_X_REACHED. */
8437 xassert (it->nglyphs == 0);
8438 result = MOVE_X_REACHED;
8439 break;
8442 /* Is this a line end? If yes, we're done. */
8443 if (ITERATOR_AT_END_OF_LINE_P (it))
8445 /* If we are past TO_CHARPOS, but never saw any character
8446 positions smaller than TO_CHARPOS, return
8447 MOVE_POS_MATCH_OR_ZV, like the unidirectional display
8448 did. */
8449 if (it->bidi_p && (op & MOVE_TO_POS) != 0)
8451 if (!saw_smaller_pos && IT_CHARPOS (*it) > to_charpos)
8453 if (IT_CHARPOS (ppos_it) < ZV)
8455 RESTORE_IT (it, &ppos_it, ppos_data);
8456 result = MOVE_POS_MATCH_OR_ZV;
8458 else
8459 goto buffer_pos_reached;
8461 else if (it->line_wrap == WORD_WRAP && atpos_it.sp >= 0
8462 && IT_CHARPOS (*it) > to_charpos)
8463 goto buffer_pos_reached;
8464 else
8465 result = MOVE_NEWLINE_OR_CR;
8467 else
8468 result = MOVE_NEWLINE_OR_CR;
8469 break;
8472 prev_method = it->method;
8473 if (it->method == GET_FROM_BUFFER)
8474 prev_pos = IT_CHARPOS (*it);
8475 /* The current display element has been consumed. Advance
8476 to the next. */
8477 set_iterator_to_next (it, 1);
8478 if (IT_CHARPOS (*it) < CHARPOS (this_line_min_pos))
8479 SET_TEXT_POS (this_line_min_pos, IT_CHARPOS (*it), IT_BYTEPOS (*it));
8480 if (IT_CHARPOS (*it) < to_charpos)
8481 saw_smaller_pos = 1;
8482 if (it->bidi_p
8483 && (op & MOVE_TO_POS)
8484 && IT_CHARPOS (*it) >= to_charpos
8485 && IT_CHARPOS (*it) < IT_CHARPOS (ppos_it))
8486 SAVE_IT (ppos_it, *it, ppos_data);
8488 /* Stop if lines are truncated and IT's current x-position is
8489 past the right edge of the window now. */
8490 if (it->line_wrap == TRUNCATE
8491 && it->current_x >= it->last_visible_x)
8493 if (!FRAME_WINDOW_P (it->f)
8494 || IT_OVERFLOW_NEWLINE_INTO_FRINGE (it))
8496 int at_eob_p = 0;
8498 if ((at_eob_p = !get_next_display_element (it))
8499 || BUFFER_POS_REACHED_P ()
8500 /* If we are past TO_CHARPOS, but never saw any
8501 character positions smaller than TO_CHARPOS,
8502 return MOVE_POS_MATCH_OR_ZV, like the
8503 unidirectional display did. */
8504 || (it->bidi_p && (op & MOVE_TO_POS) != 0
8505 && !saw_smaller_pos
8506 && IT_CHARPOS (*it) > to_charpos))
8508 if (it->bidi_p
8509 && !at_eob_p && IT_CHARPOS (ppos_it) < ZV)
8510 RESTORE_IT (it, &ppos_it, ppos_data);
8511 result = MOVE_POS_MATCH_OR_ZV;
8512 break;
8514 if (ITERATOR_AT_END_OF_LINE_P (it))
8516 result = MOVE_NEWLINE_OR_CR;
8517 break;
8520 else if (it->bidi_p && (op & MOVE_TO_POS) != 0
8521 && !saw_smaller_pos
8522 && IT_CHARPOS (*it) > to_charpos)
8524 if (IT_CHARPOS (ppos_it) < ZV)
8525 RESTORE_IT (it, &ppos_it, ppos_data);
8526 result = MOVE_POS_MATCH_OR_ZV;
8527 break;
8529 result = MOVE_LINE_TRUNCATED;
8530 break;
8532 #undef IT_RESET_X_ASCENT_DESCENT
8535 #undef BUFFER_POS_REACHED_P
8537 /* If we scanned beyond to_pos and didn't find a point to wrap at,
8538 restore the saved iterator. */
8539 if (atpos_it.sp >= 0)
8540 RESTORE_IT (it, &atpos_it, atpos_data);
8541 else if (atx_it.sp >= 0)
8542 RESTORE_IT (it, &atx_it, atx_data);
8544 done:
8546 if (atpos_data)
8547 bidi_unshelve_cache (atpos_data, 1);
8548 if (atx_data)
8549 bidi_unshelve_cache (atx_data, 1);
8550 if (wrap_data)
8551 bidi_unshelve_cache (wrap_data, 1);
8552 if (ppos_data)
8553 bidi_unshelve_cache (ppos_data, 1);
8555 /* Restore the iterator settings altered at the beginning of this
8556 function. */
8557 it->glyph_row = saved_glyph_row;
8558 return result;
8561 /* For external use. */
8562 void
8563 move_it_in_display_line (struct it *it,
8564 ptrdiff_t to_charpos, int to_x,
8565 enum move_operation_enum op)
8567 if (it->line_wrap == WORD_WRAP
8568 && (op & MOVE_TO_X))
8570 struct it save_it;
8571 void *save_data = NULL;
8572 int skip;
8574 SAVE_IT (save_it, *it, save_data);
8575 skip = move_it_in_display_line_to (it, to_charpos, to_x, op);
8576 /* When word-wrap is on, TO_X may lie past the end
8577 of a wrapped line. Then it->current is the
8578 character on the next line, so backtrack to the
8579 space before the wrap point. */
8580 if (skip == MOVE_LINE_CONTINUED)
8582 int prev_x = max (it->current_x - 1, 0);
8583 RESTORE_IT (it, &save_it, save_data);
8584 move_it_in_display_line_to
8585 (it, -1, prev_x, MOVE_TO_X);
8587 else
8588 bidi_unshelve_cache (save_data, 1);
8590 else
8591 move_it_in_display_line_to (it, to_charpos, to_x, op);
8595 /* Move IT forward until it satisfies one or more of the criteria in
8596 TO_CHARPOS, TO_X, TO_Y, and TO_VPOS.
8598 OP is a bit-mask that specifies where to stop, and in particular,
8599 which of those four position arguments makes a difference. See the
8600 description of enum move_operation_enum.
8602 If TO_CHARPOS is in invisible text, e.g. a truncated part of a
8603 screen line, this function will set IT to the next position that is
8604 displayed to the right of TO_CHARPOS on the screen. */
8606 void
8607 move_it_to (struct it *it, ptrdiff_t to_charpos, int to_x, int to_y, int to_vpos, int op)
8609 enum move_it_result skip, skip2 = MOVE_X_REACHED;
8610 int line_height, line_start_x = 0, reached = 0;
8611 void *backup_data = NULL;
8613 for (;;)
8615 if (op & MOVE_TO_VPOS)
8617 /* If no TO_CHARPOS and no TO_X specified, stop at the
8618 start of the line TO_VPOS. */
8619 if ((op & (MOVE_TO_X | MOVE_TO_POS)) == 0)
8621 if (it->vpos == to_vpos)
8623 reached = 1;
8624 break;
8626 else
8627 skip = move_it_in_display_line_to (it, -1, -1, 0);
8629 else
8631 /* TO_VPOS >= 0 means stop at TO_X in the line at
8632 TO_VPOS, or at TO_POS, whichever comes first. */
8633 if (it->vpos == to_vpos)
8635 reached = 2;
8636 break;
8639 skip = move_it_in_display_line_to (it, to_charpos, to_x, op);
8641 if (skip == MOVE_POS_MATCH_OR_ZV || it->vpos == to_vpos)
8643 reached = 3;
8644 break;
8646 else if (skip == MOVE_X_REACHED && it->vpos != to_vpos)
8648 /* We have reached TO_X but not in the line we want. */
8649 skip = move_it_in_display_line_to (it, to_charpos,
8650 -1, MOVE_TO_POS);
8651 if (skip == MOVE_POS_MATCH_OR_ZV)
8653 reached = 4;
8654 break;
8659 else if (op & MOVE_TO_Y)
8661 struct it it_backup;
8663 if (it->line_wrap == WORD_WRAP)
8664 SAVE_IT (it_backup, *it, backup_data);
8666 /* TO_Y specified means stop at TO_X in the line containing
8667 TO_Y---or at TO_CHARPOS if this is reached first. The
8668 problem is that we can't really tell whether the line
8669 contains TO_Y before we have completely scanned it, and
8670 this may skip past TO_X. What we do is to first scan to
8671 TO_X.
8673 If TO_X is not specified, use a TO_X of zero. The reason
8674 is to make the outcome of this function more predictable.
8675 If we didn't use TO_X == 0, we would stop at the end of
8676 the line which is probably not what a caller would expect
8677 to happen. */
8678 skip = move_it_in_display_line_to
8679 (it, to_charpos, ((op & MOVE_TO_X) ? to_x : 0),
8680 (MOVE_TO_X | (op & MOVE_TO_POS)));
8682 /* If TO_CHARPOS is reached or ZV, we don't have to do more. */
8683 if (skip == MOVE_POS_MATCH_OR_ZV)
8684 reached = 5;
8685 else if (skip == MOVE_X_REACHED)
8687 /* If TO_X was reached, we want to know whether TO_Y is
8688 in the line. We know this is the case if the already
8689 scanned glyphs make the line tall enough. Otherwise,
8690 we must check by scanning the rest of the line. */
8691 line_height = it->max_ascent + it->max_descent;
8692 if (to_y >= it->current_y
8693 && to_y < it->current_y + line_height)
8695 reached = 6;
8696 break;
8698 SAVE_IT (it_backup, *it, backup_data);
8699 TRACE_MOVE ((stderr, "move_it: from %d\n", IT_CHARPOS (*it)));
8700 skip2 = move_it_in_display_line_to (it, to_charpos, -1,
8701 op & MOVE_TO_POS);
8702 TRACE_MOVE ((stderr, "move_it: to %d\n", IT_CHARPOS (*it)));
8703 line_height = it->max_ascent + it->max_descent;
8704 TRACE_MOVE ((stderr, "move_it: line_height = %d\n", line_height));
8706 if (to_y >= it->current_y
8707 && to_y < it->current_y + line_height)
8709 /* If TO_Y is in this line and TO_X was reached
8710 above, we scanned too far. We have to restore
8711 IT's settings to the ones before skipping. But
8712 keep the more accurate values of max_ascent and
8713 max_descent we've found while skipping the rest
8714 of the line, for the sake of callers, such as
8715 pos_visible_p, that need to know the line
8716 height. */
8717 int max_ascent = it->max_ascent;
8718 int max_descent = it->max_descent;
8720 RESTORE_IT (it, &it_backup, backup_data);
8721 it->max_ascent = max_ascent;
8722 it->max_descent = max_descent;
8723 reached = 6;
8725 else
8727 skip = skip2;
8728 if (skip == MOVE_POS_MATCH_OR_ZV)
8729 reached = 7;
8732 else
8734 /* Check whether TO_Y is in this line. */
8735 line_height = it->max_ascent + it->max_descent;
8736 TRACE_MOVE ((stderr, "move_it: line_height = %d\n", line_height));
8738 if (to_y >= it->current_y
8739 && to_y < it->current_y + line_height)
8741 /* When word-wrap is on, TO_X may lie past the end
8742 of a wrapped line. Then it->current is the
8743 character on the next line, so backtrack to the
8744 space before the wrap point. */
8745 if (skip == MOVE_LINE_CONTINUED
8746 && it->line_wrap == WORD_WRAP)
8748 int prev_x = max (it->current_x - 1, 0);
8749 RESTORE_IT (it, &it_backup, backup_data);
8750 skip = move_it_in_display_line_to
8751 (it, -1, prev_x, MOVE_TO_X);
8753 reached = 6;
8757 if (reached)
8758 break;
8760 else if (BUFFERP (it->object)
8761 && (it->method == GET_FROM_BUFFER
8762 || it->method == GET_FROM_STRETCH)
8763 && IT_CHARPOS (*it) >= to_charpos
8764 /* Under bidi iteration, a call to set_iterator_to_next
8765 can scan far beyond to_charpos if the initial
8766 portion of the next line needs to be reordered. In
8767 that case, give move_it_in_display_line_to another
8768 chance below. */
8769 && !(it->bidi_p
8770 && it->bidi_it.scan_dir == -1))
8771 skip = MOVE_POS_MATCH_OR_ZV;
8772 else
8773 skip = move_it_in_display_line_to (it, to_charpos, -1, MOVE_TO_POS);
8775 switch (skip)
8777 case MOVE_POS_MATCH_OR_ZV:
8778 reached = 8;
8779 goto out;
8781 case MOVE_NEWLINE_OR_CR:
8782 set_iterator_to_next (it, 1);
8783 it->continuation_lines_width = 0;
8784 break;
8786 case MOVE_LINE_TRUNCATED:
8787 it->continuation_lines_width = 0;
8788 reseat_at_next_visible_line_start (it, 0);
8789 if ((op & MOVE_TO_POS) != 0
8790 && IT_CHARPOS (*it) > to_charpos)
8792 reached = 9;
8793 goto out;
8795 break;
8797 case MOVE_LINE_CONTINUED:
8798 /* For continued lines ending in a tab, some of the glyphs
8799 associated with the tab are displayed on the current
8800 line. Since it->current_x does not include these glyphs,
8801 we use it->last_visible_x instead. */
8802 if (it->c == '\t')
8804 it->continuation_lines_width += it->last_visible_x;
8805 /* When moving by vpos, ensure that the iterator really
8806 advances to the next line (bug#847, bug#969). Fixme:
8807 do we need to do this in other circumstances? */
8808 if (it->current_x != it->last_visible_x
8809 && (op & MOVE_TO_VPOS)
8810 && !(op & (MOVE_TO_X | MOVE_TO_POS)))
8812 line_start_x = it->current_x + it->pixel_width
8813 - it->last_visible_x;
8814 set_iterator_to_next (it, 0);
8817 else
8818 it->continuation_lines_width += it->current_x;
8819 break;
8821 default:
8822 abort ();
8825 /* Reset/increment for the next run. */
8826 recenter_overlay_lists (current_buffer, IT_CHARPOS (*it));
8827 it->current_x = line_start_x;
8828 line_start_x = 0;
8829 it->hpos = 0;
8830 it->current_y += it->max_ascent + it->max_descent;
8831 ++it->vpos;
8832 last_height = it->max_ascent + it->max_descent;
8833 last_max_ascent = it->max_ascent;
8834 it->max_ascent = it->max_descent = 0;
8837 out:
8839 /* On text terminals, we may stop at the end of a line in the middle
8840 of a multi-character glyph. If the glyph itself is continued,
8841 i.e. it is actually displayed on the next line, don't treat this
8842 stopping point as valid; move to the next line instead (unless
8843 that brings us offscreen). */
8844 if (!FRAME_WINDOW_P (it->f)
8845 && op & MOVE_TO_POS
8846 && IT_CHARPOS (*it) == to_charpos
8847 && it->what == IT_CHARACTER
8848 && it->nglyphs > 1
8849 && it->line_wrap == WINDOW_WRAP
8850 && it->current_x == it->last_visible_x - 1
8851 && it->c != '\n'
8852 && it->c != '\t'
8853 && it->vpos < XFASTINT (it->w->window_end_vpos))
8855 it->continuation_lines_width += it->current_x;
8856 it->current_x = it->hpos = it->max_ascent = it->max_descent = 0;
8857 it->current_y += it->max_ascent + it->max_descent;
8858 ++it->vpos;
8859 last_height = it->max_ascent + it->max_descent;
8860 last_max_ascent = it->max_ascent;
8863 if (backup_data)
8864 bidi_unshelve_cache (backup_data, 1);
8866 TRACE_MOVE ((stderr, "move_it_to: reached %d\n", reached));
8870 /* Move iterator IT backward by a specified y-distance DY, DY >= 0.
8872 If DY > 0, move IT backward at least that many pixels. DY = 0
8873 means move IT backward to the preceding line start or BEGV. This
8874 function may move over more than DY pixels if IT->current_y - DY
8875 ends up in the middle of a line; in this case IT->current_y will be
8876 set to the top of the line moved to. */
8878 void
8879 move_it_vertically_backward (struct it *it, int dy)
8881 int nlines, h;
8882 struct it it2, it3;
8883 void *it2data = NULL, *it3data = NULL;
8884 ptrdiff_t start_pos;
8886 move_further_back:
8887 xassert (dy >= 0);
8889 start_pos = IT_CHARPOS (*it);
8891 /* Estimate how many newlines we must move back. */
8892 nlines = max (1, dy / FRAME_LINE_HEIGHT (it->f));
8894 /* Set the iterator's position that many lines back. */
8895 while (nlines-- && IT_CHARPOS (*it) > BEGV)
8896 back_to_previous_visible_line_start (it);
8898 /* Reseat the iterator here. When moving backward, we don't want
8899 reseat to skip forward over invisible text, set up the iterator
8900 to deliver from overlay strings at the new position etc. So,
8901 use reseat_1 here. */
8902 reseat_1 (it, it->current.pos, 1);
8904 /* We are now surely at a line start. */
8905 it->current_x = it->hpos = 0; /* FIXME: this is incorrect when bidi
8906 reordering is in effect. */
8907 it->continuation_lines_width = 0;
8909 /* Move forward and see what y-distance we moved. First move to the
8910 start of the next line so that we get its height. We need this
8911 height to be able to tell whether we reached the specified
8912 y-distance. */
8913 SAVE_IT (it2, *it, it2data);
8914 it2.max_ascent = it2.max_descent = 0;
8917 move_it_to (&it2, start_pos, -1, -1, it2.vpos + 1,
8918 MOVE_TO_POS | MOVE_TO_VPOS);
8920 while (!(IT_POS_VALID_AFTER_MOVE_P (&it2)
8921 /* If we are in a display string which starts at START_POS,
8922 and that display string includes a newline, and we are
8923 right after that newline (i.e. at the beginning of a
8924 display line), exit the loop, because otherwise we will
8925 infloop, since move_it_to will see that it is already at
8926 START_POS and will not move. */
8927 || (it2.method == GET_FROM_STRING
8928 && IT_CHARPOS (it2) == start_pos
8929 && SREF (it2.string, IT_STRING_BYTEPOS (it2) - 1) == '\n')));
8930 xassert (IT_CHARPOS (*it) >= BEGV);
8931 SAVE_IT (it3, it2, it3data);
8933 move_it_to (&it2, start_pos, -1, -1, -1, MOVE_TO_POS);
8934 xassert (IT_CHARPOS (*it) >= BEGV);
8935 /* H is the actual vertical distance from the position in *IT
8936 and the starting position. */
8937 h = it2.current_y - it->current_y;
8938 /* NLINES is the distance in number of lines. */
8939 nlines = it2.vpos - it->vpos;
8941 /* Correct IT's y and vpos position
8942 so that they are relative to the starting point. */
8943 it->vpos -= nlines;
8944 it->current_y -= h;
8946 if (dy == 0)
8948 /* DY == 0 means move to the start of the screen line. The
8949 value of nlines is > 0 if continuation lines were involved,
8950 or if the original IT position was at start of a line. */
8951 RESTORE_IT (it, it, it2data);
8952 if (nlines > 0)
8953 move_it_by_lines (it, nlines);
8954 /* The above code moves us to some position NLINES down,
8955 usually to its first glyph (leftmost in an L2R line), but
8956 that's not necessarily the start of the line, under bidi
8957 reordering. We want to get to the character position
8958 that is immediately after the newline of the previous
8959 line. */
8960 if (it->bidi_p
8961 && !it->continuation_lines_width
8962 && !STRINGP (it->string)
8963 && IT_CHARPOS (*it) > BEGV
8964 && FETCH_BYTE (IT_BYTEPOS (*it) - 1) != '\n')
8966 ptrdiff_t nl_pos =
8967 find_next_newline_no_quit (IT_CHARPOS (*it) - 1, -1);
8969 move_it_to (it, nl_pos, -1, -1, -1, MOVE_TO_POS);
8971 bidi_unshelve_cache (it3data, 1);
8973 else
8975 /* The y-position we try to reach, relative to *IT.
8976 Note that H has been subtracted in front of the if-statement. */
8977 int target_y = it->current_y + h - dy;
8978 int y0 = it3.current_y;
8979 int y1;
8980 int line_height;
8982 RESTORE_IT (&it3, &it3, it3data);
8983 y1 = line_bottom_y (&it3);
8984 line_height = y1 - y0;
8985 RESTORE_IT (it, it, it2data);
8986 /* If we did not reach target_y, try to move further backward if
8987 we can. If we moved too far backward, try to move forward. */
8988 if (target_y < it->current_y
8989 /* This is heuristic. In a window that's 3 lines high, with
8990 a line height of 13 pixels each, recentering with point
8991 on the bottom line will try to move -39/2 = 19 pixels
8992 backward. Try to avoid moving into the first line. */
8993 && (it->current_y - target_y
8994 > min (window_box_height (it->w), line_height * 2 / 3))
8995 && IT_CHARPOS (*it) > BEGV)
8997 TRACE_MOVE ((stderr, " not far enough -> move_vert %d\n",
8998 target_y - it->current_y));
8999 dy = it->current_y - target_y;
9000 goto move_further_back;
9002 else if (target_y >= it->current_y + line_height
9003 && IT_CHARPOS (*it) < ZV)
9005 /* Should move forward by at least one line, maybe more.
9007 Note: Calling move_it_by_lines can be expensive on
9008 terminal frames, where compute_motion is used (via
9009 vmotion) to do the job, when there are very long lines
9010 and truncate-lines is nil. That's the reason for
9011 treating terminal frames specially here. */
9013 if (!FRAME_WINDOW_P (it->f))
9014 move_it_vertically (it, target_y - (it->current_y + line_height));
9015 else
9019 move_it_by_lines (it, 1);
9021 while (target_y >= line_bottom_y (it) && IT_CHARPOS (*it) < ZV);
9028 /* Move IT by a specified amount of pixel lines DY. DY negative means
9029 move backwards. DY = 0 means move to start of screen line. At the
9030 end, IT will be on the start of a screen line. */
9032 void
9033 move_it_vertically (struct it *it, int dy)
9035 if (dy <= 0)
9036 move_it_vertically_backward (it, -dy);
9037 else
9039 TRACE_MOVE ((stderr, "move_it_v: from %d, %d\n", IT_CHARPOS (*it), dy));
9040 move_it_to (it, ZV, -1, it->current_y + dy, -1,
9041 MOVE_TO_POS | MOVE_TO_Y);
9042 TRACE_MOVE ((stderr, "move_it_v: to %d\n", IT_CHARPOS (*it)));
9044 /* If buffer ends in ZV without a newline, move to the start of
9045 the line to satisfy the post-condition. */
9046 if (IT_CHARPOS (*it) == ZV
9047 && ZV > BEGV
9048 && FETCH_BYTE (IT_BYTEPOS (*it) - 1) != '\n')
9049 move_it_by_lines (it, 0);
9054 /* Move iterator IT past the end of the text line it is in. */
9056 void
9057 move_it_past_eol (struct it *it)
9059 enum move_it_result rc;
9061 rc = move_it_in_display_line_to (it, Z, 0, MOVE_TO_POS);
9062 if (rc == MOVE_NEWLINE_OR_CR)
9063 set_iterator_to_next (it, 0);
9067 /* Move IT by a specified number DVPOS of screen lines down. DVPOS
9068 negative means move up. DVPOS == 0 means move to the start of the
9069 screen line.
9071 Optimization idea: If we would know that IT->f doesn't use
9072 a face with proportional font, we could be faster for
9073 truncate-lines nil. */
9075 void
9076 move_it_by_lines (struct it *it, ptrdiff_t dvpos)
9079 /* The commented-out optimization uses vmotion on terminals. This
9080 gives bad results, because elements like it->what, on which
9081 callers such as pos_visible_p rely, aren't updated. */
9082 /* struct position pos;
9083 if (!FRAME_WINDOW_P (it->f))
9085 struct text_pos textpos;
9087 pos = *vmotion (IT_CHARPOS (*it), dvpos, it->w);
9088 SET_TEXT_POS (textpos, pos.bufpos, pos.bytepos);
9089 reseat (it, textpos, 1);
9090 it->vpos += pos.vpos;
9091 it->current_y += pos.vpos;
9093 else */
9095 if (dvpos == 0)
9097 /* DVPOS == 0 means move to the start of the screen line. */
9098 move_it_vertically_backward (it, 0);
9099 /* Let next call to line_bottom_y calculate real line height */
9100 last_height = 0;
9102 else if (dvpos > 0)
9104 move_it_to (it, -1, -1, -1, it->vpos + dvpos, MOVE_TO_VPOS);
9105 if (!IT_POS_VALID_AFTER_MOVE_P (it))
9107 /* Only move to the next buffer position if we ended up in a
9108 string from display property, not in an overlay string
9109 (before-string or after-string). That is because the
9110 latter don't conceal the underlying buffer position, so
9111 we can ask to move the iterator to the exact position we
9112 are interested in. Note that, even if we are already at
9113 IT_CHARPOS (*it), the call below is not a no-op, as it
9114 will detect that we are at the end of the string, pop the
9115 iterator, and compute it->current_x and it->hpos
9116 correctly. */
9117 move_it_to (it, IT_CHARPOS (*it) + it->string_from_display_prop_p,
9118 -1, -1, -1, MOVE_TO_POS);
9121 else
9123 struct it it2;
9124 void *it2data = NULL;
9125 ptrdiff_t start_charpos, i;
9127 /* Start at the beginning of the screen line containing IT's
9128 position. This may actually move vertically backwards,
9129 in case of overlays, so adjust dvpos accordingly. */
9130 dvpos += it->vpos;
9131 move_it_vertically_backward (it, 0);
9132 dvpos -= it->vpos;
9134 /* Go back -DVPOS visible lines and reseat the iterator there. */
9135 start_charpos = IT_CHARPOS (*it);
9136 for (i = -dvpos; i > 0 && IT_CHARPOS (*it) > BEGV; --i)
9137 back_to_previous_visible_line_start (it);
9138 reseat (it, it->current.pos, 1);
9140 /* Move further back if we end up in a string or an image. */
9141 while (!IT_POS_VALID_AFTER_MOVE_P (it))
9143 /* First try to move to start of display line. */
9144 dvpos += it->vpos;
9145 move_it_vertically_backward (it, 0);
9146 dvpos -= it->vpos;
9147 if (IT_POS_VALID_AFTER_MOVE_P (it))
9148 break;
9149 /* If start of line is still in string or image,
9150 move further back. */
9151 back_to_previous_visible_line_start (it);
9152 reseat (it, it->current.pos, 1);
9153 dvpos--;
9156 it->current_x = it->hpos = 0;
9158 /* Above call may have moved too far if continuation lines
9159 are involved. Scan forward and see if it did. */
9160 SAVE_IT (it2, *it, it2data);
9161 it2.vpos = it2.current_y = 0;
9162 move_it_to (&it2, start_charpos, -1, -1, -1, MOVE_TO_POS);
9163 it->vpos -= it2.vpos;
9164 it->current_y -= it2.current_y;
9165 it->current_x = it->hpos = 0;
9167 /* If we moved too far back, move IT some lines forward. */
9168 if (it2.vpos > -dvpos)
9170 int delta = it2.vpos + dvpos;
9172 RESTORE_IT (&it2, &it2, it2data);
9173 SAVE_IT (it2, *it, it2data);
9174 move_it_to (it, -1, -1, -1, it->vpos + delta, MOVE_TO_VPOS);
9175 /* Move back again if we got too far ahead. */
9176 if (IT_CHARPOS (*it) >= start_charpos)
9177 RESTORE_IT (it, &it2, it2data);
9178 else
9179 bidi_unshelve_cache (it2data, 1);
9181 else
9182 RESTORE_IT (it, it, it2data);
9186 /* Return 1 if IT points into the middle of a display vector. */
9189 in_display_vector_p (struct it *it)
9191 return (it->method == GET_FROM_DISPLAY_VECTOR
9192 && it->current.dpvec_index > 0
9193 && it->dpvec + it->current.dpvec_index != it->dpend);
9197 /***********************************************************************
9198 Messages
9199 ***********************************************************************/
9202 /* Add a message with format string FORMAT and arguments ARG1 and ARG2
9203 to *Messages*. */
9205 void
9206 add_to_log (const char *format, Lisp_Object arg1, Lisp_Object arg2)
9208 Lisp_Object args[3];
9209 Lisp_Object msg, fmt;
9210 char *buffer;
9211 ptrdiff_t len;
9212 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4;
9213 USE_SAFE_ALLOCA;
9215 /* Do nothing if called asynchronously. Inserting text into
9216 a buffer may call after-change-functions and alike and
9217 that would means running Lisp asynchronously. */
9218 if (handling_signal)
9219 return;
9221 fmt = msg = Qnil;
9222 GCPRO4 (fmt, msg, arg1, arg2);
9224 args[0] = fmt = build_string (format);
9225 args[1] = arg1;
9226 args[2] = arg2;
9227 msg = Fformat (3, args);
9229 len = SBYTES (msg) + 1;
9230 SAFE_ALLOCA (buffer, char *, len);
9231 memcpy (buffer, SDATA (msg), len);
9233 message_dolog (buffer, len - 1, 1, 0);
9234 SAFE_FREE ();
9236 UNGCPRO;
9240 /* Output a newline in the *Messages* buffer if "needs" one. */
9242 void
9243 message_log_maybe_newline (void)
9245 if (message_log_need_newline)
9246 message_dolog ("", 0, 1, 0);
9250 /* Add a string M of length NBYTES to the message log, optionally
9251 terminated with a newline when NLFLAG is non-zero. MULTIBYTE, if
9252 nonzero, means interpret the contents of M as multibyte. This
9253 function calls low-level routines in order to bypass text property
9254 hooks, etc. which might not be safe to run.
9256 This may GC (insert may run before/after change hooks),
9257 so the buffer M must NOT point to a Lisp string. */
9259 void
9260 message_dolog (const char *m, ptrdiff_t nbytes, int nlflag, int multibyte)
9262 const unsigned char *msg = (const unsigned char *) m;
9264 if (!NILP (Vmemory_full))
9265 return;
9267 if (!NILP (Vmessage_log_max))
9269 struct buffer *oldbuf;
9270 Lisp_Object oldpoint, oldbegv, oldzv;
9271 int old_windows_or_buffers_changed = windows_or_buffers_changed;
9272 ptrdiff_t point_at_end = 0;
9273 ptrdiff_t zv_at_end = 0;
9274 Lisp_Object old_deactivate_mark, tem;
9275 struct gcpro gcpro1;
9277 old_deactivate_mark = Vdeactivate_mark;
9278 oldbuf = current_buffer;
9279 Fset_buffer (Fget_buffer_create (Vmessages_buffer_name));
9280 BVAR (current_buffer, undo_list) = Qt;
9282 oldpoint = message_dolog_marker1;
9283 set_marker_restricted (oldpoint, make_number (PT), Qnil);
9284 oldbegv = message_dolog_marker2;
9285 set_marker_restricted (oldbegv, make_number (BEGV), Qnil);
9286 oldzv = message_dolog_marker3;
9287 set_marker_restricted (oldzv, make_number (ZV), Qnil);
9288 GCPRO1 (old_deactivate_mark);
9290 if (PT == Z)
9291 point_at_end = 1;
9292 if (ZV == Z)
9293 zv_at_end = 1;
9295 BEGV = BEG;
9296 BEGV_BYTE = BEG_BYTE;
9297 ZV = Z;
9298 ZV_BYTE = Z_BYTE;
9299 TEMP_SET_PT_BOTH (Z, Z_BYTE);
9301 /* Insert the string--maybe converting multibyte to single byte
9302 or vice versa, so that all the text fits the buffer. */
9303 if (multibyte
9304 && NILP (BVAR (current_buffer, enable_multibyte_characters)))
9306 ptrdiff_t i;
9307 int c, char_bytes;
9308 char work[1];
9310 /* Convert a multibyte string to single-byte
9311 for the *Message* buffer. */
9312 for (i = 0; i < nbytes; i += char_bytes)
9314 c = string_char_and_length (msg + i, &char_bytes);
9315 work[0] = (ASCII_CHAR_P (c)
9317 : multibyte_char_to_unibyte (c));
9318 insert_1_both (work, 1, 1, 1, 0, 0);
9321 else if (! multibyte
9322 && ! NILP (BVAR (current_buffer, enable_multibyte_characters)))
9324 ptrdiff_t i;
9325 int c, char_bytes;
9326 unsigned char str[MAX_MULTIBYTE_LENGTH];
9327 /* Convert a single-byte string to multibyte
9328 for the *Message* buffer. */
9329 for (i = 0; i < nbytes; i++)
9331 c = msg[i];
9332 MAKE_CHAR_MULTIBYTE (c);
9333 char_bytes = CHAR_STRING (c, str);
9334 insert_1_both ((char *) str, 1, char_bytes, 1, 0, 0);
9337 else if (nbytes)
9338 insert_1 (m, nbytes, 1, 0, 0);
9340 if (nlflag)
9342 ptrdiff_t this_bol, this_bol_byte, prev_bol, prev_bol_byte;
9343 printmax_t dups;
9344 insert_1 ("\n", 1, 1, 0, 0);
9346 scan_newline (Z, Z_BYTE, BEG, BEG_BYTE, -2, 0);
9347 this_bol = PT;
9348 this_bol_byte = PT_BYTE;
9350 /* See if this line duplicates the previous one.
9351 If so, combine duplicates. */
9352 if (this_bol > BEG)
9354 scan_newline (PT, PT_BYTE, BEG, BEG_BYTE, -2, 0);
9355 prev_bol = PT;
9356 prev_bol_byte = PT_BYTE;
9358 dups = message_log_check_duplicate (prev_bol_byte,
9359 this_bol_byte);
9360 if (dups)
9362 del_range_both (prev_bol, prev_bol_byte,
9363 this_bol, this_bol_byte, 0);
9364 if (dups > 1)
9366 char dupstr[sizeof " [ times]"
9367 + INT_STRLEN_BOUND (printmax_t)];
9368 int duplen;
9370 /* If you change this format, don't forget to also
9371 change message_log_check_duplicate. */
9372 sprintf (dupstr, " [%"pMd" times]", dups);
9373 duplen = strlen (dupstr);
9374 TEMP_SET_PT_BOTH (Z - 1, Z_BYTE - 1);
9375 insert_1 (dupstr, duplen, 1, 0, 1);
9380 /* If we have more than the desired maximum number of lines
9381 in the *Messages* buffer now, delete the oldest ones.
9382 This is safe because we don't have undo in this buffer. */
9384 if (NATNUMP (Vmessage_log_max))
9386 scan_newline (Z, Z_BYTE, BEG, BEG_BYTE,
9387 -XFASTINT (Vmessage_log_max) - 1, 0);
9388 del_range_both (BEG, BEG_BYTE, PT, PT_BYTE, 0);
9391 BEGV = XMARKER (oldbegv)->charpos;
9392 BEGV_BYTE = marker_byte_position (oldbegv);
9394 if (zv_at_end)
9396 ZV = Z;
9397 ZV_BYTE = Z_BYTE;
9399 else
9401 ZV = XMARKER (oldzv)->charpos;
9402 ZV_BYTE = marker_byte_position (oldzv);
9405 if (point_at_end)
9406 TEMP_SET_PT_BOTH (Z, Z_BYTE);
9407 else
9408 /* We can't do Fgoto_char (oldpoint) because it will run some
9409 Lisp code. */
9410 TEMP_SET_PT_BOTH (XMARKER (oldpoint)->charpos,
9411 XMARKER (oldpoint)->bytepos);
9413 UNGCPRO;
9414 unchain_marker (XMARKER (oldpoint));
9415 unchain_marker (XMARKER (oldbegv));
9416 unchain_marker (XMARKER (oldzv));
9418 tem = Fget_buffer_window (Fcurrent_buffer (), Qt);
9419 set_buffer_internal (oldbuf);
9420 if (NILP (tem))
9421 windows_or_buffers_changed = old_windows_or_buffers_changed;
9422 message_log_need_newline = !nlflag;
9423 Vdeactivate_mark = old_deactivate_mark;
9428 /* We are at the end of the buffer after just having inserted a newline.
9429 (Note: We depend on the fact we won't be crossing the gap.)
9430 Check to see if the most recent message looks a lot like the previous one.
9431 Return 0 if different, 1 if the new one should just replace it, or a
9432 value N > 1 if we should also append " [N times]". */
9434 static intmax_t
9435 message_log_check_duplicate (ptrdiff_t prev_bol_byte, ptrdiff_t this_bol_byte)
9437 ptrdiff_t i;
9438 ptrdiff_t len = Z_BYTE - 1 - this_bol_byte;
9439 int seen_dots = 0;
9440 unsigned char *p1 = BUF_BYTE_ADDRESS (current_buffer, prev_bol_byte);
9441 unsigned char *p2 = BUF_BYTE_ADDRESS (current_buffer, this_bol_byte);
9443 for (i = 0; i < len; i++)
9445 if (i >= 3 && p1[i-3] == '.' && p1[i-2] == '.' && p1[i-1] == '.')
9446 seen_dots = 1;
9447 if (p1[i] != p2[i])
9448 return seen_dots;
9450 p1 += len;
9451 if (*p1 == '\n')
9452 return 2;
9453 if (*p1++ == ' ' && *p1++ == '[')
9455 char *pend;
9456 intmax_t n = strtoimax ((char *) p1, &pend, 10);
9457 if (0 < n && n < INTMAX_MAX && strncmp (pend, " times]\n", 8) == 0)
9458 return n+1;
9460 return 0;
9464 /* Display an echo area message M with a specified length of NBYTES
9465 bytes. The string may include null characters. If M is 0, clear
9466 out any existing message, and let the mini-buffer text show
9467 through.
9469 This may GC, so the buffer M must NOT point to a Lisp string. */
9471 void
9472 message2 (const char *m, ptrdiff_t nbytes, int multibyte)
9474 /* First flush out any partial line written with print. */
9475 message_log_maybe_newline ();
9476 if (m)
9477 message_dolog (m, nbytes, 1, multibyte);
9478 message2_nolog (m, nbytes, multibyte);
9482 /* The non-logging counterpart of message2. */
9484 void
9485 message2_nolog (const char *m, ptrdiff_t nbytes, int multibyte)
9487 struct frame *sf = SELECTED_FRAME ();
9488 message_enable_multibyte = multibyte;
9490 if (FRAME_INITIAL_P (sf))
9492 if (noninteractive_need_newline)
9493 putc ('\n', stderr);
9494 noninteractive_need_newline = 0;
9495 if (m)
9496 fwrite (m, nbytes, 1, stderr);
9497 if (cursor_in_echo_area == 0)
9498 fprintf (stderr, "\n");
9499 fflush (stderr);
9501 /* A null message buffer means that the frame hasn't really been
9502 initialized yet. Error messages get reported properly by
9503 cmd_error, so this must be just an informative message; toss it. */
9504 else if (INTERACTIVE
9505 && sf->glyphs_initialized_p
9506 && FRAME_MESSAGE_BUF (sf))
9508 Lisp_Object mini_window;
9509 struct frame *f;
9511 /* Get the frame containing the mini-buffer
9512 that the selected frame is using. */
9513 mini_window = FRAME_MINIBUF_WINDOW (sf);
9514 f = XFRAME (WINDOW_FRAME (XWINDOW (mini_window)));
9516 FRAME_SAMPLE_VISIBILITY (f);
9517 if (FRAME_VISIBLE_P (sf)
9518 && ! FRAME_VISIBLE_P (f))
9519 Fmake_frame_visible (WINDOW_FRAME (XWINDOW (mini_window)));
9521 if (m)
9523 set_message (m, Qnil, nbytes, multibyte);
9524 if (minibuffer_auto_raise)
9525 Fraise_frame (WINDOW_FRAME (XWINDOW (mini_window)));
9527 else
9528 clear_message (1, 1);
9530 do_pending_window_change (0);
9531 echo_area_display (1);
9532 do_pending_window_change (0);
9533 if (FRAME_TERMINAL (f)->frame_up_to_date_hook != 0 && ! gc_in_progress)
9534 (*FRAME_TERMINAL (f)->frame_up_to_date_hook) (f);
9539 /* Display an echo area message M with a specified length of NBYTES
9540 bytes. The string may include null characters. If M is not a
9541 string, clear out any existing message, and let the mini-buffer
9542 text show through.
9544 This function cancels echoing. */
9546 void
9547 message3 (Lisp_Object m, ptrdiff_t nbytes, int multibyte)
9549 struct gcpro gcpro1;
9551 GCPRO1 (m);
9552 clear_message (1,1);
9553 cancel_echoing ();
9555 /* First flush out any partial line written with print. */
9556 message_log_maybe_newline ();
9557 if (STRINGP (m))
9559 char *buffer;
9560 USE_SAFE_ALLOCA;
9562 SAFE_ALLOCA (buffer, char *, nbytes);
9563 memcpy (buffer, SDATA (m), nbytes);
9564 message_dolog (buffer, nbytes, 1, multibyte);
9565 SAFE_FREE ();
9567 message3_nolog (m, nbytes, multibyte);
9569 UNGCPRO;
9573 /* The non-logging version of message3.
9574 This does not cancel echoing, because it is used for echoing.
9575 Perhaps we need to make a separate function for echoing
9576 and make this cancel echoing. */
9578 void
9579 message3_nolog (Lisp_Object m, ptrdiff_t nbytes, int multibyte)
9581 struct frame *sf = SELECTED_FRAME ();
9582 message_enable_multibyte = multibyte;
9584 if (FRAME_INITIAL_P (sf))
9586 if (noninteractive_need_newline)
9587 putc ('\n', stderr);
9588 noninteractive_need_newline = 0;
9589 if (STRINGP (m))
9590 fwrite (SDATA (m), nbytes, 1, stderr);
9591 if (cursor_in_echo_area == 0)
9592 fprintf (stderr, "\n");
9593 fflush (stderr);
9595 /* A null message buffer means that the frame hasn't really been
9596 initialized yet. Error messages get reported properly by
9597 cmd_error, so this must be just an informative message; toss it. */
9598 else if (INTERACTIVE
9599 && sf->glyphs_initialized_p
9600 && FRAME_MESSAGE_BUF (sf))
9602 Lisp_Object mini_window;
9603 Lisp_Object frame;
9604 struct frame *f;
9606 /* Get the frame containing the mini-buffer
9607 that the selected frame is using. */
9608 mini_window = FRAME_MINIBUF_WINDOW (sf);
9609 frame = XWINDOW (mini_window)->frame;
9610 f = XFRAME (frame);
9612 FRAME_SAMPLE_VISIBILITY (f);
9613 if (FRAME_VISIBLE_P (sf)
9614 && !FRAME_VISIBLE_P (f))
9615 Fmake_frame_visible (frame);
9617 if (STRINGP (m) && SCHARS (m) > 0)
9619 set_message (NULL, m, nbytes, multibyte);
9620 if (minibuffer_auto_raise)
9621 Fraise_frame (frame);
9622 /* Assume we are not echoing.
9623 (If we are, echo_now will override this.) */
9624 echo_message_buffer = Qnil;
9626 else
9627 clear_message (1, 1);
9629 do_pending_window_change (0);
9630 echo_area_display (1);
9631 do_pending_window_change (0);
9632 if (FRAME_TERMINAL (f)->frame_up_to_date_hook != 0 && ! gc_in_progress)
9633 (*FRAME_TERMINAL (f)->frame_up_to_date_hook) (f);
9638 /* Display a null-terminated echo area message M. If M is 0, clear
9639 out any existing message, and let the mini-buffer text show through.
9641 The buffer M must continue to exist until after the echo area gets
9642 cleared or some other message gets displayed there. Do not pass
9643 text that is stored in a Lisp string. Do not pass text in a buffer
9644 that was alloca'd. */
9646 void
9647 message1 (const char *m)
9649 message2 (m, (m ? strlen (m) : 0), 0);
9653 /* The non-logging counterpart of message1. */
9655 void
9656 message1_nolog (const char *m)
9658 message2_nolog (m, (m ? strlen (m) : 0), 0);
9661 /* Display a message M which contains a single %s
9662 which gets replaced with STRING. */
9664 void
9665 message_with_string (const char *m, Lisp_Object string, int log)
9667 CHECK_STRING (string);
9669 if (noninteractive)
9671 if (m)
9673 if (noninteractive_need_newline)
9674 putc ('\n', stderr);
9675 noninteractive_need_newline = 0;
9676 fprintf (stderr, m, SDATA (string));
9677 if (!cursor_in_echo_area)
9678 fprintf (stderr, "\n");
9679 fflush (stderr);
9682 else if (INTERACTIVE)
9684 /* The frame whose minibuffer we're going to display the message on.
9685 It may be larger than the selected frame, so we need
9686 to use its buffer, not the selected frame's buffer. */
9687 Lisp_Object mini_window;
9688 struct frame *f, *sf = SELECTED_FRAME ();
9690 /* Get the frame containing the minibuffer
9691 that the selected frame is using. */
9692 mini_window = FRAME_MINIBUF_WINDOW (sf);
9693 f = XFRAME (WINDOW_FRAME (XWINDOW (mini_window)));
9695 /* A null message buffer means that the frame hasn't really been
9696 initialized yet. Error messages get reported properly by
9697 cmd_error, so this must be just an informative message; toss it. */
9698 if (FRAME_MESSAGE_BUF (f))
9700 Lisp_Object args[2], msg;
9701 struct gcpro gcpro1, gcpro2;
9703 args[0] = build_string (m);
9704 args[1] = msg = string;
9705 GCPRO2 (args[0], msg);
9706 gcpro1.nvars = 2;
9708 msg = Fformat (2, args);
9710 if (log)
9711 message3 (msg, SBYTES (msg), STRING_MULTIBYTE (msg));
9712 else
9713 message3_nolog (msg, SBYTES (msg), STRING_MULTIBYTE (msg));
9715 UNGCPRO;
9717 /* Print should start at the beginning of the message
9718 buffer next time. */
9719 message_buf_print = 0;
9725 /* Dump an informative message to the minibuf. If M is 0, clear out
9726 any existing message, and let the mini-buffer text show through. */
9728 static void
9729 vmessage (const char *m, va_list ap)
9731 if (noninteractive)
9733 if (m)
9735 if (noninteractive_need_newline)
9736 putc ('\n', stderr);
9737 noninteractive_need_newline = 0;
9738 vfprintf (stderr, m, ap);
9739 if (cursor_in_echo_area == 0)
9740 fprintf (stderr, "\n");
9741 fflush (stderr);
9744 else if (INTERACTIVE)
9746 /* The frame whose mini-buffer we're going to display the message
9747 on. It may be larger than the selected frame, so we need to
9748 use its buffer, not the selected frame's buffer. */
9749 Lisp_Object mini_window;
9750 struct frame *f, *sf = SELECTED_FRAME ();
9752 /* Get the frame containing the mini-buffer
9753 that the selected frame is using. */
9754 mini_window = FRAME_MINIBUF_WINDOW (sf);
9755 f = XFRAME (WINDOW_FRAME (XWINDOW (mini_window)));
9757 /* A null message buffer means that the frame hasn't really been
9758 initialized yet. Error messages get reported properly by
9759 cmd_error, so this must be just an informative message; toss
9760 it. */
9761 if (FRAME_MESSAGE_BUF (f))
9763 if (m)
9765 ptrdiff_t len;
9767 len = doprnt (FRAME_MESSAGE_BUF (f),
9768 FRAME_MESSAGE_BUF_SIZE (f), m, (char *)0, ap);
9770 message2 (FRAME_MESSAGE_BUF (f), len, 1);
9772 else
9773 message1 (0);
9775 /* Print should start at the beginning of the message
9776 buffer next time. */
9777 message_buf_print = 0;
9782 void
9783 message (const char *m, ...)
9785 va_list ap;
9786 va_start (ap, m);
9787 vmessage (m, ap);
9788 va_end (ap);
9792 #if 0
9793 /* The non-logging version of message. */
9795 void
9796 message_nolog (const char *m, ...)
9798 Lisp_Object old_log_max;
9799 va_list ap;
9800 va_start (ap, m);
9801 old_log_max = Vmessage_log_max;
9802 Vmessage_log_max = Qnil;
9803 vmessage (m, ap);
9804 Vmessage_log_max = old_log_max;
9805 va_end (ap);
9807 #endif
9810 /* Display the current message in the current mini-buffer. This is
9811 only called from error handlers in process.c, and is not time
9812 critical. */
9814 void
9815 update_echo_area (void)
9817 if (!NILP (echo_area_buffer[0]))
9819 Lisp_Object string;
9820 string = Fcurrent_message ();
9821 message3 (string, SBYTES (string),
9822 !NILP (BVAR (current_buffer, enable_multibyte_characters)));
9827 /* Make sure echo area buffers in `echo_buffers' are live.
9828 If they aren't, make new ones. */
9830 static void
9831 ensure_echo_area_buffers (void)
9833 int i;
9835 for (i = 0; i < 2; ++i)
9836 if (!BUFFERP (echo_buffer[i])
9837 || NILP (BVAR (XBUFFER (echo_buffer[i]), name)))
9839 char name[30];
9840 Lisp_Object old_buffer;
9841 int j;
9843 old_buffer = echo_buffer[i];
9844 sprintf (name, " *Echo Area %d*", i);
9845 echo_buffer[i] = Fget_buffer_create (build_string (name));
9846 BVAR (XBUFFER (echo_buffer[i]), truncate_lines) = Qnil;
9847 /* to force word wrap in echo area -
9848 it was decided to postpone this*/
9849 /* XBUFFER (echo_buffer[i])->word_wrap = Qt; */
9851 for (j = 0; j < 2; ++j)
9852 if (EQ (old_buffer, echo_area_buffer[j]))
9853 echo_area_buffer[j] = echo_buffer[i];
9858 /* Call FN with args A1..A4 with either the current or last displayed
9859 echo_area_buffer as current buffer.
9861 WHICH zero means use the current message buffer
9862 echo_area_buffer[0]. If that is nil, choose a suitable buffer
9863 from echo_buffer[] and clear it.
9865 WHICH > 0 means use echo_area_buffer[1]. If that is nil, choose a
9866 suitable buffer from echo_buffer[] and clear it.
9868 If WHICH < 0, set echo_area_buffer[1] to echo_area_buffer[0], so
9869 that the current message becomes the last displayed one, make
9870 choose a suitable buffer for echo_area_buffer[0], and clear it.
9872 Value is what FN returns. */
9874 static int
9875 with_echo_area_buffer (struct window *w, int which,
9876 int (*fn) (ptrdiff_t, Lisp_Object, ptrdiff_t, ptrdiff_t),
9877 ptrdiff_t a1, Lisp_Object a2, ptrdiff_t a3, ptrdiff_t a4)
9879 Lisp_Object buffer;
9880 int this_one, the_other, clear_buffer_p, rc;
9881 ptrdiff_t count = SPECPDL_INDEX ();
9883 /* If buffers aren't live, make new ones. */
9884 ensure_echo_area_buffers ();
9886 clear_buffer_p = 0;
9888 if (which == 0)
9889 this_one = 0, the_other = 1;
9890 else if (which > 0)
9891 this_one = 1, the_other = 0;
9892 else
9894 this_one = 0, the_other = 1;
9895 clear_buffer_p = 1;
9897 /* We need a fresh one in case the current echo buffer equals
9898 the one containing the last displayed echo area message. */
9899 if (!NILP (echo_area_buffer[this_one])
9900 && EQ (echo_area_buffer[this_one], echo_area_buffer[the_other]))
9901 echo_area_buffer[this_one] = Qnil;
9904 /* Choose a suitable buffer from echo_buffer[] is we don't
9905 have one. */
9906 if (NILP (echo_area_buffer[this_one]))
9908 echo_area_buffer[this_one]
9909 = (EQ (echo_area_buffer[the_other], echo_buffer[this_one])
9910 ? echo_buffer[the_other]
9911 : echo_buffer[this_one]);
9912 clear_buffer_p = 1;
9915 buffer = echo_area_buffer[this_one];
9917 /* Don't get confused by reusing the buffer used for echoing
9918 for a different purpose. */
9919 if (echo_kboard == NULL && EQ (buffer, echo_message_buffer))
9920 cancel_echoing ();
9922 record_unwind_protect (unwind_with_echo_area_buffer,
9923 with_echo_area_buffer_unwind_data (w));
9925 /* Make the echo area buffer current. Note that for display
9926 purposes, it is not necessary that the displayed window's buffer
9927 == current_buffer, except for text property lookup. So, let's
9928 only set that buffer temporarily here without doing a full
9929 Fset_window_buffer. We must also change w->pointm, though,
9930 because otherwise an assertions in unshow_buffer fails, and Emacs
9931 aborts. */
9932 set_buffer_internal_1 (XBUFFER (buffer));
9933 if (w)
9935 w->buffer = buffer;
9936 set_marker_both (w->pointm, buffer, BEG, BEG_BYTE);
9939 BVAR (current_buffer, undo_list) = Qt;
9940 BVAR (current_buffer, read_only) = Qnil;
9941 specbind (Qinhibit_read_only, Qt);
9942 specbind (Qinhibit_modification_hooks, Qt);
9944 if (clear_buffer_p && Z > BEG)
9945 del_range (BEG, Z);
9947 xassert (BEGV >= BEG);
9948 xassert (ZV <= Z && ZV >= BEGV);
9950 rc = fn (a1, a2, a3, a4);
9952 xassert (BEGV >= BEG);
9953 xassert (ZV <= Z && ZV >= BEGV);
9955 unbind_to (count, Qnil);
9956 return rc;
9960 /* Save state that should be preserved around the call to the function
9961 FN called in with_echo_area_buffer. */
9963 static Lisp_Object
9964 with_echo_area_buffer_unwind_data (struct window *w)
9966 int i = 0;
9967 Lisp_Object vector, tmp;
9969 /* Reduce consing by keeping one vector in
9970 Vwith_echo_area_save_vector. */
9971 vector = Vwith_echo_area_save_vector;
9972 Vwith_echo_area_save_vector = Qnil;
9974 if (NILP (vector))
9975 vector = Fmake_vector (make_number (7), Qnil);
9977 XSETBUFFER (tmp, current_buffer); ASET (vector, i, tmp); ++i;
9978 ASET (vector, i, Vdeactivate_mark); ++i;
9979 ASET (vector, i, make_number (windows_or_buffers_changed)); ++i;
9981 if (w)
9983 XSETWINDOW (tmp, w); ASET (vector, i, tmp); ++i;
9984 ASET (vector, i, w->buffer); ++i;
9985 ASET (vector, i, make_number (XMARKER (w->pointm)->charpos)); ++i;
9986 ASET (vector, i, make_number (XMARKER (w->pointm)->bytepos)); ++i;
9988 else
9990 int end = i + 4;
9991 for (; i < end; ++i)
9992 ASET (vector, i, Qnil);
9995 xassert (i == ASIZE (vector));
9996 return vector;
10000 /* Restore global state from VECTOR which was created by
10001 with_echo_area_buffer_unwind_data. */
10003 static Lisp_Object
10004 unwind_with_echo_area_buffer (Lisp_Object vector)
10006 set_buffer_internal_1 (XBUFFER (AREF (vector, 0)));
10007 Vdeactivate_mark = AREF (vector, 1);
10008 windows_or_buffers_changed = XFASTINT (AREF (vector, 2));
10010 if (WINDOWP (AREF (vector, 3)))
10012 struct window *w;
10013 Lisp_Object buffer, charpos, bytepos;
10015 w = XWINDOW (AREF (vector, 3));
10016 buffer = AREF (vector, 4);
10017 charpos = AREF (vector, 5);
10018 bytepos = AREF (vector, 6);
10020 w->buffer = buffer;
10021 set_marker_both (w->pointm, buffer,
10022 XFASTINT (charpos), XFASTINT (bytepos));
10025 Vwith_echo_area_save_vector = vector;
10026 return Qnil;
10030 /* Set up the echo area for use by print functions. MULTIBYTE_P
10031 non-zero means we will print multibyte. */
10033 void
10034 setup_echo_area_for_printing (int multibyte_p)
10036 /* If we can't find an echo area any more, exit. */
10037 if (! FRAME_LIVE_P (XFRAME (selected_frame)))
10038 Fkill_emacs (Qnil);
10040 ensure_echo_area_buffers ();
10042 if (!message_buf_print)
10044 /* A message has been output since the last time we printed.
10045 Choose a fresh echo area buffer. */
10046 if (EQ (echo_area_buffer[1], echo_buffer[0]))
10047 echo_area_buffer[0] = echo_buffer[1];
10048 else
10049 echo_area_buffer[0] = echo_buffer[0];
10051 /* Switch to that buffer and clear it. */
10052 set_buffer_internal (XBUFFER (echo_area_buffer[0]));
10053 BVAR (current_buffer, truncate_lines) = Qnil;
10055 if (Z > BEG)
10057 ptrdiff_t count = SPECPDL_INDEX ();
10058 specbind (Qinhibit_read_only, Qt);
10059 /* Note that undo recording is always disabled. */
10060 del_range (BEG, Z);
10061 unbind_to (count, Qnil);
10063 TEMP_SET_PT_BOTH (BEG, BEG_BYTE);
10065 /* Set up the buffer for the multibyteness we need. */
10066 if (multibyte_p
10067 != !NILP (BVAR (current_buffer, enable_multibyte_characters)))
10068 Fset_buffer_multibyte (multibyte_p ? Qt : Qnil);
10070 /* Raise the frame containing the echo area. */
10071 if (minibuffer_auto_raise)
10073 struct frame *sf = SELECTED_FRAME ();
10074 Lisp_Object mini_window;
10075 mini_window = FRAME_MINIBUF_WINDOW (sf);
10076 Fraise_frame (WINDOW_FRAME (XWINDOW (mini_window)));
10079 message_log_maybe_newline ();
10080 message_buf_print = 1;
10082 else
10084 if (NILP (echo_area_buffer[0]))
10086 if (EQ (echo_area_buffer[1], echo_buffer[0]))
10087 echo_area_buffer[0] = echo_buffer[1];
10088 else
10089 echo_area_buffer[0] = echo_buffer[0];
10092 if (current_buffer != XBUFFER (echo_area_buffer[0]))
10094 /* Someone switched buffers between print requests. */
10095 set_buffer_internal (XBUFFER (echo_area_buffer[0]));
10096 BVAR (current_buffer, truncate_lines) = Qnil;
10102 /* Display an echo area message in window W. Value is non-zero if W's
10103 height is changed. If display_last_displayed_message_p is
10104 non-zero, display the message that was last displayed, otherwise
10105 display the current message. */
10107 static int
10108 display_echo_area (struct window *w)
10110 int i, no_message_p, window_height_changed_p;
10112 /* Temporarily disable garbage collections while displaying the echo
10113 area. This is done because a GC can print a message itself.
10114 That message would modify the echo area buffer's contents while a
10115 redisplay of the buffer is going on, and seriously confuse
10116 redisplay. */
10117 ptrdiff_t count = inhibit_garbage_collection ();
10119 /* If there is no message, we must call display_echo_area_1
10120 nevertheless because it resizes the window. But we will have to
10121 reset the echo_area_buffer in question to nil at the end because
10122 with_echo_area_buffer will sets it to an empty buffer. */
10123 i = display_last_displayed_message_p ? 1 : 0;
10124 no_message_p = NILP (echo_area_buffer[i]);
10126 window_height_changed_p
10127 = with_echo_area_buffer (w, display_last_displayed_message_p,
10128 display_echo_area_1,
10129 (intptr_t) w, Qnil, 0, 0);
10131 if (no_message_p)
10132 echo_area_buffer[i] = Qnil;
10134 unbind_to (count, Qnil);
10135 return window_height_changed_p;
10139 /* Helper for display_echo_area. Display the current buffer which
10140 contains the current echo area message in window W, a mini-window,
10141 a pointer to which is passed in A1. A2..A4 are currently not used.
10142 Change the height of W so that all of the message is displayed.
10143 Value is non-zero if height of W was changed. */
10145 static int
10146 display_echo_area_1 (ptrdiff_t a1, Lisp_Object a2, ptrdiff_t a3, ptrdiff_t a4)
10148 intptr_t i1 = a1;
10149 struct window *w = (struct window *) i1;
10150 Lisp_Object window;
10151 struct text_pos start;
10152 int window_height_changed_p = 0;
10154 /* Do this before displaying, so that we have a large enough glyph
10155 matrix for the display. If we can't get enough space for the
10156 whole text, display the last N lines. That works by setting w->start. */
10157 window_height_changed_p = resize_mini_window (w, 0);
10159 /* Use the starting position chosen by resize_mini_window. */
10160 SET_TEXT_POS_FROM_MARKER (start, w->start);
10162 /* Display. */
10163 clear_glyph_matrix (w->desired_matrix);
10164 XSETWINDOW (window, w);
10165 try_window (window, start, 0);
10167 return window_height_changed_p;
10171 /* Resize the echo area window to exactly the size needed for the
10172 currently displayed message, if there is one. If a mini-buffer
10173 is active, don't shrink it. */
10175 void
10176 resize_echo_area_exactly (void)
10178 if (BUFFERP (echo_area_buffer[0])
10179 && WINDOWP (echo_area_window))
10181 struct window *w = XWINDOW (echo_area_window);
10182 int resized_p;
10183 Lisp_Object resize_exactly;
10185 if (minibuf_level == 0)
10186 resize_exactly = Qt;
10187 else
10188 resize_exactly = Qnil;
10190 resized_p = with_echo_area_buffer (w, 0, resize_mini_window_1,
10191 (intptr_t) w, resize_exactly,
10192 0, 0);
10193 if (resized_p)
10195 ++windows_or_buffers_changed;
10196 ++update_mode_lines;
10197 redisplay_internal ();
10203 /* Callback function for with_echo_area_buffer, when used from
10204 resize_echo_area_exactly. A1 contains a pointer to the window to
10205 resize, EXACTLY non-nil means resize the mini-window exactly to the
10206 size of the text displayed. A3 and A4 are not used. Value is what
10207 resize_mini_window returns. */
10209 static int
10210 resize_mini_window_1 (ptrdiff_t a1, Lisp_Object exactly, ptrdiff_t a3, ptrdiff_t a4)
10212 intptr_t i1 = a1;
10213 return resize_mini_window ((struct window *) i1, !NILP (exactly));
10217 /* Resize mini-window W to fit the size of its contents. EXACT_P
10218 means size the window exactly to the size needed. Otherwise, it's
10219 only enlarged until W's buffer is empty.
10221 Set W->start to the right place to begin display. If the whole
10222 contents fit, start at the beginning. Otherwise, start so as
10223 to make the end of the contents appear. This is particularly
10224 important for y-or-n-p, but seems desirable generally.
10226 Value is non-zero if the window height has been changed. */
10229 resize_mini_window (struct window *w, int exact_p)
10231 struct frame *f = XFRAME (w->frame);
10232 int window_height_changed_p = 0;
10234 xassert (MINI_WINDOW_P (w));
10236 /* By default, start display at the beginning. */
10237 set_marker_both (w->start, w->buffer,
10238 BUF_BEGV (XBUFFER (w->buffer)),
10239 BUF_BEGV_BYTE (XBUFFER (w->buffer)));
10241 /* Don't resize windows while redisplaying a window; it would
10242 confuse redisplay functions when the size of the window they are
10243 displaying changes from under them. Such a resizing can happen,
10244 for instance, when which-func prints a long message while
10245 we are running fontification-functions. We're running these
10246 functions with safe_call which binds inhibit-redisplay to t. */
10247 if (!NILP (Vinhibit_redisplay))
10248 return 0;
10250 /* Nil means don't try to resize. */
10251 if (NILP (Vresize_mini_windows)
10252 || (FRAME_X_P (f) && FRAME_X_OUTPUT (f) == NULL))
10253 return 0;
10255 if (!FRAME_MINIBUF_ONLY_P (f))
10257 struct it it;
10258 struct window *root = XWINDOW (FRAME_ROOT_WINDOW (f));
10259 int total_height = WINDOW_TOTAL_LINES (root) + WINDOW_TOTAL_LINES (w);
10260 int height;
10261 EMACS_INT max_height;
10262 int unit = FRAME_LINE_HEIGHT (f);
10263 struct text_pos start;
10264 struct buffer *old_current_buffer = NULL;
10266 if (current_buffer != XBUFFER (w->buffer))
10268 old_current_buffer = current_buffer;
10269 set_buffer_internal (XBUFFER (w->buffer));
10272 init_iterator (&it, w, BEGV, BEGV_BYTE, NULL, DEFAULT_FACE_ID);
10274 /* Compute the max. number of lines specified by the user. */
10275 if (FLOATP (Vmax_mini_window_height))
10276 max_height = XFLOATINT (Vmax_mini_window_height) * FRAME_LINES (f);
10277 else if (INTEGERP (Vmax_mini_window_height))
10278 max_height = XINT (Vmax_mini_window_height);
10279 else
10280 max_height = total_height / 4;
10282 /* Correct that max. height if it's bogus. */
10283 max_height = max (1, max_height);
10284 max_height = min (total_height, max_height);
10286 /* Find out the height of the text in the window. */
10287 if (it.line_wrap == TRUNCATE)
10288 height = 1;
10289 else
10291 last_height = 0;
10292 move_it_to (&it, ZV, -1, -1, -1, MOVE_TO_POS);
10293 if (it.max_ascent == 0 && it.max_descent == 0)
10294 height = it.current_y + last_height;
10295 else
10296 height = it.current_y + it.max_ascent + it.max_descent;
10297 height -= min (it.extra_line_spacing, it.max_extra_line_spacing);
10298 height = (height + unit - 1) / unit;
10301 /* Compute a suitable window start. */
10302 if (height > max_height)
10304 height = max_height;
10305 init_iterator (&it, w, ZV, ZV_BYTE, NULL, DEFAULT_FACE_ID);
10306 move_it_vertically_backward (&it, (height - 1) * unit);
10307 start = it.current.pos;
10309 else
10310 SET_TEXT_POS (start, BEGV, BEGV_BYTE);
10311 SET_MARKER_FROM_TEXT_POS (w->start, start);
10313 if (EQ (Vresize_mini_windows, Qgrow_only))
10315 /* Let it grow only, until we display an empty message, in which
10316 case the window shrinks again. */
10317 if (height > WINDOW_TOTAL_LINES (w))
10319 int old_height = WINDOW_TOTAL_LINES (w);
10320 freeze_window_starts (f, 1);
10321 grow_mini_window (w, height - WINDOW_TOTAL_LINES (w));
10322 window_height_changed_p = WINDOW_TOTAL_LINES (w) != old_height;
10324 else if (height < WINDOW_TOTAL_LINES (w)
10325 && (exact_p || BEGV == ZV))
10327 int old_height = WINDOW_TOTAL_LINES (w);
10328 freeze_window_starts (f, 0);
10329 shrink_mini_window (w);
10330 window_height_changed_p = WINDOW_TOTAL_LINES (w) != old_height;
10333 else
10335 /* Always resize to exact size needed. */
10336 if (height > WINDOW_TOTAL_LINES (w))
10338 int old_height = WINDOW_TOTAL_LINES (w);
10339 freeze_window_starts (f, 1);
10340 grow_mini_window (w, height - WINDOW_TOTAL_LINES (w));
10341 window_height_changed_p = WINDOW_TOTAL_LINES (w) != old_height;
10343 else if (height < WINDOW_TOTAL_LINES (w))
10345 int old_height = WINDOW_TOTAL_LINES (w);
10346 freeze_window_starts (f, 0);
10347 shrink_mini_window (w);
10349 if (height)
10351 freeze_window_starts (f, 1);
10352 grow_mini_window (w, height - WINDOW_TOTAL_LINES (w));
10355 window_height_changed_p = WINDOW_TOTAL_LINES (w) != old_height;
10359 if (old_current_buffer)
10360 set_buffer_internal (old_current_buffer);
10363 return window_height_changed_p;
10367 /* Value is the current message, a string, or nil if there is no
10368 current message. */
10370 Lisp_Object
10371 current_message (void)
10373 Lisp_Object msg;
10375 if (!BUFFERP (echo_area_buffer[0]))
10376 msg = Qnil;
10377 else
10379 with_echo_area_buffer (0, 0, current_message_1,
10380 (intptr_t) &msg, Qnil, 0, 0);
10381 if (NILP (msg))
10382 echo_area_buffer[0] = Qnil;
10385 return msg;
10389 static int
10390 current_message_1 (ptrdiff_t a1, Lisp_Object a2, ptrdiff_t a3, ptrdiff_t a4)
10392 intptr_t i1 = a1;
10393 Lisp_Object *msg = (Lisp_Object *) i1;
10395 if (Z > BEG)
10396 *msg = make_buffer_string (BEG, Z, 1);
10397 else
10398 *msg = Qnil;
10399 return 0;
10403 /* Push the current message on Vmessage_stack for later restoration
10404 by restore_message. Value is non-zero if the current message isn't
10405 empty. This is a relatively infrequent operation, so it's not
10406 worth optimizing. */
10409 push_message (void)
10411 Lisp_Object msg;
10412 msg = current_message ();
10413 Vmessage_stack = Fcons (msg, Vmessage_stack);
10414 return STRINGP (msg);
10418 /* Restore message display from the top of Vmessage_stack. */
10420 void
10421 restore_message (void)
10423 Lisp_Object msg;
10425 xassert (CONSP (Vmessage_stack));
10426 msg = XCAR (Vmessage_stack);
10427 if (STRINGP (msg))
10428 message3_nolog (msg, SBYTES (msg), STRING_MULTIBYTE (msg));
10429 else
10430 message3_nolog (msg, 0, 0);
10434 /* Handler for record_unwind_protect calling pop_message. */
10436 Lisp_Object
10437 pop_message_unwind (Lisp_Object dummy)
10439 pop_message ();
10440 return Qnil;
10443 /* Pop the top-most entry off Vmessage_stack. */
10445 static void
10446 pop_message (void)
10448 xassert (CONSP (Vmessage_stack));
10449 Vmessage_stack = XCDR (Vmessage_stack);
10453 /* Check that Vmessage_stack is nil. Called from emacs.c when Emacs
10454 exits. If the stack is not empty, we have a missing pop_message
10455 somewhere. */
10457 void
10458 check_message_stack (void)
10460 if (!NILP (Vmessage_stack))
10461 abort ();
10465 /* Truncate to NCHARS what will be displayed in the echo area the next
10466 time we display it---but don't redisplay it now. */
10468 void
10469 truncate_echo_area (ptrdiff_t nchars)
10471 if (nchars == 0)
10472 echo_area_buffer[0] = Qnil;
10473 /* A null message buffer means that the frame hasn't really been
10474 initialized yet. Error messages get reported properly by
10475 cmd_error, so this must be just an informative message; toss it. */
10476 else if (!noninteractive
10477 && INTERACTIVE
10478 && !NILP (echo_area_buffer[0]))
10480 struct frame *sf = SELECTED_FRAME ();
10481 if (FRAME_MESSAGE_BUF (sf))
10482 with_echo_area_buffer (0, 0, truncate_message_1, nchars, Qnil, 0, 0);
10487 /* Helper function for truncate_echo_area. Truncate the current
10488 message to at most NCHARS characters. */
10490 static int
10491 truncate_message_1 (ptrdiff_t nchars, Lisp_Object a2, ptrdiff_t a3, ptrdiff_t a4)
10493 if (BEG + nchars < Z)
10494 del_range (BEG + nchars, Z);
10495 if (Z == BEG)
10496 echo_area_buffer[0] = Qnil;
10497 return 0;
10501 /* Set the current message to a substring of S or STRING.
10503 If STRING is a Lisp string, set the message to the first NBYTES
10504 bytes from STRING. NBYTES zero means use the whole string. If
10505 STRING is multibyte, the message will be displayed multibyte.
10507 If S is not null, set the message to the first LEN bytes of S. LEN
10508 zero means use the whole string. MULTIBYTE_P non-zero means S is
10509 multibyte. Display the message multibyte in that case.
10511 Doesn't GC, as with_echo_area_buffer binds Qinhibit_modification_hooks
10512 to t before calling set_message_1 (which calls insert).
10515 static void
10516 set_message (const char *s, Lisp_Object string,
10517 ptrdiff_t nbytes, int multibyte_p)
10519 message_enable_multibyte
10520 = ((s && multibyte_p)
10521 || (STRINGP (string) && STRING_MULTIBYTE (string)));
10523 with_echo_area_buffer (0, -1, set_message_1,
10524 (intptr_t) s, string, nbytes, multibyte_p);
10525 message_buf_print = 0;
10526 help_echo_showing_p = 0;
10530 /* Helper function for set_message. Arguments have the same meaning
10531 as there, with A1 corresponding to S and A2 corresponding to STRING
10532 This function is called with the echo area buffer being
10533 current. */
10535 static int
10536 set_message_1 (ptrdiff_t a1, Lisp_Object a2, ptrdiff_t nbytes, ptrdiff_t multibyte_p)
10538 intptr_t i1 = a1;
10539 const char *s = (const char *) i1;
10540 const unsigned char *msg = (const unsigned char *) s;
10541 Lisp_Object string = a2;
10543 /* Change multibyteness of the echo buffer appropriately. */
10544 if (message_enable_multibyte
10545 != !NILP (BVAR (current_buffer, enable_multibyte_characters)))
10546 Fset_buffer_multibyte (message_enable_multibyte ? Qt : Qnil);
10548 BVAR (current_buffer, truncate_lines) = message_truncate_lines ? Qt : Qnil;
10549 if (!NILP (BVAR (current_buffer, bidi_display_reordering)))
10550 BVAR (current_buffer, bidi_paragraph_direction) = Qleft_to_right;
10552 /* Insert new message at BEG. */
10553 TEMP_SET_PT_BOTH (BEG, BEG_BYTE);
10555 if (STRINGP (string))
10557 ptrdiff_t nchars;
10559 if (nbytes == 0)
10560 nbytes = SBYTES (string);
10561 nchars = string_byte_to_char (string, nbytes);
10563 /* This function takes care of single/multibyte conversion. We
10564 just have to ensure that the echo area buffer has the right
10565 setting of enable_multibyte_characters. */
10566 insert_from_string (string, 0, 0, nchars, nbytes, 1);
10568 else if (s)
10570 if (nbytes == 0)
10571 nbytes = strlen (s);
10573 if (multibyte_p && NILP (BVAR (current_buffer, enable_multibyte_characters)))
10575 /* Convert from multi-byte to single-byte. */
10576 ptrdiff_t i;
10577 int c, n;
10578 char work[1];
10580 /* Convert a multibyte string to single-byte. */
10581 for (i = 0; i < nbytes; i += n)
10583 c = string_char_and_length (msg + i, &n);
10584 work[0] = (ASCII_CHAR_P (c)
10586 : multibyte_char_to_unibyte (c));
10587 insert_1_both (work, 1, 1, 1, 0, 0);
10590 else if (!multibyte_p
10591 && !NILP (BVAR (current_buffer, enable_multibyte_characters)))
10593 /* Convert from single-byte to multi-byte. */
10594 ptrdiff_t i;
10595 int c, n;
10596 unsigned char str[MAX_MULTIBYTE_LENGTH];
10598 /* Convert a single-byte string to multibyte. */
10599 for (i = 0; i < nbytes; i++)
10601 c = msg[i];
10602 MAKE_CHAR_MULTIBYTE (c);
10603 n = CHAR_STRING (c, str);
10604 insert_1_both ((char *) str, 1, n, 1, 0, 0);
10607 else
10608 insert_1 (s, nbytes, 1, 0, 0);
10611 return 0;
10615 /* Clear messages. CURRENT_P non-zero means clear the current
10616 message. LAST_DISPLAYED_P non-zero means clear the message
10617 last displayed. */
10619 void
10620 clear_message (int current_p, int last_displayed_p)
10622 if (current_p)
10624 echo_area_buffer[0] = Qnil;
10625 message_cleared_p = 1;
10628 if (last_displayed_p)
10629 echo_area_buffer[1] = Qnil;
10631 message_buf_print = 0;
10634 /* Clear garbaged frames.
10636 This function is used where the old redisplay called
10637 redraw_garbaged_frames which in turn called redraw_frame which in
10638 turn called clear_frame. The call to clear_frame was a source of
10639 flickering. I believe a clear_frame is not necessary. It should
10640 suffice in the new redisplay to invalidate all current matrices,
10641 and ensure a complete redisplay of all windows. */
10643 static void
10644 clear_garbaged_frames (void)
10646 if (frame_garbaged)
10648 Lisp_Object tail, frame;
10649 int changed_count = 0;
10651 FOR_EACH_FRAME (tail, frame)
10653 struct frame *f = XFRAME (frame);
10655 if (FRAME_VISIBLE_P (f) && FRAME_GARBAGED_P (f))
10657 if (f->resized_p)
10659 Fredraw_frame (frame);
10660 f->force_flush_display_p = 1;
10662 clear_current_matrices (f);
10663 changed_count++;
10664 f->garbaged = 0;
10665 f->resized_p = 0;
10669 frame_garbaged = 0;
10670 if (changed_count)
10671 ++windows_or_buffers_changed;
10676 /* Redisplay the echo area of the selected frame. If UPDATE_FRAME_P
10677 is non-zero update selected_frame. Value is non-zero if the
10678 mini-windows height has been changed. */
10680 static int
10681 echo_area_display (int update_frame_p)
10683 Lisp_Object mini_window;
10684 struct window *w;
10685 struct frame *f;
10686 int window_height_changed_p = 0;
10687 struct frame *sf = SELECTED_FRAME ();
10689 mini_window = FRAME_MINIBUF_WINDOW (sf);
10690 w = XWINDOW (mini_window);
10691 f = XFRAME (WINDOW_FRAME (w));
10693 /* Don't display if frame is invisible or not yet initialized. */
10694 if (!FRAME_VISIBLE_P (f) || !f->glyphs_initialized_p)
10695 return 0;
10697 #ifdef HAVE_WINDOW_SYSTEM
10698 /* When Emacs starts, selected_frame may be the initial terminal
10699 frame. If we let this through, a message would be displayed on
10700 the terminal. */
10701 if (FRAME_INITIAL_P (XFRAME (selected_frame)))
10702 return 0;
10703 #endif /* HAVE_WINDOW_SYSTEM */
10705 /* Redraw garbaged frames. */
10706 if (frame_garbaged)
10707 clear_garbaged_frames ();
10709 if (!NILP (echo_area_buffer[0]) || minibuf_level == 0)
10711 echo_area_window = mini_window;
10712 window_height_changed_p = display_echo_area (w);
10713 w->must_be_updated_p = 1;
10715 /* Update the display, unless called from redisplay_internal.
10716 Also don't update the screen during redisplay itself. The
10717 update will happen at the end of redisplay, and an update
10718 here could cause confusion. */
10719 if (update_frame_p && !redisplaying_p)
10721 int n = 0;
10723 /* If the display update has been interrupted by pending
10724 input, update mode lines in the frame. Due to the
10725 pending input, it might have been that redisplay hasn't
10726 been called, so that mode lines above the echo area are
10727 garbaged. This looks odd, so we prevent it here. */
10728 if (!display_completed)
10729 n = redisplay_mode_lines (FRAME_ROOT_WINDOW (f), 0);
10731 if (window_height_changed_p
10732 /* Don't do this if Emacs is shutting down. Redisplay
10733 needs to run hooks. */
10734 && !NILP (Vrun_hooks))
10736 /* Must update other windows. Likewise as in other
10737 cases, don't let this update be interrupted by
10738 pending input. */
10739 ptrdiff_t count = SPECPDL_INDEX ();
10740 specbind (Qredisplay_dont_pause, Qt);
10741 windows_or_buffers_changed = 1;
10742 redisplay_internal ();
10743 unbind_to (count, Qnil);
10745 else if (FRAME_WINDOW_P (f) && n == 0)
10747 /* Window configuration is the same as before.
10748 Can do with a display update of the echo area,
10749 unless we displayed some mode lines. */
10750 update_single_window (w, 1);
10751 FRAME_RIF (f)->flush_display (f);
10753 else
10754 update_frame (f, 1, 1);
10756 /* If cursor is in the echo area, make sure that the next
10757 redisplay displays the minibuffer, so that the cursor will
10758 be replaced with what the minibuffer wants. */
10759 if (cursor_in_echo_area)
10760 ++windows_or_buffers_changed;
10763 else if (!EQ (mini_window, selected_window))
10764 windows_or_buffers_changed++;
10766 /* Last displayed message is now the current message. */
10767 echo_area_buffer[1] = echo_area_buffer[0];
10768 /* Inform read_char that we're not echoing. */
10769 echo_message_buffer = Qnil;
10771 /* Prevent redisplay optimization in redisplay_internal by resetting
10772 this_line_start_pos. This is done because the mini-buffer now
10773 displays the message instead of its buffer text. */
10774 if (EQ (mini_window, selected_window))
10775 CHARPOS (this_line_start_pos) = 0;
10777 return window_height_changed_p;
10782 /***********************************************************************
10783 Mode Lines and Frame Titles
10784 ***********************************************************************/
10786 /* A buffer for constructing non-propertized mode-line strings and
10787 frame titles in it; allocated from the heap in init_xdisp and
10788 resized as needed in store_mode_line_noprop_char. */
10790 static char *mode_line_noprop_buf;
10792 /* The buffer's end, and a current output position in it. */
10794 static char *mode_line_noprop_buf_end;
10795 static char *mode_line_noprop_ptr;
10797 #define MODE_LINE_NOPROP_LEN(start) \
10798 ((mode_line_noprop_ptr - mode_line_noprop_buf) - start)
10800 static enum {
10801 MODE_LINE_DISPLAY = 0,
10802 MODE_LINE_TITLE,
10803 MODE_LINE_NOPROP,
10804 MODE_LINE_STRING
10805 } mode_line_target;
10807 /* Alist that caches the results of :propertize.
10808 Each element is (PROPERTIZED-STRING . PROPERTY-LIST). */
10809 static Lisp_Object mode_line_proptrans_alist;
10811 /* List of strings making up the mode-line. */
10812 static Lisp_Object mode_line_string_list;
10814 /* Base face property when building propertized mode line string. */
10815 static Lisp_Object mode_line_string_face;
10816 static Lisp_Object mode_line_string_face_prop;
10819 /* Unwind data for mode line strings */
10821 static Lisp_Object Vmode_line_unwind_vector;
10823 static Lisp_Object
10824 format_mode_line_unwind_data (struct frame *target_frame,
10825 struct buffer *obuf,
10826 Lisp_Object owin,
10827 int save_proptrans)
10829 Lisp_Object vector, tmp;
10831 /* Reduce consing by keeping one vector in
10832 Vwith_echo_area_save_vector. */
10833 vector = Vmode_line_unwind_vector;
10834 Vmode_line_unwind_vector = Qnil;
10836 if (NILP (vector))
10837 vector = Fmake_vector (make_number (10), Qnil);
10839 ASET (vector, 0, make_number (mode_line_target));
10840 ASET (vector, 1, make_number (MODE_LINE_NOPROP_LEN (0)));
10841 ASET (vector, 2, mode_line_string_list);
10842 ASET (vector, 3, save_proptrans ? mode_line_proptrans_alist : Qt);
10843 ASET (vector, 4, mode_line_string_face);
10844 ASET (vector, 5, mode_line_string_face_prop);
10846 if (obuf)
10847 XSETBUFFER (tmp, obuf);
10848 else
10849 tmp = Qnil;
10850 ASET (vector, 6, tmp);
10851 ASET (vector, 7, owin);
10852 if (target_frame)
10854 /* Similarly to `with-selected-window', if the operation selects
10855 a window on another frame, we must restore that frame's
10856 selected window, and (for a tty) the top-frame. */
10857 ASET (vector, 8, target_frame->selected_window);
10858 if (FRAME_TERMCAP_P (target_frame))
10859 ASET (vector, 9, FRAME_TTY (target_frame)->top_frame);
10862 return vector;
10865 static Lisp_Object
10866 unwind_format_mode_line (Lisp_Object vector)
10868 Lisp_Object old_window = AREF (vector, 7);
10869 Lisp_Object target_frame_window = AREF (vector, 8);
10870 Lisp_Object old_top_frame = AREF (vector, 9);
10872 mode_line_target = XINT (AREF (vector, 0));
10873 mode_line_noprop_ptr = mode_line_noprop_buf + XINT (AREF (vector, 1));
10874 mode_line_string_list = AREF (vector, 2);
10875 if (! EQ (AREF (vector, 3), Qt))
10876 mode_line_proptrans_alist = AREF (vector, 3);
10877 mode_line_string_face = AREF (vector, 4);
10878 mode_line_string_face_prop = AREF (vector, 5);
10880 /* Select window before buffer, since it may change the buffer. */
10881 if (!NILP (old_window))
10883 /* If the operation that we are unwinding had selected a window
10884 on a different frame, reset its frame-selected-window. For a
10885 text terminal, reset its top-frame if necessary. */
10886 if (!NILP (target_frame_window))
10888 Lisp_Object frame
10889 = WINDOW_FRAME (XWINDOW (target_frame_window));
10891 if (!EQ (frame, WINDOW_FRAME (XWINDOW (old_window))))
10892 Fselect_window (target_frame_window, Qt);
10894 if (!NILP (old_top_frame) && !EQ (old_top_frame, frame))
10895 Fselect_frame (old_top_frame, Qt);
10898 Fselect_window (old_window, Qt);
10901 if (!NILP (AREF (vector, 6)))
10903 set_buffer_internal_1 (XBUFFER (AREF (vector, 6)));
10904 ASET (vector, 6, Qnil);
10907 Vmode_line_unwind_vector = vector;
10908 return Qnil;
10912 /* Store a single character C for the frame title in mode_line_noprop_buf.
10913 Re-allocate mode_line_noprop_buf if necessary. */
10915 static void
10916 store_mode_line_noprop_char (char c)
10918 /* If output position has reached the end of the allocated buffer,
10919 increase the buffer's size. */
10920 if (mode_line_noprop_ptr == mode_line_noprop_buf_end)
10922 ptrdiff_t len = MODE_LINE_NOPROP_LEN (0);
10923 ptrdiff_t size = len;
10924 mode_line_noprop_buf =
10925 xpalloc (mode_line_noprop_buf, &size, 1, STRING_BYTES_BOUND, 1);
10926 mode_line_noprop_buf_end = mode_line_noprop_buf + size;
10927 mode_line_noprop_ptr = mode_line_noprop_buf + len;
10930 *mode_line_noprop_ptr++ = c;
10934 /* Store part of a frame title in mode_line_noprop_buf, beginning at
10935 mode_line_noprop_ptr. STRING is the string to store. Do not copy
10936 characters that yield more columns than PRECISION; PRECISION <= 0
10937 means copy the whole string. Pad with spaces until FIELD_WIDTH
10938 number of characters have been copied; FIELD_WIDTH <= 0 means don't
10939 pad. Called from display_mode_element when it is used to build a
10940 frame title. */
10942 static int
10943 store_mode_line_noprop (const char *string, int field_width, int precision)
10945 const unsigned char *str = (const unsigned char *) string;
10946 int n = 0;
10947 ptrdiff_t dummy, nbytes;
10949 /* Copy at most PRECISION chars from STR. */
10950 nbytes = strlen (string);
10951 n += c_string_width (str, nbytes, precision, &dummy, &nbytes);
10952 while (nbytes--)
10953 store_mode_line_noprop_char (*str++);
10955 /* Fill up with spaces until FIELD_WIDTH reached. */
10956 while (field_width > 0
10957 && n < field_width)
10959 store_mode_line_noprop_char (' ');
10960 ++n;
10963 return n;
10966 /***********************************************************************
10967 Frame Titles
10968 ***********************************************************************/
10970 #ifdef HAVE_WINDOW_SYSTEM
10972 /* Set the title of FRAME, if it has changed. The title format is
10973 Vicon_title_format if FRAME is iconified, otherwise it is
10974 frame_title_format. */
10976 static void
10977 x_consider_frame_title (Lisp_Object frame)
10979 struct frame *f = XFRAME (frame);
10981 if (FRAME_WINDOW_P (f)
10982 || FRAME_MINIBUF_ONLY_P (f)
10983 || f->explicit_name)
10985 /* Do we have more than one visible frame on this X display? */
10986 Lisp_Object tail;
10987 Lisp_Object fmt;
10988 ptrdiff_t title_start;
10989 char *title;
10990 ptrdiff_t len;
10991 struct it it;
10992 ptrdiff_t count = SPECPDL_INDEX ();
10994 for (tail = Vframe_list; CONSP (tail); tail = XCDR (tail))
10996 Lisp_Object other_frame = XCAR (tail);
10997 struct frame *tf = XFRAME (other_frame);
10999 if (tf != f
11000 && FRAME_KBOARD (tf) == FRAME_KBOARD (f)
11001 && !FRAME_MINIBUF_ONLY_P (tf)
11002 && !EQ (other_frame, tip_frame)
11003 && (FRAME_VISIBLE_P (tf) || FRAME_ICONIFIED_P (tf)))
11004 break;
11007 /* Set global variable indicating that multiple frames exist. */
11008 multiple_frames = CONSP (tail);
11010 /* Switch to the buffer of selected window of the frame. Set up
11011 mode_line_target so that display_mode_element will output into
11012 mode_line_noprop_buf; then display the title. */
11013 record_unwind_protect (unwind_format_mode_line,
11014 format_mode_line_unwind_data
11015 (f, current_buffer, selected_window, 0));
11017 Fselect_window (f->selected_window, Qt);
11018 set_buffer_internal_1 (XBUFFER (XWINDOW (f->selected_window)->buffer));
11019 fmt = FRAME_ICONIFIED_P (f) ? Vicon_title_format : Vframe_title_format;
11021 mode_line_target = MODE_LINE_TITLE;
11022 title_start = MODE_LINE_NOPROP_LEN (0);
11023 init_iterator (&it, XWINDOW (f->selected_window), -1, -1,
11024 NULL, DEFAULT_FACE_ID);
11025 display_mode_element (&it, 0, -1, -1, fmt, Qnil, 0);
11026 len = MODE_LINE_NOPROP_LEN (title_start);
11027 title = mode_line_noprop_buf + title_start;
11028 unbind_to (count, Qnil);
11030 /* Set the title only if it's changed. This avoids consing in
11031 the common case where it hasn't. (If it turns out that we've
11032 already wasted too much time by walking through the list with
11033 display_mode_element, then we might need to optimize at a
11034 higher level than this.) */
11035 if (! STRINGP (f->name)
11036 || SBYTES (f->name) != len
11037 || memcmp (title, SDATA (f->name), len) != 0)
11038 x_implicitly_set_name (f, make_string (title, len), Qnil);
11042 #endif /* not HAVE_WINDOW_SYSTEM */
11045 /***********************************************************************
11046 Menu Bars
11047 ***********************************************************************/
11050 /* Prepare for redisplay by updating menu-bar item lists when
11051 appropriate. This can call eval. */
11053 void
11054 prepare_menu_bars (void)
11056 int all_windows;
11057 struct gcpro gcpro1, gcpro2;
11058 struct frame *f;
11059 Lisp_Object tooltip_frame;
11061 #ifdef HAVE_WINDOW_SYSTEM
11062 tooltip_frame = tip_frame;
11063 #else
11064 tooltip_frame = Qnil;
11065 #endif
11067 /* Update all frame titles based on their buffer names, etc. We do
11068 this before the menu bars so that the buffer-menu will show the
11069 up-to-date frame titles. */
11070 #ifdef HAVE_WINDOW_SYSTEM
11071 if (windows_or_buffers_changed || update_mode_lines)
11073 Lisp_Object tail, frame;
11075 FOR_EACH_FRAME (tail, frame)
11077 f = XFRAME (frame);
11078 if (!EQ (frame, tooltip_frame)
11079 && (FRAME_VISIBLE_P (f) || FRAME_ICONIFIED_P (f)))
11080 x_consider_frame_title (frame);
11083 #endif /* HAVE_WINDOW_SYSTEM */
11085 /* Update the menu bar item lists, if appropriate. This has to be
11086 done before any actual redisplay or generation of display lines. */
11087 all_windows = (update_mode_lines
11088 || buffer_shared > 1
11089 || windows_or_buffers_changed);
11090 if (all_windows)
11092 Lisp_Object tail, frame;
11093 ptrdiff_t count = SPECPDL_INDEX ();
11094 /* 1 means that update_menu_bar has run its hooks
11095 so any further calls to update_menu_bar shouldn't do so again. */
11096 int menu_bar_hooks_run = 0;
11098 record_unwind_save_match_data ();
11100 FOR_EACH_FRAME (tail, frame)
11102 f = XFRAME (frame);
11104 /* Ignore tooltip frame. */
11105 if (EQ (frame, tooltip_frame))
11106 continue;
11108 /* If a window on this frame changed size, report that to
11109 the user and clear the size-change flag. */
11110 if (FRAME_WINDOW_SIZES_CHANGED (f))
11112 Lisp_Object functions;
11114 /* Clear flag first in case we get an error below. */
11115 FRAME_WINDOW_SIZES_CHANGED (f) = 0;
11116 functions = Vwindow_size_change_functions;
11117 GCPRO2 (tail, functions);
11119 while (CONSP (functions))
11121 if (!EQ (XCAR (functions), Qt))
11122 call1 (XCAR (functions), frame);
11123 functions = XCDR (functions);
11125 UNGCPRO;
11128 GCPRO1 (tail);
11129 menu_bar_hooks_run = update_menu_bar (f, 0, menu_bar_hooks_run);
11130 #ifdef HAVE_WINDOW_SYSTEM
11131 update_tool_bar (f, 0);
11132 #endif
11133 #ifdef HAVE_NS
11134 if (windows_or_buffers_changed
11135 && FRAME_NS_P (f))
11136 ns_set_doc_edited (f, Fbuffer_modified_p
11137 (XWINDOW (f->selected_window)->buffer));
11138 #endif
11139 UNGCPRO;
11142 unbind_to (count, Qnil);
11144 else
11146 struct frame *sf = SELECTED_FRAME ();
11147 update_menu_bar (sf, 1, 0);
11148 #ifdef HAVE_WINDOW_SYSTEM
11149 update_tool_bar (sf, 1);
11150 #endif
11155 /* Update the menu bar item list for frame F. This has to be done
11156 before we start to fill in any display lines, because it can call
11157 eval.
11159 If SAVE_MATCH_DATA is non-zero, we must save and restore it here.
11161 If HOOKS_RUN is 1, that means a previous call to update_menu_bar
11162 already ran the menu bar hooks for this redisplay, so there
11163 is no need to run them again. The return value is the
11164 updated value of this flag, to pass to the next call. */
11166 static int
11167 update_menu_bar (struct frame *f, int save_match_data, int hooks_run)
11169 Lisp_Object window;
11170 register struct window *w;
11172 /* If called recursively during a menu update, do nothing. This can
11173 happen when, for instance, an activate-menubar-hook causes a
11174 redisplay. */
11175 if (inhibit_menubar_update)
11176 return hooks_run;
11178 window = FRAME_SELECTED_WINDOW (f);
11179 w = XWINDOW (window);
11181 if (FRAME_WINDOW_P (f)
11183 #if defined (USE_X_TOOLKIT) || defined (HAVE_NTGUI) \
11184 || defined (HAVE_NS) || defined (USE_GTK)
11185 FRAME_EXTERNAL_MENU_BAR (f)
11186 #else
11187 FRAME_MENU_BAR_LINES (f) > 0
11188 #endif
11189 : FRAME_MENU_BAR_LINES (f) > 0)
11191 /* If the user has switched buffers or windows, we need to
11192 recompute to reflect the new bindings. But we'll
11193 recompute when update_mode_lines is set too; that means
11194 that people can use force-mode-line-update to request
11195 that the menu bar be recomputed. The adverse effect on
11196 the rest of the redisplay algorithm is about the same as
11197 windows_or_buffers_changed anyway. */
11198 if (windows_or_buffers_changed
11199 /* This used to test w->update_mode_line, but we believe
11200 there is no need to recompute the menu in that case. */
11201 || update_mode_lines
11202 || ((BUF_SAVE_MODIFF (XBUFFER (w->buffer))
11203 < BUF_MODIFF (XBUFFER (w->buffer)))
11204 != w->last_had_star)
11205 || ((!NILP (Vtransient_mark_mode)
11206 && !NILP (BVAR (XBUFFER (w->buffer), mark_active)))
11207 != !NILP (w->region_showing)))
11209 struct buffer *prev = current_buffer;
11210 ptrdiff_t count = SPECPDL_INDEX ();
11212 specbind (Qinhibit_menubar_update, Qt);
11214 set_buffer_internal_1 (XBUFFER (w->buffer));
11215 if (save_match_data)
11216 record_unwind_save_match_data ();
11217 if (NILP (Voverriding_local_map_menu_flag))
11219 specbind (Qoverriding_terminal_local_map, Qnil);
11220 specbind (Qoverriding_local_map, Qnil);
11223 if (!hooks_run)
11225 /* Run the Lucid hook. */
11226 safe_run_hooks (Qactivate_menubar_hook);
11228 /* If it has changed current-menubar from previous value,
11229 really recompute the menu-bar from the value. */
11230 if (! NILP (Vlucid_menu_bar_dirty_flag))
11231 call0 (Qrecompute_lucid_menubar);
11233 safe_run_hooks (Qmenu_bar_update_hook);
11235 hooks_run = 1;
11238 XSETFRAME (Vmenu_updating_frame, f);
11239 FRAME_MENU_BAR_ITEMS (f) = menu_bar_items (FRAME_MENU_BAR_ITEMS (f));
11241 /* Redisplay the menu bar in case we changed it. */
11242 #if defined (USE_X_TOOLKIT) || defined (HAVE_NTGUI) \
11243 || defined (HAVE_NS) || defined (USE_GTK)
11244 if (FRAME_WINDOW_P (f))
11246 #if defined (HAVE_NS)
11247 /* All frames on Mac OS share the same menubar. So only
11248 the selected frame should be allowed to set it. */
11249 if (f == SELECTED_FRAME ())
11250 #endif
11251 set_frame_menubar (f, 0, 0);
11253 else
11254 /* On a terminal screen, the menu bar is an ordinary screen
11255 line, and this makes it get updated. */
11256 w->update_mode_line = 1;
11257 #else /* ! (USE_X_TOOLKIT || HAVE_NTGUI || HAVE_NS || USE_GTK) */
11258 /* In the non-toolkit version, the menu bar is an ordinary screen
11259 line, and this makes it get updated. */
11260 w->update_mode_line = 1;
11261 #endif /* ! (USE_X_TOOLKIT || HAVE_NTGUI || HAVE_NS || USE_GTK) */
11263 unbind_to (count, Qnil);
11264 set_buffer_internal_1 (prev);
11268 return hooks_run;
11273 /***********************************************************************
11274 Output Cursor
11275 ***********************************************************************/
11277 #ifdef HAVE_WINDOW_SYSTEM
11279 /* EXPORT:
11280 Nominal cursor position -- where to draw output.
11281 HPOS and VPOS are window relative glyph matrix coordinates.
11282 X and Y are window relative pixel coordinates. */
11284 struct cursor_pos output_cursor;
11287 /* EXPORT:
11288 Set the global variable output_cursor to CURSOR. All cursor
11289 positions are relative to updated_window. */
11291 void
11292 set_output_cursor (struct cursor_pos *cursor)
11294 output_cursor.hpos = cursor->hpos;
11295 output_cursor.vpos = cursor->vpos;
11296 output_cursor.x = cursor->x;
11297 output_cursor.y = cursor->y;
11301 /* EXPORT for RIF:
11302 Set a nominal cursor position.
11304 HPOS and VPOS are column/row positions in a window glyph matrix. X
11305 and Y are window text area relative pixel positions.
11307 If this is done during an update, updated_window will contain the
11308 window that is being updated and the position is the future output
11309 cursor position for that window. If updated_window is null, use
11310 selected_window and display the cursor at the given position. */
11312 void
11313 x_cursor_to (int vpos, int hpos, int y, int x)
11315 struct window *w;
11317 /* If updated_window is not set, work on selected_window. */
11318 if (updated_window)
11319 w = updated_window;
11320 else
11321 w = XWINDOW (selected_window);
11323 /* Set the output cursor. */
11324 output_cursor.hpos = hpos;
11325 output_cursor.vpos = vpos;
11326 output_cursor.x = x;
11327 output_cursor.y = y;
11329 /* If not called as part of an update, really display the cursor.
11330 This will also set the cursor position of W. */
11331 if (updated_window == NULL)
11333 BLOCK_INPUT;
11334 display_and_set_cursor (w, 1, hpos, vpos, x, y);
11335 if (FRAME_RIF (SELECTED_FRAME ())->flush_display_optional)
11336 FRAME_RIF (SELECTED_FRAME ())->flush_display_optional (SELECTED_FRAME ());
11337 UNBLOCK_INPUT;
11341 #endif /* HAVE_WINDOW_SYSTEM */
11344 /***********************************************************************
11345 Tool-bars
11346 ***********************************************************************/
11348 #ifdef HAVE_WINDOW_SYSTEM
11350 /* Where the mouse was last time we reported a mouse event. */
11352 FRAME_PTR last_mouse_frame;
11354 /* Tool-bar item index of the item on which a mouse button was pressed
11355 or -1. */
11357 int last_tool_bar_item;
11360 static Lisp_Object
11361 update_tool_bar_unwind (Lisp_Object frame)
11363 selected_frame = frame;
11364 return Qnil;
11367 /* Update the tool-bar item list for frame F. This has to be done
11368 before we start to fill in any display lines. Called from
11369 prepare_menu_bars. If SAVE_MATCH_DATA is non-zero, we must save
11370 and restore it here. */
11372 static void
11373 update_tool_bar (struct frame *f, int save_match_data)
11375 #if defined (USE_GTK) || defined (HAVE_NS)
11376 int do_update = FRAME_EXTERNAL_TOOL_BAR (f);
11377 #else
11378 int do_update = WINDOWP (f->tool_bar_window)
11379 && WINDOW_TOTAL_LINES (XWINDOW (f->tool_bar_window)) > 0;
11380 #endif
11382 if (do_update)
11384 Lisp_Object window;
11385 struct window *w;
11387 window = FRAME_SELECTED_WINDOW (f);
11388 w = XWINDOW (window);
11390 /* If the user has switched buffers or windows, we need to
11391 recompute to reflect the new bindings. But we'll
11392 recompute when update_mode_lines is set too; that means
11393 that people can use force-mode-line-update to request
11394 that the menu bar be recomputed. The adverse effect on
11395 the rest of the redisplay algorithm is about the same as
11396 windows_or_buffers_changed anyway. */
11397 if (windows_or_buffers_changed
11398 || w->update_mode_line
11399 || update_mode_lines
11400 || ((BUF_SAVE_MODIFF (XBUFFER (w->buffer))
11401 < BUF_MODIFF (XBUFFER (w->buffer)))
11402 != w->last_had_star)
11403 || ((!NILP (Vtransient_mark_mode)
11404 && !NILP (BVAR (XBUFFER (w->buffer), mark_active)))
11405 != !NILP (w->region_showing)))
11407 struct buffer *prev = current_buffer;
11408 ptrdiff_t count = SPECPDL_INDEX ();
11409 Lisp_Object frame, new_tool_bar;
11410 int new_n_tool_bar;
11411 struct gcpro gcpro1;
11413 /* Set current_buffer to the buffer of the selected
11414 window of the frame, so that we get the right local
11415 keymaps. */
11416 set_buffer_internal_1 (XBUFFER (w->buffer));
11418 /* Save match data, if we must. */
11419 if (save_match_data)
11420 record_unwind_save_match_data ();
11422 /* Make sure that we don't accidentally use bogus keymaps. */
11423 if (NILP (Voverriding_local_map_menu_flag))
11425 specbind (Qoverriding_terminal_local_map, Qnil);
11426 specbind (Qoverriding_local_map, Qnil);
11429 GCPRO1 (new_tool_bar);
11431 /* We must temporarily set the selected frame to this frame
11432 before calling tool_bar_items, because the calculation of
11433 the tool-bar keymap uses the selected frame (see
11434 `tool-bar-make-keymap' in tool-bar.el). */
11435 record_unwind_protect (update_tool_bar_unwind, selected_frame);
11436 XSETFRAME (frame, f);
11437 selected_frame = frame;
11439 /* Build desired tool-bar items from keymaps. */
11440 new_tool_bar = tool_bar_items (Fcopy_sequence (f->tool_bar_items),
11441 &new_n_tool_bar);
11443 /* Redisplay the tool-bar if we changed it. */
11444 if (new_n_tool_bar != f->n_tool_bar_items
11445 || NILP (Fequal (new_tool_bar, f->tool_bar_items)))
11447 /* Redisplay that happens asynchronously due to an expose event
11448 may access f->tool_bar_items. Make sure we update both
11449 variables within BLOCK_INPUT so no such event interrupts. */
11450 BLOCK_INPUT;
11451 f->tool_bar_items = new_tool_bar;
11452 f->n_tool_bar_items = new_n_tool_bar;
11453 w->update_mode_line = 1;
11454 UNBLOCK_INPUT;
11457 UNGCPRO;
11459 unbind_to (count, Qnil);
11460 set_buffer_internal_1 (prev);
11466 /* Set F->desired_tool_bar_string to a Lisp string representing frame
11467 F's desired tool-bar contents. F->tool_bar_items must have
11468 been set up previously by calling prepare_menu_bars. */
11470 static void
11471 build_desired_tool_bar_string (struct frame *f)
11473 int i, size, size_needed;
11474 struct gcpro gcpro1, gcpro2, gcpro3;
11475 Lisp_Object image, plist, props;
11477 image = plist = props = Qnil;
11478 GCPRO3 (image, plist, props);
11480 /* Prepare F->desired_tool_bar_string. If we can reuse it, do so.
11481 Otherwise, make a new string. */
11483 /* The size of the string we might be able to reuse. */
11484 size = (STRINGP (f->desired_tool_bar_string)
11485 ? SCHARS (f->desired_tool_bar_string)
11486 : 0);
11488 /* We need one space in the string for each image. */
11489 size_needed = f->n_tool_bar_items;
11491 /* Reuse f->desired_tool_bar_string, if possible. */
11492 if (size < size_needed || NILP (f->desired_tool_bar_string))
11493 f->desired_tool_bar_string = Fmake_string (make_number (size_needed),
11494 make_number (' '));
11495 else
11497 props = list4 (Qdisplay, Qnil, Qmenu_item, Qnil);
11498 Fremove_text_properties (make_number (0), make_number (size),
11499 props, f->desired_tool_bar_string);
11502 /* Put a `display' property on the string for the images to display,
11503 put a `menu_item' property on tool-bar items with a value that
11504 is the index of the item in F's tool-bar item vector. */
11505 for (i = 0; i < f->n_tool_bar_items; ++i)
11507 #define PROP(IDX) AREF (f->tool_bar_items, i * TOOL_BAR_ITEM_NSLOTS + (IDX))
11509 int enabled_p = !NILP (PROP (TOOL_BAR_ITEM_ENABLED_P));
11510 int selected_p = !NILP (PROP (TOOL_BAR_ITEM_SELECTED_P));
11511 int hmargin, vmargin, relief, idx, end;
11513 /* If image is a vector, choose the image according to the
11514 button state. */
11515 image = PROP (TOOL_BAR_ITEM_IMAGES);
11516 if (VECTORP (image))
11518 if (enabled_p)
11519 idx = (selected_p
11520 ? TOOL_BAR_IMAGE_ENABLED_SELECTED
11521 : TOOL_BAR_IMAGE_ENABLED_DESELECTED);
11522 else
11523 idx = (selected_p
11524 ? TOOL_BAR_IMAGE_DISABLED_SELECTED
11525 : TOOL_BAR_IMAGE_DISABLED_DESELECTED);
11527 xassert (ASIZE (image) >= idx);
11528 image = AREF (image, idx);
11530 else
11531 idx = -1;
11533 /* Ignore invalid image specifications. */
11534 if (!valid_image_p (image))
11535 continue;
11537 /* Display the tool-bar button pressed, or depressed. */
11538 plist = Fcopy_sequence (XCDR (image));
11540 /* Compute margin and relief to draw. */
11541 relief = (tool_bar_button_relief >= 0
11542 ? tool_bar_button_relief
11543 : DEFAULT_TOOL_BAR_BUTTON_RELIEF);
11544 hmargin = vmargin = relief;
11546 if (RANGED_INTEGERP (1, Vtool_bar_button_margin,
11547 INT_MAX - max (hmargin, vmargin)))
11549 hmargin += XFASTINT (Vtool_bar_button_margin);
11550 vmargin += XFASTINT (Vtool_bar_button_margin);
11552 else if (CONSP (Vtool_bar_button_margin))
11554 if (RANGED_INTEGERP (1, XCAR (Vtool_bar_button_margin),
11555 INT_MAX - hmargin))
11556 hmargin += XFASTINT (XCAR (Vtool_bar_button_margin));
11558 if (RANGED_INTEGERP (1, XCDR (Vtool_bar_button_margin),
11559 INT_MAX - vmargin))
11560 vmargin += XFASTINT (XCDR (Vtool_bar_button_margin));
11563 if (auto_raise_tool_bar_buttons_p)
11565 /* Add a `:relief' property to the image spec if the item is
11566 selected. */
11567 if (selected_p)
11569 plist = Fplist_put (plist, QCrelief, make_number (-relief));
11570 hmargin -= relief;
11571 vmargin -= relief;
11574 else
11576 /* If image is selected, display it pressed, i.e. with a
11577 negative relief. If it's not selected, display it with a
11578 raised relief. */
11579 plist = Fplist_put (plist, QCrelief,
11580 (selected_p
11581 ? make_number (-relief)
11582 : make_number (relief)));
11583 hmargin -= relief;
11584 vmargin -= relief;
11587 /* Put a margin around the image. */
11588 if (hmargin || vmargin)
11590 if (hmargin == vmargin)
11591 plist = Fplist_put (plist, QCmargin, make_number (hmargin));
11592 else
11593 plist = Fplist_put (plist, QCmargin,
11594 Fcons (make_number (hmargin),
11595 make_number (vmargin)));
11598 /* If button is not enabled, and we don't have special images
11599 for the disabled state, make the image appear disabled by
11600 applying an appropriate algorithm to it. */
11601 if (!enabled_p && idx < 0)
11602 plist = Fplist_put (plist, QCconversion, Qdisabled);
11604 /* Put a `display' text property on the string for the image to
11605 display. Put a `menu-item' property on the string that gives
11606 the start of this item's properties in the tool-bar items
11607 vector. */
11608 image = Fcons (Qimage, plist);
11609 props = list4 (Qdisplay, image,
11610 Qmenu_item, make_number (i * TOOL_BAR_ITEM_NSLOTS));
11612 /* Let the last image hide all remaining spaces in the tool bar
11613 string. The string can be longer than needed when we reuse a
11614 previous string. */
11615 if (i + 1 == f->n_tool_bar_items)
11616 end = SCHARS (f->desired_tool_bar_string);
11617 else
11618 end = i + 1;
11619 Fadd_text_properties (make_number (i), make_number (end),
11620 props, f->desired_tool_bar_string);
11621 #undef PROP
11624 UNGCPRO;
11628 /* Display one line of the tool-bar of frame IT->f.
11630 HEIGHT specifies the desired height of the tool-bar line.
11631 If the actual height of the glyph row is less than HEIGHT, the
11632 row's height is increased to HEIGHT, and the icons are centered
11633 vertically in the new height.
11635 If HEIGHT is -1, we are counting needed tool-bar lines, so don't
11636 count a final empty row in case the tool-bar width exactly matches
11637 the window width.
11640 static void
11641 display_tool_bar_line (struct it *it, int height)
11643 struct glyph_row *row = it->glyph_row;
11644 int max_x = it->last_visible_x;
11645 struct glyph *last;
11647 prepare_desired_row (row);
11648 row->y = it->current_y;
11650 /* Note that this isn't made use of if the face hasn't a box,
11651 so there's no need to check the face here. */
11652 it->start_of_box_run_p = 1;
11654 while (it->current_x < max_x)
11656 int x, n_glyphs_before, i, nglyphs;
11657 struct it it_before;
11659 /* Get the next display element. */
11660 if (!get_next_display_element (it))
11662 /* Don't count empty row if we are counting needed tool-bar lines. */
11663 if (height < 0 && !it->hpos)
11664 return;
11665 break;
11668 /* Produce glyphs. */
11669 n_glyphs_before = row->used[TEXT_AREA];
11670 it_before = *it;
11672 PRODUCE_GLYPHS (it);
11674 nglyphs = row->used[TEXT_AREA] - n_glyphs_before;
11675 i = 0;
11676 x = it_before.current_x;
11677 while (i < nglyphs)
11679 struct glyph *glyph = row->glyphs[TEXT_AREA] + n_glyphs_before + i;
11681 if (x + glyph->pixel_width > max_x)
11683 /* Glyph doesn't fit on line. Backtrack. */
11684 row->used[TEXT_AREA] = n_glyphs_before;
11685 *it = it_before;
11686 /* If this is the only glyph on this line, it will never fit on the
11687 tool-bar, so skip it. But ensure there is at least one glyph,
11688 so we don't accidentally disable the tool-bar. */
11689 if (n_glyphs_before == 0
11690 && (it->vpos > 0 || IT_STRING_CHARPOS (*it) < it->end_charpos-1))
11691 break;
11692 goto out;
11695 ++it->hpos;
11696 x += glyph->pixel_width;
11697 ++i;
11700 /* Stop at line end. */
11701 if (ITERATOR_AT_END_OF_LINE_P (it))
11702 break;
11704 set_iterator_to_next (it, 1);
11707 out:;
11709 row->displays_text_p = row->used[TEXT_AREA] != 0;
11711 /* Use default face for the border below the tool bar.
11713 FIXME: When auto-resize-tool-bars is grow-only, there is
11714 no additional border below the possibly empty tool-bar lines.
11715 So to make the extra empty lines look "normal", we have to
11716 use the tool-bar face for the border too. */
11717 if (!row->displays_text_p && !EQ (Vauto_resize_tool_bars, Qgrow_only))
11718 it->face_id = DEFAULT_FACE_ID;
11720 extend_face_to_end_of_line (it);
11721 last = row->glyphs[TEXT_AREA] + row->used[TEXT_AREA] - 1;
11722 last->right_box_line_p = 1;
11723 if (last == row->glyphs[TEXT_AREA])
11724 last->left_box_line_p = 1;
11726 /* Make line the desired height and center it vertically. */
11727 if ((height -= it->max_ascent + it->max_descent) > 0)
11729 /* Don't add more than one line height. */
11730 height %= FRAME_LINE_HEIGHT (it->f);
11731 it->max_ascent += height / 2;
11732 it->max_descent += (height + 1) / 2;
11735 compute_line_metrics (it);
11737 /* If line is empty, make it occupy the rest of the tool-bar. */
11738 if (!row->displays_text_p)
11740 row->height = row->phys_height = it->last_visible_y - row->y;
11741 row->visible_height = row->height;
11742 row->ascent = row->phys_ascent = 0;
11743 row->extra_line_spacing = 0;
11746 row->full_width_p = 1;
11747 row->continued_p = 0;
11748 row->truncated_on_left_p = 0;
11749 row->truncated_on_right_p = 0;
11751 it->current_x = it->hpos = 0;
11752 it->current_y += row->height;
11753 ++it->vpos;
11754 ++it->glyph_row;
11758 /* Max tool-bar height. */
11760 #define MAX_FRAME_TOOL_BAR_HEIGHT(f) \
11761 ((FRAME_LINE_HEIGHT (f) * FRAME_LINES (f)))
11763 /* Value is the number of screen lines needed to make all tool-bar
11764 items of frame F visible. The number of actual rows needed is
11765 returned in *N_ROWS if non-NULL. */
11767 static int
11768 tool_bar_lines_needed (struct frame *f, int *n_rows)
11770 struct window *w = XWINDOW (f->tool_bar_window);
11771 struct it it;
11772 /* tool_bar_lines_needed is called from redisplay_tool_bar after building
11773 the desired matrix, so use (unused) mode-line row as temporary row to
11774 avoid destroying the first tool-bar row. */
11775 struct glyph_row *temp_row = MATRIX_MODE_LINE_ROW (w->desired_matrix);
11777 /* Initialize an iterator for iteration over
11778 F->desired_tool_bar_string in the tool-bar window of frame F. */
11779 init_iterator (&it, w, -1, -1, temp_row, TOOL_BAR_FACE_ID);
11780 it.first_visible_x = 0;
11781 it.last_visible_x = FRAME_TOTAL_COLS (f) * FRAME_COLUMN_WIDTH (f);
11782 reseat_to_string (&it, NULL, f->desired_tool_bar_string, 0, 0, 0, -1);
11783 it.paragraph_embedding = L2R;
11785 while (!ITERATOR_AT_END_P (&it))
11787 clear_glyph_row (temp_row);
11788 it.glyph_row = temp_row;
11789 display_tool_bar_line (&it, -1);
11791 clear_glyph_row (temp_row);
11793 /* f->n_tool_bar_rows == 0 means "unknown"; -1 means no tool-bar. */
11794 if (n_rows)
11795 *n_rows = it.vpos > 0 ? it.vpos : -1;
11797 return (it.current_y + FRAME_LINE_HEIGHT (f) - 1) / FRAME_LINE_HEIGHT (f);
11801 DEFUN ("tool-bar-lines-needed", Ftool_bar_lines_needed, Stool_bar_lines_needed,
11802 0, 1, 0,
11803 doc: /* Return the number of lines occupied by the tool bar of FRAME. */)
11804 (Lisp_Object frame)
11806 struct frame *f;
11807 struct window *w;
11808 int nlines = 0;
11810 if (NILP (frame))
11811 frame = selected_frame;
11812 else
11813 CHECK_FRAME (frame);
11814 f = XFRAME (frame);
11816 if (WINDOWP (f->tool_bar_window)
11817 && (w = XWINDOW (f->tool_bar_window),
11818 WINDOW_TOTAL_LINES (w) > 0))
11820 update_tool_bar (f, 1);
11821 if (f->n_tool_bar_items)
11823 build_desired_tool_bar_string (f);
11824 nlines = tool_bar_lines_needed (f, NULL);
11828 return make_number (nlines);
11832 /* Display the tool-bar of frame F. Value is non-zero if tool-bar's
11833 height should be changed. */
11835 static int
11836 redisplay_tool_bar (struct frame *f)
11838 struct window *w;
11839 struct it it;
11840 struct glyph_row *row;
11842 #if defined (USE_GTK) || defined (HAVE_NS)
11843 if (FRAME_EXTERNAL_TOOL_BAR (f))
11844 update_frame_tool_bar (f);
11845 return 0;
11846 #endif
11848 /* If frame hasn't a tool-bar window or if it is zero-height, don't
11849 do anything. This means you must start with tool-bar-lines
11850 non-zero to get the auto-sizing effect. Or in other words, you
11851 can turn off tool-bars by specifying tool-bar-lines zero. */
11852 if (!WINDOWP (f->tool_bar_window)
11853 || (w = XWINDOW (f->tool_bar_window),
11854 WINDOW_TOTAL_LINES (w) == 0))
11855 return 0;
11857 /* Set up an iterator for the tool-bar window. */
11858 init_iterator (&it, w, -1, -1, w->desired_matrix->rows, TOOL_BAR_FACE_ID);
11859 it.first_visible_x = 0;
11860 it.last_visible_x = FRAME_TOTAL_COLS (f) * FRAME_COLUMN_WIDTH (f);
11861 row = it.glyph_row;
11863 /* Build a string that represents the contents of the tool-bar. */
11864 build_desired_tool_bar_string (f);
11865 reseat_to_string (&it, NULL, f->desired_tool_bar_string, 0, 0, 0, -1);
11866 /* FIXME: This should be controlled by a user option. But it
11867 doesn't make sense to have an R2L tool bar if the menu bar cannot
11868 be drawn also R2L, and making the menu bar R2L is tricky due
11869 toolkit-specific code that implements it. If an R2L tool bar is
11870 ever supported, display_tool_bar_line should also be augmented to
11871 call unproduce_glyphs like display_line and display_string
11872 do. */
11873 it.paragraph_embedding = L2R;
11875 if (f->n_tool_bar_rows == 0)
11877 int nlines;
11879 if ((nlines = tool_bar_lines_needed (f, &f->n_tool_bar_rows),
11880 nlines != WINDOW_TOTAL_LINES (w)))
11882 Lisp_Object frame;
11883 int old_height = WINDOW_TOTAL_LINES (w);
11885 XSETFRAME (frame, f);
11886 Fmodify_frame_parameters (frame,
11887 Fcons (Fcons (Qtool_bar_lines,
11888 make_number (nlines)),
11889 Qnil));
11890 if (WINDOW_TOTAL_LINES (w) != old_height)
11892 clear_glyph_matrix (w->desired_matrix);
11893 fonts_changed_p = 1;
11894 return 1;
11899 /* Display as many lines as needed to display all tool-bar items. */
11901 if (f->n_tool_bar_rows > 0)
11903 int border, rows, height, extra;
11905 if (TYPE_RANGED_INTEGERP (int, Vtool_bar_border))
11906 border = XINT (Vtool_bar_border);
11907 else if (EQ (Vtool_bar_border, Qinternal_border_width))
11908 border = FRAME_INTERNAL_BORDER_WIDTH (f);
11909 else if (EQ (Vtool_bar_border, Qborder_width))
11910 border = f->border_width;
11911 else
11912 border = 0;
11913 if (border < 0)
11914 border = 0;
11916 rows = f->n_tool_bar_rows;
11917 height = max (1, (it.last_visible_y - border) / rows);
11918 extra = it.last_visible_y - border - height * rows;
11920 while (it.current_y < it.last_visible_y)
11922 int h = 0;
11923 if (extra > 0 && rows-- > 0)
11925 h = (extra + rows - 1) / rows;
11926 extra -= h;
11928 display_tool_bar_line (&it, height + h);
11931 else
11933 while (it.current_y < it.last_visible_y)
11934 display_tool_bar_line (&it, 0);
11937 /* It doesn't make much sense to try scrolling in the tool-bar
11938 window, so don't do it. */
11939 w->desired_matrix->no_scrolling_p = 1;
11940 w->must_be_updated_p = 1;
11942 if (!NILP (Vauto_resize_tool_bars))
11944 int max_tool_bar_height = MAX_FRAME_TOOL_BAR_HEIGHT (f);
11945 int change_height_p = 0;
11947 /* If we couldn't display everything, change the tool-bar's
11948 height if there is room for more. */
11949 if (IT_STRING_CHARPOS (it) < it.end_charpos
11950 && it.current_y < max_tool_bar_height)
11951 change_height_p = 1;
11953 row = it.glyph_row - 1;
11955 /* If there are blank lines at the end, except for a partially
11956 visible blank line at the end that is smaller than
11957 FRAME_LINE_HEIGHT, change the tool-bar's height. */
11958 if (!row->displays_text_p
11959 && row->height >= FRAME_LINE_HEIGHT (f))
11960 change_height_p = 1;
11962 /* If row displays tool-bar items, but is partially visible,
11963 change the tool-bar's height. */
11964 if (row->displays_text_p
11965 && MATRIX_ROW_BOTTOM_Y (row) > it.last_visible_y
11966 && MATRIX_ROW_BOTTOM_Y (row) < max_tool_bar_height)
11967 change_height_p = 1;
11969 /* Resize windows as needed by changing the `tool-bar-lines'
11970 frame parameter. */
11971 if (change_height_p)
11973 Lisp_Object frame;
11974 int old_height = WINDOW_TOTAL_LINES (w);
11975 int nrows;
11976 int nlines = tool_bar_lines_needed (f, &nrows);
11978 change_height_p = ((EQ (Vauto_resize_tool_bars, Qgrow_only)
11979 && !f->minimize_tool_bar_window_p)
11980 ? (nlines > old_height)
11981 : (nlines != old_height));
11982 f->minimize_tool_bar_window_p = 0;
11984 if (change_height_p)
11986 XSETFRAME (frame, f);
11987 Fmodify_frame_parameters (frame,
11988 Fcons (Fcons (Qtool_bar_lines,
11989 make_number (nlines)),
11990 Qnil));
11991 if (WINDOW_TOTAL_LINES (w) != old_height)
11993 clear_glyph_matrix (w->desired_matrix);
11994 f->n_tool_bar_rows = nrows;
11995 fonts_changed_p = 1;
11996 return 1;
12002 f->minimize_tool_bar_window_p = 0;
12003 return 0;
12007 /* Get information about the tool-bar item which is displayed in GLYPH
12008 on frame F. Return in *PROP_IDX the index where tool-bar item
12009 properties start in F->tool_bar_items. Value is zero if
12010 GLYPH doesn't display a tool-bar item. */
12012 static int
12013 tool_bar_item_info (struct frame *f, struct glyph *glyph, int *prop_idx)
12015 Lisp_Object prop;
12016 int success_p;
12017 int charpos;
12019 /* This function can be called asynchronously, which means we must
12020 exclude any possibility that Fget_text_property signals an
12021 error. */
12022 charpos = min (SCHARS (f->current_tool_bar_string), glyph->charpos);
12023 charpos = max (0, charpos);
12025 /* Get the text property `menu-item' at pos. The value of that
12026 property is the start index of this item's properties in
12027 F->tool_bar_items. */
12028 prop = Fget_text_property (make_number (charpos),
12029 Qmenu_item, f->current_tool_bar_string);
12030 if (INTEGERP (prop))
12032 *prop_idx = XINT (prop);
12033 success_p = 1;
12035 else
12036 success_p = 0;
12038 return success_p;
12042 /* Get information about the tool-bar item at position X/Y on frame F.
12043 Return in *GLYPH a pointer to the glyph of the tool-bar item in
12044 the current matrix of the tool-bar window of F, or NULL if not
12045 on a tool-bar item. Return in *PROP_IDX the index of the tool-bar
12046 item in F->tool_bar_items. Value is
12048 -1 if X/Y is not on a tool-bar item
12049 0 if X/Y is on the same item that was highlighted before.
12050 1 otherwise. */
12052 static int
12053 get_tool_bar_item (struct frame *f, int x, int y, struct glyph **glyph,
12054 int *hpos, int *vpos, int *prop_idx)
12056 Mouse_HLInfo *hlinfo = MOUSE_HL_INFO (f);
12057 struct window *w = XWINDOW (f->tool_bar_window);
12058 int area;
12060 /* Find the glyph under X/Y. */
12061 *glyph = x_y_to_hpos_vpos (w, x, y, hpos, vpos, 0, 0, &area);
12062 if (*glyph == NULL)
12063 return -1;
12065 /* Get the start of this tool-bar item's properties in
12066 f->tool_bar_items. */
12067 if (!tool_bar_item_info (f, *glyph, prop_idx))
12068 return -1;
12070 /* Is mouse on the highlighted item? */
12071 if (EQ (f->tool_bar_window, hlinfo->mouse_face_window)
12072 && *vpos >= hlinfo->mouse_face_beg_row
12073 && *vpos <= hlinfo->mouse_face_end_row
12074 && (*vpos > hlinfo->mouse_face_beg_row
12075 || *hpos >= hlinfo->mouse_face_beg_col)
12076 && (*vpos < hlinfo->mouse_face_end_row
12077 || *hpos < hlinfo->mouse_face_end_col
12078 || hlinfo->mouse_face_past_end))
12079 return 0;
12081 return 1;
12085 /* EXPORT:
12086 Handle mouse button event on the tool-bar of frame F, at
12087 frame-relative coordinates X/Y. DOWN_P is 1 for a button press,
12088 0 for button release. MODIFIERS is event modifiers for button
12089 release. */
12091 void
12092 handle_tool_bar_click (struct frame *f, int x, int y, int down_p,
12093 int modifiers)
12095 Mouse_HLInfo *hlinfo = MOUSE_HL_INFO (f);
12096 struct window *w = XWINDOW (f->tool_bar_window);
12097 int hpos, vpos, prop_idx;
12098 struct glyph *glyph;
12099 Lisp_Object enabled_p;
12101 /* If not on the highlighted tool-bar item, return. */
12102 frame_to_window_pixel_xy (w, &x, &y);
12103 if (get_tool_bar_item (f, x, y, &glyph, &hpos, &vpos, &prop_idx) != 0)
12104 return;
12106 /* If item is disabled, do nothing. */
12107 enabled_p = AREF (f->tool_bar_items, prop_idx + TOOL_BAR_ITEM_ENABLED_P);
12108 if (NILP (enabled_p))
12109 return;
12111 if (down_p)
12113 /* Show item in pressed state. */
12114 show_mouse_face (hlinfo, DRAW_IMAGE_SUNKEN);
12115 hlinfo->mouse_face_image_state = DRAW_IMAGE_SUNKEN;
12116 last_tool_bar_item = prop_idx;
12118 else
12120 Lisp_Object key, frame;
12121 struct input_event event;
12122 EVENT_INIT (event);
12124 /* Show item in released state. */
12125 show_mouse_face (hlinfo, DRAW_IMAGE_RAISED);
12126 hlinfo->mouse_face_image_state = DRAW_IMAGE_RAISED;
12128 key = AREF (f->tool_bar_items, prop_idx + TOOL_BAR_ITEM_KEY);
12130 XSETFRAME (frame, f);
12131 event.kind = TOOL_BAR_EVENT;
12132 event.frame_or_window = frame;
12133 event.arg = frame;
12134 kbd_buffer_store_event (&event);
12136 event.kind = TOOL_BAR_EVENT;
12137 event.frame_or_window = frame;
12138 event.arg = key;
12139 event.modifiers = modifiers;
12140 kbd_buffer_store_event (&event);
12141 last_tool_bar_item = -1;
12146 /* Possibly highlight a tool-bar item on frame F when mouse moves to
12147 tool-bar window-relative coordinates X/Y. Called from
12148 note_mouse_highlight. */
12150 static void
12151 note_tool_bar_highlight (struct frame *f, int x, int y)
12153 Lisp_Object window = f->tool_bar_window;
12154 struct window *w = XWINDOW (window);
12155 Display_Info *dpyinfo = FRAME_X_DISPLAY_INFO (f);
12156 Mouse_HLInfo *hlinfo = MOUSE_HL_INFO (f);
12157 int hpos, vpos;
12158 struct glyph *glyph;
12159 struct glyph_row *row;
12160 int i;
12161 Lisp_Object enabled_p;
12162 int prop_idx;
12163 enum draw_glyphs_face draw = DRAW_IMAGE_RAISED;
12164 int mouse_down_p, rc;
12166 /* Function note_mouse_highlight is called with negative X/Y
12167 values when mouse moves outside of the frame. */
12168 if (x <= 0 || y <= 0)
12170 clear_mouse_face (hlinfo);
12171 return;
12174 rc = get_tool_bar_item (f, x, y, &glyph, &hpos, &vpos, &prop_idx);
12175 if (rc < 0)
12177 /* Not on tool-bar item. */
12178 clear_mouse_face (hlinfo);
12179 return;
12181 else if (rc == 0)
12182 /* On same tool-bar item as before. */
12183 goto set_help_echo;
12185 clear_mouse_face (hlinfo);
12187 /* Mouse is down, but on different tool-bar item? */
12188 mouse_down_p = (dpyinfo->grabbed
12189 && f == last_mouse_frame
12190 && FRAME_LIVE_P (f));
12191 if (mouse_down_p
12192 && last_tool_bar_item != prop_idx)
12193 return;
12195 hlinfo->mouse_face_image_state = DRAW_NORMAL_TEXT;
12196 draw = mouse_down_p ? DRAW_IMAGE_SUNKEN : DRAW_IMAGE_RAISED;
12198 /* If tool-bar item is not enabled, don't highlight it. */
12199 enabled_p = AREF (f->tool_bar_items, prop_idx + TOOL_BAR_ITEM_ENABLED_P);
12200 if (!NILP (enabled_p))
12202 /* Compute the x-position of the glyph. In front and past the
12203 image is a space. We include this in the highlighted area. */
12204 row = MATRIX_ROW (w->current_matrix, vpos);
12205 for (i = x = 0; i < hpos; ++i)
12206 x += row->glyphs[TEXT_AREA][i].pixel_width;
12208 /* Record this as the current active region. */
12209 hlinfo->mouse_face_beg_col = hpos;
12210 hlinfo->mouse_face_beg_row = vpos;
12211 hlinfo->mouse_face_beg_x = x;
12212 hlinfo->mouse_face_beg_y = row->y;
12213 hlinfo->mouse_face_past_end = 0;
12215 hlinfo->mouse_face_end_col = hpos + 1;
12216 hlinfo->mouse_face_end_row = vpos;
12217 hlinfo->mouse_face_end_x = x + glyph->pixel_width;
12218 hlinfo->mouse_face_end_y = row->y;
12219 hlinfo->mouse_face_window = window;
12220 hlinfo->mouse_face_face_id = TOOL_BAR_FACE_ID;
12222 /* Display it as active. */
12223 show_mouse_face (hlinfo, draw);
12224 hlinfo->mouse_face_image_state = draw;
12227 set_help_echo:
12229 /* Set help_echo_string to a help string to display for this tool-bar item.
12230 XTread_socket does the rest. */
12231 help_echo_object = help_echo_window = Qnil;
12232 help_echo_pos = -1;
12233 help_echo_string = AREF (f->tool_bar_items, prop_idx + TOOL_BAR_ITEM_HELP);
12234 if (NILP (help_echo_string))
12235 help_echo_string = AREF (f->tool_bar_items, prop_idx + TOOL_BAR_ITEM_CAPTION);
12238 #endif /* HAVE_WINDOW_SYSTEM */
12242 /************************************************************************
12243 Horizontal scrolling
12244 ************************************************************************/
12246 static int hscroll_window_tree (Lisp_Object);
12247 static int hscroll_windows (Lisp_Object);
12249 /* For all leaf windows in the window tree rooted at WINDOW, set their
12250 hscroll value so that PT is (i) visible in the window, and (ii) so
12251 that it is not within a certain margin at the window's left and
12252 right border. Value is non-zero if any window's hscroll has been
12253 changed. */
12255 static int
12256 hscroll_window_tree (Lisp_Object window)
12258 int hscrolled_p = 0;
12259 int hscroll_relative_p = FLOATP (Vhscroll_step);
12260 int hscroll_step_abs = 0;
12261 double hscroll_step_rel = 0;
12263 if (hscroll_relative_p)
12265 hscroll_step_rel = XFLOAT_DATA (Vhscroll_step);
12266 if (hscroll_step_rel < 0)
12268 hscroll_relative_p = 0;
12269 hscroll_step_abs = 0;
12272 else if (TYPE_RANGED_INTEGERP (int, Vhscroll_step))
12274 hscroll_step_abs = XINT (Vhscroll_step);
12275 if (hscroll_step_abs < 0)
12276 hscroll_step_abs = 0;
12278 else
12279 hscroll_step_abs = 0;
12281 while (WINDOWP (window))
12283 struct window *w = XWINDOW (window);
12285 if (WINDOWP (w->hchild))
12286 hscrolled_p |= hscroll_window_tree (w->hchild);
12287 else if (WINDOWP (w->vchild))
12288 hscrolled_p |= hscroll_window_tree (w->vchild);
12289 else if (w->cursor.vpos >= 0)
12291 int h_margin;
12292 int text_area_width;
12293 struct glyph_row *current_cursor_row
12294 = MATRIX_ROW (w->current_matrix, w->cursor.vpos);
12295 struct glyph_row *desired_cursor_row
12296 = MATRIX_ROW (w->desired_matrix, w->cursor.vpos);
12297 struct glyph_row *cursor_row
12298 = (desired_cursor_row->enabled_p
12299 ? desired_cursor_row
12300 : current_cursor_row);
12301 int row_r2l_p = cursor_row->reversed_p;
12303 text_area_width = window_box_width (w, TEXT_AREA);
12305 /* Scroll when cursor is inside this scroll margin. */
12306 h_margin = hscroll_margin * WINDOW_FRAME_COLUMN_WIDTH (w);
12308 if (!NILP (Fbuffer_local_value (Qauto_hscroll_mode, w->buffer))
12309 /* For left-to-right rows, hscroll when cursor is either
12310 (i) inside the right hscroll margin, or (ii) if it is
12311 inside the left margin and the window is already
12312 hscrolled. */
12313 && ((!row_r2l_p
12314 && ((XFASTINT (w->hscroll)
12315 && w->cursor.x <= h_margin)
12316 || (cursor_row->enabled_p
12317 && cursor_row->truncated_on_right_p
12318 && (w->cursor.x >= text_area_width - h_margin))))
12319 /* For right-to-left rows, the logic is similar,
12320 except that rules for scrolling to left and right
12321 are reversed. E.g., if cursor.x <= h_margin, we
12322 need to hscroll "to the right" unconditionally,
12323 and that will scroll the screen to the left so as
12324 to reveal the next portion of the row. */
12325 || (row_r2l_p
12326 && ((cursor_row->enabled_p
12327 /* FIXME: It is confusing to set the
12328 truncated_on_right_p flag when R2L rows
12329 are actually truncated on the left. */
12330 && cursor_row->truncated_on_right_p
12331 && w->cursor.x <= h_margin)
12332 || (XFASTINT (w->hscroll)
12333 && (w->cursor.x >= text_area_width - h_margin))))))
12335 struct it it;
12336 ptrdiff_t hscroll;
12337 struct buffer *saved_current_buffer;
12338 ptrdiff_t pt;
12339 int wanted_x;
12341 /* Find point in a display of infinite width. */
12342 saved_current_buffer = current_buffer;
12343 current_buffer = XBUFFER (w->buffer);
12345 if (w == XWINDOW (selected_window))
12346 pt = PT;
12347 else
12349 pt = marker_position (w->pointm);
12350 pt = max (BEGV, pt);
12351 pt = min (ZV, pt);
12354 /* Move iterator to pt starting at cursor_row->start in
12355 a line with infinite width. */
12356 init_to_row_start (&it, w, cursor_row);
12357 it.last_visible_x = INFINITY;
12358 move_it_in_display_line_to (&it, pt, -1, MOVE_TO_POS);
12359 current_buffer = saved_current_buffer;
12361 /* Position cursor in window. */
12362 if (!hscroll_relative_p && hscroll_step_abs == 0)
12363 hscroll = max (0, (it.current_x
12364 - (ITERATOR_AT_END_OF_LINE_P (&it)
12365 ? (text_area_width - 4 * FRAME_COLUMN_WIDTH (it.f))
12366 : (text_area_width / 2))))
12367 / FRAME_COLUMN_WIDTH (it.f);
12368 else if ((!row_r2l_p
12369 && w->cursor.x >= text_area_width - h_margin)
12370 || (row_r2l_p && w->cursor.x <= h_margin))
12372 if (hscroll_relative_p)
12373 wanted_x = text_area_width * (1 - hscroll_step_rel)
12374 - h_margin;
12375 else
12376 wanted_x = text_area_width
12377 - hscroll_step_abs * FRAME_COLUMN_WIDTH (it.f)
12378 - h_margin;
12379 hscroll
12380 = max (0, it.current_x - wanted_x) / FRAME_COLUMN_WIDTH (it.f);
12382 else
12384 if (hscroll_relative_p)
12385 wanted_x = text_area_width * hscroll_step_rel
12386 + h_margin;
12387 else
12388 wanted_x = hscroll_step_abs * FRAME_COLUMN_WIDTH (it.f)
12389 + h_margin;
12390 hscroll
12391 = max (0, it.current_x - wanted_x) / FRAME_COLUMN_WIDTH (it.f);
12393 hscroll = max (hscroll, XFASTINT (w->min_hscroll));
12395 /* Don't prevent redisplay optimizations if hscroll
12396 hasn't changed, as it will unnecessarily slow down
12397 redisplay. */
12398 if (XFASTINT (w->hscroll) != hscroll)
12400 XBUFFER (w->buffer)->prevent_redisplay_optimizations_p = 1;
12401 w->hscroll = make_number (hscroll);
12402 hscrolled_p = 1;
12407 window = w->next;
12410 /* Value is non-zero if hscroll of any leaf window has been changed. */
12411 return hscrolled_p;
12415 /* Set hscroll so that cursor is visible and not inside horizontal
12416 scroll margins for all windows in the tree rooted at WINDOW. See
12417 also hscroll_window_tree above. Value is non-zero if any window's
12418 hscroll has been changed. If it has, desired matrices on the frame
12419 of WINDOW are cleared. */
12421 static int
12422 hscroll_windows (Lisp_Object window)
12424 int hscrolled_p = hscroll_window_tree (window);
12425 if (hscrolled_p)
12426 clear_desired_matrices (XFRAME (WINDOW_FRAME (XWINDOW (window))));
12427 return hscrolled_p;
12432 /************************************************************************
12433 Redisplay
12434 ************************************************************************/
12436 /* Variables holding some state of redisplay if GLYPH_DEBUG is defined
12437 to a non-zero value. This is sometimes handy to have in a debugger
12438 session. */
12440 #if GLYPH_DEBUG
12442 /* First and last unchanged row for try_window_id. */
12444 static int debug_first_unchanged_at_end_vpos;
12445 static int debug_last_unchanged_at_beg_vpos;
12447 /* Delta vpos and y. */
12449 static int debug_dvpos, debug_dy;
12451 /* Delta in characters and bytes for try_window_id. */
12453 static ptrdiff_t debug_delta, debug_delta_bytes;
12455 /* Values of window_end_pos and window_end_vpos at the end of
12456 try_window_id. */
12458 static ptrdiff_t debug_end_vpos;
12460 /* Append a string to W->desired_matrix->method. FMT is a printf
12461 format string. If trace_redisplay_p is non-zero also printf the
12462 resulting string to stderr. */
12464 static void debug_method_add (struct window *, char const *, ...)
12465 ATTRIBUTE_FORMAT_PRINTF (2, 3);
12467 static void
12468 debug_method_add (struct window *w, char const *fmt, ...)
12470 char buffer[512];
12471 char *method = w->desired_matrix->method;
12472 int len = strlen (method);
12473 int size = sizeof w->desired_matrix->method;
12474 int remaining = size - len - 1;
12475 va_list ap;
12477 va_start (ap, fmt);
12478 vsprintf (buffer, fmt, ap);
12479 va_end (ap);
12480 if (len && remaining)
12482 method[len] = '|';
12483 --remaining, ++len;
12486 strncpy (method + len, buffer, remaining);
12488 if (trace_redisplay_p)
12489 fprintf (stderr, "%p (%s): %s\n",
12491 ((BUFFERP (w->buffer)
12492 && STRINGP (BVAR (XBUFFER (w->buffer), name)))
12493 ? SSDATA (BVAR (XBUFFER (w->buffer), name))
12494 : "no buffer"),
12495 buffer);
12498 #endif /* GLYPH_DEBUG */
12501 /* Value is non-zero if all changes in window W, which displays
12502 current_buffer, are in the text between START and END. START is a
12503 buffer position, END is given as a distance from Z. Used in
12504 redisplay_internal for display optimization. */
12506 static inline int
12507 text_outside_line_unchanged_p (struct window *w,
12508 ptrdiff_t start, ptrdiff_t end)
12510 int unchanged_p = 1;
12512 /* If text or overlays have changed, see where. */
12513 if (XFASTINT (w->last_modified) < MODIFF
12514 || XFASTINT (w->last_overlay_modified) < OVERLAY_MODIFF)
12516 /* Gap in the line? */
12517 if (GPT < start || Z - GPT < end)
12518 unchanged_p = 0;
12520 /* Changes start in front of the line, or end after it? */
12521 if (unchanged_p
12522 && (BEG_UNCHANGED < start - 1
12523 || END_UNCHANGED < end))
12524 unchanged_p = 0;
12526 /* If selective display, can't optimize if changes start at the
12527 beginning of the line. */
12528 if (unchanged_p
12529 && INTEGERP (BVAR (current_buffer, selective_display))
12530 && XINT (BVAR (current_buffer, selective_display)) > 0
12531 && (BEG_UNCHANGED < start || GPT <= start))
12532 unchanged_p = 0;
12534 /* If there are overlays at the start or end of the line, these
12535 may have overlay strings with newlines in them. A change at
12536 START, for instance, may actually concern the display of such
12537 overlay strings as well, and they are displayed on different
12538 lines. So, quickly rule out this case. (For the future, it
12539 might be desirable to implement something more telling than
12540 just BEG/END_UNCHANGED.) */
12541 if (unchanged_p)
12543 if (BEG + BEG_UNCHANGED == start
12544 && overlay_touches_p (start))
12545 unchanged_p = 0;
12546 if (END_UNCHANGED == end
12547 && overlay_touches_p (Z - end))
12548 unchanged_p = 0;
12551 /* Under bidi reordering, adding or deleting a character in the
12552 beginning of a paragraph, before the first strong directional
12553 character, can change the base direction of the paragraph (unless
12554 the buffer specifies a fixed paragraph direction), which will
12555 require to redisplay the whole paragraph. It might be worthwhile
12556 to find the paragraph limits and widen the range of redisplayed
12557 lines to that, but for now just give up this optimization. */
12558 if (!NILP (BVAR (XBUFFER (w->buffer), bidi_display_reordering))
12559 && NILP (BVAR (XBUFFER (w->buffer), bidi_paragraph_direction)))
12560 unchanged_p = 0;
12563 return unchanged_p;
12567 /* Do a frame update, taking possible shortcuts into account. This is
12568 the main external entry point for redisplay.
12570 If the last redisplay displayed an echo area message and that message
12571 is no longer requested, we clear the echo area or bring back the
12572 mini-buffer if that is in use. */
12574 void
12575 redisplay (void)
12577 redisplay_internal ();
12581 static Lisp_Object
12582 overlay_arrow_string_or_property (Lisp_Object var)
12584 Lisp_Object val;
12586 if (val = Fget (var, Qoverlay_arrow_string), STRINGP (val))
12587 return val;
12589 return Voverlay_arrow_string;
12592 /* Return 1 if there are any overlay-arrows in current_buffer. */
12593 static int
12594 overlay_arrow_in_current_buffer_p (void)
12596 Lisp_Object vlist;
12598 for (vlist = Voverlay_arrow_variable_list;
12599 CONSP (vlist);
12600 vlist = XCDR (vlist))
12602 Lisp_Object var = XCAR (vlist);
12603 Lisp_Object val;
12605 if (!SYMBOLP (var))
12606 continue;
12607 val = find_symbol_value (var);
12608 if (MARKERP (val)
12609 && current_buffer == XMARKER (val)->buffer)
12610 return 1;
12612 return 0;
12616 /* Return 1 if any overlay_arrows have moved or overlay-arrow-string
12617 has changed. */
12619 static int
12620 overlay_arrows_changed_p (void)
12622 Lisp_Object vlist;
12624 for (vlist = Voverlay_arrow_variable_list;
12625 CONSP (vlist);
12626 vlist = XCDR (vlist))
12628 Lisp_Object var = XCAR (vlist);
12629 Lisp_Object val, pstr;
12631 if (!SYMBOLP (var))
12632 continue;
12633 val = find_symbol_value (var);
12634 if (!MARKERP (val))
12635 continue;
12636 if (! EQ (COERCE_MARKER (val),
12637 Fget (var, Qlast_arrow_position))
12638 || ! (pstr = overlay_arrow_string_or_property (var),
12639 EQ (pstr, Fget (var, Qlast_arrow_string))))
12640 return 1;
12642 return 0;
12645 /* Mark overlay arrows to be updated on next redisplay. */
12647 static void
12648 update_overlay_arrows (int up_to_date)
12650 Lisp_Object vlist;
12652 for (vlist = Voverlay_arrow_variable_list;
12653 CONSP (vlist);
12654 vlist = XCDR (vlist))
12656 Lisp_Object var = XCAR (vlist);
12658 if (!SYMBOLP (var))
12659 continue;
12661 if (up_to_date > 0)
12663 Lisp_Object val = find_symbol_value (var);
12664 Fput (var, Qlast_arrow_position,
12665 COERCE_MARKER (val));
12666 Fput (var, Qlast_arrow_string,
12667 overlay_arrow_string_or_property (var));
12669 else if (up_to_date < 0
12670 || !NILP (Fget (var, Qlast_arrow_position)))
12672 Fput (var, Qlast_arrow_position, Qt);
12673 Fput (var, Qlast_arrow_string, Qt);
12679 /* Return overlay arrow string to display at row.
12680 Return integer (bitmap number) for arrow bitmap in left fringe.
12681 Return nil if no overlay arrow. */
12683 static Lisp_Object
12684 overlay_arrow_at_row (struct it *it, struct glyph_row *row)
12686 Lisp_Object vlist;
12688 for (vlist = Voverlay_arrow_variable_list;
12689 CONSP (vlist);
12690 vlist = XCDR (vlist))
12692 Lisp_Object var = XCAR (vlist);
12693 Lisp_Object val;
12695 if (!SYMBOLP (var))
12696 continue;
12698 val = find_symbol_value (var);
12700 if (MARKERP (val)
12701 && current_buffer == XMARKER (val)->buffer
12702 && (MATRIX_ROW_START_CHARPOS (row) == marker_position (val)))
12704 if (FRAME_WINDOW_P (it->f)
12705 /* FIXME: if ROW->reversed_p is set, this should test
12706 the right fringe, not the left one. */
12707 && WINDOW_LEFT_FRINGE_WIDTH (it->w) > 0)
12709 #ifdef HAVE_WINDOW_SYSTEM
12710 if (val = Fget (var, Qoverlay_arrow_bitmap), SYMBOLP (val))
12712 int fringe_bitmap;
12713 if ((fringe_bitmap = lookup_fringe_bitmap (val)) != 0)
12714 return make_number (fringe_bitmap);
12716 #endif
12717 return make_number (-1); /* Use default arrow bitmap */
12719 return overlay_arrow_string_or_property (var);
12723 return Qnil;
12726 /* Return 1 if point moved out of or into a composition. Otherwise
12727 return 0. PREV_BUF and PREV_PT are the last point buffer and
12728 position. BUF and PT are the current point buffer and position. */
12730 static int
12731 check_point_in_composition (struct buffer *prev_buf, ptrdiff_t prev_pt,
12732 struct buffer *buf, ptrdiff_t pt)
12734 ptrdiff_t start, end;
12735 Lisp_Object prop;
12736 Lisp_Object buffer;
12738 XSETBUFFER (buffer, buf);
12739 /* Check a composition at the last point if point moved within the
12740 same buffer. */
12741 if (prev_buf == buf)
12743 if (prev_pt == pt)
12744 /* Point didn't move. */
12745 return 0;
12747 if (prev_pt > BUF_BEGV (buf) && prev_pt < BUF_ZV (buf)
12748 && find_composition (prev_pt, -1, &start, &end, &prop, buffer)
12749 && COMPOSITION_VALID_P (start, end, prop)
12750 && start < prev_pt && end > prev_pt)
12751 /* The last point was within the composition. Return 1 iff
12752 point moved out of the composition. */
12753 return (pt <= start || pt >= end);
12756 /* Check a composition at the current point. */
12757 return (pt > BUF_BEGV (buf) && pt < BUF_ZV (buf)
12758 && find_composition (pt, -1, &start, &end, &prop, buffer)
12759 && COMPOSITION_VALID_P (start, end, prop)
12760 && start < pt && end > pt);
12764 /* Reconsider the setting of B->clip_changed which is displayed
12765 in window W. */
12767 static inline void
12768 reconsider_clip_changes (struct window *w, struct buffer *b)
12770 if (b->clip_changed
12771 && !NILP (w->window_end_valid)
12772 && w->current_matrix->buffer == b
12773 && w->current_matrix->zv == BUF_ZV (b)
12774 && w->current_matrix->begv == BUF_BEGV (b))
12775 b->clip_changed = 0;
12777 /* If display wasn't paused, and W is not a tool bar window, see if
12778 point has been moved into or out of a composition. In that case,
12779 we set b->clip_changed to 1 to force updating the screen. If
12780 b->clip_changed has already been set to 1, we can skip this
12781 check. */
12782 if (!b->clip_changed
12783 && BUFFERP (w->buffer) && !NILP (w->window_end_valid))
12785 ptrdiff_t pt;
12787 if (w == XWINDOW (selected_window))
12788 pt = PT;
12789 else
12790 pt = marker_position (w->pointm);
12792 if ((w->current_matrix->buffer != XBUFFER (w->buffer)
12793 || pt != XINT (w->last_point))
12794 && check_point_in_composition (w->current_matrix->buffer,
12795 XINT (w->last_point),
12796 XBUFFER (w->buffer), pt))
12797 b->clip_changed = 1;
12802 /* Select FRAME to forward the values of frame-local variables into C
12803 variables so that the redisplay routines can access those values
12804 directly. */
12806 static void
12807 select_frame_for_redisplay (Lisp_Object frame)
12809 Lisp_Object tail, tem;
12810 Lisp_Object old = selected_frame;
12811 struct Lisp_Symbol *sym;
12813 xassert (FRAMEP (frame) && FRAME_LIVE_P (XFRAME (frame)));
12815 selected_frame = frame;
12817 do {
12818 for (tail = XFRAME (frame)->param_alist; CONSP (tail); tail = XCDR (tail))
12819 if (CONSP (XCAR (tail))
12820 && (tem = XCAR (XCAR (tail)),
12821 SYMBOLP (tem))
12822 && (sym = indirect_variable (XSYMBOL (tem)),
12823 sym->redirect == SYMBOL_LOCALIZED)
12824 && sym->val.blv->frame_local)
12825 /* Use find_symbol_value rather than Fsymbol_value
12826 to avoid an error if it is void. */
12827 find_symbol_value (tem);
12828 } while (!EQ (frame, old) && (frame = old, 1));
12832 #define STOP_POLLING \
12833 do { if (! polling_stopped_here) stop_polling (); \
12834 polling_stopped_here = 1; } while (0)
12836 #define RESUME_POLLING \
12837 do { if (polling_stopped_here) start_polling (); \
12838 polling_stopped_here = 0; } while (0)
12841 /* Perhaps in the future avoid recentering windows if it
12842 is not necessary; currently that causes some problems. */
12844 static void
12845 redisplay_internal (void)
12847 struct window *w = XWINDOW (selected_window);
12848 struct window *sw;
12849 struct frame *fr;
12850 int pending;
12851 int must_finish = 0;
12852 struct text_pos tlbufpos, tlendpos;
12853 int number_of_visible_frames;
12854 ptrdiff_t count, count1;
12855 struct frame *sf;
12856 int polling_stopped_here = 0;
12857 Lisp_Object old_frame = selected_frame;
12859 /* Non-zero means redisplay has to consider all windows on all
12860 frames. Zero means, only selected_window is considered. */
12861 int consider_all_windows_p;
12863 /* Non-zero means redisplay has to redisplay the miniwindow */
12864 int update_miniwindow_p = 0;
12866 TRACE ((stderr, "redisplay_internal %d\n", redisplaying_p));
12868 /* No redisplay if running in batch mode or frame is not yet fully
12869 initialized, or redisplay is explicitly turned off by setting
12870 Vinhibit_redisplay. */
12871 if (FRAME_INITIAL_P (SELECTED_FRAME ())
12872 || !NILP (Vinhibit_redisplay))
12873 return;
12875 /* Don't examine these until after testing Vinhibit_redisplay.
12876 When Emacs is shutting down, perhaps because its connection to
12877 X has dropped, we should not look at them at all. */
12878 fr = XFRAME (w->frame);
12879 sf = SELECTED_FRAME ();
12881 if (!fr->glyphs_initialized_p)
12882 return;
12884 #if defined (USE_X_TOOLKIT) || defined (USE_GTK) || defined (HAVE_NS)
12885 if (popup_activated ())
12886 return;
12887 #endif
12889 /* I don't think this happens but let's be paranoid. */
12890 if (redisplaying_p)
12891 return;
12893 /* Record a function that resets redisplaying_p to its old value
12894 when we leave this function. */
12895 count = SPECPDL_INDEX ();
12896 record_unwind_protect (unwind_redisplay,
12897 Fcons (make_number (redisplaying_p), selected_frame));
12898 ++redisplaying_p;
12899 specbind (Qinhibit_free_realized_faces, Qnil);
12902 Lisp_Object tail, frame;
12904 FOR_EACH_FRAME (tail, frame)
12906 struct frame *f = XFRAME (frame);
12907 f->already_hscrolled_p = 0;
12911 retry:
12912 /* Remember the currently selected window. */
12913 sw = w;
12915 if (!EQ (old_frame, selected_frame)
12916 && FRAME_LIVE_P (XFRAME (old_frame)))
12917 /* When running redisplay, we play a bit fast-and-loose and allow e.g.
12918 selected_frame and selected_window to be temporarily out-of-sync so
12919 when we come back here via `goto retry', we need to resync because we
12920 may need to run Elisp code (via prepare_menu_bars). */
12921 select_frame_for_redisplay (old_frame);
12923 pending = 0;
12924 reconsider_clip_changes (w, current_buffer);
12925 last_escape_glyph_frame = NULL;
12926 last_escape_glyph_face_id = (1 << FACE_ID_BITS);
12927 last_glyphless_glyph_frame = NULL;
12928 last_glyphless_glyph_face_id = (1 << FACE_ID_BITS);
12930 /* If new fonts have been loaded that make a glyph matrix adjustment
12931 necessary, do it. */
12932 if (fonts_changed_p)
12934 adjust_glyphs (NULL);
12935 ++windows_or_buffers_changed;
12936 fonts_changed_p = 0;
12939 /* If face_change_count is non-zero, init_iterator will free all
12940 realized faces, which includes the faces referenced from current
12941 matrices. So, we can't reuse current matrices in this case. */
12942 if (face_change_count)
12943 ++windows_or_buffers_changed;
12945 if ((FRAME_TERMCAP_P (sf) || FRAME_MSDOS_P (sf))
12946 && FRAME_TTY (sf)->previous_frame != sf)
12948 /* Since frames on a single ASCII terminal share the same
12949 display area, displaying a different frame means redisplay
12950 the whole thing. */
12951 windows_or_buffers_changed++;
12952 SET_FRAME_GARBAGED (sf);
12953 #ifndef DOS_NT
12954 set_tty_color_mode (FRAME_TTY (sf), sf);
12955 #endif
12956 FRAME_TTY (sf)->previous_frame = sf;
12959 /* Set the visible flags for all frames. Do this before checking
12960 for resized or garbaged frames; they want to know if their frames
12961 are visible. See the comment in frame.h for
12962 FRAME_SAMPLE_VISIBILITY. */
12964 Lisp_Object tail, frame;
12966 number_of_visible_frames = 0;
12968 FOR_EACH_FRAME (tail, frame)
12970 struct frame *f = XFRAME (frame);
12972 FRAME_SAMPLE_VISIBILITY (f);
12973 if (FRAME_VISIBLE_P (f))
12974 ++number_of_visible_frames;
12975 clear_desired_matrices (f);
12979 /* Notice any pending interrupt request to change frame size. */
12980 do_pending_window_change (1);
12982 /* do_pending_window_change could change the selected_window due to
12983 frame resizing which makes the selected window too small. */
12984 if (WINDOWP (selected_window) && (w = XWINDOW (selected_window)) != sw)
12986 sw = w;
12987 reconsider_clip_changes (w, current_buffer);
12990 /* Clear frames marked as garbaged. */
12991 if (frame_garbaged)
12992 clear_garbaged_frames ();
12994 /* Build menubar and tool-bar items. */
12995 if (NILP (Vmemory_full))
12996 prepare_menu_bars ();
12998 if (windows_or_buffers_changed)
12999 update_mode_lines++;
13001 /* Detect case that we need to write or remove a star in the mode line. */
13002 if ((SAVE_MODIFF < MODIFF) != w->last_had_star)
13004 w->update_mode_line = 1;
13005 if (buffer_shared > 1)
13006 update_mode_lines++;
13009 /* Avoid invocation of point motion hooks by `current_column' below. */
13010 count1 = SPECPDL_INDEX ();
13011 specbind (Qinhibit_point_motion_hooks, Qt);
13013 /* If %c is in the mode line, update it if needed. */
13014 if (!NILP (w->column_number_displayed)
13015 /* This alternative quickly identifies a common case
13016 where no change is needed. */
13017 && !(PT == XFASTINT (w->last_point)
13018 && XFASTINT (w->last_modified) >= MODIFF
13019 && XFASTINT (w->last_overlay_modified) >= OVERLAY_MODIFF)
13020 && (XFASTINT (w->column_number_displayed) != current_column ()))
13021 w->update_mode_line = 1;
13023 unbind_to (count1, Qnil);
13025 FRAME_SCROLL_BOTTOM_VPOS (XFRAME (w->frame)) = -1;
13027 /* The variable buffer_shared is set in redisplay_window and
13028 indicates that we redisplay a buffer in different windows. See
13029 there. */
13030 consider_all_windows_p = (update_mode_lines || buffer_shared > 1
13031 || cursor_type_changed);
13033 /* If specs for an arrow have changed, do thorough redisplay
13034 to ensure we remove any arrow that should no longer exist. */
13035 if (overlay_arrows_changed_p ())
13036 consider_all_windows_p = windows_or_buffers_changed = 1;
13038 /* Normally the message* functions will have already displayed and
13039 updated the echo area, but the frame may have been trashed, or
13040 the update may have been preempted, so display the echo area
13041 again here. Checking message_cleared_p captures the case that
13042 the echo area should be cleared. */
13043 if ((!NILP (echo_area_buffer[0]) && !display_last_displayed_message_p)
13044 || (!NILP (echo_area_buffer[1]) && display_last_displayed_message_p)
13045 || (message_cleared_p
13046 && minibuf_level == 0
13047 /* If the mini-window is currently selected, this means the
13048 echo-area doesn't show through. */
13049 && !MINI_WINDOW_P (XWINDOW (selected_window))))
13051 int window_height_changed_p = echo_area_display (0);
13053 if (message_cleared_p)
13054 update_miniwindow_p = 1;
13056 must_finish = 1;
13058 /* If we don't display the current message, don't clear the
13059 message_cleared_p flag, because, if we did, we wouldn't clear
13060 the echo area in the next redisplay which doesn't preserve
13061 the echo area. */
13062 if (!display_last_displayed_message_p)
13063 message_cleared_p = 0;
13065 if (fonts_changed_p)
13066 goto retry;
13067 else if (window_height_changed_p)
13069 consider_all_windows_p = 1;
13070 ++update_mode_lines;
13071 ++windows_or_buffers_changed;
13073 /* If window configuration was changed, frames may have been
13074 marked garbaged. Clear them or we will experience
13075 surprises wrt scrolling. */
13076 if (frame_garbaged)
13077 clear_garbaged_frames ();
13080 else if (EQ (selected_window, minibuf_window)
13081 && (current_buffer->clip_changed
13082 || XFASTINT (w->last_modified) < MODIFF
13083 || XFASTINT (w->last_overlay_modified) < OVERLAY_MODIFF)
13084 && resize_mini_window (w, 0))
13086 /* Resized active mini-window to fit the size of what it is
13087 showing if its contents might have changed. */
13088 must_finish = 1;
13089 /* FIXME: this causes all frames to be updated, which seems unnecessary
13090 since only the current frame needs to be considered. This function needs
13091 to be rewritten with two variables, consider_all_windows and
13092 consider_all_frames. */
13093 consider_all_windows_p = 1;
13094 ++windows_or_buffers_changed;
13095 ++update_mode_lines;
13097 /* If window configuration was changed, frames may have been
13098 marked garbaged. Clear them or we will experience
13099 surprises wrt scrolling. */
13100 if (frame_garbaged)
13101 clear_garbaged_frames ();
13105 /* If showing the region, and mark has changed, we must redisplay
13106 the whole window. The assignment to this_line_start_pos prevents
13107 the optimization directly below this if-statement. */
13108 if (((!NILP (Vtransient_mark_mode)
13109 && !NILP (BVAR (XBUFFER (w->buffer), mark_active)))
13110 != !NILP (w->region_showing))
13111 || (!NILP (w->region_showing)
13112 && !EQ (w->region_showing,
13113 Fmarker_position (BVAR (XBUFFER (w->buffer), mark)))))
13114 CHARPOS (this_line_start_pos) = 0;
13116 /* Optimize the case that only the line containing the cursor in the
13117 selected window has changed. Variables starting with this_ are
13118 set in display_line and record information about the line
13119 containing the cursor. */
13120 tlbufpos = this_line_start_pos;
13121 tlendpos = this_line_end_pos;
13122 if (!consider_all_windows_p
13123 && CHARPOS (tlbufpos) > 0
13124 && !w->update_mode_line
13125 && !current_buffer->clip_changed
13126 && !current_buffer->prevent_redisplay_optimizations_p
13127 && FRAME_VISIBLE_P (XFRAME (w->frame))
13128 && !FRAME_OBSCURED_P (XFRAME (w->frame))
13129 /* Make sure recorded data applies to current buffer, etc. */
13130 && this_line_buffer == current_buffer
13131 && current_buffer == XBUFFER (w->buffer)
13132 && !w->force_start
13133 && !w->optional_new_start
13134 /* Point must be on the line that we have info recorded about. */
13135 && PT >= CHARPOS (tlbufpos)
13136 && PT <= Z - CHARPOS (tlendpos)
13137 /* All text outside that line, including its final newline,
13138 must be unchanged. */
13139 && text_outside_line_unchanged_p (w, CHARPOS (tlbufpos),
13140 CHARPOS (tlendpos)))
13142 if (CHARPOS (tlbufpos) > BEGV
13143 && FETCH_BYTE (BYTEPOS (tlbufpos) - 1) != '\n'
13144 && (CHARPOS (tlbufpos) == ZV
13145 || FETCH_BYTE (BYTEPOS (tlbufpos)) == '\n'))
13146 /* Former continuation line has disappeared by becoming empty. */
13147 goto cancel;
13148 else if (XFASTINT (w->last_modified) < MODIFF
13149 || XFASTINT (w->last_overlay_modified) < OVERLAY_MODIFF
13150 || MINI_WINDOW_P (w))
13152 /* We have to handle the case of continuation around a
13153 wide-column character (see the comment in indent.c around
13154 line 1340).
13156 For instance, in the following case:
13158 -------- Insert --------
13159 K_A_N_\\ `a' K_A_N_a\ `X_' are wide-column chars.
13160 J_I_ ==> J_I_ `^^' are cursors.
13161 ^^ ^^
13162 -------- --------
13164 As we have to redraw the line above, we cannot use this
13165 optimization. */
13167 struct it it;
13168 int line_height_before = this_line_pixel_height;
13170 /* Note that start_display will handle the case that the
13171 line starting at tlbufpos is a continuation line. */
13172 start_display (&it, w, tlbufpos);
13174 /* Implementation note: It this still necessary? */
13175 if (it.current_x != this_line_start_x)
13176 goto cancel;
13178 TRACE ((stderr, "trying display optimization 1\n"));
13179 w->cursor.vpos = -1;
13180 overlay_arrow_seen = 0;
13181 it.vpos = this_line_vpos;
13182 it.current_y = this_line_y;
13183 it.glyph_row = MATRIX_ROW (w->desired_matrix, this_line_vpos);
13184 display_line (&it);
13186 /* If line contains point, is not continued,
13187 and ends at same distance from eob as before, we win. */
13188 if (w->cursor.vpos >= 0
13189 /* Line is not continued, otherwise this_line_start_pos
13190 would have been set to 0 in display_line. */
13191 && CHARPOS (this_line_start_pos)
13192 /* Line ends as before. */
13193 && CHARPOS (this_line_end_pos) == CHARPOS (tlendpos)
13194 /* Line has same height as before. Otherwise other lines
13195 would have to be shifted up or down. */
13196 && this_line_pixel_height == line_height_before)
13198 /* If this is not the window's last line, we must adjust
13199 the charstarts of the lines below. */
13200 if (it.current_y < it.last_visible_y)
13202 struct glyph_row *row
13203 = MATRIX_ROW (w->current_matrix, this_line_vpos + 1);
13204 ptrdiff_t delta, delta_bytes;
13206 /* We used to distinguish between two cases here,
13207 conditioned by Z - CHARPOS (tlendpos) == ZV, for
13208 when the line ends in a newline or the end of the
13209 buffer's accessible portion. But both cases did
13210 the same, so they were collapsed. */
13211 delta = (Z
13212 - CHARPOS (tlendpos)
13213 - MATRIX_ROW_START_CHARPOS (row));
13214 delta_bytes = (Z_BYTE
13215 - BYTEPOS (tlendpos)
13216 - MATRIX_ROW_START_BYTEPOS (row));
13218 increment_matrix_positions (w->current_matrix,
13219 this_line_vpos + 1,
13220 w->current_matrix->nrows,
13221 delta, delta_bytes);
13224 /* If this row displays text now but previously didn't,
13225 or vice versa, w->window_end_vpos may have to be
13226 adjusted. */
13227 if ((it.glyph_row - 1)->displays_text_p)
13229 if (XFASTINT (w->window_end_vpos) < this_line_vpos)
13230 XSETINT (w->window_end_vpos, this_line_vpos);
13232 else if (XFASTINT (w->window_end_vpos) == this_line_vpos
13233 && this_line_vpos > 0)
13234 XSETINT (w->window_end_vpos, this_line_vpos - 1);
13235 w->window_end_valid = Qnil;
13237 /* Update hint: No need to try to scroll in update_window. */
13238 w->desired_matrix->no_scrolling_p = 1;
13240 #if GLYPH_DEBUG
13241 *w->desired_matrix->method = 0;
13242 debug_method_add (w, "optimization 1");
13243 #endif
13244 #ifdef HAVE_WINDOW_SYSTEM
13245 update_window_fringes (w, 0);
13246 #endif
13247 goto update;
13249 else
13250 goto cancel;
13252 else if (/* Cursor position hasn't changed. */
13253 PT == XFASTINT (w->last_point)
13254 /* Make sure the cursor was last displayed
13255 in this window. Otherwise we have to reposition it. */
13256 && 0 <= w->cursor.vpos
13257 && WINDOW_TOTAL_LINES (w) > w->cursor.vpos)
13259 if (!must_finish)
13261 do_pending_window_change (1);
13262 /* If selected_window changed, redisplay again. */
13263 if (WINDOWP (selected_window)
13264 && (w = XWINDOW (selected_window)) != sw)
13265 goto retry;
13267 /* We used to always goto end_of_redisplay here, but this
13268 isn't enough if we have a blinking cursor. */
13269 if (w->cursor_off_p == w->last_cursor_off_p)
13270 goto end_of_redisplay;
13272 goto update;
13274 /* If highlighting the region, or if the cursor is in the echo area,
13275 then we can't just move the cursor. */
13276 else if (! (!NILP (Vtransient_mark_mode)
13277 && !NILP (BVAR (current_buffer, mark_active)))
13278 && (EQ (selected_window,
13279 BVAR (current_buffer, last_selected_window))
13280 || highlight_nonselected_windows)
13281 && NILP (w->region_showing)
13282 && NILP (Vshow_trailing_whitespace)
13283 && !cursor_in_echo_area)
13285 struct it it;
13286 struct glyph_row *row;
13288 /* Skip from tlbufpos to PT and see where it is. Note that
13289 PT may be in invisible text. If so, we will end at the
13290 next visible position. */
13291 init_iterator (&it, w, CHARPOS (tlbufpos), BYTEPOS (tlbufpos),
13292 NULL, DEFAULT_FACE_ID);
13293 it.current_x = this_line_start_x;
13294 it.current_y = this_line_y;
13295 it.vpos = this_line_vpos;
13297 /* The call to move_it_to stops in front of PT, but
13298 moves over before-strings. */
13299 move_it_to (&it, PT, -1, -1, -1, MOVE_TO_POS);
13301 if (it.vpos == this_line_vpos
13302 && (row = MATRIX_ROW (w->current_matrix, this_line_vpos),
13303 row->enabled_p))
13305 xassert (this_line_vpos == it.vpos);
13306 xassert (this_line_y == it.current_y);
13307 set_cursor_from_row (w, row, w->current_matrix, 0, 0, 0, 0);
13308 #if GLYPH_DEBUG
13309 *w->desired_matrix->method = 0;
13310 debug_method_add (w, "optimization 3");
13311 #endif
13312 goto update;
13314 else
13315 goto cancel;
13318 cancel:
13319 /* Text changed drastically or point moved off of line. */
13320 SET_MATRIX_ROW_ENABLED_P (w->desired_matrix, this_line_vpos, 0);
13323 CHARPOS (this_line_start_pos) = 0;
13324 consider_all_windows_p |= buffer_shared > 1;
13325 ++clear_face_cache_count;
13326 #ifdef HAVE_WINDOW_SYSTEM
13327 ++clear_image_cache_count;
13328 #endif
13330 /* Build desired matrices, and update the display. If
13331 consider_all_windows_p is non-zero, do it for all windows on all
13332 frames. Otherwise do it for selected_window, only. */
13334 if (consider_all_windows_p)
13336 Lisp_Object tail, frame;
13338 FOR_EACH_FRAME (tail, frame)
13339 XFRAME (frame)->updated_p = 0;
13341 /* Recompute # windows showing selected buffer. This will be
13342 incremented each time such a window is displayed. */
13343 buffer_shared = 0;
13345 FOR_EACH_FRAME (tail, frame)
13347 struct frame *f = XFRAME (frame);
13349 /* We don't have to do anything for unselected terminal
13350 frames. */
13351 if ((FRAME_TERMCAP_P (f) || FRAME_MSDOS_P (f))
13352 && !EQ (FRAME_TTY (f)->top_frame, frame))
13353 continue;
13355 if (FRAME_WINDOW_P (f) || FRAME_TERMCAP_P (f) || f == sf)
13357 if (! EQ (frame, selected_frame))
13358 /* Select the frame, for the sake of frame-local
13359 variables. */
13360 select_frame_for_redisplay (frame);
13362 /* Mark all the scroll bars to be removed; we'll redeem
13363 the ones we want when we redisplay their windows. */
13364 if (FRAME_TERMINAL (f)->condemn_scroll_bars_hook)
13365 FRAME_TERMINAL (f)->condemn_scroll_bars_hook (f);
13367 if (FRAME_VISIBLE_P (f) && !FRAME_OBSCURED_P (f))
13368 redisplay_windows (FRAME_ROOT_WINDOW (f));
13370 /* The X error handler may have deleted that frame. */
13371 if (!FRAME_LIVE_P (f))
13372 continue;
13374 /* Any scroll bars which redisplay_windows should have
13375 nuked should now go away. */
13376 if (FRAME_TERMINAL (f)->judge_scroll_bars_hook)
13377 FRAME_TERMINAL (f)->judge_scroll_bars_hook (f);
13379 /* If fonts changed, display again. */
13380 /* ??? rms: I suspect it is a mistake to jump all the way
13381 back to retry here. It should just retry this frame. */
13382 if (fonts_changed_p)
13383 goto retry;
13385 if (FRAME_VISIBLE_P (f) && !FRAME_OBSCURED_P (f))
13387 /* See if we have to hscroll. */
13388 if (!f->already_hscrolled_p)
13390 f->already_hscrolled_p = 1;
13391 if (hscroll_windows (f->root_window))
13392 goto retry;
13395 /* Prevent various kinds of signals during display
13396 update. stdio is not robust about handling
13397 signals, which can cause an apparent I/O
13398 error. */
13399 if (interrupt_input)
13400 unrequest_sigio ();
13401 STOP_POLLING;
13403 /* Update the display. */
13404 set_window_update_flags (XWINDOW (f->root_window), 1);
13405 pending |= update_frame (f, 0, 0);
13406 f->updated_p = 1;
13411 if (!EQ (old_frame, selected_frame)
13412 && FRAME_LIVE_P (XFRAME (old_frame)))
13413 /* We played a bit fast-and-loose above and allowed selected_frame
13414 and selected_window to be temporarily out-of-sync but let's make
13415 sure this stays contained. */
13416 select_frame_for_redisplay (old_frame);
13417 eassert (EQ (XFRAME (selected_frame)->selected_window, selected_window));
13419 if (!pending)
13421 /* Do the mark_window_display_accurate after all windows have
13422 been redisplayed because this call resets flags in buffers
13423 which are needed for proper redisplay. */
13424 FOR_EACH_FRAME (tail, frame)
13426 struct frame *f = XFRAME (frame);
13427 if (f->updated_p)
13429 mark_window_display_accurate (f->root_window, 1);
13430 if (FRAME_TERMINAL (f)->frame_up_to_date_hook)
13431 FRAME_TERMINAL (f)->frame_up_to_date_hook (f);
13436 else if (FRAME_VISIBLE_P (sf) && !FRAME_OBSCURED_P (sf))
13438 Lisp_Object mini_window = FRAME_MINIBUF_WINDOW (sf);
13439 struct frame *mini_frame;
13441 displayed_buffer = XBUFFER (XWINDOW (selected_window)->buffer);
13442 /* Use list_of_error, not Qerror, so that
13443 we catch only errors and don't run the debugger. */
13444 internal_condition_case_1 (redisplay_window_1, selected_window,
13445 list_of_error,
13446 redisplay_window_error);
13447 if (update_miniwindow_p)
13448 internal_condition_case_1 (redisplay_window_1, mini_window,
13449 list_of_error,
13450 redisplay_window_error);
13452 /* Compare desired and current matrices, perform output. */
13454 update:
13455 /* If fonts changed, display again. */
13456 if (fonts_changed_p)
13457 goto retry;
13459 /* Prevent various kinds of signals during display update.
13460 stdio is not robust about handling signals,
13461 which can cause an apparent I/O error. */
13462 if (interrupt_input)
13463 unrequest_sigio ();
13464 STOP_POLLING;
13466 if (FRAME_VISIBLE_P (sf) && !FRAME_OBSCURED_P (sf))
13468 if (hscroll_windows (selected_window))
13469 goto retry;
13471 XWINDOW (selected_window)->must_be_updated_p = 1;
13472 pending = update_frame (sf, 0, 0);
13475 /* We may have called echo_area_display at the top of this
13476 function. If the echo area is on another frame, that may
13477 have put text on a frame other than the selected one, so the
13478 above call to update_frame would not have caught it. Catch
13479 it here. */
13480 mini_window = FRAME_MINIBUF_WINDOW (sf);
13481 mini_frame = XFRAME (WINDOW_FRAME (XWINDOW (mini_window)));
13483 if (mini_frame != sf && FRAME_WINDOW_P (mini_frame))
13485 XWINDOW (mini_window)->must_be_updated_p = 1;
13486 pending |= update_frame (mini_frame, 0, 0);
13487 if (!pending && hscroll_windows (mini_window))
13488 goto retry;
13492 /* If display was paused because of pending input, make sure we do a
13493 thorough update the next time. */
13494 if (pending)
13496 /* Prevent the optimization at the beginning of
13497 redisplay_internal that tries a single-line update of the
13498 line containing the cursor in the selected window. */
13499 CHARPOS (this_line_start_pos) = 0;
13501 /* Let the overlay arrow be updated the next time. */
13502 update_overlay_arrows (0);
13504 /* If we pause after scrolling, some rows in the current
13505 matrices of some windows are not valid. */
13506 if (!WINDOW_FULL_WIDTH_P (w)
13507 && !FRAME_WINDOW_P (XFRAME (w->frame)))
13508 update_mode_lines = 1;
13510 else
13512 if (!consider_all_windows_p)
13514 /* This has already been done above if
13515 consider_all_windows_p is set. */
13516 mark_window_display_accurate_1 (w, 1);
13518 /* Say overlay arrows are up to date. */
13519 update_overlay_arrows (1);
13521 if (FRAME_TERMINAL (sf)->frame_up_to_date_hook != 0)
13522 FRAME_TERMINAL (sf)->frame_up_to_date_hook (sf);
13525 update_mode_lines = 0;
13526 windows_or_buffers_changed = 0;
13527 cursor_type_changed = 0;
13530 /* Start SIGIO interrupts coming again. Having them off during the
13531 code above makes it less likely one will discard output, but not
13532 impossible, since there might be stuff in the system buffer here.
13533 But it is much hairier to try to do anything about that. */
13534 if (interrupt_input)
13535 request_sigio ();
13536 RESUME_POLLING;
13538 /* If a frame has become visible which was not before, redisplay
13539 again, so that we display it. Expose events for such a frame
13540 (which it gets when becoming visible) don't call the parts of
13541 redisplay constructing glyphs, so simply exposing a frame won't
13542 display anything in this case. So, we have to display these
13543 frames here explicitly. */
13544 if (!pending)
13546 Lisp_Object tail, frame;
13547 int new_count = 0;
13549 FOR_EACH_FRAME (tail, frame)
13551 int this_is_visible = 0;
13553 if (XFRAME (frame)->visible)
13554 this_is_visible = 1;
13555 FRAME_SAMPLE_VISIBILITY (XFRAME (frame));
13556 if (XFRAME (frame)->visible)
13557 this_is_visible = 1;
13559 if (this_is_visible)
13560 new_count++;
13563 if (new_count != number_of_visible_frames)
13564 windows_or_buffers_changed++;
13567 /* Change frame size now if a change is pending. */
13568 do_pending_window_change (1);
13570 /* If we just did a pending size change, or have additional
13571 visible frames, or selected_window changed, redisplay again. */
13572 if ((windows_or_buffers_changed && !pending)
13573 || (WINDOWP (selected_window) && (w = XWINDOW (selected_window)) != sw))
13574 goto retry;
13576 /* Clear the face and image caches.
13578 We used to do this only if consider_all_windows_p. But the cache
13579 needs to be cleared if a timer creates images in the current
13580 buffer (e.g. the test case in Bug#6230). */
13582 if (clear_face_cache_count > CLEAR_FACE_CACHE_COUNT)
13584 clear_face_cache (0);
13585 clear_face_cache_count = 0;
13588 #ifdef HAVE_WINDOW_SYSTEM
13589 if (clear_image_cache_count > CLEAR_IMAGE_CACHE_COUNT)
13591 clear_image_caches (Qnil);
13592 clear_image_cache_count = 0;
13594 #endif /* HAVE_WINDOW_SYSTEM */
13596 end_of_redisplay:
13597 unbind_to (count, Qnil);
13598 RESUME_POLLING;
13602 /* Redisplay, but leave alone any recent echo area message unless
13603 another message has been requested in its place.
13605 This is useful in situations where you need to redisplay but no
13606 user action has occurred, making it inappropriate for the message
13607 area to be cleared. See tracking_off and
13608 wait_reading_process_output for examples of these situations.
13610 FROM_WHERE is an integer saying from where this function was
13611 called. This is useful for debugging. */
13613 void
13614 redisplay_preserve_echo_area (int from_where)
13616 TRACE ((stderr, "redisplay_preserve_echo_area (%d)\n", from_where));
13618 if (!NILP (echo_area_buffer[1]))
13620 /* We have a previously displayed message, but no current
13621 message. Redisplay the previous message. */
13622 display_last_displayed_message_p = 1;
13623 redisplay_internal ();
13624 display_last_displayed_message_p = 0;
13626 else
13627 redisplay_internal ();
13629 if (FRAME_RIF (SELECTED_FRAME ()) != NULL
13630 && FRAME_RIF (SELECTED_FRAME ())->flush_display_optional)
13631 FRAME_RIF (SELECTED_FRAME ())->flush_display_optional (NULL);
13635 /* Function registered with record_unwind_protect in
13636 redisplay_internal. Reset redisplaying_p to the value it had
13637 before redisplay_internal was called, and clear
13638 prevent_freeing_realized_faces_p. It also selects the previously
13639 selected frame, unless it has been deleted (by an X connection
13640 failure during redisplay, for example). */
13642 static Lisp_Object
13643 unwind_redisplay (Lisp_Object val)
13645 Lisp_Object old_redisplaying_p, old_frame;
13647 old_redisplaying_p = XCAR (val);
13648 redisplaying_p = XFASTINT (old_redisplaying_p);
13649 old_frame = XCDR (val);
13650 if (! EQ (old_frame, selected_frame)
13651 && FRAME_LIVE_P (XFRAME (old_frame)))
13652 select_frame_for_redisplay (old_frame);
13653 return Qnil;
13657 /* Mark the display of window W as accurate or inaccurate. If
13658 ACCURATE_P is non-zero mark display of W as accurate. If
13659 ACCURATE_P is zero, arrange for W to be redisplayed the next time
13660 redisplay_internal is called. */
13662 static void
13663 mark_window_display_accurate_1 (struct window *w, int accurate_p)
13665 if (BUFFERP (w->buffer))
13667 struct buffer *b = XBUFFER (w->buffer);
13669 w->last_modified
13670 = make_number (accurate_p ? BUF_MODIFF (b) : 0);
13671 w->last_overlay_modified
13672 = make_number (accurate_p ? BUF_OVERLAY_MODIFF (b) : 0);
13673 w->last_had_star
13674 = BUF_MODIFF (b) > BUF_SAVE_MODIFF (b);
13676 if (accurate_p)
13678 b->clip_changed = 0;
13679 b->prevent_redisplay_optimizations_p = 0;
13681 BUF_UNCHANGED_MODIFIED (b) = BUF_MODIFF (b);
13682 BUF_OVERLAY_UNCHANGED_MODIFIED (b) = BUF_OVERLAY_MODIFF (b);
13683 BUF_BEG_UNCHANGED (b) = BUF_GPT (b) - BUF_BEG (b);
13684 BUF_END_UNCHANGED (b) = BUF_Z (b) - BUF_GPT (b);
13686 w->current_matrix->buffer = b;
13687 w->current_matrix->begv = BUF_BEGV (b);
13688 w->current_matrix->zv = BUF_ZV (b);
13690 w->last_cursor = w->cursor;
13691 w->last_cursor_off_p = w->cursor_off_p;
13693 if (w == XWINDOW (selected_window))
13694 w->last_point = make_number (BUF_PT (b));
13695 else
13696 w->last_point = make_number (XMARKER (w->pointm)->charpos);
13700 if (accurate_p)
13702 w->window_end_valid = w->buffer;
13703 w->update_mode_line = 0;
13708 /* Mark the display of windows in the window tree rooted at WINDOW as
13709 accurate or inaccurate. If ACCURATE_P is non-zero mark display of
13710 windows as accurate. If ACCURATE_P is zero, arrange for windows to
13711 be redisplayed the next time redisplay_internal is called. */
13713 void
13714 mark_window_display_accurate (Lisp_Object window, int accurate_p)
13716 struct window *w;
13718 for (; !NILP (window); window = w->next)
13720 w = XWINDOW (window);
13721 mark_window_display_accurate_1 (w, accurate_p);
13723 if (!NILP (w->vchild))
13724 mark_window_display_accurate (w->vchild, accurate_p);
13725 if (!NILP (w->hchild))
13726 mark_window_display_accurate (w->hchild, accurate_p);
13729 if (accurate_p)
13731 update_overlay_arrows (1);
13733 else
13735 /* Force a thorough redisplay the next time by setting
13736 last_arrow_position and last_arrow_string to t, which is
13737 unequal to any useful value of Voverlay_arrow_... */
13738 update_overlay_arrows (-1);
13743 /* Return value in display table DP (Lisp_Char_Table *) for character
13744 C. Since a display table doesn't have any parent, we don't have to
13745 follow parent. Do not call this function directly but use the
13746 macro DISP_CHAR_VECTOR. */
13748 Lisp_Object
13749 disp_char_vector (struct Lisp_Char_Table *dp, int c)
13751 Lisp_Object val;
13753 if (ASCII_CHAR_P (c))
13755 val = dp->ascii;
13756 if (SUB_CHAR_TABLE_P (val))
13757 val = XSUB_CHAR_TABLE (val)->contents[c];
13759 else
13761 Lisp_Object table;
13763 XSETCHAR_TABLE (table, dp);
13764 val = char_table_ref (table, c);
13766 if (NILP (val))
13767 val = dp->defalt;
13768 return val;
13773 /***********************************************************************
13774 Window Redisplay
13775 ***********************************************************************/
13777 /* Redisplay all leaf windows in the window tree rooted at WINDOW. */
13779 static void
13780 redisplay_windows (Lisp_Object window)
13782 while (!NILP (window))
13784 struct window *w = XWINDOW (window);
13786 if (!NILP (w->hchild))
13787 redisplay_windows (w->hchild);
13788 else if (!NILP (w->vchild))
13789 redisplay_windows (w->vchild);
13790 else if (!NILP (w->buffer))
13792 displayed_buffer = XBUFFER (w->buffer);
13793 /* Use list_of_error, not Qerror, so that
13794 we catch only errors and don't run the debugger. */
13795 internal_condition_case_1 (redisplay_window_0, window,
13796 list_of_error,
13797 redisplay_window_error);
13800 window = w->next;
13804 static Lisp_Object
13805 redisplay_window_error (Lisp_Object ignore)
13807 displayed_buffer->display_error_modiff = BUF_MODIFF (displayed_buffer);
13808 return Qnil;
13811 static Lisp_Object
13812 redisplay_window_0 (Lisp_Object window)
13814 if (displayed_buffer->display_error_modiff < BUF_MODIFF (displayed_buffer))
13815 redisplay_window (window, 0);
13816 return Qnil;
13819 static Lisp_Object
13820 redisplay_window_1 (Lisp_Object window)
13822 if (displayed_buffer->display_error_modiff < BUF_MODIFF (displayed_buffer))
13823 redisplay_window (window, 1);
13824 return Qnil;
13828 /* Set cursor position of W. PT is assumed to be displayed in ROW.
13829 DELTA and DELTA_BYTES are the numbers of characters and bytes by
13830 which positions recorded in ROW differ from current buffer
13831 positions.
13833 Return 0 if cursor is not on this row, 1 otherwise. */
13835 static int
13836 set_cursor_from_row (struct window *w, struct glyph_row *row,
13837 struct glyph_matrix *matrix,
13838 ptrdiff_t delta, ptrdiff_t delta_bytes,
13839 int dy, int dvpos)
13841 struct glyph *glyph = row->glyphs[TEXT_AREA];
13842 struct glyph *end = glyph + row->used[TEXT_AREA];
13843 struct glyph *cursor = NULL;
13844 /* The last known character position in row. */
13845 ptrdiff_t last_pos = MATRIX_ROW_START_CHARPOS (row) + delta;
13846 int x = row->x;
13847 ptrdiff_t pt_old = PT - delta;
13848 ptrdiff_t pos_before = MATRIX_ROW_START_CHARPOS (row) + delta;
13849 ptrdiff_t pos_after = MATRIX_ROW_END_CHARPOS (row) + delta;
13850 struct glyph *glyph_before = glyph - 1, *glyph_after = end;
13851 /* A glyph beyond the edge of TEXT_AREA which we should never
13852 touch. */
13853 struct glyph *glyphs_end = end;
13854 /* Non-zero means we've found a match for cursor position, but that
13855 glyph has the avoid_cursor_p flag set. */
13856 int match_with_avoid_cursor = 0;
13857 /* Non-zero means we've seen at least one glyph that came from a
13858 display string. */
13859 int string_seen = 0;
13860 /* Largest and smallest buffer positions seen so far during scan of
13861 glyph row. */
13862 ptrdiff_t bpos_max = pos_before;
13863 ptrdiff_t bpos_min = pos_after;
13864 /* Last buffer position covered by an overlay string with an integer
13865 `cursor' property. */
13866 ptrdiff_t bpos_covered = 0;
13867 /* Non-zero means the display string on which to display the cursor
13868 comes from a text property, not from an overlay. */
13869 int string_from_text_prop = 0;
13871 /* Don't even try doing anything if called for a mode-line or
13872 header-line row, since the rest of the code isn't prepared to
13873 deal with such calamities. */
13874 xassert (!row->mode_line_p);
13875 if (row->mode_line_p)
13876 return 0;
13878 /* Skip over glyphs not having an object at the start and the end of
13879 the row. These are special glyphs like truncation marks on
13880 terminal frames. */
13881 if (row->displays_text_p)
13883 if (!row->reversed_p)
13885 while (glyph < end
13886 && INTEGERP (glyph->object)
13887 && glyph->charpos < 0)
13889 x += glyph->pixel_width;
13890 ++glyph;
13892 while (end > glyph
13893 && INTEGERP ((end - 1)->object)
13894 /* CHARPOS is zero for blanks and stretch glyphs
13895 inserted by extend_face_to_end_of_line. */
13896 && (end - 1)->charpos <= 0)
13897 --end;
13898 glyph_before = glyph - 1;
13899 glyph_after = end;
13901 else
13903 struct glyph *g;
13905 /* If the glyph row is reversed, we need to process it from back
13906 to front, so swap the edge pointers. */
13907 glyphs_end = end = glyph - 1;
13908 glyph += row->used[TEXT_AREA] - 1;
13910 while (glyph > end + 1
13911 && INTEGERP (glyph->object)
13912 && glyph->charpos < 0)
13914 --glyph;
13915 x -= glyph->pixel_width;
13917 if (INTEGERP (glyph->object) && glyph->charpos < 0)
13918 --glyph;
13919 /* By default, in reversed rows we put the cursor on the
13920 rightmost (first in the reading order) glyph. */
13921 for (g = end + 1; g < glyph; g++)
13922 x += g->pixel_width;
13923 while (end < glyph
13924 && INTEGERP ((end + 1)->object)
13925 && (end + 1)->charpos <= 0)
13926 ++end;
13927 glyph_before = glyph + 1;
13928 glyph_after = end;
13931 else if (row->reversed_p)
13933 /* In R2L rows that don't display text, put the cursor on the
13934 rightmost glyph. Case in point: an empty last line that is
13935 part of an R2L paragraph. */
13936 cursor = end - 1;
13937 /* Avoid placing the cursor on the last glyph of the row, where
13938 on terminal frames we hold the vertical border between
13939 adjacent windows. */
13940 if (!FRAME_WINDOW_P (WINDOW_XFRAME (w))
13941 && !WINDOW_RIGHTMOST_P (w)
13942 && cursor == row->glyphs[LAST_AREA] - 1)
13943 cursor--;
13944 x = -1; /* will be computed below, at label compute_x */
13947 /* Step 1: Try to find the glyph whose character position
13948 corresponds to point. If that's not possible, find 2 glyphs
13949 whose character positions are the closest to point, one before
13950 point, the other after it. */
13951 if (!row->reversed_p)
13952 while (/* not marched to end of glyph row */
13953 glyph < end
13954 /* glyph was not inserted by redisplay for internal purposes */
13955 && !INTEGERP (glyph->object))
13957 if (BUFFERP (glyph->object))
13959 ptrdiff_t dpos = glyph->charpos - pt_old;
13961 if (glyph->charpos > bpos_max)
13962 bpos_max = glyph->charpos;
13963 if (glyph->charpos < bpos_min)
13964 bpos_min = glyph->charpos;
13965 if (!glyph->avoid_cursor_p)
13967 /* If we hit point, we've found the glyph on which to
13968 display the cursor. */
13969 if (dpos == 0)
13971 match_with_avoid_cursor = 0;
13972 break;
13974 /* See if we've found a better approximation to
13975 POS_BEFORE or to POS_AFTER. */
13976 if (0 > dpos && dpos > pos_before - pt_old)
13978 pos_before = glyph->charpos;
13979 glyph_before = glyph;
13981 else if (0 < dpos && dpos < pos_after - pt_old)
13983 pos_after = glyph->charpos;
13984 glyph_after = glyph;
13987 else if (dpos == 0)
13988 match_with_avoid_cursor = 1;
13990 else if (STRINGP (glyph->object))
13992 Lisp_Object chprop;
13993 ptrdiff_t glyph_pos = glyph->charpos;
13995 chprop = Fget_char_property (make_number (glyph_pos), Qcursor,
13996 glyph->object);
13997 if (!NILP (chprop))
13999 /* If the string came from a `display' text property,
14000 look up the buffer position of that property and
14001 use that position to update bpos_max, as if we
14002 actually saw such a position in one of the row's
14003 glyphs. This helps with supporting integer values
14004 of `cursor' property on the display string in
14005 situations where most or all of the row's buffer
14006 text is completely covered by display properties,
14007 so that no glyph with valid buffer positions is
14008 ever seen in the row. */
14009 ptrdiff_t prop_pos =
14010 string_buffer_position_lim (glyph->object, pos_before,
14011 pos_after, 0);
14013 if (prop_pos >= pos_before)
14014 bpos_max = prop_pos - 1;
14016 if (INTEGERP (chprop))
14018 bpos_covered = bpos_max + XINT (chprop);
14019 /* If the `cursor' property covers buffer positions up
14020 to and including point, we should display cursor on
14021 this glyph. Note that, if a `cursor' property on one
14022 of the string's characters has an integer value, we
14023 will break out of the loop below _before_ we get to
14024 the position match above. IOW, integer values of
14025 the `cursor' property override the "exact match for
14026 point" strategy of positioning the cursor. */
14027 /* Implementation note: bpos_max == pt_old when, e.g.,
14028 we are in an empty line, where bpos_max is set to
14029 MATRIX_ROW_START_CHARPOS, see above. */
14030 if (bpos_max <= pt_old && bpos_covered >= pt_old)
14032 cursor = glyph;
14033 break;
14037 string_seen = 1;
14039 x += glyph->pixel_width;
14040 ++glyph;
14042 else if (glyph > end) /* row is reversed */
14043 while (!INTEGERP (glyph->object))
14045 if (BUFFERP (glyph->object))
14047 ptrdiff_t dpos = glyph->charpos - pt_old;
14049 if (glyph->charpos > bpos_max)
14050 bpos_max = glyph->charpos;
14051 if (glyph->charpos < bpos_min)
14052 bpos_min = glyph->charpos;
14053 if (!glyph->avoid_cursor_p)
14055 if (dpos == 0)
14057 match_with_avoid_cursor = 0;
14058 break;
14060 if (0 > dpos && dpos > pos_before - pt_old)
14062 pos_before = glyph->charpos;
14063 glyph_before = glyph;
14065 else if (0 < dpos && dpos < pos_after - pt_old)
14067 pos_after = glyph->charpos;
14068 glyph_after = glyph;
14071 else if (dpos == 0)
14072 match_with_avoid_cursor = 1;
14074 else if (STRINGP (glyph->object))
14076 Lisp_Object chprop;
14077 ptrdiff_t glyph_pos = glyph->charpos;
14079 chprop = Fget_char_property (make_number (glyph_pos), Qcursor,
14080 glyph->object);
14081 if (!NILP (chprop))
14083 ptrdiff_t prop_pos =
14084 string_buffer_position_lim (glyph->object, pos_before,
14085 pos_after, 0);
14087 if (prop_pos >= pos_before)
14088 bpos_max = prop_pos - 1;
14090 if (INTEGERP (chprop))
14092 bpos_covered = bpos_max + XINT (chprop);
14093 /* If the `cursor' property covers buffer positions up
14094 to and including point, we should display cursor on
14095 this glyph. */
14096 if (bpos_max <= pt_old && bpos_covered >= pt_old)
14098 cursor = glyph;
14099 break;
14102 string_seen = 1;
14104 --glyph;
14105 if (glyph == glyphs_end) /* don't dereference outside TEXT_AREA */
14107 x--; /* can't use any pixel_width */
14108 break;
14110 x -= glyph->pixel_width;
14113 /* Step 2: If we didn't find an exact match for point, we need to
14114 look for a proper place to put the cursor among glyphs between
14115 GLYPH_BEFORE and GLYPH_AFTER. */
14116 if (!((row->reversed_p ? glyph > glyphs_end : glyph < glyphs_end)
14117 && BUFFERP (glyph->object) && glyph->charpos == pt_old)
14118 && bpos_covered < pt_old)
14120 /* An empty line has a single glyph whose OBJECT is zero and
14121 whose CHARPOS is the position of a newline on that line.
14122 Note that on a TTY, there are more glyphs after that, which
14123 were produced by extend_face_to_end_of_line, but their
14124 CHARPOS is zero or negative. */
14125 int empty_line_p =
14126 (row->reversed_p ? glyph > glyphs_end : glyph < glyphs_end)
14127 && INTEGERP (glyph->object) && glyph->charpos > 0;
14129 if (row->ends_in_ellipsis_p && pos_after == last_pos)
14131 ptrdiff_t ellipsis_pos;
14133 /* Scan back over the ellipsis glyphs. */
14134 if (!row->reversed_p)
14136 ellipsis_pos = (glyph - 1)->charpos;
14137 while (glyph > row->glyphs[TEXT_AREA]
14138 && (glyph - 1)->charpos == ellipsis_pos)
14139 glyph--, x -= glyph->pixel_width;
14140 /* That loop always goes one position too far, including
14141 the glyph before the ellipsis. So scan forward over
14142 that one. */
14143 x += glyph->pixel_width;
14144 glyph++;
14146 else /* row is reversed */
14148 ellipsis_pos = (glyph + 1)->charpos;
14149 while (glyph < row->glyphs[TEXT_AREA] + row->used[TEXT_AREA] - 1
14150 && (glyph + 1)->charpos == ellipsis_pos)
14151 glyph++, x += glyph->pixel_width;
14152 x -= glyph->pixel_width;
14153 glyph--;
14156 else if (match_with_avoid_cursor)
14158 cursor = glyph_after;
14159 x = -1;
14161 else if (string_seen)
14163 int incr = row->reversed_p ? -1 : +1;
14165 /* Need to find the glyph that came out of a string which is
14166 present at point. That glyph is somewhere between
14167 GLYPH_BEFORE and GLYPH_AFTER, and it came from a string
14168 positioned between POS_BEFORE and POS_AFTER in the
14169 buffer. */
14170 struct glyph *start, *stop;
14171 ptrdiff_t pos = pos_before;
14173 x = -1;
14175 /* If the row ends in a newline from a display string,
14176 reordering could have moved the glyphs belonging to the
14177 string out of the [GLYPH_BEFORE..GLYPH_AFTER] range. So
14178 in this case we extend the search to the last glyph in
14179 the row that was not inserted by redisplay. */
14180 if (row->ends_in_newline_from_string_p)
14182 glyph_after = end;
14183 pos_after = MATRIX_ROW_END_CHARPOS (row) + delta;
14186 /* GLYPH_BEFORE and GLYPH_AFTER are the glyphs that
14187 correspond to POS_BEFORE and POS_AFTER, respectively. We
14188 need START and STOP in the order that corresponds to the
14189 row's direction as given by its reversed_p flag. If the
14190 directionality of characters between POS_BEFORE and
14191 POS_AFTER is the opposite of the row's base direction,
14192 these characters will have been reordered for display,
14193 and we need to reverse START and STOP. */
14194 if (!row->reversed_p)
14196 start = min (glyph_before, glyph_after);
14197 stop = max (glyph_before, glyph_after);
14199 else
14201 start = max (glyph_before, glyph_after);
14202 stop = min (glyph_before, glyph_after);
14204 for (glyph = start + incr;
14205 row->reversed_p ? glyph > stop : glyph < stop; )
14208 /* Any glyphs that come from the buffer are here because
14209 of bidi reordering. Skip them, and only pay
14210 attention to glyphs that came from some string. */
14211 if (STRINGP (glyph->object))
14213 Lisp_Object str;
14214 ptrdiff_t tem;
14215 /* If the display property covers the newline, we
14216 need to search for it one position farther. */
14217 ptrdiff_t lim = pos_after
14218 + (pos_after == MATRIX_ROW_END_CHARPOS (row) + delta);
14220 string_from_text_prop = 0;
14221 str = glyph->object;
14222 tem = string_buffer_position_lim (str, pos, lim, 0);
14223 if (tem == 0 /* from overlay */
14224 || pos <= tem)
14226 /* If the string from which this glyph came is
14227 found in the buffer at point, or at position
14228 that is closer to point than pos_after, then
14229 we've found the glyph we've been looking for.
14230 If it comes from an overlay (tem == 0), and
14231 it has the `cursor' property on one of its
14232 glyphs, record that glyph as a candidate for
14233 displaying the cursor. (As in the
14234 unidirectional version, we will display the
14235 cursor on the last candidate we find.) */
14236 if (tem == 0
14237 || tem == pt_old
14238 || (tem - pt_old > 0 && tem < pos_after))
14240 /* The glyphs from this string could have
14241 been reordered. Find the one with the
14242 smallest string position. Or there could
14243 be a character in the string with the
14244 `cursor' property, which means display
14245 cursor on that character's glyph. */
14246 ptrdiff_t strpos = glyph->charpos;
14248 if (tem)
14250 cursor = glyph;
14251 string_from_text_prop = 1;
14253 for ( ;
14254 (row->reversed_p ? glyph > stop : glyph < stop)
14255 && EQ (glyph->object, str);
14256 glyph += incr)
14258 Lisp_Object cprop;
14259 ptrdiff_t gpos = glyph->charpos;
14261 cprop = Fget_char_property (make_number (gpos),
14262 Qcursor,
14263 glyph->object);
14264 if (!NILP (cprop))
14266 cursor = glyph;
14267 break;
14269 if (tem && glyph->charpos < strpos)
14271 strpos = glyph->charpos;
14272 cursor = glyph;
14276 if (tem == pt_old
14277 || (tem - pt_old > 0 && tem < pos_after))
14278 goto compute_x;
14280 if (tem)
14281 pos = tem + 1; /* don't find previous instances */
14283 /* This string is not what we want; skip all of the
14284 glyphs that came from it. */
14285 while ((row->reversed_p ? glyph > stop : glyph < stop)
14286 && EQ (glyph->object, str))
14287 glyph += incr;
14289 else
14290 glyph += incr;
14293 /* If we reached the end of the line, and END was from a string,
14294 the cursor is not on this line. */
14295 if (cursor == NULL
14296 && (row->reversed_p ? glyph <= end : glyph >= end)
14297 && (row->reversed_p ? end > glyphs_end : end < glyphs_end)
14298 && STRINGP (end->object)
14299 && row->continued_p)
14300 return 0;
14302 /* A truncated row may not include PT among its character positions.
14303 Setting the cursor inside the scroll margin will trigger
14304 recalculation of hscroll in hscroll_window_tree. But if a
14305 display string covers point, defer to the string-handling
14306 code below to figure this out. */
14307 else if (row->truncated_on_left_p && pt_old < bpos_min)
14309 cursor = glyph_before;
14310 x = -1;
14312 else if ((row->truncated_on_right_p && pt_old > bpos_max)
14313 /* Zero-width characters produce no glyphs. */
14314 || (!empty_line_p
14315 && (row->reversed_p
14316 ? glyph_after > glyphs_end
14317 : glyph_after < glyphs_end)))
14319 cursor = glyph_after;
14320 x = -1;
14324 compute_x:
14325 if (cursor != NULL)
14326 glyph = cursor;
14327 else if (glyph == glyphs_end
14328 && pos_before == pos_after
14329 && STRINGP ((row->reversed_p
14330 ? row->glyphs[TEXT_AREA] + row->used[TEXT_AREA] - 1
14331 : row->glyphs[TEXT_AREA])->object))
14333 /* If all the glyphs of this row came from strings, put the
14334 cursor on the first glyph of the row. This avoids having the
14335 cursor outside of the text area in this very rare and hard
14336 use case. */
14337 glyph =
14338 row->reversed_p
14339 ? row->glyphs[TEXT_AREA] + row->used[TEXT_AREA] - 1
14340 : row->glyphs[TEXT_AREA];
14342 if (x < 0)
14344 struct glyph *g;
14346 /* Need to compute x that corresponds to GLYPH. */
14347 for (g = row->glyphs[TEXT_AREA], x = row->x; g < glyph; g++)
14349 if (g >= row->glyphs[TEXT_AREA] + row->used[TEXT_AREA])
14350 abort ();
14351 x += g->pixel_width;
14355 /* ROW could be part of a continued line, which, under bidi
14356 reordering, might have other rows whose start and end charpos
14357 occlude point. Only set w->cursor if we found a better
14358 approximation to the cursor position than we have from previously
14359 examined candidate rows belonging to the same continued line. */
14360 if (/* we already have a candidate row */
14361 w->cursor.vpos >= 0
14362 /* that candidate is not the row we are processing */
14363 && MATRIX_ROW (matrix, w->cursor.vpos) != row
14364 /* Make sure cursor.vpos specifies a row whose start and end
14365 charpos occlude point, and it is valid candidate for being a
14366 cursor-row. This is because some callers of this function
14367 leave cursor.vpos at the row where the cursor was displayed
14368 during the last redisplay cycle. */
14369 && MATRIX_ROW_START_CHARPOS (MATRIX_ROW (matrix, w->cursor.vpos)) <= pt_old
14370 && pt_old <= MATRIX_ROW_END_CHARPOS (MATRIX_ROW (matrix, w->cursor.vpos))
14371 && cursor_row_p (MATRIX_ROW (matrix, w->cursor.vpos)))
14373 struct glyph *g1 =
14374 MATRIX_ROW_GLYPH_START (matrix, w->cursor.vpos) + w->cursor.hpos;
14376 /* Don't consider glyphs that are outside TEXT_AREA. */
14377 if (!(row->reversed_p ? glyph > glyphs_end : glyph < glyphs_end))
14378 return 0;
14379 /* Keep the candidate whose buffer position is the closest to
14380 point or has the `cursor' property. */
14381 if (/* previous candidate is a glyph in TEXT_AREA of that row */
14382 w->cursor.hpos >= 0
14383 && w->cursor.hpos < MATRIX_ROW_USED (matrix, w->cursor.vpos)
14384 && ((BUFFERP (g1->object)
14385 && (g1->charpos == pt_old /* an exact match always wins */
14386 || (BUFFERP (glyph->object)
14387 && eabs (g1->charpos - pt_old)
14388 < eabs (glyph->charpos - pt_old))))
14389 /* previous candidate is a glyph from a string that has
14390 a non-nil `cursor' property */
14391 || (STRINGP (g1->object)
14392 && (!NILP (Fget_char_property (make_number (g1->charpos),
14393 Qcursor, g1->object))
14394 /* previous candidate is from the same display
14395 string as this one, and the display string
14396 came from a text property */
14397 || (EQ (g1->object, glyph->object)
14398 && string_from_text_prop)
14399 /* this candidate is from newline and its
14400 position is not an exact match */
14401 || (INTEGERP (glyph->object)
14402 && glyph->charpos != pt_old)))))
14403 return 0;
14404 /* If this candidate gives an exact match, use that. */
14405 if (!((BUFFERP (glyph->object) && glyph->charpos == pt_old)
14406 /* If this candidate is a glyph created for the
14407 terminating newline of a line, and point is on that
14408 newline, it wins because it's an exact match. */
14409 || (!row->continued_p
14410 && INTEGERP (glyph->object)
14411 && glyph->charpos == 0
14412 && pt_old == MATRIX_ROW_END_CHARPOS (row) - 1))
14413 /* Otherwise, keep the candidate that comes from a row
14414 spanning less buffer positions. This may win when one or
14415 both candidate positions are on glyphs that came from
14416 display strings, for which we cannot compare buffer
14417 positions. */
14418 && MATRIX_ROW_END_CHARPOS (MATRIX_ROW (matrix, w->cursor.vpos))
14419 - MATRIX_ROW_START_CHARPOS (MATRIX_ROW (matrix, w->cursor.vpos))
14420 < MATRIX_ROW_END_CHARPOS (row) - MATRIX_ROW_START_CHARPOS (row))
14421 return 0;
14423 w->cursor.hpos = glyph - row->glyphs[TEXT_AREA];
14424 w->cursor.x = x;
14425 w->cursor.vpos = MATRIX_ROW_VPOS (row, matrix) + dvpos;
14426 w->cursor.y = row->y + dy;
14428 if (w == XWINDOW (selected_window))
14430 if (!row->continued_p
14431 && !MATRIX_ROW_CONTINUATION_LINE_P (row)
14432 && row->x == 0)
14434 this_line_buffer = XBUFFER (w->buffer);
14436 CHARPOS (this_line_start_pos)
14437 = MATRIX_ROW_START_CHARPOS (row) + delta;
14438 BYTEPOS (this_line_start_pos)
14439 = MATRIX_ROW_START_BYTEPOS (row) + delta_bytes;
14441 CHARPOS (this_line_end_pos)
14442 = Z - (MATRIX_ROW_END_CHARPOS (row) + delta);
14443 BYTEPOS (this_line_end_pos)
14444 = Z_BYTE - (MATRIX_ROW_END_BYTEPOS (row) + delta_bytes);
14446 this_line_y = w->cursor.y;
14447 this_line_pixel_height = row->height;
14448 this_line_vpos = w->cursor.vpos;
14449 this_line_start_x = row->x;
14451 else
14452 CHARPOS (this_line_start_pos) = 0;
14455 return 1;
14459 /* Run window scroll functions, if any, for WINDOW with new window
14460 start STARTP. Sets the window start of WINDOW to that position.
14462 We assume that the window's buffer is really current. */
14464 static inline struct text_pos
14465 run_window_scroll_functions (Lisp_Object window, struct text_pos startp)
14467 struct window *w = XWINDOW (window);
14468 SET_MARKER_FROM_TEXT_POS (w->start, startp);
14470 if (current_buffer != XBUFFER (w->buffer))
14471 abort ();
14473 if (!NILP (Vwindow_scroll_functions))
14475 run_hook_with_args_2 (Qwindow_scroll_functions, window,
14476 make_number (CHARPOS (startp)));
14477 SET_TEXT_POS_FROM_MARKER (startp, w->start);
14478 /* In case the hook functions switch buffers. */
14479 if (current_buffer != XBUFFER (w->buffer))
14480 set_buffer_internal_1 (XBUFFER (w->buffer));
14483 return startp;
14487 /* Make sure the line containing the cursor is fully visible.
14488 A value of 1 means there is nothing to be done.
14489 (Either the line is fully visible, or it cannot be made so,
14490 or we cannot tell.)
14492 If FORCE_P is non-zero, return 0 even if partial visible cursor row
14493 is higher than window.
14495 A value of 0 means the caller should do scrolling
14496 as if point had gone off the screen. */
14498 static int
14499 cursor_row_fully_visible_p (struct window *w, int force_p, int current_matrix_p)
14501 struct glyph_matrix *matrix;
14502 struct glyph_row *row;
14503 int window_height;
14505 if (!make_cursor_line_fully_visible_p)
14506 return 1;
14508 /* It's not always possible to find the cursor, e.g, when a window
14509 is full of overlay strings. Don't do anything in that case. */
14510 if (w->cursor.vpos < 0)
14511 return 1;
14513 matrix = current_matrix_p ? w->current_matrix : w->desired_matrix;
14514 row = MATRIX_ROW (matrix, w->cursor.vpos);
14516 /* If the cursor row is not partially visible, there's nothing to do. */
14517 if (!MATRIX_ROW_PARTIALLY_VISIBLE_P (w, row))
14518 return 1;
14520 /* If the row the cursor is in is taller than the window's height,
14521 it's not clear what to do, so do nothing. */
14522 window_height = window_box_height (w);
14523 if (row->height >= window_height)
14525 if (!force_p || MINI_WINDOW_P (w)
14526 || w->vscroll || w->cursor.vpos == 0)
14527 return 1;
14529 return 0;
14533 /* Try scrolling PT into view in window WINDOW. JUST_THIS_ONE_P
14534 non-zero means only WINDOW is redisplayed in redisplay_internal.
14535 TEMP_SCROLL_STEP has the same meaning as emacs_scroll_step, and is used
14536 in redisplay_window to bring a partially visible line into view in
14537 the case that only the cursor has moved.
14539 LAST_LINE_MISFIT should be nonzero if we're scrolling because the
14540 last screen line's vertical height extends past the end of the screen.
14542 Value is
14544 1 if scrolling succeeded
14546 0 if scrolling didn't find point.
14548 -1 if new fonts have been loaded so that we must interrupt
14549 redisplay, adjust glyph matrices, and try again. */
14551 enum
14553 SCROLLING_SUCCESS,
14554 SCROLLING_FAILED,
14555 SCROLLING_NEED_LARGER_MATRICES
14558 /* If scroll-conservatively is more than this, never recenter.
14560 If you change this, don't forget to update the doc string of
14561 `scroll-conservatively' and the Emacs manual. */
14562 #define SCROLL_LIMIT 100
14564 static int
14565 try_scrolling (Lisp_Object window, int just_this_one_p,
14566 ptrdiff_t arg_scroll_conservatively, ptrdiff_t scroll_step,
14567 int temp_scroll_step, int last_line_misfit)
14569 struct window *w = XWINDOW (window);
14570 struct frame *f = XFRAME (w->frame);
14571 struct text_pos pos, startp;
14572 struct it it;
14573 int this_scroll_margin, scroll_max, rc, height;
14574 int dy = 0, amount_to_scroll = 0, scroll_down_p = 0;
14575 int extra_scroll_margin_lines = last_line_misfit ? 1 : 0;
14576 Lisp_Object aggressive;
14577 /* We will never try scrolling more than this number of lines. */
14578 int scroll_limit = SCROLL_LIMIT;
14580 #if GLYPH_DEBUG
14581 debug_method_add (w, "try_scrolling");
14582 #endif
14584 SET_TEXT_POS_FROM_MARKER (startp, w->start);
14586 /* Compute scroll margin height in pixels. We scroll when point is
14587 within this distance from the top or bottom of the window. */
14588 if (scroll_margin > 0)
14589 this_scroll_margin = min (scroll_margin, WINDOW_TOTAL_LINES (w) / 4)
14590 * FRAME_LINE_HEIGHT (f);
14591 else
14592 this_scroll_margin = 0;
14594 /* Force arg_scroll_conservatively to have a reasonable value, to
14595 avoid scrolling too far away with slow move_it_* functions. Note
14596 that the user can supply scroll-conservatively equal to
14597 `most-positive-fixnum', which can be larger than INT_MAX. */
14598 if (arg_scroll_conservatively > scroll_limit)
14600 arg_scroll_conservatively = scroll_limit + 1;
14601 scroll_max = scroll_limit * FRAME_LINE_HEIGHT (f);
14603 else if (scroll_step || arg_scroll_conservatively || temp_scroll_step)
14604 /* Compute how much we should try to scroll maximally to bring
14605 point into view. */
14606 scroll_max = (max (scroll_step,
14607 max (arg_scroll_conservatively, temp_scroll_step))
14608 * FRAME_LINE_HEIGHT (f));
14609 else if (NUMBERP (BVAR (current_buffer, scroll_down_aggressively))
14610 || NUMBERP (BVAR (current_buffer, scroll_up_aggressively)))
14611 /* We're trying to scroll because of aggressive scrolling but no
14612 scroll_step is set. Choose an arbitrary one. */
14613 scroll_max = 10 * FRAME_LINE_HEIGHT (f);
14614 else
14615 scroll_max = 0;
14617 too_near_end:
14619 /* Decide whether to scroll down. */
14620 if (PT > CHARPOS (startp))
14622 int scroll_margin_y;
14624 /* Compute the pixel ypos of the scroll margin, then move IT to
14625 either that ypos or PT, whichever comes first. */
14626 start_display (&it, w, startp);
14627 scroll_margin_y = it.last_visible_y - this_scroll_margin
14628 - FRAME_LINE_HEIGHT (f) * extra_scroll_margin_lines;
14629 move_it_to (&it, PT, -1, scroll_margin_y - 1, -1,
14630 (MOVE_TO_POS | MOVE_TO_Y));
14632 if (PT > CHARPOS (it.current.pos))
14634 int y0 = line_bottom_y (&it);
14635 /* Compute how many pixels below window bottom to stop searching
14636 for PT. This avoids costly search for PT that is far away if
14637 the user limited scrolling by a small number of lines, but
14638 always finds PT if scroll_conservatively is set to a large
14639 number, such as most-positive-fixnum. */
14640 int slack = max (scroll_max, 10 * FRAME_LINE_HEIGHT (f));
14641 int y_to_move = it.last_visible_y + slack;
14643 /* Compute the distance from the scroll margin to PT or to
14644 the scroll limit, whichever comes first. This should
14645 include the height of the cursor line, to make that line
14646 fully visible. */
14647 move_it_to (&it, PT, -1, y_to_move,
14648 -1, MOVE_TO_POS | MOVE_TO_Y);
14649 dy = line_bottom_y (&it) - y0;
14651 if (dy > scroll_max)
14652 return SCROLLING_FAILED;
14654 if (dy > 0)
14655 scroll_down_p = 1;
14659 if (scroll_down_p)
14661 /* Point is in or below the bottom scroll margin, so move the
14662 window start down. If scrolling conservatively, move it just
14663 enough down to make point visible. If scroll_step is set,
14664 move it down by scroll_step. */
14665 if (arg_scroll_conservatively)
14666 amount_to_scroll
14667 = min (max (dy, FRAME_LINE_HEIGHT (f)),
14668 FRAME_LINE_HEIGHT (f) * arg_scroll_conservatively);
14669 else if (scroll_step || temp_scroll_step)
14670 amount_to_scroll = scroll_max;
14671 else
14673 aggressive = BVAR (current_buffer, scroll_up_aggressively);
14674 height = WINDOW_BOX_TEXT_HEIGHT (w);
14675 if (NUMBERP (aggressive))
14677 double float_amount = XFLOATINT (aggressive) * height;
14678 amount_to_scroll = float_amount;
14679 if (amount_to_scroll == 0 && float_amount > 0)
14680 amount_to_scroll = 1;
14681 /* Don't let point enter the scroll margin near top of
14682 the window. */
14683 if (amount_to_scroll > height - 2*this_scroll_margin + dy)
14684 amount_to_scroll = height - 2*this_scroll_margin + dy;
14688 if (amount_to_scroll <= 0)
14689 return SCROLLING_FAILED;
14691 start_display (&it, w, startp);
14692 if (arg_scroll_conservatively <= scroll_limit)
14693 move_it_vertically (&it, amount_to_scroll);
14694 else
14696 /* Extra precision for users who set scroll-conservatively
14697 to a large number: make sure the amount we scroll
14698 the window start is never less than amount_to_scroll,
14699 which was computed as distance from window bottom to
14700 point. This matters when lines at window top and lines
14701 below window bottom have different height. */
14702 struct it it1;
14703 void *it1data = NULL;
14704 /* We use a temporary it1 because line_bottom_y can modify
14705 its argument, if it moves one line down; see there. */
14706 int start_y;
14708 SAVE_IT (it1, it, it1data);
14709 start_y = line_bottom_y (&it1);
14710 do {
14711 RESTORE_IT (&it, &it, it1data);
14712 move_it_by_lines (&it, 1);
14713 SAVE_IT (it1, it, it1data);
14714 } while (line_bottom_y (&it1) - start_y < amount_to_scroll);
14717 /* If STARTP is unchanged, move it down another screen line. */
14718 if (CHARPOS (it.current.pos) == CHARPOS (startp))
14719 move_it_by_lines (&it, 1);
14720 startp = it.current.pos;
14722 else
14724 struct text_pos scroll_margin_pos = startp;
14726 /* See if point is inside the scroll margin at the top of the
14727 window. */
14728 if (this_scroll_margin)
14730 start_display (&it, w, startp);
14731 move_it_vertically (&it, this_scroll_margin);
14732 scroll_margin_pos = it.current.pos;
14735 if (PT < CHARPOS (scroll_margin_pos))
14737 /* Point is in the scroll margin at the top of the window or
14738 above what is displayed in the window. */
14739 int y0, y_to_move;
14741 /* Compute the vertical distance from PT to the scroll
14742 margin position. Move as far as scroll_max allows, or
14743 one screenful, or 10 screen lines, whichever is largest.
14744 Give up if distance is greater than scroll_max. */
14745 SET_TEXT_POS (pos, PT, PT_BYTE);
14746 start_display (&it, w, pos);
14747 y0 = it.current_y;
14748 y_to_move = max (it.last_visible_y,
14749 max (scroll_max, 10 * FRAME_LINE_HEIGHT (f)));
14750 move_it_to (&it, CHARPOS (scroll_margin_pos), 0,
14751 y_to_move, -1,
14752 MOVE_TO_POS | MOVE_TO_X | MOVE_TO_Y);
14753 dy = it.current_y - y0;
14754 if (dy > scroll_max)
14755 return SCROLLING_FAILED;
14757 /* Compute new window start. */
14758 start_display (&it, w, startp);
14760 if (arg_scroll_conservatively)
14761 amount_to_scroll = max (dy, FRAME_LINE_HEIGHT (f) *
14762 max (scroll_step, temp_scroll_step));
14763 else if (scroll_step || temp_scroll_step)
14764 amount_to_scroll = scroll_max;
14765 else
14767 aggressive = BVAR (current_buffer, scroll_down_aggressively);
14768 height = WINDOW_BOX_TEXT_HEIGHT (w);
14769 if (NUMBERP (aggressive))
14771 double float_amount = XFLOATINT (aggressive) * height;
14772 amount_to_scroll = float_amount;
14773 if (amount_to_scroll == 0 && float_amount > 0)
14774 amount_to_scroll = 1;
14775 amount_to_scroll -=
14776 this_scroll_margin - dy - FRAME_LINE_HEIGHT (f);
14777 /* Don't let point enter the scroll margin near
14778 bottom of the window. */
14779 if (amount_to_scroll > height - 2*this_scroll_margin + dy)
14780 amount_to_scroll = height - 2*this_scroll_margin + dy;
14784 if (amount_to_scroll <= 0)
14785 return SCROLLING_FAILED;
14787 move_it_vertically_backward (&it, amount_to_scroll);
14788 startp = it.current.pos;
14792 /* Run window scroll functions. */
14793 startp = run_window_scroll_functions (window, startp);
14795 /* Display the window. Give up if new fonts are loaded, or if point
14796 doesn't appear. */
14797 if (!try_window (window, startp, 0))
14798 rc = SCROLLING_NEED_LARGER_MATRICES;
14799 else if (w->cursor.vpos < 0)
14801 clear_glyph_matrix (w->desired_matrix);
14802 rc = SCROLLING_FAILED;
14804 else
14806 /* Maybe forget recorded base line for line number display. */
14807 if (!just_this_one_p
14808 || current_buffer->clip_changed
14809 || BEG_UNCHANGED < CHARPOS (startp))
14810 w->base_line_number = Qnil;
14812 /* If cursor ends up on a partially visible line,
14813 treat that as being off the bottom of the screen. */
14814 if (! cursor_row_fully_visible_p (w, extra_scroll_margin_lines <= 1, 0)
14815 /* It's possible that the cursor is on the first line of the
14816 buffer, which is partially obscured due to a vscroll
14817 (Bug#7537). In that case, avoid looping forever . */
14818 && extra_scroll_margin_lines < w->desired_matrix->nrows - 1)
14820 clear_glyph_matrix (w->desired_matrix);
14821 ++extra_scroll_margin_lines;
14822 goto too_near_end;
14824 rc = SCROLLING_SUCCESS;
14827 return rc;
14831 /* Compute a suitable window start for window W if display of W starts
14832 on a continuation line. Value is non-zero if a new window start
14833 was computed.
14835 The new window start will be computed, based on W's width, starting
14836 from the start of the continued line. It is the start of the
14837 screen line with the minimum distance from the old start W->start. */
14839 static int
14840 compute_window_start_on_continuation_line (struct window *w)
14842 struct text_pos pos, start_pos;
14843 int window_start_changed_p = 0;
14845 SET_TEXT_POS_FROM_MARKER (start_pos, w->start);
14847 /* If window start is on a continuation line... Window start may be
14848 < BEGV in case there's invisible text at the start of the
14849 buffer (M-x rmail, for example). */
14850 if (CHARPOS (start_pos) > BEGV
14851 && FETCH_BYTE (BYTEPOS (start_pos) - 1) != '\n')
14853 struct it it;
14854 struct glyph_row *row;
14856 /* Handle the case that the window start is out of range. */
14857 if (CHARPOS (start_pos) < BEGV)
14858 SET_TEXT_POS (start_pos, BEGV, BEGV_BYTE);
14859 else if (CHARPOS (start_pos) > ZV)
14860 SET_TEXT_POS (start_pos, ZV, ZV_BYTE);
14862 /* Find the start of the continued line. This should be fast
14863 because scan_buffer is fast (newline cache). */
14864 row = w->desired_matrix->rows + (WINDOW_WANTS_HEADER_LINE_P (w) ? 1 : 0);
14865 init_iterator (&it, w, CHARPOS (start_pos), BYTEPOS (start_pos),
14866 row, DEFAULT_FACE_ID);
14867 reseat_at_previous_visible_line_start (&it);
14869 /* If the line start is "too far" away from the window start,
14870 say it takes too much time to compute a new window start. */
14871 if (CHARPOS (start_pos) - IT_CHARPOS (it)
14872 < WINDOW_TOTAL_LINES (w) * WINDOW_TOTAL_COLS (w))
14874 int min_distance, distance;
14876 /* Move forward by display lines to find the new window
14877 start. If window width was enlarged, the new start can
14878 be expected to be > the old start. If window width was
14879 decreased, the new window start will be < the old start.
14880 So, we're looking for the display line start with the
14881 minimum distance from the old window start. */
14882 pos = it.current.pos;
14883 min_distance = INFINITY;
14884 while ((distance = eabs (CHARPOS (start_pos) - IT_CHARPOS (it))),
14885 distance < min_distance)
14887 min_distance = distance;
14888 pos = it.current.pos;
14889 move_it_by_lines (&it, 1);
14892 /* Set the window start there. */
14893 SET_MARKER_FROM_TEXT_POS (w->start, pos);
14894 window_start_changed_p = 1;
14898 return window_start_changed_p;
14902 /* Try cursor movement in case text has not changed in window WINDOW,
14903 with window start STARTP. Value is
14905 CURSOR_MOVEMENT_SUCCESS if successful
14907 CURSOR_MOVEMENT_CANNOT_BE_USED if this method cannot be used
14909 CURSOR_MOVEMENT_MUST_SCROLL if we know we have to scroll the
14910 display. *SCROLL_STEP is set to 1, under certain circumstances, if
14911 we want to scroll as if scroll-step were set to 1. See the code.
14913 CURSOR_MOVEMENT_NEED_LARGER_MATRICES if we need larger matrices, in
14914 which case we have to abort this redisplay, and adjust matrices
14915 first. */
14917 enum
14919 CURSOR_MOVEMENT_SUCCESS,
14920 CURSOR_MOVEMENT_CANNOT_BE_USED,
14921 CURSOR_MOVEMENT_MUST_SCROLL,
14922 CURSOR_MOVEMENT_NEED_LARGER_MATRICES
14925 static int
14926 try_cursor_movement (Lisp_Object window, struct text_pos startp, int *scroll_step)
14928 struct window *w = XWINDOW (window);
14929 struct frame *f = XFRAME (w->frame);
14930 int rc = CURSOR_MOVEMENT_CANNOT_BE_USED;
14932 #if GLYPH_DEBUG
14933 if (inhibit_try_cursor_movement)
14934 return rc;
14935 #endif
14937 /* Handle case where text has not changed, only point, and it has
14938 not moved off the frame. */
14939 if (/* Point may be in this window. */
14940 PT >= CHARPOS (startp)
14941 /* Selective display hasn't changed. */
14942 && !current_buffer->clip_changed
14943 /* Function force-mode-line-update is used to force a thorough
14944 redisplay. It sets either windows_or_buffers_changed or
14945 update_mode_lines. So don't take a shortcut here for these
14946 cases. */
14947 && !update_mode_lines
14948 && !windows_or_buffers_changed
14949 && !cursor_type_changed
14950 /* Can't use this case if highlighting a region. When a
14951 region exists, cursor movement has to do more than just
14952 set the cursor. */
14953 && !(!NILP (Vtransient_mark_mode)
14954 && !NILP (BVAR (current_buffer, mark_active)))
14955 && NILP (w->region_showing)
14956 && NILP (Vshow_trailing_whitespace)
14957 /* Right after splitting windows, last_point may be nil. */
14958 && INTEGERP (w->last_point)
14959 /* This code is not used for mini-buffer for the sake of the case
14960 of redisplaying to replace an echo area message; since in
14961 that case the mini-buffer contents per se are usually
14962 unchanged. This code is of no real use in the mini-buffer
14963 since the handling of this_line_start_pos, etc., in redisplay
14964 handles the same cases. */
14965 && !EQ (window, minibuf_window)
14966 /* When splitting windows or for new windows, it happens that
14967 redisplay is called with a nil window_end_vpos or one being
14968 larger than the window. This should really be fixed in
14969 window.c. I don't have this on my list, now, so we do
14970 approximately the same as the old redisplay code. --gerd. */
14971 && INTEGERP (w->window_end_vpos)
14972 && XFASTINT (w->window_end_vpos) < w->current_matrix->nrows
14973 && (FRAME_WINDOW_P (f)
14974 || !overlay_arrow_in_current_buffer_p ()))
14976 int this_scroll_margin, top_scroll_margin;
14977 struct glyph_row *row = NULL;
14979 #if GLYPH_DEBUG
14980 debug_method_add (w, "cursor movement");
14981 #endif
14983 /* Scroll if point within this distance from the top or bottom
14984 of the window. This is a pixel value. */
14985 if (scroll_margin > 0)
14987 this_scroll_margin = min (scroll_margin, WINDOW_TOTAL_LINES (w) / 4);
14988 this_scroll_margin *= FRAME_LINE_HEIGHT (f);
14990 else
14991 this_scroll_margin = 0;
14993 top_scroll_margin = this_scroll_margin;
14994 if (WINDOW_WANTS_HEADER_LINE_P (w))
14995 top_scroll_margin += CURRENT_HEADER_LINE_HEIGHT (w);
14997 /* Start with the row the cursor was displayed during the last
14998 not paused redisplay. Give up if that row is not valid. */
14999 if (w->last_cursor.vpos < 0
15000 || w->last_cursor.vpos >= w->current_matrix->nrows)
15001 rc = CURSOR_MOVEMENT_MUST_SCROLL;
15002 else
15004 row = MATRIX_ROW (w->current_matrix, w->last_cursor.vpos);
15005 if (row->mode_line_p)
15006 ++row;
15007 if (!row->enabled_p)
15008 rc = CURSOR_MOVEMENT_MUST_SCROLL;
15011 if (rc == CURSOR_MOVEMENT_CANNOT_BE_USED)
15013 int scroll_p = 0, must_scroll = 0;
15014 int last_y = window_text_bottom_y (w) - this_scroll_margin;
15016 if (PT > XFASTINT (w->last_point))
15018 /* Point has moved forward. */
15019 while (MATRIX_ROW_END_CHARPOS (row) < PT
15020 && MATRIX_ROW_BOTTOM_Y (row) < last_y)
15022 xassert (row->enabled_p);
15023 ++row;
15026 /* If the end position of a row equals the start
15027 position of the next row, and PT is at that position,
15028 we would rather display cursor in the next line. */
15029 while (MATRIX_ROW_BOTTOM_Y (row) < last_y
15030 && MATRIX_ROW_END_CHARPOS (row) == PT
15031 && row < w->current_matrix->rows
15032 + w->current_matrix->nrows - 1
15033 && MATRIX_ROW_START_CHARPOS (row+1) == PT
15034 && !cursor_row_p (row))
15035 ++row;
15037 /* If within the scroll margin, scroll. Note that
15038 MATRIX_ROW_BOTTOM_Y gives the pixel position at which
15039 the next line would be drawn, and that
15040 this_scroll_margin can be zero. */
15041 if (MATRIX_ROW_BOTTOM_Y (row) > last_y
15042 || PT > MATRIX_ROW_END_CHARPOS (row)
15043 /* Line is completely visible last line in window
15044 and PT is to be set in the next line. */
15045 || (MATRIX_ROW_BOTTOM_Y (row) == last_y
15046 && PT == MATRIX_ROW_END_CHARPOS (row)
15047 && !row->ends_at_zv_p
15048 && !MATRIX_ROW_ENDS_IN_MIDDLE_OF_CHAR_P (row)))
15049 scroll_p = 1;
15051 else if (PT < XFASTINT (w->last_point))
15053 /* Cursor has to be moved backward. Note that PT >=
15054 CHARPOS (startp) because of the outer if-statement. */
15055 while (!row->mode_line_p
15056 && (MATRIX_ROW_START_CHARPOS (row) > PT
15057 || (MATRIX_ROW_START_CHARPOS (row) == PT
15058 && (MATRIX_ROW_STARTS_IN_MIDDLE_OF_CHAR_P (row)
15059 || (/* STARTS_IN_MIDDLE_OF_STRING_P (row) */
15060 row > w->current_matrix->rows
15061 && (row-1)->ends_in_newline_from_string_p))))
15062 && (row->y > top_scroll_margin
15063 || CHARPOS (startp) == BEGV))
15065 xassert (row->enabled_p);
15066 --row;
15069 /* Consider the following case: Window starts at BEGV,
15070 there is invisible, intangible text at BEGV, so that
15071 display starts at some point START > BEGV. It can
15072 happen that we are called with PT somewhere between
15073 BEGV and START. Try to handle that case. */
15074 if (row < w->current_matrix->rows
15075 || row->mode_line_p)
15077 row = w->current_matrix->rows;
15078 if (row->mode_line_p)
15079 ++row;
15082 /* Due to newlines in overlay strings, we may have to
15083 skip forward over overlay strings. */
15084 while (MATRIX_ROW_BOTTOM_Y (row) < last_y
15085 && MATRIX_ROW_END_CHARPOS (row) == PT
15086 && !cursor_row_p (row))
15087 ++row;
15089 /* If within the scroll margin, scroll. */
15090 if (row->y < top_scroll_margin
15091 && CHARPOS (startp) != BEGV)
15092 scroll_p = 1;
15094 else
15096 /* Cursor did not move. So don't scroll even if cursor line
15097 is partially visible, as it was so before. */
15098 rc = CURSOR_MOVEMENT_SUCCESS;
15101 if (PT < MATRIX_ROW_START_CHARPOS (row)
15102 || PT > MATRIX_ROW_END_CHARPOS (row))
15104 /* if PT is not in the glyph row, give up. */
15105 rc = CURSOR_MOVEMENT_MUST_SCROLL;
15106 must_scroll = 1;
15108 else if (rc != CURSOR_MOVEMENT_SUCCESS
15109 && !NILP (BVAR (XBUFFER (w->buffer), bidi_display_reordering)))
15111 struct glyph_row *row1;
15113 /* If rows are bidi-reordered and point moved, back up
15114 until we find a row that does not belong to a
15115 continuation line. This is because we must consider
15116 all rows of a continued line as candidates for the
15117 new cursor positioning, since row start and end
15118 positions change non-linearly with vertical position
15119 in such rows. */
15120 /* FIXME: Revisit this when glyph ``spilling'' in
15121 continuation lines' rows is implemented for
15122 bidi-reordered rows. */
15123 for (row1 = MATRIX_FIRST_TEXT_ROW (w->current_matrix);
15124 MATRIX_ROW_CONTINUATION_LINE_P (row);
15125 --row)
15127 /* If we hit the beginning of the displayed portion
15128 without finding the first row of a continued
15129 line, give up. */
15130 if (row <= row1)
15132 rc = CURSOR_MOVEMENT_MUST_SCROLL;
15133 break;
15135 xassert (row->enabled_p);
15138 if (must_scroll)
15140 else if (rc != CURSOR_MOVEMENT_SUCCESS
15141 && MATRIX_ROW_PARTIALLY_VISIBLE_P (w, row)
15142 /* Make sure this isn't a header line by any chance, since
15143 then MATRIX_ROW_PARTIALLY_VISIBLE_P might yield non-zero. */
15144 && !row->mode_line_p
15145 && make_cursor_line_fully_visible_p)
15147 if (PT == MATRIX_ROW_END_CHARPOS (row)
15148 && !row->ends_at_zv_p
15149 && !MATRIX_ROW_ENDS_IN_MIDDLE_OF_CHAR_P (row))
15150 rc = CURSOR_MOVEMENT_MUST_SCROLL;
15151 else if (row->height > window_box_height (w))
15153 /* If we end up in a partially visible line, let's
15154 make it fully visible, except when it's taller
15155 than the window, in which case we can't do much
15156 about it. */
15157 *scroll_step = 1;
15158 rc = CURSOR_MOVEMENT_MUST_SCROLL;
15160 else
15162 set_cursor_from_row (w, row, w->current_matrix, 0, 0, 0, 0);
15163 if (!cursor_row_fully_visible_p (w, 0, 1))
15164 rc = CURSOR_MOVEMENT_MUST_SCROLL;
15165 else
15166 rc = CURSOR_MOVEMENT_SUCCESS;
15169 else if (scroll_p)
15170 rc = CURSOR_MOVEMENT_MUST_SCROLL;
15171 else if (rc != CURSOR_MOVEMENT_SUCCESS
15172 && !NILP (BVAR (XBUFFER (w->buffer), bidi_display_reordering)))
15174 /* With bidi-reordered rows, there could be more than
15175 one candidate row whose start and end positions
15176 occlude point. We need to let set_cursor_from_row
15177 find the best candidate. */
15178 /* FIXME: Revisit this when glyph ``spilling'' in
15179 continuation lines' rows is implemented for
15180 bidi-reordered rows. */
15181 int rv = 0;
15185 int at_zv_p = 0, exact_match_p = 0;
15187 if (MATRIX_ROW_START_CHARPOS (row) <= PT
15188 && PT <= MATRIX_ROW_END_CHARPOS (row)
15189 && cursor_row_p (row))
15190 rv |= set_cursor_from_row (w, row, w->current_matrix,
15191 0, 0, 0, 0);
15192 /* As soon as we've found the exact match for point,
15193 or the first suitable row whose ends_at_zv_p flag
15194 is set, we are done. */
15195 at_zv_p =
15196 MATRIX_ROW (w->current_matrix, w->cursor.vpos)->ends_at_zv_p;
15197 if (rv && !at_zv_p
15198 && w->cursor.hpos >= 0
15199 && w->cursor.hpos < MATRIX_ROW_USED (w->current_matrix,
15200 w->cursor.vpos))
15202 struct glyph_row *candidate =
15203 MATRIX_ROW (w->current_matrix, w->cursor.vpos);
15204 struct glyph *g =
15205 candidate->glyphs[TEXT_AREA] + w->cursor.hpos;
15206 ptrdiff_t endpos = MATRIX_ROW_END_CHARPOS (candidate);
15208 exact_match_p =
15209 (BUFFERP (g->object) && g->charpos == PT)
15210 || (INTEGERP (g->object)
15211 && (g->charpos == PT
15212 || (g->charpos == 0 && endpos - 1 == PT)));
15214 if (rv && (at_zv_p || exact_match_p))
15216 rc = CURSOR_MOVEMENT_SUCCESS;
15217 break;
15219 if (MATRIX_ROW_BOTTOM_Y (row) == last_y)
15220 break;
15221 ++row;
15223 while (((MATRIX_ROW_CONTINUATION_LINE_P (row)
15224 || row->continued_p)
15225 && MATRIX_ROW_BOTTOM_Y (row) <= last_y)
15226 || (MATRIX_ROW_START_CHARPOS (row) == PT
15227 && MATRIX_ROW_BOTTOM_Y (row) < last_y));
15228 /* If we didn't find any candidate rows, or exited the
15229 loop before all the candidates were examined, signal
15230 to the caller that this method failed. */
15231 if (rc != CURSOR_MOVEMENT_SUCCESS
15232 && !(rv
15233 && !MATRIX_ROW_CONTINUATION_LINE_P (row)
15234 && !row->continued_p))
15235 rc = CURSOR_MOVEMENT_MUST_SCROLL;
15236 else if (rv)
15237 rc = CURSOR_MOVEMENT_SUCCESS;
15239 else
15243 if (set_cursor_from_row (w, row, w->current_matrix, 0, 0, 0, 0))
15245 rc = CURSOR_MOVEMENT_SUCCESS;
15246 break;
15248 ++row;
15250 while (MATRIX_ROW_BOTTOM_Y (row) < last_y
15251 && MATRIX_ROW_START_CHARPOS (row) == PT
15252 && cursor_row_p (row));
15257 return rc;
15260 #if !defined USE_TOOLKIT_SCROLL_BARS || defined USE_GTK
15261 static
15262 #endif
15263 void
15264 set_vertical_scroll_bar (struct window *w)
15266 ptrdiff_t start, end, whole;
15268 /* Calculate the start and end positions for the current window.
15269 At some point, it would be nice to choose between scrollbars
15270 which reflect the whole buffer size, with special markers
15271 indicating narrowing, and scrollbars which reflect only the
15272 visible region.
15274 Note that mini-buffers sometimes aren't displaying any text. */
15275 if (!MINI_WINDOW_P (w)
15276 || (w == XWINDOW (minibuf_window)
15277 && NILP (echo_area_buffer[0])))
15279 struct buffer *buf = XBUFFER (w->buffer);
15280 whole = BUF_ZV (buf) - BUF_BEGV (buf);
15281 start = marker_position (w->start) - BUF_BEGV (buf);
15282 /* I don't think this is guaranteed to be right. For the
15283 moment, we'll pretend it is. */
15284 end = BUF_Z (buf) - XFASTINT (w->window_end_pos) - BUF_BEGV (buf);
15286 if (end < start)
15287 end = start;
15288 if (whole < (end - start))
15289 whole = end - start;
15291 else
15292 start = end = whole = 0;
15294 /* Indicate what this scroll bar ought to be displaying now. */
15295 if (FRAME_TERMINAL (XFRAME (w->frame))->set_vertical_scroll_bar_hook)
15296 (*FRAME_TERMINAL (XFRAME (w->frame))->set_vertical_scroll_bar_hook)
15297 (w, end - start, whole, start);
15301 /* Redisplay leaf window WINDOW. JUST_THIS_ONE_P non-zero means only
15302 selected_window is redisplayed.
15304 We can return without actually redisplaying the window if
15305 fonts_changed_p is nonzero. In that case, redisplay_internal will
15306 retry. */
15308 static void
15309 redisplay_window (Lisp_Object window, int just_this_one_p)
15311 struct window *w = XWINDOW (window);
15312 struct frame *f = XFRAME (w->frame);
15313 struct buffer *buffer = XBUFFER (w->buffer);
15314 struct buffer *old = current_buffer;
15315 struct text_pos lpoint, opoint, startp;
15316 int update_mode_line;
15317 int tem;
15318 struct it it;
15319 /* Record it now because it's overwritten. */
15320 int current_matrix_up_to_date_p = 0;
15321 int used_current_matrix_p = 0;
15322 /* This is less strict than current_matrix_up_to_date_p.
15323 It indicates that the buffer contents and narrowing are unchanged. */
15324 int buffer_unchanged_p = 0;
15325 int temp_scroll_step = 0;
15326 ptrdiff_t count = SPECPDL_INDEX ();
15327 int rc;
15328 int centering_position = -1;
15329 int last_line_misfit = 0;
15330 ptrdiff_t beg_unchanged, end_unchanged;
15332 SET_TEXT_POS (lpoint, PT, PT_BYTE);
15333 opoint = lpoint;
15335 /* W must be a leaf window here. */
15336 xassert (!NILP (w->buffer));
15337 #if GLYPH_DEBUG
15338 *w->desired_matrix->method = 0;
15339 #endif
15341 restart:
15342 reconsider_clip_changes (w, buffer);
15344 /* Has the mode line to be updated? */
15345 update_mode_line = (w->update_mode_line
15346 || update_mode_lines
15347 || buffer->clip_changed
15348 || buffer->prevent_redisplay_optimizations_p);
15350 if (MINI_WINDOW_P (w))
15352 if (w == XWINDOW (echo_area_window)
15353 && !NILP (echo_area_buffer[0]))
15355 if (update_mode_line)
15356 /* We may have to update a tty frame's menu bar or a
15357 tool-bar. Example `M-x C-h C-h C-g'. */
15358 goto finish_menu_bars;
15359 else
15360 /* We've already displayed the echo area glyphs in this window. */
15361 goto finish_scroll_bars;
15363 else if ((w != XWINDOW (minibuf_window)
15364 || minibuf_level == 0)
15365 /* When buffer is nonempty, redisplay window normally. */
15366 && BUF_Z (XBUFFER (w->buffer)) == BUF_BEG (XBUFFER (w->buffer))
15367 /* Quail displays non-mini buffers in minibuffer window.
15368 In that case, redisplay the window normally. */
15369 && !NILP (Fmemq (w->buffer, Vminibuffer_list)))
15371 /* W is a mini-buffer window, but it's not active, so clear
15372 it. */
15373 int yb = window_text_bottom_y (w);
15374 struct glyph_row *row;
15375 int y;
15377 for (y = 0, row = w->desired_matrix->rows;
15378 y < yb;
15379 y += row->height, ++row)
15380 blank_row (w, row, y);
15381 goto finish_scroll_bars;
15384 clear_glyph_matrix (w->desired_matrix);
15387 /* Otherwise set up data on this window; select its buffer and point
15388 value. */
15389 /* Really select the buffer, for the sake of buffer-local
15390 variables. */
15391 set_buffer_internal_1 (XBUFFER (w->buffer));
15393 current_matrix_up_to_date_p
15394 = (!NILP (w->window_end_valid)
15395 && !current_buffer->clip_changed
15396 && !current_buffer->prevent_redisplay_optimizations_p
15397 && XFASTINT (w->last_modified) >= MODIFF
15398 && XFASTINT (w->last_overlay_modified) >= OVERLAY_MODIFF);
15400 /* Run the window-bottom-change-functions
15401 if it is possible that the text on the screen has changed
15402 (either due to modification of the text, or any other reason). */
15403 if (!current_matrix_up_to_date_p
15404 && !NILP (Vwindow_text_change_functions))
15406 safe_run_hooks (Qwindow_text_change_functions);
15407 goto restart;
15410 beg_unchanged = BEG_UNCHANGED;
15411 end_unchanged = END_UNCHANGED;
15413 SET_TEXT_POS (opoint, PT, PT_BYTE);
15415 specbind (Qinhibit_point_motion_hooks, Qt);
15417 buffer_unchanged_p
15418 = (!NILP (w->window_end_valid)
15419 && !current_buffer->clip_changed
15420 && XFASTINT (w->last_modified) >= MODIFF
15421 && XFASTINT (w->last_overlay_modified) >= OVERLAY_MODIFF);
15423 /* When windows_or_buffers_changed is non-zero, we can't rely on
15424 the window end being valid, so set it to nil there. */
15425 if (windows_or_buffers_changed)
15427 /* If window starts on a continuation line, maybe adjust the
15428 window start in case the window's width changed. */
15429 if (XMARKER (w->start)->buffer == current_buffer)
15430 compute_window_start_on_continuation_line (w);
15432 w->window_end_valid = Qnil;
15435 /* Some sanity checks. */
15436 CHECK_WINDOW_END (w);
15437 if (Z == Z_BYTE && CHARPOS (opoint) != BYTEPOS (opoint))
15438 abort ();
15439 if (BYTEPOS (opoint) < CHARPOS (opoint))
15440 abort ();
15442 /* If %c is in mode line, update it if needed. */
15443 if (!NILP (w->column_number_displayed)
15444 /* This alternative quickly identifies a common case
15445 where no change is needed. */
15446 && !(PT == XFASTINT (w->last_point)
15447 && XFASTINT (w->last_modified) >= MODIFF
15448 && XFASTINT (w->last_overlay_modified) >= OVERLAY_MODIFF)
15449 && (XFASTINT (w->column_number_displayed) != current_column ()))
15450 update_mode_line = 1;
15452 /* Count number of windows showing the selected buffer. An indirect
15453 buffer counts as its base buffer. */
15454 if (!just_this_one_p)
15456 struct buffer *current_base, *window_base;
15457 current_base = current_buffer;
15458 window_base = XBUFFER (XWINDOW (selected_window)->buffer);
15459 if (current_base->base_buffer)
15460 current_base = current_base->base_buffer;
15461 if (window_base->base_buffer)
15462 window_base = window_base->base_buffer;
15463 if (current_base == window_base)
15464 buffer_shared++;
15467 /* Point refers normally to the selected window. For any other
15468 window, set up appropriate value. */
15469 if (!EQ (window, selected_window))
15471 ptrdiff_t new_pt = XMARKER (w->pointm)->charpos;
15472 ptrdiff_t new_pt_byte = marker_byte_position (w->pointm);
15473 if (new_pt < BEGV)
15475 new_pt = BEGV;
15476 new_pt_byte = BEGV_BYTE;
15477 set_marker_both (w->pointm, Qnil, BEGV, BEGV_BYTE);
15479 else if (new_pt > (ZV - 1))
15481 new_pt = ZV;
15482 new_pt_byte = ZV_BYTE;
15483 set_marker_both (w->pointm, Qnil, ZV, ZV_BYTE);
15486 /* We don't use SET_PT so that the point-motion hooks don't run. */
15487 TEMP_SET_PT_BOTH (new_pt, new_pt_byte);
15490 /* If any of the character widths specified in the display table
15491 have changed, invalidate the width run cache. It's true that
15492 this may be a bit late to catch such changes, but the rest of
15493 redisplay goes (non-fatally) haywire when the display table is
15494 changed, so why should we worry about doing any better? */
15495 if (current_buffer->width_run_cache)
15497 struct Lisp_Char_Table *disptab = buffer_display_table ();
15499 if (! disptab_matches_widthtab (disptab,
15500 XVECTOR (BVAR (current_buffer, width_table))))
15502 invalidate_region_cache (current_buffer,
15503 current_buffer->width_run_cache,
15504 BEG, Z);
15505 recompute_width_table (current_buffer, disptab);
15509 /* If window-start is screwed up, choose a new one. */
15510 if (XMARKER (w->start)->buffer != current_buffer)
15511 goto recenter;
15513 SET_TEXT_POS_FROM_MARKER (startp, w->start);
15515 /* If someone specified a new starting point but did not insist,
15516 check whether it can be used. */
15517 if (w->optional_new_start
15518 && CHARPOS (startp) >= BEGV
15519 && CHARPOS (startp) <= ZV)
15521 w->optional_new_start = 0;
15522 start_display (&it, w, startp);
15523 move_it_to (&it, PT, 0, it.last_visible_y, -1,
15524 MOVE_TO_POS | MOVE_TO_X | MOVE_TO_Y);
15525 if (IT_CHARPOS (it) == PT)
15526 w->force_start = 1;
15527 /* IT may overshoot PT if text at PT is invisible. */
15528 else if (IT_CHARPOS (it) > PT && CHARPOS (startp) <= PT)
15529 w->force_start = 1;
15532 force_start:
15534 /* Handle case where place to start displaying has been specified,
15535 unless the specified location is outside the accessible range. */
15536 if (w->force_start || w->frozen_window_start_p)
15538 /* We set this later on if we have to adjust point. */
15539 int new_vpos = -1;
15541 w->force_start = 0;
15542 w->vscroll = 0;
15543 w->window_end_valid = Qnil;
15545 /* Forget any recorded base line for line number display. */
15546 if (!buffer_unchanged_p)
15547 w->base_line_number = Qnil;
15549 /* Redisplay the mode line. Select the buffer properly for that.
15550 Also, run the hook window-scroll-functions
15551 because we have scrolled. */
15552 /* Note, we do this after clearing force_start because
15553 if there's an error, it is better to forget about force_start
15554 than to get into an infinite loop calling the hook functions
15555 and having them get more errors. */
15556 if (!update_mode_line
15557 || ! NILP (Vwindow_scroll_functions))
15559 update_mode_line = 1;
15560 w->update_mode_line = 1;
15561 startp = run_window_scroll_functions (window, startp);
15564 w->last_modified = make_number (0);
15565 w->last_overlay_modified = make_number (0);
15566 if (CHARPOS (startp) < BEGV)
15567 SET_TEXT_POS (startp, BEGV, BEGV_BYTE);
15568 else if (CHARPOS (startp) > ZV)
15569 SET_TEXT_POS (startp, ZV, ZV_BYTE);
15571 /* Redisplay, then check if cursor has been set during the
15572 redisplay. Give up if new fonts were loaded. */
15573 /* We used to issue a CHECK_MARGINS argument to try_window here,
15574 but this causes scrolling to fail when point begins inside
15575 the scroll margin (bug#148) -- cyd */
15576 if (!try_window (window, startp, 0))
15578 w->force_start = 1;
15579 clear_glyph_matrix (w->desired_matrix);
15580 goto need_larger_matrices;
15583 if (w->cursor.vpos < 0 && !w->frozen_window_start_p)
15585 /* If point does not appear, try to move point so it does
15586 appear. The desired matrix has been built above, so we
15587 can use it here. */
15588 new_vpos = window_box_height (w) / 2;
15591 if (!cursor_row_fully_visible_p (w, 0, 0))
15593 /* Point does appear, but on a line partly visible at end of window.
15594 Move it back to a fully-visible line. */
15595 new_vpos = window_box_height (w);
15598 /* If we need to move point for either of the above reasons,
15599 now actually do it. */
15600 if (new_vpos >= 0)
15602 struct glyph_row *row;
15604 row = MATRIX_FIRST_TEXT_ROW (w->desired_matrix);
15605 while (MATRIX_ROW_BOTTOM_Y (row) < new_vpos)
15606 ++row;
15608 TEMP_SET_PT_BOTH (MATRIX_ROW_START_CHARPOS (row),
15609 MATRIX_ROW_START_BYTEPOS (row));
15611 if (w != XWINDOW (selected_window))
15612 set_marker_both (w->pointm, Qnil, PT, PT_BYTE);
15613 else if (current_buffer == old)
15614 SET_TEXT_POS (lpoint, PT, PT_BYTE);
15616 set_cursor_from_row (w, row, w->desired_matrix, 0, 0, 0, 0);
15618 /* If we are highlighting the region, then we just changed
15619 the region, so redisplay to show it. */
15620 if (!NILP (Vtransient_mark_mode)
15621 && !NILP (BVAR (current_buffer, mark_active)))
15623 clear_glyph_matrix (w->desired_matrix);
15624 if (!try_window (window, startp, 0))
15625 goto need_larger_matrices;
15629 #if GLYPH_DEBUG
15630 debug_method_add (w, "forced window start");
15631 #endif
15632 goto done;
15635 /* Handle case where text has not changed, only point, and it has
15636 not moved off the frame, and we are not retrying after hscroll.
15637 (current_matrix_up_to_date_p is nonzero when retrying.) */
15638 if (current_matrix_up_to_date_p
15639 && (rc = try_cursor_movement (window, startp, &temp_scroll_step),
15640 rc != CURSOR_MOVEMENT_CANNOT_BE_USED))
15642 switch (rc)
15644 case CURSOR_MOVEMENT_SUCCESS:
15645 used_current_matrix_p = 1;
15646 goto done;
15648 case CURSOR_MOVEMENT_MUST_SCROLL:
15649 goto try_to_scroll;
15651 default:
15652 abort ();
15655 /* If current starting point was originally the beginning of a line
15656 but no longer is, find a new starting point. */
15657 else if (w->start_at_line_beg
15658 && !(CHARPOS (startp) <= BEGV
15659 || FETCH_BYTE (BYTEPOS (startp) - 1) == '\n'))
15661 #if GLYPH_DEBUG
15662 debug_method_add (w, "recenter 1");
15663 #endif
15664 goto recenter;
15667 /* Try scrolling with try_window_id. Value is > 0 if update has
15668 been done, it is -1 if we know that the same window start will
15669 not work. It is 0 if unsuccessful for some other reason. */
15670 else if ((tem = try_window_id (w)) != 0)
15672 #if GLYPH_DEBUG
15673 debug_method_add (w, "try_window_id %d", tem);
15674 #endif
15676 if (fonts_changed_p)
15677 goto need_larger_matrices;
15678 if (tem > 0)
15679 goto done;
15681 /* Otherwise try_window_id has returned -1 which means that we
15682 don't want the alternative below this comment to execute. */
15684 else if (CHARPOS (startp) >= BEGV
15685 && CHARPOS (startp) <= ZV
15686 && PT >= CHARPOS (startp)
15687 && (CHARPOS (startp) < ZV
15688 /* Avoid starting at end of buffer. */
15689 || CHARPOS (startp) == BEGV
15690 || (XFASTINT (w->last_modified) >= MODIFF
15691 && XFASTINT (w->last_overlay_modified) >= OVERLAY_MODIFF)))
15693 int d1, d2, d3, d4, d5, d6;
15695 /* If first window line is a continuation line, and window start
15696 is inside the modified region, but the first change is before
15697 current window start, we must select a new window start.
15699 However, if this is the result of a down-mouse event (e.g. by
15700 extending the mouse-drag-overlay), we don't want to select a
15701 new window start, since that would change the position under
15702 the mouse, resulting in an unwanted mouse-movement rather
15703 than a simple mouse-click. */
15704 if (!w->start_at_line_beg
15705 && NILP (do_mouse_tracking)
15706 && CHARPOS (startp) > BEGV
15707 && CHARPOS (startp) > BEG + beg_unchanged
15708 && CHARPOS (startp) <= Z - end_unchanged
15709 /* Even if w->start_at_line_beg is nil, a new window may
15710 start at a line_beg, since that's how set_buffer_window
15711 sets it. So, we need to check the return value of
15712 compute_window_start_on_continuation_line. (See also
15713 bug#197). */
15714 && XMARKER (w->start)->buffer == current_buffer
15715 && compute_window_start_on_continuation_line (w)
15716 /* It doesn't make sense to force the window start like we
15717 do at label force_start if it is already known that point
15718 will not be visible in the resulting window, because
15719 doing so will move point from its correct position
15720 instead of scrolling the window to bring point into view.
15721 See bug#9324. */
15722 && pos_visible_p (w, PT, &d1, &d2, &d3, &d4, &d5, &d6))
15724 w->force_start = 1;
15725 SET_TEXT_POS_FROM_MARKER (startp, w->start);
15726 goto force_start;
15729 #if GLYPH_DEBUG
15730 debug_method_add (w, "same window start");
15731 #endif
15733 /* Try to redisplay starting at same place as before.
15734 If point has not moved off frame, accept the results. */
15735 if (!current_matrix_up_to_date_p
15736 /* Don't use try_window_reusing_current_matrix in this case
15737 because a window scroll function can have changed the
15738 buffer. */
15739 || !NILP (Vwindow_scroll_functions)
15740 || MINI_WINDOW_P (w)
15741 || !(used_current_matrix_p
15742 = try_window_reusing_current_matrix (w)))
15744 IF_DEBUG (debug_method_add (w, "1"));
15745 if (try_window (window, startp, TRY_WINDOW_CHECK_MARGINS) < 0)
15746 /* -1 means we need to scroll.
15747 0 means we need new matrices, but fonts_changed_p
15748 is set in that case, so we will detect it below. */
15749 goto try_to_scroll;
15752 if (fonts_changed_p)
15753 goto need_larger_matrices;
15755 if (w->cursor.vpos >= 0)
15757 if (!just_this_one_p
15758 || current_buffer->clip_changed
15759 || BEG_UNCHANGED < CHARPOS (startp))
15760 /* Forget any recorded base line for line number display. */
15761 w->base_line_number = Qnil;
15763 if (!cursor_row_fully_visible_p (w, 1, 0))
15765 clear_glyph_matrix (w->desired_matrix);
15766 last_line_misfit = 1;
15768 /* Drop through and scroll. */
15769 else
15770 goto done;
15772 else
15773 clear_glyph_matrix (w->desired_matrix);
15776 try_to_scroll:
15778 w->last_modified = make_number (0);
15779 w->last_overlay_modified = make_number (0);
15781 /* Redisplay the mode line. Select the buffer properly for that. */
15782 if (!update_mode_line)
15784 update_mode_line = 1;
15785 w->update_mode_line = 1;
15788 /* Try to scroll by specified few lines. */
15789 if ((scroll_conservatively
15790 || emacs_scroll_step
15791 || temp_scroll_step
15792 || NUMBERP (BVAR (current_buffer, scroll_up_aggressively))
15793 || NUMBERP (BVAR (current_buffer, scroll_down_aggressively)))
15794 && CHARPOS (startp) >= BEGV
15795 && CHARPOS (startp) <= ZV)
15797 /* The function returns -1 if new fonts were loaded, 1 if
15798 successful, 0 if not successful. */
15799 int ss = try_scrolling (window, just_this_one_p,
15800 scroll_conservatively,
15801 emacs_scroll_step,
15802 temp_scroll_step, last_line_misfit);
15803 switch (ss)
15805 case SCROLLING_SUCCESS:
15806 goto done;
15808 case SCROLLING_NEED_LARGER_MATRICES:
15809 goto need_larger_matrices;
15811 case SCROLLING_FAILED:
15812 break;
15814 default:
15815 abort ();
15819 /* Finally, just choose a place to start which positions point
15820 according to user preferences. */
15822 recenter:
15824 #if GLYPH_DEBUG
15825 debug_method_add (w, "recenter");
15826 #endif
15828 /* w->vscroll = 0; */
15830 /* Forget any previously recorded base line for line number display. */
15831 if (!buffer_unchanged_p)
15832 w->base_line_number = Qnil;
15834 /* Determine the window start relative to point. */
15835 init_iterator (&it, w, PT, PT_BYTE, NULL, DEFAULT_FACE_ID);
15836 it.current_y = it.last_visible_y;
15837 if (centering_position < 0)
15839 int margin =
15840 scroll_margin > 0
15841 ? min (scroll_margin, WINDOW_TOTAL_LINES (w) / 4)
15842 : 0;
15843 ptrdiff_t margin_pos = CHARPOS (startp);
15844 Lisp_Object aggressive;
15845 int scrolling_up;
15847 /* If there is a scroll margin at the top of the window, find
15848 its character position. */
15849 if (margin
15850 /* Cannot call start_display if startp is not in the
15851 accessible region of the buffer. This can happen when we
15852 have just switched to a different buffer and/or changed
15853 its restriction. In that case, startp is initialized to
15854 the character position 1 (BEGV) because we did not yet
15855 have chance to display the buffer even once. */
15856 && BEGV <= CHARPOS (startp) && CHARPOS (startp) <= ZV)
15858 struct it it1;
15859 void *it1data = NULL;
15861 SAVE_IT (it1, it, it1data);
15862 start_display (&it1, w, startp);
15863 move_it_vertically (&it1, margin * FRAME_LINE_HEIGHT (f));
15864 margin_pos = IT_CHARPOS (it1);
15865 RESTORE_IT (&it, &it, it1data);
15867 scrolling_up = PT > margin_pos;
15868 aggressive =
15869 scrolling_up
15870 ? BVAR (current_buffer, scroll_up_aggressively)
15871 : BVAR (current_buffer, scroll_down_aggressively);
15873 if (!MINI_WINDOW_P (w)
15874 && (scroll_conservatively > SCROLL_LIMIT || NUMBERP (aggressive)))
15876 int pt_offset = 0;
15878 /* Setting scroll-conservatively overrides
15879 scroll-*-aggressively. */
15880 if (!scroll_conservatively && NUMBERP (aggressive))
15882 double float_amount = XFLOATINT (aggressive);
15884 pt_offset = float_amount * WINDOW_BOX_TEXT_HEIGHT (w);
15885 if (pt_offset == 0 && float_amount > 0)
15886 pt_offset = 1;
15887 if (pt_offset && margin > 0)
15888 margin -= 1;
15890 /* Compute how much to move the window start backward from
15891 point so that point will be displayed where the user
15892 wants it. */
15893 if (scrolling_up)
15895 centering_position = it.last_visible_y;
15896 if (pt_offset)
15897 centering_position -= pt_offset;
15898 centering_position -=
15899 FRAME_LINE_HEIGHT (f) * (1 + margin + (last_line_misfit != 0))
15900 + WINDOW_HEADER_LINE_HEIGHT (w);
15901 /* Don't let point enter the scroll margin near top of
15902 the window. */
15903 if (centering_position < margin * FRAME_LINE_HEIGHT (f))
15904 centering_position = margin * FRAME_LINE_HEIGHT (f);
15906 else
15907 centering_position = margin * FRAME_LINE_HEIGHT (f) + pt_offset;
15909 else
15910 /* Set the window start half the height of the window backward
15911 from point. */
15912 centering_position = window_box_height (w) / 2;
15914 move_it_vertically_backward (&it, centering_position);
15916 xassert (IT_CHARPOS (it) >= BEGV);
15918 /* The function move_it_vertically_backward may move over more
15919 than the specified y-distance. If it->w is small, e.g. a
15920 mini-buffer window, we may end up in front of the window's
15921 display area. Start displaying at the start of the line
15922 containing PT in this case. */
15923 if (it.current_y <= 0)
15925 init_iterator (&it, w, PT, PT_BYTE, NULL, DEFAULT_FACE_ID);
15926 move_it_vertically_backward (&it, 0);
15927 it.current_y = 0;
15930 it.current_x = it.hpos = 0;
15932 /* Set the window start position here explicitly, to avoid an
15933 infinite loop in case the functions in window-scroll-functions
15934 get errors. */
15935 set_marker_both (w->start, Qnil, IT_CHARPOS (it), IT_BYTEPOS (it));
15937 /* Run scroll hooks. */
15938 startp = run_window_scroll_functions (window, it.current.pos);
15940 /* Redisplay the window. */
15941 if (!current_matrix_up_to_date_p
15942 || windows_or_buffers_changed
15943 || cursor_type_changed
15944 /* Don't use try_window_reusing_current_matrix in this case
15945 because it can have changed the buffer. */
15946 || !NILP (Vwindow_scroll_functions)
15947 || !just_this_one_p
15948 || MINI_WINDOW_P (w)
15949 || !(used_current_matrix_p
15950 = try_window_reusing_current_matrix (w)))
15951 try_window (window, startp, 0);
15953 /* If new fonts have been loaded (due to fontsets), give up. We
15954 have to start a new redisplay since we need to re-adjust glyph
15955 matrices. */
15956 if (fonts_changed_p)
15957 goto need_larger_matrices;
15959 /* If cursor did not appear assume that the middle of the window is
15960 in the first line of the window. Do it again with the next line.
15961 (Imagine a window of height 100, displaying two lines of height
15962 60. Moving back 50 from it->last_visible_y will end in the first
15963 line.) */
15964 if (w->cursor.vpos < 0)
15966 if (!NILP (w->window_end_valid)
15967 && PT >= Z - XFASTINT (w->window_end_pos))
15969 clear_glyph_matrix (w->desired_matrix);
15970 move_it_by_lines (&it, 1);
15971 try_window (window, it.current.pos, 0);
15973 else if (PT < IT_CHARPOS (it))
15975 clear_glyph_matrix (w->desired_matrix);
15976 move_it_by_lines (&it, -1);
15977 try_window (window, it.current.pos, 0);
15979 else
15981 /* Not much we can do about it. */
15985 /* Consider the following case: Window starts at BEGV, there is
15986 invisible, intangible text at BEGV, so that display starts at
15987 some point START > BEGV. It can happen that we are called with
15988 PT somewhere between BEGV and START. Try to handle that case. */
15989 if (w->cursor.vpos < 0)
15991 struct glyph_row *row = w->current_matrix->rows;
15992 if (row->mode_line_p)
15993 ++row;
15994 set_cursor_from_row (w, row, w->current_matrix, 0, 0, 0, 0);
15997 if (!cursor_row_fully_visible_p (w, 0, 0))
15999 /* If vscroll is enabled, disable it and try again. */
16000 if (w->vscroll)
16002 w->vscroll = 0;
16003 clear_glyph_matrix (w->desired_matrix);
16004 goto recenter;
16007 /* Users who set scroll-conservatively to a large number want
16008 point just above/below the scroll margin. If we ended up
16009 with point's row partially visible, move the window start to
16010 make that row fully visible and out of the margin. */
16011 if (scroll_conservatively > SCROLL_LIMIT)
16013 int margin =
16014 scroll_margin > 0
16015 ? min (scroll_margin, WINDOW_TOTAL_LINES (w) / 4)
16016 : 0;
16017 int move_down = w->cursor.vpos >= WINDOW_TOTAL_LINES (w) / 2;
16019 move_it_by_lines (&it, move_down ? margin + 1 : -(margin + 1));
16020 clear_glyph_matrix (w->desired_matrix);
16021 if (1 == try_window (window, it.current.pos,
16022 TRY_WINDOW_CHECK_MARGINS))
16023 goto done;
16026 /* If centering point failed to make the whole line visible,
16027 put point at the top instead. That has to make the whole line
16028 visible, if it can be done. */
16029 if (centering_position == 0)
16030 goto done;
16032 clear_glyph_matrix (w->desired_matrix);
16033 centering_position = 0;
16034 goto recenter;
16037 done:
16039 SET_TEXT_POS_FROM_MARKER (startp, w->start);
16040 w->start_at_line_beg = (CHARPOS (startp) == BEGV
16041 || FETCH_BYTE (BYTEPOS (startp) - 1) == '\n');
16043 /* Display the mode line, if we must. */
16044 if ((update_mode_line
16045 /* If window not full width, must redo its mode line
16046 if (a) the window to its side is being redone and
16047 (b) we do a frame-based redisplay. This is a consequence
16048 of how inverted lines are drawn in frame-based redisplay. */
16049 || (!just_this_one_p
16050 && !FRAME_WINDOW_P (f)
16051 && !WINDOW_FULL_WIDTH_P (w))
16052 /* Line number to display. */
16053 || INTEGERP (w->base_line_pos)
16054 /* Column number is displayed and different from the one displayed. */
16055 || (!NILP (w->column_number_displayed)
16056 && (XFASTINT (w->column_number_displayed) != current_column ())))
16057 /* This means that the window has a mode line. */
16058 && (WINDOW_WANTS_MODELINE_P (w)
16059 || WINDOW_WANTS_HEADER_LINE_P (w)))
16061 display_mode_lines (w);
16063 /* If mode line height has changed, arrange for a thorough
16064 immediate redisplay using the correct mode line height. */
16065 if (WINDOW_WANTS_MODELINE_P (w)
16066 && CURRENT_MODE_LINE_HEIGHT (w) != DESIRED_MODE_LINE_HEIGHT (w))
16068 fonts_changed_p = 1;
16069 MATRIX_MODE_LINE_ROW (w->current_matrix)->height
16070 = DESIRED_MODE_LINE_HEIGHT (w);
16073 /* If header line height has changed, arrange for a thorough
16074 immediate redisplay using the correct header line height. */
16075 if (WINDOW_WANTS_HEADER_LINE_P (w)
16076 && CURRENT_HEADER_LINE_HEIGHT (w) != DESIRED_HEADER_LINE_HEIGHT (w))
16078 fonts_changed_p = 1;
16079 MATRIX_HEADER_LINE_ROW (w->current_matrix)->height
16080 = DESIRED_HEADER_LINE_HEIGHT (w);
16083 if (fonts_changed_p)
16084 goto need_larger_matrices;
16087 if (!line_number_displayed
16088 && !BUFFERP (w->base_line_pos))
16090 w->base_line_pos = Qnil;
16091 w->base_line_number = Qnil;
16094 finish_menu_bars:
16096 /* When we reach a frame's selected window, redo the frame's menu bar. */
16097 if (update_mode_line
16098 && EQ (FRAME_SELECTED_WINDOW (f), window))
16100 int redisplay_menu_p = 0;
16102 if (FRAME_WINDOW_P (f))
16104 #if defined (USE_X_TOOLKIT) || defined (HAVE_NTGUI) \
16105 || defined (HAVE_NS) || defined (USE_GTK)
16106 redisplay_menu_p = FRAME_EXTERNAL_MENU_BAR (f);
16107 #else
16108 redisplay_menu_p = FRAME_MENU_BAR_LINES (f) > 0;
16109 #endif
16111 else
16112 redisplay_menu_p = FRAME_MENU_BAR_LINES (f) > 0;
16114 if (redisplay_menu_p)
16115 display_menu_bar (w);
16117 #ifdef HAVE_WINDOW_SYSTEM
16118 if (FRAME_WINDOW_P (f))
16120 #if defined (USE_GTK) || defined (HAVE_NS)
16121 if (FRAME_EXTERNAL_TOOL_BAR (f))
16122 redisplay_tool_bar (f);
16123 #else
16124 if (WINDOWP (f->tool_bar_window)
16125 && (FRAME_TOOL_BAR_LINES (f) > 0
16126 || !NILP (Vauto_resize_tool_bars))
16127 && redisplay_tool_bar (f))
16128 ignore_mouse_drag_p = 1;
16129 #endif
16131 #endif
16134 #ifdef HAVE_WINDOW_SYSTEM
16135 if (FRAME_WINDOW_P (f)
16136 && update_window_fringes (w, (just_this_one_p
16137 || (!used_current_matrix_p && !overlay_arrow_seen)
16138 || w->pseudo_window_p)))
16140 update_begin (f);
16141 BLOCK_INPUT;
16142 if (draw_window_fringes (w, 1))
16143 x_draw_vertical_border (w);
16144 UNBLOCK_INPUT;
16145 update_end (f);
16147 #endif /* HAVE_WINDOW_SYSTEM */
16149 /* We go to this label, with fonts_changed_p nonzero,
16150 if it is necessary to try again using larger glyph matrices.
16151 We have to redeem the scroll bar even in this case,
16152 because the loop in redisplay_internal expects that. */
16153 need_larger_matrices:
16155 finish_scroll_bars:
16157 if (WINDOW_HAS_VERTICAL_SCROLL_BAR (w))
16159 /* Set the thumb's position and size. */
16160 set_vertical_scroll_bar (w);
16162 /* Note that we actually used the scroll bar attached to this
16163 window, so it shouldn't be deleted at the end of redisplay. */
16164 if (FRAME_TERMINAL (f)->redeem_scroll_bar_hook)
16165 (*FRAME_TERMINAL (f)->redeem_scroll_bar_hook) (w);
16168 /* Restore current_buffer and value of point in it. The window
16169 update may have changed the buffer, so first make sure `opoint'
16170 is still valid (Bug#6177). */
16171 if (CHARPOS (opoint) < BEGV)
16172 TEMP_SET_PT_BOTH (BEGV, BEGV_BYTE);
16173 else if (CHARPOS (opoint) > ZV)
16174 TEMP_SET_PT_BOTH (Z, Z_BYTE);
16175 else
16176 TEMP_SET_PT_BOTH (CHARPOS (opoint), BYTEPOS (opoint));
16178 set_buffer_internal_1 (old);
16179 /* Avoid an abort in TEMP_SET_PT_BOTH if the buffer has become
16180 shorter. This can be caused by log truncation in *Messages*. */
16181 if (CHARPOS (lpoint) <= ZV)
16182 TEMP_SET_PT_BOTH (CHARPOS (lpoint), BYTEPOS (lpoint));
16184 unbind_to (count, Qnil);
16188 /* Build the complete desired matrix of WINDOW with a window start
16189 buffer position POS.
16191 Value is 1 if successful. It is zero if fonts were loaded during
16192 redisplay which makes re-adjusting glyph matrices necessary, and -1
16193 if point would appear in the scroll margins.
16194 (We check the former only if TRY_WINDOW_IGNORE_FONTS_CHANGE is
16195 unset in FLAGS, and the latter only if TRY_WINDOW_CHECK_MARGINS is
16196 set in FLAGS.) */
16199 try_window (Lisp_Object window, struct text_pos pos, int flags)
16201 struct window *w = XWINDOW (window);
16202 struct it it;
16203 struct glyph_row *last_text_row = NULL;
16204 struct frame *f = XFRAME (w->frame);
16206 /* Make POS the new window start. */
16207 set_marker_both (w->start, Qnil, CHARPOS (pos), BYTEPOS (pos));
16209 /* Mark cursor position as unknown. No overlay arrow seen. */
16210 w->cursor.vpos = -1;
16211 overlay_arrow_seen = 0;
16213 /* Initialize iterator and info to start at POS. */
16214 start_display (&it, w, pos);
16216 /* Display all lines of W. */
16217 while (it.current_y < it.last_visible_y)
16219 if (display_line (&it))
16220 last_text_row = it.glyph_row - 1;
16221 if (fonts_changed_p && !(flags & TRY_WINDOW_IGNORE_FONTS_CHANGE))
16222 return 0;
16225 /* Don't let the cursor end in the scroll margins. */
16226 if ((flags & TRY_WINDOW_CHECK_MARGINS)
16227 && !MINI_WINDOW_P (w))
16229 int this_scroll_margin;
16231 if (scroll_margin > 0)
16233 this_scroll_margin = min (scroll_margin, WINDOW_TOTAL_LINES (w) / 4);
16234 this_scroll_margin *= FRAME_LINE_HEIGHT (f);
16236 else
16237 this_scroll_margin = 0;
16239 if ((w->cursor.y >= 0 /* not vscrolled */
16240 && w->cursor.y < this_scroll_margin
16241 && CHARPOS (pos) > BEGV
16242 && IT_CHARPOS (it) < ZV)
16243 /* rms: considering make_cursor_line_fully_visible_p here
16244 seems to give wrong results. We don't want to recenter
16245 when the last line is partly visible, we want to allow
16246 that case to be handled in the usual way. */
16247 || w->cursor.y > it.last_visible_y - this_scroll_margin - 1)
16249 w->cursor.vpos = -1;
16250 clear_glyph_matrix (w->desired_matrix);
16251 return -1;
16255 /* If bottom moved off end of frame, change mode line percentage. */
16256 if (XFASTINT (w->window_end_pos) <= 0
16257 && Z != IT_CHARPOS (it))
16258 w->update_mode_line = 1;
16260 /* Set window_end_pos to the offset of the last character displayed
16261 on the window from the end of current_buffer. Set
16262 window_end_vpos to its row number. */
16263 if (last_text_row)
16265 xassert (MATRIX_ROW_DISPLAYS_TEXT_P (last_text_row));
16266 w->window_end_bytepos
16267 = Z_BYTE - MATRIX_ROW_END_BYTEPOS (last_text_row);
16268 w->window_end_pos
16269 = make_number (Z - MATRIX_ROW_END_CHARPOS (last_text_row));
16270 w->window_end_vpos
16271 = make_number (MATRIX_ROW_VPOS (last_text_row, w->desired_matrix));
16272 xassert (MATRIX_ROW (w->desired_matrix, XFASTINT (w->window_end_vpos))
16273 ->displays_text_p);
16275 else
16277 w->window_end_bytepos = Z_BYTE - ZV_BYTE;
16278 w->window_end_pos = make_number (Z - ZV);
16279 w->window_end_vpos = make_number (0);
16282 /* But that is not valid info until redisplay finishes. */
16283 w->window_end_valid = Qnil;
16284 return 1;
16289 /************************************************************************
16290 Window redisplay reusing current matrix when buffer has not changed
16291 ************************************************************************/
16293 /* Try redisplay of window W showing an unchanged buffer with a
16294 different window start than the last time it was displayed by
16295 reusing its current matrix. Value is non-zero if successful.
16296 W->start is the new window start. */
16298 static int
16299 try_window_reusing_current_matrix (struct window *w)
16301 struct frame *f = XFRAME (w->frame);
16302 struct glyph_row *bottom_row;
16303 struct it it;
16304 struct run run;
16305 struct text_pos start, new_start;
16306 int nrows_scrolled, i;
16307 struct glyph_row *last_text_row;
16308 struct glyph_row *last_reused_text_row;
16309 struct glyph_row *start_row;
16310 int start_vpos, min_y, max_y;
16312 #if GLYPH_DEBUG
16313 if (inhibit_try_window_reusing)
16314 return 0;
16315 #endif
16317 if (/* This function doesn't handle terminal frames. */
16318 !FRAME_WINDOW_P (f)
16319 /* Don't try to reuse the display if windows have been split
16320 or such. */
16321 || windows_or_buffers_changed
16322 || cursor_type_changed)
16323 return 0;
16325 /* Can't do this if region may have changed. */
16326 if ((!NILP (Vtransient_mark_mode)
16327 && !NILP (BVAR (current_buffer, mark_active)))
16328 || !NILP (w->region_showing)
16329 || !NILP (Vshow_trailing_whitespace))
16330 return 0;
16332 /* If top-line visibility has changed, give up. */
16333 if (WINDOW_WANTS_HEADER_LINE_P (w)
16334 != MATRIX_HEADER_LINE_ROW (w->current_matrix)->mode_line_p)
16335 return 0;
16337 /* Give up if old or new display is scrolled vertically. We could
16338 make this function handle this, but right now it doesn't. */
16339 start_row = MATRIX_FIRST_TEXT_ROW (w->current_matrix);
16340 if (w->vscroll || MATRIX_ROW_PARTIALLY_VISIBLE_P (w, start_row))
16341 return 0;
16343 /* The variable new_start now holds the new window start. The old
16344 start `start' can be determined from the current matrix. */
16345 SET_TEXT_POS_FROM_MARKER (new_start, w->start);
16346 start = start_row->minpos;
16347 start_vpos = MATRIX_ROW_VPOS (start_row, w->current_matrix);
16349 /* Clear the desired matrix for the display below. */
16350 clear_glyph_matrix (w->desired_matrix);
16352 if (CHARPOS (new_start) <= CHARPOS (start))
16354 /* Don't use this method if the display starts with an ellipsis
16355 displayed for invisible text. It's not easy to handle that case
16356 below, and it's certainly not worth the effort since this is
16357 not a frequent case. */
16358 if (in_ellipses_for_invisible_text_p (&start_row->start, w))
16359 return 0;
16361 IF_DEBUG (debug_method_add (w, "twu1"));
16363 /* Display up to a row that can be reused. The variable
16364 last_text_row is set to the last row displayed that displays
16365 text. Note that it.vpos == 0 if or if not there is a
16366 header-line; it's not the same as the MATRIX_ROW_VPOS! */
16367 start_display (&it, w, new_start);
16368 w->cursor.vpos = -1;
16369 last_text_row = last_reused_text_row = NULL;
16371 while (it.current_y < it.last_visible_y
16372 && !fonts_changed_p)
16374 /* If we have reached into the characters in the START row,
16375 that means the line boundaries have changed. So we
16376 can't start copying with the row START. Maybe it will
16377 work to start copying with the following row. */
16378 while (IT_CHARPOS (it) > CHARPOS (start))
16380 /* Advance to the next row as the "start". */
16381 start_row++;
16382 start = start_row->minpos;
16383 /* If there are no more rows to try, or just one, give up. */
16384 if (start_row == MATRIX_MODE_LINE_ROW (w->current_matrix) - 1
16385 || w->vscroll || MATRIX_ROW_PARTIALLY_VISIBLE_P (w, start_row)
16386 || CHARPOS (start) == ZV)
16388 clear_glyph_matrix (w->desired_matrix);
16389 return 0;
16392 start_vpos = MATRIX_ROW_VPOS (start_row, w->current_matrix);
16394 /* If we have reached alignment, we can copy the rest of the
16395 rows. */
16396 if (IT_CHARPOS (it) == CHARPOS (start)
16397 /* Don't accept "alignment" inside a display vector,
16398 since start_row could have started in the middle of
16399 that same display vector (thus their character
16400 positions match), and we have no way of telling if
16401 that is the case. */
16402 && it.current.dpvec_index < 0)
16403 break;
16405 if (display_line (&it))
16406 last_text_row = it.glyph_row - 1;
16410 /* A value of current_y < last_visible_y means that we stopped
16411 at the previous window start, which in turn means that we
16412 have at least one reusable row. */
16413 if (it.current_y < it.last_visible_y)
16415 struct glyph_row *row;
16417 /* IT.vpos always starts from 0; it counts text lines. */
16418 nrows_scrolled = it.vpos - (start_row - MATRIX_FIRST_TEXT_ROW (w->current_matrix));
16420 /* Find PT if not already found in the lines displayed. */
16421 if (w->cursor.vpos < 0)
16423 int dy = it.current_y - start_row->y;
16425 row = MATRIX_FIRST_TEXT_ROW (w->current_matrix);
16426 row = row_containing_pos (w, PT, row, NULL, dy);
16427 if (row)
16428 set_cursor_from_row (w, row, w->current_matrix, 0, 0,
16429 dy, nrows_scrolled);
16430 else
16432 clear_glyph_matrix (w->desired_matrix);
16433 return 0;
16437 /* Scroll the display. Do it before the current matrix is
16438 changed. The problem here is that update has not yet
16439 run, i.e. part of the current matrix is not up to date.
16440 scroll_run_hook will clear the cursor, and use the
16441 current matrix to get the height of the row the cursor is
16442 in. */
16443 run.current_y = start_row->y;
16444 run.desired_y = it.current_y;
16445 run.height = it.last_visible_y - it.current_y;
16447 if (run.height > 0 && run.current_y != run.desired_y)
16449 update_begin (f);
16450 FRAME_RIF (f)->update_window_begin_hook (w);
16451 FRAME_RIF (f)->clear_window_mouse_face (w);
16452 FRAME_RIF (f)->scroll_run_hook (w, &run);
16453 FRAME_RIF (f)->update_window_end_hook (w, 0, 0);
16454 update_end (f);
16457 /* Shift current matrix down by nrows_scrolled lines. */
16458 bottom_row = MATRIX_BOTTOM_TEXT_ROW (w->current_matrix, w);
16459 rotate_matrix (w->current_matrix,
16460 start_vpos,
16461 MATRIX_ROW_VPOS (bottom_row, w->current_matrix),
16462 nrows_scrolled);
16464 /* Disable lines that must be updated. */
16465 for (i = 0; i < nrows_scrolled; ++i)
16466 (start_row + i)->enabled_p = 0;
16468 /* Re-compute Y positions. */
16469 min_y = WINDOW_HEADER_LINE_HEIGHT (w);
16470 max_y = it.last_visible_y;
16471 for (row = start_row + nrows_scrolled;
16472 row < bottom_row;
16473 ++row)
16475 row->y = it.current_y;
16476 row->visible_height = row->height;
16478 if (row->y < min_y)
16479 row->visible_height -= min_y - row->y;
16480 if (row->y + row->height > max_y)
16481 row->visible_height -= row->y + row->height - max_y;
16482 if (row->fringe_bitmap_periodic_p)
16483 row->redraw_fringe_bitmaps_p = 1;
16485 it.current_y += row->height;
16487 if (MATRIX_ROW_DISPLAYS_TEXT_P (row))
16488 last_reused_text_row = row;
16489 if (MATRIX_ROW_BOTTOM_Y (row) >= it.last_visible_y)
16490 break;
16493 /* Disable lines in the current matrix which are now
16494 below the window. */
16495 for (++row; row < bottom_row; ++row)
16496 row->enabled_p = row->mode_line_p = 0;
16499 /* Update window_end_pos etc.; last_reused_text_row is the last
16500 reused row from the current matrix containing text, if any.
16501 The value of last_text_row is the last displayed line
16502 containing text. */
16503 if (last_reused_text_row)
16505 w->window_end_bytepos
16506 = Z_BYTE - MATRIX_ROW_END_BYTEPOS (last_reused_text_row);
16507 w->window_end_pos
16508 = make_number (Z - MATRIX_ROW_END_CHARPOS (last_reused_text_row));
16509 w->window_end_vpos
16510 = make_number (MATRIX_ROW_VPOS (last_reused_text_row,
16511 w->current_matrix));
16513 else if (last_text_row)
16515 w->window_end_bytepos
16516 = Z_BYTE - MATRIX_ROW_END_BYTEPOS (last_text_row);
16517 w->window_end_pos
16518 = make_number (Z - MATRIX_ROW_END_CHARPOS (last_text_row));
16519 w->window_end_vpos
16520 = make_number (MATRIX_ROW_VPOS (last_text_row, w->desired_matrix));
16522 else
16524 /* This window must be completely empty. */
16525 w->window_end_bytepos = Z_BYTE - ZV_BYTE;
16526 w->window_end_pos = make_number (Z - ZV);
16527 w->window_end_vpos = make_number (0);
16529 w->window_end_valid = Qnil;
16531 /* Update hint: don't try scrolling again in update_window. */
16532 w->desired_matrix->no_scrolling_p = 1;
16534 #if GLYPH_DEBUG
16535 debug_method_add (w, "try_window_reusing_current_matrix 1");
16536 #endif
16537 return 1;
16539 else if (CHARPOS (new_start) > CHARPOS (start))
16541 struct glyph_row *pt_row, *row;
16542 struct glyph_row *first_reusable_row;
16543 struct glyph_row *first_row_to_display;
16544 int dy;
16545 int yb = window_text_bottom_y (w);
16547 /* Find the row starting at new_start, if there is one. Don't
16548 reuse a partially visible line at the end. */
16549 first_reusable_row = start_row;
16550 while (first_reusable_row->enabled_p
16551 && MATRIX_ROW_BOTTOM_Y (first_reusable_row) < yb
16552 && (MATRIX_ROW_START_CHARPOS (first_reusable_row)
16553 < CHARPOS (new_start)))
16554 ++first_reusable_row;
16556 /* Give up if there is no row to reuse. */
16557 if (MATRIX_ROW_BOTTOM_Y (first_reusable_row) >= yb
16558 || !first_reusable_row->enabled_p
16559 || (MATRIX_ROW_START_CHARPOS (first_reusable_row)
16560 != CHARPOS (new_start)))
16561 return 0;
16563 /* We can reuse fully visible rows beginning with
16564 first_reusable_row to the end of the window. Set
16565 first_row_to_display to the first row that cannot be reused.
16566 Set pt_row to the row containing point, if there is any. */
16567 pt_row = NULL;
16568 for (first_row_to_display = first_reusable_row;
16569 MATRIX_ROW_BOTTOM_Y (first_row_to_display) < yb;
16570 ++first_row_to_display)
16572 if (PT >= MATRIX_ROW_START_CHARPOS (first_row_to_display)
16573 && (PT < MATRIX_ROW_END_CHARPOS (first_row_to_display)
16574 || (PT == MATRIX_ROW_END_CHARPOS (first_row_to_display)
16575 && first_row_to_display->ends_at_zv_p
16576 && pt_row == NULL)))
16577 pt_row = first_row_to_display;
16580 /* Start displaying at the start of first_row_to_display. */
16581 xassert (first_row_to_display->y < yb);
16582 init_to_row_start (&it, w, first_row_to_display);
16584 nrows_scrolled = (MATRIX_ROW_VPOS (first_reusable_row, w->current_matrix)
16585 - start_vpos);
16586 it.vpos = (MATRIX_ROW_VPOS (first_row_to_display, w->current_matrix)
16587 - nrows_scrolled);
16588 it.current_y = (first_row_to_display->y - first_reusable_row->y
16589 + WINDOW_HEADER_LINE_HEIGHT (w));
16591 /* Display lines beginning with first_row_to_display in the
16592 desired matrix. Set last_text_row to the last row displayed
16593 that displays text. */
16594 it.glyph_row = MATRIX_ROW (w->desired_matrix, it.vpos);
16595 if (pt_row == NULL)
16596 w->cursor.vpos = -1;
16597 last_text_row = NULL;
16598 while (it.current_y < it.last_visible_y && !fonts_changed_p)
16599 if (display_line (&it))
16600 last_text_row = it.glyph_row - 1;
16602 /* If point is in a reused row, adjust y and vpos of the cursor
16603 position. */
16604 if (pt_row)
16606 w->cursor.vpos -= nrows_scrolled;
16607 w->cursor.y -= first_reusable_row->y - start_row->y;
16610 /* Give up if point isn't in a row displayed or reused. (This
16611 also handles the case where w->cursor.vpos < nrows_scrolled
16612 after the calls to display_line, which can happen with scroll
16613 margins. See bug#1295.) */
16614 if (w->cursor.vpos < 0)
16616 clear_glyph_matrix (w->desired_matrix);
16617 return 0;
16620 /* Scroll the display. */
16621 run.current_y = first_reusable_row->y;
16622 run.desired_y = WINDOW_HEADER_LINE_HEIGHT (w);
16623 run.height = it.last_visible_y - run.current_y;
16624 dy = run.current_y - run.desired_y;
16626 if (run.height)
16628 update_begin (f);
16629 FRAME_RIF (f)->update_window_begin_hook (w);
16630 FRAME_RIF (f)->clear_window_mouse_face (w);
16631 FRAME_RIF (f)->scroll_run_hook (w, &run);
16632 FRAME_RIF (f)->update_window_end_hook (w, 0, 0);
16633 update_end (f);
16636 /* Adjust Y positions of reused rows. */
16637 bottom_row = MATRIX_BOTTOM_TEXT_ROW (w->current_matrix, w);
16638 min_y = WINDOW_HEADER_LINE_HEIGHT (w);
16639 max_y = it.last_visible_y;
16640 for (row = first_reusable_row; row < first_row_to_display; ++row)
16642 row->y -= dy;
16643 row->visible_height = row->height;
16644 if (row->y < min_y)
16645 row->visible_height -= min_y - row->y;
16646 if (row->y + row->height > max_y)
16647 row->visible_height -= row->y + row->height - max_y;
16648 if (row->fringe_bitmap_periodic_p)
16649 row->redraw_fringe_bitmaps_p = 1;
16652 /* Scroll the current matrix. */
16653 xassert (nrows_scrolled > 0);
16654 rotate_matrix (w->current_matrix,
16655 start_vpos,
16656 MATRIX_ROW_VPOS (bottom_row, w->current_matrix),
16657 -nrows_scrolled);
16659 /* Disable rows not reused. */
16660 for (row -= nrows_scrolled; row < bottom_row; ++row)
16661 row->enabled_p = 0;
16663 /* Point may have moved to a different line, so we cannot assume that
16664 the previous cursor position is valid; locate the correct row. */
16665 if (pt_row)
16667 for (row = MATRIX_ROW (w->current_matrix, w->cursor.vpos);
16668 row < bottom_row
16669 && PT >= MATRIX_ROW_END_CHARPOS (row)
16670 && !row->ends_at_zv_p;
16671 row++)
16673 w->cursor.vpos++;
16674 w->cursor.y = row->y;
16676 if (row < bottom_row)
16678 struct glyph *glyph = row->glyphs[TEXT_AREA] + w->cursor.hpos;
16679 struct glyph *end = row->glyphs[TEXT_AREA] + row->used[TEXT_AREA];
16681 /* Can't use this optimization with bidi-reordered glyph
16682 rows, unless cursor is already at point. */
16683 if (!NILP (BVAR (XBUFFER (w->buffer), bidi_display_reordering)))
16685 if (!(w->cursor.hpos >= 0
16686 && w->cursor.hpos < row->used[TEXT_AREA]
16687 && BUFFERP (glyph->object)
16688 && glyph->charpos == PT))
16689 return 0;
16691 else
16692 for (; glyph < end
16693 && (!BUFFERP (glyph->object)
16694 || glyph->charpos < PT);
16695 glyph++)
16697 w->cursor.hpos++;
16698 w->cursor.x += glyph->pixel_width;
16703 /* Adjust window end. A null value of last_text_row means that
16704 the window end is in reused rows which in turn means that
16705 only its vpos can have changed. */
16706 if (last_text_row)
16708 w->window_end_bytepos
16709 = Z_BYTE - MATRIX_ROW_END_BYTEPOS (last_text_row);
16710 w->window_end_pos
16711 = make_number (Z - MATRIX_ROW_END_CHARPOS (last_text_row));
16712 w->window_end_vpos
16713 = make_number (MATRIX_ROW_VPOS (last_text_row, w->desired_matrix));
16715 else
16717 w->window_end_vpos
16718 = make_number (XFASTINT (w->window_end_vpos) - nrows_scrolled);
16721 w->window_end_valid = Qnil;
16722 w->desired_matrix->no_scrolling_p = 1;
16724 #if GLYPH_DEBUG
16725 debug_method_add (w, "try_window_reusing_current_matrix 2");
16726 #endif
16727 return 1;
16730 return 0;
16735 /************************************************************************
16736 Window redisplay reusing current matrix when buffer has changed
16737 ************************************************************************/
16739 static struct glyph_row *find_last_unchanged_at_beg_row (struct window *);
16740 static struct glyph_row *find_first_unchanged_at_end_row (struct window *,
16741 ptrdiff_t *, ptrdiff_t *);
16742 static struct glyph_row *
16743 find_last_row_displaying_text (struct glyph_matrix *, struct it *,
16744 struct glyph_row *);
16747 /* Return the last row in MATRIX displaying text. If row START is
16748 non-null, start searching with that row. IT gives the dimensions
16749 of the display. Value is null if matrix is empty; otherwise it is
16750 a pointer to the row found. */
16752 static struct glyph_row *
16753 find_last_row_displaying_text (struct glyph_matrix *matrix, struct it *it,
16754 struct glyph_row *start)
16756 struct glyph_row *row, *row_found;
16758 /* Set row_found to the last row in IT->w's current matrix
16759 displaying text. The loop looks funny but think of partially
16760 visible lines. */
16761 row_found = NULL;
16762 row = start ? start : MATRIX_FIRST_TEXT_ROW (matrix);
16763 while (MATRIX_ROW_DISPLAYS_TEXT_P (row))
16765 xassert (row->enabled_p);
16766 row_found = row;
16767 if (MATRIX_ROW_BOTTOM_Y (row) >= it->last_visible_y)
16768 break;
16769 ++row;
16772 return row_found;
16776 /* Return the last row in the current matrix of W that is not affected
16777 by changes at the start of current_buffer that occurred since W's
16778 current matrix was built. Value is null if no such row exists.
16780 BEG_UNCHANGED us the number of characters unchanged at the start of
16781 current_buffer. BEG + BEG_UNCHANGED is the buffer position of the
16782 first changed character in current_buffer. Characters at positions <
16783 BEG + BEG_UNCHANGED are at the same buffer positions as they were
16784 when the current matrix was built. */
16786 static struct glyph_row *
16787 find_last_unchanged_at_beg_row (struct window *w)
16789 ptrdiff_t first_changed_pos = BEG + BEG_UNCHANGED;
16790 struct glyph_row *row;
16791 struct glyph_row *row_found = NULL;
16792 int yb = window_text_bottom_y (w);
16794 /* Find the last row displaying unchanged text. */
16795 for (row = MATRIX_FIRST_TEXT_ROW (w->current_matrix);
16796 MATRIX_ROW_DISPLAYS_TEXT_P (row)
16797 && MATRIX_ROW_START_CHARPOS (row) < first_changed_pos;
16798 ++row)
16800 if (/* If row ends before first_changed_pos, it is unchanged,
16801 except in some case. */
16802 MATRIX_ROW_END_CHARPOS (row) <= first_changed_pos
16803 /* When row ends in ZV and we write at ZV it is not
16804 unchanged. */
16805 && !row->ends_at_zv_p
16806 /* When first_changed_pos is the end of a continued line,
16807 row is not unchanged because it may be no longer
16808 continued. */
16809 && !(MATRIX_ROW_END_CHARPOS (row) == first_changed_pos
16810 && (row->continued_p
16811 || row->exact_window_width_line_p))
16812 /* If ROW->end is beyond ZV, then ROW->end is outdated and
16813 needs to be recomputed, so don't consider this row as
16814 unchanged. This happens when the last line was
16815 bidi-reordered and was killed immediately before this
16816 redisplay cycle. In that case, ROW->end stores the
16817 buffer position of the first visual-order character of
16818 the killed text, which is now beyond ZV. */
16819 && CHARPOS (row->end.pos) <= ZV)
16820 row_found = row;
16822 /* Stop if last visible row. */
16823 if (MATRIX_ROW_BOTTOM_Y (row) >= yb)
16824 break;
16827 return row_found;
16831 /* Find the first glyph row in the current matrix of W that is not
16832 affected by changes at the end of current_buffer since the
16833 time W's current matrix was built.
16835 Return in *DELTA the number of chars by which buffer positions in
16836 unchanged text at the end of current_buffer must be adjusted.
16838 Return in *DELTA_BYTES the corresponding number of bytes.
16840 Value is null if no such row exists, i.e. all rows are affected by
16841 changes. */
16843 static struct glyph_row *
16844 find_first_unchanged_at_end_row (struct window *w,
16845 ptrdiff_t *delta, ptrdiff_t *delta_bytes)
16847 struct glyph_row *row;
16848 struct glyph_row *row_found = NULL;
16850 *delta = *delta_bytes = 0;
16852 /* Display must not have been paused, otherwise the current matrix
16853 is not up to date. */
16854 eassert (!NILP (w->window_end_valid));
16856 /* A value of window_end_pos >= END_UNCHANGED means that the window
16857 end is in the range of changed text. If so, there is no
16858 unchanged row at the end of W's current matrix. */
16859 if (XFASTINT (w->window_end_pos) >= END_UNCHANGED)
16860 return NULL;
16862 /* Set row to the last row in W's current matrix displaying text. */
16863 row = MATRIX_ROW (w->current_matrix, XFASTINT (w->window_end_vpos));
16865 /* If matrix is entirely empty, no unchanged row exists. */
16866 if (MATRIX_ROW_DISPLAYS_TEXT_P (row))
16868 /* The value of row is the last glyph row in the matrix having a
16869 meaningful buffer position in it. The end position of row
16870 corresponds to window_end_pos. This allows us to translate
16871 buffer positions in the current matrix to current buffer
16872 positions for characters not in changed text. */
16873 ptrdiff_t Z_old =
16874 MATRIX_ROW_END_CHARPOS (row) + XFASTINT (w->window_end_pos);
16875 ptrdiff_t Z_BYTE_old =
16876 MATRIX_ROW_END_BYTEPOS (row) + w->window_end_bytepos;
16877 ptrdiff_t last_unchanged_pos, last_unchanged_pos_old;
16878 struct glyph_row *first_text_row
16879 = MATRIX_FIRST_TEXT_ROW (w->current_matrix);
16881 *delta = Z - Z_old;
16882 *delta_bytes = Z_BYTE - Z_BYTE_old;
16884 /* Set last_unchanged_pos to the buffer position of the last
16885 character in the buffer that has not been changed. Z is the
16886 index + 1 of the last character in current_buffer, i.e. by
16887 subtracting END_UNCHANGED we get the index of the last
16888 unchanged character, and we have to add BEG to get its buffer
16889 position. */
16890 last_unchanged_pos = Z - END_UNCHANGED + BEG;
16891 last_unchanged_pos_old = last_unchanged_pos - *delta;
16893 /* Search backward from ROW for a row displaying a line that
16894 starts at a minimum position >= last_unchanged_pos_old. */
16895 for (; row > first_text_row; --row)
16897 /* This used to abort, but it can happen.
16898 It is ok to just stop the search instead here. KFS. */
16899 if (!row->enabled_p || !MATRIX_ROW_DISPLAYS_TEXT_P (row))
16900 break;
16902 if (MATRIX_ROW_START_CHARPOS (row) >= last_unchanged_pos_old)
16903 row_found = row;
16907 eassert (!row_found || MATRIX_ROW_DISPLAYS_TEXT_P (row_found));
16909 return row_found;
16913 /* Make sure that glyph rows in the current matrix of window W
16914 reference the same glyph memory as corresponding rows in the
16915 frame's frame matrix. This function is called after scrolling W's
16916 current matrix on a terminal frame in try_window_id and
16917 try_window_reusing_current_matrix. */
16919 static void
16920 sync_frame_with_window_matrix_rows (struct window *w)
16922 struct frame *f = XFRAME (w->frame);
16923 struct glyph_row *window_row, *window_row_end, *frame_row;
16925 /* Preconditions: W must be a leaf window and full-width. Its frame
16926 must have a frame matrix. */
16927 xassert (NILP (w->hchild) && NILP (w->vchild));
16928 xassert (WINDOW_FULL_WIDTH_P (w));
16929 xassert (!FRAME_WINDOW_P (f));
16931 /* If W is a full-width window, glyph pointers in W's current matrix
16932 have, by definition, to be the same as glyph pointers in the
16933 corresponding frame matrix. Note that frame matrices have no
16934 marginal areas (see build_frame_matrix). */
16935 window_row = w->current_matrix->rows;
16936 window_row_end = window_row + w->current_matrix->nrows;
16937 frame_row = f->current_matrix->rows + WINDOW_TOP_EDGE_LINE (w);
16938 while (window_row < window_row_end)
16940 struct glyph *start = window_row->glyphs[LEFT_MARGIN_AREA];
16941 struct glyph *end = window_row->glyphs[LAST_AREA];
16943 frame_row->glyphs[LEFT_MARGIN_AREA] = start;
16944 frame_row->glyphs[TEXT_AREA] = start;
16945 frame_row->glyphs[RIGHT_MARGIN_AREA] = end;
16946 frame_row->glyphs[LAST_AREA] = end;
16948 /* Disable frame rows whose corresponding window rows have
16949 been disabled in try_window_id. */
16950 if (!window_row->enabled_p)
16951 frame_row->enabled_p = 0;
16953 ++window_row, ++frame_row;
16958 /* Find the glyph row in window W containing CHARPOS. Consider all
16959 rows between START and END (not inclusive). END null means search
16960 all rows to the end of the display area of W. Value is the row
16961 containing CHARPOS or null. */
16963 struct glyph_row *
16964 row_containing_pos (struct window *w, ptrdiff_t charpos,
16965 struct glyph_row *start, struct glyph_row *end, int dy)
16967 struct glyph_row *row = start;
16968 struct glyph_row *best_row = NULL;
16969 ptrdiff_t mindif = BUF_ZV (XBUFFER (w->buffer)) + 1;
16970 int last_y;
16972 /* If we happen to start on a header-line, skip that. */
16973 if (row->mode_line_p)
16974 ++row;
16976 if ((end && row >= end) || !row->enabled_p)
16977 return NULL;
16979 last_y = window_text_bottom_y (w) - dy;
16981 while (1)
16983 /* Give up if we have gone too far. */
16984 if (end && row >= end)
16985 return NULL;
16986 /* This formerly returned if they were equal.
16987 I think that both quantities are of a "last plus one" type;
16988 if so, when they are equal, the row is within the screen. -- rms. */
16989 if (MATRIX_ROW_BOTTOM_Y (row) > last_y)
16990 return NULL;
16992 /* If it is in this row, return this row. */
16993 if (! (MATRIX_ROW_END_CHARPOS (row) < charpos
16994 || (MATRIX_ROW_END_CHARPOS (row) == charpos
16995 /* The end position of a row equals the start
16996 position of the next row. If CHARPOS is there, we
16997 would rather display it in the next line, except
16998 when this line ends in ZV. */
16999 && !row->ends_at_zv_p
17000 && !MATRIX_ROW_ENDS_IN_MIDDLE_OF_CHAR_P (row)))
17001 && charpos >= MATRIX_ROW_START_CHARPOS (row))
17003 struct glyph *g;
17005 if (NILP (BVAR (XBUFFER (w->buffer), bidi_display_reordering))
17006 || (!best_row && !row->continued_p))
17007 return row;
17008 /* In bidi-reordered rows, there could be several rows
17009 occluding point, all of them belonging to the same
17010 continued line. We need to find the row which fits
17011 CHARPOS the best. */
17012 for (g = row->glyphs[TEXT_AREA];
17013 g < row->glyphs[TEXT_AREA] + row->used[TEXT_AREA];
17014 g++)
17016 if (!STRINGP (g->object))
17018 if (g->charpos > 0 && eabs (g->charpos - charpos) < mindif)
17020 mindif = eabs (g->charpos - charpos);
17021 best_row = row;
17022 /* Exact match always wins. */
17023 if (mindif == 0)
17024 return best_row;
17029 else if (best_row && !row->continued_p)
17030 return best_row;
17031 ++row;
17036 /* Try to redisplay window W by reusing its existing display. W's
17037 current matrix must be up to date when this function is called,
17038 i.e. window_end_valid must not be nil.
17040 Value is
17042 1 if display has been updated
17043 0 if otherwise unsuccessful
17044 -1 if redisplay with same window start is known not to succeed
17046 The following steps are performed:
17048 1. Find the last row in the current matrix of W that is not
17049 affected by changes at the start of current_buffer. If no such row
17050 is found, give up.
17052 2. Find the first row in W's current matrix that is not affected by
17053 changes at the end of current_buffer. Maybe there is no such row.
17055 3. Display lines beginning with the row + 1 found in step 1 to the
17056 row found in step 2 or, if step 2 didn't find a row, to the end of
17057 the window.
17059 4. If cursor is not known to appear on the window, give up.
17061 5. If display stopped at the row found in step 2, scroll the
17062 display and current matrix as needed.
17064 6. Maybe display some lines at the end of W, if we must. This can
17065 happen under various circumstances, like a partially visible line
17066 becoming fully visible, or because newly displayed lines are displayed
17067 in smaller font sizes.
17069 7. Update W's window end information. */
17071 static int
17072 try_window_id (struct window *w)
17074 struct frame *f = XFRAME (w->frame);
17075 struct glyph_matrix *current_matrix = w->current_matrix;
17076 struct glyph_matrix *desired_matrix = w->desired_matrix;
17077 struct glyph_row *last_unchanged_at_beg_row;
17078 struct glyph_row *first_unchanged_at_end_row;
17079 struct glyph_row *row;
17080 struct glyph_row *bottom_row;
17081 int bottom_vpos;
17082 struct it it;
17083 ptrdiff_t delta = 0, delta_bytes = 0, stop_pos;
17084 int dvpos, dy;
17085 struct text_pos start_pos;
17086 struct run run;
17087 int first_unchanged_at_end_vpos = 0;
17088 struct glyph_row *last_text_row, *last_text_row_at_end;
17089 struct text_pos start;
17090 ptrdiff_t first_changed_charpos, last_changed_charpos;
17092 #if GLYPH_DEBUG
17093 if (inhibit_try_window_id)
17094 return 0;
17095 #endif
17097 /* This is handy for debugging. */
17098 #if 0
17099 #define GIVE_UP(X) \
17100 do { \
17101 fprintf (stderr, "try_window_id give up %d\n", (X)); \
17102 return 0; \
17103 } while (0)
17104 #else
17105 #define GIVE_UP(X) return 0
17106 #endif
17108 SET_TEXT_POS_FROM_MARKER (start, w->start);
17110 /* Don't use this for mini-windows because these can show
17111 messages and mini-buffers, and we don't handle that here. */
17112 if (MINI_WINDOW_P (w))
17113 GIVE_UP (1);
17115 /* This flag is used to prevent redisplay optimizations. */
17116 if (windows_or_buffers_changed || cursor_type_changed)
17117 GIVE_UP (2);
17119 /* Verify that narrowing has not changed.
17120 Also verify that we were not told to prevent redisplay optimizations.
17121 It would be nice to further
17122 reduce the number of cases where this prevents try_window_id. */
17123 if (current_buffer->clip_changed
17124 || current_buffer->prevent_redisplay_optimizations_p)
17125 GIVE_UP (3);
17127 /* Window must either use window-based redisplay or be full width. */
17128 if (!FRAME_WINDOW_P (f)
17129 && (!FRAME_LINE_INS_DEL_OK (f)
17130 || !WINDOW_FULL_WIDTH_P (w)))
17131 GIVE_UP (4);
17133 /* Give up if point is known NOT to appear in W. */
17134 if (PT < CHARPOS (start))
17135 GIVE_UP (5);
17137 /* Another way to prevent redisplay optimizations. */
17138 if (XFASTINT (w->last_modified) == 0)
17139 GIVE_UP (6);
17141 /* Verify that window is not hscrolled. */
17142 if (XFASTINT (w->hscroll) != 0)
17143 GIVE_UP (7);
17145 /* Verify that display wasn't paused. */
17146 if (NILP (w->window_end_valid))
17147 GIVE_UP (8);
17149 /* Can't use this if highlighting a region because a cursor movement
17150 will do more than just set the cursor. */
17151 if (!NILP (Vtransient_mark_mode)
17152 && !NILP (BVAR (current_buffer, mark_active)))
17153 GIVE_UP (9);
17155 /* Likewise if highlighting trailing whitespace. */
17156 if (!NILP (Vshow_trailing_whitespace))
17157 GIVE_UP (11);
17159 /* Likewise if showing a region. */
17160 if (!NILP (w->region_showing))
17161 GIVE_UP (10);
17163 /* Can't use this if overlay arrow position and/or string have
17164 changed. */
17165 if (overlay_arrows_changed_p ())
17166 GIVE_UP (12);
17168 /* When word-wrap is on, adding a space to the first word of a
17169 wrapped line can change the wrap position, altering the line
17170 above it. It might be worthwhile to handle this more
17171 intelligently, but for now just redisplay from scratch. */
17172 if (!NILP (BVAR (XBUFFER (w->buffer), word_wrap)))
17173 GIVE_UP (21);
17175 /* Under bidi reordering, adding or deleting a character in the
17176 beginning of a paragraph, before the first strong directional
17177 character, can change the base direction of the paragraph (unless
17178 the buffer specifies a fixed paragraph direction), which will
17179 require to redisplay the whole paragraph. It might be worthwhile
17180 to find the paragraph limits and widen the range of redisplayed
17181 lines to that, but for now just give up this optimization and
17182 redisplay from scratch. */
17183 if (!NILP (BVAR (XBUFFER (w->buffer), bidi_display_reordering))
17184 && NILP (BVAR (XBUFFER (w->buffer), bidi_paragraph_direction)))
17185 GIVE_UP (22);
17187 /* Make sure beg_unchanged and end_unchanged are up to date. Do it
17188 only if buffer has really changed. The reason is that the gap is
17189 initially at Z for freshly visited files. The code below would
17190 set end_unchanged to 0 in that case. */
17191 if (MODIFF > SAVE_MODIFF
17192 /* This seems to happen sometimes after saving a buffer. */
17193 || BEG_UNCHANGED + END_UNCHANGED > Z_BYTE)
17195 if (GPT - BEG < BEG_UNCHANGED)
17196 BEG_UNCHANGED = GPT - BEG;
17197 if (Z - GPT < END_UNCHANGED)
17198 END_UNCHANGED = Z - GPT;
17201 /* The position of the first and last character that has been changed. */
17202 first_changed_charpos = BEG + BEG_UNCHANGED;
17203 last_changed_charpos = Z - END_UNCHANGED;
17205 /* If window starts after a line end, and the last change is in
17206 front of that newline, then changes don't affect the display.
17207 This case happens with stealth-fontification. Note that although
17208 the display is unchanged, glyph positions in the matrix have to
17209 be adjusted, of course. */
17210 row = MATRIX_ROW (w->current_matrix, XFASTINT (w->window_end_vpos));
17211 if (MATRIX_ROW_DISPLAYS_TEXT_P (row)
17212 && ((last_changed_charpos < CHARPOS (start)
17213 && CHARPOS (start) == BEGV)
17214 || (last_changed_charpos < CHARPOS (start) - 1
17215 && FETCH_BYTE (BYTEPOS (start) - 1) == '\n')))
17217 ptrdiff_t Z_old, Z_delta, Z_BYTE_old, Z_delta_bytes;
17218 struct glyph_row *r0;
17220 /* Compute how many chars/bytes have been added to or removed
17221 from the buffer. */
17222 Z_old = MATRIX_ROW_END_CHARPOS (row) + XFASTINT (w->window_end_pos);
17223 Z_BYTE_old = MATRIX_ROW_END_BYTEPOS (row) + w->window_end_bytepos;
17224 Z_delta = Z - Z_old;
17225 Z_delta_bytes = Z_BYTE - Z_BYTE_old;
17227 /* Give up if PT is not in the window. Note that it already has
17228 been checked at the start of try_window_id that PT is not in
17229 front of the window start. */
17230 if (PT >= MATRIX_ROW_END_CHARPOS (row) + Z_delta)
17231 GIVE_UP (13);
17233 /* If window start is unchanged, we can reuse the whole matrix
17234 as is, after adjusting glyph positions. No need to compute
17235 the window end again, since its offset from Z hasn't changed. */
17236 r0 = MATRIX_FIRST_TEXT_ROW (current_matrix);
17237 if (CHARPOS (start) == MATRIX_ROW_START_CHARPOS (r0) + Z_delta
17238 && BYTEPOS (start) == MATRIX_ROW_START_BYTEPOS (r0) + Z_delta_bytes
17239 /* PT must not be in a partially visible line. */
17240 && !(PT >= MATRIX_ROW_START_CHARPOS (row) + Z_delta
17241 && MATRIX_ROW_BOTTOM_Y (row) > window_text_bottom_y (w)))
17243 /* Adjust positions in the glyph matrix. */
17244 if (Z_delta || Z_delta_bytes)
17246 struct glyph_row *r1
17247 = MATRIX_BOTTOM_TEXT_ROW (current_matrix, w);
17248 increment_matrix_positions (w->current_matrix,
17249 MATRIX_ROW_VPOS (r0, current_matrix),
17250 MATRIX_ROW_VPOS (r1, current_matrix),
17251 Z_delta, Z_delta_bytes);
17254 /* Set the cursor. */
17255 row = row_containing_pos (w, PT, r0, NULL, 0);
17256 if (row)
17257 set_cursor_from_row (w, row, current_matrix, 0, 0, 0, 0);
17258 else
17259 abort ();
17260 return 1;
17264 /* Handle the case that changes are all below what is displayed in
17265 the window, and that PT is in the window. This shortcut cannot
17266 be taken if ZV is visible in the window, and text has been added
17267 there that is visible in the window. */
17268 if (first_changed_charpos >= MATRIX_ROW_END_CHARPOS (row)
17269 /* ZV is not visible in the window, or there are no
17270 changes at ZV, actually. */
17271 && (current_matrix->zv > MATRIX_ROW_END_CHARPOS (row)
17272 || first_changed_charpos == last_changed_charpos))
17274 struct glyph_row *r0;
17276 /* Give up if PT is not in the window. Note that it already has
17277 been checked at the start of try_window_id that PT is not in
17278 front of the window start. */
17279 if (PT >= MATRIX_ROW_END_CHARPOS (row))
17280 GIVE_UP (14);
17282 /* If window start is unchanged, we can reuse the whole matrix
17283 as is, without changing glyph positions since no text has
17284 been added/removed in front of the window end. */
17285 r0 = MATRIX_FIRST_TEXT_ROW (current_matrix);
17286 if (TEXT_POS_EQUAL_P (start, r0->minpos)
17287 /* PT must not be in a partially visible line. */
17288 && !(PT >= MATRIX_ROW_START_CHARPOS (row)
17289 && MATRIX_ROW_BOTTOM_Y (row) > window_text_bottom_y (w)))
17291 /* We have to compute the window end anew since text
17292 could have been added/removed after it. */
17293 w->window_end_pos
17294 = make_number (Z - MATRIX_ROW_END_CHARPOS (row));
17295 w->window_end_bytepos
17296 = Z_BYTE - MATRIX_ROW_END_BYTEPOS (row);
17298 /* Set the cursor. */
17299 row = row_containing_pos (w, PT, r0, NULL, 0);
17300 if (row)
17301 set_cursor_from_row (w, row, current_matrix, 0, 0, 0, 0);
17302 else
17303 abort ();
17304 return 2;
17308 /* Give up if window start is in the changed area.
17310 The condition used to read
17312 (BEG_UNCHANGED + END_UNCHANGED != Z - BEG && ...)
17314 but why that was tested escapes me at the moment. */
17315 if (CHARPOS (start) >= first_changed_charpos
17316 && CHARPOS (start) <= last_changed_charpos)
17317 GIVE_UP (15);
17319 /* Check that window start agrees with the start of the first glyph
17320 row in its current matrix. Check this after we know the window
17321 start is not in changed text, otherwise positions would not be
17322 comparable. */
17323 row = MATRIX_FIRST_TEXT_ROW (current_matrix);
17324 if (!TEXT_POS_EQUAL_P (start, row->minpos))
17325 GIVE_UP (16);
17327 /* Give up if the window ends in strings. Overlay strings
17328 at the end are difficult to handle, so don't try. */
17329 row = MATRIX_ROW (current_matrix, XFASTINT (w->window_end_vpos));
17330 if (MATRIX_ROW_START_CHARPOS (row) == MATRIX_ROW_END_CHARPOS (row))
17331 GIVE_UP (20);
17333 /* Compute the position at which we have to start displaying new
17334 lines. Some of the lines at the top of the window might be
17335 reusable because they are not displaying changed text. Find the
17336 last row in W's current matrix not affected by changes at the
17337 start of current_buffer. Value is null if changes start in the
17338 first line of window. */
17339 last_unchanged_at_beg_row = find_last_unchanged_at_beg_row (w);
17340 if (last_unchanged_at_beg_row)
17342 /* Avoid starting to display in the middle of a character, a TAB
17343 for instance. This is easier than to set up the iterator
17344 exactly, and it's not a frequent case, so the additional
17345 effort wouldn't really pay off. */
17346 while ((MATRIX_ROW_ENDS_IN_MIDDLE_OF_CHAR_P (last_unchanged_at_beg_row)
17347 || last_unchanged_at_beg_row->ends_in_newline_from_string_p)
17348 && last_unchanged_at_beg_row > w->current_matrix->rows)
17349 --last_unchanged_at_beg_row;
17351 if (MATRIX_ROW_ENDS_IN_MIDDLE_OF_CHAR_P (last_unchanged_at_beg_row))
17352 GIVE_UP (17);
17354 if (init_to_row_end (&it, w, last_unchanged_at_beg_row) == 0)
17355 GIVE_UP (18);
17356 start_pos = it.current.pos;
17358 /* Start displaying new lines in the desired matrix at the same
17359 vpos we would use in the current matrix, i.e. below
17360 last_unchanged_at_beg_row. */
17361 it.vpos = 1 + MATRIX_ROW_VPOS (last_unchanged_at_beg_row,
17362 current_matrix);
17363 it.glyph_row = MATRIX_ROW (desired_matrix, it.vpos);
17364 it.current_y = MATRIX_ROW_BOTTOM_Y (last_unchanged_at_beg_row);
17366 xassert (it.hpos == 0 && it.current_x == 0);
17368 else
17370 /* There are no reusable lines at the start of the window.
17371 Start displaying in the first text line. */
17372 start_display (&it, w, start);
17373 it.vpos = it.first_vpos;
17374 start_pos = it.current.pos;
17377 /* Find the first row that is not affected by changes at the end of
17378 the buffer. Value will be null if there is no unchanged row, in
17379 which case we must redisplay to the end of the window. delta
17380 will be set to the value by which buffer positions beginning with
17381 first_unchanged_at_end_row have to be adjusted due to text
17382 changes. */
17383 first_unchanged_at_end_row
17384 = find_first_unchanged_at_end_row (w, &delta, &delta_bytes);
17385 IF_DEBUG (debug_delta = delta);
17386 IF_DEBUG (debug_delta_bytes = delta_bytes);
17388 /* Set stop_pos to the buffer position up to which we will have to
17389 display new lines. If first_unchanged_at_end_row != NULL, this
17390 is the buffer position of the start of the line displayed in that
17391 row. For first_unchanged_at_end_row == NULL, use 0 to indicate
17392 that we don't stop at a buffer position. */
17393 stop_pos = 0;
17394 if (first_unchanged_at_end_row)
17396 xassert (last_unchanged_at_beg_row == NULL
17397 || first_unchanged_at_end_row >= last_unchanged_at_beg_row);
17399 /* If this is a continuation line, move forward to the next one
17400 that isn't. Changes in lines above affect this line.
17401 Caution: this may move first_unchanged_at_end_row to a row
17402 not displaying text. */
17403 while (MATRIX_ROW_CONTINUATION_LINE_P (first_unchanged_at_end_row)
17404 && MATRIX_ROW_DISPLAYS_TEXT_P (first_unchanged_at_end_row)
17405 && (MATRIX_ROW_BOTTOM_Y (first_unchanged_at_end_row)
17406 < it.last_visible_y))
17407 ++first_unchanged_at_end_row;
17409 if (!MATRIX_ROW_DISPLAYS_TEXT_P (first_unchanged_at_end_row)
17410 || (MATRIX_ROW_BOTTOM_Y (first_unchanged_at_end_row)
17411 >= it.last_visible_y))
17412 first_unchanged_at_end_row = NULL;
17413 else
17415 stop_pos = (MATRIX_ROW_START_CHARPOS (first_unchanged_at_end_row)
17416 + delta);
17417 first_unchanged_at_end_vpos
17418 = MATRIX_ROW_VPOS (first_unchanged_at_end_row, current_matrix);
17419 xassert (stop_pos >= Z - END_UNCHANGED);
17422 else if (last_unchanged_at_beg_row == NULL)
17423 GIVE_UP (19);
17426 #if GLYPH_DEBUG
17428 /* Either there is no unchanged row at the end, or the one we have
17429 now displays text. This is a necessary condition for the window
17430 end pos calculation at the end of this function. */
17431 xassert (first_unchanged_at_end_row == NULL
17432 || MATRIX_ROW_DISPLAYS_TEXT_P (first_unchanged_at_end_row));
17434 debug_last_unchanged_at_beg_vpos
17435 = (last_unchanged_at_beg_row
17436 ? MATRIX_ROW_VPOS (last_unchanged_at_beg_row, current_matrix)
17437 : -1);
17438 debug_first_unchanged_at_end_vpos = first_unchanged_at_end_vpos;
17440 #endif /* GLYPH_DEBUG != 0 */
17443 /* Display new lines. Set last_text_row to the last new line
17444 displayed which has text on it, i.e. might end up as being the
17445 line where the window_end_vpos is. */
17446 w->cursor.vpos = -1;
17447 last_text_row = NULL;
17448 overlay_arrow_seen = 0;
17449 while (it.current_y < it.last_visible_y
17450 && !fonts_changed_p
17451 && (first_unchanged_at_end_row == NULL
17452 || IT_CHARPOS (it) < stop_pos))
17454 if (display_line (&it))
17455 last_text_row = it.glyph_row - 1;
17458 if (fonts_changed_p)
17459 return -1;
17462 /* Compute differences in buffer positions, y-positions etc. for
17463 lines reused at the bottom of the window. Compute what we can
17464 scroll. */
17465 if (first_unchanged_at_end_row
17466 /* No lines reused because we displayed everything up to the
17467 bottom of the window. */
17468 && it.current_y < it.last_visible_y)
17470 dvpos = (it.vpos
17471 - MATRIX_ROW_VPOS (first_unchanged_at_end_row,
17472 current_matrix));
17473 dy = it.current_y - first_unchanged_at_end_row->y;
17474 run.current_y = first_unchanged_at_end_row->y;
17475 run.desired_y = run.current_y + dy;
17476 run.height = it.last_visible_y - max (run.current_y, run.desired_y);
17478 else
17480 delta = delta_bytes = dvpos = dy
17481 = run.current_y = run.desired_y = run.height = 0;
17482 first_unchanged_at_end_row = NULL;
17484 IF_DEBUG (debug_dvpos = dvpos; debug_dy = dy);
17487 /* Find the cursor if not already found. We have to decide whether
17488 PT will appear on this window (it sometimes doesn't, but this is
17489 not a very frequent case.) This decision has to be made before
17490 the current matrix is altered. A value of cursor.vpos < 0 means
17491 that PT is either in one of the lines beginning at
17492 first_unchanged_at_end_row or below the window. Don't care for
17493 lines that might be displayed later at the window end; as
17494 mentioned, this is not a frequent case. */
17495 if (w->cursor.vpos < 0)
17497 /* Cursor in unchanged rows at the top? */
17498 if (PT < CHARPOS (start_pos)
17499 && last_unchanged_at_beg_row)
17501 row = row_containing_pos (w, PT,
17502 MATRIX_FIRST_TEXT_ROW (w->current_matrix),
17503 last_unchanged_at_beg_row + 1, 0);
17504 if (row)
17505 set_cursor_from_row (w, row, w->current_matrix, 0, 0, 0, 0);
17508 /* Start from first_unchanged_at_end_row looking for PT. */
17509 else if (first_unchanged_at_end_row)
17511 row = row_containing_pos (w, PT - delta,
17512 first_unchanged_at_end_row, NULL, 0);
17513 if (row)
17514 set_cursor_from_row (w, row, w->current_matrix, delta,
17515 delta_bytes, dy, dvpos);
17518 /* Give up if cursor was not found. */
17519 if (w->cursor.vpos < 0)
17521 clear_glyph_matrix (w->desired_matrix);
17522 return -1;
17526 /* Don't let the cursor end in the scroll margins. */
17528 int this_scroll_margin, cursor_height;
17530 this_scroll_margin =
17531 max (0, min (scroll_margin, WINDOW_TOTAL_LINES (w) / 4));
17532 this_scroll_margin *= FRAME_LINE_HEIGHT (it.f);
17533 cursor_height = MATRIX_ROW (w->desired_matrix, w->cursor.vpos)->height;
17535 if ((w->cursor.y < this_scroll_margin
17536 && CHARPOS (start) > BEGV)
17537 /* Old redisplay didn't take scroll margin into account at the bottom,
17538 but then global-hl-line-mode doesn't scroll. KFS 2004-06-14 */
17539 || (w->cursor.y + (make_cursor_line_fully_visible_p
17540 ? cursor_height + this_scroll_margin
17541 : 1)) > it.last_visible_y)
17543 w->cursor.vpos = -1;
17544 clear_glyph_matrix (w->desired_matrix);
17545 return -1;
17549 /* Scroll the display. Do it before changing the current matrix so
17550 that xterm.c doesn't get confused about where the cursor glyph is
17551 found. */
17552 if (dy && run.height)
17554 update_begin (f);
17556 if (FRAME_WINDOW_P (f))
17558 FRAME_RIF (f)->update_window_begin_hook (w);
17559 FRAME_RIF (f)->clear_window_mouse_face (w);
17560 FRAME_RIF (f)->scroll_run_hook (w, &run);
17561 FRAME_RIF (f)->update_window_end_hook (w, 0, 0);
17563 else
17565 /* Terminal frame. In this case, dvpos gives the number of
17566 lines to scroll by; dvpos < 0 means scroll up. */
17567 int from_vpos
17568 = MATRIX_ROW_VPOS (first_unchanged_at_end_row, w->current_matrix);
17569 int from = WINDOW_TOP_EDGE_LINE (w) + from_vpos;
17570 int end = (WINDOW_TOP_EDGE_LINE (w)
17571 + (WINDOW_WANTS_HEADER_LINE_P (w) ? 1 : 0)
17572 + window_internal_height (w));
17574 #if defined (HAVE_GPM) || defined (MSDOS)
17575 x_clear_window_mouse_face (w);
17576 #endif
17577 /* Perform the operation on the screen. */
17578 if (dvpos > 0)
17580 /* Scroll last_unchanged_at_beg_row to the end of the
17581 window down dvpos lines. */
17582 set_terminal_window (f, end);
17584 /* On dumb terminals delete dvpos lines at the end
17585 before inserting dvpos empty lines. */
17586 if (!FRAME_SCROLL_REGION_OK (f))
17587 ins_del_lines (f, end - dvpos, -dvpos);
17589 /* Insert dvpos empty lines in front of
17590 last_unchanged_at_beg_row. */
17591 ins_del_lines (f, from, dvpos);
17593 else if (dvpos < 0)
17595 /* Scroll up last_unchanged_at_beg_vpos to the end of
17596 the window to last_unchanged_at_beg_vpos - |dvpos|. */
17597 set_terminal_window (f, end);
17599 /* Delete dvpos lines in front of
17600 last_unchanged_at_beg_vpos. ins_del_lines will set
17601 the cursor to the given vpos and emit |dvpos| delete
17602 line sequences. */
17603 ins_del_lines (f, from + dvpos, dvpos);
17605 /* On a dumb terminal insert dvpos empty lines at the
17606 end. */
17607 if (!FRAME_SCROLL_REGION_OK (f))
17608 ins_del_lines (f, end + dvpos, -dvpos);
17611 set_terminal_window (f, 0);
17614 update_end (f);
17617 /* Shift reused rows of the current matrix to the right position.
17618 BOTTOM_ROW is the last + 1 row in the current matrix reserved for
17619 text. */
17620 bottom_row = MATRIX_BOTTOM_TEXT_ROW (current_matrix, w);
17621 bottom_vpos = MATRIX_ROW_VPOS (bottom_row, current_matrix);
17622 if (dvpos < 0)
17624 rotate_matrix (current_matrix, first_unchanged_at_end_vpos + dvpos,
17625 bottom_vpos, dvpos);
17626 enable_glyph_matrix_rows (current_matrix, bottom_vpos + dvpos,
17627 bottom_vpos, 0);
17629 else if (dvpos > 0)
17631 rotate_matrix (current_matrix, first_unchanged_at_end_vpos,
17632 bottom_vpos, dvpos);
17633 enable_glyph_matrix_rows (current_matrix, first_unchanged_at_end_vpos,
17634 first_unchanged_at_end_vpos + dvpos, 0);
17637 /* For frame-based redisplay, make sure that current frame and window
17638 matrix are in sync with respect to glyph memory. */
17639 if (!FRAME_WINDOW_P (f))
17640 sync_frame_with_window_matrix_rows (w);
17642 /* Adjust buffer positions in reused rows. */
17643 if (delta || delta_bytes)
17644 increment_matrix_positions (current_matrix,
17645 first_unchanged_at_end_vpos + dvpos,
17646 bottom_vpos, delta, delta_bytes);
17648 /* Adjust Y positions. */
17649 if (dy)
17650 shift_glyph_matrix (w, current_matrix,
17651 first_unchanged_at_end_vpos + dvpos,
17652 bottom_vpos, dy);
17654 if (first_unchanged_at_end_row)
17656 first_unchanged_at_end_row += dvpos;
17657 if (first_unchanged_at_end_row->y >= it.last_visible_y
17658 || !MATRIX_ROW_DISPLAYS_TEXT_P (first_unchanged_at_end_row))
17659 first_unchanged_at_end_row = NULL;
17662 /* If scrolling up, there may be some lines to display at the end of
17663 the window. */
17664 last_text_row_at_end = NULL;
17665 if (dy < 0)
17667 /* Scrolling up can leave for example a partially visible line
17668 at the end of the window to be redisplayed. */
17669 /* Set last_row to the glyph row in the current matrix where the
17670 window end line is found. It has been moved up or down in
17671 the matrix by dvpos. */
17672 int last_vpos = XFASTINT (w->window_end_vpos) + dvpos;
17673 struct glyph_row *last_row = MATRIX_ROW (current_matrix, last_vpos);
17675 /* If last_row is the window end line, it should display text. */
17676 xassert (last_row->displays_text_p);
17678 /* If window end line was partially visible before, begin
17679 displaying at that line. Otherwise begin displaying with the
17680 line following it. */
17681 if (MATRIX_ROW_BOTTOM_Y (last_row) - dy >= it.last_visible_y)
17683 init_to_row_start (&it, w, last_row);
17684 it.vpos = last_vpos;
17685 it.current_y = last_row->y;
17687 else
17689 init_to_row_end (&it, w, last_row);
17690 it.vpos = 1 + last_vpos;
17691 it.current_y = MATRIX_ROW_BOTTOM_Y (last_row);
17692 ++last_row;
17695 /* We may start in a continuation line. If so, we have to
17696 get the right continuation_lines_width and current_x. */
17697 it.continuation_lines_width = last_row->continuation_lines_width;
17698 it.hpos = it.current_x = 0;
17700 /* Display the rest of the lines at the window end. */
17701 it.glyph_row = MATRIX_ROW (desired_matrix, it.vpos);
17702 while (it.current_y < it.last_visible_y
17703 && !fonts_changed_p)
17705 /* Is it always sure that the display agrees with lines in
17706 the current matrix? I don't think so, so we mark rows
17707 displayed invalid in the current matrix by setting their
17708 enabled_p flag to zero. */
17709 MATRIX_ROW (w->current_matrix, it.vpos)->enabled_p = 0;
17710 if (display_line (&it))
17711 last_text_row_at_end = it.glyph_row - 1;
17715 /* Update window_end_pos and window_end_vpos. */
17716 if (first_unchanged_at_end_row
17717 && !last_text_row_at_end)
17719 /* Window end line if one of the preserved rows from the current
17720 matrix. Set row to the last row displaying text in current
17721 matrix starting at first_unchanged_at_end_row, after
17722 scrolling. */
17723 xassert (first_unchanged_at_end_row->displays_text_p);
17724 row = find_last_row_displaying_text (w->current_matrix, &it,
17725 first_unchanged_at_end_row);
17726 xassert (row && MATRIX_ROW_DISPLAYS_TEXT_P (row));
17728 w->window_end_pos = make_number (Z - MATRIX_ROW_END_CHARPOS (row));
17729 w->window_end_bytepos = Z_BYTE - MATRIX_ROW_END_BYTEPOS (row);
17730 w->window_end_vpos
17731 = make_number (MATRIX_ROW_VPOS (row, w->current_matrix));
17732 xassert (w->window_end_bytepos >= 0);
17733 IF_DEBUG (debug_method_add (w, "A"));
17735 else if (last_text_row_at_end)
17737 w->window_end_pos
17738 = make_number (Z - MATRIX_ROW_END_CHARPOS (last_text_row_at_end));
17739 w->window_end_bytepos
17740 = Z_BYTE - MATRIX_ROW_END_BYTEPOS (last_text_row_at_end);
17741 w->window_end_vpos
17742 = make_number (MATRIX_ROW_VPOS (last_text_row_at_end, desired_matrix));
17743 xassert (w->window_end_bytepos >= 0);
17744 IF_DEBUG (debug_method_add (w, "B"));
17746 else if (last_text_row)
17748 /* We have displayed either to the end of the window or at the
17749 end of the window, i.e. the last row with text is to be found
17750 in the desired matrix. */
17751 w->window_end_pos
17752 = make_number (Z - MATRIX_ROW_END_CHARPOS (last_text_row));
17753 w->window_end_bytepos
17754 = Z_BYTE - MATRIX_ROW_END_BYTEPOS (last_text_row);
17755 w->window_end_vpos
17756 = make_number (MATRIX_ROW_VPOS (last_text_row, desired_matrix));
17757 xassert (w->window_end_bytepos >= 0);
17759 else if (first_unchanged_at_end_row == NULL
17760 && last_text_row == NULL
17761 && last_text_row_at_end == NULL)
17763 /* Displayed to end of window, but no line containing text was
17764 displayed. Lines were deleted at the end of the window. */
17765 int first_vpos = WINDOW_WANTS_HEADER_LINE_P (w) ? 1 : 0;
17766 int vpos = XFASTINT (w->window_end_vpos);
17767 struct glyph_row *current_row = current_matrix->rows + vpos;
17768 struct glyph_row *desired_row = desired_matrix->rows + vpos;
17770 for (row = NULL;
17771 row == NULL && vpos >= first_vpos;
17772 --vpos, --current_row, --desired_row)
17774 if (desired_row->enabled_p)
17776 if (desired_row->displays_text_p)
17777 row = desired_row;
17779 else if (current_row->displays_text_p)
17780 row = current_row;
17783 xassert (row != NULL);
17784 w->window_end_vpos = make_number (vpos + 1);
17785 w->window_end_pos = make_number (Z - MATRIX_ROW_END_CHARPOS (row));
17786 w->window_end_bytepos = Z_BYTE - MATRIX_ROW_END_BYTEPOS (row);
17787 xassert (w->window_end_bytepos >= 0);
17788 IF_DEBUG (debug_method_add (w, "C"));
17790 else
17791 abort ();
17793 IF_DEBUG (debug_end_pos = XFASTINT (w->window_end_pos);
17794 debug_end_vpos = XFASTINT (w->window_end_vpos));
17796 /* Record that display has not been completed. */
17797 w->window_end_valid = Qnil;
17798 w->desired_matrix->no_scrolling_p = 1;
17799 return 3;
17801 #undef GIVE_UP
17806 /***********************************************************************
17807 More debugging support
17808 ***********************************************************************/
17810 #if GLYPH_DEBUG
17812 void dump_glyph_row (struct glyph_row *, int, int) EXTERNALLY_VISIBLE;
17813 void dump_glyph_matrix (struct glyph_matrix *, int) EXTERNALLY_VISIBLE;
17814 void dump_glyph (struct glyph_row *, struct glyph *, int) EXTERNALLY_VISIBLE;
17817 /* Dump the contents of glyph matrix MATRIX on stderr.
17819 GLYPHS 0 means don't show glyph contents.
17820 GLYPHS 1 means show glyphs in short form
17821 GLYPHS > 1 means show glyphs in long form. */
17823 void
17824 dump_glyph_matrix (struct glyph_matrix *matrix, int glyphs)
17826 int i;
17827 for (i = 0; i < matrix->nrows; ++i)
17828 dump_glyph_row (MATRIX_ROW (matrix, i), i, glyphs);
17832 /* Dump contents of glyph GLYPH to stderr. ROW and AREA are
17833 the glyph row and area where the glyph comes from. */
17835 void
17836 dump_glyph (struct glyph_row *row, struct glyph *glyph, int area)
17838 if (glyph->type == CHAR_GLYPH)
17840 fprintf (stderr,
17841 " %5td %4c %6"pI"d %c %3d 0x%05x %c %4d %1.1d%1.1d\n",
17842 glyph - row->glyphs[TEXT_AREA],
17843 'C',
17844 glyph->charpos,
17845 (BUFFERP (glyph->object)
17846 ? 'B'
17847 : (STRINGP (glyph->object)
17848 ? 'S'
17849 : '-')),
17850 glyph->pixel_width,
17851 glyph->u.ch,
17852 (glyph->u.ch < 0x80 && glyph->u.ch >= ' '
17853 ? glyph->u.ch
17854 : '.'),
17855 glyph->face_id,
17856 glyph->left_box_line_p,
17857 glyph->right_box_line_p);
17859 else if (glyph->type == STRETCH_GLYPH)
17861 fprintf (stderr,
17862 " %5td %4c %6"pI"d %c %3d 0x%05x %c %4d %1.1d%1.1d\n",
17863 glyph - row->glyphs[TEXT_AREA],
17864 'S',
17865 glyph->charpos,
17866 (BUFFERP (glyph->object)
17867 ? 'B'
17868 : (STRINGP (glyph->object)
17869 ? 'S'
17870 : '-')),
17871 glyph->pixel_width,
17873 '.',
17874 glyph->face_id,
17875 glyph->left_box_line_p,
17876 glyph->right_box_line_p);
17878 else if (glyph->type == IMAGE_GLYPH)
17880 fprintf (stderr,
17881 " %5td %4c %6"pI"d %c %3d 0x%05x %c %4d %1.1d%1.1d\n",
17882 glyph - row->glyphs[TEXT_AREA],
17883 'I',
17884 glyph->charpos,
17885 (BUFFERP (glyph->object)
17886 ? 'B'
17887 : (STRINGP (glyph->object)
17888 ? 'S'
17889 : '-')),
17890 glyph->pixel_width,
17891 glyph->u.img_id,
17892 '.',
17893 glyph->face_id,
17894 glyph->left_box_line_p,
17895 glyph->right_box_line_p);
17897 else if (glyph->type == COMPOSITE_GLYPH)
17899 fprintf (stderr,
17900 " %5td %4c %6"pI"d %c %3d 0x%05x",
17901 glyph - row->glyphs[TEXT_AREA],
17902 '+',
17903 glyph->charpos,
17904 (BUFFERP (glyph->object)
17905 ? 'B'
17906 : (STRINGP (glyph->object)
17907 ? 'S'
17908 : '-')),
17909 glyph->pixel_width,
17910 glyph->u.cmp.id);
17911 if (glyph->u.cmp.automatic)
17912 fprintf (stderr,
17913 "[%d-%d]",
17914 glyph->slice.cmp.from, glyph->slice.cmp.to);
17915 fprintf (stderr, " . %4d %1.1d%1.1d\n",
17916 glyph->face_id,
17917 glyph->left_box_line_p,
17918 glyph->right_box_line_p);
17923 /* Dump the contents of glyph row at VPOS in MATRIX to stderr.
17924 GLYPHS 0 means don't show glyph contents.
17925 GLYPHS 1 means show glyphs in short form
17926 GLYPHS > 1 means show glyphs in long form. */
17928 void
17929 dump_glyph_row (struct glyph_row *row, int vpos, int glyphs)
17931 if (glyphs != 1)
17933 fprintf (stderr, "Row Start End Used oE><\\CTZFesm X Y W H V A P\n");
17934 fprintf (stderr, "======================================================================\n");
17936 fprintf (stderr, "%3d %5"pI"d %5"pI"d %4d %1.1d%1.1d%1.1d%1.1d\
17937 %1.1d%1.1d%1.1d%1.1d%1.1d%1.1d%1.1d%1.1d %4d %4d %4d %4d %4d %4d %4d\n",
17938 vpos,
17939 MATRIX_ROW_START_CHARPOS (row),
17940 MATRIX_ROW_END_CHARPOS (row),
17941 row->used[TEXT_AREA],
17942 row->contains_overlapping_glyphs_p,
17943 row->enabled_p,
17944 row->truncated_on_left_p,
17945 row->truncated_on_right_p,
17946 row->continued_p,
17947 MATRIX_ROW_CONTINUATION_LINE_P (row),
17948 row->displays_text_p,
17949 row->ends_at_zv_p,
17950 row->fill_line_p,
17951 row->ends_in_middle_of_char_p,
17952 row->starts_in_middle_of_char_p,
17953 row->mouse_face_p,
17954 row->x,
17955 row->y,
17956 row->pixel_width,
17957 row->height,
17958 row->visible_height,
17959 row->ascent,
17960 row->phys_ascent);
17961 fprintf (stderr, "%9"pD"d %5"pD"d\t%5d\n", row->start.overlay_string_index,
17962 row->end.overlay_string_index,
17963 row->continuation_lines_width);
17964 fprintf (stderr, "%9"pI"d %5"pI"d\n",
17965 CHARPOS (row->start.string_pos),
17966 CHARPOS (row->end.string_pos));
17967 fprintf (stderr, "%9d %5d\n", row->start.dpvec_index,
17968 row->end.dpvec_index);
17971 if (glyphs > 1)
17973 int area;
17975 for (area = LEFT_MARGIN_AREA; area < LAST_AREA; ++area)
17977 struct glyph *glyph = row->glyphs[area];
17978 struct glyph *glyph_end = glyph + row->used[area];
17980 /* Glyph for a line end in text. */
17981 if (area == TEXT_AREA && glyph == glyph_end && glyph->charpos > 0)
17982 ++glyph_end;
17984 if (glyph < glyph_end)
17985 fprintf (stderr, " Glyph Type Pos O W Code C Face LR\n");
17987 for (; glyph < glyph_end; ++glyph)
17988 dump_glyph (row, glyph, area);
17991 else if (glyphs == 1)
17993 int area;
17995 for (area = LEFT_MARGIN_AREA; area < LAST_AREA; ++area)
17997 char *s = (char *) alloca (row->used[area] + 1);
17998 int i;
18000 for (i = 0; i < row->used[area]; ++i)
18002 struct glyph *glyph = row->glyphs[area] + i;
18003 if (glyph->type == CHAR_GLYPH
18004 && glyph->u.ch < 0x80
18005 && glyph->u.ch >= ' ')
18006 s[i] = glyph->u.ch;
18007 else
18008 s[i] = '.';
18011 s[i] = '\0';
18012 fprintf (stderr, "%3d: (%d) '%s'\n", vpos, row->enabled_p, s);
18018 DEFUN ("dump-glyph-matrix", Fdump_glyph_matrix,
18019 Sdump_glyph_matrix, 0, 1, "p",
18020 doc: /* Dump the current matrix of the selected window to stderr.
18021 Shows contents of glyph row structures. With non-nil
18022 parameter GLYPHS, dump glyphs as well. If GLYPHS is 1 show
18023 glyphs in short form, otherwise show glyphs in long form. */)
18024 (Lisp_Object glyphs)
18026 struct window *w = XWINDOW (selected_window);
18027 struct buffer *buffer = XBUFFER (w->buffer);
18029 fprintf (stderr, "PT = %"pI"d, BEGV = %"pI"d. ZV = %"pI"d\n",
18030 BUF_PT (buffer), BUF_BEGV (buffer), BUF_ZV (buffer));
18031 fprintf (stderr, "Cursor x = %d, y = %d, hpos = %d, vpos = %d\n",
18032 w->cursor.x, w->cursor.y, w->cursor.hpos, w->cursor.vpos);
18033 fprintf (stderr, "=============================================\n");
18034 dump_glyph_matrix (w->current_matrix,
18035 TYPE_RANGED_INTEGERP (int, glyphs) ? XINT (glyphs) : 0);
18036 return Qnil;
18040 DEFUN ("dump-frame-glyph-matrix", Fdump_frame_glyph_matrix,
18041 Sdump_frame_glyph_matrix, 0, 0, "", doc: /* */)
18042 (void)
18044 struct frame *f = XFRAME (selected_frame);
18045 dump_glyph_matrix (f->current_matrix, 1);
18046 return Qnil;
18050 DEFUN ("dump-glyph-row", Fdump_glyph_row, Sdump_glyph_row, 1, 2, "",
18051 doc: /* Dump glyph row ROW to stderr.
18052 GLYPH 0 means don't dump glyphs.
18053 GLYPH 1 means dump glyphs in short form.
18054 GLYPH > 1 or omitted means dump glyphs in long form. */)
18055 (Lisp_Object row, Lisp_Object glyphs)
18057 struct glyph_matrix *matrix;
18058 EMACS_INT vpos;
18060 CHECK_NUMBER (row);
18061 matrix = XWINDOW (selected_window)->current_matrix;
18062 vpos = XINT (row);
18063 if (vpos >= 0 && vpos < matrix->nrows)
18064 dump_glyph_row (MATRIX_ROW (matrix, vpos),
18065 vpos,
18066 TYPE_RANGED_INTEGERP (int, glyphs) ? XINT (glyphs) : 2);
18067 return Qnil;
18071 DEFUN ("dump-tool-bar-row", Fdump_tool_bar_row, Sdump_tool_bar_row, 1, 2, "",
18072 doc: /* Dump glyph row ROW of the tool-bar of the current frame to stderr.
18073 GLYPH 0 means don't dump glyphs.
18074 GLYPH 1 means dump glyphs in short form.
18075 GLYPH > 1 or omitted means dump glyphs in long form. */)
18076 (Lisp_Object row, Lisp_Object glyphs)
18078 struct frame *sf = SELECTED_FRAME ();
18079 struct glyph_matrix *m = XWINDOW (sf->tool_bar_window)->current_matrix;
18080 EMACS_INT vpos;
18082 CHECK_NUMBER (row);
18083 vpos = XINT (row);
18084 if (vpos >= 0 && vpos < m->nrows)
18085 dump_glyph_row (MATRIX_ROW (m, vpos), vpos,
18086 TYPE_RANGED_INTEGERP (int, glyphs) ? XINT (glyphs) : 2);
18087 return Qnil;
18091 DEFUN ("trace-redisplay", Ftrace_redisplay, Strace_redisplay, 0, 1, "P",
18092 doc: /* Toggle tracing of redisplay.
18093 With ARG, turn tracing on if and only if ARG is positive. */)
18094 (Lisp_Object arg)
18096 if (NILP (arg))
18097 trace_redisplay_p = !trace_redisplay_p;
18098 else
18100 arg = Fprefix_numeric_value (arg);
18101 trace_redisplay_p = XINT (arg) > 0;
18104 return Qnil;
18108 DEFUN ("trace-to-stderr", Ftrace_to_stderr, Strace_to_stderr, 1, MANY, "",
18109 doc: /* Like `format', but print result to stderr.
18110 usage: (trace-to-stderr STRING &rest OBJECTS) */)
18111 (ptrdiff_t nargs, Lisp_Object *args)
18113 Lisp_Object s = Fformat (nargs, args);
18114 fprintf (stderr, "%s", SDATA (s));
18115 return Qnil;
18118 #endif /* GLYPH_DEBUG */
18122 /***********************************************************************
18123 Building Desired Matrix Rows
18124 ***********************************************************************/
18126 /* Return a temporary glyph row holding the glyphs of an overlay arrow.
18127 Used for non-window-redisplay windows, and for windows w/o left fringe. */
18129 static struct glyph_row *
18130 get_overlay_arrow_glyph_row (struct window *w, Lisp_Object overlay_arrow_string)
18132 struct frame *f = XFRAME (WINDOW_FRAME (w));
18133 struct buffer *buffer = XBUFFER (w->buffer);
18134 struct buffer *old = current_buffer;
18135 const unsigned char *arrow_string = SDATA (overlay_arrow_string);
18136 int arrow_len = SCHARS (overlay_arrow_string);
18137 const unsigned char *arrow_end = arrow_string + arrow_len;
18138 const unsigned char *p;
18139 struct it it;
18140 int multibyte_p;
18141 int n_glyphs_before;
18143 set_buffer_temp (buffer);
18144 init_iterator (&it, w, -1, -1, &scratch_glyph_row, DEFAULT_FACE_ID);
18145 it.glyph_row->used[TEXT_AREA] = 0;
18146 SET_TEXT_POS (it.position, 0, 0);
18148 multibyte_p = !NILP (BVAR (buffer, enable_multibyte_characters));
18149 p = arrow_string;
18150 while (p < arrow_end)
18152 Lisp_Object face, ilisp;
18154 /* Get the next character. */
18155 if (multibyte_p)
18156 it.c = it.char_to_display = string_char_and_length (p, &it.len);
18157 else
18159 it.c = it.char_to_display = *p, it.len = 1;
18160 if (! ASCII_CHAR_P (it.c))
18161 it.char_to_display = BYTE8_TO_CHAR (it.c);
18163 p += it.len;
18165 /* Get its face. */
18166 ilisp = make_number (p - arrow_string);
18167 face = Fget_text_property (ilisp, Qface, overlay_arrow_string);
18168 it.face_id = compute_char_face (f, it.char_to_display, face);
18170 /* Compute its width, get its glyphs. */
18171 n_glyphs_before = it.glyph_row->used[TEXT_AREA];
18172 SET_TEXT_POS (it.position, -1, -1);
18173 PRODUCE_GLYPHS (&it);
18175 /* If this character doesn't fit any more in the line, we have
18176 to remove some glyphs. */
18177 if (it.current_x > it.last_visible_x)
18179 it.glyph_row->used[TEXT_AREA] = n_glyphs_before;
18180 break;
18184 set_buffer_temp (old);
18185 return it.glyph_row;
18189 /* Insert truncation glyphs at the start of IT->glyph_row. Truncation
18190 glyphs are only inserted for terminal frames since we can't really
18191 win with truncation glyphs when partially visible glyphs are
18192 involved. Which glyphs to insert is determined by
18193 produce_special_glyphs. */
18195 static void
18196 insert_left_trunc_glyphs (struct it *it)
18198 struct it truncate_it;
18199 struct glyph *from, *end, *to, *toend;
18201 xassert (!FRAME_WINDOW_P (it->f));
18203 /* Get the truncation glyphs. */
18204 truncate_it = *it;
18205 truncate_it.current_x = 0;
18206 truncate_it.face_id = DEFAULT_FACE_ID;
18207 truncate_it.glyph_row = &scratch_glyph_row;
18208 truncate_it.glyph_row->used[TEXT_AREA] = 0;
18209 CHARPOS (truncate_it.position) = BYTEPOS (truncate_it.position) = -1;
18210 truncate_it.object = make_number (0);
18211 produce_special_glyphs (&truncate_it, IT_TRUNCATION);
18213 /* Overwrite glyphs from IT with truncation glyphs. */
18214 if (!it->glyph_row->reversed_p)
18216 from = truncate_it.glyph_row->glyphs[TEXT_AREA];
18217 end = from + truncate_it.glyph_row->used[TEXT_AREA];
18218 to = it->glyph_row->glyphs[TEXT_AREA];
18219 toend = to + it->glyph_row->used[TEXT_AREA];
18221 while (from < end)
18222 *to++ = *from++;
18224 /* There may be padding glyphs left over. Overwrite them too. */
18225 while (to < toend && CHAR_GLYPH_PADDING_P (*to))
18227 from = truncate_it.glyph_row->glyphs[TEXT_AREA];
18228 while (from < end)
18229 *to++ = *from++;
18232 if (to > toend)
18233 it->glyph_row->used[TEXT_AREA] = to - it->glyph_row->glyphs[TEXT_AREA];
18235 else
18237 /* In R2L rows, overwrite the last (rightmost) glyphs, and do
18238 that back to front. */
18239 end = truncate_it.glyph_row->glyphs[TEXT_AREA];
18240 from = end + truncate_it.glyph_row->used[TEXT_AREA] - 1;
18241 toend = it->glyph_row->glyphs[TEXT_AREA];
18242 to = toend + it->glyph_row->used[TEXT_AREA] - 1;
18244 while (from >= end && to >= toend)
18245 *to-- = *from--;
18246 while (to >= toend && CHAR_GLYPH_PADDING_P (*to))
18248 from =
18249 truncate_it.glyph_row->glyphs[TEXT_AREA]
18250 + truncate_it.glyph_row->used[TEXT_AREA] - 1;
18251 while (from >= end && to >= toend)
18252 *to-- = *from--;
18254 if (from >= end)
18256 /* Need to free some room before prepending additional
18257 glyphs. */
18258 int move_by = from - end + 1;
18259 struct glyph *g0 = it->glyph_row->glyphs[TEXT_AREA];
18260 struct glyph *g = g0 + it->glyph_row->used[TEXT_AREA] - 1;
18262 for ( ; g >= g0; g--)
18263 g[move_by] = *g;
18264 while (from >= end)
18265 *to-- = *from--;
18266 it->glyph_row->used[TEXT_AREA] += move_by;
18271 /* Compute the hash code for ROW. */
18272 unsigned
18273 row_hash (struct glyph_row *row)
18275 int area, k;
18276 unsigned hashval = 0;
18278 for (area = LEFT_MARGIN_AREA; area < LAST_AREA; ++area)
18279 for (k = 0; k < row->used[area]; ++k)
18280 hashval = ((((hashval << 4) + (hashval >> 24)) & 0x0fffffff)
18281 + row->glyphs[area][k].u.val
18282 + row->glyphs[area][k].face_id
18283 + row->glyphs[area][k].padding_p
18284 + (row->glyphs[area][k].type << 2));
18286 return hashval;
18289 /* Compute the pixel height and width of IT->glyph_row.
18291 Most of the time, ascent and height of a display line will be equal
18292 to the max_ascent and max_height values of the display iterator
18293 structure. This is not the case if
18295 1. We hit ZV without displaying anything. In this case, max_ascent
18296 and max_height will be zero.
18298 2. We have some glyphs that don't contribute to the line height.
18299 (The glyph row flag contributes_to_line_height_p is for future
18300 pixmap extensions).
18302 The first case is easily covered by using default values because in
18303 these cases, the line height does not really matter, except that it
18304 must not be zero. */
18306 static void
18307 compute_line_metrics (struct it *it)
18309 struct glyph_row *row = it->glyph_row;
18311 if (FRAME_WINDOW_P (it->f))
18313 int i, min_y, max_y;
18315 /* The line may consist of one space only, that was added to
18316 place the cursor on it. If so, the row's height hasn't been
18317 computed yet. */
18318 if (row->height == 0)
18320 if (it->max_ascent + it->max_descent == 0)
18321 it->max_descent = it->max_phys_descent = FRAME_LINE_HEIGHT (it->f);
18322 row->ascent = it->max_ascent;
18323 row->height = it->max_ascent + it->max_descent;
18324 row->phys_ascent = it->max_phys_ascent;
18325 row->phys_height = it->max_phys_ascent + it->max_phys_descent;
18326 row->extra_line_spacing = it->max_extra_line_spacing;
18329 /* Compute the width of this line. */
18330 row->pixel_width = row->x;
18331 for (i = 0; i < row->used[TEXT_AREA]; ++i)
18332 row->pixel_width += row->glyphs[TEXT_AREA][i].pixel_width;
18334 xassert (row->pixel_width >= 0);
18335 xassert (row->ascent >= 0 && row->height > 0);
18337 row->overlapping_p = (MATRIX_ROW_OVERLAPS_SUCC_P (row)
18338 || MATRIX_ROW_OVERLAPS_PRED_P (row));
18340 /* If first line's physical ascent is larger than its logical
18341 ascent, use the physical ascent, and make the row taller.
18342 This makes accented characters fully visible. */
18343 if (row == MATRIX_FIRST_TEXT_ROW (it->w->desired_matrix)
18344 && row->phys_ascent > row->ascent)
18346 row->height += row->phys_ascent - row->ascent;
18347 row->ascent = row->phys_ascent;
18350 /* Compute how much of the line is visible. */
18351 row->visible_height = row->height;
18353 min_y = WINDOW_HEADER_LINE_HEIGHT (it->w);
18354 max_y = WINDOW_BOX_HEIGHT_NO_MODE_LINE (it->w);
18356 if (row->y < min_y)
18357 row->visible_height -= min_y - row->y;
18358 if (row->y + row->height > max_y)
18359 row->visible_height -= row->y + row->height - max_y;
18361 else
18363 row->pixel_width = row->used[TEXT_AREA];
18364 if (row->continued_p)
18365 row->pixel_width -= it->continuation_pixel_width;
18366 else if (row->truncated_on_right_p)
18367 row->pixel_width -= it->truncation_pixel_width;
18368 row->ascent = row->phys_ascent = 0;
18369 row->height = row->phys_height = row->visible_height = 1;
18370 row->extra_line_spacing = 0;
18373 /* Compute a hash code for this row. */
18374 row->hash = row_hash (row);
18376 it->max_ascent = it->max_descent = 0;
18377 it->max_phys_ascent = it->max_phys_descent = 0;
18381 /* Append one space to the glyph row of iterator IT if doing a
18382 window-based redisplay. The space has the same face as
18383 IT->face_id. Value is non-zero if a space was added.
18385 This function is called to make sure that there is always one glyph
18386 at the end of a glyph row that the cursor can be set on under
18387 window-systems. (If there weren't such a glyph we would not know
18388 how wide and tall a box cursor should be displayed).
18390 At the same time this space let's a nicely handle clearing to the
18391 end of the line if the row ends in italic text. */
18393 static int
18394 append_space_for_newline (struct it *it, int default_face_p)
18396 if (FRAME_WINDOW_P (it->f))
18398 int n = it->glyph_row->used[TEXT_AREA];
18400 if (it->glyph_row->glyphs[TEXT_AREA] + n
18401 < it->glyph_row->glyphs[1 + TEXT_AREA])
18403 /* Save some values that must not be changed.
18404 Must save IT->c and IT->len because otherwise
18405 ITERATOR_AT_END_P wouldn't work anymore after
18406 append_space_for_newline has been called. */
18407 enum display_element_type saved_what = it->what;
18408 int saved_c = it->c, saved_len = it->len;
18409 int saved_char_to_display = it->char_to_display;
18410 int saved_x = it->current_x;
18411 int saved_face_id = it->face_id;
18412 struct text_pos saved_pos;
18413 Lisp_Object saved_object;
18414 struct face *face;
18416 saved_object = it->object;
18417 saved_pos = it->position;
18419 it->what = IT_CHARACTER;
18420 memset (&it->position, 0, sizeof it->position);
18421 it->object = make_number (0);
18422 it->c = it->char_to_display = ' ';
18423 it->len = 1;
18425 /* If the default face was remapped, be sure to use the
18426 remapped face for the appended newline. */
18427 if (default_face_p)
18428 it->face_id = lookup_basic_face (it->f, DEFAULT_FACE_ID);
18429 else if (it->face_before_selective_p)
18430 it->face_id = it->saved_face_id;
18431 face = FACE_FROM_ID (it->f, it->face_id);
18432 it->face_id = FACE_FOR_CHAR (it->f, face, 0, -1, Qnil);
18434 PRODUCE_GLYPHS (it);
18436 it->override_ascent = -1;
18437 it->constrain_row_ascent_descent_p = 0;
18438 it->current_x = saved_x;
18439 it->object = saved_object;
18440 it->position = saved_pos;
18441 it->what = saved_what;
18442 it->face_id = saved_face_id;
18443 it->len = saved_len;
18444 it->c = saved_c;
18445 it->char_to_display = saved_char_to_display;
18446 return 1;
18450 return 0;
18454 /* Extend the face of the last glyph in the text area of IT->glyph_row
18455 to the end of the display line. Called from display_line. If the
18456 glyph row is empty, add a space glyph to it so that we know the
18457 face to draw. Set the glyph row flag fill_line_p. If the glyph
18458 row is R2L, prepend a stretch glyph to cover the empty space to the
18459 left of the leftmost glyph. */
18461 static void
18462 extend_face_to_end_of_line (struct it *it)
18464 struct face *face, *default_face;
18465 struct frame *f = it->f;
18467 /* If line is already filled, do nothing. Non window-system frames
18468 get a grace of one more ``pixel'' because their characters are
18469 1-``pixel'' wide, so they hit the equality too early. This grace
18470 is needed only for R2L rows that are not continued, to produce
18471 one extra blank where we could display the cursor. */
18472 if (it->current_x >= it->last_visible_x
18473 + (!FRAME_WINDOW_P (f)
18474 && it->glyph_row->reversed_p
18475 && !it->glyph_row->continued_p))
18476 return;
18478 /* The default face, possibly remapped. */
18479 default_face = FACE_FROM_ID (f, lookup_basic_face (f, DEFAULT_FACE_ID));
18481 /* Face extension extends the background and box of IT->face_id
18482 to the end of the line. If the background equals the background
18483 of the frame, we don't have to do anything. */
18484 if (it->face_before_selective_p)
18485 face = FACE_FROM_ID (f, it->saved_face_id);
18486 else
18487 face = FACE_FROM_ID (f, it->face_id);
18489 if (FRAME_WINDOW_P (f)
18490 && it->glyph_row->displays_text_p
18491 && face->box == FACE_NO_BOX
18492 && face->background == FRAME_BACKGROUND_PIXEL (f)
18493 && !face->stipple
18494 && !it->glyph_row->reversed_p)
18495 return;
18497 /* Set the glyph row flag indicating that the face of the last glyph
18498 in the text area has to be drawn to the end of the text area. */
18499 it->glyph_row->fill_line_p = 1;
18501 /* If current character of IT is not ASCII, make sure we have the
18502 ASCII face. This will be automatically undone the next time
18503 get_next_display_element returns a multibyte character. Note
18504 that the character will always be single byte in unibyte
18505 text. */
18506 if (!ASCII_CHAR_P (it->c))
18508 it->face_id = FACE_FOR_CHAR (f, face, 0, -1, Qnil);
18511 if (FRAME_WINDOW_P (f))
18513 /* If the row is empty, add a space with the current face of IT,
18514 so that we know which face to draw. */
18515 if (it->glyph_row->used[TEXT_AREA] == 0)
18517 it->glyph_row->glyphs[TEXT_AREA][0] = space_glyph;
18518 it->glyph_row->glyphs[TEXT_AREA][0].face_id = face->id;
18519 it->glyph_row->used[TEXT_AREA] = 1;
18521 #ifdef HAVE_WINDOW_SYSTEM
18522 if (it->glyph_row->reversed_p)
18524 /* Prepend a stretch glyph to the row, such that the
18525 rightmost glyph will be drawn flushed all the way to the
18526 right margin of the window. The stretch glyph that will
18527 occupy the empty space, if any, to the left of the
18528 glyphs. */
18529 struct font *font = face->font ? face->font : FRAME_FONT (f);
18530 struct glyph *row_start = it->glyph_row->glyphs[TEXT_AREA];
18531 struct glyph *row_end = row_start + it->glyph_row->used[TEXT_AREA];
18532 struct glyph *g;
18533 int row_width, stretch_ascent, stretch_width;
18534 struct text_pos saved_pos;
18535 int saved_face_id, saved_avoid_cursor;
18537 for (row_width = 0, g = row_start; g < row_end; g++)
18538 row_width += g->pixel_width;
18539 stretch_width = window_box_width (it->w, TEXT_AREA) - row_width;
18540 if (stretch_width > 0)
18542 stretch_ascent =
18543 (((it->ascent + it->descent)
18544 * FONT_BASE (font)) / FONT_HEIGHT (font));
18545 saved_pos = it->position;
18546 memset (&it->position, 0, sizeof it->position);
18547 saved_avoid_cursor = it->avoid_cursor_p;
18548 it->avoid_cursor_p = 1;
18549 saved_face_id = it->face_id;
18550 /* The last row's stretch glyph should get the default
18551 face, to avoid painting the rest of the window with
18552 the region face, if the region ends at ZV. */
18553 if (it->glyph_row->ends_at_zv_p)
18554 it->face_id = default_face->id;
18555 else
18556 it->face_id = face->id;
18557 append_stretch_glyph (it, make_number (0), stretch_width,
18558 it->ascent + it->descent, stretch_ascent);
18559 it->position = saved_pos;
18560 it->avoid_cursor_p = saved_avoid_cursor;
18561 it->face_id = saved_face_id;
18564 #endif /* HAVE_WINDOW_SYSTEM */
18566 else
18568 /* Save some values that must not be changed. */
18569 int saved_x = it->current_x;
18570 struct text_pos saved_pos;
18571 Lisp_Object saved_object;
18572 enum display_element_type saved_what = it->what;
18573 int saved_face_id = it->face_id;
18575 saved_object = it->object;
18576 saved_pos = it->position;
18578 it->what = IT_CHARACTER;
18579 memset (&it->position, 0, sizeof it->position);
18580 it->object = make_number (0);
18581 it->c = it->char_to_display = ' ';
18582 it->len = 1;
18583 /* The last row's blank glyphs should get the default face, to
18584 avoid painting the rest of the window with the region face,
18585 if the region ends at ZV. */
18586 if (it->glyph_row->ends_at_zv_p)
18587 it->face_id = default_face->id;
18588 else
18589 it->face_id = face->id;
18591 PRODUCE_GLYPHS (it);
18593 while (it->current_x <= it->last_visible_x)
18594 PRODUCE_GLYPHS (it);
18596 /* Don't count these blanks really. It would let us insert a left
18597 truncation glyph below and make us set the cursor on them, maybe. */
18598 it->current_x = saved_x;
18599 it->object = saved_object;
18600 it->position = saved_pos;
18601 it->what = saved_what;
18602 it->face_id = saved_face_id;
18607 /* Value is non-zero if text starting at CHARPOS in current_buffer is
18608 trailing whitespace. */
18610 static int
18611 trailing_whitespace_p (ptrdiff_t charpos)
18613 ptrdiff_t bytepos = CHAR_TO_BYTE (charpos);
18614 int c = 0;
18616 while (bytepos < ZV_BYTE
18617 && (c = FETCH_CHAR (bytepos),
18618 c == ' ' || c == '\t'))
18619 ++bytepos;
18621 if (bytepos >= ZV_BYTE || c == '\n' || c == '\r')
18623 if (bytepos != PT_BYTE)
18624 return 1;
18626 return 0;
18630 /* Highlight trailing whitespace, if any, in ROW. */
18632 static void
18633 highlight_trailing_whitespace (struct frame *f, struct glyph_row *row)
18635 int used = row->used[TEXT_AREA];
18637 if (used)
18639 struct glyph *start = row->glyphs[TEXT_AREA];
18640 struct glyph *glyph = start + used - 1;
18642 if (row->reversed_p)
18644 /* Right-to-left rows need to be processed in the opposite
18645 direction, so swap the edge pointers. */
18646 glyph = start;
18647 start = row->glyphs[TEXT_AREA] + used - 1;
18650 /* Skip over glyphs inserted to display the cursor at the
18651 end of a line, for extending the face of the last glyph
18652 to the end of the line on terminals, and for truncation
18653 and continuation glyphs. */
18654 if (!row->reversed_p)
18656 while (glyph >= start
18657 && glyph->type == CHAR_GLYPH
18658 && INTEGERP (glyph->object))
18659 --glyph;
18661 else
18663 while (glyph <= start
18664 && glyph->type == CHAR_GLYPH
18665 && INTEGERP (glyph->object))
18666 ++glyph;
18669 /* If last glyph is a space or stretch, and it's trailing
18670 whitespace, set the face of all trailing whitespace glyphs in
18671 IT->glyph_row to `trailing-whitespace'. */
18672 if ((row->reversed_p ? glyph <= start : glyph >= start)
18673 && BUFFERP (glyph->object)
18674 && (glyph->type == STRETCH_GLYPH
18675 || (glyph->type == CHAR_GLYPH
18676 && glyph->u.ch == ' '))
18677 && trailing_whitespace_p (glyph->charpos))
18679 int face_id = lookup_named_face (f, Qtrailing_whitespace, 0);
18680 if (face_id < 0)
18681 return;
18683 if (!row->reversed_p)
18685 while (glyph >= start
18686 && BUFFERP (glyph->object)
18687 && (glyph->type == STRETCH_GLYPH
18688 || (glyph->type == CHAR_GLYPH
18689 && glyph->u.ch == ' ')))
18690 (glyph--)->face_id = face_id;
18692 else
18694 while (glyph <= start
18695 && BUFFERP (glyph->object)
18696 && (glyph->type == STRETCH_GLYPH
18697 || (glyph->type == CHAR_GLYPH
18698 && glyph->u.ch == ' ')))
18699 (glyph++)->face_id = face_id;
18706 /* Value is non-zero if glyph row ROW should be
18707 used to hold the cursor. */
18709 static int
18710 cursor_row_p (struct glyph_row *row)
18712 int result = 1;
18714 if (PT == CHARPOS (row->end.pos)
18715 || PT == MATRIX_ROW_END_CHARPOS (row))
18717 /* Suppose the row ends on a string.
18718 Unless the row is continued, that means it ends on a newline
18719 in the string. If it's anything other than a display string
18720 (e.g., a before-string from an overlay), we don't want the
18721 cursor there. (This heuristic seems to give the optimal
18722 behavior for the various types of multi-line strings.)
18723 One exception: if the string has `cursor' property on one of
18724 its characters, we _do_ want the cursor there. */
18725 if (CHARPOS (row->end.string_pos) >= 0)
18727 if (row->continued_p)
18728 result = 1;
18729 else
18731 /* Check for `display' property. */
18732 struct glyph *beg = row->glyphs[TEXT_AREA];
18733 struct glyph *end = beg + row->used[TEXT_AREA] - 1;
18734 struct glyph *glyph;
18736 result = 0;
18737 for (glyph = end; glyph >= beg; --glyph)
18738 if (STRINGP (glyph->object))
18740 Lisp_Object prop
18741 = Fget_char_property (make_number (PT),
18742 Qdisplay, Qnil);
18743 result =
18744 (!NILP (prop)
18745 && display_prop_string_p (prop, glyph->object));
18746 /* If there's a `cursor' property on one of the
18747 string's characters, this row is a cursor row,
18748 even though this is not a display string. */
18749 if (!result)
18751 Lisp_Object s = glyph->object;
18753 for ( ; glyph >= beg && EQ (glyph->object, s); --glyph)
18755 ptrdiff_t gpos = glyph->charpos;
18757 if (!NILP (Fget_char_property (make_number (gpos),
18758 Qcursor, s)))
18760 result = 1;
18761 break;
18765 break;
18769 else if (MATRIX_ROW_ENDS_IN_MIDDLE_OF_CHAR_P (row))
18771 /* If the row ends in middle of a real character,
18772 and the line is continued, we want the cursor here.
18773 That's because CHARPOS (ROW->end.pos) would equal
18774 PT if PT is before the character. */
18775 if (!row->ends_in_ellipsis_p)
18776 result = row->continued_p;
18777 else
18778 /* If the row ends in an ellipsis, then
18779 CHARPOS (ROW->end.pos) will equal point after the
18780 invisible text. We want that position to be displayed
18781 after the ellipsis. */
18782 result = 0;
18784 /* If the row ends at ZV, display the cursor at the end of that
18785 row instead of at the start of the row below. */
18786 else if (row->ends_at_zv_p)
18787 result = 1;
18788 else
18789 result = 0;
18792 return result;
18797 /* Push the property PROP so that it will be rendered at the current
18798 position in IT. Return 1 if PROP was successfully pushed, 0
18799 otherwise. Called from handle_line_prefix to handle the
18800 `line-prefix' and `wrap-prefix' properties. */
18802 static int
18803 push_prefix_prop (struct it *it, Lisp_Object prop)
18805 struct text_pos pos =
18806 STRINGP (it->string) ? it->current.string_pos : it->current.pos;
18808 xassert (it->method == GET_FROM_BUFFER
18809 || it->method == GET_FROM_DISPLAY_VECTOR
18810 || it->method == GET_FROM_STRING);
18812 /* We need to save the current buffer/string position, so it will be
18813 restored by pop_it, because iterate_out_of_display_property
18814 depends on that being set correctly, but some situations leave
18815 it->position not yet set when this function is called. */
18816 push_it (it, &pos);
18818 if (STRINGP (prop))
18820 if (SCHARS (prop) == 0)
18822 pop_it (it);
18823 return 0;
18826 it->string = prop;
18827 it->string_from_prefix_prop_p = 1;
18828 it->multibyte_p = STRING_MULTIBYTE (it->string);
18829 it->current.overlay_string_index = -1;
18830 IT_STRING_CHARPOS (*it) = IT_STRING_BYTEPOS (*it) = 0;
18831 it->end_charpos = it->string_nchars = SCHARS (it->string);
18832 it->method = GET_FROM_STRING;
18833 it->stop_charpos = 0;
18834 it->prev_stop = 0;
18835 it->base_level_stop = 0;
18837 /* Force paragraph direction to be that of the parent
18838 buffer/string. */
18839 if (it->bidi_p && it->bidi_it.paragraph_dir == R2L)
18840 it->paragraph_embedding = it->bidi_it.paragraph_dir;
18841 else
18842 it->paragraph_embedding = L2R;
18844 /* Set up the bidi iterator for this display string. */
18845 if (it->bidi_p)
18847 it->bidi_it.string.lstring = it->string;
18848 it->bidi_it.string.s = NULL;
18849 it->bidi_it.string.schars = it->end_charpos;
18850 it->bidi_it.string.bufpos = IT_CHARPOS (*it);
18851 it->bidi_it.string.from_disp_str = it->string_from_display_prop_p;
18852 it->bidi_it.string.unibyte = !it->multibyte_p;
18853 bidi_init_it (0, 0, FRAME_WINDOW_P (it->f), &it->bidi_it);
18856 else if (CONSP (prop) && EQ (XCAR (prop), Qspace))
18858 it->method = GET_FROM_STRETCH;
18859 it->object = prop;
18861 #ifdef HAVE_WINDOW_SYSTEM
18862 else if (IMAGEP (prop))
18864 it->what = IT_IMAGE;
18865 it->image_id = lookup_image (it->f, prop);
18866 it->method = GET_FROM_IMAGE;
18868 #endif /* HAVE_WINDOW_SYSTEM */
18869 else
18871 pop_it (it); /* bogus display property, give up */
18872 return 0;
18875 return 1;
18878 /* Return the character-property PROP at the current position in IT. */
18880 static Lisp_Object
18881 get_it_property (struct it *it, Lisp_Object prop)
18883 Lisp_Object position;
18885 if (STRINGP (it->object))
18886 position = make_number (IT_STRING_CHARPOS (*it));
18887 else if (BUFFERP (it->object))
18888 position = make_number (IT_CHARPOS (*it));
18889 else
18890 return Qnil;
18892 return Fget_char_property (position, prop, it->object);
18895 /* See if there's a line- or wrap-prefix, and if so, push it on IT. */
18897 static void
18898 handle_line_prefix (struct it *it)
18900 Lisp_Object prefix;
18902 if (it->continuation_lines_width > 0)
18904 prefix = get_it_property (it, Qwrap_prefix);
18905 if (NILP (prefix))
18906 prefix = Vwrap_prefix;
18908 else
18910 prefix = get_it_property (it, Qline_prefix);
18911 if (NILP (prefix))
18912 prefix = Vline_prefix;
18914 if (! NILP (prefix) && push_prefix_prop (it, prefix))
18916 /* If the prefix is wider than the window, and we try to wrap
18917 it, it would acquire its own wrap prefix, and so on till the
18918 iterator stack overflows. So, don't wrap the prefix. */
18919 it->line_wrap = TRUNCATE;
18920 it->avoid_cursor_p = 1;
18926 /* Remove N glyphs at the start of a reversed IT->glyph_row. Called
18927 only for R2L lines from display_line and display_string, when they
18928 decide that too many glyphs were produced by PRODUCE_GLYPHS, and
18929 the line/string needs to be continued on the next glyph row. */
18930 static void
18931 unproduce_glyphs (struct it *it, int n)
18933 struct glyph *glyph, *end;
18935 xassert (it->glyph_row);
18936 xassert (it->glyph_row->reversed_p);
18937 xassert (it->area == TEXT_AREA);
18938 xassert (n <= it->glyph_row->used[TEXT_AREA]);
18940 if (n > it->glyph_row->used[TEXT_AREA])
18941 n = it->glyph_row->used[TEXT_AREA];
18942 glyph = it->glyph_row->glyphs[TEXT_AREA] + n;
18943 end = it->glyph_row->glyphs[TEXT_AREA] + it->glyph_row->used[TEXT_AREA];
18944 for ( ; glyph < end; glyph++)
18945 glyph[-n] = *glyph;
18948 /* Find the positions in a bidi-reordered ROW to serve as ROW->minpos
18949 and ROW->maxpos. */
18950 static void
18951 find_row_edges (struct it *it, struct glyph_row *row,
18952 ptrdiff_t min_pos, ptrdiff_t min_bpos,
18953 ptrdiff_t max_pos, ptrdiff_t max_bpos)
18955 /* FIXME: Revisit this when glyph ``spilling'' in continuation
18956 lines' rows is implemented for bidi-reordered rows. */
18958 /* ROW->minpos is the value of min_pos, the minimal buffer position
18959 we have in ROW, or ROW->start.pos if that is smaller. */
18960 if (min_pos <= ZV && min_pos < row->start.pos.charpos)
18961 SET_TEXT_POS (row->minpos, min_pos, min_bpos);
18962 else
18963 /* We didn't find buffer positions smaller than ROW->start, or
18964 didn't find _any_ valid buffer positions in any of the glyphs,
18965 so we must trust the iterator's computed positions. */
18966 row->minpos = row->start.pos;
18967 if (max_pos <= 0)
18969 max_pos = CHARPOS (it->current.pos);
18970 max_bpos = BYTEPOS (it->current.pos);
18973 /* Here are the various use-cases for ending the row, and the
18974 corresponding values for ROW->maxpos:
18976 Line ends in a newline from buffer eol_pos + 1
18977 Line is continued from buffer max_pos + 1
18978 Line is truncated on right it->current.pos
18979 Line ends in a newline from string max_pos + 1(*)
18980 (*) + 1 only when line ends in a forward scan
18981 Line is continued from string max_pos
18982 Line is continued from display vector max_pos
18983 Line is entirely from a string min_pos == max_pos
18984 Line is entirely from a display vector min_pos == max_pos
18985 Line that ends at ZV ZV
18987 If you discover other use-cases, please add them here as
18988 appropriate. */
18989 if (row->ends_at_zv_p)
18990 row->maxpos = it->current.pos;
18991 else if (row->used[TEXT_AREA])
18993 int seen_this_string = 0;
18994 struct glyph_row *r1 = row - 1;
18996 /* Did we see the same display string on the previous row? */
18997 if (STRINGP (it->object)
18998 /* this is not the first row */
18999 && row > it->w->desired_matrix->rows
19000 /* previous row is not the header line */
19001 && !r1->mode_line_p
19002 /* previous row also ends in a newline from a string */
19003 && r1->ends_in_newline_from_string_p)
19005 struct glyph *start, *end;
19007 /* Search for the last glyph of the previous row that came
19008 from buffer or string. Depending on whether the row is
19009 L2R or R2L, we need to process it front to back or the
19010 other way round. */
19011 if (!r1->reversed_p)
19013 start = r1->glyphs[TEXT_AREA];
19014 end = start + r1->used[TEXT_AREA];
19015 /* Glyphs inserted by redisplay have an integer (zero)
19016 as their object. */
19017 while (end > start
19018 && INTEGERP ((end - 1)->object)
19019 && (end - 1)->charpos <= 0)
19020 --end;
19021 if (end > start)
19023 if (EQ ((end - 1)->object, it->object))
19024 seen_this_string = 1;
19026 else
19027 /* If all the glyphs of the previous row were inserted
19028 by redisplay, it means the previous row was
19029 produced from a single newline, which is only
19030 possible if that newline came from the same string
19031 as the one which produced this ROW. */
19032 seen_this_string = 1;
19034 else
19036 end = r1->glyphs[TEXT_AREA] - 1;
19037 start = end + r1->used[TEXT_AREA];
19038 while (end < start
19039 && INTEGERP ((end + 1)->object)
19040 && (end + 1)->charpos <= 0)
19041 ++end;
19042 if (end < start)
19044 if (EQ ((end + 1)->object, it->object))
19045 seen_this_string = 1;
19047 else
19048 seen_this_string = 1;
19051 /* Take note of each display string that covers a newline only
19052 once, the first time we see it. This is for when a display
19053 string includes more than one newline in it. */
19054 if (row->ends_in_newline_from_string_p && !seen_this_string)
19056 /* If we were scanning the buffer forward when we displayed
19057 the string, we want to account for at least one buffer
19058 position that belongs to this row (position covered by
19059 the display string), so that cursor positioning will
19060 consider this row as a candidate when point is at the end
19061 of the visual line represented by this row. This is not
19062 required when scanning back, because max_pos will already
19063 have a much larger value. */
19064 if (CHARPOS (row->end.pos) > max_pos)
19065 INC_BOTH (max_pos, max_bpos);
19066 SET_TEXT_POS (row->maxpos, max_pos, max_bpos);
19068 else if (CHARPOS (it->eol_pos) > 0)
19069 SET_TEXT_POS (row->maxpos,
19070 CHARPOS (it->eol_pos) + 1, BYTEPOS (it->eol_pos) + 1);
19071 else if (row->continued_p)
19073 /* If max_pos is different from IT's current position, it
19074 means IT->method does not belong to the display element
19075 at max_pos. However, it also means that the display
19076 element at max_pos was displayed in its entirety on this
19077 line, which is equivalent to saying that the next line
19078 starts at the next buffer position. */
19079 if (IT_CHARPOS (*it) == max_pos && it->method != GET_FROM_BUFFER)
19080 SET_TEXT_POS (row->maxpos, max_pos, max_bpos);
19081 else
19083 INC_BOTH (max_pos, max_bpos);
19084 SET_TEXT_POS (row->maxpos, max_pos, max_bpos);
19087 else if (row->truncated_on_right_p)
19088 /* display_line already called reseat_at_next_visible_line_start,
19089 which puts the iterator at the beginning of the next line, in
19090 the logical order. */
19091 row->maxpos = it->current.pos;
19092 else if (max_pos == min_pos && it->method != GET_FROM_BUFFER)
19093 /* A line that is entirely from a string/image/stretch... */
19094 row->maxpos = row->minpos;
19095 else
19096 abort ();
19098 else
19099 row->maxpos = it->current.pos;
19102 /* Construct the glyph row IT->glyph_row in the desired matrix of
19103 IT->w from text at the current position of IT. See dispextern.h
19104 for an overview of struct it. Value is non-zero if
19105 IT->glyph_row displays text, as opposed to a line displaying ZV
19106 only. */
19108 static int
19109 display_line (struct it *it)
19111 struct glyph_row *row = it->glyph_row;
19112 Lisp_Object overlay_arrow_string;
19113 struct it wrap_it;
19114 void *wrap_data = NULL;
19115 int may_wrap = 0, wrap_x IF_LINT (= 0);
19116 int wrap_row_used = -1;
19117 int wrap_row_ascent IF_LINT (= 0), wrap_row_height IF_LINT (= 0);
19118 int wrap_row_phys_ascent IF_LINT (= 0), wrap_row_phys_height IF_LINT (= 0);
19119 int wrap_row_extra_line_spacing IF_LINT (= 0);
19120 ptrdiff_t wrap_row_min_pos IF_LINT (= 0), wrap_row_min_bpos IF_LINT (= 0);
19121 ptrdiff_t wrap_row_max_pos IF_LINT (= 0), wrap_row_max_bpos IF_LINT (= 0);
19122 int cvpos;
19123 ptrdiff_t min_pos = ZV + 1, max_pos = 0;
19124 ptrdiff_t min_bpos IF_LINT (= 0), max_bpos IF_LINT (= 0);
19126 /* We always start displaying at hpos zero even if hscrolled. */
19127 xassert (it->hpos == 0 && it->current_x == 0);
19129 if (MATRIX_ROW_VPOS (row, it->w->desired_matrix)
19130 >= it->w->desired_matrix->nrows)
19132 it->w->nrows_scale_factor++;
19133 fonts_changed_p = 1;
19134 return 0;
19137 /* Is IT->w showing the region? */
19138 it->w->region_showing = it->region_beg_charpos > 0 ? Qt : Qnil;
19140 /* Clear the result glyph row and enable it. */
19141 prepare_desired_row (row);
19143 row->y = it->current_y;
19144 row->start = it->start;
19145 row->continuation_lines_width = it->continuation_lines_width;
19146 row->displays_text_p = 1;
19147 row->starts_in_middle_of_char_p = it->starts_in_middle_of_char_p;
19148 it->starts_in_middle_of_char_p = 0;
19150 /* Arrange the overlays nicely for our purposes. Usually, we call
19151 display_line on only one line at a time, in which case this
19152 can't really hurt too much, or we call it on lines which appear
19153 one after another in the buffer, in which case all calls to
19154 recenter_overlay_lists but the first will be pretty cheap. */
19155 recenter_overlay_lists (current_buffer, IT_CHARPOS (*it));
19157 /* Move over display elements that are not visible because we are
19158 hscrolled. This may stop at an x-position < IT->first_visible_x
19159 if the first glyph is partially visible or if we hit a line end. */
19160 if (it->current_x < it->first_visible_x)
19162 this_line_min_pos = row->start.pos;
19163 move_it_in_display_line_to (it, ZV, it->first_visible_x,
19164 MOVE_TO_POS | MOVE_TO_X);
19165 /* Record the smallest positions seen while we moved over
19166 display elements that are not visible. This is needed by
19167 redisplay_internal for optimizing the case where the cursor
19168 stays inside the same line. The rest of this function only
19169 considers positions that are actually displayed, so
19170 RECORD_MAX_MIN_POS will not otherwise record positions that
19171 are hscrolled to the left of the left edge of the window. */
19172 min_pos = CHARPOS (this_line_min_pos);
19173 min_bpos = BYTEPOS (this_line_min_pos);
19175 else
19177 /* We only do this when not calling `move_it_in_display_line_to'
19178 above, because move_it_in_display_line_to calls
19179 handle_line_prefix itself. */
19180 handle_line_prefix (it);
19183 /* Get the initial row height. This is either the height of the
19184 text hscrolled, if there is any, or zero. */
19185 row->ascent = it->max_ascent;
19186 row->height = it->max_ascent + it->max_descent;
19187 row->phys_ascent = it->max_phys_ascent;
19188 row->phys_height = it->max_phys_ascent + it->max_phys_descent;
19189 row->extra_line_spacing = it->max_extra_line_spacing;
19191 /* Utility macro to record max and min buffer positions seen until now. */
19192 #define RECORD_MAX_MIN_POS(IT) \
19193 do \
19195 int composition_p = !STRINGP ((IT)->string) \
19196 && ((IT)->what == IT_COMPOSITION); \
19197 ptrdiff_t current_pos = \
19198 composition_p ? (IT)->cmp_it.charpos \
19199 : IT_CHARPOS (*(IT)); \
19200 ptrdiff_t current_bpos = \
19201 composition_p ? CHAR_TO_BYTE (current_pos) \
19202 : IT_BYTEPOS (*(IT)); \
19203 if (current_pos < min_pos) \
19205 min_pos = current_pos; \
19206 min_bpos = current_bpos; \
19208 if (IT_CHARPOS (*it) > max_pos) \
19210 max_pos = IT_CHARPOS (*it); \
19211 max_bpos = IT_BYTEPOS (*it); \
19214 while (0)
19216 /* Loop generating characters. The loop is left with IT on the next
19217 character to display. */
19218 while (1)
19220 int n_glyphs_before, hpos_before, x_before;
19221 int x, nglyphs;
19222 int ascent = 0, descent = 0, phys_ascent = 0, phys_descent = 0;
19224 /* Retrieve the next thing to display. Value is zero if end of
19225 buffer reached. */
19226 if (!get_next_display_element (it))
19228 /* Maybe add a space at the end of this line that is used to
19229 display the cursor there under X. Set the charpos of the
19230 first glyph of blank lines not corresponding to any text
19231 to -1. */
19232 if (IT_OVERFLOW_NEWLINE_INTO_FRINGE (it))
19233 row->exact_window_width_line_p = 1;
19234 else if ((append_space_for_newline (it, 1) && row->used[TEXT_AREA] == 1)
19235 || row->used[TEXT_AREA] == 0)
19237 row->glyphs[TEXT_AREA]->charpos = -1;
19238 row->displays_text_p = 0;
19240 if (!NILP (BVAR (XBUFFER (it->w->buffer), indicate_empty_lines))
19241 && (!MINI_WINDOW_P (it->w)
19242 || (minibuf_level && EQ (it->window, minibuf_window))))
19243 row->indicate_empty_line_p = 1;
19246 it->continuation_lines_width = 0;
19247 row->ends_at_zv_p = 1;
19248 /* A row that displays right-to-left text must always have
19249 its last face extended all the way to the end of line,
19250 even if this row ends in ZV, because we still write to
19251 the screen left to right. We also need to extend the
19252 last face if the default face is remapped to some
19253 different face, otherwise the functions that clear
19254 portions of the screen will clear with the default face's
19255 background color. */
19256 if (row->reversed_p
19257 || lookup_basic_face (it->f, DEFAULT_FACE_ID) != DEFAULT_FACE_ID)
19258 extend_face_to_end_of_line (it);
19259 break;
19262 /* Now, get the metrics of what we want to display. This also
19263 generates glyphs in `row' (which is IT->glyph_row). */
19264 n_glyphs_before = row->used[TEXT_AREA];
19265 x = it->current_x;
19267 /* Remember the line height so far in case the next element doesn't
19268 fit on the line. */
19269 if (it->line_wrap != TRUNCATE)
19271 ascent = it->max_ascent;
19272 descent = it->max_descent;
19273 phys_ascent = it->max_phys_ascent;
19274 phys_descent = it->max_phys_descent;
19276 if (it->line_wrap == WORD_WRAP && it->area == TEXT_AREA)
19278 if (IT_DISPLAYING_WHITESPACE (it))
19279 may_wrap = 1;
19280 else if (may_wrap)
19282 SAVE_IT (wrap_it, *it, wrap_data);
19283 wrap_x = x;
19284 wrap_row_used = row->used[TEXT_AREA];
19285 wrap_row_ascent = row->ascent;
19286 wrap_row_height = row->height;
19287 wrap_row_phys_ascent = row->phys_ascent;
19288 wrap_row_phys_height = row->phys_height;
19289 wrap_row_extra_line_spacing = row->extra_line_spacing;
19290 wrap_row_min_pos = min_pos;
19291 wrap_row_min_bpos = min_bpos;
19292 wrap_row_max_pos = max_pos;
19293 wrap_row_max_bpos = max_bpos;
19294 may_wrap = 0;
19299 PRODUCE_GLYPHS (it);
19301 /* If this display element was in marginal areas, continue with
19302 the next one. */
19303 if (it->area != TEXT_AREA)
19305 row->ascent = max (row->ascent, it->max_ascent);
19306 row->height = max (row->height, it->max_ascent + it->max_descent);
19307 row->phys_ascent = max (row->phys_ascent, it->max_phys_ascent);
19308 row->phys_height = max (row->phys_height,
19309 it->max_phys_ascent + it->max_phys_descent);
19310 row->extra_line_spacing = max (row->extra_line_spacing,
19311 it->max_extra_line_spacing);
19312 set_iterator_to_next (it, 1);
19313 continue;
19316 /* Does the display element fit on the line? If we truncate
19317 lines, we should draw past the right edge of the window. If
19318 we don't truncate, we want to stop so that we can display the
19319 continuation glyph before the right margin. If lines are
19320 continued, there are two possible strategies for characters
19321 resulting in more than 1 glyph (e.g. tabs): Display as many
19322 glyphs as possible in this line and leave the rest for the
19323 continuation line, or display the whole element in the next
19324 line. Original redisplay did the former, so we do it also. */
19325 nglyphs = row->used[TEXT_AREA] - n_glyphs_before;
19326 hpos_before = it->hpos;
19327 x_before = x;
19329 if (/* Not a newline. */
19330 nglyphs > 0
19331 /* Glyphs produced fit entirely in the line. */
19332 && it->current_x < it->last_visible_x)
19334 it->hpos += nglyphs;
19335 row->ascent = max (row->ascent, it->max_ascent);
19336 row->height = max (row->height, it->max_ascent + it->max_descent);
19337 row->phys_ascent = max (row->phys_ascent, it->max_phys_ascent);
19338 row->phys_height = max (row->phys_height,
19339 it->max_phys_ascent + it->max_phys_descent);
19340 row->extra_line_spacing = max (row->extra_line_spacing,
19341 it->max_extra_line_spacing);
19342 if (it->current_x - it->pixel_width < it->first_visible_x)
19343 row->x = x - it->first_visible_x;
19344 /* Record the maximum and minimum buffer positions seen so
19345 far in glyphs that will be displayed by this row. */
19346 if (it->bidi_p)
19347 RECORD_MAX_MIN_POS (it);
19349 else
19351 int i, new_x;
19352 struct glyph *glyph;
19354 for (i = 0; i < nglyphs; ++i, x = new_x)
19356 glyph = row->glyphs[TEXT_AREA] + n_glyphs_before + i;
19357 new_x = x + glyph->pixel_width;
19359 if (/* Lines are continued. */
19360 it->line_wrap != TRUNCATE
19361 && (/* Glyph doesn't fit on the line. */
19362 new_x > it->last_visible_x
19363 /* Or it fits exactly on a window system frame. */
19364 || (new_x == it->last_visible_x
19365 && FRAME_WINDOW_P (it->f))))
19367 /* End of a continued line. */
19369 if (it->hpos == 0
19370 || (new_x == it->last_visible_x
19371 && FRAME_WINDOW_P (it->f)))
19373 /* Current glyph is the only one on the line or
19374 fits exactly on the line. We must continue
19375 the line because we can't draw the cursor
19376 after the glyph. */
19377 row->continued_p = 1;
19378 it->current_x = new_x;
19379 it->continuation_lines_width += new_x;
19380 ++it->hpos;
19381 if (i == nglyphs - 1)
19383 /* If line-wrap is on, check if a previous
19384 wrap point was found. */
19385 if (wrap_row_used > 0
19386 /* Even if there is a previous wrap
19387 point, continue the line here as
19388 usual, if (i) the previous character
19389 was a space or tab AND (ii) the
19390 current character is not. */
19391 && (!may_wrap
19392 || IT_DISPLAYING_WHITESPACE (it)))
19393 goto back_to_wrap;
19395 /* Record the maximum and minimum buffer
19396 positions seen so far in glyphs that will be
19397 displayed by this row. */
19398 if (it->bidi_p)
19399 RECORD_MAX_MIN_POS (it);
19400 set_iterator_to_next (it, 1);
19401 if (IT_OVERFLOW_NEWLINE_INTO_FRINGE (it))
19403 if (!get_next_display_element (it))
19405 row->exact_window_width_line_p = 1;
19406 it->continuation_lines_width = 0;
19407 row->continued_p = 0;
19408 row->ends_at_zv_p = 1;
19410 else if (ITERATOR_AT_END_OF_LINE_P (it))
19412 row->continued_p = 0;
19413 row->exact_window_width_line_p = 1;
19417 else if (it->bidi_p)
19418 RECORD_MAX_MIN_POS (it);
19420 else if (CHAR_GLYPH_PADDING_P (*glyph)
19421 && !FRAME_WINDOW_P (it->f))
19423 /* A padding glyph that doesn't fit on this line.
19424 This means the whole character doesn't fit
19425 on the line. */
19426 if (row->reversed_p)
19427 unproduce_glyphs (it, row->used[TEXT_AREA]
19428 - n_glyphs_before);
19429 row->used[TEXT_AREA] = n_glyphs_before;
19431 /* Fill the rest of the row with continuation
19432 glyphs like in 20.x. */
19433 while (row->glyphs[TEXT_AREA] + row->used[TEXT_AREA]
19434 < row->glyphs[1 + TEXT_AREA])
19435 produce_special_glyphs (it, IT_CONTINUATION);
19437 row->continued_p = 1;
19438 it->current_x = x_before;
19439 it->continuation_lines_width += x_before;
19441 /* Restore the height to what it was before the
19442 element not fitting on the line. */
19443 it->max_ascent = ascent;
19444 it->max_descent = descent;
19445 it->max_phys_ascent = phys_ascent;
19446 it->max_phys_descent = phys_descent;
19448 else if (wrap_row_used > 0)
19450 back_to_wrap:
19451 if (row->reversed_p)
19452 unproduce_glyphs (it,
19453 row->used[TEXT_AREA] - wrap_row_used);
19454 RESTORE_IT (it, &wrap_it, wrap_data);
19455 it->continuation_lines_width += wrap_x;
19456 row->used[TEXT_AREA] = wrap_row_used;
19457 row->ascent = wrap_row_ascent;
19458 row->height = wrap_row_height;
19459 row->phys_ascent = wrap_row_phys_ascent;
19460 row->phys_height = wrap_row_phys_height;
19461 row->extra_line_spacing = wrap_row_extra_line_spacing;
19462 min_pos = wrap_row_min_pos;
19463 min_bpos = wrap_row_min_bpos;
19464 max_pos = wrap_row_max_pos;
19465 max_bpos = wrap_row_max_bpos;
19466 row->continued_p = 1;
19467 row->ends_at_zv_p = 0;
19468 row->exact_window_width_line_p = 0;
19469 it->continuation_lines_width += x;
19471 /* Make sure that a non-default face is extended
19472 up to the right margin of the window. */
19473 extend_face_to_end_of_line (it);
19475 else if (it->c == '\t' && FRAME_WINDOW_P (it->f))
19477 /* A TAB that extends past the right edge of the
19478 window. This produces a single glyph on
19479 window system frames. We leave the glyph in
19480 this row and let it fill the row, but don't
19481 consume the TAB. */
19482 it->continuation_lines_width += it->last_visible_x;
19483 row->ends_in_middle_of_char_p = 1;
19484 row->continued_p = 1;
19485 glyph->pixel_width = it->last_visible_x - x;
19486 it->starts_in_middle_of_char_p = 1;
19488 else
19490 /* Something other than a TAB that draws past
19491 the right edge of the window. Restore
19492 positions to values before the element. */
19493 if (row->reversed_p)
19494 unproduce_glyphs (it, row->used[TEXT_AREA]
19495 - (n_glyphs_before + i));
19496 row->used[TEXT_AREA] = n_glyphs_before + i;
19498 /* Display continuation glyphs. */
19499 if (!FRAME_WINDOW_P (it->f))
19500 produce_special_glyphs (it, IT_CONTINUATION);
19501 row->continued_p = 1;
19503 it->current_x = x_before;
19504 it->continuation_lines_width += x;
19505 extend_face_to_end_of_line (it);
19507 if (nglyphs > 1 && i > 0)
19509 row->ends_in_middle_of_char_p = 1;
19510 it->starts_in_middle_of_char_p = 1;
19513 /* Restore the height to what it was before the
19514 element not fitting on the line. */
19515 it->max_ascent = ascent;
19516 it->max_descent = descent;
19517 it->max_phys_ascent = phys_ascent;
19518 it->max_phys_descent = phys_descent;
19521 break;
19523 else if (new_x > it->first_visible_x)
19525 /* Increment number of glyphs actually displayed. */
19526 ++it->hpos;
19528 /* Record the maximum and minimum buffer positions
19529 seen so far in glyphs that will be displayed by
19530 this row. */
19531 if (it->bidi_p)
19532 RECORD_MAX_MIN_POS (it);
19534 if (x < it->first_visible_x)
19535 /* Glyph is partially visible, i.e. row starts at
19536 negative X position. */
19537 row->x = x - it->first_visible_x;
19539 else
19541 /* Glyph is completely off the left margin of the
19542 window. This should not happen because of the
19543 move_it_in_display_line at the start of this
19544 function, unless the text display area of the
19545 window is empty. */
19546 xassert (it->first_visible_x <= it->last_visible_x);
19549 /* Even if this display element produced no glyphs at all,
19550 we want to record its position. */
19551 if (it->bidi_p && nglyphs == 0)
19552 RECORD_MAX_MIN_POS (it);
19554 row->ascent = max (row->ascent, it->max_ascent);
19555 row->height = max (row->height, it->max_ascent + it->max_descent);
19556 row->phys_ascent = max (row->phys_ascent, it->max_phys_ascent);
19557 row->phys_height = max (row->phys_height,
19558 it->max_phys_ascent + it->max_phys_descent);
19559 row->extra_line_spacing = max (row->extra_line_spacing,
19560 it->max_extra_line_spacing);
19562 /* End of this display line if row is continued. */
19563 if (row->continued_p || row->ends_at_zv_p)
19564 break;
19567 at_end_of_line:
19568 /* Is this a line end? If yes, we're also done, after making
19569 sure that a non-default face is extended up to the right
19570 margin of the window. */
19571 if (ITERATOR_AT_END_OF_LINE_P (it))
19573 int used_before = row->used[TEXT_AREA];
19575 row->ends_in_newline_from_string_p = STRINGP (it->object);
19577 /* Add a space at the end of the line that is used to
19578 display the cursor there. */
19579 if (!IT_OVERFLOW_NEWLINE_INTO_FRINGE (it))
19580 append_space_for_newline (it, 0);
19582 /* Extend the face to the end of the line. */
19583 extend_face_to_end_of_line (it);
19585 /* Make sure we have the position. */
19586 if (used_before == 0)
19587 row->glyphs[TEXT_AREA]->charpos = CHARPOS (it->position);
19589 /* Record the position of the newline, for use in
19590 find_row_edges. */
19591 it->eol_pos = it->current.pos;
19593 /* Consume the line end. This skips over invisible lines. */
19594 set_iterator_to_next (it, 1);
19595 it->continuation_lines_width = 0;
19596 break;
19599 /* Proceed with next display element. Note that this skips
19600 over lines invisible because of selective display. */
19601 set_iterator_to_next (it, 1);
19603 /* If we truncate lines, we are done when the last displayed
19604 glyphs reach past the right margin of the window. */
19605 if (it->line_wrap == TRUNCATE
19606 && (FRAME_WINDOW_P (it->f)
19607 ? (it->current_x >= it->last_visible_x)
19608 : (it->current_x > it->last_visible_x)))
19610 /* Maybe add truncation glyphs. */
19611 if (!FRAME_WINDOW_P (it->f))
19613 int i, n;
19615 if (!row->reversed_p)
19617 for (i = row->used[TEXT_AREA] - 1; i > 0; --i)
19618 if (!CHAR_GLYPH_PADDING_P (row->glyphs[TEXT_AREA][i]))
19619 break;
19621 else
19623 for (i = 0; i < row->used[TEXT_AREA]; i++)
19624 if (!CHAR_GLYPH_PADDING_P (row->glyphs[TEXT_AREA][i]))
19625 break;
19626 /* Remove any padding glyphs at the front of ROW, to
19627 make room for the truncation glyphs we will be
19628 adding below. The loop below always inserts at
19629 least one truncation glyph, so also remove the
19630 last glyph added to ROW. */
19631 unproduce_glyphs (it, i + 1);
19632 /* Adjust i for the loop below. */
19633 i = row->used[TEXT_AREA] - (i + 1);
19636 for (n = row->used[TEXT_AREA]; i < n; ++i)
19638 row->used[TEXT_AREA] = i;
19639 produce_special_glyphs (it, IT_TRUNCATION);
19642 else if (IT_OVERFLOW_NEWLINE_INTO_FRINGE (it))
19644 /* Don't truncate if we can overflow newline into fringe. */
19645 if (!get_next_display_element (it))
19647 it->continuation_lines_width = 0;
19648 row->ends_at_zv_p = 1;
19649 row->exact_window_width_line_p = 1;
19650 break;
19652 if (ITERATOR_AT_END_OF_LINE_P (it))
19654 row->exact_window_width_line_p = 1;
19655 goto at_end_of_line;
19659 row->truncated_on_right_p = 1;
19660 it->continuation_lines_width = 0;
19661 reseat_at_next_visible_line_start (it, 0);
19662 row->ends_at_zv_p = FETCH_BYTE (IT_BYTEPOS (*it) - 1) != '\n';
19663 it->hpos = hpos_before;
19664 it->current_x = x_before;
19665 break;
19669 if (wrap_data)
19670 bidi_unshelve_cache (wrap_data, 1);
19672 /* If line is not empty and hscrolled, maybe insert truncation glyphs
19673 at the left window margin. */
19674 if (it->first_visible_x
19675 && IT_CHARPOS (*it) != CHARPOS (row->start.pos))
19677 if (!FRAME_WINDOW_P (it->f))
19678 insert_left_trunc_glyphs (it);
19679 row->truncated_on_left_p = 1;
19682 /* Remember the position at which this line ends.
19684 BIDI Note: any code that needs MATRIX_ROW_START/END_CHARPOS
19685 cannot be before the call to find_row_edges below, since that is
19686 where these positions are determined. */
19687 row->end = it->current;
19688 if (!it->bidi_p)
19690 row->minpos = row->start.pos;
19691 row->maxpos = row->end.pos;
19693 else
19695 /* ROW->minpos and ROW->maxpos must be the smallest and
19696 `1 + the largest' buffer positions in ROW. But if ROW was
19697 bidi-reordered, these two positions can be anywhere in the
19698 row, so we must determine them now. */
19699 find_row_edges (it, row, min_pos, min_bpos, max_pos, max_bpos);
19702 /* If the start of this line is the overlay arrow-position, then
19703 mark this glyph row as the one containing the overlay arrow.
19704 This is clearly a mess with variable size fonts. It would be
19705 better to let it be displayed like cursors under X. */
19706 if ((row->displays_text_p || !overlay_arrow_seen)
19707 && (overlay_arrow_string = overlay_arrow_at_row (it, row),
19708 !NILP (overlay_arrow_string)))
19710 /* Overlay arrow in window redisplay is a fringe bitmap. */
19711 if (STRINGP (overlay_arrow_string))
19713 struct glyph_row *arrow_row
19714 = get_overlay_arrow_glyph_row (it->w, overlay_arrow_string);
19715 struct glyph *glyph = arrow_row->glyphs[TEXT_AREA];
19716 struct glyph *arrow_end = glyph + arrow_row->used[TEXT_AREA];
19717 struct glyph *p = row->glyphs[TEXT_AREA];
19718 struct glyph *p2, *end;
19720 /* Copy the arrow glyphs. */
19721 while (glyph < arrow_end)
19722 *p++ = *glyph++;
19724 /* Throw away padding glyphs. */
19725 p2 = p;
19726 end = row->glyphs[TEXT_AREA] + row->used[TEXT_AREA];
19727 while (p2 < end && CHAR_GLYPH_PADDING_P (*p2))
19728 ++p2;
19729 if (p2 > p)
19731 while (p2 < end)
19732 *p++ = *p2++;
19733 row->used[TEXT_AREA] = p2 - row->glyphs[TEXT_AREA];
19736 else
19738 xassert (INTEGERP (overlay_arrow_string));
19739 row->overlay_arrow_bitmap = XINT (overlay_arrow_string);
19741 overlay_arrow_seen = 1;
19744 /* Highlight trailing whitespace. */
19745 if (!NILP (Vshow_trailing_whitespace))
19746 highlight_trailing_whitespace (it->f, it->glyph_row);
19748 /* Compute pixel dimensions of this line. */
19749 compute_line_metrics (it);
19751 /* Implementation note: No changes in the glyphs of ROW or in their
19752 faces can be done past this point, because compute_line_metrics
19753 computes ROW's hash value and stores it within the glyph_row
19754 structure. */
19756 /* Record whether this row ends inside an ellipsis. */
19757 row->ends_in_ellipsis_p
19758 = (it->method == GET_FROM_DISPLAY_VECTOR
19759 && it->ellipsis_p);
19761 /* Save fringe bitmaps in this row. */
19762 row->left_user_fringe_bitmap = it->left_user_fringe_bitmap;
19763 row->left_user_fringe_face_id = it->left_user_fringe_face_id;
19764 row->right_user_fringe_bitmap = it->right_user_fringe_bitmap;
19765 row->right_user_fringe_face_id = it->right_user_fringe_face_id;
19767 it->left_user_fringe_bitmap = 0;
19768 it->left_user_fringe_face_id = 0;
19769 it->right_user_fringe_bitmap = 0;
19770 it->right_user_fringe_face_id = 0;
19772 /* Maybe set the cursor. */
19773 cvpos = it->w->cursor.vpos;
19774 if ((cvpos < 0
19775 /* In bidi-reordered rows, keep checking for proper cursor
19776 position even if one has been found already, because buffer
19777 positions in such rows change non-linearly with ROW->VPOS,
19778 when a line is continued. One exception: when we are at ZV,
19779 display cursor on the first suitable glyph row, since all
19780 the empty rows after that also have their position set to ZV. */
19781 /* FIXME: Revisit this when glyph ``spilling'' in continuation
19782 lines' rows is implemented for bidi-reordered rows. */
19783 || (it->bidi_p
19784 && !MATRIX_ROW (it->w->desired_matrix, cvpos)->ends_at_zv_p))
19785 && PT >= MATRIX_ROW_START_CHARPOS (row)
19786 && PT <= MATRIX_ROW_END_CHARPOS (row)
19787 && cursor_row_p (row))
19788 set_cursor_from_row (it->w, row, it->w->desired_matrix, 0, 0, 0, 0);
19790 /* Prepare for the next line. This line starts horizontally at (X
19791 HPOS) = (0 0). Vertical positions are incremented. As a
19792 convenience for the caller, IT->glyph_row is set to the next
19793 row to be used. */
19794 it->current_x = it->hpos = 0;
19795 it->current_y += row->height;
19796 SET_TEXT_POS (it->eol_pos, 0, 0);
19797 ++it->vpos;
19798 ++it->glyph_row;
19799 /* The next row should by default use the same value of the
19800 reversed_p flag as this one. set_iterator_to_next decides when
19801 it's a new paragraph, and PRODUCE_GLYPHS recomputes the value of
19802 the flag accordingly. */
19803 if (it->glyph_row < MATRIX_BOTTOM_TEXT_ROW (it->w->desired_matrix, it->w))
19804 it->glyph_row->reversed_p = row->reversed_p;
19805 it->start = row->end;
19806 return row->displays_text_p;
19808 #undef RECORD_MAX_MIN_POS
19811 DEFUN ("current-bidi-paragraph-direction", Fcurrent_bidi_paragraph_direction,
19812 Scurrent_bidi_paragraph_direction, 0, 1, 0,
19813 doc: /* Return paragraph direction at point in BUFFER.
19814 Value is either `left-to-right' or `right-to-left'.
19815 If BUFFER is omitted or nil, it defaults to the current buffer.
19817 Paragraph direction determines how the text in the paragraph is displayed.
19818 In left-to-right paragraphs, text begins at the left margin of the window
19819 and the reading direction is generally left to right. In right-to-left
19820 paragraphs, text begins at the right margin and is read from right to left.
19822 See also `bidi-paragraph-direction'. */)
19823 (Lisp_Object buffer)
19825 struct buffer *buf = current_buffer;
19826 struct buffer *old = buf;
19828 if (! NILP (buffer))
19830 CHECK_BUFFER (buffer);
19831 buf = XBUFFER (buffer);
19834 if (NILP (BVAR (buf, bidi_display_reordering))
19835 || NILP (BVAR (buf, enable_multibyte_characters))
19836 /* When we are loading loadup.el, the character property tables
19837 needed for bidi iteration are not yet available. */
19838 || !NILP (Vpurify_flag))
19839 return Qleft_to_right;
19840 else if (!NILP (BVAR (buf, bidi_paragraph_direction)))
19841 return BVAR (buf, bidi_paragraph_direction);
19842 else
19844 /* Determine the direction from buffer text. We could try to
19845 use current_matrix if it is up to date, but this seems fast
19846 enough as it is. */
19847 struct bidi_it itb;
19848 ptrdiff_t pos = BUF_PT (buf);
19849 ptrdiff_t bytepos = BUF_PT_BYTE (buf);
19850 int c;
19851 void *itb_data = bidi_shelve_cache ();
19853 set_buffer_temp (buf);
19854 /* bidi_paragraph_init finds the base direction of the paragraph
19855 by searching forward from paragraph start. We need the base
19856 direction of the current or _previous_ paragraph, so we need
19857 to make sure we are within that paragraph. To that end, find
19858 the previous non-empty line. */
19859 if (pos >= ZV && pos > BEGV)
19861 pos--;
19862 bytepos = CHAR_TO_BYTE (pos);
19864 if (fast_looking_at (build_string ("[\f\t ]*\n"),
19865 pos, bytepos, ZV, ZV_BYTE, Qnil) > 0)
19867 while ((c = FETCH_BYTE (bytepos)) == '\n'
19868 || c == ' ' || c == '\t' || c == '\f')
19870 if (bytepos <= BEGV_BYTE)
19871 break;
19872 bytepos--;
19873 pos--;
19875 while (!CHAR_HEAD_P (FETCH_BYTE (bytepos)))
19876 bytepos--;
19878 bidi_init_it (pos, bytepos, FRAME_WINDOW_P (SELECTED_FRAME ()), &itb);
19879 itb.paragraph_dir = NEUTRAL_DIR;
19880 itb.string.s = NULL;
19881 itb.string.lstring = Qnil;
19882 itb.string.bufpos = 0;
19883 itb.string.unibyte = 0;
19884 bidi_paragraph_init (NEUTRAL_DIR, &itb, 1);
19885 bidi_unshelve_cache (itb_data, 0);
19886 set_buffer_temp (old);
19887 switch (itb.paragraph_dir)
19889 case L2R:
19890 return Qleft_to_right;
19891 break;
19892 case R2L:
19893 return Qright_to_left;
19894 break;
19895 default:
19896 abort ();
19903 /***********************************************************************
19904 Menu Bar
19905 ***********************************************************************/
19907 /* Redisplay the menu bar in the frame for window W.
19909 The menu bar of X frames that don't have X toolkit support is
19910 displayed in a special window W->frame->menu_bar_window.
19912 The menu bar of terminal frames is treated specially as far as
19913 glyph matrices are concerned. Menu bar lines are not part of
19914 windows, so the update is done directly on the frame matrix rows
19915 for the menu bar. */
19917 static void
19918 display_menu_bar (struct window *w)
19920 struct frame *f = XFRAME (WINDOW_FRAME (w));
19921 struct it it;
19922 Lisp_Object items;
19923 int i;
19925 /* Don't do all this for graphical frames. */
19926 #ifdef HAVE_NTGUI
19927 if (FRAME_W32_P (f))
19928 return;
19929 #endif
19930 #if defined (USE_X_TOOLKIT) || defined (USE_GTK)
19931 if (FRAME_X_P (f))
19932 return;
19933 #endif
19935 #ifdef HAVE_NS
19936 if (FRAME_NS_P (f))
19937 return;
19938 #endif /* HAVE_NS */
19940 #ifdef USE_X_TOOLKIT
19941 xassert (!FRAME_WINDOW_P (f));
19942 init_iterator (&it, w, -1, -1, f->desired_matrix->rows, MENU_FACE_ID);
19943 it.first_visible_x = 0;
19944 it.last_visible_x = FRAME_TOTAL_COLS (f) * FRAME_COLUMN_WIDTH (f);
19945 #else /* not USE_X_TOOLKIT */
19946 if (FRAME_WINDOW_P (f))
19948 /* Menu bar lines are displayed in the desired matrix of the
19949 dummy window menu_bar_window. */
19950 struct window *menu_w;
19951 xassert (WINDOWP (f->menu_bar_window));
19952 menu_w = XWINDOW (f->menu_bar_window);
19953 init_iterator (&it, menu_w, -1, -1, menu_w->desired_matrix->rows,
19954 MENU_FACE_ID);
19955 it.first_visible_x = 0;
19956 it.last_visible_x = FRAME_TOTAL_COLS (f) * FRAME_COLUMN_WIDTH (f);
19958 else
19960 /* This is a TTY frame, i.e. character hpos/vpos are used as
19961 pixel x/y. */
19962 init_iterator (&it, w, -1, -1, f->desired_matrix->rows,
19963 MENU_FACE_ID);
19964 it.first_visible_x = 0;
19965 it.last_visible_x = FRAME_COLS (f);
19967 #endif /* not USE_X_TOOLKIT */
19969 /* FIXME: This should be controlled by a user option. See the
19970 comments in redisplay_tool_bar and display_mode_line about
19971 this. */
19972 it.paragraph_embedding = L2R;
19974 if (! mode_line_inverse_video)
19975 /* Force the menu-bar to be displayed in the default face. */
19976 it.base_face_id = it.face_id = DEFAULT_FACE_ID;
19978 /* Clear all rows of the menu bar. */
19979 for (i = 0; i < FRAME_MENU_BAR_LINES (f); ++i)
19981 struct glyph_row *row = it.glyph_row + i;
19982 clear_glyph_row (row);
19983 row->enabled_p = 1;
19984 row->full_width_p = 1;
19987 /* Display all items of the menu bar. */
19988 items = FRAME_MENU_BAR_ITEMS (it.f);
19989 for (i = 0; i < ASIZE (items); i += 4)
19991 Lisp_Object string;
19993 /* Stop at nil string. */
19994 string = AREF (items, i + 1);
19995 if (NILP (string))
19996 break;
19998 /* Remember where item was displayed. */
19999 ASET (items, i + 3, make_number (it.hpos));
20001 /* Display the item, pad with one space. */
20002 if (it.current_x < it.last_visible_x)
20003 display_string (NULL, string, Qnil, 0, 0, &it,
20004 SCHARS (string) + 1, 0, 0, -1);
20007 /* Fill out the line with spaces. */
20008 if (it.current_x < it.last_visible_x)
20009 display_string ("", Qnil, Qnil, 0, 0, &it, -1, 0, 0, -1);
20011 /* Compute the total height of the lines. */
20012 compute_line_metrics (&it);
20017 /***********************************************************************
20018 Mode Line
20019 ***********************************************************************/
20021 /* Redisplay mode lines in the window tree whose root is WINDOW. If
20022 FORCE is non-zero, redisplay mode lines unconditionally.
20023 Otherwise, redisplay only mode lines that are garbaged. Value is
20024 the number of windows whose mode lines were redisplayed. */
20026 static int
20027 redisplay_mode_lines (Lisp_Object window, int force)
20029 int nwindows = 0;
20031 while (!NILP (window))
20033 struct window *w = XWINDOW (window);
20035 if (WINDOWP (w->hchild))
20036 nwindows += redisplay_mode_lines (w->hchild, force);
20037 else if (WINDOWP (w->vchild))
20038 nwindows += redisplay_mode_lines (w->vchild, force);
20039 else if (force
20040 || FRAME_GARBAGED_P (XFRAME (w->frame))
20041 || !MATRIX_MODE_LINE_ROW (w->current_matrix)->enabled_p)
20043 struct text_pos lpoint;
20044 struct buffer *old = current_buffer;
20046 /* Set the window's buffer for the mode line display. */
20047 SET_TEXT_POS (lpoint, PT, PT_BYTE);
20048 set_buffer_internal_1 (XBUFFER (w->buffer));
20050 /* Point refers normally to the selected window. For any
20051 other window, set up appropriate value. */
20052 if (!EQ (window, selected_window))
20054 struct text_pos pt;
20056 SET_TEXT_POS_FROM_MARKER (pt, w->pointm);
20057 if (CHARPOS (pt) < BEGV)
20058 TEMP_SET_PT_BOTH (BEGV, BEGV_BYTE);
20059 else if (CHARPOS (pt) > (ZV - 1))
20060 TEMP_SET_PT_BOTH (ZV, ZV_BYTE);
20061 else
20062 TEMP_SET_PT_BOTH (CHARPOS (pt), BYTEPOS (pt));
20065 /* Display mode lines. */
20066 clear_glyph_matrix (w->desired_matrix);
20067 if (display_mode_lines (w))
20069 ++nwindows;
20070 w->must_be_updated_p = 1;
20073 /* Restore old settings. */
20074 set_buffer_internal_1 (old);
20075 TEMP_SET_PT_BOTH (CHARPOS (lpoint), BYTEPOS (lpoint));
20078 window = w->next;
20081 return nwindows;
20085 /* Display the mode and/or header line of window W. Value is the
20086 sum number of mode lines and header lines displayed. */
20088 static int
20089 display_mode_lines (struct window *w)
20091 Lisp_Object old_selected_window, old_selected_frame;
20092 int n = 0;
20094 old_selected_frame = selected_frame;
20095 selected_frame = w->frame;
20096 old_selected_window = selected_window;
20097 XSETWINDOW (selected_window, w);
20099 /* These will be set while the mode line specs are processed. */
20100 line_number_displayed = 0;
20101 w->column_number_displayed = Qnil;
20103 if (WINDOW_WANTS_MODELINE_P (w))
20105 struct window *sel_w = XWINDOW (old_selected_window);
20107 /* Select mode line face based on the real selected window. */
20108 display_mode_line (w, CURRENT_MODE_LINE_FACE_ID_3 (sel_w, sel_w, w),
20109 BVAR (current_buffer, mode_line_format));
20110 ++n;
20113 if (WINDOW_WANTS_HEADER_LINE_P (w))
20115 display_mode_line (w, HEADER_LINE_FACE_ID,
20116 BVAR (current_buffer, header_line_format));
20117 ++n;
20120 selected_frame = old_selected_frame;
20121 selected_window = old_selected_window;
20122 return n;
20126 /* Display mode or header line of window W. FACE_ID specifies which
20127 line to display; it is either MODE_LINE_FACE_ID or
20128 HEADER_LINE_FACE_ID. FORMAT is the mode/header line format to
20129 display. Value is the pixel height of the mode/header line
20130 displayed. */
20132 static int
20133 display_mode_line (struct window *w, enum face_id face_id, Lisp_Object format)
20135 struct it it;
20136 struct face *face;
20137 ptrdiff_t count = SPECPDL_INDEX ();
20139 init_iterator (&it, w, -1, -1, NULL, face_id);
20140 /* Don't extend on a previously drawn mode-line.
20141 This may happen if called from pos_visible_p. */
20142 it.glyph_row->enabled_p = 0;
20143 prepare_desired_row (it.glyph_row);
20145 it.glyph_row->mode_line_p = 1;
20147 if (! mode_line_inverse_video)
20148 /* Force the mode-line to be displayed in the default face. */
20149 it.base_face_id = it.face_id = DEFAULT_FACE_ID;
20151 /* FIXME: This should be controlled by a user option. But
20152 supporting such an option is not trivial, since the mode line is
20153 made up of many separate strings. */
20154 it.paragraph_embedding = L2R;
20156 record_unwind_protect (unwind_format_mode_line,
20157 format_mode_line_unwind_data (NULL, NULL, Qnil, 0));
20159 mode_line_target = MODE_LINE_DISPLAY;
20161 /* Temporarily make frame's keyboard the current kboard so that
20162 kboard-local variables in the mode_line_format will get the right
20163 values. */
20164 push_kboard (FRAME_KBOARD (it.f));
20165 record_unwind_save_match_data ();
20166 display_mode_element (&it, 0, 0, 0, format, Qnil, 0);
20167 pop_kboard ();
20169 unbind_to (count, Qnil);
20171 /* Fill up with spaces. */
20172 display_string (" ", Qnil, Qnil, 0, 0, &it, 10000, -1, -1, 0);
20174 compute_line_metrics (&it);
20175 it.glyph_row->full_width_p = 1;
20176 it.glyph_row->continued_p = 0;
20177 it.glyph_row->truncated_on_left_p = 0;
20178 it.glyph_row->truncated_on_right_p = 0;
20180 /* Make a 3D mode-line have a shadow at its right end. */
20181 face = FACE_FROM_ID (it.f, face_id);
20182 extend_face_to_end_of_line (&it);
20183 if (face->box != FACE_NO_BOX)
20185 struct glyph *last = (it.glyph_row->glyphs[TEXT_AREA]
20186 + it.glyph_row->used[TEXT_AREA] - 1);
20187 last->right_box_line_p = 1;
20190 return it.glyph_row->height;
20193 /* Move element ELT in LIST to the front of LIST.
20194 Return the updated list. */
20196 static Lisp_Object
20197 move_elt_to_front (Lisp_Object elt, Lisp_Object list)
20199 register Lisp_Object tail, prev;
20200 register Lisp_Object tem;
20202 tail = list;
20203 prev = Qnil;
20204 while (CONSP (tail))
20206 tem = XCAR (tail);
20208 if (EQ (elt, tem))
20210 /* Splice out the link TAIL. */
20211 if (NILP (prev))
20212 list = XCDR (tail);
20213 else
20214 Fsetcdr (prev, XCDR (tail));
20216 /* Now make it the first. */
20217 Fsetcdr (tail, list);
20218 return tail;
20220 else
20221 prev = tail;
20222 tail = XCDR (tail);
20223 QUIT;
20226 /* Not found--return unchanged LIST. */
20227 return list;
20230 /* Contribute ELT to the mode line for window IT->w. How it
20231 translates into text depends on its data type.
20233 IT describes the display environment in which we display, as usual.
20235 DEPTH is the depth in recursion. It is used to prevent
20236 infinite recursion here.
20238 FIELD_WIDTH is the number of characters the display of ELT should
20239 occupy in the mode line, and PRECISION is the maximum number of
20240 characters to display from ELT's representation. See
20241 display_string for details.
20243 Returns the hpos of the end of the text generated by ELT.
20245 PROPS is a property list to add to any string we encounter.
20247 If RISKY is nonzero, remove (disregard) any properties in any string
20248 we encounter, and ignore :eval and :propertize.
20250 The global variable `mode_line_target' determines whether the
20251 output is passed to `store_mode_line_noprop',
20252 `store_mode_line_string', or `display_string'. */
20254 static int
20255 display_mode_element (struct it *it, int depth, int field_width, int precision,
20256 Lisp_Object elt, Lisp_Object props, int risky)
20258 int n = 0, field, prec;
20259 int literal = 0;
20261 tail_recurse:
20262 if (depth > 100)
20263 elt = build_string ("*too-deep*");
20265 depth++;
20267 switch (SWITCH_ENUM_CAST (XTYPE (elt)))
20269 case Lisp_String:
20271 /* A string: output it and check for %-constructs within it. */
20272 unsigned char c;
20273 ptrdiff_t offset = 0;
20275 if (SCHARS (elt) > 0
20276 && (!NILP (props) || risky))
20278 Lisp_Object oprops, aelt;
20279 oprops = Ftext_properties_at (make_number (0), elt);
20281 /* If the starting string's properties are not what
20282 we want, translate the string. Also, if the string
20283 is risky, do that anyway. */
20285 if (NILP (Fequal (props, oprops)) || risky)
20287 /* If the starting string has properties,
20288 merge the specified ones onto the existing ones. */
20289 if (! NILP (oprops) && !risky)
20291 Lisp_Object tem;
20293 oprops = Fcopy_sequence (oprops);
20294 tem = props;
20295 while (CONSP (tem))
20297 oprops = Fplist_put (oprops, XCAR (tem),
20298 XCAR (XCDR (tem)));
20299 tem = XCDR (XCDR (tem));
20301 props = oprops;
20304 aelt = Fassoc (elt, mode_line_proptrans_alist);
20305 if (! NILP (aelt) && !NILP (Fequal (props, XCDR (aelt))))
20307 /* AELT is what we want. Move it to the front
20308 without consing. */
20309 elt = XCAR (aelt);
20310 mode_line_proptrans_alist
20311 = move_elt_to_front (aelt, mode_line_proptrans_alist);
20313 else
20315 Lisp_Object tem;
20317 /* If AELT has the wrong props, it is useless.
20318 so get rid of it. */
20319 if (! NILP (aelt))
20320 mode_line_proptrans_alist
20321 = Fdelq (aelt, mode_line_proptrans_alist);
20323 elt = Fcopy_sequence (elt);
20324 Fset_text_properties (make_number (0), Flength (elt),
20325 props, elt);
20326 /* Add this item to mode_line_proptrans_alist. */
20327 mode_line_proptrans_alist
20328 = Fcons (Fcons (elt, props),
20329 mode_line_proptrans_alist);
20330 /* Truncate mode_line_proptrans_alist
20331 to at most 50 elements. */
20332 tem = Fnthcdr (make_number (50),
20333 mode_line_proptrans_alist);
20334 if (! NILP (tem))
20335 XSETCDR (tem, Qnil);
20340 offset = 0;
20342 if (literal)
20344 prec = precision - n;
20345 switch (mode_line_target)
20347 case MODE_LINE_NOPROP:
20348 case MODE_LINE_TITLE:
20349 n += store_mode_line_noprop (SSDATA (elt), -1, prec);
20350 break;
20351 case MODE_LINE_STRING:
20352 n += store_mode_line_string (NULL, elt, 1, 0, prec, Qnil);
20353 break;
20354 case MODE_LINE_DISPLAY:
20355 n += display_string (NULL, elt, Qnil, 0, 0, it,
20356 0, prec, 0, STRING_MULTIBYTE (elt));
20357 break;
20360 break;
20363 /* Handle the non-literal case. */
20365 while ((precision <= 0 || n < precision)
20366 && SREF (elt, offset) != 0
20367 && (mode_line_target != MODE_LINE_DISPLAY
20368 || it->current_x < it->last_visible_x))
20370 ptrdiff_t last_offset = offset;
20372 /* Advance to end of string or next format specifier. */
20373 while ((c = SREF (elt, offset++)) != '\0' && c != '%')
20376 if (offset - 1 != last_offset)
20378 ptrdiff_t nchars, nbytes;
20380 /* Output to end of string or up to '%'. Field width
20381 is length of string. Don't output more than
20382 PRECISION allows us. */
20383 offset--;
20385 prec = c_string_width (SDATA (elt) + last_offset,
20386 offset - last_offset, precision - n,
20387 &nchars, &nbytes);
20389 switch (mode_line_target)
20391 case MODE_LINE_NOPROP:
20392 case MODE_LINE_TITLE:
20393 n += store_mode_line_noprop (SSDATA (elt) + last_offset, 0, prec);
20394 break;
20395 case MODE_LINE_STRING:
20397 ptrdiff_t bytepos = last_offset;
20398 ptrdiff_t charpos = string_byte_to_char (elt, bytepos);
20399 ptrdiff_t endpos = (precision <= 0
20400 ? string_byte_to_char (elt, offset)
20401 : charpos + nchars);
20403 n += store_mode_line_string (NULL,
20404 Fsubstring (elt, make_number (charpos),
20405 make_number (endpos)),
20406 0, 0, 0, Qnil);
20408 break;
20409 case MODE_LINE_DISPLAY:
20411 ptrdiff_t bytepos = last_offset;
20412 ptrdiff_t charpos = string_byte_to_char (elt, bytepos);
20414 if (precision <= 0)
20415 nchars = string_byte_to_char (elt, offset) - charpos;
20416 n += display_string (NULL, elt, Qnil, 0, charpos,
20417 it, 0, nchars, 0,
20418 STRING_MULTIBYTE (elt));
20420 break;
20423 else /* c == '%' */
20425 ptrdiff_t percent_position = offset;
20427 /* Get the specified minimum width. Zero means
20428 don't pad. */
20429 field = 0;
20430 while ((c = SREF (elt, offset++)) >= '0' && c <= '9')
20431 field = field * 10 + c - '0';
20433 /* Don't pad beyond the total padding allowed. */
20434 if (field_width - n > 0 && field > field_width - n)
20435 field = field_width - n;
20437 /* Note that either PRECISION <= 0 or N < PRECISION. */
20438 prec = precision - n;
20440 if (c == 'M')
20441 n += display_mode_element (it, depth, field, prec,
20442 Vglobal_mode_string, props,
20443 risky);
20444 else if (c != 0)
20446 int multibyte;
20447 ptrdiff_t bytepos, charpos;
20448 const char *spec;
20449 Lisp_Object string;
20451 bytepos = percent_position;
20452 charpos = (STRING_MULTIBYTE (elt)
20453 ? string_byte_to_char (elt, bytepos)
20454 : bytepos);
20455 spec = decode_mode_spec (it->w, c, field, &string);
20456 multibyte = STRINGP (string) && STRING_MULTIBYTE (string);
20458 switch (mode_line_target)
20460 case MODE_LINE_NOPROP:
20461 case MODE_LINE_TITLE:
20462 n += store_mode_line_noprop (spec, field, prec);
20463 break;
20464 case MODE_LINE_STRING:
20466 Lisp_Object tem = build_string (spec);
20467 props = Ftext_properties_at (make_number (charpos), elt);
20468 /* Should only keep face property in props */
20469 n += store_mode_line_string (NULL, tem, 0, field, prec, props);
20471 break;
20472 case MODE_LINE_DISPLAY:
20474 int nglyphs_before, nwritten;
20476 nglyphs_before = it->glyph_row->used[TEXT_AREA];
20477 nwritten = display_string (spec, string, elt,
20478 charpos, 0, it,
20479 field, prec, 0,
20480 multibyte);
20482 /* Assign to the glyphs written above the
20483 string where the `%x' came from, position
20484 of the `%'. */
20485 if (nwritten > 0)
20487 struct glyph *glyph
20488 = (it->glyph_row->glyphs[TEXT_AREA]
20489 + nglyphs_before);
20490 int i;
20492 for (i = 0; i < nwritten; ++i)
20494 glyph[i].object = elt;
20495 glyph[i].charpos = charpos;
20498 n += nwritten;
20501 break;
20504 else /* c == 0 */
20505 break;
20509 break;
20511 case Lisp_Symbol:
20512 /* A symbol: process the value of the symbol recursively
20513 as if it appeared here directly. Avoid error if symbol void.
20514 Special case: if value of symbol is a string, output the string
20515 literally. */
20517 register Lisp_Object tem;
20519 /* If the variable is not marked as risky to set
20520 then its contents are risky to use. */
20521 if (NILP (Fget (elt, Qrisky_local_variable)))
20522 risky = 1;
20524 tem = Fboundp (elt);
20525 if (!NILP (tem))
20527 tem = Fsymbol_value (elt);
20528 /* If value is a string, output that string literally:
20529 don't check for % within it. */
20530 if (STRINGP (tem))
20531 literal = 1;
20533 if (!EQ (tem, elt))
20535 /* Give up right away for nil or t. */
20536 elt = tem;
20537 goto tail_recurse;
20541 break;
20543 case Lisp_Cons:
20545 register Lisp_Object car, tem;
20547 /* A cons cell: five distinct cases.
20548 If first element is :eval or :propertize, do something special.
20549 If first element is a string or a cons, process all the elements
20550 and effectively concatenate them.
20551 If first element is a negative number, truncate displaying cdr to
20552 at most that many characters. If positive, pad (with spaces)
20553 to at least that many characters.
20554 If first element is a symbol, process the cadr or caddr recursively
20555 according to whether the symbol's value is non-nil or nil. */
20556 car = XCAR (elt);
20557 if (EQ (car, QCeval))
20559 /* An element of the form (:eval FORM) means evaluate FORM
20560 and use the result as mode line elements. */
20562 if (risky)
20563 break;
20565 if (CONSP (XCDR (elt)))
20567 Lisp_Object spec;
20568 spec = safe_eval (XCAR (XCDR (elt)));
20569 n += display_mode_element (it, depth, field_width - n,
20570 precision - n, spec, props,
20571 risky);
20574 else if (EQ (car, QCpropertize))
20576 /* An element of the form (:propertize ELT PROPS...)
20577 means display ELT but applying properties PROPS. */
20579 if (risky)
20580 break;
20582 if (CONSP (XCDR (elt)))
20583 n += display_mode_element (it, depth, field_width - n,
20584 precision - n, XCAR (XCDR (elt)),
20585 XCDR (XCDR (elt)), risky);
20587 else if (SYMBOLP (car))
20589 tem = Fboundp (car);
20590 elt = XCDR (elt);
20591 if (!CONSP (elt))
20592 goto invalid;
20593 /* elt is now the cdr, and we know it is a cons cell.
20594 Use its car if CAR has a non-nil value. */
20595 if (!NILP (tem))
20597 tem = Fsymbol_value (car);
20598 if (!NILP (tem))
20600 elt = XCAR (elt);
20601 goto tail_recurse;
20604 /* Symbol's value is nil (or symbol is unbound)
20605 Get the cddr of the original list
20606 and if possible find the caddr and use that. */
20607 elt = XCDR (elt);
20608 if (NILP (elt))
20609 break;
20610 else if (!CONSP (elt))
20611 goto invalid;
20612 elt = XCAR (elt);
20613 goto tail_recurse;
20615 else if (INTEGERP (car))
20617 register int lim = XINT (car);
20618 elt = XCDR (elt);
20619 if (lim < 0)
20621 /* Negative int means reduce maximum width. */
20622 if (precision <= 0)
20623 precision = -lim;
20624 else
20625 precision = min (precision, -lim);
20627 else if (lim > 0)
20629 /* Padding specified. Don't let it be more than
20630 current maximum. */
20631 if (precision > 0)
20632 lim = min (precision, lim);
20634 /* If that's more padding than already wanted, queue it.
20635 But don't reduce padding already specified even if
20636 that is beyond the current truncation point. */
20637 field_width = max (lim, field_width);
20639 goto tail_recurse;
20641 else if (STRINGP (car) || CONSP (car))
20643 Lisp_Object halftail = elt;
20644 int len = 0;
20646 while (CONSP (elt)
20647 && (precision <= 0 || n < precision))
20649 n += display_mode_element (it, depth,
20650 /* Do padding only after the last
20651 element in the list. */
20652 (! CONSP (XCDR (elt))
20653 ? field_width - n
20654 : 0),
20655 precision - n, XCAR (elt),
20656 props, risky);
20657 elt = XCDR (elt);
20658 len++;
20659 if ((len & 1) == 0)
20660 halftail = XCDR (halftail);
20661 /* Check for cycle. */
20662 if (EQ (halftail, elt))
20663 break;
20667 break;
20669 default:
20670 invalid:
20671 elt = build_string ("*invalid*");
20672 goto tail_recurse;
20675 /* Pad to FIELD_WIDTH. */
20676 if (field_width > 0 && n < field_width)
20678 switch (mode_line_target)
20680 case MODE_LINE_NOPROP:
20681 case MODE_LINE_TITLE:
20682 n += store_mode_line_noprop ("", field_width - n, 0);
20683 break;
20684 case MODE_LINE_STRING:
20685 n += store_mode_line_string ("", Qnil, 0, field_width - n, 0, Qnil);
20686 break;
20687 case MODE_LINE_DISPLAY:
20688 n += display_string ("", Qnil, Qnil, 0, 0, it, field_width - n,
20689 0, 0, 0);
20690 break;
20694 return n;
20697 /* Store a mode-line string element in mode_line_string_list.
20699 If STRING is non-null, display that C string. Otherwise, the Lisp
20700 string LISP_STRING is displayed.
20702 FIELD_WIDTH is the minimum number of output glyphs to produce.
20703 If STRING has fewer characters than FIELD_WIDTH, pad to the right
20704 with spaces. FIELD_WIDTH <= 0 means don't pad.
20706 PRECISION is the maximum number of characters to output from
20707 STRING. PRECISION <= 0 means don't truncate the string.
20709 If COPY_STRING is non-zero, make a copy of LISP_STRING before adding
20710 properties to the string.
20712 PROPS are the properties to add to the string.
20713 The mode_line_string_face face property is always added to the string.
20716 static int
20717 store_mode_line_string (const char *string, Lisp_Object lisp_string, int copy_string,
20718 int field_width, int precision, Lisp_Object props)
20720 ptrdiff_t len;
20721 int n = 0;
20723 if (string != NULL)
20725 len = strlen (string);
20726 if (precision > 0 && len > precision)
20727 len = precision;
20728 lisp_string = make_string (string, len);
20729 if (NILP (props))
20730 props = mode_line_string_face_prop;
20731 else if (!NILP (mode_line_string_face))
20733 Lisp_Object face = Fplist_get (props, Qface);
20734 props = Fcopy_sequence (props);
20735 if (NILP (face))
20736 face = mode_line_string_face;
20737 else
20738 face = Fcons (face, Fcons (mode_line_string_face, Qnil));
20739 props = Fplist_put (props, Qface, face);
20741 Fadd_text_properties (make_number (0), make_number (len),
20742 props, lisp_string);
20744 else
20746 len = XFASTINT (Flength (lisp_string));
20747 if (precision > 0 && len > precision)
20749 len = precision;
20750 lisp_string = Fsubstring (lisp_string, make_number (0), make_number (len));
20751 precision = -1;
20753 if (!NILP (mode_line_string_face))
20755 Lisp_Object face;
20756 if (NILP (props))
20757 props = Ftext_properties_at (make_number (0), lisp_string);
20758 face = Fplist_get (props, Qface);
20759 if (NILP (face))
20760 face = mode_line_string_face;
20761 else
20762 face = Fcons (face, Fcons (mode_line_string_face, Qnil));
20763 props = Fcons (Qface, Fcons (face, Qnil));
20764 if (copy_string)
20765 lisp_string = Fcopy_sequence (lisp_string);
20767 if (!NILP (props))
20768 Fadd_text_properties (make_number (0), make_number (len),
20769 props, lisp_string);
20772 if (len > 0)
20774 mode_line_string_list = Fcons (lisp_string, mode_line_string_list);
20775 n += len;
20778 if (field_width > len)
20780 field_width -= len;
20781 lisp_string = Fmake_string (make_number (field_width), make_number (' '));
20782 if (!NILP (props))
20783 Fadd_text_properties (make_number (0), make_number (field_width),
20784 props, lisp_string);
20785 mode_line_string_list = Fcons (lisp_string, mode_line_string_list);
20786 n += field_width;
20789 return n;
20793 DEFUN ("format-mode-line", Fformat_mode_line, Sformat_mode_line,
20794 1, 4, 0,
20795 doc: /* Format a string out of a mode line format specification.
20796 First arg FORMAT specifies the mode line format (see `mode-line-format'
20797 for details) to use.
20799 By default, the format is evaluated for the currently selected window.
20801 Optional second arg FACE specifies the face property to put on all
20802 characters for which no face is specified. The value nil means the
20803 default face. The value t means whatever face the window's mode line
20804 currently uses (either `mode-line' or `mode-line-inactive',
20805 depending on whether the window is the selected window or not).
20806 An integer value means the value string has no text
20807 properties.
20809 Optional third and fourth args WINDOW and BUFFER specify the window
20810 and buffer to use as the context for the formatting (defaults
20811 are the selected window and the WINDOW's buffer). */)
20812 (Lisp_Object format, Lisp_Object face,
20813 Lisp_Object window, Lisp_Object buffer)
20815 struct it it;
20816 int len;
20817 struct window *w;
20818 struct buffer *old_buffer = NULL;
20819 int face_id;
20820 int no_props = INTEGERP (face);
20821 ptrdiff_t count = SPECPDL_INDEX ();
20822 Lisp_Object str;
20823 int string_start = 0;
20825 if (NILP (window))
20826 window = selected_window;
20827 CHECK_WINDOW (window);
20828 w = XWINDOW (window);
20830 if (NILP (buffer))
20831 buffer = w->buffer;
20832 CHECK_BUFFER (buffer);
20834 /* Make formatting the modeline a non-op when noninteractive, otherwise
20835 there will be problems later caused by a partially initialized frame. */
20836 if (NILP (format) || noninteractive)
20837 return empty_unibyte_string;
20839 if (no_props)
20840 face = Qnil;
20842 face_id = (NILP (face) || EQ (face, Qdefault)) ? DEFAULT_FACE_ID
20843 : EQ (face, Qt) ? (EQ (window, selected_window)
20844 ? MODE_LINE_FACE_ID : MODE_LINE_INACTIVE_FACE_ID)
20845 : EQ (face, Qmode_line) ? MODE_LINE_FACE_ID
20846 : EQ (face, Qmode_line_inactive) ? MODE_LINE_INACTIVE_FACE_ID
20847 : EQ (face, Qheader_line) ? HEADER_LINE_FACE_ID
20848 : EQ (face, Qtool_bar) ? TOOL_BAR_FACE_ID
20849 : DEFAULT_FACE_ID;
20851 if (XBUFFER (buffer) != current_buffer)
20852 old_buffer = current_buffer;
20854 /* Save things including mode_line_proptrans_alist,
20855 and set that to nil so that we don't alter the outer value. */
20856 record_unwind_protect (unwind_format_mode_line,
20857 format_mode_line_unwind_data
20858 (XFRAME (WINDOW_FRAME (XWINDOW (window))),
20859 old_buffer, selected_window, 1));
20860 mode_line_proptrans_alist = Qnil;
20862 Fselect_window (window, Qt);
20863 if (old_buffer)
20864 set_buffer_internal_1 (XBUFFER (buffer));
20866 init_iterator (&it, w, -1, -1, NULL, face_id);
20868 if (no_props)
20870 mode_line_target = MODE_LINE_NOPROP;
20871 mode_line_string_face_prop = Qnil;
20872 mode_line_string_list = Qnil;
20873 string_start = MODE_LINE_NOPROP_LEN (0);
20875 else
20877 mode_line_target = MODE_LINE_STRING;
20878 mode_line_string_list = Qnil;
20879 mode_line_string_face = face;
20880 mode_line_string_face_prop
20881 = (NILP (face) ? Qnil : Fcons (Qface, Fcons (face, Qnil)));
20884 push_kboard (FRAME_KBOARD (it.f));
20885 display_mode_element (&it, 0, 0, 0, format, Qnil, 0);
20886 pop_kboard ();
20888 if (no_props)
20890 len = MODE_LINE_NOPROP_LEN (string_start);
20891 str = make_string (mode_line_noprop_buf + string_start, len);
20893 else
20895 mode_line_string_list = Fnreverse (mode_line_string_list);
20896 str = Fmapconcat (intern ("identity"), mode_line_string_list,
20897 empty_unibyte_string);
20900 unbind_to (count, Qnil);
20901 return str;
20904 /* Write a null-terminated, right justified decimal representation of
20905 the positive integer D to BUF using a minimal field width WIDTH. */
20907 static void
20908 pint2str (register char *buf, register int width, register ptrdiff_t d)
20910 register char *p = buf;
20912 if (d <= 0)
20913 *p++ = '0';
20914 else
20916 while (d > 0)
20918 *p++ = d % 10 + '0';
20919 d /= 10;
20923 for (width -= (int) (p - buf); width > 0; --width)
20924 *p++ = ' ';
20925 *p-- = '\0';
20926 while (p > buf)
20928 d = *buf;
20929 *buf++ = *p;
20930 *p-- = d;
20934 /* Write a null-terminated, right justified decimal and "human
20935 readable" representation of the nonnegative integer D to BUF using
20936 a minimal field width WIDTH. D should be smaller than 999.5e24. */
20938 static const char power_letter[] =
20940 0, /* no letter */
20941 'k', /* kilo */
20942 'M', /* mega */
20943 'G', /* giga */
20944 'T', /* tera */
20945 'P', /* peta */
20946 'E', /* exa */
20947 'Z', /* zetta */
20948 'Y' /* yotta */
20951 static void
20952 pint2hrstr (char *buf, int width, ptrdiff_t d)
20954 /* We aim to represent the nonnegative integer D as
20955 QUOTIENT.TENTHS * 10 ^ (3 * EXPONENT). */
20956 ptrdiff_t quotient = d;
20957 int remainder = 0;
20958 /* -1 means: do not use TENTHS. */
20959 int tenths = -1;
20960 int exponent = 0;
20962 /* Length of QUOTIENT.TENTHS as a string. */
20963 int length;
20965 char * psuffix;
20966 char * p;
20968 if (1000 <= quotient)
20970 /* Scale to the appropriate EXPONENT. */
20973 remainder = quotient % 1000;
20974 quotient /= 1000;
20975 exponent++;
20977 while (1000 <= quotient);
20979 /* Round to nearest and decide whether to use TENTHS or not. */
20980 if (quotient <= 9)
20982 tenths = remainder / 100;
20983 if (50 <= remainder % 100)
20985 if (tenths < 9)
20986 tenths++;
20987 else
20989 quotient++;
20990 if (quotient == 10)
20991 tenths = -1;
20992 else
20993 tenths = 0;
20997 else
20998 if (500 <= remainder)
21000 if (quotient < 999)
21001 quotient++;
21002 else
21004 quotient = 1;
21005 exponent++;
21006 tenths = 0;
21011 /* Calculate the LENGTH of QUOTIENT.TENTHS as a string. */
21012 if (tenths == -1 && quotient <= 99)
21013 if (quotient <= 9)
21014 length = 1;
21015 else
21016 length = 2;
21017 else
21018 length = 3;
21019 p = psuffix = buf + max (width, length);
21021 /* Print EXPONENT. */
21022 *psuffix++ = power_letter[exponent];
21023 *psuffix = '\0';
21025 /* Print TENTHS. */
21026 if (tenths >= 0)
21028 *--p = '0' + tenths;
21029 *--p = '.';
21032 /* Print QUOTIENT. */
21035 int digit = quotient % 10;
21036 *--p = '0' + digit;
21038 while ((quotient /= 10) != 0);
21040 /* Print leading spaces. */
21041 while (buf < p)
21042 *--p = ' ';
21045 /* Set a mnemonic character for coding_system (Lisp symbol) in BUF.
21046 If EOL_FLAG is 1, set also a mnemonic character for end-of-line
21047 type of CODING_SYSTEM. Return updated pointer into BUF. */
21049 static unsigned char invalid_eol_type[] = "(*invalid*)";
21051 static char *
21052 decode_mode_spec_coding (Lisp_Object coding_system, register char *buf, int eol_flag)
21054 Lisp_Object val;
21055 int multibyte = !NILP (BVAR (current_buffer, enable_multibyte_characters));
21056 const unsigned char *eol_str;
21057 int eol_str_len;
21058 /* The EOL conversion we are using. */
21059 Lisp_Object eoltype;
21061 val = CODING_SYSTEM_SPEC (coding_system);
21062 eoltype = Qnil;
21064 if (!VECTORP (val)) /* Not yet decided. */
21066 *buf++ = multibyte ? '-' : ' ';
21067 if (eol_flag)
21068 eoltype = eol_mnemonic_undecided;
21069 /* Don't mention EOL conversion if it isn't decided. */
21071 else
21073 Lisp_Object attrs;
21074 Lisp_Object eolvalue;
21076 attrs = AREF (val, 0);
21077 eolvalue = AREF (val, 2);
21079 *buf++ = multibyte
21080 ? XFASTINT (CODING_ATTR_MNEMONIC (attrs))
21081 : ' ';
21083 if (eol_flag)
21085 /* The EOL conversion that is normal on this system. */
21087 if (NILP (eolvalue)) /* Not yet decided. */
21088 eoltype = eol_mnemonic_undecided;
21089 else if (VECTORP (eolvalue)) /* Not yet decided. */
21090 eoltype = eol_mnemonic_undecided;
21091 else /* eolvalue is Qunix, Qdos, or Qmac. */
21092 eoltype = (EQ (eolvalue, Qunix)
21093 ? eol_mnemonic_unix
21094 : (EQ (eolvalue, Qdos) == 1
21095 ? eol_mnemonic_dos : eol_mnemonic_mac));
21099 if (eol_flag)
21101 /* Mention the EOL conversion if it is not the usual one. */
21102 if (STRINGP (eoltype))
21104 eol_str = SDATA (eoltype);
21105 eol_str_len = SBYTES (eoltype);
21107 else if (CHARACTERP (eoltype))
21109 unsigned char *tmp = (unsigned char *) alloca (MAX_MULTIBYTE_LENGTH);
21110 int c = XFASTINT (eoltype);
21111 eol_str_len = CHAR_STRING (c, tmp);
21112 eol_str = tmp;
21114 else
21116 eol_str = invalid_eol_type;
21117 eol_str_len = sizeof (invalid_eol_type) - 1;
21119 memcpy (buf, eol_str, eol_str_len);
21120 buf += eol_str_len;
21123 return buf;
21126 /* Return a string for the output of a mode line %-spec for window W,
21127 generated by character C. FIELD_WIDTH > 0 means pad the string
21128 returned with spaces to that value. Return a Lisp string in
21129 *STRING if the resulting string is taken from that Lisp string.
21131 Note we operate on the current buffer for most purposes,
21132 the exception being w->base_line_pos. */
21134 static char lots_of_dashes[] = "--------------------------------------------------------------------------------------------------------------------------------------------";
21136 static const char *
21137 decode_mode_spec (struct window *w, register int c, int field_width,
21138 Lisp_Object *string)
21140 Lisp_Object obj;
21141 struct frame *f = XFRAME (WINDOW_FRAME (w));
21142 char *decode_mode_spec_buf = f->decode_mode_spec_buffer;
21143 struct buffer *b = current_buffer;
21145 obj = Qnil;
21146 *string = Qnil;
21148 switch (c)
21150 case '*':
21151 if (!NILP (BVAR (b, read_only)))
21152 return "%";
21153 if (BUF_MODIFF (b) > BUF_SAVE_MODIFF (b))
21154 return "*";
21155 return "-";
21157 case '+':
21158 /* This differs from %* only for a modified read-only buffer. */
21159 if (BUF_MODIFF (b) > BUF_SAVE_MODIFF (b))
21160 return "*";
21161 if (!NILP (BVAR (b, read_only)))
21162 return "%";
21163 return "-";
21165 case '&':
21166 /* This differs from %* in ignoring read-only-ness. */
21167 if (BUF_MODIFF (b) > BUF_SAVE_MODIFF (b))
21168 return "*";
21169 return "-";
21171 case '%':
21172 return "%";
21174 case '[':
21176 int i;
21177 char *p;
21179 if (command_loop_level > 5)
21180 return "[[[... ";
21181 p = decode_mode_spec_buf;
21182 for (i = 0; i < command_loop_level; i++)
21183 *p++ = '[';
21184 *p = 0;
21185 return decode_mode_spec_buf;
21188 case ']':
21190 int i;
21191 char *p;
21193 if (command_loop_level > 5)
21194 return " ...]]]";
21195 p = decode_mode_spec_buf;
21196 for (i = 0; i < command_loop_level; i++)
21197 *p++ = ']';
21198 *p = 0;
21199 return decode_mode_spec_buf;
21202 case '-':
21204 register int i;
21206 /* Let lots_of_dashes be a string of infinite length. */
21207 if (mode_line_target == MODE_LINE_NOPROP ||
21208 mode_line_target == MODE_LINE_STRING)
21209 return "--";
21210 if (field_width <= 0
21211 || field_width > sizeof (lots_of_dashes))
21213 for (i = 0; i < FRAME_MESSAGE_BUF_SIZE (f) - 1; ++i)
21214 decode_mode_spec_buf[i] = '-';
21215 decode_mode_spec_buf[i] = '\0';
21216 return decode_mode_spec_buf;
21218 else
21219 return lots_of_dashes;
21222 case 'b':
21223 obj = BVAR (b, name);
21224 break;
21226 case 'c':
21227 /* %c and %l are ignored in `frame-title-format'.
21228 (In redisplay_internal, the frame title is drawn _before_ the
21229 windows are updated, so the stuff which depends on actual
21230 window contents (such as %l) may fail to render properly, or
21231 even crash emacs.) */
21232 if (mode_line_target == MODE_LINE_TITLE)
21233 return "";
21234 else
21236 ptrdiff_t col = current_column ();
21237 w->column_number_displayed = make_number (col);
21238 pint2str (decode_mode_spec_buf, field_width, col);
21239 return decode_mode_spec_buf;
21242 case 'e':
21243 #ifndef SYSTEM_MALLOC
21245 if (NILP (Vmemory_full))
21246 return "";
21247 else
21248 return "!MEM FULL! ";
21250 #else
21251 return "";
21252 #endif
21254 case 'F':
21255 /* %F displays the frame name. */
21256 if (!NILP (f->title))
21257 return SSDATA (f->title);
21258 if (f->explicit_name || ! FRAME_WINDOW_P (f))
21259 return SSDATA (f->name);
21260 return "Emacs";
21262 case 'f':
21263 obj = BVAR (b, filename);
21264 break;
21266 case 'i':
21268 ptrdiff_t size = ZV - BEGV;
21269 pint2str (decode_mode_spec_buf, field_width, size);
21270 return decode_mode_spec_buf;
21273 case 'I':
21275 ptrdiff_t size = ZV - BEGV;
21276 pint2hrstr (decode_mode_spec_buf, field_width, size);
21277 return decode_mode_spec_buf;
21280 case 'l':
21282 ptrdiff_t startpos, startpos_byte, line, linepos, linepos_byte;
21283 ptrdiff_t topline, nlines, height;
21284 ptrdiff_t junk;
21286 /* %c and %l are ignored in `frame-title-format'. */
21287 if (mode_line_target == MODE_LINE_TITLE)
21288 return "";
21290 startpos = XMARKER (w->start)->charpos;
21291 startpos_byte = marker_byte_position (w->start);
21292 height = WINDOW_TOTAL_LINES (w);
21294 /* If we decided that this buffer isn't suitable for line numbers,
21295 don't forget that too fast. */
21296 if (EQ (w->base_line_pos, w->buffer))
21297 goto no_value;
21298 /* But do forget it, if the window shows a different buffer now. */
21299 else if (BUFFERP (w->base_line_pos))
21300 w->base_line_pos = Qnil;
21302 /* If the buffer is very big, don't waste time. */
21303 if (INTEGERP (Vline_number_display_limit)
21304 && BUF_ZV (b) - BUF_BEGV (b) > XINT (Vline_number_display_limit))
21306 w->base_line_pos = Qnil;
21307 w->base_line_number = Qnil;
21308 goto no_value;
21311 if (INTEGERP (w->base_line_number)
21312 && INTEGERP (w->base_line_pos)
21313 && XFASTINT (w->base_line_pos) <= startpos)
21315 line = XFASTINT (w->base_line_number);
21316 linepos = XFASTINT (w->base_line_pos);
21317 linepos_byte = buf_charpos_to_bytepos (b, linepos);
21319 else
21321 line = 1;
21322 linepos = BUF_BEGV (b);
21323 linepos_byte = BUF_BEGV_BYTE (b);
21326 /* Count lines from base line to window start position. */
21327 nlines = display_count_lines (linepos_byte,
21328 startpos_byte,
21329 startpos, &junk);
21331 topline = nlines + line;
21333 /* Determine a new base line, if the old one is too close
21334 or too far away, or if we did not have one.
21335 "Too close" means it's plausible a scroll-down would
21336 go back past it. */
21337 if (startpos == BUF_BEGV (b))
21339 w->base_line_number = make_number (topline);
21340 w->base_line_pos = make_number (BUF_BEGV (b));
21342 else if (nlines < height + 25 || nlines > height * 3 + 50
21343 || linepos == BUF_BEGV (b))
21345 ptrdiff_t limit = BUF_BEGV (b);
21346 ptrdiff_t limit_byte = BUF_BEGV_BYTE (b);
21347 ptrdiff_t position;
21348 ptrdiff_t distance =
21349 (height * 2 + 30) * line_number_display_limit_width;
21351 if (startpos - distance > limit)
21353 limit = startpos - distance;
21354 limit_byte = CHAR_TO_BYTE (limit);
21357 nlines = display_count_lines (startpos_byte,
21358 limit_byte,
21359 - (height * 2 + 30),
21360 &position);
21361 /* If we couldn't find the lines we wanted within
21362 line_number_display_limit_width chars per line,
21363 give up on line numbers for this window. */
21364 if (position == limit_byte && limit == startpos - distance)
21366 w->base_line_pos = w->buffer;
21367 w->base_line_number = Qnil;
21368 goto no_value;
21371 w->base_line_number = make_number (topline - nlines);
21372 w->base_line_pos = make_number (BYTE_TO_CHAR (position));
21375 /* Now count lines from the start pos to point. */
21376 nlines = display_count_lines (startpos_byte,
21377 PT_BYTE, PT, &junk);
21379 /* Record that we did display the line number. */
21380 line_number_displayed = 1;
21382 /* Make the string to show. */
21383 pint2str (decode_mode_spec_buf, field_width, topline + nlines);
21384 return decode_mode_spec_buf;
21385 no_value:
21387 char* p = decode_mode_spec_buf;
21388 int pad = field_width - 2;
21389 while (pad-- > 0)
21390 *p++ = ' ';
21391 *p++ = '?';
21392 *p++ = '?';
21393 *p = '\0';
21394 return decode_mode_spec_buf;
21397 break;
21399 case 'm':
21400 obj = BVAR (b, mode_name);
21401 break;
21403 case 'n':
21404 if (BUF_BEGV (b) > BUF_BEG (b) || BUF_ZV (b) < BUF_Z (b))
21405 return " Narrow";
21406 break;
21408 case 'p':
21410 ptrdiff_t pos = marker_position (w->start);
21411 ptrdiff_t total = BUF_ZV (b) - BUF_BEGV (b);
21413 if (XFASTINT (w->window_end_pos) <= BUF_Z (b) - BUF_ZV (b))
21415 if (pos <= BUF_BEGV (b))
21416 return "All";
21417 else
21418 return "Bottom";
21420 else if (pos <= BUF_BEGV (b))
21421 return "Top";
21422 else
21424 if (total > 1000000)
21425 /* Do it differently for a large value, to avoid overflow. */
21426 total = ((pos - BUF_BEGV (b)) + (total / 100) - 1) / (total / 100);
21427 else
21428 total = ((pos - BUF_BEGV (b)) * 100 + total - 1) / total;
21429 /* We can't normally display a 3-digit number,
21430 so get us a 2-digit number that is close. */
21431 if (total == 100)
21432 total = 99;
21433 sprintf (decode_mode_spec_buf, "%2"pD"d%%", total);
21434 return decode_mode_spec_buf;
21438 /* Display percentage of size above the bottom of the screen. */
21439 case 'P':
21441 ptrdiff_t toppos = marker_position (w->start);
21442 ptrdiff_t botpos = BUF_Z (b) - XFASTINT (w->window_end_pos);
21443 ptrdiff_t total = BUF_ZV (b) - BUF_BEGV (b);
21445 if (botpos >= BUF_ZV (b))
21447 if (toppos <= BUF_BEGV (b))
21448 return "All";
21449 else
21450 return "Bottom";
21452 else
21454 if (total > 1000000)
21455 /* Do it differently for a large value, to avoid overflow. */
21456 total = ((botpos - BUF_BEGV (b)) + (total / 100) - 1) / (total / 100);
21457 else
21458 total = ((botpos - BUF_BEGV (b)) * 100 + total - 1) / total;
21459 /* We can't normally display a 3-digit number,
21460 so get us a 2-digit number that is close. */
21461 if (total == 100)
21462 total = 99;
21463 if (toppos <= BUF_BEGV (b))
21464 sprintf (decode_mode_spec_buf, "Top%2"pD"d%%", total);
21465 else
21466 sprintf (decode_mode_spec_buf, "%2"pD"d%%", total);
21467 return decode_mode_spec_buf;
21471 case 's':
21472 /* status of process */
21473 obj = Fget_buffer_process (Fcurrent_buffer ());
21474 if (NILP (obj))
21475 return "no process";
21476 #ifndef MSDOS
21477 obj = Fsymbol_name (Fprocess_status (obj));
21478 #endif
21479 break;
21481 case '@':
21483 ptrdiff_t count = inhibit_garbage_collection ();
21484 Lisp_Object val = call1 (intern ("file-remote-p"),
21485 BVAR (current_buffer, directory));
21486 unbind_to (count, Qnil);
21488 if (NILP (val))
21489 return "-";
21490 else
21491 return "@";
21494 case 't': /* indicate TEXT or BINARY */
21495 return "T";
21497 case 'z':
21498 /* coding-system (not including end-of-line format) */
21499 case 'Z':
21500 /* coding-system (including end-of-line type) */
21502 int eol_flag = (c == 'Z');
21503 char *p = decode_mode_spec_buf;
21505 if (! FRAME_WINDOW_P (f))
21507 /* No need to mention EOL here--the terminal never needs
21508 to do EOL conversion. */
21509 p = decode_mode_spec_coding (CODING_ID_NAME
21510 (FRAME_KEYBOARD_CODING (f)->id),
21511 p, 0);
21512 p = decode_mode_spec_coding (CODING_ID_NAME
21513 (FRAME_TERMINAL_CODING (f)->id),
21514 p, 0);
21516 p = decode_mode_spec_coding (BVAR (b, buffer_file_coding_system),
21517 p, eol_flag);
21519 #if 0 /* This proves to be annoying; I think we can do without. -- rms. */
21520 #ifdef subprocesses
21521 obj = Fget_buffer_process (Fcurrent_buffer ());
21522 if (PROCESSP (obj))
21524 p = decode_mode_spec_coding (XPROCESS (obj)->decode_coding_system,
21525 p, eol_flag);
21526 p = decode_mode_spec_coding (XPROCESS (obj)->encode_coding_system,
21527 p, eol_flag);
21529 #endif /* subprocesses */
21530 #endif /* 0 */
21531 *p = 0;
21532 return decode_mode_spec_buf;
21536 if (STRINGP (obj))
21538 *string = obj;
21539 return SSDATA (obj);
21541 else
21542 return "";
21546 /* Count up to COUNT lines starting from START_BYTE.
21547 But don't go beyond LIMIT_BYTE.
21548 Return the number of lines thus found (always nonnegative).
21550 Set *BYTE_POS_PTR to 1 if we found COUNT lines, 0 if we hit LIMIT. */
21552 static ptrdiff_t
21553 display_count_lines (ptrdiff_t start_byte,
21554 ptrdiff_t limit_byte, ptrdiff_t count,
21555 ptrdiff_t *byte_pos_ptr)
21557 register unsigned char *cursor;
21558 unsigned char *base;
21560 register ptrdiff_t ceiling;
21561 register unsigned char *ceiling_addr;
21562 ptrdiff_t orig_count = count;
21564 /* If we are not in selective display mode,
21565 check only for newlines. */
21566 int selective_display = (!NILP (BVAR (current_buffer, selective_display))
21567 && !INTEGERP (BVAR (current_buffer, selective_display)));
21569 if (count > 0)
21571 while (start_byte < limit_byte)
21573 ceiling = BUFFER_CEILING_OF (start_byte);
21574 ceiling = min (limit_byte - 1, ceiling);
21575 ceiling_addr = BYTE_POS_ADDR (ceiling) + 1;
21576 base = (cursor = BYTE_POS_ADDR (start_byte));
21577 while (1)
21579 if (selective_display)
21580 while (*cursor != '\n' && *cursor != 015 && ++cursor != ceiling_addr)
21582 else
21583 while (*cursor != '\n' && ++cursor != ceiling_addr)
21586 if (cursor != ceiling_addr)
21588 if (--count == 0)
21590 start_byte += cursor - base + 1;
21591 *byte_pos_ptr = start_byte;
21592 return orig_count;
21594 else
21595 if (++cursor == ceiling_addr)
21596 break;
21598 else
21599 break;
21601 start_byte += cursor - base;
21604 else
21606 while (start_byte > limit_byte)
21608 ceiling = BUFFER_FLOOR_OF (start_byte - 1);
21609 ceiling = max (limit_byte, ceiling);
21610 ceiling_addr = BYTE_POS_ADDR (ceiling) - 1;
21611 base = (cursor = BYTE_POS_ADDR (start_byte - 1) + 1);
21612 while (1)
21614 if (selective_display)
21615 while (--cursor != ceiling_addr
21616 && *cursor != '\n' && *cursor != 015)
21618 else
21619 while (--cursor != ceiling_addr && *cursor != '\n')
21622 if (cursor != ceiling_addr)
21624 if (++count == 0)
21626 start_byte += cursor - base + 1;
21627 *byte_pos_ptr = start_byte;
21628 /* When scanning backwards, we should
21629 not count the newline posterior to which we stop. */
21630 return - orig_count - 1;
21633 else
21634 break;
21636 /* Here we add 1 to compensate for the last decrement
21637 of CURSOR, which took it past the valid range. */
21638 start_byte += cursor - base + 1;
21642 *byte_pos_ptr = limit_byte;
21644 if (count < 0)
21645 return - orig_count + count;
21646 return orig_count - count;
21652 /***********************************************************************
21653 Displaying strings
21654 ***********************************************************************/
21656 /* Display a NUL-terminated string, starting with index START.
21658 If STRING is non-null, display that C string. Otherwise, the Lisp
21659 string LISP_STRING is displayed. There's a case that STRING is
21660 non-null and LISP_STRING is not nil. It means STRING is a string
21661 data of LISP_STRING. In that case, we display LISP_STRING while
21662 ignoring its text properties.
21664 If FACE_STRING is not nil, FACE_STRING_POS is a position in
21665 FACE_STRING. Display STRING or LISP_STRING with the face at
21666 FACE_STRING_POS in FACE_STRING:
21668 Display the string in the environment given by IT, but use the
21669 standard display table, temporarily.
21671 FIELD_WIDTH is the minimum number of output glyphs to produce.
21672 If STRING has fewer characters than FIELD_WIDTH, pad to the right
21673 with spaces. If STRING has more characters, more than FIELD_WIDTH
21674 glyphs will be produced. FIELD_WIDTH <= 0 means don't pad.
21676 PRECISION is the maximum number of characters to output from
21677 STRING. PRECISION < 0 means don't truncate the string.
21679 This is roughly equivalent to printf format specifiers:
21681 FIELD_WIDTH PRECISION PRINTF
21682 ----------------------------------------
21683 -1 -1 %s
21684 -1 10 %.10s
21685 10 -1 %10s
21686 20 10 %20.10s
21688 MULTIBYTE zero means do not display multibyte chars, > 0 means do
21689 display them, and < 0 means obey the current buffer's value of
21690 enable_multibyte_characters.
21692 Value is the number of columns displayed. */
21694 static int
21695 display_string (const char *string, Lisp_Object lisp_string, Lisp_Object face_string,
21696 ptrdiff_t face_string_pos, ptrdiff_t start, struct it *it,
21697 int field_width, int precision, int max_x, int multibyte)
21699 int hpos_at_start = it->hpos;
21700 int saved_face_id = it->face_id;
21701 struct glyph_row *row = it->glyph_row;
21702 ptrdiff_t it_charpos;
21704 /* Initialize the iterator IT for iteration over STRING beginning
21705 with index START. */
21706 reseat_to_string (it, NILP (lisp_string) ? string : NULL, lisp_string, start,
21707 precision, field_width, multibyte);
21708 if (string && STRINGP (lisp_string))
21709 /* LISP_STRING is the one returned by decode_mode_spec. We should
21710 ignore its text properties. */
21711 it->stop_charpos = it->end_charpos;
21713 /* If displaying STRING, set up the face of the iterator from
21714 FACE_STRING, if that's given. */
21715 if (STRINGP (face_string))
21717 ptrdiff_t endptr;
21718 struct face *face;
21720 it->face_id
21721 = face_at_string_position (it->w, face_string, face_string_pos,
21722 0, it->region_beg_charpos,
21723 it->region_end_charpos,
21724 &endptr, it->base_face_id, 0);
21725 face = FACE_FROM_ID (it->f, it->face_id);
21726 it->face_box_p = face->box != FACE_NO_BOX;
21729 /* Set max_x to the maximum allowed X position. Don't let it go
21730 beyond the right edge of the window. */
21731 if (max_x <= 0)
21732 max_x = it->last_visible_x;
21733 else
21734 max_x = min (max_x, it->last_visible_x);
21736 /* Skip over display elements that are not visible. because IT->w is
21737 hscrolled. */
21738 if (it->current_x < it->first_visible_x)
21739 move_it_in_display_line_to (it, 100000, it->first_visible_x,
21740 MOVE_TO_POS | MOVE_TO_X);
21742 row->ascent = it->max_ascent;
21743 row->height = it->max_ascent + it->max_descent;
21744 row->phys_ascent = it->max_phys_ascent;
21745 row->phys_height = it->max_phys_ascent + it->max_phys_descent;
21746 row->extra_line_spacing = it->max_extra_line_spacing;
21748 if (STRINGP (it->string))
21749 it_charpos = IT_STRING_CHARPOS (*it);
21750 else
21751 it_charpos = IT_CHARPOS (*it);
21753 /* This condition is for the case that we are called with current_x
21754 past last_visible_x. */
21755 while (it->current_x < max_x)
21757 int x_before, x, n_glyphs_before, i, nglyphs;
21759 /* Get the next display element. */
21760 if (!get_next_display_element (it))
21761 break;
21763 /* Produce glyphs. */
21764 x_before = it->current_x;
21765 n_glyphs_before = row->used[TEXT_AREA];
21766 PRODUCE_GLYPHS (it);
21768 nglyphs = row->used[TEXT_AREA] - n_glyphs_before;
21769 i = 0;
21770 x = x_before;
21771 while (i < nglyphs)
21773 struct glyph *glyph = row->glyphs[TEXT_AREA] + n_glyphs_before + i;
21775 if (it->line_wrap != TRUNCATE
21776 && x + glyph->pixel_width > max_x)
21778 /* End of continued line or max_x reached. */
21779 if (CHAR_GLYPH_PADDING_P (*glyph))
21781 /* A wide character is unbreakable. */
21782 if (row->reversed_p)
21783 unproduce_glyphs (it, row->used[TEXT_AREA]
21784 - n_glyphs_before);
21785 row->used[TEXT_AREA] = n_glyphs_before;
21786 it->current_x = x_before;
21788 else
21790 if (row->reversed_p)
21791 unproduce_glyphs (it, row->used[TEXT_AREA]
21792 - (n_glyphs_before + i));
21793 row->used[TEXT_AREA] = n_glyphs_before + i;
21794 it->current_x = x;
21796 break;
21798 else if (x + glyph->pixel_width >= it->first_visible_x)
21800 /* Glyph is at least partially visible. */
21801 ++it->hpos;
21802 if (x < it->first_visible_x)
21803 row->x = x - it->first_visible_x;
21805 else
21807 /* Glyph is off the left margin of the display area.
21808 Should not happen. */
21809 abort ();
21812 row->ascent = max (row->ascent, it->max_ascent);
21813 row->height = max (row->height, it->max_ascent + it->max_descent);
21814 row->phys_ascent = max (row->phys_ascent, it->max_phys_ascent);
21815 row->phys_height = max (row->phys_height,
21816 it->max_phys_ascent + it->max_phys_descent);
21817 row->extra_line_spacing = max (row->extra_line_spacing,
21818 it->max_extra_line_spacing);
21819 x += glyph->pixel_width;
21820 ++i;
21823 /* Stop if max_x reached. */
21824 if (i < nglyphs)
21825 break;
21827 /* Stop at line ends. */
21828 if (ITERATOR_AT_END_OF_LINE_P (it))
21830 it->continuation_lines_width = 0;
21831 break;
21834 set_iterator_to_next (it, 1);
21835 if (STRINGP (it->string))
21836 it_charpos = IT_STRING_CHARPOS (*it);
21837 else
21838 it_charpos = IT_CHARPOS (*it);
21840 /* Stop if truncating at the right edge. */
21841 if (it->line_wrap == TRUNCATE
21842 && it->current_x >= it->last_visible_x)
21844 /* Add truncation mark, but don't do it if the line is
21845 truncated at a padding space. */
21846 if (it_charpos < it->string_nchars)
21848 if (!FRAME_WINDOW_P (it->f))
21850 int ii, n;
21852 if (it->current_x > it->last_visible_x)
21854 if (!row->reversed_p)
21856 for (ii = row->used[TEXT_AREA] - 1; ii > 0; --ii)
21857 if (!CHAR_GLYPH_PADDING_P (row->glyphs[TEXT_AREA][ii]))
21858 break;
21860 else
21862 for (ii = 0; ii < row->used[TEXT_AREA]; ii++)
21863 if (!CHAR_GLYPH_PADDING_P (row->glyphs[TEXT_AREA][ii]))
21864 break;
21865 unproduce_glyphs (it, ii + 1);
21866 ii = row->used[TEXT_AREA] - (ii + 1);
21868 for (n = row->used[TEXT_AREA]; ii < n; ++ii)
21870 row->used[TEXT_AREA] = ii;
21871 produce_special_glyphs (it, IT_TRUNCATION);
21874 produce_special_glyphs (it, IT_TRUNCATION);
21876 row->truncated_on_right_p = 1;
21878 break;
21882 /* Maybe insert a truncation at the left. */
21883 if (it->first_visible_x
21884 && it_charpos > 0)
21886 if (!FRAME_WINDOW_P (it->f))
21887 insert_left_trunc_glyphs (it);
21888 row->truncated_on_left_p = 1;
21891 it->face_id = saved_face_id;
21893 /* Value is number of columns displayed. */
21894 return it->hpos - hpos_at_start;
21899 /* This is like a combination of memq and assq. Return 1/2 if PROPVAL
21900 appears as an element of LIST or as the car of an element of LIST.
21901 If PROPVAL is a list, compare each element against LIST in that
21902 way, and return 1/2 if any element of PROPVAL is found in LIST.
21903 Otherwise return 0. This function cannot quit.
21904 The return value is 2 if the text is invisible but with an ellipsis
21905 and 1 if it's invisible and without an ellipsis. */
21908 invisible_p (register Lisp_Object propval, Lisp_Object list)
21910 register Lisp_Object tail, proptail;
21912 for (tail = list; CONSP (tail); tail = XCDR (tail))
21914 register Lisp_Object tem;
21915 tem = XCAR (tail);
21916 if (EQ (propval, tem))
21917 return 1;
21918 if (CONSP (tem) && EQ (propval, XCAR (tem)))
21919 return NILP (XCDR (tem)) ? 1 : 2;
21922 if (CONSP (propval))
21924 for (proptail = propval; CONSP (proptail); proptail = XCDR (proptail))
21926 Lisp_Object propelt;
21927 propelt = XCAR (proptail);
21928 for (tail = list; CONSP (tail); tail = XCDR (tail))
21930 register Lisp_Object tem;
21931 tem = XCAR (tail);
21932 if (EQ (propelt, tem))
21933 return 1;
21934 if (CONSP (tem) && EQ (propelt, XCAR (tem)))
21935 return NILP (XCDR (tem)) ? 1 : 2;
21940 return 0;
21943 DEFUN ("invisible-p", Finvisible_p, Sinvisible_p, 1, 1, 0,
21944 doc: /* Non-nil if the property makes the text invisible.
21945 POS-OR-PROP can be a marker or number, in which case it is taken to be
21946 a position in the current buffer and the value of the `invisible' property
21947 is checked; or it can be some other value, which is then presumed to be the
21948 value of the `invisible' property of the text of interest.
21949 The non-nil value returned can be t for truly invisible text or something
21950 else if the text is replaced by an ellipsis. */)
21951 (Lisp_Object pos_or_prop)
21953 Lisp_Object prop
21954 = (NATNUMP (pos_or_prop) || MARKERP (pos_or_prop)
21955 ? Fget_char_property (pos_or_prop, Qinvisible, Qnil)
21956 : pos_or_prop);
21957 int invis = TEXT_PROP_MEANS_INVISIBLE (prop);
21958 return (invis == 0 ? Qnil
21959 : invis == 1 ? Qt
21960 : make_number (invis));
21963 /* Calculate a width or height in pixels from a specification using
21964 the following elements:
21966 SPEC ::=
21967 NUM - a (fractional) multiple of the default font width/height
21968 (NUM) - specifies exactly NUM pixels
21969 UNIT - a fixed number of pixels, see below.
21970 ELEMENT - size of a display element in pixels, see below.
21971 (NUM . SPEC) - equals NUM * SPEC
21972 (+ SPEC SPEC ...) - add pixel values
21973 (- SPEC SPEC ...) - subtract pixel values
21974 (- SPEC) - negate pixel value
21976 NUM ::=
21977 INT or FLOAT - a number constant
21978 SYMBOL - use symbol's (buffer local) variable binding.
21980 UNIT ::=
21981 in - pixels per inch *)
21982 mm - pixels per 1/1000 meter *)
21983 cm - pixels per 1/100 meter *)
21984 width - width of current font in pixels.
21985 height - height of current font in pixels.
21987 *) using the ratio(s) defined in display-pixels-per-inch.
21989 ELEMENT ::=
21991 left-fringe - left fringe width in pixels
21992 right-fringe - right fringe width in pixels
21994 left-margin - left margin width in pixels
21995 right-margin - right margin width in pixels
21997 scroll-bar - scroll-bar area width in pixels
21999 Examples:
22001 Pixels corresponding to 5 inches:
22002 (5 . in)
22004 Total width of non-text areas on left side of window (if scroll-bar is on left):
22005 '(space :width (+ left-fringe left-margin scroll-bar))
22007 Align to first text column (in header line):
22008 '(space :align-to 0)
22010 Align to middle of text area minus half the width of variable `my-image'
22011 containing a loaded image:
22012 '(space :align-to (0.5 . (- text my-image)))
22014 Width of left margin minus width of 1 character in the default font:
22015 '(space :width (- left-margin 1))
22017 Width of left margin minus width of 2 characters in the current font:
22018 '(space :width (- left-margin (2 . width)))
22020 Center 1 character over left-margin (in header line):
22021 '(space :align-to (+ left-margin (0.5 . left-margin) -0.5))
22023 Different ways to express width of left fringe plus left margin minus one pixel:
22024 '(space :width (- (+ left-fringe left-margin) (1)))
22025 '(space :width (+ left-fringe left-margin (- (1))))
22026 '(space :width (+ left-fringe left-margin (-1)))
22030 #define NUMVAL(X) \
22031 ((INTEGERP (X) || FLOATP (X)) \
22032 ? XFLOATINT (X) \
22033 : - 1)
22035 static int
22036 calc_pixel_width_or_height (double *res, struct it *it, Lisp_Object prop,
22037 struct font *font, int width_p, int *align_to)
22039 double pixels;
22041 #define OK_PIXELS(val) ((*res = (double)(val)), 1)
22042 #define OK_ALIGN_TO(val) ((*align_to = (int)(val)), 1)
22044 if (NILP (prop))
22045 return OK_PIXELS (0);
22047 xassert (FRAME_LIVE_P (it->f));
22049 if (SYMBOLP (prop))
22051 if (SCHARS (SYMBOL_NAME (prop)) == 2)
22053 char *unit = SSDATA (SYMBOL_NAME (prop));
22055 if (unit[0] == 'i' && unit[1] == 'n')
22056 pixels = 1.0;
22057 else if (unit[0] == 'm' && unit[1] == 'm')
22058 pixels = 25.4;
22059 else if (unit[0] == 'c' && unit[1] == 'm')
22060 pixels = 2.54;
22061 else
22062 pixels = 0;
22063 if (pixels > 0)
22065 double ppi;
22066 #ifdef HAVE_WINDOW_SYSTEM
22067 if (FRAME_WINDOW_P (it->f)
22068 && (ppi = (width_p
22069 ? FRAME_X_DISPLAY_INFO (it->f)->resx
22070 : FRAME_X_DISPLAY_INFO (it->f)->resy),
22071 ppi > 0))
22072 return OK_PIXELS (ppi / pixels);
22073 #endif
22075 if ((ppi = NUMVAL (Vdisplay_pixels_per_inch), ppi > 0)
22076 || (CONSP (Vdisplay_pixels_per_inch)
22077 && (ppi = (width_p
22078 ? NUMVAL (XCAR (Vdisplay_pixels_per_inch))
22079 : NUMVAL (XCDR (Vdisplay_pixels_per_inch))),
22080 ppi > 0)))
22081 return OK_PIXELS (ppi / pixels);
22083 return 0;
22087 #ifdef HAVE_WINDOW_SYSTEM
22088 if (EQ (prop, Qheight))
22089 return OK_PIXELS (font ? FONT_HEIGHT (font) : FRAME_LINE_HEIGHT (it->f));
22090 if (EQ (prop, Qwidth))
22091 return OK_PIXELS (font ? FONT_WIDTH (font) : FRAME_COLUMN_WIDTH (it->f));
22092 #else
22093 if (EQ (prop, Qheight) || EQ (prop, Qwidth))
22094 return OK_PIXELS (1);
22095 #endif
22097 if (EQ (prop, Qtext))
22098 return OK_PIXELS (width_p
22099 ? window_box_width (it->w, TEXT_AREA)
22100 : WINDOW_BOX_HEIGHT_NO_MODE_LINE (it->w));
22102 if (align_to && *align_to < 0)
22104 *res = 0;
22105 if (EQ (prop, Qleft))
22106 return OK_ALIGN_TO (window_box_left_offset (it->w, TEXT_AREA));
22107 if (EQ (prop, Qright))
22108 return OK_ALIGN_TO (window_box_right_offset (it->w, TEXT_AREA));
22109 if (EQ (prop, Qcenter))
22110 return OK_ALIGN_TO (window_box_left_offset (it->w, TEXT_AREA)
22111 + window_box_width (it->w, TEXT_AREA) / 2);
22112 if (EQ (prop, Qleft_fringe))
22113 return OK_ALIGN_TO (WINDOW_HAS_FRINGES_OUTSIDE_MARGINS (it->w)
22114 ? WINDOW_LEFT_SCROLL_BAR_AREA_WIDTH (it->w)
22115 : window_box_right_offset (it->w, LEFT_MARGIN_AREA));
22116 if (EQ (prop, Qright_fringe))
22117 return OK_ALIGN_TO (WINDOW_HAS_FRINGES_OUTSIDE_MARGINS (it->w)
22118 ? window_box_right_offset (it->w, RIGHT_MARGIN_AREA)
22119 : window_box_right_offset (it->w, TEXT_AREA));
22120 if (EQ (prop, Qleft_margin))
22121 return OK_ALIGN_TO (window_box_left_offset (it->w, LEFT_MARGIN_AREA));
22122 if (EQ (prop, Qright_margin))
22123 return OK_ALIGN_TO (window_box_left_offset (it->w, RIGHT_MARGIN_AREA));
22124 if (EQ (prop, Qscroll_bar))
22125 return OK_ALIGN_TO (WINDOW_HAS_VERTICAL_SCROLL_BAR_ON_LEFT (it->w)
22127 : (window_box_right_offset (it->w, RIGHT_MARGIN_AREA)
22128 + (WINDOW_HAS_FRINGES_OUTSIDE_MARGINS (it->w)
22129 ? WINDOW_RIGHT_FRINGE_WIDTH (it->w)
22130 : 0)));
22132 else
22134 if (EQ (prop, Qleft_fringe))
22135 return OK_PIXELS (WINDOW_LEFT_FRINGE_WIDTH (it->w));
22136 if (EQ (prop, Qright_fringe))
22137 return OK_PIXELS (WINDOW_RIGHT_FRINGE_WIDTH (it->w));
22138 if (EQ (prop, Qleft_margin))
22139 return OK_PIXELS (WINDOW_LEFT_MARGIN_WIDTH (it->w));
22140 if (EQ (prop, Qright_margin))
22141 return OK_PIXELS (WINDOW_RIGHT_MARGIN_WIDTH (it->w));
22142 if (EQ (prop, Qscroll_bar))
22143 return OK_PIXELS (WINDOW_SCROLL_BAR_AREA_WIDTH (it->w));
22146 prop = buffer_local_value_1 (prop, it->w->buffer);
22147 if (EQ (prop, Qunbound))
22148 prop = Qnil;
22151 if (INTEGERP (prop) || FLOATP (prop))
22153 int base_unit = (width_p
22154 ? FRAME_COLUMN_WIDTH (it->f)
22155 : FRAME_LINE_HEIGHT (it->f));
22156 return OK_PIXELS (XFLOATINT (prop) * base_unit);
22159 if (CONSP (prop))
22161 Lisp_Object car = XCAR (prop);
22162 Lisp_Object cdr = XCDR (prop);
22164 if (SYMBOLP (car))
22166 #ifdef HAVE_WINDOW_SYSTEM
22167 if (FRAME_WINDOW_P (it->f)
22168 && valid_image_p (prop))
22170 ptrdiff_t id = lookup_image (it->f, prop);
22171 struct image *img = IMAGE_FROM_ID (it->f, id);
22173 return OK_PIXELS (width_p ? img->width : img->height);
22175 #endif
22176 if (EQ (car, Qplus) || EQ (car, Qminus))
22178 int first = 1;
22179 double px;
22181 pixels = 0;
22182 while (CONSP (cdr))
22184 if (!calc_pixel_width_or_height (&px, it, XCAR (cdr),
22185 font, width_p, align_to))
22186 return 0;
22187 if (first)
22188 pixels = (EQ (car, Qplus) ? px : -px), first = 0;
22189 else
22190 pixels += px;
22191 cdr = XCDR (cdr);
22193 if (EQ (car, Qminus))
22194 pixels = -pixels;
22195 return OK_PIXELS (pixels);
22198 car = buffer_local_value_1 (car, it->w->buffer);
22199 if (EQ (car, Qunbound))
22200 car = Qnil;
22203 if (INTEGERP (car) || FLOATP (car))
22205 double fact;
22206 pixels = XFLOATINT (car);
22207 if (NILP (cdr))
22208 return OK_PIXELS (pixels);
22209 if (calc_pixel_width_or_height (&fact, it, cdr,
22210 font, width_p, align_to))
22211 return OK_PIXELS (pixels * fact);
22212 return 0;
22215 return 0;
22218 return 0;
22222 /***********************************************************************
22223 Glyph Display
22224 ***********************************************************************/
22226 #ifdef HAVE_WINDOW_SYSTEM
22228 #if GLYPH_DEBUG
22230 void
22231 dump_glyph_string (struct glyph_string *s)
22233 fprintf (stderr, "glyph string\n");
22234 fprintf (stderr, " x, y, w, h = %d, %d, %d, %d\n",
22235 s->x, s->y, s->width, s->height);
22236 fprintf (stderr, " ybase = %d\n", s->ybase);
22237 fprintf (stderr, " hl = %d\n", s->hl);
22238 fprintf (stderr, " left overhang = %d, right = %d\n",
22239 s->left_overhang, s->right_overhang);
22240 fprintf (stderr, " nchars = %d\n", s->nchars);
22241 fprintf (stderr, " extends to end of line = %d\n",
22242 s->extends_to_end_of_line_p);
22243 fprintf (stderr, " font height = %d\n", FONT_HEIGHT (s->font));
22244 fprintf (stderr, " bg width = %d\n", s->background_width);
22247 #endif /* GLYPH_DEBUG */
22249 /* Initialize glyph string S. CHAR2B is a suitably allocated vector
22250 of XChar2b structures for S; it can't be allocated in
22251 init_glyph_string because it must be allocated via `alloca'. W
22252 is the window on which S is drawn. ROW and AREA are the glyph row
22253 and area within the row from which S is constructed. START is the
22254 index of the first glyph structure covered by S. HL is a
22255 face-override for drawing S. */
22257 #ifdef HAVE_NTGUI
22258 #define OPTIONAL_HDC(hdc) HDC hdc,
22259 #define DECLARE_HDC(hdc) HDC hdc;
22260 #define ALLOCATE_HDC(hdc, f) hdc = get_frame_dc ((f))
22261 #define RELEASE_HDC(hdc, f) release_frame_dc ((f), (hdc))
22262 #endif
22264 #ifndef OPTIONAL_HDC
22265 #define OPTIONAL_HDC(hdc)
22266 #define DECLARE_HDC(hdc)
22267 #define ALLOCATE_HDC(hdc, f)
22268 #define RELEASE_HDC(hdc, f)
22269 #endif
22271 static void
22272 init_glyph_string (struct glyph_string *s,
22273 OPTIONAL_HDC (hdc)
22274 XChar2b *char2b, struct window *w, struct glyph_row *row,
22275 enum glyph_row_area area, int start, enum draw_glyphs_face hl)
22277 memset (s, 0, sizeof *s);
22278 s->w = w;
22279 s->f = XFRAME (w->frame);
22280 #ifdef HAVE_NTGUI
22281 s->hdc = hdc;
22282 #endif
22283 s->display = FRAME_X_DISPLAY (s->f);
22284 s->window = FRAME_X_WINDOW (s->f);
22285 s->char2b = char2b;
22286 s->hl = hl;
22287 s->row = row;
22288 s->area = area;
22289 s->first_glyph = row->glyphs[area] + start;
22290 s->height = row->height;
22291 s->y = WINDOW_TO_FRAME_PIXEL_Y (w, row->y);
22292 s->ybase = s->y + row->ascent;
22296 /* Append the list of glyph strings with head H and tail T to the list
22297 with head *HEAD and tail *TAIL. Set *HEAD and *TAIL to the result. */
22299 static inline void
22300 append_glyph_string_lists (struct glyph_string **head, struct glyph_string **tail,
22301 struct glyph_string *h, struct glyph_string *t)
22303 if (h)
22305 if (*head)
22306 (*tail)->next = h;
22307 else
22308 *head = h;
22309 h->prev = *tail;
22310 *tail = t;
22315 /* Prepend the list of glyph strings with head H and tail T to the
22316 list with head *HEAD and tail *TAIL. Set *HEAD and *TAIL to the
22317 result. */
22319 static inline void
22320 prepend_glyph_string_lists (struct glyph_string **head, struct glyph_string **tail,
22321 struct glyph_string *h, struct glyph_string *t)
22323 if (h)
22325 if (*head)
22326 (*head)->prev = t;
22327 else
22328 *tail = t;
22329 t->next = *head;
22330 *head = h;
22335 /* Append glyph string S to the list with head *HEAD and tail *TAIL.
22336 Set *HEAD and *TAIL to the resulting list. */
22338 static inline void
22339 append_glyph_string (struct glyph_string **head, struct glyph_string **tail,
22340 struct glyph_string *s)
22342 s->next = s->prev = NULL;
22343 append_glyph_string_lists (head, tail, s, s);
22347 /* Get face and two-byte form of character C in face FACE_ID on frame F.
22348 The encoding of C is returned in *CHAR2B. DISPLAY_P non-zero means
22349 make sure that X resources for the face returned are allocated.
22350 Value is a pointer to a realized face that is ready for display if
22351 DISPLAY_P is non-zero. */
22353 static inline struct face *
22354 get_char_face_and_encoding (struct frame *f, int c, int face_id,
22355 XChar2b *char2b, int display_p)
22357 struct face *face = FACE_FROM_ID (f, face_id);
22359 if (face->font)
22361 unsigned code = face->font->driver->encode_char (face->font, c);
22363 if (code != FONT_INVALID_CODE)
22364 STORE_XCHAR2B (char2b, (code >> 8), (code & 0xFF));
22365 else
22366 STORE_XCHAR2B (char2b, 0, 0);
22369 /* Make sure X resources of the face are allocated. */
22370 #ifdef HAVE_X_WINDOWS
22371 if (display_p)
22372 #endif
22374 xassert (face != NULL);
22375 PREPARE_FACE_FOR_DISPLAY (f, face);
22378 return face;
22382 /* Get face and two-byte form of character glyph GLYPH on frame F.
22383 The encoding of GLYPH->u.ch is returned in *CHAR2B. Value is
22384 a pointer to a realized face that is ready for display. */
22386 static inline struct face *
22387 get_glyph_face_and_encoding (struct frame *f, struct glyph *glyph,
22388 XChar2b *char2b, int *two_byte_p)
22390 struct face *face;
22392 xassert (glyph->type == CHAR_GLYPH);
22393 face = FACE_FROM_ID (f, glyph->face_id);
22395 if (two_byte_p)
22396 *two_byte_p = 0;
22398 if (face->font)
22400 unsigned code;
22402 if (CHAR_BYTE8_P (glyph->u.ch))
22403 code = CHAR_TO_BYTE8 (glyph->u.ch);
22404 else
22405 code = face->font->driver->encode_char (face->font, glyph->u.ch);
22407 if (code != FONT_INVALID_CODE)
22408 STORE_XCHAR2B (char2b, (code >> 8), (code & 0xFF));
22409 else
22410 STORE_XCHAR2B (char2b, 0, 0);
22413 /* Make sure X resources of the face are allocated. */
22414 xassert (face != NULL);
22415 PREPARE_FACE_FOR_DISPLAY (f, face);
22416 return face;
22420 /* Get glyph code of character C in FONT in the two-byte form CHAR2B.
22421 Return 1 if FONT has a glyph for C, otherwise return 0. */
22423 static inline int
22424 get_char_glyph_code (int c, struct font *font, XChar2b *char2b)
22426 unsigned code;
22428 if (CHAR_BYTE8_P (c))
22429 code = CHAR_TO_BYTE8 (c);
22430 else
22431 code = font->driver->encode_char (font, c);
22433 if (code == FONT_INVALID_CODE)
22434 return 0;
22435 STORE_XCHAR2B (char2b, (code >> 8), (code & 0xFF));
22436 return 1;
22440 /* Fill glyph string S with composition components specified by S->cmp.
22442 BASE_FACE is the base face of the composition.
22443 S->cmp_from is the index of the first component for S.
22445 OVERLAPS non-zero means S should draw the foreground only, and use
22446 its physical height for clipping. See also draw_glyphs.
22448 Value is the index of a component not in S. */
22450 static int
22451 fill_composite_glyph_string (struct glyph_string *s, struct face *base_face,
22452 int overlaps)
22454 int i;
22455 /* For all glyphs of this composition, starting at the offset
22456 S->cmp_from, until we reach the end of the definition or encounter a
22457 glyph that requires the different face, add it to S. */
22458 struct face *face;
22460 xassert (s);
22462 s->for_overlaps = overlaps;
22463 s->face = NULL;
22464 s->font = NULL;
22465 for (i = s->cmp_from; i < s->cmp->glyph_len; i++)
22467 int c = COMPOSITION_GLYPH (s->cmp, i);
22469 /* TAB in a composition means display glyphs with padding space
22470 on the left or right. */
22471 if (c != '\t')
22473 int face_id = FACE_FOR_CHAR (s->f, base_face->ascii_face, c,
22474 -1, Qnil);
22476 face = get_char_face_and_encoding (s->f, c, face_id,
22477 s->char2b + i, 1);
22478 if (face)
22480 if (! s->face)
22482 s->face = face;
22483 s->font = s->face->font;
22485 else if (s->face != face)
22486 break;
22489 ++s->nchars;
22491 s->cmp_to = i;
22493 if (s->face == NULL)
22495 s->face = base_face->ascii_face;
22496 s->font = s->face->font;
22499 /* All glyph strings for the same composition has the same width,
22500 i.e. the width set for the first component of the composition. */
22501 s->width = s->first_glyph->pixel_width;
22503 /* If the specified font could not be loaded, use the frame's
22504 default font, but record the fact that we couldn't load it in
22505 the glyph string so that we can draw rectangles for the
22506 characters of the glyph string. */
22507 if (s->font == NULL)
22509 s->font_not_found_p = 1;
22510 s->font = FRAME_FONT (s->f);
22513 /* Adjust base line for subscript/superscript text. */
22514 s->ybase += s->first_glyph->voffset;
22516 /* This glyph string must always be drawn with 16-bit functions. */
22517 s->two_byte_p = 1;
22519 return s->cmp_to;
22522 static int
22523 fill_gstring_glyph_string (struct glyph_string *s, int face_id,
22524 int start, int end, int overlaps)
22526 struct glyph *glyph, *last;
22527 Lisp_Object lgstring;
22528 int i;
22530 s->for_overlaps = overlaps;
22531 glyph = s->row->glyphs[s->area] + start;
22532 last = s->row->glyphs[s->area] + end;
22533 s->cmp_id = glyph->u.cmp.id;
22534 s->cmp_from = glyph->slice.cmp.from;
22535 s->cmp_to = glyph->slice.cmp.to + 1;
22536 s->face = FACE_FROM_ID (s->f, face_id);
22537 lgstring = composition_gstring_from_id (s->cmp_id);
22538 s->font = XFONT_OBJECT (LGSTRING_FONT (lgstring));
22539 glyph++;
22540 while (glyph < last
22541 && glyph->u.cmp.automatic
22542 && glyph->u.cmp.id == s->cmp_id
22543 && s->cmp_to == glyph->slice.cmp.from)
22544 s->cmp_to = (glyph++)->slice.cmp.to + 1;
22546 for (i = s->cmp_from; i < s->cmp_to; i++)
22548 Lisp_Object lglyph = LGSTRING_GLYPH (lgstring, i);
22549 unsigned code = LGLYPH_CODE (lglyph);
22551 STORE_XCHAR2B ((s->char2b + i), code >> 8, code & 0xFF);
22553 s->width = composition_gstring_width (lgstring, s->cmp_from, s->cmp_to, NULL);
22554 return glyph - s->row->glyphs[s->area];
22558 /* Fill glyph string S from a sequence glyphs for glyphless characters.
22559 See the comment of fill_glyph_string for arguments.
22560 Value is the index of the first glyph not in S. */
22563 static int
22564 fill_glyphless_glyph_string (struct glyph_string *s, int face_id,
22565 int start, int end, int overlaps)
22567 struct glyph *glyph, *last;
22568 int voffset;
22570 xassert (s->first_glyph->type == GLYPHLESS_GLYPH);
22571 s->for_overlaps = overlaps;
22572 glyph = s->row->glyphs[s->area] + start;
22573 last = s->row->glyphs[s->area] + end;
22574 voffset = glyph->voffset;
22575 s->face = FACE_FROM_ID (s->f, face_id);
22576 s->font = s->face->font;
22577 s->nchars = 1;
22578 s->width = glyph->pixel_width;
22579 glyph++;
22580 while (glyph < last
22581 && glyph->type == GLYPHLESS_GLYPH
22582 && glyph->voffset == voffset
22583 && glyph->face_id == face_id)
22585 s->nchars++;
22586 s->width += glyph->pixel_width;
22587 glyph++;
22589 s->ybase += voffset;
22590 return glyph - s->row->glyphs[s->area];
22594 /* Fill glyph string S from a sequence of character glyphs.
22596 FACE_ID is the face id of the string. START is the index of the
22597 first glyph to consider, END is the index of the last + 1.
22598 OVERLAPS non-zero means S should draw the foreground only, and use
22599 its physical height for clipping. See also draw_glyphs.
22601 Value is the index of the first glyph not in S. */
22603 static int
22604 fill_glyph_string (struct glyph_string *s, int face_id,
22605 int start, int end, int overlaps)
22607 struct glyph *glyph, *last;
22608 int voffset;
22609 int glyph_not_available_p;
22611 xassert (s->f == XFRAME (s->w->frame));
22612 xassert (s->nchars == 0);
22613 xassert (start >= 0 && end > start);
22615 s->for_overlaps = overlaps;
22616 glyph = s->row->glyphs[s->area] + start;
22617 last = s->row->glyphs[s->area] + end;
22618 voffset = glyph->voffset;
22619 s->padding_p = glyph->padding_p;
22620 glyph_not_available_p = glyph->glyph_not_available_p;
22622 while (glyph < last
22623 && glyph->type == CHAR_GLYPH
22624 && glyph->voffset == voffset
22625 /* Same face id implies same font, nowadays. */
22626 && glyph->face_id == face_id
22627 && glyph->glyph_not_available_p == glyph_not_available_p)
22629 int two_byte_p;
22631 s->face = get_glyph_face_and_encoding (s->f, glyph,
22632 s->char2b + s->nchars,
22633 &two_byte_p);
22634 s->two_byte_p = two_byte_p;
22635 ++s->nchars;
22636 xassert (s->nchars <= end - start);
22637 s->width += glyph->pixel_width;
22638 if (glyph++->padding_p != s->padding_p)
22639 break;
22642 s->font = s->face->font;
22644 /* If the specified font could not be loaded, use the frame's font,
22645 but record the fact that we couldn't load it in
22646 S->font_not_found_p so that we can draw rectangles for the
22647 characters of the glyph string. */
22648 if (s->font == NULL || glyph_not_available_p)
22650 s->font_not_found_p = 1;
22651 s->font = FRAME_FONT (s->f);
22654 /* Adjust base line for subscript/superscript text. */
22655 s->ybase += voffset;
22657 xassert (s->face && s->face->gc);
22658 return glyph - s->row->glyphs[s->area];
22662 /* Fill glyph string S from image glyph S->first_glyph. */
22664 static void
22665 fill_image_glyph_string (struct glyph_string *s)
22667 xassert (s->first_glyph->type == IMAGE_GLYPH);
22668 s->img = IMAGE_FROM_ID (s->f, s->first_glyph->u.img_id);
22669 xassert (s->img);
22670 s->slice = s->first_glyph->slice.img;
22671 s->face = FACE_FROM_ID (s->f, s->first_glyph->face_id);
22672 s->font = s->face->font;
22673 s->width = s->first_glyph->pixel_width;
22675 /* Adjust base line for subscript/superscript text. */
22676 s->ybase += s->first_glyph->voffset;
22680 /* Fill glyph string S from a sequence of stretch glyphs.
22682 START is the index of the first glyph to consider,
22683 END is the index of the last + 1.
22685 Value is the index of the first glyph not in S. */
22687 static int
22688 fill_stretch_glyph_string (struct glyph_string *s, int start, int end)
22690 struct glyph *glyph, *last;
22691 int voffset, face_id;
22693 xassert (s->first_glyph->type == STRETCH_GLYPH);
22695 glyph = s->row->glyphs[s->area] + start;
22696 last = s->row->glyphs[s->area] + end;
22697 face_id = glyph->face_id;
22698 s->face = FACE_FROM_ID (s->f, face_id);
22699 s->font = s->face->font;
22700 s->width = glyph->pixel_width;
22701 s->nchars = 1;
22702 voffset = glyph->voffset;
22704 for (++glyph;
22705 (glyph < last
22706 && glyph->type == STRETCH_GLYPH
22707 && glyph->voffset == voffset
22708 && glyph->face_id == face_id);
22709 ++glyph)
22710 s->width += glyph->pixel_width;
22712 /* Adjust base line for subscript/superscript text. */
22713 s->ybase += voffset;
22715 /* The case that face->gc == 0 is handled when drawing the glyph
22716 string by calling PREPARE_FACE_FOR_DISPLAY. */
22717 xassert (s->face);
22718 return glyph - s->row->glyphs[s->area];
22721 static struct font_metrics *
22722 get_per_char_metric (struct font *font, XChar2b *char2b)
22724 static struct font_metrics metrics;
22725 unsigned code = (XCHAR2B_BYTE1 (char2b) << 8) | XCHAR2B_BYTE2 (char2b);
22727 if (! font || code == FONT_INVALID_CODE)
22728 return NULL;
22729 font->driver->text_extents (font, &code, 1, &metrics);
22730 return &metrics;
22733 /* EXPORT for RIF:
22734 Set *LEFT and *RIGHT to the left and right overhang of GLYPH on
22735 frame F. Overhangs of glyphs other than type CHAR_GLYPH are
22736 assumed to be zero. */
22738 void
22739 x_get_glyph_overhangs (struct glyph *glyph, struct frame *f, int *left, int *right)
22741 *left = *right = 0;
22743 if (glyph->type == CHAR_GLYPH)
22745 struct face *face;
22746 XChar2b char2b;
22747 struct font_metrics *pcm;
22749 face = get_glyph_face_and_encoding (f, glyph, &char2b, NULL);
22750 if (face->font && (pcm = get_per_char_metric (face->font, &char2b)))
22752 if (pcm->rbearing > pcm->width)
22753 *right = pcm->rbearing - pcm->width;
22754 if (pcm->lbearing < 0)
22755 *left = -pcm->lbearing;
22758 else if (glyph->type == COMPOSITE_GLYPH)
22760 if (! glyph->u.cmp.automatic)
22762 struct composition *cmp = composition_table[glyph->u.cmp.id];
22764 if (cmp->rbearing > cmp->pixel_width)
22765 *right = cmp->rbearing - cmp->pixel_width;
22766 if (cmp->lbearing < 0)
22767 *left = - cmp->lbearing;
22769 else
22771 Lisp_Object gstring = composition_gstring_from_id (glyph->u.cmp.id);
22772 struct font_metrics metrics;
22774 composition_gstring_width (gstring, glyph->slice.cmp.from,
22775 glyph->slice.cmp.to + 1, &metrics);
22776 if (metrics.rbearing > metrics.width)
22777 *right = metrics.rbearing - metrics.width;
22778 if (metrics.lbearing < 0)
22779 *left = - metrics.lbearing;
22785 /* Return the index of the first glyph preceding glyph string S that
22786 is overwritten by S because of S's left overhang. Value is -1
22787 if no glyphs are overwritten. */
22789 static int
22790 left_overwritten (struct glyph_string *s)
22792 int k;
22794 if (s->left_overhang)
22796 int x = 0, i;
22797 struct glyph *glyphs = s->row->glyphs[s->area];
22798 int first = s->first_glyph - glyphs;
22800 for (i = first - 1; i >= 0 && x > -s->left_overhang; --i)
22801 x -= glyphs[i].pixel_width;
22803 k = i + 1;
22805 else
22806 k = -1;
22808 return k;
22812 /* Return the index of the first glyph preceding glyph string S that
22813 is overwriting S because of its right overhang. Value is -1 if no
22814 glyph in front of S overwrites S. */
22816 static int
22817 left_overwriting (struct glyph_string *s)
22819 int i, k, x;
22820 struct glyph *glyphs = s->row->glyphs[s->area];
22821 int first = s->first_glyph - glyphs;
22823 k = -1;
22824 x = 0;
22825 for (i = first - 1; i >= 0; --i)
22827 int left, right;
22828 x_get_glyph_overhangs (glyphs + i, s->f, &left, &right);
22829 if (x + right > 0)
22830 k = i;
22831 x -= glyphs[i].pixel_width;
22834 return k;
22838 /* Return the index of the last glyph following glyph string S that is
22839 overwritten by S because of S's right overhang. Value is -1 if
22840 no such glyph is found. */
22842 static int
22843 right_overwritten (struct glyph_string *s)
22845 int k = -1;
22847 if (s->right_overhang)
22849 int x = 0, i;
22850 struct glyph *glyphs = s->row->glyphs[s->area];
22851 int first = (s->first_glyph - glyphs) + (s->cmp ? 1 : s->nchars);
22852 int end = s->row->used[s->area];
22854 for (i = first; i < end && s->right_overhang > x; ++i)
22855 x += glyphs[i].pixel_width;
22857 k = i;
22860 return k;
22864 /* Return the index of the last glyph following glyph string S that
22865 overwrites S because of its left overhang. Value is negative
22866 if no such glyph is found. */
22868 static int
22869 right_overwriting (struct glyph_string *s)
22871 int i, k, x;
22872 int end = s->row->used[s->area];
22873 struct glyph *glyphs = s->row->glyphs[s->area];
22874 int first = (s->first_glyph - glyphs) + (s->cmp ? 1 : s->nchars);
22876 k = -1;
22877 x = 0;
22878 for (i = first; i < end; ++i)
22880 int left, right;
22881 x_get_glyph_overhangs (glyphs + i, s->f, &left, &right);
22882 if (x - left < 0)
22883 k = i;
22884 x += glyphs[i].pixel_width;
22887 return k;
22891 /* Set background width of glyph string S. START is the index of the
22892 first glyph following S. LAST_X is the right-most x-position + 1
22893 in the drawing area. */
22895 static inline void
22896 set_glyph_string_background_width (struct glyph_string *s, int start, int last_x)
22898 /* If the face of this glyph string has to be drawn to the end of
22899 the drawing area, set S->extends_to_end_of_line_p. */
22901 if (start == s->row->used[s->area]
22902 && s->area == TEXT_AREA
22903 && ((s->row->fill_line_p
22904 && (s->hl == DRAW_NORMAL_TEXT
22905 || s->hl == DRAW_IMAGE_RAISED
22906 || s->hl == DRAW_IMAGE_SUNKEN))
22907 || s->hl == DRAW_MOUSE_FACE))
22908 s->extends_to_end_of_line_p = 1;
22910 /* If S extends its face to the end of the line, set its
22911 background_width to the distance to the right edge of the drawing
22912 area. */
22913 if (s->extends_to_end_of_line_p)
22914 s->background_width = last_x - s->x + 1;
22915 else
22916 s->background_width = s->width;
22920 /* Compute overhangs and x-positions for glyph string S and its
22921 predecessors, or successors. X is the starting x-position for S.
22922 BACKWARD_P non-zero means process predecessors. */
22924 static void
22925 compute_overhangs_and_x (struct glyph_string *s, int x, int backward_p)
22927 if (backward_p)
22929 while (s)
22931 if (FRAME_RIF (s->f)->compute_glyph_string_overhangs)
22932 FRAME_RIF (s->f)->compute_glyph_string_overhangs (s);
22933 x -= s->width;
22934 s->x = x;
22935 s = s->prev;
22938 else
22940 while (s)
22942 if (FRAME_RIF (s->f)->compute_glyph_string_overhangs)
22943 FRAME_RIF (s->f)->compute_glyph_string_overhangs (s);
22944 s->x = x;
22945 x += s->width;
22946 s = s->next;
22953 /* The following macros are only called from draw_glyphs below.
22954 They reference the following parameters of that function directly:
22955 `w', `row', `area', and `overlap_p'
22956 as well as the following local variables:
22957 `s', `f', and `hdc' (in W32) */
22959 #ifdef HAVE_NTGUI
22960 /* On W32, silently add local `hdc' variable to argument list of
22961 init_glyph_string. */
22962 #define INIT_GLYPH_STRING(s, char2b, w, row, area, start, hl) \
22963 init_glyph_string (s, hdc, char2b, w, row, area, start, hl)
22964 #else
22965 #define INIT_GLYPH_STRING(s, char2b, w, row, area, start, hl) \
22966 init_glyph_string (s, char2b, w, row, area, start, hl)
22967 #endif
22969 /* Add a glyph string for a stretch glyph to the list of strings
22970 between HEAD and TAIL. START is the index of the stretch glyph in
22971 row area AREA of glyph row ROW. END is the index of the last glyph
22972 in that glyph row area. X is the current output position assigned
22973 to the new glyph string constructed. HL overrides that face of the
22974 glyph; e.g. it is DRAW_CURSOR if a cursor has to be drawn. LAST_X
22975 is the right-most x-position of the drawing area. */
22977 /* SunOS 4 bundled cc, barfed on continuations in the arg lists here
22978 and below -- keep them on one line. */
22979 #define BUILD_STRETCH_GLYPH_STRING(START, END, HEAD, TAIL, HL, X, LAST_X) \
22980 do \
22982 s = (struct glyph_string *) alloca (sizeof *s); \
22983 INIT_GLYPH_STRING (s, NULL, w, row, area, START, HL); \
22984 START = fill_stretch_glyph_string (s, START, END); \
22985 append_glyph_string (&HEAD, &TAIL, s); \
22986 s->x = (X); \
22988 while (0)
22991 /* Add a glyph string for an image glyph to the list of strings
22992 between HEAD and TAIL. START is the index of the image glyph in
22993 row area AREA of glyph row ROW. END is the index of the last glyph
22994 in that glyph row area. X is the current output position assigned
22995 to the new glyph string constructed. HL overrides that face of the
22996 glyph; e.g. it is DRAW_CURSOR if a cursor has to be drawn. LAST_X
22997 is the right-most x-position of the drawing area. */
22999 #define BUILD_IMAGE_GLYPH_STRING(START, END, HEAD, TAIL, HL, X, LAST_X) \
23000 do \
23002 s = (struct glyph_string *) alloca (sizeof *s); \
23003 INIT_GLYPH_STRING (s, NULL, w, row, area, START, HL); \
23004 fill_image_glyph_string (s); \
23005 append_glyph_string (&HEAD, &TAIL, s); \
23006 ++START; \
23007 s->x = (X); \
23009 while (0)
23012 /* Add a glyph string for a sequence of character glyphs to the list
23013 of strings between HEAD and TAIL. START is the index of the first
23014 glyph in row area AREA of glyph row ROW that is part of the new
23015 glyph string. END is the index of the last glyph in that glyph row
23016 area. X is the current output position assigned to the new glyph
23017 string constructed. HL overrides that face of the glyph; e.g. it
23018 is DRAW_CURSOR if a cursor has to be drawn. LAST_X is the
23019 right-most x-position of the drawing area. */
23021 #define BUILD_CHAR_GLYPH_STRINGS(START, END, HEAD, TAIL, HL, X, LAST_X) \
23022 do \
23024 int face_id; \
23025 XChar2b *char2b; \
23027 face_id = (row)->glyphs[area][START].face_id; \
23029 s = (struct glyph_string *) alloca (sizeof *s); \
23030 char2b = (XChar2b *) alloca ((END - START) * sizeof *char2b); \
23031 INIT_GLYPH_STRING (s, char2b, w, row, area, START, HL); \
23032 append_glyph_string (&HEAD, &TAIL, s); \
23033 s->x = (X); \
23034 START = fill_glyph_string (s, face_id, START, END, overlaps); \
23036 while (0)
23039 /* Add a glyph string for a composite sequence to the list of strings
23040 between HEAD and TAIL. START is the index of the first glyph in
23041 row area AREA of glyph row ROW that is part of the new glyph
23042 string. END is the index of the last glyph in that glyph row area.
23043 X is the current output position assigned to the new glyph string
23044 constructed. HL overrides that face of the glyph; e.g. it is
23045 DRAW_CURSOR if a cursor has to be drawn. LAST_X is the right-most
23046 x-position of the drawing area. */
23048 #define BUILD_COMPOSITE_GLYPH_STRING(START, END, HEAD, TAIL, HL, X, LAST_X) \
23049 do { \
23050 int face_id = (row)->glyphs[area][START].face_id; \
23051 struct face *base_face = FACE_FROM_ID (f, face_id); \
23052 ptrdiff_t cmp_id = (row)->glyphs[area][START].u.cmp.id; \
23053 struct composition *cmp = composition_table[cmp_id]; \
23054 XChar2b *char2b; \
23055 struct glyph_string *first_s = NULL; \
23056 int n; \
23058 char2b = (XChar2b *) alloca ((sizeof *char2b) * cmp->glyph_len); \
23060 /* Make glyph_strings for each glyph sequence that is drawable by \
23061 the same face, and append them to HEAD/TAIL. */ \
23062 for (n = 0; n < cmp->glyph_len;) \
23064 s = (struct glyph_string *) alloca (sizeof *s); \
23065 INIT_GLYPH_STRING (s, char2b, w, row, area, START, HL); \
23066 append_glyph_string (&(HEAD), &(TAIL), s); \
23067 s->cmp = cmp; \
23068 s->cmp_from = n; \
23069 s->x = (X); \
23070 if (n == 0) \
23071 first_s = s; \
23072 n = fill_composite_glyph_string (s, base_face, overlaps); \
23075 ++START; \
23076 s = first_s; \
23077 } while (0)
23080 /* Add a glyph string for a glyph-string sequence to the list of strings
23081 between HEAD and TAIL. */
23083 #define BUILD_GSTRING_GLYPH_STRING(START, END, HEAD, TAIL, HL, X, LAST_X) \
23084 do { \
23085 int face_id; \
23086 XChar2b *char2b; \
23087 Lisp_Object gstring; \
23089 face_id = (row)->glyphs[area][START].face_id; \
23090 gstring = (composition_gstring_from_id \
23091 ((row)->glyphs[area][START].u.cmp.id)); \
23092 s = (struct glyph_string *) alloca (sizeof *s); \
23093 char2b = (XChar2b *) alloca ((sizeof *char2b) \
23094 * LGSTRING_GLYPH_LEN (gstring)); \
23095 INIT_GLYPH_STRING (s, char2b, w, row, area, START, HL); \
23096 append_glyph_string (&(HEAD), &(TAIL), s); \
23097 s->x = (X); \
23098 START = fill_gstring_glyph_string (s, face_id, START, END, overlaps); \
23099 } while (0)
23102 /* Add a glyph string for a sequence of glyphless character's glyphs
23103 to the list of strings between HEAD and TAIL. The meanings of
23104 arguments are the same as those of BUILD_CHAR_GLYPH_STRINGS. */
23106 #define BUILD_GLYPHLESS_GLYPH_STRING(START, END, HEAD, TAIL, HL, X, LAST_X) \
23107 do \
23109 int face_id; \
23111 face_id = (row)->glyphs[area][START].face_id; \
23113 s = (struct glyph_string *) alloca (sizeof *s); \
23114 INIT_GLYPH_STRING (s, NULL, w, row, area, START, HL); \
23115 append_glyph_string (&HEAD, &TAIL, s); \
23116 s->x = (X); \
23117 START = fill_glyphless_glyph_string (s, face_id, START, END, \
23118 overlaps); \
23120 while (0)
23123 /* Build a list of glyph strings between HEAD and TAIL for the glyphs
23124 of AREA of glyph row ROW on window W between indices START and END.
23125 HL overrides the face for drawing glyph strings, e.g. it is
23126 DRAW_CURSOR to draw a cursor. X and LAST_X are start and end
23127 x-positions of the drawing area.
23129 This is an ugly monster macro construct because we must use alloca
23130 to allocate glyph strings (because draw_glyphs can be called
23131 asynchronously). */
23133 #define BUILD_GLYPH_STRINGS(START, END, HEAD, TAIL, HL, X, LAST_X) \
23134 do \
23136 HEAD = TAIL = NULL; \
23137 while (START < END) \
23139 struct glyph *first_glyph = (row)->glyphs[area] + START; \
23140 switch (first_glyph->type) \
23142 case CHAR_GLYPH: \
23143 BUILD_CHAR_GLYPH_STRINGS (START, END, HEAD, TAIL, \
23144 HL, X, LAST_X); \
23145 break; \
23147 case COMPOSITE_GLYPH: \
23148 if (first_glyph->u.cmp.automatic) \
23149 BUILD_GSTRING_GLYPH_STRING (START, END, HEAD, TAIL, \
23150 HL, X, LAST_X); \
23151 else \
23152 BUILD_COMPOSITE_GLYPH_STRING (START, END, HEAD, TAIL, \
23153 HL, X, LAST_X); \
23154 break; \
23156 case STRETCH_GLYPH: \
23157 BUILD_STRETCH_GLYPH_STRING (START, END, HEAD, TAIL, \
23158 HL, X, LAST_X); \
23159 break; \
23161 case IMAGE_GLYPH: \
23162 BUILD_IMAGE_GLYPH_STRING (START, END, HEAD, TAIL, \
23163 HL, X, LAST_X); \
23164 break; \
23166 case GLYPHLESS_GLYPH: \
23167 BUILD_GLYPHLESS_GLYPH_STRING (START, END, HEAD, TAIL, \
23168 HL, X, LAST_X); \
23169 break; \
23171 default: \
23172 abort (); \
23175 if (s) \
23177 set_glyph_string_background_width (s, START, LAST_X); \
23178 (X) += s->width; \
23181 } while (0)
23184 /* Draw glyphs between START and END in AREA of ROW on window W,
23185 starting at x-position X. X is relative to AREA in W. HL is a
23186 face-override with the following meaning:
23188 DRAW_NORMAL_TEXT draw normally
23189 DRAW_CURSOR draw in cursor face
23190 DRAW_MOUSE_FACE draw in mouse face.
23191 DRAW_INVERSE_VIDEO draw in mode line face
23192 DRAW_IMAGE_SUNKEN draw an image with a sunken relief around it
23193 DRAW_IMAGE_RAISED draw an image with a raised relief around it
23195 If OVERLAPS is non-zero, draw only the foreground of characters and
23196 clip to the physical height of ROW. Non-zero value also defines
23197 the overlapping part to be drawn:
23199 OVERLAPS_PRED overlap with preceding rows
23200 OVERLAPS_SUCC overlap with succeeding rows
23201 OVERLAPS_BOTH overlap with both preceding/succeeding rows
23202 OVERLAPS_ERASED_CURSOR overlap with erased cursor area
23204 Value is the x-position reached, relative to AREA of W. */
23206 static int
23207 draw_glyphs (struct window *w, int x, struct glyph_row *row,
23208 enum glyph_row_area area, ptrdiff_t start, ptrdiff_t end,
23209 enum draw_glyphs_face hl, int overlaps)
23211 struct glyph_string *head, *tail;
23212 struct glyph_string *s;
23213 struct glyph_string *clip_head = NULL, *clip_tail = NULL;
23214 int i, j, x_reached, last_x, area_left = 0;
23215 struct frame *f = XFRAME (WINDOW_FRAME (w));
23216 DECLARE_HDC (hdc);
23218 ALLOCATE_HDC (hdc, f);
23220 /* Let's rather be paranoid than getting a SEGV. */
23221 end = min (end, row->used[area]);
23222 start = max (0, start);
23223 start = min (end, start);
23225 /* Translate X to frame coordinates. Set last_x to the right
23226 end of the drawing area. */
23227 if (row->full_width_p)
23229 /* X is relative to the left edge of W, without scroll bars
23230 or fringes. */
23231 area_left = WINDOW_LEFT_EDGE_X (w);
23232 last_x = WINDOW_LEFT_EDGE_X (w) + WINDOW_TOTAL_WIDTH (w);
23234 else
23236 area_left = window_box_left (w, area);
23237 last_x = area_left + window_box_width (w, area);
23239 x += area_left;
23241 /* Build a doubly-linked list of glyph_string structures between
23242 head and tail from what we have to draw. Note that the macro
23243 BUILD_GLYPH_STRINGS will modify its start parameter. That's
23244 the reason we use a separate variable `i'. */
23245 i = start;
23246 BUILD_GLYPH_STRINGS (i, end, head, tail, hl, x, last_x);
23247 if (tail)
23248 x_reached = tail->x + tail->background_width;
23249 else
23250 x_reached = x;
23252 /* If there are any glyphs with lbearing < 0 or rbearing > width in
23253 the row, redraw some glyphs in front or following the glyph
23254 strings built above. */
23255 if (head && !overlaps && row->contains_overlapping_glyphs_p)
23257 struct glyph_string *h, *t;
23258 Mouse_HLInfo *hlinfo = MOUSE_HL_INFO (f);
23259 int mouse_beg_col IF_LINT (= 0), mouse_end_col IF_LINT (= 0);
23260 int check_mouse_face = 0;
23261 int dummy_x = 0;
23263 /* If mouse highlighting is on, we may need to draw adjacent
23264 glyphs using mouse-face highlighting. */
23265 if (area == TEXT_AREA && row->mouse_face_p)
23267 struct glyph_row *mouse_beg_row, *mouse_end_row;
23269 mouse_beg_row = MATRIX_ROW (w->current_matrix, hlinfo->mouse_face_beg_row);
23270 mouse_end_row = MATRIX_ROW (w->current_matrix, hlinfo->mouse_face_end_row);
23272 if (row >= mouse_beg_row && row <= mouse_end_row)
23274 check_mouse_face = 1;
23275 mouse_beg_col = (row == mouse_beg_row)
23276 ? hlinfo->mouse_face_beg_col : 0;
23277 mouse_end_col = (row == mouse_end_row)
23278 ? hlinfo->mouse_face_end_col
23279 : row->used[TEXT_AREA];
23283 /* Compute overhangs for all glyph strings. */
23284 if (FRAME_RIF (f)->compute_glyph_string_overhangs)
23285 for (s = head; s; s = s->next)
23286 FRAME_RIF (f)->compute_glyph_string_overhangs (s);
23288 /* Prepend glyph strings for glyphs in front of the first glyph
23289 string that are overwritten because of the first glyph
23290 string's left overhang. The background of all strings
23291 prepended must be drawn because the first glyph string
23292 draws over it. */
23293 i = left_overwritten (head);
23294 if (i >= 0)
23296 enum draw_glyphs_face overlap_hl;
23298 /* If this row contains mouse highlighting, attempt to draw
23299 the overlapped glyphs with the correct highlight. This
23300 code fails if the overlap encompasses more than one glyph
23301 and mouse-highlight spans only some of these glyphs.
23302 However, making it work perfectly involves a lot more
23303 code, and I don't know if the pathological case occurs in
23304 practice, so we'll stick to this for now. --- cyd */
23305 if (check_mouse_face
23306 && mouse_beg_col < start && mouse_end_col > i)
23307 overlap_hl = DRAW_MOUSE_FACE;
23308 else
23309 overlap_hl = DRAW_NORMAL_TEXT;
23311 j = i;
23312 BUILD_GLYPH_STRINGS (j, start, h, t,
23313 overlap_hl, dummy_x, last_x);
23314 start = i;
23315 compute_overhangs_and_x (t, head->x, 1);
23316 prepend_glyph_string_lists (&head, &tail, h, t);
23317 clip_head = head;
23320 /* Prepend glyph strings for glyphs in front of the first glyph
23321 string that overwrite that glyph string because of their
23322 right overhang. For these strings, only the foreground must
23323 be drawn, because it draws over the glyph string at `head'.
23324 The background must not be drawn because this would overwrite
23325 right overhangs of preceding glyphs for which no glyph
23326 strings exist. */
23327 i = left_overwriting (head);
23328 if (i >= 0)
23330 enum draw_glyphs_face overlap_hl;
23332 if (check_mouse_face
23333 && mouse_beg_col < start && mouse_end_col > i)
23334 overlap_hl = DRAW_MOUSE_FACE;
23335 else
23336 overlap_hl = DRAW_NORMAL_TEXT;
23338 clip_head = head;
23339 BUILD_GLYPH_STRINGS (i, start, h, t,
23340 overlap_hl, dummy_x, last_x);
23341 for (s = h; s; s = s->next)
23342 s->background_filled_p = 1;
23343 compute_overhangs_and_x (t, head->x, 1);
23344 prepend_glyph_string_lists (&head, &tail, h, t);
23347 /* Append glyphs strings for glyphs following the last glyph
23348 string tail that are overwritten by tail. The background of
23349 these strings has to be drawn because tail's foreground draws
23350 over it. */
23351 i = right_overwritten (tail);
23352 if (i >= 0)
23354 enum draw_glyphs_face overlap_hl;
23356 if (check_mouse_face
23357 && mouse_beg_col < i && mouse_end_col > end)
23358 overlap_hl = DRAW_MOUSE_FACE;
23359 else
23360 overlap_hl = DRAW_NORMAL_TEXT;
23362 BUILD_GLYPH_STRINGS (end, i, h, t,
23363 overlap_hl, x, last_x);
23364 /* Because BUILD_GLYPH_STRINGS updates the first argument,
23365 we don't have `end = i;' here. */
23366 compute_overhangs_and_x (h, tail->x + tail->width, 0);
23367 append_glyph_string_lists (&head, &tail, h, t);
23368 clip_tail = tail;
23371 /* Append glyph strings for glyphs following the last glyph
23372 string tail that overwrite tail. The foreground of such
23373 glyphs has to be drawn because it writes into the background
23374 of tail. The background must not be drawn because it could
23375 paint over the foreground of following glyphs. */
23376 i = right_overwriting (tail);
23377 if (i >= 0)
23379 enum draw_glyphs_face overlap_hl;
23380 if (check_mouse_face
23381 && mouse_beg_col < i && mouse_end_col > end)
23382 overlap_hl = DRAW_MOUSE_FACE;
23383 else
23384 overlap_hl = DRAW_NORMAL_TEXT;
23386 clip_tail = tail;
23387 i++; /* We must include the Ith glyph. */
23388 BUILD_GLYPH_STRINGS (end, i, h, t,
23389 overlap_hl, x, last_x);
23390 for (s = h; s; s = s->next)
23391 s->background_filled_p = 1;
23392 compute_overhangs_and_x (h, tail->x + tail->width, 0);
23393 append_glyph_string_lists (&head, &tail, h, t);
23395 if (clip_head || clip_tail)
23396 for (s = head; s; s = s->next)
23398 s->clip_head = clip_head;
23399 s->clip_tail = clip_tail;
23403 /* Draw all strings. */
23404 for (s = head; s; s = s->next)
23405 FRAME_RIF (f)->draw_glyph_string (s);
23407 #ifndef HAVE_NS
23408 /* When focus a sole frame and move horizontally, this sets on_p to 0
23409 causing a failure to erase prev cursor position. */
23410 if (area == TEXT_AREA
23411 && !row->full_width_p
23412 /* When drawing overlapping rows, only the glyph strings'
23413 foreground is drawn, which doesn't erase a cursor
23414 completely. */
23415 && !overlaps)
23417 int x0 = clip_head ? clip_head->x : (head ? head->x : x);
23418 int x1 = (clip_tail ? clip_tail->x + clip_tail->background_width
23419 : (tail ? tail->x + tail->background_width : x));
23420 x0 -= area_left;
23421 x1 -= area_left;
23423 notice_overwritten_cursor (w, TEXT_AREA, x0, x1,
23424 row->y, MATRIX_ROW_BOTTOM_Y (row));
23426 #endif
23428 /* Value is the x-position up to which drawn, relative to AREA of W.
23429 This doesn't include parts drawn because of overhangs. */
23430 if (row->full_width_p)
23431 x_reached = FRAME_TO_WINDOW_PIXEL_X (w, x_reached);
23432 else
23433 x_reached -= area_left;
23435 RELEASE_HDC (hdc, f);
23437 return x_reached;
23440 /* Expand row matrix if too narrow. Don't expand if area
23441 is not present. */
23443 #define IT_EXPAND_MATRIX_WIDTH(it, area) \
23445 if (!fonts_changed_p \
23446 && (it->glyph_row->glyphs[area] \
23447 < it->glyph_row->glyphs[area + 1])) \
23449 it->w->ncols_scale_factor++; \
23450 fonts_changed_p = 1; \
23454 /* Store one glyph for IT->char_to_display in IT->glyph_row.
23455 Called from x_produce_glyphs when IT->glyph_row is non-null. */
23457 static inline void
23458 append_glyph (struct it *it)
23460 struct glyph *glyph;
23461 enum glyph_row_area area = it->area;
23463 xassert (it->glyph_row);
23464 xassert (it->char_to_display != '\n' && it->char_to_display != '\t');
23466 glyph = it->glyph_row->glyphs[area] + it->glyph_row->used[area];
23467 if (glyph < it->glyph_row->glyphs[area + 1])
23469 /* If the glyph row is reversed, we need to prepend the glyph
23470 rather than append it. */
23471 if (it->glyph_row->reversed_p && area == TEXT_AREA)
23473 struct glyph *g;
23475 /* Make room for the additional glyph. */
23476 for (g = glyph - 1; g >= it->glyph_row->glyphs[area]; g--)
23477 g[1] = *g;
23478 glyph = it->glyph_row->glyphs[area];
23480 glyph->charpos = CHARPOS (it->position);
23481 glyph->object = it->object;
23482 if (it->pixel_width > 0)
23484 glyph->pixel_width = it->pixel_width;
23485 glyph->padding_p = 0;
23487 else
23489 /* Assure at least 1-pixel width. Otherwise, cursor can't
23490 be displayed correctly. */
23491 glyph->pixel_width = 1;
23492 glyph->padding_p = 1;
23494 glyph->ascent = it->ascent;
23495 glyph->descent = it->descent;
23496 glyph->voffset = it->voffset;
23497 glyph->type = CHAR_GLYPH;
23498 glyph->avoid_cursor_p = it->avoid_cursor_p;
23499 glyph->multibyte_p = it->multibyte_p;
23500 glyph->left_box_line_p = it->start_of_box_run_p;
23501 glyph->right_box_line_p = it->end_of_box_run_p;
23502 glyph->overlaps_vertically_p = (it->phys_ascent > it->ascent
23503 || it->phys_descent > it->descent);
23504 glyph->glyph_not_available_p = it->glyph_not_available_p;
23505 glyph->face_id = it->face_id;
23506 glyph->u.ch = it->char_to_display;
23507 glyph->slice.img = null_glyph_slice;
23508 glyph->font_type = FONT_TYPE_UNKNOWN;
23509 if (it->bidi_p)
23511 glyph->resolved_level = it->bidi_it.resolved_level;
23512 if ((it->bidi_it.type & 7) != it->bidi_it.type)
23513 abort ();
23514 glyph->bidi_type = it->bidi_it.type;
23516 else
23518 glyph->resolved_level = 0;
23519 glyph->bidi_type = UNKNOWN_BT;
23521 ++it->glyph_row->used[area];
23523 else
23524 IT_EXPAND_MATRIX_WIDTH (it, area);
23527 /* Store one glyph for the composition IT->cmp_it.id in
23528 IT->glyph_row. Called from x_produce_glyphs when IT->glyph_row is
23529 non-null. */
23531 static inline void
23532 append_composite_glyph (struct it *it)
23534 struct glyph *glyph;
23535 enum glyph_row_area area = it->area;
23537 xassert (it->glyph_row);
23539 glyph = it->glyph_row->glyphs[area] + it->glyph_row->used[area];
23540 if (glyph < it->glyph_row->glyphs[area + 1])
23542 /* If the glyph row is reversed, we need to prepend the glyph
23543 rather than append it. */
23544 if (it->glyph_row->reversed_p && it->area == TEXT_AREA)
23546 struct glyph *g;
23548 /* Make room for the new glyph. */
23549 for (g = glyph - 1; g >= it->glyph_row->glyphs[it->area]; g--)
23550 g[1] = *g;
23551 glyph = it->glyph_row->glyphs[it->area];
23553 glyph->charpos = it->cmp_it.charpos;
23554 glyph->object = it->object;
23555 glyph->pixel_width = it->pixel_width;
23556 glyph->ascent = it->ascent;
23557 glyph->descent = it->descent;
23558 glyph->voffset = it->voffset;
23559 glyph->type = COMPOSITE_GLYPH;
23560 if (it->cmp_it.ch < 0)
23562 glyph->u.cmp.automatic = 0;
23563 glyph->u.cmp.id = it->cmp_it.id;
23564 glyph->slice.cmp.from = glyph->slice.cmp.to = 0;
23566 else
23568 glyph->u.cmp.automatic = 1;
23569 glyph->u.cmp.id = it->cmp_it.id;
23570 glyph->slice.cmp.from = it->cmp_it.from;
23571 glyph->slice.cmp.to = it->cmp_it.to - 1;
23573 glyph->avoid_cursor_p = it->avoid_cursor_p;
23574 glyph->multibyte_p = it->multibyte_p;
23575 glyph->left_box_line_p = it->start_of_box_run_p;
23576 glyph->right_box_line_p = it->end_of_box_run_p;
23577 glyph->overlaps_vertically_p = (it->phys_ascent > it->ascent
23578 || it->phys_descent > it->descent);
23579 glyph->padding_p = 0;
23580 glyph->glyph_not_available_p = 0;
23581 glyph->face_id = it->face_id;
23582 glyph->font_type = FONT_TYPE_UNKNOWN;
23583 if (it->bidi_p)
23585 glyph->resolved_level = it->bidi_it.resolved_level;
23586 if ((it->bidi_it.type & 7) != it->bidi_it.type)
23587 abort ();
23588 glyph->bidi_type = it->bidi_it.type;
23590 ++it->glyph_row->used[area];
23592 else
23593 IT_EXPAND_MATRIX_WIDTH (it, area);
23597 /* Change IT->ascent and IT->height according to the setting of
23598 IT->voffset. */
23600 static inline void
23601 take_vertical_position_into_account (struct it *it)
23603 if (it->voffset)
23605 if (it->voffset < 0)
23606 /* Increase the ascent so that we can display the text higher
23607 in the line. */
23608 it->ascent -= it->voffset;
23609 else
23610 /* Increase the descent so that we can display the text lower
23611 in the line. */
23612 it->descent += it->voffset;
23617 /* Produce glyphs/get display metrics for the image IT is loaded with.
23618 See the description of struct display_iterator in dispextern.h for
23619 an overview of struct display_iterator. */
23621 static void
23622 produce_image_glyph (struct it *it)
23624 struct image *img;
23625 struct face *face;
23626 int glyph_ascent, crop;
23627 struct glyph_slice slice;
23629 xassert (it->what == IT_IMAGE);
23631 face = FACE_FROM_ID (it->f, it->face_id);
23632 xassert (face);
23633 /* Make sure X resources of the face is loaded. */
23634 PREPARE_FACE_FOR_DISPLAY (it->f, face);
23636 if (it->image_id < 0)
23638 /* Fringe bitmap. */
23639 it->ascent = it->phys_ascent = 0;
23640 it->descent = it->phys_descent = 0;
23641 it->pixel_width = 0;
23642 it->nglyphs = 0;
23643 return;
23646 img = IMAGE_FROM_ID (it->f, it->image_id);
23647 xassert (img);
23648 /* Make sure X resources of the image is loaded. */
23649 prepare_image_for_display (it->f, img);
23651 slice.x = slice.y = 0;
23652 slice.width = img->width;
23653 slice.height = img->height;
23655 if (INTEGERP (it->slice.x))
23656 slice.x = XINT (it->slice.x);
23657 else if (FLOATP (it->slice.x))
23658 slice.x = XFLOAT_DATA (it->slice.x) * img->width;
23660 if (INTEGERP (it->slice.y))
23661 slice.y = XINT (it->slice.y);
23662 else if (FLOATP (it->slice.y))
23663 slice.y = XFLOAT_DATA (it->slice.y) * img->height;
23665 if (INTEGERP (it->slice.width))
23666 slice.width = XINT (it->slice.width);
23667 else if (FLOATP (it->slice.width))
23668 slice.width = XFLOAT_DATA (it->slice.width) * img->width;
23670 if (INTEGERP (it->slice.height))
23671 slice.height = XINT (it->slice.height);
23672 else if (FLOATP (it->slice.height))
23673 slice.height = XFLOAT_DATA (it->slice.height) * img->height;
23675 if (slice.x >= img->width)
23676 slice.x = img->width;
23677 if (slice.y >= img->height)
23678 slice.y = img->height;
23679 if (slice.x + slice.width >= img->width)
23680 slice.width = img->width - slice.x;
23681 if (slice.y + slice.height > img->height)
23682 slice.height = img->height - slice.y;
23684 if (slice.width == 0 || slice.height == 0)
23685 return;
23687 it->ascent = it->phys_ascent = glyph_ascent = image_ascent (img, face, &slice);
23689 it->descent = slice.height - glyph_ascent;
23690 if (slice.y == 0)
23691 it->descent += img->vmargin;
23692 if (slice.y + slice.height == img->height)
23693 it->descent += img->vmargin;
23694 it->phys_descent = it->descent;
23696 it->pixel_width = slice.width;
23697 if (slice.x == 0)
23698 it->pixel_width += img->hmargin;
23699 if (slice.x + slice.width == img->width)
23700 it->pixel_width += img->hmargin;
23702 /* It's quite possible for images to have an ascent greater than
23703 their height, so don't get confused in that case. */
23704 if (it->descent < 0)
23705 it->descent = 0;
23707 it->nglyphs = 1;
23709 if (face->box != FACE_NO_BOX)
23711 if (face->box_line_width > 0)
23713 if (slice.y == 0)
23714 it->ascent += face->box_line_width;
23715 if (slice.y + slice.height == img->height)
23716 it->descent += face->box_line_width;
23719 if (it->start_of_box_run_p && slice.x == 0)
23720 it->pixel_width += eabs (face->box_line_width);
23721 if (it->end_of_box_run_p && slice.x + slice.width == img->width)
23722 it->pixel_width += eabs (face->box_line_width);
23725 take_vertical_position_into_account (it);
23727 /* Automatically crop wide image glyphs at right edge so we can
23728 draw the cursor on same display row. */
23729 if ((crop = it->pixel_width - (it->last_visible_x - it->current_x), crop > 0)
23730 && (it->hpos == 0 || it->pixel_width > it->last_visible_x / 4))
23732 it->pixel_width -= crop;
23733 slice.width -= crop;
23736 if (it->glyph_row)
23738 struct glyph *glyph;
23739 enum glyph_row_area area = it->area;
23741 glyph = it->glyph_row->glyphs[area] + it->glyph_row->used[area];
23742 if (glyph < it->glyph_row->glyphs[area + 1])
23744 glyph->charpos = CHARPOS (it->position);
23745 glyph->object = it->object;
23746 glyph->pixel_width = it->pixel_width;
23747 glyph->ascent = glyph_ascent;
23748 glyph->descent = it->descent;
23749 glyph->voffset = it->voffset;
23750 glyph->type = IMAGE_GLYPH;
23751 glyph->avoid_cursor_p = it->avoid_cursor_p;
23752 glyph->multibyte_p = it->multibyte_p;
23753 glyph->left_box_line_p = it->start_of_box_run_p;
23754 glyph->right_box_line_p = it->end_of_box_run_p;
23755 glyph->overlaps_vertically_p = 0;
23756 glyph->padding_p = 0;
23757 glyph->glyph_not_available_p = 0;
23758 glyph->face_id = it->face_id;
23759 glyph->u.img_id = img->id;
23760 glyph->slice.img = slice;
23761 glyph->font_type = FONT_TYPE_UNKNOWN;
23762 if (it->bidi_p)
23764 glyph->resolved_level = it->bidi_it.resolved_level;
23765 if ((it->bidi_it.type & 7) != it->bidi_it.type)
23766 abort ();
23767 glyph->bidi_type = it->bidi_it.type;
23769 ++it->glyph_row->used[area];
23771 else
23772 IT_EXPAND_MATRIX_WIDTH (it, area);
23777 /* Append a stretch glyph to IT->glyph_row. OBJECT is the source
23778 of the glyph, WIDTH and HEIGHT are the width and height of the
23779 stretch. ASCENT is the ascent of the glyph (0 <= ASCENT <= HEIGHT). */
23781 static void
23782 append_stretch_glyph (struct it *it, Lisp_Object object,
23783 int width, int height, int ascent)
23785 struct glyph *glyph;
23786 enum glyph_row_area area = it->area;
23788 xassert (ascent >= 0 && ascent <= height);
23790 glyph = it->glyph_row->glyphs[area] + it->glyph_row->used[area];
23791 if (glyph < it->glyph_row->glyphs[area + 1])
23793 /* If the glyph row is reversed, we need to prepend the glyph
23794 rather than append it. */
23795 if (it->glyph_row->reversed_p && area == TEXT_AREA)
23797 struct glyph *g;
23799 /* Make room for the additional glyph. */
23800 for (g = glyph - 1; g >= it->glyph_row->glyphs[area]; g--)
23801 g[1] = *g;
23802 glyph = it->glyph_row->glyphs[area];
23804 glyph->charpos = CHARPOS (it->position);
23805 glyph->object = object;
23806 glyph->pixel_width = width;
23807 glyph->ascent = ascent;
23808 glyph->descent = height - ascent;
23809 glyph->voffset = it->voffset;
23810 glyph->type = STRETCH_GLYPH;
23811 glyph->avoid_cursor_p = it->avoid_cursor_p;
23812 glyph->multibyte_p = it->multibyte_p;
23813 glyph->left_box_line_p = it->start_of_box_run_p;
23814 glyph->right_box_line_p = it->end_of_box_run_p;
23815 glyph->overlaps_vertically_p = 0;
23816 glyph->padding_p = 0;
23817 glyph->glyph_not_available_p = 0;
23818 glyph->face_id = it->face_id;
23819 glyph->u.stretch.ascent = ascent;
23820 glyph->u.stretch.height = height;
23821 glyph->slice.img = null_glyph_slice;
23822 glyph->font_type = FONT_TYPE_UNKNOWN;
23823 if (it->bidi_p)
23825 glyph->resolved_level = it->bidi_it.resolved_level;
23826 if ((it->bidi_it.type & 7) != it->bidi_it.type)
23827 abort ();
23828 glyph->bidi_type = it->bidi_it.type;
23830 else
23832 glyph->resolved_level = 0;
23833 glyph->bidi_type = UNKNOWN_BT;
23835 ++it->glyph_row->used[area];
23837 else
23838 IT_EXPAND_MATRIX_WIDTH (it, area);
23841 #endif /* HAVE_WINDOW_SYSTEM */
23843 /* Produce a stretch glyph for iterator IT. IT->object is the value
23844 of the glyph property displayed. The value must be a list
23845 `(space KEYWORD VALUE ...)' with the following KEYWORD/VALUE pairs
23846 being recognized:
23848 1. `:width WIDTH' specifies that the space should be WIDTH *
23849 canonical char width wide. WIDTH may be an integer or floating
23850 point number.
23852 2. `:relative-width FACTOR' specifies that the width of the stretch
23853 should be computed from the width of the first character having the
23854 `glyph' property, and should be FACTOR times that width.
23856 3. `:align-to HPOS' specifies that the space should be wide enough
23857 to reach HPOS, a value in canonical character units.
23859 Exactly one of the above pairs must be present.
23861 4. `:height HEIGHT' specifies that the height of the stretch produced
23862 should be HEIGHT, measured in canonical character units.
23864 5. `:relative-height FACTOR' specifies that the height of the
23865 stretch should be FACTOR times the height of the characters having
23866 the glyph property.
23868 Either none or exactly one of 4 or 5 must be present.
23870 6. `:ascent ASCENT' specifies that ASCENT percent of the height
23871 of the stretch should be used for the ascent of the stretch.
23872 ASCENT must be in the range 0 <= ASCENT <= 100. */
23874 void
23875 produce_stretch_glyph (struct it *it)
23877 /* (space :width WIDTH :height HEIGHT ...) */
23878 Lisp_Object prop, plist;
23879 int width = 0, height = 0, align_to = -1;
23880 int zero_width_ok_p = 0;
23881 int ascent = 0;
23882 double tem;
23883 struct face *face = NULL;
23884 struct font *font = NULL;
23886 #ifdef HAVE_WINDOW_SYSTEM
23887 int zero_height_ok_p = 0;
23889 if (FRAME_WINDOW_P (it->f))
23891 face = FACE_FROM_ID (it->f, it->face_id);
23892 font = face->font ? face->font : FRAME_FONT (it->f);
23893 PREPARE_FACE_FOR_DISPLAY (it->f, face);
23895 #endif
23897 /* List should start with `space'. */
23898 xassert (CONSP (it->object) && EQ (XCAR (it->object), Qspace));
23899 plist = XCDR (it->object);
23901 /* Compute the width of the stretch. */
23902 if ((prop = Fplist_get (plist, QCwidth), !NILP (prop))
23903 && calc_pixel_width_or_height (&tem, it, prop, font, 1, 0))
23905 /* Absolute width `:width WIDTH' specified and valid. */
23906 zero_width_ok_p = 1;
23907 width = (int)tem;
23909 #ifdef HAVE_WINDOW_SYSTEM
23910 else if (FRAME_WINDOW_P (it->f)
23911 && (prop = Fplist_get (plist, QCrelative_width), NUMVAL (prop) > 0))
23913 /* Relative width `:relative-width FACTOR' specified and valid.
23914 Compute the width of the characters having the `glyph'
23915 property. */
23916 struct it it2;
23917 unsigned char *p = BYTE_POS_ADDR (IT_BYTEPOS (*it));
23919 it2 = *it;
23920 if (it->multibyte_p)
23921 it2.c = it2.char_to_display = STRING_CHAR_AND_LENGTH (p, it2.len);
23922 else
23924 it2.c = it2.char_to_display = *p, it2.len = 1;
23925 if (! ASCII_CHAR_P (it2.c))
23926 it2.char_to_display = BYTE8_TO_CHAR (it2.c);
23929 it2.glyph_row = NULL;
23930 it2.what = IT_CHARACTER;
23931 x_produce_glyphs (&it2);
23932 width = NUMVAL (prop) * it2.pixel_width;
23934 #endif /* HAVE_WINDOW_SYSTEM */
23935 else if ((prop = Fplist_get (plist, QCalign_to), !NILP (prop))
23936 && calc_pixel_width_or_height (&tem, it, prop, font, 1, &align_to))
23938 if (it->glyph_row == NULL || !it->glyph_row->mode_line_p)
23939 align_to = (align_to < 0
23941 : align_to - window_box_left_offset (it->w, TEXT_AREA));
23942 else if (align_to < 0)
23943 align_to = window_box_left_offset (it->w, TEXT_AREA);
23944 width = max (0, (int)tem + align_to - it->current_x);
23945 zero_width_ok_p = 1;
23947 else
23948 /* Nothing specified -> width defaults to canonical char width. */
23949 width = FRAME_COLUMN_WIDTH (it->f);
23951 if (width <= 0 && (width < 0 || !zero_width_ok_p))
23952 width = 1;
23954 #ifdef HAVE_WINDOW_SYSTEM
23955 /* Compute height. */
23956 if (FRAME_WINDOW_P (it->f))
23958 if ((prop = Fplist_get (plist, QCheight), !NILP (prop))
23959 && calc_pixel_width_or_height (&tem, it, prop, font, 0, 0))
23961 height = (int)tem;
23962 zero_height_ok_p = 1;
23964 else if (prop = Fplist_get (plist, QCrelative_height),
23965 NUMVAL (prop) > 0)
23966 height = FONT_HEIGHT (font) * NUMVAL (prop);
23967 else
23968 height = FONT_HEIGHT (font);
23970 if (height <= 0 && (height < 0 || !zero_height_ok_p))
23971 height = 1;
23973 /* Compute percentage of height used for ascent. If
23974 `:ascent ASCENT' is present and valid, use that. Otherwise,
23975 derive the ascent from the font in use. */
23976 if (prop = Fplist_get (plist, QCascent),
23977 NUMVAL (prop) > 0 && NUMVAL (prop) <= 100)
23978 ascent = height * NUMVAL (prop) / 100.0;
23979 else if (!NILP (prop)
23980 && calc_pixel_width_or_height (&tem, it, prop, font, 0, 0))
23981 ascent = min (max (0, (int)tem), height);
23982 else
23983 ascent = (height * FONT_BASE (font)) / FONT_HEIGHT (font);
23985 else
23986 #endif /* HAVE_WINDOW_SYSTEM */
23987 height = 1;
23989 if (width > 0 && it->line_wrap != TRUNCATE
23990 && it->current_x + width > it->last_visible_x)
23992 width = it->last_visible_x - it->current_x;
23993 #ifdef HAVE_WINDOW_SYSTEM
23994 /* Subtract one more pixel from the stretch width, but only on
23995 GUI frames, since on a TTY each glyph is one "pixel" wide. */
23996 width -= FRAME_WINDOW_P (it->f);
23997 #endif
24000 if (width > 0 && height > 0 && it->glyph_row)
24002 Lisp_Object o_object = it->object;
24003 Lisp_Object object = it->stack[it->sp - 1].string;
24004 int n = width;
24006 if (!STRINGP (object))
24007 object = it->w->buffer;
24008 #ifdef HAVE_WINDOW_SYSTEM
24009 if (FRAME_WINDOW_P (it->f))
24010 append_stretch_glyph (it, object, width, height, ascent);
24011 else
24012 #endif
24014 it->object = object;
24015 it->char_to_display = ' ';
24016 it->pixel_width = it->len = 1;
24017 while (n--)
24018 tty_append_glyph (it);
24019 it->object = o_object;
24023 it->pixel_width = width;
24024 #ifdef HAVE_WINDOW_SYSTEM
24025 if (FRAME_WINDOW_P (it->f))
24027 it->ascent = it->phys_ascent = ascent;
24028 it->descent = it->phys_descent = height - it->ascent;
24029 it->nglyphs = width > 0 && height > 0 ? 1 : 0;
24030 take_vertical_position_into_account (it);
24032 else
24033 #endif
24034 it->nglyphs = width;
24037 #ifdef HAVE_WINDOW_SYSTEM
24039 /* Calculate line-height and line-spacing properties.
24040 An integer value specifies explicit pixel value.
24041 A float value specifies relative value to current face height.
24042 A cons (float . face-name) specifies relative value to
24043 height of specified face font.
24045 Returns height in pixels, or nil. */
24048 static Lisp_Object
24049 calc_line_height_property (struct it *it, Lisp_Object val, struct font *font,
24050 int boff, int override)
24052 Lisp_Object face_name = Qnil;
24053 int ascent, descent, height;
24055 if (NILP (val) || INTEGERP (val) || (override && EQ (val, Qt)))
24056 return val;
24058 if (CONSP (val))
24060 face_name = XCAR (val);
24061 val = XCDR (val);
24062 if (!NUMBERP (val))
24063 val = make_number (1);
24064 if (NILP (face_name))
24066 height = it->ascent + it->descent;
24067 goto scale;
24071 if (NILP (face_name))
24073 font = FRAME_FONT (it->f);
24074 boff = FRAME_BASELINE_OFFSET (it->f);
24076 else if (EQ (face_name, Qt))
24078 override = 0;
24080 else
24082 int face_id;
24083 struct face *face;
24085 face_id = lookup_named_face (it->f, face_name, 0);
24086 if (face_id < 0)
24087 return make_number (-1);
24089 face = FACE_FROM_ID (it->f, face_id);
24090 font = face->font;
24091 if (font == NULL)
24092 return make_number (-1);
24093 boff = font->baseline_offset;
24094 if (font->vertical_centering)
24095 boff = VCENTER_BASELINE_OFFSET (font, it->f) - boff;
24098 ascent = FONT_BASE (font) + boff;
24099 descent = FONT_DESCENT (font) - boff;
24101 if (override)
24103 it->override_ascent = ascent;
24104 it->override_descent = descent;
24105 it->override_boff = boff;
24108 height = ascent + descent;
24110 scale:
24111 if (FLOATP (val))
24112 height = (int)(XFLOAT_DATA (val) * height);
24113 else if (INTEGERP (val))
24114 height *= XINT (val);
24116 return make_number (height);
24120 /* Append a glyph for a glyphless character to IT->glyph_row. FACE_ID
24121 is a face ID to be used for the glyph. FOR_NO_FONT is nonzero if
24122 and only if this is for a character for which no font was found.
24124 If the display method (it->glyphless_method) is
24125 GLYPHLESS_DISPLAY_ACRONYM or GLYPHLESS_DISPLAY_HEX_CODE, LEN is a
24126 length of the acronym or the hexadecimal string, UPPER_XOFF and
24127 UPPER_YOFF are pixel offsets for the upper part of the string,
24128 LOWER_XOFF and LOWER_YOFF are for the lower part.
24130 For the other display methods, LEN through LOWER_YOFF are zero. */
24132 static void
24133 append_glyphless_glyph (struct it *it, int face_id, int for_no_font, int len,
24134 short upper_xoff, short upper_yoff,
24135 short lower_xoff, short lower_yoff)
24137 struct glyph *glyph;
24138 enum glyph_row_area area = it->area;
24140 glyph = it->glyph_row->glyphs[area] + it->glyph_row->used[area];
24141 if (glyph < it->glyph_row->glyphs[area + 1])
24143 /* If the glyph row is reversed, we need to prepend the glyph
24144 rather than append it. */
24145 if (it->glyph_row->reversed_p && area == TEXT_AREA)
24147 struct glyph *g;
24149 /* Make room for the additional glyph. */
24150 for (g = glyph - 1; g >= it->glyph_row->glyphs[area]; g--)
24151 g[1] = *g;
24152 glyph = it->glyph_row->glyphs[area];
24154 glyph->charpos = CHARPOS (it->position);
24155 glyph->object = it->object;
24156 glyph->pixel_width = it->pixel_width;
24157 glyph->ascent = it->ascent;
24158 glyph->descent = it->descent;
24159 glyph->voffset = it->voffset;
24160 glyph->type = GLYPHLESS_GLYPH;
24161 glyph->u.glyphless.method = it->glyphless_method;
24162 glyph->u.glyphless.for_no_font = for_no_font;
24163 glyph->u.glyphless.len = len;
24164 glyph->u.glyphless.ch = it->c;
24165 glyph->slice.glyphless.upper_xoff = upper_xoff;
24166 glyph->slice.glyphless.upper_yoff = upper_yoff;
24167 glyph->slice.glyphless.lower_xoff = lower_xoff;
24168 glyph->slice.glyphless.lower_yoff = lower_yoff;
24169 glyph->avoid_cursor_p = it->avoid_cursor_p;
24170 glyph->multibyte_p = it->multibyte_p;
24171 glyph->left_box_line_p = it->start_of_box_run_p;
24172 glyph->right_box_line_p = it->end_of_box_run_p;
24173 glyph->overlaps_vertically_p = (it->phys_ascent > it->ascent
24174 || it->phys_descent > it->descent);
24175 glyph->padding_p = 0;
24176 glyph->glyph_not_available_p = 0;
24177 glyph->face_id = face_id;
24178 glyph->font_type = FONT_TYPE_UNKNOWN;
24179 if (it->bidi_p)
24181 glyph->resolved_level = it->bidi_it.resolved_level;
24182 if ((it->bidi_it.type & 7) != it->bidi_it.type)
24183 abort ();
24184 glyph->bidi_type = it->bidi_it.type;
24186 ++it->glyph_row->used[area];
24188 else
24189 IT_EXPAND_MATRIX_WIDTH (it, area);
24193 /* Produce a glyph for a glyphless character for iterator IT.
24194 IT->glyphless_method specifies which method to use for displaying
24195 the character. See the description of enum
24196 glyphless_display_method in dispextern.h for the detail.
24198 FOR_NO_FONT is nonzero if and only if this is for a character for
24199 which no font was found. ACRONYM, if non-nil, is an acronym string
24200 for the character. */
24202 static void
24203 produce_glyphless_glyph (struct it *it, int for_no_font, Lisp_Object acronym)
24205 int face_id;
24206 struct face *face;
24207 struct font *font;
24208 int base_width, base_height, width, height;
24209 short upper_xoff, upper_yoff, lower_xoff, lower_yoff;
24210 int len;
24212 /* Get the metrics of the base font. We always refer to the current
24213 ASCII face. */
24214 face = FACE_FROM_ID (it->f, it->face_id)->ascii_face;
24215 font = face->font ? face->font : FRAME_FONT (it->f);
24216 it->ascent = FONT_BASE (font) + font->baseline_offset;
24217 it->descent = FONT_DESCENT (font) - font->baseline_offset;
24218 base_height = it->ascent + it->descent;
24219 base_width = font->average_width;
24221 /* Get a face ID for the glyph by utilizing a cache (the same way as
24222 done for `escape-glyph' in get_next_display_element). */
24223 if (it->f == last_glyphless_glyph_frame
24224 && it->face_id == last_glyphless_glyph_face_id)
24226 face_id = last_glyphless_glyph_merged_face_id;
24228 else
24230 /* Merge the `glyphless-char' face into the current face. */
24231 face_id = merge_faces (it->f, Qglyphless_char, 0, it->face_id);
24232 last_glyphless_glyph_frame = it->f;
24233 last_glyphless_glyph_face_id = it->face_id;
24234 last_glyphless_glyph_merged_face_id = face_id;
24237 if (it->glyphless_method == GLYPHLESS_DISPLAY_THIN_SPACE)
24239 it->pixel_width = THIN_SPACE_WIDTH;
24240 len = 0;
24241 upper_xoff = upper_yoff = lower_xoff = lower_yoff = 0;
24243 else if (it->glyphless_method == GLYPHLESS_DISPLAY_EMPTY_BOX)
24245 width = CHAR_WIDTH (it->c);
24246 if (width == 0)
24247 width = 1;
24248 else if (width > 4)
24249 width = 4;
24250 it->pixel_width = base_width * width;
24251 len = 0;
24252 upper_xoff = upper_yoff = lower_xoff = lower_yoff = 0;
24254 else
24256 char buf[7];
24257 const char *str;
24258 unsigned int code[6];
24259 int upper_len;
24260 int ascent, descent;
24261 struct font_metrics metrics_upper, metrics_lower;
24263 face = FACE_FROM_ID (it->f, face_id);
24264 font = face->font ? face->font : FRAME_FONT (it->f);
24265 PREPARE_FACE_FOR_DISPLAY (it->f, face);
24267 if (it->glyphless_method == GLYPHLESS_DISPLAY_ACRONYM)
24269 if (! STRINGP (acronym) && CHAR_TABLE_P (Vglyphless_char_display))
24270 acronym = CHAR_TABLE_REF (Vglyphless_char_display, it->c);
24271 if (CONSP (acronym))
24272 acronym = XCAR (acronym);
24273 str = STRINGP (acronym) ? SSDATA (acronym) : "";
24275 else
24277 xassert (it->glyphless_method == GLYPHLESS_DISPLAY_HEX_CODE);
24278 sprintf (buf, "%0*X", it->c < 0x10000 ? 4 : 6, it->c);
24279 str = buf;
24281 for (len = 0; str[len] && ASCII_BYTE_P (str[len]) && len < 6; len++)
24282 code[len] = font->driver->encode_char (font, str[len]);
24283 upper_len = (len + 1) / 2;
24284 font->driver->text_extents (font, code, upper_len,
24285 &metrics_upper);
24286 font->driver->text_extents (font, code + upper_len, len - upper_len,
24287 &metrics_lower);
24291 /* +4 is for vertical bars of a box plus 1-pixel spaces at both side. */
24292 width = max (metrics_upper.width, metrics_lower.width) + 4;
24293 upper_xoff = upper_yoff = 2; /* the typical case */
24294 if (base_width >= width)
24296 /* Align the upper to the left, the lower to the right. */
24297 it->pixel_width = base_width;
24298 lower_xoff = base_width - 2 - metrics_lower.width;
24300 else
24302 /* Center the shorter one. */
24303 it->pixel_width = width;
24304 if (metrics_upper.width >= metrics_lower.width)
24305 lower_xoff = (width - metrics_lower.width) / 2;
24306 else
24308 /* FIXME: This code doesn't look right. It formerly was
24309 missing the "lower_xoff = 0;", which couldn't have
24310 been right since it left lower_xoff uninitialized. */
24311 lower_xoff = 0;
24312 upper_xoff = (width - metrics_upper.width) / 2;
24316 /* +5 is for horizontal bars of a box plus 1-pixel spaces at
24317 top, bottom, and between upper and lower strings. */
24318 height = (metrics_upper.ascent + metrics_upper.descent
24319 + metrics_lower.ascent + metrics_lower.descent) + 5;
24320 /* Center vertically.
24321 H:base_height, D:base_descent
24322 h:height, ld:lower_descent, la:lower_ascent, ud:upper_descent
24324 ascent = - (D - H/2 - h/2 + 1); "+ 1" for rounding up
24325 descent = D - H/2 + h/2;
24326 lower_yoff = descent - 2 - ld;
24327 upper_yoff = lower_yoff - la - 1 - ud; */
24328 ascent = - (it->descent - (base_height + height + 1) / 2);
24329 descent = it->descent - (base_height - height) / 2;
24330 lower_yoff = descent - 2 - metrics_lower.descent;
24331 upper_yoff = (lower_yoff - metrics_lower.ascent - 1
24332 - metrics_upper.descent);
24333 /* Don't make the height shorter than the base height. */
24334 if (height > base_height)
24336 it->ascent = ascent;
24337 it->descent = descent;
24341 it->phys_ascent = it->ascent;
24342 it->phys_descent = it->descent;
24343 if (it->glyph_row)
24344 append_glyphless_glyph (it, face_id, for_no_font, len,
24345 upper_xoff, upper_yoff,
24346 lower_xoff, lower_yoff);
24347 it->nglyphs = 1;
24348 take_vertical_position_into_account (it);
24352 /* RIF:
24353 Produce glyphs/get display metrics for the display element IT is
24354 loaded with. See the description of struct it in dispextern.h
24355 for an overview of struct it. */
24357 void
24358 x_produce_glyphs (struct it *it)
24360 int extra_line_spacing = it->extra_line_spacing;
24362 it->glyph_not_available_p = 0;
24364 if (it->what == IT_CHARACTER)
24366 XChar2b char2b;
24367 struct face *face = FACE_FROM_ID (it->f, it->face_id);
24368 struct font *font = face->font;
24369 struct font_metrics *pcm = NULL;
24370 int boff; /* baseline offset */
24372 if (font == NULL)
24374 /* When no suitable font is found, display this character by
24375 the method specified in the first extra slot of
24376 Vglyphless_char_display. */
24377 Lisp_Object acronym = lookup_glyphless_char_display (-1, it);
24379 xassert (it->what == IT_GLYPHLESS);
24380 produce_glyphless_glyph (it, 1, STRINGP (acronym) ? acronym : Qnil);
24381 goto done;
24384 boff = font->baseline_offset;
24385 if (font->vertical_centering)
24386 boff = VCENTER_BASELINE_OFFSET (font, it->f) - boff;
24388 if (it->char_to_display != '\n' && it->char_to_display != '\t')
24390 int stretched_p;
24392 it->nglyphs = 1;
24394 if (it->override_ascent >= 0)
24396 it->ascent = it->override_ascent;
24397 it->descent = it->override_descent;
24398 boff = it->override_boff;
24400 else
24402 it->ascent = FONT_BASE (font) + boff;
24403 it->descent = FONT_DESCENT (font) - boff;
24406 if (get_char_glyph_code (it->char_to_display, font, &char2b))
24408 pcm = get_per_char_metric (font, &char2b);
24409 if (pcm->width == 0
24410 && pcm->rbearing == 0 && pcm->lbearing == 0)
24411 pcm = NULL;
24414 if (pcm)
24416 it->phys_ascent = pcm->ascent + boff;
24417 it->phys_descent = pcm->descent - boff;
24418 it->pixel_width = pcm->width;
24420 else
24422 it->glyph_not_available_p = 1;
24423 it->phys_ascent = it->ascent;
24424 it->phys_descent = it->descent;
24425 it->pixel_width = font->space_width;
24428 if (it->constrain_row_ascent_descent_p)
24430 if (it->descent > it->max_descent)
24432 it->ascent += it->descent - it->max_descent;
24433 it->descent = it->max_descent;
24435 if (it->ascent > it->max_ascent)
24437 it->descent = min (it->max_descent, it->descent + it->ascent - it->max_ascent);
24438 it->ascent = it->max_ascent;
24440 it->phys_ascent = min (it->phys_ascent, it->ascent);
24441 it->phys_descent = min (it->phys_descent, it->descent);
24442 extra_line_spacing = 0;
24445 /* If this is a space inside a region of text with
24446 `space-width' property, change its width. */
24447 stretched_p = it->char_to_display == ' ' && !NILP (it->space_width);
24448 if (stretched_p)
24449 it->pixel_width *= XFLOATINT (it->space_width);
24451 /* If face has a box, add the box thickness to the character
24452 height. If character has a box line to the left and/or
24453 right, add the box line width to the character's width. */
24454 if (face->box != FACE_NO_BOX)
24456 int thick = face->box_line_width;
24458 if (thick > 0)
24460 it->ascent += thick;
24461 it->descent += thick;
24463 else
24464 thick = -thick;
24466 if (it->start_of_box_run_p)
24467 it->pixel_width += thick;
24468 if (it->end_of_box_run_p)
24469 it->pixel_width += thick;
24472 /* If face has an overline, add the height of the overline
24473 (1 pixel) and a 1 pixel margin to the character height. */
24474 if (face->overline_p)
24475 it->ascent += overline_margin;
24477 if (it->constrain_row_ascent_descent_p)
24479 if (it->ascent > it->max_ascent)
24480 it->ascent = it->max_ascent;
24481 if (it->descent > it->max_descent)
24482 it->descent = it->max_descent;
24485 take_vertical_position_into_account (it);
24487 /* If we have to actually produce glyphs, do it. */
24488 if (it->glyph_row)
24490 if (stretched_p)
24492 /* Translate a space with a `space-width' property
24493 into a stretch glyph. */
24494 int ascent = (((it->ascent + it->descent) * FONT_BASE (font))
24495 / FONT_HEIGHT (font));
24496 append_stretch_glyph (it, it->object, it->pixel_width,
24497 it->ascent + it->descent, ascent);
24499 else
24500 append_glyph (it);
24502 /* If characters with lbearing or rbearing are displayed
24503 in this line, record that fact in a flag of the
24504 glyph row. This is used to optimize X output code. */
24505 if (pcm && (pcm->lbearing < 0 || pcm->rbearing > pcm->width))
24506 it->glyph_row->contains_overlapping_glyphs_p = 1;
24508 if (! stretched_p && it->pixel_width == 0)
24509 /* We assure that all visible glyphs have at least 1-pixel
24510 width. */
24511 it->pixel_width = 1;
24513 else if (it->char_to_display == '\n')
24515 /* A newline has no width, but we need the height of the
24516 line. But if previous part of the line sets a height,
24517 don't increase that height */
24519 Lisp_Object height;
24520 Lisp_Object total_height = Qnil;
24522 it->override_ascent = -1;
24523 it->pixel_width = 0;
24524 it->nglyphs = 0;
24526 height = get_it_property (it, Qline_height);
24527 /* Split (line-height total-height) list */
24528 if (CONSP (height)
24529 && CONSP (XCDR (height))
24530 && NILP (XCDR (XCDR (height))))
24532 total_height = XCAR (XCDR (height));
24533 height = XCAR (height);
24535 height = calc_line_height_property (it, height, font, boff, 1);
24537 if (it->override_ascent >= 0)
24539 it->ascent = it->override_ascent;
24540 it->descent = it->override_descent;
24541 boff = it->override_boff;
24543 else
24545 it->ascent = FONT_BASE (font) + boff;
24546 it->descent = FONT_DESCENT (font) - boff;
24549 if (EQ (height, Qt))
24551 if (it->descent > it->max_descent)
24553 it->ascent += it->descent - it->max_descent;
24554 it->descent = it->max_descent;
24556 if (it->ascent > it->max_ascent)
24558 it->descent = min (it->max_descent, it->descent + it->ascent - it->max_ascent);
24559 it->ascent = it->max_ascent;
24561 it->phys_ascent = min (it->phys_ascent, it->ascent);
24562 it->phys_descent = min (it->phys_descent, it->descent);
24563 it->constrain_row_ascent_descent_p = 1;
24564 extra_line_spacing = 0;
24566 else
24568 Lisp_Object spacing;
24570 it->phys_ascent = it->ascent;
24571 it->phys_descent = it->descent;
24573 if ((it->max_ascent > 0 || it->max_descent > 0)
24574 && face->box != FACE_NO_BOX
24575 && face->box_line_width > 0)
24577 it->ascent += face->box_line_width;
24578 it->descent += face->box_line_width;
24580 if (!NILP (height)
24581 && XINT (height) > it->ascent + it->descent)
24582 it->ascent = XINT (height) - it->descent;
24584 if (!NILP (total_height))
24585 spacing = calc_line_height_property (it, total_height, font, boff, 0);
24586 else
24588 spacing = get_it_property (it, Qline_spacing);
24589 spacing = calc_line_height_property (it, spacing, font, boff, 0);
24591 if (INTEGERP (spacing))
24593 extra_line_spacing = XINT (spacing);
24594 if (!NILP (total_height))
24595 extra_line_spacing -= (it->phys_ascent + it->phys_descent);
24599 else /* i.e. (it->char_to_display == '\t') */
24601 if (font->space_width > 0)
24603 int tab_width = it->tab_width * font->space_width;
24604 int x = it->current_x + it->continuation_lines_width;
24605 int next_tab_x = ((1 + x + tab_width - 1) / tab_width) * tab_width;
24607 /* If the distance from the current position to the next tab
24608 stop is less than a space character width, use the
24609 tab stop after that. */
24610 if (next_tab_x - x < font->space_width)
24611 next_tab_x += tab_width;
24613 it->pixel_width = next_tab_x - x;
24614 it->nglyphs = 1;
24615 it->ascent = it->phys_ascent = FONT_BASE (font) + boff;
24616 it->descent = it->phys_descent = FONT_DESCENT (font) - boff;
24618 if (it->glyph_row)
24620 append_stretch_glyph (it, it->object, it->pixel_width,
24621 it->ascent + it->descent, it->ascent);
24624 else
24626 it->pixel_width = 0;
24627 it->nglyphs = 1;
24631 else if (it->what == IT_COMPOSITION && it->cmp_it.ch < 0)
24633 /* A static composition.
24635 Note: A composition is represented as one glyph in the
24636 glyph matrix. There are no padding glyphs.
24638 Important note: pixel_width, ascent, and descent are the
24639 values of what is drawn by draw_glyphs (i.e. the values of
24640 the overall glyphs composed). */
24641 struct face *face = FACE_FROM_ID (it->f, it->face_id);
24642 int boff; /* baseline offset */
24643 struct composition *cmp = composition_table[it->cmp_it.id];
24644 int glyph_len = cmp->glyph_len;
24645 struct font *font = face->font;
24647 it->nglyphs = 1;
24649 /* If we have not yet calculated pixel size data of glyphs of
24650 the composition for the current face font, calculate them
24651 now. Theoretically, we have to check all fonts for the
24652 glyphs, but that requires much time and memory space. So,
24653 here we check only the font of the first glyph. This may
24654 lead to incorrect display, but it's very rare, and C-l
24655 (recenter-top-bottom) can correct the display anyway. */
24656 if (! cmp->font || cmp->font != font)
24658 /* Ascent and descent of the font of the first character
24659 of this composition (adjusted by baseline offset).
24660 Ascent and descent of overall glyphs should not be less
24661 than these, respectively. */
24662 int font_ascent, font_descent, font_height;
24663 /* Bounding box of the overall glyphs. */
24664 int leftmost, rightmost, lowest, highest;
24665 int lbearing, rbearing;
24666 int i, width, ascent, descent;
24667 int left_padded = 0, right_padded = 0;
24668 int c IF_LINT (= 0); /* cmp->glyph_len can't be zero; see Bug#8512 */
24669 XChar2b char2b;
24670 struct font_metrics *pcm;
24671 int font_not_found_p;
24672 ptrdiff_t pos;
24674 for (glyph_len = cmp->glyph_len; glyph_len > 0; glyph_len--)
24675 if ((c = COMPOSITION_GLYPH (cmp, glyph_len - 1)) != '\t')
24676 break;
24677 if (glyph_len < cmp->glyph_len)
24678 right_padded = 1;
24679 for (i = 0; i < glyph_len; i++)
24681 if ((c = COMPOSITION_GLYPH (cmp, i)) != '\t')
24682 break;
24683 cmp->offsets[i * 2] = cmp->offsets[i * 2 + 1] = 0;
24685 if (i > 0)
24686 left_padded = 1;
24688 pos = (STRINGP (it->string) ? IT_STRING_CHARPOS (*it)
24689 : IT_CHARPOS (*it));
24690 /* If no suitable font is found, use the default font. */
24691 font_not_found_p = font == NULL;
24692 if (font_not_found_p)
24694 face = face->ascii_face;
24695 font = face->font;
24697 boff = font->baseline_offset;
24698 if (font->vertical_centering)
24699 boff = VCENTER_BASELINE_OFFSET (font, it->f) - boff;
24700 font_ascent = FONT_BASE (font) + boff;
24701 font_descent = FONT_DESCENT (font) - boff;
24702 font_height = FONT_HEIGHT (font);
24704 cmp->font = (void *) font;
24706 pcm = NULL;
24707 if (! font_not_found_p)
24709 get_char_face_and_encoding (it->f, c, it->face_id,
24710 &char2b, 0);
24711 pcm = get_per_char_metric (font, &char2b);
24714 /* Initialize the bounding box. */
24715 if (pcm)
24717 width = cmp->glyph_len > 0 ? pcm->width : 0;
24718 ascent = pcm->ascent;
24719 descent = pcm->descent;
24720 lbearing = pcm->lbearing;
24721 rbearing = pcm->rbearing;
24723 else
24725 width = cmp->glyph_len > 0 ? font->space_width : 0;
24726 ascent = FONT_BASE (font);
24727 descent = FONT_DESCENT (font);
24728 lbearing = 0;
24729 rbearing = width;
24732 rightmost = width;
24733 leftmost = 0;
24734 lowest = - descent + boff;
24735 highest = ascent + boff;
24737 if (! font_not_found_p
24738 && font->default_ascent
24739 && CHAR_TABLE_P (Vuse_default_ascent)
24740 && !NILP (Faref (Vuse_default_ascent,
24741 make_number (it->char_to_display))))
24742 highest = font->default_ascent + boff;
24744 /* Draw the first glyph at the normal position. It may be
24745 shifted to right later if some other glyphs are drawn
24746 at the left. */
24747 cmp->offsets[i * 2] = 0;
24748 cmp->offsets[i * 2 + 1] = boff;
24749 cmp->lbearing = lbearing;
24750 cmp->rbearing = rbearing;
24752 /* Set cmp->offsets for the remaining glyphs. */
24753 for (i++; i < glyph_len; i++)
24755 int left, right, btm, top;
24756 int ch = COMPOSITION_GLYPH (cmp, i);
24757 int face_id;
24758 struct face *this_face;
24760 if (ch == '\t')
24761 ch = ' ';
24762 face_id = FACE_FOR_CHAR (it->f, face, ch, pos, it->string);
24763 this_face = FACE_FROM_ID (it->f, face_id);
24764 font = this_face->font;
24766 if (font == NULL)
24767 pcm = NULL;
24768 else
24770 get_char_face_and_encoding (it->f, ch, face_id,
24771 &char2b, 0);
24772 pcm = get_per_char_metric (font, &char2b);
24774 if (! pcm)
24775 cmp->offsets[i * 2] = cmp->offsets[i * 2 + 1] = 0;
24776 else
24778 width = pcm->width;
24779 ascent = pcm->ascent;
24780 descent = pcm->descent;
24781 lbearing = pcm->lbearing;
24782 rbearing = pcm->rbearing;
24783 if (cmp->method != COMPOSITION_WITH_RULE_ALTCHARS)
24785 /* Relative composition with or without
24786 alternate chars. */
24787 left = (leftmost + rightmost - width) / 2;
24788 btm = - descent + boff;
24789 if (font->relative_compose
24790 && (! CHAR_TABLE_P (Vignore_relative_composition)
24791 || NILP (Faref (Vignore_relative_composition,
24792 make_number (ch)))))
24795 if (- descent >= font->relative_compose)
24796 /* One extra pixel between two glyphs. */
24797 btm = highest + 1;
24798 else if (ascent <= 0)
24799 /* One extra pixel between two glyphs. */
24800 btm = lowest - 1 - ascent - descent;
24803 else
24805 /* A composition rule is specified by an integer
24806 value that encodes global and new reference
24807 points (GREF and NREF). GREF and NREF are
24808 specified by numbers as below:
24810 0---1---2 -- ascent
24814 9--10--11 -- center
24816 ---3---4---5--- baseline
24818 6---7---8 -- descent
24820 int rule = COMPOSITION_RULE (cmp, i);
24821 int gref, nref, grefx, grefy, nrefx, nrefy, xoff, yoff;
24823 COMPOSITION_DECODE_RULE (rule, gref, nref, xoff, yoff);
24824 grefx = gref % 3, nrefx = nref % 3;
24825 grefy = gref / 3, nrefy = nref / 3;
24826 if (xoff)
24827 xoff = font_height * (xoff - 128) / 256;
24828 if (yoff)
24829 yoff = font_height * (yoff - 128) / 256;
24831 left = (leftmost
24832 + grefx * (rightmost - leftmost) / 2
24833 - nrefx * width / 2
24834 + xoff);
24836 btm = ((grefy == 0 ? highest
24837 : grefy == 1 ? 0
24838 : grefy == 2 ? lowest
24839 : (highest + lowest) / 2)
24840 - (nrefy == 0 ? ascent + descent
24841 : nrefy == 1 ? descent - boff
24842 : nrefy == 2 ? 0
24843 : (ascent + descent) / 2)
24844 + yoff);
24847 cmp->offsets[i * 2] = left;
24848 cmp->offsets[i * 2 + 1] = btm + descent;
24850 /* Update the bounding box of the overall glyphs. */
24851 if (width > 0)
24853 right = left + width;
24854 if (left < leftmost)
24855 leftmost = left;
24856 if (right > rightmost)
24857 rightmost = right;
24859 top = btm + descent + ascent;
24860 if (top > highest)
24861 highest = top;
24862 if (btm < lowest)
24863 lowest = btm;
24865 if (cmp->lbearing > left + lbearing)
24866 cmp->lbearing = left + lbearing;
24867 if (cmp->rbearing < left + rbearing)
24868 cmp->rbearing = left + rbearing;
24872 /* If there are glyphs whose x-offsets are negative,
24873 shift all glyphs to the right and make all x-offsets
24874 non-negative. */
24875 if (leftmost < 0)
24877 for (i = 0; i < cmp->glyph_len; i++)
24878 cmp->offsets[i * 2] -= leftmost;
24879 rightmost -= leftmost;
24880 cmp->lbearing -= leftmost;
24881 cmp->rbearing -= leftmost;
24884 if (left_padded && cmp->lbearing < 0)
24886 for (i = 0; i < cmp->glyph_len; i++)
24887 cmp->offsets[i * 2] -= cmp->lbearing;
24888 rightmost -= cmp->lbearing;
24889 cmp->rbearing -= cmp->lbearing;
24890 cmp->lbearing = 0;
24892 if (right_padded && rightmost < cmp->rbearing)
24894 rightmost = cmp->rbearing;
24897 cmp->pixel_width = rightmost;
24898 cmp->ascent = highest;
24899 cmp->descent = - lowest;
24900 if (cmp->ascent < font_ascent)
24901 cmp->ascent = font_ascent;
24902 if (cmp->descent < font_descent)
24903 cmp->descent = font_descent;
24906 if (it->glyph_row
24907 && (cmp->lbearing < 0
24908 || cmp->rbearing > cmp->pixel_width))
24909 it->glyph_row->contains_overlapping_glyphs_p = 1;
24911 it->pixel_width = cmp->pixel_width;
24912 it->ascent = it->phys_ascent = cmp->ascent;
24913 it->descent = it->phys_descent = cmp->descent;
24914 if (face->box != FACE_NO_BOX)
24916 int thick = face->box_line_width;
24918 if (thick > 0)
24920 it->ascent += thick;
24921 it->descent += thick;
24923 else
24924 thick = - thick;
24926 if (it->start_of_box_run_p)
24927 it->pixel_width += thick;
24928 if (it->end_of_box_run_p)
24929 it->pixel_width += thick;
24932 /* If face has an overline, add the height of the overline
24933 (1 pixel) and a 1 pixel margin to the character height. */
24934 if (face->overline_p)
24935 it->ascent += overline_margin;
24937 take_vertical_position_into_account (it);
24938 if (it->ascent < 0)
24939 it->ascent = 0;
24940 if (it->descent < 0)
24941 it->descent = 0;
24943 if (it->glyph_row && cmp->glyph_len > 0)
24944 append_composite_glyph (it);
24946 else if (it->what == IT_COMPOSITION)
24948 /* A dynamic (automatic) composition. */
24949 struct face *face = FACE_FROM_ID (it->f, it->face_id);
24950 Lisp_Object gstring;
24951 struct font_metrics metrics;
24953 it->nglyphs = 1;
24955 gstring = composition_gstring_from_id (it->cmp_it.id);
24956 it->pixel_width
24957 = composition_gstring_width (gstring, it->cmp_it.from, it->cmp_it.to,
24958 &metrics);
24959 if (it->glyph_row
24960 && (metrics.lbearing < 0 || metrics.rbearing > metrics.width))
24961 it->glyph_row->contains_overlapping_glyphs_p = 1;
24962 it->ascent = it->phys_ascent = metrics.ascent;
24963 it->descent = it->phys_descent = metrics.descent;
24964 if (face->box != FACE_NO_BOX)
24966 int thick = face->box_line_width;
24968 if (thick > 0)
24970 it->ascent += thick;
24971 it->descent += thick;
24973 else
24974 thick = - thick;
24976 if (it->start_of_box_run_p)
24977 it->pixel_width += thick;
24978 if (it->end_of_box_run_p)
24979 it->pixel_width += thick;
24981 /* If face has an overline, add the height of the overline
24982 (1 pixel) and a 1 pixel margin to the character height. */
24983 if (face->overline_p)
24984 it->ascent += overline_margin;
24985 take_vertical_position_into_account (it);
24986 if (it->ascent < 0)
24987 it->ascent = 0;
24988 if (it->descent < 0)
24989 it->descent = 0;
24991 if (it->glyph_row)
24992 append_composite_glyph (it);
24994 else if (it->what == IT_GLYPHLESS)
24995 produce_glyphless_glyph (it, 0, Qnil);
24996 else if (it->what == IT_IMAGE)
24997 produce_image_glyph (it);
24998 else if (it->what == IT_STRETCH)
24999 produce_stretch_glyph (it);
25001 done:
25002 /* Accumulate dimensions. Note: can't assume that it->descent > 0
25003 because this isn't true for images with `:ascent 100'. */
25004 xassert (it->ascent >= 0 && it->descent >= 0);
25005 if (it->area == TEXT_AREA)
25006 it->current_x += it->pixel_width;
25008 if (extra_line_spacing > 0)
25010 it->descent += extra_line_spacing;
25011 if (extra_line_spacing > it->max_extra_line_spacing)
25012 it->max_extra_line_spacing = extra_line_spacing;
25015 it->max_ascent = max (it->max_ascent, it->ascent);
25016 it->max_descent = max (it->max_descent, it->descent);
25017 it->max_phys_ascent = max (it->max_phys_ascent, it->phys_ascent);
25018 it->max_phys_descent = max (it->max_phys_descent, it->phys_descent);
25021 /* EXPORT for RIF:
25022 Output LEN glyphs starting at START at the nominal cursor position.
25023 Advance the nominal cursor over the text. The global variable
25024 updated_window contains the window being updated, updated_row is
25025 the glyph row being updated, and updated_area is the area of that
25026 row being updated. */
25028 void
25029 x_write_glyphs (struct glyph *start, int len)
25031 int x, hpos, chpos = updated_window->phys_cursor.hpos;
25033 xassert (updated_window && updated_row);
25034 /* When the window is hscrolled, cursor hpos can legitimately be out
25035 of bounds, but we draw the cursor at the corresponding window
25036 margin in that case. */
25037 if (!updated_row->reversed_p && chpos < 0)
25038 chpos = 0;
25039 if (updated_row->reversed_p && chpos >= updated_row->used[TEXT_AREA])
25040 chpos = updated_row->used[TEXT_AREA] - 1;
25042 BLOCK_INPUT;
25044 /* Write glyphs. */
25046 hpos = start - updated_row->glyphs[updated_area];
25047 x = draw_glyphs (updated_window, output_cursor.x,
25048 updated_row, updated_area,
25049 hpos, hpos + len,
25050 DRAW_NORMAL_TEXT, 0);
25052 /* Invalidate old phys cursor if the glyph at its hpos is redrawn. */
25053 if (updated_area == TEXT_AREA
25054 && updated_window->phys_cursor_on_p
25055 && updated_window->phys_cursor.vpos == output_cursor.vpos
25056 && chpos >= hpos
25057 && chpos < hpos + len)
25058 updated_window->phys_cursor_on_p = 0;
25060 UNBLOCK_INPUT;
25062 /* Advance the output cursor. */
25063 output_cursor.hpos += len;
25064 output_cursor.x = x;
25068 /* EXPORT for RIF:
25069 Insert LEN glyphs from START at the nominal cursor position. */
25071 void
25072 x_insert_glyphs (struct glyph *start, int len)
25074 struct frame *f;
25075 struct window *w;
25076 int line_height, shift_by_width, shifted_region_width;
25077 struct glyph_row *row;
25078 struct glyph *glyph;
25079 int frame_x, frame_y;
25080 ptrdiff_t hpos;
25082 xassert (updated_window && updated_row);
25083 BLOCK_INPUT;
25084 w = updated_window;
25085 f = XFRAME (WINDOW_FRAME (w));
25087 /* Get the height of the line we are in. */
25088 row = updated_row;
25089 line_height = row->height;
25091 /* Get the width of the glyphs to insert. */
25092 shift_by_width = 0;
25093 for (glyph = start; glyph < start + len; ++glyph)
25094 shift_by_width += glyph->pixel_width;
25096 /* Get the width of the region to shift right. */
25097 shifted_region_width = (window_box_width (w, updated_area)
25098 - output_cursor.x
25099 - shift_by_width);
25101 /* Shift right. */
25102 frame_x = window_box_left (w, updated_area) + output_cursor.x;
25103 frame_y = WINDOW_TO_FRAME_PIXEL_Y (w, output_cursor.y);
25105 FRAME_RIF (f)->shift_glyphs_for_insert (f, frame_x, frame_y, shifted_region_width,
25106 line_height, shift_by_width);
25108 /* Write the glyphs. */
25109 hpos = start - row->glyphs[updated_area];
25110 draw_glyphs (w, output_cursor.x, row, updated_area,
25111 hpos, hpos + len,
25112 DRAW_NORMAL_TEXT, 0);
25114 /* Advance the output cursor. */
25115 output_cursor.hpos += len;
25116 output_cursor.x += shift_by_width;
25117 UNBLOCK_INPUT;
25121 /* EXPORT for RIF:
25122 Erase the current text line from the nominal cursor position
25123 (inclusive) to pixel column TO_X (exclusive). The idea is that
25124 everything from TO_X onward is already erased.
25126 TO_X is a pixel position relative to updated_area of
25127 updated_window. TO_X == -1 means clear to the end of this area. */
25129 void
25130 x_clear_end_of_line (int to_x)
25132 struct frame *f;
25133 struct window *w = updated_window;
25134 int max_x, min_y, max_y;
25135 int from_x, from_y, to_y;
25137 xassert (updated_window && updated_row);
25138 f = XFRAME (w->frame);
25140 if (updated_row->full_width_p)
25141 max_x = WINDOW_TOTAL_WIDTH (w);
25142 else
25143 max_x = window_box_width (w, updated_area);
25144 max_y = window_text_bottom_y (w);
25146 /* TO_X == 0 means don't do anything. TO_X < 0 means clear to end
25147 of window. For TO_X > 0, truncate to end of drawing area. */
25148 if (to_x == 0)
25149 return;
25150 else if (to_x < 0)
25151 to_x = max_x;
25152 else
25153 to_x = min (to_x, max_x);
25155 to_y = min (max_y, output_cursor.y + updated_row->height);
25157 /* Notice if the cursor will be cleared by this operation. */
25158 if (!updated_row->full_width_p)
25159 notice_overwritten_cursor (w, updated_area,
25160 output_cursor.x, -1,
25161 updated_row->y,
25162 MATRIX_ROW_BOTTOM_Y (updated_row));
25164 from_x = output_cursor.x;
25166 /* Translate to frame coordinates. */
25167 if (updated_row->full_width_p)
25169 from_x = WINDOW_TO_FRAME_PIXEL_X (w, from_x);
25170 to_x = WINDOW_TO_FRAME_PIXEL_X (w, to_x);
25172 else
25174 int area_left = window_box_left (w, updated_area);
25175 from_x += area_left;
25176 to_x += area_left;
25179 min_y = WINDOW_HEADER_LINE_HEIGHT (w);
25180 from_y = WINDOW_TO_FRAME_PIXEL_Y (w, max (min_y, output_cursor.y));
25181 to_y = WINDOW_TO_FRAME_PIXEL_Y (w, to_y);
25183 /* Prevent inadvertently clearing to end of the X window. */
25184 if (to_x > from_x && to_y > from_y)
25186 BLOCK_INPUT;
25187 FRAME_RIF (f)->clear_frame_area (f, from_x, from_y,
25188 to_x - from_x, to_y - from_y);
25189 UNBLOCK_INPUT;
25193 #endif /* HAVE_WINDOW_SYSTEM */
25197 /***********************************************************************
25198 Cursor types
25199 ***********************************************************************/
25201 /* Value is the internal representation of the specified cursor type
25202 ARG. If type is BAR_CURSOR, return in *WIDTH the specified width
25203 of the bar cursor. */
25205 static enum text_cursor_kinds
25206 get_specified_cursor_type (Lisp_Object arg, int *width)
25208 enum text_cursor_kinds type;
25210 if (NILP (arg))
25211 return NO_CURSOR;
25213 if (EQ (arg, Qbox))
25214 return FILLED_BOX_CURSOR;
25216 if (EQ (arg, Qhollow))
25217 return HOLLOW_BOX_CURSOR;
25219 if (EQ (arg, Qbar))
25221 *width = 2;
25222 return BAR_CURSOR;
25225 if (CONSP (arg)
25226 && EQ (XCAR (arg), Qbar)
25227 && RANGED_INTEGERP (0, XCDR (arg), INT_MAX))
25229 *width = XINT (XCDR (arg));
25230 return BAR_CURSOR;
25233 if (EQ (arg, Qhbar))
25235 *width = 2;
25236 return HBAR_CURSOR;
25239 if (CONSP (arg)
25240 && EQ (XCAR (arg), Qhbar)
25241 && RANGED_INTEGERP (0, XCDR (arg), INT_MAX))
25243 *width = XINT (XCDR (arg));
25244 return HBAR_CURSOR;
25247 /* Treat anything unknown as "hollow box cursor".
25248 It was bad to signal an error; people have trouble fixing
25249 .Xdefaults with Emacs, when it has something bad in it. */
25250 type = HOLLOW_BOX_CURSOR;
25252 return type;
25255 /* Set the default cursor types for specified frame. */
25256 void
25257 set_frame_cursor_types (struct frame *f, Lisp_Object arg)
25259 int width = 1;
25260 Lisp_Object tem;
25262 FRAME_DESIRED_CURSOR (f) = get_specified_cursor_type (arg, &width);
25263 FRAME_CURSOR_WIDTH (f) = width;
25265 /* By default, set up the blink-off state depending on the on-state. */
25267 tem = Fassoc (arg, Vblink_cursor_alist);
25268 if (!NILP (tem))
25270 FRAME_BLINK_OFF_CURSOR (f)
25271 = get_specified_cursor_type (XCDR (tem), &width);
25272 FRAME_BLINK_OFF_CURSOR_WIDTH (f) = width;
25274 else
25275 FRAME_BLINK_OFF_CURSOR (f) = DEFAULT_CURSOR;
25279 #ifdef HAVE_WINDOW_SYSTEM
25281 /* Return the cursor we want to be displayed in window W. Return
25282 width of bar/hbar cursor through WIDTH arg. Return with
25283 ACTIVE_CURSOR arg set to 1 if cursor in window W is `active'
25284 (i.e. if the `system caret' should track this cursor).
25286 In a mini-buffer window, we want the cursor only to appear if we
25287 are reading input from this window. For the selected window, we
25288 want the cursor type given by the frame parameter or buffer local
25289 setting of cursor-type. If explicitly marked off, draw no cursor.
25290 In all other cases, we want a hollow box cursor. */
25292 static enum text_cursor_kinds
25293 get_window_cursor_type (struct window *w, struct glyph *glyph, int *width,
25294 int *active_cursor)
25296 struct frame *f = XFRAME (w->frame);
25297 struct buffer *b = XBUFFER (w->buffer);
25298 int cursor_type = DEFAULT_CURSOR;
25299 Lisp_Object alt_cursor;
25300 int non_selected = 0;
25302 *active_cursor = 1;
25304 /* Echo area */
25305 if (cursor_in_echo_area
25306 && FRAME_HAS_MINIBUF_P (f)
25307 && EQ (FRAME_MINIBUF_WINDOW (f), echo_area_window))
25309 if (w == XWINDOW (echo_area_window))
25311 if (EQ (BVAR (b, cursor_type), Qt) || NILP (BVAR (b, cursor_type)))
25313 *width = FRAME_CURSOR_WIDTH (f);
25314 return FRAME_DESIRED_CURSOR (f);
25316 else
25317 return get_specified_cursor_type (BVAR (b, cursor_type), width);
25320 *active_cursor = 0;
25321 non_selected = 1;
25324 /* Detect a nonselected window or nonselected frame. */
25325 else if (w != XWINDOW (f->selected_window)
25326 || f != FRAME_X_DISPLAY_INFO (f)->x_highlight_frame)
25328 *active_cursor = 0;
25330 if (MINI_WINDOW_P (w) && minibuf_level == 0)
25331 return NO_CURSOR;
25333 non_selected = 1;
25336 /* Never display a cursor in a window in which cursor-type is nil. */
25337 if (NILP (BVAR (b, cursor_type)))
25338 return NO_CURSOR;
25340 /* Get the normal cursor type for this window. */
25341 if (EQ (BVAR (b, cursor_type), Qt))
25343 cursor_type = FRAME_DESIRED_CURSOR (f);
25344 *width = FRAME_CURSOR_WIDTH (f);
25346 else
25347 cursor_type = get_specified_cursor_type (BVAR (b, cursor_type), width);
25349 /* Use cursor-in-non-selected-windows instead
25350 for non-selected window or frame. */
25351 if (non_selected)
25353 alt_cursor = BVAR (b, cursor_in_non_selected_windows);
25354 if (!EQ (Qt, alt_cursor))
25355 return get_specified_cursor_type (alt_cursor, width);
25356 /* t means modify the normal cursor type. */
25357 if (cursor_type == FILLED_BOX_CURSOR)
25358 cursor_type = HOLLOW_BOX_CURSOR;
25359 else if (cursor_type == BAR_CURSOR && *width > 1)
25360 --*width;
25361 return cursor_type;
25364 /* Use normal cursor if not blinked off. */
25365 if (!w->cursor_off_p)
25367 if (glyph != NULL && glyph->type == IMAGE_GLYPH)
25369 if (cursor_type == FILLED_BOX_CURSOR)
25371 /* Using a block cursor on large images can be very annoying.
25372 So use a hollow cursor for "large" images.
25373 If image is not transparent (no mask), also use hollow cursor. */
25374 struct image *img = IMAGE_FROM_ID (f, glyph->u.img_id);
25375 if (img != NULL && IMAGEP (img->spec))
25377 /* Arbitrarily, interpret "Large" as >32x32 and >NxN
25378 where N = size of default frame font size.
25379 This should cover most of the "tiny" icons people may use. */
25380 if (!img->mask
25381 || img->width > max (32, WINDOW_FRAME_COLUMN_WIDTH (w))
25382 || img->height > max (32, WINDOW_FRAME_LINE_HEIGHT (w)))
25383 cursor_type = HOLLOW_BOX_CURSOR;
25386 else if (cursor_type != NO_CURSOR)
25388 /* Display current only supports BOX and HOLLOW cursors for images.
25389 So for now, unconditionally use a HOLLOW cursor when cursor is
25390 not a solid box cursor. */
25391 cursor_type = HOLLOW_BOX_CURSOR;
25394 return cursor_type;
25397 /* Cursor is blinked off, so determine how to "toggle" it. */
25399 /* First look for an entry matching the buffer's cursor-type in blink-cursor-alist. */
25400 if ((alt_cursor = Fassoc (BVAR (b, cursor_type), Vblink_cursor_alist), !NILP (alt_cursor)))
25401 return get_specified_cursor_type (XCDR (alt_cursor), width);
25403 /* Then see if frame has specified a specific blink off cursor type. */
25404 if (FRAME_BLINK_OFF_CURSOR (f) != DEFAULT_CURSOR)
25406 *width = FRAME_BLINK_OFF_CURSOR_WIDTH (f);
25407 return FRAME_BLINK_OFF_CURSOR (f);
25410 #if 0
25411 /* Some people liked having a permanently visible blinking cursor,
25412 while others had very strong opinions against it. So it was
25413 decided to remove it. KFS 2003-09-03 */
25415 /* Finally perform built-in cursor blinking:
25416 filled box <-> hollow box
25417 wide [h]bar <-> narrow [h]bar
25418 narrow [h]bar <-> no cursor
25419 other type <-> no cursor */
25421 if (cursor_type == FILLED_BOX_CURSOR)
25422 return HOLLOW_BOX_CURSOR;
25424 if ((cursor_type == BAR_CURSOR || cursor_type == HBAR_CURSOR) && *width > 1)
25426 *width = 1;
25427 return cursor_type;
25429 #endif
25431 return NO_CURSOR;
25435 /* Notice when the text cursor of window W has been completely
25436 overwritten by a drawing operation that outputs glyphs in AREA
25437 starting at X0 and ending at X1 in the line starting at Y0 and
25438 ending at Y1. X coordinates are area-relative. X1 < 0 means all
25439 the rest of the line after X0 has been written. Y coordinates
25440 are window-relative. */
25442 static void
25443 notice_overwritten_cursor (struct window *w, enum glyph_row_area area,
25444 int x0, int x1, int y0, int y1)
25446 int cx0, cx1, cy0, cy1;
25447 struct glyph_row *row;
25449 if (!w->phys_cursor_on_p)
25450 return;
25451 if (area != TEXT_AREA)
25452 return;
25454 if (w->phys_cursor.vpos < 0
25455 || w->phys_cursor.vpos >= w->current_matrix->nrows
25456 || (row = w->current_matrix->rows + w->phys_cursor.vpos,
25457 !(row->enabled_p && row->displays_text_p)))
25458 return;
25460 if (row->cursor_in_fringe_p)
25462 row->cursor_in_fringe_p = 0;
25463 draw_fringe_bitmap (w, row, row->reversed_p);
25464 w->phys_cursor_on_p = 0;
25465 return;
25468 cx0 = w->phys_cursor.x;
25469 cx1 = cx0 + w->phys_cursor_width;
25470 if (x0 > cx0 || (x1 >= 0 && x1 < cx1))
25471 return;
25473 /* The cursor image will be completely removed from the
25474 screen if the output area intersects the cursor area in
25475 y-direction. When we draw in [y0 y1[, and some part of
25476 the cursor is at y < y0, that part must have been drawn
25477 before. When scrolling, the cursor is erased before
25478 actually scrolling, so we don't come here. When not
25479 scrolling, the rows above the old cursor row must have
25480 changed, and in this case these rows must have written
25481 over the cursor image.
25483 Likewise if part of the cursor is below y1, with the
25484 exception of the cursor being in the first blank row at
25485 the buffer and window end because update_text_area
25486 doesn't draw that row. (Except when it does, but
25487 that's handled in update_text_area.) */
25489 cy0 = w->phys_cursor.y;
25490 cy1 = cy0 + w->phys_cursor_height;
25491 if ((y0 < cy0 || y0 >= cy1) && (y1 <= cy0 || y1 >= cy1))
25492 return;
25494 w->phys_cursor_on_p = 0;
25497 #endif /* HAVE_WINDOW_SYSTEM */
25500 /************************************************************************
25501 Mouse Face
25502 ************************************************************************/
25504 #ifdef HAVE_WINDOW_SYSTEM
25506 /* EXPORT for RIF:
25507 Fix the display of area AREA of overlapping row ROW in window W
25508 with respect to the overlapping part OVERLAPS. */
25510 void
25511 x_fix_overlapping_area (struct window *w, struct glyph_row *row,
25512 enum glyph_row_area area, int overlaps)
25514 int i, x;
25516 BLOCK_INPUT;
25518 x = 0;
25519 for (i = 0; i < row->used[area];)
25521 if (row->glyphs[area][i].overlaps_vertically_p)
25523 int start = i, start_x = x;
25527 x += row->glyphs[area][i].pixel_width;
25528 ++i;
25530 while (i < row->used[area]
25531 && row->glyphs[area][i].overlaps_vertically_p);
25533 draw_glyphs (w, start_x, row, area,
25534 start, i,
25535 DRAW_NORMAL_TEXT, overlaps);
25537 else
25539 x += row->glyphs[area][i].pixel_width;
25540 ++i;
25544 UNBLOCK_INPUT;
25548 /* EXPORT:
25549 Draw the cursor glyph of window W in glyph row ROW. See the
25550 comment of draw_glyphs for the meaning of HL. */
25552 void
25553 draw_phys_cursor_glyph (struct window *w, struct glyph_row *row,
25554 enum draw_glyphs_face hl)
25556 /* If cursor hpos is out of bounds, don't draw garbage. This can
25557 happen in mini-buffer windows when switching between echo area
25558 glyphs and mini-buffer. */
25559 if ((row->reversed_p
25560 ? (w->phys_cursor.hpos >= 0)
25561 : (w->phys_cursor.hpos < row->used[TEXT_AREA])))
25563 int on_p = w->phys_cursor_on_p;
25564 int x1;
25565 int hpos = w->phys_cursor.hpos;
25567 /* When the window is hscrolled, cursor hpos can legitimately be
25568 out of bounds, but we draw the cursor at the corresponding
25569 window margin in that case. */
25570 if (!row->reversed_p && hpos < 0)
25571 hpos = 0;
25572 if (row->reversed_p && hpos >= row->used[TEXT_AREA])
25573 hpos = row->used[TEXT_AREA] - 1;
25575 x1 = draw_glyphs (w, w->phys_cursor.x, row, TEXT_AREA, hpos, hpos + 1,
25576 hl, 0);
25577 w->phys_cursor_on_p = on_p;
25579 if (hl == DRAW_CURSOR)
25580 w->phys_cursor_width = x1 - w->phys_cursor.x;
25581 /* When we erase the cursor, and ROW is overlapped by other
25582 rows, make sure that these overlapping parts of other rows
25583 are redrawn. */
25584 else if (hl == DRAW_NORMAL_TEXT && row->overlapped_p)
25586 w->phys_cursor_width = x1 - w->phys_cursor.x;
25588 if (row > w->current_matrix->rows
25589 && MATRIX_ROW_OVERLAPS_SUCC_P (row - 1))
25590 x_fix_overlapping_area (w, row - 1, TEXT_AREA,
25591 OVERLAPS_ERASED_CURSOR);
25593 if (MATRIX_ROW_BOTTOM_Y (row) < window_text_bottom_y (w)
25594 && MATRIX_ROW_OVERLAPS_PRED_P (row + 1))
25595 x_fix_overlapping_area (w, row + 1, TEXT_AREA,
25596 OVERLAPS_ERASED_CURSOR);
25602 /* EXPORT:
25603 Erase the image of a cursor of window W from the screen. */
25605 void
25606 erase_phys_cursor (struct window *w)
25608 struct frame *f = XFRAME (w->frame);
25609 Mouse_HLInfo *hlinfo = MOUSE_HL_INFO (f);
25610 int hpos = w->phys_cursor.hpos;
25611 int vpos = w->phys_cursor.vpos;
25612 int mouse_face_here_p = 0;
25613 struct glyph_matrix *active_glyphs = w->current_matrix;
25614 struct glyph_row *cursor_row;
25615 struct glyph *cursor_glyph;
25616 enum draw_glyphs_face hl;
25618 /* No cursor displayed or row invalidated => nothing to do on the
25619 screen. */
25620 if (w->phys_cursor_type == NO_CURSOR)
25621 goto mark_cursor_off;
25623 /* VPOS >= active_glyphs->nrows means that window has been resized.
25624 Don't bother to erase the cursor. */
25625 if (vpos >= active_glyphs->nrows)
25626 goto mark_cursor_off;
25628 /* If row containing cursor is marked invalid, there is nothing we
25629 can do. */
25630 cursor_row = MATRIX_ROW (active_glyphs, vpos);
25631 if (!cursor_row->enabled_p)
25632 goto mark_cursor_off;
25634 /* If line spacing is > 0, old cursor may only be partially visible in
25635 window after split-window. So adjust visible height. */
25636 cursor_row->visible_height = min (cursor_row->visible_height,
25637 window_text_bottom_y (w) - cursor_row->y);
25639 /* If row is completely invisible, don't attempt to delete a cursor which
25640 isn't there. This can happen if cursor is at top of a window, and
25641 we switch to a buffer with a header line in that window. */
25642 if (cursor_row->visible_height <= 0)
25643 goto mark_cursor_off;
25645 /* If cursor is in the fringe, erase by drawing actual bitmap there. */
25646 if (cursor_row->cursor_in_fringe_p)
25648 cursor_row->cursor_in_fringe_p = 0;
25649 draw_fringe_bitmap (w, cursor_row, cursor_row->reversed_p);
25650 goto mark_cursor_off;
25653 /* This can happen when the new row is shorter than the old one.
25654 In this case, either draw_glyphs or clear_end_of_line
25655 should have cleared the cursor. Note that we wouldn't be
25656 able to erase the cursor in this case because we don't have a
25657 cursor glyph at hand. */
25658 if ((cursor_row->reversed_p
25659 ? (w->phys_cursor.hpos < 0)
25660 : (w->phys_cursor.hpos >= cursor_row->used[TEXT_AREA])))
25661 goto mark_cursor_off;
25663 /* When the window is hscrolled, cursor hpos can legitimately be out
25664 of bounds, but we draw the cursor at the corresponding window
25665 margin in that case. */
25666 if (!cursor_row->reversed_p && hpos < 0)
25667 hpos = 0;
25668 if (cursor_row->reversed_p && hpos >= cursor_row->used[TEXT_AREA])
25669 hpos = cursor_row->used[TEXT_AREA] - 1;
25671 /* If the cursor is in the mouse face area, redisplay that when
25672 we clear the cursor. */
25673 if (! NILP (hlinfo->mouse_face_window)
25674 && coords_in_mouse_face_p (w, hpos, vpos)
25675 /* Don't redraw the cursor's spot in mouse face if it is at the
25676 end of a line (on a newline). The cursor appears there, but
25677 mouse highlighting does not. */
25678 && cursor_row->used[TEXT_AREA] > hpos && hpos >= 0)
25679 mouse_face_here_p = 1;
25681 /* Maybe clear the display under the cursor. */
25682 if (w->phys_cursor_type == HOLLOW_BOX_CURSOR)
25684 int x, y, left_x;
25685 int header_line_height = WINDOW_HEADER_LINE_HEIGHT (w);
25686 int width;
25688 cursor_glyph = get_phys_cursor_glyph (w);
25689 if (cursor_glyph == NULL)
25690 goto mark_cursor_off;
25692 width = cursor_glyph->pixel_width;
25693 left_x = window_box_left_offset (w, TEXT_AREA);
25694 x = w->phys_cursor.x;
25695 if (x < left_x)
25696 width -= left_x - x;
25697 width = min (width, window_box_width (w, TEXT_AREA) - x);
25698 y = WINDOW_TO_FRAME_PIXEL_Y (w, max (header_line_height, cursor_row->y));
25699 x = WINDOW_TEXT_TO_FRAME_PIXEL_X (w, max (x, left_x));
25701 if (width > 0)
25702 FRAME_RIF (f)->clear_frame_area (f, x, y, width, cursor_row->visible_height);
25705 /* Erase the cursor by redrawing the character underneath it. */
25706 if (mouse_face_here_p)
25707 hl = DRAW_MOUSE_FACE;
25708 else
25709 hl = DRAW_NORMAL_TEXT;
25710 draw_phys_cursor_glyph (w, cursor_row, hl);
25712 mark_cursor_off:
25713 w->phys_cursor_on_p = 0;
25714 w->phys_cursor_type = NO_CURSOR;
25718 /* EXPORT:
25719 Display or clear cursor of window W. If ON is zero, clear the
25720 cursor. If it is non-zero, display the cursor. If ON is nonzero,
25721 where to put the cursor is specified by HPOS, VPOS, X and Y. */
25723 void
25724 display_and_set_cursor (struct window *w, int on,
25725 int hpos, int vpos, int x, int y)
25727 struct frame *f = XFRAME (w->frame);
25728 int new_cursor_type;
25729 int new_cursor_width;
25730 int active_cursor;
25731 struct glyph_row *glyph_row;
25732 struct glyph *glyph;
25734 /* This is pointless on invisible frames, and dangerous on garbaged
25735 windows and frames; in the latter case, the frame or window may
25736 be in the midst of changing its size, and x and y may be off the
25737 window. */
25738 if (! FRAME_VISIBLE_P (f)
25739 || FRAME_GARBAGED_P (f)
25740 || vpos >= w->current_matrix->nrows
25741 || hpos >= w->current_matrix->matrix_w)
25742 return;
25744 /* If cursor is off and we want it off, return quickly. */
25745 if (!on && !w->phys_cursor_on_p)
25746 return;
25748 glyph_row = MATRIX_ROW (w->current_matrix, vpos);
25749 /* If cursor row is not enabled, we don't really know where to
25750 display the cursor. */
25751 if (!glyph_row->enabled_p)
25753 w->phys_cursor_on_p = 0;
25754 return;
25757 glyph = NULL;
25758 if (!glyph_row->exact_window_width_line_p
25759 || (0 <= hpos && hpos < glyph_row->used[TEXT_AREA]))
25760 glyph = glyph_row->glyphs[TEXT_AREA] + hpos;
25762 xassert (interrupt_input_blocked);
25764 /* Set new_cursor_type to the cursor we want to be displayed. */
25765 new_cursor_type = get_window_cursor_type (w, glyph,
25766 &new_cursor_width, &active_cursor);
25768 /* If cursor is currently being shown and we don't want it to be or
25769 it is in the wrong place, or the cursor type is not what we want,
25770 erase it. */
25771 if (w->phys_cursor_on_p
25772 && (!on
25773 || w->phys_cursor.x != x
25774 || w->phys_cursor.y != y
25775 || new_cursor_type != w->phys_cursor_type
25776 || ((new_cursor_type == BAR_CURSOR || new_cursor_type == HBAR_CURSOR)
25777 && new_cursor_width != w->phys_cursor_width)))
25778 erase_phys_cursor (w);
25780 /* Don't check phys_cursor_on_p here because that flag is only set
25781 to zero in some cases where we know that the cursor has been
25782 completely erased, to avoid the extra work of erasing the cursor
25783 twice. In other words, phys_cursor_on_p can be 1 and the cursor
25784 still not be visible, or it has only been partly erased. */
25785 if (on)
25787 w->phys_cursor_ascent = glyph_row->ascent;
25788 w->phys_cursor_height = glyph_row->height;
25790 /* Set phys_cursor_.* before x_draw_.* is called because some
25791 of them may need the information. */
25792 w->phys_cursor.x = x;
25793 w->phys_cursor.y = glyph_row->y;
25794 w->phys_cursor.hpos = hpos;
25795 w->phys_cursor.vpos = vpos;
25798 FRAME_RIF (f)->draw_window_cursor (w, glyph_row, x, y,
25799 new_cursor_type, new_cursor_width,
25800 on, active_cursor);
25804 /* Switch the display of W's cursor on or off, according to the value
25805 of ON. */
25807 static void
25808 update_window_cursor (struct window *w, int on)
25810 /* Don't update cursor in windows whose frame is in the process
25811 of being deleted. */
25812 if (w->current_matrix)
25814 int hpos = w->phys_cursor.hpos;
25815 int vpos = w->phys_cursor.vpos;
25816 struct glyph_row *row;
25818 if (vpos >= w->current_matrix->nrows
25819 || hpos >= w->current_matrix->matrix_w)
25820 return;
25822 row = MATRIX_ROW (w->current_matrix, vpos);
25824 /* When the window is hscrolled, cursor hpos can legitimately be
25825 out of bounds, but we draw the cursor at the corresponding
25826 window margin in that case. */
25827 if (!row->reversed_p && hpos < 0)
25828 hpos = 0;
25829 if (row->reversed_p && hpos >= row->used[TEXT_AREA])
25830 hpos = row->used[TEXT_AREA] - 1;
25832 BLOCK_INPUT;
25833 display_and_set_cursor (w, on, hpos, vpos,
25834 w->phys_cursor.x, w->phys_cursor.y);
25835 UNBLOCK_INPUT;
25840 /* Call update_window_cursor with parameter ON_P on all leaf windows
25841 in the window tree rooted at W. */
25843 static void
25844 update_cursor_in_window_tree (struct window *w, int on_p)
25846 while (w)
25848 if (!NILP (w->hchild))
25849 update_cursor_in_window_tree (XWINDOW (w->hchild), on_p);
25850 else if (!NILP (w->vchild))
25851 update_cursor_in_window_tree (XWINDOW (w->vchild), on_p);
25852 else
25853 update_window_cursor (w, on_p);
25855 w = NILP (w->next) ? 0 : XWINDOW (w->next);
25860 /* EXPORT:
25861 Display the cursor on window W, or clear it, according to ON_P.
25862 Don't change the cursor's position. */
25864 void
25865 x_update_cursor (struct frame *f, int on_p)
25867 update_cursor_in_window_tree (XWINDOW (f->root_window), on_p);
25871 /* EXPORT:
25872 Clear the cursor of window W to background color, and mark the
25873 cursor as not shown. This is used when the text where the cursor
25874 is about to be rewritten. */
25876 void
25877 x_clear_cursor (struct window *w)
25879 if (FRAME_VISIBLE_P (XFRAME (w->frame)) && w->phys_cursor_on_p)
25880 update_window_cursor (w, 0);
25883 #endif /* HAVE_WINDOW_SYSTEM */
25885 /* Implementation of draw_row_with_mouse_face for GUI sessions, GPM,
25886 and MSDOS. */
25887 static void
25888 draw_row_with_mouse_face (struct window *w, int start_x, struct glyph_row *row,
25889 int start_hpos, int end_hpos,
25890 enum draw_glyphs_face draw)
25892 #ifdef HAVE_WINDOW_SYSTEM
25893 if (FRAME_WINDOW_P (XFRAME (w->frame)))
25895 draw_glyphs (w, start_x, row, TEXT_AREA, start_hpos, end_hpos, draw, 0);
25896 return;
25898 #endif
25899 #if defined (HAVE_GPM) || defined (MSDOS) || defined (WINDOWSNT)
25900 tty_draw_row_with_mouse_face (w, row, start_hpos, end_hpos, draw);
25901 #endif
25904 /* Display the active region described by mouse_face_* according to DRAW. */
25906 static void
25907 show_mouse_face (Mouse_HLInfo *hlinfo, enum draw_glyphs_face draw)
25909 struct window *w = XWINDOW (hlinfo->mouse_face_window);
25910 struct frame *f = XFRAME (WINDOW_FRAME (w));
25912 if (/* If window is in the process of being destroyed, don't bother
25913 to do anything. */
25914 w->current_matrix != NULL
25915 /* Don't update mouse highlight if hidden */
25916 && (draw != DRAW_MOUSE_FACE || !hlinfo->mouse_face_hidden)
25917 /* Recognize when we are called to operate on rows that don't exist
25918 anymore. This can happen when a window is split. */
25919 && hlinfo->mouse_face_end_row < w->current_matrix->nrows)
25921 int phys_cursor_on_p = w->phys_cursor_on_p;
25922 struct glyph_row *row, *first, *last;
25924 first = MATRIX_ROW (w->current_matrix, hlinfo->mouse_face_beg_row);
25925 last = MATRIX_ROW (w->current_matrix, hlinfo->mouse_face_end_row);
25927 for (row = first; row <= last && row->enabled_p; ++row)
25929 int start_hpos, end_hpos, start_x;
25931 /* For all but the first row, the highlight starts at column 0. */
25932 if (row == first)
25934 /* R2L rows have BEG and END in reversed order, but the
25935 screen drawing geometry is always left to right. So
25936 we need to mirror the beginning and end of the
25937 highlighted area in R2L rows. */
25938 if (!row->reversed_p)
25940 start_hpos = hlinfo->mouse_face_beg_col;
25941 start_x = hlinfo->mouse_face_beg_x;
25943 else if (row == last)
25945 start_hpos = hlinfo->mouse_face_end_col;
25946 start_x = hlinfo->mouse_face_end_x;
25948 else
25950 start_hpos = 0;
25951 start_x = 0;
25954 else if (row->reversed_p && row == last)
25956 start_hpos = hlinfo->mouse_face_end_col;
25957 start_x = hlinfo->mouse_face_end_x;
25959 else
25961 start_hpos = 0;
25962 start_x = 0;
25965 if (row == last)
25967 if (!row->reversed_p)
25968 end_hpos = hlinfo->mouse_face_end_col;
25969 else if (row == first)
25970 end_hpos = hlinfo->mouse_face_beg_col;
25971 else
25973 end_hpos = row->used[TEXT_AREA];
25974 if (draw == DRAW_NORMAL_TEXT)
25975 row->fill_line_p = 1; /* Clear to end of line */
25978 else if (row->reversed_p && row == first)
25979 end_hpos = hlinfo->mouse_face_beg_col;
25980 else
25982 end_hpos = row->used[TEXT_AREA];
25983 if (draw == DRAW_NORMAL_TEXT)
25984 row->fill_line_p = 1; /* Clear to end of line */
25987 if (end_hpos > start_hpos)
25989 draw_row_with_mouse_face (w, start_x, row,
25990 start_hpos, end_hpos, draw);
25992 row->mouse_face_p
25993 = draw == DRAW_MOUSE_FACE || draw == DRAW_IMAGE_RAISED;
25997 #ifdef HAVE_WINDOW_SYSTEM
25998 /* When we've written over the cursor, arrange for it to
25999 be displayed again. */
26000 if (FRAME_WINDOW_P (f)
26001 && phys_cursor_on_p && !w->phys_cursor_on_p)
26003 int hpos = w->phys_cursor.hpos;
26005 /* When the window is hscrolled, cursor hpos can legitimately be
26006 out of bounds, but we draw the cursor at the corresponding
26007 window margin in that case. */
26008 if (!row->reversed_p && hpos < 0)
26009 hpos = 0;
26010 if (row->reversed_p && hpos >= row->used[TEXT_AREA])
26011 hpos = row->used[TEXT_AREA] - 1;
26013 BLOCK_INPUT;
26014 display_and_set_cursor (w, 1, hpos, w->phys_cursor.vpos,
26015 w->phys_cursor.x, w->phys_cursor.y);
26016 UNBLOCK_INPUT;
26018 #endif /* HAVE_WINDOW_SYSTEM */
26021 #ifdef HAVE_WINDOW_SYSTEM
26022 /* Change the mouse cursor. */
26023 if (FRAME_WINDOW_P (f))
26025 if (draw == DRAW_NORMAL_TEXT
26026 && !EQ (hlinfo->mouse_face_window, f->tool_bar_window))
26027 FRAME_RIF (f)->define_frame_cursor (f, FRAME_X_OUTPUT (f)->text_cursor);
26028 else if (draw == DRAW_MOUSE_FACE)
26029 FRAME_RIF (f)->define_frame_cursor (f, FRAME_X_OUTPUT (f)->hand_cursor);
26030 else
26031 FRAME_RIF (f)->define_frame_cursor (f, FRAME_X_OUTPUT (f)->nontext_cursor);
26033 #endif /* HAVE_WINDOW_SYSTEM */
26036 /* EXPORT:
26037 Clear out the mouse-highlighted active region.
26038 Redraw it un-highlighted first. Value is non-zero if mouse
26039 face was actually drawn unhighlighted. */
26042 clear_mouse_face (Mouse_HLInfo *hlinfo)
26044 int cleared = 0;
26046 if (!hlinfo->mouse_face_hidden && !NILP (hlinfo->mouse_face_window))
26048 show_mouse_face (hlinfo, DRAW_NORMAL_TEXT);
26049 cleared = 1;
26052 hlinfo->mouse_face_beg_row = hlinfo->mouse_face_beg_col = -1;
26053 hlinfo->mouse_face_end_row = hlinfo->mouse_face_end_col = -1;
26054 hlinfo->mouse_face_window = Qnil;
26055 hlinfo->mouse_face_overlay = Qnil;
26056 return cleared;
26059 /* Return non-zero if the coordinates HPOS and VPOS on windows W are
26060 within the mouse face on that window. */
26061 static int
26062 coords_in_mouse_face_p (struct window *w, int hpos, int vpos)
26064 Mouse_HLInfo *hlinfo = MOUSE_HL_INFO (XFRAME (w->frame));
26066 /* Quickly resolve the easy cases. */
26067 if (!(WINDOWP (hlinfo->mouse_face_window)
26068 && XWINDOW (hlinfo->mouse_face_window) == w))
26069 return 0;
26070 if (vpos < hlinfo->mouse_face_beg_row
26071 || vpos > hlinfo->mouse_face_end_row)
26072 return 0;
26073 if (vpos > hlinfo->mouse_face_beg_row
26074 && vpos < hlinfo->mouse_face_end_row)
26075 return 1;
26077 if (!MATRIX_ROW (w->current_matrix, vpos)->reversed_p)
26079 if (hlinfo->mouse_face_beg_row == hlinfo->mouse_face_end_row)
26081 if (hlinfo->mouse_face_beg_col <= hpos && hpos < hlinfo->mouse_face_end_col)
26082 return 1;
26084 else if ((vpos == hlinfo->mouse_face_beg_row
26085 && hpos >= hlinfo->mouse_face_beg_col)
26086 || (vpos == hlinfo->mouse_face_end_row
26087 && hpos < hlinfo->mouse_face_end_col))
26088 return 1;
26090 else
26092 if (hlinfo->mouse_face_beg_row == hlinfo->mouse_face_end_row)
26094 if (hlinfo->mouse_face_end_col < hpos && hpos <= hlinfo->mouse_face_beg_col)
26095 return 1;
26097 else if ((vpos == hlinfo->mouse_face_beg_row
26098 && hpos <= hlinfo->mouse_face_beg_col)
26099 || (vpos == hlinfo->mouse_face_end_row
26100 && hpos > hlinfo->mouse_face_end_col))
26101 return 1;
26103 return 0;
26107 /* EXPORT:
26108 Non-zero if physical cursor of window W is within mouse face. */
26111 cursor_in_mouse_face_p (struct window *w)
26113 int hpos = w->phys_cursor.hpos;
26114 int vpos = w->phys_cursor.vpos;
26115 struct glyph_row *row = MATRIX_ROW (w->current_matrix, vpos);
26117 /* When the window is hscrolled, cursor hpos can legitimately be out
26118 of bounds, but we draw the cursor at the corresponding window
26119 margin in that case. */
26120 if (!row->reversed_p && hpos < 0)
26121 hpos = 0;
26122 if (row->reversed_p && hpos >= row->used[TEXT_AREA])
26123 hpos = row->used[TEXT_AREA] - 1;
26125 return coords_in_mouse_face_p (w, hpos, vpos);
26130 /* Find the glyph rows START_ROW and END_ROW of window W that display
26131 characters between buffer positions START_CHARPOS and END_CHARPOS
26132 (excluding END_CHARPOS). DISP_STRING is a display string that
26133 covers these buffer positions. This is similar to
26134 row_containing_pos, but is more accurate when bidi reordering makes
26135 buffer positions change non-linearly with glyph rows. */
26136 static void
26137 rows_from_pos_range (struct window *w,
26138 ptrdiff_t start_charpos, ptrdiff_t end_charpos,
26139 Lisp_Object disp_string,
26140 struct glyph_row **start, struct glyph_row **end)
26142 struct glyph_row *first = MATRIX_FIRST_TEXT_ROW (w->current_matrix);
26143 int last_y = window_text_bottom_y (w);
26144 struct glyph_row *row;
26146 *start = NULL;
26147 *end = NULL;
26149 while (!first->enabled_p
26150 && first < MATRIX_BOTTOM_TEXT_ROW (w->current_matrix, w))
26151 first++;
26153 /* Find the START row. */
26154 for (row = first;
26155 row->enabled_p && MATRIX_ROW_BOTTOM_Y (row) <= last_y;
26156 row++)
26158 /* A row can potentially be the START row if the range of the
26159 characters it displays intersects the range
26160 [START_CHARPOS..END_CHARPOS). */
26161 if (! ((start_charpos < MATRIX_ROW_START_CHARPOS (row)
26162 && end_charpos < MATRIX_ROW_START_CHARPOS (row))
26163 /* See the commentary in row_containing_pos, for the
26164 explanation of the complicated way to check whether
26165 some position is beyond the end of the characters
26166 displayed by a row. */
26167 || ((start_charpos > MATRIX_ROW_END_CHARPOS (row)
26168 || (start_charpos == MATRIX_ROW_END_CHARPOS (row)
26169 && !row->ends_at_zv_p
26170 && !MATRIX_ROW_ENDS_IN_MIDDLE_OF_CHAR_P (row)))
26171 && (end_charpos > MATRIX_ROW_END_CHARPOS (row)
26172 || (end_charpos == MATRIX_ROW_END_CHARPOS (row)
26173 && !row->ends_at_zv_p
26174 && !MATRIX_ROW_ENDS_IN_MIDDLE_OF_CHAR_P (row))))))
26176 /* Found a candidate row. Now make sure at least one of the
26177 glyphs it displays has a charpos from the range
26178 [START_CHARPOS..END_CHARPOS).
26180 This is not obvious because bidi reordering could make
26181 buffer positions of a row be 1,2,3,102,101,100, and if we
26182 want to highlight characters in [50..60), we don't want
26183 this row, even though [50..60) does intersect [1..103),
26184 the range of character positions given by the row's start
26185 and end positions. */
26186 struct glyph *g = row->glyphs[TEXT_AREA];
26187 struct glyph *e = g + row->used[TEXT_AREA];
26189 while (g < e)
26191 if (((BUFFERP (g->object) || INTEGERP (g->object))
26192 && start_charpos <= g->charpos && g->charpos < end_charpos)
26193 /* A glyph that comes from DISP_STRING is by
26194 definition to be highlighted. */
26195 || EQ (g->object, disp_string))
26196 *start = row;
26197 g++;
26199 if (*start)
26200 break;
26204 /* Find the END row. */
26205 if (!*start
26206 /* If the last row is partially visible, start looking for END
26207 from that row, instead of starting from FIRST. */
26208 && !(row->enabled_p
26209 && row->y < last_y && MATRIX_ROW_BOTTOM_Y (row) > last_y))
26210 row = first;
26211 for ( ; row->enabled_p && MATRIX_ROW_BOTTOM_Y (row) <= last_y; row++)
26213 struct glyph_row *next = row + 1;
26214 ptrdiff_t next_start = MATRIX_ROW_START_CHARPOS (next);
26216 if (!next->enabled_p
26217 || next >= MATRIX_BOTTOM_TEXT_ROW (w->current_matrix, w)
26218 /* The first row >= START whose range of displayed characters
26219 does NOT intersect the range [START_CHARPOS..END_CHARPOS]
26220 is the row END + 1. */
26221 || (start_charpos < next_start
26222 && end_charpos < next_start)
26223 || ((start_charpos > MATRIX_ROW_END_CHARPOS (next)
26224 || (start_charpos == MATRIX_ROW_END_CHARPOS (next)
26225 && !next->ends_at_zv_p
26226 && !MATRIX_ROW_ENDS_IN_MIDDLE_OF_CHAR_P (next)))
26227 && (end_charpos > MATRIX_ROW_END_CHARPOS (next)
26228 || (end_charpos == MATRIX_ROW_END_CHARPOS (next)
26229 && !next->ends_at_zv_p
26230 && !MATRIX_ROW_ENDS_IN_MIDDLE_OF_CHAR_P (next)))))
26232 *end = row;
26233 break;
26235 else
26237 /* If the next row's edges intersect [START_CHARPOS..END_CHARPOS],
26238 but none of the characters it displays are in the range, it is
26239 also END + 1. */
26240 struct glyph *g = next->glyphs[TEXT_AREA];
26241 struct glyph *s = g;
26242 struct glyph *e = g + next->used[TEXT_AREA];
26244 while (g < e)
26246 if (((BUFFERP (g->object) || INTEGERP (g->object))
26247 && ((start_charpos <= g->charpos && g->charpos < end_charpos)
26248 /* If the buffer position of the first glyph in
26249 the row is equal to END_CHARPOS, it means
26250 the last character to be highlighted is the
26251 newline of ROW, and we must consider NEXT as
26252 END, not END+1. */
26253 || (((!next->reversed_p && g == s)
26254 || (next->reversed_p && g == e - 1))
26255 && (g->charpos == end_charpos
26256 /* Special case for when NEXT is an
26257 empty line at ZV. */
26258 || (g->charpos == -1
26259 && !row->ends_at_zv_p
26260 && next_start == end_charpos)))))
26261 /* A glyph that comes from DISP_STRING is by
26262 definition to be highlighted. */
26263 || EQ (g->object, disp_string))
26264 break;
26265 g++;
26267 if (g == e)
26269 *end = row;
26270 break;
26272 /* The first row that ends at ZV must be the last to be
26273 highlighted. */
26274 else if (next->ends_at_zv_p)
26276 *end = next;
26277 break;
26283 /* This function sets the mouse_face_* elements of HLINFO, assuming
26284 the mouse cursor is on a glyph with buffer charpos MOUSE_CHARPOS in
26285 window WINDOW. START_CHARPOS and END_CHARPOS are buffer positions
26286 for the overlay or run of text properties specifying the mouse
26287 face. BEFORE_STRING and AFTER_STRING, if non-nil, are a
26288 before-string and after-string that must also be highlighted.
26289 DISP_STRING, if non-nil, is a display string that may cover some
26290 or all of the highlighted text. */
26292 static void
26293 mouse_face_from_buffer_pos (Lisp_Object window,
26294 Mouse_HLInfo *hlinfo,
26295 ptrdiff_t mouse_charpos,
26296 ptrdiff_t start_charpos,
26297 ptrdiff_t end_charpos,
26298 Lisp_Object before_string,
26299 Lisp_Object after_string,
26300 Lisp_Object disp_string)
26302 struct window *w = XWINDOW (window);
26303 struct glyph_row *first = MATRIX_FIRST_TEXT_ROW (w->current_matrix);
26304 struct glyph_row *r1, *r2;
26305 struct glyph *glyph, *end;
26306 ptrdiff_t ignore, pos;
26307 int x;
26309 xassert (NILP (disp_string) || STRINGP (disp_string));
26310 xassert (NILP (before_string) || STRINGP (before_string));
26311 xassert (NILP (after_string) || STRINGP (after_string));
26313 /* Find the rows corresponding to START_CHARPOS and END_CHARPOS. */
26314 rows_from_pos_range (w, start_charpos, end_charpos, disp_string, &r1, &r2);
26315 if (r1 == NULL)
26316 r1 = MATRIX_ROW (w->current_matrix, XFASTINT (w->window_end_vpos));
26317 /* If the before-string or display-string contains newlines,
26318 rows_from_pos_range skips to its last row. Move back. */
26319 if (!NILP (before_string) || !NILP (disp_string))
26321 struct glyph_row *prev;
26322 while ((prev = r1 - 1, prev >= first)
26323 && MATRIX_ROW_END_CHARPOS (prev) == start_charpos
26324 && prev->used[TEXT_AREA] > 0)
26326 struct glyph *beg = prev->glyphs[TEXT_AREA];
26327 glyph = beg + prev->used[TEXT_AREA];
26328 while (--glyph >= beg && INTEGERP (glyph->object));
26329 if (glyph < beg
26330 || !(EQ (glyph->object, before_string)
26331 || EQ (glyph->object, disp_string)))
26332 break;
26333 r1 = prev;
26336 if (r2 == NULL)
26338 r2 = MATRIX_ROW (w->current_matrix, XFASTINT (w->window_end_vpos));
26339 hlinfo->mouse_face_past_end = 1;
26341 else if (!NILP (after_string))
26343 /* If the after-string has newlines, advance to its last row. */
26344 struct glyph_row *next;
26345 struct glyph_row *last
26346 = MATRIX_ROW (w->current_matrix, XFASTINT (w->window_end_vpos));
26348 for (next = r2 + 1;
26349 next <= last
26350 && next->used[TEXT_AREA] > 0
26351 && EQ (next->glyphs[TEXT_AREA]->object, after_string);
26352 ++next)
26353 r2 = next;
26355 /* The rest of the display engine assumes that mouse_face_beg_row is
26356 either above mouse_face_end_row or identical to it. But with
26357 bidi-reordered continued lines, the row for START_CHARPOS could
26358 be below the row for END_CHARPOS. If so, swap the rows and store
26359 them in correct order. */
26360 if (r1->y > r2->y)
26362 struct glyph_row *tem = r2;
26364 r2 = r1;
26365 r1 = tem;
26368 hlinfo->mouse_face_beg_y = r1->y;
26369 hlinfo->mouse_face_beg_row = MATRIX_ROW_VPOS (r1, w->current_matrix);
26370 hlinfo->mouse_face_end_y = r2->y;
26371 hlinfo->mouse_face_end_row = MATRIX_ROW_VPOS (r2, w->current_matrix);
26373 /* For a bidi-reordered row, the positions of BEFORE_STRING,
26374 AFTER_STRING, DISP_STRING, START_CHARPOS, and END_CHARPOS
26375 could be anywhere in the row and in any order. The strategy
26376 below is to find the leftmost and the rightmost glyph that
26377 belongs to either of these 3 strings, or whose position is
26378 between START_CHARPOS and END_CHARPOS, and highlight all the
26379 glyphs between those two. This may cover more than just the text
26380 between START_CHARPOS and END_CHARPOS if the range of characters
26381 strides the bidi level boundary, e.g. if the beginning is in R2L
26382 text while the end is in L2R text or vice versa. */
26383 if (!r1->reversed_p)
26385 /* This row is in a left to right paragraph. Scan it left to
26386 right. */
26387 glyph = r1->glyphs[TEXT_AREA];
26388 end = glyph + r1->used[TEXT_AREA];
26389 x = r1->x;
26391 /* Skip truncation glyphs at the start of the glyph row. */
26392 if (r1->displays_text_p)
26393 for (; glyph < end
26394 && INTEGERP (glyph->object)
26395 && glyph->charpos < 0;
26396 ++glyph)
26397 x += glyph->pixel_width;
26399 /* Scan the glyph row, looking for BEFORE_STRING, AFTER_STRING,
26400 or DISP_STRING, and the first glyph from buffer whose
26401 position is between START_CHARPOS and END_CHARPOS. */
26402 for (; glyph < end
26403 && !INTEGERP (glyph->object)
26404 && !EQ (glyph->object, disp_string)
26405 && !(BUFFERP (glyph->object)
26406 && (glyph->charpos >= start_charpos
26407 && glyph->charpos < end_charpos));
26408 ++glyph)
26410 /* BEFORE_STRING or AFTER_STRING are only relevant if they
26411 are present at buffer positions between START_CHARPOS and
26412 END_CHARPOS, or if they come from an overlay. */
26413 if (EQ (glyph->object, before_string))
26415 pos = string_buffer_position (before_string,
26416 start_charpos);
26417 /* If pos == 0, it means before_string came from an
26418 overlay, not from a buffer position. */
26419 if (!pos || (pos >= start_charpos && pos < end_charpos))
26420 break;
26422 else if (EQ (glyph->object, after_string))
26424 pos = string_buffer_position (after_string, end_charpos);
26425 if (!pos || (pos >= start_charpos && pos < end_charpos))
26426 break;
26428 x += glyph->pixel_width;
26430 hlinfo->mouse_face_beg_x = x;
26431 hlinfo->mouse_face_beg_col = glyph - r1->glyphs[TEXT_AREA];
26433 else
26435 /* This row is in a right to left paragraph. Scan it right to
26436 left. */
26437 struct glyph *g;
26439 end = r1->glyphs[TEXT_AREA] - 1;
26440 glyph = end + r1->used[TEXT_AREA];
26442 /* Skip truncation glyphs at the start of the glyph row. */
26443 if (r1->displays_text_p)
26444 for (; glyph > end
26445 && INTEGERP (glyph->object)
26446 && glyph->charpos < 0;
26447 --glyph)
26450 /* Scan the glyph row, looking for BEFORE_STRING, AFTER_STRING,
26451 or DISP_STRING, and the first glyph from buffer whose
26452 position is between START_CHARPOS and END_CHARPOS. */
26453 for (; glyph > end
26454 && !INTEGERP (glyph->object)
26455 && !EQ (glyph->object, disp_string)
26456 && !(BUFFERP (glyph->object)
26457 && (glyph->charpos >= start_charpos
26458 && glyph->charpos < end_charpos));
26459 --glyph)
26461 /* BEFORE_STRING or AFTER_STRING are only relevant if they
26462 are present at buffer positions between START_CHARPOS and
26463 END_CHARPOS, or if they come from an overlay. */
26464 if (EQ (glyph->object, before_string))
26466 pos = string_buffer_position (before_string, start_charpos);
26467 /* If pos == 0, it means before_string came from an
26468 overlay, not from a buffer position. */
26469 if (!pos || (pos >= start_charpos && pos < end_charpos))
26470 break;
26472 else if (EQ (glyph->object, after_string))
26474 pos = string_buffer_position (after_string, end_charpos);
26475 if (!pos || (pos >= start_charpos && pos < end_charpos))
26476 break;
26480 glyph++; /* first glyph to the right of the highlighted area */
26481 for (g = r1->glyphs[TEXT_AREA], x = r1->x; g < glyph; g++)
26482 x += g->pixel_width;
26483 hlinfo->mouse_face_beg_x = x;
26484 hlinfo->mouse_face_beg_col = glyph - r1->glyphs[TEXT_AREA];
26487 /* If the highlight ends in a different row, compute GLYPH and END
26488 for the end row. Otherwise, reuse the values computed above for
26489 the row where the highlight begins. */
26490 if (r2 != r1)
26492 if (!r2->reversed_p)
26494 glyph = r2->glyphs[TEXT_AREA];
26495 end = glyph + r2->used[TEXT_AREA];
26496 x = r2->x;
26498 else
26500 end = r2->glyphs[TEXT_AREA] - 1;
26501 glyph = end + r2->used[TEXT_AREA];
26505 if (!r2->reversed_p)
26507 /* Skip truncation and continuation glyphs near the end of the
26508 row, and also blanks and stretch glyphs inserted by
26509 extend_face_to_end_of_line. */
26510 while (end > glyph
26511 && INTEGERP ((end - 1)->object))
26512 --end;
26513 /* Scan the rest of the glyph row from the end, looking for the
26514 first glyph that comes from BEFORE_STRING, AFTER_STRING, or
26515 DISP_STRING, or whose position is between START_CHARPOS
26516 and END_CHARPOS */
26517 for (--end;
26518 end > glyph
26519 && !INTEGERP (end->object)
26520 && !EQ (end->object, disp_string)
26521 && !(BUFFERP (end->object)
26522 && (end->charpos >= start_charpos
26523 && end->charpos < end_charpos));
26524 --end)
26526 /* BEFORE_STRING or AFTER_STRING are only relevant if they
26527 are present at buffer positions between START_CHARPOS and
26528 END_CHARPOS, or if they come from an overlay. */
26529 if (EQ (end->object, before_string))
26531 pos = string_buffer_position (before_string, start_charpos);
26532 if (!pos || (pos >= start_charpos && pos < end_charpos))
26533 break;
26535 else if (EQ (end->object, after_string))
26537 pos = string_buffer_position (after_string, end_charpos);
26538 if (!pos || (pos >= start_charpos && pos < end_charpos))
26539 break;
26542 /* Find the X coordinate of the last glyph to be highlighted. */
26543 for (; glyph <= end; ++glyph)
26544 x += glyph->pixel_width;
26546 hlinfo->mouse_face_end_x = x;
26547 hlinfo->mouse_face_end_col = glyph - r2->glyphs[TEXT_AREA];
26549 else
26551 /* Skip truncation and continuation glyphs near the end of the
26552 row, and also blanks and stretch glyphs inserted by
26553 extend_face_to_end_of_line. */
26554 x = r2->x;
26555 end++;
26556 while (end < glyph
26557 && INTEGERP (end->object))
26559 x += end->pixel_width;
26560 ++end;
26562 /* Scan the rest of the glyph row from the end, looking for the
26563 first glyph that comes from BEFORE_STRING, AFTER_STRING, or
26564 DISP_STRING, or whose position is between START_CHARPOS
26565 and END_CHARPOS */
26566 for ( ;
26567 end < glyph
26568 && !INTEGERP (end->object)
26569 && !EQ (end->object, disp_string)
26570 && !(BUFFERP (end->object)
26571 && (end->charpos >= start_charpos
26572 && end->charpos < end_charpos));
26573 ++end)
26575 /* BEFORE_STRING or AFTER_STRING are only relevant if they
26576 are present at buffer positions between START_CHARPOS and
26577 END_CHARPOS, or if they come from an overlay. */
26578 if (EQ (end->object, before_string))
26580 pos = string_buffer_position (before_string, start_charpos);
26581 if (!pos || (pos >= start_charpos && pos < end_charpos))
26582 break;
26584 else if (EQ (end->object, after_string))
26586 pos = string_buffer_position (after_string, end_charpos);
26587 if (!pos || (pos >= start_charpos && pos < end_charpos))
26588 break;
26590 x += end->pixel_width;
26592 /* If we exited the above loop because we arrived at the last
26593 glyph of the row, and its buffer position is still not in
26594 range, it means the last character in range is the preceding
26595 newline. Bump the end column and x values to get past the
26596 last glyph. */
26597 if (end == glyph
26598 && BUFFERP (end->object)
26599 && (end->charpos < start_charpos
26600 || end->charpos >= end_charpos))
26602 x += end->pixel_width;
26603 ++end;
26605 hlinfo->mouse_face_end_x = x;
26606 hlinfo->mouse_face_end_col = end - r2->glyphs[TEXT_AREA];
26609 hlinfo->mouse_face_window = window;
26610 hlinfo->mouse_face_face_id
26611 = face_at_buffer_position (w, mouse_charpos, 0, 0, &ignore,
26612 mouse_charpos + 1,
26613 !hlinfo->mouse_face_hidden, -1);
26614 show_mouse_face (hlinfo, DRAW_MOUSE_FACE);
26617 /* The following function is not used anymore (replaced with
26618 mouse_face_from_string_pos), but I leave it here for the time
26619 being, in case someone would. */
26621 #if 0 /* not used */
26623 /* Find the position of the glyph for position POS in OBJECT in
26624 window W's current matrix, and return in *X, *Y the pixel
26625 coordinates, and return in *HPOS, *VPOS the column/row of the glyph.
26627 RIGHT_P non-zero means return the position of the right edge of the
26628 glyph, RIGHT_P zero means return the left edge position.
26630 If no glyph for POS exists in the matrix, return the position of
26631 the glyph with the next smaller position that is in the matrix, if
26632 RIGHT_P is zero. If RIGHT_P is non-zero, and no glyph for POS
26633 exists in the matrix, return the position of the glyph with the
26634 next larger position in OBJECT.
26636 Value is non-zero if a glyph was found. */
26638 static int
26639 fast_find_string_pos (struct window *w, ptrdiff_t pos, Lisp_Object object,
26640 int *hpos, int *vpos, int *x, int *y, int right_p)
26642 int yb = window_text_bottom_y (w);
26643 struct glyph_row *r;
26644 struct glyph *best_glyph = NULL;
26645 struct glyph_row *best_row = NULL;
26646 int best_x = 0;
26648 for (r = MATRIX_FIRST_TEXT_ROW (w->current_matrix);
26649 r->enabled_p && r->y < yb;
26650 ++r)
26652 struct glyph *g = r->glyphs[TEXT_AREA];
26653 struct glyph *e = g + r->used[TEXT_AREA];
26654 int gx;
26656 for (gx = r->x; g < e; gx += g->pixel_width, ++g)
26657 if (EQ (g->object, object))
26659 if (g->charpos == pos)
26661 best_glyph = g;
26662 best_x = gx;
26663 best_row = r;
26664 goto found;
26666 else if (best_glyph == NULL
26667 || ((eabs (g->charpos - pos)
26668 < eabs (best_glyph->charpos - pos))
26669 && (right_p
26670 ? g->charpos < pos
26671 : g->charpos > pos)))
26673 best_glyph = g;
26674 best_x = gx;
26675 best_row = r;
26680 found:
26682 if (best_glyph)
26684 *x = best_x;
26685 *hpos = best_glyph - best_row->glyphs[TEXT_AREA];
26687 if (right_p)
26689 *x += best_glyph->pixel_width;
26690 ++*hpos;
26693 *y = best_row->y;
26694 *vpos = best_row - w->current_matrix->rows;
26697 return best_glyph != NULL;
26699 #endif /* not used */
26701 /* Find the positions of the first and the last glyphs in window W's
26702 current matrix that occlude positions [STARTPOS..ENDPOS] in OBJECT
26703 (assumed to be a string), and return in HLINFO's mouse_face_*
26704 members the pixel and column/row coordinates of those glyphs. */
26706 static void
26707 mouse_face_from_string_pos (struct window *w, Mouse_HLInfo *hlinfo,
26708 Lisp_Object object,
26709 ptrdiff_t startpos, ptrdiff_t endpos)
26711 int yb = window_text_bottom_y (w);
26712 struct glyph_row *r;
26713 struct glyph *g, *e;
26714 int gx;
26715 int found = 0;
26717 /* Find the glyph row with at least one position in the range
26718 [STARTPOS..ENDPOS], and the first glyph in that row whose
26719 position belongs to that range. */
26720 for (r = MATRIX_FIRST_TEXT_ROW (w->current_matrix);
26721 r->enabled_p && r->y < yb;
26722 ++r)
26724 if (!r->reversed_p)
26726 g = r->glyphs[TEXT_AREA];
26727 e = g + r->used[TEXT_AREA];
26728 for (gx = r->x; g < e; gx += g->pixel_width, ++g)
26729 if (EQ (g->object, object)
26730 && startpos <= g->charpos && g->charpos <= endpos)
26732 hlinfo->mouse_face_beg_row = r - w->current_matrix->rows;
26733 hlinfo->mouse_face_beg_y = r->y;
26734 hlinfo->mouse_face_beg_col = g - r->glyphs[TEXT_AREA];
26735 hlinfo->mouse_face_beg_x = gx;
26736 found = 1;
26737 break;
26740 else
26742 struct glyph *g1;
26744 e = r->glyphs[TEXT_AREA];
26745 g = e + r->used[TEXT_AREA];
26746 for ( ; g > e; --g)
26747 if (EQ ((g-1)->object, object)
26748 && startpos <= (g-1)->charpos && (g-1)->charpos <= endpos)
26750 hlinfo->mouse_face_beg_row = r - w->current_matrix->rows;
26751 hlinfo->mouse_face_beg_y = r->y;
26752 hlinfo->mouse_face_beg_col = g - r->glyphs[TEXT_AREA];
26753 for (gx = r->x, g1 = r->glyphs[TEXT_AREA]; g1 < g; ++g1)
26754 gx += g1->pixel_width;
26755 hlinfo->mouse_face_beg_x = gx;
26756 found = 1;
26757 break;
26760 if (found)
26761 break;
26764 if (!found)
26765 return;
26767 /* Starting with the next row, look for the first row which does NOT
26768 include any glyphs whose positions are in the range. */
26769 for (++r; r->enabled_p && r->y < yb; ++r)
26771 g = r->glyphs[TEXT_AREA];
26772 e = g + r->used[TEXT_AREA];
26773 found = 0;
26774 for ( ; g < e; ++g)
26775 if (EQ (g->object, object)
26776 && startpos <= g->charpos && g->charpos <= endpos)
26778 found = 1;
26779 break;
26781 if (!found)
26782 break;
26785 /* The highlighted region ends on the previous row. */
26786 r--;
26788 /* Set the end row and its vertical pixel coordinate. */
26789 hlinfo->mouse_face_end_row = r - w->current_matrix->rows;
26790 hlinfo->mouse_face_end_y = r->y;
26792 /* Compute and set the end column and the end column's horizontal
26793 pixel coordinate. */
26794 if (!r->reversed_p)
26796 g = r->glyphs[TEXT_AREA];
26797 e = g + r->used[TEXT_AREA];
26798 for ( ; e > g; --e)
26799 if (EQ ((e-1)->object, object)
26800 && startpos <= (e-1)->charpos && (e-1)->charpos <= endpos)
26801 break;
26802 hlinfo->mouse_face_end_col = e - g;
26804 for (gx = r->x; g < e; ++g)
26805 gx += g->pixel_width;
26806 hlinfo->mouse_face_end_x = gx;
26808 else
26810 e = r->glyphs[TEXT_AREA];
26811 g = e + r->used[TEXT_AREA];
26812 for (gx = r->x ; e < g; ++e)
26814 if (EQ (e->object, object)
26815 && startpos <= e->charpos && e->charpos <= endpos)
26816 break;
26817 gx += e->pixel_width;
26819 hlinfo->mouse_face_end_col = e - r->glyphs[TEXT_AREA];
26820 hlinfo->mouse_face_end_x = gx;
26824 #ifdef HAVE_WINDOW_SYSTEM
26826 /* See if position X, Y is within a hot-spot of an image. */
26828 static int
26829 on_hot_spot_p (Lisp_Object hot_spot, int x, int y)
26831 if (!CONSP (hot_spot))
26832 return 0;
26834 if (EQ (XCAR (hot_spot), Qrect))
26836 /* CDR is (Top-Left . Bottom-Right) = ((x0 . y0) . (x1 . y1)) */
26837 Lisp_Object rect = XCDR (hot_spot);
26838 Lisp_Object tem;
26839 if (!CONSP (rect))
26840 return 0;
26841 if (!CONSP (XCAR (rect)))
26842 return 0;
26843 if (!CONSP (XCDR (rect)))
26844 return 0;
26845 if (!(tem = XCAR (XCAR (rect)), INTEGERP (tem) && x >= XINT (tem)))
26846 return 0;
26847 if (!(tem = XCDR (XCAR (rect)), INTEGERP (tem) && y >= XINT (tem)))
26848 return 0;
26849 if (!(tem = XCAR (XCDR (rect)), INTEGERP (tem) && x <= XINT (tem)))
26850 return 0;
26851 if (!(tem = XCDR (XCDR (rect)), INTEGERP (tem) && y <= XINT (tem)))
26852 return 0;
26853 return 1;
26855 else if (EQ (XCAR (hot_spot), Qcircle))
26857 /* CDR is (Center . Radius) = ((x0 . y0) . r) */
26858 Lisp_Object circ = XCDR (hot_spot);
26859 Lisp_Object lr, lx0, ly0;
26860 if (CONSP (circ)
26861 && CONSP (XCAR (circ))
26862 && (lr = XCDR (circ), INTEGERP (lr) || FLOATP (lr))
26863 && (lx0 = XCAR (XCAR (circ)), INTEGERP (lx0))
26864 && (ly0 = XCDR (XCAR (circ)), INTEGERP (ly0)))
26866 double r = XFLOATINT (lr);
26867 double dx = XINT (lx0) - x;
26868 double dy = XINT (ly0) - y;
26869 return (dx * dx + dy * dy <= r * r);
26872 else if (EQ (XCAR (hot_spot), Qpoly))
26874 /* CDR is [x0 y0 x1 y1 x2 y2 ...x(n-1) y(n-1)] */
26875 if (VECTORP (XCDR (hot_spot)))
26877 struct Lisp_Vector *v = XVECTOR (XCDR (hot_spot));
26878 Lisp_Object *poly = v->contents;
26879 ptrdiff_t n = v->header.size;
26880 ptrdiff_t i;
26881 int inside = 0;
26882 Lisp_Object lx, ly;
26883 int x0, y0;
26885 /* Need an even number of coordinates, and at least 3 edges. */
26886 if (n < 6 || n & 1)
26887 return 0;
26889 /* Count edge segments intersecting line from (X,Y) to (X,infinity).
26890 If count is odd, we are inside polygon. Pixels on edges
26891 may or may not be included depending on actual geometry of the
26892 polygon. */
26893 if ((lx = poly[n-2], !INTEGERP (lx))
26894 || (ly = poly[n-1], !INTEGERP (lx)))
26895 return 0;
26896 x0 = XINT (lx), y0 = XINT (ly);
26897 for (i = 0; i < n; i += 2)
26899 int x1 = x0, y1 = y0;
26900 if ((lx = poly[i], !INTEGERP (lx))
26901 || (ly = poly[i+1], !INTEGERP (ly)))
26902 return 0;
26903 x0 = XINT (lx), y0 = XINT (ly);
26905 /* Does this segment cross the X line? */
26906 if (x0 >= x)
26908 if (x1 >= x)
26909 continue;
26911 else if (x1 < x)
26912 continue;
26913 if (y > y0 && y > y1)
26914 continue;
26915 if (y < y0 + ((y1 - y0) * (x - x0)) / (x1 - x0))
26916 inside = !inside;
26918 return inside;
26921 return 0;
26924 Lisp_Object
26925 find_hot_spot (Lisp_Object map, int x, int y)
26927 while (CONSP (map))
26929 if (CONSP (XCAR (map))
26930 && on_hot_spot_p (XCAR (XCAR (map)), x, y))
26931 return XCAR (map);
26932 map = XCDR (map);
26935 return Qnil;
26938 DEFUN ("lookup-image-map", Flookup_image_map, Slookup_image_map,
26939 3, 3, 0,
26940 doc: /* Lookup in image map MAP coordinates X and Y.
26941 An image map is an alist where each element has the format (AREA ID PLIST).
26942 An AREA is specified as either a rectangle, a circle, or a polygon:
26943 A rectangle is a cons (rect . ((x0 . y0) . (x1 . y1))) specifying the
26944 pixel coordinates of the upper left and bottom right corners.
26945 A circle is a cons (circle . ((x0 . y0) . r)) specifying the center
26946 and the radius of the circle; r may be a float or integer.
26947 A polygon is a cons (poly . [x0 y0 x1 y1 ...]) where each pair in the
26948 vector describes one corner in the polygon.
26949 Returns the alist element for the first matching AREA in MAP. */)
26950 (Lisp_Object map, Lisp_Object x, Lisp_Object y)
26952 if (NILP (map))
26953 return Qnil;
26955 CHECK_NUMBER (x);
26956 CHECK_NUMBER (y);
26958 return find_hot_spot (map,
26959 clip_to_bounds (INT_MIN, XINT (x), INT_MAX),
26960 clip_to_bounds (INT_MIN, XINT (y), INT_MAX));
26964 /* Display frame CURSOR, optionally using shape defined by POINTER. */
26965 static void
26966 define_frame_cursor1 (struct frame *f, Cursor cursor, Lisp_Object pointer)
26968 /* Do not change cursor shape while dragging mouse. */
26969 if (!NILP (do_mouse_tracking))
26970 return;
26972 if (!NILP (pointer))
26974 if (EQ (pointer, Qarrow))
26975 cursor = FRAME_X_OUTPUT (f)->nontext_cursor;
26976 else if (EQ (pointer, Qhand))
26977 cursor = FRAME_X_OUTPUT (f)->hand_cursor;
26978 else if (EQ (pointer, Qtext))
26979 cursor = FRAME_X_OUTPUT (f)->text_cursor;
26980 else if (EQ (pointer, intern ("hdrag")))
26981 cursor = FRAME_X_OUTPUT (f)->horizontal_drag_cursor;
26982 #ifdef HAVE_X_WINDOWS
26983 else if (EQ (pointer, intern ("vdrag")))
26984 cursor = FRAME_X_DISPLAY_INFO (f)->vertical_scroll_bar_cursor;
26985 #endif
26986 else if (EQ (pointer, intern ("hourglass")))
26987 cursor = FRAME_X_OUTPUT (f)->hourglass_cursor;
26988 else if (EQ (pointer, Qmodeline))
26989 cursor = FRAME_X_OUTPUT (f)->modeline_cursor;
26990 else
26991 cursor = FRAME_X_OUTPUT (f)->nontext_cursor;
26994 if (cursor != No_Cursor)
26995 FRAME_RIF (f)->define_frame_cursor (f, cursor);
26998 #endif /* HAVE_WINDOW_SYSTEM */
27000 /* Take proper action when mouse has moved to the mode or header line
27001 or marginal area AREA of window W, x-position X and y-position Y.
27002 X is relative to the start of the text display area of W, so the
27003 width of bitmap areas and scroll bars must be subtracted to get a
27004 position relative to the start of the mode line. */
27006 static void
27007 note_mode_line_or_margin_highlight (Lisp_Object window, int x, int y,
27008 enum window_part area)
27010 struct window *w = XWINDOW (window);
27011 struct frame *f = XFRAME (w->frame);
27012 Mouse_HLInfo *hlinfo = MOUSE_HL_INFO (f);
27013 #ifdef HAVE_WINDOW_SYSTEM
27014 Display_Info *dpyinfo;
27015 #endif
27016 Cursor cursor = No_Cursor;
27017 Lisp_Object pointer = Qnil;
27018 int dx, dy, width, height;
27019 ptrdiff_t charpos;
27020 Lisp_Object string, object = Qnil;
27021 Lisp_Object pos IF_LINT (= Qnil), help;
27023 Lisp_Object mouse_face;
27024 int original_x_pixel = x;
27025 struct glyph * glyph = NULL, * row_start_glyph = NULL;
27026 struct glyph_row *row IF_LINT (= 0);
27028 if (area == ON_MODE_LINE || area == ON_HEADER_LINE)
27030 int x0;
27031 struct glyph *end;
27033 /* Kludge alert: mode_line_string takes X/Y in pixels, but
27034 returns them in row/column units! */
27035 string = mode_line_string (w, area, &x, &y, &charpos,
27036 &object, &dx, &dy, &width, &height);
27038 row = (area == ON_MODE_LINE
27039 ? MATRIX_MODE_LINE_ROW (w->current_matrix)
27040 : MATRIX_HEADER_LINE_ROW (w->current_matrix));
27042 /* Find the glyph under the mouse pointer. */
27043 if (row->mode_line_p && row->enabled_p)
27045 glyph = row_start_glyph = row->glyphs[TEXT_AREA];
27046 end = glyph + row->used[TEXT_AREA];
27048 for (x0 = original_x_pixel;
27049 glyph < end && x0 >= glyph->pixel_width;
27050 ++glyph)
27051 x0 -= glyph->pixel_width;
27053 if (glyph >= end)
27054 glyph = NULL;
27057 else
27059 x -= WINDOW_LEFT_SCROLL_BAR_AREA_WIDTH (w);
27060 /* Kludge alert: marginal_area_string takes X/Y in pixels, but
27061 returns them in row/column units! */
27062 string = marginal_area_string (w, area, &x, &y, &charpos,
27063 &object, &dx, &dy, &width, &height);
27066 help = Qnil;
27068 #ifdef HAVE_WINDOW_SYSTEM
27069 if (IMAGEP (object))
27071 Lisp_Object image_map, hotspot;
27072 if ((image_map = Fplist_get (XCDR (object), QCmap),
27073 !NILP (image_map))
27074 && (hotspot = find_hot_spot (image_map, dx, dy),
27075 CONSP (hotspot))
27076 && (hotspot = XCDR (hotspot), CONSP (hotspot)))
27078 Lisp_Object plist;
27080 /* Could check XCAR (hotspot) to see if we enter/leave this hot-spot.
27081 If so, we could look for mouse-enter, mouse-leave
27082 properties in PLIST (and do something...). */
27083 hotspot = XCDR (hotspot);
27084 if (CONSP (hotspot)
27085 && (plist = XCAR (hotspot), CONSP (plist)))
27087 pointer = Fplist_get (plist, Qpointer);
27088 if (NILP (pointer))
27089 pointer = Qhand;
27090 help = Fplist_get (plist, Qhelp_echo);
27091 if (!NILP (help))
27093 help_echo_string = help;
27094 XSETWINDOW (help_echo_window, w);
27095 help_echo_object = w->buffer;
27096 help_echo_pos = charpos;
27100 if (NILP (pointer))
27101 pointer = Fplist_get (XCDR (object), QCpointer);
27103 #endif /* HAVE_WINDOW_SYSTEM */
27105 if (STRINGP (string))
27106 pos = make_number (charpos);
27108 /* Set the help text and mouse pointer. If the mouse is on a part
27109 of the mode line without any text (e.g. past the right edge of
27110 the mode line text), use the default help text and pointer. */
27111 if (STRINGP (string) || area == ON_MODE_LINE)
27113 /* Arrange to display the help by setting the global variables
27114 help_echo_string, help_echo_object, and help_echo_pos. */
27115 if (NILP (help))
27117 if (STRINGP (string))
27118 help = Fget_text_property (pos, Qhelp_echo, string);
27120 if (!NILP (help))
27122 help_echo_string = help;
27123 XSETWINDOW (help_echo_window, w);
27124 help_echo_object = string;
27125 help_echo_pos = charpos;
27127 else if (area == ON_MODE_LINE)
27129 Lisp_Object default_help
27130 = buffer_local_value_1 (Qmode_line_default_help_echo,
27131 w->buffer);
27133 if (STRINGP (default_help))
27135 help_echo_string = default_help;
27136 XSETWINDOW (help_echo_window, w);
27137 help_echo_object = Qnil;
27138 help_echo_pos = -1;
27143 #ifdef HAVE_WINDOW_SYSTEM
27144 /* Change the mouse pointer according to what is under it. */
27145 if (FRAME_WINDOW_P (f))
27147 dpyinfo = FRAME_X_DISPLAY_INFO (f);
27148 if (STRINGP (string))
27150 cursor = FRAME_X_OUTPUT (f)->nontext_cursor;
27152 if (NILP (pointer))
27153 pointer = Fget_text_property (pos, Qpointer, string);
27155 /* Change the mouse pointer according to what is under X/Y. */
27156 if (NILP (pointer)
27157 && ((area == ON_MODE_LINE) || (area == ON_HEADER_LINE)))
27159 Lisp_Object map;
27160 map = Fget_text_property (pos, Qlocal_map, string);
27161 if (!KEYMAPP (map))
27162 map = Fget_text_property (pos, Qkeymap, string);
27163 if (!KEYMAPP (map))
27164 cursor = dpyinfo->vertical_scroll_bar_cursor;
27167 else
27168 /* Default mode-line pointer. */
27169 cursor = FRAME_X_DISPLAY_INFO (f)->vertical_scroll_bar_cursor;
27171 #endif
27174 /* Change the mouse face according to what is under X/Y. */
27175 if (STRINGP (string))
27177 mouse_face = Fget_text_property (pos, Qmouse_face, string);
27178 if (!NILP (mouse_face)
27179 && ((area == ON_MODE_LINE) || (area == ON_HEADER_LINE))
27180 && glyph)
27182 Lisp_Object b, e;
27184 struct glyph * tmp_glyph;
27186 int gpos;
27187 int gseq_length;
27188 int total_pixel_width;
27189 ptrdiff_t begpos, endpos, ignore;
27191 int vpos, hpos;
27193 b = Fprevious_single_property_change (make_number (charpos + 1),
27194 Qmouse_face, string, Qnil);
27195 if (NILP (b))
27196 begpos = 0;
27197 else
27198 begpos = XINT (b);
27200 e = Fnext_single_property_change (pos, Qmouse_face, string, Qnil);
27201 if (NILP (e))
27202 endpos = SCHARS (string);
27203 else
27204 endpos = XINT (e);
27206 /* Calculate the glyph position GPOS of GLYPH in the
27207 displayed string, relative to the beginning of the
27208 highlighted part of the string.
27210 Note: GPOS is different from CHARPOS. CHARPOS is the
27211 position of GLYPH in the internal string object. A mode
27212 line string format has structures which are converted to
27213 a flattened string by the Emacs Lisp interpreter. The
27214 internal string is an element of those structures. The
27215 displayed string is the flattened string. */
27216 tmp_glyph = row_start_glyph;
27217 while (tmp_glyph < glyph
27218 && (!(EQ (tmp_glyph->object, glyph->object)
27219 && begpos <= tmp_glyph->charpos
27220 && tmp_glyph->charpos < endpos)))
27221 tmp_glyph++;
27222 gpos = glyph - tmp_glyph;
27224 /* Calculate the length GSEQ_LENGTH of the glyph sequence of
27225 the highlighted part of the displayed string to which
27226 GLYPH belongs. Note: GSEQ_LENGTH is different from
27227 SCHARS (STRING), because the latter returns the length of
27228 the internal string. */
27229 for (tmp_glyph = row->glyphs[TEXT_AREA] + row->used[TEXT_AREA] - 1;
27230 tmp_glyph > glyph
27231 && (!(EQ (tmp_glyph->object, glyph->object)
27232 && begpos <= tmp_glyph->charpos
27233 && tmp_glyph->charpos < endpos));
27234 tmp_glyph--)
27236 gseq_length = gpos + (tmp_glyph - glyph) + 1;
27238 /* Calculate the total pixel width of all the glyphs between
27239 the beginning of the highlighted area and GLYPH. */
27240 total_pixel_width = 0;
27241 for (tmp_glyph = glyph - gpos; tmp_glyph != glyph; tmp_glyph++)
27242 total_pixel_width += tmp_glyph->pixel_width;
27244 /* Pre calculation of re-rendering position. Note: X is in
27245 column units here, after the call to mode_line_string or
27246 marginal_area_string. */
27247 hpos = x - gpos;
27248 vpos = (area == ON_MODE_LINE
27249 ? (w->current_matrix)->nrows - 1
27250 : 0);
27252 /* If GLYPH's position is included in the region that is
27253 already drawn in mouse face, we have nothing to do. */
27254 if ( EQ (window, hlinfo->mouse_face_window)
27255 && (!row->reversed_p
27256 ? (hlinfo->mouse_face_beg_col <= hpos
27257 && hpos < hlinfo->mouse_face_end_col)
27258 /* In R2L rows we swap BEG and END, see below. */
27259 : (hlinfo->mouse_face_end_col <= hpos
27260 && hpos < hlinfo->mouse_face_beg_col))
27261 && hlinfo->mouse_face_beg_row == vpos )
27262 return;
27264 if (clear_mouse_face (hlinfo))
27265 cursor = No_Cursor;
27267 if (!row->reversed_p)
27269 hlinfo->mouse_face_beg_col = hpos;
27270 hlinfo->mouse_face_beg_x = original_x_pixel
27271 - (total_pixel_width + dx);
27272 hlinfo->mouse_face_end_col = hpos + gseq_length;
27273 hlinfo->mouse_face_end_x = 0;
27275 else
27277 /* In R2L rows, show_mouse_face expects BEG and END
27278 coordinates to be swapped. */
27279 hlinfo->mouse_face_end_col = hpos;
27280 hlinfo->mouse_face_end_x = original_x_pixel
27281 - (total_pixel_width + dx);
27282 hlinfo->mouse_face_beg_col = hpos + gseq_length;
27283 hlinfo->mouse_face_beg_x = 0;
27286 hlinfo->mouse_face_beg_row = vpos;
27287 hlinfo->mouse_face_end_row = hlinfo->mouse_face_beg_row;
27288 hlinfo->mouse_face_beg_y = 0;
27289 hlinfo->mouse_face_end_y = 0;
27290 hlinfo->mouse_face_past_end = 0;
27291 hlinfo->mouse_face_window = window;
27293 hlinfo->mouse_face_face_id = face_at_string_position (w, string,
27294 charpos,
27295 0, 0, 0,
27296 &ignore,
27297 glyph->face_id,
27299 show_mouse_face (hlinfo, DRAW_MOUSE_FACE);
27301 if (NILP (pointer))
27302 pointer = Qhand;
27304 else if ((area == ON_MODE_LINE) || (area == ON_HEADER_LINE))
27305 clear_mouse_face (hlinfo);
27307 #ifdef HAVE_WINDOW_SYSTEM
27308 if (FRAME_WINDOW_P (f))
27309 define_frame_cursor1 (f, cursor, pointer);
27310 #endif
27314 /* EXPORT:
27315 Take proper action when the mouse has moved to position X, Y on
27316 frame F as regards highlighting characters that have mouse-face
27317 properties. Also de-highlighting chars where the mouse was before.
27318 X and Y can be negative or out of range. */
27320 void
27321 note_mouse_highlight (struct frame *f, int x, int y)
27323 Mouse_HLInfo *hlinfo = MOUSE_HL_INFO (f);
27324 enum window_part part = ON_NOTHING;
27325 Lisp_Object window;
27326 struct window *w;
27327 Cursor cursor = No_Cursor;
27328 Lisp_Object pointer = Qnil; /* Takes precedence over cursor! */
27329 struct buffer *b;
27331 /* When a menu is active, don't highlight because this looks odd. */
27332 #if defined (USE_X_TOOLKIT) || defined (USE_GTK) || defined (HAVE_NS) || defined (MSDOS)
27333 if (popup_activated ())
27334 return;
27335 #endif
27337 if (NILP (Vmouse_highlight)
27338 || !f->glyphs_initialized_p
27339 || f->pointer_invisible)
27340 return;
27342 hlinfo->mouse_face_mouse_x = x;
27343 hlinfo->mouse_face_mouse_y = y;
27344 hlinfo->mouse_face_mouse_frame = f;
27346 if (hlinfo->mouse_face_defer)
27347 return;
27349 if (gc_in_progress)
27351 hlinfo->mouse_face_deferred_gc = 1;
27352 return;
27355 /* Which window is that in? */
27356 window = window_from_coordinates (f, x, y, &part, 1);
27358 /* If displaying active text in another window, clear that. */
27359 if (! EQ (window, hlinfo->mouse_face_window)
27360 /* Also clear if we move out of text area in same window. */
27361 || (!NILP (hlinfo->mouse_face_window)
27362 && !NILP (window)
27363 && part != ON_TEXT
27364 && part != ON_MODE_LINE
27365 && part != ON_HEADER_LINE))
27366 clear_mouse_face (hlinfo);
27368 /* Not on a window -> return. */
27369 if (!WINDOWP (window))
27370 return;
27372 /* Reset help_echo_string. It will get recomputed below. */
27373 help_echo_string = Qnil;
27375 /* Convert to window-relative pixel coordinates. */
27376 w = XWINDOW (window);
27377 frame_to_window_pixel_xy (w, &x, &y);
27379 #ifdef HAVE_WINDOW_SYSTEM
27380 /* Handle tool-bar window differently since it doesn't display a
27381 buffer. */
27382 if (EQ (window, f->tool_bar_window))
27384 note_tool_bar_highlight (f, x, y);
27385 return;
27387 #endif
27389 /* Mouse is on the mode, header line or margin? */
27390 if (part == ON_MODE_LINE || part == ON_HEADER_LINE
27391 || part == ON_LEFT_MARGIN || part == ON_RIGHT_MARGIN)
27393 note_mode_line_or_margin_highlight (window, x, y, part);
27394 return;
27397 #ifdef HAVE_WINDOW_SYSTEM
27398 if (part == ON_VERTICAL_BORDER)
27400 cursor = FRAME_X_OUTPUT (f)->horizontal_drag_cursor;
27401 help_echo_string = build_string ("drag-mouse-1: resize");
27403 else if (part == ON_LEFT_FRINGE || part == ON_RIGHT_FRINGE
27404 || part == ON_SCROLL_BAR)
27405 cursor = FRAME_X_OUTPUT (f)->nontext_cursor;
27406 else
27407 cursor = FRAME_X_OUTPUT (f)->text_cursor;
27408 #endif
27410 /* Are we in a window whose display is up to date?
27411 And verify the buffer's text has not changed. */
27412 b = XBUFFER (w->buffer);
27413 if (part == ON_TEXT
27414 && EQ (w->window_end_valid, w->buffer)
27415 && XFASTINT (w->last_modified) == BUF_MODIFF (b)
27416 && XFASTINT (w->last_overlay_modified) == BUF_OVERLAY_MODIFF (b))
27418 int hpos, vpos, dx, dy, area = LAST_AREA;
27419 ptrdiff_t pos;
27420 struct glyph *glyph;
27421 Lisp_Object object;
27422 Lisp_Object mouse_face = Qnil, position;
27423 Lisp_Object *overlay_vec = NULL;
27424 ptrdiff_t i, noverlays;
27425 struct buffer *obuf;
27426 ptrdiff_t obegv, ozv;
27427 int same_region;
27429 /* Find the glyph under X/Y. */
27430 glyph = x_y_to_hpos_vpos (w, x, y, &hpos, &vpos, &dx, &dy, &area);
27432 #ifdef HAVE_WINDOW_SYSTEM
27433 /* Look for :pointer property on image. */
27434 if (glyph != NULL && glyph->type == IMAGE_GLYPH)
27436 struct image *img = IMAGE_FROM_ID (f, glyph->u.img_id);
27437 if (img != NULL && IMAGEP (img->spec))
27439 Lisp_Object image_map, hotspot;
27440 if ((image_map = Fplist_get (XCDR (img->spec), QCmap),
27441 !NILP (image_map))
27442 && (hotspot = find_hot_spot (image_map,
27443 glyph->slice.img.x + dx,
27444 glyph->slice.img.y + dy),
27445 CONSP (hotspot))
27446 && (hotspot = XCDR (hotspot), CONSP (hotspot)))
27448 Lisp_Object plist;
27450 /* Could check XCAR (hotspot) to see if we enter/leave
27451 this hot-spot.
27452 If so, we could look for mouse-enter, mouse-leave
27453 properties in PLIST (and do something...). */
27454 hotspot = XCDR (hotspot);
27455 if (CONSP (hotspot)
27456 && (plist = XCAR (hotspot), CONSP (plist)))
27458 pointer = Fplist_get (plist, Qpointer);
27459 if (NILP (pointer))
27460 pointer = Qhand;
27461 help_echo_string = Fplist_get (plist, Qhelp_echo);
27462 if (!NILP (help_echo_string))
27464 help_echo_window = window;
27465 help_echo_object = glyph->object;
27466 help_echo_pos = glyph->charpos;
27470 if (NILP (pointer))
27471 pointer = Fplist_get (XCDR (img->spec), QCpointer);
27474 #endif /* HAVE_WINDOW_SYSTEM */
27476 /* Clear mouse face if X/Y not over text. */
27477 if (glyph == NULL
27478 || area != TEXT_AREA
27479 || !MATRIX_ROW (w->current_matrix, vpos)->displays_text_p
27480 /* Glyph's OBJECT is an integer for glyphs inserted by the
27481 display engine for its internal purposes, like truncation
27482 and continuation glyphs and blanks beyond the end of
27483 line's text on text terminals. If we are over such a
27484 glyph, we are not over any text. */
27485 || INTEGERP (glyph->object)
27486 /* R2L rows have a stretch glyph at their front, which
27487 stands for no text, whereas L2R rows have no glyphs at
27488 all beyond the end of text. Treat such stretch glyphs
27489 like we do with NULL glyphs in L2R rows. */
27490 || (MATRIX_ROW (w->current_matrix, vpos)->reversed_p
27491 && glyph == MATRIX_ROW (w->current_matrix, vpos)->glyphs[TEXT_AREA]
27492 && glyph->type == STRETCH_GLYPH
27493 && glyph->avoid_cursor_p))
27495 if (clear_mouse_face (hlinfo))
27496 cursor = No_Cursor;
27497 #ifdef HAVE_WINDOW_SYSTEM
27498 if (FRAME_WINDOW_P (f) && NILP (pointer))
27500 if (area != TEXT_AREA)
27501 cursor = FRAME_X_OUTPUT (f)->nontext_cursor;
27502 else
27503 pointer = Vvoid_text_area_pointer;
27505 #endif
27506 goto set_cursor;
27509 pos = glyph->charpos;
27510 object = glyph->object;
27511 if (!STRINGP (object) && !BUFFERP (object))
27512 goto set_cursor;
27514 /* If we get an out-of-range value, return now; avoid an error. */
27515 if (BUFFERP (object) && pos > BUF_Z (b))
27516 goto set_cursor;
27518 /* Make the window's buffer temporarily current for
27519 overlays_at and compute_char_face. */
27520 obuf = current_buffer;
27521 current_buffer = b;
27522 obegv = BEGV;
27523 ozv = ZV;
27524 BEGV = BEG;
27525 ZV = Z;
27527 /* Is this char mouse-active or does it have help-echo? */
27528 position = make_number (pos);
27530 if (BUFFERP (object))
27532 /* Put all the overlays we want in a vector in overlay_vec. */
27533 GET_OVERLAYS_AT (pos, overlay_vec, noverlays, NULL, 0);
27534 /* Sort overlays into increasing priority order. */
27535 noverlays = sort_overlays (overlay_vec, noverlays, w);
27537 else
27538 noverlays = 0;
27540 same_region = coords_in_mouse_face_p (w, hpos, vpos);
27542 if (same_region)
27543 cursor = No_Cursor;
27545 /* Check mouse-face highlighting. */
27546 if (! same_region
27547 /* If there exists an overlay with mouse-face overlapping
27548 the one we are currently highlighting, we have to
27549 check if we enter the overlapping overlay, and then
27550 highlight only that. */
27551 || (OVERLAYP (hlinfo->mouse_face_overlay)
27552 && mouse_face_overlay_overlaps (hlinfo->mouse_face_overlay)))
27554 /* Find the highest priority overlay with a mouse-face. */
27555 Lisp_Object overlay = Qnil;
27556 for (i = noverlays - 1; i >= 0 && NILP (overlay); --i)
27558 mouse_face = Foverlay_get (overlay_vec[i], Qmouse_face);
27559 if (!NILP (mouse_face))
27560 overlay = overlay_vec[i];
27563 /* If we're highlighting the same overlay as before, there's
27564 no need to do that again. */
27565 if (!NILP (overlay) && EQ (overlay, hlinfo->mouse_face_overlay))
27566 goto check_help_echo;
27567 hlinfo->mouse_face_overlay = overlay;
27569 /* Clear the display of the old active region, if any. */
27570 if (clear_mouse_face (hlinfo))
27571 cursor = No_Cursor;
27573 /* If no overlay applies, get a text property. */
27574 if (NILP (overlay))
27575 mouse_face = Fget_text_property (position, Qmouse_face, object);
27577 /* Next, compute the bounds of the mouse highlighting and
27578 display it. */
27579 if (!NILP (mouse_face) && STRINGP (object))
27581 /* The mouse-highlighting comes from a display string
27582 with a mouse-face. */
27583 Lisp_Object s, e;
27584 ptrdiff_t ignore;
27586 s = Fprevious_single_property_change
27587 (make_number (pos + 1), Qmouse_face, object, Qnil);
27588 e = Fnext_single_property_change
27589 (position, Qmouse_face, object, Qnil);
27590 if (NILP (s))
27591 s = make_number (0);
27592 if (NILP (e))
27593 e = make_number (SCHARS (object) - 1);
27594 mouse_face_from_string_pos (w, hlinfo, object,
27595 XINT (s), XINT (e));
27596 hlinfo->mouse_face_past_end = 0;
27597 hlinfo->mouse_face_window = window;
27598 hlinfo->mouse_face_face_id
27599 = face_at_string_position (w, object, pos, 0, 0, 0, &ignore,
27600 glyph->face_id, 1);
27601 show_mouse_face (hlinfo, DRAW_MOUSE_FACE);
27602 cursor = No_Cursor;
27604 else
27606 /* The mouse-highlighting, if any, comes from an overlay
27607 or text property in the buffer. */
27608 Lisp_Object buffer IF_LINT (= Qnil);
27609 Lisp_Object disp_string IF_LINT (= Qnil);
27611 if (STRINGP (object))
27613 /* If we are on a display string with no mouse-face,
27614 check if the text under it has one. */
27615 struct glyph_row *r = MATRIX_ROW (w->current_matrix, vpos);
27616 ptrdiff_t start = MATRIX_ROW_START_CHARPOS (r);
27617 pos = string_buffer_position (object, start);
27618 if (pos > 0)
27620 mouse_face = get_char_property_and_overlay
27621 (make_number (pos), Qmouse_face, w->buffer, &overlay);
27622 buffer = w->buffer;
27623 disp_string = object;
27626 else
27628 buffer = object;
27629 disp_string = Qnil;
27632 if (!NILP (mouse_face))
27634 Lisp_Object before, after;
27635 Lisp_Object before_string, after_string;
27636 /* To correctly find the limits of mouse highlight
27637 in a bidi-reordered buffer, we must not use the
27638 optimization of limiting the search in
27639 previous-single-property-change and
27640 next-single-property-change, because
27641 rows_from_pos_range needs the real start and end
27642 positions to DTRT in this case. That's because
27643 the first row visible in a window does not
27644 necessarily display the character whose position
27645 is the smallest. */
27646 Lisp_Object lim1 =
27647 NILP (BVAR (XBUFFER (buffer), bidi_display_reordering))
27648 ? Fmarker_position (w->start)
27649 : Qnil;
27650 Lisp_Object lim2 =
27651 NILP (BVAR (XBUFFER (buffer), bidi_display_reordering))
27652 ? make_number (BUF_Z (XBUFFER (buffer))
27653 - XFASTINT (w->window_end_pos))
27654 : Qnil;
27656 if (NILP (overlay))
27658 /* Handle the text property case. */
27659 before = Fprevious_single_property_change
27660 (make_number (pos + 1), Qmouse_face, buffer, lim1);
27661 after = Fnext_single_property_change
27662 (make_number (pos), Qmouse_face, buffer, lim2);
27663 before_string = after_string = Qnil;
27665 else
27667 /* Handle the overlay case. */
27668 before = Foverlay_start (overlay);
27669 after = Foverlay_end (overlay);
27670 before_string = Foverlay_get (overlay, Qbefore_string);
27671 after_string = Foverlay_get (overlay, Qafter_string);
27673 if (!STRINGP (before_string)) before_string = Qnil;
27674 if (!STRINGP (after_string)) after_string = Qnil;
27677 mouse_face_from_buffer_pos (window, hlinfo, pos,
27678 NILP (before)
27680 : XFASTINT (before),
27681 NILP (after)
27682 ? BUF_Z (XBUFFER (buffer))
27683 : XFASTINT (after),
27684 before_string, after_string,
27685 disp_string);
27686 cursor = No_Cursor;
27691 check_help_echo:
27693 /* Look for a `help-echo' property. */
27694 if (NILP (help_echo_string)) {
27695 Lisp_Object help, overlay;
27697 /* Check overlays first. */
27698 help = overlay = Qnil;
27699 for (i = noverlays - 1; i >= 0 && NILP (help); --i)
27701 overlay = overlay_vec[i];
27702 help = Foverlay_get (overlay, Qhelp_echo);
27705 if (!NILP (help))
27707 help_echo_string = help;
27708 help_echo_window = window;
27709 help_echo_object = overlay;
27710 help_echo_pos = pos;
27712 else
27714 Lisp_Object obj = glyph->object;
27715 ptrdiff_t charpos = glyph->charpos;
27717 /* Try text properties. */
27718 if (STRINGP (obj)
27719 && charpos >= 0
27720 && charpos < SCHARS (obj))
27722 help = Fget_text_property (make_number (charpos),
27723 Qhelp_echo, obj);
27724 if (NILP (help))
27726 /* If the string itself doesn't specify a help-echo,
27727 see if the buffer text ``under'' it does. */
27728 struct glyph_row *r
27729 = MATRIX_ROW (w->current_matrix, vpos);
27730 ptrdiff_t start = MATRIX_ROW_START_CHARPOS (r);
27731 ptrdiff_t p = string_buffer_position (obj, start);
27732 if (p > 0)
27734 help = Fget_char_property (make_number (p),
27735 Qhelp_echo, w->buffer);
27736 if (!NILP (help))
27738 charpos = p;
27739 obj = w->buffer;
27744 else if (BUFFERP (obj)
27745 && charpos >= BEGV
27746 && charpos < ZV)
27747 help = Fget_text_property (make_number (charpos), Qhelp_echo,
27748 obj);
27750 if (!NILP (help))
27752 help_echo_string = help;
27753 help_echo_window = window;
27754 help_echo_object = obj;
27755 help_echo_pos = charpos;
27760 #ifdef HAVE_WINDOW_SYSTEM
27761 /* Look for a `pointer' property. */
27762 if (FRAME_WINDOW_P (f) && NILP (pointer))
27764 /* Check overlays first. */
27765 for (i = noverlays - 1; i >= 0 && NILP (pointer); --i)
27766 pointer = Foverlay_get (overlay_vec[i], Qpointer);
27768 if (NILP (pointer))
27770 Lisp_Object obj = glyph->object;
27771 ptrdiff_t charpos = glyph->charpos;
27773 /* Try text properties. */
27774 if (STRINGP (obj)
27775 && charpos >= 0
27776 && charpos < SCHARS (obj))
27778 pointer = Fget_text_property (make_number (charpos),
27779 Qpointer, obj);
27780 if (NILP (pointer))
27782 /* If the string itself doesn't specify a pointer,
27783 see if the buffer text ``under'' it does. */
27784 struct glyph_row *r
27785 = MATRIX_ROW (w->current_matrix, vpos);
27786 ptrdiff_t start = MATRIX_ROW_START_CHARPOS (r);
27787 ptrdiff_t p = string_buffer_position (obj, start);
27788 if (p > 0)
27789 pointer = Fget_char_property (make_number (p),
27790 Qpointer, w->buffer);
27793 else if (BUFFERP (obj)
27794 && charpos >= BEGV
27795 && charpos < ZV)
27796 pointer = Fget_text_property (make_number (charpos),
27797 Qpointer, obj);
27800 #endif /* HAVE_WINDOW_SYSTEM */
27802 BEGV = obegv;
27803 ZV = ozv;
27804 current_buffer = obuf;
27807 set_cursor:
27809 #ifdef HAVE_WINDOW_SYSTEM
27810 if (FRAME_WINDOW_P (f))
27811 define_frame_cursor1 (f, cursor, pointer);
27812 #else
27813 /* This is here to prevent a compiler error, about "label at end of
27814 compound statement". */
27815 return;
27816 #endif
27820 /* EXPORT for RIF:
27821 Clear any mouse-face on window W. This function is part of the
27822 redisplay interface, and is called from try_window_id and similar
27823 functions to ensure the mouse-highlight is off. */
27825 void
27826 x_clear_window_mouse_face (struct window *w)
27828 Mouse_HLInfo *hlinfo = MOUSE_HL_INFO (XFRAME (w->frame));
27829 Lisp_Object window;
27831 BLOCK_INPUT;
27832 XSETWINDOW (window, w);
27833 if (EQ (window, hlinfo->mouse_face_window))
27834 clear_mouse_face (hlinfo);
27835 UNBLOCK_INPUT;
27839 /* EXPORT:
27840 Just discard the mouse face information for frame F, if any.
27841 This is used when the size of F is changed. */
27843 void
27844 cancel_mouse_face (struct frame *f)
27846 Lisp_Object window;
27847 Mouse_HLInfo *hlinfo = MOUSE_HL_INFO (f);
27849 window = hlinfo->mouse_face_window;
27850 if (! NILP (window) && XFRAME (XWINDOW (window)->frame) == f)
27852 hlinfo->mouse_face_beg_row = hlinfo->mouse_face_beg_col = -1;
27853 hlinfo->mouse_face_end_row = hlinfo->mouse_face_end_col = -1;
27854 hlinfo->mouse_face_window = Qnil;
27860 /***********************************************************************
27861 Exposure Events
27862 ***********************************************************************/
27864 #ifdef HAVE_WINDOW_SYSTEM
27866 /* Redraw the part of glyph row area AREA of glyph row ROW on window W
27867 which intersects rectangle R. R is in window-relative coordinates. */
27869 static void
27870 expose_area (struct window *w, struct glyph_row *row, XRectangle *r,
27871 enum glyph_row_area area)
27873 struct glyph *first = row->glyphs[area];
27874 struct glyph *end = row->glyphs[area] + row->used[area];
27875 struct glyph *last;
27876 int first_x, start_x, x;
27878 if (area == TEXT_AREA && row->fill_line_p)
27879 /* If row extends face to end of line write the whole line. */
27880 draw_glyphs (w, 0, row, area,
27881 0, row->used[area],
27882 DRAW_NORMAL_TEXT, 0);
27883 else
27885 /* Set START_X to the window-relative start position for drawing glyphs of
27886 AREA. The first glyph of the text area can be partially visible.
27887 The first glyphs of other areas cannot. */
27888 start_x = window_box_left_offset (w, area);
27889 x = start_x;
27890 if (area == TEXT_AREA)
27891 x += row->x;
27893 /* Find the first glyph that must be redrawn. */
27894 while (first < end
27895 && x + first->pixel_width < r->x)
27897 x += first->pixel_width;
27898 ++first;
27901 /* Find the last one. */
27902 last = first;
27903 first_x = x;
27904 while (last < end
27905 && x < r->x + r->width)
27907 x += last->pixel_width;
27908 ++last;
27911 /* Repaint. */
27912 if (last > first)
27913 draw_glyphs (w, first_x - start_x, row, area,
27914 first - row->glyphs[area], last - row->glyphs[area],
27915 DRAW_NORMAL_TEXT, 0);
27920 /* Redraw the parts of the glyph row ROW on window W intersecting
27921 rectangle R. R is in window-relative coordinates. Value is
27922 non-zero if mouse-face was overwritten. */
27924 static int
27925 expose_line (struct window *w, struct glyph_row *row, XRectangle *r)
27927 xassert (row->enabled_p);
27929 if (row->mode_line_p || w->pseudo_window_p)
27930 draw_glyphs (w, 0, row, TEXT_AREA,
27931 0, row->used[TEXT_AREA],
27932 DRAW_NORMAL_TEXT, 0);
27933 else
27935 if (row->used[LEFT_MARGIN_AREA])
27936 expose_area (w, row, r, LEFT_MARGIN_AREA);
27937 if (row->used[TEXT_AREA])
27938 expose_area (w, row, r, TEXT_AREA);
27939 if (row->used[RIGHT_MARGIN_AREA])
27940 expose_area (w, row, r, RIGHT_MARGIN_AREA);
27941 draw_row_fringe_bitmaps (w, row);
27944 return row->mouse_face_p;
27948 /* Redraw those parts of glyphs rows during expose event handling that
27949 overlap other rows. Redrawing of an exposed line writes over parts
27950 of lines overlapping that exposed line; this function fixes that.
27952 W is the window being exposed. FIRST_OVERLAPPING_ROW is the first
27953 row in W's current matrix that is exposed and overlaps other rows.
27954 LAST_OVERLAPPING_ROW is the last such row. */
27956 static void
27957 expose_overlaps (struct window *w,
27958 struct glyph_row *first_overlapping_row,
27959 struct glyph_row *last_overlapping_row,
27960 XRectangle *r)
27962 struct glyph_row *row;
27964 for (row = first_overlapping_row; row <= last_overlapping_row; ++row)
27965 if (row->overlapping_p)
27967 xassert (row->enabled_p && !row->mode_line_p);
27969 row->clip = r;
27970 if (row->used[LEFT_MARGIN_AREA])
27971 x_fix_overlapping_area (w, row, LEFT_MARGIN_AREA, OVERLAPS_BOTH);
27973 if (row->used[TEXT_AREA])
27974 x_fix_overlapping_area (w, row, TEXT_AREA, OVERLAPS_BOTH);
27976 if (row->used[RIGHT_MARGIN_AREA])
27977 x_fix_overlapping_area (w, row, RIGHT_MARGIN_AREA, OVERLAPS_BOTH);
27978 row->clip = NULL;
27983 /* Return non-zero if W's cursor intersects rectangle R. */
27985 static int
27986 phys_cursor_in_rect_p (struct window *w, XRectangle *r)
27988 XRectangle cr, result;
27989 struct glyph *cursor_glyph;
27990 struct glyph_row *row;
27992 if (w->phys_cursor.vpos >= 0
27993 && w->phys_cursor.vpos < w->current_matrix->nrows
27994 && (row = MATRIX_ROW (w->current_matrix, w->phys_cursor.vpos),
27995 row->enabled_p)
27996 && row->cursor_in_fringe_p)
27998 /* Cursor is in the fringe. */
27999 cr.x = window_box_right_offset (w,
28000 (WINDOW_HAS_FRINGES_OUTSIDE_MARGINS (w)
28001 ? RIGHT_MARGIN_AREA
28002 : TEXT_AREA));
28003 cr.y = row->y;
28004 cr.width = WINDOW_RIGHT_FRINGE_WIDTH (w);
28005 cr.height = row->height;
28006 return x_intersect_rectangles (&cr, r, &result);
28009 cursor_glyph = get_phys_cursor_glyph (w);
28010 if (cursor_glyph)
28012 /* r is relative to W's box, but w->phys_cursor.x is relative
28013 to left edge of W's TEXT area. Adjust it. */
28014 cr.x = window_box_left_offset (w, TEXT_AREA) + w->phys_cursor.x;
28015 cr.y = w->phys_cursor.y;
28016 cr.width = cursor_glyph->pixel_width;
28017 cr.height = w->phys_cursor_height;
28018 /* ++KFS: W32 version used W32-specific IntersectRect here, but
28019 I assume the effect is the same -- and this is portable. */
28020 return x_intersect_rectangles (&cr, r, &result);
28022 /* If we don't understand the format, pretend we're not in the hot-spot. */
28023 return 0;
28027 /* EXPORT:
28028 Draw a vertical window border to the right of window W if W doesn't
28029 have vertical scroll bars. */
28031 void
28032 x_draw_vertical_border (struct window *w)
28034 struct frame *f = XFRAME (WINDOW_FRAME (w));
28036 /* We could do better, if we knew what type of scroll-bar the adjacent
28037 windows (on either side) have... But we don't :-(
28038 However, I think this works ok. ++KFS 2003-04-25 */
28040 /* Redraw borders between horizontally adjacent windows. Don't
28041 do it for frames with vertical scroll bars because either the
28042 right scroll bar of a window, or the left scroll bar of its
28043 neighbor will suffice as a border. */
28044 if (FRAME_HAS_VERTICAL_SCROLL_BARS (XFRAME (w->frame)))
28045 return;
28047 if (!WINDOW_RIGHTMOST_P (w)
28048 && !WINDOW_HAS_VERTICAL_SCROLL_BAR_ON_RIGHT (w))
28050 int x0, x1, y0, y1;
28052 window_box_edges (w, -1, &x0, &y0, &x1, &y1);
28053 y1 -= 1;
28055 if (WINDOW_LEFT_FRINGE_WIDTH (w) == 0)
28056 x1 -= 1;
28058 FRAME_RIF (f)->draw_vertical_window_border (w, x1, y0, y1);
28060 else if (!WINDOW_LEFTMOST_P (w)
28061 && !WINDOW_HAS_VERTICAL_SCROLL_BAR_ON_LEFT (w))
28063 int x0, x1, y0, y1;
28065 window_box_edges (w, -1, &x0, &y0, &x1, &y1);
28066 y1 -= 1;
28068 if (WINDOW_LEFT_FRINGE_WIDTH (w) == 0)
28069 x0 -= 1;
28071 FRAME_RIF (f)->draw_vertical_window_border (w, x0, y0, y1);
28076 /* Redraw the part of window W intersection rectangle FR. Pixel
28077 coordinates in FR are frame-relative. Call this function with
28078 input blocked. Value is non-zero if the exposure overwrites
28079 mouse-face. */
28081 static int
28082 expose_window (struct window *w, XRectangle *fr)
28084 struct frame *f = XFRAME (w->frame);
28085 XRectangle wr, r;
28086 int mouse_face_overwritten_p = 0;
28088 /* If window is not yet fully initialized, do nothing. This can
28089 happen when toolkit scroll bars are used and a window is split.
28090 Reconfiguring the scroll bar will generate an expose for a newly
28091 created window. */
28092 if (w->current_matrix == NULL)
28093 return 0;
28095 /* When we're currently updating the window, display and current
28096 matrix usually don't agree. Arrange for a thorough display
28097 later. */
28098 if (w == updated_window)
28100 SET_FRAME_GARBAGED (f);
28101 return 0;
28104 /* Frame-relative pixel rectangle of W. */
28105 wr.x = WINDOW_LEFT_EDGE_X (w);
28106 wr.y = WINDOW_TOP_EDGE_Y (w);
28107 wr.width = WINDOW_TOTAL_WIDTH (w);
28108 wr.height = WINDOW_TOTAL_HEIGHT (w);
28110 if (x_intersect_rectangles (fr, &wr, &r))
28112 int yb = window_text_bottom_y (w);
28113 struct glyph_row *row;
28114 int cursor_cleared_p, phys_cursor_on_p;
28115 struct glyph_row *first_overlapping_row, *last_overlapping_row;
28117 TRACE ((stderr, "expose_window (%d, %d, %d, %d)\n",
28118 r.x, r.y, r.width, r.height));
28120 /* Convert to window coordinates. */
28121 r.x -= WINDOW_LEFT_EDGE_X (w);
28122 r.y -= WINDOW_TOP_EDGE_Y (w);
28124 /* Turn off the cursor. */
28125 if (!w->pseudo_window_p
28126 && phys_cursor_in_rect_p (w, &r))
28128 x_clear_cursor (w);
28129 cursor_cleared_p = 1;
28131 else
28132 cursor_cleared_p = 0;
28134 /* If the row containing the cursor extends face to end of line,
28135 then expose_area might overwrite the cursor outside the
28136 rectangle and thus notice_overwritten_cursor might clear
28137 w->phys_cursor_on_p. We remember the original value and
28138 check later if it is changed. */
28139 phys_cursor_on_p = w->phys_cursor_on_p;
28141 /* Update lines intersecting rectangle R. */
28142 first_overlapping_row = last_overlapping_row = NULL;
28143 for (row = w->current_matrix->rows;
28144 row->enabled_p;
28145 ++row)
28147 int y0 = row->y;
28148 int y1 = MATRIX_ROW_BOTTOM_Y (row);
28150 if ((y0 >= r.y && y0 < r.y + r.height)
28151 || (y1 > r.y && y1 < r.y + r.height)
28152 || (r.y >= y0 && r.y < y1)
28153 || (r.y + r.height > y0 && r.y + r.height < y1))
28155 /* A header line may be overlapping, but there is no need
28156 to fix overlapping areas for them. KFS 2005-02-12 */
28157 if (row->overlapping_p && !row->mode_line_p)
28159 if (first_overlapping_row == NULL)
28160 first_overlapping_row = row;
28161 last_overlapping_row = row;
28164 row->clip = fr;
28165 if (expose_line (w, row, &r))
28166 mouse_face_overwritten_p = 1;
28167 row->clip = NULL;
28169 else if (row->overlapping_p)
28171 /* We must redraw a row overlapping the exposed area. */
28172 if (y0 < r.y
28173 ? y0 + row->phys_height > r.y
28174 : y0 + row->ascent - row->phys_ascent < r.y +r.height)
28176 if (first_overlapping_row == NULL)
28177 first_overlapping_row = row;
28178 last_overlapping_row = row;
28182 if (y1 >= yb)
28183 break;
28186 /* Display the mode line if there is one. */
28187 if (WINDOW_WANTS_MODELINE_P (w)
28188 && (row = MATRIX_MODE_LINE_ROW (w->current_matrix),
28189 row->enabled_p)
28190 && row->y < r.y + r.height)
28192 if (expose_line (w, row, &r))
28193 mouse_face_overwritten_p = 1;
28196 if (!w->pseudo_window_p)
28198 /* Fix the display of overlapping rows. */
28199 if (first_overlapping_row)
28200 expose_overlaps (w, first_overlapping_row, last_overlapping_row,
28201 fr);
28203 /* Draw border between windows. */
28204 x_draw_vertical_border (w);
28206 /* Turn the cursor on again. */
28207 if (cursor_cleared_p
28208 || (phys_cursor_on_p && !w->phys_cursor_on_p))
28209 update_window_cursor (w, 1);
28213 return mouse_face_overwritten_p;
28218 /* Redraw (parts) of all windows in the window tree rooted at W that
28219 intersect R. R contains frame pixel coordinates. Value is
28220 non-zero if the exposure overwrites mouse-face. */
28222 static int
28223 expose_window_tree (struct window *w, XRectangle *r)
28225 struct frame *f = XFRAME (w->frame);
28226 int mouse_face_overwritten_p = 0;
28228 while (w && !FRAME_GARBAGED_P (f))
28230 if (!NILP (w->hchild))
28231 mouse_face_overwritten_p
28232 |= expose_window_tree (XWINDOW (w->hchild), r);
28233 else if (!NILP (w->vchild))
28234 mouse_face_overwritten_p
28235 |= expose_window_tree (XWINDOW (w->vchild), r);
28236 else
28237 mouse_face_overwritten_p |= expose_window (w, r);
28239 w = NILP (w->next) ? NULL : XWINDOW (w->next);
28242 return mouse_face_overwritten_p;
28246 /* EXPORT:
28247 Redisplay an exposed area of frame F. X and Y are the upper-left
28248 corner of the exposed rectangle. W and H are width and height of
28249 the exposed area. All are pixel values. W or H zero means redraw
28250 the entire frame. */
28252 void
28253 expose_frame (struct frame *f, int x, int y, int w, int h)
28255 XRectangle r;
28256 int mouse_face_overwritten_p = 0;
28258 TRACE ((stderr, "expose_frame "));
28260 /* No need to redraw if frame will be redrawn soon. */
28261 if (FRAME_GARBAGED_P (f))
28263 TRACE ((stderr, " garbaged\n"));
28264 return;
28267 /* If basic faces haven't been realized yet, there is no point in
28268 trying to redraw anything. This can happen when we get an expose
28269 event while Emacs is starting, e.g. by moving another window. */
28270 if (FRAME_FACE_CACHE (f) == NULL
28271 || FRAME_FACE_CACHE (f)->used < BASIC_FACE_ID_SENTINEL)
28273 TRACE ((stderr, " no faces\n"));
28274 return;
28277 if (w == 0 || h == 0)
28279 r.x = r.y = 0;
28280 r.width = FRAME_COLUMN_WIDTH (f) * FRAME_COLS (f);
28281 r.height = FRAME_LINE_HEIGHT (f) * FRAME_LINES (f);
28283 else
28285 r.x = x;
28286 r.y = y;
28287 r.width = w;
28288 r.height = h;
28291 TRACE ((stderr, "(%d, %d, %d, %d)\n", r.x, r.y, r.width, r.height));
28292 mouse_face_overwritten_p = expose_window_tree (XWINDOW (f->root_window), &r);
28294 if (WINDOWP (f->tool_bar_window))
28295 mouse_face_overwritten_p
28296 |= expose_window (XWINDOW (f->tool_bar_window), &r);
28298 #ifdef HAVE_X_WINDOWS
28299 #ifndef MSDOS
28300 #ifndef USE_X_TOOLKIT
28301 if (WINDOWP (f->menu_bar_window))
28302 mouse_face_overwritten_p
28303 |= expose_window (XWINDOW (f->menu_bar_window), &r);
28304 #endif /* not USE_X_TOOLKIT */
28305 #endif
28306 #endif
28308 /* Some window managers support a focus-follows-mouse style with
28309 delayed raising of frames. Imagine a partially obscured frame,
28310 and moving the mouse into partially obscured mouse-face on that
28311 frame. The visible part of the mouse-face will be highlighted,
28312 then the WM raises the obscured frame. With at least one WM, KDE
28313 2.1, Emacs is not getting any event for the raising of the frame
28314 (even tried with SubstructureRedirectMask), only Expose events.
28315 These expose events will draw text normally, i.e. not
28316 highlighted. Which means we must redo the highlight here.
28317 Subsume it under ``we love X''. --gerd 2001-08-15 */
28318 /* Included in Windows version because Windows most likely does not
28319 do the right thing if any third party tool offers
28320 focus-follows-mouse with delayed raise. --jason 2001-10-12 */
28321 if (mouse_face_overwritten_p && !FRAME_GARBAGED_P (f))
28323 Mouse_HLInfo *hlinfo = MOUSE_HL_INFO (f);
28324 if (f == hlinfo->mouse_face_mouse_frame)
28326 int mouse_x = hlinfo->mouse_face_mouse_x;
28327 int mouse_y = hlinfo->mouse_face_mouse_y;
28328 clear_mouse_face (hlinfo);
28329 note_mouse_highlight (f, mouse_x, mouse_y);
28335 /* EXPORT:
28336 Determine the intersection of two rectangles R1 and R2. Return
28337 the intersection in *RESULT. Value is non-zero if RESULT is not
28338 empty. */
28341 x_intersect_rectangles (XRectangle *r1, XRectangle *r2, XRectangle *result)
28343 XRectangle *left, *right;
28344 XRectangle *upper, *lower;
28345 int intersection_p = 0;
28347 /* Rearrange so that R1 is the left-most rectangle. */
28348 if (r1->x < r2->x)
28349 left = r1, right = r2;
28350 else
28351 left = r2, right = r1;
28353 /* X0 of the intersection is right.x0, if this is inside R1,
28354 otherwise there is no intersection. */
28355 if (right->x <= left->x + left->width)
28357 result->x = right->x;
28359 /* The right end of the intersection is the minimum of
28360 the right ends of left and right. */
28361 result->width = (min (left->x + left->width, right->x + right->width)
28362 - result->x);
28364 /* Same game for Y. */
28365 if (r1->y < r2->y)
28366 upper = r1, lower = r2;
28367 else
28368 upper = r2, lower = r1;
28370 /* The upper end of the intersection is lower.y0, if this is inside
28371 of upper. Otherwise, there is no intersection. */
28372 if (lower->y <= upper->y + upper->height)
28374 result->y = lower->y;
28376 /* The lower end of the intersection is the minimum of the lower
28377 ends of upper and lower. */
28378 result->height = (min (lower->y + lower->height,
28379 upper->y + upper->height)
28380 - result->y);
28381 intersection_p = 1;
28385 return intersection_p;
28388 #endif /* HAVE_WINDOW_SYSTEM */
28391 /***********************************************************************
28392 Initialization
28393 ***********************************************************************/
28395 void
28396 syms_of_xdisp (void)
28398 Vwith_echo_area_save_vector = Qnil;
28399 staticpro (&Vwith_echo_area_save_vector);
28401 Vmessage_stack = Qnil;
28402 staticpro (&Vmessage_stack);
28404 DEFSYM (Qinhibit_redisplay, "inhibit-redisplay");
28406 message_dolog_marker1 = Fmake_marker ();
28407 staticpro (&message_dolog_marker1);
28408 message_dolog_marker2 = Fmake_marker ();
28409 staticpro (&message_dolog_marker2);
28410 message_dolog_marker3 = Fmake_marker ();
28411 staticpro (&message_dolog_marker3);
28413 #if GLYPH_DEBUG
28414 defsubr (&Sdump_frame_glyph_matrix);
28415 defsubr (&Sdump_glyph_matrix);
28416 defsubr (&Sdump_glyph_row);
28417 defsubr (&Sdump_tool_bar_row);
28418 defsubr (&Strace_redisplay);
28419 defsubr (&Strace_to_stderr);
28420 #endif
28421 #ifdef HAVE_WINDOW_SYSTEM
28422 defsubr (&Stool_bar_lines_needed);
28423 defsubr (&Slookup_image_map);
28424 #endif
28425 defsubr (&Sformat_mode_line);
28426 defsubr (&Sinvisible_p);
28427 defsubr (&Scurrent_bidi_paragraph_direction);
28429 DEFSYM (Qmenu_bar_update_hook, "menu-bar-update-hook");
28430 DEFSYM (Qoverriding_terminal_local_map, "overriding-terminal-local-map");
28431 DEFSYM (Qoverriding_local_map, "overriding-local-map");
28432 DEFSYM (Qwindow_scroll_functions, "window-scroll-functions");
28433 DEFSYM (Qwindow_text_change_functions, "window-text-change-functions");
28434 DEFSYM (Qredisplay_end_trigger_functions, "redisplay-end-trigger-functions");
28435 DEFSYM (Qinhibit_point_motion_hooks, "inhibit-point-motion-hooks");
28436 DEFSYM (Qeval, "eval");
28437 DEFSYM (QCdata, ":data");
28438 DEFSYM (Qdisplay, "display");
28439 DEFSYM (Qspace_width, "space-width");
28440 DEFSYM (Qraise, "raise");
28441 DEFSYM (Qslice, "slice");
28442 DEFSYM (Qspace, "space");
28443 DEFSYM (Qmargin, "margin");
28444 DEFSYM (Qpointer, "pointer");
28445 DEFSYM (Qleft_margin, "left-margin");
28446 DEFSYM (Qright_margin, "right-margin");
28447 DEFSYM (Qcenter, "center");
28448 DEFSYM (Qline_height, "line-height");
28449 DEFSYM (QCalign_to, ":align-to");
28450 DEFSYM (QCrelative_width, ":relative-width");
28451 DEFSYM (QCrelative_height, ":relative-height");
28452 DEFSYM (QCeval, ":eval");
28453 DEFSYM (QCpropertize, ":propertize");
28454 DEFSYM (QCfile, ":file");
28455 DEFSYM (Qfontified, "fontified");
28456 DEFSYM (Qfontification_functions, "fontification-functions");
28457 DEFSYM (Qtrailing_whitespace, "trailing-whitespace");
28458 DEFSYM (Qescape_glyph, "escape-glyph");
28459 DEFSYM (Qnobreak_space, "nobreak-space");
28460 DEFSYM (Qimage, "image");
28461 DEFSYM (Qtext, "text");
28462 DEFSYM (Qboth, "both");
28463 DEFSYM (Qboth_horiz, "both-horiz");
28464 DEFSYM (Qtext_image_horiz, "text-image-horiz");
28465 DEFSYM (QCmap, ":map");
28466 DEFSYM (QCpointer, ":pointer");
28467 DEFSYM (Qrect, "rect");
28468 DEFSYM (Qcircle, "circle");
28469 DEFSYM (Qpoly, "poly");
28470 DEFSYM (Qmessage_truncate_lines, "message-truncate-lines");
28471 DEFSYM (Qgrow_only, "grow-only");
28472 DEFSYM (Qinhibit_menubar_update, "inhibit-menubar-update");
28473 DEFSYM (Qinhibit_eval_during_redisplay, "inhibit-eval-during-redisplay");
28474 DEFSYM (Qposition, "position");
28475 DEFSYM (Qbuffer_position, "buffer-position");
28476 DEFSYM (Qobject, "object");
28477 DEFSYM (Qbar, "bar");
28478 DEFSYM (Qhbar, "hbar");
28479 DEFSYM (Qbox, "box");
28480 DEFSYM (Qhollow, "hollow");
28481 DEFSYM (Qhand, "hand");
28482 DEFSYM (Qarrow, "arrow");
28483 DEFSYM (Qinhibit_free_realized_faces, "inhibit-free-realized-faces");
28485 list_of_error = Fcons (Fcons (intern_c_string ("error"),
28486 Fcons (intern_c_string ("void-variable"), Qnil)),
28487 Qnil);
28488 staticpro (&list_of_error);
28490 DEFSYM (Qlast_arrow_position, "last-arrow-position");
28491 DEFSYM (Qlast_arrow_string, "last-arrow-string");
28492 DEFSYM (Qoverlay_arrow_string, "overlay-arrow-string");
28493 DEFSYM (Qoverlay_arrow_bitmap, "overlay-arrow-bitmap");
28495 echo_buffer[0] = echo_buffer[1] = Qnil;
28496 staticpro (&echo_buffer[0]);
28497 staticpro (&echo_buffer[1]);
28499 echo_area_buffer[0] = echo_area_buffer[1] = Qnil;
28500 staticpro (&echo_area_buffer[0]);
28501 staticpro (&echo_area_buffer[1]);
28503 Vmessages_buffer_name = make_pure_c_string ("*Messages*");
28504 staticpro (&Vmessages_buffer_name);
28506 mode_line_proptrans_alist = Qnil;
28507 staticpro (&mode_line_proptrans_alist);
28508 mode_line_string_list = Qnil;
28509 staticpro (&mode_line_string_list);
28510 mode_line_string_face = Qnil;
28511 staticpro (&mode_line_string_face);
28512 mode_line_string_face_prop = Qnil;
28513 staticpro (&mode_line_string_face_prop);
28514 Vmode_line_unwind_vector = Qnil;
28515 staticpro (&Vmode_line_unwind_vector);
28517 DEFSYM (Qmode_line_default_help_echo, "mode-line-default-help-echo");
28519 help_echo_string = Qnil;
28520 staticpro (&help_echo_string);
28521 help_echo_object = Qnil;
28522 staticpro (&help_echo_object);
28523 help_echo_window = Qnil;
28524 staticpro (&help_echo_window);
28525 previous_help_echo_string = Qnil;
28526 staticpro (&previous_help_echo_string);
28527 help_echo_pos = -1;
28529 DEFSYM (Qright_to_left, "right-to-left");
28530 DEFSYM (Qleft_to_right, "left-to-right");
28532 #ifdef HAVE_WINDOW_SYSTEM
28533 DEFVAR_BOOL ("x-stretch-cursor", x_stretch_cursor_p,
28534 doc: /* Non-nil means draw block cursor as wide as the glyph under it.
28535 For example, if a block cursor is over a tab, it will be drawn as
28536 wide as that tab on the display. */);
28537 x_stretch_cursor_p = 0;
28538 #endif
28540 DEFVAR_LISP ("show-trailing-whitespace", Vshow_trailing_whitespace,
28541 doc: /* Non-nil means highlight trailing whitespace.
28542 The face used for trailing whitespace is `trailing-whitespace'. */);
28543 Vshow_trailing_whitespace = Qnil;
28545 DEFVAR_LISP ("nobreak-char-display", Vnobreak_char_display,
28546 doc: /* Control highlighting of non-ASCII space and hyphen chars.
28547 If the value is t, Emacs highlights non-ASCII chars which have the
28548 same appearance as an ASCII space or hyphen, using the `nobreak-space'
28549 or `escape-glyph' face respectively.
28551 U+00A0 (no-break space), U+00AD (soft hyphen), U+2010 (hyphen), and
28552 U+2011 (non-breaking hyphen) are affected.
28554 Any other non-nil value means to display these characters as a escape
28555 glyph followed by an ordinary space or hyphen.
28557 A value of nil means no special handling of these characters. */);
28558 Vnobreak_char_display = Qt;
28560 DEFVAR_LISP ("void-text-area-pointer", Vvoid_text_area_pointer,
28561 doc: /* The pointer shape to show in void text areas.
28562 A value of nil means to show the text pointer. Other options are `arrow',
28563 `text', `hand', `vdrag', `hdrag', `modeline', and `hourglass'. */);
28564 Vvoid_text_area_pointer = Qarrow;
28566 DEFVAR_LISP ("inhibit-redisplay", Vinhibit_redisplay,
28567 doc: /* Non-nil means don't actually do any redisplay.
28568 This is used for internal purposes. */);
28569 Vinhibit_redisplay = Qnil;
28571 DEFVAR_LISP ("global-mode-string", Vglobal_mode_string,
28572 doc: /* String (or mode line construct) included (normally) in `mode-line-format'. */);
28573 Vglobal_mode_string = Qnil;
28575 DEFVAR_LISP ("overlay-arrow-position", Voverlay_arrow_position,
28576 doc: /* Marker for where to display an arrow on top of the buffer text.
28577 This must be the beginning of a line in order to work.
28578 See also `overlay-arrow-string'. */);
28579 Voverlay_arrow_position = Qnil;
28581 DEFVAR_LISP ("overlay-arrow-string", Voverlay_arrow_string,
28582 doc: /* String to display as an arrow in non-window frames.
28583 See also `overlay-arrow-position'. */);
28584 Voverlay_arrow_string = make_pure_c_string ("=>");
28586 DEFVAR_LISP ("overlay-arrow-variable-list", Voverlay_arrow_variable_list,
28587 doc: /* List of variables (symbols) which hold markers for overlay arrows.
28588 The symbols on this list are examined during redisplay to determine
28589 where to display overlay arrows. */);
28590 Voverlay_arrow_variable_list
28591 = Fcons (intern_c_string ("overlay-arrow-position"), Qnil);
28593 DEFVAR_INT ("scroll-step", emacs_scroll_step,
28594 doc: /* The number of lines to try scrolling a window by when point moves out.
28595 If that fails to bring point back on frame, point is centered instead.
28596 If this is zero, point is always centered after it moves off frame.
28597 If you want scrolling to always be a line at a time, you should set
28598 `scroll-conservatively' to a large value rather than set this to 1. */);
28600 DEFVAR_INT ("scroll-conservatively", scroll_conservatively,
28601 doc: /* Scroll up to this many lines, to bring point back on screen.
28602 If point moves off-screen, redisplay will scroll by up to
28603 `scroll-conservatively' lines in order to bring point just barely
28604 onto the screen again. If that cannot be done, then redisplay
28605 recenters point as usual.
28607 If the value is greater than 100, redisplay will never recenter point,
28608 but will always scroll just enough text to bring point into view, even
28609 if you move far away.
28611 A value of zero means always recenter point if it moves off screen. */);
28612 scroll_conservatively = 0;
28614 DEFVAR_INT ("scroll-margin", scroll_margin,
28615 doc: /* Number of lines of margin at the top and bottom of a window.
28616 Recenter the window whenever point gets within this many lines
28617 of the top or bottom of the window. */);
28618 scroll_margin = 0;
28620 DEFVAR_LISP ("display-pixels-per-inch", Vdisplay_pixels_per_inch,
28621 doc: /* Pixels per inch value for non-window system displays.
28622 Value is a number or a cons (WIDTH-DPI . HEIGHT-DPI). */);
28623 Vdisplay_pixels_per_inch = make_float (72.0);
28625 #if GLYPH_DEBUG
28626 DEFVAR_INT ("debug-end-pos", debug_end_pos, doc: /* Don't ask. */);
28627 #endif
28629 DEFVAR_LISP ("truncate-partial-width-windows",
28630 Vtruncate_partial_width_windows,
28631 doc: /* Non-nil means truncate lines in windows narrower than the frame.
28632 For an integer value, truncate lines in each window narrower than the
28633 full frame width, provided the window width is less than that integer;
28634 otherwise, respect the value of `truncate-lines'.
28636 For any other non-nil value, truncate lines in all windows that do
28637 not span the full frame width.
28639 A value of nil means to respect the value of `truncate-lines'.
28641 If `word-wrap' is enabled, you might want to reduce this. */);
28642 Vtruncate_partial_width_windows = make_number (50);
28644 DEFVAR_BOOL ("mode-line-inverse-video", mode_line_inverse_video,
28645 doc: /* When nil, display the mode-line/header-line/menu-bar in the default face.
28646 Any other value means to use the appropriate face, `mode-line',
28647 `header-line', or `menu' respectively. */);
28648 mode_line_inverse_video = 1;
28650 DEFVAR_LISP ("line-number-display-limit", Vline_number_display_limit,
28651 doc: /* Maximum buffer size for which line number should be displayed.
28652 If the buffer is bigger than this, the line number does not appear
28653 in the mode line. A value of nil means no limit. */);
28654 Vline_number_display_limit = Qnil;
28656 DEFVAR_INT ("line-number-display-limit-width",
28657 line_number_display_limit_width,
28658 doc: /* Maximum line width (in characters) for line number display.
28659 If the average length of the lines near point is bigger than this, then the
28660 line number may be omitted from the mode line. */);
28661 line_number_display_limit_width = 200;
28663 DEFVAR_BOOL ("highlight-nonselected-windows", highlight_nonselected_windows,
28664 doc: /* Non-nil means highlight region even in nonselected windows. */);
28665 highlight_nonselected_windows = 0;
28667 DEFVAR_BOOL ("multiple-frames", multiple_frames,
28668 doc: /* Non-nil if more than one frame is visible on this display.
28669 Minibuffer-only frames don't count, but iconified frames do.
28670 This variable is not guaranteed to be accurate except while processing
28671 `frame-title-format' and `icon-title-format'. */);
28673 DEFVAR_LISP ("frame-title-format", Vframe_title_format,
28674 doc: /* Template for displaying the title bar of visible frames.
28675 \(Assuming the window manager supports this feature.)
28677 This variable has the same structure as `mode-line-format', except that
28678 the %c and %l constructs are ignored. It is used only on frames for
28679 which no explicit name has been set \(see `modify-frame-parameters'). */);
28681 DEFVAR_LISP ("icon-title-format", Vicon_title_format,
28682 doc: /* Template for displaying the title bar of an iconified frame.
28683 \(Assuming the window manager supports this feature.)
28684 This variable has the same structure as `mode-line-format' (which see),
28685 and is used only on frames for which no explicit name has been set
28686 \(see `modify-frame-parameters'). */);
28687 Vicon_title_format
28688 = Vframe_title_format
28689 = pure_cons (intern_c_string ("multiple-frames"),
28690 pure_cons (make_pure_c_string ("%b"),
28691 pure_cons (pure_cons (empty_unibyte_string,
28692 pure_cons (intern_c_string ("invocation-name"),
28693 pure_cons (make_pure_c_string ("@"),
28694 pure_cons (intern_c_string ("system-name"),
28695 Qnil)))),
28696 Qnil)));
28698 DEFVAR_LISP ("message-log-max", Vmessage_log_max,
28699 doc: /* Maximum number of lines to keep in the message log buffer.
28700 If nil, disable message logging. If t, log messages but don't truncate
28701 the buffer when it becomes large. */);
28702 Vmessage_log_max = make_number (100);
28704 DEFVAR_LISP ("window-size-change-functions", Vwindow_size_change_functions,
28705 doc: /* Functions called before redisplay, if window sizes have changed.
28706 The value should be a list of functions that take one argument.
28707 Just before redisplay, for each frame, if any of its windows have changed
28708 size since the last redisplay, or have been split or deleted,
28709 all the functions in the list are called, with the frame as argument. */);
28710 Vwindow_size_change_functions = Qnil;
28712 DEFVAR_LISP ("window-scroll-functions", Vwindow_scroll_functions,
28713 doc: /* List of functions to call before redisplaying a window with scrolling.
28714 Each function is called with two arguments, the window and its new
28715 display-start position. Note that these functions are also called by
28716 `set-window-buffer'. Also note that the value of `window-end' is not
28717 valid when these functions are called.
28719 Warning: Do not use this feature to alter the way the window
28720 is scrolled. It is not designed for that, and such use probably won't
28721 work. */);
28722 Vwindow_scroll_functions = Qnil;
28724 DEFVAR_LISP ("window-text-change-functions",
28725 Vwindow_text_change_functions,
28726 doc: /* Functions to call in redisplay when text in the window might change. */);
28727 Vwindow_text_change_functions = Qnil;
28729 DEFVAR_LISP ("redisplay-end-trigger-functions", Vredisplay_end_trigger_functions,
28730 doc: /* Functions called when redisplay of a window reaches the end trigger.
28731 Each function is called with two arguments, the window and the end trigger value.
28732 See `set-window-redisplay-end-trigger'. */);
28733 Vredisplay_end_trigger_functions = Qnil;
28735 DEFVAR_LISP ("mouse-autoselect-window", Vmouse_autoselect_window,
28736 doc: /* Non-nil means autoselect window with mouse pointer.
28737 If nil, do not autoselect windows.
28738 A positive number means delay autoselection by that many seconds: a
28739 window is autoselected only after the mouse has remained in that
28740 window for the duration of the delay.
28741 A negative number has a similar effect, but causes windows to be
28742 autoselected only after the mouse has stopped moving. \(Because of
28743 the way Emacs compares mouse events, you will occasionally wait twice
28744 that time before the window gets selected.\)
28745 Any other value means to autoselect window instantaneously when the
28746 mouse pointer enters it.
28748 Autoselection selects the minibuffer only if it is active, and never
28749 unselects the minibuffer if it is active.
28751 When customizing this variable make sure that the actual value of
28752 `focus-follows-mouse' matches the behavior of your window manager. */);
28753 Vmouse_autoselect_window = Qnil;
28755 DEFVAR_LISP ("auto-resize-tool-bars", Vauto_resize_tool_bars,
28756 doc: /* Non-nil means automatically resize tool-bars.
28757 This dynamically changes the tool-bar's height to the minimum height
28758 that is needed to make all tool-bar items visible.
28759 If value is `grow-only', the tool-bar's height is only increased
28760 automatically; to decrease the tool-bar height, use \\[recenter]. */);
28761 Vauto_resize_tool_bars = Qt;
28763 DEFVAR_BOOL ("auto-raise-tool-bar-buttons", auto_raise_tool_bar_buttons_p,
28764 doc: /* Non-nil means raise tool-bar buttons when the mouse moves over them. */);
28765 auto_raise_tool_bar_buttons_p = 1;
28767 DEFVAR_BOOL ("make-cursor-line-fully-visible", make_cursor_line_fully_visible_p,
28768 doc: /* Non-nil means to scroll (recenter) cursor line if it is not fully visible. */);
28769 make_cursor_line_fully_visible_p = 1;
28771 DEFVAR_LISP ("tool-bar-border", Vtool_bar_border,
28772 doc: /* Border below tool-bar in pixels.
28773 If an integer, use it as the height of the border.
28774 If it is one of `internal-border-width' or `border-width', use the
28775 value of the corresponding frame parameter.
28776 Otherwise, no border is added below the tool-bar. */);
28777 Vtool_bar_border = Qinternal_border_width;
28779 DEFVAR_LISP ("tool-bar-button-margin", Vtool_bar_button_margin,
28780 doc: /* Margin around tool-bar buttons in pixels.
28781 If an integer, use that for both horizontal and vertical margins.
28782 Otherwise, value should be a pair of integers `(HORZ . VERT)' with
28783 HORZ specifying the horizontal margin, and VERT specifying the
28784 vertical margin. */);
28785 Vtool_bar_button_margin = make_number (DEFAULT_TOOL_BAR_BUTTON_MARGIN);
28787 DEFVAR_INT ("tool-bar-button-relief", tool_bar_button_relief,
28788 doc: /* Relief thickness of tool-bar buttons. */);
28789 tool_bar_button_relief = DEFAULT_TOOL_BAR_BUTTON_RELIEF;
28791 DEFVAR_LISP ("tool-bar-style", Vtool_bar_style,
28792 doc: /* Tool bar style to use.
28793 It can be one of
28794 image - show images only
28795 text - show text only
28796 both - show both, text below image
28797 both-horiz - show text to the right of the image
28798 text-image-horiz - show text to the left of the image
28799 any other - use system default or image if no system default.
28801 This variable only affects the GTK+ toolkit version of Emacs. */);
28802 Vtool_bar_style = Qnil;
28804 DEFVAR_INT ("tool-bar-max-label-size", tool_bar_max_label_size,
28805 doc: /* Maximum number of characters a label can have to be shown.
28806 The tool bar style must also show labels for this to have any effect, see
28807 `tool-bar-style'. */);
28808 tool_bar_max_label_size = DEFAULT_TOOL_BAR_LABEL_SIZE;
28810 DEFVAR_LISP ("fontification-functions", Vfontification_functions,
28811 doc: /* List of functions to call to fontify regions of text.
28812 Each function is called with one argument POS. Functions must
28813 fontify a region starting at POS in the current buffer, and give
28814 fontified regions the property `fontified'. */);
28815 Vfontification_functions = Qnil;
28816 Fmake_variable_buffer_local (Qfontification_functions);
28818 DEFVAR_BOOL ("unibyte-display-via-language-environment",
28819 unibyte_display_via_language_environment,
28820 doc: /* Non-nil means display unibyte text according to language environment.
28821 Specifically, this means that raw bytes in the range 160-255 decimal
28822 are displayed by converting them to the equivalent multibyte characters
28823 according to the current language environment. As a result, they are
28824 displayed according to the current fontset.
28826 Note that this variable affects only how these bytes are displayed,
28827 but does not change the fact they are interpreted as raw bytes. */);
28828 unibyte_display_via_language_environment = 0;
28830 DEFVAR_LISP ("max-mini-window-height", Vmax_mini_window_height,
28831 doc: /* Maximum height for resizing mini-windows (the minibuffer and the echo area).
28832 If a float, it specifies a fraction of the mini-window frame's height.
28833 If an integer, it specifies a number of lines. */);
28834 Vmax_mini_window_height = make_float (0.25);
28836 DEFVAR_LISP ("resize-mini-windows", Vresize_mini_windows,
28837 doc: /* How to resize mini-windows (the minibuffer and the echo area).
28838 A value of nil means don't automatically resize mini-windows.
28839 A value of t means resize them to fit the text displayed in them.
28840 A value of `grow-only', the default, means let mini-windows grow only;
28841 they return to their normal size when the minibuffer is closed, or the
28842 echo area becomes empty. */);
28843 Vresize_mini_windows = Qgrow_only;
28845 DEFVAR_LISP ("blink-cursor-alist", Vblink_cursor_alist,
28846 doc: /* Alist specifying how to blink the cursor off.
28847 Each element has the form (ON-STATE . OFF-STATE). Whenever the
28848 `cursor-type' frame-parameter or variable equals ON-STATE,
28849 comparing using `equal', Emacs uses OFF-STATE to specify
28850 how to blink it off. ON-STATE and OFF-STATE are values for
28851 the `cursor-type' frame parameter.
28853 If a frame's ON-STATE has no entry in this list,
28854 the frame's other specifications determine how to blink the cursor off. */);
28855 Vblink_cursor_alist = Qnil;
28857 DEFVAR_BOOL ("auto-hscroll-mode", automatic_hscrolling_p,
28858 doc: /* Allow or disallow automatic horizontal scrolling of windows.
28859 If non-nil, windows are automatically scrolled horizontally to make
28860 point visible. */);
28861 automatic_hscrolling_p = 1;
28862 DEFSYM (Qauto_hscroll_mode, "auto-hscroll-mode");
28864 DEFVAR_INT ("hscroll-margin", hscroll_margin,
28865 doc: /* How many columns away from the window edge point is allowed to get
28866 before automatic hscrolling will horizontally scroll the window. */);
28867 hscroll_margin = 5;
28869 DEFVAR_LISP ("hscroll-step", Vhscroll_step,
28870 doc: /* How many columns to scroll the window when point gets too close to the edge.
28871 When point is less than `hscroll-margin' columns from the window
28872 edge, automatic hscrolling will scroll the window by the amount of columns
28873 determined by this variable. If its value is a positive integer, scroll that
28874 many columns. If it's a positive floating-point number, it specifies the
28875 fraction of the window's width to scroll. If it's nil or zero, point will be
28876 centered horizontally after the scroll. Any other value, including negative
28877 numbers, are treated as if the value were zero.
28879 Automatic hscrolling always moves point outside the scroll margin, so if
28880 point was more than scroll step columns inside the margin, the window will
28881 scroll more than the value given by the scroll step.
28883 Note that the lower bound for automatic hscrolling specified by `scroll-left'
28884 and `scroll-right' overrides this variable's effect. */);
28885 Vhscroll_step = make_number (0);
28887 DEFVAR_BOOL ("message-truncate-lines", message_truncate_lines,
28888 doc: /* If non-nil, messages are truncated instead of resizing the echo area.
28889 Bind this around calls to `message' to let it take effect. */);
28890 message_truncate_lines = 0;
28892 DEFVAR_LISP ("menu-bar-update-hook", Vmenu_bar_update_hook,
28893 doc: /* Normal hook run to update the menu bar definitions.
28894 Redisplay runs this hook before it redisplays the menu bar.
28895 This is used to update submenus such as Buffers,
28896 whose contents depend on various data. */);
28897 Vmenu_bar_update_hook = Qnil;
28899 DEFVAR_LISP ("menu-updating-frame", Vmenu_updating_frame,
28900 doc: /* Frame for which we are updating a menu.
28901 The enable predicate for a menu binding should check this variable. */);
28902 Vmenu_updating_frame = Qnil;
28904 DEFVAR_BOOL ("inhibit-menubar-update", inhibit_menubar_update,
28905 doc: /* Non-nil means don't update menu bars. Internal use only. */);
28906 inhibit_menubar_update = 0;
28908 DEFVAR_LISP ("wrap-prefix", Vwrap_prefix,
28909 doc: /* Prefix prepended to all continuation lines at display time.
28910 The value may be a string, an image, or a stretch-glyph; it is
28911 interpreted in the same way as the value of a `display' text property.
28913 This variable is overridden by any `wrap-prefix' text or overlay
28914 property.
28916 To add a prefix to non-continuation lines, use `line-prefix'. */);
28917 Vwrap_prefix = Qnil;
28918 DEFSYM (Qwrap_prefix, "wrap-prefix");
28919 Fmake_variable_buffer_local (Qwrap_prefix);
28921 DEFVAR_LISP ("line-prefix", Vline_prefix,
28922 doc: /* Prefix prepended to all non-continuation lines at display time.
28923 The value may be a string, an image, or a stretch-glyph; it is
28924 interpreted in the same way as the value of a `display' text property.
28926 This variable is overridden by any `line-prefix' text or overlay
28927 property.
28929 To add a prefix to continuation lines, use `wrap-prefix'. */);
28930 Vline_prefix = Qnil;
28931 DEFSYM (Qline_prefix, "line-prefix");
28932 Fmake_variable_buffer_local (Qline_prefix);
28934 DEFVAR_BOOL ("inhibit-eval-during-redisplay", inhibit_eval_during_redisplay,
28935 doc: /* Non-nil means don't eval Lisp during redisplay. */);
28936 inhibit_eval_during_redisplay = 0;
28938 DEFVAR_BOOL ("inhibit-free-realized-faces", inhibit_free_realized_faces,
28939 doc: /* Non-nil means don't free realized faces. Internal use only. */);
28940 inhibit_free_realized_faces = 0;
28942 #if GLYPH_DEBUG
28943 DEFVAR_BOOL ("inhibit-try-window-id", inhibit_try_window_id,
28944 doc: /* Inhibit try_window_id display optimization. */);
28945 inhibit_try_window_id = 0;
28947 DEFVAR_BOOL ("inhibit-try-window-reusing", inhibit_try_window_reusing,
28948 doc: /* Inhibit try_window_reusing display optimization. */);
28949 inhibit_try_window_reusing = 0;
28951 DEFVAR_BOOL ("inhibit-try-cursor-movement", inhibit_try_cursor_movement,
28952 doc: /* Inhibit try_cursor_movement display optimization. */);
28953 inhibit_try_cursor_movement = 0;
28954 #endif /* GLYPH_DEBUG */
28956 DEFVAR_INT ("overline-margin", overline_margin,
28957 doc: /* Space between overline and text, in pixels.
28958 The default value is 2: the height of the overline (1 pixel) plus 1 pixel
28959 margin to the character height. */);
28960 overline_margin = 2;
28962 DEFVAR_INT ("underline-minimum-offset",
28963 underline_minimum_offset,
28964 doc: /* Minimum distance between baseline and underline.
28965 This can improve legibility of underlined text at small font sizes,
28966 particularly when using variable `x-use-underline-position-properties'
28967 with fonts that specify an UNDERLINE_POSITION relatively close to the
28968 baseline. The default value is 1. */);
28969 underline_minimum_offset = 1;
28971 DEFVAR_BOOL ("display-hourglass", display_hourglass_p,
28972 doc: /* Non-nil means show an hourglass pointer, when Emacs is busy.
28973 This feature only works when on a window system that can change
28974 cursor shapes. */);
28975 display_hourglass_p = 1;
28977 DEFVAR_LISP ("hourglass-delay", Vhourglass_delay,
28978 doc: /* Seconds to wait before displaying an hourglass pointer when Emacs is busy. */);
28979 Vhourglass_delay = make_number (DEFAULT_HOURGLASS_DELAY);
28981 hourglass_atimer = NULL;
28982 hourglass_shown_p = 0;
28984 DEFSYM (Qglyphless_char, "glyphless-char");
28985 DEFSYM (Qhex_code, "hex-code");
28986 DEFSYM (Qempty_box, "empty-box");
28987 DEFSYM (Qthin_space, "thin-space");
28988 DEFSYM (Qzero_width, "zero-width");
28990 DEFSYM (Qglyphless_char_display, "glyphless-char-display");
28991 /* Intern this now in case it isn't already done.
28992 Setting this variable twice is harmless.
28993 But don't staticpro it here--that is done in alloc.c. */
28994 Qchar_table_extra_slots = intern_c_string ("char-table-extra-slots");
28995 Fput (Qglyphless_char_display, Qchar_table_extra_slots, make_number (1));
28997 DEFVAR_LISP ("glyphless-char-display", Vglyphless_char_display,
28998 doc: /* Char-table defining glyphless characters.
28999 Each element, if non-nil, should be one of the following:
29000 an ASCII acronym string: display this string in a box
29001 `hex-code': display the hexadecimal code of a character in a box
29002 `empty-box': display as an empty box
29003 `thin-space': display as 1-pixel width space
29004 `zero-width': don't display
29005 An element may also be a cons cell (GRAPHICAL . TEXT), which specifies the
29006 display method for graphical terminals and text terminals respectively.
29007 GRAPHICAL and TEXT should each have one of the values listed above.
29009 The char-table has one extra slot to control the display of a character for
29010 which no font is found. This slot only takes effect on graphical terminals.
29011 Its value should be an ASCII acronym string, `hex-code', `empty-box', or
29012 `thin-space'. The default is `empty-box'. */);
29013 Vglyphless_char_display = Fmake_char_table (Qglyphless_char_display, Qnil);
29014 Fset_char_table_extra_slot (Vglyphless_char_display, make_number (0),
29015 Qempty_box);
29019 /* Initialize this module when Emacs starts. */
29021 void
29022 init_xdisp (void)
29024 current_header_line_height = current_mode_line_height = -1;
29026 CHARPOS (this_line_start_pos) = 0;
29028 if (!noninteractive)
29030 struct window *m = XWINDOW (minibuf_window);
29031 Lisp_Object frame = m->frame;
29032 struct frame *f = XFRAME (frame);
29033 Lisp_Object root = FRAME_ROOT_WINDOW (f);
29034 struct window *r = XWINDOW (root);
29035 int i;
29037 echo_area_window = minibuf_window;
29039 XSETFASTINT (r->top_line, FRAME_TOP_MARGIN (f));
29040 XSETFASTINT (r->total_lines, FRAME_LINES (f) - 1 - FRAME_TOP_MARGIN (f));
29041 XSETFASTINT (r->total_cols, FRAME_COLS (f));
29042 XSETFASTINT (m->top_line, FRAME_LINES (f) - 1);
29043 XSETFASTINT (m->total_lines, 1);
29044 XSETFASTINT (m->total_cols, FRAME_COLS (f));
29046 scratch_glyph_row.glyphs[TEXT_AREA] = scratch_glyphs;
29047 scratch_glyph_row.glyphs[TEXT_AREA + 1]
29048 = scratch_glyphs + MAX_SCRATCH_GLYPHS;
29050 /* The default ellipsis glyphs `...'. */
29051 for (i = 0; i < 3; ++i)
29052 default_invis_vector[i] = make_number ('.');
29056 /* Allocate the buffer for frame titles.
29057 Also used for `format-mode-line'. */
29058 int size = 100;
29059 mode_line_noprop_buf = (char *) xmalloc (size);
29060 mode_line_noprop_buf_end = mode_line_noprop_buf + size;
29061 mode_line_noprop_ptr = mode_line_noprop_buf;
29062 mode_line_target = MODE_LINE_DISPLAY;
29065 help_echo_showing_p = 0;
29068 /* Since w32 does not support atimers, it defines its own implementation of
29069 the following three functions in w32fns.c. */
29070 #ifndef WINDOWSNT
29072 /* Platform-independent portion of hourglass implementation. */
29074 /* Cancel a currently active hourglass timer, and start a new one. */
29075 void
29076 start_hourglass (void)
29078 #if defined (HAVE_WINDOW_SYSTEM)
29079 EMACS_TIME delay;
29081 cancel_hourglass ();
29083 if (INTEGERP (Vhourglass_delay)
29084 && XINT (Vhourglass_delay) > 0)
29085 EMACS_SET_SECS_NSECS (delay,
29086 min (XINT (Vhourglass_delay), TYPE_MAXIMUM (time_t)),
29088 else if (FLOATP (Vhourglass_delay)
29089 && XFLOAT_DATA (Vhourglass_delay) > 0)
29090 delay = EMACS_TIME_FROM_DOUBLE (XFLOAT_DATA (Vhourglass_delay));
29091 else
29092 EMACS_SET_SECS_NSECS (delay, DEFAULT_HOURGLASS_DELAY, 0);
29094 hourglass_atimer = start_atimer (ATIMER_RELATIVE, delay,
29095 show_hourglass, NULL);
29096 #endif
29100 /* Cancel the hourglass cursor timer if active, hide a busy cursor if
29101 shown. */
29102 void
29103 cancel_hourglass (void)
29105 #if defined (HAVE_WINDOW_SYSTEM)
29106 if (hourglass_atimer)
29108 cancel_atimer (hourglass_atimer);
29109 hourglass_atimer = NULL;
29112 if (hourglass_shown_p)
29113 hide_hourglass ();
29114 #endif
29116 #endif /* ! WINDOWSNT */