* lisp/emacs-lisp/pcase.el (pcase-UPAT, pcase-QPAT): New edebug specs.
[emacs.git] / src / xdisp.c
blob0eae25de54a039abbe2e1b8b0551325c7e008932
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 "buffer.h"
285 #include "character.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 : Qnil);
3697 /* See if we got to this string directly or indirectly from
3698 an overlay property. That includes the before-string or
3699 after-string of an overlay, strings in display properties
3700 provided by an overlay, their text properties, etc.
3702 FROM_OVERLAY is the overlay that brought us here, or nil if none. */
3703 if (! NILP (from_overlay))
3704 for (i = it->sp - 1; i >= 0; i--)
3706 if (it->stack[i].current.overlay_string_index >= 0)
3707 from_overlay
3708 = it->string_overlays[it->stack[i].current.overlay_string_index];
3709 else if (! NILP (it->stack[i].from_overlay))
3710 from_overlay = it->stack[i].from_overlay;
3712 if (!NILP (from_overlay))
3713 break;
3716 if (! NILP (from_overlay))
3718 bufpos = IT_CHARPOS (*it);
3719 /* For a string from an overlay, the base face depends
3720 only on text properties and ignores overlays. */
3721 base_face_id
3722 = face_for_overlay_string (it->w,
3723 IT_CHARPOS (*it),
3724 it->region_beg_charpos,
3725 it->region_end_charpos,
3726 &next_stop,
3727 (IT_CHARPOS (*it)
3728 + TEXT_PROP_DISTANCE_LIMIT),
3730 from_overlay);
3732 else
3734 bufpos = 0;
3736 /* For strings from a `display' property, use the face at
3737 IT's current buffer position as the base face to merge
3738 with, so that overlay strings appear in the same face as
3739 surrounding text, unless they specify their own
3740 faces. */
3741 base_face_id = it->string_from_prefix_prop_p
3742 ? DEFAULT_FACE_ID
3743 : underlying_face_id (it);
3746 new_face_id = face_at_string_position (it->w,
3747 it->string,
3748 IT_STRING_CHARPOS (*it),
3749 bufpos,
3750 it->region_beg_charpos,
3751 it->region_end_charpos,
3752 &next_stop,
3753 base_face_id, 0);
3755 /* Is this a start of a run of characters with box? Caveat:
3756 this can be called for a freshly allocated iterator; face_id
3757 is -1 is this case. We know that the new face will not
3758 change until the next check pos, i.e. if the new face has a
3759 box, all characters up to that position will have a
3760 box. But, as usual, we don't know whether that position
3761 is really the end. */
3762 if (new_face_id != it->face_id)
3764 struct face *new_face = FACE_FROM_ID (it->f, new_face_id);
3765 struct face *old_face = FACE_FROM_ID (it->f, it->face_id);
3767 /* If new face has a box but old face hasn't, this is the
3768 start of a run of characters with box, i.e. it has a
3769 shadow on the left side. */
3770 it->start_of_box_run_p
3771 = new_face->box && (old_face == NULL || !old_face->box);
3772 it->face_box_p = new_face->box != FACE_NO_BOX;
3776 it->face_id = new_face_id;
3777 return HANDLED_NORMALLY;
3781 /* Return the ID of the face ``underlying'' IT's current position,
3782 which is in a string. If the iterator is associated with a
3783 buffer, return the face at IT's current buffer position.
3784 Otherwise, use the iterator's base_face_id. */
3786 static int
3787 underlying_face_id (struct it *it)
3789 int face_id = it->base_face_id, i;
3791 xassert (STRINGP (it->string));
3793 for (i = it->sp - 1; i >= 0; --i)
3794 if (NILP (it->stack[i].string))
3795 face_id = it->stack[i].face_id;
3797 return face_id;
3801 /* Compute the face one character before or after the current position
3802 of IT, in the visual order. BEFORE_P non-zero means get the face
3803 in front (to the left in L2R paragraphs, to the right in R2L
3804 paragraphs) of IT's screen position. Value is the ID of the face. */
3806 static int
3807 face_before_or_after_it_pos (struct it *it, int before_p)
3809 int face_id, limit;
3810 ptrdiff_t next_check_charpos;
3811 struct it it_copy;
3812 void *it_copy_data = NULL;
3814 xassert (it->s == NULL);
3816 if (STRINGP (it->string))
3818 ptrdiff_t bufpos, charpos;
3819 int base_face_id;
3821 /* No face change past the end of the string (for the case
3822 we are padding with spaces). No face change before the
3823 string start. */
3824 if (IT_STRING_CHARPOS (*it) >= SCHARS (it->string)
3825 || (IT_STRING_CHARPOS (*it) == 0 && before_p))
3826 return it->face_id;
3828 if (!it->bidi_p)
3830 /* Set charpos to the position before or after IT's current
3831 position, in the logical order, which in the non-bidi
3832 case is the same as the visual order. */
3833 if (before_p)
3834 charpos = IT_STRING_CHARPOS (*it) - 1;
3835 else if (it->what == IT_COMPOSITION)
3836 /* For composition, we must check the character after the
3837 composition. */
3838 charpos = IT_STRING_CHARPOS (*it) + it->cmp_it.nchars;
3839 else
3840 charpos = IT_STRING_CHARPOS (*it) + 1;
3842 else
3844 if (before_p)
3846 /* With bidi iteration, the character before the current
3847 in the visual order cannot be found by simple
3848 iteration, because "reverse" reordering is not
3849 supported. Instead, we need to use the move_it_*
3850 family of functions. */
3851 /* Ignore face changes before the first visible
3852 character on this display line. */
3853 if (it->current_x <= it->first_visible_x)
3854 return it->face_id;
3855 SAVE_IT (it_copy, *it, it_copy_data);
3856 /* Implementation note: Since move_it_in_display_line
3857 works in the iterator geometry, and thinks the first
3858 character is always the leftmost, even in R2L lines,
3859 we don't need to distinguish between the R2L and L2R
3860 cases here. */
3861 move_it_in_display_line (&it_copy, SCHARS (it_copy.string),
3862 it_copy.current_x - 1, MOVE_TO_X);
3863 charpos = IT_STRING_CHARPOS (it_copy);
3864 RESTORE_IT (it, it, it_copy_data);
3866 else
3868 /* Set charpos to the string position of the character
3869 that comes after IT's current position in the visual
3870 order. */
3871 int n = (it->what == IT_COMPOSITION ? it->cmp_it.nchars : 1);
3873 it_copy = *it;
3874 while (n--)
3875 bidi_move_to_visually_next (&it_copy.bidi_it);
3877 charpos = it_copy.bidi_it.charpos;
3880 xassert (0 <= charpos && charpos <= SCHARS (it->string));
3882 if (it->current.overlay_string_index >= 0)
3883 bufpos = IT_CHARPOS (*it);
3884 else
3885 bufpos = 0;
3887 base_face_id = underlying_face_id (it);
3889 /* Get the face for ASCII, or unibyte. */
3890 face_id = face_at_string_position (it->w,
3891 it->string,
3892 charpos,
3893 bufpos,
3894 it->region_beg_charpos,
3895 it->region_end_charpos,
3896 &next_check_charpos,
3897 base_face_id, 0);
3899 /* Correct the face for charsets different from ASCII. Do it
3900 for the multibyte case only. The face returned above is
3901 suitable for unibyte text if IT->string is unibyte. */
3902 if (STRING_MULTIBYTE (it->string))
3904 struct text_pos pos1 = string_pos (charpos, it->string);
3905 const unsigned char *p = SDATA (it->string) + BYTEPOS (pos1);
3906 int c, len;
3907 struct face *face = FACE_FROM_ID (it->f, face_id);
3909 c = string_char_and_length (p, &len);
3910 face_id = FACE_FOR_CHAR (it->f, face, c, charpos, it->string);
3913 else
3915 struct text_pos pos;
3917 if ((IT_CHARPOS (*it) >= ZV && !before_p)
3918 || (IT_CHARPOS (*it) <= BEGV && before_p))
3919 return it->face_id;
3921 limit = IT_CHARPOS (*it) + TEXT_PROP_DISTANCE_LIMIT;
3922 pos = it->current.pos;
3924 if (!it->bidi_p)
3926 if (before_p)
3927 DEC_TEXT_POS (pos, it->multibyte_p);
3928 else
3930 if (it->what == IT_COMPOSITION)
3932 /* For composition, we must check the position after
3933 the composition. */
3934 pos.charpos += it->cmp_it.nchars;
3935 pos.bytepos += it->len;
3937 else
3938 INC_TEXT_POS (pos, it->multibyte_p);
3941 else
3943 if (before_p)
3945 /* With bidi iteration, the character before the current
3946 in the visual order cannot be found by simple
3947 iteration, because "reverse" reordering is not
3948 supported. Instead, we need to use the move_it_*
3949 family of functions. */
3950 /* Ignore face changes before the first visible
3951 character on this display line. */
3952 if (it->current_x <= it->first_visible_x)
3953 return it->face_id;
3954 SAVE_IT (it_copy, *it, it_copy_data);
3955 /* Implementation note: Since move_it_in_display_line
3956 works in the iterator geometry, and thinks the first
3957 character is always the leftmost, even in R2L lines,
3958 we don't need to distinguish between the R2L and L2R
3959 cases here. */
3960 move_it_in_display_line (&it_copy, ZV,
3961 it_copy.current_x - 1, MOVE_TO_X);
3962 pos = it_copy.current.pos;
3963 RESTORE_IT (it, it, it_copy_data);
3965 else
3967 /* Set charpos to the buffer position of the character
3968 that comes after IT's current position in the visual
3969 order. */
3970 int n = (it->what == IT_COMPOSITION ? it->cmp_it.nchars : 1);
3972 it_copy = *it;
3973 while (n--)
3974 bidi_move_to_visually_next (&it_copy.bidi_it);
3976 SET_TEXT_POS (pos,
3977 it_copy.bidi_it.charpos, it_copy.bidi_it.bytepos);
3980 xassert (BEGV <= CHARPOS (pos) && CHARPOS (pos) <= ZV);
3982 /* Determine face for CHARSET_ASCII, or unibyte. */
3983 face_id = face_at_buffer_position (it->w,
3984 CHARPOS (pos),
3985 it->region_beg_charpos,
3986 it->region_end_charpos,
3987 &next_check_charpos,
3988 limit, 0, -1);
3990 /* Correct the face for charsets different from ASCII. Do it
3991 for the multibyte case only. The face returned above is
3992 suitable for unibyte text if current_buffer is unibyte. */
3993 if (it->multibyte_p)
3995 int c = FETCH_MULTIBYTE_CHAR (BYTEPOS (pos));
3996 struct face *face = FACE_FROM_ID (it->f, face_id);
3997 face_id = FACE_FOR_CHAR (it->f, face, c, CHARPOS (pos), Qnil);
4001 return face_id;
4006 /***********************************************************************
4007 Invisible text
4008 ***********************************************************************/
4010 /* Set up iterator IT from invisible properties at its current
4011 position. Called from handle_stop. */
4013 static enum prop_handled
4014 handle_invisible_prop (struct it *it)
4016 enum prop_handled handled = HANDLED_NORMALLY;
4018 if (STRINGP (it->string))
4020 Lisp_Object prop, end_charpos, limit, charpos;
4022 /* Get the value of the invisible text property at the
4023 current position. Value will be nil if there is no such
4024 property. */
4025 charpos = make_number (IT_STRING_CHARPOS (*it));
4026 prop = Fget_text_property (charpos, Qinvisible, it->string);
4028 if (!NILP (prop)
4029 && IT_STRING_CHARPOS (*it) < it->end_charpos)
4031 ptrdiff_t endpos;
4033 handled = HANDLED_RECOMPUTE_PROPS;
4035 /* Get the position at which the next change of the
4036 invisible text property can be found in IT->string.
4037 Value will be nil if the property value is the same for
4038 all the rest of IT->string. */
4039 XSETINT (limit, SCHARS (it->string));
4040 end_charpos = Fnext_single_property_change (charpos, Qinvisible,
4041 it->string, limit);
4043 /* Text at current position is invisible. The next
4044 change in the property is at position end_charpos.
4045 Move IT's current position to that position. */
4046 if (INTEGERP (end_charpos)
4047 && (endpos = XFASTINT (end_charpos)) < XFASTINT (limit))
4049 struct text_pos old;
4050 ptrdiff_t oldpos;
4052 old = it->current.string_pos;
4053 oldpos = CHARPOS (old);
4054 if (it->bidi_p)
4056 if (it->bidi_it.first_elt
4057 && it->bidi_it.charpos < SCHARS (it->string))
4058 bidi_paragraph_init (it->paragraph_embedding,
4059 &it->bidi_it, 1);
4060 /* Bidi-iterate out of the invisible text. */
4063 bidi_move_to_visually_next (&it->bidi_it);
4065 while (oldpos <= it->bidi_it.charpos
4066 && it->bidi_it.charpos < endpos);
4068 IT_STRING_CHARPOS (*it) = it->bidi_it.charpos;
4069 IT_STRING_BYTEPOS (*it) = it->bidi_it.bytepos;
4070 if (IT_CHARPOS (*it) >= endpos)
4071 it->prev_stop = endpos;
4073 else
4075 IT_STRING_CHARPOS (*it) = XFASTINT (end_charpos);
4076 compute_string_pos (&it->current.string_pos, old, it->string);
4079 else
4081 /* The rest of the string is invisible. If this is an
4082 overlay string, proceed with the next overlay string
4083 or whatever comes and return a character from there. */
4084 if (it->current.overlay_string_index >= 0)
4086 next_overlay_string (it);
4087 /* Don't check for overlay strings when we just
4088 finished processing them. */
4089 handled = HANDLED_OVERLAY_STRING_CONSUMED;
4091 else
4093 IT_STRING_CHARPOS (*it) = SCHARS (it->string);
4094 IT_STRING_BYTEPOS (*it) = SBYTES (it->string);
4099 else
4101 int invis_p;
4102 ptrdiff_t newpos, next_stop, start_charpos, tem;
4103 Lisp_Object pos, prop, overlay;
4105 /* First of all, is there invisible text at this position? */
4106 tem = start_charpos = IT_CHARPOS (*it);
4107 pos = make_number (tem);
4108 prop = get_char_property_and_overlay (pos, Qinvisible, it->window,
4109 &overlay);
4110 invis_p = TEXT_PROP_MEANS_INVISIBLE (prop);
4112 /* If we are on invisible text, skip over it. */
4113 if (invis_p && start_charpos < it->end_charpos)
4115 /* Record whether we have to display an ellipsis for the
4116 invisible text. */
4117 int display_ellipsis_p = invis_p == 2;
4119 handled = HANDLED_RECOMPUTE_PROPS;
4121 /* Loop skipping over invisible text. The loop is left at
4122 ZV or with IT on the first char being visible again. */
4125 /* Try to skip some invisible text. Return value is the
4126 position reached which can be equal to where we start
4127 if there is nothing invisible there. This skips both
4128 over invisible text properties and overlays with
4129 invisible property. */
4130 newpos = skip_invisible (tem, &next_stop, ZV, it->window);
4132 /* If we skipped nothing at all we weren't at invisible
4133 text in the first place. If everything to the end of
4134 the buffer was skipped, end the loop. */
4135 if (newpos == tem || newpos >= ZV)
4136 invis_p = 0;
4137 else
4139 /* We skipped some characters but not necessarily
4140 all there are. Check if we ended up on visible
4141 text. Fget_char_property returns the property of
4142 the char before the given position, i.e. if we
4143 get invis_p = 0, this means that the char at
4144 newpos is visible. */
4145 pos = make_number (newpos);
4146 prop = Fget_char_property (pos, Qinvisible, it->window);
4147 invis_p = TEXT_PROP_MEANS_INVISIBLE (prop);
4150 /* If we ended up on invisible text, proceed to
4151 skip starting with next_stop. */
4152 if (invis_p)
4153 tem = next_stop;
4155 /* If there are adjacent invisible texts, don't lose the
4156 second one's ellipsis. */
4157 if (invis_p == 2)
4158 display_ellipsis_p = 1;
4160 while (invis_p);
4162 /* The position newpos is now either ZV or on visible text. */
4163 if (it->bidi_p)
4165 ptrdiff_t bpos = CHAR_TO_BYTE (newpos);
4166 int on_newline =
4167 bpos == ZV_BYTE || FETCH_BYTE (bpos) == '\n';
4168 int after_newline =
4169 newpos <= BEGV || FETCH_BYTE (bpos - 1) == '\n';
4171 /* If the invisible text ends on a newline or on a
4172 character after a newline, we can avoid the costly,
4173 character by character, bidi iteration to NEWPOS, and
4174 instead simply reseat the iterator there. That's
4175 because all bidi reordering information is tossed at
4176 the newline. This is a big win for modes that hide
4177 complete lines, like Outline, Org, etc. */
4178 if (on_newline || after_newline)
4180 struct text_pos tpos;
4181 bidi_dir_t pdir = it->bidi_it.paragraph_dir;
4183 SET_TEXT_POS (tpos, newpos, bpos);
4184 reseat_1 (it, tpos, 0);
4185 /* If we reseat on a newline/ZV, we need to prep the
4186 bidi iterator for advancing to the next character
4187 after the newline/EOB, keeping the current paragraph
4188 direction (so that PRODUCE_GLYPHS does TRT wrt
4189 prepending/appending glyphs to a glyph row). */
4190 if (on_newline)
4192 it->bidi_it.first_elt = 0;
4193 it->bidi_it.paragraph_dir = pdir;
4194 it->bidi_it.ch = (bpos == ZV_BYTE) ? -1 : '\n';
4195 it->bidi_it.nchars = 1;
4196 it->bidi_it.ch_len = 1;
4199 else /* Must use the slow method. */
4201 /* With bidi iteration, the region of invisible text
4202 could start and/or end in the middle of a
4203 non-base embedding level. Therefore, we need to
4204 skip invisible text using the bidi iterator,
4205 starting at IT's current position, until we find
4206 ourselves outside of the invisible text.
4207 Skipping invisible text _after_ bidi iteration
4208 avoids affecting the visual order of the
4209 displayed text when invisible properties are
4210 added or removed. */
4211 if (it->bidi_it.first_elt && it->bidi_it.charpos < ZV)
4213 /* If we were `reseat'ed to a new paragraph,
4214 determine the paragraph base direction. We
4215 need to do it now because
4216 next_element_from_buffer may not have a
4217 chance to do it, if we are going to skip any
4218 text at the beginning, which resets the
4219 FIRST_ELT flag. */
4220 bidi_paragraph_init (it->paragraph_embedding,
4221 &it->bidi_it, 1);
4225 bidi_move_to_visually_next (&it->bidi_it);
4227 while (it->stop_charpos <= it->bidi_it.charpos
4228 && it->bidi_it.charpos < newpos);
4229 IT_CHARPOS (*it) = it->bidi_it.charpos;
4230 IT_BYTEPOS (*it) = it->bidi_it.bytepos;
4231 /* If we overstepped NEWPOS, record its position in
4232 the iterator, so that we skip invisible text if
4233 later the bidi iteration lands us in the
4234 invisible region again. */
4235 if (IT_CHARPOS (*it) >= newpos)
4236 it->prev_stop = newpos;
4239 else
4241 IT_CHARPOS (*it) = newpos;
4242 IT_BYTEPOS (*it) = CHAR_TO_BYTE (newpos);
4245 /* If there are before-strings at the start of invisible
4246 text, and the text is invisible because of a text
4247 property, arrange to show before-strings because 20.x did
4248 it that way. (If the text is invisible because of an
4249 overlay property instead of a text property, this is
4250 already handled in the overlay code.) */
4251 if (NILP (overlay)
4252 && get_overlay_strings (it, it->stop_charpos))
4254 handled = HANDLED_RECOMPUTE_PROPS;
4255 it->stack[it->sp - 1].display_ellipsis_p = display_ellipsis_p;
4257 else if (display_ellipsis_p)
4259 /* Make sure that the glyphs of the ellipsis will get
4260 correct `charpos' values. If we would not update
4261 it->position here, the glyphs would belong to the
4262 last visible character _before_ the invisible
4263 text, which confuses `set_cursor_from_row'.
4265 We use the last invisible position instead of the
4266 first because this way the cursor is always drawn on
4267 the first "." of the ellipsis, whenever PT is inside
4268 the invisible text. Otherwise the cursor would be
4269 placed _after_ the ellipsis when the point is after the
4270 first invisible character. */
4271 if (!STRINGP (it->object))
4273 it->position.charpos = newpos - 1;
4274 it->position.bytepos = CHAR_TO_BYTE (it->position.charpos);
4276 it->ellipsis_p = 1;
4277 /* Let the ellipsis display before
4278 considering any properties of the following char.
4279 Fixes jasonr@gnu.org 01 Oct 07 bug. */
4280 handled = HANDLED_RETURN;
4285 return handled;
4289 /* Make iterator IT return `...' next.
4290 Replaces LEN characters from buffer. */
4292 static void
4293 setup_for_ellipsis (struct it *it, int len)
4295 /* Use the display table definition for `...'. Invalid glyphs
4296 will be handled by the method returning elements from dpvec. */
4297 if (it->dp && VECTORP (DISP_INVIS_VECTOR (it->dp)))
4299 struct Lisp_Vector *v = XVECTOR (DISP_INVIS_VECTOR (it->dp));
4300 it->dpvec = v->contents;
4301 it->dpend = v->contents + v->header.size;
4303 else
4305 /* Default `...'. */
4306 it->dpvec = default_invis_vector;
4307 it->dpend = default_invis_vector + 3;
4310 it->dpvec_char_len = len;
4311 it->current.dpvec_index = 0;
4312 it->dpvec_face_id = -1;
4314 /* Remember the current face id in case glyphs specify faces.
4315 IT's face is restored in set_iterator_to_next.
4316 saved_face_id was set to preceding char's face in handle_stop. */
4317 if (it->saved_face_id < 0 || it->saved_face_id != it->face_id)
4318 it->saved_face_id = it->face_id = DEFAULT_FACE_ID;
4320 it->method = GET_FROM_DISPLAY_VECTOR;
4321 it->ellipsis_p = 1;
4326 /***********************************************************************
4327 'display' property
4328 ***********************************************************************/
4330 /* Set up iterator IT from `display' property at its current position.
4331 Called from handle_stop.
4332 We return HANDLED_RETURN if some part of the display property
4333 overrides the display of the buffer text itself.
4334 Otherwise we return HANDLED_NORMALLY. */
4336 static enum prop_handled
4337 handle_display_prop (struct it *it)
4339 Lisp_Object propval, object, overlay;
4340 struct text_pos *position;
4341 ptrdiff_t bufpos;
4342 /* Nonzero if some property replaces the display of the text itself. */
4343 int display_replaced_p = 0;
4345 if (STRINGP (it->string))
4347 object = it->string;
4348 position = &it->current.string_pos;
4349 bufpos = CHARPOS (it->current.pos);
4351 else
4353 XSETWINDOW (object, it->w);
4354 position = &it->current.pos;
4355 bufpos = CHARPOS (*position);
4358 /* Reset those iterator values set from display property values. */
4359 it->slice.x = it->slice.y = it->slice.width = it->slice.height = Qnil;
4360 it->space_width = Qnil;
4361 it->font_height = Qnil;
4362 it->voffset = 0;
4364 /* We don't support recursive `display' properties, i.e. string
4365 values that have a string `display' property, that have a string
4366 `display' property etc. */
4367 if (!it->string_from_display_prop_p)
4368 it->area = TEXT_AREA;
4370 propval = get_char_property_and_overlay (make_number (position->charpos),
4371 Qdisplay, object, &overlay);
4372 if (NILP (propval))
4373 return HANDLED_NORMALLY;
4374 /* Now OVERLAY is the overlay that gave us this property, or nil
4375 if it was a text property. */
4377 if (!STRINGP (it->string))
4378 object = it->w->buffer;
4380 display_replaced_p = handle_display_spec (it, propval, object, overlay,
4381 position, bufpos,
4382 FRAME_WINDOW_P (it->f));
4384 return display_replaced_p ? HANDLED_RETURN : HANDLED_NORMALLY;
4387 /* Subroutine of handle_display_prop. Returns non-zero if the display
4388 specification in SPEC is a replacing specification, i.e. it would
4389 replace the text covered by `display' property with something else,
4390 such as an image or a display string. If SPEC includes any kind or
4391 `(space ...) specification, the value is 2; this is used by
4392 compute_display_string_pos, which see.
4394 See handle_single_display_spec for documentation of arguments.
4395 frame_window_p is non-zero if the window being redisplayed is on a
4396 GUI frame; this argument is used only if IT is NULL, see below.
4398 IT can be NULL, if this is called by the bidi reordering code
4399 through compute_display_string_pos, which see. In that case, this
4400 function only examines SPEC, but does not otherwise "handle" it, in
4401 the sense that it doesn't set up members of IT from the display
4402 spec. */
4403 static int
4404 handle_display_spec (struct it *it, Lisp_Object spec, Lisp_Object object,
4405 Lisp_Object overlay, struct text_pos *position,
4406 ptrdiff_t bufpos, int frame_window_p)
4408 int replacing_p = 0;
4409 int rv;
4411 if (CONSP (spec)
4412 /* Simple specifications. */
4413 && !EQ (XCAR (spec), Qimage)
4414 && !EQ (XCAR (spec), Qspace)
4415 && !EQ (XCAR (spec), Qwhen)
4416 && !EQ (XCAR (spec), Qslice)
4417 && !EQ (XCAR (spec), Qspace_width)
4418 && !EQ (XCAR (spec), Qheight)
4419 && !EQ (XCAR (spec), Qraise)
4420 /* Marginal area specifications. */
4421 && !(CONSP (XCAR (spec)) && EQ (XCAR (XCAR (spec)), Qmargin))
4422 && !EQ (XCAR (spec), Qleft_fringe)
4423 && !EQ (XCAR (spec), Qright_fringe)
4424 && !NILP (XCAR (spec)))
4426 for (; CONSP (spec); spec = XCDR (spec))
4428 if ((rv = handle_single_display_spec (it, XCAR (spec), object,
4429 overlay, position, bufpos,
4430 replacing_p, frame_window_p)))
4432 replacing_p = rv;
4433 /* If some text in a string is replaced, `position' no
4434 longer points to the position of `object'. */
4435 if (!it || STRINGP (object))
4436 break;
4440 else if (VECTORP (spec))
4442 ptrdiff_t i;
4443 for (i = 0; i < ASIZE (spec); ++i)
4444 if ((rv = handle_single_display_spec (it, AREF (spec, i), object,
4445 overlay, position, bufpos,
4446 replacing_p, frame_window_p)))
4448 replacing_p = rv;
4449 /* If some text in a string is replaced, `position' no
4450 longer points to the position of `object'. */
4451 if (!it || STRINGP (object))
4452 break;
4455 else
4457 if ((rv = handle_single_display_spec (it, spec, object, overlay,
4458 position, bufpos, 0,
4459 frame_window_p)))
4460 replacing_p = rv;
4463 return replacing_p;
4466 /* Value is the position of the end of the `display' property starting
4467 at START_POS in OBJECT. */
4469 static struct text_pos
4470 display_prop_end (struct it *it, Lisp_Object object, struct text_pos start_pos)
4472 Lisp_Object end;
4473 struct text_pos end_pos;
4475 end = Fnext_single_char_property_change (make_number (CHARPOS (start_pos)),
4476 Qdisplay, object, Qnil);
4477 CHARPOS (end_pos) = XFASTINT (end);
4478 if (STRINGP (object))
4479 compute_string_pos (&end_pos, start_pos, it->string);
4480 else
4481 BYTEPOS (end_pos) = CHAR_TO_BYTE (XFASTINT (end));
4483 return end_pos;
4487 /* Set up IT from a single `display' property specification SPEC. OBJECT
4488 is the object in which the `display' property was found. *POSITION
4489 is the position in OBJECT at which the `display' property was found.
4490 BUFPOS is the buffer position of OBJECT (different from POSITION if
4491 OBJECT is not a buffer). DISPLAY_REPLACED_P non-zero means that we
4492 previously saw a display specification which already replaced text
4493 display with something else, for example an image; we ignore such
4494 properties after the first one has been processed.
4496 OVERLAY is the overlay this `display' property came from,
4497 or nil if it was a text property.
4499 If SPEC is a `space' or `image' specification, and in some other
4500 cases too, set *POSITION to the position where the `display'
4501 property ends.
4503 If IT is NULL, only examine the property specification in SPEC, but
4504 don't set up IT. In that case, FRAME_WINDOW_P non-zero means SPEC
4505 is intended to be displayed in a window on a GUI frame.
4507 Value is non-zero if something was found which replaces the display
4508 of buffer or string text. */
4510 static int
4511 handle_single_display_spec (struct it *it, Lisp_Object spec, Lisp_Object object,
4512 Lisp_Object overlay, struct text_pos *position,
4513 ptrdiff_t bufpos, int display_replaced_p,
4514 int frame_window_p)
4516 Lisp_Object form;
4517 Lisp_Object location, value;
4518 struct text_pos start_pos = *position;
4519 int valid_p;
4521 /* If SPEC is a list of the form `(when FORM . VALUE)', evaluate FORM.
4522 If the result is non-nil, use VALUE instead of SPEC. */
4523 form = Qt;
4524 if (CONSP (spec) && EQ (XCAR (spec), Qwhen))
4526 spec = XCDR (spec);
4527 if (!CONSP (spec))
4528 return 0;
4529 form = XCAR (spec);
4530 spec = XCDR (spec);
4533 if (!NILP (form) && !EQ (form, Qt))
4535 ptrdiff_t count = SPECPDL_INDEX ();
4536 struct gcpro gcpro1;
4538 /* Bind `object' to the object having the `display' property, a
4539 buffer or string. Bind `position' to the position in the
4540 object where the property was found, and `buffer-position'
4541 to the current position in the buffer. */
4543 if (NILP (object))
4544 XSETBUFFER (object, current_buffer);
4545 specbind (Qobject, object);
4546 specbind (Qposition, make_number (CHARPOS (*position)));
4547 specbind (Qbuffer_position, make_number (bufpos));
4548 GCPRO1 (form);
4549 form = safe_eval (form);
4550 UNGCPRO;
4551 unbind_to (count, Qnil);
4554 if (NILP (form))
4555 return 0;
4557 /* Handle `(height HEIGHT)' specifications. */
4558 if (CONSP (spec)
4559 && EQ (XCAR (spec), Qheight)
4560 && CONSP (XCDR (spec)))
4562 if (it)
4564 if (!FRAME_WINDOW_P (it->f))
4565 return 0;
4567 it->font_height = XCAR (XCDR (spec));
4568 if (!NILP (it->font_height))
4570 struct face *face = FACE_FROM_ID (it->f, it->face_id);
4571 int new_height = -1;
4573 if (CONSP (it->font_height)
4574 && (EQ (XCAR (it->font_height), Qplus)
4575 || EQ (XCAR (it->font_height), Qminus))
4576 && CONSP (XCDR (it->font_height))
4577 && RANGED_INTEGERP (0, XCAR (XCDR (it->font_height)), INT_MAX))
4579 /* `(+ N)' or `(- N)' where N is an integer. */
4580 int steps = XINT (XCAR (XCDR (it->font_height)));
4581 if (EQ (XCAR (it->font_height), Qplus))
4582 steps = - steps;
4583 it->face_id = smaller_face (it->f, it->face_id, steps);
4585 else if (FUNCTIONP (it->font_height))
4587 /* Call function with current height as argument.
4588 Value is the new height. */
4589 Lisp_Object height;
4590 height = safe_call1 (it->font_height,
4591 face->lface[LFACE_HEIGHT_INDEX]);
4592 if (NUMBERP (height))
4593 new_height = XFLOATINT (height);
4595 else if (NUMBERP (it->font_height))
4597 /* Value is a multiple of the canonical char height. */
4598 struct face *f;
4600 f = FACE_FROM_ID (it->f,
4601 lookup_basic_face (it->f, DEFAULT_FACE_ID));
4602 new_height = (XFLOATINT (it->font_height)
4603 * XINT (f->lface[LFACE_HEIGHT_INDEX]));
4605 else
4607 /* Evaluate IT->font_height with `height' bound to the
4608 current specified height to get the new height. */
4609 ptrdiff_t count = SPECPDL_INDEX ();
4611 specbind (Qheight, face->lface[LFACE_HEIGHT_INDEX]);
4612 value = safe_eval (it->font_height);
4613 unbind_to (count, Qnil);
4615 if (NUMBERP (value))
4616 new_height = XFLOATINT (value);
4619 if (new_height > 0)
4620 it->face_id = face_with_height (it->f, it->face_id, new_height);
4624 return 0;
4627 /* Handle `(space-width WIDTH)'. */
4628 if (CONSP (spec)
4629 && EQ (XCAR (spec), Qspace_width)
4630 && CONSP (XCDR (spec)))
4632 if (it)
4634 if (!FRAME_WINDOW_P (it->f))
4635 return 0;
4637 value = XCAR (XCDR (spec));
4638 if (NUMBERP (value) && XFLOATINT (value) > 0)
4639 it->space_width = value;
4642 return 0;
4645 /* Handle `(slice X Y WIDTH HEIGHT)'. */
4646 if (CONSP (spec)
4647 && EQ (XCAR (spec), Qslice))
4649 Lisp_Object tem;
4651 if (it)
4653 if (!FRAME_WINDOW_P (it->f))
4654 return 0;
4656 if (tem = XCDR (spec), CONSP (tem))
4658 it->slice.x = XCAR (tem);
4659 if (tem = XCDR (tem), CONSP (tem))
4661 it->slice.y = XCAR (tem);
4662 if (tem = XCDR (tem), CONSP (tem))
4664 it->slice.width = XCAR (tem);
4665 if (tem = XCDR (tem), CONSP (tem))
4666 it->slice.height = XCAR (tem);
4672 return 0;
4675 /* Handle `(raise FACTOR)'. */
4676 if (CONSP (spec)
4677 && EQ (XCAR (spec), Qraise)
4678 && CONSP (XCDR (spec)))
4680 if (it)
4682 if (!FRAME_WINDOW_P (it->f))
4683 return 0;
4685 #ifdef HAVE_WINDOW_SYSTEM
4686 value = XCAR (XCDR (spec));
4687 if (NUMBERP (value))
4689 struct face *face = FACE_FROM_ID (it->f, it->face_id);
4690 it->voffset = - (XFLOATINT (value)
4691 * (FONT_HEIGHT (face->font)));
4693 #endif /* HAVE_WINDOW_SYSTEM */
4696 return 0;
4699 /* Don't handle the other kinds of display specifications
4700 inside a string that we got from a `display' property. */
4701 if (it && it->string_from_display_prop_p)
4702 return 0;
4704 /* Characters having this form of property are not displayed, so
4705 we have to find the end of the property. */
4706 if (it)
4708 start_pos = *position;
4709 *position = display_prop_end (it, object, start_pos);
4711 value = Qnil;
4713 /* Stop the scan at that end position--we assume that all
4714 text properties change there. */
4715 if (it)
4716 it->stop_charpos = position->charpos;
4718 /* Handle `(left-fringe BITMAP [FACE])'
4719 and `(right-fringe BITMAP [FACE])'. */
4720 if (CONSP (spec)
4721 && (EQ (XCAR (spec), Qleft_fringe)
4722 || EQ (XCAR (spec), Qright_fringe))
4723 && CONSP (XCDR (spec)))
4725 int fringe_bitmap;
4727 if (it)
4729 if (!FRAME_WINDOW_P (it->f))
4730 /* If we return here, POSITION has been advanced
4731 across the text with this property. */
4733 /* Synchronize the bidi iterator with POSITION. This is
4734 needed because we are not going to push the iterator
4735 on behalf of this display property, so there will be
4736 no pop_it call to do this synchronization for us. */
4737 if (it->bidi_p)
4739 it->position = *position;
4740 iterate_out_of_display_property (it);
4741 *position = it->position;
4743 return 1;
4746 else if (!frame_window_p)
4747 return 1;
4749 #ifdef HAVE_WINDOW_SYSTEM
4750 value = XCAR (XCDR (spec));
4751 if (!SYMBOLP (value)
4752 || !(fringe_bitmap = lookup_fringe_bitmap (value)))
4753 /* If we return here, POSITION has been advanced
4754 across the text with this property. */
4756 if (it && it->bidi_p)
4758 it->position = *position;
4759 iterate_out_of_display_property (it);
4760 *position = it->position;
4762 return 1;
4765 if (it)
4767 int face_id = lookup_basic_face (it->f, DEFAULT_FACE_ID);;
4769 if (CONSP (XCDR (XCDR (spec))))
4771 Lisp_Object face_name = XCAR (XCDR (XCDR (spec)));
4772 int face_id2 = lookup_derived_face (it->f, face_name,
4773 FRINGE_FACE_ID, 0);
4774 if (face_id2 >= 0)
4775 face_id = face_id2;
4778 /* Save current settings of IT so that we can restore them
4779 when we are finished with the glyph property value. */
4780 push_it (it, position);
4782 it->area = TEXT_AREA;
4783 it->what = IT_IMAGE;
4784 it->image_id = -1; /* no image */
4785 it->position = start_pos;
4786 it->object = NILP (object) ? it->w->buffer : object;
4787 it->method = GET_FROM_IMAGE;
4788 it->from_overlay = Qnil;
4789 it->face_id = face_id;
4790 it->from_disp_prop_p = 1;
4792 /* Say that we haven't consumed the characters with
4793 `display' property yet. The call to pop_it in
4794 set_iterator_to_next will clean this up. */
4795 *position = start_pos;
4797 if (EQ (XCAR (spec), Qleft_fringe))
4799 it->left_user_fringe_bitmap = fringe_bitmap;
4800 it->left_user_fringe_face_id = face_id;
4802 else
4804 it->right_user_fringe_bitmap = fringe_bitmap;
4805 it->right_user_fringe_face_id = face_id;
4808 #endif /* HAVE_WINDOW_SYSTEM */
4809 return 1;
4812 /* Prepare to handle `((margin left-margin) ...)',
4813 `((margin right-margin) ...)' and `((margin nil) ...)'
4814 prefixes for display specifications. */
4815 location = Qunbound;
4816 if (CONSP (spec) && CONSP (XCAR (spec)))
4818 Lisp_Object tem;
4820 value = XCDR (spec);
4821 if (CONSP (value))
4822 value = XCAR (value);
4824 tem = XCAR (spec);
4825 if (EQ (XCAR (tem), Qmargin)
4826 && (tem = XCDR (tem),
4827 tem = CONSP (tem) ? XCAR (tem) : Qnil,
4828 (NILP (tem)
4829 || EQ (tem, Qleft_margin)
4830 || EQ (tem, Qright_margin))))
4831 location = tem;
4834 if (EQ (location, Qunbound))
4836 location = Qnil;
4837 value = spec;
4840 /* After this point, VALUE is the property after any
4841 margin prefix has been stripped. It must be a string,
4842 an image specification, or `(space ...)'.
4844 LOCATION specifies where to display: `left-margin',
4845 `right-margin' or nil. */
4847 valid_p = (STRINGP (value)
4848 #ifdef HAVE_WINDOW_SYSTEM
4849 || ((it ? FRAME_WINDOW_P (it->f) : frame_window_p)
4850 && valid_image_p (value))
4851 #endif /* not HAVE_WINDOW_SYSTEM */
4852 || (CONSP (value) && EQ (XCAR (value), Qspace)));
4854 if (valid_p && !display_replaced_p)
4856 int retval = 1;
4858 if (!it)
4860 /* Callers need to know whether the display spec is any kind
4861 of `(space ...)' spec that is about to affect text-area
4862 display. */
4863 if (CONSP (value) && EQ (XCAR (value), Qspace) && NILP (location))
4864 retval = 2;
4865 return retval;
4868 /* Save current settings of IT so that we can restore them
4869 when we are finished with the glyph property value. */
4870 push_it (it, position);
4871 it->from_overlay = overlay;
4872 it->from_disp_prop_p = 1;
4874 if (NILP (location))
4875 it->area = TEXT_AREA;
4876 else if (EQ (location, Qleft_margin))
4877 it->area = LEFT_MARGIN_AREA;
4878 else
4879 it->area = RIGHT_MARGIN_AREA;
4881 if (STRINGP (value))
4883 it->string = value;
4884 it->multibyte_p = STRING_MULTIBYTE (it->string);
4885 it->current.overlay_string_index = -1;
4886 IT_STRING_CHARPOS (*it) = IT_STRING_BYTEPOS (*it) = 0;
4887 it->end_charpos = it->string_nchars = SCHARS (it->string);
4888 it->method = GET_FROM_STRING;
4889 it->stop_charpos = 0;
4890 it->prev_stop = 0;
4891 it->base_level_stop = 0;
4892 it->string_from_display_prop_p = 1;
4893 /* Say that we haven't consumed the characters with
4894 `display' property yet. The call to pop_it in
4895 set_iterator_to_next will clean this up. */
4896 if (BUFFERP (object))
4897 *position = start_pos;
4899 /* Force paragraph direction to be that of the parent
4900 object. If the parent object's paragraph direction is
4901 not yet determined, default to L2R. */
4902 if (it->bidi_p && it->bidi_it.paragraph_dir == R2L)
4903 it->paragraph_embedding = it->bidi_it.paragraph_dir;
4904 else
4905 it->paragraph_embedding = L2R;
4907 /* Set up the bidi iterator for this display string. */
4908 if (it->bidi_p)
4910 it->bidi_it.string.lstring = it->string;
4911 it->bidi_it.string.s = NULL;
4912 it->bidi_it.string.schars = it->end_charpos;
4913 it->bidi_it.string.bufpos = bufpos;
4914 it->bidi_it.string.from_disp_str = 1;
4915 it->bidi_it.string.unibyte = !it->multibyte_p;
4916 bidi_init_it (0, 0, FRAME_WINDOW_P (it->f), &it->bidi_it);
4919 else if (CONSP (value) && EQ (XCAR (value), Qspace))
4921 it->method = GET_FROM_STRETCH;
4922 it->object = value;
4923 *position = it->position = start_pos;
4924 retval = 1 + (it->area == TEXT_AREA);
4926 #ifdef HAVE_WINDOW_SYSTEM
4927 else
4929 it->what = IT_IMAGE;
4930 it->image_id = lookup_image (it->f, value);
4931 it->position = start_pos;
4932 it->object = NILP (object) ? it->w->buffer : object;
4933 it->method = GET_FROM_IMAGE;
4935 /* Say that we haven't consumed the characters with
4936 `display' property yet. The call to pop_it in
4937 set_iterator_to_next will clean this up. */
4938 *position = start_pos;
4940 #endif /* HAVE_WINDOW_SYSTEM */
4942 return retval;
4945 /* Invalid property or property not supported. Restore
4946 POSITION to what it was before. */
4947 *position = start_pos;
4948 return 0;
4951 /* Check if PROP is a display property value whose text should be
4952 treated as intangible. OVERLAY is the overlay from which PROP
4953 came, or nil if it came from a text property. CHARPOS and BYTEPOS
4954 specify the buffer position covered by PROP. */
4957 display_prop_intangible_p (Lisp_Object prop, Lisp_Object overlay,
4958 ptrdiff_t charpos, ptrdiff_t bytepos)
4960 int frame_window_p = FRAME_WINDOW_P (XFRAME (selected_frame));
4961 struct text_pos position;
4963 SET_TEXT_POS (position, charpos, bytepos);
4964 return handle_display_spec (NULL, prop, Qnil, overlay,
4965 &position, charpos, frame_window_p);
4969 /* Return 1 if PROP is a display sub-property value containing STRING.
4971 Implementation note: this and the following function are really
4972 special cases of handle_display_spec and
4973 handle_single_display_spec, and should ideally use the same code.
4974 Until they do, these two pairs must be consistent and must be
4975 modified in sync. */
4977 static int
4978 single_display_spec_string_p (Lisp_Object prop, Lisp_Object string)
4980 if (EQ (string, prop))
4981 return 1;
4983 /* Skip over `when FORM'. */
4984 if (CONSP (prop) && EQ (XCAR (prop), Qwhen))
4986 prop = XCDR (prop);
4987 if (!CONSP (prop))
4988 return 0;
4989 /* Actually, the condition following `when' should be eval'ed,
4990 like handle_single_display_spec does, and we should return
4991 zero if it evaluates to nil. However, this function is
4992 called only when the buffer was already displayed and some
4993 glyph in the glyph matrix was found to come from a display
4994 string. Therefore, the condition was already evaluated, and
4995 the result was non-nil, otherwise the display string wouldn't
4996 have been displayed and we would have never been called for
4997 this property. Thus, we can skip the evaluation and assume
4998 its result is non-nil. */
4999 prop = XCDR (prop);
5002 if (CONSP (prop))
5003 /* Skip over `margin LOCATION'. */
5004 if (EQ (XCAR (prop), Qmargin))
5006 prop = XCDR (prop);
5007 if (!CONSP (prop))
5008 return 0;
5010 prop = XCDR (prop);
5011 if (!CONSP (prop))
5012 return 0;
5015 return EQ (prop, string) || (CONSP (prop) && EQ (XCAR (prop), string));
5019 /* Return 1 if STRING appears in the `display' property PROP. */
5021 static int
5022 display_prop_string_p (Lisp_Object prop, Lisp_Object string)
5024 if (CONSP (prop)
5025 && !EQ (XCAR (prop), Qwhen)
5026 && !(CONSP (XCAR (prop)) && EQ (Qmargin, XCAR (XCAR (prop)))))
5028 /* A list of sub-properties. */
5029 while (CONSP (prop))
5031 if (single_display_spec_string_p (XCAR (prop), string))
5032 return 1;
5033 prop = XCDR (prop);
5036 else if (VECTORP (prop))
5038 /* A vector of sub-properties. */
5039 ptrdiff_t i;
5040 for (i = 0; i < ASIZE (prop); ++i)
5041 if (single_display_spec_string_p (AREF (prop, i), string))
5042 return 1;
5044 else
5045 return single_display_spec_string_p (prop, string);
5047 return 0;
5050 /* Look for STRING in overlays and text properties in the current
5051 buffer, between character positions FROM and TO (excluding TO).
5052 BACK_P non-zero means look back (in this case, TO is supposed to be
5053 less than FROM).
5054 Value is the first character position where STRING was found, or
5055 zero if it wasn't found before hitting TO.
5057 This function may only use code that doesn't eval because it is
5058 called asynchronously from note_mouse_highlight. */
5060 static ptrdiff_t
5061 string_buffer_position_lim (Lisp_Object string,
5062 ptrdiff_t from, ptrdiff_t to, int back_p)
5064 Lisp_Object limit, prop, pos;
5065 int found = 0;
5067 pos = make_number (max (from, BEGV));
5069 if (!back_p) /* looking forward */
5071 limit = make_number (min (to, ZV));
5072 while (!found && !EQ (pos, limit))
5074 prop = Fget_char_property (pos, Qdisplay, Qnil);
5075 if (!NILP (prop) && display_prop_string_p (prop, string))
5076 found = 1;
5077 else
5078 pos = Fnext_single_char_property_change (pos, Qdisplay, Qnil,
5079 limit);
5082 else /* looking back */
5084 limit = make_number (max (to, BEGV));
5085 while (!found && !EQ (pos, limit))
5087 prop = Fget_char_property (pos, Qdisplay, Qnil);
5088 if (!NILP (prop) && display_prop_string_p (prop, string))
5089 found = 1;
5090 else
5091 pos = Fprevious_single_char_property_change (pos, Qdisplay, Qnil,
5092 limit);
5096 return found ? XINT (pos) : 0;
5099 /* Determine which buffer position in current buffer STRING comes from.
5100 AROUND_CHARPOS is an approximate position where it could come from.
5101 Value is the buffer position or 0 if it couldn't be determined.
5103 This function is necessary because we don't record buffer positions
5104 in glyphs generated from strings (to keep struct glyph small).
5105 This function may only use code that doesn't eval because it is
5106 called asynchronously from note_mouse_highlight. */
5108 static ptrdiff_t
5109 string_buffer_position (Lisp_Object string, ptrdiff_t around_charpos)
5111 const int MAX_DISTANCE = 1000;
5112 ptrdiff_t found = string_buffer_position_lim (string, around_charpos,
5113 around_charpos + MAX_DISTANCE,
5116 if (!found)
5117 found = string_buffer_position_lim (string, around_charpos,
5118 around_charpos - MAX_DISTANCE, 1);
5119 return found;
5124 /***********************************************************************
5125 `composition' property
5126 ***********************************************************************/
5128 /* Set up iterator IT from `composition' property at its current
5129 position. Called from handle_stop. */
5131 static enum prop_handled
5132 handle_composition_prop (struct it *it)
5134 Lisp_Object prop, string;
5135 ptrdiff_t pos, pos_byte, start, end;
5137 if (STRINGP (it->string))
5139 unsigned char *s;
5141 pos = IT_STRING_CHARPOS (*it);
5142 pos_byte = IT_STRING_BYTEPOS (*it);
5143 string = it->string;
5144 s = SDATA (string) + pos_byte;
5145 it->c = STRING_CHAR (s);
5147 else
5149 pos = IT_CHARPOS (*it);
5150 pos_byte = IT_BYTEPOS (*it);
5151 string = Qnil;
5152 it->c = FETCH_CHAR (pos_byte);
5155 /* If there's a valid composition and point is not inside of the
5156 composition (in the case that the composition is from the current
5157 buffer), draw a glyph composed from the composition components. */
5158 if (find_composition (pos, -1, &start, &end, &prop, string)
5159 && COMPOSITION_VALID_P (start, end, prop)
5160 && (STRINGP (it->string) || (PT <= start || PT >= end)))
5162 if (start < pos)
5163 /* As we can't handle this situation (perhaps font-lock added
5164 a new composition), we just return here hoping that next
5165 redisplay will detect this composition much earlier. */
5166 return HANDLED_NORMALLY;
5167 if (start != pos)
5169 if (STRINGP (it->string))
5170 pos_byte = string_char_to_byte (it->string, start);
5171 else
5172 pos_byte = CHAR_TO_BYTE (start);
5174 it->cmp_it.id = get_composition_id (start, pos_byte, end - start,
5175 prop, string);
5177 if (it->cmp_it.id >= 0)
5179 it->cmp_it.ch = -1;
5180 it->cmp_it.nchars = COMPOSITION_LENGTH (prop);
5181 it->cmp_it.nglyphs = -1;
5185 return HANDLED_NORMALLY;
5190 /***********************************************************************
5191 Overlay strings
5192 ***********************************************************************/
5194 /* The following structure is used to record overlay strings for
5195 later sorting in load_overlay_strings. */
5197 struct overlay_entry
5199 Lisp_Object overlay;
5200 Lisp_Object string;
5201 EMACS_INT priority;
5202 int after_string_p;
5206 /* Set up iterator IT from overlay strings at its current position.
5207 Called from handle_stop. */
5209 static enum prop_handled
5210 handle_overlay_change (struct it *it)
5212 if (!STRINGP (it->string) && get_overlay_strings (it, 0))
5213 return HANDLED_RECOMPUTE_PROPS;
5214 else
5215 return HANDLED_NORMALLY;
5219 /* Set up the next overlay string for delivery by IT, if there is an
5220 overlay string to deliver. Called by set_iterator_to_next when the
5221 end of the current overlay string is reached. If there are more
5222 overlay strings to display, IT->string and
5223 IT->current.overlay_string_index are set appropriately here.
5224 Otherwise IT->string is set to nil. */
5226 static void
5227 next_overlay_string (struct it *it)
5229 ++it->current.overlay_string_index;
5230 if (it->current.overlay_string_index == it->n_overlay_strings)
5232 /* No more overlay strings. Restore IT's settings to what
5233 they were before overlay strings were processed, and
5234 continue to deliver from current_buffer. */
5236 it->ellipsis_p = (it->stack[it->sp - 1].display_ellipsis_p != 0);
5237 pop_it (it);
5238 xassert (it->sp > 0
5239 || (NILP (it->string)
5240 && it->method == GET_FROM_BUFFER
5241 && it->stop_charpos >= BEGV
5242 && it->stop_charpos <= it->end_charpos));
5243 it->current.overlay_string_index = -1;
5244 it->n_overlay_strings = 0;
5245 it->overlay_strings_charpos = -1;
5246 /* If there's an empty display string on the stack, pop the
5247 stack, to resync the bidi iterator with IT's position. Such
5248 empty strings are pushed onto the stack in
5249 get_overlay_strings_1. */
5250 if (it->sp > 0 && STRINGP (it->string) && !SCHARS (it->string))
5251 pop_it (it);
5253 /* If we're at the end of the buffer, record that we have
5254 processed the overlay strings there already, so that
5255 next_element_from_buffer doesn't try it again. */
5256 if (NILP (it->string) && IT_CHARPOS (*it) >= it->end_charpos)
5257 it->overlay_strings_at_end_processed_p = 1;
5259 else
5261 /* There are more overlay strings to process. If
5262 IT->current.overlay_string_index has advanced to a position
5263 where we must load IT->overlay_strings with more strings, do
5264 it. We must load at the IT->overlay_strings_charpos where
5265 IT->n_overlay_strings was originally computed; when invisible
5266 text is present, this might not be IT_CHARPOS (Bug#7016). */
5267 int i = it->current.overlay_string_index % OVERLAY_STRING_CHUNK_SIZE;
5269 if (it->current.overlay_string_index && i == 0)
5270 load_overlay_strings (it, it->overlay_strings_charpos);
5272 /* Initialize IT to deliver display elements from the overlay
5273 string. */
5274 it->string = it->overlay_strings[i];
5275 it->multibyte_p = STRING_MULTIBYTE (it->string);
5276 SET_TEXT_POS (it->current.string_pos, 0, 0);
5277 it->method = GET_FROM_STRING;
5278 it->stop_charpos = 0;
5279 if (it->cmp_it.stop_pos >= 0)
5280 it->cmp_it.stop_pos = 0;
5281 it->prev_stop = 0;
5282 it->base_level_stop = 0;
5284 /* Set up the bidi iterator for this overlay string. */
5285 if (it->bidi_p)
5287 it->bidi_it.string.lstring = it->string;
5288 it->bidi_it.string.s = NULL;
5289 it->bidi_it.string.schars = SCHARS (it->string);
5290 it->bidi_it.string.bufpos = it->overlay_strings_charpos;
5291 it->bidi_it.string.from_disp_str = it->string_from_display_prop_p;
5292 it->bidi_it.string.unibyte = !it->multibyte_p;
5293 bidi_init_it (0, 0, FRAME_WINDOW_P (it->f), &it->bidi_it);
5297 CHECK_IT (it);
5301 /* Compare two overlay_entry structures E1 and E2. Used as a
5302 comparison function for qsort in load_overlay_strings. Overlay
5303 strings for the same position are sorted so that
5305 1. All after-strings come in front of before-strings, except
5306 when they come from the same overlay.
5308 2. Within after-strings, strings are sorted so that overlay strings
5309 from overlays with higher priorities come first.
5311 2. Within before-strings, strings are sorted so that overlay
5312 strings from overlays with higher priorities come last.
5314 Value is analogous to strcmp. */
5317 static int
5318 compare_overlay_entries (const void *e1, const void *e2)
5320 struct overlay_entry *entry1 = (struct overlay_entry *) e1;
5321 struct overlay_entry *entry2 = (struct overlay_entry *) e2;
5322 int result;
5324 if (entry1->after_string_p != entry2->after_string_p)
5326 /* Let after-strings appear in front of before-strings if
5327 they come from different overlays. */
5328 if (EQ (entry1->overlay, entry2->overlay))
5329 result = entry1->after_string_p ? 1 : -1;
5330 else
5331 result = entry1->after_string_p ? -1 : 1;
5333 else if (entry1->priority != entry2->priority)
5335 if (entry1->after_string_p)
5336 /* After-strings sorted in order of decreasing priority. */
5337 result = entry2->priority < entry1->priority ? -1 : 1;
5338 else
5339 /* Before-strings sorted in order of increasing priority. */
5340 result = entry1->priority < entry2->priority ? -1 : 1;
5342 else
5343 result = 0;
5345 return result;
5349 /* Load the vector IT->overlay_strings with overlay strings from IT's
5350 current buffer position, or from CHARPOS if that is > 0. Set
5351 IT->n_overlays to the total number of overlay strings found.
5353 Overlay strings are processed OVERLAY_STRING_CHUNK_SIZE strings at
5354 a time. On entry into load_overlay_strings,
5355 IT->current.overlay_string_index gives the number of overlay
5356 strings that have already been loaded by previous calls to this
5357 function.
5359 IT->add_overlay_start contains an additional overlay start
5360 position to consider for taking overlay strings from, if non-zero.
5361 This position comes into play when the overlay has an `invisible'
5362 property, and both before and after-strings. When we've skipped to
5363 the end of the overlay, because of its `invisible' property, we
5364 nevertheless want its before-string to appear.
5365 IT->add_overlay_start will contain the overlay start position
5366 in this case.
5368 Overlay strings are sorted so that after-string strings come in
5369 front of before-string strings. Within before and after-strings,
5370 strings are sorted by overlay priority. See also function
5371 compare_overlay_entries. */
5373 static void
5374 load_overlay_strings (struct it *it, ptrdiff_t charpos)
5376 Lisp_Object overlay, window, str, invisible;
5377 struct Lisp_Overlay *ov;
5378 ptrdiff_t start, end;
5379 ptrdiff_t size = 20;
5380 ptrdiff_t n = 0, i, j;
5381 int invis_p;
5382 struct overlay_entry *entries
5383 = (struct overlay_entry *) alloca (size * sizeof *entries);
5384 USE_SAFE_ALLOCA;
5386 if (charpos <= 0)
5387 charpos = IT_CHARPOS (*it);
5389 /* Append the overlay string STRING of overlay OVERLAY to vector
5390 `entries' which has size `size' and currently contains `n'
5391 elements. AFTER_P non-zero means STRING is an after-string of
5392 OVERLAY. */
5393 #define RECORD_OVERLAY_STRING(OVERLAY, STRING, AFTER_P) \
5394 do \
5396 Lisp_Object priority; \
5398 if (n == size) \
5400 struct overlay_entry *old = entries; \
5401 SAFE_NALLOCA (entries, 2, size); \
5402 memcpy (entries, old, size * sizeof *entries); \
5403 size *= 2; \
5406 entries[n].string = (STRING); \
5407 entries[n].overlay = (OVERLAY); \
5408 priority = Foverlay_get ((OVERLAY), Qpriority); \
5409 entries[n].priority = INTEGERP (priority) ? XINT (priority) : 0; \
5410 entries[n].after_string_p = (AFTER_P); \
5411 ++n; \
5413 while (0)
5415 /* Process overlay before the overlay center. */
5416 for (ov = current_buffer->overlays_before; ov; ov = ov->next)
5418 XSETMISC (overlay, ov);
5419 xassert (OVERLAYP (overlay));
5420 start = OVERLAY_POSITION (OVERLAY_START (overlay));
5421 end = OVERLAY_POSITION (OVERLAY_END (overlay));
5423 if (end < charpos)
5424 break;
5426 /* Skip this overlay if it doesn't start or end at IT's current
5427 position. */
5428 if (end != charpos && start != charpos)
5429 continue;
5431 /* Skip this overlay if it doesn't apply to IT->w. */
5432 window = Foverlay_get (overlay, Qwindow);
5433 if (WINDOWP (window) && XWINDOW (window) != it->w)
5434 continue;
5436 /* If the text ``under'' the overlay is invisible, both before-
5437 and after-strings from this overlay are visible; start and
5438 end position are indistinguishable. */
5439 invisible = Foverlay_get (overlay, Qinvisible);
5440 invis_p = TEXT_PROP_MEANS_INVISIBLE (invisible);
5442 /* If overlay has a non-empty before-string, record it. */
5443 if ((start == charpos || (end == charpos && invis_p))
5444 && (str = Foverlay_get (overlay, Qbefore_string), STRINGP (str))
5445 && SCHARS (str))
5446 RECORD_OVERLAY_STRING (overlay, str, 0);
5448 /* If overlay has a non-empty after-string, record it. */
5449 if ((end == charpos || (start == charpos && invis_p))
5450 && (str = Foverlay_get (overlay, Qafter_string), STRINGP (str))
5451 && SCHARS (str))
5452 RECORD_OVERLAY_STRING (overlay, str, 1);
5455 /* Process overlays after the overlay center. */
5456 for (ov = current_buffer->overlays_after; ov; ov = ov->next)
5458 XSETMISC (overlay, ov);
5459 xassert (OVERLAYP (overlay));
5460 start = OVERLAY_POSITION (OVERLAY_START (overlay));
5461 end = OVERLAY_POSITION (OVERLAY_END (overlay));
5463 if (start > charpos)
5464 break;
5466 /* Skip this overlay if it doesn't start or end at IT's current
5467 position. */
5468 if (end != charpos && start != charpos)
5469 continue;
5471 /* Skip this overlay if it doesn't apply to IT->w. */
5472 window = Foverlay_get (overlay, Qwindow);
5473 if (WINDOWP (window) && XWINDOW (window) != it->w)
5474 continue;
5476 /* If the text ``under'' the overlay is invisible, it has a zero
5477 dimension, and both before- and after-strings apply. */
5478 invisible = Foverlay_get (overlay, Qinvisible);
5479 invis_p = TEXT_PROP_MEANS_INVISIBLE (invisible);
5481 /* If overlay has a non-empty before-string, record it. */
5482 if ((start == charpos || (end == charpos && invis_p))
5483 && (str = Foverlay_get (overlay, Qbefore_string), STRINGP (str))
5484 && SCHARS (str))
5485 RECORD_OVERLAY_STRING (overlay, str, 0);
5487 /* If overlay has a non-empty after-string, record it. */
5488 if ((end == charpos || (start == charpos && invis_p))
5489 && (str = Foverlay_get (overlay, Qafter_string), STRINGP (str))
5490 && SCHARS (str))
5491 RECORD_OVERLAY_STRING (overlay, str, 1);
5494 #undef RECORD_OVERLAY_STRING
5496 /* Sort entries. */
5497 if (n > 1)
5498 qsort (entries, n, sizeof *entries, compare_overlay_entries);
5500 /* Record number of overlay strings, and where we computed it. */
5501 it->n_overlay_strings = n;
5502 it->overlay_strings_charpos = charpos;
5504 /* IT->current.overlay_string_index is the number of overlay strings
5505 that have already been consumed by IT. Copy some of the
5506 remaining overlay strings to IT->overlay_strings. */
5507 i = 0;
5508 j = it->current.overlay_string_index;
5509 while (i < OVERLAY_STRING_CHUNK_SIZE && j < n)
5511 it->overlay_strings[i] = entries[j].string;
5512 it->string_overlays[i++] = entries[j++].overlay;
5515 CHECK_IT (it);
5516 SAFE_FREE ();
5520 /* Get the first chunk of overlay strings at IT's current buffer
5521 position, or at CHARPOS if that is > 0. Value is non-zero if at
5522 least one overlay string was found. */
5524 static int
5525 get_overlay_strings_1 (struct it *it, ptrdiff_t charpos, int compute_stop_p)
5527 /* Get the first OVERLAY_STRING_CHUNK_SIZE overlay strings to
5528 process. This fills IT->overlay_strings with strings, and sets
5529 IT->n_overlay_strings to the total number of strings to process.
5530 IT->pos.overlay_string_index has to be set temporarily to zero
5531 because load_overlay_strings needs this; it must be set to -1
5532 when no overlay strings are found because a zero value would
5533 indicate a position in the first overlay string. */
5534 it->current.overlay_string_index = 0;
5535 load_overlay_strings (it, charpos);
5537 /* If we found overlay strings, set up IT to deliver display
5538 elements from the first one. Otherwise set up IT to deliver
5539 from current_buffer. */
5540 if (it->n_overlay_strings)
5542 /* Make sure we know settings in current_buffer, so that we can
5543 restore meaningful values when we're done with the overlay
5544 strings. */
5545 if (compute_stop_p)
5546 compute_stop_pos (it);
5547 xassert (it->face_id >= 0);
5549 /* Save IT's settings. They are restored after all overlay
5550 strings have been processed. */
5551 xassert (!compute_stop_p || it->sp == 0);
5553 /* When called from handle_stop, there might be an empty display
5554 string loaded. In that case, don't bother saving it. But
5555 don't use this optimization with the bidi iterator, since we
5556 need the corresponding pop_it call to resync the bidi
5557 iterator's position with IT's position, after we are done
5558 with the overlay strings. (The corresponding call to pop_it
5559 in case of an empty display string is in
5560 next_overlay_string.) */
5561 if (!(!it->bidi_p
5562 && STRINGP (it->string) && !SCHARS (it->string)))
5563 push_it (it, NULL);
5565 /* Set up IT to deliver display elements from the first overlay
5566 string. */
5567 IT_STRING_CHARPOS (*it) = IT_STRING_BYTEPOS (*it) = 0;
5568 it->string = it->overlay_strings[0];
5569 it->from_overlay = Qnil;
5570 it->stop_charpos = 0;
5571 xassert (STRINGP (it->string));
5572 it->end_charpos = SCHARS (it->string);
5573 it->prev_stop = 0;
5574 it->base_level_stop = 0;
5575 it->multibyte_p = STRING_MULTIBYTE (it->string);
5576 it->method = GET_FROM_STRING;
5577 it->from_disp_prop_p = 0;
5579 /* Force paragraph direction to be that of the parent
5580 buffer. */
5581 if (it->bidi_p && it->bidi_it.paragraph_dir == R2L)
5582 it->paragraph_embedding = it->bidi_it.paragraph_dir;
5583 else
5584 it->paragraph_embedding = L2R;
5586 /* Set up the bidi iterator for this overlay string. */
5587 if (it->bidi_p)
5589 ptrdiff_t pos = (charpos > 0 ? charpos : IT_CHARPOS (*it));
5591 it->bidi_it.string.lstring = it->string;
5592 it->bidi_it.string.s = NULL;
5593 it->bidi_it.string.schars = SCHARS (it->string);
5594 it->bidi_it.string.bufpos = pos;
5595 it->bidi_it.string.from_disp_str = it->string_from_display_prop_p;
5596 it->bidi_it.string.unibyte = !it->multibyte_p;
5597 bidi_init_it (0, 0, FRAME_WINDOW_P (it->f), &it->bidi_it);
5599 return 1;
5602 it->current.overlay_string_index = -1;
5603 return 0;
5606 static int
5607 get_overlay_strings (struct it *it, ptrdiff_t charpos)
5609 it->string = Qnil;
5610 it->method = GET_FROM_BUFFER;
5612 (void) get_overlay_strings_1 (it, charpos, 1);
5614 CHECK_IT (it);
5616 /* Value is non-zero if we found at least one overlay string. */
5617 return STRINGP (it->string);
5622 /***********************************************************************
5623 Saving and restoring state
5624 ***********************************************************************/
5626 /* Save current settings of IT on IT->stack. Called, for example,
5627 before setting up IT for an overlay string, to be able to restore
5628 IT's settings to what they were after the overlay string has been
5629 processed. If POSITION is non-NULL, it is the position to save on
5630 the stack instead of IT->position. */
5632 static void
5633 push_it (struct it *it, struct text_pos *position)
5635 struct iterator_stack_entry *p;
5637 xassert (it->sp < IT_STACK_SIZE);
5638 p = it->stack + it->sp;
5640 p->stop_charpos = it->stop_charpos;
5641 p->prev_stop = it->prev_stop;
5642 p->base_level_stop = it->base_level_stop;
5643 p->cmp_it = it->cmp_it;
5644 xassert (it->face_id >= 0);
5645 p->face_id = it->face_id;
5646 p->string = it->string;
5647 p->method = it->method;
5648 p->from_overlay = it->from_overlay;
5649 switch (p->method)
5651 case GET_FROM_IMAGE:
5652 p->u.image.object = it->object;
5653 p->u.image.image_id = it->image_id;
5654 p->u.image.slice = it->slice;
5655 break;
5656 case GET_FROM_STRETCH:
5657 p->u.stretch.object = it->object;
5658 break;
5660 p->position = position ? *position : it->position;
5661 p->current = it->current;
5662 p->end_charpos = it->end_charpos;
5663 p->string_nchars = it->string_nchars;
5664 p->area = it->area;
5665 p->multibyte_p = it->multibyte_p;
5666 p->avoid_cursor_p = it->avoid_cursor_p;
5667 p->space_width = it->space_width;
5668 p->font_height = it->font_height;
5669 p->voffset = it->voffset;
5670 p->string_from_display_prop_p = it->string_from_display_prop_p;
5671 p->string_from_prefix_prop_p = it->string_from_prefix_prop_p;
5672 p->display_ellipsis_p = 0;
5673 p->line_wrap = it->line_wrap;
5674 p->bidi_p = it->bidi_p;
5675 p->paragraph_embedding = it->paragraph_embedding;
5676 p->from_disp_prop_p = it->from_disp_prop_p;
5677 ++it->sp;
5679 /* Save the state of the bidi iterator as well. */
5680 if (it->bidi_p)
5681 bidi_push_it (&it->bidi_it);
5684 static void
5685 iterate_out_of_display_property (struct it *it)
5687 int buffer_p = !STRINGP (it->string);
5688 ptrdiff_t eob = (buffer_p ? ZV : it->end_charpos);
5689 ptrdiff_t bob = (buffer_p ? BEGV : 0);
5691 xassert (eob >= CHARPOS (it->position) && CHARPOS (it->position) >= bob);
5693 /* Maybe initialize paragraph direction. If we are at the beginning
5694 of a new paragraph, next_element_from_buffer may not have a
5695 chance to do that. */
5696 if (it->bidi_it.first_elt && it->bidi_it.charpos < eob)
5697 bidi_paragraph_init (it->paragraph_embedding, &it->bidi_it, 1);
5698 /* prev_stop can be zero, so check against BEGV as well. */
5699 while (it->bidi_it.charpos >= bob
5700 && it->prev_stop <= it->bidi_it.charpos
5701 && it->bidi_it.charpos < CHARPOS (it->position)
5702 && it->bidi_it.charpos < eob)
5703 bidi_move_to_visually_next (&it->bidi_it);
5704 /* Record the stop_pos we just crossed, for when we cross it
5705 back, maybe. */
5706 if (it->bidi_it.charpos > CHARPOS (it->position))
5707 it->prev_stop = CHARPOS (it->position);
5708 /* If we ended up not where pop_it put us, resync IT's
5709 positional members with the bidi iterator. */
5710 if (it->bidi_it.charpos != CHARPOS (it->position))
5711 SET_TEXT_POS (it->position, it->bidi_it.charpos, it->bidi_it.bytepos);
5712 if (buffer_p)
5713 it->current.pos = it->position;
5714 else
5715 it->current.string_pos = it->position;
5718 /* Restore IT's settings from IT->stack. Called, for example, when no
5719 more overlay strings must be processed, and we return to delivering
5720 display elements from a buffer, or when the end of a string from a
5721 `display' property is reached and we return to delivering display
5722 elements from an overlay string, or from a buffer. */
5724 static void
5725 pop_it (struct it *it)
5727 struct iterator_stack_entry *p;
5728 int from_display_prop = it->from_disp_prop_p;
5730 xassert (it->sp > 0);
5731 --it->sp;
5732 p = it->stack + it->sp;
5733 it->stop_charpos = p->stop_charpos;
5734 it->prev_stop = p->prev_stop;
5735 it->base_level_stop = p->base_level_stop;
5736 it->cmp_it = p->cmp_it;
5737 it->face_id = p->face_id;
5738 it->current = p->current;
5739 it->position = p->position;
5740 it->string = p->string;
5741 it->from_overlay = p->from_overlay;
5742 if (NILP (it->string))
5743 SET_TEXT_POS (it->current.string_pos, -1, -1);
5744 it->method = p->method;
5745 switch (it->method)
5747 case GET_FROM_IMAGE:
5748 it->image_id = p->u.image.image_id;
5749 it->object = p->u.image.object;
5750 it->slice = p->u.image.slice;
5751 break;
5752 case GET_FROM_STRETCH:
5753 it->object = p->u.stretch.object;
5754 break;
5755 case GET_FROM_BUFFER:
5756 it->object = it->w->buffer;
5757 break;
5758 case GET_FROM_STRING:
5759 it->object = it->string;
5760 break;
5761 case GET_FROM_DISPLAY_VECTOR:
5762 if (it->s)
5763 it->method = GET_FROM_C_STRING;
5764 else if (STRINGP (it->string))
5765 it->method = GET_FROM_STRING;
5766 else
5768 it->method = GET_FROM_BUFFER;
5769 it->object = it->w->buffer;
5772 it->end_charpos = p->end_charpos;
5773 it->string_nchars = p->string_nchars;
5774 it->area = p->area;
5775 it->multibyte_p = p->multibyte_p;
5776 it->avoid_cursor_p = p->avoid_cursor_p;
5777 it->space_width = p->space_width;
5778 it->font_height = p->font_height;
5779 it->voffset = p->voffset;
5780 it->string_from_display_prop_p = p->string_from_display_prop_p;
5781 it->string_from_prefix_prop_p = p->string_from_prefix_prop_p;
5782 it->line_wrap = p->line_wrap;
5783 it->bidi_p = p->bidi_p;
5784 it->paragraph_embedding = p->paragraph_embedding;
5785 it->from_disp_prop_p = p->from_disp_prop_p;
5786 if (it->bidi_p)
5788 bidi_pop_it (&it->bidi_it);
5789 /* Bidi-iterate until we get out of the portion of text, if any,
5790 covered by a `display' text property or by an overlay with
5791 `display' property. (We cannot just jump there, because the
5792 internal coherency of the bidi iterator state can not be
5793 preserved across such jumps.) We also must determine the
5794 paragraph base direction if the overlay we just processed is
5795 at the beginning of a new paragraph. */
5796 if (from_display_prop
5797 && (it->method == GET_FROM_BUFFER || it->method == GET_FROM_STRING))
5798 iterate_out_of_display_property (it);
5800 xassert ((BUFFERP (it->object)
5801 && IT_CHARPOS (*it) == it->bidi_it.charpos
5802 && IT_BYTEPOS (*it) == it->bidi_it.bytepos)
5803 || (STRINGP (it->object)
5804 && IT_STRING_CHARPOS (*it) == it->bidi_it.charpos
5805 && IT_STRING_BYTEPOS (*it) == it->bidi_it.bytepos)
5806 || (CONSP (it->object) && it->method == GET_FROM_STRETCH));
5812 /***********************************************************************
5813 Moving over lines
5814 ***********************************************************************/
5816 /* Set IT's current position to the previous line start. */
5818 static void
5819 back_to_previous_line_start (struct it *it)
5821 IT_CHARPOS (*it) = find_next_newline_no_quit (IT_CHARPOS (*it) - 1, -1);
5822 IT_BYTEPOS (*it) = CHAR_TO_BYTE (IT_CHARPOS (*it));
5826 /* Move IT to the next line start.
5828 Value is non-zero if a newline was found. Set *SKIPPED_P to 1 if
5829 we skipped over part of the text (as opposed to moving the iterator
5830 continuously over the text). Otherwise, don't change the value
5831 of *SKIPPED_P.
5833 If BIDI_IT_PREV is non-NULL, store into it the state of the bidi
5834 iterator on the newline, if it was found.
5836 Newlines may come from buffer text, overlay strings, or strings
5837 displayed via the `display' property. That's the reason we can't
5838 simply use find_next_newline_no_quit.
5840 Note that this function may not skip over invisible text that is so
5841 because of text properties and immediately follows a newline. If
5842 it would, function reseat_at_next_visible_line_start, when called
5843 from set_iterator_to_next, would effectively make invisible
5844 characters following a newline part of the wrong glyph row, which
5845 leads to wrong cursor motion. */
5847 static int
5848 forward_to_next_line_start (struct it *it, int *skipped_p,
5849 struct bidi_it *bidi_it_prev)
5851 ptrdiff_t old_selective;
5852 int newline_found_p, n;
5853 const int MAX_NEWLINE_DISTANCE = 500;
5855 /* If already on a newline, just consume it to avoid unintended
5856 skipping over invisible text below. */
5857 if (it->what == IT_CHARACTER
5858 && it->c == '\n'
5859 && CHARPOS (it->position) == IT_CHARPOS (*it))
5861 if (it->bidi_p && bidi_it_prev)
5862 *bidi_it_prev = it->bidi_it;
5863 set_iterator_to_next (it, 0);
5864 it->c = 0;
5865 return 1;
5868 /* Don't handle selective display in the following. It's (a)
5869 unnecessary because it's done by the caller, and (b) leads to an
5870 infinite recursion because next_element_from_ellipsis indirectly
5871 calls this function. */
5872 old_selective = it->selective;
5873 it->selective = 0;
5875 /* Scan for a newline within MAX_NEWLINE_DISTANCE display elements
5876 from buffer text. */
5877 for (n = newline_found_p = 0;
5878 !newline_found_p && n < MAX_NEWLINE_DISTANCE;
5879 n += STRINGP (it->string) ? 0 : 1)
5881 if (!get_next_display_element (it))
5882 return 0;
5883 newline_found_p = it->what == IT_CHARACTER && it->c == '\n';
5884 if (newline_found_p && it->bidi_p && bidi_it_prev)
5885 *bidi_it_prev = it->bidi_it;
5886 set_iterator_to_next (it, 0);
5889 /* If we didn't find a newline near enough, see if we can use a
5890 short-cut. */
5891 if (!newline_found_p)
5893 ptrdiff_t start = IT_CHARPOS (*it);
5894 ptrdiff_t limit = find_next_newline_no_quit (start, 1);
5895 Lisp_Object pos;
5897 xassert (!STRINGP (it->string));
5899 /* If there isn't any `display' property in sight, and no
5900 overlays, we can just use the position of the newline in
5901 buffer text. */
5902 if (it->stop_charpos >= limit
5903 || ((pos = Fnext_single_property_change (make_number (start),
5904 Qdisplay, Qnil,
5905 make_number (limit)),
5906 NILP (pos))
5907 && next_overlay_change (start) == ZV))
5909 if (!it->bidi_p)
5911 IT_CHARPOS (*it) = limit;
5912 IT_BYTEPOS (*it) = CHAR_TO_BYTE (limit);
5914 else
5916 struct bidi_it bprev;
5918 /* Help bidi.c avoid expensive searches for display
5919 properties and overlays, by telling it that there are
5920 none up to `limit'. */
5921 if (it->bidi_it.disp_pos < limit)
5923 it->bidi_it.disp_pos = limit;
5924 it->bidi_it.disp_prop = 0;
5926 do {
5927 bprev = it->bidi_it;
5928 bidi_move_to_visually_next (&it->bidi_it);
5929 } while (it->bidi_it.charpos != limit);
5930 IT_CHARPOS (*it) = limit;
5931 IT_BYTEPOS (*it) = it->bidi_it.bytepos;
5932 if (bidi_it_prev)
5933 *bidi_it_prev = bprev;
5935 *skipped_p = newline_found_p = 1;
5937 else
5939 while (get_next_display_element (it)
5940 && !newline_found_p)
5942 newline_found_p = ITERATOR_AT_END_OF_LINE_P (it);
5943 if (newline_found_p && it->bidi_p && bidi_it_prev)
5944 *bidi_it_prev = it->bidi_it;
5945 set_iterator_to_next (it, 0);
5950 it->selective = old_selective;
5951 return newline_found_p;
5955 /* Set IT's current position to the previous visible line start. Skip
5956 invisible text that is so either due to text properties or due to
5957 selective display. Caution: this does not change IT->current_x and
5958 IT->hpos. */
5960 static void
5961 back_to_previous_visible_line_start (struct it *it)
5963 while (IT_CHARPOS (*it) > BEGV)
5965 back_to_previous_line_start (it);
5967 if (IT_CHARPOS (*it) <= BEGV)
5968 break;
5970 /* If selective > 0, then lines indented more than its value are
5971 invisible. */
5972 if (it->selective > 0
5973 && indented_beyond_p (IT_CHARPOS (*it), IT_BYTEPOS (*it),
5974 it->selective))
5975 continue;
5977 /* Check the newline before point for invisibility. */
5979 Lisp_Object prop;
5980 prop = Fget_char_property (make_number (IT_CHARPOS (*it) - 1),
5981 Qinvisible, it->window);
5982 if (TEXT_PROP_MEANS_INVISIBLE (prop))
5983 continue;
5986 if (IT_CHARPOS (*it) <= BEGV)
5987 break;
5990 struct it it2;
5991 void *it2data = NULL;
5992 ptrdiff_t pos;
5993 ptrdiff_t beg, end;
5994 Lisp_Object val, overlay;
5996 SAVE_IT (it2, *it, it2data);
5998 /* If newline is part of a composition, continue from start of composition */
5999 if (find_composition (IT_CHARPOS (*it), -1, &beg, &end, &val, Qnil)
6000 && beg < IT_CHARPOS (*it))
6001 goto replaced;
6003 /* If newline is replaced by a display property, find start of overlay
6004 or interval and continue search from that point. */
6005 pos = --IT_CHARPOS (it2);
6006 --IT_BYTEPOS (it2);
6007 it2.sp = 0;
6008 bidi_unshelve_cache (NULL, 0);
6009 it2.string_from_display_prop_p = 0;
6010 it2.from_disp_prop_p = 0;
6011 if (handle_display_prop (&it2) == HANDLED_RETURN
6012 && !NILP (val = get_char_property_and_overlay
6013 (make_number (pos), Qdisplay, Qnil, &overlay))
6014 && (OVERLAYP (overlay)
6015 ? (beg = OVERLAY_POSITION (OVERLAY_START (overlay)))
6016 : get_property_and_range (pos, Qdisplay, &val, &beg, &end, Qnil)))
6018 RESTORE_IT (it, it, it2data);
6019 goto replaced;
6022 /* Newline is not replaced by anything -- so we are done. */
6023 RESTORE_IT (it, it, it2data);
6024 break;
6026 replaced:
6027 if (beg < BEGV)
6028 beg = BEGV;
6029 IT_CHARPOS (*it) = beg;
6030 IT_BYTEPOS (*it) = buf_charpos_to_bytepos (current_buffer, beg);
6034 it->continuation_lines_width = 0;
6036 xassert (IT_CHARPOS (*it) >= BEGV);
6037 xassert (IT_CHARPOS (*it) == BEGV
6038 || FETCH_BYTE (IT_BYTEPOS (*it) - 1) == '\n');
6039 CHECK_IT (it);
6043 /* Reseat iterator IT at the previous visible line start. Skip
6044 invisible text that is so either due to text properties or due to
6045 selective display. At the end, update IT's overlay information,
6046 face information etc. */
6048 void
6049 reseat_at_previous_visible_line_start (struct it *it)
6051 back_to_previous_visible_line_start (it);
6052 reseat (it, it->current.pos, 1);
6053 CHECK_IT (it);
6057 /* Reseat iterator IT on the next visible line start in the current
6058 buffer. ON_NEWLINE_P non-zero means position IT on the newline
6059 preceding the line start. Skip over invisible text that is so
6060 because of selective display. Compute faces, overlays etc at the
6061 new position. Note that this function does not skip over text that
6062 is invisible because of text properties. */
6064 static void
6065 reseat_at_next_visible_line_start (struct it *it, int on_newline_p)
6067 int newline_found_p, skipped_p = 0;
6068 struct bidi_it bidi_it_prev;
6070 newline_found_p = forward_to_next_line_start (it, &skipped_p, &bidi_it_prev);
6072 /* Skip over lines that are invisible because they are indented
6073 more than the value of IT->selective. */
6074 if (it->selective > 0)
6075 while (IT_CHARPOS (*it) < ZV
6076 && indented_beyond_p (IT_CHARPOS (*it), IT_BYTEPOS (*it),
6077 it->selective))
6079 xassert (IT_BYTEPOS (*it) == BEGV
6080 || FETCH_BYTE (IT_BYTEPOS (*it) - 1) == '\n');
6081 newline_found_p =
6082 forward_to_next_line_start (it, &skipped_p, &bidi_it_prev);
6085 /* Position on the newline if that's what's requested. */
6086 if (on_newline_p && newline_found_p)
6088 if (STRINGP (it->string))
6090 if (IT_STRING_CHARPOS (*it) > 0)
6092 if (!it->bidi_p)
6094 --IT_STRING_CHARPOS (*it);
6095 --IT_STRING_BYTEPOS (*it);
6097 else
6099 /* We need to restore the bidi iterator to the state
6100 it had on the newline, and resync the IT's
6101 position with that. */
6102 it->bidi_it = bidi_it_prev;
6103 IT_STRING_CHARPOS (*it) = it->bidi_it.charpos;
6104 IT_STRING_BYTEPOS (*it) = it->bidi_it.bytepos;
6108 else if (IT_CHARPOS (*it) > BEGV)
6110 if (!it->bidi_p)
6112 --IT_CHARPOS (*it);
6113 --IT_BYTEPOS (*it);
6115 else
6117 /* We need to restore the bidi iterator to the state it
6118 had on the newline and resync IT with that. */
6119 it->bidi_it = bidi_it_prev;
6120 IT_CHARPOS (*it) = it->bidi_it.charpos;
6121 IT_BYTEPOS (*it) = it->bidi_it.bytepos;
6123 reseat (it, it->current.pos, 0);
6126 else if (skipped_p)
6127 reseat (it, it->current.pos, 0);
6129 CHECK_IT (it);
6134 /***********************************************************************
6135 Changing an iterator's position
6136 ***********************************************************************/
6138 /* Change IT's current position to POS in current_buffer. If FORCE_P
6139 is non-zero, always check for text properties at the new position.
6140 Otherwise, text properties are only looked up if POS >=
6141 IT->check_charpos of a property. */
6143 static void
6144 reseat (struct it *it, struct text_pos pos, int force_p)
6146 ptrdiff_t original_pos = IT_CHARPOS (*it);
6148 reseat_1 (it, pos, 0);
6150 /* Determine where to check text properties. Avoid doing it
6151 where possible because text property lookup is very expensive. */
6152 if (force_p
6153 || CHARPOS (pos) > it->stop_charpos
6154 || CHARPOS (pos) < original_pos)
6156 if (it->bidi_p)
6158 /* For bidi iteration, we need to prime prev_stop and
6159 base_level_stop with our best estimations. */
6160 /* Implementation note: Of course, POS is not necessarily a
6161 stop position, so assigning prev_pos to it is a lie; we
6162 should have called compute_stop_backwards. However, if
6163 the current buffer does not include any R2L characters,
6164 that call would be a waste of cycles, because the
6165 iterator will never move back, and thus never cross this
6166 "fake" stop position. So we delay that backward search
6167 until the time we really need it, in next_element_from_buffer. */
6168 if (CHARPOS (pos) != it->prev_stop)
6169 it->prev_stop = CHARPOS (pos);
6170 if (CHARPOS (pos) < it->base_level_stop)
6171 it->base_level_stop = 0; /* meaning it's unknown */
6172 handle_stop (it);
6174 else
6176 handle_stop (it);
6177 it->prev_stop = it->base_level_stop = 0;
6182 CHECK_IT (it);
6186 /* Change IT's buffer position to POS. SET_STOP_P non-zero means set
6187 IT->stop_pos to POS, also. */
6189 static void
6190 reseat_1 (struct it *it, struct text_pos pos, int set_stop_p)
6192 /* Don't call this function when scanning a C string. */
6193 xassert (it->s == NULL);
6195 /* POS must be a reasonable value. */
6196 xassert (CHARPOS (pos) >= BEGV && CHARPOS (pos) <= ZV);
6198 it->current.pos = it->position = pos;
6199 it->end_charpos = ZV;
6200 it->dpvec = NULL;
6201 it->current.dpvec_index = -1;
6202 it->current.overlay_string_index = -1;
6203 IT_STRING_CHARPOS (*it) = -1;
6204 IT_STRING_BYTEPOS (*it) = -1;
6205 it->string = Qnil;
6206 it->method = GET_FROM_BUFFER;
6207 it->object = it->w->buffer;
6208 it->area = TEXT_AREA;
6209 it->multibyte_p = !NILP (BVAR (current_buffer, enable_multibyte_characters));
6210 it->sp = 0;
6211 it->string_from_display_prop_p = 0;
6212 it->string_from_prefix_prop_p = 0;
6214 it->from_disp_prop_p = 0;
6215 it->face_before_selective_p = 0;
6216 if (it->bidi_p)
6218 bidi_init_it (IT_CHARPOS (*it), IT_BYTEPOS (*it), FRAME_WINDOW_P (it->f),
6219 &it->bidi_it);
6220 bidi_unshelve_cache (NULL, 0);
6221 it->bidi_it.paragraph_dir = NEUTRAL_DIR;
6222 it->bidi_it.string.s = NULL;
6223 it->bidi_it.string.lstring = Qnil;
6224 it->bidi_it.string.bufpos = 0;
6225 it->bidi_it.string.unibyte = 0;
6228 if (set_stop_p)
6230 it->stop_charpos = CHARPOS (pos);
6231 it->base_level_stop = CHARPOS (pos);
6236 /* Set up IT for displaying a string, starting at CHARPOS in window W.
6237 If S is non-null, it is a C string to iterate over. Otherwise,
6238 STRING gives a Lisp string to iterate over.
6240 If PRECISION > 0, don't return more then PRECISION number of
6241 characters from the string.
6243 If FIELD_WIDTH > 0, return padding spaces until FIELD_WIDTH
6244 characters have been returned. FIELD_WIDTH < 0 means an infinite
6245 field width.
6247 MULTIBYTE = 0 means disable processing of multibyte characters,
6248 MULTIBYTE > 0 means enable it,
6249 MULTIBYTE < 0 means use IT->multibyte_p.
6251 IT must be initialized via a prior call to init_iterator before
6252 calling this function. */
6254 static void
6255 reseat_to_string (struct it *it, const char *s, Lisp_Object string,
6256 ptrdiff_t charpos, ptrdiff_t precision, int field_width,
6257 int multibyte)
6259 /* No region in strings. */
6260 it->region_beg_charpos = it->region_end_charpos = -1;
6262 /* No text property checks performed by default, but see below. */
6263 it->stop_charpos = -1;
6265 /* Set iterator position and end position. */
6266 memset (&it->current, 0, sizeof it->current);
6267 it->current.overlay_string_index = -1;
6268 it->current.dpvec_index = -1;
6269 xassert (charpos >= 0);
6271 /* If STRING is specified, use its multibyteness, otherwise use the
6272 setting of MULTIBYTE, if specified. */
6273 if (multibyte >= 0)
6274 it->multibyte_p = multibyte > 0;
6276 /* Bidirectional reordering of strings is controlled by the default
6277 value of bidi-display-reordering. Don't try to reorder while
6278 loading loadup.el, as the necessary character property tables are
6279 not yet available. */
6280 it->bidi_p =
6281 NILP (Vpurify_flag)
6282 && !NILP (BVAR (&buffer_defaults, bidi_display_reordering));
6284 if (s == NULL)
6286 xassert (STRINGP (string));
6287 it->string = string;
6288 it->s = NULL;
6289 it->end_charpos = it->string_nchars = SCHARS (string);
6290 it->method = GET_FROM_STRING;
6291 it->current.string_pos = string_pos (charpos, string);
6293 if (it->bidi_p)
6295 it->bidi_it.string.lstring = string;
6296 it->bidi_it.string.s = NULL;
6297 it->bidi_it.string.schars = it->end_charpos;
6298 it->bidi_it.string.bufpos = 0;
6299 it->bidi_it.string.from_disp_str = 0;
6300 it->bidi_it.string.unibyte = !it->multibyte_p;
6301 bidi_init_it (charpos, IT_STRING_BYTEPOS (*it),
6302 FRAME_WINDOW_P (it->f), &it->bidi_it);
6305 else
6307 it->s = (const unsigned char *) s;
6308 it->string = Qnil;
6310 /* Note that we use IT->current.pos, not it->current.string_pos,
6311 for displaying C strings. */
6312 IT_STRING_CHARPOS (*it) = IT_STRING_BYTEPOS (*it) = -1;
6313 if (it->multibyte_p)
6315 it->current.pos = c_string_pos (charpos, s, 1);
6316 it->end_charpos = it->string_nchars = number_of_chars (s, 1);
6318 else
6320 IT_CHARPOS (*it) = IT_BYTEPOS (*it) = charpos;
6321 it->end_charpos = it->string_nchars = strlen (s);
6324 if (it->bidi_p)
6326 it->bidi_it.string.lstring = Qnil;
6327 it->bidi_it.string.s = (const unsigned char *) s;
6328 it->bidi_it.string.schars = it->end_charpos;
6329 it->bidi_it.string.bufpos = 0;
6330 it->bidi_it.string.from_disp_str = 0;
6331 it->bidi_it.string.unibyte = !it->multibyte_p;
6332 bidi_init_it (charpos, IT_BYTEPOS (*it), FRAME_WINDOW_P (it->f),
6333 &it->bidi_it);
6335 it->method = GET_FROM_C_STRING;
6338 /* PRECISION > 0 means don't return more than PRECISION characters
6339 from the string. */
6340 if (precision > 0 && it->end_charpos - charpos > precision)
6342 it->end_charpos = it->string_nchars = charpos + precision;
6343 if (it->bidi_p)
6344 it->bidi_it.string.schars = it->end_charpos;
6347 /* FIELD_WIDTH > 0 means pad with spaces until FIELD_WIDTH
6348 characters have been returned. FIELD_WIDTH == 0 means don't pad,
6349 FIELD_WIDTH < 0 means infinite field width. This is useful for
6350 padding with `-' at the end of a mode line. */
6351 if (field_width < 0)
6352 field_width = INFINITY;
6353 /* Implementation note: We deliberately don't enlarge
6354 it->bidi_it.string.schars here to fit it->end_charpos, because
6355 the bidi iterator cannot produce characters out of thin air. */
6356 if (field_width > it->end_charpos - charpos)
6357 it->end_charpos = charpos + field_width;
6359 /* Use the standard display table for displaying strings. */
6360 if (DISP_TABLE_P (Vstandard_display_table))
6361 it->dp = XCHAR_TABLE (Vstandard_display_table);
6363 it->stop_charpos = charpos;
6364 it->prev_stop = charpos;
6365 it->base_level_stop = 0;
6366 if (it->bidi_p)
6368 it->bidi_it.first_elt = 1;
6369 it->bidi_it.paragraph_dir = NEUTRAL_DIR;
6370 it->bidi_it.disp_pos = -1;
6372 if (s == NULL && it->multibyte_p)
6374 ptrdiff_t endpos = SCHARS (it->string);
6375 if (endpos > it->end_charpos)
6376 endpos = it->end_charpos;
6377 composition_compute_stop_pos (&it->cmp_it, charpos, -1, endpos,
6378 it->string);
6380 CHECK_IT (it);
6385 /***********************************************************************
6386 Iteration
6387 ***********************************************************************/
6389 /* Map enum it_method value to corresponding next_element_from_* function. */
6391 static int (* get_next_element[NUM_IT_METHODS]) (struct it *it) =
6393 next_element_from_buffer,
6394 next_element_from_display_vector,
6395 next_element_from_string,
6396 next_element_from_c_string,
6397 next_element_from_image,
6398 next_element_from_stretch
6401 #define GET_NEXT_DISPLAY_ELEMENT(it) (*get_next_element[(it)->method]) (it)
6404 /* Return 1 iff a character at CHARPOS (and BYTEPOS) is composed
6405 (possibly with the following characters). */
6407 #define CHAR_COMPOSED_P(IT,CHARPOS,BYTEPOS,END_CHARPOS) \
6408 ((IT)->cmp_it.id >= 0 \
6409 || ((IT)->cmp_it.stop_pos == (CHARPOS) \
6410 && composition_reseat_it (&(IT)->cmp_it, CHARPOS, BYTEPOS, \
6411 END_CHARPOS, (IT)->w, \
6412 FACE_FROM_ID ((IT)->f, (IT)->face_id), \
6413 (IT)->string)))
6416 /* Lookup the char-table Vglyphless_char_display for character C (-1
6417 if we want information for no-font case), and return the display
6418 method symbol. By side-effect, update it->what and
6419 it->glyphless_method. This function is called from
6420 get_next_display_element for each character element, and from
6421 x_produce_glyphs when no suitable font was found. */
6423 Lisp_Object
6424 lookup_glyphless_char_display (int c, struct it *it)
6426 Lisp_Object glyphless_method = Qnil;
6428 if (CHAR_TABLE_P (Vglyphless_char_display)
6429 && CHAR_TABLE_EXTRA_SLOTS (XCHAR_TABLE (Vglyphless_char_display)) >= 1)
6431 if (c >= 0)
6433 glyphless_method = CHAR_TABLE_REF (Vglyphless_char_display, c);
6434 if (CONSP (glyphless_method))
6435 glyphless_method = FRAME_WINDOW_P (it->f)
6436 ? XCAR (glyphless_method)
6437 : XCDR (glyphless_method);
6439 else
6440 glyphless_method = XCHAR_TABLE (Vglyphless_char_display)->extras[0];
6443 retry:
6444 if (NILP (glyphless_method))
6446 if (c >= 0)
6447 /* The default is to display the character by a proper font. */
6448 return Qnil;
6449 /* The default for the no-font case is to display an empty box. */
6450 glyphless_method = Qempty_box;
6452 if (EQ (glyphless_method, Qzero_width))
6454 if (c >= 0)
6455 return glyphless_method;
6456 /* This method can't be used for the no-font case. */
6457 glyphless_method = Qempty_box;
6459 if (EQ (glyphless_method, Qthin_space))
6460 it->glyphless_method = GLYPHLESS_DISPLAY_THIN_SPACE;
6461 else if (EQ (glyphless_method, Qempty_box))
6462 it->glyphless_method = GLYPHLESS_DISPLAY_EMPTY_BOX;
6463 else if (EQ (glyphless_method, Qhex_code))
6464 it->glyphless_method = GLYPHLESS_DISPLAY_HEX_CODE;
6465 else if (STRINGP (glyphless_method))
6466 it->glyphless_method = GLYPHLESS_DISPLAY_ACRONYM;
6467 else
6469 /* Invalid value. We use the default method. */
6470 glyphless_method = Qnil;
6471 goto retry;
6473 it->what = IT_GLYPHLESS;
6474 return glyphless_method;
6477 /* Load IT's display element fields with information about the next
6478 display element from the current position of IT. Value is zero if
6479 end of buffer (or C string) is reached. */
6481 static struct frame *last_escape_glyph_frame = NULL;
6482 static int last_escape_glyph_face_id = (1 << FACE_ID_BITS);
6483 static int last_escape_glyph_merged_face_id = 0;
6485 struct frame *last_glyphless_glyph_frame = NULL;
6486 int last_glyphless_glyph_face_id = (1 << FACE_ID_BITS);
6487 int last_glyphless_glyph_merged_face_id = 0;
6489 static int
6490 get_next_display_element (struct it *it)
6492 /* Non-zero means that we found a display element. Zero means that
6493 we hit the end of what we iterate over. Performance note: the
6494 function pointer `method' used here turns out to be faster than
6495 using a sequence of if-statements. */
6496 int success_p;
6498 get_next:
6499 success_p = GET_NEXT_DISPLAY_ELEMENT (it);
6501 if (it->what == IT_CHARACTER)
6503 /* UAX#9, L4: "A character is depicted by a mirrored glyph if
6504 and only if (a) the resolved directionality of that character
6505 is R..." */
6506 /* FIXME: Do we need an exception for characters from display
6507 tables? */
6508 if (it->bidi_p && it->bidi_it.type == STRONG_R)
6509 it->c = bidi_mirror_char (it->c);
6510 /* Map via display table or translate control characters.
6511 IT->c, IT->len etc. have been set to the next character by
6512 the function call above. If we have a display table, and it
6513 contains an entry for IT->c, translate it. Don't do this if
6514 IT->c itself comes from a display table, otherwise we could
6515 end up in an infinite recursion. (An alternative could be to
6516 count the recursion depth of this function and signal an
6517 error when a certain maximum depth is reached.) Is it worth
6518 it? */
6519 if (success_p && it->dpvec == NULL)
6521 Lisp_Object dv;
6522 struct charset *unibyte = CHARSET_FROM_ID (charset_unibyte);
6523 int nonascii_space_p = 0;
6524 int nonascii_hyphen_p = 0;
6525 int c = it->c; /* This is the character to display. */
6527 if (! it->multibyte_p && ! ASCII_CHAR_P (c))
6529 xassert (SINGLE_BYTE_CHAR_P (c));
6530 if (unibyte_display_via_language_environment)
6532 c = DECODE_CHAR (unibyte, c);
6533 if (c < 0)
6534 c = BYTE8_TO_CHAR (it->c);
6536 else
6537 c = BYTE8_TO_CHAR (it->c);
6540 if (it->dp
6541 && (dv = DISP_CHAR_VECTOR (it->dp, c),
6542 VECTORP (dv)))
6544 struct Lisp_Vector *v = XVECTOR (dv);
6546 /* Return the first character from the display table
6547 entry, if not empty. If empty, don't display the
6548 current character. */
6549 if (v->header.size)
6551 it->dpvec_char_len = it->len;
6552 it->dpvec = v->contents;
6553 it->dpend = v->contents + v->header.size;
6554 it->current.dpvec_index = 0;
6555 it->dpvec_face_id = -1;
6556 it->saved_face_id = it->face_id;
6557 it->method = GET_FROM_DISPLAY_VECTOR;
6558 it->ellipsis_p = 0;
6560 else
6562 set_iterator_to_next (it, 0);
6564 goto get_next;
6567 if (! NILP (lookup_glyphless_char_display (c, it)))
6569 if (it->what == IT_GLYPHLESS)
6570 goto done;
6571 /* Don't display this character. */
6572 set_iterator_to_next (it, 0);
6573 goto get_next;
6576 /* If `nobreak-char-display' is non-nil, we display
6577 non-ASCII spaces and hyphens specially. */
6578 if (! ASCII_CHAR_P (c) && ! NILP (Vnobreak_char_display))
6580 if (c == 0xA0)
6581 nonascii_space_p = 1;
6582 else if (c == 0xAD || c == 0x2010 || c == 0x2011)
6583 nonascii_hyphen_p = 1;
6586 /* Translate control characters into `\003' or `^C' form.
6587 Control characters coming from a display table entry are
6588 currently not translated because we use IT->dpvec to hold
6589 the translation. This could easily be changed but I
6590 don't believe that it is worth doing.
6592 The characters handled by `nobreak-char-display' must be
6593 translated too.
6595 Non-printable characters and raw-byte characters are also
6596 translated to octal form. */
6597 if (((c < ' ' || c == 127) /* ASCII control chars */
6598 ? (it->area != TEXT_AREA
6599 /* In mode line, treat \n, \t like other crl chars. */
6600 || (c != '\t'
6601 && it->glyph_row
6602 && (it->glyph_row->mode_line_p || it->avoid_cursor_p))
6603 || (c != '\n' && c != '\t'))
6604 : (nonascii_space_p
6605 || nonascii_hyphen_p
6606 || CHAR_BYTE8_P (c)
6607 || ! CHAR_PRINTABLE_P (c))))
6609 /* C is a control character, non-ASCII space/hyphen,
6610 raw-byte, or a non-printable character which must be
6611 displayed either as '\003' or as `^C' where the '\\'
6612 and '^' can be defined in the display table. Fill
6613 IT->ctl_chars with glyphs for what we have to
6614 display. Then, set IT->dpvec to these glyphs. */
6615 Lisp_Object gc;
6616 int ctl_len;
6617 int face_id;
6618 int lface_id = 0;
6619 int escape_glyph;
6621 /* Handle control characters with ^. */
6623 if (ASCII_CHAR_P (c) && it->ctl_arrow_p)
6625 int g;
6627 g = '^'; /* default glyph for Control */
6628 /* Set IT->ctl_chars[0] to the glyph for `^'. */
6629 if (it->dp
6630 && (gc = DISP_CTRL_GLYPH (it->dp), GLYPH_CODE_P (gc)))
6632 g = GLYPH_CODE_CHAR (gc);
6633 lface_id = GLYPH_CODE_FACE (gc);
6635 if (lface_id)
6637 face_id = merge_faces (it->f, Qt, lface_id, it->face_id);
6639 else if (it->f == last_escape_glyph_frame
6640 && it->face_id == last_escape_glyph_face_id)
6642 face_id = last_escape_glyph_merged_face_id;
6644 else
6646 /* Merge the escape-glyph face into the current face. */
6647 face_id = merge_faces (it->f, Qescape_glyph, 0,
6648 it->face_id);
6649 last_escape_glyph_frame = it->f;
6650 last_escape_glyph_face_id = it->face_id;
6651 last_escape_glyph_merged_face_id = face_id;
6654 XSETINT (it->ctl_chars[0], g);
6655 XSETINT (it->ctl_chars[1], c ^ 0100);
6656 ctl_len = 2;
6657 goto display_control;
6660 /* Handle non-ascii space in the mode where it only gets
6661 highlighting. */
6663 if (nonascii_space_p && EQ (Vnobreak_char_display, Qt))
6665 /* Merge `nobreak-space' into the current face. */
6666 face_id = merge_faces (it->f, Qnobreak_space, 0,
6667 it->face_id);
6668 XSETINT (it->ctl_chars[0], ' ');
6669 ctl_len = 1;
6670 goto display_control;
6673 /* Handle sequences that start with the "escape glyph". */
6675 /* the default escape glyph is \. */
6676 escape_glyph = '\\';
6678 if (it->dp
6679 && (gc = DISP_ESCAPE_GLYPH (it->dp), GLYPH_CODE_P (gc)))
6681 escape_glyph = GLYPH_CODE_CHAR (gc);
6682 lface_id = GLYPH_CODE_FACE (gc);
6684 if (lface_id)
6686 /* The display table specified a face.
6687 Merge it into face_id and also into escape_glyph. */
6688 face_id = merge_faces (it->f, Qt, lface_id,
6689 it->face_id);
6691 else if (it->f == last_escape_glyph_frame
6692 && it->face_id == last_escape_glyph_face_id)
6694 face_id = last_escape_glyph_merged_face_id;
6696 else
6698 /* Merge the escape-glyph face into the current face. */
6699 face_id = merge_faces (it->f, Qescape_glyph, 0,
6700 it->face_id);
6701 last_escape_glyph_frame = it->f;
6702 last_escape_glyph_face_id = it->face_id;
6703 last_escape_glyph_merged_face_id = face_id;
6706 /* Draw non-ASCII hyphen with just highlighting: */
6708 if (nonascii_hyphen_p && EQ (Vnobreak_char_display, Qt))
6710 XSETINT (it->ctl_chars[0], '-');
6711 ctl_len = 1;
6712 goto display_control;
6715 /* Draw non-ASCII space/hyphen with escape glyph: */
6717 if (nonascii_space_p || nonascii_hyphen_p)
6719 XSETINT (it->ctl_chars[0], escape_glyph);
6720 XSETINT (it->ctl_chars[1], nonascii_space_p ? ' ' : '-');
6721 ctl_len = 2;
6722 goto display_control;
6726 char str[10];
6727 int len, i;
6729 if (CHAR_BYTE8_P (c))
6730 /* Display \200 instead of \17777600. */
6731 c = CHAR_TO_BYTE8 (c);
6732 len = sprintf (str, "%03o", c);
6734 XSETINT (it->ctl_chars[0], escape_glyph);
6735 for (i = 0; i < len; i++)
6736 XSETINT (it->ctl_chars[i + 1], str[i]);
6737 ctl_len = len + 1;
6740 display_control:
6741 /* Set up IT->dpvec and return first character from it. */
6742 it->dpvec_char_len = it->len;
6743 it->dpvec = it->ctl_chars;
6744 it->dpend = it->dpvec + ctl_len;
6745 it->current.dpvec_index = 0;
6746 it->dpvec_face_id = face_id;
6747 it->saved_face_id = it->face_id;
6748 it->method = GET_FROM_DISPLAY_VECTOR;
6749 it->ellipsis_p = 0;
6750 goto get_next;
6752 it->char_to_display = c;
6754 else if (success_p)
6756 it->char_to_display = it->c;
6760 /* Adjust face id for a multibyte character. There are no multibyte
6761 character in unibyte text. */
6762 if ((it->what == IT_CHARACTER || it->what == IT_COMPOSITION)
6763 && it->multibyte_p
6764 && success_p
6765 && FRAME_WINDOW_P (it->f))
6767 struct face *face = FACE_FROM_ID (it->f, it->face_id);
6769 if (it->what == IT_COMPOSITION && it->cmp_it.ch >= 0)
6771 /* Automatic composition with glyph-string. */
6772 Lisp_Object gstring = composition_gstring_from_id (it->cmp_it.id);
6774 it->face_id = face_for_font (it->f, LGSTRING_FONT (gstring), face);
6776 else
6778 ptrdiff_t pos = (it->s ? -1
6779 : STRINGP (it->string) ? IT_STRING_CHARPOS (*it)
6780 : IT_CHARPOS (*it));
6781 int c;
6783 if (it->what == IT_CHARACTER)
6784 c = it->char_to_display;
6785 else
6787 struct composition *cmp = composition_table[it->cmp_it.id];
6788 int i;
6790 c = ' ';
6791 for (i = 0; i < cmp->glyph_len; i++)
6792 /* TAB in a composition means display glyphs with
6793 padding space on the left or right. */
6794 if ((c = COMPOSITION_GLYPH (cmp, i)) != '\t')
6795 break;
6797 it->face_id = FACE_FOR_CHAR (it->f, face, c, pos, it->string);
6801 done:
6802 /* Is this character the last one of a run of characters with
6803 box? If yes, set IT->end_of_box_run_p to 1. */
6804 if (it->face_box_p
6805 && it->s == NULL)
6807 if (it->method == GET_FROM_STRING && it->sp)
6809 int face_id = underlying_face_id (it);
6810 struct face *face = FACE_FROM_ID (it->f, face_id);
6812 if (face)
6814 if (face->box == FACE_NO_BOX)
6816 /* If the box comes from face properties in a
6817 display string, check faces in that string. */
6818 int string_face_id = face_after_it_pos (it);
6819 it->end_of_box_run_p
6820 = (FACE_FROM_ID (it->f, string_face_id)->box
6821 == FACE_NO_BOX);
6823 /* Otherwise, the box comes from the underlying face.
6824 If this is the last string character displayed, check
6825 the next buffer location. */
6826 else if ((IT_STRING_CHARPOS (*it) >= SCHARS (it->string) - 1)
6827 && (it->current.overlay_string_index
6828 == it->n_overlay_strings - 1))
6830 ptrdiff_t ignore;
6831 int next_face_id;
6832 struct text_pos pos = it->current.pos;
6833 INC_TEXT_POS (pos, it->multibyte_p);
6835 next_face_id = face_at_buffer_position
6836 (it->w, CHARPOS (pos), it->region_beg_charpos,
6837 it->region_end_charpos, &ignore,
6838 (IT_CHARPOS (*it) + TEXT_PROP_DISTANCE_LIMIT), 0,
6839 -1);
6840 it->end_of_box_run_p
6841 = (FACE_FROM_ID (it->f, next_face_id)->box
6842 == FACE_NO_BOX);
6846 else
6848 int face_id = face_after_it_pos (it);
6849 it->end_of_box_run_p
6850 = (face_id != it->face_id
6851 && FACE_FROM_ID (it->f, face_id)->box == FACE_NO_BOX);
6854 /* If we reached the end of the object we've been iterating (e.g., a
6855 display string or an overlay string), and there's something on
6856 IT->stack, proceed with what's on the stack. It doesn't make
6857 sense to return zero if there's unprocessed stuff on the stack,
6858 because otherwise that stuff will never be displayed. */
6859 if (!success_p && it->sp > 0)
6861 set_iterator_to_next (it, 0);
6862 success_p = get_next_display_element (it);
6865 /* Value is 0 if end of buffer or string reached. */
6866 return success_p;
6870 /* Move IT to the next display element.
6872 RESEAT_P non-zero means if called on a newline in buffer text,
6873 skip to the next visible line start.
6875 Functions get_next_display_element and set_iterator_to_next are
6876 separate because I find this arrangement easier to handle than a
6877 get_next_display_element function that also increments IT's
6878 position. The way it is we can first look at an iterator's current
6879 display element, decide whether it fits on a line, and if it does,
6880 increment the iterator position. The other way around we probably
6881 would either need a flag indicating whether the iterator has to be
6882 incremented the next time, or we would have to implement a
6883 decrement position function which would not be easy to write. */
6885 void
6886 set_iterator_to_next (struct it *it, int reseat_p)
6888 /* Reset flags indicating start and end of a sequence of characters
6889 with box. Reset them at the start of this function because
6890 moving the iterator to a new position might set them. */
6891 it->start_of_box_run_p = it->end_of_box_run_p = 0;
6893 switch (it->method)
6895 case GET_FROM_BUFFER:
6896 /* The current display element of IT is a character from
6897 current_buffer. Advance in the buffer, and maybe skip over
6898 invisible lines that are so because of selective display. */
6899 if (ITERATOR_AT_END_OF_LINE_P (it) && reseat_p)
6900 reseat_at_next_visible_line_start (it, 0);
6901 else if (it->cmp_it.id >= 0)
6903 /* We are currently getting glyphs from a composition. */
6904 int i;
6906 if (! it->bidi_p)
6908 IT_CHARPOS (*it) += it->cmp_it.nchars;
6909 IT_BYTEPOS (*it) += it->cmp_it.nbytes;
6910 if (it->cmp_it.to < it->cmp_it.nglyphs)
6912 it->cmp_it.from = it->cmp_it.to;
6914 else
6916 it->cmp_it.id = -1;
6917 composition_compute_stop_pos (&it->cmp_it, IT_CHARPOS (*it),
6918 IT_BYTEPOS (*it),
6919 it->end_charpos, Qnil);
6922 else if (! it->cmp_it.reversed_p)
6924 /* Composition created while scanning forward. */
6925 /* Update IT's char/byte positions to point to the first
6926 character of the next grapheme cluster, or to the
6927 character visually after the current composition. */
6928 for (i = 0; i < it->cmp_it.nchars; i++)
6929 bidi_move_to_visually_next (&it->bidi_it);
6930 IT_BYTEPOS (*it) = it->bidi_it.bytepos;
6931 IT_CHARPOS (*it) = it->bidi_it.charpos;
6933 if (it->cmp_it.to < it->cmp_it.nglyphs)
6935 /* Proceed to the next grapheme cluster. */
6936 it->cmp_it.from = it->cmp_it.to;
6938 else
6940 /* No more grapheme clusters in this composition.
6941 Find the next stop position. */
6942 ptrdiff_t stop = it->end_charpos;
6943 if (it->bidi_it.scan_dir < 0)
6944 /* Now we are scanning backward and don't know
6945 where to stop. */
6946 stop = -1;
6947 composition_compute_stop_pos (&it->cmp_it, IT_CHARPOS (*it),
6948 IT_BYTEPOS (*it), stop, Qnil);
6951 else
6953 /* Composition created while scanning backward. */
6954 /* Update IT's char/byte positions to point to the last
6955 character of the previous grapheme cluster, or the
6956 character visually after the current composition. */
6957 for (i = 0; i < it->cmp_it.nchars; i++)
6958 bidi_move_to_visually_next (&it->bidi_it);
6959 IT_BYTEPOS (*it) = it->bidi_it.bytepos;
6960 IT_CHARPOS (*it) = it->bidi_it.charpos;
6961 if (it->cmp_it.from > 0)
6963 /* Proceed to the previous grapheme cluster. */
6964 it->cmp_it.to = it->cmp_it.from;
6966 else
6968 /* No more grapheme clusters in this composition.
6969 Find the next stop position. */
6970 ptrdiff_t stop = it->end_charpos;
6971 if (it->bidi_it.scan_dir < 0)
6972 /* Now we are scanning backward and don't know
6973 where to stop. */
6974 stop = -1;
6975 composition_compute_stop_pos (&it->cmp_it, IT_CHARPOS (*it),
6976 IT_BYTEPOS (*it), stop, Qnil);
6980 else
6982 xassert (it->len != 0);
6984 if (!it->bidi_p)
6986 IT_BYTEPOS (*it) += it->len;
6987 IT_CHARPOS (*it) += 1;
6989 else
6991 int prev_scan_dir = it->bidi_it.scan_dir;
6992 /* If this is a new paragraph, determine its base
6993 direction (a.k.a. its base embedding level). */
6994 if (it->bidi_it.new_paragraph)
6995 bidi_paragraph_init (it->paragraph_embedding, &it->bidi_it, 0);
6996 bidi_move_to_visually_next (&it->bidi_it);
6997 IT_BYTEPOS (*it) = it->bidi_it.bytepos;
6998 IT_CHARPOS (*it) = it->bidi_it.charpos;
6999 if (prev_scan_dir != it->bidi_it.scan_dir)
7001 /* As the scan direction was changed, we must
7002 re-compute the stop position for composition. */
7003 ptrdiff_t stop = it->end_charpos;
7004 if (it->bidi_it.scan_dir < 0)
7005 stop = -1;
7006 composition_compute_stop_pos (&it->cmp_it, IT_CHARPOS (*it),
7007 IT_BYTEPOS (*it), stop, Qnil);
7010 xassert (IT_BYTEPOS (*it) == CHAR_TO_BYTE (IT_CHARPOS (*it)));
7012 break;
7014 case GET_FROM_C_STRING:
7015 /* Current display element of IT is from a C string. */
7016 if (!it->bidi_p
7017 /* If the string position is beyond string's end, it means
7018 next_element_from_c_string is padding the string with
7019 blanks, in which case we bypass the bidi iterator,
7020 because it cannot deal with such virtual characters. */
7021 || IT_CHARPOS (*it) >= it->bidi_it.string.schars)
7023 IT_BYTEPOS (*it) += it->len;
7024 IT_CHARPOS (*it) += 1;
7026 else
7028 bidi_move_to_visually_next (&it->bidi_it);
7029 IT_BYTEPOS (*it) = it->bidi_it.bytepos;
7030 IT_CHARPOS (*it) = it->bidi_it.charpos;
7032 break;
7034 case GET_FROM_DISPLAY_VECTOR:
7035 /* Current display element of IT is from a display table entry.
7036 Advance in the display table definition. Reset it to null if
7037 end reached, and continue with characters from buffers/
7038 strings. */
7039 ++it->current.dpvec_index;
7041 /* Restore face of the iterator to what they were before the
7042 display vector entry (these entries may contain faces). */
7043 it->face_id = it->saved_face_id;
7045 if (it->dpvec + it->current.dpvec_index >= it->dpend)
7047 int recheck_faces = it->ellipsis_p;
7049 if (it->s)
7050 it->method = GET_FROM_C_STRING;
7051 else if (STRINGP (it->string))
7052 it->method = GET_FROM_STRING;
7053 else
7055 it->method = GET_FROM_BUFFER;
7056 it->object = it->w->buffer;
7059 it->dpvec = NULL;
7060 it->current.dpvec_index = -1;
7062 /* Skip over characters which were displayed via IT->dpvec. */
7063 if (it->dpvec_char_len < 0)
7064 reseat_at_next_visible_line_start (it, 1);
7065 else if (it->dpvec_char_len > 0)
7067 if (it->method == GET_FROM_STRING
7068 && it->n_overlay_strings > 0)
7069 it->ignore_overlay_strings_at_pos_p = 1;
7070 it->len = it->dpvec_char_len;
7071 set_iterator_to_next (it, reseat_p);
7074 /* Maybe recheck faces after display vector */
7075 if (recheck_faces)
7076 it->stop_charpos = IT_CHARPOS (*it);
7078 break;
7080 case GET_FROM_STRING:
7081 /* Current display element is a character from a Lisp string. */
7082 xassert (it->s == NULL && STRINGP (it->string));
7083 /* Don't advance past string end. These conditions are true
7084 when set_iterator_to_next is called at the end of
7085 get_next_display_element, in which case the Lisp string is
7086 already exhausted, and all we want is pop the iterator
7087 stack. */
7088 if (it->current.overlay_string_index >= 0)
7090 /* This is an overlay string, so there's no padding with
7091 spaces, and the number of characters in the string is
7092 where the string ends. */
7093 if (IT_STRING_CHARPOS (*it) >= SCHARS (it->string))
7094 goto consider_string_end;
7096 else
7098 /* Not an overlay string. There could be padding, so test
7099 against it->end_charpos . */
7100 if (IT_STRING_CHARPOS (*it) >= it->end_charpos)
7101 goto consider_string_end;
7103 if (it->cmp_it.id >= 0)
7105 int i;
7107 if (! it->bidi_p)
7109 IT_STRING_CHARPOS (*it) += it->cmp_it.nchars;
7110 IT_STRING_BYTEPOS (*it) += it->cmp_it.nbytes;
7111 if (it->cmp_it.to < it->cmp_it.nglyphs)
7112 it->cmp_it.from = it->cmp_it.to;
7113 else
7115 it->cmp_it.id = -1;
7116 composition_compute_stop_pos (&it->cmp_it,
7117 IT_STRING_CHARPOS (*it),
7118 IT_STRING_BYTEPOS (*it),
7119 it->end_charpos, it->string);
7122 else if (! it->cmp_it.reversed_p)
7124 for (i = 0; i < it->cmp_it.nchars; i++)
7125 bidi_move_to_visually_next (&it->bidi_it);
7126 IT_STRING_BYTEPOS (*it) = it->bidi_it.bytepos;
7127 IT_STRING_CHARPOS (*it) = it->bidi_it.charpos;
7129 if (it->cmp_it.to < it->cmp_it.nglyphs)
7130 it->cmp_it.from = it->cmp_it.to;
7131 else
7133 ptrdiff_t stop = it->end_charpos;
7134 if (it->bidi_it.scan_dir < 0)
7135 stop = -1;
7136 composition_compute_stop_pos (&it->cmp_it,
7137 IT_STRING_CHARPOS (*it),
7138 IT_STRING_BYTEPOS (*it), stop,
7139 it->string);
7142 else
7144 for (i = 0; i < it->cmp_it.nchars; i++)
7145 bidi_move_to_visually_next (&it->bidi_it);
7146 IT_STRING_BYTEPOS (*it) = it->bidi_it.bytepos;
7147 IT_STRING_CHARPOS (*it) = it->bidi_it.charpos;
7148 if (it->cmp_it.from > 0)
7149 it->cmp_it.to = it->cmp_it.from;
7150 else
7152 ptrdiff_t stop = it->end_charpos;
7153 if (it->bidi_it.scan_dir < 0)
7154 stop = -1;
7155 composition_compute_stop_pos (&it->cmp_it,
7156 IT_STRING_CHARPOS (*it),
7157 IT_STRING_BYTEPOS (*it), stop,
7158 it->string);
7162 else
7164 if (!it->bidi_p
7165 /* If the string position is beyond string's end, it
7166 means next_element_from_string is padding the string
7167 with blanks, in which case we bypass the bidi
7168 iterator, because it cannot deal with such virtual
7169 characters. */
7170 || IT_STRING_CHARPOS (*it) >= it->bidi_it.string.schars)
7172 IT_STRING_BYTEPOS (*it) += it->len;
7173 IT_STRING_CHARPOS (*it) += 1;
7175 else
7177 int prev_scan_dir = it->bidi_it.scan_dir;
7179 bidi_move_to_visually_next (&it->bidi_it);
7180 IT_STRING_BYTEPOS (*it) = it->bidi_it.bytepos;
7181 IT_STRING_CHARPOS (*it) = it->bidi_it.charpos;
7182 if (prev_scan_dir != it->bidi_it.scan_dir)
7184 ptrdiff_t stop = it->end_charpos;
7186 if (it->bidi_it.scan_dir < 0)
7187 stop = -1;
7188 composition_compute_stop_pos (&it->cmp_it,
7189 IT_STRING_CHARPOS (*it),
7190 IT_STRING_BYTEPOS (*it), stop,
7191 it->string);
7196 consider_string_end:
7198 if (it->current.overlay_string_index >= 0)
7200 /* IT->string is an overlay string. Advance to the
7201 next, if there is one. */
7202 if (IT_STRING_CHARPOS (*it) >= SCHARS (it->string))
7204 it->ellipsis_p = 0;
7205 next_overlay_string (it);
7206 if (it->ellipsis_p)
7207 setup_for_ellipsis (it, 0);
7210 else
7212 /* IT->string is not an overlay string. If we reached
7213 its end, and there is something on IT->stack, proceed
7214 with what is on the stack. This can be either another
7215 string, this time an overlay string, or a buffer. */
7216 if (IT_STRING_CHARPOS (*it) == SCHARS (it->string)
7217 && it->sp > 0)
7219 pop_it (it);
7220 if (it->method == GET_FROM_STRING)
7221 goto consider_string_end;
7224 break;
7226 case GET_FROM_IMAGE:
7227 case GET_FROM_STRETCH:
7228 /* The position etc with which we have to proceed are on
7229 the stack. The position may be at the end of a string,
7230 if the `display' property takes up the whole string. */
7231 xassert (it->sp > 0);
7232 pop_it (it);
7233 if (it->method == GET_FROM_STRING)
7234 goto consider_string_end;
7235 break;
7237 default:
7238 /* There are no other methods defined, so this should be a bug. */
7239 abort ();
7242 xassert (it->method != GET_FROM_STRING
7243 || (STRINGP (it->string)
7244 && IT_STRING_CHARPOS (*it) >= 0));
7247 /* Load IT's display element fields with information about the next
7248 display element which comes from a display table entry or from the
7249 result of translating a control character to one of the forms `^C'
7250 or `\003'.
7252 IT->dpvec holds the glyphs to return as characters.
7253 IT->saved_face_id holds the face id before the display vector--it
7254 is restored into IT->face_id in set_iterator_to_next. */
7256 static int
7257 next_element_from_display_vector (struct it *it)
7259 Lisp_Object gc;
7261 /* Precondition. */
7262 xassert (it->dpvec && it->current.dpvec_index >= 0);
7264 it->face_id = it->saved_face_id;
7266 /* KFS: This code used to check ip->dpvec[0] instead of the current element.
7267 That seemed totally bogus - so I changed it... */
7268 gc = it->dpvec[it->current.dpvec_index];
7270 if (GLYPH_CODE_P (gc))
7272 it->c = GLYPH_CODE_CHAR (gc);
7273 it->len = CHAR_BYTES (it->c);
7275 /* The entry may contain a face id to use. Such a face id is
7276 the id of a Lisp face, not a realized face. A face id of
7277 zero means no face is specified. */
7278 if (it->dpvec_face_id >= 0)
7279 it->face_id = it->dpvec_face_id;
7280 else
7282 int lface_id = GLYPH_CODE_FACE (gc);
7283 if (lface_id > 0)
7284 it->face_id = merge_faces (it->f, Qt, lface_id,
7285 it->saved_face_id);
7288 else
7289 /* Display table entry is invalid. Return a space. */
7290 it->c = ' ', it->len = 1;
7292 /* Don't change position and object of the iterator here. They are
7293 still the values of the character that had this display table
7294 entry or was translated, and that's what we want. */
7295 it->what = IT_CHARACTER;
7296 return 1;
7299 /* Get the first element of string/buffer in the visual order, after
7300 being reseated to a new position in a string or a buffer. */
7301 static void
7302 get_visually_first_element (struct it *it)
7304 int string_p = STRINGP (it->string) || it->s;
7305 ptrdiff_t eob = (string_p ? it->bidi_it.string.schars : ZV);
7306 ptrdiff_t bob = (string_p ? 0 : BEGV);
7308 if (STRINGP (it->string))
7310 it->bidi_it.charpos = IT_STRING_CHARPOS (*it);
7311 it->bidi_it.bytepos = IT_STRING_BYTEPOS (*it);
7313 else
7315 it->bidi_it.charpos = IT_CHARPOS (*it);
7316 it->bidi_it.bytepos = IT_BYTEPOS (*it);
7319 if (it->bidi_it.charpos == eob)
7321 /* Nothing to do, but reset the FIRST_ELT flag, like
7322 bidi_paragraph_init does, because we are not going to
7323 call it. */
7324 it->bidi_it.first_elt = 0;
7326 else if (it->bidi_it.charpos == bob
7327 || (!string_p
7328 && (FETCH_CHAR (it->bidi_it.bytepos - 1) == '\n'
7329 || FETCH_CHAR (it->bidi_it.bytepos) == '\n')))
7331 /* If we are at the beginning of a line/string, we can produce
7332 the next element right away. */
7333 bidi_paragraph_init (it->paragraph_embedding, &it->bidi_it, 1);
7334 bidi_move_to_visually_next (&it->bidi_it);
7336 else
7338 ptrdiff_t orig_bytepos = it->bidi_it.bytepos;
7340 /* We need to prime the bidi iterator starting at the line's or
7341 string's beginning, before we will be able to produce the
7342 next element. */
7343 if (string_p)
7344 it->bidi_it.charpos = it->bidi_it.bytepos = 0;
7345 else
7347 it->bidi_it.charpos = find_next_newline_no_quit (IT_CHARPOS (*it),
7348 -1);
7349 it->bidi_it.bytepos = CHAR_TO_BYTE (it->bidi_it.charpos);
7351 bidi_paragraph_init (it->paragraph_embedding, &it->bidi_it, 1);
7354 /* Now return to buffer/string position where we were asked
7355 to get the next display element, and produce that. */
7356 bidi_move_to_visually_next (&it->bidi_it);
7358 while (it->bidi_it.bytepos != orig_bytepos
7359 && it->bidi_it.charpos < eob);
7362 /* Adjust IT's position information to where we ended up. */
7363 if (STRINGP (it->string))
7365 IT_STRING_CHARPOS (*it) = it->bidi_it.charpos;
7366 IT_STRING_BYTEPOS (*it) = it->bidi_it.bytepos;
7368 else
7370 IT_CHARPOS (*it) = it->bidi_it.charpos;
7371 IT_BYTEPOS (*it) = it->bidi_it.bytepos;
7374 if (STRINGP (it->string) || !it->s)
7376 ptrdiff_t stop, charpos, bytepos;
7378 if (STRINGP (it->string))
7380 xassert (!it->s);
7381 stop = SCHARS (it->string);
7382 if (stop > it->end_charpos)
7383 stop = it->end_charpos;
7384 charpos = IT_STRING_CHARPOS (*it);
7385 bytepos = IT_STRING_BYTEPOS (*it);
7387 else
7389 stop = it->end_charpos;
7390 charpos = IT_CHARPOS (*it);
7391 bytepos = IT_BYTEPOS (*it);
7393 if (it->bidi_it.scan_dir < 0)
7394 stop = -1;
7395 composition_compute_stop_pos (&it->cmp_it, charpos, bytepos, stop,
7396 it->string);
7400 /* Load IT with the next display element from Lisp string IT->string.
7401 IT->current.string_pos is the current position within the string.
7402 If IT->current.overlay_string_index >= 0, the Lisp string is an
7403 overlay string. */
7405 static int
7406 next_element_from_string (struct it *it)
7408 struct text_pos position;
7410 xassert (STRINGP (it->string));
7411 xassert (!it->bidi_p || EQ (it->string, it->bidi_it.string.lstring));
7412 xassert (IT_STRING_CHARPOS (*it) >= 0);
7413 position = it->current.string_pos;
7415 /* With bidi reordering, the character to display might not be the
7416 character at IT_STRING_CHARPOS. BIDI_IT.FIRST_ELT non-zero means
7417 that we were reseat()ed to a new string, whose paragraph
7418 direction is not known. */
7419 if (it->bidi_p && it->bidi_it.first_elt)
7421 get_visually_first_element (it);
7422 SET_TEXT_POS (position, IT_STRING_CHARPOS (*it), IT_STRING_BYTEPOS (*it));
7425 /* Time to check for invisible text? */
7426 if (IT_STRING_CHARPOS (*it) < it->end_charpos)
7428 if (IT_STRING_CHARPOS (*it) >= it->stop_charpos)
7430 if (!(!it->bidi_p
7431 || BIDI_AT_BASE_LEVEL (it->bidi_it)
7432 || IT_STRING_CHARPOS (*it) == it->stop_charpos))
7434 /* With bidi non-linear iteration, we could find
7435 ourselves far beyond the last computed stop_charpos,
7436 with several other stop positions in between that we
7437 missed. Scan them all now, in buffer's logical
7438 order, until we find and handle the last stop_charpos
7439 that precedes our current position. */
7440 handle_stop_backwards (it, it->stop_charpos);
7441 return GET_NEXT_DISPLAY_ELEMENT (it);
7443 else
7445 if (it->bidi_p)
7447 /* Take note of the stop position we just moved
7448 across, for when we will move back across it. */
7449 it->prev_stop = it->stop_charpos;
7450 /* If we are at base paragraph embedding level, take
7451 note of the last stop position seen at this
7452 level. */
7453 if (BIDI_AT_BASE_LEVEL (it->bidi_it))
7454 it->base_level_stop = it->stop_charpos;
7456 handle_stop (it);
7458 /* Since a handler may have changed IT->method, we must
7459 recurse here. */
7460 return GET_NEXT_DISPLAY_ELEMENT (it);
7463 else if (it->bidi_p
7464 /* If we are before prev_stop, we may have overstepped
7465 on our way backwards a stop_pos, and if so, we need
7466 to handle that stop_pos. */
7467 && IT_STRING_CHARPOS (*it) < it->prev_stop
7468 /* We can sometimes back up for reasons that have nothing
7469 to do with bidi reordering. E.g., compositions. The
7470 code below is only needed when we are above the base
7471 embedding level, so test for that explicitly. */
7472 && !BIDI_AT_BASE_LEVEL (it->bidi_it))
7474 /* If we lost track of base_level_stop, we have no better
7475 place for handle_stop_backwards to start from than string
7476 beginning. This happens, e.g., when we were reseated to
7477 the previous screenful of text by vertical-motion. */
7478 if (it->base_level_stop <= 0
7479 || IT_STRING_CHARPOS (*it) < it->base_level_stop)
7480 it->base_level_stop = 0;
7481 handle_stop_backwards (it, it->base_level_stop);
7482 return GET_NEXT_DISPLAY_ELEMENT (it);
7486 if (it->current.overlay_string_index >= 0)
7488 /* Get the next character from an overlay string. In overlay
7489 strings, there is no field width or padding with spaces to
7490 do. */
7491 if (IT_STRING_CHARPOS (*it) >= SCHARS (it->string))
7493 it->what = IT_EOB;
7494 return 0;
7496 else if (CHAR_COMPOSED_P (it, IT_STRING_CHARPOS (*it),
7497 IT_STRING_BYTEPOS (*it),
7498 it->bidi_it.scan_dir < 0
7499 ? -1
7500 : SCHARS (it->string))
7501 && next_element_from_composition (it))
7503 return 1;
7505 else if (STRING_MULTIBYTE (it->string))
7507 const unsigned char *s = (SDATA (it->string)
7508 + IT_STRING_BYTEPOS (*it));
7509 it->c = string_char_and_length (s, &it->len);
7511 else
7513 it->c = SREF (it->string, IT_STRING_BYTEPOS (*it));
7514 it->len = 1;
7517 else
7519 /* Get the next character from a Lisp string that is not an
7520 overlay string. Such strings come from the mode line, for
7521 example. We may have to pad with spaces, or truncate the
7522 string. See also next_element_from_c_string. */
7523 if (IT_STRING_CHARPOS (*it) >= it->end_charpos)
7525 it->what = IT_EOB;
7526 return 0;
7528 else if (IT_STRING_CHARPOS (*it) >= it->string_nchars)
7530 /* Pad with spaces. */
7531 it->c = ' ', it->len = 1;
7532 CHARPOS (position) = BYTEPOS (position) = -1;
7534 else if (CHAR_COMPOSED_P (it, IT_STRING_CHARPOS (*it),
7535 IT_STRING_BYTEPOS (*it),
7536 it->bidi_it.scan_dir < 0
7537 ? -1
7538 : it->string_nchars)
7539 && next_element_from_composition (it))
7541 return 1;
7543 else if (STRING_MULTIBYTE (it->string))
7545 const unsigned char *s = (SDATA (it->string)
7546 + IT_STRING_BYTEPOS (*it));
7547 it->c = string_char_and_length (s, &it->len);
7549 else
7551 it->c = SREF (it->string, IT_STRING_BYTEPOS (*it));
7552 it->len = 1;
7556 /* Record what we have and where it came from. */
7557 it->what = IT_CHARACTER;
7558 it->object = it->string;
7559 it->position = position;
7560 return 1;
7564 /* Load IT with next display element from C string IT->s.
7565 IT->string_nchars is the maximum number of characters to return
7566 from the string. IT->end_charpos may be greater than
7567 IT->string_nchars when this function is called, in which case we
7568 may have to return padding spaces. Value is zero if end of string
7569 reached, including padding spaces. */
7571 static int
7572 next_element_from_c_string (struct it *it)
7574 int success_p = 1;
7576 xassert (it->s);
7577 xassert (!it->bidi_p || it->s == it->bidi_it.string.s);
7578 it->what = IT_CHARACTER;
7579 BYTEPOS (it->position) = CHARPOS (it->position) = 0;
7580 it->object = Qnil;
7582 /* With bidi reordering, the character to display might not be the
7583 character at IT_CHARPOS. BIDI_IT.FIRST_ELT non-zero means that
7584 we were reseated to a new string, whose paragraph direction is
7585 not known. */
7586 if (it->bidi_p && it->bidi_it.first_elt)
7587 get_visually_first_element (it);
7589 /* IT's position can be greater than IT->string_nchars in case a
7590 field width or precision has been specified when the iterator was
7591 initialized. */
7592 if (IT_CHARPOS (*it) >= it->end_charpos)
7594 /* End of the game. */
7595 it->what = IT_EOB;
7596 success_p = 0;
7598 else if (IT_CHARPOS (*it) >= it->string_nchars)
7600 /* Pad with spaces. */
7601 it->c = ' ', it->len = 1;
7602 BYTEPOS (it->position) = CHARPOS (it->position) = -1;
7604 else if (it->multibyte_p)
7605 it->c = string_char_and_length (it->s + IT_BYTEPOS (*it), &it->len);
7606 else
7607 it->c = it->s[IT_BYTEPOS (*it)], it->len = 1;
7609 return success_p;
7613 /* Set up IT to return characters from an ellipsis, if appropriate.
7614 The definition of the ellipsis glyphs may come from a display table
7615 entry. This function fills IT with the first glyph from the
7616 ellipsis if an ellipsis is to be displayed. */
7618 static int
7619 next_element_from_ellipsis (struct it *it)
7621 if (it->selective_display_ellipsis_p)
7622 setup_for_ellipsis (it, it->len);
7623 else
7625 /* The face at the current position may be different from the
7626 face we find after the invisible text. Remember what it
7627 was in IT->saved_face_id, and signal that it's there by
7628 setting face_before_selective_p. */
7629 it->saved_face_id = it->face_id;
7630 it->method = GET_FROM_BUFFER;
7631 it->object = it->w->buffer;
7632 reseat_at_next_visible_line_start (it, 1);
7633 it->face_before_selective_p = 1;
7636 return GET_NEXT_DISPLAY_ELEMENT (it);
7640 /* Deliver an image display element. The iterator IT is already
7641 filled with image information (done in handle_display_prop). Value
7642 is always 1. */
7645 static int
7646 next_element_from_image (struct it *it)
7648 it->what = IT_IMAGE;
7649 it->ignore_overlay_strings_at_pos_p = 0;
7650 return 1;
7654 /* Fill iterator IT with next display element from a stretch glyph
7655 property. IT->object is the value of the text property. Value is
7656 always 1. */
7658 static int
7659 next_element_from_stretch (struct it *it)
7661 it->what = IT_STRETCH;
7662 return 1;
7665 /* Scan backwards from IT's current position until we find a stop
7666 position, or until BEGV. This is called when we find ourself
7667 before both the last known prev_stop and base_level_stop while
7668 reordering bidirectional text. */
7670 static void
7671 compute_stop_pos_backwards (struct it *it)
7673 const int SCAN_BACK_LIMIT = 1000;
7674 struct text_pos pos;
7675 struct display_pos save_current = it->current;
7676 struct text_pos save_position = it->position;
7677 ptrdiff_t charpos = IT_CHARPOS (*it);
7678 ptrdiff_t where_we_are = charpos;
7679 ptrdiff_t save_stop_pos = it->stop_charpos;
7680 ptrdiff_t save_end_pos = it->end_charpos;
7682 xassert (NILP (it->string) && !it->s);
7683 xassert (it->bidi_p);
7684 it->bidi_p = 0;
7687 it->end_charpos = min (charpos + 1, ZV);
7688 charpos = max (charpos - SCAN_BACK_LIMIT, BEGV);
7689 SET_TEXT_POS (pos, charpos, BYTE_TO_CHAR (charpos));
7690 reseat_1 (it, pos, 0);
7691 compute_stop_pos (it);
7692 /* We must advance forward, right? */
7693 if (it->stop_charpos <= charpos)
7694 abort ();
7696 while (charpos > BEGV && it->stop_charpos >= it->end_charpos);
7698 if (it->stop_charpos <= where_we_are)
7699 it->prev_stop = it->stop_charpos;
7700 else
7701 it->prev_stop = BEGV;
7702 it->bidi_p = 1;
7703 it->current = save_current;
7704 it->position = save_position;
7705 it->stop_charpos = save_stop_pos;
7706 it->end_charpos = save_end_pos;
7709 /* Scan forward from CHARPOS in the current buffer/string, until we
7710 find a stop position > current IT's position. Then handle the stop
7711 position before that. This is called when we bump into a stop
7712 position while reordering bidirectional text. CHARPOS should be
7713 the last previously processed stop_pos (or BEGV/0, if none were
7714 processed yet) whose position is less that IT's current
7715 position. */
7717 static void
7718 handle_stop_backwards (struct it *it, ptrdiff_t charpos)
7720 int bufp = !STRINGP (it->string);
7721 ptrdiff_t where_we_are = (bufp ? IT_CHARPOS (*it) : IT_STRING_CHARPOS (*it));
7722 struct display_pos save_current = it->current;
7723 struct text_pos save_position = it->position;
7724 struct text_pos pos1;
7725 ptrdiff_t next_stop;
7727 /* Scan in strict logical order. */
7728 xassert (it->bidi_p);
7729 it->bidi_p = 0;
7732 it->prev_stop = charpos;
7733 if (bufp)
7735 SET_TEXT_POS (pos1, charpos, CHAR_TO_BYTE (charpos));
7736 reseat_1 (it, pos1, 0);
7738 else
7739 it->current.string_pos = string_pos (charpos, it->string);
7740 compute_stop_pos (it);
7741 /* We must advance forward, right? */
7742 if (it->stop_charpos <= it->prev_stop)
7743 abort ();
7744 charpos = it->stop_charpos;
7746 while (charpos <= where_we_are);
7748 it->bidi_p = 1;
7749 it->current = save_current;
7750 it->position = save_position;
7751 next_stop = it->stop_charpos;
7752 it->stop_charpos = it->prev_stop;
7753 handle_stop (it);
7754 it->stop_charpos = next_stop;
7757 /* Load IT with the next display element from current_buffer. Value
7758 is zero if end of buffer reached. IT->stop_charpos is the next
7759 position at which to stop and check for text properties or buffer
7760 end. */
7762 static int
7763 next_element_from_buffer (struct it *it)
7765 int success_p = 1;
7767 xassert (IT_CHARPOS (*it) >= BEGV);
7768 xassert (NILP (it->string) && !it->s);
7769 xassert (!it->bidi_p
7770 || (EQ (it->bidi_it.string.lstring, Qnil)
7771 && it->bidi_it.string.s == NULL));
7773 /* With bidi reordering, the character to display might not be the
7774 character at IT_CHARPOS. BIDI_IT.FIRST_ELT non-zero means that
7775 we were reseat()ed to a new buffer position, which is potentially
7776 a different paragraph. */
7777 if (it->bidi_p && it->bidi_it.first_elt)
7779 get_visually_first_element (it);
7780 SET_TEXT_POS (it->position, IT_CHARPOS (*it), IT_BYTEPOS (*it));
7783 if (IT_CHARPOS (*it) >= it->stop_charpos)
7785 if (IT_CHARPOS (*it) >= it->end_charpos)
7787 int overlay_strings_follow_p;
7789 /* End of the game, except when overlay strings follow that
7790 haven't been returned yet. */
7791 if (it->overlay_strings_at_end_processed_p)
7792 overlay_strings_follow_p = 0;
7793 else
7795 it->overlay_strings_at_end_processed_p = 1;
7796 overlay_strings_follow_p = get_overlay_strings (it, 0);
7799 if (overlay_strings_follow_p)
7800 success_p = GET_NEXT_DISPLAY_ELEMENT (it);
7801 else
7803 it->what = IT_EOB;
7804 it->position = it->current.pos;
7805 success_p = 0;
7808 else if (!(!it->bidi_p
7809 || BIDI_AT_BASE_LEVEL (it->bidi_it)
7810 || IT_CHARPOS (*it) == it->stop_charpos))
7812 /* With bidi non-linear iteration, we could find ourselves
7813 far beyond the last computed stop_charpos, with several
7814 other stop positions in between that we missed. Scan
7815 them all now, in buffer's logical order, until we find
7816 and handle the last stop_charpos that precedes our
7817 current position. */
7818 handle_stop_backwards (it, it->stop_charpos);
7819 return GET_NEXT_DISPLAY_ELEMENT (it);
7821 else
7823 if (it->bidi_p)
7825 /* Take note of the stop position we just moved across,
7826 for when we will move back across it. */
7827 it->prev_stop = it->stop_charpos;
7828 /* If we are at base paragraph embedding level, take
7829 note of the last stop position seen at this
7830 level. */
7831 if (BIDI_AT_BASE_LEVEL (it->bidi_it))
7832 it->base_level_stop = it->stop_charpos;
7834 handle_stop (it);
7835 return GET_NEXT_DISPLAY_ELEMENT (it);
7838 else if (it->bidi_p
7839 /* If we are before prev_stop, we may have overstepped on
7840 our way backwards a stop_pos, and if so, we need to
7841 handle that stop_pos. */
7842 && IT_CHARPOS (*it) < it->prev_stop
7843 /* We can sometimes back up for reasons that have nothing
7844 to do with bidi reordering. E.g., compositions. The
7845 code below is only needed when we are above the base
7846 embedding level, so test for that explicitly. */
7847 && !BIDI_AT_BASE_LEVEL (it->bidi_it))
7849 if (it->base_level_stop <= 0
7850 || IT_CHARPOS (*it) < it->base_level_stop)
7852 /* If we lost track of base_level_stop, we need to find
7853 prev_stop by looking backwards. This happens, e.g., when
7854 we were reseated to the previous screenful of text by
7855 vertical-motion. */
7856 it->base_level_stop = BEGV;
7857 compute_stop_pos_backwards (it);
7858 handle_stop_backwards (it, it->prev_stop);
7860 else
7861 handle_stop_backwards (it, it->base_level_stop);
7862 return GET_NEXT_DISPLAY_ELEMENT (it);
7864 else
7866 /* No face changes, overlays etc. in sight, so just return a
7867 character from current_buffer. */
7868 unsigned char *p;
7869 ptrdiff_t stop;
7871 /* Maybe run the redisplay end trigger hook. Performance note:
7872 This doesn't seem to cost measurable time. */
7873 if (it->redisplay_end_trigger_charpos
7874 && it->glyph_row
7875 && IT_CHARPOS (*it) >= it->redisplay_end_trigger_charpos)
7876 run_redisplay_end_trigger_hook (it);
7878 stop = it->bidi_it.scan_dir < 0 ? -1 : it->end_charpos;
7879 if (CHAR_COMPOSED_P (it, IT_CHARPOS (*it), IT_BYTEPOS (*it),
7880 stop)
7881 && next_element_from_composition (it))
7883 return 1;
7886 /* Get the next character, maybe multibyte. */
7887 p = BYTE_POS_ADDR (IT_BYTEPOS (*it));
7888 if (it->multibyte_p && !ASCII_BYTE_P (*p))
7889 it->c = STRING_CHAR_AND_LENGTH (p, it->len);
7890 else
7891 it->c = *p, it->len = 1;
7893 /* Record what we have and where it came from. */
7894 it->what = IT_CHARACTER;
7895 it->object = it->w->buffer;
7896 it->position = it->current.pos;
7898 /* Normally we return the character found above, except when we
7899 really want to return an ellipsis for selective display. */
7900 if (it->selective)
7902 if (it->c == '\n')
7904 /* A value of selective > 0 means hide lines indented more
7905 than that number of columns. */
7906 if (it->selective > 0
7907 && IT_CHARPOS (*it) + 1 < ZV
7908 && indented_beyond_p (IT_CHARPOS (*it) + 1,
7909 IT_BYTEPOS (*it) + 1,
7910 it->selective))
7912 success_p = next_element_from_ellipsis (it);
7913 it->dpvec_char_len = -1;
7916 else if (it->c == '\r' && it->selective == -1)
7918 /* A value of selective == -1 means that everything from the
7919 CR to the end of the line is invisible, with maybe an
7920 ellipsis displayed for it. */
7921 success_p = next_element_from_ellipsis (it);
7922 it->dpvec_char_len = -1;
7927 /* Value is zero if end of buffer reached. */
7928 xassert (!success_p || it->what != IT_CHARACTER || it->len > 0);
7929 return success_p;
7933 /* Run the redisplay end trigger hook for IT. */
7935 static void
7936 run_redisplay_end_trigger_hook (struct it *it)
7938 Lisp_Object args[3];
7940 /* IT->glyph_row should be non-null, i.e. we should be actually
7941 displaying something, or otherwise we should not run the hook. */
7942 xassert (it->glyph_row);
7944 /* Set up hook arguments. */
7945 args[0] = Qredisplay_end_trigger_functions;
7946 args[1] = it->window;
7947 XSETINT (args[2], it->redisplay_end_trigger_charpos);
7948 it->redisplay_end_trigger_charpos = 0;
7950 /* Since we are *trying* to run these functions, don't try to run
7951 them again, even if they get an error. */
7952 it->w->redisplay_end_trigger = Qnil;
7953 Frun_hook_with_args (3, args);
7955 /* Notice if it changed the face of the character we are on. */
7956 handle_face_prop (it);
7960 /* Deliver a composition display element. Unlike the other
7961 next_element_from_XXX, this function is not registered in the array
7962 get_next_element[]. It is called from next_element_from_buffer and
7963 next_element_from_string when necessary. */
7965 static int
7966 next_element_from_composition (struct it *it)
7968 it->what = IT_COMPOSITION;
7969 it->len = it->cmp_it.nbytes;
7970 if (STRINGP (it->string))
7972 if (it->c < 0)
7974 IT_STRING_CHARPOS (*it) += it->cmp_it.nchars;
7975 IT_STRING_BYTEPOS (*it) += it->cmp_it.nbytes;
7976 return 0;
7978 it->position = it->current.string_pos;
7979 it->object = it->string;
7980 it->c = composition_update_it (&it->cmp_it, IT_STRING_CHARPOS (*it),
7981 IT_STRING_BYTEPOS (*it), it->string);
7983 else
7985 if (it->c < 0)
7987 IT_CHARPOS (*it) += it->cmp_it.nchars;
7988 IT_BYTEPOS (*it) += it->cmp_it.nbytes;
7989 if (it->bidi_p)
7991 if (it->bidi_it.new_paragraph)
7992 bidi_paragraph_init (it->paragraph_embedding, &it->bidi_it, 0);
7993 /* Resync the bidi iterator with IT's new position.
7994 FIXME: this doesn't support bidirectional text. */
7995 while (it->bidi_it.charpos < IT_CHARPOS (*it))
7996 bidi_move_to_visually_next (&it->bidi_it);
7998 return 0;
8000 it->position = it->current.pos;
8001 it->object = it->w->buffer;
8002 it->c = composition_update_it (&it->cmp_it, IT_CHARPOS (*it),
8003 IT_BYTEPOS (*it), Qnil);
8005 return 1;
8010 /***********************************************************************
8011 Moving an iterator without producing glyphs
8012 ***********************************************************************/
8014 /* Check if iterator is at a position corresponding to a valid buffer
8015 position after some move_it_ call. */
8017 #define IT_POS_VALID_AFTER_MOVE_P(it) \
8018 ((it)->method == GET_FROM_STRING \
8019 ? IT_STRING_CHARPOS (*it) == 0 \
8020 : 1)
8023 /* Move iterator IT to a specified buffer or X position within one
8024 line on the display without producing glyphs.
8026 OP should be a bit mask including some or all of these bits:
8027 MOVE_TO_X: Stop upon reaching x-position TO_X.
8028 MOVE_TO_POS: Stop upon reaching buffer or string position TO_CHARPOS.
8029 Regardless of OP's value, stop upon reaching the end of the display line.
8031 TO_X is normally a value 0 <= TO_X <= IT->last_visible_x.
8032 This means, in particular, that TO_X includes window's horizontal
8033 scroll amount.
8035 The return value has several possible values that
8036 say what condition caused the scan to stop:
8038 MOVE_POS_MATCH_OR_ZV
8039 - when TO_POS or ZV was reached.
8041 MOVE_X_REACHED
8042 -when TO_X was reached before TO_POS or ZV were reached.
8044 MOVE_LINE_CONTINUED
8045 - when we reached the end of the display area and the line must
8046 be continued.
8048 MOVE_LINE_TRUNCATED
8049 - when we reached the end of the display area and the line is
8050 truncated.
8052 MOVE_NEWLINE_OR_CR
8053 - when we stopped at a line end, i.e. a newline or a CR and selective
8054 display is on. */
8056 static enum move_it_result
8057 move_it_in_display_line_to (struct it *it,
8058 ptrdiff_t to_charpos, int to_x,
8059 enum move_operation_enum op)
8061 enum move_it_result result = MOVE_UNDEFINED;
8062 struct glyph_row *saved_glyph_row;
8063 struct it wrap_it, atpos_it, atx_it, ppos_it;
8064 void *wrap_data = NULL, *atpos_data = NULL, *atx_data = NULL;
8065 void *ppos_data = NULL;
8066 int may_wrap = 0;
8067 enum it_method prev_method = it->method;
8068 ptrdiff_t prev_pos = IT_CHARPOS (*it);
8069 int saw_smaller_pos = prev_pos < to_charpos;
8071 /* Don't produce glyphs in produce_glyphs. */
8072 saved_glyph_row = it->glyph_row;
8073 it->glyph_row = NULL;
8075 /* Use wrap_it to save a copy of IT wherever a word wrap could
8076 occur. Use atpos_it to save a copy of IT at the desired buffer
8077 position, if found, so that we can scan ahead and check if the
8078 word later overshoots the window edge. Use atx_it similarly, for
8079 pixel positions. */
8080 wrap_it.sp = -1;
8081 atpos_it.sp = -1;
8082 atx_it.sp = -1;
8084 /* Use ppos_it under bidi reordering to save a copy of IT for the
8085 position > CHARPOS that is the closest to CHARPOS. We restore
8086 that position in IT when we have scanned the entire display line
8087 without finding a match for CHARPOS and all the character
8088 positions are greater than CHARPOS. */
8089 if (it->bidi_p)
8091 SAVE_IT (ppos_it, *it, ppos_data);
8092 SET_TEXT_POS (ppos_it.current.pos, ZV, ZV_BYTE);
8093 if ((op & MOVE_TO_POS) && IT_CHARPOS (*it) >= to_charpos)
8094 SAVE_IT (ppos_it, *it, ppos_data);
8097 #define BUFFER_POS_REACHED_P() \
8098 ((op & MOVE_TO_POS) != 0 \
8099 && BUFFERP (it->object) \
8100 && (IT_CHARPOS (*it) == to_charpos \
8101 || ((!it->bidi_p \
8102 || BIDI_AT_BASE_LEVEL (it->bidi_it)) \
8103 && IT_CHARPOS (*it) > to_charpos) \
8104 || (it->what == IT_COMPOSITION \
8105 && ((IT_CHARPOS (*it) > to_charpos \
8106 && to_charpos >= it->cmp_it.charpos) \
8107 || (IT_CHARPOS (*it) < to_charpos \
8108 && to_charpos <= it->cmp_it.charpos)))) \
8109 && (it->method == GET_FROM_BUFFER \
8110 || (it->method == GET_FROM_DISPLAY_VECTOR \
8111 && it->dpvec + it->current.dpvec_index + 1 >= it->dpend)))
8113 /* If there's a line-/wrap-prefix, handle it. */
8114 if (it->hpos == 0 && it->method == GET_FROM_BUFFER
8115 && it->current_y < it->last_visible_y)
8116 handle_line_prefix (it);
8118 if (IT_CHARPOS (*it) < CHARPOS (this_line_min_pos))
8119 SET_TEXT_POS (this_line_min_pos, IT_CHARPOS (*it), IT_BYTEPOS (*it));
8121 while (1)
8123 int x, i, ascent = 0, descent = 0;
8125 /* Utility macro to reset an iterator with x, ascent, and descent. */
8126 #define IT_RESET_X_ASCENT_DESCENT(IT) \
8127 ((IT)->current_x = x, (IT)->max_ascent = ascent, \
8128 (IT)->max_descent = descent)
8130 /* Stop if we move beyond TO_CHARPOS (after an image or a
8131 display string or stretch glyph). */
8132 if ((op & MOVE_TO_POS) != 0
8133 && BUFFERP (it->object)
8134 && it->method == GET_FROM_BUFFER
8135 && (((!it->bidi_p
8136 /* When the iterator is at base embedding level, we
8137 are guaranteed that characters are delivered for
8138 display in strictly increasing order of their
8139 buffer positions. */
8140 || BIDI_AT_BASE_LEVEL (it->bidi_it))
8141 && IT_CHARPOS (*it) > to_charpos)
8142 || (it->bidi_p
8143 && (prev_method == GET_FROM_IMAGE
8144 || prev_method == GET_FROM_STRETCH
8145 || prev_method == GET_FROM_STRING)
8146 /* Passed TO_CHARPOS from left to right. */
8147 && ((prev_pos < to_charpos
8148 && IT_CHARPOS (*it) > to_charpos)
8149 /* Passed TO_CHARPOS from right to left. */
8150 || (prev_pos > to_charpos
8151 && IT_CHARPOS (*it) < to_charpos)))))
8153 if (it->line_wrap != WORD_WRAP || wrap_it.sp < 0)
8155 result = MOVE_POS_MATCH_OR_ZV;
8156 break;
8158 else if (it->line_wrap == WORD_WRAP && atpos_it.sp < 0)
8159 /* If wrap_it is valid, the current position might be in a
8160 word that is wrapped. So, save the iterator in
8161 atpos_it and continue to see if wrapping happens. */
8162 SAVE_IT (atpos_it, *it, atpos_data);
8165 /* Stop when ZV reached.
8166 We used to stop here when TO_CHARPOS reached as well, but that is
8167 too soon if this glyph does not fit on this line. So we handle it
8168 explicitly below. */
8169 if (!get_next_display_element (it))
8171 result = MOVE_POS_MATCH_OR_ZV;
8172 break;
8175 if (it->line_wrap == TRUNCATE)
8177 if (BUFFER_POS_REACHED_P ())
8179 result = MOVE_POS_MATCH_OR_ZV;
8180 break;
8183 else
8185 if (it->line_wrap == WORD_WRAP)
8187 if (IT_DISPLAYING_WHITESPACE (it))
8188 may_wrap = 1;
8189 else if (may_wrap)
8191 /* We have reached a glyph that follows one or more
8192 whitespace characters. If the position is
8193 already found, we are done. */
8194 if (atpos_it.sp >= 0)
8196 RESTORE_IT (it, &atpos_it, atpos_data);
8197 result = MOVE_POS_MATCH_OR_ZV;
8198 goto done;
8200 if (atx_it.sp >= 0)
8202 RESTORE_IT (it, &atx_it, atx_data);
8203 result = MOVE_X_REACHED;
8204 goto done;
8206 /* Otherwise, we can wrap here. */
8207 SAVE_IT (wrap_it, *it, wrap_data);
8208 may_wrap = 0;
8213 /* Remember the line height for the current line, in case
8214 the next element doesn't fit on the line. */
8215 ascent = it->max_ascent;
8216 descent = it->max_descent;
8218 /* The call to produce_glyphs will get the metrics of the
8219 display element IT is loaded with. Record the x-position
8220 before this display element, in case it doesn't fit on the
8221 line. */
8222 x = it->current_x;
8224 PRODUCE_GLYPHS (it);
8226 if (it->area != TEXT_AREA)
8228 prev_method = it->method;
8229 if (it->method == GET_FROM_BUFFER)
8230 prev_pos = IT_CHARPOS (*it);
8231 set_iterator_to_next (it, 1);
8232 if (IT_CHARPOS (*it) < CHARPOS (this_line_min_pos))
8233 SET_TEXT_POS (this_line_min_pos,
8234 IT_CHARPOS (*it), IT_BYTEPOS (*it));
8235 if (it->bidi_p
8236 && (op & MOVE_TO_POS)
8237 && IT_CHARPOS (*it) > to_charpos
8238 && IT_CHARPOS (*it) < IT_CHARPOS (ppos_it))
8239 SAVE_IT (ppos_it, *it, ppos_data);
8240 continue;
8243 /* The number of glyphs we get back in IT->nglyphs will normally
8244 be 1 except when IT->c is (i) a TAB, or (ii) a multi-glyph
8245 character on a terminal frame, or (iii) a line end. For the
8246 second case, IT->nglyphs - 1 padding glyphs will be present.
8247 (On X frames, there is only one glyph produced for a
8248 composite character.)
8250 The behavior implemented below means, for continuation lines,
8251 that as many spaces of a TAB as fit on the current line are
8252 displayed there. For terminal frames, as many glyphs of a
8253 multi-glyph character are displayed in the current line, too.
8254 This is what the old redisplay code did, and we keep it that
8255 way. Under X, the whole shape of a complex character must
8256 fit on the line or it will be completely displayed in the
8257 next line.
8259 Note that both for tabs and padding glyphs, all glyphs have
8260 the same width. */
8261 if (it->nglyphs)
8263 /* More than one glyph or glyph doesn't fit on line. All
8264 glyphs have the same width. */
8265 int single_glyph_width = it->pixel_width / it->nglyphs;
8266 int new_x;
8267 int x_before_this_char = x;
8268 int hpos_before_this_char = it->hpos;
8270 for (i = 0; i < it->nglyphs; ++i, x = new_x)
8272 new_x = x + single_glyph_width;
8274 /* We want to leave anything reaching TO_X to the caller. */
8275 if ((op & MOVE_TO_X) && new_x > to_x)
8277 if (BUFFER_POS_REACHED_P ())
8279 if (it->line_wrap != WORD_WRAP || wrap_it.sp < 0)
8280 goto buffer_pos_reached;
8281 if (atpos_it.sp < 0)
8283 SAVE_IT (atpos_it, *it, atpos_data);
8284 IT_RESET_X_ASCENT_DESCENT (&atpos_it);
8287 else
8289 if (it->line_wrap != WORD_WRAP || wrap_it.sp < 0)
8291 it->current_x = x;
8292 result = MOVE_X_REACHED;
8293 break;
8295 if (atx_it.sp < 0)
8297 SAVE_IT (atx_it, *it, atx_data);
8298 IT_RESET_X_ASCENT_DESCENT (&atx_it);
8303 if (/* Lines are continued. */
8304 it->line_wrap != TRUNCATE
8305 && (/* And glyph doesn't fit on the line. */
8306 new_x > it->last_visible_x
8307 /* Or it fits exactly and we're on a window
8308 system frame. */
8309 || (new_x == it->last_visible_x
8310 && FRAME_WINDOW_P (it->f))))
8312 if (/* IT->hpos == 0 means the very first glyph
8313 doesn't fit on the line, e.g. a wide image. */
8314 it->hpos == 0
8315 || (new_x == it->last_visible_x
8316 && FRAME_WINDOW_P (it->f)))
8318 ++it->hpos;
8319 it->current_x = new_x;
8321 /* The character's last glyph just barely fits
8322 in this row. */
8323 if (i == it->nglyphs - 1)
8325 /* If this is the destination position,
8326 return a position *before* it in this row,
8327 now that we know it fits in this row. */
8328 if (BUFFER_POS_REACHED_P ())
8330 if (it->line_wrap != WORD_WRAP
8331 || wrap_it.sp < 0)
8333 it->hpos = hpos_before_this_char;
8334 it->current_x = x_before_this_char;
8335 result = MOVE_POS_MATCH_OR_ZV;
8336 break;
8338 if (it->line_wrap == WORD_WRAP
8339 && atpos_it.sp < 0)
8341 SAVE_IT (atpos_it, *it, atpos_data);
8342 atpos_it.current_x = x_before_this_char;
8343 atpos_it.hpos = hpos_before_this_char;
8347 prev_method = it->method;
8348 if (it->method == GET_FROM_BUFFER)
8349 prev_pos = IT_CHARPOS (*it);
8350 set_iterator_to_next (it, 1);
8351 if (IT_CHARPOS (*it) < CHARPOS (this_line_min_pos))
8352 SET_TEXT_POS (this_line_min_pos,
8353 IT_CHARPOS (*it), IT_BYTEPOS (*it));
8354 /* On graphical terminals, newlines may
8355 "overflow" into the fringe if
8356 overflow-newline-into-fringe is non-nil.
8357 On text-only terminals, newlines may
8358 overflow into the last glyph on the
8359 display line.*/
8360 if (!FRAME_WINDOW_P (it->f)
8361 || IT_OVERFLOW_NEWLINE_INTO_FRINGE (it))
8363 if (!get_next_display_element (it))
8365 result = MOVE_POS_MATCH_OR_ZV;
8366 break;
8368 if (BUFFER_POS_REACHED_P ())
8370 if (ITERATOR_AT_END_OF_LINE_P (it))
8371 result = MOVE_POS_MATCH_OR_ZV;
8372 else
8373 result = MOVE_LINE_CONTINUED;
8374 break;
8376 if (ITERATOR_AT_END_OF_LINE_P (it))
8378 result = MOVE_NEWLINE_OR_CR;
8379 break;
8384 else
8385 IT_RESET_X_ASCENT_DESCENT (it);
8387 if (wrap_it.sp >= 0)
8389 RESTORE_IT (it, &wrap_it, wrap_data);
8390 atpos_it.sp = -1;
8391 atx_it.sp = -1;
8394 TRACE_MOVE ((stderr, "move_it_in: continued at %d\n",
8395 IT_CHARPOS (*it)));
8396 result = MOVE_LINE_CONTINUED;
8397 break;
8400 if (BUFFER_POS_REACHED_P ())
8402 if (it->line_wrap != WORD_WRAP || wrap_it.sp < 0)
8403 goto buffer_pos_reached;
8404 if (it->line_wrap == WORD_WRAP && atpos_it.sp < 0)
8406 SAVE_IT (atpos_it, *it, atpos_data);
8407 IT_RESET_X_ASCENT_DESCENT (&atpos_it);
8411 if (new_x > it->first_visible_x)
8413 /* Glyph is visible. Increment number of glyphs that
8414 would be displayed. */
8415 ++it->hpos;
8419 if (result != MOVE_UNDEFINED)
8420 break;
8422 else if (BUFFER_POS_REACHED_P ())
8424 buffer_pos_reached:
8425 IT_RESET_X_ASCENT_DESCENT (it);
8426 result = MOVE_POS_MATCH_OR_ZV;
8427 break;
8429 else if ((op & MOVE_TO_X) && it->current_x >= to_x)
8431 /* Stop when TO_X specified and reached. This check is
8432 necessary here because of lines consisting of a line end,
8433 only. The line end will not produce any glyphs and we
8434 would never get MOVE_X_REACHED. */
8435 xassert (it->nglyphs == 0);
8436 result = MOVE_X_REACHED;
8437 break;
8440 /* Is this a line end? If yes, we're done. */
8441 if (ITERATOR_AT_END_OF_LINE_P (it))
8443 /* If we are past TO_CHARPOS, but never saw any character
8444 positions smaller than TO_CHARPOS, return
8445 MOVE_POS_MATCH_OR_ZV, like the unidirectional display
8446 did. */
8447 if (it->bidi_p && (op & MOVE_TO_POS) != 0)
8449 if (!saw_smaller_pos && IT_CHARPOS (*it) > to_charpos)
8451 if (IT_CHARPOS (ppos_it) < ZV)
8453 RESTORE_IT (it, &ppos_it, ppos_data);
8454 result = MOVE_POS_MATCH_OR_ZV;
8456 else
8457 goto buffer_pos_reached;
8459 else if (it->line_wrap == WORD_WRAP && atpos_it.sp >= 0
8460 && IT_CHARPOS (*it) > to_charpos)
8461 goto buffer_pos_reached;
8462 else
8463 result = MOVE_NEWLINE_OR_CR;
8465 else
8466 result = MOVE_NEWLINE_OR_CR;
8467 break;
8470 prev_method = it->method;
8471 if (it->method == GET_FROM_BUFFER)
8472 prev_pos = IT_CHARPOS (*it);
8473 /* The current display element has been consumed. Advance
8474 to the next. */
8475 set_iterator_to_next (it, 1);
8476 if (IT_CHARPOS (*it) < CHARPOS (this_line_min_pos))
8477 SET_TEXT_POS (this_line_min_pos, IT_CHARPOS (*it), IT_BYTEPOS (*it));
8478 if (IT_CHARPOS (*it) < to_charpos)
8479 saw_smaller_pos = 1;
8480 if (it->bidi_p
8481 && (op & MOVE_TO_POS)
8482 && IT_CHARPOS (*it) >= to_charpos
8483 && IT_CHARPOS (*it) < IT_CHARPOS (ppos_it))
8484 SAVE_IT (ppos_it, *it, ppos_data);
8486 /* Stop if lines are truncated and IT's current x-position is
8487 past the right edge of the window now. */
8488 if (it->line_wrap == TRUNCATE
8489 && it->current_x >= it->last_visible_x)
8491 if (!FRAME_WINDOW_P (it->f)
8492 || IT_OVERFLOW_NEWLINE_INTO_FRINGE (it))
8494 int at_eob_p = 0;
8496 if ((at_eob_p = !get_next_display_element (it))
8497 || BUFFER_POS_REACHED_P ()
8498 /* If we are past TO_CHARPOS, but never saw any
8499 character positions smaller than TO_CHARPOS,
8500 return MOVE_POS_MATCH_OR_ZV, like the
8501 unidirectional display did. */
8502 || (it->bidi_p && (op & MOVE_TO_POS) != 0
8503 && !saw_smaller_pos
8504 && IT_CHARPOS (*it) > to_charpos))
8506 if (it->bidi_p
8507 && !at_eob_p && IT_CHARPOS (ppos_it) < ZV)
8508 RESTORE_IT (it, &ppos_it, ppos_data);
8509 result = MOVE_POS_MATCH_OR_ZV;
8510 break;
8512 if (ITERATOR_AT_END_OF_LINE_P (it))
8514 result = MOVE_NEWLINE_OR_CR;
8515 break;
8518 else if (it->bidi_p && (op & MOVE_TO_POS) != 0
8519 && !saw_smaller_pos
8520 && IT_CHARPOS (*it) > to_charpos)
8522 if (IT_CHARPOS (ppos_it) < ZV)
8523 RESTORE_IT (it, &ppos_it, ppos_data);
8524 result = MOVE_POS_MATCH_OR_ZV;
8525 break;
8527 result = MOVE_LINE_TRUNCATED;
8528 break;
8530 #undef IT_RESET_X_ASCENT_DESCENT
8533 #undef BUFFER_POS_REACHED_P
8535 /* If we scanned beyond to_pos and didn't find a point to wrap at,
8536 restore the saved iterator. */
8537 if (atpos_it.sp >= 0)
8538 RESTORE_IT (it, &atpos_it, atpos_data);
8539 else if (atx_it.sp >= 0)
8540 RESTORE_IT (it, &atx_it, atx_data);
8542 done:
8544 if (atpos_data)
8545 bidi_unshelve_cache (atpos_data, 1);
8546 if (atx_data)
8547 bidi_unshelve_cache (atx_data, 1);
8548 if (wrap_data)
8549 bidi_unshelve_cache (wrap_data, 1);
8550 if (ppos_data)
8551 bidi_unshelve_cache (ppos_data, 1);
8553 /* Restore the iterator settings altered at the beginning of this
8554 function. */
8555 it->glyph_row = saved_glyph_row;
8556 return result;
8559 /* For external use. */
8560 void
8561 move_it_in_display_line (struct it *it,
8562 ptrdiff_t to_charpos, int to_x,
8563 enum move_operation_enum op)
8565 if (it->line_wrap == WORD_WRAP
8566 && (op & MOVE_TO_X))
8568 struct it save_it;
8569 void *save_data = NULL;
8570 int skip;
8572 SAVE_IT (save_it, *it, save_data);
8573 skip = move_it_in_display_line_to (it, to_charpos, to_x, op);
8574 /* When word-wrap is on, TO_X may lie past the end
8575 of a wrapped line. Then it->current is the
8576 character on the next line, so backtrack to the
8577 space before the wrap point. */
8578 if (skip == MOVE_LINE_CONTINUED)
8580 int prev_x = max (it->current_x - 1, 0);
8581 RESTORE_IT (it, &save_it, save_data);
8582 move_it_in_display_line_to
8583 (it, -1, prev_x, MOVE_TO_X);
8585 else
8586 bidi_unshelve_cache (save_data, 1);
8588 else
8589 move_it_in_display_line_to (it, to_charpos, to_x, op);
8593 /* Move IT forward until it satisfies one or more of the criteria in
8594 TO_CHARPOS, TO_X, TO_Y, and TO_VPOS.
8596 OP is a bit-mask that specifies where to stop, and in particular,
8597 which of those four position arguments makes a difference. See the
8598 description of enum move_operation_enum.
8600 If TO_CHARPOS is in invisible text, e.g. a truncated part of a
8601 screen line, this function will set IT to the next position that is
8602 displayed to the right of TO_CHARPOS on the screen. */
8604 void
8605 move_it_to (struct it *it, ptrdiff_t to_charpos, int to_x, int to_y, int to_vpos, int op)
8607 enum move_it_result skip, skip2 = MOVE_X_REACHED;
8608 int line_height, line_start_x = 0, reached = 0;
8609 void *backup_data = NULL;
8611 for (;;)
8613 if (op & MOVE_TO_VPOS)
8615 /* If no TO_CHARPOS and no TO_X specified, stop at the
8616 start of the line TO_VPOS. */
8617 if ((op & (MOVE_TO_X | MOVE_TO_POS)) == 0)
8619 if (it->vpos == to_vpos)
8621 reached = 1;
8622 break;
8624 else
8625 skip = move_it_in_display_line_to (it, -1, -1, 0);
8627 else
8629 /* TO_VPOS >= 0 means stop at TO_X in the line at
8630 TO_VPOS, or at TO_POS, whichever comes first. */
8631 if (it->vpos == to_vpos)
8633 reached = 2;
8634 break;
8637 skip = move_it_in_display_line_to (it, to_charpos, to_x, op);
8639 if (skip == MOVE_POS_MATCH_OR_ZV || it->vpos == to_vpos)
8641 reached = 3;
8642 break;
8644 else if (skip == MOVE_X_REACHED && it->vpos != to_vpos)
8646 /* We have reached TO_X but not in the line we want. */
8647 skip = move_it_in_display_line_to (it, to_charpos,
8648 -1, MOVE_TO_POS);
8649 if (skip == MOVE_POS_MATCH_OR_ZV)
8651 reached = 4;
8652 break;
8657 else if (op & MOVE_TO_Y)
8659 struct it it_backup;
8661 if (it->line_wrap == WORD_WRAP)
8662 SAVE_IT (it_backup, *it, backup_data);
8664 /* TO_Y specified means stop at TO_X in the line containing
8665 TO_Y---or at TO_CHARPOS if this is reached first. The
8666 problem is that we can't really tell whether the line
8667 contains TO_Y before we have completely scanned it, and
8668 this may skip past TO_X. What we do is to first scan to
8669 TO_X.
8671 If TO_X is not specified, use a TO_X of zero. The reason
8672 is to make the outcome of this function more predictable.
8673 If we didn't use TO_X == 0, we would stop at the end of
8674 the line which is probably not what a caller would expect
8675 to happen. */
8676 skip = move_it_in_display_line_to
8677 (it, to_charpos, ((op & MOVE_TO_X) ? to_x : 0),
8678 (MOVE_TO_X | (op & MOVE_TO_POS)));
8680 /* If TO_CHARPOS is reached or ZV, we don't have to do more. */
8681 if (skip == MOVE_POS_MATCH_OR_ZV)
8682 reached = 5;
8683 else if (skip == MOVE_X_REACHED)
8685 /* If TO_X was reached, we want to know whether TO_Y is
8686 in the line. We know this is the case if the already
8687 scanned glyphs make the line tall enough. Otherwise,
8688 we must check by scanning the rest of the line. */
8689 line_height = it->max_ascent + it->max_descent;
8690 if (to_y >= it->current_y
8691 && to_y < it->current_y + line_height)
8693 reached = 6;
8694 break;
8696 SAVE_IT (it_backup, *it, backup_data);
8697 TRACE_MOVE ((stderr, "move_it: from %d\n", IT_CHARPOS (*it)));
8698 skip2 = move_it_in_display_line_to (it, to_charpos, -1,
8699 op & MOVE_TO_POS);
8700 TRACE_MOVE ((stderr, "move_it: to %d\n", IT_CHARPOS (*it)));
8701 line_height = it->max_ascent + it->max_descent;
8702 TRACE_MOVE ((stderr, "move_it: line_height = %d\n", line_height));
8704 if (to_y >= it->current_y
8705 && to_y < it->current_y + line_height)
8707 /* If TO_Y is in this line and TO_X was reached
8708 above, we scanned too far. We have to restore
8709 IT's settings to the ones before skipping. But
8710 keep the more accurate values of max_ascent and
8711 max_descent we've found while skipping the rest
8712 of the line, for the sake of callers, such as
8713 pos_visible_p, that need to know the line
8714 height. */
8715 int max_ascent = it->max_ascent;
8716 int max_descent = it->max_descent;
8718 RESTORE_IT (it, &it_backup, backup_data);
8719 it->max_ascent = max_ascent;
8720 it->max_descent = max_descent;
8721 reached = 6;
8723 else
8725 skip = skip2;
8726 if (skip == MOVE_POS_MATCH_OR_ZV)
8727 reached = 7;
8730 else
8732 /* Check whether TO_Y is in this line. */
8733 line_height = it->max_ascent + it->max_descent;
8734 TRACE_MOVE ((stderr, "move_it: line_height = %d\n", line_height));
8736 if (to_y >= it->current_y
8737 && to_y < it->current_y + line_height)
8739 /* When word-wrap is on, TO_X may lie past the end
8740 of a wrapped line. Then it->current is the
8741 character on the next line, so backtrack to the
8742 space before the wrap point. */
8743 if (skip == MOVE_LINE_CONTINUED
8744 && it->line_wrap == WORD_WRAP)
8746 int prev_x = max (it->current_x - 1, 0);
8747 RESTORE_IT (it, &it_backup, backup_data);
8748 skip = move_it_in_display_line_to
8749 (it, -1, prev_x, MOVE_TO_X);
8751 reached = 6;
8755 if (reached)
8756 break;
8758 else if (BUFFERP (it->object)
8759 && (it->method == GET_FROM_BUFFER
8760 || it->method == GET_FROM_STRETCH)
8761 && IT_CHARPOS (*it) >= to_charpos
8762 /* Under bidi iteration, a call to set_iterator_to_next
8763 can scan far beyond to_charpos if the initial
8764 portion of the next line needs to be reordered. In
8765 that case, give move_it_in_display_line_to another
8766 chance below. */
8767 && !(it->bidi_p
8768 && it->bidi_it.scan_dir == -1))
8769 skip = MOVE_POS_MATCH_OR_ZV;
8770 else
8771 skip = move_it_in_display_line_to (it, to_charpos, -1, MOVE_TO_POS);
8773 switch (skip)
8775 case MOVE_POS_MATCH_OR_ZV:
8776 reached = 8;
8777 goto out;
8779 case MOVE_NEWLINE_OR_CR:
8780 set_iterator_to_next (it, 1);
8781 it->continuation_lines_width = 0;
8782 break;
8784 case MOVE_LINE_TRUNCATED:
8785 it->continuation_lines_width = 0;
8786 reseat_at_next_visible_line_start (it, 0);
8787 if ((op & MOVE_TO_POS) != 0
8788 && IT_CHARPOS (*it) > to_charpos)
8790 reached = 9;
8791 goto out;
8793 break;
8795 case MOVE_LINE_CONTINUED:
8796 /* For continued lines ending in a tab, some of the glyphs
8797 associated with the tab are displayed on the current
8798 line. Since it->current_x does not include these glyphs,
8799 we use it->last_visible_x instead. */
8800 if (it->c == '\t')
8802 it->continuation_lines_width += it->last_visible_x;
8803 /* When moving by vpos, ensure that the iterator really
8804 advances to the next line (bug#847, bug#969). Fixme:
8805 do we need to do this in other circumstances? */
8806 if (it->current_x != it->last_visible_x
8807 && (op & MOVE_TO_VPOS)
8808 && !(op & (MOVE_TO_X | MOVE_TO_POS)))
8810 line_start_x = it->current_x + it->pixel_width
8811 - it->last_visible_x;
8812 set_iterator_to_next (it, 0);
8815 else
8816 it->continuation_lines_width += it->current_x;
8817 break;
8819 default:
8820 abort ();
8823 /* Reset/increment for the next run. */
8824 recenter_overlay_lists (current_buffer, IT_CHARPOS (*it));
8825 it->current_x = line_start_x;
8826 line_start_x = 0;
8827 it->hpos = 0;
8828 it->current_y += it->max_ascent + it->max_descent;
8829 ++it->vpos;
8830 last_height = it->max_ascent + it->max_descent;
8831 last_max_ascent = it->max_ascent;
8832 it->max_ascent = it->max_descent = 0;
8835 out:
8837 /* On text terminals, we may stop at the end of a line in the middle
8838 of a multi-character glyph. If the glyph itself is continued,
8839 i.e. it is actually displayed on the next line, don't treat this
8840 stopping point as valid; move to the next line instead (unless
8841 that brings us offscreen). */
8842 if (!FRAME_WINDOW_P (it->f)
8843 && op & MOVE_TO_POS
8844 && IT_CHARPOS (*it) == to_charpos
8845 && it->what == IT_CHARACTER
8846 && it->nglyphs > 1
8847 && it->line_wrap == WINDOW_WRAP
8848 && it->current_x == it->last_visible_x - 1
8849 && it->c != '\n'
8850 && it->c != '\t'
8851 && it->vpos < XFASTINT (it->w->window_end_vpos))
8853 it->continuation_lines_width += it->current_x;
8854 it->current_x = it->hpos = it->max_ascent = it->max_descent = 0;
8855 it->current_y += it->max_ascent + it->max_descent;
8856 ++it->vpos;
8857 last_height = it->max_ascent + it->max_descent;
8858 last_max_ascent = it->max_ascent;
8861 if (backup_data)
8862 bidi_unshelve_cache (backup_data, 1);
8864 TRACE_MOVE ((stderr, "move_it_to: reached %d\n", reached));
8868 /* Move iterator IT backward by a specified y-distance DY, DY >= 0.
8870 If DY > 0, move IT backward at least that many pixels. DY = 0
8871 means move IT backward to the preceding line start or BEGV. This
8872 function may move over more than DY pixels if IT->current_y - DY
8873 ends up in the middle of a line; in this case IT->current_y will be
8874 set to the top of the line moved to. */
8876 void
8877 move_it_vertically_backward (struct it *it, int dy)
8879 int nlines, h;
8880 struct it it2, it3;
8881 void *it2data = NULL, *it3data = NULL;
8882 ptrdiff_t start_pos;
8884 move_further_back:
8885 xassert (dy >= 0);
8887 start_pos = IT_CHARPOS (*it);
8889 /* Estimate how many newlines we must move back. */
8890 nlines = max (1, dy / FRAME_LINE_HEIGHT (it->f));
8892 /* Set the iterator's position that many lines back. */
8893 while (nlines-- && IT_CHARPOS (*it) > BEGV)
8894 back_to_previous_visible_line_start (it);
8896 /* Reseat the iterator here. When moving backward, we don't want
8897 reseat to skip forward over invisible text, set up the iterator
8898 to deliver from overlay strings at the new position etc. So,
8899 use reseat_1 here. */
8900 reseat_1 (it, it->current.pos, 1);
8902 /* We are now surely at a line start. */
8903 it->current_x = it->hpos = 0; /* FIXME: this is incorrect when bidi
8904 reordering is in effect. */
8905 it->continuation_lines_width = 0;
8907 /* Move forward and see what y-distance we moved. First move to the
8908 start of the next line so that we get its height. We need this
8909 height to be able to tell whether we reached the specified
8910 y-distance. */
8911 SAVE_IT (it2, *it, it2data);
8912 it2.max_ascent = it2.max_descent = 0;
8915 move_it_to (&it2, start_pos, -1, -1, it2.vpos + 1,
8916 MOVE_TO_POS | MOVE_TO_VPOS);
8918 while (!(IT_POS_VALID_AFTER_MOVE_P (&it2)
8919 /* If we are in a display string which starts at START_POS,
8920 and that display string includes a newline, and we are
8921 right after that newline (i.e. at the beginning of a
8922 display line), exit the loop, because otherwise we will
8923 infloop, since move_it_to will see that it is already at
8924 START_POS and will not move. */
8925 || (it2.method == GET_FROM_STRING
8926 && IT_CHARPOS (it2) == start_pos
8927 && SREF (it2.string, IT_STRING_BYTEPOS (it2) - 1) == '\n')));
8928 xassert (IT_CHARPOS (*it) >= BEGV);
8929 SAVE_IT (it3, it2, it3data);
8931 move_it_to (&it2, start_pos, -1, -1, -1, MOVE_TO_POS);
8932 xassert (IT_CHARPOS (*it) >= BEGV);
8933 /* H is the actual vertical distance from the position in *IT
8934 and the starting position. */
8935 h = it2.current_y - it->current_y;
8936 /* NLINES is the distance in number of lines. */
8937 nlines = it2.vpos - it->vpos;
8939 /* Correct IT's y and vpos position
8940 so that they are relative to the starting point. */
8941 it->vpos -= nlines;
8942 it->current_y -= h;
8944 if (dy == 0)
8946 /* DY == 0 means move to the start of the screen line. The
8947 value of nlines is > 0 if continuation lines were involved,
8948 or if the original IT position was at start of a line. */
8949 RESTORE_IT (it, it, it2data);
8950 if (nlines > 0)
8951 move_it_by_lines (it, nlines);
8952 /* The above code moves us to some position NLINES down,
8953 usually to its first glyph (leftmost in an L2R line), but
8954 that's not necessarily the start of the line, under bidi
8955 reordering. We want to get to the character position
8956 that is immediately after the newline of the previous
8957 line. */
8958 if (it->bidi_p
8959 && !it->continuation_lines_width
8960 && !STRINGP (it->string)
8961 && IT_CHARPOS (*it) > BEGV
8962 && FETCH_BYTE (IT_BYTEPOS (*it) - 1) != '\n')
8964 ptrdiff_t nl_pos =
8965 find_next_newline_no_quit (IT_CHARPOS (*it) - 1, -1);
8967 move_it_to (it, nl_pos, -1, -1, -1, MOVE_TO_POS);
8969 bidi_unshelve_cache (it3data, 1);
8971 else
8973 /* The y-position we try to reach, relative to *IT.
8974 Note that H has been subtracted in front of the if-statement. */
8975 int target_y = it->current_y + h - dy;
8976 int y0 = it3.current_y;
8977 int y1;
8978 int line_height;
8980 RESTORE_IT (&it3, &it3, it3data);
8981 y1 = line_bottom_y (&it3);
8982 line_height = y1 - y0;
8983 RESTORE_IT (it, it, it2data);
8984 /* If we did not reach target_y, try to move further backward if
8985 we can. If we moved too far backward, try to move forward. */
8986 if (target_y < it->current_y
8987 /* This is heuristic. In a window that's 3 lines high, with
8988 a line height of 13 pixels each, recentering with point
8989 on the bottom line will try to move -39/2 = 19 pixels
8990 backward. Try to avoid moving into the first line. */
8991 && (it->current_y - target_y
8992 > min (window_box_height (it->w), line_height * 2 / 3))
8993 && IT_CHARPOS (*it) > BEGV)
8995 TRACE_MOVE ((stderr, " not far enough -> move_vert %d\n",
8996 target_y - it->current_y));
8997 dy = it->current_y - target_y;
8998 goto move_further_back;
9000 else if (target_y >= it->current_y + line_height
9001 && IT_CHARPOS (*it) < ZV)
9003 /* Should move forward by at least one line, maybe more.
9005 Note: Calling move_it_by_lines can be expensive on
9006 terminal frames, where compute_motion is used (via
9007 vmotion) to do the job, when there are very long lines
9008 and truncate-lines is nil. That's the reason for
9009 treating terminal frames specially here. */
9011 if (!FRAME_WINDOW_P (it->f))
9012 move_it_vertically (it, target_y - (it->current_y + line_height));
9013 else
9017 move_it_by_lines (it, 1);
9019 while (target_y >= line_bottom_y (it) && IT_CHARPOS (*it) < ZV);
9026 /* Move IT by a specified amount of pixel lines DY. DY negative means
9027 move backwards. DY = 0 means move to start of screen line. At the
9028 end, IT will be on the start of a screen line. */
9030 void
9031 move_it_vertically (struct it *it, int dy)
9033 if (dy <= 0)
9034 move_it_vertically_backward (it, -dy);
9035 else
9037 TRACE_MOVE ((stderr, "move_it_v: from %d, %d\n", IT_CHARPOS (*it), dy));
9038 move_it_to (it, ZV, -1, it->current_y + dy, -1,
9039 MOVE_TO_POS | MOVE_TO_Y);
9040 TRACE_MOVE ((stderr, "move_it_v: to %d\n", IT_CHARPOS (*it)));
9042 /* If buffer ends in ZV without a newline, move to the start of
9043 the line to satisfy the post-condition. */
9044 if (IT_CHARPOS (*it) == ZV
9045 && ZV > BEGV
9046 && FETCH_BYTE (IT_BYTEPOS (*it) - 1) != '\n')
9047 move_it_by_lines (it, 0);
9052 /* Move iterator IT past the end of the text line it is in. */
9054 void
9055 move_it_past_eol (struct it *it)
9057 enum move_it_result rc;
9059 rc = move_it_in_display_line_to (it, Z, 0, MOVE_TO_POS);
9060 if (rc == MOVE_NEWLINE_OR_CR)
9061 set_iterator_to_next (it, 0);
9065 /* Move IT by a specified number DVPOS of screen lines down. DVPOS
9066 negative means move up. DVPOS == 0 means move to the start of the
9067 screen line.
9069 Optimization idea: If we would know that IT->f doesn't use
9070 a face with proportional font, we could be faster for
9071 truncate-lines nil. */
9073 void
9074 move_it_by_lines (struct it *it, ptrdiff_t dvpos)
9077 /* The commented-out optimization uses vmotion on terminals. This
9078 gives bad results, because elements like it->what, on which
9079 callers such as pos_visible_p rely, aren't updated. */
9080 /* struct position pos;
9081 if (!FRAME_WINDOW_P (it->f))
9083 struct text_pos textpos;
9085 pos = *vmotion (IT_CHARPOS (*it), dvpos, it->w);
9086 SET_TEXT_POS (textpos, pos.bufpos, pos.bytepos);
9087 reseat (it, textpos, 1);
9088 it->vpos += pos.vpos;
9089 it->current_y += pos.vpos;
9091 else */
9093 if (dvpos == 0)
9095 /* DVPOS == 0 means move to the start of the screen line. */
9096 move_it_vertically_backward (it, 0);
9097 /* Let next call to line_bottom_y calculate real line height */
9098 last_height = 0;
9100 else if (dvpos > 0)
9102 move_it_to (it, -1, -1, -1, it->vpos + dvpos, MOVE_TO_VPOS);
9103 if (!IT_POS_VALID_AFTER_MOVE_P (it))
9105 /* Only move to the next buffer position if we ended up in a
9106 string from display property, not in an overlay string
9107 (before-string or after-string). That is because the
9108 latter don't conceal the underlying buffer position, so
9109 we can ask to move the iterator to the exact position we
9110 are interested in. Note that, even if we are already at
9111 IT_CHARPOS (*it), the call below is not a no-op, as it
9112 will detect that we are at the end of the string, pop the
9113 iterator, and compute it->current_x and it->hpos
9114 correctly. */
9115 move_it_to (it, IT_CHARPOS (*it) + it->string_from_display_prop_p,
9116 -1, -1, -1, MOVE_TO_POS);
9119 else
9121 struct it it2;
9122 void *it2data = NULL;
9123 ptrdiff_t start_charpos, i;
9125 /* Start at the beginning of the screen line containing IT's
9126 position. This may actually move vertically backwards,
9127 in case of overlays, so adjust dvpos accordingly. */
9128 dvpos += it->vpos;
9129 move_it_vertically_backward (it, 0);
9130 dvpos -= it->vpos;
9132 /* Go back -DVPOS visible lines and reseat the iterator there. */
9133 start_charpos = IT_CHARPOS (*it);
9134 for (i = -dvpos; i > 0 && IT_CHARPOS (*it) > BEGV; --i)
9135 back_to_previous_visible_line_start (it);
9136 reseat (it, it->current.pos, 1);
9138 /* Move further back if we end up in a string or an image. */
9139 while (!IT_POS_VALID_AFTER_MOVE_P (it))
9141 /* First try to move to start of display line. */
9142 dvpos += it->vpos;
9143 move_it_vertically_backward (it, 0);
9144 dvpos -= it->vpos;
9145 if (IT_POS_VALID_AFTER_MOVE_P (it))
9146 break;
9147 /* If start of line is still in string or image,
9148 move further back. */
9149 back_to_previous_visible_line_start (it);
9150 reseat (it, it->current.pos, 1);
9151 dvpos--;
9154 it->current_x = it->hpos = 0;
9156 /* Above call may have moved too far if continuation lines
9157 are involved. Scan forward and see if it did. */
9158 SAVE_IT (it2, *it, it2data);
9159 it2.vpos = it2.current_y = 0;
9160 move_it_to (&it2, start_charpos, -1, -1, -1, MOVE_TO_POS);
9161 it->vpos -= it2.vpos;
9162 it->current_y -= it2.current_y;
9163 it->current_x = it->hpos = 0;
9165 /* If we moved too far back, move IT some lines forward. */
9166 if (it2.vpos > -dvpos)
9168 int delta = it2.vpos + dvpos;
9170 RESTORE_IT (&it2, &it2, it2data);
9171 SAVE_IT (it2, *it, it2data);
9172 move_it_to (it, -1, -1, -1, it->vpos + delta, MOVE_TO_VPOS);
9173 /* Move back again if we got too far ahead. */
9174 if (IT_CHARPOS (*it) >= start_charpos)
9175 RESTORE_IT (it, &it2, it2data);
9176 else
9177 bidi_unshelve_cache (it2data, 1);
9179 else
9180 RESTORE_IT (it, it, it2data);
9184 /* Return 1 if IT points into the middle of a display vector. */
9187 in_display_vector_p (struct it *it)
9189 return (it->method == GET_FROM_DISPLAY_VECTOR
9190 && it->current.dpvec_index > 0
9191 && it->dpvec + it->current.dpvec_index != it->dpend);
9195 /***********************************************************************
9196 Messages
9197 ***********************************************************************/
9200 /* Add a message with format string FORMAT and arguments ARG1 and ARG2
9201 to *Messages*. */
9203 void
9204 add_to_log (const char *format, Lisp_Object arg1, Lisp_Object arg2)
9206 Lisp_Object args[3];
9207 Lisp_Object msg, fmt;
9208 char *buffer;
9209 ptrdiff_t len;
9210 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4;
9211 USE_SAFE_ALLOCA;
9213 /* Do nothing if called asynchronously. Inserting text into
9214 a buffer may call after-change-functions and alike and
9215 that would means running Lisp asynchronously. */
9216 if (handling_signal)
9217 return;
9219 fmt = msg = Qnil;
9220 GCPRO4 (fmt, msg, arg1, arg2);
9222 args[0] = fmt = build_string (format);
9223 args[1] = arg1;
9224 args[2] = arg2;
9225 msg = Fformat (3, args);
9227 len = SBYTES (msg) + 1;
9228 SAFE_ALLOCA (buffer, char *, len);
9229 memcpy (buffer, SDATA (msg), len);
9231 message_dolog (buffer, len - 1, 1, 0);
9232 SAFE_FREE ();
9234 UNGCPRO;
9238 /* Output a newline in the *Messages* buffer if "needs" one. */
9240 void
9241 message_log_maybe_newline (void)
9243 if (message_log_need_newline)
9244 message_dolog ("", 0, 1, 0);
9248 /* Add a string M of length NBYTES to the message log, optionally
9249 terminated with a newline when NLFLAG is non-zero. MULTIBYTE, if
9250 nonzero, means interpret the contents of M as multibyte. This
9251 function calls low-level routines in order to bypass text property
9252 hooks, etc. which might not be safe to run.
9254 This may GC (insert may run before/after change hooks),
9255 so the buffer M must NOT point to a Lisp string. */
9257 void
9258 message_dolog (const char *m, ptrdiff_t nbytes, int nlflag, int multibyte)
9260 const unsigned char *msg = (const unsigned char *) m;
9262 if (!NILP (Vmemory_full))
9263 return;
9265 if (!NILP (Vmessage_log_max))
9267 struct buffer *oldbuf;
9268 Lisp_Object oldpoint, oldbegv, oldzv;
9269 int old_windows_or_buffers_changed = windows_or_buffers_changed;
9270 ptrdiff_t point_at_end = 0;
9271 ptrdiff_t zv_at_end = 0;
9272 Lisp_Object old_deactivate_mark, tem;
9273 struct gcpro gcpro1;
9275 old_deactivate_mark = Vdeactivate_mark;
9276 oldbuf = current_buffer;
9277 Fset_buffer (Fget_buffer_create (Vmessages_buffer_name));
9278 BVAR (current_buffer, undo_list) = Qt;
9280 oldpoint = message_dolog_marker1;
9281 set_marker_restricted (oldpoint, make_number (PT), Qnil);
9282 oldbegv = message_dolog_marker2;
9283 set_marker_restricted (oldbegv, make_number (BEGV), Qnil);
9284 oldzv = message_dolog_marker3;
9285 set_marker_restricted (oldzv, make_number (ZV), Qnil);
9286 GCPRO1 (old_deactivate_mark);
9288 if (PT == Z)
9289 point_at_end = 1;
9290 if (ZV == Z)
9291 zv_at_end = 1;
9293 BEGV = BEG;
9294 BEGV_BYTE = BEG_BYTE;
9295 ZV = Z;
9296 ZV_BYTE = Z_BYTE;
9297 TEMP_SET_PT_BOTH (Z, Z_BYTE);
9299 /* Insert the string--maybe converting multibyte to single byte
9300 or vice versa, so that all the text fits the buffer. */
9301 if (multibyte
9302 && NILP (BVAR (current_buffer, enable_multibyte_characters)))
9304 ptrdiff_t i;
9305 int c, char_bytes;
9306 char work[1];
9308 /* Convert a multibyte string to single-byte
9309 for the *Message* buffer. */
9310 for (i = 0; i < nbytes; i += char_bytes)
9312 c = string_char_and_length (msg + i, &char_bytes);
9313 work[0] = (ASCII_CHAR_P (c)
9315 : multibyte_char_to_unibyte (c));
9316 insert_1_both (work, 1, 1, 1, 0, 0);
9319 else if (! multibyte
9320 && ! NILP (BVAR (current_buffer, enable_multibyte_characters)))
9322 ptrdiff_t i;
9323 int c, char_bytes;
9324 unsigned char str[MAX_MULTIBYTE_LENGTH];
9325 /* Convert a single-byte string to multibyte
9326 for the *Message* buffer. */
9327 for (i = 0; i < nbytes; i++)
9329 c = msg[i];
9330 MAKE_CHAR_MULTIBYTE (c);
9331 char_bytes = CHAR_STRING (c, str);
9332 insert_1_both ((char *) str, 1, char_bytes, 1, 0, 0);
9335 else if (nbytes)
9336 insert_1 (m, nbytes, 1, 0, 0);
9338 if (nlflag)
9340 ptrdiff_t this_bol, this_bol_byte, prev_bol, prev_bol_byte;
9341 printmax_t dups;
9342 insert_1 ("\n", 1, 1, 0, 0);
9344 scan_newline (Z, Z_BYTE, BEG, BEG_BYTE, -2, 0);
9345 this_bol = PT;
9346 this_bol_byte = PT_BYTE;
9348 /* See if this line duplicates the previous one.
9349 If so, combine duplicates. */
9350 if (this_bol > BEG)
9352 scan_newline (PT, PT_BYTE, BEG, BEG_BYTE, -2, 0);
9353 prev_bol = PT;
9354 prev_bol_byte = PT_BYTE;
9356 dups = message_log_check_duplicate (prev_bol_byte,
9357 this_bol_byte);
9358 if (dups)
9360 del_range_both (prev_bol, prev_bol_byte,
9361 this_bol, this_bol_byte, 0);
9362 if (dups > 1)
9364 char dupstr[sizeof " [ times]"
9365 + INT_STRLEN_BOUND (printmax_t)];
9366 int duplen;
9368 /* If you change this format, don't forget to also
9369 change message_log_check_duplicate. */
9370 sprintf (dupstr, " [%"pMd" times]", dups);
9371 duplen = strlen (dupstr);
9372 TEMP_SET_PT_BOTH (Z - 1, Z_BYTE - 1);
9373 insert_1 (dupstr, duplen, 1, 0, 1);
9378 /* If we have more than the desired maximum number of lines
9379 in the *Messages* buffer now, delete the oldest ones.
9380 This is safe because we don't have undo in this buffer. */
9382 if (NATNUMP (Vmessage_log_max))
9384 scan_newline (Z, Z_BYTE, BEG, BEG_BYTE,
9385 -XFASTINT (Vmessage_log_max) - 1, 0);
9386 del_range_both (BEG, BEG_BYTE, PT, PT_BYTE, 0);
9389 BEGV = XMARKER (oldbegv)->charpos;
9390 BEGV_BYTE = marker_byte_position (oldbegv);
9392 if (zv_at_end)
9394 ZV = Z;
9395 ZV_BYTE = Z_BYTE;
9397 else
9399 ZV = XMARKER (oldzv)->charpos;
9400 ZV_BYTE = marker_byte_position (oldzv);
9403 if (point_at_end)
9404 TEMP_SET_PT_BOTH (Z, Z_BYTE);
9405 else
9406 /* We can't do Fgoto_char (oldpoint) because it will run some
9407 Lisp code. */
9408 TEMP_SET_PT_BOTH (XMARKER (oldpoint)->charpos,
9409 XMARKER (oldpoint)->bytepos);
9411 UNGCPRO;
9412 unchain_marker (XMARKER (oldpoint));
9413 unchain_marker (XMARKER (oldbegv));
9414 unchain_marker (XMARKER (oldzv));
9416 tem = Fget_buffer_window (Fcurrent_buffer (), Qt);
9417 set_buffer_internal (oldbuf);
9418 if (NILP (tem))
9419 windows_or_buffers_changed = old_windows_or_buffers_changed;
9420 message_log_need_newline = !nlflag;
9421 Vdeactivate_mark = old_deactivate_mark;
9426 /* We are at the end of the buffer after just having inserted a newline.
9427 (Note: We depend on the fact we won't be crossing the gap.)
9428 Check to see if the most recent message looks a lot like the previous one.
9429 Return 0 if different, 1 if the new one should just replace it, or a
9430 value N > 1 if we should also append " [N times]". */
9432 static intmax_t
9433 message_log_check_duplicate (ptrdiff_t prev_bol_byte, ptrdiff_t this_bol_byte)
9435 ptrdiff_t i;
9436 ptrdiff_t len = Z_BYTE - 1 - this_bol_byte;
9437 int seen_dots = 0;
9438 unsigned char *p1 = BUF_BYTE_ADDRESS (current_buffer, prev_bol_byte);
9439 unsigned char *p2 = BUF_BYTE_ADDRESS (current_buffer, this_bol_byte);
9441 for (i = 0; i < len; i++)
9443 if (i >= 3 && p1[i-3] == '.' && p1[i-2] == '.' && p1[i-1] == '.')
9444 seen_dots = 1;
9445 if (p1[i] != p2[i])
9446 return seen_dots;
9448 p1 += len;
9449 if (*p1 == '\n')
9450 return 2;
9451 if (*p1++ == ' ' && *p1++ == '[')
9453 char *pend;
9454 intmax_t n = strtoimax ((char *) p1, &pend, 10);
9455 if (0 < n && n < INTMAX_MAX && strncmp (pend, " times]\n", 8) == 0)
9456 return n+1;
9458 return 0;
9462 /* Display an echo area message M with a specified length of NBYTES
9463 bytes. The string may include null characters. If M is 0, clear
9464 out any existing message, and let the mini-buffer text show
9465 through.
9467 This may GC, so the buffer M must NOT point to a Lisp string. */
9469 void
9470 message2 (const char *m, ptrdiff_t nbytes, int multibyte)
9472 /* First flush out any partial line written with print. */
9473 message_log_maybe_newline ();
9474 if (m)
9475 message_dolog (m, nbytes, 1, multibyte);
9476 message2_nolog (m, nbytes, multibyte);
9480 /* The non-logging counterpart of message2. */
9482 void
9483 message2_nolog (const char *m, ptrdiff_t nbytes, int multibyte)
9485 struct frame *sf = SELECTED_FRAME ();
9486 message_enable_multibyte = multibyte;
9488 if (FRAME_INITIAL_P (sf))
9490 if (noninteractive_need_newline)
9491 putc ('\n', stderr);
9492 noninteractive_need_newline = 0;
9493 if (m)
9494 fwrite (m, nbytes, 1, stderr);
9495 if (cursor_in_echo_area == 0)
9496 fprintf (stderr, "\n");
9497 fflush (stderr);
9499 /* A null message buffer means that the frame hasn't really been
9500 initialized yet. Error messages get reported properly by
9501 cmd_error, so this must be just an informative message; toss it. */
9502 else if (INTERACTIVE
9503 && sf->glyphs_initialized_p
9504 && FRAME_MESSAGE_BUF (sf))
9506 Lisp_Object mini_window;
9507 struct frame *f;
9509 /* Get the frame containing the mini-buffer
9510 that the selected frame is using. */
9511 mini_window = FRAME_MINIBUF_WINDOW (sf);
9512 f = XFRAME (WINDOW_FRAME (XWINDOW (mini_window)));
9514 FRAME_SAMPLE_VISIBILITY (f);
9515 if (FRAME_VISIBLE_P (sf)
9516 && ! FRAME_VISIBLE_P (f))
9517 Fmake_frame_visible (WINDOW_FRAME (XWINDOW (mini_window)));
9519 if (m)
9521 set_message (m, Qnil, nbytes, multibyte);
9522 if (minibuffer_auto_raise)
9523 Fraise_frame (WINDOW_FRAME (XWINDOW (mini_window)));
9525 else
9526 clear_message (1, 1);
9528 do_pending_window_change (0);
9529 echo_area_display (1);
9530 do_pending_window_change (0);
9531 if (FRAME_TERMINAL (f)->frame_up_to_date_hook != 0 && ! gc_in_progress)
9532 (*FRAME_TERMINAL (f)->frame_up_to_date_hook) (f);
9537 /* Display an echo area message M with a specified length of NBYTES
9538 bytes. The string may include null characters. If M is not a
9539 string, clear out any existing message, and let the mini-buffer
9540 text show through.
9542 This function cancels echoing. */
9544 void
9545 message3 (Lisp_Object m, ptrdiff_t nbytes, int multibyte)
9547 struct gcpro gcpro1;
9549 GCPRO1 (m);
9550 clear_message (1,1);
9551 cancel_echoing ();
9553 /* First flush out any partial line written with print. */
9554 message_log_maybe_newline ();
9555 if (STRINGP (m))
9557 char *buffer;
9558 USE_SAFE_ALLOCA;
9560 SAFE_ALLOCA (buffer, char *, nbytes);
9561 memcpy (buffer, SDATA (m), nbytes);
9562 message_dolog (buffer, nbytes, 1, multibyte);
9563 SAFE_FREE ();
9565 message3_nolog (m, nbytes, multibyte);
9567 UNGCPRO;
9571 /* The non-logging version of message3.
9572 This does not cancel echoing, because it is used for echoing.
9573 Perhaps we need to make a separate function for echoing
9574 and make this cancel echoing. */
9576 void
9577 message3_nolog (Lisp_Object m, ptrdiff_t nbytes, int multibyte)
9579 struct frame *sf = SELECTED_FRAME ();
9580 message_enable_multibyte = multibyte;
9582 if (FRAME_INITIAL_P (sf))
9584 if (noninteractive_need_newline)
9585 putc ('\n', stderr);
9586 noninteractive_need_newline = 0;
9587 if (STRINGP (m))
9588 fwrite (SDATA (m), nbytes, 1, stderr);
9589 if (cursor_in_echo_area == 0)
9590 fprintf (stderr, "\n");
9591 fflush (stderr);
9593 /* A null message buffer means that the frame hasn't really been
9594 initialized yet. Error messages get reported properly by
9595 cmd_error, so this must be just an informative message; toss it. */
9596 else if (INTERACTIVE
9597 && sf->glyphs_initialized_p
9598 && FRAME_MESSAGE_BUF (sf))
9600 Lisp_Object mini_window;
9601 Lisp_Object frame;
9602 struct frame *f;
9604 /* Get the frame containing the mini-buffer
9605 that the selected frame is using. */
9606 mini_window = FRAME_MINIBUF_WINDOW (sf);
9607 frame = XWINDOW (mini_window)->frame;
9608 f = XFRAME (frame);
9610 FRAME_SAMPLE_VISIBILITY (f);
9611 if (FRAME_VISIBLE_P (sf)
9612 && !FRAME_VISIBLE_P (f))
9613 Fmake_frame_visible (frame);
9615 if (STRINGP (m) && SCHARS (m) > 0)
9617 set_message (NULL, m, nbytes, multibyte);
9618 if (minibuffer_auto_raise)
9619 Fraise_frame (frame);
9620 /* Assume we are not echoing.
9621 (If we are, echo_now will override this.) */
9622 echo_message_buffer = Qnil;
9624 else
9625 clear_message (1, 1);
9627 do_pending_window_change (0);
9628 echo_area_display (1);
9629 do_pending_window_change (0);
9630 if (FRAME_TERMINAL (f)->frame_up_to_date_hook != 0 && ! gc_in_progress)
9631 (*FRAME_TERMINAL (f)->frame_up_to_date_hook) (f);
9636 /* Display a null-terminated echo area message M. If M is 0, clear
9637 out any existing message, and let the mini-buffer text show through.
9639 The buffer M must continue to exist until after the echo area gets
9640 cleared or some other message gets displayed there. Do not pass
9641 text that is stored in a Lisp string. Do not pass text in a buffer
9642 that was alloca'd. */
9644 void
9645 message1 (const char *m)
9647 message2 (m, (m ? strlen (m) : 0), 0);
9651 /* The non-logging counterpart of message1. */
9653 void
9654 message1_nolog (const char *m)
9656 message2_nolog (m, (m ? strlen (m) : 0), 0);
9659 /* Display a message M which contains a single %s
9660 which gets replaced with STRING. */
9662 void
9663 message_with_string (const char *m, Lisp_Object string, int log)
9665 CHECK_STRING (string);
9667 if (noninteractive)
9669 if (m)
9671 if (noninteractive_need_newline)
9672 putc ('\n', stderr);
9673 noninteractive_need_newline = 0;
9674 fprintf (stderr, m, SDATA (string));
9675 if (!cursor_in_echo_area)
9676 fprintf (stderr, "\n");
9677 fflush (stderr);
9680 else if (INTERACTIVE)
9682 /* The frame whose minibuffer we're going to display the message on.
9683 It may be larger than the selected frame, so we need
9684 to use its buffer, not the selected frame's buffer. */
9685 Lisp_Object mini_window;
9686 struct frame *f, *sf = SELECTED_FRAME ();
9688 /* Get the frame containing the minibuffer
9689 that the selected frame is using. */
9690 mini_window = FRAME_MINIBUF_WINDOW (sf);
9691 f = XFRAME (WINDOW_FRAME (XWINDOW (mini_window)));
9693 /* A null message buffer means that the frame hasn't really been
9694 initialized yet. Error messages get reported properly by
9695 cmd_error, so this must be just an informative message; toss it. */
9696 if (FRAME_MESSAGE_BUF (f))
9698 Lisp_Object args[2], msg;
9699 struct gcpro gcpro1, gcpro2;
9701 args[0] = build_string (m);
9702 args[1] = msg = string;
9703 GCPRO2 (args[0], msg);
9704 gcpro1.nvars = 2;
9706 msg = Fformat (2, args);
9708 if (log)
9709 message3 (msg, SBYTES (msg), STRING_MULTIBYTE (msg));
9710 else
9711 message3_nolog (msg, SBYTES (msg), STRING_MULTIBYTE (msg));
9713 UNGCPRO;
9715 /* Print should start at the beginning of the message
9716 buffer next time. */
9717 message_buf_print = 0;
9723 /* Dump an informative message to the minibuf. If M is 0, clear out
9724 any existing message, and let the mini-buffer text show through. */
9726 static void
9727 vmessage (const char *m, va_list ap)
9729 if (noninteractive)
9731 if (m)
9733 if (noninteractive_need_newline)
9734 putc ('\n', stderr);
9735 noninteractive_need_newline = 0;
9736 vfprintf (stderr, m, ap);
9737 if (cursor_in_echo_area == 0)
9738 fprintf (stderr, "\n");
9739 fflush (stderr);
9742 else if (INTERACTIVE)
9744 /* The frame whose mini-buffer we're going to display the message
9745 on. It may be larger than the selected frame, so we need to
9746 use its buffer, not the selected frame's buffer. */
9747 Lisp_Object mini_window;
9748 struct frame *f, *sf = SELECTED_FRAME ();
9750 /* Get the frame containing the mini-buffer
9751 that the selected frame is using. */
9752 mini_window = FRAME_MINIBUF_WINDOW (sf);
9753 f = XFRAME (WINDOW_FRAME (XWINDOW (mini_window)));
9755 /* A null message buffer means that the frame hasn't really been
9756 initialized yet. Error messages get reported properly by
9757 cmd_error, so this must be just an informative message; toss
9758 it. */
9759 if (FRAME_MESSAGE_BUF (f))
9761 if (m)
9763 ptrdiff_t len;
9765 len = doprnt (FRAME_MESSAGE_BUF (f),
9766 FRAME_MESSAGE_BUF_SIZE (f), m, (char *)0, ap);
9768 message2 (FRAME_MESSAGE_BUF (f), len, 1);
9770 else
9771 message1 (0);
9773 /* Print should start at the beginning of the message
9774 buffer next time. */
9775 message_buf_print = 0;
9780 void
9781 message (const char *m, ...)
9783 va_list ap;
9784 va_start (ap, m);
9785 vmessage (m, ap);
9786 va_end (ap);
9790 #if 0
9791 /* The non-logging version of message. */
9793 void
9794 message_nolog (const char *m, ...)
9796 Lisp_Object old_log_max;
9797 va_list ap;
9798 va_start (ap, m);
9799 old_log_max = Vmessage_log_max;
9800 Vmessage_log_max = Qnil;
9801 vmessage (m, ap);
9802 Vmessage_log_max = old_log_max;
9803 va_end (ap);
9805 #endif
9808 /* Display the current message in the current mini-buffer. This is
9809 only called from error handlers in process.c, and is not time
9810 critical. */
9812 void
9813 update_echo_area (void)
9815 if (!NILP (echo_area_buffer[0]))
9817 Lisp_Object string;
9818 string = Fcurrent_message ();
9819 message3 (string, SBYTES (string),
9820 !NILP (BVAR (current_buffer, enable_multibyte_characters)));
9825 /* Make sure echo area buffers in `echo_buffers' are live.
9826 If they aren't, make new ones. */
9828 static void
9829 ensure_echo_area_buffers (void)
9831 int i;
9833 for (i = 0; i < 2; ++i)
9834 if (!BUFFERP (echo_buffer[i])
9835 || NILP (BVAR (XBUFFER (echo_buffer[i]), name)))
9837 char name[30];
9838 Lisp_Object old_buffer;
9839 int j;
9841 old_buffer = echo_buffer[i];
9842 sprintf (name, " *Echo Area %d*", i);
9843 echo_buffer[i] = Fget_buffer_create (build_string (name));
9844 BVAR (XBUFFER (echo_buffer[i]), truncate_lines) = Qnil;
9845 /* to force word wrap in echo area -
9846 it was decided to postpone this*/
9847 /* XBUFFER (echo_buffer[i])->word_wrap = Qt; */
9849 for (j = 0; j < 2; ++j)
9850 if (EQ (old_buffer, echo_area_buffer[j]))
9851 echo_area_buffer[j] = echo_buffer[i];
9856 /* Call FN with args A1..A4 with either the current or last displayed
9857 echo_area_buffer as current buffer.
9859 WHICH zero means use the current message buffer
9860 echo_area_buffer[0]. If that is nil, choose a suitable buffer
9861 from echo_buffer[] and clear it.
9863 WHICH > 0 means use echo_area_buffer[1]. If that is nil, choose a
9864 suitable buffer from echo_buffer[] and clear it.
9866 If WHICH < 0, set echo_area_buffer[1] to echo_area_buffer[0], so
9867 that the current message becomes the last displayed one, make
9868 choose a suitable buffer for echo_area_buffer[0], and clear it.
9870 Value is what FN returns. */
9872 static int
9873 with_echo_area_buffer (struct window *w, int which,
9874 int (*fn) (ptrdiff_t, Lisp_Object, ptrdiff_t, ptrdiff_t),
9875 ptrdiff_t a1, Lisp_Object a2, ptrdiff_t a3, ptrdiff_t a4)
9877 Lisp_Object buffer;
9878 int this_one, the_other, clear_buffer_p, rc;
9879 ptrdiff_t count = SPECPDL_INDEX ();
9881 /* If buffers aren't live, make new ones. */
9882 ensure_echo_area_buffers ();
9884 clear_buffer_p = 0;
9886 if (which == 0)
9887 this_one = 0, the_other = 1;
9888 else if (which > 0)
9889 this_one = 1, the_other = 0;
9890 else
9892 this_one = 0, the_other = 1;
9893 clear_buffer_p = 1;
9895 /* We need a fresh one in case the current echo buffer equals
9896 the one containing the last displayed echo area message. */
9897 if (!NILP (echo_area_buffer[this_one])
9898 && EQ (echo_area_buffer[this_one], echo_area_buffer[the_other]))
9899 echo_area_buffer[this_one] = Qnil;
9902 /* Choose a suitable buffer from echo_buffer[] is we don't
9903 have one. */
9904 if (NILP (echo_area_buffer[this_one]))
9906 echo_area_buffer[this_one]
9907 = (EQ (echo_area_buffer[the_other], echo_buffer[this_one])
9908 ? echo_buffer[the_other]
9909 : echo_buffer[this_one]);
9910 clear_buffer_p = 1;
9913 buffer = echo_area_buffer[this_one];
9915 /* Don't get confused by reusing the buffer used for echoing
9916 for a different purpose. */
9917 if (echo_kboard == NULL && EQ (buffer, echo_message_buffer))
9918 cancel_echoing ();
9920 record_unwind_protect (unwind_with_echo_area_buffer,
9921 with_echo_area_buffer_unwind_data (w));
9923 /* Make the echo area buffer current. Note that for display
9924 purposes, it is not necessary that the displayed window's buffer
9925 == current_buffer, except for text property lookup. So, let's
9926 only set that buffer temporarily here without doing a full
9927 Fset_window_buffer. We must also change w->pointm, though,
9928 because otherwise an assertions in unshow_buffer fails, and Emacs
9929 aborts. */
9930 set_buffer_internal_1 (XBUFFER (buffer));
9931 if (w)
9933 w->buffer = buffer;
9934 set_marker_both (w->pointm, buffer, BEG, BEG_BYTE);
9937 BVAR (current_buffer, undo_list) = Qt;
9938 BVAR (current_buffer, read_only) = Qnil;
9939 specbind (Qinhibit_read_only, Qt);
9940 specbind (Qinhibit_modification_hooks, Qt);
9942 if (clear_buffer_p && Z > BEG)
9943 del_range (BEG, Z);
9945 xassert (BEGV >= BEG);
9946 xassert (ZV <= Z && ZV >= BEGV);
9948 rc = fn (a1, a2, a3, a4);
9950 xassert (BEGV >= BEG);
9951 xassert (ZV <= Z && ZV >= BEGV);
9953 unbind_to (count, Qnil);
9954 return rc;
9958 /* Save state that should be preserved around the call to the function
9959 FN called in with_echo_area_buffer. */
9961 static Lisp_Object
9962 with_echo_area_buffer_unwind_data (struct window *w)
9964 int i = 0;
9965 Lisp_Object vector, tmp;
9967 /* Reduce consing by keeping one vector in
9968 Vwith_echo_area_save_vector. */
9969 vector = Vwith_echo_area_save_vector;
9970 Vwith_echo_area_save_vector = Qnil;
9972 if (NILP (vector))
9973 vector = Fmake_vector (make_number (7), Qnil);
9975 XSETBUFFER (tmp, current_buffer); ASET (vector, i, tmp); ++i;
9976 ASET (vector, i, Vdeactivate_mark); ++i;
9977 ASET (vector, i, make_number (windows_or_buffers_changed)); ++i;
9979 if (w)
9981 XSETWINDOW (tmp, w); ASET (vector, i, tmp); ++i;
9982 ASET (vector, i, w->buffer); ++i;
9983 ASET (vector, i, make_number (XMARKER (w->pointm)->charpos)); ++i;
9984 ASET (vector, i, make_number (XMARKER (w->pointm)->bytepos)); ++i;
9986 else
9988 int end = i + 4;
9989 for (; i < end; ++i)
9990 ASET (vector, i, Qnil);
9993 xassert (i == ASIZE (vector));
9994 return vector;
9998 /* Restore global state from VECTOR which was created by
9999 with_echo_area_buffer_unwind_data. */
10001 static Lisp_Object
10002 unwind_with_echo_area_buffer (Lisp_Object vector)
10004 set_buffer_internal_1 (XBUFFER (AREF (vector, 0)));
10005 Vdeactivate_mark = AREF (vector, 1);
10006 windows_or_buffers_changed = XFASTINT (AREF (vector, 2));
10008 if (WINDOWP (AREF (vector, 3)))
10010 struct window *w;
10011 Lisp_Object buffer, charpos, bytepos;
10013 w = XWINDOW (AREF (vector, 3));
10014 buffer = AREF (vector, 4);
10015 charpos = AREF (vector, 5);
10016 bytepos = AREF (vector, 6);
10018 w->buffer = buffer;
10019 set_marker_both (w->pointm, buffer,
10020 XFASTINT (charpos), XFASTINT (bytepos));
10023 Vwith_echo_area_save_vector = vector;
10024 return Qnil;
10028 /* Set up the echo area for use by print functions. MULTIBYTE_P
10029 non-zero means we will print multibyte. */
10031 void
10032 setup_echo_area_for_printing (int multibyte_p)
10034 /* If we can't find an echo area any more, exit. */
10035 if (! FRAME_LIVE_P (XFRAME (selected_frame)))
10036 Fkill_emacs (Qnil);
10038 ensure_echo_area_buffers ();
10040 if (!message_buf_print)
10042 /* A message has been output since the last time we printed.
10043 Choose a fresh echo area buffer. */
10044 if (EQ (echo_area_buffer[1], echo_buffer[0]))
10045 echo_area_buffer[0] = echo_buffer[1];
10046 else
10047 echo_area_buffer[0] = echo_buffer[0];
10049 /* Switch to that buffer and clear it. */
10050 set_buffer_internal (XBUFFER (echo_area_buffer[0]));
10051 BVAR (current_buffer, truncate_lines) = Qnil;
10053 if (Z > BEG)
10055 ptrdiff_t count = SPECPDL_INDEX ();
10056 specbind (Qinhibit_read_only, Qt);
10057 /* Note that undo recording is always disabled. */
10058 del_range (BEG, Z);
10059 unbind_to (count, Qnil);
10061 TEMP_SET_PT_BOTH (BEG, BEG_BYTE);
10063 /* Set up the buffer for the multibyteness we need. */
10064 if (multibyte_p
10065 != !NILP (BVAR (current_buffer, enable_multibyte_characters)))
10066 Fset_buffer_multibyte (multibyte_p ? Qt : Qnil);
10068 /* Raise the frame containing the echo area. */
10069 if (minibuffer_auto_raise)
10071 struct frame *sf = SELECTED_FRAME ();
10072 Lisp_Object mini_window;
10073 mini_window = FRAME_MINIBUF_WINDOW (sf);
10074 Fraise_frame (WINDOW_FRAME (XWINDOW (mini_window)));
10077 message_log_maybe_newline ();
10078 message_buf_print = 1;
10080 else
10082 if (NILP (echo_area_buffer[0]))
10084 if (EQ (echo_area_buffer[1], echo_buffer[0]))
10085 echo_area_buffer[0] = echo_buffer[1];
10086 else
10087 echo_area_buffer[0] = echo_buffer[0];
10090 if (current_buffer != XBUFFER (echo_area_buffer[0]))
10092 /* Someone switched buffers between print requests. */
10093 set_buffer_internal (XBUFFER (echo_area_buffer[0]));
10094 BVAR (current_buffer, truncate_lines) = Qnil;
10100 /* Display an echo area message in window W. Value is non-zero if W's
10101 height is changed. If display_last_displayed_message_p is
10102 non-zero, display the message that was last displayed, otherwise
10103 display the current message. */
10105 static int
10106 display_echo_area (struct window *w)
10108 int i, no_message_p, window_height_changed_p;
10110 /* Temporarily disable garbage collections while displaying the echo
10111 area. This is done because a GC can print a message itself.
10112 That message would modify the echo area buffer's contents while a
10113 redisplay of the buffer is going on, and seriously confuse
10114 redisplay. */
10115 ptrdiff_t count = inhibit_garbage_collection ();
10117 /* If there is no message, we must call display_echo_area_1
10118 nevertheless because it resizes the window. But we will have to
10119 reset the echo_area_buffer in question to nil at the end because
10120 with_echo_area_buffer will sets it to an empty buffer. */
10121 i = display_last_displayed_message_p ? 1 : 0;
10122 no_message_p = NILP (echo_area_buffer[i]);
10124 window_height_changed_p
10125 = with_echo_area_buffer (w, display_last_displayed_message_p,
10126 display_echo_area_1,
10127 (intptr_t) w, Qnil, 0, 0);
10129 if (no_message_p)
10130 echo_area_buffer[i] = Qnil;
10132 unbind_to (count, Qnil);
10133 return window_height_changed_p;
10137 /* Helper for display_echo_area. Display the current buffer which
10138 contains the current echo area message in window W, a mini-window,
10139 a pointer to which is passed in A1. A2..A4 are currently not used.
10140 Change the height of W so that all of the message is displayed.
10141 Value is non-zero if height of W was changed. */
10143 static int
10144 display_echo_area_1 (ptrdiff_t a1, Lisp_Object a2, ptrdiff_t a3, ptrdiff_t a4)
10146 intptr_t i1 = a1;
10147 struct window *w = (struct window *) i1;
10148 Lisp_Object window;
10149 struct text_pos start;
10150 int window_height_changed_p = 0;
10152 /* Do this before displaying, so that we have a large enough glyph
10153 matrix for the display. If we can't get enough space for the
10154 whole text, display the last N lines. That works by setting w->start. */
10155 window_height_changed_p = resize_mini_window (w, 0);
10157 /* Use the starting position chosen by resize_mini_window. */
10158 SET_TEXT_POS_FROM_MARKER (start, w->start);
10160 /* Display. */
10161 clear_glyph_matrix (w->desired_matrix);
10162 XSETWINDOW (window, w);
10163 try_window (window, start, 0);
10165 return window_height_changed_p;
10169 /* Resize the echo area window to exactly the size needed for the
10170 currently displayed message, if there is one. If a mini-buffer
10171 is active, don't shrink it. */
10173 void
10174 resize_echo_area_exactly (void)
10176 if (BUFFERP (echo_area_buffer[0])
10177 && WINDOWP (echo_area_window))
10179 struct window *w = XWINDOW (echo_area_window);
10180 int resized_p;
10181 Lisp_Object resize_exactly;
10183 if (minibuf_level == 0)
10184 resize_exactly = Qt;
10185 else
10186 resize_exactly = Qnil;
10188 resized_p = with_echo_area_buffer (w, 0, resize_mini_window_1,
10189 (intptr_t) w, resize_exactly,
10190 0, 0);
10191 if (resized_p)
10193 ++windows_or_buffers_changed;
10194 ++update_mode_lines;
10195 redisplay_internal ();
10201 /* Callback function for with_echo_area_buffer, when used from
10202 resize_echo_area_exactly. A1 contains a pointer to the window to
10203 resize, EXACTLY non-nil means resize the mini-window exactly to the
10204 size of the text displayed. A3 and A4 are not used. Value is what
10205 resize_mini_window returns. */
10207 static int
10208 resize_mini_window_1 (ptrdiff_t a1, Lisp_Object exactly, ptrdiff_t a3, ptrdiff_t a4)
10210 intptr_t i1 = a1;
10211 return resize_mini_window ((struct window *) i1, !NILP (exactly));
10215 /* Resize mini-window W to fit the size of its contents. EXACT_P
10216 means size the window exactly to the size needed. Otherwise, it's
10217 only enlarged until W's buffer is empty.
10219 Set W->start to the right place to begin display. If the whole
10220 contents fit, start at the beginning. Otherwise, start so as
10221 to make the end of the contents appear. This is particularly
10222 important for y-or-n-p, but seems desirable generally.
10224 Value is non-zero if the window height has been changed. */
10227 resize_mini_window (struct window *w, int exact_p)
10229 struct frame *f = XFRAME (w->frame);
10230 int window_height_changed_p = 0;
10232 xassert (MINI_WINDOW_P (w));
10234 /* By default, start display at the beginning. */
10235 set_marker_both (w->start, w->buffer,
10236 BUF_BEGV (XBUFFER (w->buffer)),
10237 BUF_BEGV_BYTE (XBUFFER (w->buffer)));
10239 /* Don't resize windows while redisplaying a window; it would
10240 confuse redisplay functions when the size of the window they are
10241 displaying changes from under them. Such a resizing can happen,
10242 for instance, when which-func prints a long message while
10243 we are running fontification-functions. We're running these
10244 functions with safe_call which binds inhibit-redisplay to t. */
10245 if (!NILP (Vinhibit_redisplay))
10246 return 0;
10248 /* Nil means don't try to resize. */
10249 if (NILP (Vresize_mini_windows)
10250 || (FRAME_X_P (f) && FRAME_X_OUTPUT (f) == NULL))
10251 return 0;
10253 if (!FRAME_MINIBUF_ONLY_P (f))
10255 struct it it;
10256 struct window *root = XWINDOW (FRAME_ROOT_WINDOW (f));
10257 int total_height = WINDOW_TOTAL_LINES (root) + WINDOW_TOTAL_LINES (w);
10258 int height;
10259 EMACS_INT max_height;
10260 int unit = FRAME_LINE_HEIGHT (f);
10261 struct text_pos start;
10262 struct buffer *old_current_buffer = NULL;
10264 if (current_buffer != XBUFFER (w->buffer))
10266 old_current_buffer = current_buffer;
10267 set_buffer_internal (XBUFFER (w->buffer));
10270 init_iterator (&it, w, BEGV, BEGV_BYTE, NULL, DEFAULT_FACE_ID);
10272 /* Compute the max. number of lines specified by the user. */
10273 if (FLOATP (Vmax_mini_window_height))
10274 max_height = XFLOATINT (Vmax_mini_window_height) * FRAME_LINES (f);
10275 else if (INTEGERP (Vmax_mini_window_height))
10276 max_height = XINT (Vmax_mini_window_height);
10277 else
10278 max_height = total_height / 4;
10280 /* Correct that max. height if it's bogus. */
10281 max_height = max (1, max_height);
10282 max_height = min (total_height, max_height);
10284 /* Find out the height of the text in the window. */
10285 if (it.line_wrap == TRUNCATE)
10286 height = 1;
10287 else
10289 last_height = 0;
10290 move_it_to (&it, ZV, -1, -1, -1, MOVE_TO_POS);
10291 if (it.max_ascent == 0 && it.max_descent == 0)
10292 height = it.current_y + last_height;
10293 else
10294 height = it.current_y + it.max_ascent + it.max_descent;
10295 height -= min (it.extra_line_spacing, it.max_extra_line_spacing);
10296 height = (height + unit - 1) / unit;
10299 /* Compute a suitable window start. */
10300 if (height > max_height)
10302 height = max_height;
10303 init_iterator (&it, w, ZV, ZV_BYTE, NULL, DEFAULT_FACE_ID);
10304 move_it_vertically_backward (&it, (height - 1) * unit);
10305 start = it.current.pos;
10307 else
10308 SET_TEXT_POS (start, BEGV, BEGV_BYTE);
10309 SET_MARKER_FROM_TEXT_POS (w->start, start);
10311 if (EQ (Vresize_mini_windows, Qgrow_only))
10313 /* Let it grow only, until we display an empty message, in which
10314 case the window shrinks again. */
10315 if (height > WINDOW_TOTAL_LINES (w))
10317 int old_height = WINDOW_TOTAL_LINES (w);
10318 freeze_window_starts (f, 1);
10319 grow_mini_window (w, height - WINDOW_TOTAL_LINES (w));
10320 window_height_changed_p = WINDOW_TOTAL_LINES (w) != old_height;
10322 else if (height < WINDOW_TOTAL_LINES (w)
10323 && (exact_p || BEGV == ZV))
10325 int old_height = WINDOW_TOTAL_LINES (w);
10326 freeze_window_starts (f, 0);
10327 shrink_mini_window (w);
10328 window_height_changed_p = WINDOW_TOTAL_LINES (w) != old_height;
10331 else
10333 /* Always resize to exact size needed. */
10334 if (height > WINDOW_TOTAL_LINES (w))
10336 int old_height = WINDOW_TOTAL_LINES (w);
10337 freeze_window_starts (f, 1);
10338 grow_mini_window (w, height - WINDOW_TOTAL_LINES (w));
10339 window_height_changed_p = WINDOW_TOTAL_LINES (w) != old_height;
10341 else if (height < WINDOW_TOTAL_LINES (w))
10343 int old_height = WINDOW_TOTAL_LINES (w);
10344 freeze_window_starts (f, 0);
10345 shrink_mini_window (w);
10347 if (height)
10349 freeze_window_starts (f, 1);
10350 grow_mini_window (w, height - WINDOW_TOTAL_LINES (w));
10353 window_height_changed_p = WINDOW_TOTAL_LINES (w) != old_height;
10357 if (old_current_buffer)
10358 set_buffer_internal (old_current_buffer);
10361 return window_height_changed_p;
10365 /* Value is the current message, a string, or nil if there is no
10366 current message. */
10368 Lisp_Object
10369 current_message (void)
10371 Lisp_Object msg;
10373 if (!BUFFERP (echo_area_buffer[0]))
10374 msg = Qnil;
10375 else
10377 with_echo_area_buffer (0, 0, current_message_1,
10378 (intptr_t) &msg, Qnil, 0, 0);
10379 if (NILP (msg))
10380 echo_area_buffer[0] = Qnil;
10383 return msg;
10387 static int
10388 current_message_1 (ptrdiff_t a1, Lisp_Object a2, ptrdiff_t a3, ptrdiff_t a4)
10390 intptr_t i1 = a1;
10391 Lisp_Object *msg = (Lisp_Object *) i1;
10393 if (Z > BEG)
10394 *msg = make_buffer_string (BEG, Z, 1);
10395 else
10396 *msg = Qnil;
10397 return 0;
10401 /* Push the current message on Vmessage_stack for later restoration
10402 by restore_message. Value is non-zero if the current message isn't
10403 empty. This is a relatively infrequent operation, so it's not
10404 worth optimizing. */
10407 push_message (void)
10409 Lisp_Object msg;
10410 msg = current_message ();
10411 Vmessage_stack = Fcons (msg, Vmessage_stack);
10412 return STRINGP (msg);
10416 /* Restore message display from the top of Vmessage_stack. */
10418 void
10419 restore_message (void)
10421 Lisp_Object msg;
10423 xassert (CONSP (Vmessage_stack));
10424 msg = XCAR (Vmessage_stack);
10425 if (STRINGP (msg))
10426 message3_nolog (msg, SBYTES (msg), STRING_MULTIBYTE (msg));
10427 else
10428 message3_nolog (msg, 0, 0);
10432 /* Handler for record_unwind_protect calling pop_message. */
10434 Lisp_Object
10435 pop_message_unwind (Lisp_Object dummy)
10437 pop_message ();
10438 return Qnil;
10441 /* Pop the top-most entry off Vmessage_stack. */
10443 static void
10444 pop_message (void)
10446 xassert (CONSP (Vmessage_stack));
10447 Vmessage_stack = XCDR (Vmessage_stack);
10451 /* Check that Vmessage_stack is nil. Called from emacs.c when Emacs
10452 exits. If the stack is not empty, we have a missing pop_message
10453 somewhere. */
10455 void
10456 check_message_stack (void)
10458 if (!NILP (Vmessage_stack))
10459 abort ();
10463 /* Truncate to NCHARS what will be displayed in the echo area the next
10464 time we display it---but don't redisplay it now. */
10466 void
10467 truncate_echo_area (ptrdiff_t nchars)
10469 if (nchars == 0)
10470 echo_area_buffer[0] = Qnil;
10471 /* A null message buffer means that the frame hasn't really been
10472 initialized yet. Error messages get reported properly by
10473 cmd_error, so this must be just an informative message; toss it. */
10474 else if (!noninteractive
10475 && INTERACTIVE
10476 && !NILP (echo_area_buffer[0]))
10478 struct frame *sf = SELECTED_FRAME ();
10479 if (FRAME_MESSAGE_BUF (sf))
10480 with_echo_area_buffer (0, 0, truncate_message_1, nchars, Qnil, 0, 0);
10485 /* Helper function for truncate_echo_area. Truncate the current
10486 message to at most NCHARS characters. */
10488 static int
10489 truncate_message_1 (ptrdiff_t nchars, Lisp_Object a2, ptrdiff_t a3, ptrdiff_t a4)
10491 if (BEG + nchars < Z)
10492 del_range (BEG + nchars, Z);
10493 if (Z == BEG)
10494 echo_area_buffer[0] = Qnil;
10495 return 0;
10499 /* Set the current message to a substring of S or STRING.
10501 If STRING is a Lisp string, set the message to the first NBYTES
10502 bytes from STRING. NBYTES zero means use the whole string. If
10503 STRING is multibyte, the message will be displayed multibyte.
10505 If S is not null, set the message to the first LEN bytes of S. LEN
10506 zero means use the whole string. MULTIBYTE_P non-zero means S is
10507 multibyte. Display the message multibyte in that case.
10509 Doesn't GC, as with_echo_area_buffer binds Qinhibit_modification_hooks
10510 to t before calling set_message_1 (which calls insert).
10513 static void
10514 set_message (const char *s, Lisp_Object string,
10515 ptrdiff_t nbytes, int multibyte_p)
10517 message_enable_multibyte
10518 = ((s && multibyte_p)
10519 || (STRINGP (string) && STRING_MULTIBYTE (string)));
10521 with_echo_area_buffer (0, -1, set_message_1,
10522 (intptr_t) s, string, nbytes, multibyte_p);
10523 message_buf_print = 0;
10524 help_echo_showing_p = 0;
10528 /* Helper function for set_message. Arguments have the same meaning
10529 as there, with A1 corresponding to S and A2 corresponding to STRING
10530 This function is called with the echo area buffer being
10531 current. */
10533 static int
10534 set_message_1 (ptrdiff_t a1, Lisp_Object a2, ptrdiff_t nbytes, ptrdiff_t multibyte_p)
10536 intptr_t i1 = a1;
10537 const char *s = (const char *) i1;
10538 const unsigned char *msg = (const unsigned char *) s;
10539 Lisp_Object string = a2;
10541 /* Change multibyteness of the echo buffer appropriately. */
10542 if (message_enable_multibyte
10543 != !NILP (BVAR (current_buffer, enable_multibyte_characters)))
10544 Fset_buffer_multibyte (message_enable_multibyte ? Qt : Qnil);
10546 BVAR (current_buffer, truncate_lines) = message_truncate_lines ? Qt : Qnil;
10547 if (!NILP (BVAR (current_buffer, bidi_display_reordering)))
10548 BVAR (current_buffer, bidi_paragraph_direction) = Qleft_to_right;
10550 /* Insert new message at BEG. */
10551 TEMP_SET_PT_BOTH (BEG, BEG_BYTE);
10553 if (STRINGP (string))
10555 ptrdiff_t nchars;
10557 if (nbytes == 0)
10558 nbytes = SBYTES (string);
10559 nchars = string_byte_to_char (string, nbytes);
10561 /* This function takes care of single/multibyte conversion. We
10562 just have to ensure that the echo area buffer has the right
10563 setting of enable_multibyte_characters. */
10564 insert_from_string (string, 0, 0, nchars, nbytes, 1);
10566 else if (s)
10568 if (nbytes == 0)
10569 nbytes = strlen (s);
10571 if (multibyte_p && NILP (BVAR (current_buffer, enable_multibyte_characters)))
10573 /* Convert from multi-byte to single-byte. */
10574 ptrdiff_t i;
10575 int c, n;
10576 char work[1];
10578 /* Convert a multibyte string to single-byte. */
10579 for (i = 0; i < nbytes; i += n)
10581 c = string_char_and_length (msg + i, &n);
10582 work[0] = (ASCII_CHAR_P (c)
10584 : multibyte_char_to_unibyte (c));
10585 insert_1_both (work, 1, 1, 1, 0, 0);
10588 else if (!multibyte_p
10589 && !NILP (BVAR (current_buffer, enable_multibyte_characters)))
10591 /* Convert from single-byte to multi-byte. */
10592 ptrdiff_t i;
10593 int c, n;
10594 unsigned char str[MAX_MULTIBYTE_LENGTH];
10596 /* Convert a single-byte string to multibyte. */
10597 for (i = 0; i < nbytes; i++)
10599 c = msg[i];
10600 MAKE_CHAR_MULTIBYTE (c);
10601 n = CHAR_STRING (c, str);
10602 insert_1_both ((char *) str, 1, n, 1, 0, 0);
10605 else
10606 insert_1 (s, nbytes, 1, 0, 0);
10609 return 0;
10613 /* Clear messages. CURRENT_P non-zero means clear the current
10614 message. LAST_DISPLAYED_P non-zero means clear the message
10615 last displayed. */
10617 void
10618 clear_message (int current_p, int last_displayed_p)
10620 if (current_p)
10622 echo_area_buffer[0] = Qnil;
10623 message_cleared_p = 1;
10626 if (last_displayed_p)
10627 echo_area_buffer[1] = Qnil;
10629 message_buf_print = 0;
10632 /* Clear garbaged frames.
10634 This function is used where the old redisplay called
10635 redraw_garbaged_frames which in turn called redraw_frame which in
10636 turn called clear_frame. The call to clear_frame was a source of
10637 flickering. I believe a clear_frame is not necessary. It should
10638 suffice in the new redisplay to invalidate all current matrices,
10639 and ensure a complete redisplay of all windows. */
10641 static void
10642 clear_garbaged_frames (void)
10644 if (frame_garbaged)
10646 Lisp_Object tail, frame;
10647 int changed_count = 0;
10649 FOR_EACH_FRAME (tail, frame)
10651 struct frame *f = XFRAME (frame);
10653 if (FRAME_VISIBLE_P (f) && FRAME_GARBAGED_P (f))
10655 if (f->resized_p)
10657 Fredraw_frame (frame);
10658 f->force_flush_display_p = 1;
10660 clear_current_matrices (f);
10661 changed_count++;
10662 f->garbaged = 0;
10663 f->resized_p = 0;
10667 frame_garbaged = 0;
10668 if (changed_count)
10669 ++windows_or_buffers_changed;
10674 /* Redisplay the echo area of the selected frame. If UPDATE_FRAME_P
10675 is non-zero update selected_frame. Value is non-zero if the
10676 mini-windows height has been changed. */
10678 static int
10679 echo_area_display (int update_frame_p)
10681 Lisp_Object mini_window;
10682 struct window *w;
10683 struct frame *f;
10684 int window_height_changed_p = 0;
10685 struct frame *sf = SELECTED_FRAME ();
10687 mini_window = FRAME_MINIBUF_WINDOW (sf);
10688 w = XWINDOW (mini_window);
10689 f = XFRAME (WINDOW_FRAME (w));
10691 /* Don't display if frame is invisible or not yet initialized. */
10692 if (!FRAME_VISIBLE_P (f) || !f->glyphs_initialized_p)
10693 return 0;
10695 #ifdef HAVE_WINDOW_SYSTEM
10696 /* When Emacs starts, selected_frame may be the initial terminal
10697 frame. If we let this through, a message would be displayed on
10698 the terminal. */
10699 if (FRAME_INITIAL_P (XFRAME (selected_frame)))
10700 return 0;
10701 #endif /* HAVE_WINDOW_SYSTEM */
10703 /* Redraw garbaged frames. */
10704 if (frame_garbaged)
10705 clear_garbaged_frames ();
10707 if (!NILP (echo_area_buffer[0]) || minibuf_level == 0)
10709 echo_area_window = mini_window;
10710 window_height_changed_p = display_echo_area (w);
10711 w->must_be_updated_p = 1;
10713 /* Update the display, unless called from redisplay_internal.
10714 Also don't update the screen during redisplay itself. The
10715 update will happen at the end of redisplay, and an update
10716 here could cause confusion. */
10717 if (update_frame_p && !redisplaying_p)
10719 int n = 0;
10721 /* If the display update has been interrupted by pending
10722 input, update mode lines in the frame. Due to the
10723 pending input, it might have been that redisplay hasn't
10724 been called, so that mode lines above the echo area are
10725 garbaged. This looks odd, so we prevent it here. */
10726 if (!display_completed)
10727 n = redisplay_mode_lines (FRAME_ROOT_WINDOW (f), 0);
10729 if (window_height_changed_p
10730 /* Don't do this if Emacs is shutting down. Redisplay
10731 needs to run hooks. */
10732 && !NILP (Vrun_hooks))
10734 /* Must update other windows. Likewise as in other
10735 cases, don't let this update be interrupted by
10736 pending input. */
10737 ptrdiff_t count = SPECPDL_INDEX ();
10738 specbind (Qredisplay_dont_pause, Qt);
10739 windows_or_buffers_changed = 1;
10740 redisplay_internal ();
10741 unbind_to (count, Qnil);
10743 else if (FRAME_WINDOW_P (f) && n == 0)
10745 /* Window configuration is the same as before.
10746 Can do with a display update of the echo area,
10747 unless we displayed some mode lines. */
10748 update_single_window (w, 1);
10749 FRAME_RIF (f)->flush_display (f);
10751 else
10752 update_frame (f, 1, 1);
10754 /* If cursor is in the echo area, make sure that the next
10755 redisplay displays the minibuffer, so that the cursor will
10756 be replaced with what the minibuffer wants. */
10757 if (cursor_in_echo_area)
10758 ++windows_or_buffers_changed;
10761 else if (!EQ (mini_window, selected_window))
10762 windows_or_buffers_changed++;
10764 /* Last displayed message is now the current message. */
10765 echo_area_buffer[1] = echo_area_buffer[0];
10766 /* Inform read_char that we're not echoing. */
10767 echo_message_buffer = Qnil;
10769 /* Prevent redisplay optimization in redisplay_internal by resetting
10770 this_line_start_pos. This is done because the mini-buffer now
10771 displays the message instead of its buffer text. */
10772 if (EQ (mini_window, selected_window))
10773 CHARPOS (this_line_start_pos) = 0;
10775 return window_height_changed_p;
10780 /***********************************************************************
10781 Mode Lines and Frame Titles
10782 ***********************************************************************/
10784 /* A buffer for constructing non-propertized mode-line strings and
10785 frame titles in it; allocated from the heap in init_xdisp and
10786 resized as needed in store_mode_line_noprop_char. */
10788 static char *mode_line_noprop_buf;
10790 /* The buffer's end, and a current output position in it. */
10792 static char *mode_line_noprop_buf_end;
10793 static char *mode_line_noprop_ptr;
10795 #define MODE_LINE_NOPROP_LEN(start) \
10796 ((mode_line_noprop_ptr - mode_line_noprop_buf) - start)
10798 static enum {
10799 MODE_LINE_DISPLAY = 0,
10800 MODE_LINE_TITLE,
10801 MODE_LINE_NOPROP,
10802 MODE_LINE_STRING
10803 } mode_line_target;
10805 /* Alist that caches the results of :propertize.
10806 Each element is (PROPERTIZED-STRING . PROPERTY-LIST). */
10807 static Lisp_Object mode_line_proptrans_alist;
10809 /* List of strings making up the mode-line. */
10810 static Lisp_Object mode_line_string_list;
10812 /* Base face property when building propertized mode line string. */
10813 static Lisp_Object mode_line_string_face;
10814 static Lisp_Object mode_line_string_face_prop;
10817 /* Unwind data for mode line strings */
10819 static Lisp_Object Vmode_line_unwind_vector;
10821 static Lisp_Object
10822 format_mode_line_unwind_data (struct buffer *obuf,
10823 Lisp_Object owin,
10824 int save_proptrans)
10826 Lisp_Object vector, tmp;
10828 /* Reduce consing by keeping one vector in
10829 Vwith_echo_area_save_vector. */
10830 vector = Vmode_line_unwind_vector;
10831 Vmode_line_unwind_vector = Qnil;
10833 if (NILP (vector))
10834 vector = Fmake_vector (make_number (8), Qnil);
10836 ASET (vector, 0, make_number (mode_line_target));
10837 ASET (vector, 1, make_number (MODE_LINE_NOPROP_LEN (0)));
10838 ASET (vector, 2, mode_line_string_list);
10839 ASET (vector, 3, save_proptrans ? mode_line_proptrans_alist : Qt);
10840 ASET (vector, 4, mode_line_string_face);
10841 ASET (vector, 5, mode_line_string_face_prop);
10843 if (obuf)
10844 XSETBUFFER (tmp, obuf);
10845 else
10846 tmp = Qnil;
10847 ASET (vector, 6, tmp);
10848 ASET (vector, 7, owin);
10850 return vector;
10853 static Lisp_Object
10854 unwind_format_mode_line (Lisp_Object vector)
10856 mode_line_target = XINT (AREF (vector, 0));
10857 mode_line_noprop_ptr = mode_line_noprop_buf + XINT (AREF (vector, 1));
10858 mode_line_string_list = AREF (vector, 2);
10859 if (! EQ (AREF (vector, 3), Qt))
10860 mode_line_proptrans_alist = AREF (vector, 3);
10861 mode_line_string_face = AREF (vector, 4);
10862 mode_line_string_face_prop = AREF (vector, 5);
10864 if (!NILP (AREF (vector, 7)))
10865 /* Select window before buffer, since it may change the buffer. */
10866 Fselect_window (AREF (vector, 7), Qt);
10868 if (!NILP (AREF (vector, 6)))
10870 set_buffer_internal_1 (XBUFFER (AREF (vector, 6)));
10871 ASET (vector, 6, Qnil);
10874 Vmode_line_unwind_vector = vector;
10875 return Qnil;
10879 /* Store a single character C for the frame title in mode_line_noprop_buf.
10880 Re-allocate mode_line_noprop_buf if necessary. */
10882 static void
10883 store_mode_line_noprop_char (char c)
10885 /* If output position has reached the end of the allocated buffer,
10886 increase the buffer's size. */
10887 if (mode_line_noprop_ptr == mode_line_noprop_buf_end)
10889 ptrdiff_t len = MODE_LINE_NOPROP_LEN (0);
10890 ptrdiff_t size = len;
10891 mode_line_noprop_buf =
10892 xpalloc (mode_line_noprop_buf, &size, 1, STRING_BYTES_BOUND, 1);
10893 mode_line_noprop_buf_end = mode_line_noprop_buf + size;
10894 mode_line_noprop_ptr = mode_line_noprop_buf + len;
10897 *mode_line_noprop_ptr++ = c;
10901 /* Store part of a frame title in mode_line_noprop_buf, beginning at
10902 mode_line_noprop_ptr. STRING is the string to store. Do not copy
10903 characters that yield more columns than PRECISION; PRECISION <= 0
10904 means copy the whole string. Pad with spaces until FIELD_WIDTH
10905 number of characters have been copied; FIELD_WIDTH <= 0 means don't
10906 pad. Called from display_mode_element when it is used to build a
10907 frame title. */
10909 static int
10910 store_mode_line_noprop (const char *string, int field_width, int precision)
10912 const unsigned char *str = (const unsigned char *) string;
10913 int n = 0;
10914 ptrdiff_t dummy, nbytes;
10916 /* Copy at most PRECISION chars from STR. */
10917 nbytes = strlen (string);
10918 n += c_string_width (str, nbytes, precision, &dummy, &nbytes);
10919 while (nbytes--)
10920 store_mode_line_noprop_char (*str++);
10922 /* Fill up with spaces until FIELD_WIDTH reached. */
10923 while (field_width > 0
10924 && n < field_width)
10926 store_mode_line_noprop_char (' ');
10927 ++n;
10930 return n;
10933 /***********************************************************************
10934 Frame Titles
10935 ***********************************************************************/
10937 #ifdef HAVE_WINDOW_SYSTEM
10939 /* Set the title of FRAME, if it has changed. The title format is
10940 Vicon_title_format if FRAME is iconified, otherwise it is
10941 frame_title_format. */
10943 static void
10944 x_consider_frame_title (Lisp_Object frame)
10946 struct frame *f = XFRAME (frame);
10948 if (FRAME_WINDOW_P (f)
10949 || FRAME_MINIBUF_ONLY_P (f)
10950 || f->explicit_name)
10952 /* Do we have more than one visible frame on this X display? */
10953 Lisp_Object tail;
10954 Lisp_Object fmt;
10955 ptrdiff_t title_start;
10956 char *title;
10957 ptrdiff_t len;
10958 struct it it;
10959 ptrdiff_t count = SPECPDL_INDEX ();
10961 for (tail = Vframe_list; CONSP (tail); tail = XCDR (tail))
10963 Lisp_Object other_frame = XCAR (tail);
10964 struct frame *tf = XFRAME (other_frame);
10966 if (tf != f
10967 && FRAME_KBOARD (tf) == FRAME_KBOARD (f)
10968 && !FRAME_MINIBUF_ONLY_P (tf)
10969 && !EQ (other_frame, tip_frame)
10970 && (FRAME_VISIBLE_P (tf) || FRAME_ICONIFIED_P (tf)))
10971 break;
10974 /* Set global variable indicating that multiple frames exist. */
10975 multiple_frames = CONSP (tail);
10977 /* Switch to the buffer of selected window of the frame. Set up
10978 mode_line_target so that display_mode_element will output into
10979 mode_line_noprop_buf; then display the title. */
10980 record_unwind_protect (unwind_format_mode_line,
10981 format_mode_line_unwind_data
10982 (current_buffer, selected_window, 0));
10984 Fselect_window (f->selected_window, Qt);
10985 set_buffer_internal_1 (XBUFFER (XWINDOW (f->selected_window)->buffer));
10986 fmt = FRAME_ICONIFIED_P (f) ? Vicon_title_format : Vframe_title_format;
10988 mode_line_target = MODE_LINE_TITLE;
10989 title_start = MODE_LINE_NOPROP_LEN (0);
10990 init_iterator (&it, XWINDOW (f->selected_window), -1, -1,
10991 NULL, DEFAULT_FACE_ID);
10992 display_mode_element (&it, 0, -1, -1, fmt, Qnil, 0);
10993 len = MODE_LINE_NOPROP_LEN (title_start);
10994 title = mode_line_noprop_buf + title_start;
10995 unbind_to (count, Qnil);
10997 /* Set the title only if it's changed. This avoids consing in
10998 the common case where it hasn't. (If it turns out that we've
10999 already wasted too much time by walking through the list with
11000 display_mode_element, then we might need to optimize at a
11001 higher level than this.) */
11002 if (! STRINGP (f->name)
11003 || SBYTES (f->name) != len
11004 || memcmp (title, SDATA (f->name), len) != 0)
11005 x_implicitly_set_name (f, make_string (title, len), Qnil);
11009 #endif /* not HAVE_WINDOW_SYSTEM */
11014 /***********************************************************************
11015 Menu Bars
11016 ***********************************************************************/
11019 /* Prepare for redisplay by updating menu-bar item lists when
11020 appropriate. This can call eval. */
11022 void
11023 prepare_menu_bars (void)
11025 int all_windows;
11026 struct gcpro gcpro1, gcpro2;
11027 struct frame *f;
11028 Lisp_Object tooltip_frame;
11030 #ifdef HAVE_WINDOW_SYSTEM
11031 tooltip_frame = tip_frame;
11032 #else
11033 tooltip_frame = Qnil;
11034 #endif
11036 /* Update all frame titles based on their buffer names, etc. We do
11037 this before the menu bars so that the buffer-menu will show the
11038 up-to-date frame titles. */
11039 #ifdef HAVE_WINDOW_SYSTEM
11040 if (windows_or_buffers_changed || update_mode_lines)
11042 Lisp_Object tail, frame;
11044 FOR_EACH_FRAME (tail, frame)
11046 f = XFRAME (frame);
11047 if (!EQ (frame, tooltip_frame)
11048 && (FRAME_VISIBLE_P (f) || FRAME_ICONIFIED_P (f)))
11049 x_consider_frame_title (frame);
11052 #endif /* HAVE_WINDOW_SYSTEM */
11054 /* Update the menu bar item lists, if appropriate. This has to be
11055 done before any actual redisplay or generation of display lines. */
11056 all_windows = (update_mode_lines
11057 || buffer_shared > 1
11058 || windows_or_buffers_changed);
11059 if (all_windows)
11061 Lisp_Object tail, frame;
11062 ptrdiff_t count = SPECPDL_INDEX ();
11063 /* 1 means that update_menu_bar has run its hooks
11064 so any further calls to update_menu_bar shouldn't do so again. */
11065 int menu_bar_hooks_run = 0;
11067 record_unwind_save_match_data ();
11069 FOR_EACH_FRAME (tail, frame)
11071 f = XFRAME (frame);
11073 /* Ignore tooltip frame. */
11074 if (EQ (frame, tooltip_frame))
11075 continue;
11077 /* If a window on this frame changed size, report that to
11078 the user and clear the size-change flag. */
11079 if (FRAME_WINDOW_SIZES_CHANGED (f))
11081 Lisp_Object functions;
11083 /* Clear flag first in case we get an error below. */
11084 FRAME_WINDOW_SIZES_CHANGED (f) = 0;
11085 functions = Vwindow_size_change_functions;
11086 GCPRO2 (tail, functions);
11088 while (CONSP (functions))
11090 if (!EQ (XCAR (functions), Qt))
11091 call1 (XCAR (functions), frame);
11092 functions = XCDR (functions);
11094 UNGCPRO;
11097 GCPRO1 (tail);
11098 menu_bar_hooks_run = update_menu_bar (f, 0, menu_bar_hooks_run);
11099 #ifdef HAVE_WINDOW_SYSTEM
11100 update_tool_bar (f, 0);
11101 #endif
11102 #ifdef HAVE_NS
11103 if (windows_or_buffers_changed
11104 && FRAME_NS_P (f))
11105 ns_set_doc_edited (f, Fbuffer_modified_p
11106 (XWINDOW (f->selected_window)->buffer));
11107 #endif
11108 UNGCPRO;
11111 unbind_to (count, Qnil);
11113 else
11115 struct frame *sf = SELECTED_FRAME ();
11116 update_menu_bar (sf, 1, 0);
11117 #ifdef HAVE_WINDOW_SYSTEM
11118 update_tool_bar (sf, 1);
11119 #endif
11124 /* Update the menu bar item list for frame F. This has to be done
11125 before we start to fill in any display lines, because it can call
11126 eval.
11128 If SAVE_MATCH_DATA is non-zero, we must save and restore it here.
11130 If HOOKS_RUN is 1, that means a previous call to update_menu_bar
11131 already ran the menu bar hooks for this redisplay, so there
11132 is no need to run them again. The return value is the
11133 updated value of this flag, to pass to the next call. */
11135 static int
11136 update_menu_bar (struct frame *f, int save_match_data, int hooks_run)
11138 Lisp_Object window;
11139 register struct window *w;
11141 /* If called recursively during a menu update, do nothing. This can
11142 happen when, for instance, an activate-menubar-hook causes a
11143 redisplay. */
11144 if (inhibit_menubar_update)
11145 return hooks_run;
11147 window = FRAME_SELECTED_WINDOW (f);
11148 w = XWINDOW (window);
11150 if (FRAME_WINDOW_P (f)
11152 #if defined (USE_X_TOOLKIT) || defined (HAVE_NTGUI) \
11153 || defined (HAVE_NS) || defined (USE_GTK)
11154 FRAME_EXTERNAL_MENU_BAR (f)
11155 #else
11156 FRAME_MENU_BAR_LINES (f) > 0
11157 #endif
11158 : FRAME_MENU_BAR_LINES (f) > 0)
11160 /* If the user has switched buffers or windows, we need to
11161 recompute to reflect the new bindings. But we'll
11162 recompute when update_mode_lines is set too; that means
11163 that people can use force-mode-line-update to request
11164 that the menu bar be recomputed. The adverse effect on
11165 the rest of the redisplay algorithm is about the same as
11166 windows_or_buffers_changed anyway. */
11167 if (windows_or_buffers_changed
11168 /* This used to test w->update_mode_line, but we believe
11169 there is no need to recompute the menu in that case. */
11170 || update_mode_lines
11171 || ((BUF_SAVE_MODIFF (XBUFFER (w->buffer))
11172 < BUF_MODIFF (XBUFFER (w->buffer)))
11173 != w->last_had_star)
11174 || ((!NILP (Vtransient_mark_mode)
11175 && !NILP (BVAR (XBUFFER (w->buffer), mark_active)))
11176 != !NILP (w->region_showing)))
11178 struct buffer *prev = current_buffer;
11179 ptrdiff_t count = SPECPDL_INDEX ();
11181 specbind (Qinhibit_menubar_update, Qt);
11183 set_buffer_internal_1 (XBUFFER (w->buffer));
11184 if (save_match_data)
11185 record_unwind_save_match_data ();
11186 if (NILP (Voverriding_local_map_menu_flag))
11188 specbind (Qoverriding_terminal_local_map, Qnil);
11189 specbind (Qoverriding_local_map, Qnil);
11192 if (!hooks_run)
11194 /* Run the Lucid hook. */
11195 safe_run_hooks (Qactivate_menubar_hook);
11197 /* If it has changed current-menubar from previous value,
11198 really recompute the menu-bar from the value. */
11199 if (! NILP (Vlucid_menu_bar_dirty_flag))
11200 call0 (Qrecompute_lucid_menubar);
11202 safe_run_hooks (Qmenu_bar_update_hook);
11204 hooks_run = 1;
11207 XSETFRAME (Vmenu_updating_frame, f);
11208 FRAME_MENU_BAR_ITEMS (f) = menu_bar_items (FRAME_MENU_BAR_ITEMS (f));
11210 /* Redisplay the menu bar in case we changed it. */
11211 #if defined (USE_X_TOOLKIT) || defined (HAVE_NTGUI) \
11212 || defined (HAVE_NS) || defined (USE_GTK)
11213 if (FRAME_WINDOW_P (f))
11215 #if defined (HAVE_NS)
11216 /* All frames on Mac OS share the same menubar. So only
11217 the selected frame should be allowed to set it. */
11218 if (f == SELECTED_FRAME ())
11219 #endif
11220 set_frame_menubar (f, 0, 0);
11222 else
11223 /* On a terminal screen, the menu bar is an ordinary screen
11224 line, and this makes it get updated. */
11225 w->update_mode_line = 1;
11226 #else /* ! (USE_X_TOOLKIT || HAVE_NTGUI || HAVE_NS || USE_GTK) */
11227 /* In the non-toolkit version, the menu bar is an ordinary screen
11228 line, and this makes it get updated. */
11229 w->update_mode_line = 1;
11230 #endif /* ! (USE_X_TOOLKIT || HAVE_NTGUI || HAVE_NS || USE_GTK) */
11232 unbind_to (count, Qnil);
11233 set_buffer_internal_1 (prev);
11237 return hooks_run;
11242 /***********************************************************************
11243 Output Cursor
11244 ***********************************************************************/
11246 #ifdef HAVE_WINDOW_SYSTEM
11248 /* EXPORT:
11249 Nominal cursor position -- where to draw output.
11250 HPOS and VPOS are window relative glyph matrix coordinates.
11251 X and Y are window relative pixel coordinates. */
11253 struct cursor_pos output_cursor;
11256 /* EXPORT:
11257 Set the global variable output_cursor to CURSOR. All cursor
11258 positions are relative to updated_window. */
11260 void
11261 set_output_cursor (struct cursor_pos *cursor)
11263 output_cursor.hpos = cursor->hpos;
11264 output_cursor.vpos = cursor->vpos;
11265 output_cursor.x = cursor->x;
11266 output_cursor.y = cursor->y;
11270 /* EXPORT for RIF:
11271 Set a nominal cursor position.
11273 HPOS and VPOS are column/row positions in a window glyph matrix. X
11274 and Y are window text area relative pixel positions.
11276 If this is done during an update, updated_window will contain the
11277 window that is being updated and the position is the future output
11278 cursor position for that window. If updated_window is null, use
11279 selected_window and display the cursor at the given position. */
11281 void
11282 x_cursor_to (int vpos, int hpos, int y, int x)
11284 struct window *w;
11286 /* If updated_window is not set, work on selected_window. */
11287 if (updated_window)
11288 w = updated_window;
11289 else
11290 w = XWINDOW (selected_window);
11292 /* Set the output cursor. */
11293 output_cursor.hpos = hpos;
11294 output_cursor.vpos = vpos;
11295 output_cursor.x = x;
11296 output_cursor.y = y;
11298 /* If not called as part of an update, really display the cursor.
11299 This will also set the cursor position of W. */
11300 if (updated_window == NULL)
11302 BLOCK_INPUT;
11303 display_and_set_cursor (w, 1, hpos, vpos, x, y);
11304 if (FRAME_RIF (SELECTED_FRAME ())->flush_display_optional)
11305 FRAME_RIF (SELECTED_FRAME ())->flush_display_optional (SELECTED_FRAME ());
11306 UNBLOCK_INPUT;
11310 #endif /* HAVE_WINDOW_SYSTEM */
11313 /***********************************************************************
11314 Tool-bars
11315 ***********************************************************************/
11317 #ifdef HAVE_WINDOW_SYSTEM
11319 /* Where the mouse was last time we reported a mouse event. */
11321 FRAME_PTR last_mouse_frame;
11323 /* Tool-bar item index of the item on which a mouse button was pressed
11324 or -1. */
11326 int last_tool_bar_item;
11329 static Lisp_Object
11330 update_tool_bar_unwind (Lisp_Object frame)
11332 selected_frame = frame;
11333 return Qnil;
11336 /* Update the tool-bar item list for frame F. This has to be done
11337 before we start to fill in any display lines. Called from
11338 prepare_menu_bars. If SAVE_MATCH_DATA is non-zero, we must save
11339 and restore it here. */
11341 static void
11342 update_tool_bar (struct frame *f, int save_match_data)
11344 #if defined (USE_GTK) || defined (HAVE_NS)
11345 int do_update = FRAME_EXTERNAL_TOOL_BAR (f);
11346 #else
11347 int do_update = WINDOWP (f->tool_bar_window)
11348 && WINDOW_TOTAL_LINES (XWINDOW (f->tool_bar_window)) > 0;
11349 #endif
11351 if (do_update)
11353 Lisp_Object window;
11354 struct window *w;
11356 window = FRAME_SELECTED_WINDOW (f);
11357 w = XWINDOW (window);
11359 /* If the user has switched buffers or windows, we need to
11360 recompute to reflect the new bindings. But we'll
11361 recompute when update_mode_lines is set too; that means
11362 that people can use force-mode-line-update to request
11363 that the menu bar be recomputed. The adverse effect on
11364 the rest of the redisplay algorithm is about the same as
11365 windows_or_buffers_changed anyway. */
11366 if (windows_or_buffers_changed
11367 || w->update_mode_line
11368 || update_mode_lines
11369 || ((BUF_SAVE_MODIFF (XBUFFER (w->buffer))
11370 < BUF_MODIFF (XBUFFER (w->buffer)))
11371 != w->last_had_star)
11372 || ((!NILP (Vtransient_mark_mode)
11373 && !NILP (BVAR (XBUFFER (w->buffer), mark_active)))
11374 != !NILP (w->region_showing)))
11376 struct buffer *prev = current_buffer;
11377 ptrdiff_t count = SPECPDL_INDEX ();
11378 Lisp_Object frame, new_tool_bar;
11379 int new_n_tool_bar;
11380 struct gcpro gcpro1;
11382 /* Set current_buffer to the buffer of the selected
11383 window of the frame, so that we get the right local
11384 keymaps. */
11385 set_buffer_internal_1 (XBUFFER (w->buffer));
11387 /* Save match data, if we must. */
11388 if (save_match_data)
11389 record_unwind_save_match_data ();
11391 /* Make sure that we don't accidentally use bogus keymaps. */
11392 if (NILP (Voverriding_local_map_menu_flag))
11394 specbind (Qoverriding_terminal_local_map, Qnil);
11395 specbind (Qoverriding_local_map, Qnil);
11398 GCPRO1 (new_tool_bar);
11400 /* We must temporarily set the selected frame to this frame
11401 before calling tool_bar_items, because the calculation of
11402 the tool-bar keymap uses the selected frame (see
11403 `tool-bar-make-keymap' in tool-bar.el). */
11404 record_unwind_protect (update_tool_bar_unwind, selected_frame);
11405 XSETFRAME (frame, f);
11406 selected_frame = frame;
11408 /* Build desired tool-bar items from keymaps. */
11409 new_tool_bar = tool_bar_items (Fcopy_sequence (f->tool_bar_items),
11410 &new_n_tool_bar);
11412 /* Redisplay the tool-bar if we changed it. */
11413 if (new_n_tool_bar != f->n_tool_bar_items
11414 || NILP (Fequal (new_tool_bar, f->tool_bar_items)))
11416 /* Redisplay that happens asynchronously due to an expose event
11417 may access f->tool_bar_items. Make sure we update both
11418 variables within BLOCK_INPUT so no such event interrupts. */
11419 BLOCK_INPUT;
11420 f->tool_bar_items = new_tool_bar;
11421 f->n_tool_bar_items = new_n_tool_bar;
11422 w->update_mode_line = 1;
11423 UNBLOCK_INPUT;
11426 UNGCPRO;
11428 unbind_to (count, Qnil);
11429 set_buffer_internal_1 (prev);
11435 /* Set F->desired_tool_bar_string to a Lisp string representing frame
11436 F's desired tool-bar contents. F->tool_bar_items must have
11437 been set up previously by calling prepare_menu_bars. */
11439 static void
11440 build_desired_tool_bar_string (struct frame *f)
11442 int i, size, size_needed;
11443 struct gcpro gcpro1, gcpro2, gcpro3;
11444 Lisp_Object image, plist, props;
11446 image = plist = props = Qnil;
11447 GCPRO3 (image, plist, props);
11449 /* Prepare F->desired_tool_bar_string. If we can reuse it, do so.
11450 Otherwise, make a new string. */
11452 /* The size of the string we might be able to reuse. */
11453 size = (STRINGP (f->desired_tool_bar_string)
11454 ? SCHARS (f->desired_tool_bar_string)
11455 : 0);
11457 /* We need one space in the string for each image. */
11458 size_needed = f->n_tool_bar_items;
11460 /* Reuse f->desired_tool_bar_string, if possible. */
11461 if (size < size_needed || NILP (f->desired_tool_bar_string))
11462 f->desired_tool_bar_string = Fmake_string (make_number (size_needed),
11463 make_number (' '));
11464 else
11466 props = list4 (Qdisplay, Qnil, Qmenu_item, Qnil);
11467 Fremove_text_properties (make_number (0), make_number (size),
11468 props, f->desired_tool_bar_string);
11471 /* Put a `display' property on the string for the images to display,
11472 put a `menu_item' property on tool-bar items with a value that
11473 is the index of the item in F's tool-bar item vector. */
11474 for (i = 0; i < f->n_tool_bar_items; ++i)
11476 #define PROP(IDX) AREF (f->tool_bar_items, i * TOOL_BAR_ITEM_NSLOTS + (IDX))
11478 int enabled_p = !NILP (PROP (TOOL_BAR_ITEM_ENABLED_P));
11479 int selected_p = !NILP (PROP (TOOL_BAR_ITEM_SELECTED_P));
11480 int hmargin, vmargin, relief, idx, end;
11482 /* If image is a vector, choose the image according to the
11483 button state. */
11484 image = PROP (TOOL_BAR_ITEM_IMAGES);
11485 if (VECTORP (image))
11487 if (enabled_p)
11488 idx = (selected_p
11489 ? TOOL_BAR_IMAGE_ENABLED_SELECTED
11490 : TOOL_BAR_IMAGE_ENABLED_DESELECTED);
11491 else
11492 idx = (selected_p
11493 ? TOOL_BAR_IMAGE_DISABLED_SELECTED
11494 : TOOL_BAR_IMAGE_DISABLED_DESELECTED);
11496 xassert (ASIZE (image) >= idx);
11497 image = AREF (image, idx);
11499 else
11500 idx = -1;
11502 /* Ignore invalid image specifications. */
11503 if (!valid_image_p (image))
11504 continue;
11506 /* Display the tool-bar button pressed, or depressed. */
11507 plist = Fcopy_sequence (XCDR (image));
11509 /* Compute margin and relief to draw. */
11510 relief = (tool_bar_button_relief >= 0
11511 ? tool_bar_button_relief
11512 : DEFAULT_TOOL_BAR_BUTTON_RELIEF);
11513 hmargin = vmargin = relief;
11515 if (RANGED_INTEGERP (1, Vtool_bar_button_margin,
11516 INT_MAX - max (hmargin, vmargin)))
11518 hmargin += XFASTINT (Vtool_bar_button_margin);
11519 vmargin += XFASTINT (Vtool_bar_button_margin);
11521 else if (CONSP (Vtool_bar_button_margin))
11523 if (RANGED_INTEGERP (1, XCAR (Vtool_bar_button_margin),
11524 INT_MAX - hmargin))
11525 hmargin += XFASTINT (XCAR (Vtool_bar_button_margin));
11527 if (RANGED_INTEGERP (1, XCDR (Vtool_bar_button_margin),
11528 INT_MAX - vmargin))
11529 vmargin += XFASTINT (XCDR (Vtool_bar_button_margin));
11532 if (auto_raise_tool_bar_buttons_p)
11534 /* Add a `:relief' property to the image spec if the item is
11535 selected. */
11536 if (selected_p)
11538 plist = Fplist_put (plist, QCrelief, make_number (-relief));
11539 hmargin -= relief;
11540 vmargin -= relief;
11543 else
11545 /* If image is selected, display it pressed, i.e. with a
11546 negative relief. If it's not selected, display it with a
11547 raised relief. */
11548 plist = Fplist_put (plist, QCrelief,
11549 (selected_p
11550 ? make_number (-relief)
11551 : make_number (relief)));
11552 hmargin -= relief;
11553 vmargin -= relief;
11556 /* Put a margin around the image. */
11557 if (hmargin || vmargin)
11559 if (hmargin == vmargin)
11560 plist = Fplist_put (plist, QCmargin, make_number (hmargin));
11561 else
11562 plist = Fplist_put (plist, QCmargin,
11563 Fcons (make_number (hmargin),
11564 make_number (vmargin)));
11567 /* If button is not enabled, and we don't have special images
11568 for the disabled state, make the image appear disabled by
11569 applying an appropriate algorithm to it. */
11570 if (!enabled_p && idx < 0)
11571 plist = Fplist_put (plist, QCconversion, Qdisabled);
11573 /* Put a `display' text property on the string for the image to
11574 display. Put a `menu-item' property on the string that gives
11575 the start of this item's properties in the tool-bar items
11576 vector. */
11577 image = Fcons (Qimage, plist);
11578 props = list4 (Qdisplay, image,
11579 Qmenu_item, make_number (i * TOOL_BAR_ITEM_NSLOTS));
11581 /* Let the last image hide all remaining spaces in the tool bar
11582 string. The string can be longer than needed when we reuse a
11583 previous string. */
11584 if (i + 1 == f->n_tool_bar_items)
11585 end = SCHARS (f->desired_tool_bar_string);
11586 else
11587 end = i + 1;
11588 Fadd_text_properties (make_number (i), make_number (end),
11589 props, f->desired_tool_bar_string);
11590 #undef PROP
11593 UNGCPRO;
11597 /* Display one line of the tool-bar of frame IT->f.
11599 HEIGHT specifies the desired height of the tool-bar line.
11600 If the actual height of the glyph row is less than HEIGHT, the
11601 row's height is increased to HEIGHT, and the icons are centered
11602 vertically in the new height.
11604 If HEIGHT is -1, we are counting needed tool-bar lines, so don't
11605 count a final empty row in case the tool-bar width exactly matches
11606 the window width.
11609 static void
11610 display_tool_bar_line (struct it *it, int height)
11612 struct glyph_row *row = it->glyph_row;
11613 int max_x = it->last_visible_x;
11614 struct glyph *last;
11616 prepare_desired_row (row);
11617 row->y = it->current_y;
11619 /* Note that this isn't made use of if the face hasn't a box,
11620 so there's no need to check the face here. */
11621 it->start_of_box_run_p = 1;
11623 while (it->current_x < max_x)
11625 int x, n_glyphs_before, i, nglyphs;
11626 struct it it_before;
11628 /* Get the next display element. */
11629 if (!get_next_display_element (it))
11631 /* Don't count empty row if we are counting needed tool-bar lines. */
11632 if (height < 0 && !it->hpos)
11633 return;
11634 break;
11637 /* Produce glyphs. */
11638 n_glyphs_before = row->used[TEXT_AREA];
11639 it_before = *it;
11641 PRODUCE_GLYPHS (it);
11643 nglyphs = row->used[TEXT_AREA] - n_glyphs_before;
11644 i = 0;
11645 x = it_before.current_x;
11646 while (i < nglyphs)
11648 struct glyph *glyph = row->glyphs[TEXT_AREA] + n_glyphs_before + i;
11650 if (x + glyph->pixel_width > max_x)
11652 /* Glyph doesn't fit on line. Backtrack. */
11653 row->used[TEXT_AREA] = n_glyphs_before;
11654 *it = it_before;
11655 /* If this is the only glyph on this line, it will never fit on the
11656 tool-bar, so skip it. But ensure there is at least one glyph,
11657 so we don't accidentally disable the tool-bar. */
11658 if (n_glyphs_before == 0
11659 && (it->vpos > 0 || IT_STRING_CHARPOS (*it) < it->end_charpos-1))
11660 break;
11661 goto out;
11664 ++it->hpos;
11665 x += glyph->pixel_width;
11666 ++i;
11669 /* Stop at line end. */
11670 if (ITERATOR_AT_END_OF_LINE_P (it))
11671 break;
11673 set_iterator_to_next (it, 1);
11676 out:;
11678 row->displays_text_p = row->used[TEXT_AREA] != 0;
11680 /* Use default face for the border below the tool bar.
11682 FIXME: When auto-resize-tool-bars is grow-only, there is
11683 no additional border below the possibly empty tool-bar lines.
11684 So to make the extra empty lines look "normal", we have to
11685 use the tool-bar face for the border too. */
11686 if (!row->displays_text_p && !EQ (Vauto_resize_tool_bars, Qgrow_only))
11687 it->face_id = DEFAULT_FACE_ID;
11689 extend_face_to_end_of_line (it);
11690 last = row->glyphs[TEXT_AREA] + row->used[TEXT_AREA] - 1;
11691 last->right_box_line_p = 1;
11692 if (last == row->glyphs[TEXT_AREA])
11693 last->left_box_line_p = 1;
11695 /* Make line the desired height and center it vertically. */
11696 if ((height -= it->max_ascent + it->max_descent) > 0)
11698 /* Don't add more than one line height. */
11699 height %= FRAME_LINE_HEIGHT (it->f);
11700 it->max_ascent += height / 2;
11701 it->max_descent += (height + 1) / 2;
11704 compute_line_metrics (it);
11706 /* If line is empty, make it occupy the rest of the tool-bar. */
11707 if (!row->displays_text_p)
11709 row->height = row->phys_height = it->last_visible_y - row->y;
11710 row->visible_height = row->height;
11711 row->ascent = row->phys_ascent = 0;
11712 row->extra_line_spacing = 0;
11715 row->full_width_p = 1;
11716 row->continued_p = 0;
11717 row->truncated_on_left_p = 0;
11718 row->truncated_on_right_p = 0;
11720 it->current_x = it->hpos = 0;
11721 it->current_y += row->height;
11722 ++it->vpos;
11723 ++it->glyph_row;
11727 /* Max tool-bar height. */
11729 #define MAX_FRAME_TOOL_BAR_HEIGHT(f) \
11730 ((FRAME_LINE_HEIGHT (f) * FRAME_LINES (f)))
11732 /* Value is the number of screen lines needed to make all tool-bar
11733 items of frame F visible. The number of actual rows needed is
11734 returned in *N_ROWS if non-NULL. */
11736 static int
11737 tool_bar_lines_needed (struct frame *f, int *n_rows)
11739 struct window *w = XWINDOW (f->tool_bar_window);
11740 struct it it;
11741 /* tool_bar_lines_needed is called from redisplay_tool_bar after building
11742 the desired matrix, so use (unused) mode-line row as temporary row to
11743 avoid destroying the first tool-bar row. */
11744 struct glyph_row *temp_row = MATRIX_MODE_LINE_ROW (w->desired_matrix);
11746 /* Initialize an iterator for iteration over
11747 F->desired_tool_bar_string in the tool-bar window of frame F. */
11748 init_iterator (&it, w, -1, -1, temp_row, TOOL_BAR_FACE_ID);
11749 it.first_visible_x = 0;
11750 it.last_visible_x = FRAME_TOTAL_COLS (f) * FRAME_COLUMN_WIDTH (f);
11751 reseat_to_string (&it, NULL, f->desired_tool_bar_string, 0, 0, 0, -1);
11752 it.paragraph_embedding = L2R;
11754 while (!ITERATOR_AT_END_P (&it))
11756 clear_glyph_row (temp_row);
11757 it.glyph_row = temp_row;
11758 display_tool_bar_line (&it, -1);
11760 clear_glyph_row (temp_row);
11762 /* f->n_tool_bar_rows == 0 means "unknown"; -1 means no tool-bar. */
11763 if (n_rows)
11764 *n_rows = it.vpos > 0 ? it.vpos : -1;
11766 return (it.current_y + FRAME_LINE_HEIGHT (f) - 1) / FRAME_LINE_HEIGHT (f);
11770 DEFUN ("tool-bar-lines-needed", Ftool_bar_lines_needed, Stool_bar_lines_needed,
11771 0, 1, 0,
11772 doc: /* Return the number of lines occupied by the tool bar of FRAME. */)
11773 (Lisp_Object frame)
11775 struct frame *f;
11776 struct window *w;
11777 int nlines = 0;
11779 if (NILP (frame))
11780 frame = selected_frame;
11781 else
11782 CHECK_FRAME (frame);
11783 f = XFRAME (frame);
11785 if (WINDOWP (f->tool_bar_window)
11786 && (w = XWINDOW (f->tool_bar_window),
11787 WINDOW_TOTAL_LINES (w) > 0))
11789 update_tool_bar (f, 1);
11790 if (f->n_tool_bar_items)
11792 build_desired_tool_bar_string (f);
11793 nlines = tool_bar_lines_needed (f, NULL);
11797 return make_number (nlines);
11801 /* Display the tool-bar of frame F. Value is non-zero if tool-bar's
11802 height should be changed. */
11804 static int
11805 redisplay_tool_bar (struct frame *f)
11807 struct window *w;
11808 struct it it;
11809 struct glyph_row *row;
11811 #if defined (USE_GTK) || defined (HAVE_NS)
11812 if (FRAME_EXTERNAL_TOOL_BAR (f))
11813 update_frame_tool_bar (f);
11814 return 0;
11815 #endif
11817 /* If frame hasn't a tool-bar window or if it is zero-height, don't
11818 do anything. This means you must start with tool-bar-lines
11819 non-zero to get the auto-sizing effect. Or in other words, you
11820 can turn off tool-bars by specifying tool-bar-lines zero. */
11821 if (!WINDOWP (f->tool_bar_window)
11822 || (w = XWINDOW (f->tool_bar_window),
11823 WINDOW_TOTAL_LINES (w) == 0))
11824 return 0;
11826 /* Set up an iterator for the tool-bar window. */
11827 init_iterator (&it, w, -1, -1, w->desired_matrix->rows, TOOL_BAR_FACE_ID);
11828 it.first_visible_x = 0;
11829 it.last_visible_x = FRAME_TOTAL_COLS (f) * FRAME_COLUMN_WIDTH (f);
11830 row = it.glyph_row;
11832 /* Build a string that represents the contents of the tool-bar. */
11833 build_desired_tool_bar_string (f);
11834 reseat_to_string (&it, NULL, f->desired_tool_bar_string, 0, 0, 0, -1);
11835 /* FIXME: This should be controlled by a user option. But it
11836 doesn't make sense to have an R2L tool bar if the menu bar cannot
11837 be drawn also R2L, and making the menu bar R2L is tricky due
11838 toolkit-specific code that implements it. If an R2L tool bar is
11839 ever supported, display_tool_bar_line should also be augmented to
11840 call unproduce_glyphs like display_line and display_string
11841 do. */
11842 it.paragraph_embedding = L2R;
11844 if (f->n_tool_bar_rows == 0)
11846 int nlines;
11848 if ((nlines = tool_bar_lines_needed (f, &f->n_tool_bar_rows),
11849 nlines != WINDOW_TOTAL_LINES (w)))
11851 Lisp_Object frame;
11852 int old_height = WINDOW_TOTAL_LINES (w);
11854 XSETFRAME (frame, f);
11855 Fmodify_frame_parameters (frame,
11856 Fcons (Fcons (Qtool_bar_lines,
11857 make_number (nlines)),
11858 Qnil));
11859 if (WINDOW_TOTAL_LINES (w) != old_height)
11861 clear_glyph_matrix (w->desired_matrix);
11862 fonts_changed_p = 1;
11863 return 1;
11868 /* Display as many lines as needed to display all tool-bar items. */
11870 if (f->n_tool_bar_rows > 0)
11872 int border, rows, height, extra;
11874 if (TYPE_RANGED_INTEGERP (int, Vtool_bar_border))
11875 border = XINT (Vtool_bar_border);
11876 else if (EQ (Vtool_bar_border, Qinternal_border_width))
11877 border = FRAME_INTERNAL_BORDER_WIDTH (f);
11878 else if (EQ (Vtool_bar_border, Qborder_width))
11879 border = f->border_width;
11880 else
11881 border = 0;
11882 if (border < 0)
11883 border = 0;
11885 rows = f->n_tool_bar_rows;
11886 height = max (1, (it.last_visible_y - border) / rows);
11887 extra = it.last_visible_y - border - height * rows;
11889 while (it.current_y < it.last_visible_y)
11891 int h = 0;
11892 if (extra > 0 && rows-- > 0)
11894 h = (extra + rows - 1) / rows;
11895 extra -= h;
11897 display_tool_bar_line (&it, height + h);
11900 else
11902 while (it.current_y < it.last_visible_y)
11903 display_tool_bar_line (&it, 0);
11906 /* It doesn't make much sense to try scrolling in the tool-bar
11907 window, so don't do it. */
11908 w->desired_matrix->no_scrolling_p = 1;
11909 w->must_be_updated_p = 1;
11911 if (!NILP (Vauto_resize_tool_bars))
11913 int max_tool_bar_height = MAX_FRAME_TOOL_BAR_HEIGHT (f);
11914 int change_height_p = 0;
11916 /* If we couldn't display everything, change the tool-bar's
11917 height if there is room for more. */
11918 if (IT_STRING_CHARPOS (it) < it.end_charpos
11919 && it.current_y < max_tool_bar_height)
11920 change_height_p = 1;
11922 row = it.glyph_row - 1;
11924 /* If there are blank lines at the end, except for a partially
11925 visible blank line at the end that is smaller than
11926 FRAME_LINE_HEIGHT, change the tool-bar's height. */
11927 if (!row->displays_text_p
11928 && row->height >= FRAME_LINE_HEIGHT (f))
11929 change_height_p = 1;
11931 /* If row displays tool-bar items, but is partially visible,
11932 change the tool-bar's height. */
11933 if (row->displays_text_p
11934 && MATRIX_ROW_BOTTOM_Y (row) > it.last_visible_y
11935 && MATRIX_ROW_BOTTOM_Y (row) < max_tool_bar_height)
11936 change_height_p = 1;
11938 /* Resize windows as needed by changing the `tool-bar-lines'
11939 frame parameter. */
11940 if (change_height_p)
11942 Lisp_Object frame;
11943 int old_height = WINDOW_TOTAL_LINES (w);
11944 int nrows;
11945 int nlines = tool_bar_lines_needed (f, &nrows);
11947 change_height_p = ((EQ (Vauto_resize_tool_bars, Qgrow_only)
11948 && !f->minimize_tool_bar_window_p)
11949 ? (nlines > old_height)
11950 : (nlines != old_height));
11951 f->minimize_tool_bar_window_p = 0;
11953 if (change_height_p)
11955 XSETFRAME (frame, f);
11956 Fmodify_frame_parameters (frame,
11957 Fcons (Fcons (Qtool_bar_lines,
11958 make_number (nlines)),
11959 Qnil));
11960 if (WINDOW_TOTAL_LINES (w) != old_height)
11962 clear_glyph_matrix (w->desired_matrix);
11963 f->n_tool_bar_rows = nrows;
11964 fonts_changed_p = 1;
11965 return 1;
11971 f->minimize_tool_bar_window_p = 0;
11972 return 0;
11976 /* Get information about the tool-bar item which is displayed in GLYPH
11977 on frame F. Return in *PROP_IDX the index where tool-bar item
11978 properties start in F->tool_bar_items. Value is zero if
11979 GLYPH doesn't display a tool-bar item. */
11981 static int
11982 tool_bar_item_info (struct frame *f, struct glyph *glyph, int *prop_idx)
11984 Lisp_Object prop;
11985 int success_p;
11986 int charpos;
11988 /* This function can be called asynchronously, which means we must
11989 exclude any possibility that Fget_text_property signals an
11990 error. */
11991 charpos = min (SCHARS (f->current_tool_bar_string), glyph->charpos);
11992 charpos = max (0, charpos);
11994 /* Get the text property `menu-item' at pos. The value of that
11995 property is the start index of this item's properties in
11996 F->tool_bar_items. */
11997 prop = Fget_text_property (make_number (charpos),
11998 Qmenu_item, f->current_tool_bar_string);
11999 if (INTEGERP (prop))
12001 *prop_idx = XINT (prop);
12002 success_p = 1;
12004 else
12005 success_p = 0;
12007 return success_p;
12011 /* Get information about the tool-bar item at position X/Y on frame F.
12012 Return in *GLYPH a pointer to the glyph of the tool-bar item in
12013 the current matrix of the tool-bar window of F, or NULL if not
12014 on a tool-bar item. Return in *PROP_IDX the index of the tool-bar
12015 item in F->tool_bar_items. Value is
12017 -1 if X/Y is not on a tool-bar item
12018 0 if X/Y is on the same item that was highlighted before.
12019 1 otherwise. */
12021 static int
12022 get_tool_bar_item (struct frame *f, int x, int y, struct glyph **glyph,
12023 int *hpos, int *vpos, int *prop_idx)
12025 Mouse_HLInfo *hlinfo = MOUSE_HL_INFO (f);
12026 struct window *w = XWINDOW (f->tool_bar_window);
12027 int area;
12029 /* Find the glyph under X/Y. */
12030 *glyph = x_y_to_hpos_vpos (w, x, y, hpos, vpos, 0, 0, &area);
12031 if (*glyph == NULL)
12032 return -1;
12034 /* Get the start of this tool-bar item's properties in
12035 f->tool_bar_items. */
12036 if (!tool_bar_item_info (f, *glyph, prop_idx))
12037 return -1;
12039 /* Is mouse on the highlighted item? */
12040 if (EQ (f->tool_bar_window, hlinfo->mouse_face_window)
12041 && *vpos >= hlinfo->mouse_face_beg_row
12042 && *vpos <= hlinfo->mouse_face_end_row
12043 && (*vpos > hlinfo->mouse_face_beg_row
12044 || *hpos >= hlinfo->mouse_face_beg_col)
12045 && (*vpos < hlinfo->mouse_face_end_row
12046 || *hpos < hlinfo->mouse_face_end_col
12047 || hlinfo->mouse_face_past_end))
12048 return 0;
12050 return 1;
12054 /* EXPORT:
12055 Handle mouse button event on the tool-bar of frame F, at
12056 frame-relative coordinates X/Y. DOWN_P is 1 for a button press,
12057 0 for button release. MODIFIERS is event modifiers for button
12058 release. */
12060 void
12061 handle_tool_bar_click (struct frame *f, int x, int y, int down_p,
12062 int modifiers)
12064 Mouse_HLInfo *hlinfo = MOUSE_HL_INFO (f);
12065 struct window *w = XWINDOW (f->tool_bar_window);
12066 int hpos, vpos, prop_idx;
12067 struct glyph *glyph;
12068 Lisp_Object enabled_p;
12070 /* If not on the highlighted tool-bar item, return. */
12071 frame_to_window_pixel_xy (w, &x, &y);
12072 if (get_tool_bar_item (f, x, y, &glyph, &hpos, &vpos, &prop_idx) != 0)
12073 return;
12075 /* If item is disabled, do nothing. */
12076 enabled_p = AREF (f->tool_bar_items, prop_idx + TOOL_BAR_ITEM_ENABLED_P);
12077 if (NILP (enabled_p))
12078 return;
12080 if (down_p)
12082 /* Show item in pressed state. */
12083 show_mouse_face (hlinfo, DRAW_IMAGE_SUNKEN);
12084 hlinfo->mouse_face_image_state = DRAW_IMAGE_SUNKEN;
12085 last_tool_bar_item = prop_idx;
12087 else
12089 Lisp_Object key, frame;
12090 struct input_event event;
12091 EVENT_INIT (event);
12093 /* Show item in released state. */
12094 show_mouse_face (hlinfo, DRAW_IMAGE_RAISED);
12095 hlinfo->mouse_face_image_state = DRAW_IMAGE_RAISED;
12097 key = AREF (f->tool_bar_items, prop_idx + TOOL_BAR_ITEM_KEY);
12099 XSETFRAME (frame, f);
12100 event.kind = TOOL_BAR_EVENT;
12101 event.frame_or_window = frame;
12102 event.arg = frame;
12103 kbd_buffer_store_event (&event);
12105 event.kind = TOOL_BAR_EVENT;
12106 event.frame_or_window = frame;
12107 event.arg = key;
12108 event.modifiers = modifiers;
12109 kbd_buffer_store_event (&event);
12110 last_tool_bar_item = -1;
12115 /* Possibly highlight a tool-bar item on frame F when mouse moves to
12116 tool-bar window-relative coordinates X/Y. Called from
12117 note_mouse_highlight. */
12119 static void
12120 note_tool_bar_highlight (struct frame *f, int x, int y)
12122 Lisp_Object window = f->tool_bar_window;
12123 struct window *w = XWINDOW (window);
12124 Display_Info *dpyinfo = FRAME_X_DISPLAY_INFO (f);
12125 Mouse_HLInfo *hlinfo = MOUSE_HL_INFO (f);
12126 int hpos, vpos;
12127 struct glyph *glyph;
12128 struct glyph_row *row;
12129 int i;
12130 Lisp_Object enabled_p;
12131 int prop_idx;
12132 enum draw_glyphs_face draw = DRAW_IMAGE_RAISED;
12133 int mouse_down_p, rc;
12135 /* Function note_mouse_highlight is called with negative X/Y
12136 values when mouse moves outside of the frame. */
12137 if (x <= 0 || y <= 0)
12139 clear_mouse_face (hlinfo);
12140 return;
12143 rc = get_tool_bar_item (f, x, y, &glyph, &hpos, &vpos, &prop_idx);
12144 if (rc < 0)
12146 /* Not on tool-bar item. */
12147 clear_mouse_face (hlinfo);
12148 return;
12150 else if (rc == 0)
12151 /* On same tool-bar item as before. */
12152 goto set_help_echo;
12154 clear_mouse_face (hlinfo);
12156 /* Mouse is down, but on different tool-bar item? */
12157 mouse_down_p = (dpyinfo->grabbed
12158 && f == last_mouse_frame
12159 && FRAME_LIVE_P (f));
12160 if (mouse_down_p
12161 && last_tool_bar_item != prop_idx)
12162 return;
12164 hlinfo->mouse_face_image_state = DRAW_NORMAL_TEXT;
12165 draw = mouse_down_p ? DRAW_IMAGE_SUNKEN : DRAW_IMAGE_RAISED;
12167 /* If tool-bar item is not enabled, don't highlight it. */
12168 enabled_p = AREF (f->tool_bar_items, prop_idx + TOOL_BAR_ITEM_ENABLED_P);
12169 if (!NILP (enabled_p))
12171 /* Compute the x-position of the glyph. In front and past the
12172 image is a space. We include this in the highlighted area. */
12173 row = MATRIX_ROW (w->current_matrix, vpos);
12174 for (i = x = 0; i < hpos; ++i)
12175 x += row->glyphs[TEXT_AREA][i].pixel_width;
12177 /* Record this as the current active region. */
12178 hlinfo->mouse_face_beg_col = hpos;
12179 hlinfo->mouse_face_beg_row = vpos;
12180 hlinfo->mouse_face_beg_x = x;
12181 hlinfo->mouse_face_beg_y = row->y;
12182 hlinfo->mouse_face_past_end = 0;
12184 hlinfo->mouse_face_end_col = hpos + 1;
12185 hlinfo->mouse_face_end_row = vpos;
12186 hlinfo->mouse_face_end_x = x + glyph->pixel_width;
12187 hlinfo->mouse_face_end_y = row->y;
12188 hlinfo->mouse_face_window = window;
12189 hlinfo->mouse_face_face_id = TOOL_BAR_FACE_ID;
12191 /* Display it as active. */
12192 show_mouse_face (hlinfo, draw);
12193 hlinfo->mouse_face_image_state = draw;
12196 set_help_echo:
12198 /* Set help_echo_string to a help string to display for this tool-bar item.
12199 XTread_socket does the rest. */
12200 help_echo_object = help_echo_window = Qnil;
12201 help_echo_pos = -1;
12202 help_echo_string = AREF (f->tool_bar_items, prop_idx + TOOL_BAR_ITEM_HELP);
12203 if (NILP (help_echo_string))
12204 help_echo_string = AREF (f->tool_bar_items, prop_idx + TOOL_BAR_ITEM_CAPTION);
12207 #endif /* HAVE_WINDOW_SYSTEM */
12211 /************************************************************************
12212 Horizontal scrolling
12213 ************************************************************************/
12215 static int hscroll_window_tree (Lisp_Object);
12216 static int hscroll_windows (Lisp_Object);
12218 /* For all leaf windows in the window tree rooted at WINDOW, set their
12219 hscroll value so that PT is (i) visible in the window, and (ii) so
12220 that it is not within a certain margin at the window's left and
12221 right border. Value is non-zero if any window's hscroll has been
12222 changed. */
12224 static int
12225 hscroll_window_tree (Lisp_Object window)
12227 int hscrolled_p = 0;
12228 int hscroll_relative_p = FLOATP (Vhscroll_step);
12229 int hscroll_step_abs = 0;
12230 double hscroll_step_rel = 0;
12232 if (hscroll_relative_p)
12234 hscroll_step_rel = XFLOAT_DATA (Vhscroll_step);
12235 if (hscroll_step_rel < 0)
12237 hscroll_relative_p = 0;
12238 hscroll_step_abs = 0;
12241 else if (TYPE_RANGED_INTEGERP (int, Vhscroll_step))
12243 hscroll_step_abs = XINT (Vhscroll_step);
12244 if (hscroll_step_abs < 0)
12245 hscroll_step_abs = 0;
12247 else
12248 hscroll_step_abs = 0;
12250 while (WINDOWP (window))
12252 struct window *w = XWINDOW (window);
12254 if (WINDOWP (w->hchild))
12255 hscrolled_p |= hscroll_window_tree (w->hchild);
12256 else if (WINDOWP (w->vchild))
12257 hscrolled_p |= hscroll_window_tree (w->vchild);
12258 else if (w->cursor.vpos >= 0)
12260 int h_margin;
12261 int text_area_width;
12262 struct glyph_row *current_cursor_row
12263 = MATRIX_ROW (w->current_matrix, w->cursor.vpos);
12264 struct glyph_row *desired_cursor_row
12265 = MATRIX_ROW (w->desired_matrix, w->cursor.vpos);
12266 struct glyph_row *cursor_row
12267 = (desired_cursor_row->enabled_p
12268 ? desired_cursor_row
12269 : current_cursor_row);
12270 int row_r2l_p = cursor_row->reversed_p;
12272 text_area_width = window_box_width (w, TEXT_AREA);
12274 /* Scroll when cursor is inside this scroll margin. */
12275 h_margin = hscroll_margin * WINDOW_FRAME_COLUMN_WIDTH (w);
12277 if (!NILP (Fbuffer_local_value (Qauto_hscroll_mode, w->buffer))
12278 /* For left-to-right rows, hscroll when cursor is either
12279 (i) inside the right hscroll margin, or (ii) if it is
12280 inside the left margin and the window is already
12281 hscrolled. */
12282 && ((!row_r2l_p
12283 && ((XFASTINT (w->hscroll)
12284 && w->cursor.x <= h_margin)
12285 || (cursor_row->enabled_p
12286 && cursor_row->truncated_on_right_p
12287 && (w->cursor.x >= text_area_width - h_margin))))
12288 /* For right-to-left rows, the logic is similar,
12289 except that rules for scrolling to left and right
12290 are reversed. E.g., if cursor.x <= h_margin, we
12291 need to hscroll "to the right" unconditionally,
12292 and that will scroll the screen to the left so as
12293 to reveal the next portion of the row. */
12294 || (row_r2l_p
12295 && ((cursor_row->enabled_p
12296 /* FIXME: It is confusing to set the
12297 truncated_on_right_p flag when R2L rows
12298 are actually truncated on the left. */
12299 && cursor_row->truncated_on_right_p
12300 && w->cursor.x <= h_margin)
12301 || (XFASTINT (w->hscroll)
12302 && (w->cursor.x >= text_area_width - h_margin))))))
12304 struct it it;
12305 ptrdiff_t hscroll;
12306 struct buffer *saved_current_buffer;
12307 ptrdiff_t pt;
12308 int wanted_x;
12310 /* Find point in a display of infinite width. */
12311 saved_current_buffer = current_buffer;
12312 current_buffer = XBUFFER (w->buffer);
12314 if (w == XWINDOW (selected_window))
12315 pt = PT;
12316 else
12318 pt = marker_position (w->pointm);
12319 pt = max (BEGV, pt);
12320 pt = min (ZV, pt);
12323 /* Move iterator to pt starting at cursor_row->start in
12324 a line with infinite width. */
12325 init_to_row_start (&it, w, cursor_row);
12326 it.last_visible_x = INFINITY;
12327 move_it_in_display_line_to (&it, pt, -1, MOVE_TO_POS);
12328 current_buffer = saved_current_buffer;
12330 /* Position cursor in window. */
12331 if (!hscroll_relative_p && hscroll_step_abs == 0)
12332 hscroll = max (0, (it.current_x
12333 - (ITERATOR_AT_END_OF_LINE_P (&it)
12334 ? (text_area_width - 4 * FRAME_COLUMN_WIDTH (it.f))
12335 : (text_area_width / 2))))
12336 / FRAME_COLUMN_WIDTH (it.f);
12337 else if ((!row_r2l_p
12338 && w->cursor.x >= text_area_width - h_margin)
12339 || (row_r2l_p && w->cursor.x <= h_margin))
12341 if (hscroll_relative_p)
12342 wanted_x = text_area_width * (1 - hscroll_step_rel)
12343 - h_margin;
12344 else
12345 wanted_x = text_area_width
12346 - hscroll_step_abs * FRAME_COLUMN_WIDTH (it.f)
12347 - h_margin;
12348 hscroll
12349 = max (0, it.current_x - wanted_x) / FRAME_COLUMN_WIDTH (it.f);
12351 else
12353 if (hscroll_relative_p)
12354 wanted_x = text_area_width * hscroll_step_rel
12355 + h_margin;
12356 else
12357 wanted_x = hscroll_step_abs * FRAME_COLUMN_WIDTH (it.f)
12358 + h_margin;
12359 hscroll
12360 = max (0, it.current_x - wanted_x) / FRAME_COLUMN_WIDTH (it.f);
12362 hscroll = max (hscroll, XFASTINT (w->min_hscroll));
12364 /* Don't prevent redisplay optimizations if hscroll
12365 hasn't changed, as it will unnecessarily slow down
12366 redisplay. */
12367 if (XFASTINT (w->hscroll) != hscroll)
12369 XBUFFER (w->buffer)->prevent_redisplay_optimizations_p = 1;
12370 w->hscroll = make_number (hscroll);
12371 hscrolled_p = 1;
12376 window = w->next;
12379 /* Value is non-zero if hscroll of any leaf window has been changed. */
12380 return hscrolled_p;
12384 /* Set hscroll so that cursor is visible and not inside horizontal
12385 scroll margins for all windows in the tree rooted at WINDOW. See
12386 also hscroll_window_tree above. Value is non-zero if any window's
12387 hscroll has been changed. If it has, desired matrices on the frame
12388 of WINDOW are cleared. */
12390 static int
12391 hscroll_windows (Lisp_Object window)
12393 int hscrolled_p = hscroll_window_tree (window);
12394 if (hscrolled_p)
12395 clear_desired_matrices (XFRAME (WINDOW_FRAME (XWINDOW (window))));
12396 return hscrolled_p;
12401 /************************************************************************
12402 Redisplay
12403 ************************************************************************/
12405 /* Variables holding some state of redisplay if GLYPH_DEBUG is defined
12406 to a non-zero value. This is sometimes handy to have in a debugger
12407 session. */
12409 #if GLYPH_DEBUG
12411 /* First and last unchanged row for try_window_id. */
12413 static int debug_first_unchanged_at_end_vpos;
12414 static int debug_last_unchanged_at_beg_vpos;
12416 /* Delta vpos and y. */
12418 static int debug_dvpos, debug_dy;
12420 /* Delta in characters and bytes for try_window_id. */
12422 static ptrdiff_t debug_delta, debug_delta_bytes;
12424 /* Values of window_end_pos and window_end_vpos at the end of
12425 try_window_id. */
12427 static ptrdiff_t debug_end_vpos;
12429 /* Append a string to W->desired_matrix->method. FMT is a printf
12430 format string. If trace_redisplay_p is non-zero also printf the
12431 resulting string to stderr. */
12433 static void debug_method_add (struct window *, char const *, ...)
12434 ATTRIBUTE_FORMAT_PRINTF (2, 3);
12436 static void
12437 debug_method_add (struct window *w, char const *fmt, ...)
12439 char buffer[512];
12440 char *method = w->desired_matrix->method;
12441 int len = strlen (method);
12442 int size = sizeof w->desired_matrix->method;
12443 int remaining = size - len - 1;
12444 va_list ap;
12446 va_start (ap, fmt);
12447 vsprintf (buffer, fmt, ap);
12448 va_end (ap);
12449 if (len && remaining)
12451 method[len] = '|';
12452 --remaining, ++len;
12455 strncpy (method + len, buffer, remaining);
12457 if (trace_redisplay_p)
12458 fprintf (stderr, "%p (%s): %s\n",
12460 ((BUFFERP (w->buffer)
12461 && STRINGP (BVAR (XBUFFER (w->buffer), name)))
12462 ? SSDATA (BVAR (XBUFFER (w->buffer), name))
12463 : "no buffer"),
12464 buffer);
12467 #endif /* GLYPH_DEBUG */
12470 /* Value is non-zero if all changes in window W, which displays
12471 current_buffer, are in the text between START and END. START is a
12472 buffer position, END is given as a distance from Z. Used in
12473 redisplay_internal for display optimization. */
12475 static inline int
12476 text_outside_line_unchanged_p (struct window *w,
12477 ptrdiff_t start, ptrdiff_t end)
12479 int unchanged_p = 1;
12481 /* If text or overlays have changed, see where. */
12482 if (XFASTINT (w->last_modified) < MODIFF
12483 || XFASTINT (w->last_overlay_modified) < OVERLAY_MODIFF)
12485 /* Gap in the line? */
12486 if (GPT < start || Z - GPT < end)
12487 unchanged_p = 0;
12489 /* Changes start in front of the line, or end after it? */
12490 if (unchanged_p
12491 && (BEG_UNCHANGED < start - 1
12492 || END_UNCHANGED < end))
12493 unchanged_p = 0;
12495 /* If selective display, can't optimize if changes start at the
12496 beginning of the line. */
12497 if (unchanged_p
12498 && INTEGERP (BVAR (current_buffer, selective_display))
12499 && XINT (BVAR (current_buffer, selective_display)) > 0
12500 && (BEG_UNCHANGED < start || GPT <= start))
12501 unchanged_p = 0;
12503 /* If there are overlays at the start or end of the line, these
12504 may have overlay strings with newlines in them. A change at
12505 START, for instance, may actually concern the display of such
12506 overlay strings as well, and they are displayed on different
12507 lines. So, quickly rule out this case. (For the future, it
12508 might be desirable to implement something more telling than
12509 just BEG/END_UNCHANGED.) */
12510 if (unchanged_p)
12512 if (BEG + BEG_UNCHANGED == start
12513 && overlay_touches_p (start))
12514 unchanged_p = 0;
12515 if (END_UNCHANGED == end
12516 && overlay_touches_p (Z - end))
12517 unchanged_p = 0;
12520 /* Under bidi reordering, adding or deleting a character in the
12521 beginning of a paragraph, before the first strong directional
12522 character, can change the base direction of the paragraph (unless
12523 the buffer specifies a fixed paragraph direction), which will
12524 require to redisplay the whole paragraph. It might be worthwhile
12525 to find the paragraph limits and widen the range of redisplayed
12526 lines to that, but for now just give up this optimization. */
12527 if (!NILP (BVAR (XBUFFER (w->buffer), bidi_display_reordering))
12528 && NILP (BVAR (XBUFFER (w->buffer), bidi_paragraph_direction)))
12529 unchanged_p = 0;
12532 return unchanged_p;
12536 /* Do a frame update, taking possible shortcuts into account. This is
12537 the main external entry point for redisplay.
12539 If the last redisplay displayed an echo area message and that message
12540 is no longer requested, we clear the echo area or bring back the
12541 mini-buffer if that is in use. */
12543 void
12544 redisplay (void)
12546 redisplay_internal ();
12550 static Lisp_Object
12551 overlay_arrow_string_or_property (Lisp_Object var)
12553 Lisp_Object val;
12555 if (val = Fget (var, Qoverlay_arrow_string), STRINGP (val))
12556 return val;
12558 return Voverlay_arrow_string;
12561 /* Return 1 if there are any overlay-arrows in current_buffer. */
12562 static int
12563 overlay_arrow_in_current_buffer_p (void)
12565 Lisp_Object vlist;
12567 for (vlist = Voverlay_arrow_variable_list;
12568 CONSP (vlist);
12569 vlist = XCDR (vlist))
12571 Lisp_Object var = XCAR (vlist);
12572 Lisp_Object val;
12574 if (!SYMBOLP (var))
12575 continue;
12576 val = find_symbol_value (var);
12577 if (MARKERP (val)
12578 && current_buffer == XMARKER (val)->buffer)
12579 return 1;
12581 return 0;
12585 /* Return 1 if any overlay_arrows have moved or overlay-arrow-string
12586 has changed. */
12588 static int
12589 overlay_arrows_changed_p (void)
12591 Lisp_Object vlist;
12593 for (vlist = Voverlay_arrow_variable_list;
12594 CONSP (vlist);
12595 vlist = XCDR (vlist))
12597 Lisp_Object var = XCAR (vlist);
12598 Lisp_Object val, pstr;
12600 if (!SYMBOLP (var))
12601 continue;
12602 val = find_symbol_value (var);
12603 if (!MARKERP (val))
12604 continue;
12605 if (! EQ (COERCE_MARKER (val),
12606 Fget (var, Qlast_arrow_position))
12607 || ! (pstr = overlay_arrow_string_or_property (var),
12608 EQ (pstr, Fget (var, Qlast_arrow_string))))
12609 return 1;
12611 return 0;
12614 /* Mark overlay arrows to be updated on next redisplay. */
12616 static void
12617 update_overlay_arrows (int up_to_date)
12619 Lisp_Object vlist;
12621 for (vlist = Voverlay_arrow_variable_list;
12622 CONSP (vlist);
12623 vlist = XCDR (vlist))
12625 Lisp_Object var = XCAR (vlist);
12627 if (!SYMBOLP (var))
12628 continue;
12630 if (up_to_date > 0)
12632 Lisp_Object val = find_symbol_value (var);
12633 Fput (var, Qlast_arrow_position,
12634 COERCE_MARKER (val));
12635 Fput (var, Qlast_arrow_string,
12636 overlay_arrow_string_or_property (var));
12638 else if (up_to_date < 0
12639 || !NILP (Fget (var, Qlast_arrow_position)))
12641 Fput (var, Qlast_arrow_position, Qt);
12642 Fput (var, Qlast_arrow_string, Qt);
12648 /* Return overlay arrow string to display at row.
12649 Return integer (bitmap number) for arrow bitmap in left fringe.
12650 Return nil if no overlay arrow. */
12652 static Lisp_Object
12653 overlay_arrow_at_row (struct it *it, struct glyph_row *row)
12655 Lisp_Object vlist;
12657 for (vlist = Voverlay_arrow_variable_list;
12658 CONSP (vlist);
12659 vlist = XCDR (vlist))
12661 Lisp_Object var = XCAR (vlist);
12662 Lisp_Object val;
12664 if (!SYMBOLP (var))
12665 continue;
12667 val = find_symbol_value (var);
12669 if (MARKERP (val)
12670 && current_buffer == XMARKER (val)->buffer
12671 && (MATRIX_ROW_START_CHARPOS (row) == marker_position (val)))
12673 if (FRAME_WINDOW_P (it->f)
12674 /* FIXME: if ROW->reversed_p is set, this should test
12675 the right fringe, not the left one. */
12676 && WINDOW_LEFT_FRINGE_WIDTH (it->w) > 0)
12678 #ifdef HAVE_WINDOW_SYSTEM
12679 if (val = Fget (var, Qoverlay_arrow_bitmap), SYMBOLP (val))
12681 int fringe_bitmap;
12682 if ((fringe_bitmap = lookup_fringe_bitmap (val)) != 0)
12683 return make_number (fringe_bitmap);
12685 #endif
12686 return make_number (-1); /* Use default arrow bitmap */
12688 return overlay_arrow_string_or_property (var);
12692 return Qnil;
12695 /* Return 1 if point moved out of or into a composition. Otherwise
12696 return 0. PREV_BUF and PREV_PT are the last point buffer and
12697 position. BUF and PT are the current point buffer and position. */
12699 static int
12700 check_point_in_composition (struct buffer *prev_buf, ptrdiff_t prev_pt,
12701 struct buffer *buf, ptrdiff_t pt)
12703 ptrdiff_t start, end;
12704 Lisp_Object prop;
12705 Lisp_Object buffer;
12707 XSETBUFFER (buffer, buf);
12708 /* Check a composition at the last point if point moved within the
12709 same buffer. */
12710 if (prev_buf == buf)
12712 if (prev_pt == pt)
12713 /* Point didn't move. */
12714 return 0;
12716 if (prev_pt > BUF_BEGV (buf) && prev_pt < BUF_ZV (buf)
12717 && find_composition (prev_pt, -1, &start, &end, &prop, buffer)
12718 && COMPOSITION_VALID_P (start, end, prop)
12719 && start < prev_pt && end > prev_pt)
12720 /* The last point was within the composition. Return 1 iff
12721 point moved out of the composition. */
12722 return (pt <= start || pt >= end);
12725 /* Check a composition at the current point. */
12726 return (pt > BUF_BEGV (buf) && pt < BUF_ZV (buf)
12727 && find_composition (pt, -1, &start, &end, &prop, buffer)
12728 && COMPOSITION_VALID_P (start, end, prop)
12729 && start < pt && end > pt);
12733 /* Reconsider the setting of B->clip_changed which is displayed
12734 in window W. */
12736 static inline void
12737 reconsider_clip_changes (struct window *w, struct buffer *b)
12739 if (b->clip_changed
12740 && !NILP (w->window_end_valid)
12741 && w->current_matrix->buffer == b
12742 && w->current_matrix->zv == BUF_ZV (b)
12743 && w->current_matrix->begv == BUF_BEGV (b))
12744 b->clip_changed = 0;
12746 /* If display wasn't paused, and W is not a tool bar window, see if
12747 point has been moved into or out of a composition. In that case,
12748 we set b->clip_changed to 1 to force updating the screen. If
12749 b->clip_changed has already been set to 1, we can skip this
12750 check. */
12751 if (!b->clip_changed
12752 && BUFFERP (w->buffer) && !NILP (w->window_end_valid))
12754 ptrdiff_t pt;
12756 if (w == XWINDOW (selected_window))
12757 pt = PT;
12758 else
12759 pt = marker_position (w->pointm);
12761 if ((w->current_matrix->buffer != XBUFFER (w->buffer)
12762 || pt != XINT (w->last_point))
12763 && check_point_in_composition (w->current_matrix->buffer,
12764 XINT (w->last_point),
12765 XBUFFER (w->buffer), pt))
12766 b->clip_changed = 1;
12771 /* Select FRAME to forward the values of frame-local variables into C
12772 variables so that the redisplay routines can access those values
12773 directly. */
12775 static void
12776 select_frame_for_redisplay (Lisp_Object frame)
12778 Lisp_Object tail, tem;
12779 Lisp_Object old = selected_frame;
12780 struct Lisp_Symbol *sym;
12782 xassert (FRAMEP (frame) && FRAME_LIVE_P (XFRAME (frame)));
12784 selected_frame = frame;
12786 do {
12787 for (tail = XFRAME (frame)->param_alist; CONSP (tail); tail = XCDR (tail))
12788 if (CONSP (XCAR (tail))
12789 && (tem = XCAR (XCAR (tail)),
12790 SYMBOLP (tem))
12791 && (sym = indirect_variable (XSYMBOL (tem)),
12792 sym->redirect == SYMBOL_LOCALIZED)
12793 && sym->val.blv->frame_local)
12794 /* Use find_symbol_value rather than Fsymbol_value
12795 to avoid an error if it is void. */
12796 find_symbol_value (tem);
12797 } while (!EQ (frame, old) && (frame = old, 1));
12801 #define STOP_POLLING \
12802 do { if (! polling_stopped_here) stop_polling (); \
12803 polling_stopped_here = 1; } while (0)
12805 #define RESUME_POLLING \
12806 do { if (polling_stopped_here) start_polling (); \
12807 polling_stopped_here = 0; } while (0)
12810 /* Perhaps in the future avoid recentering windows if it
12811 is not necessary; currently that causes some problems. */
12813 static void
12814 redisplay_internal (void)
12816 struct window *w = XWINDOW (selected_window);
12817 struct window *sw;
12818 struct frame *fr;
12819 int pending;
12820 int must_finish = 0;
12821 struct text_pos tlbufpos, tlendpos;
12822 int number_of_visible_frames;
12823 ptrdiff_t count, count1;
12824 struct frame *sf;
12825 int polling_stopped_here = 0;
12826 Lisp_Object old_frame = selected_frame;
12828 /* Non-zero means redisplay has to consider all windows on all
12829 frames. Zero means, only selected_window is considered. */
12830 int consider_all_windows_p;
12832 /* Non-zero means redisplay has to redisplay the miniwindow */
12833 int update_miniwindow_p = 0;
12835 TRACE ((stderr, "redisplay_internal %d\n", redisplaying_p));
12837 /* No redisplay if running in batch mode or frame is not yet fully
12838 initialized, or redisplay is explicitly turned off by setting
12839 Vinhibit_redisplay. */
12840 if (FRAME_INITIAL_P (SELECTED_FRAME ())
12841 || !NILP (Vinhibit_redisplay))
12842 return;
12844 /* Don't examine these until after testing Vinhibit_redisplay.
12845 When Emacs is shutting down, perhaps because its connection to
12846 X has dropped, we should not look at them at all. */
12847 fr = XFRAME (w->frame);
12848 sf = SELECTED_FRAME ();
12850 if (!fr->glyphs_initialized_p)
12851 return;
12853 #if defined (USE_X_TOOLKIT) || defined (USE_GTK) || defined (HAVE_NS)
12854 if (popup_activated ())
12855 return;
12856 #endif
12858 /* I don't think this happens but let's be paranoid. */
12859 if (redisplaying_p)
12860 return;
12862 /* Record a function that resets redisplaying_p to its old value
12863 when we leave this function. */
12864 count = SPECPDL_INDEX ();
12865 record_unwind_protect (unwind_redisplay,
12866 Fcons (make_number (redisplaying_p), selected_frame));
12867 ++redisplaying_p;
12868 specbind (Qinhibit_free_realized_faces, Qnil);
12871 Lisp_Object tail, frame;
12873 FOR_EACH_FRAME (tail, frame)
12875 struct frame *f = XFRAME (frame);
12876 f->already_hscrolled_p = 0;
12880 retry:
12881 /* Remember the currently selected window. */
12882 sw = w;
12884 if (!EQ (old_frame, selected_frame)
12885 && FRAME_LIVE_P (XFRAME (old_frame)))
12886 /* When running redisplay, we play a bit fast-and-loose and allow e.g.
12887 selected_frame and selected_window to be temporarily out-of-sync so
12888 when we come back here via `goto retry', we need to resync because we
12889 may need to run Elisp code (via prepare_menu_bars). */
12890 select_frame_for_redisplay (old_frame);
12892 pending = 0;
12893 reconsider_clip_changes (w, current_buffer);
12894 last_escape_glyph_frame = NULL;
12895 last_escape_glyph_face_id = (1 << FACE_ID_BITS);
12896 last_glyphless_glyph_frame = NULL;
12897 last_glyphless_glyph_face_id = (1 << FACE_ID_BITS);
12899 /* If new fonts have been loaded that make a glyph matrix adjustment
12900 necessary, do it. */
12901 if (fonts_changed_p)
12903 adjust_glyphs (NULL);
12904 ++windows_or_buffers_changed;
12905 fonts_changed_p = 0;
12908 /* If face_change_count is non-zero, init_iterator will free all
12909 realized faces, which includes the faces referenced from current
12910 matrices. So, we can't reuse current matrices in this case. */
12911 if (face_change_count)
12912 ++windows_or_buffers_changed;
12914 if ((FRAME_TERMCAP_P (sf) || FRAME_MSDOS_P (sf))
12915 && FRAME_TTY (sf)->previous_frame != sf)
12917 /* Since frames on a single ASCII terminal share the same
12918 display area, displaying a different frame means redisplay
12919 the whole thing. */
12920 windows_or_buffers_changed++;
12921 SET_FRAME_GARBAGED (sf);
12922 #ifndef DOS_NT
12923 set_tty_color_mode (FRAME_TTY (sf), sf);
12924 #endif
12925 FRAME_TTY (sf)->previous_frame = sf;
12928 /* Set the visible flags for all frames. Do this before checking
12929 for resized or garbaged frames; they want to know if their frames
12930 are visible. See the comment in frame.h for
12931 FRAME_SAMPLE_VISIBILITY. */
12933 Lisp_Object tail, frame;
12935 number_of_visible_frames = 0;
12937 FOR_EACH_FRAME (tail, frame)
12939 struct frame *f = XFRAME (frame);
12941 FRAME_SAMPLE_VISIBILITY (f);
12942 if (FRAME_VISIBLE_P (f))
12943 ++number_of_visible_frames;
12944 clear_desired_matrices (f);
12948 /* Notice any pending interrupt request to change frame size. */
12949 do_pending_window_change (1);
12951 /* do_pending_window_change could change the selected_window due to
12952 frame resizing which makes the selected window too small. */
12953 if (WINDOWP (selected_window) && (w = XWINDOW (selected_window)) != sw)
12955 sw = w;
12956 reconsider_clip_changes (w, current_buffer);
12959 /* Clear frames marked as garbaged. */
12960 if (frame_garbaged)
12961 clear_garbaged_frames ();
12963 /* Build menubar and tool-bar items. */
12964 if (NILP (Vmemory_full))
12965 prepare_menu_bars ();
12967 if (windows_or_buffers_changed)
12968 update_mode_lines++;
12970 /* Detect case that we need to write or remove a star in the mode line. */
12971 if ((SAVE_MODIFF < MODIFF) != w->last_had_star)
12973 w->update_mode_line = 1;
12974 if (buffer_shared > 1)
12975 update_mode_lines++;
12978 /* Avoid invocation of point motion hooks by `current_column' below. */
12979 count1 = SPECPDL_INDEX ();
12980 specbind (Qinhibit_point_motion_hooks, Qt);
12982 /* If %c is in the mode line, update it if needed. */
12983 if (!NILP (w->column_number_displayed)
12984 /* This alternative quickly identifies a common case
12985 where no change is needed. */
12986 && !(PT == XFASTINT (w->last_point)
12987 && XFASTINT (w->last_modified) >= MODIFF
12988 && XFASTINT (w->last_overlay_modified) >= OVERLAY_MODIFF)
12989 && (XFASTINT (w->column_number_displayed) != current_column ()))
12990 w->update_mode_line = 1;
12992 unbind_to (count1, Qnil);
12994 FRAME_SCROLL_BOTTOM_VPOS (XFRAME (w->frame)) = -1;
12996 /* The variable buffer_shared is set in redisplay_window and
12997 indicates that we redisplay a buffer in different windows. See
12998 there. */
12999 consider_all_windows_p = (update_mode_lines || buffer_shared > 1
13000 || cursor_type_changed);
13002 /* If specs for an arrow have changed, do thorough redisplay
13003 to ensure we remove any arrow that should no longer exist. */
13004 if (overlay_arrows_changed_p ())
13005 consider_all_windows_p = windows_or_buffers_changed = 1;
13007 /* Normally the message* functions will have already displayed and
13008 updated the echo area, but the frame may have been trashed, or
13009 the update may have been preempted, so display the echo area
13010 again here. Checking message_cleared_p captures the case that
13011 the echo area should be cleared. */
13012 if ((!NILP (echo_area_buffer[0]) && !display_last_displayed_message_p)
13013 || (!NILP (echo_area_buffer[1]) && display_last_displayed_message_p)
13014 || (message_cleared_p
13015 && minibuf_level == 0
13016 /* If the mini-window is currently selected, this means the
13017 echo-area doesn't show through. */
13018 && !MINI_WINDOW_P (XWINDOW (selected_window))))
13020 int window_height_changed_p = echo_area_display (0);
13022 if (message_cleared_p)
13023 update_miniwindow_p = 1;
13025 must_finish = 1;
13027 /* If we don't display the current message, don't clear the
13028 message_cleared_p flag, because, if we did, we wouldn't clear
13029 the echo area in the next redisplay which doesn't preserve
13030 the echo area. */
13031 if (!display_last_displayed_message_p)
13032 message_cleared_p = 0;
13034 if (fonts_changed_p)
13035 goto retry;
13036 else if (window_height_changed_p)
13038 consider_all_windows_p = 1;
13039 ++update_mode_lines;
13040 ++windows_or_buffers_changed;
13042 /* If window configuration was changed, frames may have been
13043 marked garbaged. Clear them or we will experience
13044 surprises wrt scrolling. */
13045 if (frame_garbaged)
13046 clear_garbaged_frames ();
13049 else if (EQ (selected_window, minibuf_window)
13050 && (current_buffer->clip_changed
13051 || XFASTINT (w->last_modified) < MODIFF
13052 || XFASTINT (w->last_overlay_modified) < OVERLAY_MODIFF)
13053 && resize_mini_window (w, 0))
13055 /* Resized active mini-window to fit the size of what it is
13056 showing if its contents might have changed. */
13057 must_finish = 1;
13058 /* FIXME: this causes all frames to be updated, which seems unnecessary
13059 since only the current frame needs to be considered. This function needs
13060 to be rewritten with two variables, consider_all_windows and
13061 consider_all_frames. */
13062 consider_all_windows_p = 1;
13063 ++windows_or_buffers_changed;
13064 ++update_mode_lines;
13066 /* If window configuration was changed, frames may have been
13067 marked garbaged. Clear them or we will experience
13068 surprises wrt scrolling. */
13069 if (frame_garbaged)
13070 clear_garbaged_frames ();
13074 /* If showing the region, and mark has changed, we must redisplay
13075 the whole window. The assignment to this_line_start_pos prevents
13076 the optimization directly below this if-statement. */
13077 if (((!NILP (Vtransient_mark_mode)
13078 && !NILP (BVAR (XBUFFER (w->buffer), mark_active)))
13079 != !NILP (w->region_showing))
13080 || (!NILP (w->region_showing)
13081 && !EQ (w->region_showing,
13082 Fmarker_position (BVAR (XBUFFER (w->buffer), mark)))))
13083 CHARPOS (this_line_start_pos) = 0;
13085 /* Optimize the case that only the line containing the cursor in the
13086 selected window has changed. Variables starting with this_ are
13087 set in display_line and record information about the line
13088 containing the cursor. */
13089 tlbufpos = this_line_start_pos;
13090 tlendpos = this_line_end_pos;
13091 if (!consider_all_windows_p
13092 && CHARPOS (tlbufpos) > 0
13093 && !w->update_mode_line
13094 && !current_buffer->clip_changed
13095 && !current_buffer->prevent_redisplay_optimizations_p
13096 && FRAME_VISIBLE_P (XFRAME (w->frame))
13097 && !FRAME_OBSCURED_P (XFRAME (w->frame))
13098 /* Make sure recorded data applies to current buffer, etc. */
13099 && this_line_buffer == current_buffer
13100 && current_buffer == XBUFFER (w->buffer)
13101 && !w->force_start
13102 && !w->optional_new_start
13103 /* Point must be on the line that we have info recorded about. */
13104 && PT >= CHARPOS (tlbufpos)
13105 && PT <= Z - CHARPOS (tlendpos)
13106 /* All text outside that line, including its final newline,
13107 must be unchanged. */
13108 && text_outside_line_unchanged_p (w, CHARPOS (tlbufpos),
13109 CHARPOS (tlendpos)))
13111 if (CHARPOS (tlbufpos) > BEGV
13112 && FETCH_BYTE (BYTEPOS (tlbufpos) - 1) != '\n'
13113 && (CHARPOS (tlbufpos) == ZV
13114 || FETCH_BYTE (BYTEPOS (tlbufpos)) == '\n'))
13115 /* Former continuation line has disappeared by becoming empty. */
13116 goto cancel;
13117 else if (XFASTINT (w->last_modified) < MODIFF
13118 || XFASTINT (w->last_overlay_modified) < OVERLAY_MODIFF
13119 || MINI_WINDOW_P (w))
13121 /* We have to handle the case of continuation around a
13122 wide-column character (see the comment in indent.c around
13123 line 1340).
13125 For instance, in the following case:
13127 -------- Insert --------
13128 K_A_N_\\ `a' K_A_N_a\ `X_' are wide-column chars.
13129 J_I_ ==> J_I_ `^^' are cursors.
13130 ^^ ^^
13131 -------- --------
13133 As we have to redraw the line above, we cannot use this
13134 optimization. */
13136 struct it it;
13137 int line_height_before = this_line_pixel_height;
13139 /* Note that start_display will handle the case that the
13140 line starting at tlbufpos is a continuation line. */
13141 start_display (&it, w, tlbufpos);
13143 /* Implementation note: It this still necessary? */
13144 if (it.current_x != this_line_start_x)
13145 goto cancel;
13147 TRACE ((stderr, "trying display optimization 1\n"));
13148 w->cursor.vpos = -1;
13149 overlay_arrow_seen = 0;
13150 it.vpos = this_line_vpos;
13151 it.current_y = this_line_y;
13152 it.glyph_row = MATRIX_ROW (w->desired_matrix, this_line_vpos);
13153 display_line (&it);
13155 /* If line contains point, is not continued,
13156 and ends at same distance from eob as before, we win. */
13157 if (w->cursor.vpos >= 0
13158 /* Line is not continued, otherwise this_line_start_pos
13159 would have been set to 0 in display_line. */
13160 && CHARPOS (this_line_start_pos)
13161 /* Line ends as before. */
13162 && CHARPOS (this_line_end_pos) == CHARPOS (tlendpos)
13163 /* Line has same height as before. Otherwise other lines
13164 would have to be shifted up or down. */
13165 && this_line_pixel_height == line_height_before)
13167 /* If this is not the window's last line, we must adjust
13168 the charstarts of the lines below. */
13169 if (it.current_y < it.last_visible_y)
13171 struct glyph_row *row
13172 = MATRIX_ROW (w->current_matrix, this_line_vpos + 1);
13173 ptrdiff_t delta, delta_bytes;
13175 /* We used to distinguish between two cases here,
13176 conditioned by Z - CHARPOS (tlendpos) == ZV, for
13177 when the line ends in a newline or the end of the
13178 buffer's accessible portion. But both cases did
13179 the same, so they were collapsed. */
13180 delta = (Z
13181 - CHARPOS (tlendpos)
13182 - MATRIX_ROW_START_CHARPOS (row));
13183 delta_bytes = (Z_BYTE
13184 - BYTEPOS (tlendpos)
13185 - MATRIX_ROW_START_BYTEPOS (row));
13187 increment_matrix_positions (w->current_matrix,
13188 this_line_vpos + 1,
13189 w->current_matrix->nrows,
13190 delta, delta_bytes);
13193 /* If this row displays text now but previously didn't,
13194 or vice versa, w->window_end_vpos may have to be
13195 adjusted. */
13196 if ((it.glyph_row - 1)->displays_text_p)
13198 if (XFASTINT (w->window_end_vpos) < this_line_vpos)
13199 XSETINT (w->window_end_vpos, this_line_vpos);
13201 else if (XFASTINT (w->window_end_vpos) == this_line_vpos
13202 && this_line_vpos > 0)
13203 XSETINT (w->window_end_vpos, this_line_vpos - 1);
13204 w->window_end_valid = Qnil;
13206 /* Update hint: No need to try to scroll in update_window. */
13207 w->desired_matrix->no_scrolling_p = 1;
13209 #if GLYPH_DEBUG
13210 *w->desired_matrix->method = 0;
13211 debug_method_add (w, "optimization 1");
13212 #endif
13213 #ifdef HAVE_WINDOW_SYSTEM
13214 update_window_fringes (w, 0);
13215 #endif
13216 goto update;
13218 else
13219 goto cancel;
13221 else if (/* Cursor position hasn't changed. */
13222 PT == XFASTINT (w->last_point)
13223 /* Make sure the cursor was last displayed
13224 in this window. Otherwise we have to reposition it. */
13225 && 0 <= w->cursor.vpos
13226 && WINDOW_TOTAL_LINES (w) > w->cursor.vpos)
13228 if (!must_finish)
13230 do_pending_window_change (1);
13231 /* If selected_window changed, redisplay again. */
13232 if (WINDOWP (selected_window)
13233 && (w = XWINDOW (selected_window)) != sw)
13234 goto retry;
13236 /* We used to always goto end_of_redisplay here, but this
13237 isn't enough if we have a blinking cursor. */
13238 if (w->cursor_off_p == w->last_cursor_off_p)
13239 goto end_of_redisplay;
13241 goto update;
13243 /* If highlighting the region, or if the cursor is in the echo area,
13244 then we can't just move the cursor. */
13245 else if (! (!NILP (Vtransient_mark_mode)
13246 && !NILP (BVAR (current_buffer, mark_active)))
13247 && (EQ (selected_window,
13248 BVAR (current_buffer, last_selected_window))
13249 || highlight_nonselected_windows)
13250 && NILP (w->region_showing)
13251 && NILP (Vshow_trailing_whitespace)
13252 && !cursor_in_echo_area)
13254 struct it it;
13255 struct glyph_row *row;
13257 /* Skip from tlbufpos to PT and see where it is. Note that
13258 PT may be in invisible text. If so, we will end at the
13259 next visible position. */
13260 init_iterator (&it, w, CHARPOS (tlbufpos), BYTEPOS (tlbufpos),
13261 NULL, DEFAULT_FACE_ID);
13262 it.current_x = this_line_start_x;
13263 it.current_y = this_line_y;
13264 it.vpos = this_line_vpos;
13266 /* The call to move_it_to stops in front of PT, but
13267 moves over before-strings. */
13268 move_it_to (&it, PT, -1, -1, -1, MOVE_TO_POS);
13270 if (it.vpos == this_line_vpos
13271 && (row = MATRIX_ROW (w->current_matrix, this_line_vpos),
13272 row->enabled_p))
13274 xassert (this_line_vpos == it.vpos);
13275 xassert (this_line_y == it.current_y);
13276 set_cursor_from_row (w, row, w->current_matrix, 0, 0, 0, 0);
13277 #if GLYPH_DEBUG
13278 *w->desired_matrix->method = 0;
13279 debug_method_add (w, "optimization 3");
13280 #endif
13281 goto update;
13283 else
13284 goto cancel;
13287 cancel:
13288 /* Text changed drastically or point moved off of line. */
13289 SET_MATRIX_ROW_ENABLED_P (w->desired_matrix, this_line_vpos, 0);
13292 CHARPOS (this_line_start_pos) = 0;
13293 consider_all_windows_p |= buffer_shared > 1;
13294 ++clear_face_cache_count;
13295 #ifdef HAVE_WINDOW_SYSTEM
13296 ++clear_image_cache_count;
13297 #endif
13299 /* Build desired matrices, and update the display. If
13300 consider_all_windows_p is non-zero, do it for all windows on all
13301 frames. Otherwise do it for selected_window, only. */
13303 if (consider_all_windows_p)
13305 Lisp_Object tail, frame;
13307 FOR_EACH_FRAME (tail, frame)
13308 XFRAME (frame)->updated_p = 0;
13310 /* Recompute # windows showing selected buffer. This will be
13311 incremented each time such a window is displayed. */
13312 buffer_shared = 0;
13314 FOR_EACH_FRAME (tail, frame)
13316 struct frame *f = XFRAME (frame);
13318 if (FRAME_WINDOW_P (f) || FRAME_TERMCAP_P (f) || f == sf)
13320 if (! EQ (frame, selected_frame))
13321 /* Select the frame, for the sake of frame-local
13322 variables. */
13323 select_frame_for_redisplay (frame);
13325 /* Mark all the scroll bars to be removed; we'll redeem
13326 the ones we want when we redisplay their windows. */
13327 if (FRAME_TERMINAL (f)->condemn_scroll_bars_hook)
13328 FRAME_TERMINAL (f)->condemn_scroll_bars_hook (f);
13330 if (FRAME_VISIBLE_P (f) && !FRAME_OBSCURED_P (f))
13331 redisplay_windows (FRAME_ROOT_WINDOW (f));
13333 /* The X error handler may have deleted that frame. */
13334 if (!FRAME_LIVE_P (f))
13335 continue;
13337 /* Any scroll bars which redisplay_windows should have
13338 nuked should now go away. */
13339 if (FRAME_TERMINAL (f)->judge_scroll_bars_hook)
13340 FRAME_TERMINAL (f)->judge_scroll_bars_hook (f);
13342 /* If fonts changed, display again. */
13343 /* ??? rms: I suspect it is a mistake to jump all the way
13344 back to retry here. It should just retry this frame. */
13345 if (fonts_changed_p)
13346 goto retry;
13348 if (FRAME_VISIBLE_P (f) && !FRAME_OBSCURED_P (f))
13350 /* See if we have to hscroll. */
13351 if (!f->already_hscrolled_p)
13353 f->already_hscrolled_p = 1;
13354 if (hscroll_windows (f->root_window))
13355 goto retry;
13358 /* Prevent various kinds of signals during display
13359 update. stdio is not robust about handling
13360 signals, which can cause an apparent I/O
13361 error. */
13362 if (interrupt_input)
13363 unrequest_sigio ();
13364 STOP_POLLING;
13366 /* Update the display. */
13367 set_window_update_flags (XWINDOW (f->root_window), 1);
13368 pending |= update_frame (f, 0, 0);
13369 f->updated_p = 1;
13374 if (!EQ (old_frame, selected_frame)
13375 && FRAME_LIVE_P (XFRAME (old_frame)))
13376 /* We played a bit fast-and-loose above and allowed selected_frame
13377 and selected_window to be temporarily out-of-sync but let's make
13378 sure this stays contained. */
13379 select_frame_for_redisplay (old_frame);
13380 eassert (EQ (XFRAME (selected_frame)->selected_window, selected_window));
13382 if (!pending)
13384 /* Do the mark_window_display_accurate after all windows have
13385 been redisplayed because this call resets flags in buffers
13386 which are needed for proper redisplay. */
13387 FOR_EACH_FRAME (tail, frame)
13389 struct frame *f = XFRAME (frame);
13390 if (f->updated_p)
13392 mark_window_display_accurate (f->root_window, 1);
13393 if (FRAME_TERMINAL (f)->frame_up_to_date_hook)
13394 FRAME_TERMINAL (f)->frame_up_to_date_hook (f);
13399 else if (FRAME_VISIBLE_P (sf) && !FRAME_OBSCURED_P (sf))
13401 Lisp_Object mini_window = FRAME_MINIBUF_WINDOW (sf);
13402 struct frame *mini_frame;
13404 displayed_buffer = XBUFFER (XWINDOW (selected_window)->buffer);
13405 /* Use list_of_error, not Qerror, so that
13406 we catch only errors and don't run the debugger. */
13407 internal_condition_case_1 (redisplay_window_1, selected_window,
13408 list_of_error,
13409 redisplay_window_error);
13410 if (update_miniwindow_p)
13411 internal_condition_case_1 (redisplay_window_1, mini_window,
13412 list_of_error,
13413 redisplay_window_error);
13415 /* Compare desired and current matrices, perform output. */
13417 update:
13418 /* If fonts changed, display again. */
13419 if (fonts_changed_p)
13420 goto retry;
13422 /* Prevent various kinds of signals during display update.
13423 stdio is not robust about handling signals,
13424 which can cause an apparent I/O error. */
13425 if (interrupt_input)
13426 unrequest_sigio ();
13427 STOP_POLLING;
13429 if (FRAME_VISIBLE_P (sf) && !FRAME_OBSCURED_P (sf))
13431 if (hscroll_windows (selected_window))
13432 goto retry;
13434 XWINDOW (selected_window)->must_be_updated_p = 1;
13435 pending = update_frame (sf, 0, 0);
13438 /* We may have called echo_area_display at the top of this
13439 function. If the echo area is on another frame, that may
13440 have put text on a frame other than the selected one, so the
13441 above call to update_frame would not have caught it. Catch
13442 it here. */
13443 mini_window = FRAME_MINIBUF_WINDOW (sf);
13444 mini_frame = XFRAME (WINDOW_FRAME (XWINDOW (mini_window)));
13446 if (mini_frame != sf && FRAME_WINDOW_P (mini_frame))
13448 XWINDOW (mini_window)->must_be_updated_p = 1;
13449 pending |= update_frame (mini_frame, 0, 0);
13450 if (!pending && hscroll_windows (mini_window))
13451 goto retry;
13455 /* If display was paused because of pending input, make sure we do a
13456 thorough update the next time. */
13457 if (pending)
13459 /* Prevent the optimization at the beginning of
13460 redisplay_internal that tries a single-line update of the
13461 line containing the cursor in the selected window. */
13462 CHARPOS (this_line_start_pos) = 0;
13464 /* Let the overlay arrow be updated the next time. */
13465 update_overlay_arrows (0);
13467 /* If we pause after scrolling, some rows in the current
13468 matrices of some windows are not valid. */
13469 if (!WINDOW_FULL_WIDTH_P (w)
13470 && !FRAME_WINDOW_P (XFRAME (w->frame)))
13471 update_mode_lines = 1;
13473 else
13475 if (!consider_all_windows_p)
13477 /* This has already been done above if
13478 consider_all_windows_p is set. */
13479 mark_window_display_accurate_1 (w, 1);
13481 /* Say overlay arrows are up to date. */
13482 update_overlay_arrows (1);
13484 if (FRAME_TERMINAL (sf)->frame_up_to_date_hook != 0)
13485 FRAME_TERMINAL (sf)->frame_up_to_date_hook (sf);
13488 update_mode_lines = 0;
13489 windows_or_buffers_changed = 0;
13490 cursor_type_changed = 0;
13493 /* Start SIGIO interrupts coming again. Having them off during the
13494 code above makes it less likely one will discard output, but not
13495 impossible, since there might be stuff in the system buffer here.
13496 But it is much hairier to try to do anything about that. */
13497 if (interrupt_input)
13498 request_sigio ();
13499 RESUME_POLLING;
13501 /* If a frame has become visible which was not before, redisplay
13502 again, so that we display it. Expose events for such a frame
13503 (which it gets when becoming visible) don't call the parts of
13504 redisplay constructing glyphs, so simply exposing a frame won't
13505 display anything in this case. So, we have to display these
13506 frames here explicitly. */
13507 if (!pending)
13509 Lisp_Object tail, frame;
13510 int new_count = 0;
13512 FOR_EACH_FRAME (tail, frame)
13514 int this_is_visible = 0;
13516 if (XFRAME (frame)->visible)
13517 this_is_visible = 1;
13518 FRAME_SAMPLE_VISIBILITY (XFRAME (frame));
13519 if (XFRAME (frame)->visible)
13520 this_is_visible = 1;
13522 if (this_is_visible)
13523 new_count++;
13526 if (new_count != number_of_visible_frames)
13527 windows_or_buffers_changed++;
13530 /* Change frame size now if a change is pending. */
13531 do_pending_window_change (1);
13533 /* If we just did a pending size change, or have additional
13534 visible frames, or selected_window changed, redisplay again. */
13535 if ((windows_or_buffers_changed && !pending)
13536 || (WINDOWP (selected_window) && (w = XWINDOW (selected_window)) != sw))
13537 goto retry;
13539 /* Clear the face and image caches.
13541 We used to do this only if consider_all_windows_p. But the cache
13542 needs to be cleared if a timer creates images in the current
13543 buffer (e.g. the test case in Bug#6230). */
13545 if (clear_face_cache_count > CLEAR_FACE_CACHE_COUNT)
13547 clear_face_cache (0);
13548 clear_face_cache_count = 0;
13551 #ifdef HAVE_WINDOW_SYSTEM
13552 if (clear_image_cache_count > CLEAR_IMAGE_CACHE_COUNT)
13554 clear_image_caches (Qnil);
13555 clear_image_cache_count = 0;
13557 #endif /* HAVE_WINDOW_SYSTEM */
13559 end_of_redisplay:
13560 unbind_to (count, Qnil);
13561 RESUME_POLLING;
13565 /* Redisplay, but leave alone any recent echo area message unless
13566 another message has been requested in its place.
13568 This is useful in situations where you need to redisplay but no
13569 user action has occurred, making it inappropriate for the message
13570 area to be cleared. See tracking_off and
13571 wait_reading_process_output for examples of these situations.
13573 FROM_WHERE is an integer saying from where this function was
13574 called. This is useful for debugging. */
13576 void
13577 redisplay_preserve_echo_area (int from_where)
13579 TRACE ((stderr, "redisplay_preserve_echo_area (%d)\n", from_where));
13581 if (!NILP (echo_area_buffer[1]))
13583 /* We have a previously displayed message, but no current
13584 message. Redisplay the previous message. */
13585 display_last_displayed_message_p = 1;
13586 redisplay_internal ();
13587 display_last_displayed_message_p = 0;
13589 else
13590 redisplay_internal ();
13592 if (FRAME_RIF (SELECTED_FRAME ()) != NULL
13593 && FRAME_RIF (SELECTED_FRAME ())->flush_display_optional)
13594 FRAME_RIF (SELECTED_FRAME ())->flush_display_optional (NULL);
13598 /* Function registered with record_unwind_protect in
13599 redisplay_internal. Reset redisplaying_p to the value it had
13600 before redisplay_internal was called, and clear
13601 prevent_freeing_realized_faces_p. It also selects the previously
13602 selected frame, unless it has been deleted (by an X connection
13603 failure during redisplay, for example). */
13605 static Lisp_Object
13606 unwind_redisplay (Lisp_Object val)
13608 Lisp_Object old_redisplaying_p, old_frame;
13610 old_redisplaying_p = XCAR (val);
13611 redisplaying_p = XFASTINT (old_redisplaying_p);
13612 old_frame = XCDR (val);
13613 if (! EQ (old_frame, selected_frame)
13614 && FRAME_LIVE_P (XFRAME (old_frame)))
13615 select_frame_for_redisplay (old_frame);
13616 return Qnil;
13620 /* Mark the display of window W as accurate or inaccurate. If
13621 ACCURATE_P is non-zero mark display of W as accurate. If
13622 ACCURATE_P is zero, arrange for W to be redisplayed the next time
13623 redisplay_internal is called. */
13625 static void
13626 mark_window_display_accurate_1 (struct window *w, int accurate_p)
13628 if (BUFFERP (w->buffer))
13630 struct buffer *b = XBUFFER (w->buffer);
13632 w->last_modified
13633 = make_number (accurate_p ? BUF_MODIFF (b) : 0);
13634 w->last_overlay_modified
13635 = make_number (accurate_p ? BUF_OVERLAY_MODIFF (b) : 0);
13636 w->last_had_star
13637 = BUF_MODIFF (b) > BUF_SAVE_MODIFF (b);
13639 if (accurate_p)
13641 b->clip_changed = 0;
13642 b->prevent_redisplay_optimizations_p = 0;
13644 BUF_UNCHANGED_MODIFIED (b) = BUF_MODIFF (b);
13645 BUF_OVERLAY_UNCHANGED_MODIFIED (b) = BUF_OVERLAY_MODIFF (b);
13646 BUF_BEG_UNCHANGED (b) = BUF_GPT (b) - BUF_BEG (b);
13647 BUF_END_UNCHANGED (b) = BUF_Z (b) - BUF_GPT (b);
13649 w->current_matrix->buffer = b;
13650 w->current_matrix->begv = BUF_BEGV (b);
13651 w->current_matrix->zv = BUF_ZV (b);
13653 w->last_cursor = w->cursor;
13654 w->last_cursor_off_p = w->cursor_off_p;
13656 if (w == XWINDOW (selected_window))
13657 w->last_point = make_number (BUF_PT (b));
13658 else
13659 w->last_point = make_number (XMARKER (w->pointm)->charpos);
13663 if (accurate_p)
13665 w->window_end_valid = w->buffer;
13666 w->update_mode_line = 0;
13671 /* Mark the display of windows in the window tree rooted at WINDOW as
13672 accurate or inaccurate. If ACCURATE_P is non-zero mark display of
13673 windows as accurate. If ACCURATE_P is zero, arrange for windows to
13674 be redisplayed the next time redisplay_internal is called. */
13676 void
13677 mark_window_display_accurate (Lisp_Object window, int accurate_p)
13679 struct window *w;
13681 for (; !NILP (window); window = w->next)
13683 w = XWINDOW (window);
13684 mark_window_display_accurate_1 (w, accurate_p);
13686 if (!NILP (w->vchild))
13687 mark_window_display_accurate (w->vchild, accurate_p);
13688 if (!NILP (w->hchild))
13689 mark_window_display_accurate (w->hchild, accurate_p);
13692 if (accurate_p)
13694 update_overlay_arrows (1);
13696 else
13698 /* Force a thorough redisplay the next time by setting
13699 last_arrow_position and last_arrow_string to t, which is
13700 unequal to any useful value of Voverlay_arrow_... */
13701 update_overlay_arrows (-1);
13706 /* Return value in display table DP (Lisp_Char_Table *) for character
13707 C. Since a display table doesn't have any parent, we don't have to
13708 follow parent. Do not call this function directly but use the
13709 macro DISP_CHAR_VECTOR. */
13711 Lisp_Object
13712 disp_char_vector (struct Lisp_Char_Table *dp, int c)
13714 Lisp_Object val;
13716 if (ASCII_CHAR_P (c))
13718 val = dp->ascii;
13719 if (SUB_CHAR_TABLE_P (val))
13720 val = XSUB_CHAR_TABLE (val)->contents[c];
13722 else
13724 Lisp_Object table;
13726 XSETCHAR_TABLE (table, dp);
13727 val = char_table_ref (table, c);
13729 if (NILP (val))
13730 val = dp->defalt;
13731 return val;
13736 /***********************************************************************
13737 Window Redisplay
13738 ***********************************************************************/
13740 /* Redisplay all leaf windows in the window tree rooted at WINDOW. */
13742 static void
13743 redisplay_windows (Lisp_Object window)
13745 while (!NILP (window))
13747 struct window *w = XWINDOW (window);
13749 if (!NILP (w->hchild))
13750 redisplay_windows (w->hchild);
13751 else if (!NILP (w->vchild))
13752 redisplay_windows (w->vchild);
13753 else if (!NILP (w->buffer))
13755 displayed_buffer = XBUFFER (w->buffer);
13756 /* Use list_of_error, not Qerror, so that
13757 we catch only errors and don't run the debugger. */
13758 internal_condition_case_1 (redisplay_window_0, window,
13759 list_of_error,
13760 redisplay_window_error);
13763 window = w->next;
13767 static Lisp_Object
13768 redisplay_window_error (Lisp_Object ignore)
13770 displayed_buffer->display_error_modiff = BUF_MODIFF (displayed_buffer);
13771 return Qnil;
13774 static Lisp_Object
13775 redisplay_window_0 (Lisp_Object window)
13777 if (displayed_buffer->display_error_modiff < BUF_MODIFF (displayed_buffer))
13778 redisplay_window (window, 0);
13779 return Qnil;
13782 static Lisp_Object
13783 redisplay_window_1 (Lisp_Object window)
13785 if (displayed_buffer->display_error_modiff < BUF_MODIFF (displayed_buffer))
13786 redisplay_window (window, 1);
13787 return Qnil;
13791 /* Set cursor position of W. PT is assumed to be displayed in ROW.
13792 DELTA and DELTA_BYTES are the numbers of characters and bytes by
13793 which positions recorded in ROW differ from current buffer
13794 positions.
13796 Return 0 if cursor is not on this row, 1 otherwise. */
13798 static int
13799 set_cursor_from_row (struct window *w, struct glyph_row *row,
13800 struct glyph_matrix *matrix,
13801 ptrdiff_t delta, ptrdiff_t delta_bytes,
13802 int dy, int dvpos)
13804 struct glyph *glyph = row->glyphs[TEXT_AREA];
13805 struct glyph *end = glyph + row->used[TEXT_AREA];
13806 struct glyph *cursor = NULL;
13807 /* The last known character position in row. */
13808 ptrdiff_t last_pos = MATRIX_ROW_START_CHARPOS (row) + delta;
13809 int x = row->x;
13810 ptrdiff_t pt_old = PT - delta;
13811 ptrdiff_t pos_before = MATRIX_ROW_START_CHARPOS (row) + delta;
13812 ptrdiff_t pos_after = MATRIX_ROW_END_CHARPOS (row) + delta;
13813 struct glyph *glyph_before = glyph - 1, *glyph_after = end;
13814 /* A glyph beyond the edge of TEXT_AREA which we should never
13815 touch. */
13816 struct glyph *glyphs_end = end;
13817 /* Non-zero means we've found a match for cursor position, but that
13818 glyph has the avoid_cursor_p flag set. */
13819 int match_with_avoid_cursor = 0;
13820 /* Non-zero means we've seen at least one glyph that came from a
13821 display string. */
13822 int string_seen = 0;
13823 /* Largest and smallest buffer positions seen so far during scan of
13824 glyph row. */
13825 ptrdiff_t bpos_max = pos_before;
13826 ptrdiff_t bpos_min = pos_after;
13827 /* Last buffer position covered by an overlay string with an integer
13828 `cursor' property. */
13829 ptrdiff_t bpos_covered = 0;
13830 /* Non-zero means the display string on which to display the cursor
13831 comes from a text property, not from an overlay. */
13832 int string_from_text_prop = 0;
13834 /* Don't even try doing anything if called for a mode-line or
13835 header-line row, since the rest of the code isn't prepared to
13836 deal with such calamities. */
13837 xassert (!row->mode_line_p);
13838 if (row->mode_line_p)
13839 return 0;
13841 /* Skip over glyphs not having an object at the start and the end of
13842 the row. These are special glyphs like truncation marks on
13843 terminal frames. */
13844 if (row->displays_text_p)
13846 if (!row->reversed_p)
13848 while (glyph < end
13849 && INTEGERP (glyph->object)
13850 && glyph->charpos < 0)
13852 x += glyph->pixel_width;
13853 ++glyph;
13855 while (end > glyph
13856 && INTEGERP ((end - 1)->object)
13857 /* CHARPOS is zero for blanks and stretch glyphs
13858 inserted by extend_face_to_end_of_line. */
13859 && (end - 1)->charpos <= 0)
13860 --end;
13861 glyph_before = glyph - 1;
13862 glyph_after = end;
13864 else
13866 struct glyph *g;
13868 /* If the glyph row is reversed, we need to process it from back
13869 to front, so swap the edge pointers. */
13870 glyphs_end = end = glyph - 1;
13871 glyph += row->used[TEXT_AREA] - 1;
13873 while (glyph > end + 1
13874 && INTEGERP (glyph->object)
13875 && glyph->charpos < 0)
13877 --glyph;
13878 x -= glyph->pixel_width;
13880 if (INTEGERP (glyph->object) && glyph->charpos < 0)
13881 --glyph;
13882 /* By default, in reversed rows we put the cursor on the
13883 rightmost (first in the reading order) glyph. */
13884 for (g = end + 1; g < glyph; g++)
13885 x += g->pixel_width;
13886 while (end < glyph
13887 && INTEGERP ((end + 1)->object)
13888 && (end + 1)->charpos <= 0)
13889 ++end;
13890 glyph_before = glyph + 1;
13891 glyph_after = end;
13894 else if (row->reversed_p)
13896 /* In R2L rows that don't display text, put the cursor on the
13897 rightmost glyph. Case in point: an empty last line that is
13898 part of an R2L paragraph. */
13899 cursor = end - 1;
13900 /* Avoid placing the cursor on the last glyph of the row, where
13901 on terminal frames we hold the vertical border between
13902 adjacent windows. */
13903 if (!FRAME_WINDOW_P (WINDOW_XFRAME (w))
13904 && !WINDOW_RIGHTMOST_P (w)
13905 && cursor == row->glyphs[LAST_AREA] - 1)
13906 cursor--;
13907 x = -1; /* will be computed below, at label compute_x */
13910 /* Step 1: Try to find the glyph whose character position
13911 corresponds to point. If that's not possible, find 2 glyphs
13912 whose character positions are the closest to point, one before
13913 point, the other after it. */
13914 if (!row->reversed_p)
13915 while (/* not marched to end of glyph row */
13916 glyph < end
13917 /* glyph was not inserted by redisplay for internal purposes */
13918 && !INTEGERP (glyph->object))
13920 if (BUFFERP (glyph->object))
13922 ptrdiff_t dpos = glyph->charpos - pt_old;
13924 if (glyph->charpos > bpos_max)
13925 bpos_max = glyph->charpos;
13926 if (glyph->charpos < bpos_min)
13927 bpos_min = glyph->charpos;
13928 if (!glyph->avoid_cursor_p)
13930 /* If we hit point, we've found the glyph on which to
13931 display the cursor. */
13932 if (dpos == 0)
13934 match_with_avoid_cursor = 0;
13935 break;
13937 /* See if we've found a better approximation to
13938 POS_BEFORE or to POS_AFTER. Note that we want the
13939 first (leftmost) glyph of all those that are the
13940 closest from below, and the last (rightmost) of all
13941 those from above. */
13942 if (0 > dpos && dpos > pos_before - pt_old)
13944 pos_before = glyph->charpos;
13945 glyph_before = glyph;
13947 else if (0 < dpos && dpos <= pos_after - pt_old)
13949 pos_after = glyph->charpos;
13950 glyph_after = glyph;
13953 else if (dpos == 0)
13954 match_with_avoid_cursor = 1;
13956 else if (STRINGP (glyph->object))
13958 Lisp_Object chprop;
13959 ptrdiff_t glyph_pos = glyph->charpos;
13961 chprop = Fget_char_property (make_number (glyph_pos), Qcursor,
13962 glyph->object);
13963 if (!NILP (chprop))
13965 /* If the string came from a `display' text property,
13966 look up the buffer position of that property and
13967 use that position to update bpos_max, as if we
13968 actually saw such a position in one of the row's
13969 glyphs. This helps with supporting integer values
13970 of `cursor' property on the display string in
13971 situations where most or all of the row's buffer
13972 text is completely covered by display properties,
13973 so that no glyph with valid buffer positions is
13974 ever seen in the row. */
13975 ptrdiff_t prop_pos =
13976 string_buffer_position_lim (glyph->object, pos_before,
13977 pos_after, 0);
13979 if (prop_pos >= pos_before)
13980 bpos_max = prop_pos - 1;
13982 if (INTEGERP (chprop))
13984 bpos_covered = bpos_max + XINT (chprop);
13985 /* If the `cursor' property covers buffer positions up
13986 to and including point, we should display cursor on
13987 this glyph. Note that, if a `cursor' property on one
13988 of the string's characters has an integer value, we
13989 will break out of the loop below _before_ we get to
13990 the position match above. IOW, integer values of
13991 the `cursor' property override the "exact match for
13992 point" strategy of positioning the cursor. */
13993 /* Implementation note: bpos_max == pt_old when, e.g.,
13994 we are in an empty line, where bpos_max is set to
13995 MATRIX_ROW_START_CHARPOS, see above. */
13996 if (bpos_max <= pt_old && bpos_covered >= pt_old)
13998 cursor = glyph;
13999 break;
14003 string_seen = 1;
14005 x += glyph->pixel_width;
14006 ++glyph;
14008 else if (glyph > end) /* row is reversed */
14009 while (!INTEGERP (glyph->object))
14011 if (BUFFERP (glyph->object))
14013 ptrdiff_t dpos = glyph->charpos - pt_old;
14015 if (glyph->charpos > bpos_max)
14016 bpos_max = glyph->charpos;
14017 if (glyph->charpos < bpos_min)
14018 bpos_min = glyph->charpos;
14019 if (!glyph->avoid_cursor_p)
14021 if (dpos == 0)
14023 match_with_avoid_cursor = 0;
14024 break;
14026 if (0 > dpos && dpos > pos_before - pt_old)
14028 pos_before = glyph->charpos;
14029 glyph_before = glyph;
14031 else if (0 < dpos && dpos <= pos_after - pt_old)
14033 pos_after = glyph->charpos;
14034 glyph_after = glyph;
14037 else if (dpos == 0)
14038 match_with_avoid_cursor = 1;
14040 else if (STRINGP (glyph->object))
14042 Lisp_Object chprop;
14043 ptrdiff_t glyph_pos = glyph->charpos;
14045 chprop = Fget_char_property (make_number (glyph_pos), Qcursor,
14046 glyph->object);
14047 if (!NILP (chprop))
14049 ptrdiff_t prop_pos =
14050 string_buffer_position_lim (glyph->object, pos_before,
14051 pos_after, 0);
14053 if (prop_pos >= pos_before)
14054 bpos_max = prop_pos - 1;
14056 if (INTEGERP (chprop))
14058 bpos_covered = bpos_max + XINT (chprop);
14059 /* If the `cursor' property covers buffer positions up
14060 to and including point, we should display cursor on
14061 this glyph. */
14062 if (bpos_max <= pt_old && bpos_covered >= pt_old)
14064 cursor = glyph;
14065 break;
14068 string_seen = 1;
14070 --glyph;
14071 if (glyph == glyphs_end) /* don't dereference outside TEXT_AREA */
14073 x--; /* can't use any pixel_width */
14074 break;
14076 x -= glyph->pixel_width;
14079 /* Step 2: If we didn't find an exact match for point, we need to
14080 look for a proper place to put the cursor among glyphs between
14081 GLYPH_BEFORE and GLYPH_AFTER. */
14082 if (!((row->reversed_p ? glyph > glyphs_end : glyph < glyphs_end)
14083 && BUFFERP (glyph->object) && glyph->charpos == pt_old)
14084 && bpos_covered < pt_old)
14086 /* An empty line has a single glyph whose OBJECT is zero and
14087 whose CHARPOS is the position of a newline on that line.
14088 Note that on a TTY, there are more glyphs after that, which
14089 were produced by extend_face_to_end_of_line, but their
14090 CHARPOS is zero or negative. */
14091 int empty_line_p =
14092 (row->reversed_p ? glyph > glyphs_end : glyph < glyphs_end)
14093 && INTEGERP (glyph->object) && glyph->charpos > 0;
14095 if (row->ends_in_ellipsis_p && pos_after == last_pos)
14097 ptrdiff_t ellipsis_pos;
14099 /* Scan back over the ellipsis glyphs. */
14100 if (!row->reversed_p)
14102 ellipsis_pos = (glyph - 1)->charpos;
14103 while (glyph > row->glyphs[TEXT_AREA]
14104 && (glyph - 1)->charpos == ellipsis_pos)
14105 glyph--, x -= glyph->pixel_width;
14106 /* That loop always goes one position too far, including
14107 the glyph before the ellipsis. So scan forward over
14108 that one. */
14109 x += glyph->pixel_width;
14110 glyph++;
14112 else /* row is reversed */
14114 ellipsis_pos = (glyph + 1)->charpos;
14115 while (glyph < row->glyphs[TEXT_AREA] + row->used[TEXT_AREA] - 1
14116 && (glyph + 1)->charpos == ellipsis_pos)
14117 glyph++, x += glyph->pixel_width;
14118 x -= glyph->pixel_width;
14119 glyph--;
14122 else if (match_with_avoid_cursor)
14124 cursor = glyph_after;
14125 x = -1;
14127 else if (string_seen)
14129 int incr = row->reversed_p ? -1 : +1;
14131 /* Need to find the glyph that came out of a string which is
14132 present at point. That glyph is somewhere between
14133 GLYPH_BEFORE and GLYPH_AFTER, and it came from a string
14134 positioned between POS_BEFORE and POS_AFTER in the
14135 buffer. */
14136 struct glyph *start, *stop;
14137 ptrdiff_t pos = pos_before;
14139 x = -1;
14141 /* If the row ends in a newline from a display string,
14142 reordering could have moved the glyphs belonging to the
14143 string out of the [GLYPH_BEFORE..GLYPH_AFTER] range. So
14144 in this case we extend the search to the last glyph in
14145 the row that was not inserted by redisplay. */
14146 if (row->ends_in_newline_from_string_p)
14148 glyph_after = end;
14149 pos_after = MATRIX_ROW_END_CHARPOS (row) + delta;
14152 /* GLYPH_BEFORE and GLYPH_AFTER are the glyphs that
14153 correspond to POS_BEFORE and POS_AFTER, respectively. We
14154 need START and STOP in the order that corresponds to the
14155 row's direction as given by its reversed_p flag. If the
14156 directionality of characters between POS_BEFORE and
14157 POS_AFTER is the opposite of the row's base direction,
14158 these characters will have been reordered for display,
14159 and we need to reverse START and STOP. */
14160 if (!row->reversed_p)
14162 start = min (glyph_before, glyph_after);
14163 stop = max (glyph_before, glyph_after);
14165 else
14167 start = max (glyph_before, glyph_after);
14168 stop = min (glyph_before, glyph_after);
14170 for (glyph = start + incr;
14171 row->reversed_p ? glyph > stop : glyph < stop; )
14174 /* Any glyphs that come from the buffer are here because
14175 of bidi reordering. Skip them, and only pay
14176 attention to glyphs that came from some string. */
14177 if (STRINGP (glyph->object))
14179 Lisp_Object str;
14180 ptrdiff_t tem;
14181 /* If the display property covers the newline, we
14182 need to search for it one position farther. */
14183 ptrdiff_t lim = pos_after
14184 + (pos_after == MATRIX_ROW_END_CHARPOS (row) + delta);
14186 string_from_text_prop = 0;
14187 str = glyph->object;
14188 tem = string_buffer_position_lim (str, pos, lim, 0);
14189 if (tem == 0 /* from overlay */
14190 || pos <= tem)
14192 /* If the string from which this glyph came is
14193 found in the buffer at point, or at position
14194 that is closer to point than pos_after, then
14195 we've found the glyph we've been looking for.
14196 If it comes from an overlay (tem == 0), and
14197 it has the `cursor' property on one of its
14198 glyphs, record that glyph as a candidate for
14199 displaying the cursor. (As in the
14200 unidirectional version, we will display the
14201 cursor on the last candidate we find.) */
14202 if (tem == 0
14203 || tem == pt_old
14204 || (tem - pt_old > 0 && tem < pos_after))
14206 /* The glyphs from this string could have
14207 been reordered. Find the one with the
14208 smallest string position. Or there could
14209 be a character in the string with the
14210 `cursor' property, which means display
14211 cursor on that character's glyph. */
14212 ptrdiff_t strpos = glyph->charpos;
14214 if (tem)
14216 cursor = glyph;
14217 string_from_text_prop = 1;
14219 for ( ;
14220 (row->reversed_p ? glyph > stop : glyph < stop)
14221 && EQ (glyph->object, str);
14222 glyph += incr)
14224 Lisp_Object cprop;
14225 ptrdiff_t gpos = glyph->charpos;
14227 cprop = Fget_char_property (make_number (gpos),
14228 Qcursor,
14229 glyph->object);
14230 if (!NILP (cprop))
14232 cursor = glyph;
14233 break;
14235 if (tem && glyph->charpos < strpos)
14237 strpos = glyph->charpos;
14238 cursor = glyph;
14242 if (tem == pt_old
14243 || (tem - pt_old > 0 && tem < pos_after))
14244 goto compute_x;
14246 if (tem)
14247 pos = tem + 1; /* don't find previous instances */
14249 /* This string is not what we want; skip all of the
14250 glyphs that came from it. */
14251 while ((row->reversed_p ? glyph > stop : glyph < stop)
14252 && EQ (glyph->object, str))
14253 glyph += incr;
14255 else
14256 glyph += incr;
14259 /* If we reached the end of the line, and END was from a string,
14260 the cursor is not on this line. */
14261 if (cursor == NULL
14262 && (row->reversed_p ? glyph <= end : glyph >= end)
14263 && STRINGP (end->object)
14264 && row->continued_p)
14265 return 0;
14267 /* A truncated row may not include PT among its character positions.
14268 Setting the cursor inside the scroll margin will trigger
14269 recalculation of hscroll in hscroll_window_tree. But if a
14270 display string covers point, defer to the string-handling
14271 code below to figure this out. */
14272 else if (row->truncated_on_left_p && pt_old < bpos_min)
14274 cursor = glyph_before;
14275 x = -1;
14277 else if ((row->truncated_on_right_p && pt_old > bpos_max)
14278 /* Zero-width characters produce no glyphs. */
14279 || (!empty_line_p
14280 && (row->reversed_p
14281 ? glyph_after > glyphs_end
14282 : glyph_after < glyphs_end)))
14284 cursor = glyph_after;
14285 x = -1;
14289 compute_x:
14290 if (cursor != NULL)
14291 glyph = cursor;
14292 if (x < 0)
14294 struct glyph *g;
14296 /* Need to compute x that corresponds to GLYPH. */
14297 for (g = row->glyphs[TEXT_AREA], x = row->x; g < glyph; g++)
14299 if (g >= row->glyphs[TEXT_AREA] + row->used[TEXT_AREA])
14300 abort ();
14301 x += g->pixel_width;
14305 /* ROW could be part of a continued line, which, under bidi
14306 reordering, might have other rows whose start and end charpos
14307 occlude point. Only set w->cursor if we found a better
14308 approximation to the cursor position than we have from previously
14309 examined candidate rows belonging to the same continued line. */
14310 if (/* we already have a candidate row */
14311 w->cursor.vpos >= 0
14312 /* that candidate is not the row we are processing */
14313 && MATRIX_ROW (matrix, w->cursor.vpos) != row
14314 /* Make sure cursor.vpos specifies a row whose start and end
14315 charpos occlude point, and it is valid candidate for being a
14316 cursor-row. This is because some callers of this function
14317 leave cursor.vpos at the row where the cursor was displayed
14318 during the last redisplay cycle. */
14319 && MATRIX_ROW_START_CHARPOS (MATRIX_ROW (matrix, w->cursor.vpos)) <= pt_old
14320 && pt_old <= MATRIX_ROW_END_CHARPOS (MATRIX_ROW (matrix, w->cursor.vpos))
14321 && cursor_row_p (MATRIX_ROW (matrix, w->cursor.vpos)))
14323 struct glyph *g1 =
14324 MATRIX_ROW_GLYPH_START (matrix, w->cursor.vpos) + w->cursor.hpos;
14326 /* Don't consider glyphs that are outside TEXT_AREA. */
14327 if (!(row->reversed_p ? glyph > glyphs_end : glyph < glyphs_end))
14328 return 0;
14329 /* Keep the candidate whose buffer position is the closest to
14330 point or has the `cursor' property. */
14331 if (/* previous candidate is a glyph in TEXT_AREA of that row */
14332 w->cursor.hpos >= 0
14333 && w->cursor.hpos < MATRIX_ROW_USED (matrix, w->cursor.vpos)
14334 && ((BUFFERP (g1->object)
14335 && (g1->charpos == pt_old /* an exact match always wins */
14336 || (BUFFERP (glyph->object)
14337 && eabs (g1->charpos - pt_old)
14338 < eabs (glyph->charpos - pt_old))))
14339 /* previous candidate is a glyph from a string that has
14340 a non-nil `cursor' property */
14341 || (STRINGP (g1->object)
14342 && (!NILP (Fget_char_property (make_number (g1->charpos),
14343 Qcursor, g1->object))
14344 /* previous candidate is from the same display
14345 string as this one, and the display string
14346 came from a text property */
14347 || (EQ (g1->object, glyph->object)
14348 && string_from_text_prop)
14349 /* this candidate is from newline and its
14350 position is not an exact match */
14351 || (INTEGERP (glyph->object)
14352 && glyph->charpos != pt_old)))))
14353 return 0;
14354 /* If this candidate gives an exact match, use that. */
14355 if (!((BUFFERP (glyph->object) && glyph->charpos == pt_old)
14356 /* If this candidate is a glyph created for the
14357 terminating newline of a line, and point is on that
14358 newline, it wins because it's an exact match. */
14359 || (!row->continued_p
14360 && INTEGERP (glyph->object)
14361 && glyph->charpos == 0
14362 && pt_old == MATRIX_ROW_END_CHARPOS (row) - 1))
14363 /* Otherwise, keep the candidate that comes from a row
14364 spanning less buffer positions. This may win when one or
14365 both candidate positions are on glyphs that came from
14366 display strings, for which we cannot compare buffer
14367 positions. */
14368 && MATRIX_ROW_END_CHARPOS (MATRIX_ROW (matrix, w->cursor.vpos))
14369 - MATRIX_ROW_START_CHARPOS (MATRIX_ROW (matrix, w->cursor.vpos))
14370 < MATRIX_ROW_END_CHARPOS (row) - MATRIX_ROW_START_CHARPOS (row))
14371 return 0;
14373 w->cursor.hpos = glyph - row->glyphs[TEXT_AREA];
14374 w->cursor.x = x;
14375 w->cursor.vpos = MATRIX_ROW_VPOS (row, matrix) + dvpos;
14376 w->cursor.y = row->y + dy;
14378 if (w == XWINDOW (selected_window))
14380 if (!row->continued_p
14381 && !MATRIX_ROW_CONTINUATION_LINE_P (row)
14382 && row->x == 0)
14384 this_line_buffer = XBUFFER (w->buffer);
14386 CHARPOS (this_line_start_pos)
14387 = MATRIX_ROW_START_CHARPOS (row) + delta;
14388 BYTEPOS (this_line_start_pos)
14389 = MATRIX_ROW_START_BYTEPOS (row) + delta_bytes;
14391 CHARPOS (this_line_end_pos)
14392 = Z - (MATRIX_ROW_END_CHARPOS (row) + delta);
14393 BYTEPOS (this_line_end_pos)
14394 = Z_BYTE - (MATRIX_ROW_END_BYTEPOS (row) + delta_bytes);
14396 this_line_y = w->cursor.y;
14397 this_line_pixel_height = row->height;
14398 this_line_vpos = w->cursor.vpos;
14399 this_line_start_x = row->x;
14401 else
14402 CHARPOS (this_line_start_pos) = 0;
14405 return 1;
14409 /* Run window scroll functions, if any, for WINDOW with new window
14410 start STARTP. Sets the window start of WINDOW to that position.
14412 We assume that the window's buffer is really current. */
14414 static inline struct text_pos
14415 run_window_scroll_functions (Lisp_Object window, struct text_pos startp)
14417 struct window *w = XWINDOW (window);
14418 SET_MARKER_FROM_TEXT_POS (w->start, startp);
14420 if (current_buffer != XBUFFER (w->buffer))
14421 abort ();
14423 if (!NILP (Vwindow_scroll_functions))
14425 run_hook_with_args_2 (Qwindow_scroll_functions, window,
14426 make_number (CHARPOS (startp)));
14427 SET_TEXT_POS_FROM_MARKER (startp, w->start);
14428 /* In case the hook functions switch buffers. */
14429 if (current_buffer != XBUFFER (w->buffer))
14430 set_buffer_internal_1 (XBUFFER (w->buffer));
14433 return startp;
14437 /* Make sure the line containing the cursor is fully visible.
14438 A value of 1 means there is nothing to be done.
14439 (Either the line is fully visible, or it cannot be made so,
14440 or we cannot tell.)
14442 If FORCE_P is non-zero, return 0 even if partial visible cursor row
14443 is higher than window.
14445 A value of 0 means the caller should do scrolling
14446 as if point had gone off the screen. */
14448 static int
14449 cursor_row_fully_visible_p (struct window *w, int force_p, int current_matrix_p)
14451 struct glyph_matrix *matrix;
14452 struct glyph_row *row;
14453 int window_height;
14455 if (!make_cursor_line_fully_visible_p)
14456 return 1;
14458 /* It's not always possible to find the cursor, e.g, when a window
14459 is full of overlay strings. Don't do anything in that case. */
14460 if (w->cursor.vpos < 0)
14461 return 1;
14463 matrix = current_matrix_p ? w->current_matrix : w->desired_matrix;
14464 row = MATRIX_ROW (matrix, w->cursor.vpos);
14466 /* If the cursor row is not partially visible, there's nothing to do. */
14467 if (!MATRIX_ROW_PARTIALLY_VISIBLE_P (w, row))
14468 return 1;
14470 /* If the row the cursor is in is taller than the window's height,
14471 it's not clear what to do, so do nothing. */
14472 window_height = window_box_height (w);
14473 if (row->height >= window_height)
14475 if (!force_p || MINI_WINDOW_P (w)
14476 || w->vscroll || w->cursor.vpos == 0)
14477 return 1;
14479 return 0;
14483 /* Try scrolling PT into view in window WINDOW. JUST_THIS_ONE_P
14484 non-zero means only WINDOW is redisplayed in redisplay_internal.
14485 TEMP_SCROLL_STEP has the same meaning as emacs_scroll_step, and is used
14486 in redisplay_window to bring a partially visible line into view in
14487 the case that only the cursor has moved.
14489 LAST_LINE_MISFIT should be nonzero if we're scrolling because the
14490 last screen line's vertical height extends past the end of the screen.
14492 Value is
14494 1 if scrolling succeeded
14496 0 if scrolling didn't find point.
14498 -1 if new fonts have been loaded so that we must interrupt
14499 redisplay, adjust glyph matrices, and try again. */
14501 enum
14503 SCROLLING_SUCCESS,
14504 SCROLLING_FAILED,
14505 SCROLLING_NEED_LARGER_MATRICES
14508 /* If scroll-conservatively is more than this, never recenter.
14510 If you change this, don't forget to update the doc string of
14511 `scroll-conservatively' and the Emacs manual. */
14512 #define SCROLL_LIMIT 100
14514 static int
14515 try_scrolling (Lisp_Object window, int just_this_one_p,
14516 ptrdiff_t arg_scroll_conservatively, ptrdiff_t scroll_step,
14517 int temp_scroll_step, int last_line_misfit)
14519 struct window *w = XWINDOW (window);
14520 struct frame *f = XFRAME (w->frame);
14521 struct text_pos pos, startp;
14522 struct it it;
14523 int this_scroll_margin, scroll_max, rc, height;
14524 int dy = 0, amount_to_scroll = 0, scroll_down_p = 0;
14525 int extra_scroll_margin_lines = last_line_misfit ? 1 : 0;
14526 Lisp_Object aggressive;
14527 /* We will never try scrolling more than this number of lines. */
14528 int scroll_limit = SCROLL_LIMIT;
14530 #if GLYPH_DEBUG
14531 debug_method_add (w, "try_scrolling");
14532 #endif
14534 SET_TEXT_POS_FROM_MARKER (startp, w->start);
14536 /* Compute scroll margin height in pixels. We scroll when point is
14537 within this distance from the top or bottom of the window. */
14538 if (scroll_margin > 0)
14539 this_scroll_margin = min (scroll_margin, WINDOW_TOTAL_LINES (w) / 4)
14540 * FRAME_LINE_HEIGHT (f);
14541 else
14542 this_scroll_margin = 0;
14544 /* Force arg_scroll_conservatively to have a reasonable value, to
14545 avoid scrolling too far away with slow move_it_* functions. Note
14546 that the user can supply scroll-conservatively equal to
14547 `most-positive-fixnum', which can be larger than INT_MAX. */
14548 if (arg_scroll_conservatively > scroll_limit)
14550 arg_scroll_conservatively = scroll_limit + 1;
14551 scroll_max = scroll_limit * FRAME_LINE_HEIGHT (f);
14553 else if (scroll_step || arg_scroll_conservatively || temp_scroll_step)
14554 /* Compute how much we should try to scroll maximally to bring
14555 point into view. */
14556 scroll_max = (max (scroll_step,
14557 max (arg_scroll_conservatively, temp_scroll_step))
14558 * FRAME_LINE_HEIGHT (f));
14559 else if (NUMBERP (BVAR (current_buffer, scroll_down_aggressively))
14560 || NUMBERP (BVAR (current_buffer, scroll_up_aggressively)))
14561 /* We're trying to scroll because of aggressive scrolling but no
14562 scroll_step is set. Choose an arbitrary one. */
14563 scroll_max = 10 * FRAME_LINE_HEIGHT (f);
14564 else
14565 scroll_max = 0;
14567 too_near_end:
14569 /* Decide whether to scroll down. */
14570 if (PT > CHARPOS (startp))
14572 int scroll_margin_y;
14574 /* Compute the pixel ypos of the scroll margin, then move IT to
14575 either that ypos or PT, whichever comes first. */
14576 start_display (&it, w, startp);
14577 scroll_margin_y = it.last_visible_y - this_scroll_margin
14578 - FRAME_LINE_HEIGHT (f) * extra_scroll_margin_lines;
14579 move_it_to (&it, PT, -1, scroll_margin_y - 1, -1,
14580 (MOVE_TO_POS | MOVE_TO_Y));
14582 if (PT > CHARPOS (it.current.pos))
14584 int y0 = line_bottom_y (&it);
14585 /* Compute how many pixels below window bottom to stop searching
14586 for PT. This avoids costly search for PT that is far away if
14587 the user limited scrolling by a small number of lines, but
14588 always finds PT if scroll_conservatively is set to a large
14589 number, such as most-positive-fixnum. */
14590 int slack = max (scroll_max, 10 * FRAME_LINE_HEIGHT (f));
14591 int y_to_move = it.last_visible_y + slack;
14593 /* Compute the distance from the scroll margin to PT or to
14594 the scroll limit, whichever comes first. This should
14595 include the height of the cursor line, to make that line
14596 fully visible. */
14597 move_it_to (&it, PT, -1, y_to_move,
14598 -1, MOVE_TO_POS | MOVE_TO_Y);
14599 dy = line_bottom_y (&it) - y0;
14601 if (dy > scroll_max)
14602 return SCROLLING_FAILED;
14604 if (dy > 0)
14605 scroll_down_p = 1;
14609 if (scroll_down_p)
14611 /* Point is in or below the bottom scroll margin, so move the
14612 window start down. If scrolling conservatively, move it just
14613 enough down to make point visible. If scroll_step is set,
14614 move it down by scroll_step. */
14615 if (arg_scroll_conservatively)
14616 amount_to_scroll
14617 = min (max (dy, FRAME_LINE_HEIGHT (f)),
14618 FRAME_LINE_HEIGHT (f) * arg_scroll_conservatively);
14619 else if (scroll_step || temp_scroll_step)
14620 amount_to_scroll = scroll_max;
14621 else
14623 aggressive = BVAR (current_buffer, scroll_up_aggressively);
14624 height = WINDOW_BOX_TEXT_HEIGHT (w);
14625 if (NUMBERP (aggressive))
14627 double float_amount = XFLOATINT (aggressive) * height;
14628 amount_to_scroll = float_amount;
14629 if (amount_to_scroll == 0 && float_amount > 0)
14630 amount_to_scroll = 1;
14631 /* Don't let point enter the scroll margin near top of
14632 the window. */
14633 if (amount_to_scroll > height - 2*this_scroll_margin + dy)
14634 amount_to_scroll = height - 2*this_scroll_margin + dy;
14638 if (amount_to_scroll <= 0)
14639 return SCROLLING_FAILED;
14641 start_display (&it, w, startp);
14642 if (arg_scroll_conservatively <= scroll_limit)
14643 move_it_vertically (&it, amount_to_scroll);
14644 else
14646 /* Extra precision for users who set scroll-conservatively
14647 to a large number: make sure the amount we scroll
14648 the window start is never less than amount_to_scroll,
14649 which was computed as distance from window bottom to
14650 point. This matters when lines at window top and lines
14651 below window bottom have different height. */
14652 struct it it1;
14653 void *it1data = NULL;
14654 /* We use a temporary it1 because line_bottom_y can modify
14655 its argument, if it moves one line down; see there. */
14656 int start_y;
14658 SAVE_IT (it1, it, it1data);
14659 start_y = line_bottom_y (&it1);
14660 do {
14661 RESTORE_IT (&it, &it, it1data);
14662 move_it_by_lines (&it, 1);
14663 SAVE_IT (it1, it, it1data);
14664 } while (line_bottom_y (&it1) - start_y < amount_to_scroll);
14667 /* If STARTP is unchanged, move it down another screen line. */
14668 if (CHARPOS (it.current.pos) == CHARPOS (startp))
14669 move_it_by_lines (&it, 1);
14670 startp = it.current.pos;
14672 else
14674 struct text_pos scroll_margin_pos = startp;
14676 /* See if point is inside the scroll margin at the top of the
14677 window. */
14678 if (this_scroll_margin)
14680 start_display (&it, w, startp);
14681 move_it_vertically (&it, this_scroll_margin);
14682 scroll_margin_pos = it.current.pos;
14685 if (PT < CHARPOS (scroll_margin_pos))
14687 /* Point is in the scroll margin at the top of the window or
14688 above what is displayed in the window. */
14689 int y0, y_to_move;
14691 /* Compute the vertical distance from PT to the scroll
14692 margin position. Move as far as scroll_max allows, or
14693 one screenful, or 10 screen lines, whichever is largest.
14694 Give up if distance is greater than scroll_max. */
14695 SET_TEXT_POS (pos, PT, PT_BYTE);
14696 start_display (&it, w, pos);
14697 y0 = it.current_y;
14698 y_to_move = max (it.last_visible_y,
14699 max (scroll_max, 10 * FRAME_LINE_HEIGHT (f)));
14700 move_it_to (&it, CHARPOS (scroll_margin_pos), 0,
14701 y_to_move, -1,
14702 MOVE_TO_POS | MOVE_TO_X | MOVE_TO_Y);
14703 dy = it.current_y - y0;
14704 if (dy > scroll_max)
14705 return SCROLLING_FAILED;
14707 /* Compute new window start. */
14708 start_display (&it, w, startp);
14710 if (arg_scroll_conservatively)
14711 amount_to_scroll = max (dy, FRAME_LINE_HEIGHT (f) *
14712 max (scroll_step, temp_scroll_step));
14713 else if (scroll_step || temp_scroll_step)
14714 amount_to_scroll = scroll_max;
14715 else
14717 aggressive = BVAR (current_buffer, scroll_down_aggressively);
14718 height = WINDOW_BOX_TEXT_HEIGHT (w);
14719 if (NUMBERP (aggressive))
14721 double float_amount = XFLOATINT (aggressive) * height;
14722 amount_to_scroll = float_amount;
14723 if (amount_to_scroll == 0 && float_amount > 0)
14724 amount_to_scroll = 1;
14725 amount_to_scroll -=
14726 this_scroll_margin - dy - FRAME_LINE_HEIGHT (f);
14727 /* Don't let point enter the scroll margin near
14728 bottom of the window. */
14729 if (amount_to_scroll > height - 2*this_scroll_margin + dy)
14730 amount_to_scroll = height - 2*this_scroll_margin + dy;
14734 if (amount_to_scroll <= 0)
14735 return SCROLLING_FAILED;
14737 move_it_vertically_backward (&it, amount_to_scroll);
14738 startp = it.current.pos;
14742 /* Run window scroll functions. */
14743 startp = run_window_scroll_functions (window, startp);
14745 /* Display the window. Give up if new fonts are loaded, or if point
14746 doesn't appear. */
14747 if (!try_window (window, startp, 0))
14748 rc = SCROLLING_NEED_LARGER_MATRICES;
14749 else if (w->cursor.vpos < 0)
14751 clear_glyph_matrix (w->desired_matrix);
14752 rc = SCROLLING_FAILED;
14754 else
14756 /* Maybe forget recorded base line for line number display. */
14757 if (!just_this_one_p
14758 || current_buffer->clip_changed
14759 || BEG_UNCHANGED < CHARPOS (startp))
14760 w->base_line_number = Qnil;
14762 /* If cursor ends up on a partially visible line,
14763 treat that as being off the bottom of the screen. */
14764 if (! cursor_row_fully_visible_p (w, extra_scroll_margin_lines <= 1, 0)
14765 /* It's possible that the cursor is on the first line of the
14766 buffer, which is partially obscured due to a vscroll
14767 (Bug#7537). In that case, avoid looping forever . */
14768 && extra_scroll_margin_lines < w->desired_matrix->nrows - 1)
14770 clear_glyph_matrix (w->desired_matrix);
14771 ++extra_scroll_margin_lines;
14772 goto too_near_end;
14774 rc = SCROLLING_SUCCESS;
14777 return rc;
14781 /* Compute a suitable window start for window W if display of W starts
14782 on a continuation line. Value is non-zero if a new window start
14783 was computed.
14785 The new window start will be computed, based on W's width, starting
14786 from the start of the continued line. It is the start of the
14787 screen line with the minimum distance from the old start W->start. */
14789 static int
14790 compute_window_start_on_continuation_line (struct window *w)
14792 struct text_pos pos, start_pos;
14793 int window_start_changed_p = 0;
14795 SET_TEXT_POS_FROM_MARKER (start_pos, w->start);
14797 /* If window start is on a continuation line... Window start may be
14798 < BEGV in case there's invisible text at the start of the
14799 buffer (M-x rmail, for example). */
14800 if (CHARPOS (start_pos) > BEGV
14801 && FETCH_BYTE (BYTEPOS (start_pos) - 1) != '\n')
14803 struct it it;
14804 struct glyph_row *row;
14806 /* Handle the case that the window start is out of range. */
14807 if (CHARPOS (start_pos) < BEGV)
14808 SET_TEXT_POS (start_pos, BEGV, BEGV_BYTE);
14809 else if (CHARPOS (start_pos) > ZV)
14810 SET_TEXT_POS (start_pos, ZV, ZV_BYTE);
14812 /* Find the start of the continued line. This should be fast
14813 because scan_buffer is fast (newline cache). */
14814 row = w->desired_matrix->rows + (WINDOW_WANTS_HEADER_LINE_P (w) ? 1 : 0);
14815 init_iterator (&it, w, CHARPOS (start_pos), BYTEPOS (start_pos),
14816 row, DEFAULT_FACE_ID);
14817 reseat_at_previous_visible_line_start (&it);
14819 /* If the line start is "too far" away from the window start,
14820 say it takes too much time to compute a new window start. */
14821 if (CHARPOS (start_pos) - IT_CHARPOS (it)
14822 < WINDOW_TOTAL_LINES (w) * WINDOW_TOTAL_COLS (w))
14824 int min_distance, distance;
14826 /* Move forward by display lines to find the new window
14827 start. If window width was enlarged, the new start can
14828 be expected to be > the old start. If window width was
14829 decreased, the new window start will be < the old start.
14830 So, we're looking for the display line start with the
14831 minimum distance from the old window start. */
14832 pos = it.current.pos;
14833 min_distance = INFINITY;
14834 while ((distance = eabs (CHARPOS (start_pos) - IT_CHARPOS (it))),
14835 distance < min_distance)
14837 min_distance = distance;
14838 pos = it.current.pos;
14839 move_it_by_lines (&it, 1);
14842 /* Set the window start there. */
14843 SET_MARKER_FROM_TEXT_POS (w->start, pos);
14844 window_start_changed_p = 1;
14848 return window_start_changed_p;
14852 /* Try cursor movement in case text has not changed in window WINDOW,
14853 with window start STARTP. Value is
14855 CURSOR_MOVEMENT_SUCCESS if successful
14857 CURSOR_MOVEMENT_CANNOT_BE_USED if this method cannot be used
14859 CURSOR_MOVEMENT_MUST_SCROLL if we know we have to scroll the
14860 display. *SCROLL_STEP is set to 1, under certain circumstances, if
14861 we want to scroll as if scroll-step were set to 1. See the code.
14863 CURSOR_MOVEMENT_NEED_LARGER_MATRICES if we need larger matrices, in
14864 which case we have to abort this redisplay, and adjust matrices
14865 first. */
14867 enum
14869 CURSOR_MOVEMENT_SUCCESS,
14870 CURSOR_MOVEMENT_CANNOT_BE_USED,
14871 CURSOR_MOVEMENT_MUST_SCROLL,
14872 CURSOR_MOVEMENT_NEED_LARGER_MATRICES
14875 static int
14876 try_cursor_movement (Lisp_Object window, struct text_pos startp, int *scroll_step)
14878 struct window *w = XWINDOW (window);
14879 struct frame *f = XFRAME (w->frame);
14880 int rc = CURSOR_MOVEMENT_CANNOT_BE_USED;
14882 #if GLYPH_DEBUG
14883 if (inhibit_try_cursor_movement)
14884 return rc;
14885 #endif
14887 /* Handle case where text has not changed, only point, and it has
14888 not moved off the frame. */
14889 if (/* Point may be in this window. */
14890 PT >= CHARPOS (startp)
14891 /* Selective display hasn't changed. */
14892 && !current_buffer->clip_changed
14893 /* Function force-mode-line-update is used to force a thorough
14894 redisplay. It sets either windows_or_buffers_changed or
14895 update_mode_lines. So don't take a shortcut here for these
14896 cases. */
14897 && !update_mode_lines
14898 && !windows_or_buffers_changed
14899 && !cursor_type_changed
14900 /* Can't use this case if highlighting a region. When a
14901 region exists, cursor movement has to do more than just
14902 set the cursor. */
14903 && !(!NILP (Vtransient_mark_mode)
14904 && !NILP (BVAR (current_buffer, mark_active)))
14905 && NILP (w->region_showing)
14906 && NILP (Vshow_trailing_whitespace)
14907 /* Right after splitting windows, last_point may be nil. */
14908 && INTEGERP (w->last_point)
14909 /* This code is not used for mini-buffer for the sake of the case
14910 of redisplaying to replace an echo area message; since in
14911 that case the mini-buffer contents per se are usually
14912 unchanged. This code is of no real use in the mini-buffer
14913 since the handling of this_line_start_pos, etc., in redisplay
14914 handles the same cases. */
14915 && !EQ (window, minibuf_window)
14916 /* When splitting windows or for new windows, it happens that
14917 redisplay is called with a nil window_end_vpos or one being
14918 larger than the window. This should really be fixed in
14919 window.c. I don't have this on my list, now, so we do
14920 approximately the same as the old redisplay code. --gerd. */
14921 && INTEGERP (w->window_end_vpos)
14922 && XFASTINT (w->window_end_vpos) < w->current_matrix->nrows
14923 && (FRAME_WINDOW_P (f)
14924 || !overlay_arrow_in_current_buffer_p ()))
14926 int this_scroll_margin, top_scroll_margin;
14927 struct glyph_row *row = NULL;
14929 #if GLYPH_DEBUG
14930 debug_method_add (w, "cursor movement");
14931 #endif
14933 /* Scroll if point within this distance from the top or bottom
14934 of the window. This is a pixel value. */
14935 if (scroll_margin > 0)
14937 this_scroll_margin = min (scroll_margin, WINDOW_TOTAL_LINES (w) / 4);
14938 this_scroll_margin *= FRAME_LINE_HEIGHT (f);
14940 else
14941 this_scroll_margin = 0;
14943 top_scroll_margin = this_scroll_margin;
14944 if (WINDOW_WANTS_HEADER_LINE_P (w))
14945 top_scroll_margin += CURRENT_HEADER_LINE_HEIGHT (w);
14947 /* Start with the row the cursor was displayed during the last
14948 not paused redisplay. Give up if that row is not valid. */
14949 if (w->last_cursor.vpos < 0
14950 || w->last_cursor.vpos >= w->current_matrix->nrows)
14951 rc = CURSOR_MOVEMENT_MUST_SCROLL;
14952 else
14954 row = MATRIX_ROW (w->current_matrix, w->last_cursor.vpos);
14955 if (row->mode_line_p)
14956 ++row;
14957 if (!row->enabled_p)
14958 rc = CURSOR_MOVEMENT_MUST_SCROLL;
14961 if (rc == CURSOR_MOVEMENT_CANNOT_BE_USED)
14963 int scroll_p = 0, must_scroll = 0;
14964 int last_y = window_text_bottom_y (w) - this_scroll_margin;
14966 if (PT > XFASTINT (w->last_point))
14968 /* Point has moved forward. */
14969 while (MATRIX_ROW_END_CHARPOS (row) < PT
14970 && MATRIX_ROW_BOTTOM_Y (row) < last_y)
14972 xassert (row->enabled_p);
14973 ++row;
14976 /* If the end position of a row equals the start
14977 position of the next row, and PT is at that position,
14978 we would rather display cursor in the next line. */
14979 while (MATRIX_ROW_BOTTOM_Y (row) < last_y
14980 && MATRIX_ROW_END_CHARPOS (row) == PT
14981 && row < w->current_matrix->rows
14982 + w->current_matrix->nrows - 1
14983 && MATRIX_ROW_START_CHARPOS (row+1) == PT
14984 && !cursor_row_p (row))
14985 ++row;
14987 /* If within the scroll margin, scroll. Note that
14988 MATRIX_ROW_BOTTOM_Y gives the pixel position at which
14989 the next line would be drawn, and that
14990 this_scroll_margin can be zero. */
14991 if (MATRIX_ROW_BOTTOM_Y (row) > last_y
14992 || PT > MATRIX_ROW_END_CHARPOS (row)
14993 /* Line is completely visible last line in window
14994 and PT is to be set in the next line. */
14995 || (MATRIX_ROW_BOTTOM_Y (row) == last_y
14996 && PT == MATRIX_ROW_END_CHARPOS (row)
14997 && !row->ends_at_zv_p
14998 && !MATRIX_ROW_ENDS_IN_MIDDLE_OF_CHAR_P (row)))
14999 scroll_p = 1;
15001 else if (PT < XFASTINT (w->last_point))
15003 /* Cursor has to be moved backward. Note that PT >=
15004 CHARPOS (startp) because of the outer if-statement. */
15005 while (!row->mode_line_p
15006 && (MATRIX_ROW_START_CHARPOS (row) > PT
15007 || (MATRIX_ROW_START_CHARPOS (row) == PT
15008 && (MATRIX_ROW_STARTS_IN_MIDDLE_OF_CHAR_P (row)
15009 || (/* STARTS_IN_MIDDLE_OF_STRING_P (row) */
15010 row > w->current_matrix->rows
15011 && (row-1)->ends_in_newline_from_string_p))))
15012 && (row->y > top_scroll_margin
15013 || CHARPOS (startp) == BEGV))
15015 xassert (row->enabled_p);
15016 --row;
15019 /* Consider the following case: Window starts at BEGV,
15020 there is invisible, intangible text at BEGV, so that
15021 display starts at some point START > BEGV. It can
15022 happen that we are called with PT somewhere between
15023 BEGV and START. Try to handle that case. */
15024 if (row < w->current_matrix->rows
15025 || row->mode_line_p)
15027 row = w->current_matrix->rows;
15028 if (row->mode_line_p)
15029 ++row;
15032 /* Due to newlines in overlay strings, we may have to
15033 skip forward over overlay strings. */
15034 while (MATRIX_ROW_BOTTOM_Y (row) < last_y
15035 && MATRIX_ROW_END_CHARPOS (row) == PT
15036 && !cursor_row_p (row))
15037 ++row;
15039 /* If within the scroll margin, scroll. */
15040 if (row->y < top_scroll_margin
15041 && CHARPOS (startp) != BEGV)
15042 scroll_p = 1;
15044 else
15046 /* Cursor did not move. So don't scroll even if cursor line
15047 is partially visible, as it was so before. */
15048 rc = CURSOR_MOVEMENT_SUCCESS;
15051 if (PT < MATRIX_ROW_START_CHARPOS (row)
15052 || PT > MATRIX_ROW_END_CHARPOS (row))
15054 /* if PT is not in the glyph row, give up. */
15055 rc = CURSOR_MOVEMENT_MUST_SCROLL;
15056 must_scroll = 1;
15058 else if (rc != CURSOR_MOVEMENT_SUCCESS
15059 && !NILP (BVAR (XBUFFER (w->buffer), bidi_display_reordering)))
15061 struct glyph_row *row1;
15063 /* If rows are bidi-reordered and point moved, back up
15064 until we find a row that does not belong to a
15065 continuation line. This is because we must consider
15066 all rows of a continued line as candidates for the
15067 new cursor positioning, since row start and end
15068 positions change non-linearly with vertical position
15069 in such rows. */
15070 /* FIXME: Revisit this when glyph ``spilling'' in
15071 continuation lines' rows is implemented for
15072 bidi-reordered rows. */
15073 for (row1 = MATRIX_FIRST_TEXT_ROW (w->current_matrix);
15074 MATRIX_ROW_CONTINUATION_LINE_P (row);
15075 --row)
15077 /* If we hit the beginning of the displayed portion
15078 without finding the first row of a continued
15079 line, give up. */
15080 if (row <= row1)
15082 rc = CURSOR_MOVEMENT_MUST_SCROLL;
15083 break;
15085 xassert (row->enabled_p);
15088 if (must_scroll)
15090 else if (rc != CURSOR_MOVEMENT_SUCCESS
15091 && MATRIX_ROW_PARTIALLY_VISIBLE_P (w, row)
15092 /* Make sure this isn't a header line by any chance, since
15093 then MATRIX_ROW_PARTIALLY_VISIBLE_P might yield non-zero. */
15094 && !row->mode_line_p
15095 && make_cursor_line_fully_visible_p)
15097 if (PT == MATRIX_ROW_END_CHARPOS (row)
15098 && !row->ends_at_zv_p
15099 && !MATRIX_ROW_ENDS_IN_MIDDLE_OF_CHAR_P (row))
15100 rc = CURSOR_MOVEMENT_MUST_SCROLL;
15101 else if (row->height > window_box_height (w))
15103 /* If we end up in a partially visible line, let's
15104 make it fully visible, except when it's taller
15105 than the window, in which case we can't do much
15106 about it. */
15107 *scroll_step = 1;
15108 rc = CURSOR_MOVEMENT_MUST_SCROLL;
15110 else
15112 set_cursor_from_row (w, row, w->current_matrix, 0, 0, 0, 0);
15113 if (!cursor_row_fully_visible_p (w, 0, 1))
15114 rc = CURSOR_MOVEMENT_MUST_SCROLL;
15115 else
15116 rc = CURSOR_MOVEMENT_SUCCESS;
15119 else if (scroll_p)
15120 rc = CURSOR_MOVEMENT_MUST_SCROLL;
15121 else if (rc != CURSOR_MOVEMENT_SUCCESS
15122 && !NILP (BVAR (XBUFFER (w->buffer), bidi_display_reordering)))
15124 /* With bidi-reordered rows, there could be more than
15125 one candidate row whose start and end positions
15126 occlude point. We need to let set_cursor_from_row
15127 find the best candidate. */
15128 /* FIXME: Revisit this when glyph ``spilling'' in
15129 continuation lines' rows is implemented for
15130 bidi-reordered rows. */
15131 int rv = 0;
15135 int at_zv_p = 0, exact_match_p = 0;
15137 if (MATRIX_ROW_START_CHARPOS (row) <= PT
15138 && PT <= MATRIX_ROW_END_CHARPOS (row)
15139 && cursor_row_p (row))
15140 rv |= set_cursor_from_row (w, row, w->current_matrix,
15141 0, 0, 0, 0);
15142 /* As soon as we've found the exact match for point,
15143 or the first suitable row whose ends_at_zv_p flag
15144 is set, we are done. */
15145 at_zv_p =
15146 MATRIX_ROW (w->current_matrix, w->cursor.vpos)->ends_at_zv_p;
15147 if (rv && !at_zv_p
15148 && w->cursor.hpos >= 0
15149 && w->cursor.hpos < MATRIX_ROW_USED (w->current_matrix,
15150 w->cursor.vpos))
15152 struct glyph_row *candidate =
15153 MATRIX_ROW (w->current_matrix, w->cursor.vpos);
15154 struct glyph *g =
15155 candidate->glyphs[TEXT_AREA] + w->cursor.hpos;
15156 ptrdiff_t endpos = MATRIX_ROW_END_CHARPOS (candidate);
15158 exact_match_p =
15159 (BUFFERP (g->object) && g->charpos == PT)
15160 || (INTEGERP (g->object)
15161 && (g->charpos == PT
15162 || (g->charpos == 0 && endpos - 1 == PT)));
15164 if (rv && (at_zv_p || exact_match_p))
15166 rc = CURSOR_MOVEMENT_SUCCESS;
15167 break;
15169 if (MATRIX_ROW_BOTTOM_Y (row) == last_y)
15170 break;
15171 ++row;
15173 while (((MATRIX_ROW_CONTINUATION_LINE_P (row)
15174 || row->continued_p)
15175 && MATRIX_ROW_BOTTOM_Y (row) <= last_y)
15176 || (MATRIX_ROW_START_CHARPOS (row) == PT
15177 && MATRIX_ROW_BOTTOM_Y (row) < last_y));
15178 /* If we didn't find any candidate rows, or exited the
15179 loop before all the candidates were examined, signal
15180 to the caller that this method failed. */
15181 if (rc != CURSOR_MOVEMENT_SUCCESS
15182 && !(rv
15183 && !MATRIX_ROW_CONTINUATION_LINE_P (row)
15184 && !row->continued_p))
15185 rc = CURSOR_MOVEMENT_MUST_SCROLL;
15186 else if (rv)
15187 rc = CURSOR_MOVEMENT_SUCCESS;
15189 else
15193 if (set_cursor_from_row (w, row, w->current_matrix, 0, 0, 0, 0))
15195 rc = CURSOR_MOVEMENT_SUCCESS;
15196 break;
15198 ++row;
15200 while (MATRIX_ROW_BOTTOM_Y (row) < last_y
15201 && MATRIX_ROW_START_CHARPOS (row) == PT
15202 && cursor_row_p (row));
15207 return rc;
15210 #if !defined USE_TOOLKIT_SCROLL_BARS || defined USE_GTK
15211 static
15212 #endif
15213 void
15214 set_vertical_scroll_bar (struct window *w)
15216 ptrdiff_t start, end, whole;
15218 /* Calculate the start and end positions for the current window.
15219 At some point, it would be nice to choose between scrollbars
15220 which reflect the whole buffer size, with special markers
15221 indicating narrowing, and scrollbars which reflect only the
15222 visible region.
15224 Note that mini-buffers sometimes aren't displaying any text. */
15225 if (!MINI_WINDOW_P (w)
15226 || (w == XWINDOW (minibuf_window)
15227 && NILP (echo_area_buffer[0])))
15229 struct buffer *buf = XBUFFER (w->buffer);
15230 whole = BUF_ZV (buf) - BUF_BEGV (buf);
15231 start = marker_position (w->start) - BUF_BEGV (buf);
15232 /* I don't think this is guaranteed to be right. For the
15233 moment, we'll pretend it is. */
15234 end = BUF_Z (buf) - XFASTINT (w->window_end_pos) - BUF_BEGV (buf);
15236 if (end < start)
15237 end = start;
15238 if (whole < (end - start))
15239 whole = end - start;
15241 else
15242 start = end = whole = 0;
15244 /* Indicate what this scroll bar ought to be displaying now. */
15245 if (FRAME_TERMINAL (XFRAME (w->frame))->set_vertical_scroll_bar_hook)
15246 (*FRAME_TERMINAL (XFRAME (w->frame))->set_vertical_scroll_bar_hook)
15247 (w, end - start, whole, start);
15251 /* Redisplay leaf window WINDOW. JUST_THIS_ONE_P non-zero means only
15252 selected_window is redisplayed.
15254 We can return without actually redisplaying the window if
15255 fonts_changed_p is nonzero. In that case, redisplay_internal will
15256 retry. */
15258 static void
15259 redisplay_window (Lisp_Object window, int just_this_one_p)
15261 struct window *w = XWINDOW (window);
15262 struct frame *f = XFRAME (w->frame);
15263 struct buffer *buffer = XBUFFER (w->buffer);
15264 struct buffer *old = current_buffer;
15265 struct text_pos lpoint, opoint, startp;
15266 int update_mode_line;
15267 int tem;
15268 struct it it;
15269 /* Record it now because it's overwritten. */
15270 int current_matrix_up_to_date_p = 0;
15271 int used_current_matrix_p = 0;
15272 /* This is less strict than current_matrix_up_to_date_p.
15273 It indicates that the buffer contents and narrowing are unchanged. */
15274 int buffer_unchanged_p = 0;
15275 int temp_scroll_step = 0;
15276 ptrdiff_t count = SPECPDL_INDEX ();
15277 int rc;
15278 int centering_position = -1;
15279 int last_line_misfit = 0;
15280 ptrdiff_t beg_unchanged, end_unchanged;
15282 SET_TEXT_POS (lpoint, PT, PT_BYTE);
15283 opoint = lpoint;
15285 /* W must be a leaf window here. */
15286 xassert (!NILP (w->buffer));
15287 #if GLYPH_DEBUG
15288 *w->desired_matrix->method = 0;
15289 #endif
15291 restart:
15292 reconsider_clip_changes (w, buffer);
15294 /* Has the mode line to be updated? */
15295 update_mode_line = (w->update_mode_line
15296 || update_mode_lines
15297 || buffer->clip_changed
15298 || buffer->prevent_redisplay_optimizations_p);
15300 if (MINI_WINDOW_P (w))
15302 if (w == XWINDOW (echo_area_window)
15303 && !NILP (echo_area_buffer[0]))
15305 if (update_mode_line)
15306 /* We may have to update a tty frame's menu bar or a
15307 tool-bar. Example `M-x C-h C-h C-g'. */
15308 goto finish_menu_bars;
15309 else
15310 /* We've already displayed the echo area glyphs in this window. */
15311 goto finish_scroll_bars;
15313 else if ((w != XWINDOW (minibuf_window)
15314 || minibuf_level == 0)
15315 /* When buffer is nonempty, redisplay window normally. */
15316 && BUF_Z (XBUFFER (w->buffer)) == BUF_BEG (XBUFFER (w->buffer))
15317 /* Quail displays non-mini buffers in minibuffer window.
15318 In that case, redisplay the window normally. */
15319 && !NILP (Fmemq (w->buffer, Vminibuffer_list)))
15321 /* W is a mini-buffer window, but it's not active, so clear
15322 it. */
15323 int yb = window_text_bottom_y (w);
15324 struct glyph_row *row;
15325 int y;
15327 for (y = 0, row = w->desired_matrix->rows;
15328 y < yb;
15329 y += row->height, ++row)
15330 blank_row (w, row, y);
15331 goto finish_scroll_bars;
15334 clear_glyph_matrix (w->desired_matrix);
15337 /* Otherwise set up data on this window; select its buffer and point
15338 value. */
15339 /* Really select the buffer, for the sake of buffer-local
15340 variables. */
15341 set_buffer_internal_1 (XBUFFER (w->buffer));
15343 current_matrix_up_to_date_p
15344 = (!NILP (w->window_end_valid)
15345 && !current_buffer->clip_changed
15346 && !current_buffer->prevent_redisplay_optimizations_p
15347 && XFASTINT (w->last_modified) >= MODIFF
15348 && XFASTINT (w->last_overlay_modified) >= OVERLAY_MODIFF);
15350 /* Run the window-bottom-change-functions
15351 if it is possible that the text on the screen has changed
15352 (either due to modification of the text, or any other reason). */
15353 if (!current_matrix_up_to_date_p
15354 && !NILP (Vwindow_text_change_functions))
15356 safe_run_hooks (Qwindow_text_change_functions);
15357 goto restart;
15360 beg_unchanged = BEG_UNCHANGED;
15361 end_unchanged = END_UNCHANGED;
15363 SET_TEXT_POS (opoint, PT, PT_BYTE);
15365 specbind (Qinhibit_point_motion_hooks, Qt);
15367 buffer_unchanged_p
15368 = (!NILP (w->window_end_valid)
15369 && !current_buffer->clip_changed
15370 && XFASTINT (w->last_modified) >= MODIFF
15371 && XFASTINT (w->last_overlay_modified) >= OVERLAY_MODIFF);
15373 /* When windows_or_buffers_changed is non-zero, we can't rely on
15374 the window end being valid, so set it to nil there. */
15375 if (windows_or_buffers_changed)
15377 /* If window starts on a continuation line, maybe adjust the
15378 window start in case the window's width changed. */
15379 if (XMARKER (w->start)->buffer == current_buffer)
15380 compute_window_start_on_continuation_line (w);
15382 w->window_end_valid = Qnil;
15385 /* Some sanity checks. */
15386 CHECK_WINDOW_END (w);
15387 if (Z == Z_BYTE && CHARPOS (opoint) != BYTEPOS (opoint))
15388 abort ();
15389 if (BYTEPOS (opoint) < CHARPOS (opoint))
15390 abort ();
15392 /* If %c is in mode line, update it if needed. */
15393 if (!NILP (w->column_number_displayed)
15394 /* This alternative quickly identifies a common case
15395 where no change is needed. */
15396 && !(PT == XFASTINT (w->last_point)
15397 && XFASTINT (w->last_modified) >= MODIFF
15398 && XFASTINT (w->last_overlay_modified) >= OVERLAY_MODIFF)
15399 && (XFASTINT (w->column_number_displayed) != current_column ()))
15400 update_mode_line = 1;
15402 /* Count number of windows showing the selected buffer. An indirect
15403 buffer counts as its base buffer. */
15404 if (!just_this_one_p)
15406 struct buffer *current_base, *window_base;
15407 current_base = current_buffer;
15408 window_base = XBUFFER (XWINDOW (selected_window)->buffer);
15409 if (current_base->base_buffer)
15410 current_base = current_base->base_buffer;
15411 if (window_base->base_buffer)
15412 window_base = window_base->base_buffer;
15413 if (current_base == window_base)
15414 buffer_shared++;
15417 /* Point refers normally to the selected window. For any other
15418 window, set up appropriate value. */
15419 if (!EQ (window, selected_window))
15421 ptrdiff_t new_pt = XMARKER (w->pointm)->charpos;
15422 ptrdiff_t new_pt_byte = marker_byte_position (w->pointm);
15423 if (new_pt < BEGV)
15425 new_pt = BEGV;
15426 new_pt_byte = BEGV_BYTE;
15427 set_marker_both (w->pointm, Qnil, BEGV, BEGV_BYTE);
15429 else if (new_pt > (ZV - 1))
15431 new_pt = ZV;
15432 new_pt_byte = ZV_BYTE;
15433 set_marker_both (w->pointm, Qnil, ZV, ZV_BYTE);
15436 /* We don't use SET_PT so that the point-motion hooks don't run. */
15437 TEMP_SET_PT_BOTH (new_pt, new_pt_byte);
15440 /* If any of the character widths specified in the display table
15441 have changed, invalidate the width run cache. It's true that
15442 this may be a bit late to catch such changes, but the rest of
15443 redisplay goes (non-fatally) haywire when the display table is
15444 changed, so why should we worry about doing any better? */
15445 if (current_buffer->width_run_cache)
15447 struct Lisp_Char_Table *disptab = buffer_display_table ();
15449 if (! disptab_matches_widthtab (disptab,
15450 XVECTOR (BVAR (current_buffer, width_table))))
15452 invalidate_region_cache (current_buffer,
15453 current_buffer->width_run_cache,
15454 BEG, Z);
15455 recompute_width_table (current_buffer, disptab);
15459 /* If window-start is screwed up, choose a new one. */
15460 if (XMARKER (w->start)->buffer != current_buffer)
15461 goto recenter;
15463 SET_TEXT_POS_FROM_MARKER (startp, w->start);
15465 /* If someone specified a new starting point but did not insist,
15466 check whether it can be used. */
15467 if (w->optional_new_start
15468 && CHARPOS (startp) >= BEGV
15469 && CHARPOS (startp) <= ZV)
15471 w->optional_new_start = 0;
15472 start_display (&it, w, startp);
15473 move_it_to (&it, PT, 0, it.last_visible_y, -1,
15474 MOVE_TO_POS | MOVE_TO_X | MOVE_TO_Y);
15475 if (IT_CHARPOS (it) == PT)
15476 w->force_start = 1;
15477 /* IT may overshoot PT if text at PT is invisible. */
15478 else if (IT_CHARPOS (it) > PT && CHARPOS (startp) <= PT)
15479 w->force_start = 1;
15482 force_start:
15484 /* Handle case where place to start displaying has been specified,
15485 unless the specified location is outside the accessible range. */
15486 if (w->force_start || w->frozen_window_start_p)
15488 /* We set this later on if we have to adjust point. */
15489 int new_vpos = -1;
15491 w->force_start = 0;
15492 w->vscroll = 0;
15493 w->window_end_valid = Qnil;
15495 /* Forget any recorded base line for line number display. */
15496 if (!buffer_unchanged_p)
15497 w->base_line_number = Qnil;
15499 /* Redisplay the mode line. Select the buffer properly for that.
15500 Also, run the hook window-scroll-functions
15501 because we have scrolled. */
15502 /* Note, we do this after clearing force_start because
15503 if there's an error, it is better to forget about force_start
15504 than to get into an infinite loop calling the hook functions
15505 and having them get more errors. */
15506 if (!update_mode_line
15507 || ! NILP (Vwindow_scroll_functions))
15509 update_mode_line = 1;
15510 w->update_mode_line = 1;
15511 startp = run_window_scroll_functions (window, startp);
15514 w->last_modified = make_number (0);
15515 w->last_overlay_modified = make_number (0);
15516 if (CHARPOS (startp) < BEGV)
15517 SET_TEXT_POS (startp, BEGV, BEGV_BYTE);
15518 else if (CHARPOS (startp) > ZV)
15519 SET_TEXT_POS (startp, ZV, ZV_BYTE);
15521 /* Redisplay, then check if cursor has been set during the
15522 redisplay. Give up if new fonts were loaded. */
15523 /* We used to issue a CHECK_MARGINS argument to try_window here,
15524 but this causes scrolling to fail when point begins inside
15525 the scroll margin (bug#148) -- cyd */
15526 if (!try_window (window, startp, 0))
15528 w->force_start = 1;
15529 clear_glyph_matrix (w->desired_matrix);
15530 goto need_larger_matrices;
15533 if (w->cursor.vpos < 0 && !w->frozen_window_start_p)
15535 /* If point does not appear, try to move point so it does
15536 appear. The desired matrix has been built above, so we
15537 can use it here. */
15538 new_vpos = window_box_height (w) / 2;
15541 if (!cursor_row_fully_visible_p (w, 0, 0))
15543 /* Point does appear, but on a line partly visible at end of window.
15544 Move it back to a fully-visible line. */
15545 new_vpos = window_box_height (w);
15548 /* If we need to move point for either of the above reasons,
15549 now actually do it. */
15550 if (new_vpos >= 0)
15552 struct glyph_row *row;
15554 row = MATRIX_FIRST_TEXT_ROW (w->desired_matrix);
15555 while (MATRIX_ROW_BOTTOM_Y (row) < new_vpos)
15556 ++row;
15558 TEMP_SET_PT_BOTH (MATRIX_ROW_START_CHARPOS (row),
15559 MATRIX_ROW_START_BYTEPOS (row));
15561 if (w != XWINDOW (selected_window))
15562 set_marker_both (w->pointm, Qnil, PT, PT_BYTE);
15563 else if (current_buffer == old)
15564 SET_TEXT_POS (lpoint, PT, PT_BYTE);
15566 set_cursor_from_row (w, row, w->desired_matrix, 0, 0, 0, 0);
15568 /* If we are highlighting the region, then we just changed
15569 the region, so redisplay to show it. */
15570 if (!NILP (Vtransient_mark_mode)
15571 && !NILP (BVAR (current_buffer, mark_active)))
15573 clear_glyph_matrix (w->desired_matrix);
15574 if (!try_window (window, startp, 0))
15575 goto need_larger_matrices;
15579 #if GLYPH_DEBUG
15580 debug_method_add (w, "forced window start");
15581 #endif
15582 goto done;
15585 /* Handle case where text has not changed, only point, and it has
15586 not moved off the frame, and we are not retrying after hscroll.
15587 (current_matrix_up_to_date_p is nonzero when retrying.) */
15588 if (current_matrix_up_to_date_p
15589 && (rc = try_cursor_movement (window, startp, &temp_scroll_step),
15590 rc != CURSOR_MOVEMENT_CANNOT_BE_USED))
15592 switch (rc)
15594 case CURSOR_MOVEMENT_SUCCESS:
15595 used_current_matrix_p = 1;
15596 goto done;
15598 case CURSOR_MOVEMENT_MUST_SCROLL:
15599 goto try_to_scroll;
15601 default:
15602 abort ();
15605 /* If current starting point was originally the beginning of a line
15606 but no longer is, find a new starting point. */
15607 else if (w->start_at_line_beg
15608 && !(CHARPOS (startp) <= BEGV
15609 || FETCH_BYTE (BYTEPOS (startp) - 1) == '\n'))
15611 #if GLYPH_DEBUG
15612 debug_method_add (w, "recenter 1");
15613 #endif
15614 goto recenter;
15617 /* Try scrolling with try_window_id. Value is > 0 if update has
15618 been done, it is -1 if we know that the same window start will
15619 not work. It is 0 if unsuccessful for some other reason. */
15620 else if ((tem = try_window_id (w)) != 0)
15622 #if GLYPH_DEBUG
15623 debug_method_add (w, "try_window_id %d", tem);
15624 #endif
15626 if (fonts_changed_p)
15627 goto need_larger_matrices;
15628 if (tem > 0)
15629 goto done;
15631 /* Otherwise try_window_id has returned -1 which means that we
15632 don't want the alternative below this comment to execute. */
15634 else if (CHARPOS (startp) >= BEGV
15635 && CHARPOS (startp) <= ZV
15636 && PT >= CHARPOS (startp)
15637 && (CHARPOS (startp) < ZV
15638 /* Avoid starting at end of buffer. */
15639 || CHARPOS (startp) == BEGV
15640 || (XFASTINT (w->last_modified) >= MODIFF
15641 && XFASTINT (w->last_overlay_modified) >= OVERLAY_MODIFF)))
15643 int d1, d2, d3, d4, d5, d6;
15645 /* If first window line is a continuation line, and window start
15646 is inside the modified region, but the first change is before
15647 current window start, we must select a new window start.
15649 However, if this is the result of a down-mouse event (e.g. by
15650 extending the mouse-drag-overlay), we don't want to select a
15651 new window start, since that would change the position under
15652 the mouse, resulting in an unwanted mouse-movement rather
15653 than a simple mouse-click. */
15654 if (!w->start_at_line_beg
15655 && NILP (do_mouse_tracking)
15656 && CHARPOS (startp) > BEGV
15657 && CHARPOS (startp) > BEG + beg_unchanged
15658 && CHARPOS (startp) <= Z - end_unchanged
15659 /* Even if w->start_at_line_beg is nil, a new window may
15660 start at a line_beg, since that's how set_buffer_window
15661 sets it. So, we need to check the return value of
15662 compute_window_start_on_continuation_line. (See also
15663 bug#197). */
15664 && XMARKER (w->start)->buffer == current_buffer
15665 && compute_window_start_on_continuation_line (w)
15666 /* It doesn't make sense to force the window start like we
15667 do at label force_start if it is already known that point
15668 will not be visible in the resulting window, because
15669 doing so will move point from its correct position
15670 instead of scrolling the window to bring point into view.
15671 See bug#9324. */
15672 && pos_visible_p (w, PT, &d1, &d2, &d3, &d4, &d5, &d6))
15674 w->force_start = 1;
15675 SET_TEXT_POS_FROM_MARKER (startp, w->start);
15676 goto force_start;
15679 #if GLYPH_DEBUG
15680 debug_method_add (w, "same window start");
15681 #endif
15683 /* Try to redisplay starting at same place as before.
15684 If point has not moved off frame, accept the results. */
15685 if (!current_matrix_up_to_date_p
15686 /* Don't use try_window_reusing_current_matrix in this case
15687 because a window scroll function can have changed the
15688 buffer. */
15689 || !NILP (Vwindow_scroll_functions)
15690 || MINI_WINDOW_P (w)
15691 || !(used_current_matrix_p
15692 = try_window_reusing_current_matrix (w)))
15694 IF_DEBUG (debug_method_add (w, "1"));
15695 if (try_window (window, startp, TRY_WINDOW_CHECK_MARGINS) < 0)
15696 /* -1 means we need to scroll.
15697 0 means we need new matrices, but fonts_changed_p
15698 is set in that case, so we will detect it below. */
15699 goto try_to_scroll;
15702 if (fonts_changed_p)
15703 goto need_larger_matrices;
15705 if (w->cursor.vpos >= 0)
15707 if (!just_this_one_p
15708 || current_buffer->clip_changed
15709 || BEG_UNCHANGED < CHARPOS (startp))
15710 /* Forget any recorded base line for line number display. */
15711 w->base_line_number = Qnil;
15713 if (!cursor_row_fully_visible_p (w, 1, 0))
15715 clear_glyph_matrix (w->desired_matrix);
15716 last_line_misfit = 1;
15718 /* Drop through and scroll. */
15719 else
15720 goto done;
15722 else
15723 clear_glyph_matrix (w->desired_matrix);
15726 try_to_scroll:
15728 w->last_modified = make_number (0);
15729 w->last_overlay_modified = make_number (0);
15731 /* Redisplay the mode line. Select the buffer properly for that. */
15732 if (!update_mode_line)
15734 update_mode_line = 1;
15735 w->update_mode_line = 1;
15738 /* Try to scroll by specified few lines. */
15739 if ((scroll_conservatively
15740 || emacs_scroll_step
15741 || temp_scroll_step
15742 || NUMBERP (BVAR (current_buffer, scroll_up_aggressively))
15743 || NUMBERP (BVAR (current_buffer, scroll_down_aggressively)))
15744 && CHARPOS (startp) >= BEGV
15745 && CHARPOS (startp) <= ZV)
15747 /* The function returns -1 if new fonts were loaded, 1 if
15748 successful, 0 if not successful. */
15749 int ss = try_scrolling (window, just_this_one_p,
15750 scroll_conservatively,
15751 emacs_scroll_step,
15752 temp_scroll_step, last_line_misfit);
15753 switch (ss)
15755 case SCROLLING_SUCCESS:
15756 goto done;
15758 case SCROLLING_NEED_LARGER_MATRICES:
15759 goto need_larger_matrices;
15761 case SCROLLING_FAILED:
15762 break;
15764 default:
15765 abort ();
15769 /* Finally, just choose a place to start which positions point
15770 according to user preferences. */
15772 recenter:
15774 #if GLYPH_DEBUG
15775 debug_method_add (w, "recenter");
15776 #endif
15778 /* w->vscroll = 0; */
15780 /* Forget any previously recorded base line for line number display. */
15781 if (!buffer_unchanged_p)
15782 w->base_line_number = Qnil;
15784 /* Determine the window start relative to point. */
15785 init_iterator (&it, w, PT, PT_BYTE, NULL, DEFAULT_FACE_ID);
15786 it.current_y = it.last_visible_y;
15787 if (centering_position < 0)
15789 int margin =
15790 scroll_margin > 0
15791 ? min (scroll_margin, WINDOW_TOTAL_LINES (w) / 4)
15792 : 0;
15793 ptrdiff_t margin_pos = CHARPOS (startp);
15794 Lisp_Object aggressive;
15795 int scrolling_up;
15797 /* If there is a scroll margin at the top of the window, find
15798 its character position. */
15799 if (margin
15800 /* Cannot call start_display if startp is not in the
15801 accessible region of the buffer. This can happen when we
15802 have just switched to a different buffer and/or changed
15803 its restriction. In that case, startp is initialized to
15804 the character position 1 (BEGV) because we did not yet
15805 have chance to display the buffer even once. */
15806 && BEGV <= CHARPOS (startp) && CHARPOS (startp) <= ZV)
15808 struct it it1;
15809 void *it1data = NULL;
15811 SAVE_IT (it1, it, it1data);
15812 start_display (&it1, w, startp);
15813 move_it_vertically (&it1, margin * FRAME_LINE_HEIGHT (f));
15814 margin_pos = IT_CHARPOS (it1);
15815 RESTORE_IT (&it, &it, it1data);
15817 scrolling_up = PT > margin_pos;
15818 aggressive =
15819 scrolling_up
15820 ? BVAR (current_buffer, scroll_up_aggressively)
15821 : BVAR (current_buffer, scroll_down_aggressively);
15823 if (!MINI_WINDOW_P (w)
15824 && (scroll_conservatively > SCROLL_LIMIT || NUMBERP (aggressive)))
15826 int pt_offset = 0;
15828 /* Setting scroll-conservatively overrides
15829 scroll-*-aggressively. */
15830 if (!scroll_conservatively && NUMBERP (aggressive))
15832 double float_amount = XFLOATINT (aggressive);
15834 pt_offset = float_amount * WINDOW_BOX_TEXT_HEIGHT (w);
15835 if (pt_offset == 0 && float_amount > 0)
15836 pt_offset = 1;
15837 if (pt_offset && margin > 0)
15838 margin -= 1;
15840 /* Compute how much to move the window start backward from
15841 point so that point will be displayed where the user
15842 wants it. */
15843 if (scrolling_up)
15845 centering_position = it.last_visible_y;
15846 if (pt_offset)
15847 centering_position -= pt_offset;
15848 centering_position -=
15849 FRAME_LINE_HEIGHT (f) * (1 + margin + (last_line_misfit != 0))
15850 + WINDOW_HEADER_LINE_HEIGHT (w);
15851 /* Don't let point enter the scroll margin near top of
15852 the window. */
15853 if (centering_position < margin * FRAME_LINE_HEIGHT (f))
15854 centering_position = margin * FRAME_LINE_HEIGHT (f);
15856 else
15857 centering_position = margin * FRAME_LINE_HEIGHT (f) + pt_offset;
15859 else
15860 /* Set the window start half the height of the window backward
15861 from point. */
15862 centering_position = window_box_height (w) / 2;
15864 move_it_vertically_backward (&it, centering_position);
15866 xassert (IT_CHARPOS (it) >= BEGV);
15868 /* The function move_it_vertically_backward may move over more
15869 than the specified y-distance. If it->w is small, e.g. a
15870 mini-buffer window, we may end up in front of the window's
15871 display area. Start displaying at the start of the line
15872 containing PT in this case. */
15873 if (it.current_y <= 0)
15875 init_iterator (&it, w, PT, PT_BYTE, NULL, DEFAULT_FACE_ID);
15876 move_it_vertically_backward (&it, 0);
15877 it.current_y = 0;
15880 it.current_x = it.hpos = 0;
15882 /* Set the window start position here explicitly, to avoid an
15883 infinite loop in case the functions in window-scroll-functions
15884 get errors. */
15885 set_marker_both (w->start, Qnil, IT_CHARPOS (it), IT_BYTEPOS (it));
15887 /* Run scroll hooks. */
15888 startp = run_window_scroll_functions (window, it.current.pos);
15890 /* Redisplay the window. */
15891 if (!current_matrix_up_to_date_p
15892 || windows_or_buffers_changed
15893 || cursor_type_changed
15894 /* Don't use try_window_reusing_current_matrix in this case
15895 because it can have changed the buffer. */
15896 || !NILP (Vwindow_scroll_functions)
15897 || !just_this_one_p
15898 || MINI_WINDOW_P (w)
15899 || !(used_current_matrix_p
15900 = try_window_reusing_current_matrix (w)))
15901 try_window (window, startp, 0);
15903 /* If new fonts have been loaded (due to fontsets), give up. We
15904 have to start a new redisplay since we need to re-adjust glyph
15905 matrices. */
15906 if (fonts_changed_p)
15907 goto need_larger_matrices;
15909 /* If cursor did not appear assume that the middle of the window is
15910 in the first line of the window. Do it again with the next line.
15911 (Imagine a window of height 100, displaying two lines of height
15912 60. Moving back 50 from it->last_visible_y will end in the first
15913 line.) */
15914 if (w->cursor.vpos < 0)
15916 if (!NILP (w->window_end_valid)
15917 && PT >= Z - XFASTINT (w->window_end_pos))
15919 clear_glyph_matrix (w->desired_matrix);
15920 move_it_by_lines (&it, 1);
15921 try_window (window, it.current.pos, 0);
15923 else if (PT < IT_CHARPOS (it))
15925 clear_glyph_matrix (w->desired_matrix);
15926 move_it_by_lines (&it, -1);
15927 try_window (window, it.current.pos, 0);
15929 else
15931 /* Not much we can do about it. */
15935 /* Consider the following case: Window starts at BEGV, there is
15936 invisible, intangible text at BEGV, so that display starts at
15937 some point START > BEGV. It can happen that we are called with
15938 PT somewhere between BEGV and START. Try to handle that case. */
15939 if (w->cursor.vpos < 0)
15941 struct glyph_row *row = w->current_matrix->rows;
15942 if (row->mode_line_p)
15943 ++row;
15944 set_cursor_from_row (w, row, w->current_matrix, 0, 0, 0, 0);
15947 if (!cursor_row_fully_visible_p (w, 0, 0))
15949 /* If vscroll is enabled, disable it and try again. */
15950 if (w->vscroll)
15952 w->vscroll = 0;
15953 clear_glyph_matrix (w->desired_matrix);
15954 goto recenter;
15957 /* Users who set scroll-conservatively to a large number want
15958 point just above/below the scroll margin. If we ended up
15959 with point's row partially visible, move the window start to
15960 make that row fully visible and out of the margin. */
15961 if (scroll_conservatively > SCROLL_LIMIT)
15963 int margin =
15964 scroll_margin > 0
15965 ? min (scroll_margin, WINDOW_TOTAL_LINES (w) / 4)
15966 : 0;
15967 int move_down = w->cursor.vpos >= WINDOW_TOTAL_LINES (w) / 2;
15969 move_it_by_lines (&it, move_down ? margin + 1 : -(margin + 1));
15970 clear_glyph_matrix (w->desired_matrix);
15971 if (1 == try_window (window, it.current.pos,
15972 TRY_WINDOW_CHECK_MARGINS))
15973 goto done;
15976 /* If centering point failed to make the whole line visible,
15977 put point at the top instead. That has to make the whole line
15978 visible, if it can be done. */
15979 if (centering_position == 0)
15980 goto done;
15982 clear_glyph_matrix (w->desired_matrix);
15983 centering_position = 0;
15984 goto recenter;
15987 done:
15989 SET_TEXT_POS_FROM_MARKER (startp, w->start);
15990 w->start_at_line_beg = (CHARPOS (startp) == BEGV
15991 || FETCH_BYTE (BYTEPOS (startp) - 1) == '\n');
15993 /* Display the mode line, if we must. */
15994 if ((update_mode_line
15995 /* If window not full width, must redo its mode line
15996 if (a) the window to its side is being redone and
15997 (b) we do a frame-based redisplay. This is a consequence
15998 of how inverted lines are drawn in frame-based redisplay. */
15999 || (!just_this_one_p
16000 && !FRAME_WINDOW_P (f)
16001 && !WINDOW_FULL_WIDTH_P (w))
16002 /* Line number to display. */
16003 || INTEGERP (w->base_line_pos)
16004 /* Column number is displayed and different from the one displayed. */
16005 || (!NILP (w->column_number_displayed)
16006 && (XFASTINT (w->column_number_displayed) != current_column ())))
16007 /* This means that the window has a mode line. */
16008 && (WINDOW_WANTS_MODELINE_P (w)
16009 || WINDOW_WANTS_HEADER_LINE_P (w)))
16011 display_mode_lines (w);
16013 /* If mode line height has changed, arrange for a thorough
16014 immediate redisplay using the correct mode line height. */
16015 if (WINDOW_WANTS_MODELINE_P (w)
16016 && CURRENT_MODE_LINE_HEIGHT (w) != DESIRED_MODE_LINE_HEIGHT (w))
16018 fonts_changed_p = 1;
16019 MATRIX_MODE_LINE_ROW (w->current_matrix)->height
16020 = DESIRED_MODE_LINE_HEIGHT (w);
16023 /* If header line height has changed, arrange for a thorough
16024 immediate redisplay using the correct header line height. */
16025 if (WINDOW_WANTS_HEADER_LINE_P (w)
16026 && CURRENT_HEADER_LINE_HEIGHT (w) != DESIRED_HEADER_LINE_HEIGHT (w))
16028 fonts_changed_p = 1;
16029 MATRIX_HEADER_LINE_ROW (w->current_matrix)->height
16030 = DESIRED_HEADER_LINE_HEIGHT (w);
16033 if (fonts_changed_p)
16034 goto need_larger_matrices;
16037 if (!line_number_displayed
16038 && !BUFFERP (w->base_line_pos))
16040 w->base_line_pos = Qnil;
16041 w->base_line_number = Qnil;
16044 finish_menu_bars:
16046 /* When we reach a frame's selected window, redo the frame's menu bar. */
16047 if (update_mode_line
16048 && EQ (FRAME_SELECTED_WINDOW (f), window))
16050 int redisplay_menu_p = 0;
16052 if (FRAME_WINDOW_P (f))
16054 #if defined (USE_X_TOOLKIT) || defined (HAVE_NTGUI) \
16055 || defined (HAVE_NS) || defined (USE_GTK)
16056 redisplay_menu_p = FRAME_EXTERNAL_MENU_BAR (f);
16057 #else
16058 redisplay_menu_p = FRAME_MENU_BAR_LINES (f) > 0;
16059 #endif
16061 else
16062 redisplay_menu_p = FRAME_MENU_BAR_LINES (f) > 0;
16064 if (redisplay_menu_p)
16065 display_menu_bar (w);
16067 #ifdef HAVE_WINDOW_SYSTEM
16068 if (FRAME_WINDOW_P (f))
16070 #if defined (USE_GTK) || defined (HAVE_NS)
16071 if (FRAME_EXTERNAL_TOOL_BAR (f))
16072 redisplay_tool_bar (f);
16073 #else
16074 if (WINDOWP (f->tool_bar_window)
16075 && (FRAME_TOOL_BAR_LINES (f) > 0
16076 || !NILP (Vauto_resize_tool_bars))
16077 && redisplay_tool_bar (f))
16078 ignore_mouse_drag_p = 1;
16079 #endif
16081 #endif
16084 #ifdef HAVE_WINDOW_SYSTEM
16085 if (FRAME_WINDOW_P (f)
16086 && update_window_fringes (w, (just_this_one_p
16087 || (!used_current_matrix_p && !overlay_arrow_seen)
16088 || w->pseudo_window_p)))
16090 update_begin (f);
16091 BLOCK_INPUT;
16092 if (draw_window_fringes (w, 1))
16093 x_draw_vertical_border (w);
16094 UNBLOCK_INPUT;
16095 update_end (f);
16097 #endif /* HAVE_WINDOW_SYSTEM */
16099 /* We go to this label, with fonts_changed_p nonzero,
16100 if it is necessary to try again using larger glyph matrices.
16101 We have to redeem the scroll bar even in this case,
16102 because the loop in redisplay_internal expects that. */
16103 need_larger_matrices:
16105 finish_scroll_bars:
16107 if (WINDOW_HAS_VERTICAL_SCROLL_BAR (w))
16109 /* Set the thumb's position and size. */
16110 set_vertical_scroll_bar (w);
16112 /* Note that we actually used the scroll bar attached to this
16113 window, so it shouldn't be deleted at the end of redisplay. */
16114 if (FRAME_TERMINAL (f)->redeem_scroll_bar_hook)
16115 (*FRAME_TERMINAL (f)->redeem_scroll_bar_hook) (w);
16118 /* Restore current_buffer and value of point in it. The window
16119 update may have changed the buffer, so first make sure `opoint'
16120 is still valid (Bug#6177). */
16121 if (CHARPOS (opoint) < BEGV)
16122 TEMP_SET_PT_BOTH (BEGV, BEGV_BYTE);
16123 else if (CHARPOS (opoint) > ZV)
16124 TEMP_SET_PT_BOTH (Z, Z_BYTE);
16125 else
16126 TEMP_SET_PT_BOTH (CHARPOS (opoint), BYTEPOS (opoint));
16128 set_buffer_internal_1 (old);
16129 /* Avoid an abort in TEMP_SET_PT_BOTH if the buffer has become
16130 shorter. This can be caused by log truncation in *Messages*. */
16131 if (CHARPOS (lpoint) <= ZV)
16132 TEMP_SET_PT_BOTH (CHARPOS (lpoint), BYTEPOS (lpoint));
16134 unbind_to (count, Qnil);
16138 /* Build the complete desired matrix of WINDOW with a window start
16139 buffer position POS.
16141 Value is 1 if successful. It is zero if fonts were loaded during
16142 redisplay which makes re-adjusting glyph matrices necessary, and -1
16143 if point would appear in the scroll margins.
16144 (We check the former only if TRY_WINDOW_IGNORE_FONTS_CHANGE is
16145 unset in FLAGS, and the latter only if TRY_WINDOW_CHECK_MARGINS is
16146 set in FLAGS.) */
16149 try_window (Lisp_Object window, struct text_pos pos, int flags)
16151 struct window *w = XWINDOW (window);
16152 struct it it;
16153 struct glyph_row *last_text_row = NULL;
16154 struct frame *f = XFRAME (w->frame);
16156 /* Make POS the new window start. */
16157 set_marker_both (w->start, Qnil, CHARPOS (pos), BYTEPOS (pos));
16159 /* Mark cursor position as unknown. No overlay arrow seen. */
16160 w->cursor.vpos = -1;
16161 overlay_arrow_seen = 0;
16163 /* Initialize iterator and info to start at POS. */
16164 start_display (&it, w, pos);
16166 /* Display all lines of W. */
16167 while (it.current_y < it.last_visible_y)
16169 if (display_line (&it))
16170 last_text_row = it.glyph_row - 1;
16171 if (fonts_changed_p && !(flags & TRY_WINDOW_IGNORE_FONTS_CHANGE))
16172 return 0;
16175 /* Don't let the cursor end in the scroll margins. */
16176 if ((flags & TRY_WINDOW_CHECK_MARGINS)
16177 && !MINI_WINDOW_P (w))
16179 int this_scroll_margin;
16181 if (scroll_margin > 0)
16183 this_scroll_margin = min (scroll_margin, WINDOW_TOTAL_LINES (w) / 4);
16184 this_scroll_margin *= FRAME_LINE_HEIGHT (f);
16186 else
16187 this_scroll_margin = 0;
16189 if ((w->cursor.y >= 0 /* not vscrolled */
16190 && w->cursor.y < this_scroll_margin
16191 && CHARPOS (pos) > BEGV
16192 && IT_CHARPOS (it) < ZV)
16193 /* rms: considering make_cursor_line_fully_visible_p here
16194 seems to give wrong results. We don't want to recenter
16195 when the last line is partly visible, we want to allow
16196 that case to be handled in the usual way. */
16197 || w->cursor.y > it.last_visible_y - this_scroll_margin - 1)
16199 w->cursor.vpos = -1;
16200 clear_glyph_matrix (w->desired_matrix);
16201 return -1;
16205 /* If bottom moved off end of frame, change mode line percentage. */
16206 if (XFASTINT (w->window_end_pos) <= 0
16207 && Z != IT_CHARPOS (it))
16208 w->update_mode_line = 1;
16210 /* Set window_end_pos to the offset of the last character displayed
16211 on the window from the end of current_buffer. Set
16212 window_end_vpos to its row number. */
16213 if (last_text_row)
16215 xassert (MATRIX_ROW_DISPLAYS_TEXT_P (last_text_row));
16216 w->window_end_bytepos
16217 = Z_BYTE - MATRIX_ROW_END_BYTEPOS (last_text_row);
16218 w->window_end_pos
16219 = make_number (Z - MATRIX_ROW_END_CHARPOS (last_text_row));
16220 w->window_end_vpos
16221 = make_number (MATRIX_ROW_VPOS (last_text_row, w->desired_matrix));
16222 xassert (MATRIX_ROW (w->desired_matrix, XFASTINT (w->window_end_vpos))
16223 ->displays_text_p);
16225 else
16227 w->window_end_bytepos = Z_BYTE - ZV_BYTE;
16228 w->window_end_pos = make_number (Z - ZV);
16229 w->window_end_vpos = make_number (0);
16232 /* But that is not valid info until redisplay finishes. */
16233 w->window_end_valid = Qnil;
16234 return 1;
16239 /************************************************************************
16240 Window redisplay reusing current matrix when buffer has not changed
16241 ************************************************************************/
16243 /* Try redisplay of window W showing an unchanged buffer with a
16244 different window start than the last time it was displayed by
16245 reusing its current matrix. Value is non-zero if successful.
16246 W->start is the new window start. */
16248 static int
16249 try_window_reusing_current_matrix (struct window *w)
16251 struct frame *f = XFRAME (w->frame);
16252 struct glyph_row *bottom_row;
16253 struct it it;
16254 struct run run;
16255 struct text_pos start, new_start;
16256 int nrows_scrolled, i;
16257 struct glyph_row *last_text_row;
16258 struct glyph_row *last_reused_text_row;
16259 struct glyph_row *start_row;
16260 int start_vpos, min_y, max_y;
16262 #if GLYPH_DEBUG
16263 if (inhibit_try_window_reusing)
16264 return 0;
16265 #endif
16267 if (/* This function doesn't handle terminal frames. */
16268 !FRAME_WINDOW_P (f)
16269 /* Don't try to reuse the display if windows have been split
16270 or such. */
16271 || windows_or_buffers_changed
16272 || cursor_type_changed)
16273 return 0;
16275 /* Can't do this if region may have changed. */
16276 if ((!NILP (Vtransient_mark_mode)
16277 && !NILP (BVAR (current_buffer, mark_active)))
16278 || !NILP (w->region_showing)
16279 || !NILP (Vshow_trailing_whitespace))
16280 return 0;
16282 /* If top-line visibility has changed, give up. */
16283 if (WINDOW_WANTS_HEADER_LINE_P (w)
16284 != MATRIX_HEADER_LINE_ROW (w->current_matrix)->mode_line_p)
16285 return 0;
16287 /* Give up if old or new display is scrolled vertically. We could
16288 make this function handle this, but right now it doesn't. */
16289 start_row = MATRIX_FIRST_TEXT_ROW (w->current_matrix);
16290 if (w->vscroll || MATRIX_ROW_PARTIALLY_VISIBLE_P (w, start_row))
16291 return 0;
16293 /* The variable new_start now holds the new window start. The old
16294 start `start' can be determined from the current matrix. */
16295 SET_TEXT_POS_FROM_MARKER (new_start, w->start);
16296 start = start_row->minpos;
16297 start_vpos = MATRIX_ROW_VPOS (start_row, w->current_matrix);
16299 /* Clear the desired matrix for the display below. */
16300 clear_glyph_matrix (w->desired_matrix);
16302 if (CHARPOS (new_start) <= CHARPOS (start))
16304 /* Don't use this method if the display starts with an ellipsis
16305 displayed for invisible text. It's not easy to handle that case
16306 below, and it's certainly not worth the effort since this is
16307 not a frequent case. */
16308 if (in_ellipses_for_invisible_text_p (&start_row->start, w))
16309 return 0;
16311 IF_DEBUG (debug_method_add (w, "twu1"));
16313 /* Display up to a row that can be reused. The variable
16314 last_text_row is set to the last row displayed that displays
16315 text. Note that it.vpos == 0 if or if not there is a
16316 header-line; it's not the same as the MATRIX_ROW_VPOS! */
16317 start_display (&it, w, new_start);
16318 w->cursor.vpos = -1;
16319 last_text_row = last_reused_text_row = NULL;
16321 while (it.current_y < it.last_visible_y
16322 && !fonts_changed_p)
16324 /* If we have reached into the characters in the START row,
16325 that means the line boundaries have changed. So we
16326 can't start copying with the row START. Maybe it will
16327 work to start copying with the following row. */
16328 while (IT_CHARPOS (it) > CHARPOS (start))
16330 /* Advance to the next row as the "start". */
16331 start_row++;
16332 start = start_row->minpos;
16333 /* If there are no more rows to try, or just one, give up. */
16334 if (start_row == MATRIX_MODE_LINE_ROW (w->current_matrix) - 1
16335 || w->vscroll || MATRIX_ROW_PARTIALLY_VISIBLE_P (w, start_row)
16336 || CHARPOS (start) == ZV)
16338 clear_glyph_matrix (w->desired_matrix);
16339 return 0;
16342 start_vpos = MATRIX_ROW_VPOS (start_row, w->current_matrix);
16344 /* If we have reached alignment, we can copy the rest of the
16345 rows. */
16346 if (IT_CHARPOS (it) == CHARPOS (start)
16347 /* Don't accept "alignment" inside a display vector,
16348 since start_row could have started in the middle of
16349 that same display vector (thus their character
16350 positions match), and we have no way of telling if
16351 that is the case. */
16352 && it.current.dpvec_index < 0)
16353 break;
16355 if (display_line (&it))
16356 last_text_row = it.glyph_row - 1;
16360 /* A value of current_y < last_visible_y means that we stopped
16361 at the previous window start, which in turn means that we
16362 have at least one reusable row. */
16363 if (it.current_y < it.last_visible_y)
16365 struct glyph_row *row;
16367 /* IT.vpos always starts from 0; it counts text lines. */
16368 nrows_scrolled = it.vpos - (start_row - MATRIX_FIRST_TEXT_ROW (w->current_matrix));
16370 /* Find PT if not already found in the lines displayed. */
16371 if (w->cursor.vpos < 0)
16373 int dy = it.current_y - start_row->y;
16375 row = MATRIX_FIRST_TEXT_ROW (w->current_matrix);
16376 row = row_containing_pos (w, PT, row, NULL, dy);
16377 if (row)
16378 set_cursor_from_row (w, row, w->current_matrix, 0, 0,
16379 dy, nrows_scrolled);
16380 else
16382 clear_glyph_matrix (w->desired_matrix);
16383 return 0;
16387 /* Scroll the display. Do it before the current matrix is
16388 changed. The problem here is that update has not yet
16389 run, i.e. part of the current matrix is not up to date.
16390 scroll_run_hook will clear the cursor, and use the
16391 current matrix to get the height of the row the cursor is
16392 in. */
16393 run.current_y = start_row->y;
16394 run.desired_y = it.current_y;
16395 run.height = it.last_visible_y - it.current_y;
16397 if (run.height > 0 && run.current_y != run.desired_y)
16399 update_begin (f);
16400 FRAME_RIF (f)->update_window_begin_hook (w);
16401 FRAME_RIF (f)->clear_window_mouse_face (w);
16402 FRAME_RIF (f)->scroll_run_hook (w, &run);
16403 FRAME_RIF (f)->update_window_end_hook (w, 0, 0);
16404 update_end (f);
16407 /* Shift current matrix down by nrows_scrolled lines. */
16408 bottom_row = MATRIX_BOTTOM_TEXT_ROW (w->current_matrix, w);
16409 rotate_matrix (w->current_matrix,
16410 start_vpos,
16411 MATRIX_ROW_VPOS (bottom_row, w->current_matrix),
16412 nrows_scrolled);
16414 /* Disable lines that must be updated. */
16415 for (i = 0; i < nrows_scrolled; ++i)
16416 (start_row + i)->enabled_p = 0;
16418 /* Re-compute Y positions. */
16419 min_y = WINDOW_HEADER_LINE_HEIGHT (w);
16420 max_y = it.last_visible_y;
16421 for (row = start_row + nrows_scrolled;
16422 row < bottom_row;
16423 ++row)
16425 row->y = it.current_y;
16426 row->visible_height = row->height;
16428 if (row->y < min_y)
16429 row->visible_height -= min_y - row->y;
16430 if (row->y + row->height > max_y)
16431 row->visible_height -= row->y + row->height - max_y;
16432 if (row->fringe_bitmap_periodic_p)
16433 row->redraw_fringe_bitmaps_p = 1;
16435 it.current_y += row->height;
16437 if (MATRIX_ROW_DISPLAYS_TEXT_P (row))
16438 last_reused_text_row = row;
16439 if (MATRIX_ROW_BOTTOM_Y (row) >= it.last_visible_y)
16440 break;
16443 /* Disable lines in the current matrix which are now
16444 below the window. */
16445 for (++row; row < bottom_row; ++row)
16446 row->enabled_p = row->mode_line_p = 0;
16449 /* Update window_end_pos etc.; last_reused_text_row is the last
16450 reused row from the current matrix containing text, if any.
16451 The value of last_text_row is the last displayed line
16452 containing text. */
16453 if (last_reused_text_row)
16455 w->window_end_bytepos
16456 = Z_BYTE - MATRIX_ROW_END_BYTEPOS (last_reused_text_row);
16457 w->window_end_pos
16458 = make_number (Z - MATRIX_ROW_END_CHARPOS (last_reused_text_row));
16459 w->window_end_vpos
16460 = make_number (MATRIX_ROW_VPOS (last_reused_text_row,
16461 w->current_matrix));
16463 else if (last_text_row)
16465 w->window_end_bytepos
16466 = Z_BYTE - MATRIX_ROW_END_BYTEPOS (last_text_row);
16467 w->window_end_pos
16468 = make_number (Z - MATRIX_ROW_END_CHARPOS (last_text_row));
16469 w->window_end_vpos
16470 = make_number (MATRIX_ROW_VPOS (last_text_row, w->desired_matrix));
16472 else
16474 /* This window must be completely empty. */
16475 w->window_end_bytepos = Z_BYTE - ZV_BYTE;
16476 w->window_end_pos = make_number (Z - ZV);
16477 w->window_end_vpos = make_number (0);
16479 w->window_end_valid = Qnil;
16481 /* Update hint: don't try scrolling again in update_window. */
16482 w->desired_matrix->no_scrolling_p = 1;
16484 #if GLYPH_DEBUG
16485 debug_method_add (w, "try_window_reusing_current_matrix 1");
16486 #endif
16487 return 1;
16489 else if (CHARPOS (new_start) > CHARPOS (start))
16491 struct glyph_row *pt_row, *row;
16492 struct glyph_row *first_reusable_row;
16493 struct glyph_row *first_row_to_display;
16494 int dy;
16495 int yb = window_text_bottom_y (w);
16497 /* Find the row starting at new_start, if there is one. Don't
16498 reuse a partially visible line at the end. */
16499 first_reusable_row = start_row;
16500 while (first_reusable_row->enabled_p
16501 && MATRIX_ROW_BOTTOM_Y (first_reusable_row) < yb
16502 && (MATRIX_ROW_START_CHARPOS (first_reusable_row)
16503 < CHARPOS (new_start)))
16504 ++first_reusable_row;
16506 /* Give up if there is no row to reuse. */
16507 if (MATRIX_ROW_BOTTOM_Y (first_reusable_row) >= yb
16508 || !first_reusable_row->enabled_p
16509 || (MATRIX_ROW_START_CHARPOS (first_reusable_row)
16510 != CHARPOS (new_start)))
16511 return 0;
16513 /* We can reuse fully visible rows beginning with
16514 first_reusable_row to the end of the window. Set
16515 first_row_to_display to the first row that cannot be reused.
16516 Set pt_row to the row containing point, if there is any. */
16517 pt_row = NULL;
16518 for (first_row_to_display = first_reusable_row;
16519 MATRIX_ROW_BOTTOM_Y (first_row_to_display) < yb;
16520 ++first_row_to_display)
16522 if (PT >= MATRIX_ROW_START_CHARPOS (first_row_to_display)
16523 && (PT < MATRIX_ROW_END_CHARPOS (first_row_to_display)
16524 || (PT == MATRIX_ROW_END_CHARPOS (first_row_to_display)
16525 && first_row_to_display->ends_at_zv_p
16526 && pt_row == NULL)))
16527 pt_row = first_row_to_display;
16530 /* Start displaying at the start of first_row_to_display. */
16531 xassert (first_row_to_display->y < yb);
16532 init_to_row_start (&it, w, first_row_to_display);
16534 nrows_scrolled = (MATRIX_ROW_VPOS (first_reusable_row, w->current_matrix)
16535 - start_vpos);
16536 it.vpos = (MATRIX_ROW_VPOS (first_row_to_display, w->current_matrix)
16537 - nrows_scrolled);
16538 it.current_y = (first_row_to_display->y - first_reusable_row->y
16539 + WINDOW_HEADER_LINE_HEIGHT (w));
16541 /* Display lines beginning with first_row_to_display in the
16542 desired matrix. Set last_text_row to the last row displayed
16543 that displays text. */
16544 it.glyph_row = MATRIX_ROW (w->desired_matrix, it.vpos);
16545 if (pt_row == NULL)
16546 w->cursor.vpos = -1;
16547 last_text_row = NULL;
16548 while (it.current_y < it.last_visible_y && !fonts_changed_p)
16549 if (display_line (&it))
16550 last_text_row = it.glyph_row - 1;
16552 /* If point is in a reused row, adjust y and vpos of the cursor
16553 position. */
16554 if (pt_row)
16556 w->cursor.vpos -= nrows_scrolled;
16557 w->cursor.y -= first_reusable_row->y - start_row->y;
16560 /* Give up if point isn't in a row displayed or reused. (This
16561 also handles the case where w->cursor.vpos < nrows_scrolled
16562 after the calls to display_line, which can happen with scroll
16563 margins. See bug#1295.) */
16564 if (w->cursor.vpos < 0)
16566 clear_glyph_matrix (w->desired_matrix);
16567 return 0;
16570 /* Scroll the display. */
16571 run.current_y = first_reusable_row->y;
16572 run.desired_y = WINDOW_HEADER_LINE_HEIGHT (w);
16573 run.height = it.last_visible_y - run.current_y;
16574 dy = run.current_y - run.desired_y;
16576 if (run.height)
16578 update_begin (f);
16579 FRAME_RIF (f)->update_window_begin_hook (w);
16580 FRAME_RIF (f)->clear_window_mouse_face (w);
16581 FRAME_RIF (f)->scroll_run_hook (w, &run);
16582 FRAME_RIF (f)->update_window_end_hook (w, 0, 0);
16583 update_end (f);
16586 /* Adjust Y positions of reused rows. */
16587 bottom_row = MATRIX_BOTTOM_TEXT_ROW (w->current_matrix, w);
16588 min_y = WINDOW_HEADER_LINE_HEIGHT (w);
16589 max_y = it.last_visible_y;
16590 for (row = first_reusable_row; row < first_row_to_display; ++row)
16592 row->y -= dy;
16593 row->visible_height = row->height;
16594 if (row->y < min_y)
16595 row->visible_height -= min_y - row->y;
16596 if (row->y + row->height > max_y)
16597 row->visible_height -= row->y + row->height - max_y;
16598 if (row->fringe_bitmap_periodic_p)
16599 row->redraw_fringe_bitmaps_p = 1;
16602 /* Scroll the current matrix. */
16603 xassert (nrows_scrolled > 0);
16604 rotate_matrix (w->current_matrix,
16605 start_vpos,
16606 MATRIX_ROW_VPOS (bottom_row, w->current_matrix),
16607 -nrows_scrolled);
16609 /* Disable rows not reused. */
16610 for (row -= nrows_scrolled; row < bottom_row; ++row)
16611 row->enabled_p = 0;
16613 /* Point may have moved to a different line, so we cannot assume that
16614 the previous cursor position is valid; locate the correct row. */
16615 if (pt_row)
16617 for (row = MATRIX_ROW (w->current_matrix, w->cursor.vpos);
16618 row < bottom_row
16619 && PT >= MATRIX_ROW_END_CHARPOS (row)
16620 && !row->ends_at_zv_p;
16621 row++)
16623 w->cursor.vpos++;
16624 w->cursor.y = row->y;
16626 if (row < bottom_row)
16628 struct glyph *glyph = row->glyphs[TEXT_AREA] + w->cursor.hpos;
16629 struct glyph *end = row->glyphs[TEXT_AREA] + row->used[TEXT_AREA];
16631 /* Can't use this optimization with bidi-reordered glyph
16632 rows, unless cursor is already at point. */
16633 if (!NILP (BVAR (XBUFFER (w->buffer), bidi_display_reordering)))
16635 if (!(w->cursor.hpos >= 0
16636 && w->cursor.hpos < row->used[TEXT_AREA]
16637 && BUFFERP (glyph->object)
16638 && glyph->charpos == PT))
16639 return 0;
16641 else
16642 for (; glyph < end
16643 && (!BUFFERP (glyph->object)
16644 || glyph->charpos < PT);
16645 glyph++)
16647 w->cursor.hpos++;
16648 w->cursor.x += glyph->pixel_width;
16653 /* Adjust window end. A null value of last_text_row means that
16654 the window end is in reused rows which in turn means that
16655 only its vpos can have changed. */
16656 if (last_text_row)
16658 w->window_end_bytepos
16659 = Z_BYTE - MATRIX_ROW_END_BYTEPOS (last_text_row);
16660 w->window_end_pos
16661 = make_number (Z - MATRIX_ROW_END_CHARPOS (last_text_row));
16662 w->window_end_vpos
16663 = make_number (MATRIX_ROW_VPOS (last_text_row, w->desired_matrix));
16665 else
16667 w->window_end_vpos
16668 = make_number (XFASTINT (w->window_end_vpos) - nrows_scrolled);
16671 w->window_end_valid = Qnil;
16672 w->desired_matrix->no_scrolling_p = 1;
16674 #if GLYPH_DEBUG
16675 debug_method_add (w, "try_window_reusing_current_matrix 2");
16676 #endif
16677 return 1;
16680 return 0;
16685 /************************************************************************
16686 Window redisplay reusing current matrix when buffer has changed
16687 ************************************************************************/
16689 static struct glyph_row *find_last_unchanged_at_beg_row (struct window *);
16690 static struct glyph_row *find_first_unchanged_at_end_row (struct window *,
16691 ptrdiff_t *, ptrdiff_t *);
16692 static struct glyph_row *
16693 find_last_row_displaying_text (struct glyph_matrix *, struct it *,
16694 struct glyph_row *);
16697 /* Return the last row in MATRIX displaying text. If row START is
16698 non-null, start searching with that row. IT gives the dimensions
16699 of the display. Value is null if matrix is empty; otherwise it is
16700 a pointer to the row found. */
16702 static struct glyph_row *
16703 find_last_row_displaying_text (struct glyph_matrix *matrix, struct it *it,
16704 struct glyph_row *start)
16706 struct glyph_row *row, *row_found;
16708 /* Set row_found to the last row in IT->w's current matrix
16709 displaying text. The loop looks funny but think of partially
16710 visible lines. */
16711 row_found = NULL;
16712 row = start ? start : MATRIX_FIRST_TEXT_ROW (matrix);
16713 while (MATRIX_ROW_DISPLAYS_TEXT_P (row))
16715 xassert (row->enabled_p);
16716 row_found = row;
16717 if (MATRIX_ROW_BOTTOM_Y (row) >= it->last_visible_y)
16718 break;
16719 ++row;
16722 return row_found;
16726 /* Return the last row in the current matrix of W that is not affected
16727 by changes at the start of current_buffer that occurred since W's
16728 current matrix was built. Value is null if no such row exists.
16730 BEG_UNCHANGED us the number of characters unchanged at the start of
16731 current_buffer. BEG + BEG_UNCHANGED is the buffer position of the
16732 first changed character in current_buffer. Characters at positions <
16733 BEG + BEG_UNCHANGED are at the same buffer positions as they were
16734 when the current matrix was built. */
16736 static struct glyph_row *
16737 find_last_unchanged_at_beg_row (struct window *w)
16739 ptrdiff_t first_changed_pos = BEG + BEG_UNCHANGED;
16740 struct glyph_row *row;
16741 struct glyph_row *row_found = NULL;
16742 int yb = window_text_bottom_y (w);
16744 /* Find the last row displaying unchanged text. */
16745 for (row = MATRIX_FIRST_TEXT_ROW (w->current_matrix);
16746 MATRIX_ROW_DISPLAYS_TEXT_P (row)
16747 && MATRIX_ROW_START_CHARPOS (row) < first_changed_pos;
16748 ++row)
16750 if (/* If row ends before first_changed_pos, it is unchanged,
16751 except in some case. */
16752 MATRIX_ROW_END_CHARPOS (row) <= first_changed_pos
16753 /* When row ends in ZV and we write at ZV it is not
16754 unchanged. */
16755 && !row->ends_at_zv_p
16756 /* When first_changed_pos is the end of a continued line,
16757 row is not unchanged because it may be no longer
16758 continued. */
16759 && !(MATRIX_ROW_END_CHARPOS (row) == first_changed_pos
16760 && (row->continued_p
16761 || row->exact_window_width_line_p))
16762 /* If ROW->end is beyond ZV, then ROW->end is outdated and
16763 needs to be recomputed, so don't consider this row as
16764 unchanged. This happens when the last line was
16765 bidi-reordered and was killed immediately before this
16766 redisplay cycle. In that case, ROW->end stores the
16767 buffer position of the first visual-order character of
16768 the killed text, which is now beyond ZV. */
16769 && CHARPOS (row->end.pos) <= ZV)
16770 row_found = row;
16772 /* Stop if last visible row. */
16773 if (MATRIX_ROW_BOTTOM_Y (row) >= yb)
16774 break;
16777 return row_found;
16781 /* Find the first glyph row in the current matrix of W that is not
16782 affected by changes at the end of current_buffer since the
16783 time W's current matrix was built.
16785 Return in *DELTA the number of chars by which buffer positions in
16786 unchanged text at the end of current_buffer must be adjusted.
16788 Return in *DELTA_BYTES the corresponding number of bytes.
16790 Value is null if no such row exists, i.e. all rows are affected by
16791 changes. */
16793 static struct glyph_row *
16794 find_first_unchanged_at_end_row (struct window *w,
16795 ptrdiff_t *delta, ptrdiff_t *delta_bytes)
16797 struct glyph_row *row;
16798 struct glyph_row *row_found = NULL;
16800 *delta = *delta_bytes = 0;
16802 /* Display must not have been paused, otherwise the current matrix
16803 is not up to date. */
16804 eassert (!NILP (w->window_end_valid));
16806 /* A value of window_end_pos >= END_UNCHANGED means that the window
16807 end is in the range of changed text. If so, there is no
16808 unchanged row at the end of W's current matrix. */
16809 if (XFASTINT (w->window_end_pos) >= END_UNCHANGED)
16810 return NULL;
16812 /* Set row to the last row in W's current matrix displaying text. */
16813 row = MATRIX_ROW (w->current_matrix, XFASTINT (w->window_end_vpos));
16815 /* If matrix is entirely empty, no unchanged row exists. */
16816 if (MATRIX_ROW_DISPLAYS_TEXT_P (row))
16818 /* The value of row is the last glyph row in the matrix having a
16819 meaningful buffer position in it. The end position of row
16820 corresponds to window_end_pos. This allows us to translate
16821 buffer positions in the current matrix to current buffer
16822 positions for characters not in changed text. */
16823 ptrdiff_t Z_old =
16824 MATRIX_ROW_END_CHARPOS (row) + XFASTINT (w->window_end_pos);
16825 ptrdiff_t Z_BYTE_old =
16826 MATRIX_ROW_END_BYTEPOS (row) + w->window_end_bytepos;
16827 ptrdiff_t last_unchanged_pos, last_unchanged_pos_old;
16828 struct glyph_row *first_text_row
16829 = MATRIX_FIRST_TEXT_ROW (w->current_matrix);
16831 *delta = Z - Z_old;
16832 *delta_bytes = Z_BYTE - Z_BYTE_old;
16834 /* Set last_unchanged_pos to the buffer position of the last
16835 character in the buffer that has not been changed. Z is the
16836 index + 1 of the last character in current_buffer, i.e. by
16837 subtracting END_UNCHANGED we get the index of the last
16838 unchanged character, and we have to add BEG to get its buffer
16839 position. */
16840 last_unchanged_pos = Z - END_UNCHANGED + BEG;
16841 last_unchanged_pos_old = last_unchanged_pos - *delta;
16843 /* Search backward from ROW for a row displaying a line that
16844 starts at a minimum position >= last_unchanged_pos_old. */
16845 for (; row > first_text_row; --row)
16847 /* This used to abort, but it can happen.
16848 It is ok to just stop the search instead here. KFS. */
16849 if (!row->enabled_p || !MATRIX_ROW_DISPLAYS_TEXT_P (row))
16850 break;
16852 if (MATRIX_ROW_START_CHARPOS (row) >= last_unchanged_pos_old)
16853 row_found = row;
16857 eassert (!row_found || MATRIX_ROW_DISPLAYS_TEXT_P (row_found));
16859 return row_found;
16863 /* Make sure that glyph rows in the current matrix of window W
16864 reference the same glyph memory as corresponding rows in the
16865 frame's frame matrix. This function is called after scrolling W's
16866 current matrix on a terminal frame in try_window_id and
16867 try_window_reusing_current_matrix. */
16869 static void
16870 sync_frame_with_window_matrix_rows (struct window *w)
16872 struct frame *f = XFRAME (w->frame);
16873 struct glyph_row *window_row, *window_row_end, *frame_row;
16875 /* Preconditions: W must be a leaf window and full-width. Its frame
16876 must have a frame matrix. */
16877 xassert (NILP (w->hchild) && NILP (w->vchild));
16878 xassert (WINDOW_FULL_WIDTH_P (w));
16879 xassert (!FRAME_WINDOW_P (f));
16881 /* If W is a full-width window, glyph pointers in W's current matrix
16882 have, by definition, to be the same as glyph pointers in the
16883 corresponding frame matrix. Note that frame matrices have no
16884 marginal areas (see build_frame_matrix). */
16885 window_row = w->current_matrix->rows;
16886 window_row_end = window_row + w->current_matrix->nrows;
16887 frame_row = f->current_matrix->rows + WINDOW_TOP_EDGE_LINE (w);
16888 while (window_row < window_row_end)
16890 struct glyph *start = window_row->glyphs[LEFT_MARGIN_AREA];
16891 struct glyph *end = window_row->glyphs[LAST_AREA];
16893 frame_row->glyphs[LEFT_MARGIN_AREA] = start;
16894 frame_row->glyphs[TEXT_AREA] = start;
16895 frame_row->glyphs[RIGHT_MARGIN_AREA] = end;
16896 frame_row->glyphs[LAST_AREA] = end;
16898 /* Disable frame rows whose corresponding window rows have
16899 been disabled in try_window_id. */
16900 if (!window_row->enabled_p)
16901 frame_row->enabled_p = 0;
16903 ++window_row, ++frame_row;
16908 /* Find the glyph row in window W containing CHARPOS. Consider all
16909 rows between START and END (not inclusive). END null means search
16910 all rows to the end of the display area of W. Value is the row
16911 containing CHARPOS or null. */
16913 struct glyph_row *
16914 row_containing_pos (struct window *w, ptrdiff_t charpos,
16915 struct glyph_row *start, struct glyph_row *end, int dy)
16917 struct glyph_row *row = start;
16918 struct glyph_row *best_row = NULL;
16919 ptrdiff_t mindif = BUF_ZV (XBUFFER (w->buffer)) + 1;
16920 int last_y;
16922 /* If we happen to start on a header-line, skip that. */
16923 if (row->mode_line_p)
16924 ++row;
16926 if ((end && row >= end) || !row->enabled_p)
16927 return NULL;
16929 last_y = window_text_bottom_y (w) - dy;
16931 while (1)
16933 /* Give up if we have gone too far. */
16934 if (end && row >= end)
16935 return NULL;
16936 /* This formerly returned if they were equal.
16937 I think that both quantities are of a "last plus one" type;
16938 if so, when they are equal, the row is within the screen. -- rms. */
16939 if (MATRIX_ROW_BOTTOM_Y (row) > last_y)
16940 return NULL;
16942 /* If it is in this row, return this row. */
16943 if (! (MATRIX_ROW_END_CHARPOS (row) < charpos
16944 || (MATRIX_ROW_END_CHARPOS (row) == charpos
16945 /* The end position of a row equals the start
16946 position of the next row. If CHARPOS is there, we
16947 would rather display it in the next line, except
16948 when this line ends in ZV. */
16949 && !row->ends_at_zv_p
16950 && !MATRIX_ROW_ENDS_IN_MIDDLE_OF_CHAR_P (row)))
16951 && charpos >= MATRIX_ROW_START_CHARPOS (row))
16953 struct glyph *g;
16955 if (NILP (BVAR (XBUFFER (w->buffer), bidi_display_reordering))
16956 || (!best_row && !row->continued_p))
16957 return row;
16958 /* In bidi-reordered rows, there could be several rows
16959 occluding point, all of them belonging to the same
16960 continued line. We need to find the row which fits
16961 CHARPOS the best. */
16962 for (g = row->glyphs[TEXT_AREA];
16963 g < row->glyphs[TEXT_AREA] + row->used[TEXT_AREA];
16964 g++)
16966 if (!STRINGP (g->object))
16968 if (g->charpos > 0 && eabs (g->charpos - charpos) < mindif)
16970 mindif = eabs (g->charpos - charpos);
16971 best_row = row;
16972 /* Exact match always wins. */
16973 if (mindif == 0)
16974 return best_row;
16979 else if (best_row && !row->continued_p)
16980 return best_row;
16981 ++row;
16986 /* Try to redisplay window W by reusing its existing display. W's
16987 current matrix must be up to date when this function is called,
16988 i.e. window_end_valid must not be nil.
16990 Value is
16992 1 if display has been updated
16993 0 if otherwise unsuccessful
16994 -1 if redisplay with same window start is known not to succeed
16996 The following steps are performed:
16998 1. Find the last row in the current matrix of W that is not
16999 affected by changes at the start of current_buffer. If no such row
17000 is found, give up.
17002 2. Find the first row in W's current matrix that is not affected by
17003 changes at the end of current_buffer. Maybe there is no such row.
17005 3. Display lines beginning with the row + 1 found in step 1 to the
17006 row found in step 2 or, if step 2 didn't find a row, to the end of
17007 the window.
17009 4. If cursor is not known to appear on the window, give up.
17011 5. If display stopped at the row found in step 2, scroll the
17012 display and current matrix as needed.
17014 6. Maybe display some lines at the end of W, if we must. This can
17015 happen under various circumstances, like a partially visible line
17016 becoming fully visible, or because newly displayed lines are displayed
17017 in smaller font sizes.
17019 7. Update W's window end information. */
17021 static int
17022 try_window_id (struct window *w)
17024 struct frame *f = XFRAME (w->frame);
17025 struct glyph_matrix *current_matrix = w->current_matrix;
17026 struct glyph_matrix *desired_matrix = w->desired_matrix;
17027 struct glyph_row *last_unchanged_at_beg_row;
17028 struct glyph_row *first_unchanged_at_end_row;
17029 struct glyph_row *row;
17030 struct glyph_row *bottom_row;
17031 int bottom_vpos;
17032 struct it it;
17033 ptrdiff_t delta = 0, delta_bytes = 0, stop_pos;
17034 int dvpos, dy;
17035 struct text_pos start_pos;
17036 struct run run;
17037 int first_unchanged_at_end_vpos = 0;
17038 struct glyph_row *last_text_row, *last_text_row_at_end;
17039 struct text_pos start;
17040 ptrdiff_t first_changed_charpos, last_changed_charpos;
17042 #if GLYPH_DEBUG
17043 if (inhibit_try_window_id)
17044 return 0;
17045 #endif
17047 /* This is handy for debugging. */
17048 #if 0
17049 #define GIVE_UP(X) \
17050 do { \
17051 fprintf (stderr, "try_window_id give up %d\n", (X)); \
17052 return 0; \
17053 } while (0)
17054 #else
17055 #define GIVE_UP(X) return 0
17056 #endif
17058 SET_TEXT_POS_FROM_MARKER (start, w->start);
17060 /* Don't use this for mini-windows because these can show
17061 messages and mini-buffers, and we don't handle that here. */
17062 if (MINI_WINDOW_P (w))
17063 GIVE_UP (1);
17065 /* This flag is used to prevent redisplay optimizations. */
17066 if (windows_or_buffers_changed || cursor_type_changed)
17067 GIVE_UP (2);
17069 /* Verify that narrowing has not changed.
17070 Also verify that we were not told to prevent redisplay optimizations.
17071 It would be nice to further
17072 reduce the number of cases where this prevents try_window_id. */
17073 if (current_buffer->clip_changed
17074 || current_buffer->prevent_redisplay_optimizations_p)
17075 GIVE_UP (3);
17077 /* Window must either use window-based redisplay or be full width. */
17078 if (!FRAME_WINDOW_P (f)
17079 && (!FRAME_LINE_INS_DEL_OK (f)
17080 || !WINDOW_FULL_WIDTH_P (w)))
17081 GIVE_UP (4);
17083 /* Give up if point is known NOT to appear in W. */
17084 if (PT < CHARPOS (start))
17085 GIVE_UP (5);
17087 /* Another way to prevent redisplay optimizations. */
17088 if (XFASTINT (w->last_modified) == 0)
17089 GIVE_UP (6);
17091 /* Verify that window is not hscrolled. */
17092 if (XFASTINT (w->hscroll) != 0)
17093 GIVE_UP (7);
17095 /* Verify that display wasn't paused. */
17096 if (NILP (w->window_end_valid))
17097 GIVE_UP (8);
17099 /* Can't use this if highlighting a region because a cursor movement
17100 will do more than just set the cursor. */
17101 if (!NILP (Vtransient_mark_mode)
17102 && !NILP (BVAR (current_buffer, mark_active)))
17103 GIVE_UP (9);
17105 /* Likewise if highlighting trailing whitespace. */
17106 if (!NILP (Vshow_trailing_whitespace))
17107 GIVE_UP (11);
17109 /* Likewise if showing a region. */
17110 if (!NILP (w->region_showing))
17111 GIVE_UP (10);
17113 /* Can't use this if overlay arrow position and/or string have
17114 changed. */
17115 if (overlay_arrows_changed_p ())
17116 GIVE_UP (12);
17118 /* When word-wrap is on, adding a space to the first word of a
17119 wrapped line can change the wrap position, altering the line
17120 above it. It might be worthwhile to handle this more
17121 intelligently, but for now just redisplay from scratch. */
17122 if (!NILP (BVAR (XBUFFER (w->buffer), word_wrap)))
17123 GIVE_UP (21);
17125 /* Under bidi reordering, adding or deleting a character in the
17126 beginning of a paragraph, before the first strong directional
17127 character, can change the base direction of the paragraph (unless
17128 the buffer specifies a fixed paragraph direction), which will
17129 require to redisplay the whole paragraph. It might be worthwhile
17130 to find the paragraph limits and widen the range of redisplayed
17131 lines to that, but for now just give up this optimization and
17132 redisplay from scratch. */
17133 if (!NILP (BVAR (XBUFFER (w->buffer), bidi_display_reordering))
17134 && NILP (BVAR (XBUFFER (w->buffer), bidi_paragraph_direction)))
17135 GIVE_UP (22);
17137 /* Make sure beg_unchanged and end_unchanged are up to date. Do it
17138 only if buffer has really changed. The reason is that the gap is
17139 initially at Z for freshly visited files. The code below would
17140 set end_unchanged to 0 in that case. */
17141 if (MODIFF > SAVE_MODIFF
17142 /* This seems to happen sometimes after saving a buffer. */
17143 || BEG_UNCHANGED + END_UNCHANGED > Z_BYTE)
17145 if (GPT - BEG < BEG_UNCHANGED)
17146 BEG_UNCHANGED = GPT - BEG;
17147 if (Z - GPT < END_UNCHANGED)
17148 END_UNCHANGED = Z - GPT;
17151 /* The position of the first and last character that has been changed. */
17152 first_changed_charpos = BEG + BEG_UNCHANGED;
17153 last_changed_charpos = Z - END_UNCHANGED;
17155 /* If window starts after a line end, and the last change is in
17156 front of that newline, then changes don't affect the display.
17157 This case happens with stealth-fontification. Note that although
17158 the display is unchanged, glyph positions in the matrix have to
17159 be adjusted, of course. */
17160 row = MATRIX_ROW (w->current_matrix, XFASTINT (w->window_end_vpos));
17161 if (MATRIX_ROW_DISPLAYS_TEXT_P (row)
17162 && ((last_changed_charpos < CHARPOS (start)
17163 && CHARPOS (start) == BEGV)
17164 || (last_changed_charpos < CHARPOS (start) - 1
17165 && FETCH_BYTE (BYTEPOS (start) - 1) == '\n')))
17167 ptrdiff_t Z_old, Z_delta, Z_BYTE_old, Z_delta_bytes;
17168 struct glyph_row *r0;
17170 /* Compute how many chars/bytes have been added to or removed
17171 from the buffer. */
17172 Z_old = MATRIX_ROW_END_CHARPOS (row) + XFASTINT (w->window_end_pos);
17173 Z_BYTE_old = MATRIX_ROW_END_BYTEPOS (row) + w->window_end_bytepos;
17174 Z_delta = Z - Z_old;
17175 Z_delta_bytes = Z_BYTE - Z_BYTE_old;
17177 /* Give up if PT is not in the window. Note that it already has
17178 been checked at the start of try_window_id that PT is not in
17179 front of the window start. */
17180 if (PT >= MATRIX_ROW_END_CHARPOS (row) + Z_delta)
17181 GIVE_UP (13);
17183 /* If window start is unchanged, we can reuse the whole matrix
17184 as is, after adjusting glyph positions. No need to compute
17185 the window end again, since its offset from Z hasn't changed. */
17186 r0 = MATRIX_FIRST_TEXT_ROW (current_matrix);
17187 if (CHARPOS (start) == MATRIX_ROW_START_CHARPOS (r0) + Z_delta
17188 && BYTEPOS (start) == MATRIX_ROW_START_BYTEPOS (r0) + Z_delta_bytes
17189 /* PT must not be in a partially visible line. */
17190 && !(PT >= MATRIX_ROW_START_CHARPOS (row) + Z_delta
17191 && MATRIX_ROW_BOTTOM_Y (row) > window_text_bottom_y (w)))
17193 /* Adjust positions in the glyph matrix. */
17194 if (Z_delta || Z_delta_bytes)
17196 struct glyph_row *r1
17197 = MATRIX_BOTTOM_TEXT_ROW (current_matrix, w);
17198 increment_matrix_positions (w->current_matrix,
17199 MATRIX_ROW_VPOS (r0, current_matrix),
17200 MATRIX_ROW_VPOS (r1, current_matrix),
17201 Z_delta, Z_delta_bytes);
17204 /* Set the cursor. */
17205 row = row_containing_pos (w, PT, r0, NULL, 0);
17206 if (row)
17207 set_cursor_from_row (w, row, current_matrix, 0, 0, 0, 0);
17208 else
17209 abort ();
17210 return 1;
17214 /* Handle the case that changes are all below what is displayed in
17215 the window, and that PT is in the window. This shortcut cannot
17216 be taken if ZV is visible in the window, and text has been added
17217 there that is visible in the window. */
17218 if (first_changed_charpos >= MATRIX_ROW_END_CHARPOS (row)
17219 /* ZV is not visible in the window, or there are no
17220 changes at ZV, actually. */
17221 && (current_matrix->zv > MATRIX_ROW_END_CHARPOS (row)
17222 || first_changed_charpos == last_changed_charpos))
17224 struct glyph_row *r0;
17226 /* Give up if PT is not in the window. Note that it already has
17227 been checked at the start of try_window_id that PT is not in
17228 front of the window start. */
17229 if (PT >= MATRIX_ROW_END_CHARPOS (row))
17230 GIVE_UP (14);
17232 /* If window start is unchanged, we can reuse the whole matrix
17233 as is, without changing glyph positions since no text has
17234 been added/removed in front of the window end. */
17235 r0 = MATRIX_FIRST_TEXT_ROW (current_matrix);
17236 if (TEXT_POS_EQUAL_P (start, r0->minpos)
17237 /* PT must not be in a partially visible line. */
17238 && !(PT >= MATRIX_ROW_START_CHARPOS (row)
17239 && MATRIX_ROW_BOTTOM_Y (row) > window_text_bottom_y (w)))
17241 /* We have to compute the window end anew since text
17242 could have been added/removed after it. */
17243 w->window_end_pos
17244 = make_number (Z - MATRIX_ROW_END_CHARPOS (row));
17245 w->window_end_bytepos
17246 = Z_BYTE - MATRIX_ROW_END_BYTEPOS (row);
17248 /* Set the cursor. */
17249 row = row_containing_pos (w, PT, r0, NULL, 0);
17250 if (row)
17251 set_cursor_from_row (w, row, current_matrix, 0, 0, 0, 0);
17252 else
17253 abort ();
17254 return 2;
17258 /* Give up if window start is in the changed area.
17260 The condition used to read
17262 (BEG_UNCHANGED + END_UNCHANGED != Z - BEG && ...)
17264 but why that was tested escapes me at the moment. */
17265 if (CHARPOS (start) >= first_changed_charpos
17266 && CHARPOS (start) <= last_changed_charpos)
17267 GIVE_UP (15);
17269 /* Check that window start agrees with the start of the first glyph
17270 row in its current matrix. Check this after we know the window
17271 start is not in changed text, otherwise positions would not be
17272 comparable. */
17273 row = MATRIX_FIRST_TEXT_ROW (current_matrix);
17274 if (!TEXT_POS_EQUAL_P (start, row->minpos))
17275 GIVE_UP (16);
17277 /* Give up if the window ends in strings. Overlay strings
17278 at the end are difficult to handle, so don't try. */
17279 row = MATRIX_ROW (current_matrix, XFASTINT (w->window_end_vpos));
17280 if (MATRIX_ROW_START_CHARPOS (row) == MATRIX_ROW_END_CHARPOS (row))
17281 GIVE_UP (20);
17283 /* Compute the position at which we have to start displaying new
17284 lines. Some of the lines at the top of the window might be
17285 reusable because they are not displaying changed text. Find the
17286 last row in W's current matrix not affected by changes at the
17287 start of current_buffer. Value is null if changes start in the
17288 first line of window. */
17289 last_unchanged_at_beg_row = find_last_unchanged_at_beg_row (w);
17290 if (last_unchanged_at_beg_row)
17292 /* Avoid starting to display in the middle of a character, a TAB
17293 for instance. This is easier than to set up the iterator
17294 exactly, and it's not a frequent case, so the additional
17295 effort wouldn't really pay off. */
17296 while ((MATRIX_ROW_ENDS_IN_MIDDLE_OF_CHAR_P (last_unchanged_at_beg_row)
17297 || last_unchanged_at_beg_row->ends_in_newline_from_string_p)
17298 && last_unchanged_at_beg_row > w->current_matrix->rows)
17299 --last_unchanged_at_beg_row;
17301 if (MATRIX_ROW_ENDS_IN_MIDDLE_OF_CHAR_P (last_unchanged_at_beg_row))
17302 GIVE_UP (17);
17304 if (init_to_row_end (&it, w, last_unchanged_at_beg_row) == 0)
17305 GIVE_UP (18);
17306 start_pos = it.current.pos;
17308 /* Start displaying new lines in the desired matrix at the same
17309 vpos we would use in the current matrix, i.e. below
17310 last_unchanged_at_beg_row. */
17311 it.vpos = 1 + MATRIX_ROW_VPOS (last_unchanged_at_beg_row,
17312 current_matrix);
17313 it.glyph_row = MATRIX_ROW (desired_matrix, it.vpos);
17314 it.current_y = MATRIX_ROW_BOTTOM_Y (last_unchanged_at_beg_row);
17316 xassert (it.hpos == 0 && it.current_x == 0);
17318 else
17320 /* There are no reusable lines at the start of the window.
17321 Start displaying in the first text line. */
17322 start_display (&it, w, start);
17323 it.vpos = it.first_vpos;
17324 start_pos = it.current.pos;
17327 /* Find the first row that is not affected by changes at the end of
17328 the buffer. Value will be null if there is no unchanged row, in
17329 which case we must redisplay to the end of the window. delta
17330 will be set to the value by which buffer positions beginning with
17331 first_unchanged_at_end_row have to be adjusted due to text
17332 changes. */
17333 first_unchanged_at_end_row
17334 = find_first_unchanged_at_end_row (w, &delta, &delta_bytes);
17335 IF_DEBUG (debug_delta = delta);
17336 IF_DEBUG (debug_delta_bytes = delta_bytes);
17338 /* Set stop_pos to the buffer position up to which we will have to
17339 display new lines. If first_unchanged_at_end_row != NULL, this
17340 is the buffer position of the start of the line displayed in that
17341 row. For first_unchanged_at_end_row == NULL, use 0 to indicate
17342 that we don't stop at a buffer position. */
17343 stop_pos = 0;
17344 if (first_unchanged_at_end_row)
17346 xassert (last_unchanged_at_beg_row == NULL
17347 || first_unchanged_at_end_row >= last_unchanged_at_beg_row);
17349 /* If this is a continuation line, move forward to the next one
17350 that isn't. Changes in lines above affect this line.
17351 Caution: this may move first_unchanged_at_end_row to a row
17352 not displaying text. */
17353 while (MATRIX_ROW_CONTINUATION_LINE_P (first_unchanged_at_end_row)
17354 && MATRIX_ROW_DISPLAYS_TEXT_P (first_unchanged_at_end_row)
17355 && (MATRIX_ROW_BOTTOM_Y (first_unchanged_at_end_row)
17356 < it.last_visible_y))
17357 ++first_unchanged_at_end_row;
17359 if (!MATRIX_ROW_DISPLAYS_TEXT_P (first_unchanged_at_end_row)
17360 || (MATRIX_ROW_BOTTOM_Y (first_unchanged_at_end_row)
17361 >= it.last_visible_y))
17362 first_unchanged_at_end_row = NULL;
17363 else
17365 stop_pos = (MATRIX_ROW_START_CHARPOS (first_unchanged_at_end_row)
17366 + delta);
17367 first_unchanged_at_end_vpos
17368 = MATRIX_ROW_VPOS (first_unchanged_at_end_row, current_matrix);
17369 xassert (stop_pos >= Z - END_UNCHANGED);
17372 else if (last_unchanged_at_beg_row == NULL)
17373 GIVE_UP (19);
17376 #if GLYPH_DEBUG
17378 /* Either there is no unchanged row at the end, or the one we have
17379 now displays text. This is a necessary condition for the window
17380 end pos calculation at the end of this function. */
17381 xassert (first_unchanged_at_end_row == NULL
17382 || MATRIX_ROW_DISPLAYS_TEXT_P (first_unchanged_at_end_row));
17384 debug_last_unchanged_at_beg_vpos
17385 = (last_unchanged_at_beg_row
17386 ? MATRIX_ROW_VPOS (last_unchanged_at_beg_row, current_matrix)
17387 : -1);
17388 debug_first_unchanged_at_end_vpos = first_unchanged_at_end_vpos;
17390 #endif /* GLYPH_DEBUG != 0 */
17393 /* Display new lines. Set last_text_row to the last new line
17394 displayed which has text on it, i.e. might end up as being the
17395 line where the window_end_vpos is. */
17396 w->cursor.vpos = -1;
17397 last_text_row = NULL;
17398 overlay_arrow_seen = 0;
17399 while (it.current_y < it.last_visible_y
17400 && !fonts_changed_p
17401 && (first_unchanged_at_end_row == NULL
17402 || IT_CHARPOS (it) < stop_pos))
17404 if (display_line (&it))
17405 last_text_row = it.glyph_row - 1;
17408 if (fonts_changed_p)
17409 return -1;
17412 /* Compute differences in buffer positions, y-positions etc. for
17413 lines reused at the bottom of the window. Compute what we can
17414 scroll. */
17415 if (first_unchanged_at_end_row
17416 /* No lines reused because we displayed everything up to the
17417 bottom of the window. */
17418 && it.current_y < it.last_visible_y)
17420 dvpos = (it.vpos
17421 - MATRIX_ROW_VPOS (first_unchanged_at_end_row,
17422 current_matrix));
17423 dy = it.current_y - first_unchanged_at_end_row->y;
17424 run.current_y = first_unchanged_at_end_row->y;
17425 run.desired_y = run.current_y + dy;
17426 run.height = it.last_visible_y - max (run.current_y, run.desired_y);
17428 else
17430 delta = delta_bytes = dvpos = dy
17431 = run.current_y = run.desired_y = run.height = 0;
17432 first_unchanged_at_end_row = NULL;
17434 IF_DEBUG (debug_dvpos = dvpos; debug_dy = dy);
17437 /* Find the cursor if not already found. We have to decide whether
17438 PT will appear on this window (it sometimes doesn't, but this is
17439 not a very frequent case.) This decision has to be made before
17440 the current matrix is altered. A value of cursor.vpos < 0 means
17441 that PT is either in one of the lines beginning at
17442 first_unchanged_at_end_row or below the window. Don't care for
17443 lines that might be displayed later at the window end; as
17444 mentioned, this is not a frequent case. */
17445 if (w->cursor.vpos < 0)
17447 /* Cursor in unchanged rows at the top? */
17448 if (PT < CHARPOS (start_pos)
17449 && last_unchanged_at_beg_row)
17451 row = row_containing_pos (w, PT,
17452 MATRIX_FIRST_TEXT_ROW (w->current_matrix),
17453 last_unchanged_at_beg_row + 1, 0);
17454 if (row)
17455 set_cursor_from_row (w, row, w->current_matrix, 0, 0, 0, 0);
17458 /* Start from first_unchanged_at_end_row looking for PT. */
17459 else if (first_unchanged_at_end_row)
17461 row = row_containing_pos (w, PT - delta,
17462 first_unchanged_at_end_row, NULL, 0);
17463 if (row)
17464 set_cursor_from_row (w, row, w->current_matrix, delta,
17465 delta_bytes, dy, dvpos);
17468 /* Give up if cursor was not found. */
17469 if (w->cursor.vpos < 0)
17471 clear_glyph_matrix (w->desired_matrix);
17472 return -1;
17476 /* Don't let the cursor end in the scroll margins. */
17478 int this_scroll_margin, cursor_height;
17480 this_scroll_margin =
17481 max (0, min (scroll_margin, WINDOW_TOTAL_LINES (w) / 4));
17482 this_scroll_margin *= FRAME_LINE_HEIGHT (it.f);
17483 cursor_height = MATRIX_ROW (w->desired_matrix, w->cursor.vpos)->height;
17485 if ((w->cursor.y < this_scroll_margin
17486 && CHARPOS (start) > BEGV)
17487 /* Old redisplay didn't take scroll margin into account at the bottom,
17488 but then global-hl-line-mode doesn't scroll. KFS 2004-06-14 */
17489 || (w->cursor.y + (make_cursor_line_fully_visible_p
17490 ? cursor_height + this_scroll_margin
17491 : 1)) > it.last_visible_y)
17493 w->cursor.vpos = -1;
17494 clear_glyph_matrix (w->desired_matrix);
17495 return -1;
17499 /* Scroll the display. Do it before changing the current matrix so
17500 that xterm.c doesn't get confused about where the cursor glyph is
17501 found. */
17502 if (dy && run.height)
17504 update_begin (f);
17506 if (FRAME_WINDOW_P (f))
17508 FRAME_RIF (f)->update_window_begin_hook (w);
17509 FRAME_RIF (f)->clear_window_mouse_face (w);
17510 FRAME_RIF (f)->scroll_run_hook (w, &run);
17511 FRAME_RIF (f)->update_window_end_hook (w, 0, 0);
17513 else
17515 /* Terminal frame. In this case, dvpos gives the number of
17516 lines to scroll by; dvpos < 0 means scroll up. */
17517 int from_vpos
17518 = MATRIX_ROW_VPOS (first_unchanged_at_end_row, w->current_matrix);
17519 int from = WINDOW_TOP_EDGE_LINE (w) + from_vpos;
17520 int end = (WINDOW_TOP_EDGE_LINE (w)
17521 + (WINDOW_WANTS_HEADER_LINE_P (w) ? 1 : 0)
17522 + window_internal_height (w));
17524 #if defined (HAVE_GPM) || defined (MSDOS)
17525 x_clear_window_mouse_face (w);
17526 #endif
17527 /* Perform the operation on the screen. */
17528 if (dvpos > 0)
17530 /* Scroll last_unchanged_at_beg_row to the end of the
17531 window down dvpos lines. */
17532 set_terminal_window (f, end);
17534 /* On dumb terminals delete dvpos lines at the end
17535 before inserting dvpos empty lines. */
17536 if (!FRAME_SCROLL_REGION_OK (f))
17537 ins_del_lines (f, end - dvpos, -dvpos);
17539 /* Insert dvpos empty lines in front of
17540 last_unchanged_at_beg_row. */
17541 ins_del_lines (f, from, dvpos);
17543 else if (dvpos < 0)
17545 /* Scroll up last_unchanged_at_beg_vpos to the end of
17546 the window to last_unchanged_at_beg_vpos - |dvpos|. */
17547 set_terminal_window (f, end);
17549 /* Delete dvpos lines in front of
17550 last_unchanged_at_beg_vpos. ins_del_lines will set
17551 the cursor to the given vpos and emit |dvpos| delete
17552 line sequences. */
17553 ins_del_lines (f, from + dvpos, dvpos);
17555 /* On a dumb terminal insert dvpos empty lines at the
17556 end. */
17557 if (!FRAME_SCROLL_REGION_OK (f))
17558 ins_del_lines (f, end + dvpos, -dvpos);
17561 set_terminal_window (f, 0);
17564 update_end (f);
17567 /* Shift reused rows of the current matrix to the right position.
17568 BOTTOM_ROW is the last + 1 row in the current matrix reserved for
17569 text. */
17570 bottom_row = MATRIX_BOTTOM_TEXT_ROW (current_matrix, w);
17571 bottom_vpos = MATRIX_ROW_VPOS (bottom_row, current_matrix);
17572 if (dvpos < 0)
17574 rotate_matrix (current_matrix, first_unchanged_at_end_vpos + dvpos,
17575 bottom_vpos, dvpos);
17576 enable_glyph_matrix_rows (current_matrix, bottom_vpos + dvpos,
17577 bottom_vpos, 0);
17579 else if (dvpos > 0)
17581 rotate_matrix (current_matrix, first_unchanged_at_end_vpos,
17582 bottom_vpos, dvpos);
17583 enable_glyph_matrix_rows (current_matrix, first_unchanged_at_end_vpos,
17584 first_unchanged_at_end_vpos + dvpos, 0);
17587 /* For frame-based redisplay, make sure that current frame and window
17588 matrix are in sync with respect to glyph memory. */
17589 if (!FRAME_WINDOW_P (f))
17590 sync_frame_with_window_matrix_rows (w);
17592 /* Adjust buffer positions in reused rows. */
17593 if (delta || delta_bytes)
17594 increment_matrix_positions (current_matrix,
17595 first_unchanged_at_end_vpos + dvpos,
17596 bottom_vpos, delta, delta_bytes);
17598 /* Adjust Y positions. */
17599 if (dy)
17600 shift_glyph_matrix (w, current_matrix,
17601 first_unchanged_at_end_vpos + dvpos,
17602 bottom_vpos, dy);
17604 if (first_unchanged_at_end_row)
17606 first_unchanged_at_end_row += dvpos;
17607 if (first_unchanged_at_end_row->y >= it.last_visible_y
17608 || !MATRIX_ROW_DISPLAYS_TEXT_P (first_unchanged_at_end_row))
17609 first_unchanged_at_end_row = NULL;
17612 /* If scrolling up, there may be some lines to display at the end of
17613 the window. */
17614 last_text_row_at_end = NULL;
17615 if (dy < 0)
17617 /* Scrolling up can leave for example a partially visible line
17618 at the end of the window to be redisplayed. */
17619 /* Set last_row to the glyph row in the current matrix where the
17620 window end line is found. It has been moved up or down in
17621 the matrix by dvpos. */
17622 int last_vpos = XFASTINT (w->window_end_vpos) + dvpos;
17623 struct glyph_row *last_row = MATRIX_ROW (current_matrix, last_vpos);
17625 /* If last_row is the window end line, it should display text. */
17626 xassert (last_row->displays_text_p);
17628 /* If window end line was partially visible before, begin
17629 displaying at that line. Otherwise begin displaying with the
17630 line following it. */
17631 if (MATRIX_ROW_BOTTOM_Y (last_row) - dy >= it.last_visible_y)
17633 init_to_row_start (&it, w, last_row);
17634 it.vpos = last_vpos;
17635 it.current_y = last_row->y;
17637 else
17639 init_to_row_end (&it, w, last_row);
17640 it.vpos = 1 + last_vpos;
17641 it.current_y = MATRIX_ROW_BOTTOM_Y (last_row);
17642 ++last_row;
17645 /* We may start in a continuation line. If so, we have to
17646 get the right continuation_lines_width and current_x. */
17647 it.continuation_lines_width = last_row->continuation_lines_width;
17648 it.hpos = it.current_x = 0;
17650 /* Display the rest of the lines at the window end. */
17651 it.glyph_row = MATRIX_ROW (desired_matrix, it.vpos);
17652 while (it.current_y < it.last_visible_y
17653 && !fonts_changed_p)
17655 /* Is it always sure that the display agrees with lines in
17656 the current matrix? I don't think so, so we mark rows
17657 displayed invalid in the current matrix by setting their
17658 enabled_p flag to zero. */
17659 MATRIX_ROW (w->current_matrix, it.vpos)->enabled_p = 0;
17660 if (display_line (&it))
17661 last_text_row_at_end = it.glyph_row - 1;
17665 /* Update window_end_pos and window_end_vpos. */
17666 if (first_unchanged_at_end_row
17667 && !last_text_row_at_end)
17669 /* Window end line if one of the preserved rows from the current
17670 matrix. Set row to the last row displaying text in current
17671 matrix starting at first_unchanged_at_end_row, after
17672 scrolling. */
17673 xassert (first_unchanged_at_end_row->displays_text_p);
17674 row = find_last_row_displaying_text (w->current_matrix, &it,
17675 first_unchanged_at_end_row);
17676 xassert (row && MATRIX_ROW_DISPLAYS_TEXT_P (row));
17678 w->window_end_pos = make_number (Z - MATRIX_ROW_END_CHARPOS (row));
17679 w->window_end_bytepos = Z_BYTE - MATRIX_ROW_END_BYTEPOS (row);
17680 w->window_end_vpos
17681 = make_number (MATRIX_ROW_VPOS (row, w->current_matrix));
17682 xassert (w->window_end_bytepos >= 0);
17683 IF_DEBUG (debug_method_add (w, "A"));
17685 else if (last_text_row_at_end)
17687 w->window_end_pos
17688 = make_number (Z - MATRIX_ROW_END_CHARPOS (last_text_row_at_end));
17689 w->window_end_bytepos
17690 = Z_BYTE - MATRIX_ROW_END_BYTEPOS (last_text_row_at_end);
17691 w->window_end_vpos
17692 = make_number (MATRIX_ROW_VPOS (last_text_row_at_end, desired_matrix));
17693 xassert (w->window_end_bytepos >= 0);
17694 IF_DEBUG (debug_method_add (w, "B"));
17696 else if (last_text_row)
17698 /* We have displayed either to the end of the window or at the
17699 end of the window, i.e. the last row with text is to be found
17700 in the desired matrix. */
17701 w->window_end_pos
17702 = make_number (Z - MATRIX_ROW_END_CHARPOS (last_text_row));
17703 w->window_end_bytepos
17704 = Z_BYTE - MATRIX_ROW_END_BYTEPOS (last_text_row);
17705 w->window_end_vpos
17706 = make_number (MATRIX_ROW_VPOS (last_text_row, desired_matrix));
17707 xassert (w->window_end_bytepos >= 0);
17709 else if (first_unchanged_at_end_row == NULL
17710 && last_text_row == NULL
17711 && last_text_row_at_end == NULL)
17713 /* Displayed to end of window, but no line containing text was
17714 displayed. Lines were deleted at the end of the window. */
17715 int first_vpos = WINDOW_WANTS_HEADER_LINE_P (w) ? 1 : 0;
17716 int vpos = XFASTINT (w->window_end_vpos);
17717 struct glyph_row *current_row = current_matrix->rows + vpos;
17718 struct glyph_row *desired_row = desired_matrix->rows + vpos;
17720 for (row = NULL;
17721 row == NULL && vpos >= first_vpos;
17722 --vpos, --current_row, --desired_row)
17724 if (desired_row->enabled_p)
17726 if (desired_row->displays_text_p)
17727 row = desired_row;
17729 else if (current_row->displays_text_p)
17730 row = current_row;
17733 xassert (row != NULL);
17734 w->window_end_vpos = make_number (vpos + 1);
17735 w->window_end_pos = make_number (Z - MATRIX_ROW_END_CHARPOS (row));
17736 w->window_end_bytepos = Z_BYTE - MATRIX_ROW_END_BYTEPOS (row);
17737 xassert (w->window_end_bytepos >= 0);
17738 IF_DEBUG (debug_method_add (w, "C"));
17740 else
17741 abort ();
17743 IF_DEBUG (debug_end_pos = XFASTINT (w->window_end_pos);
17744 debug_end_vpos = XFASTINT (w->window_end_vpos));
17746 /* Record that display has not been completed. */
17747 w->window_end_valid = Qnil;
17748 w->desired_matrix->no_scrolling_p = 1;
17749 return 3;
17751 #undef GIVE_UP
17756 /***********************************************************************
17757 More debugging support
17758 ***********************************************************************/
17760 #if GLYPH_DEBUG
17762 void dump_glyph_row (struct glyph_row *, int, int) EXTERNALLY_VISIBLE;
17763 void dump_glyph_matrix (struct glyph_matrix *, int) EXTERNALLY_VISIBLE;
17764 void dump_glyph (struct glyph_row *, struct glyph *, int) EXTERNALLY_VISIBLE;
17767 /* Dump the contents of glyph matrix MATRIX on stderr.
17769 GLYPHS 0 means don't show glyph contents.
17770 GLYPHS 1 means show glyphs in short form
17771 GLYPHS > 1 means show glyphs in long form. */
17773 void
17774 dump_glyph_matrix (struct glyph_matrix *matrix, int glyphs)
17776 int i;
17777 for (i = 0; i < matrix->nrows; ++i)
17778 dump_glyph_row (MATRIX_ROW (matrix, i), i, glyphs);
17782 /* Dump contents of glyph GLYPH to stderr. ROW and AREA are
17783 the glyph row and area where the glyph comes from. */
17785 void
17786 dump_glyph (struct glyph_row *row, struct glyph *glyph, int area)
17788 if (glyph->type == CHAR_GLYPH)
17790 fprintf (stderr,
17791 " %5td %4c %6"pI"d %c %3d 0x%05x %c %4d %1.1d%1.1d\n",
17792 glyph - row->glyphs[TEXT_AREA],
17793 'C',
17794 glyph->charpos,
17795 (BUFFERP (glyph->object)
17796 ? 'B'
17797 : (STRINGP (glyph->object)
17798 ? 'S'
17799 : '-')),
17800 glyph->pixel_width,
17801 glyph->u.ch,
17802 (glyph->u.ch < 0x80 && glyph->u.ch >= ' '
17803 ? glyph->u.ch
17804 : '.'),
17805 glyph->face_id,
17806 glyph->left_box_line_p,
17807 glyph->right_box_line_p);
17809 else if (glyph->type == STRETCH_GLYPH)
17811 fprintf (stderr,
17812 " %5td %4c %6"pI"d %c %3d 0x%05x %c %4d %1.1d%1.1d\n",
17813 glyph - row->glyphs[TEXT_AREA],
17814 'S',
17815 glyph->charpos,
17816 (BUFFERP (glyph->object)
17817 ? 'B'
17818 : (STRINGP (glyph->object)
17819 ? 'S'
17820 : '-')),
17821 glyph->pixel_width,
17823 '.',
17824 glyph->face_id,
17825 glyph->left_box_line_p,
17826 glyph->right_box_line_p);
17828 else if (glyph->type == IMAGE_GLYPH)
17830 fprintf (stderr,
17831 " %5td %4c %6"pI"d %c %3d 0x%05x %c %4d %1.1d%1.1d\n",
17832 glyph - row->glyphs[TEXT_AREA],
17833 'I',
17834 glyph->charpos,
17835 (BUFFERP (glyph->object)
17836 ? 'B'
17837 : (STRINGP (glyph->object)
17838 ? 'S'
17839 : '-')),
17840 glyph->pixel_width,
17841 glyph->u.img_id,
17842 '.',
17843 glyph->face_id,
17844 glyph->left_box_line_p,
17845 glyph->right_box_line_p);
17847 else if (glyph->type == COMPOSITE_GLYPH)
17849 fprintf (stderr,
17850 " %5td %4c %6"pI"d %c %3d 0x%05x",
17851 glyph - row->glyphs[TEXT_AREA],
17852 '+',
17853 glyph->charpos,
17854 (BUFFERP (glyph->object)
17855 ? 'B'
17856 : (STRINGP (glyph->object)
17857 ? 'S'
17858 : '-')),
17859 glyph->pixel_width,
17860 glyph->u.cmp.id);
17861 if (glyph->u.cmp.automatic)
17862 fprintf (stderr,
17863 "[%d-%d]",
17864 glyph->slice.cmp.from, glyph->slice.cmp.to);
17865 fprintf (stderr, " . %4d %1.1d%1.1d\n",
17866 glyph->face_id,
17867 glyph->left_box_line_p,
17868 glyph->right_box_line_p);
17873 /* Dump the contents of glyph row at VPOS in MATRIX to stderr.
17874 GLYPHS 0 means don't show glyph contents.
17875 GLYPHS 1 means show glyphs in short form
17876 GLYPHS > 1 means show glyphs in long form. */
17878 void
17879 dump_glyph_row (struct glyph_row *row, int vpos, int glyphs)
17881 if (glyphs != 1)
17883 fprintf (stderr, "Row Start End Used oE><\\CTZFesm X Y W H V A P\n");
17884 fprintf (stderr, "======================================================================\n");
17886 fprintf (stderr, "%3d %5"pI"d %5"pI"d %4d %1.1d%1.1d%1.1d%1.1d\
17887 %1.1d%1.1d%1.1d%1.1d%1.1d%1.1d%1.1d%1.1d %4d %4d %4d %4d %4d %4d %4d\n",
17888 vpos,
17889 MATRIX_ROW_START_CHARPOS (row),
17890 MATRIX_ROW_END_CHARPOS (row),
17891 row->used[TEXT_AREA],
17892 row->contains_overlapping_glyphs_p,
17893 row->enabled_p,
17894 row->truncated_on_left_p,
17895 row->truncated_on_right_p,
17896 row->continued_p,
17897 MATRIX_ROW_CONTINUATION_LINE_P (row),
17898 row->displays_text_p,
17899 row->ends_at_zv_p,
17900 row->fill_line_p,
17901 row->ends_in_middle_of_char_p,
17902 row->starts_in_middle_of_char_p,
17903 row->mouse_face_p,
17904 row->x,
17905 row->y,
17906 row->pixel_width,
17907 row->height,
17908 row->visible_height,
17909 row->ascent,
17910 row->phys_ascent);
17911 fprintf (stderr, "%9"pD"d %5"pD"d\t%5d\n", row->start.overlay_string_index,
17912 row->end.overlay_string_index,
17913 row->continuation_lines_width);
17914 fprintf (stderr, "%9"pI"d %5"pI"d\n",
17915 CHARPOS (row->start.string_pos),
17916 CHARPOS (row->end.string_pos));
17917 fprintf (stderr, "%9d %5d\n", row->start.dpvec_index,
17918 row->end.dpvec_index);
17921 if (glyphs > 1)
17923 int area;
17925 for (area = LEFT_MARGIN_AREA; area < LAST_AREA; ++area)
17927 struct glyph *glyph = row->glyphs[area];
17928 struct glyph *glyph_end = glyph + row->used[area];
17930 /* Glyph for a line end in text. */
17931 if (area == TEXT_AREA && glyph == glyph_end && glyph->charpos > 0)
17932 ++glyph_end;
17934 if (glyph < glyph_end)
17935 fprintf (stderr, " Glyph Type Pos O W Code C Face LR\n");
17937 for (; glyph < glyph_end; ++glyph)
17938 dump_glyph (row, glyph, area);
17941 else if (glyphs == 1)
17943 int area;
17945 for (area = LEFT_MARGIN_AREA; area < LAST_AREA; ++area)
17947 char *s = (char *) alloca (row->used[area] + 1);
17948 int i;
17950 for (i = 0; i < row->used[area]; ++i)
17952 struct glyph *glyph = row->glyphs[area] + i;
17953 if (glyph->type == CHAR_GLYPH
17954 && glyph->u.ch < 0x80
17955 && glyph->u.ch >= ' ')
17956 s[i] = glyph->u.ch;
17957 else
17958 s[i] = '.';
17961 s[i] = '\0';
17962 fprintf (stderr, "%3d: (%d) '%s'\n", vpos, row->enabled_p, s);
17968 DEFUN ("dump-glyph-matrix", Fdump_glyph_matrix,
17969 Sdump_glyph_matrix, 0, 1, "p",
17970 doc: /* Dump the current matrix of the selected window to stderr.
17971 Shows contents of glyph row structures. With non-nil
17972 parameter GLYPHS, dump glyphs as well. If GLYPHS is 1 show
17973 glyphs in short form, otherwise show glyphs in long form. */)
17974 (Lisp_Object glyphs)
17976 struct window *w = XWINDOW (selected_window);
17977 struct buffer *buffer = XBUFFER (w->buffer);
17979 fprintf (stderr, "PT = %"pI"d, BEGV = %"pI"d. ZV = %"pI"d\n",
17980 BUF_PT (buffer), BUF_BEGV (buffer), BUF_ZV (buffer));
17981 fprintf (stderr, "Cursor x = %d, y = %d, hpos = %d, vpos = %d\n",
17982 w->cursor.x, w->cursor.y, w->cursor.hpos, w->cursor.vpos);
17983 fprintf (stderr, "=============================================\n");
17984 dump_glyph_matrix (w->current_matrix,
17985 TYPE_RANGED_INTEGERP (int, glyphs) ? XINT (glyphs) : 0);
17986 return Qnil;
17990 DEFUN ("dump-frame-glyph-matrix", Fdump_frame_glyph_matrix,
17991 Sdump_frame_glyph_matrix, 0, 0, "", doc: /* */)
17992 (void)
17994 struct frame *f = XFRAME (selected_frame);
17995 dump_glyph_matrix (f->current_matrix, 1);
17996 return Qnil;
18000 DEFUN ("dump-glyph-row", Fdump_glyph_row, Sdump_glyph_row, 1, 2, "",
18001 doc: /* Dump glyph row ROW to stderr.
18002 GLYPH 0 means don't dump glyphs.
18003 GLYPH 1 means dump glyphs in short form.
18004 GLYPH > 1 or omitted means dump glyphs in long form. */)
18005 (Lisp_Object row, Lisp_Object glyphs)
18007 struct glyph_matrix *matrix;
18008 EMACS_INT vpos;
18010 CHECK_NUMBER (row);
18011 matrix = XWINDOW (selected_window)->current_matrix;
18012 vpos = XINT (row);
18013 if (vpos >= 0 && vpos < matrix->nrows)
18014 dump_glyph_row (MATRIX_ROW (matrix, vpos),
18015 vpos,
18016 TYPE_RANGED_INTEGERP (int, glyphs) ? XINT (glyphs) : 2);
18017 return Qnil;
18021 DEFUN ("dump-tool-bar-row", Fdump_tool_bar_row, Sdump_tool_bar_row, 1, 2, "",
18022 doc: /* Dump glyph row ROW of the tool-bar of the current frame to stderr.
18023 GLYPH 0 means don't dump glyphs.
18024 GLYPH 1 means dump glyphs in short form.
18025 GLYPH > 1 or omitted means dump glyphs in long form. */)
18026 (Lisp_Object row, Lisp_Object glyphs)
18028 struct frame *sf = SELECTED_FRAME ();
18029 struct glyph_matrix *m = XWINDOW (sf->tool_bar_window)->current_matrix;
18030 EMACS_INT vpos;
18032 CHECK_NUMBER (row);
18033 vpos = XINT (row);
18034 if (vpos >= 0 && vpos < m->nrows)
18035 dump_glyph_row (MATRIX_ROW (m, vpos), vpos,
18036 TYPE_RANGED_INTEGERP (int, glyphs) ? XINT (glyphs) : 2);
18037 return Qnil;
18041 DEFUN ("trace-redisplay", Ftrace_redisplay, Strace_redisplay, 0, 1, "P",
18042 doc: /* Toggle tracing of redisplay.
18043 With ARG, turn tracing on if and only if ARG is positive. */)
18044 (Lisp_Object arg)
18046 if (NILP (arg))
18047 trace_redisplay_p = !trace_redisplay_p;
18048 else
18050 arg = Fprefix_numeric_value (arg);
18051 trace_redisplay_p = XINT (arg) > 0;
18054 return Qnil;
18058 DEFUN ("trace-to-stderr", Ftrace_to_stderr, Strace_to_stderr, 1, MANY, "",
18059 doc: /* Like `format', but print result to stderr.
18060 usage: (trace-to-stderr STRING &rest OBJECTS) */)
18061 (ptrdiff_t nargs, Lisp_Object *args)
18063 Lisp_Object s = Fformat (nargs, args);
18064 fprintf (stderr, "%s", SDATA (s));
18065 return Qnil;
18068 #endif /* GLYPH_DEBUG */
18072 /***********************************************************************
18073 Building Desired Matrix Rows
18074 ***********************************************************************/
18076 /* Return a temporary glyph row holding the glyphs of an overlay arrow.
18077 Used for non-window-redisplay windows, and for windows w/o left fringe. */
18079 static struct glyph_row *
18080 get_overlay_arrow_glyph_row (struct window *w, Lisp_Object overlay_arrow_string)
18082 struct frame *f = XFRAME (WINDOW_FRAME (w));
18083 struct buffer *buffer = XBUFFER (w->buffer);
18084 struct buffer *old = current_buffer;
18085 const unsigned char *arrow_string = SDATA (overlay_arrow_string);
18086 int arrow_len = SCHARS (overlay_arrow_string);
18087 const unsigned char *arrow_end = arrow_string + arrow_len;
18088 const unsigned char *p;
18089 struct it it;
18090 int multibyte_p;
18091 int n_glyphs_before;
18093 set_buffer_temp (buffer);
18094 init_iterator (&it, w, -1, -1, &scratch_glyph_row, DEFAULT_FACE_ID);
18095 it.glyph_row->used[TEXT_AREA] = 0;
18096 SET_TEXT_POS (it.position, 0, 0);
18098 multibyte_p = !NILP (BVAR (buffer, enable_multibyte_characters));
18099 p = arrow_string;
18100 while (p < arrow_end)
18102 Lisp_Object face, ilisp;
18104 /* Get the next character. */
18105 if (multibyte_p)
18106 it.c = it.char_to_display = string_char_and_length (p, &it.len);
18107 else
18109 it.c = it.char_to_display = *p, it.len = 1;
18110 if (! ASCII_CHAR_P (it.c))
18111 it.char_to_display = BYTE8_TO_CHAR (it.c);
18113 p += it.len;
18115 /* Get its face. */
18116 ilisp = make_number (p - arrow_string);
18117 face = Fget_text_property (ilisp, Qface, overlay_arrow_string);
18118 it.face_id = compute_char_face (f, it.char_to_display, face);
18120 /* Compute its width, get its glyphs. */
18121 n_glyphs_before = it.glyph_row->used[TEXT_AREA];
18122 SET_TEXT_POS (it.position, -1, -1);
18123 PRODUCE_GLYPHS (&it);
18125 /* If this character doesn't fit any more in the line, we have
18126 to remove some glyphs. */
18127 if (it.current_x > it.last_visible_x)
18129 it.glyph_row->used[TEXT_AREA] = n_glyphs_before;
18130 break;
18134 set_buffer_temp (old);
18135 return it.glyph_row;
18139 /* Insert truncation glyphs at the start of IT->glyph_row. Truncation
18140 glyphs are only inserted for terminal frames since we can't really
18141 win with truncation glyphs when partially visible glyphs are
18142 involved. Which glyphs to insert is determined by
18143 produce_special_glyphs. */
18145 static void
18146 insert_left_trunc_glyphs (struct it *it)
18148 struct it truncate_it;
18149 struct glyph *from, *end, *to, *toend;
18151 xassert (!FRAME_WINDOW_P (it->f));
18153 /* Get the truncation glyphs. */
18154 truncate_it = *it;
18155 truncate_it.current_x = 0;
18156 truncate_it.face_id = DEFAULT_FACE_ID;
18157 truncate_it.glyph_row = &scratch_glyph_row;
18158 truncate_it.glyph_row->used[TEXT_AREA] = 0;
18159 CHARPOS (truncate_it.position) = BYTEPOS (truncate_it.position) = -1;
18160 truncate_it.object = make_number (0);
18161 produce_special_glyphs (&truncate_it, IT_TRUNCATION);
18163 /* Overwrite glyphs from IT with truncation glyphs. */
18164 if (!it->glyph_row->reversed_p)
18166 from = truncate_it.glyph_row->glyphs[TEXT_AREA];
18167 end = from + truncate_it.glyph_row->used[TEXT_AREA];
18168 to = it->glyph_row->glyphs[TEXT_AREA];
18169 toend = to + it->glyph_row->used[TEXT_AREA];
18171 while (from < end)
18172 *to++ = *from++;
18174 /* There may be padding glyphs left over. Overwrite them too. */
18175 while (to < toend && CHAR_GLYPH_PADDING_P (*to))
18177 from = truncate_it.glyph_row->glyphs[TEXT_AREA];
18178 while (from < end)
18179 *to++ = *from++;
18182 if (to > toend)
18183 it->glyph_row->used[TEXT_AREA] = to - it->glyph_row->glyphs[TEXT_AREA];
18185 else
18187 /* In R2L rows, overwrite the last (rightmost) glyphs, and do
18188 that back to front. */
18189 end = truncate_it.glyph_row->glyphs[TEXT_AREA];
18190 from = end + truncate_it.glyph_row->used[TEXT_AREA] - 1;
18191 toend = it->glyph_row->glyphs[TEXT_AREA];
18192 to = toend + it->glyph_row->used[TEXT_AREA] - 1;
18194 while (from >= end && to >= toend)
18195 *to-- = *from--;
18196 while (to >= toend && CHAR_GLYPH_PADDING_P (*to))
18198 from =
18199 truncate_it.glyph_row->glyphs[TEXT_AREA]
18200 + truncate_it.glyph_row->used[TEXT_AREA] - 1;
18201 while (from >= end && to >= toend)
18202 *to-- = *from--;
18204 if (from >= end)
18206 /* Need to free some room before prepending additional
18207 glyphs. */
18208 int move_by = from - end + 1;
18209 struct glyph *g0 = it->glyph_row->glyphs[TEXT_AREA];
18210 struct glyph *g = g0 + it->glyph_row->used[TEXT_AREA] - 1;
18212 for ( ; g >= g0; g--)
18213 g[move_by] = *g;
18214 while (from >= end)
18215 *to-- = *from--;
18216 it->glyph_row->used[TEXT_AREA] += move_by;
18221 /* Compute the hash code for ROW. */
18222 unsigned
18223 row_hash (struct glyph_row *row)
18225 int area, k;
18226 unsigned hashval = 0;
18228 for (area = LEFT_MARGIN_AREA; area < LAST_AREA; ++area)
18229 for (k = 0; k < row->used[area]; ++k)
18230 hashval = ((((hashval << 4) + (hashval >> 24)) & 0x0fffffff)
18231 + row->glyphs[area][k].u.val
18232 + row->glyphs[area][k].face_id
18233 + row->glyphs[area][k].padding_p
18234 + (row->glyphs[area][k].type << 2));
18236 return hashval;
18239 /* Compute the pixel height and width of IT->glyph_row.
18241 Most of the time, ascent and height of a display line will be equal
18242 to the max_ascent and max_height values of the display iterator
18243 structure. This is not the case if
18245 1. We hit ZV without displaying anything. In this case, max_ascent
18246 and max_height will be zero.
18248 2. We have some glyphs that don't contribute to the line height.
18249 (The glyph row flag contributes_to_line_height_p is for future
18250 pixmap extensions).
18252 The first case is easily covered by using default values because in
18253 these cases, the line height does not really matter, except that it
18254 must not be zero. */
18256 static void
18257 compute_line_metrics (struct it *it)
18259 struct glyph_row *row = it->glyph_row;
18261 if (FRAME_WINDOW_P (it->f))
18263 int i, min_y, max_y;
18265 /* The line may consist of one space only, that was added to
18266 place the cursor on it. If so, the row's height hasn't been
18267 computed yet. */
18268 if (row->height == 0)
18270 if (it->max_ascent + it->max_descent == 0)
18271 it->max_descent = it->max_phys_descent = FRAME_LINE_HEIGHT (it->f);
18272 row->ascent = it->max_ascent;
18273 row->height = it->max_ascent + it->max_descent;
18274 row->phys_ascent = it->max_phys_ascent;
18275 row->phys_height = it->max_phys_ascent + it->max_phys_descent;
18276 row->extra_line_spacing = it->max_extra_line_spacing;
18279 /* Compute the width of this line. */
18280 row->pixel_width = row->x;
18281 for (i = 0; i < row->used[TEXT_AREA]; ++i)
18282 row->pixel_width += row->glyphs[TEXT_AREA][i].pixel_width;
18284 xassert (row->pixel_width >= 0);
18285 xassert (row->ascent >= 0 && row->height > 0);
18287 row->overlapping_p = (MATRIX_ROW_OVERLAPS_SUCC_P (row)
18288 || MATRIX_ROW_OVERLAPS_PRED_P (row));
18290 /* If first line's physical ascent is larger than its logical
18291 ascent, use the physical ascent, and make the row taller.
18292 This makes accented characters fully visible. */
18293 if (row == MATRIX_FIRST_TEXT_ROW (it->w->desired_matrix)
18294 && row->phys_ascent > row->ascent)
18296 row->height += row->phys_ascent - row->ascent;
18297 row->ascent = row->phys_ascent;
18300 /* Compute how much of the line is visible. */
18301 row->visible_height = row->height;
18303 min_y = WINDOW_HEADER_LINE_HEIGHT (it->w);
18304 max_y = WINDOW_BOX_HEIGHT_NO_MODE_LINE (it->w);
18306 if (row->y < min_y)
18307 row->visible_height -= min_y - row->y;
18308 if (row->y + row->height > max_y)
18309 row->visible_height -= row->y + row->height - max_y;
18311 else
18313 row->pixel_width = row->used[TEXT_AREA];
18314 if (row->continued_p)
18315 row->pixel_width -= it->continuation_pixel_width;
18316 else if (row->truncated_on_right_p)
18317 row->pixel_width -= it->truncation_pixel_width;
18318 row->ascent = row->phys_ascent = 0;
18319 row->height = row->phys_height = row->visible_height = 1;
18320 row->extra_line_spacing = 0;
18323 /* Compute a hash code for this row. */
18324 row->hash = row_hash (row);
18326 it->max_ascent = it->max_descent = 0;
18327 it->max_phys_ascent = it->max_phys_descent = 0;
18331 /* Append one space to the glyph row of iterator IT if doing a
18332 window-based redisplay. The space has the same face as
18333 IT->face_id. Value is non-zero if a space was added.
18335 This function is called to make sure that there is always one glyph
18336 at the end of a glyph row that the cursor can be set on under
18337 window-systems. (If there weren't such a glyph we would not know
18338 how wide and tall a box cursor should be displayed).
18340 At the same time this space let's a nicely handle clearing to the
18341 end of the line if the row ends in italic text. */
18343 static int
18344 append_space_for_newline (struct it *it, int default_face_p)
18346 if (FRAME_WINDOW_P (it->f))
18348 int n = it->glyph_row->used[TEXT_AREA];
18350 if (it->glyph_row->glyphs[TEXT_AREA] + n
18351 < it->glyph_row->glyphs[1 + TEXT_AREA])
18353 /* Save some values that must not be changed.
18354 Must save IT->c and IT->len because otherwise
18355 ITERATOR_AT_END_P wouldn't work anymore after
18356 append_space_for_newline has been called. */
18357 enum display_element_type saved_what = it->what;
18358 int saved_c = it->c, saved_len = it->len;
18359 int saved_char_to_display = it->char_to_display;
18360 int saved_x = it->current_x;
18361 int saved_face_id = it->face_id;
18362 struct text_pos saved_pos;
18363 Lisp_Object saved_object;
18364 struct face *face;
18366 saved_object = it->object;
18367 saved_pos = it->position;
18369 it->what = IT_CHARACTER;
18370 memset (&it->position, 0, sizeof it->position);
18371 it->object = make_number (0);
18372 it->c = it->char_to_display = ' ';
18373 it->len = 1;
18375 /* If the default face was remapped, be sure to use the
18376 remapped face for the appended newline. */
18377 if (default_face_p)
18378 it->face_id = lookup_basic_face (it->f, DEFAULT_FACE_ID);
18379 else if (it->face_before_selective_p)
18380 it->face_id = it->saved_face_id;
18381 face = FACE_FROM_ID (it->f, it->face_id);
18382 it->face_id = FACE_FOR_CHAR (it->f, face, 0, -1, Qnil);
18384 PRODUCE_GLYPHS (it);
18386 it->override_ascent = -1;
18387 it->constrain_row_ascent_descent_p = 0;
18388 it->current_x = saved_x;
18389 it->object = saved_object;
18390 it->position = saved_pos;
18391 it->what = saved_what;
18392 it->face_id = saved_face_id;
18393 it->len = saved_len;
18394 it->c = saved_c;
18395 it->char_to_display = saved_char_to_display;
18396 return 1;
18400 return 0;
18404 /* Extend the face of the last glyph in the text area of IT->glyph_row
18405 to the end of the display line. Called from display_line. If the
18406 glyph row is empty, add a space glyph to it so that we know the
18407 face to draw. Set the glyph row flag fill_line_p. If the glyph
18408 row is R2L, prepend a stretch glyph to cover the empty space to the
18409 left of the leftmost glyph. */
18411 static void
18412 extend_face_to_end_of_line (struct it *it)
18414 struct face *face, *default_face;
18415 struct frame *f = it->f;
18417 /* If line is already filled, do nothing. Non window-system frames
18418 get a grace of one more ``pixel'' because their characters are
18419 1-``pixel'' wide, so they hit the equality too early. This grace
18420 is needed only for R2L rows that are not continued, to produce
18421 one extra blank where we could display the cursor. */
18422 if (it->current_x >= it->last_visible_x
18423 + (!FRAME_WINDOW_P (f)
18424 && it->glyph_row->reversed_p
18425 && !it->glyph_row->continued_p))
18426 return;
18428 /* The default face, possibly remapped. */
18429 default_face = FACE_FROM_ID (f, lookup_basic_face (f, DEFAULT_FACE_ID));
18431 /* Face extension extends the background and box of IT->face_id
18432 to the end of the line. If the background equals the background
18433 of the frame, we don't have to do anything. */
18434 if (it->face_before_selective_p)
18435 face = FACE_FROM_ID (f, it->saved_face_id);
18436 else
18437 face = FACE_FROM_ID (f, it->face_id);
18439 if (FRAME_WINDOW_P (f)
18440 && it->glyph_row->displays_text_p
18441 && face->box == FACE_NO_BOX
18442 && face->background == FRAME_BACKGROUND_PIXEL (f)
18443 && !face->stipple
18444 && !it->glyph_row->reversed_p)
18445 return;
18447 /* Set the glyph row flag indicating that the face of the last glyph
18448 in the text area has to be drawn to the end of the text area. */
18449 it->glyph_row->fill_line_p = 1;
18451 /* If current character of IT is not ASCII, make sure we have the
18452 ASCII face. This will be automatically undone the next time
18453 get_next_display_element returns a multibyte character. Note
18454 that the character will always be single byte in unibyte
18455 text. */
18456 if (!ASCII_CHAR_P (it->c))
18458 it->face_id = FACE_FOR_CHAR (f, face, 0, -1, Qnil);
18461 if (FRAME_WINDOW_P (f))
18463 /* If the row is empty, add a space with the current face of IT,
18464 so that we know which face to draw. */
18465 if (it->glyph_row->used[TEXT_AREA] == 0)
18467 it->glyph_row->glyphs[TEXT_AREA][0] = space_glyph;
18468 it->glyph_row->glyphs[TEXT_AREA][0].face_id = face->id;
18469 it->glyph_row->used[TEXT_AREA] = 1;
18471 #ifdef HAVE_WINDOW_SYSTEM
18472 if (it->glyph_row->reversed_p)
18474 /* Prepend a stretch glyph to the row, such that the
18475 rightmost glyph will be drawn flushed all the way to the
18476 right margin of the window. The stretch glyph that will
18477 occupy the empty space, if any, to the left of the
18478 glyphs. */
18479 struct font *font = face->font ? face->font : FRAME_FONT (f);
18480 struct glyph *row_start = it->glyph_row->glyphs[TEXT_AREA];
18481 struct glyph *row_end = row_start + it->glyph_row->used[TEXT_AREA];
18482 struct glyph *g;
18483 int row_width, stretch_ascent, stretch_width;
18484 struct text_pos saved_pos;
18485 int saved_face_id, saved_avoid_cursor;
18487 for (row_width = 0, g = row_start; g < row_end; g++)
18488 row_width += g->pixel_width;
18489 stretch_width = window_box_width (it->w, TEXT_AREA) - row_width;
18490 if (stretch_width > 0)
18492 stretch_ascent =
18493 (((it->ascent + it->descent)
18494 * FONT_BASE (font)) / FONT_HEIGHT (font));
18495 saved_pos = it->position;
18496 memset (&it->position, 0, sizeof it->position);
18497 saved_avoid_cursor = it->avoid_cursor_p;
18498 it->avoid_cursor_p = 1;
18499 saved_face_id = it->face_id;
18500 /* The last row's stretch glyph should get the default
18501 face, to avoid painting the rest of the window with
18502 the region face, if the region ends at ZV. */
18503 if (it->glyph_row->ends_at_zv_p)
18504 it->face_id = default_face->id;
18505 else
18506 it->face_id = face->id;
18507 append_stretch_glyph (it, make_number (0), stretch_width,
18508 it->ascent + it->descent, stretch_ascent);
18509 it->position = saved_pos;
18510 it->avoid_cursor_p = saved_avoid_cursor;
18511 it->face_id = saved_face_id;
18514 #endif /* HAVE_WINDOW_SYSTEM */
18516 else
18518 /* Save some values that must not be changed. */
18519 int saved_x = it->current_x;
18520 struct text_pos saved_pos;
18521 Lisp_Object saved_object;
18522 enum display_element_type saved_what = it->what;
18523 int saved_face_id = it->face_id;
18525 saved_object = it->object;
18526 saved_pos = it->position;
18528 it->what = IT_CHARACTER;
18529 memset (&it->position, 0, sizeof it->position);
18530 it->object = make_number (0);
18531 it->c = it->char_to_display = ' ';
18532 it->len = 1;
18533 /* The last row's blank glyphs should get the default face, to
18534 avoid painting the rest of the window with the region face,
18535 if the region ends at ZV. */
18536 if (it->glyph_row->ends_at_zv_p)
18537 it->face_id = default_face->id;
18538 else
18539 it->face_id = face->id;
18541 PRODUCE_GLYPHS (it);
18543 while (it->current_x <= it->last_visible_x)
18544 PRODUCE_GLYPHS (it);
18546 /* Don't count these blanks really. It would let us insert a left
18547 truncation glyph below and make us set the cursor on them, maybe. */
18548 it->current_x = saved_x;
18549 it->object = saved_object;
18550 it->position = saved_pos;
18551 it->what = saved_what;
18552 it->face_id = saved_face_id;
18557 /* Value is non-zero if text starting at CHARPOS in current_buffer is
18558 trailing whitespace. */
18560 static int
18561 trailing_whitespace_p (ptrdiff_t charpos)
18563 ptrdiff_t bytepos = CHAR_TO_BYTE (charpos);
18564 int c = 0;
18566 while (bytepos < ZV_BYTE
18567 && (c = FETCH_CHAR (bytepos),
18568 c == ' ' || c == '\t'))
18569 ++bytepos;
18571 if (bytepos >= ZV_BYTE || c == '\n' || c == '\r')
18573 if (bytepos != PT_BYTE)
18574 return 1;
18576 return 0;
18580 /* Highlight trailing whitespace, if any, in ROW. */
18582 static void
18583 highlight_trailing_whitespace (struct frame *f, struct glyph_row *row)
18585 int used = row->used[TEXT_AREA];
18587 if (used)
18589 struct glyph *start = row->glyphs[TEXT_AREA];
18590 struct glyph *glyph = start + used - 1;
18592 if (row->reversed_p)
18594 /* Right-to-left rows need to be processed in the opposite
18595 direction, so swap the edge pointers. */
18596 glyph = start;
18597 start = row->glyphs[TEXT_AREA] + used - 1;
18600 /* Skip over glyphs inserted to display the cursor at the
18601 end of a line, for extending the face of the last glyph
18602 to the end of the line on terminals, and for truncation
18603 and continuation glyphs. */
18604 if (!row->reversed_p)
18606 while (glyph >= start
18607 && glyph->type == CHAR_GLYPH
18608 && INTEGERP (glyph->object))
18609 --glyph;
18611 else
18613 while (glyph <= start
18614 && glyph->type == CHAR_GLYPH
18615 && INTEGERP (glyph->object))
18616 ++glyph;
18619 /* If last glyph is a space or stretch, and it's trailing
18620 whitespace, set the face of all trailing whitespace glyphs in
18621 IT->glyph_row to `trailing-whitespace'. */
18622 if ((row->reversed_p ? glyph <= start : glyph >= start)
18623 && BUFFERP (glyph->object)
18624 && (glyph->type == STRETCH_GLYPH
18625 || (glyph->type == CHAR_GLYPH
18626 && glyph->u.ch == ' '))
18627 && trailing_whitespace_p (glyph->charpos))
18629 int face_id = lookup_named_face (f, Qtrailing_whitespace, 0);
18630 if (face_id < 0)
18631 return;
18633 if (!row->reversed_p)
18635 while (glyph >= start
18636 && BUFFERP (glyph->object)
18637 && (glyph->type == STRETCH_GLYPH
18638 || (glyph->type == CHAR_GLYPH
18639 && glyph->u.ch == ' ')))
18640 (glyph--)->face_id = face_id;
18642 else
18644 while (glyph <= start
18645 && BUFFERP (glyph->object)
18646 && (glyph->type == STRETCH_GLYPH
18647 || (glyph->type == CHAR_GLYPH
18648 && glyph->u.ch == ' ')))
18649 (glyph++)->face_id = face_id;
18656 /* Value is non-zero if glyph row ROW should be
18657 used to hold the cursor. */
18659 static int
18660 cursor_row_p (struct glyph_row *row)
18662 int result = 1;
18664 if (PT == CHARPOS (row->end.pos)
18665 || PT == MATRIX_ROW_END_CHARPOS (row))
18667 /* Suppose the row ends on a string.
18668 Unless the row is continued, that means it ends on a newline
18669 in the string. If it's anything other than a display string
18670 (e.g., a before-string from an overlay), we don't want the
18671 cursor there. (This heuristic seems to give the optimal
18672 behavior for the various types of multi-line strings.)
18673 One exception: if the string has `cursor' property on one of
18674 its characters, we _do_ want the cursor there. */
18675 if (CHARPOS (row->end.string_pos) >= 0)
18677 if (row->continued_p)
18678 result = 1;
18679 else
18681 /* Check for `display' property. */
18682 struct glyph *beg = row->glyphs[TEXT_AREA];
18683 struct glyph *end = beg + row->used[TEXT_AREA] - 1;
18684 struct glyph *glyph;
18686 result = 0;
18687 for (glyph = end; glyph >= beg; --glyph)
18688 if (STRINGP (glyph->object))
18690 Lisp_Object prop
18691 = Fget_char_property (make_number (PT),
18692 Qdisplay, Qnil);
18693 result =
18694 (!NILP (prop)
18695 && display_prop_string_p (prop, glyph->object));
18696 /* If there's a `cursor' property on one of the
18697 string's characters, this row is a cursor row,
18698 even though this is not a display string. */
18699 if (!result)
18701 Lisp_Object s = glyph->object;
18703 for ( ; glyph >= beg && EQ (glyph->object, s); --glyph)
18705 ptrdiff_t gpos = glyph->charpos;
18707 if (!NILP (Fget_char_property (make_number (gpos),
18708 Qcursor, s)))
18710 result = 1;
18711 break;
18715 break;
18719 else if (MATRIX_ROW_ENDS_IN_MIDDLE_OF_CHAR_P (row))
18721 /* If the row ends in middle of a real character,
18722 and the line is continued, we want the cursor here.
18723 That's because CHARPOS (ROW->end.pos) would equal
18724 PT if PT is before the character. */
18725 if (!row->ends_in_ellipsis_p)
18726 result = row->continued_p;
18727 else
18728 /* If the row ends in an ellipsis, then
18729 CHARPOS (ROW->end.pos) will equal point after the
18730 invisible text. We want that position to be displayed
18731 after the ellipsis. */
18732 result = 0;
18734 /* If the row ends at ZV, display the cursor at the end of that
18735 row instead of at the start of the row below. */
18736 else if (row->ends_at_zv_p)
18737 result = 1;
18738 else
18739 result = 0;
18742 return result;
18747 /* Push the property PROP so that it will be rendered at the current
18748 position in IT. Return 1 if PROP was successfully pushed, 0
18749 otherwise. Called from handle_line_prefix to handle the
18750 `line-prefix' and `wrap-prefix' properties. */
18752 static int
18753 push_prefix_prop (struct it *it, Lisp_Object prop)
18755 struct text_pos pos =
18756 STRINGP (it->string) ? it->current.string_pos : it->current.pos;
18758 xassert (it->method == GET_FROM_BUFFER
18759 || it->method == GET_FROM_DISPLAY_VECTOR
18760 || it->method == GET_FROM_STRING);
18762 /* We need to save the current buffer/string position, so it will be
18763 restored by pop_it, because iterate_out_of_display_property
18764 depends on that being set correctly, but some situations leave
18765 it->position not yet set when this function is called. */
18766 push_it (it, &pos);
18768 if (STRINGP (prop))
18770 if (SCHARS (prop) == 0)
18772 pop_it (it);
18773 return 0;
18776 it->string = prop;
18777 it->string_from_prefix_prop_p = 1;
18778 it->multibyte_p = STRING_MULTIBYTE (it->string);
18779 it->current.overlay_string_index = -1;
18780 IT_STRING_CHARPOS (*it) = IT_STRING_BYTEPOS (*it) = 0;
18781 it->end_charpos = it->string_nchars = SCHARS (it->string);
18782 it->method = GET_FROM_STRING;
18783 it->stop_charpos = 0;
18784 it->prev_stop = 0;
18785 it->base_level_stop = 0;
18787 /* Force paragraph direction to be that of the parent
18788 buffer/string. */
18789 if (it->bidi_p && it->bidi_it.paragraph_dir == R2L)
18790 it->paragraph_embedding = it->bidi_it.paragraph_dir;
18791 else
18792 it->paragraph_embedding = L2R;
18794 /* Set up the bidi iterator for this display string. */
18795 if (it->bidi_p)
18797 it->bidi_it.string.lstring = it->string;
18798 it->bidi_it.string.s = NULL;
18799 it->bidi_it.string.schars = it->end_charpos;
18800 it->bidi_it.string.bufpos = IT_CHARPOS (*it);
18801 it->bidi_it.string.from_disp_str = it->string_from_display_prop_p;
18802 it->bidi_it.string.unibyte = !it->multibyte_p;
18803 bidi_init_it (0, 0, FRAME_WINDOW_P (it->f), &it->bidi_it);
18806 else if (CONSP (prop) && EQ (XCAR (prop), Qspace))
18808 it->method = GET_FROM_STRETCH;
18809 it->object = prop;
18811 #ifdef HAVE_WINDOW_SYSTEM
18812 else if (IMAGEP (prop))
18814 it->what = IT_IMAGE;
18815 it->image_id = lookup_image (it->f, prop);
18816 it->method = GET_FROM_IMAGE;
18818 #endif /* HAVE_WINDOW_SYSTEM */
18819 else
18821 pop_it (it); /* bogus display property, give up */
18822 return 0;
18825 return 1;
18828 /* Return the character-property PROP at the current position in IT. */
18830 static Lisp_Object
18831 get_it_property (struct it *it, Lisp_Object prop)
18833 Lisp_Object position;
18835 if (STRINGP (it->object))
18836 position = make_number (IT_STRING_CHARPOS (*it));
18837 else if (BUFFERP (it->object))
18838 position = make_number (IT_CHARPOS (*it));
18839 else
18840 return Qnil;
18842 return Fget_char_property (position, prop, it->object);
18845 /* See if there's a line- or wrap-prefix, and if so, push it on IT. */
18847 static void
18848 handle_line_prefix (struct it *it)
18850 Lisp_Object prefix;
18852 if (it->continuation_lines_width > 0)
18854 prefix = get_it_property (it, Qwrap_prefix);
18855 if (NILP (prefix))
18856 prefix = Vwrap_prefix;
18858 else
18860 prefix = get_it_property (it, Qline_prefix);
18861 if (NILP (prefix))
18862 prefix = Vline_prefix;
18864 if (! NILP (prefix) && push_prefix_prop (it, prefix))
18866 /* If the prefix is wider than the window, and we try to wrap
18867 it, it would acquire its own wrap prefix, and so on till the
18868 iterator stack overflows. So, don't wrap the prefix. */
18869 it->line_wrap = TRUNCATE;
18870 it->avoid_cursor_p = 1;
18876 /* Remove N glyphs at the start of a reversed IT->glyph_row. Called
18877 only for R2L lines from display_line and display_string, when they
18878 decide that too many glyphs were produced by PRODUCE_GLYPHS, and
18879 the line/string needs to be continued on the next glyph row. */
18880 static void
18881 unproduce_glyphs (struct it *it, int n)
18883 struct glyph *glyph, *end;
18885 xassert (it->glyph_row);
18886 xassert (it->glyph_row->reversed_p);
18887 xassert (it->area == TEXT_AREA);
18888 xassert (n <= it->glyph_row->used[TEXT_AREA]);
18890 if (n > it->glyph_row->used[TEXT_AREA])
18891 n = it->glyph_row->used[TEXT_AREA];
18892 glyph = it->glyph_row->glyphs[TEXT_AREA] + n;
18893 end = it->glyph_row->glyphs[TEXT_AREA] + it->glyph_row->used[TEXT_AREA];
18894 for ( ; glyph < end; glyph++)
18895 glyph[-n] = *glyph;
18898 /* Find the positions in a bidi-reordered ROW to serve as ROW->minpos
18899 and ROW->maxpos. */
18900 static void
18901 find_row_edges (struct it *it, struct glyph_row *row,
18902 ptrdiff_t min_pos, ptrdiff_t min_bpos,
18903 ptrdiff_t max_pos, ptrdiff_t max_bpos)
18905 /* FIXME: Revisit this when glyph ``spilling'' in continuation
18906 lines' rows is implemented for bidi-reordered rows. */
18908 /* ROW->minpos is the value of min_pos, the minimal buffer position
18909 we have in ROW, or ROW->start.pos if that is smaller. */
18910 if (min_pos <= ZV && min_pos < row->start.pos.charpos)
18911 SET_TEXT_POS (row->minpos, min_pos, min_bpos);
18912 else
18913 /* We didn't find buffer positions smaller than ROW->start, or
18914 didn't find _any_ valid buffer positions in any of the glyphs,
18915 so we must trust the iterator's computed positions. */
18916 row->minpos = row->start.pos;
18917 if (max_pos <= 0)
18919 max_pos = CHARPOS (it->current.pos);
18920 max_bpos = BYTEPOS (it->current.pos);
18923 /* Here are the various use-cases for ending the row, and the
18924 corresponding values for ROW->maxpos:
18926 Line ends in a newline from buffer eol_pos + 1
18927 Line is continued from buffer max_pos + 1
18928 Line is truncated on right it->current.pos
18929 Line ends in a newline from string max_pos + 1(*)
18930 (*) + 1 only when line ends in a forward scan
18931 Line is continued from string max_pos
18932 Line is continued from display vector max_pos
18933 Line is entirely from a string min_pos == max_pos
18934 Line is entirely from a display vector min_pos == max_pos
18935 Line that ends at ZV ZV
18937 If you discover other use-cases, please add them here as
18938 appropriate. */
18939 if (row->ends_at_zv_p)
18940 row->maxpos = it->current.pos;
18941 else if (row->used[TEXT_AREA])
18943 int seen_this_string = 0;
18944 struct glyph_row *r1 = row - 1;
18946 /* Did we see the same display string on the previous row? */
18947 if (STRINGP (it->object)
18948 /* this is not the first row */
18949 && row > it->w->desired_matrix->rows
18950 /* previous row is not the header line */
18951 && !r1->mode_line_p
18952 /* previous row also ends in a newline from a string */
18953 && r1->ends_in_newline_from_string_p)
18955 struct glyph *start, *end;
18957 /* Search for the last glyph of the previous row that came
18958 from buffer or string. Depending on whether the row is
18959 L2R or R2L, we need to process it front to back or the
18960 other way round. */
18961 if (!r1->reversed_p)
18963 start = r1->glyphs[TEXT_AREA];
18964 end = start + r1->used[TEXT_AREA];
18965 /* Glyphs inserted by redisplay have an integer (zero)
18966 as their object. */
18967 while (end > start
18968 && INTEGERP ((end - 1)->object)
18969 && (end - 1)->charpos <= 0)
18970 --end;
18971 if (end > start)
18973 if (EQ ((end - 1)->object, it->object))
18974 seen_this_string = 1;
18976 else
18977 /* If all the glyphs of the previous row were inserted
18978 by redisplay, it means the previous row was
18979 produced from a single newline, which is only
18980 possible if that newline came from the same string
18981 as the one which produced this ROW. */
18982 seen_this_string = 1;
18984 else
18986 end = r1->glyphs[TEXT_AREA] - 1;
18987 start = end + r1->used[TEXT_AREA];
18988 while (end < start
18989 && INTEGERP ((end + 1)->object)
18990 && (end + 1)->charpos <= 0)
18991 ++end;
18992 if (end < start)
18994 if (EQ ((end + 1)->object, it->object))
18995 seen_this_string = 1;
18997 else
18998 seen_this_string = 1;
19001 /* Take note of each display string that covers a newline only
19002 once, the first time we see it. This is for when a display
19003 string includes more than one newline in it. */
19004 if (row->ends_in_newline_from_string_p && !seen_this_string)
19006 /* If we were scanning the buffer forward when we displayed
19007 the string, we want to account for at least one buffer
19008 position that belongs to this row (position covered by
19009 the display string), so that cursor positioning will
19010 consider this row as a candidate when point is at the end
19011 of the visual line represented by this row. This is not
19012 required when scanning back, because max_pos will already
19013 have a much larger value. */
19014 if (CHARPOS (row->end.pos) > max_pos)
19015 INC_BOTH (max_pos, max_bpos);
19016 SET_TEXT_POS (row->maxpos, max_pos, max_bpos);
19018 else if (CHARPOS (it->eol_pos) > 0)
19019 SET_TEXT_POS (row->maxpos,
19020 CHARPOS (it->eol_pos) + 1, BYTEPOS (it->eol_pos) + 1);
19021 else if (row->continued_p)
19023 /* If max_pos is different from IT's current position, it
19024 means IT->method does not belong to the display element
19025 at max_pos. However, it also means that the display
19026 element at max_pos was displayed in its entirety on this
19027 line, which is equivalent to saying that the next line
19028 starts at the next buffer position. */
19029 if (IT_CHARPOS (*it) == max_pos && it->method != GET_FROM_BUFFER)
19030 SET_TEXT_POS (row->maxpos, max_pos, max_bpos);
19031 else
19033 INC_BOTH (max_pos, max_bpos);
19034 SET_TEXT_POS (row->maxpos, max_pos, max_bpos);
19037 else if (row->truncated_on_right_p)
19038 /* display_line already called reseat_at_next_visible_line_start,
19039 which puts the iterator at the beginning of the next line, in
19040 the logical order. */
19041 row->maxpos = it->current.pos;
19042 else if (max_pos == min_pos && it->method != GET_FROM_BUFFER)
19043 /* A line that is entirely from a string/image/stretch... */
19044 row->maxpos = row->minpos;
19045 else
19046 abort ();
19048 else
19049 row->maxpos = it->current.pos;
19052 /* Construct the glyph row IT->glyph_row in the desired matrix of
19053 IT->w from text at the current position of IT. See dispextern.h
19054 for an overview of struct it. Value is non-zero if
19055 IT->glyph_row displays text, as opposed to a line displaying ZV
19056 only. */
19058 static int
19059 display_line (struct it *it)
19061 struct glyph_row *row = it->glyph_row;
19062 Lisp_Object overlay_arrow_string;
19063 struct it wrap_it;
19064 void *wrap_data = NULL;
19065 int may_wrap = 0, wrap_x IF_LINT (= 0);
19066 int wrap_row_used = -1;
19067 int wrap_row_ascent IF_LINT (= 0), wrap_row_height IF_LINT (= 0);
19068 int wrap_row_phys_ascent IF_LINT (= 0), wrap_row_phys_height IF_LINT (= 0);
19069 int wrap_row_extra_line_spacing IF_LINT (= 0);
19070 ptrdiff_t wrap_row_min_pos IF_LINT (= 0), wrap_row_min_bpos IF_LINT (= 0);
19071 ptrdiff_t wrap_row_max_pos IF_LINT (= 0), wrap_row_max_bpos IF_LINT (= 0);
19072 int cvpos;
19073 ptrdiff_t min_pos = ZV + 1, max_pos = 0;
19074 ptrdiff_t min_bpos IF_LINT (= 0), max_bpos IF_LINT (= 0);
19076 /* We always start displaying at hpos zero even if hscrolled. */
19077 xassert (it->hpos == 0 && it->current_x == 0);
19079 if (MATRIX_ROW_VPOS (row, it->w->desired_matrix)
19080 >= it->w->desired_matrix->nrows)
19082 it->w->nrows_scale_factor++;
19083 fonts_changed_p = 1;
19084 return 0;
19087 /* Is IT->w showing the region? */
19088 it->w->region_showing = it->region_beg_charpos > 0 ? Qt : Qnil;
19090 /* Clear the result glyph row and enable it. */
19091 prepare_desired_row (row);
19093 row->y = it->current_y;
19094 row->start = it->start;
19095 row->continuation_lines_width = it->continuation_lines_width;
19096 row->displays_text_p = 1;
19097 row->starts_in_middle_of_char_p = it->starts_in_middle_of_char_p;
19098 it->starts_in_middle_of_char_p = 0;
19100 /* Arrange the overlays nicely for our purposes. Usually, we call
19101 display_line on only one line at a time, in which case this
19102 can't really hurt too much, or we call it on lines which appear
19103 one after another in the buffer, in which case all calls to
19104 recenter_overlay_lists but the first will be pretty cheap. */
19105 recenter_overlay_lists (current_buffer, IT_CHARPOS (*it));
19107 /* Move over display elements that are not visible because we are
19108 hscrolled. This may stop at an x-position < IT->first_visible_x
19109 if the first glyph is partially visible or if we hit a line end. */
19110 if (it->current_x < it->first_visible_x)
19112 this_line_min_pos = row->start.pos;
19113 move_it_in_display_line_to (it, ZV, it->first_visible_x,
19114 MOVE_TO_POS | MOVE_TO_X);
19115 /* Record the smallest positions seen while we moved over
19116 display elements that are not visible. This is needed by
19117 redisplay_internal for optimizing the case where the cursor
19118 stays inside the same line. The rest of this function only
19119 considers positions that are actually displayed, so
19120 RECORD_MAX_MIN_POS will not otherwise record positions that
19121 are hscrolled to the left of the left edge of the window. */
19122 min_pos = CHARPOS (this_line_min_pos);
19123 min_bpos = BYTEPOS (this_line_min_pos);
19125 else
19127 /* We only do this when not calling `move_it_in_display_line_to'
19128 above, because move_it_in_display_line_to calls
19129 handle_line_prefix itself. */
19130 handle_line_prefix (it);
19133 /* Get the initial row height. This is either the height of the
19134 text hscrolled, if there is any, or zero. */
19135 row->ascent = it->max_ascent;
19136 row->height = it->max_ascent + it->max_descent;
19137 row->phys_ascent = it->max_phys_ascent;
19138 row->phys_height = it->max_phys_ascent + it->max_phys_descent;
19139 row->extra_line_spacing = it->max_extra_line_spacing;
19141 /* Utility macro to record max and min buffer positions seen until now. */
19142 #define RECORD_MAX_MIN_POS(IT) \
19143 do \
19145 int composition_p = !STRINGP ((IT)->string) \
19146 && ((IT)->what == IT_COMPOSITION); \
19147 ptrdiff_t current_pos = \
19148 composition_p ? (IT)->cmp_it.charpos \
19149 : IT_CHARPOS (*(IT)); \
19150 ptrdiff_t current_bpos = \
19151 composition_p ? CHAR_TO_BYTE (current_pos) \
19152 : IT_BYTEPOS (*(IT)); \
19153 if (current_pos < min_pos) \
19155 min_pos = current_pos; \
19156 min_bpos = current_bpos; \
19158 if (IT_CHARPOS (*it) > max_pos) \
19160 max_pos = IT_CHARPOS (*it); \
19161 max_bpos = IT_BYTEPOS (*it); \
19164 while (0)
19166 /* Loop generating characters. The loop is left with IT on the next
19167 character to display. */
19168 while (1)
19170 int n_glyphs_before, hpos_before, x_before;
19171 int x, nglyphs;
19172 int ascent = 0, descent = 0, phys_ascent = 0, phys_descent = 0;
19174 /* Retrieve the next thing to display. Value is zero if end of
19175 buffer reached. */
19176 if (!get_next_display_element (it))
19178 /* Maybe add a space at the end of this line that is used to
19179 display the cursor there under X. Set the charpos of the
19180 first glyph of blank lines not corresponding to any text
19181 to -1. */
19182 if (IT_OVERFLOW_NEWLINE_INTO_FRINGE (it))
19183 row->exact_window_width_line_p = 1;
19184 else if ((append_space_for_newline (it, 1) && row->used[TEXT_AREA] == 1)
19185 || row->used[TEXT_AREA] == 0)
19187 row->glyphs[TEXT_AREA]->charpos = -1;
19188 row->displays_text_p = 0;
19190 if (!NILP (BVAR (XBUFFER (it->w->buffer), indicate_empty_lines))
19191 && (!MINI_WINDOW_P (it->w)
19192 || (minibuf_level && EQ (it->window, minibuf_window))))
19193 row->indicate_empty_line_p = 1;
19196 it->continuation_lines_width = 0;
19197 row->ends_at_zv_p = 1;
19198 /* A row that displays right-to-left text must always have
19199 its last face extended all the way to the end of line,
19200 even if this row ends in ZV, because we still write to
19201 the screen left to right. We also need to extend the
19202 last face if the default face is remapped to some
19203 different face, otherwise the functions that clear
19204 portions of the screen will clear with the default face's
19205 background color. */
19206 if (row->reversed_p
19207 || lookup_basic_face (it->f, DEFAULT_FACE_ID) != DEFAULT_FACE_ID)
19208 extend_face_to_end_of_line (it);
19209 break;
19212 /* Now, get the metrics of what we want to display. This also
19213 generates glyphs in `row' (which is IT->glyph_row). */
19214 n_glyphs_before = row->used[TEXT_AREA];
19215 x = it->current_x;
19217 /* Remember the line height so far in case the next element doesn't
19218 fit on the line. */
19219 if (it->line_wrap != TRUNCATE)
19221 ascent = it->max_ascent;
19222 descent = it->max_descent;
19223 phys_ascent = it->max_phys_ascent;
19224 phys_descent = it->max_phys_descent;
19226 if (it->line_wrap == WORD_WRAP && it->area == TEXT_AREA)
19228 if (IT_DISPLAYING_WHITESPACE (it))
19229 may_wrap = 1;
19230 else if (may_wrap)
19232 SAVE_IT (wrap_it, *it, wrap_data);
19233 wrap_x = x;
19234 wrap_row_used = row->used[TEXT_AREA];
19235 wrap_row_ascent = row->ascent;
19236 wrap_row_height = row->height;
19237 wrap_row_phys_ascent = row->phys_ascent;
19238 wrap_row_phys_height = row->phys_height;
19239 wrap_row_extra_line_spacing = row->extra_line_spacing;
19240 wrap_row_min_pos = min_pos;
19241 wrap_row_min_bpos = min_bpos;
19242 wrap_row_max_pos = max_pos;
19243 wrap_row_max_bpos = max_bpos;
19244 may_wrap = 0;
19249 PRODUCE_GLYPHS (it);
19251 /* If this display element was in marginal areas, continue with
19252 the next one. */
19253 if (it->area != TEXT_AREA)
19255 row->ascent = max (row->ascent, it->max_ascent);
19256 row->height = max (row->height, it->max_ascent + it->max_descent);
19257 row->phys_ascent = max (row->phys_ascent, it->max_phys_ascent);
19258 row->phys_height = max (row->phys_height,
19259 it->max_phys_ascent + it->max_phys_descent);
19260 row->extra_line_spacing = max (row->extra_line_spacing,
19261 it->max_extra_line_spacing);
19262 set_iterator_to_next (it, 1);
19263 continue;
19266 /* Does the display element fit on the line? If we truncate
19267 lines, we should draw past the right edge of the window. If
19268 we don't truncate, we want to stop so that we can display the
19269 continuation glyph before the right margin. If lines are
19270 continued, there are two possible strategies for characters
19271 resulting in more than 1 glyph (e.g. tabs): Display as many
19272 glyphs as possible in this line and leave the rest for the
19273 continuation line, or display the whole element in the next
19274 line. Original redisplay did the former, so we do it also. */
19275 nglyphs = row->used[TEXT_AREA] - n_glyphs_before;
19276 hpos_before = it->hpos;
19277 x_before = x;
19279 if (/* Not a newline. */
19280 nglyphs > 0
19281 /* Glyphs produced fit entirely in the line. */
19282 && it->current_x < it->last_visible_x)
19284 it->hpos += nglyphs;
19285 row->ascent = max (row->ascent, it->max_ascent);
19286 row->height = max (row->height, it->max_ascent + it->max_descent);
19287 row->phys_ascent = max (row->phys_ascent, it->max_phys_ascent);
19288 row->phys_height = max (row->phys_height,
19289 it->max_phys_ascent + it->max_phys_descent);
19290 row->extra_line_spacing = max (row->extra_line_spacing,
19291 it->max_extra_line_spacing);
19292 if (it->current_x - it->pixel_width < it->first_visible_x)
19293 row->x = x - it->first_visible_x;
19294 /* Record the maximum and minimum buffer positions seen so
19295 far in glyphs that will be displayed by this row. */
19296 if (it->bidi_p)
19297 RECORD_MAX_MIN_POS (it);
19299 else
19301 int i, new_x;
19302 struct glyph *glyph;
19304 for (i = 0; i < nglyphs; ++i, x = new_x)
19306 glyph = row->glyphs[TEXT_AREA] + n_glyphs_before + i;
19307 new_x = x + glyph->pixel_width;
19309 if (/* Lines are continued. */
19310 it->line_wrap != TRUNCATE
19311 && (/* Glyph doesn't fit on the line. */
19312 new_x > it->last_visible_x
19313 /* Or it fits exactly on a window system frame. */
19314 || (new_x == it->last_visible_x
19315 && FRAME_WINDOW_P (it->f))))
19317 /* End of a continued line. */
19319 if (it->hpos == 0
19320 || (new_x == it->last_visible_x
19321 && FRAME_WINDOW_P (it->f)))
19323 /* Current glyph is the only one on the line or
19324 fits exactly on the line. We must continue
19325 the line because we can't draw the cursor
19326 after the glyph. */
19327 row->continued_p = 1;
19328 it->current_x = new_x;
19329 it->continuation_lines_width += new_x;
19330 ++it->hpos;
19331 if (i == nglyphs - 1)
19333 /* If line-wrap is on, check if a previous
19334 wrap point was found. */
19335 if (wrap_row_used > 0
19336 /* Even if there is a previous wrap
19337 point, continue the line here as
19338 usual, if (i) the previous character
19339 was a space or tab AND (ii) the
19340 current character is not. */
19341 && (!may_wrap
19342 || IT_DISPLAYING_WHITESPACE (it)))
19343 goto back_to_wrap;
19345 /* Record the maximum and minimum buffer
19346 positions seen so far in glyphs that will be
19347 displayed by this row. */
19348 if (it->bidi_p)
19349 RECORD_MAX_MIN_POS (it);
19350 set_iterator_to_next (it, 1);
19351 if (IT_OVERFLOW_NEWLINE_INTO_FRINGE (it))
19353 if (!get_next_display_element (it))
19355 row->exact_window_width_line_p = 1;
19356 it->continuation_lines_width = 0;
19357 row->continued_p = 0;
19358 row->ends_at_zv_p = 1;
19360 else if (ITERATOR_AT_END_OF_LINE_P (it))
19362 row->continued_p = 0;
19363 row->exact_window_width_line_p = 1;
19367 else if (it->bidi_p)
19368 RECORD_MAX_MIN_POS (it);
19370 else if (CHAR_GLYPH_PADDING_P (*glyph)
19371 && !FRAME_WINDOW_P (it->f))
19373 /* A padding glyph that doesn't fit on this line.
19374 This means the whole character doesn't fit
19375 on the line. */
19376 if (row->reversed_p)
19377 unproduce_glyphs (it, row->used[TEXT_AREA]
19378 - n_glyphs_before);
19379 row->used[TEXT_AREA] = n_glyphs_before;
19381 /* Fill the rest of the row with continuation
19382 glyphs like in 20.x. */
19383 while (row->glyphs[TEXT_AREA] + row->used[TEXT_AREA]
19384 < row->glyphs[1 + TEXT_AREA])
19385 produce_special_glyphs (it, IT_CONTINUATION);
19387 row->continued_p = 1;
19388 it->current_x = x_before;
19389 it->continuation_lines_width += x_before;
19391 /* Restore the height to what it was before the
19392 element not fitting on the line. */
19393 it->max_ascent = ascent;
19394 it->max_descent = descent;
19395 it->max_phys_ascent = phys_ascent;
19396 it->max_phys_descent = phys_descent;
19398 else if (wrap_row_used > 0)
19400 back_to_wrap:
19401 if (row->reversed_p)
19402 unproduce_glyphs (it,
19403 row->used[TEXT_AREA] - wrap_row_used);
19404 RESTORE_IT (it, &wrap_it, wrap_data);
19405 it->continuation_lines_width += wrap_x;
19406 row->used[TEXT_AREA] = wrap_row_used;
19407 row->ascent = wrap_row_ascent;
19408 row->height = wrap_row_height;
19409 row->phys_ascent = wrap_row_phys_ascent;
19410 row->phys_height = wrap_row_phys_height;
19411 row->extra_line_spacing = wrap_row_extra_line_spacing;
19412 min_pos = wrap_row_min_pos;
19413 min_bpos = wrap_row_min_bpos;
19414 max_pos = wrap_row_max_pos;
19415 max_bpos = wrap_row_max_bpos;
19416 row->continued_p = 1;
19417 row->ends_at_zv_p = 0;
19418 row->exact_window_width_line_p = 0;
19419 it->continuation_lines_width += x;
19421 /* Make sure that a non-default face is extended
19422 up to the right margin of the window. */
19423 extend_face_to_end_of_line (it);
19425 else if (it->c == '\t' && FRAME_WINDOW_P (it->f))
19427 /* A TAB that extends past the right edge of the
19428 window. This produces a single glyph on
19429 window system frames. We leave the glyph in
19430 this row and let it fill the row, but don't
19431 consume the TAB. */
19432 it->continuation_lines_width += it->last_visible_x;
19433 row->ends_in_middle_of_char_p = 1;
19434 row->continued_p = 1;
19435 glyph->pixel_width = it->last_visible_x - x;
19436 it->starts_in_middle_of_char_p = 1;
19438 else
19440 /* Something other than a TAB that draws past
19441 the right edge of the window. Restore
19442 positions to values before the element. */
19443 if (row->reversed_p)
19444 unproduce_glyphs (it, row->used[TEXT_AREA]
19445 - (n_glyphs_before + i));
19446 row->used[TEXT_AREA] = n_glyphs_before + i;
19448 /* Display continuation glyphs. */
19449 if (!FRAME_WINDOW_P (it->f))
19450 produce_special_glyphs (it, IT_CONTINUATION);
19451 row->continued_p = 1;
19453 it->current_x = x_before;
19454 it->continuation_lines_width += x;
19455 extend_face_to_end_of_line (it);
19457 if (nglyphs > 1 && i > 0)
19459 row->ends_in_middle_of_char_p = 1;
19460 it->starts_in_middle_of_char_p = 1;
19463 /* Restore the height to what it was before the
19464 element not fitting on the line. */
19465 it->max_ascent = ascent;
19466 it->max_descent = descent;
19467 it->max_phys_ascent = phys_ascent;
19468 it->max_phys_descent = phys_descent;
19471 break;
19473 else if (new_x > it->first_visible_x)
19475 /* Increment number of glyphs actually displayed. */
19476 ++it->hpos;
19478 /* Record the maximum and minimum buffer positions
19479 seen so far in glyphs that will be displayed by
19480 this row. */
19481 if (it->bidi_p)
19482 RECORD_MAX_MIN_POS (it);
19484 if (x < it->first_visible_x)
19485 /* Glyph is partially visible, i.e. row starts at
19486 negative X position. */
19487 row->x = x - it->first_visible_x;
19489 else
19491 /* Glyph is completely off the left margin of the
19492 window. This should not happen because of the
19493 move_it_in_display_line at the start of this
19494 function, unless the text display area of the
19495 window is empty. */
19496 xassert (it->first_visible_x <= it->last_visible_x);
19499 /* Even if this display element produced no glyphs at all,
19500 we want to record its position. */
19501 if (it->bidi_p && nglyphs == 0)
19502 RECORD_MAX_MIN_POS (it);
19504 row->ascent = max (row->ascent, it->max_ascent);
19505 row->height = max (row->height, it->max_ascent + it->max_descent);
19506 row->phys_ascent = max (row->phys_ascent, it->max_phys_ascent);
19507 row->phys_height = max (row->phys_height,
19508 it->max_phys_ascent + it->max_phys_descent);
19509 row->extra_line_spacing = max (row->extra_line_spacing,
19510 it->max_extra_line_spacing);
19512 /* End of this display line if row is continued. */
19513 if (row->continued_p || row->ends_at_zv_p)
19514 break;
19517 at_end_of_line:
19518 /* Is this a line end? If yes, we're also done, after making
19519 sure that a non-default face is extended up to the right
19520 margin of the window. */
19521 if (ITERATOR_AT_END_OF_LINE_P (it))
19523 int used_before = row->used[TEXT_AREA];
19525 row->ends_in_newline_from_string_p = STRINGP (it->object);
19527 /* Add a space at the end of the line that is used to
19528 display the cursor there. */
19529 if (!IT_OVERFLOW_NEWLINE_INTO_FRINGE (it))
19530 append_space_for_newline (it, 0);
19532 /* Extend the face to the end of the line. */
19533 extend_face_to_end_of_line (it);
19535 /* Make sure we have the position. */
19536 if (used_before == 0)
19537 row->glyphs[TEXT_AREA]->charpos = CHARPOS (it->position);
19539 /* Record the position of the newline, for use in
19540 find_row_edges. */
19541 it->eol_pos = it->current.pos;
19543 /* Consume the line end. This skips over invisible lines. */
19544 set_iterator_to_next (it, 1);
19545 it->continuation_lines_width = 0;
19546 break;
19549 /* Proceed with next display element. Note that this skips
19550 over lines invisible because of selective display. */
19551 set_iterator_to_next (it, 1);
19553 /* If we truncate lines, we are done when the last displayed
19554 glyphs reach past the right margin of the window. */
19555 if (it->line_wrap == TRUNCATE
19556 && (FRAME_WINDOW_P (it->f)
19557 ? (it->current_x >= it->last_visible_x)
19558 : (it->current_x > it->last_visible_x)))
19560 /* Maybe add truncation glyphs. */
19561 if (!FRAME_WINDOW_P (it->f))
19563 int i, n;
19565 if (!row->reversed_p)
19567 for (i = row->used[TEXT_AREA] - 1; i > 0; --i)
19568 if (!CHAR_GLYPH_PADDING_P (row->glyphs[TEXT_AREA][i]))
19569 break;
19571 else
19573 for (i = 0; i < row->used[TEXT_AREA]; i++)
19574 if (!CHAR_GLYPH_PADDING_P (row->glyphs[TEXT_AREA][i]))
19575 break;
19576 /* Remove any padding glyphs at the front of ROW, to
19577 make room for the truncation glyphs we will be
19578 adding below. The loop below always inserts at
19579 least one truncation glyph, so also remove the
19580 last glyph added to ROW. */
19581 unproduce_glyphs (it, i + 1);
19582 /* Adjust i for the loop below. */
19583 i = row->used[TEXT_AREA] - (i + 1);
19586 for (n = row->used[TEXT_AREA]; i < n; ++i)
19588 row->used[TEXT_AREA] = i;
19589 produce_special_glyphs (it, IT_TRUNCATION);
19592 else if (IT_OVERFLOW_NEWLINE_INTO_FRINGE (it))
19594 /* Don't truncate if we can overflow newline into fringe. */
19595 if (!get_next_display_element (it))
19597 it->continuation_lines_width = 0;
19598 row->ends_at_zv_p = 1;
19599 row->exact_window_width_line_p = 1;
19600 break;
19602 if (ITERATOR_AT_END_OF_LINE_P (it))
19604 row->exact_window_width_line_p = 1;
19605 goto at_end_of_line;
19609 row->truncated_on_right_p = 1;
19610 it->continuation_lines_width = 0;
19611 reseat_at_next_visible_line_start (it, 0);
19612 row->ends_at_zv_p = FETCH_BYTE (IT_BYTEPOS (*it) - 1) != '\n';
19613 it->hpos = hpos_before;
19614 it->current_x = x_before;
19615 break;
19619 if (wrap_data)
19620 bidi_unshelve_cache (wrap_data, 1);
19622 /* If line is not empty and hscrolled, maybe insert truncation glyphs
19623 at the left window margin. */
19624 if (it->first_visible_x
19625 && IT_CHARPOS (*it) != CHARPOS (row->start.pos))
19627 if (!FRAME_WINDOW_P (it->f))
19628 insert_left_trunc_glyphs (it);
19629 row->truncated_on_left_p = 1;
19632 /* Remember the position at which this line ends.
19634 BIDI Note: any code that needs MATRIX_ROW_START/END_CHARPOS
19635 cannot be before the call to find_row_edges below, since that is
19636 where these positions are determined. */
19637 row->end = it->current;
19638 if (!it->bidi_p)
19640 row->minpos = row->start.pos;
19641 row->maxpos = row->end.pos;
19643 else
19645 /* ROW->minpos and ROW->maxpos must be the smallest and
19646 `1 + the largest' buffer positions in ROW. But if ROW was
19647 bidi-reordered, these two positions can be anywhere in the
19648 row, so we must determine them now. */
19649 find_row_edges (it, row, min_pos, min_bpos, max_pos, max_bpos);
19652 /* If the start of this line is the overlay arrow-position, then
19653 mark this glyph row as the one containing the overlay arrow.
19654 This is clearly a mess with variable size fonts. It would be
19655 better to let it be displayed like cursors under X. */
19656 if ((row->displays_text_p || !overlay_arrow_seen)
19657 && (overlay_arrow_string = overlay_arrow_at_row (it, row),
19658 !NILP (overlay_arrow_string)))
19660 /* Overlay arrow in window redisplay is a fringe bitmap. */
19661 if (STRINGP (overlay_arrow_string))
19663 struct glyph_row *arrow_row
19664 = get_overlay_arrow_glyph_row (it->w, overlay_arrow_string);
19665 struct glyph *glyph = arrow_row->glyphs[TEXT_AREA];
19666 struct glyph *arrow_end = glyph + arrow_row->used[TEXT_AREA];
19667 struct glyph *p = row->glyphs[TEXT_AREA];
19668 struct glyph *p2, *end;
19670 /* Copy the arrow glyphs. */
19671 while (glyph < arrow_end)
19672 *p++ = *glyph++;
19674 /* Throw away padding glyphs. */
19675 p2 = p;
19676 end = row->glyphs[TEXT_AREA] + row->used[TEXT_AREA];
19677 while (p2 < end && CHAR_GLYPH_PADDING_P (*p2))
19678 ++p2;
19679 if (p2 > p)
19681 while (p2 < end)
19682 *p++ = *p2++;
19683 row->used[TEXT_AREA] = p2 - row->glyphs[TEXT_AREA];
19686 else
19688 xassert (INTEGERP (overlay_arrow_string));
19689 row->overlay_arrow_bitmap = XINT (overlay_arrow_string);
19691 overlay_arrow_seen = 1;
19694 /* Highlight trailing whitespace. */
19695 if (!NILP (Vshow_trailing_whitespace))
19696 highlight_trailing_whitespace (it->f, it->glyph_row);
19698 /* Compute pixel dimensions of this line. */
19699 compute_line_metrics (it);
19701 /* Implementation note: No changes in the glyphs of ROW or in their
19702 faces can be done past this point, because compute_line_metrics
19703 computes ROW's hash value and stores it within the glyph_row
19704 structure. */
19706 /* Record whether this row ends inside an ellipsis. */
19707 row->ends_in_ellipsis_p
19708 = (it->method == GET_FROM_DISPLAY_VECTOR
19709 && it->ellipsis_p);
19711 /* Save fringe bitmaps in this row. */
19712 row->left_user_fringe_bitmap = it->left_user_fringe_bitmap;
19713 row->left_user_fringe_face_id = it->left_user_fringe_face_id;
19714 row->right_user_fringe_bitmap = it->right_user_fringe_bitmap;
19715 row->right_user_fringe_face_id = it->right_user_fringe_face_id;
19717 it->left_user_fringe_bitmap = 0;
19718 it->left_user_fringe_face_id = 0;
19719 it->right_user_fringe_bitmap = 0;
19720 it->right_user_fringe_face_id = 0;
19722 /* Maybe set the cursor. */
19723 cvpos = it->w->cursor.vpos;
19724 if ((cvpos < 0
19725 /* In bidi-reordered rows, keep checking for proper cursor
19726 position even if one has been found already, because buffer
19727 positions in such rows change non-linearly with ROW->VPOS,
19728 when a line is continued. One exception: when we are at ZV,
19729 display cursor on the first suitable glyph row, since all
19730 the empty rows after that also have their position set to ZV. */
19731 /* FIXME: Revisit this when glyph ``spilling'' in continuation
19732 lines' rows is implemented for bidi-reordered rows. */
19733 || (it->bidi_p
19734 && !MATRIX_ROW (it->w->desired_matrix, cvpos)->ends_at_zv_p))
19735 && PT >= MATRIX_ROW_START_CHARPOS (row)
19736 && PT <= MATRIX_ROW_END_CHARPOS (row)
19737 && cursor_row_p (row))
19738 set_cursor_from_row (it->w, row, it->w->desired_matrix, 0, 0, 0, 0);
19740 /* Prepare for the next line. This line starts horizontally at (X
19741 HPOS) = (0 0). Vertical positions are incremented. As a
19742 convenience for the caller, IT->glyph_row is set to the next
19743 row to be used. */
19744 it->current_x = it->hpos = 0;
19745 it->current_y += row->height;
19746 SET_TEXT_POS (it->eol_pos, 0, 0);
19747 ++it->vpos;
19748 ++it->glyph_row;
19749 /* The next row should by default use the same value of the
19750 reversed_p flag as this one. set_iterator_to_next decides when
19751 it's a new paragraph, and PRODUCE_GLYPHS recomputes the value of
19752 the flag accordingly. */
19753 if (it->glyph_row < MATRIX_BOTTOM_TEXT_ROW (it->w->desired_matrix, it->w))
19754 it->glyph_row->reversed_p = row->reversed_p;
19755 it->start = row->end;
19756 return row->displays_text_p;
19758 #undef RECORD_MAX_MIN_POS
19761 DEFUN ("current-bidi-paragraph-direction", Fcurrent_bidi_paragraph_direction,
19762 Scurrent_bidi_paragraph_direction, 0, 1, 0,
19763 doc: /* Return paragraph direction at point in BUFFER.
19764 Value is either `left-to-right' or `right-to-left'.
19765 If BUFFER is omitted or nil, it defaults to the current buffer.
19767 Paragraph direction determines how the text in the paragraph is displayed.
19768 In left-to-right paragraphs, text begins at the left margin of the window
19769 and the reading direction is generally left to right. In right-to-left
19770 paragraphs, text begins at the right margin and is read from right to left.
19772 See also `bidi-paragraph-direction'. */)
19773 (Lisp_Object buffer)
19775 struct buffer *buf = current_buffer;
19776 struct buffer *old = buf;
19778 if (! NILP (buffer))
19780 CHECK_BUFFER (buffer);
19781 buf = XBUFFER (buffer);
19784 if (NILP (BVAR (buf, bidi_display_reordering))
19785 || NILP (BVAR (buf, enable_multibyte_characters))
19786 /* When we are loading loadup.el, the character property tables
19787 needed for bidi iteration are not yet available. */
19788 || !NILP (Vpurify_flag))
19789 return Qleft_to_right;
19790 else if (!NILP (BVAR (buf, bidi_paragraph_direction)))
19791 return BVAR (buf, bidi_paragraph_direction);
19792 else
19794 /* Determine the direction from buffer text. We could try to
19795 use current_matrix if it is up to date, but this seems fast
19796 enough as it is. */
19797 struct bidi_it itb;
19798 ptrdiff_t pos = BUF_PT (buf);
19799 ptrdiff_t bytepos = BUF_PT_BYTE (buf);
19800 int c;
19801 void *itb_data = bidi_shelve_cache ();
19803 set_buffer_temp (buf);
19804 /* bidi_paragraph_init finds the base direction of the paragraph
19805 by searching forward from paragraph start. We need the base
19806 direction of the current or _previous_ paragraph, so we need
19807 to make sure we are within that paragraph. To that end, find
19808 the previous non-empty line. */
19809 if (pos >= ZV && pos > BEGV)
19811 pos--;
19812 bytepos = CHAR_TO_BYTE (pos);
19814 if (fast_looking_at (build_string ("[\f\t ]*\n"),
19815 pos, bytepos, ZV, ZV_BYTE, Qnil) > 0)
19817 while ((c = FETCH_BYTE (bytepos)) == '\n'
19818 || c == ' ' || c == '\t' || c == '\f')
19820 if (bytepos <= BEGV_BYTE)
19821 break;
19822 bytepos--;
19823 pos--;
19825 while (!CHAR_HEAD_P (FETCH_BYTE (bytepos)))
19826 bytepos--;
19828 bidi_init_it (pos, bytepos, FRAME_WINDOW_P (SELECTED_FRAME ()), &itb);
19829 itb.paragraph_dir = NEUTRAL_DIR;
19830 itb.string.s = NULL;
19831 itb.string.lstring = Qnil;
19832 itb.string.bufpos = 0;
19833 itb.string.unibyte = 0;
19834 bidi_paragraph_init (NEUTRAL_DIR, &itb, 1);
19835 bidi_unshelve_cache (itb_data, 0);
19836 set_buffer_temp (old);
19837 switch (itb.paragraph_dir)
19839 case L2R:
19840 return Qleft_to_right;
19841 break;
19842 case R2L:
19843 return Qright_to_left;
19844 break;
19845 default:
19846 abort ();
19853 /***********************************************************************
19854 Menu Bar
19855 ***********************************************************************/
19857 /* Redisplay the menu bar in the frame for window W.
19859 The menu bar of X frames that don't have X toolkit support is
19860 displayed in a special window W->frame->menu_bar_window.
19862 The menu bar of terminal frames is treated specially as far as
19863 glyph matrices are concerned. Menu bar lines are not part of
19864 windows, so the update is done directly on the frame matrix rows
19865 for the menu bar. */
19867 static void
19868 display_menu_bar (struct window *w)
19870 struct frame *f = XFRAME (WINDOW_FRAME (w));
19871 struct it it;
19872 Lisp_Object items;
19873 int i;
19875 /* Don't do all this for graphical frames. */
19876 #ifdef HAVE_NTGUI
19877 if (FRAME_W32_P (f))
19878 return;
19879 #endif
19880 #if defined (USE_X_TOOLKIT) || defined (USE_GTK)
19881 if (FRAME_X_P (f))
19882 return;
19883 #endif
19885 #ifdef HAVE_NS
19886 if (FRAME_NS_P (f))
19887 return;
19888 #endif /* HAVE_NS */
19890 #ifdef USE_X_TOOLKIT
19891 xassert (!FRAME_WINDOW_P (f));
19892 init_iterator (&it, w, -1, -1, f->desired_matrix->rows, MENU_FACE_ID);
19893 it.first_visible_x = 0;
19894 it.last_visible_x = FRAME_TOTAL_COLS (f) * FRAME_COLUMN_WIDTH (f);
19895 #else /* not USE_X_TOOLKIT */
19896 if (FRAME_WINDOW_P (f))
19898 /* Menu bar lines are displayed in the desired matrix of the
19899 dummy window menu_bar_window. */
19900 struct window *menu_w;
19901 xassert (WINDOWP (f->menu_bar_window));
19902 menu_w = XWINDOW (f->menu_bar_window);
19903 init_iterator (&it, menu_w, -1, -1, menu_w->desired_matrix->rows,
19904 MENU_FACE_ID);
19905 it.first_visible_x = 0;
19906 it.last_visible_x = FRAME_TOTAL_COLS (f) * FRAME_COLUMN_WIDTH (f);
19908 else
19910 /* This is a TTY frame, i.e. character hpos/vpos are used as
19911 pixel x/y. */
19912 init_iterator (&it, w, -1, -1, f->desired_matrix->rows,
19913 MENU_FACE_ID);
19914 it.first_visible_x = 0;
19915 it.last_visible_x = FRAME_COLS (f);
19917 #endif /* not USE_X_TOOLKIT */
19919 /* FIXME: This should be controlled by a user option. See the
19920 comments in redisplay_tool_bar and display_mode_line about
19921 this. */
19922 it.paragraph_embedding = L2R;
19924 if (! mode_line_inverse_video)
19925 /* Force the menu-bar to be displayed in the default face. */
19926 it.base_face_id = it.face_id = DEFAULT_FACE_ID;
19928 /* Clear all rows of the menu bar. */
19929 for (i = 0; i < FRAME_MENU_BAR_LINES (f); ++i)
19931 struct glyph_row *row = it.glyph_row + i;
19932 clear_glyph_row (row);
19933 row->enabled_p = 1;
19934 row->full_width_p = 1;
19937 /* Display all items of the menu bar. */
19938 items = FRAME_MENU_BAR_ITEMS (it.f);
19939 for (i = 0; i < ASIZE (items); i += 4)
19941 Lisp_Object string;
19943 /* Stop at nil string. */
19944 string = AREF (items, i + 1);
19945 if (NILP (string))
19946 break;
19948 /* Remember where item was displayed. */
19949 ASET (items, i + 3, make_number (it.hpos));
19951 /* Display the item, pad with one space. */
19952 if (it.current_x < it.last_visible_x)
19953 display_string (NULL, string, Qnil, 0, 0, &it,
19954 SCHARS (string) + 1, 0, 0, -1);
19957 /* Fill out the line with spaces. */
19958 if (it.current_x < it.last_visible_x)
19959 display_string ("", Qnil, Qnil, 0, 0, &it, -1, 0, 0, -1);
19961 /* Compute the total height of the lines. */
19962 compute_line_metrics (&it);
19967 /***********************************************************************
19968 Mode Line
19969 ***********************************************************************/
19971 /* Redisplay mode lines in the window tree whose root is WINDOW. If
19972 FORCE is non-zero, redisplay mode lines unconditionally.
19973 Otherwise, redisplay only mode lines that are garbaged. Value is
19974 the number of windows whose mode lines were redisplayed. */
19976 static int
19977 redisplay_mode_lines (Lisp_Object window, int force)
19979 int nwindows = 0;
19981 while (!NILP (window))
19983 struct window *w = XWINDOW (window);
19985 if (WINDOWP (w->hchild))
19986 nwindows += redisplay_mode_lines (w->hchild, force);
19987 else if (WINDOWP (w->vchild))
19988 nwindows += redisplay_mode_lines (w->vchild, force);
19989 else if (force
19990 || FRAME_GARBAGED_P (XFRAME (w->frame))
19991 || !MATRIX_MODE_LINE_ROW (w->current_matrix)->enabled_p)
19993 struct text_pos lpoint;
19994 struct buffer *old = current_buffer;
19996 /* Set the window's buffer for the mode line display. */
19997 SET_TEXT_POS (lpoint, PT, PT_BYTE);
19998 set_buffer_internal_1 (XBUFFER (w->buffer));
20000 /* Point refers normally to the selected window. For any
20001 other window, set up appropriate value. */
20002 if (!EQ (window, selected_window))
20004 struct text_pos pt;
20006 SET_TEXT_POS_FROM_MARKER (pt, w->pointm);
20007 if (CHARPOS (pt) < BEGV)
20008 TEMP_SET_PT_BOTH (BEGV, BEGV_BYTE);
20009 else if (CHARPOS (pt) > (ZV - 1))
20010 TEMP_SET_PT_BOTH (ZV, ZV_BYTE);
20011 else
20012 TEMP_SET_PT_BOTH (CHARPOS (pt), BYTEPOS (pt));
20015 /* Display mode lines. */
20016 clear_glyph_matrix (w->desired_matrix);
20017 if (display_mode_lines (w))
20019 ++nwindows;
20020 w->must_be_updated_p = 1;
20023 /* Restore old settings. */
20024 set_buffer_internal_1 (old);
20025 TEMP_SET_PT_BOTH (CHARPOS (lpoint), BYTEPOS (lpoint));
20028 window = w->next;
20031 return nwindows;
20035 /* Display the mode and/or header line of window W. Value is the
20036 sum number of mode lines and header lines displayed. */
20038 static int
20039 display_mode_lines (struct window *w)
20041 Lisp_Object old_selected_window, old_selected_frame;
20042 int n = 0;
20044 old_selected_frame = selected_frame;
20045 selected_frame = w->frame;
20046 old_selected_window = selected_window;
20047 XSETWINDOW (selected_window, w);
20049 /* These will be set while the mode line specs are processed. */
20050 line_number_displayed = 0;
20051 w->column_number_displayed = Qnil;
20053 if (WINDOW_WANTS_MODELINE_P (w))
20055 struct window *sel_w = XWINDOW (old_selected_window);
20057 /* Select mode line face based on the real selected window. */
20058 display_mode_line (w, CURRENT_MODE_LINE_FACE_ID_3 (sel_w, sel_w, w),
20059 BVAR (current_buffer, mode_line_format));
20060 ++n;
20063 if (WINDOW_WANTS_HEADER_LINE_P (w))
20065 display_mode_line (w, HEADER_LINE_FACE_ID,
20066 BVAR (current_buffer, header_line_format));
20067 ++n;
20070 selected_frame = old_selected_frame;
20071 selected_window = old_selected_window;
20072 return n;
20076 /* Display mode or header line of window W. FACE_ID specifies which
20077 line to display; it is either MODE_LINE_FACE_ID or
20078 HEADER_LINE_FACE_ID. FORMAT is the mode/header line format to
20079 display. Value is the pixel height of the mode/header line
20080 displayed. */
20082 static int
20083 display_mode_line (struct window *w, enum face_id face_id, Lisp_Object format)
20085 struct it it;
20086 struct face *face;
20087 ptrdiff_t count = SPECPDL_INDEX ();
20089 init_iterator (&it, w, -1, -1, NULL, face_id);
20090 /* Don't extend on a previously drawn mode-line.
20091 This may happen if called from pos_visible_p. */
20092 it.glyph_row->enabled_p = 0;
20093 prepare_desired_row (it.glyph_row);
20095 it.glyph_row->mode_line_p = 1;
20097 if (! mode_line_inverse_video)
20098 /* Force the mode-line to be displayed in the default face. */
20099 it.base_face_id = it.face_id = DEFAULT_FACE_ID;
20101 /* FIXME: This should be controlled by a user option. But
20102 supporting such an option is not trivial, since the mode line is
20103 made up of many separate strings. */
20104 it.paragraph_embedding = L2R;
20106 record_unwind_protect (unwind_format_mode_line,
20107 format_mode_line_unwind_data (NULL, Qnil, 0));
20109 mode_line_target = MODE_LINE_DISPLAY;
20111 /* Temporarily make frame's keyboard the current kboard so that
20112 kboard-local variables in the mode_line_format will get the right
20113 values. */
20114 push_kboard (FRAME_KBOARD (it.f));
20115 record_unwind_save_match_data ();
20116 display_mode_element (&it, 0, 0, 0, format, Qnil, 0);
20117 pop_kboard ();
20119 unbind_to (count, Qnil);
20121 /* Fill up with spaces. */
20122 display_string (" ", Qnil, Qnil, 0, 0, &it, 10000, -1, -1, 0);
20124 compute_line_metrics (&it);
20125 it.glyph_row->full_width_p = 1;
20126 it.glyph_row->continued_p = 0;
20127 it.glyph_row->truncated_on_left_p = 0;
20128 it.glyph_row->truncated_on_right_p = 0;
20130 /* Make a 3D mode-line have a shadow at its right end. */
20131 face = FACE_FROM_ID (it.f, face_id);
20132 extend_face_to_end_of_line (&it);
20133 if (face->box != FACE_NO_BOX)
20135 struct glyph *last = (it.glyph_row->glyphs[TEXT_AREA]
20136 + it.glyph_row->used[TEXT_AREA] - 1);
20137 last->right_box_line_p = 1;
20140 return it.glyph_row->height;
20143 /* Move element ELT in LIST to the front of LIST.
20144 Return the updated list. */
20146 static Lisp_Object
20147 move_elt_to_front (Lisp_Object elt, Lisp_Object list)
20149 register Lisp_Object tail, prev;
20150 register Lisp_Object tem;
20152 tail = list;
20153 prev = Qnil;
20154 while (CONSP (tail))
20156 tem = XCAR (tail);
20158 if (EQ (elt, tem))
20160 /* Splice out the link TAIL. */
20161 if (NILP (prev))
20162 list = XCDR (tail);
20163 else
20164 Fsetcdr (prev, XCDR (tail));
20166 /* Now make it the first. */
20167 Fsetcdr (tail, list);
20168 return tail;
20170 else
20171 prev = tail;
20172 tail = XCDR (tail);
20173 QUIT;
20176 /* Not found--return unchanged LIST. */
20177 return list;
20180 /* Contribute ELT to the mode line for window IT->w. How it
20181 translates into text depends on its data type.
20183 IT describes the display environment in which we display, as usual.
20185 DEPTH is the depth in recursion. It is used to prevent
20186 infinite recursion here.
20188 FIELD_WIDTH is the number of characters the display of ELT should
20189 occupy in the mode line, and PRECISION is the maximum number of
20190 characters to display from ELT's representation. See
20191 display_string for details.
20193 Returns the hpos of the end of the text generated by ELT.
20195 PROPS is a property list to add to any string we encounter.
20197 If RISKY is nonzero, remove (disregard) any properties in any string
20198 we encounter, and ignore :eval and :propertize.
20200 The global variable `mode_line_target' determines whether the
20201 output is passed to `store_mode_line_noprop',
20202 `store_mode_line_string', or `display_string'. */
20204 static int
20205 display_mode_element (struct it *it, int depth, int field_width, int precision,
20206 Lisp_Object elt, Lisp_Object props, int risky)
20208 int n = 0, field, prec;
20209 int literal = 0;
20211 tail_recurse:
20212 if (depth > 100)
20213 elt = build_string ("*too-deep*");
20215 depth++;
20217 switch (SWITCH_ENUM_CAST (XTYPE (elt)))
20219 case Lisp_String:
20221 /* A string: output it and check for %-constructs within it. */
20222 unsigned char c;
20223 ptrdiff_t offset = 0;
20225 if (SCHARS (elt) > 0
20226 && (!NILP (props) || risky))
20228 Lisp_Object oprops, aelt;
20229 oprops = Ftext_properties_at (make_number (0), elt);
20231 /* If the starting string's properties are not what
20232 we want, translate the string. Also, if the string
20233 is risky, do that anyway. */
20235 if (NILP (Fequal (props, oprops)) || risky)
20237 /* If the starting string has properties,
20238 merge the specified ones onto the existing ones. */
20239 if (! NILP (oprops) && !risky)
20241 Lisp_Object tem;
20243 oprops = Fcopy_sequence (oprops);
20244 tem = props;
20245 while (CONSP (tem))
20247 oprops = Fplist_put (oprops, XCAR (tem),
20248 XCAR (XCDR (tem)));
20249 tem = XCDR (XCDR (tem));
20251 props = oprops;
20254 aelt = Fassoc (elt, mode_line_proptrans_alist);
20255 if (! NILP (aelt) && !NILP (Fequal (props, XCDR (aelt))))
20257 /* AELT is what we want. Move it to the front
20258 without consing. */
20259 elt = XCAR (aelt);
20260 mode_line_proptrans_alist
20261 = move_elt_to_front (aelt, mode_line_proptrans_alist);
20263 else
20265 Lisp_Object tem;
20267 /* If AELT has the wrong props, it is useless.
20268 so get rid of it. */
20269 if (! NILP (aelt))
20270 mode_line_proptrans_alist
20271 = Fdelq (aelt, mode_line_proptrans_alist);
20273 elt = Fcopy_sequence (elt);
20274 Fset_text_properties (make_number (0), Flength (elt),
20275 props, elt);
20276 /* Add this item to mode_line_proptrans_alist. */
20277 mode_line_proptrans_alist
20278 = Fcons (Fcons (elt, props),
20279 mode_line_proptrans_alist);
20280 /* Truncate mode_line_proptrans_alist
20281 to at most 50 elements. */
20282 tem = Fnthcdr (make_number (50),
20283 mode_line_proptrans_alist);
20284 if (! NILP (tem))
20285 XSETCDR (tem, Qnil);
20290 offset = 0;
20292 if (literal)
20294 prec = precision - n;
20295 switch (mode_line_target)
20297 case MODE_LINE_NOPROP:
20298 case MODE_LINE_TITLE:
20299 n += store_mode_line_noprop (SSDATA (elt), -1, prec);
20300 break;
20301 case MODE_LINE_STRING:
20302 n += store_mode_line_string (NULL, elt, 1, 0, prec, Qnil);
20303 break;
20304 case MODE_LINE_DISPLAY:
20305 n += display_string (NULL, elt, Qnil, 0, 0, it,
20306 0, prec, 0, STRING_MULTIBYTE (elt));
20307 break;
20310 break;
20313 /* Handle the non-literal case. */
20315 while ((precision <= 0 || n < precision)
20316 && SREF (elt, offset) != 0
20317 && (mode_line_target != MODE_LINE_DISPLAY
20318 || it->current_x < it->last_visible_x))
20320 ptrdiff_t last_offset = offset;
20322 /* Advance to end of string or next format specifier. */
20323 while ((c = SREF (elt, offset++)) != '\0' && c != '%')
20326 if (offset - 1 != last_offset)
20328 ptrdiff_t nchars, nbytes;
20330 /* Output to end of string or up to '%'. Field width
20331 is length of string. Don't output more than
20332 PRECISION allows us. */
20333 offset--;
20335 prec = c_string_width (SDATA (elt) + last_offset,
20336 offset - last_offset, precision - n,
20337 &nchars, &nbytes);
20339 switch (mode_line_target)
20341 case MODE_LINE_NOPROP:
20342 case MODE_LINE_TITLE:
20343 n += store_mode_line_noprop (SSDATA (elt) + last_offset, 0, prec);
20344 break;
20345 case MODE_LINE_STRING:
20347 ptrdiff_t bytepos = last_offset;
20348 ptrdiff_t charpos = string_byte_to_char (elt, bytepos);
20349 ptrdiff_t endpos = (precision <= 0
20350 ? string_byte_to_char (elt, offset)
20351 : charpos + nchars);
20353 n += store_mode_line_string (NULL,
20354 Fsubstring (elt, make_number (charpos),
20355 make_number (endpos)),
20356 0, 0, 0, Qnil);
20358 break;
20359 case MODE_LINE_DISPLAY:
20361 ptrdiff_t bytepos = last_offset;
20362 ptrdiff_t charpos = string_byte_to_char (elt, bytepos);
20364 if (precision <= 0)
20365 nchars = string_byte_to_char (elt, offset) - charpos;
20366 n += display_string (NULL, elt, Qnil, 0, charpos,
20367 it, 0, nchars, 0,
20368 STRING_MULTIBYTE (elt));
20370 break;
20373 else /* c == '%' */
20375 ptrdiff_t percent_position = offset;
20377 /* Get the specified minimum width. Zero means
20378 don't pad. */
20379 field = 0;
20380 while ((c = SREF (elt, offset++)) >= '0' && c <= '9')
20381 field = field * 10 + c - '0';
20383 /* Don't pad beyond the total padding allowed. */
20384 if (field_width - n > 0 && field > field_width - n)
20385 field = field_width - n;
20387 /* Note that either PRECISION <= 0 or N < PRECISION. */
20388 prec = precision - n;
20390 if (c == 'M')
20391 n += display_mode_element (it, depth, field, prec,
20392 Vglobal_mode_string, props,
20393 risky);
20394 else if (c != 0)
20396 int multibyte;
20397 ptrdiff_t bytepos, charpos;
20398 const char *spec;
20399 Lisp_Object string;
20401 bytepos = percent_position;
20402 charpos = (STRING_MULTIBYTE (elt)
20403 ? string_byte_to_char (elt, bytepos)
20404 : bytepos);
20405 spec = decode_mode_spec (it->w, c, field, &string);
20406 multibyte = STRINGP (string) && STRING_MULTIBYTE (string);
20408 switch (mode_line_target)
20410 case MODE_LINE_NOPROP:
20411 case MODE_LINE_TITLE:
20412 n += store_mode_line_noprop (spec, field, prec);
20413 break;
20414 case MODE_LINE_STRING:
20416 Lisp_Object tem = build_string (spec);
20417 props = Ftext_properties_at (make_number (charpos), elt);
20418 /* Should only keep face property in props */
20419 n += store_mode_line_string (NULL, tem, 0, field, prec, props);
20421 break;
20422 case MODE_LINE_DISPLAY:
20424 int nglyphs_before, nwritten;
20426 nglyphs_before = it->glyph_row->used[TEXT_AREA];
20427 nwritten = display_string (spec, string, elt,
20428 charpos, 0, it,
20429 field, prec, 0,
20430 multibyte);
20432 /* Assign to the glyphs written above the
20433 string where the `%x' came from, position
20434 of the `%'. */
20435 if (nwritten > 0)
20437 struct glyph *glyph
20438 = (it->glyph_row->glyphs[TEXT_AREA]
20439 + nglyphs_before);
20440 int i;
20442 for (i = 0; i < nwritten; ++i)
20444 glyph[i].object = elt;
20445 glyph[i].charpos = charpos;
20448 n += nwritten;
20451 break;
20454 else /* c == 0 */
20455 break;
20459 break;
20461 case Lisp_Symbol:
20462 /* A symbol: process the value of the symbol recursively
20463 as if it appeared here directly. Avoid error if symbol void.
20464 Special case: if value of symbol is a string, output the string
20465 literally. */
20467 register Lisp_Object tem;
20469 /* If the variable is not marked as risky to set
20470 then its contents are risky to use. */
20471 if (NILP (Fget (elt, Qrisky_local_variable)))
20472 risky = 1;
20474 tem = Fboundp (elt);
20475 if (!NILP (tem))
20477 tem = Fsymbol_value (elt);
20478 /* If value is a string, output that string literally:
20479 don't check for % within it. */
20480 if (STRINGP (tem))
20481 literal = 1;
20483 if (!EQ (tem, elt))
20485 /* Give up right away for nil or t. */
20486 elt = tem;
20487 goto tail_recurse;
20491 break;
20493 case Lisp_Cons:
20495 register Lisp_Object car, tem;
20497 /* A cons cell: five distinct cases.
20498 If first element is :eval or :propertize, do something special.
20499 If first element is a string or a cons, process all the elements
20500 and effectively concatenate them.
20501 If first element is a negative number, truncate displaying cdr to
20502 at most that many characters. If positive, pad (with spaces)
20503 to at least that many characters.
20504 If first element is a symbol, process the cadr or caddr recursively
20505 according to whether the symbol's value is non-nil or nil. */
20506 car = XCAR (elt);
20507 if (EQ (car, QCeval))
20509 /* An element of the form (:eval FORM) means evaluate FORM
20510 and use the result as mode line elements. */
20512 if (risky)
20513 break;
20515 if (CONSP (XCDR (elt)))
20517 Lisp_Object spec;
20518 spec = safe_eval (XCAR (XCDR (elt)));
20519 n += display_mode_element (it, depth, field_width - n,
20520 precision - n, spec, props,
20521 risky);
20524 else if (EQ (car, QCpropertize))
20526 /* An element of the form (:propertize ELT PROPS...)
20527 means display ELT but applying properties PROPS. */
20529 if (risky)
20530 break;
20532 if (CONSP (XCDR (elt)))
20533 n += display_mode_element (it, depth, field_width - n,
20534 precision - n, XCAR (XCDR (elt)),
20535 XCDR (XCDR (elt)), risky);
20537 else if (SYMBOLP (car))
20539 tem = Fboundp (car);
20540 elt = XCDR (elt);
20541 if (!CONSP (elt))
20542 goto invalid;
20543 /* elt is now the cdr, and we know it is a cons cell.
20544 Use its car if CAR has a non-nil value. */
20545 if (!NILP (tem))
20547 tem = Fsymbol_value (car);
20548 if (!NILP (tem))
20550 elt = XCAR (elt);
20551 goto tail_recurse;
20554 /* Symbol's value is nil (or symbol is unbound)
20555 Get the cddr of the original list
20556 and if possible find the caddr and use that. */
20557 elt = XCDR (elt);
20558 if (NILP (elt))
20559 break;
20560 else if (!CONSP (elt))
20561 goto invalid;
20562 elt = XCAR (elt);
20563 goto tail_recurse;
20565 else if (INTEGERP (car))
20567 register int lim = XINT (car);
20568 elt = XCDR (elt);
20569 if (lim < 0)
20571 /* Negative int means reduce maximum width. */
20572 if (precision <= 0)
20573 precision = -lim;
20574 else
20575 precision = min (precision, -lim);
20577 else if (lim > 0)
20579 /* Padding specified. Don't let it be more than
20580 current maximum. */
20581 if (precision > 0)
20582 lim = min (precision, lim);
20584 /* If that's more padding than already wanted, queue it.
20585 But don't reduce padding already specified even if
20586 that is beyond the current truncation point. */
20587 field_width = max (lim, field_width);
20589 goto tail_recurse;
20591 else if (STRINGP (car) || CONSP (car))
20593 Lisp_Object halftail = elt;
20594 int len = 0;
20596 while (CONSP (elt)
20597 && (precision <= 0 || n < precision))
20599 n += display_mode_element (it, depth,
20600 /* Do padding only after the last
20601 element in the list. */
20602 (! CONSP (XCDR (elt))
20603 ? field_width - n
20604 : 0),
20605 precision - n, XCAR (elt),
20606 props, risky);
20607 elt = XCDR (elt);
20608 len++;
20609 if ((len & 1) == 0)
20610 halftail = XCDR (halftail);
20611 /* Check for cycle. */
20612 if (EQ (halftail, elt))
20613 break;
20617 break;
20619 default:
20620 invalid:
20621 elt = build_string ("*invalid*");
20622 goto tail_recurse;
20625 /* Pad to FIELD_WIDTH. */
20626 if (field_width > 0 && n < field_width)
20628 switch (mode_line_target)
20630 case MODE_LINE_NOPROP:
20631 case MODE_LINE_TITLE:
20632 n += store_mode_line_noprop ("", field_width - n, 0);
20633 break;
20634 case MODE_LINE_STRING:
20635 n += store_mode_line_string ("", Qnil, 0, field_width - n, 0, Qnil);
20636 break;
20637 case MODE_LINE_DISPLAY:
20638 n += display_string ("", Qnil, Qnil, 0, 0, it, field_width - n,
20639 0, 0, 0);
20640 break;
20644 return n;
20647 /* Store a mode-line string element in mode_line_string_list.
20649 If STRING is non-null, display that C string. Otherwise, the Lisp
20650 string LISP_STRING is displayed.
20652 FIELD_WIDTH is the minimum number of output glyphs to produce.
20653 If STRING has fewer characters than FIELD_WIDTH, pad to the right
20654 with spaces. FIELD_WIDTH <= 0 means don't pad.
20656 PRECISION is the maximum number of characters to output from
20657 STRING. PRECISION <= 0 means don't truncate the string.
20659 If COPY_STRING is non-zero, make a copy of LISP_STRING before adding
20660 properties to the string.
20662 PROPS are the properties to add to the string.
20663 The mode_line_string_face face property is always added to the string.
20666 static int
20667 store_mode_line_string (const char *string, Lisp_Object lisp_string, int copy_string,
20668 int field_width, int precision, Lisp_Object props)
20670 ptrdiff_t len;
20671 int n = 0;
20673 if (string != NULL)
20675 len = strlen (string);
20676 if (precision > 0 && len > precision)
20677 len = precision;
20678 lisp_string = make_string (string, len);
20679 if (NILP (props))
20680 props = mode_line_string_face_prop;
20681 else if (!NILP (mode_line_string_face))
20683 Lisp_Object face = Fplist_get (props, Qface);
20684 props = Fcopy_sequence (props);
20685 if (NILP (face))
20686 face = mode_line_string_face;
20687 else
20688 face = Fcons (face, Fcons (mode_line_string_face, Qnil));
20689 props = Fplist_put (props, Qface, face);
20691 Fadd_text_properties (make_number (0), make_number (len),
20692 props, lisp_string);
20694 else
20696 len = XFASTINT (Flength (lisp_string));
20697 if (precision > 0 && len > precision)
20699 len = precision;
20700 lisp_string = Fsubstring (lisp_string, make_number (0), make_number (len));
20701 precision = -1;
20703 if (!NILP (mode_line_string_face))
20705 Lisp_Object face;
20706 if (NILP (props))
20707 props = Ftext_properties_at (make_number (0), lisp_string);
20708 face = Fplist_get (props, Qface);
20709 if (NILP (face))
20710 face = mode_line_string_face;
20711 else
20712 face = Fcons (face, Fcons (mode_line_string_face, Qnil));
20713 props = Fcons (Qface, Fcons (face, Qnil));
20714 if (copy_string)
20715 lisp_string = Fcopy_sequence (lisp_string);
20717 if (!NILP (props))
20718 Fadd_text_properties (make_number (0), make_number (len),
20719 props, lisp_string);
20722 if (len > 0)
20724 mode_line_string_list = Fcons (lisp_string, mode_line_string_list);
20725 n += len;
20728 if (field_width > len)
20730 field_width -= len;
20731 lisp_string = Fmake_string (make_number (field_width), make_number (' '));
20732 if (!NILP (props))
20733 Fadd_text_properties (make_number (0), make_number (field_width),
20734 props, lisp_string);
20735 mode_line_string_list = Fcons (lisp_string, mode_line_string_list);
20736 n += field_width;
20739 return n;
20743 DEFUN ("format-mode-line", Fformat_mode_line, Sformat_mode_line,
20744 1, 4, 0,
20745 doc: /* Format a string out of a mode line format specification.
20746 First arg FORMAT specifies the mode line format (see `mode-line-format'
20747 for details) to use.
20749 By default, the format is evaluated for the currently selected window.
20751 Optional second arg FACE specifies the face property to put on all
20752 characters for which no face is specified. The value nil means the
20753 default face. The value t means whatever face the window's mode line
20754 currently uses (either `mode-line' or `mode-line-inactive',
20755 depending on whether the window is the selected window or not).
20756 An integer value means the value string has no text
20757 properties.
20759 Optional third and fourth args WINDOW and BUFFER specify the window
20760 and buffer to use as the context for the formatting (defaults
20761 are the selected window and the WINDOW's buffer). */)
20762 (Lisp_Object format, Lisp_Object face,
20763 Lisp_Object window, Lisp_Object buffer)
20765 struct it it;
20766 int len;
20767 struct window *w;
20768 struct buffer *old_buffer = NULL;
20769 int face_id;
20770 int no_props = INTEGERP (face);
20771 ptrdiff_t count = SPECPDL_INDEX ();
20772 Lisp_Object str;
20773 int string_start = 0;
20775 if (NILP (window))
20776 window = selected_window;
20777 CHECK_WINDOW (window);
20778 w = XWINDOW (window);
20780 if (NILP (buffer))
20781 buffer = w->buffer;
20782 CHECK_BUFFER (buffer);
20784 /* Make formatting the modeline a non-op when noninteractive, otherwise
20785 there will be problems later caused by a partially initialized frame. */
20786 if (NILP (format) || noninteractive)
20787 return empty_unibyte_string;
20789 if (no_props)
20790 face = Qnil;
20792 face_id = (NILP (face) || EQ (face, Qdefault)) ? DEFAULT_FACE_ID
20793 : EQ (face, Qt) ? (EQ (window, selected_window)
20794 ? MODE_LINE_FACE_ID : MODE_LINE_INACTIVE_FACE_ID)
20795 : EQ (face, Qmode_line) ? MODE_LINE_FACE_ID
20796 : EQ (face, Qmode_line_inactive) ? MODE_LINE_INACTIVE_FACE_ID
20797 : EQ (face, Qheader_line) ? HEADER_LINE_FACE_ID
20798 : EQ (face, Qtool_bar) ? TOOL_BAR_FACE_ID
20799 : DEFAULT_FACE_ID;
20801 if (XBUFFER (buffer) != current_buffer)
20802 old_buffer = current_buffer;
20804 /* Save things including mode_line_proptrans_alist,
20805 and set that to nil so that we don't alter the outer value. */
20806 record_unwind_protect (unwind_format_mode_line,
20807 format_mode_line_unwind_data
20808 (old_buffer, selected_window, 1));
20809 mode_line_proptrans_alist = Qnil;
20811 Fselect_window (window, Qt);
20812 if (old_buffer)
20813 set_buffer_internal_1 (XBUFFER (buffer));
20815 init_iterator (&it, w, -1, -1, NULL, face_id);
20817 if (no_props)
20819 mode_line_target = MODE_LINE_NOPROP;
20820 mode_line_string_face_prop = Qnil;
20821 mode_line_string_list = Qnil;
20822 string_start = MODE_LINE_NOPROP_LEN (0);
20824 else
20826 mode_line_target = MODE_LINE_STRING;
20827 mode_line_string_list = Qnil;
20828 mode_line_string_face = face;
20829 mode_line_string_face_prop
20830 = (NILP (face) ? Qnil : Fcons (Qface, Fcons (face, Qnil)));
20833 push_kboard (FRAME_KBOARD (it.f));
20834 display_mode_element (&it, 0, 0, 0, format, Qnil, 0);
20835 pop_kboard ();
20837 if (no_props)
20839 len = MODE_LINE_NOPROP_LEN (string_start);
20840 str = make_string (mode_line_noprop_buf + string_start, len);
20842 else
20844 mode_line_string_list = Fnreverse (mode_line_string_list);
20845 str = Fmapconcat (intern ("identity"), mode_line_string_list,
20846 empty_unibyte_string);
20849 unbind_to (count, Qnil);
20850 return str;
20853 /* Write a null-terminated, right justified decimal representation of
20854 the positive integer D to BUF using a minimal field width WIDTH. */
20856 static void
20857 pint2str (register char *buf, register int width, register ptrdiff_t d)
20859 register char *p = buf;
20861 if (d <= 0)
20862 *p++ = '0';
20863 else
20865 while (d > 0)
20867 *p++ = d % 10 + '0';
20868 d /= 10;
20872 for (width -= (int) (p - buf); width > 0; --width)
20873 *p++ = ' ';
20874 *p-- = '\0';
20875 while (p > buf)
20877 d = *buf;
20878 *buf++ = *p;
20879 *p-- = d;
20883 /* Write a null-terminated, right justified decimal and "human
20884 readable" representation of the nonnegative integer D to BUF using
20885 a minimal field width WIDTH. D should be smaller than 999.5e24. */
20887 static const char power_letter[] =
20889 0, /* no letter */
20890 'k', /* kilo */
20891 'M', /* mega */
20892 'G', /* giga */
20893 'T', /* tera */
20894 'P', /* peta */
20895 'E', /* exa */
20896 'Z', /* zetta */
20897 'Y' /* yotta */
20900 static void
20901 pint2hrstr (char *buf, int width, ptrdiff_t d)
20903 /* We aim to represent the nonnegative integer D as
20904 QUOTIENT.TENTHS * 10 ^ (3 * EXPONENT). */
20905 ptrdiff_t quotient = d;
20906 int remainder = 0;
20907 /* -1 means: do not use TENTHS. */
20908 int tenths = -1;
20909 int exponent = 0;
20911 /* Length of QUOTIENT.TENTHS as a string. */
20912 int length;
20914 char * psuffix;
20915 char * p;
20917 if (1000 <= quotient)
20919 /* Scale to the appropriate EXPONENT. */
20922 remainder = quotient % 1000;
20923 quotient /= 1000;
20924 exponent++;
20926 while (1000 <= quotient);
20928 /* Round to nearest and decide whether to use TENTHS or not. */
20929 if (quotient <= 9)
20931 tenths = remainder / 100;
20932 if (50 <= remainder % 100)
20934 if (tenths < 9)
20935 tenths++;
20936 else
20938 quotient++;
20939 if (quotient == 10)
20940 tenths = -1;
20941 else
20942 tenths = 0;
20946 else
20947 if (500 <= remainder)
20949 if (quotient < 999)
20950 quotient++;
20951 else
20953 quotient = 1;
20954 exponent++;
20955 tenths = 0;
20960 /* Calculate the LENGTH of QUOTIENT.TENTHS as a string. */
20961 if (tenths == -1 && quotient <= 99)
20962 if (quotient <= 9)
20963 length = 1;
20964 else
20965 length = 2;
20966 else
20967 length = 3;
20968 p = psuffix = buf + max (width, length);
20970 /* Print EXPONENT. */
20971 *psuffix++ = power_letter[exponent];
20972 *psuffix = '\0';
20974 /* Print TENTHS. */
20975 if (tenths >= 0)
20977 *--p = '0' + tenths;
20978 *--p = '.';
20981 /* Print QUOTIENT. */
20984 int digit = quotient % 10;
20985 *--p = '0' + digit;
20987 while ((quotient /= 10) != 0);
20989 /* Print leading spaces. */
20990 while (buf < p)
20991 *--p = ' ';
20994 /* Set a mnemonic character for coding_system (Lisp symbol) in BUF.
20995 If EOL_FLAG is 1, set also a mnemonic character for end-of-line
20996 type of CODING_SYSTEM. Return updated pointer into BUF. */
20998 static unsigned char invalid_eol_type[] = "(*invalid*)";
21000 static char *
21001 decode_mode_spec_coding (Lisp_Object coding_system, register char *buf, int eol_flag)
21003 Lisp_Object val;
21004 int multibyte = !NILP (BVAR (current_buffer, enable_multibyte_characters));
21005 const unsigned char *eol_str;
21006 int eol_str_len;
21007 /* The EOL conversion we are using. */
21008 Lisp_Object eoltype;
21010 val = CODING_SYSTEM_SPEC (coding_system);
21011 eoltype = Qnil;
21013 if (!VECTORP (val)) /* Not yet decided. */
21015 *buf++ = multibyte ? '-' : ' ';
21016 if (eol_flag)
21017 eoltype = eol_mnemonic_undecided;
21018 /* Don't mention EOL conversion if it isn't decided. */
21020 else
21022 Lisp_Object attrs;
21023 Lisp_Object eolvalue;
21025 attrs = AREF (val, 0);
21026 eolvalue = AREF (val, 2);
21028 *buf++ = multibyte
21029 ? XFASTINT (CODING_ATTR_MNEMONIC (attrs))
21030 : ' ';
21032 if (eol_flag)
21034 /* The EOL conversion that is normal on this system. */
21036 if (NILP (eolvalue)) /* Not yet decided. */
21037 eoltype = eol_mnemonic_undecided;
21038 else if (VECTORP (eolvalue)) /* Not yet decided. */
21039 eoltype = eol_mnemonic_undecided;
21040 else /* eolvalue is Qunix, Qdos, or Qmac. */
21041 eoltype = (EQ (eolvalue, Qunix)
21042 ? eol_mnemonic_unix
21043 : (EQ (eolvalue, Qdos) == 1
21044 ? eol_mnemonic_dos : eol_mnemonic_mac));
21048 if (eol_flag)
21050 /* Mention the EOL conversion if it is not the usual one. */
21051 if (STRINGP (eoltype))
21053 eol_str = SDATA (eoltype);
21054 eol_str_len = SBYTES (eoltype);
21056 else if (CHARACTERP (eoltype))
21058 unsigned char *tmp = (unsigned char *) alloca (MAX_MULTIBYTE_LENGTH);
21059 int c = XFASTINT (eoltype);
21060 eol_str_len = CHAR_STRING (c, tmp);
21061 eol_str = tmp;
21063 else
21065 eol_str = invalid_eol_type;
21066 eol_str_len = sizeof (invalid_eol_type) - 1;
21068 memcpy (buf, eol_str, eol_str_len);
21069 buf += eol_str_len;
21072 return buf;
21075 /* Return a string for the output of a mode line %-spec for window W,
21076 generated by character C. FIELD_WIDTH > 0 means pad the string
21077 returned with spaces to that value. Return a Lisp string in
21078 *STRING if the resulting string is taken from that Lisp string.
21080 Note we operate on the current buffer for most purposes,
21081 the exception being w->base_line_pos. */
21083 static char lots_of_dashes[] = "--------------------------------------------------------------------------------------------------------------------------------------------";
21085 static const char *
21086 decode_mode_spec (struct window *w, register int c, int field_width,
21087 Lisp_Object *string)
21089 Lisp_Object obj;
21090 struct frame *f = XFRAME (WINDOW_FRAME (w));
21091 char *decode_mode_spec_buf = f->decode_mode_spec_buffer;
21092 struct buffer *b = current_buffer;
21094 obj = Qnil;
21095 *string = Qnil;
21097 switch (c)
21099 case '*':
21100 if (!NILP (BVAR (b, read_only)))
21101 return "%";
21102 if (BUF_MODIFF (b) > BUF_SAVE_MODIFF (b))
21103 return "*";
21104 return "-";
21106 case '+':
21107 /* This differs from %* only for a modified read-only buffer. */
21108 if (BUF_MODIFF (b) > BUF_SAVE_MODIFF (b))
21109 return "*";
21110 if (!NILP (BVAR (b, read_only)))
21111 return "%";
21112 return "-";
21114 case '&':
21115 /* This differs from %* in ignoring read-only-ness. */
21116 if (BUF_MODIFF (b) > BUF_SAVE_MODIFF (b))
21117 return "*";
21118 return "-";
21120 case '%':
21121 return "%";
21123 case '[':
21125 int i;
21126 char *p;
21128 if (command_loop_level > 5)
21129 return "[[[... ";
21130 p = decode_mode_spec_buf;
21131 for (i = 0; i < command_loop_level; i++)
21132 *p++ = '[';
21133 *p = 0;
21134 return decode_mode_spec_buf;
21137 case ']':
21139 int i;
21140 char *p;
21142 if (command_loop_level > 5)
21143 return " ...]]]";
21144 p = decode_mode_spec_buf;
21145 for (i = 0; i < command_loop_level; i++)
21146 *p++ = ']';
21147 *p = 0;
21148 return decode_mode_spec_buf;
21151 case '-':
21153 register int i;
21155 /* Let lots_of_dashes be a string of infinite length. */
21156 if (mode_line_target == MODE_LINE_NOPROP ||
21157 mode_line_target == MODE_LINE_STRING)
21158 return "--";
21159 if (field_width <= 0
21160 || field_width > sizeof (lots_of_dashes))
21162 for (i = 0; i < FRAME_MESSAGE_BUF_SIZE (f) - 1; ++i)
21163 decode_mode_spec_buf[i] = '-';
21164 decode_mode_spec_buf[i] = '\0';
21165 return decode_mode_spec_buf;
21167 else
21168 return lots_of_dashes;
21171 case 'b':
21172 obj = BVAR (b, name);
21173 break;
21175 case 'c':
21176 /* %c and %l are ignored in `frame-title-format'.
21177 (In redisplay_internal, the frame title is drawn _before_ the
21178 windows are updated, so the stuff which depends on actual
21179 window contents (such as %l) may fail to render properly, or
21180 even crash emacs.) */
21181 if (mode_line_target == MODE_LINE_TITLE)
21182 return "";
21183 else
21185 ptrdiff_t col = current_column ();
21186 w->column_number_displayed = make_number (col);
21187 pint2str (decode_mode_spec_buf, field_width, col);
21188 return decode_mode_spec_buf;
21191 case 'e':
21192 #ifndef SYSTEM_MALLOC
21194 if (NILP (Vmemory_full))
21195 return "";
21196 else
21197 return "!MEM FULL! ";
21199 #else
21200 return "";
21201 #endif
21203 case 'F':
21204 /* %F displays the frame name. */
21205 if (!NILP (f->title))
21206 return SSDATA (f->title);
21207 if (f->explicit_name || ! FRAME_WINDOW_P (f))
21208 return SSDATA (f->name);
21209 return "Emacs";
21211 case 'f':
21212 obj = BVAR (b, filename);
21213 break;
21215 case 'i':
21217 ptrdiff_t size = ZV - BEGV;
21218 pint2str (decode_mode_spec_buf, field_width, size);
21219 return decode_mode_spec_buf;
21222 case 'I':
21224 ptrdiff_t size = ZV - BEGV;
21225 pint2hrstr (decode_mode_spec_buf, field_width, size);
21226 return decode_mode_spec_buf;
21229 case 'l':
21231 ptrdiff_t startpos, startpos_byte, line, linepos, linepos_byte;
21232 ptrdiff_t topline, nlines, height;
21233 ptrdiff_t junk;
21235 /* %c and %l are ignored in `frame-title-format'. */
21236 if (mode_line_target == MODE_LINE_TITLE)
21237 return "";
21239 startpos = XMARKER (w->start)->charpos;
21240 startpos_byte = marker_byte_position (w->start);
21241 height = WINDOW_TOTAL_LINES (w);
21243 /* If we decided that this buffer isn't suitable for line numbers,
21244 don't forget that too fast. */
21245 if (EQ (w->base_line_pos, w->buffer))
21246 goto no_value;
21247 /* But do forget it, if the window shows a different buffer now. */
21248 else if (BUFFERP (w->base_line_pos))
21249 w->base_line_pos = Qnil;
21251 /* If the buffer is very big, don't waste time. */
21252 if (INTEGERP (Vline_number_display_limit)
21253 && BUF_ZV (b) - BUF_BEGV (b) > XINT (Vline_number_display_limit))
21255 w->base_line_pos = Qnil;
21256 w->base_line_number = Qnil;
21257 goto no_value;
21260 if (INTEGERP (w->base_line_number)
21261 && INTEGERP (w->base_line_pos)
21262 && XFASTINT (w->base_line_pos) <= startpos)
21264 line = XFASTINT (w->base_line_number);
21265 linepos = XFASTINT (w->base_line_pos);
21266 linepos_byte = buf_charpos_to_bytepos (b, linepos);
21268 else
21270 line = 1;
21271 linepos = BUF_BEGV (b);
21272 linepos_byte = BUF_BEGV_BYTE (b);
21275 /* Count lines from base line to window start position. */
21276 nlines = display_count_lines (linepos_byte,
21277 startpos_byte,
21278 startpos, &junk);
21280 topline = nlines + line;
21282 /* Determine a new base line, if the old one is too close
21283 or too far away, or if we did not have one.
21284 "Too close" means it's plausible a scroll-down would
21285 go back past it. */
21286 if (startpos == BUF_BEGV (b))
21288 w->base_line_number = make_number (topline);
21289 w->base_line_pos = make_number (BUF_BEGV (b));
21291 else if (nlines < height + 25 || nlines > height * 3 + 50
21292 || linepos == BUF_BEGV (b))
21294 ptrdiff_t limit = BUF_BEGV (b);
21295 ptrdiff_t limit_byte = BUF_BEGV_BYTE (b);
21296 ptrdiff_t position;
21297 ptrdiff_t distance =
21298 (height * 2 + 30) * line_number_display_limit_width;
21300 if (startpos - distance > limit)
21302 limit = startpos - distance;
21303 limit_byte = CHAR_TO_BYTE (limit);
21306 nlines = display_count_lines (startpos_byte,
21307 limit_byte,
21308 - (height * 2 + 30),
21309 &position);
21310 /* If we couldn't find the lines we wanted within
21311 line_number_display_limit_width chars per line,
21312 give up on line numbers for this window. */
21313 if (position == limit_byte && limit == startpos - distance)
21315 w->base_line_pos = w->buffer;
21316 w->base_line_number = Qnil;
21317 goto no_value;
21320 w->base_line_number = make_number (topline - nlines);
21321 w->base_line_pos = make_number (BYTE_TO_CHAR (position));
21324 /* Now count lines from the start pos to point. */
21325 nlines = display_count_lines (startpos_byte,
21326 PT_BYTE, PT, &junk);
21328 /* Record that we did display the line number. */
21329 line_number_displayed = 1;
21331 /* Make the string to show. */
21332 pint2str (decode_mode_spec_buf, field_width, topline + nlines);
21333 return decode_mode_spec_buf;
21334 no_value:
21336 char* p = decode_mode_spec_buf;
21337 int pad = field_width - 2;
21338 while (pad-- > 0)
21339 *p++ = ' ';
21340 *p++ = '?';
21341 *p++ = '?';
21342 *p = '\0';
21343 return decode_mode_spec_buf;
21346 break;
21348 case 'm':
21349 obj = BVAR (b, mode_name);
21350 break;
21352 case 'n':
21353 if (BUF_BEGV (b) > BUF_BEG (b) || BUF_ZV (b) < BUF_Z (b))
21354 return " Narrow";
21355 break;
21357 case 'p':
21359 ptrdiff_t pos = marker_position (w->start);
21360 ptrdiff_t total = BUF_ZV (b) - BUF_BEGV (b);
21362 if (XFASTINT (w->window_end_pos) <= BUF_Z (b) - BUF_ZV (b))
21364 if (pos <= BUF_BEGV (b))
21365 return "All";
21366 else
21367 return "Bottom";
21369 else if (pos <= BUF_BEGV (b))
21370 return "Top";
21371 else
21373 if (total > 1000000)
21374 /* Do it differently for a large value, to avoid overflow. */
21375 total = ((pos - BUF_BEGV (b)) + (total / 100) - 1) / (total / 100);
21376 else
21377 total = ((pos - BUF_BEGV (b)) * 100 + total - 1) / total;
21378 /* We can't normally display a 3-digit number,
21379 so get us a 2-digit number that is close. */
21380 if (total == 100)
21381 total = 99;
21382 sprintf (decode_mode_spec_buf, "%2"pD"d%%", total);
21383 return decode_mode_spec_buf;
21387 /* Display percentage of size above the bottom of the screen. */
21388 case 'P':
21390 ptrdiff_t toppos = marker_position (w->start);
21391 ptrdiff_t botpos = BUF_Z (b) - XFASTINT (w->window_end_pos);
21392 ptrdiff_t total = BUF_ZV (b) - BUF_BEGV (b);
21394 if (botpos >= BUF_ZV (b))
21396 if (toppos <= BUF_BEGV (b))
21397 return "All";
21398 else
21399 return "Bottom";
21401 else
21403 if (total > 1000000)
21404 /* Do it differently for a large value, to avoid overflow. */
21405 total = ((botpos - BUF_BEGV (b)) + (total / 100) - 1) / (total / 100);
21406 else
21407 total = ((botpos - BUF_BEGV (b)) * 100 + total - 1) / total;
21408 /* We can't normally display a 3-digit number,
21409 so get us a 2-digit number that is close. */
21410 if (total == 100)
21411 total = 99;
21412 if (toppos <= BUF_BEGV (b))
21413 sprintf (decode_mode_spec_buf, "Top%2"pD"d%%", total);
21414 else
21415 sprintf (decode_mode_spec_buf, "%2"pD"d%%", total);
21416 return decode_mode_spec_buf;
21420 case 's':
21421 /* status of process */
21422 obj = Fget_buffer_process (Fcurrent_buffer ());
21423 if (NILP (obj))
21424 return "no process";
21425 #ifndef MSDOS
21426 obj = Fsymbol_name (Fprocess_status (obj));
21427 #endif
21428 break;
21430 case '@':
21432 ptrdiff_t count = inhibit_garbage_collection ();
21433 Lisp_Object val = call1 (intern ("file-remote-p"),
21434 BVAR (current_buffer, directory));
21435 unbind_to (count, Qnil);
21437 if (NILP (val))
21438 return "-";
21439 else
21440 return "@";
21443 case 't': /* indicate TEXT or BINARY */
21444 return "T";
21446 case 'z':
21447 /* coding-system (not including end-of-line format) */
21448 case 'Z':
21449 /* coding-system (including end-of-line type) */
21451 int eol_flag = (c == 'Z');
21452 char *p = decode_mode_spec_buf;
21454 if (! FRAME_WINDOW_P (f))
21456 /* No need to mention EOL here--the terminal never needs
21457 to do EOL conversion. */
21458 p = decode_mode_spec_coding (CODING_ID_NAME
21459 (FRAME_KEYBOARD_CODING (f)->id),
21460 p, 0);
21461 p = decode_mode_spec_coding (CODING_ID_NAME
21462 (FRAME_TERMINAL_CODING (f)->id),
21463 p, 0);
21465 p = decode_mode_spec_coding (BVAR (b, buffer_file_coding_system),
21466 p, eol_flag);
21468 #if 0 /* This proves to be annoying; I think we can do without. -- rms. */
21469 #ifdef subprocesses
21470 obj = Fget_buffer_process (Fcurrent_buffer ());
21471 if (PROCESSP (obj))
21473 p = decode_mode_spec_coding (XPROCESS (obj)->decode_coding_system,
21474 p, eol_flag);
21475 p = decode_mode_spec_coding (XPROCESS (obj)->encode_coding_system,
21476 p, eol_flag);
21478 #endif /* subprocesses */
21479 #endif /* 0 */
21480 *p = 0;
21481 return decode_mode_spec_buf;
21485 if (STRINGP (obj))
21487 *string = obj;
21488 return SSDATA (obj);
21490 else
21491 return "";
21495 /* Count up to COUNT lines starting from START_BYTE.
21496 But don't go beyond LIMIT_BYTE.
21497 Return the number of lines thus found (always nonnegative).
21499 Set *BYTE_POS_PTR to 1 if we found COUNT lines, 0 if we hit LIMIT. */
21501 static ptrdiff_t
21502 display_count_lines (ptrdiff_t start_byte,
21503 ptrdiff_t limit_byte, ptrdiff_t count,
21504 ptrdiff_t *byte_pos_ptr)
21506 register unsigned char *cursor;
21507 unsigned char *base;
21509 register ptrdiff_t ceiling;
21510 register unsigned char *ceiling_addr;
21511 ptrdiff_t orig_count = count;
21513 /* If we are not in selective display mode,
21514 check only for newlines. */
21515 int selective_display = (!NILP (BVAR (current_buffer, selective_display))
21516 && !INTEGERP (BVAR (current_buffer, selective_display)));
21518 if (count > 0)
21520 while (start_byte < limit_byte)
21522 ceiling = BUFFER_CEILING_OF (start_byte);
21523 ceiling = min (limit_byte - 1, ceiling);
21524 ceiling_addr = BYTE_POS_ADDR (ceiling) + 1;
21525 base = (cursor = BYTE_POS_ADDR (start_byte));
21526 while (1)
21528 if (selective_display)
21529 while (*cursor != '\n' && *cursor != 015 && ++cursor != ceiling_addr)
21531 else
21532 while (*cursor != '\n' && ++cursor != ceiling_addr)
21535 if (cursor != ceiling_addr)
21537 if (--count == 0)
21539 start_byte += cursor - base + 1;
21540 *byte_pos_ptr = start_byte;
21541 return orig_count;
21543 else
21544 if (++cursor == ceiling_addr)
21545 break;
21547 else
21548 break;
21550 start_byte += cursor - base;
21553 else
21555 while (start_byte > limit_byte)
21557 ceiling = BUFFER_FLOOR_OF (start_byte - 1);
21558 ceiling = max (limit_byte, ceiling);
21559 ceiling_addr = BYTE_POS_ADDR (ceiling) - 1;
21560 base = (cursor = BYTE_POS_ADDR (start_byte - 1) + 1);
21561 while (1)
21563 if (selective_display)
21564 while (--cursor != ceiling_addr
21565 && *cursor != '\n' && *cursor != 015)
21567 else
21568 while (--cursor != ceiling_addr && *cursor != '\n')
21571 if (cursor != ceiling_addr)
21573 if (++count == 0)
21575 start_byte += cursor - base + 1;
21576 *byte_pos_ptr = start_byte;
21577 /* When scanning backwards, we should
21578 not count the newline posterior to which we stop. */
21579 return - orig_count - 1;
21582 else
21583 break;
21585 /* Here we add 1 to compensate for the last decrement
21586 of CURSOR, which took it past the valid range. */
21587 start_byte += cursor - base + 1;
21591 *byte_pos_ptr = limit_byte;
21593 if (count < 0)
21594 return - orig_count + count;
21595 return orig_count - count;
21601 /***********************************************************************
21602 Displaying strings
21603 ***********************************************************************/
21605 /* Display a NUL-terminated string, starting with index START.
21607 If STRING is non-null, display that C string. Otherwise, the Lisp
21608 string LISP_STRING is displayed. There's a case that STRING is
21609 non-null and LISP_STRING is not nil. It means STRING is a string
21610 data of LISP_STRING. In that case, we display LISP_STRING while
21611 ignoring its text properties.
21613 If FACE_STRING is not nil, FACE_STRING_POS is a position in
21614 FACE_STRING. Display STRING or LISP_STRING with the face at
21615 FACE_STRING_POS in FACE_STRING:
21617 Display the string in the environment given by IT, but use the
21618 standard display table, temporarily.
21620 FIELD_WIDTH is the minimum number of output glyphs to produce.
21621 If STRING has fewer characters than FIELD_WIDTH, pad to the right
21622 with spaces. If STRING has more characters, more than FIELD_WIDTH
21623 glyphs will be produced. FIELD_WIDTH <= 0 means don't pad.
21625 PRECISION is the maximum number of characters to output from
21626 STRING. PRECISION < 0 means don't truncate the string.
21628 This is roughly equivalent to printf format specifiers:
21630 FIELD_WIDTH PRECISION PRINTF
21631 ----------------------------------------
21632 -1 -1 %s
21633 -1 10 %.10s
21634 10 -1 %10s
21635 20 10 %20.10s
21637 MULTIBYTE zero means do not display multibyte chars, > 0 means do
21638 display them, and < 0 means obey the current buffer's value of
21639 enable_multibyte_characters.
21641 Value is the number of columns displayed. */
21643 static int
21644 display_string (const char *string, Lisp_Object lisp_string, Lisp_Object face_string,
21645 ptrdiff_t face_string_pos, ptrdiff_t start, struct it *it,
21646 int field_width, int precision, int max_x, int multibyte)
21648 int hpos_at_start = it->hpos;
21649 int saved_face_id = it->face_id;
21650 struct glyph_row *row = it->glyph_row;
21651 ptrdiff_t it_charpos;
21653 /* Initialize the iterator IT for iteration over STRING beginning
21654 with index START. */
21655 reseat_to_string (it, NILP (lisp_string) ? string : NULL, lisp_string, start,
21656 precision, field_width, multibyte);
21657 if (string && STRINGP (lisp_string))
21658 /* LISP_STRING is the one returned by decode_mode_spec. We should
21659 ignore its text properties. */
21660 it->stop_charpos = it->end_charpos;
21662 /* If displaying STRING, set up the face of the iterator from
21663 FACE_STRING, if that's given. */
21664 if (STRINGP (face_string))
21666 ptrdiff_t endptr;
21667 struct face *face;
21669 it->face_id
21670 = face_at_string_position (it->w, face_string, face_string_pos,
21671 0, it->region_beg_charpos,
21672 it->region_end_charpos,
21673 &endptr, it->base_face_id, 0);
21674 face = FACE_FROM_ID (it->f, it->face_id);
21675 it->face_box_p = face->box != FACE_NO_BOX;
21678 /* Set max_x to the maximum allowed X position. Don't let it go
21679 beyond the right edge of the window. */
21680 if (max_x <= 0)
21681 max_x = it->last_visible_x;
21682 else
21683 max_x = min (max_x, it->last_visible_x);
21685 /* Skip over display elements that are not visible. because IT->w is
21686 hscrolled. */
21687 if (it->current_x < it->first_visible_x)
21688 move_it_in_display_line_to (it, 100000, it->first_visible_x,
21689 MOVE_TO_POS | MOVE_TO_X);
21691 row->ascent = it->max_ascent;
21692 row->height = it->max_ascent + it->max_descent;
21693 row->phys_ascent = it->max_phys_ascent;
21694 row->phys_height = it->max_phys_ascent + it->max_phys_descent;
21695 row->extra_line_spacing = it->max_extra_line_spacing;
21697 if (STRINGP (it->string))
21698 it_charpos = IT_STRING_CHARPOS (*it);
21699 else
21700 it_charpos = IT_CHARPOS (*it);
21702 /* This condition is for the case that we are called with current_x
21703 past last_visible_x. */
21704 while (it->current_x < max_x)
21706 int x_before, x, n_glyphs_before, i, nglyphs;
21708 /* Get the next display element. */
21709 if (!get_next_display_element (it))
21710 break;
21712 /* Produce glyphs. */
21713 x_before = it->current_x;
21714 n_glyphs_before = row->used[TEXT_AREA];
21715 PRODUCE_GLYPHS (it);
21717 nglyphs = row->used[TEXT_AREA] - n_glyphs_before;
21718 i = 0;
21719 x = x_before;
21720 while (i < nglyphs)
21722 struct glyph *glyph = row->glyphs[TEXT_AREA] + n_glyphs_before + i;
21724 if (it->line_wrap != TRUNCATE
21725 && x + glyph->pixel_width > max_x)
21727 /* End of continued line or max_x reached. */
21728 if (CHAR_GLYPH_PADDING_P (*glyph))
21730 /* A wide character is unbreakable. */
21731 if (row->reversed_p)
21732 unproduce_glyphs (it, row->used[TEXT_AREA]
21733 - n_glyphs_before);
21734 row->used[TEXT_AREA] = n_glyphs_before;
21735 it->current_x = x_before;
21737 else
21739 if (row->reversed_p)
21740 unproduce_glyphs (it, row->used[TEXT_AREA]
21741 - (n_glyphs_before + i));
21742 row->used[TEXT_AREA] = n_glyphs_before + i;
21743 it->current_x = x;
21745 break;
21747 else if (x + glyph->pixel_width >= it->first_visible_x)
21749 /* Glyph is at least partially visible. */
21750 ++it->hpos;
21751 if (x < it->first_visible_x)
21752 row->x = x - it->first_visible_x;
21754 else
21756 /* Glyph is off the left margin of the display area.
21757 Should not happen. */
21758 abort ();
21761 row->ascent = max (row->ascent, it->max_ascent);
21762 row->height = max (row->height, it->max_ascent + it->max_descent);
21763 row->phys_ascent = max (row->phys_ascent, it->max_phys_ascent);
21764 row->phys_height = max (row->phys_height,
21765 it->max_phys_ascent + it->max_phys_descent);
21766 row->extra_line_spacing = max (row->extra_line_spacing,
21767 it->max_extra_line_spacing);
21768 x += glyph->pixel_width;
21769 ++i;
21772 /* Stop if max_x reached. */
21773 if (i < nglyphs)
21774 break;
21776 /* Stop at line ends. */
21777 if (ITERATOR_AT_END_OF_LINE_P (it))
21779 it->continuation_lines_width = 0;
21780 break;
21783 set_iterator_to_next (it, 1);
21784 if (STRINGP (it->string))
21785 it_charpos = IT_STRING_CHARPOS (*it);
21786 else
21787 it_charpos = IT_CHARPOS (*it);
21789 /* Stop if truncating at the right edge. */
21790 if (it->line_wrap == TRUNCATE
21791 && it->current_x >= it->last_visible_x)
21793 /* Add truncation mark, but don't do it if the line is
21794 truncated at a padding space. */
21795 if (it_charpos < it->string_nchars)
21797 if (!FRAME_WINDOW_P (it->f))
21799 int ii, n;
21801 if (it->current_x > it->last_visible_x)
21803 if (!row->reversed_p)
21805 for (ii = row->used[TEXT_AREA] - 1; ii > 0; --ii)
21806 if (!CHAR_GLYPH_PADDING_P (row->glyphs[TEXT_AREA][ii]))
21807 break;
21809 else
21811 for (ii = 0; ii < row->used[TEXT_AREA]; ii++)
21812 if (!CHAR_GLYPH_PADDING_P (row->glyphs[TEXT_AREA][ii]))
21813 break;
21814 unproduce_glyphs (it, ii + 1);
21815 ii = row->used[TEXT_AREA] - (ii + 1);
21817 for (n = row->used[TEXT_AREA]; ii < n; ++ii)
21819 row->used[TEXT_AREA] = ii;
21820 produce_special_glyphs (it, IT_TRUNCATION);
21823 produce_special_glyphs (it, IT_TRUNCATION);
21825 row->truncated_on_right_p = 1;
21827 break;
21831 /* Maybe insert a truncation at the left. */
21832 if (it->first_visible_x
21833 && it_charpos > 0)
21835 if (!FRAME_WINDOW_P (it->f))
21836 insert_left_trunc_glyphs (it);
21837 row->truncated_on_left_p = 1;
21840 it->face_id = saved_face_id;
21842 /* Value is number of columns displayed. */
21843 return it->hpos - hpos_at_start;
21848 /* This is like a combination of memq and assq. Return 1/2 if PROPVAL
21849 appears as an element of LIST or as the car of an element of LIST.
21850 If PROPVAL is a list, compare each element against LIST in that
21851 way, and return 1/2 if any element of PROPVAL is found in LIST.
21852 Otherwise return 0. This function cannot quit.
21853 The return value is 2 if the text is invisible but with an ellipsis
21854 and 1 if it's invisible and without an ellipsis. */
21857 invisible_p (register Lisp_Object propval, Lisp_Object list)
21859 register Lisp_Object tail, proptail;
21861 for (tail = list; CONSP (tail); tail = XCDR (tail))
21863 register Lisp_Object tem;
21864 tem = XCAR (tail);
21865 if (EQ (propval, tem))
21866 return 1;
21867 if (CONSP (tem) && EQ (propval, XCAR (tem)))
21868 return NILP (XCDR (tem)) ? 1 : 2;
21871 if (CONSP (propval))
21873 for (proptail = propval; CONSP (proptail); proptail = XCDR (proptail))
21875 Lisp_Object propelt;
21876 propelt = XCAR (proptail);
21877 for (tail = list; CONSP (tail); tail = XCDR (tail))
21879 register Lisp_Object tem;
21880 tem = XCAR (tail);
21881 if (EQ (propelt, tem))
21882 return 1;
21883 if (CONSP (tem) && EQ (propelt, XCAR (tem)))
21884 return NILP (XCDR (tem)) ? 1 : 2;
21889 return 0;
21892 DEFUN ("invisible-p", Finvisible_p, Sinvisible_p, 1, 1, 0,
21893 doc: /* Non-nil if the property makes the text invisible.
21894 POS-OR-PROP can be a marker or number, in which case it is taken to be
21895 a position in the current buffer and the value of the `invisible' property
21896 is checked; or it can be some other value, which is then presumed to be the
21897 value of the `invisible' property of the text of interest.
21898 The non-nil value returned can be t for truly invisible text or something
21899 else if the text is replaced by an ellipsis. */)
21900 (Lisp_Object pos_or_prop)
21902 Lisp_Object prop
21903 = (NATNUMP (pos_or_prop) || MARKERP (pos_or_prop)
21904 ? Fget_char_property (pos_or_prop, Qinvisible, Qnil)
21905 : pos_or_prop);
21906 int invis = TEXT_PROP_MEANS_INVISIBLE (prop);
21907 return (invis == 0 ? Qnil
21908 : invis == 1 ? Qt
21909 : make_number (invis));
21912 /* Calculate a width or height in pixels from a specification using
21913 the following elements:
21915 SPEC ::=
21916 NUM - a (fractional) multiple of the default font width/height
21917 (NUM) - specifies exactly NUM pixels
21918 UNIT - a fixed number of pixels, see below.
21919 ELEMENT - size of a display element in pixels, see below.
21920 (NUM . SPEC) - equals NUM * SPEC
21921 (+ SPEC SPEC ...) - add pixel values
21922 (- SPEC SPEC ...) - subtract pixel values
21923 (- SPEC) - negate pixel value
21925 NUM ::=
21926 INT or FLOAT - a number constant
21927 SYMBOL - use symbol's (buffer local) variable binding.
21929 UNIT ::=
21930 in - pixels per inch *)
21931 mm - pixels per 1/1000 meter *)
21932 cm - pixels per 1/100 meter *)
21933 width - width of current font in pixels.
21934 height - height of current font in pixels.
21936 *) using the ratio(s) defined in display-pixels-per-inch.
21938 ELEMENT ::=
21940 left-fringe - left fringe width in pixels
21941 right-fringe - right fringe width in pixels
21943 left-margin - left margin width in pixels
21944 right-margin - right margin width in pixels
21946 scroll-bar - scroll-bar area width in pixels
21948 Examples:
21950 Pixels corresponding to 5 inches:
21951 (5 . in)
21953 Total width of non-text areas on left side of window (if scroll-bar is on left):
21954 '(space :width (+ left-fringe left-margin scroll-bar))
21956 Align to first text column (in header line):
21957 '(space :align-to 0)
21959 Align to middle of text area minus half the width of variable `my-image'
21960 containing a loaded image:
21961 '(space :align-to (0.5 . (- text my-image)))
21963 Width of left margin minus width of 1 character in the default font:
21964 '(space :width (- left-margin 1))
21966 Width of left margin minus width of 2 characters in the current font:
21967 '(space :width (- left-margin (2 . width)))
21969 Center 1 character over left-margin (in header line):
21970 '(space :align-to (+ left-margin (0.5 . left-margin) -0.5))
21972 Different ways to express width of left fringe plus left margin minus one pixel:
21973 '(space :width (- (+ left-fringe left-margin) (1)))
21974 '(space :width (+ left-fringe left-margin (- (1))))
21975 '(space :width (+ left-fringe left-margin (-1)))
21979 #define NUMVAL(X) \
21980 ((INTEGERP (X) || FLOATP (X)) \
21981 ? XFLOATINT (X) \
21982 : - 1)
21984 static int
21985 calc_pixel_width_or_height (double *res, struct it *it, Lisp_Object prop,
21986 struct font *font, int width_p, int *align_to)
21988 double pixels;
21990 #define OK_PIXELS(val) ((*res = (double)(val)), 1)
21991 #define OK_ALIGN_TO(val) ((*align_to = (int)(val)), 1)
21993 if (NILP (prop))
21994 return OK_PIXELS (0);
21996 xassert (FRAME_LIVE_P (it->f));
21998 if (SYMBOLP (prop))
22000 if (SCHARS (SYMBOL_NAME (prop)) == 2)
22002 char *unit = SSDATA (SYMBOL_NAME (prop));
22004 if (unit[0] == 'i' && unit[1] == 'n')
22005 pixels = 1.0;
22006 else if (unit[0] == 'm' && unit[1] == 'm')
22007 pixels = 25.4;
22008 else if (unit[0] == 'c' && unit[1] == 'm')
22009 pixels = 2.54;
22010 else
22011 pixels = 0;
22012 if (pixels > 0)
22014 double ppi;
22015 #ifdef HAVE_WINDOW_SYSTEM
22016 if (FRAME_WINDOW_P (it->f)
22017 && (ppi = (width_p
22018 ? FRAME_X_DISPLAY_INFO (it->f)->resx
22019 : FRAME_X_DISPLAY_INFO (it->f)->resy),
22020 ppi > 0))
22021 return OK_PIXELS (ppi / pixels);
22022 #endif
22024 if ((ppi = NUMVAL (Vdisplay_pixels_per_inch), ppi > 0)
22025 || (CONSP (Vdisplay_pixels_per_inch)
22026 && (ppi = (width_p
22027 ? NUMVAL (XCAR (Vdisplay_pixels_per_inch))
22028 : NUMVAL (XCDR (Vdisplay_pixels_per_inch))),
22029 ppi > 0)))
22030 return OK_PIXELS (ppi / pixels);
22032 return 0;
22036 #ifdef HAVE_WINDOW_SYSTEM
22037 if (EQ (prop, Qheight))
22038 return OK_PIXELS (font ? FONT_HEIGHT (font) : FRAME_LINE_HEIGHT (it->f));
22039 if (EQ (prop, Qwidth))
22040 return OK_PIXELS (font ? FONT_WIDTH (font) : FRAME_COLUMN_WIDTH (it->f));
22041 #else
22042 if (EQ (prop, Qheight) || EQ (prop, Qwidth))
22043 return OK_PIXELS (1);
22044 #endif
22046 if (EQ (prop, Qtext))
22047 return OK_PIXELS (width_p
22048 ? window_box_width (it->w, TEXT_AREA)
22049 : WINDOW_BOX_HEIGHT_NO_MODE_LINE (it->w));
22051 if (align_to && *align_to < 0)
22053 *res = 0;
22054 if (EQ (prop, Qleft))
22055 return OK_ALIGN_TO (window_box_left_offset (it->w, TEXT_AREA));
22056 if (EQ (prop, Qright))
22057 return OK_ALIGN_TO (window_box_right_offset (it->w, TEXT_AREA));
22058 if (EQ (prop, Qcenter))
22059 return OK_ALIGN_TO (window_box_left_offset (it->w, TEXT_AREA)
22060 + window_box_width (it->w, TEXT_AREA) / 2);
22061 if (EQ (prop, Qleft_fringe))
22062 return OK_ALIGN_TO (WINDOW_HAS_FRINGES_OUTSIDE_MARGINS (it->w)
22063 ? WINDOW_LEFT_SCROLL_BAR_AREA_WIDTH (it->w)
22064 : window_box_right_offset (it->w, LEFT_MARGIN_AREA));
22065 if (EQ (prop, Qright_fringe))
22066 return OK_ALIGN_TO (WINDOW_HAS_FRINGES_OUTSIDE_MARGINS (it->w)
22067 ? window_box_right_offset (it->w, RIGHT_MARGIN_AREA)
22068 : window_box_right_offset (it->w, TEXT_AREA));
22069 if (EQ (prop, Qleft_margin))
22070 return OK_ALIGN_TO (window_box_left_offset (it->w, LEFT_MARGIN_AREA));
22071 if (EQ (prop, Qright_margin))
22072 return OK_ALIGN_TO (window_box_left_offset (it->w, RIGHT_MARGIN_AREA));
22073 if (EQ (prop, Qscroll_bar))
22074 return OK_ALIGN_TO (WINDOW_HAS_VERTICAL_SCROLL_BAR_ON_LEFT (it->w)
22076 : (window_box_right_offset (it->w, RIGHT_MARGIN_AREA)
22077 + (WINDOW_HAS_FRINGES_OUTSIDE_MARGINS (it->w)
22078 ? WINDOW_RIGHT_FRINGE_WIDTH (it->w)
22079 : 0)));
22081 else
22083 if (EQ (prop, Qleft_fringe))
22084 return OK_PIXELS (WINDOW_LEFT_FRINGE_WIDTH (it->w));
22085 if (EQ (prop, Qright_fringe))
22086 return OK_PIXELS (WINDOW_RIGHT_FRINGE_WIDTH (it->w));
22087 if (EQ (prop, Qleft_margin))
22088 return OK_PIXELS (WINDOW_LEFT_MARGIN_WIDTH (it->w));
22089 if (EQ (prop, Qright_margin))
22090 return OK_PIXELS (WINDOW_RIGHT_MARGIN_WIDTH (it->w));
22091 if (EQ (prop, Qscroll_bar))
22092 return OK_PIXELS (WINDOW_SCROLL_BAR_AREA_WIDTH (it->w));
22095 prop = buffer_local_value_1 (prop, it->w->buffer);
22096 if (EQ (prop, Qunbound))
22097 prop = Qnil;
22100 if (INTEGERP (prop) || FLOATP (prop))
22102 int base_unit = (width_p
22103 ? FRAME_COLUMN_WIDTH (it->f)
22104 : FRAME_LINE_HEIGHT (it->f));
22105 return OK_PIXELS (XFLOATINT (prop) * base_unit);
22108 if (CONSP (prop))
22110 Lisp_Object car = XCAR (prop);
22111 Lisp_Object cdr = XCDR (prop);
22113 if (SYMBOLP (car))
22115 #ifdef HAVE_WINDOW_SYSTEM
22116 if (FRAME_WINDOW_P (it->f)
22117 && valid_image_p (prop))
22119 ptrdiff_t id = lookup_image (it->f, prop);
22120 struct image *img = IMAGE_FROM_ID (it->f, id);
22122 return OK_PIXELS (width_p ? img->width : img->height);
22124 #endif
22125 if (EQ (car, Qplus) || EQ (car, Qminus))
22127 int first = 1;
22128 double px;
22130 pixels = 0;
22131 while (CONSP (cdr))
22133 if (!calc_pixel_width_or_height (&px, it, XCAR (cdr),
22134 font, width_p, align_to))
22135 return 0;
22136 if (first)
22137 pixels = (EQ (car, Qplus) ? px : -px), first = 0;
22138 else
22139 pixels += px;
22140 cdr = XCDR (cdr);
22142 if (EQ (car, Qminus))
22143 pixels = -pixels;
22144 return OK_PIXELS (pixels);
22147 car = buffer_local_value_1 (car, it->w->buffer);
22148 if (EQ (car, Qunbound))
22149 car = Qnil;
22152 if (INTEGERP (car) || FLOATP (car))
22154 double fact;
22155 pixels = XFLOATINT (car);
22156 if (NILP (cdr))
22157 return OK_PIXELS (pixels);
22158 if (calc_pixel_width_or_height (&fact, it, cdr,
22159 font, width_p, align_to))
22160 return OK_PIXELS (pixels * fact);
22161 return 0;
22164 return 0;
22167 return 0;
22171 /***********************************************************************
22172 Glyph Display
22173 ***********************************************************************/
22175 #ifdef HAVE_WINDOW_SYSTEM
22177 #if GLYPH_DEBUG
22179 void
22180 dump_glyph_string (struct glyph_string *s)
22182 fprintf (stderr, "glyph string\n");
22183 fprintf (stderr, " x, y, w, h = %d, %d, %d, %d\n",
22184 s->x, s->y, s->width, s->height);
22185 fprintf (stderr, " ybase = %d\n", s->ybase);
22186 fprintf (stderr, " hl = %d\n", s->hl);
22187 fprintf (stderr, " left overhang = %d, right = %d\n",
22188 s->left_overhang, s->right_overhang);
22189 fprintf (stderr, " nchars = %d\n", s->nchars);
22190 fprintf (stderr, " extends to end of line = %d\n",
22191 s->extends_to_end_of_line_p);
22192 fprintf (stderr, " font height = %d\n", FONT_HEIGHT (s->font));
22193 fprintf (stderr, " bg width = %d\n", s->background_width);
22196 #endif /* GLYPH_DEBUG */
22198 /* Initialize glyph string S. CHAR2B is a suitably allocated vector
22199 of XChar2b structures for S; it can't be allocated in
22200 init_glyph_string because it must be allocated via `alloca'. W
22201 is the window on which S is drawn. ROW and AREA are the glyph row
22202 and area within the row from which S is constructed. START is the
22203 index of the first glyph structure covered by S. HL is a
22204 face-override for drawing S. */
22206 #ifdef HAVE_NTGUI
22207 #define OPTIONAL_HDC(hdc) HDC hdc,
22208 #define DECLARE_HDC(hdc) HDC hdc;
22209 #define ALLOCATE_HDC(hdc, f) hdc = get_frame_dc ((f))
22210 #define RELEASE_HDC(hdc, f) release_frame_dc ((f), (hdc))
22211 #endif
22213 #ifndef OPTIONAL_HDC
22214 #define OPTIONAL_HDC(hdc)
22215 #define DECLARE_HDC(hdc)
22216 #define ALLOCATE_HDC(hdc, f)
22217 #define RELEASE_HDC(hdc, f)
22218 #endif
22220 static void
22221 init_glyph_string (struct glyph_string *s,
22222 OPTIONAL_HDC (hdc)
22223 XChar2b *char2b, struct window *w, struct glyph_row *row,
22224 enum glyph_row_area area, int start, enum draw_glyphs_face hl)
22226 memset (s, 0, sizeof *s);
22227 s->w = w;
22228 s->f = XFRAME (w->frame);
22229 #ifdef HAVE_NTGUI
22230 s->hdc = hdc;
22231 #endif
22232 s->display = FRAME_X_DISPLAY (s->f);
22233 s->window = FRAME_X_WINDOW (s->f);
22234 s->char2b = char2b;
22235 s->hl = hl;
22236 s->row = row;
22237 s->area = area;
22238 s->first_glyph = row->glyphs[area] + start;
22239 s->height = row->height;
22240 s->y = WINDOW_TO_FRAME_PIXEL_Y (w, row->y);
22241 s->ybase = s->y + row->ascent;
22245 /* Append the list of glyph strings with head H and tail T to the list
22246 with head *HEAD and tail *TAIL. Set *HEAD and *TAIL to the result. */
22248 static inline void
22249 append_glyph_string_lists (struct glyph_string **head, struct glyph_string **tail,
22250 struct glyph_string *h, struct glyph_string *t)
22252 if (h)
22254 if (*head)
22255 (*tail)->next = h;
22256 else
22257 *head = h;
22258 h->prev = *tail;
22259 *tail = t;
22264 /* Prepend the list of glyph strings with head H and tail T to the
22265 list with head *HEAD and tail *TAIL. Set *HEAD and *TAIL to the
22266 result. */
22268 static inline void
22269 prepend_glyph_string_lists (struct glyph_string **head, struct glyph_string **tail,
22270 struct glyph_string *h, struct glyph_string *t)
22272 if (h)
22274 if (*head)
22275 (*head)->prev = t;
22276 else
22277 *tail = t;
22278 t->next = *head;
22279 *head = h;
22284 /* Append glyph string S to the list with head *HEAD and tail *TAIL.
22285 Set *HEAD and *TAIL to the resulting list. */
22287 static inline void
22288 append_glyph_string (struct glyph_string **head, struct glyph_string **tail,
22289 struct glyph_string *s)
22291 s->next = s->prev = NULL;
22292 append_glyph_string_lists (head, tail, s, s);
22296 /* Get face and two-byte form of character C in face FACE_ID on frame F.
22297 The encoding of C is returned in *CHAR2B. DISPLAY_P non-zero means
22298 make sure that X resources for the face returned are allocated.
22299 Value is a pointer to a realized face that is ready for display if
22300 DISPLAY_P is non-zero. */
22302 static inline struct face *
22303 get_char_face_and_encoding (struct frame *f, int c, int face_id,
22304 XChar2b *char2b, int display_p)
22306 struct face *face = FACE_FROM_ID (f, face_id);
22308 if (face->font)
22310 unsigned code = face->font->driver->encode_char (face->font, c);
22312 if (code != FONT_INVALID_CODE)
22313 STORE_XCHAR2B (char2b, (code >> 8), (code & 0xFF));
22314 else
22315 STORE_XCHAR2B (char2b, 0, 0);
22318 /* Make sure X resources of the face are allocated. */
22319 #ifdef HAVE_X_WINDOWS
22320 if (display_p)
22321 #endif
22323 xassert (face != NULL);
22324 PREPARE_FACE_FOR_DISPLAY (f, face);
22327 return face;
22331 /* Get face and two-byte form of character glyph GLYPH on frame F.
22332 The encoding of GLYPH->u.ch is returned in *CHAR2B. Value is
22333 a pointer to a realized face that is ready for display. */
22335 static inline struct face *
22336 get_glyph_face_and_encoding (struct frame *f, struct glyph *glyph,
22337 XChar2b *char2b, int *two_byte_p)
22339 struct face *face;
22341 xassert (glyph->type == CHAR_GLYPH);
22342 face = FACE_FROM_ID (f, glyph->face_id);
22344 if (two_byte_p)
22345 *two_byte_p = 0;
22347 if (face->font)
22349 unsigned code;
22351 if (CHAR_BYTE8_P (glyph->u.ch))
22352 code = CHAR_TO_BYTE8 (glyph->u.ch);
22353 else
22354 code = face->font->driver->encode_char (face->font, glyph->u.ch);
22356 if (code != FONT_INVALID_CODE)
22357 STORE_XCHAR2B (char2b, (code >> 8), (code & 0xFF));
22358 else
22359 STORE_XCHAR2B (char2b, 0, 0);
22362 /* Make sure X resources of the face are allocated. */
22363 xassert (face != NULL);
22364 PREPARE_FACE_FOR_DISPLAY (f, face);
22365 return face;
22369 /* Get glyph code of character C in FONT in the two-byte form CHAR2B.
22370 Return 1 if FONT has a glyph for C, otherwise return 0. */
22372 static inline int
22373 get_char_glyph_code (int c, struct font *font, XChar2b *char2b)
22375 unsigned code;
22377 if (CHAR_BYTE8_P (c))
22378 code = CHAR_TO_BYTE8 (c);
22379 else
22380 code = font->driver->encode_char (font, c);
22382 if (code == FONT_INVALID_CODE)
22383 return 0;
22384 STORE_XCHAR2B (char2b, (code >> 8), (code & 0xFF));
22385 return 1;
22389 /* Fill glyph string S with composition components specified by S->cmp.
22391 BASE_FACE is the base face of the composition.
22392 S->cmp_from is the index of the first component for S.
22394 OVERLAPS non-zero means S should draw the foreground only, and use
22395 its physical height for clipping. See also draw_glyphs.
22397 Value is the index of a component not in S. */
22399 static int
22400 fill_composite_glyph_string (struct glyph_string *s, struct face *base_face,
22401 int overlaps)
22403 int i;
22404 /* For all glyphs of this composition, starting at the offset
22405 S->cmp_from, until we reach the end of the definition or encounter a
22406 glyph that requires the different face, add it to S. */
22407 struct face *face;
22409 xassert (s);
22411 s->for_overlaps = overlaps;
22412 s->face = NULL;
22413 s->font = NULL;
22414 for (i = s->cmp_from; i < s->cmp->glyph_len; i++)
22416 int c = COMPOSITION_GLYPH (s->cmp, i);
22418 /* TAB in a composition means display glyphs with padding space
22419 on the left or right. */
22420 if (c != '\t')
22422 int face_id = FACE_FOR_CHAR (s->f, base_face->ascii_face, c,
22423 -1, Qnil);
22425 face = get_char_face_and_encoding (s->f, c, face_id,
22426 s->char2b + i, 1);
22427 if (face)
22429 if (! s->face)
22431 s->face = face;
22432 s->font = s->face->font;
22434 else if (s->face != face)
22435 break;
22438 ++s->nchars;
22440 s->cmp_to = i;
22442 if (s->face == NULL)
22444 s->face = base_face->ascii_face;
22445 s->font = s->face->font;
22448 /* All glyph strings for the same composition has the same width,
22449 i.e. the width set for the first component of the composition. */
22450 s->width = s->first_glyph->pixel_width;
22452 /* If the specified font could not be loaded, use the frame's
22453 default font, but record the fact that we couldn't load it in
22454 the glyph string so that we can draw rectangles for the
22455 characters of the glyph string. */
22456 if (s->font == NULL)
22458 s->font_not_found_p = 1;
22459 s->font = FRAME_FONT (s->f);
22462 /* Adjust base line for subscript/superscript text. */
22463 s->ybase += s->first_glyph->voffset;
22465 /* This glyph string must always be drawn with 16-bit functions. */
22466 s->two_byte_p = 1;
22468 return s->cmp_to;
22471 static int
22472 fill_gstring_glyph_string (struct glyph_string *s, int face_id,
22473 int start, int end, int overlaps)
22475 struct glyph *glyph, *last;
22476 Lisp_Object lgstring;
22477 int i;
22479 s->for_overlaps = overlaps;
22480 glyph = s->row->glyphs[s->area] + start;
22481 last = s->row->glyphs[s->area] + end;
22482 s->cmp_id = glyph->u.cmp.id;
22483 s->cmp_from = glyph->slice.cmp.from;
22484 s->cmp_to = glyph->slice.cmp.to + 1;
22485 s->face = FACE_FROM_ID (s->f, face_id);
22486 lgstring = composition_gstring_from_id (s->cmp_id);
22487 s->font = XFONT_OBJECT (LGSTRING_FONT (lgstring));
22488 glyph++;
22489 while (glyph < last
22490 && glyph->u.cmp.automatic
22491 && glyph->u.cmp.id == s->cmp_id
22492 && s->cmp_to == glyph->slice.cmp.from)
22493 s->cmp_to = (glyph++)->slice.cmp.to + 1;
22495 for (i = s->cmp_from; i < s->cmp_to; i++)
22497 Lisp_Object lglyph = LGSTRING_GLYPH (lgstring, i);
22498 unsigned code = LGLYPH_CODE (lglyph);
22500 STORE_XCHAR2B ((s->char2b + i), code >> 8, code & 0xFF);
22502 s->width = composition_gstring_width (lgstring, s->cmp_from, s->cmp_to, NULL);
22503 return glyph - s->row->glyphs[s->area];
22507 /* Fill glyph string S from a sequence glyphs for glyphless characters.
22508 See the comment of fill_glyph_string for arguments.
22509 Value is the index of the first glyph not in S. */
22512 static int
22513 fill_glyphless_glyph_string (struct glyph_string *s, int face_id,
22514 int start, int end, int overlaps)
22516 struct glyph *glyph, *last;
22517 int voffset;
22519 xassert (s->first_glyph->type == GLYPHLESS_GLYPH);
22520 s->for_overlaps = overlaps;
22521 glyph = s->row->glyphs[s->area] + start;
22522 last = s->row->glyphs[s->area] + end;
22523 voffset = glyph->voffset;
22524 s->face = FACE_FROM_ID (s->f, face_id);
22525 s->font = s->face->font;
22526 s->nchars = 1;
22527 s->width = glyph->pixel_width;
22528 glyph++;
22529 while (glyph < last
22530 && glyph->type == GLYPHLESS_GLYPH
22531 && glyph->voffset == voffset
22532 && glyph->face_id == face_id)
22534 s->nchars++;
22535 s->width += glyph->pixel_width;
22536 glyph++;
22538 s->ybase += voffset;
22539 return glyph - s->row->glyphs[s->area];
22543 /* Fill glyph string S from a sequence of character glyphs.
22545 FACE_ID is the face id of the string. START is the index of the
22546 first glyph to consider, END is the index of the last + 1.
22547 OVERLAPS non-zero means S should draw the foreground only, and use
22548 its physical height for clipping. See also draw_glyphs.
22550 Value is the index of the first glyph not in S. */
22552 static int
22553 fill_glyph_string (struct glyph_string *s, int face_id,
22554 int start, int end, int overlaps)
22556 struct glyph *glyph, *last;
22557 int voffset;
22558 int glyph_not_available_p;
22560 xassert (s->f == XFRAME (s->w->frame));
22561 xassert (s->nchars == 0);
22562 xassert (start >= 0 && end > start);
22564 s->for_overlaps = overlaps;
22565 glyph = s->row->glyphs[s->area] + start;
22566 last = s->row->glyphs[s->area] + end;
22567 voffset = glyph->voffset;
22568 s->padding_p = glyph->padding_p;
22569 glyph_not_available_p = glyph->glyph_not_available_p;
22571 while (glyph < last
22572 && glyph->type == CHAR_GLYPH
22573 && glyph->voffset == voffset
22574 /* Same face id implies same font, nowadays. */
22575 && glyph->face_id == face_id
22576 && glyph->glyph_not_available_p == glyph_not_available_p)
22578 int two_byte_p;
22580 s->face = get_glyph_face_and_encoding (s->f, glyph,
22581 s->char2b + s->nchars,
22582 &two_byte_p);
22583 s->two_byte_p = two_byte_p;
22584 ++s->nchars;
22585 xassert (s->nchars <= end - start);
22586 s->width += glyph->pixel_width;
22587 if (glyph++->padding_p != s->padding_p)
22588 break;
22591 s->font = s->face->font;
22593 /* If the specified font could not be loaded, use the frame's font,
22594 but record the fact that we couldn't load it in
22595 S->font_not_found_p so that we can draw rectangles for the
22596 characters of the glyph string. */
22597 if (s->font == NULL || glyph_not_available_p)
22599 s->font_not_found_p = 1;
22600 s->font = FRAME_FONT (s->f);
22603 /* Adjust base line for subscript/superscript text. */
22604 s->ybase += voffset;
22606 xassert (s->face && s->face->gc);
22607 return glyph - s->row->glyphs[s->area];
22611 /* Fill glyph string S from image glyph S->first_glyph. */
22613 static void
22614 fill_image_glyph_string (struct glyph_string *s)
22616 xassert (s->first_glyph->type == IMAGE_GLYPH);
22617 s->img = IMAGE_FROM_ID (s->f, s->first_glyph->u.img_id);
22618 xassert (s->img);
22619 s->slice = s->first_glyph->slice.img;
22620 s->face = FACE_FROM_ID (s->f, s->first_glyph->face_id);
22621 s->font = s->face->font;
22622 s->width = s->first_glyph->pixel_width;
22624 /* Adjust base line for subscript/superscript text. */
22625 s->ybase += s->first_glyph->voffset;
22629 /* Fill glyph string S from a sequence of stretch glyphs.
22631 START is the index of the first glyph to consider,
22632 END is the index of the last + 1.
22634 Value is the index of the first glyph not in S. */
22636 static int
22637 fill_stretch_glyph_string (struct glyph_string *s, int start, int end)
22639 struct glyph *glyph, *last;
22640 int voffset, face_id;
22642 xassert (s->first_glyph->type == STRETCH_GLYPH);
22644 glyph = s->row->glyphs[s->area] + start;
22645 last = s->row->glyphs[s->area] + end;
22646 face_id = glyph->face_id;
22647 s->face = FACE_FROM_ID (s->f, face_id);
22648 s->font = s->face->font;
22649 s->width = glyph->pixel_width;
22650 s->nchars = 1;
22651 voffset = glyph->voffset;
22653 for (++glyph;
22654 (glyph < last
22655 && glyph->type == STRETCH_GLYPH
22656 && glyph->voffset == voffset
22657 && glyph->face_id == face_id);
22658 ++glyph)
22659 s->width += glyph->pixel_width;
22661 /* Adjust base line for subscript/superscript text. */
22662 s->ybase += voffset;
22664 /* The case that face->gc == 0 is handled when drawing the glyph
22665 string by calling PREPARE_FACE_FOR_DISPLAY. */
22666 xassert (s->face);
22667 return glyph - s->row->glyphs[s->area];
22670 static struct font_metrics *
22671 get_per_char_metric (struct font *font, XChar2b *char2b)
22673 static struct font_metrics metrics;
22674 unsigned code = (XCHAR2B_BYTE1 (char2b) << 8) | XCHAR2B_BYTE2 (char2b);
22676 if (! font || code == FONT_INVALID_CODE)
22677 return NULL;
22678 font->driver->text_extents (font, &code, 1, &metrics);
22679 return &metrics;
22682 /* EXPORT for RIF:
22683 Set *LEFT and *RIGHT to the left and right overhang of GLYPH on
22684 frame F. Overhangs of glyphs other than type CHAR_GLYPH are
22685 assumed to be zero. */
22687 void
22688 x_get_glyph_overhangs (struct glyph *glyph, struct frame *f, int *left, int *right)
22690 *left = *right = 0;
22692 if (glyph->type == CHAR_GLYPH)
22694 struct face *face;
22695 XChar2b char2b;
22696 struct font_metrics *pcm;
22698 face = get_glyph_face_and_encoding (f, glyph, &char2b, NULL);
22699 if (face->font && (pcm = get_per_char_metric (face->font, &char2b)))
22701 if (pcm->rbearing > pcm->width)
22702 *right = pcm->rbearing - pcm->width;
22703 if (pcm->lbearing < 0)
22704 *left = -pcm->lbearing;
22707 else if (glyph->type == COMPOSITE_GLYPH)
22709 if (! glyph->u.cmp.automatic)
22711 struct composition *cmp = composition_table[glyph->u.cmp.id];
22713 if (cmp->rbearing > cmp->pixel_width)
22714 *right = cmp->rbearing - cmp->pixel_width;
22715 if (cmp->lbearing < 0)
22716 *left = - cmp->lbearing;
22718 else
22720 Lisp_Object gstring = composition_gstring_from_id (glyph->u.cmp.id);
22721 struct font_metrics metrics;
22723 composition_gstring_width (gstring, glyph->slice.cmp.from,
22724 glyph->slice.cmp.to + 1, &metrics);
22725 if (metrics.rbearing > metrics.width)
22726 *right = metrics.rbearing - metrics.width;
22727 if (metrics.lbearing < 0)
22728 *left = - metrics.lbearing;
22734 /* Return the index of the first glyph preceding glyph string S that
22735 is overwritten by S because of S's left overhang. Value is -1
22736 if no glyphs are overwritten. */
22738 static int
22739 left_overwritten (struct glyph_string *s)
22741 int k;
22743 if (s->left_overhang)
22745 int x = 0, i;
22746 struct glyph *glyphs = s->row->glyphs[s->area];
22747 int first = s->first_glyph - glyphs;
22749 for (i = first - 1; i >= 0 && x > -s->left_overhang; --i)
22750 x -= glyphs[i].pixel_width;
22752 k = i + 1;
22754 else
22755 k = -1;
22757 return k;
22761 /* Return the index of the first glyph preceding glyph string S that
22762 is overwriting S because of its right overhang. Value is -1 if no
22763 glyph in front of S overwrites S. */
22765 static int
22766 left_overwriting (struct glyph_string *s)
22768 int i, k, x;
22769 struct glyph *glyphs = s->row->glyphs[s->area];
22770 int first = s->first_glyph - glyphs;
22772 k = -1;
22773 x = 0;
22774 for (i = first - 1; i >= 0; --i)
22776 int left, right;
22777 x_get_glyph_overhangs (glyphs + i, s->f, &left, &right);
22778 if (x + right > 0)
22779 k = i;
22780 x -= glyphs[i].pixel_width;
22783 return k;
22787 /* Return the index of the last glyph following glyph string S that is
22788 overwritten by S because of S's right overhang. Value is -1 if
22789 no such glyph is found. */
22791 static int
22792 right_overwritten (struct glyph_string *s)
22794 int k = -1;
22796 if (s->right_overhang)
22798 int x = 0, i;
22799 struct glyph *glyphs = s->row->glyphs[s->area];
22800 int first = (s->first_glyph - glyphs) + (s->cmp ? 1 : s->nchars);
22801 int end = s->row->used[s->area];
22803 for (i = first; i < end && s->right_overhang > x; ++i)
22804 x += glyphs[i].pixel_width;
22806 k = i;
22809 return k;
22813 /* Return the index of the last glyph following glyph string S that
22814 overwrites S because of its left overhang. Value is negative
22815 if no such glyph is found. */
22817 static int
22818 right_overwriting (struct glyph_string *s)
22820 int i, k, x;
22821 int end = s->row->used[s->area];
22822 struct glyph *glyphs = s->row->glyphs[s->area];
22823 int first = (s->first_glyph - glyphs) + (s->cmp ? 1 : s->nchars);
22825 k = -1;
22826 x = 0;
22827 for (i = first; i < end; ++i)
22829 int left, right;
22830 x_get_glyph_overhangs (glyphs + i, s->f, &left, &right);
22831 if (x - left < 0)
22832 k = i;
22833 x += glyphs[i].pixel_width;
22836 return k;
22840 /* Set background width of glyph string S. START is the index of the
22841 first glyph following S. LAST_X is the right-most x-position + 1
22842 in the drawing area. */
22844 static inline void
22845 set_glyph_string_background_width (struct glyph_string *s, int start, int last_x)
22847 /* If the face of this glyph string has to be drawn to the end of
22848 the drawing area, set S->extends_to_end_of_line_p. */
22850 if (start == s->row->used[s->area]
22851 && s->area == TEXT_AREA
22852 && ((s->row->fill_line_p
22853 && (s->hl == DRAW_NORMAL_TEXT
22854 || s->hl == DRAW_IMAGE_RAISED
22855 || s->hl == DRAW_IMAGE_SUNKEN))
22856 || s->hl == DRAW_MOUSE_FACE))
22857 s->extends_to_end_of_line_p = 1;
22859 /* If S extends its face to the end of the line, set its
22860 background_width to the distance to the right edge of the drawing
22861 area. */
22862 if (s->extends_to_end_of_line_p)
22863 s->background_width = last_x - s->x + 1;
22864 else
22865 s->background_width = s->width;
22869 /* Compute overhangs and x-positions for glyph string S and its
22870 predecessors, or successors. X is the starting x-position for S.
22871 BACKWARD_P non-zero means process predecessors. */
22873 static void
22874 compute_overhangs_and_x (struct glyph_string *s, int x, int backward_p)
22876 if (backward_p)
22878 while (s)
22880 if (FRAME_RIF (s->f)->compute_glyph_string_overhangs)
22881 FRAME_RIF (s->f)->compute_glyph_string_overhangs (s);
22882 x -= s->width;
22883 s->x = x;
22884 s = s->prev;
22887 else
22889 while (s)
22891 if (FRAME_RIF (s->f)->compute_glyph_string_overhangs)
22892 FRAME_RIF (s->f)->compute_glyph_string_overhangs (s);
22893 s->x = x;
22894 x += s->width;
22895 s = s->next;
22902 /* The following macros are only called from draw_glyphs below.
22903 They reference the following parameters of that function directly:
22904 `w', `row', `area', and `overlap_p'
22905 as well as the following local variables:
22906 `s', `f', and `hdc' (in W32) */
22908 #ifdef HAVE_NTGUI
22909 /* On W32, silently add local `hdc' variable to argument list of
22910 init_glyph_string. */
22911 #define INIT_GLYPH_STRING(s, char2b, w, row, area, start, hl) \
22912 init_glyph_string (s, hdc, char2b, w, row, area, start, hl)
22913 #else
22914 #define INIT_GLYPH_STRING(s, char2b, w, row, area, start, hl) \
22915 init_glyph_string (s, char2b, w, row, area, start, hl)
22916 #endif
22918 /* Add a glyph string for a stretch glyph to the list of strings
22919 between HEAD and TAIL. START is the index of the stretch glyph in
22920 row area AREA of glyph row ROW. END is the index of the last glyph
22921 in that glyph row area. X is the current output position assigned
22922 to the new glyph string constructed. HL overrides that face of the
22923 glyph; e.g. it is DRAW_CURSOR if a cursor has to be drawn. LAST_X
22924 is the right-most x-position of the drawing area. */
22926 /* SunOS 4 bundled cc, barfed on continuations in the arg lists here
22927 and below -- keep them on one line. */
22928 #define BUILD_STRETCH_GLYPH_STRING(START, END, HEAD, TAIL, HL, X, LAST_X) \
22929 do \
22931 s = (struct glyph_string *) alloca (sizeof *s); \
22932 INIT_GLYPH_STRING (s, NULL, w, row, area, START, HL); \
22933 START = fill_stretch_glyph_string (s, START, END); \
22934 append_glyph_string (&HEAD, &TAIL, s); \
22935 s->x = (X); \
22937 while (0)
22940 /* Add a glyph string for an image glyph to the list of strings
22941 between HEAD and TAIL. START is the index of the image glyph in
22942 row area AREA of glyph row ROW. END is the index of the last glyph
22943 in that glyph row area. X is the current output position assigned
22944 to the new glyph string constructed. HL overrides that face of the
22945 glyph; e.g. it is DRAW_CURSOR if a cursor has to be drawn. LAST_X
22946 is the right-most x-position of the drawing area. */
22948 #define BUILD_IMAGE_GLYPH_STRING(START, END, HEAD, TAIL, HL, X, LAST_X) \
22949 do \
22951 s = (struct glyph_string *) alloca (sizeof *s); \
22952 INIT_GLYPH_STRING (s, NULL, w, row, area, START, HL); \
22953 fill_image_glyph_string (s); \
22954 append_glyph_string (&HEAD, &TAIL, s); \
22955 ++START; \
22956 s->x = (X); \
22958 while (0)
22961 /* Add a glyph string for a sequence of character glyphs to the list
22962 of strings between HEAD and TAIL. START is the index of the first
22963 glyph in row area AREA of glyph row ROW that is part of the new
22964 glyph string. END is the index of the last glyph in that glyph row
22965 area. X is the current output position assigned to the new glyph
22966 string constructed. HL overrides that face of the glyph; e.g. it
22967 is DRAW_CURSOR if a cursor has to be drawn. LAST_X is the
22968 right-most x-position of the drawing area. */
22970 #define BUILD_CHAR_GLYPH_STRINGS(START, END, HEAD, TAIL, HL, X, LAST_X) \
22971 do \
22973 int face_id; \
22974 XChar2b *char2b; \
22976 face_id = (row)->glyphs[area][START].face_id; \
22978 s = (struct glyph_string *) alloca (sizeof *s); \
22979 char2b = (XChar2b *) alloca ((END - START) * sizeof *char2b); \
22980 INIT_GLYPH_STRING (s, char2b, w, row, area, START, HL); \
22981 append_glyph_string (&HEAD, &TAIL, s); \
22982 s->x = (X); \
22983 START = fill_glyph_string (s, face_id, START, END, overlaps); \
22985 while (0)
22988 /* Add a glyph string for a composite sequence to the list of strings
22989 between HEAD and TAIL. START is the index of the first glyph in
22990 row area AREA of glyph row ROW that is part of the new glyph
22991 string. END is the index of the last glyph in that glyph row area.
22992 X is the current output position assigned to the new glyph string
22993 constructed. HL overrides that face of the glyph; e.g. it is
22994 DRAW_CURSOR if a cursor has to be drawn. LAST_X is the right-most
22995 x-position of the drawing area. */
22997 #define BUILD_COMPOSITE_GLYPH_STRING(START, END, HEAD, TAIL, HL, X, LAST_X) \
22998 do { \
22999 int face_id = (row)->glyphs[area][START].face_id; \
23000 struct face *base_face = FACE_FROM_ID (f, face_id); \
23001 ptrdiff_t cmp_id = (row)->glyphs[area][START].u.cmp.id; \
23002 struct composition *cmp = composition_table[cmp_id]; \
23003 XChar2b *char2b; \
23004 struct glyph_string *first_s = NULL; \
23005 int n; \
23007 char2b = (XChar2b *) alloca ((sizeof *char2b) * cmp->glyph_len); \
23009 /* Make glyph_strings for each glyph sequence that is drawable by \
23010 the same face, and append them to HEAD/TAIL. */ \
23011 for (n = 0; n < cmp->glyph_len;) \
23013 s = (struct glyph_string *) alloca (sizeof *s); \
23014 INIT_GLYPH_STRING (s, char2b, w, row, area, START, HL); \
23015 append_glyph_string (&(HEAD), &(TAIL), s); \
23016 s->cmp = cmp; \
23017 s->cmp_from = n; \
23018 s->x = (X); \
23019 if (n == 0) \
23020 first_s = s; \
23021 n = fill_composite_glyph_string (s, base_face, overlaps); \
23024 ++START; \
23025 s = first_s; \
23026 } while (0)
23029 /* Add a glyph string for a glyph-string sequence to the list of strings
23030 between HEAD and TAIL. */
23032 #define BUILD_GSTRING_GLYPH_STRING(START, END, HEAD, TAIL, HL, X, LAST_X) \
23033 do { \
23034 int face_id; \
23035 XChar2b *char2b; \
23036 Lisp_Object gstring; \
23038 face_id = (row)->glyphs[area][START].face_id; \
23039 gstring = (composition_gstring_from_id \
23040 ((row)->glyphs[area][START].u.cmp.id)); \
23041 s = (struct glyph_string *) alloca (sizeof *s); \
23042 char2b = (XChar2b *) alloca ((sizeof *char2b) \
23043 * LGSTRING_GLYPH_LEN (gstring)); \
23044 INIT_GLYPH_STRING (s, char2b, w, row, area, START, HL); \
23045 append_glyph_string (&(HEAD), &(TAIL), s); \
23046 s->x = (X); \
23047 START = fill_gstring_glyph_string (s, face_id, START, END, overlaps); \
23048 } while (0)
23051 /* Add a glyph string for a sequence of glyphless character's glyphs
23052 to the list of strings between HEAD and TAIL. The meanings of
23053 arguments are the same as those of BUILD_CHAR_GLYPH_STRINGS. */
23055 #define BUILD_GLYPHLESS_GLYPH_STRING(START, END, HEAD, TAIL, HL, X, LAST_X) \
23056 do \
23058 int face_id; \
23060 face_id = (row)->glyphs[area][START].face_id; \
23062 s = (struct glyph_string *) alloca (sizeof *s); \
23063 INIT_GLYPH_STRING (s, NULL, w, row, area, START, HL); \
23064 append_glyph_string (&HEAD, &TAIL, s); \
23065 s->x = (X); \
23066 START = fill_glyphless_glyph_string (s, face_id, START, END, \
23067 overlaps); \
23069 while (0)
23072 /* Build a list of glyph strings between HEAD and TAIL for the glyphs
23073 of AREA of glyph row ROW on window W between indices START and END.
23074 HL overrides the face for drawing glyph strings, e.g. it is
23075 DRAW_CURSOR to draw a cursor. X and LAST_X are start and end
23076 x-positions of the drawing area.
23078 This is an ugly monster macro construct because we must use alloca
23079 to allocate glyph strings (because draw_glyphs can be called
23080 asynchronously). */
23082 #define BUILD_GLYPH_STRINGS(START, END, HEAD, TAIL, HL, X, LAST_X) \
23083 do \
23085 HEAD = TAIL = NULL; \
23086 while (START < END) \
23088 struct glyph *first_glyph = (row)->glyphs[area] + START; \
23089 switch (first_glyph->type) \
23091 case CHAR_GLYPH: \
23092 BUILD_CHAR_GLYPH_STRINGS (START, END, HEAD, TAIL, \
23093 HL, X, LAST_X); \
23094 break; \
23096 case COMPOSITE_GLYPH: \
23097 if (first_glyph->u.cmp.automatic) \
23098 BUILD_GSTRING_GLYPH_STRING (START, END, HEAD, TAIL, \
23099 HL, X, LAST_X); \
23100 else \
23101 BUILD_COMPOSITE_GLYPH_STRING (START, END, HEAD, TAIL, \
23102 HL, X, LAST_X); \
23103 break; \
23105 case STRETCH_GLYPH: \
23106 BUILD_STRETCH_GLYPH_STRING (START, END, HEAD, TAIL, \
23107 HL, X, LAST_X); \
23108 break; \
23110 case IMAGE_GLYPH: \
23111 BUILD_IMAGE_GLYPH_STRING (START, END, HEAD, TAIL, \
23112 HL, X, LAST_X); \
23113 break; \
23115 case GLYPHLESS_GLYPH: \
23116 BUILD_GLYPHLESS_GLYPH_STRING (START, END, HEAD, TAIL, \
23117 HL, X, LAST_X); \
23118 break; \
23120 default: \
23121 abort (); \
23124 if (s) \
23126 set_glyph_string_background_width (s, START, LAST_X); \
23127 (X) += s->width; \
23130 } while (0)
23133 /* Draw glyphs between START and END in AREA of ROW on window W,
23134 starting at x-position X. X is relative to AREA in W. HL is a
23135 face-override with the following meaning:
23137 DRAW_NORMAL_TEXT draw normally
23138 DRAW_CURSOR draw in cursor face
23139 DRAW_MOUSE_FACE draw in mouse face.
23140 DRAW_INVERSE_VIDEO draw in mode line face
23141 DRAW_IMAGE_SUNKEN draw an image with a sunken relief around it
23142 DRAW_IMAGE_RAISED draw an image with a raised relief around it
23144 If OVERLAPS is non-zero, draw only the foreground of characters and
23145 clip to the physical height of ROW. Non-zero value also defines
23146 the overlapping part to be drawn:
23148 OVERLAPS_PRED overlap with preceding rows
23149 OVERLAPS_SUCC overlap with succeeding rows
23150 OVERLAPS_BOTH overlap with both preceding/succeeding rows
23151 OVERLAPS_ERASED_CURSOR overlap with erased cursor area
23153 Value is the x-position reached, relative to AREA of W. */
23155 static int
23156 draw_glyphs (struct window *w, int x, struct glyph_row *row,
23157 enum glyph_row_area area, ptrdiff_t start, ptrdiff_t end,
23158 enum draw_glyphs_face hl, int overlaps)
23160 struct glyph_string *head, *tail;
23161 struct glyph_string *s;
23162 struct glyph_string *clip_head = NULL, *clip_tail = NULL;
23163 int i, j, x_reached, last_x, area_left = 0;
23164 struct frame *f = XFRAME (WINDOW_FRAME (w));
23165 DECLARE_HDC (hdc);
23167 ALLOCATE_HDC (hdc, f);
23169 /* Let's rather be paranoid than getting a SEGV. */
23170 end = min (end, row->used[area]);
23171 start = max (0, start);
23172 start = min (end, start);
23174 /* Translate X to frame coordinates. Set last_x to the right
23175 end of the drawing area. */
23176 if (row->full_width_p)
23178 /* X is relative to the left edge of W, without scroll bars
23179 or fringes. */
23180 area_left = WINDOW_LEFT_EDGE_X (w);
23181 last_x = WINDOW_LEFT_EDGE_X (w) + WINDOW_TOTAL_WIDTH (w);
23183 else
23185 area_left = window_box_left (w, area);
23186 last_x = area_left + window_box_width (w, area);
23188 x += area_left;
23190 /* Build a doubly-linked list of glyph_string structures between
23191 head and tail from what we have to draw. Note that the macro
23192 BUILD_GLYPH_STRINGS will modify its start parameter. That's
23193 the reason we use a separate variable `i'. */
23194 i = start;
23195 BUILD_GLYPH_STRINGS (i, end, head, tail, hl, x, last_x);
23196 if (tail)
23197 x_reached = tail->x + tail->background_width;
23198 else
23199 x_reached = x;
23201 /* If there are any glyphs with lbearing < 0 or rbearing > width in
23202 the row, redraw some glyphs in front or following the glyph
23203 strings built above. */
23204 if (head && !overlaps && row->contains_overlapping_glyphs_p)
23206 struct glyph_string *h, *t;
23207 Mouse_HLInfo *hlinfo = MOUSE_HL_INFO (f);
23208 int mouse_beg_col IF_LINT (= 0), mouse_end_col IF_LINT (= 0);
23209 int check_mouse_face = 0;
23210 int dummy_x = 0;
23212 /* If mouse highlighting is on, we may need to draw adjacent
23213 glyphs using mouse-face highlighting. */
23214 if (area == TEXT_AREA && row->mouse_face_p)
23216 struct glyph_row *mouse_beg_row, *mouse_end_row;
23218 mouse_beg_row = MATRIX_ROW (w->current_matrix, hlinfo->mouse_face_beg_row);
23219 mouse_end_row = MATRIX_ROW (w->current_matrix, hlinfo->mouse_face_end_row);
23221 if (row >= mouse_beg_row && row <= mouse_end_row)
23223 check_mouse_face = 1;
23224 mouse_beg_col = (row == mouse_beg_row)
23225 ? hlinfo->mouse_face_beg_col : 0;
23226 mouse_end_col = (row == mouse_end_row)
23227 ? hlinfo->mouse_face_end_col
23228 : row->used[TEXT_AREA];
23232 /* Compute overhangs for all glyph strings. */
23233 if (FRAME_RIF (f)->compute_glyph_string_overhangs)
23234 for (s = head; s; s = s->next)
23235 FRAME_RIF (f)->compute_glyph_string_overhangs (s);
23237 /* Prepend glyph strings for glyphs in front of the first glyph
23238 string that are overwritten because of the first glyph
23239 string's left overhang. The background of all strings
23240 prepended must be drawn because the first glyph string
23241 draws over it. */
23242 i = left_overwritten (head);
23243 if (i >= 0)
23245 enum draw_glyphs_face overlap_hl;
23247 /* If this row contains mouse highlighting, attempt to draw
23248 the overlapped glyphs with the correct highlight. This
23249 code fails if the overlap encompasses more than one glyph
23250 and mouse-highlight spans only some of these glyphs.
23251 However, making it work perfectly involves a lot more
23252 code, and I don't know if the pathological case occurs in
23253 practice, so we'll stick to this for now. --- cyd */
23254 if (check_mouse_face
23255 && mouse_beg_col < start && mouse_end_col > i)
23256 overlap_hl = DRAW_MOUSE_FACE;
23257 else
23258 overlap_hl = DRAW_NORMAL_TEXT;
23260 j = i;
23261 BUILD_GLYPH_STRINGS (j, start, h, t,
23262 overlap_hl, dummy_x, last_x);
23263 start = i;
23264 compute_overhangs_and_x (t, head->x, 1);
23265 prepend_glyph_string_lists (&head, &tail, h, t);
23266 clip_head = head;
23269 /* Prepend glyph strings for glyphs in front of the first glyph
23270 string that overwrite that glyph string because of their
23271 right overhang. For these strings, only the foreground must
23272 be drawn, because it draws over the glyph string at `head'.
23273 The background must not be drawn because this would overwrite
23274 right overhangs of preceding glyphs for which no glyph
23275 strings exist. */
23276 i = left_overwriting (head);
23277 if (i >= 0)
23279 enum draw_glyphs_face overlap_hl;
23281 if (check_mouse_face
23282 && mouse_beg_col < start && mouse_end_col > i)
23283 overlap_hl = DRAW_MOUSE_FACE;
23284 else
23285 overlap_hl = DRAW_NORMAL_TEXT;
23287 clip_head = head;
23288 BUILD_GLYPH_STRINGS (i, start, h, t,
23289 overlap_hl, dummy_x, last_x);
23290 for (s = h; s; s = s->next)
23291 s->background_filled_p = 1;
23292 compute_overhangs_and_x (t, head->x, 1);
23293 prepend_glyph_string_lists (&head, &tail, h, t);
23296 /* Append glyphs strings for glyphs following the last glyph
23297 string tail that are overwritten by tail. The background of
23298 these strings has to be drawn because tail's foreground draws
23299 over it. */
23300 i = right_overwritten (tail);
23301 if (i >= 0)
23303 enum draw_glyphs_face overlap_hl;
23305 if (check_mouse_face
23306 && mouse_beg_col < i && mouse_end_col > end)
23307 overlap_hl = DRAW_MOUSE_FACE;
23308 else
23309 overlap_hl = DRAW_NORMAL_TEXT;
23311 BUILD_GLYPH_STRINGS (end, i, h, t,
23312 overlap_hl, x, last_x);
23313 /* Because BUILD_GLYPH_STRINGS updates the first argument,
23314 we don't have `end = i;' here. */
23315 compute_overhangs_and_x (h, tail->x + tail->width, 0);
23316 append_glyph_string_lists (&head, &tail, h, t);
23317 clip_tail = tail;
23320 /* Append glyph strings for glyphs following the last glyph
23321 string tail that overwrite tail. The foreground of such
23322 glyphs has to be drawn because it writes into the background
23323 of tail. The background must not be drawn because it could
23324 paint over the foreground of following glyphs. */
23325 i = right_overwriting (tail);
23326 if (i >= 0)
23328 enum draw_glyphs_face overlap_hl;
23329 if (check_mouse_face
23330 && mouse_beg_col < i && mouse_end_col > end)
23331 overlap_hl = DRAW_MOUSE_FACE;
23332 else
23333 overlap_hl = DRAW_NORMAL_TEXT;
23335 clip_tail = tail;
23336 i++; /* We must include the Ith glyph. */
23337 BUILD_GLYPH_STRINGS (end, i, h, t,
23338 overlap_hl, x, last_x);
23339 for (s = h; s; s = s->next)
23340 s->background_filled_p = 1;
23341 compute_overhangs_and_x (h, tail->x + tail->width, 0);
23342 append_glyph_string_lists (&head, &tail, h, t);
23344 if (clip_head || clip_tail)
23345 for (s = head; s; s = s->next)
23347 s->clip_head = clip_head;
23348 s->clip_tail = clip_tail;
23352 /* Draw all strings. */
23353 for (s = head; s; s = s->next)
23354 FRAME_RIF (f)->draw_glyph_string (s);
23356 #ifndef HAVE_NS
23357 /* When focus a sole frame and move horizontally, this sets on_p to 0
23358 causing a failure to erase prev cursor position. */
23359 if (area == TEXT_AREA
23360 && !row->full_width_p
23361 /* When drawing overlapping rows, only the glyph strings'
23362 foreground is drawn, which doesn't erase a cursor
23363 completely. */
23364 && !overlaps)
23366 int x0 = clip_head ? clip_head->x : (head ? head->x : x);
23367 int x1 = (clip_tail ? clip_tail->x + clip_tail->background_width
23368 : (tail ? tail->x + tail->background_width : x));
23369 x0 -= area_left;
23370 x1 -= area_left;
23372 notice_overwritten_cursor (w, TEXT_AREA, x0, x1,
23373 row->y, MATRIX_ROW_BOTTOM_Y (row));
23375 #endif
23377 /* Value is the x-position up to which drawn, relative to AREA of W.
23378 This doesn't include parts drawn because of overhangs. */
23379 if (row->full_width_p)
23380 x_reached = FRAME_TO_WINDOW_PIXEL_X (w, x_reached);
23381 else
23382 x_reached -= area_left;
23384 RELEASE_HDC (hdc, f);
23386 return x_reached;
23389 /* Expand row matrix if too narrow. Don't expand if area
23390 is not present. */
23392 #define IT_EXPAND_MATRIX_WIDTH(it, area) \
23394 if (!fonts_changed_p \
23395 && (it->glyph_row->glyphs[area] \
23396 < it->glyph_row->glyphs[area + 1])) \
23398 it->w->ncols_scale_factor++; \
23399 fonts_changed_p = 1; \
23403 /* Store one glyph for IT->char_to_display in IT->glyph_row.
23404 Called from x_produce_glyphs when IT->glyph_row is non-null. */
23406 static inline void
23407 append_glyph (struct it *it)
23409 struct glyph *glyph;
23410 enum glyph_row_area area = it->area;
23412 xassert (it->glyph_row);
23413 xassert (it->char_to_display != '\n' && it->char_to_display != '\t');
23415 glyph = it->glyph_row->glyphs[area] + it->glyph_row->used[area];
23416 if (glyph < it->glyph_row->glyphs[area + 1])
23418 /* If the glyph row is reversed, we need to prepend the glyph
23419 rather than append it. */
23420 if (it->glyph_row->reversed_p && area == TEXT_AREA)
23422 struct glyph *g;
23424 /* Make room for the additional glyph. */
23425 for (g = glyph - 1; g >= it->glyph_row->glyphs[area]; g--)
23426 g[1] = *g;
23427 glyph = it->glyph_row->glyphs[area];
23429 glyph->charpos = CHARPOS (it->position);
23430 glyph->object = it->object;
23431 if (it->pixel_width > 0)
23433 glyph->pixel_width = it->pixel_width;
23434 glyph->padding_p = 0;
23436 else
23438 /* Assure at least 1-pixel width. Otherwise, cursor can't
23439 be displayed correctly. */
23440 glyph->pixel_width = 1;
23441 glyph->padding_p = 1;
23443 glyph->ascent = it->ascent;
23444 glyph->descent = it->descent;
23445 glyph->voffset = it->voffset;
23446 glyph->type = CHAR_GLYPH;
23447 glyph->avoid_cursor_p = it->avoid_cursor_p;
23448 glyph->multibyte_p = it->multibyte_p;
23449 glyph->left_box_line_p = it->start_of_box_run_p;
23450 glyph->right_box_line_p = it->end_of_box_run_p;
23451 glyph->overlaps_vertically_p = (it->phys_ascent > it->ascent
23452 || it->phys_descent > it->descent);
23453 glyph->glyph_not_available_p = it->glyph_not_available_p;
23454 glyph->face_id = it->face_id;
23455 glyph->u.ch = it->char_to_display;
23456 glyph->slice.img = null_glyph_slice;
23457 glyph->font_type = FONT_TYPE_UNKNOWN;
23458 if (it->bidi_p)
23460 glyph->resolved_level = it->bidi_it.resolved_level;
23461 if ((it->bidi_it.type & 7) != it->bidi_it.type)
23462 abort ();
23463 glyph->bidi_type = it->bidi_it.type;
23465 else
23467 glyph->resolved_level = 0;
23468 glyph->bidi_type = UNKNOWN_BT;
23470 ++it->glyph_row->used[area];
23472 else
23473 IT_EXPAND_MATRIX_WIDTH (it, area);
23476 /* Store one glyph for the composition IT->cmp_it.id in
23477 IT->glyph_row. Called from x_produce_glyphs when IT->glyph_row is
23478 non-null. */
23480 static inline void
23481 append_composite_glyph (struct it *it)
23483 struct glyph *glyph;
23484 enum glyph_row_area area = it->area;
23486 xassert (it->glyph_row);
23488 glyph = it->glyph_row->glyphs[area] + it->glyph_row->used[area];
23489 if (glyph < it->glyph_row->glyphs[area + 1])
23491 /* If the glyph row is reversed, we need to prepend the glyph
23492 rather than append it. */
23493 if (it->glyph_row->reversed_p && it->area == TEXT_AREA)
23495 struct glyph *g;
23497 /* Make room for the new glyph. */
23498 for (g = glyph - 1; g >= it->glyph_row->glyphs[it->area]; g--)
23499 g[1] = *g;
23500 glyph = it->glyph_row->glyphs[it->area];
23502 glyph->charpos = it->cmp_it.charpos;
23503 glyph->object = it->object;
23504 glyph->pixel_width = it->pixel_width;
23505 glyph->ascent = it->ascent;
23506 glyph->descent = it->descent;
23507 glyph->voffset = it->voffset;
23508 glyph->type = COMPOSITE_GLYPH;
23509 if (it->cmp_it.ch < 0)
23511 glyph->u.cmp.automatic = 0;
23512 glyph->u.cmp.id = it->cmp_it.id;
23513 glyph->slice.cmp.from = glyph->slice.cmp.to = 0;
23515 else
23517 glyph->u.cmp.automatic = 1;
23518 glyph->u.cmp.id = it->cmp_it.id;
23519 glyph->slice.cmp.from = it->cmp_it.from;
23520 glyph->slice.cmp.to = it->cmp_it.to - 1;
23522 glyph->avoid_cursor_p = it->avoid_cursor_p;
23523 glyph->multibyte_p = it->multibyte_p;
23524 glyph->left_box_line_p = it->start_of_box_run_p;
23525 glyph->right_box_line_p = it->end_of_box_run_p;
23526 glyph->overlaps_vertically_p = (it->phys_ascent > it->ascent
23527 || it->phys_descent > it->descent);
23528 glyph->padding_p = 0;
23529 glyph->glyph_not_available_p = 0;
23530 glyph->face_id = it->face_id;
23531 glyph->font_type = FONT_TYPE_UNKNOWN;
23532 if (it->bidi_p)
23534 glyph->resolved_level = it->bidi_it.resolved_level;
23535 if ((it->bidi_it.type & 7) != it->bidi_it.type)
23536 abort ();
23537 glyph->bidi_type = it->bidi_it.type;
23539 ++it->glyph_row->used[area];
23541 else
23542 IT_EXPAND_MATRIX_WIDTH (it, area);
23546 /* Change IT->ascent and IT->height according to the setting of
23547 IT->voffset. */
23549 static inline void
23550 take_vertical_position_into_account (struct it *it)
23552 if (it->voffset)
23554 if (it->voffset < 0)
23555 /* Increase the ascent so that we can display the text higher
23556 in the line. */
23557 it->ascent -= it->voffset;
23558 else
23559 /* Increase the descent so that we can display the text lower
23560 in the line. */
23561 it->descent += it->voffset;
23566 /* Produce glyphs/get display metrics for the image IT is loaded with.
23567 See the description of struct display_iterator in dispextern.h for
23568 an overview of struct display_iterator. */
23570 static void
23571 produce_image_glyph (struct it *it)
23573 struct image *img;
23574 struct face *face;
23575 int glyph_ascent, crop;
23576 struct glyph_slice slice;
23578 xassert (it->what == IT_IMAGE);
23580 face = FACE_FROM_ID (it->f, it->face_id);
23581 xassert (face);
23582 /* Make sure X resources of the face is loaded. */
23583 PREPARE_FACE_FOR_DISPLAY (it->f, face);
23585 if (it->image_id < 0)
23587 /* Fringe bitmap. */
23588 it->ascent = it->phys_ascent = 0;
23589 it->descent = it->phys_descent = 0;
23590 it->pixel_width = 0;
23591 it->nglyphs = 0;
23592 return;
23595 img = IMAGE_FROM_ID (it->f, it->image_id);
23596 xassert (img);
23597 /* Make sure X resources of the image is loaded. */
23598 prepare_image_for_display (it->f, img);
23600 slice.x = slice.y = 0;
23601 slice.width = img->width;
23602 slice.height = img->height;
23604 if (INTEGERP (it->slice.x))
23605 slice.x = XINT (it->slice.x);
23606 else if (FLOATP (it->slice.x))
23607 slice.x = XFLOAT_DATA (it->slice.x) * img->width;
23609 if (INTEGERP (it->slice.y))
23610 slice.y = XINT (it->slice.y);
23611 else if (FLOATP (it->slice.y))
23612 slice.y = XFLOAT_DATA (it->slice.y) * img->height;
23614 if (INTEGERP (it->slice.width))
23615 slice.width = XINT (it->slice.width);
23616 else if (FLOATP (it->slice.width))
23617 slice.width = XFLOAT_DATA (it->slice.width) * img->width;
23619 if (INTEGERP (it->slice.height))
23620 slice.height = XINT (it->slice.height);
23621 else if (FLOATP (it->slice.height))
23622 slice.height = XFLOAT_DATA (it->slice.height) * img->height;
23624 if (slice.x >= img->width)
23625 slice.x = img->width;
23626 if (slice.y >= img->height)
23627 slice.y = img->height;
23628 if (slice.x + slice.width >= img->width)
23629 slice.width = img->width - slice.x;
23630 if (slice.y + slice.height > img->height)
23631 slice.height = img->height - slice.y;
23633 if (slice.width == 0 || slice.height == 0)
23634 return;
23636 it->ascent = it->phys_ascent = glyph_ascent = image_ascent (img, face, &slice);
23638 it->descent = slice.height - glyph_ascent;
23639 if (slice.y == 0)
23640 it->descent += img->vmargin;
23641 if (slice.y + slice.height == img->height)
23642 it->descent += img->vmargin;
23643 it->phys_descent = it->descent;
23645 it->pixel_width = slice.width;
23646 if (slice.x == 0)
23647 it->pixel_width += img->hmargin;
23648 if (slice.x + slice.width == img->width)
23649 it->pixel_width += img->hmargin;
23651 /* It's quite possible for images to have an ascent greater than
23652 their height, so don't get confused in that case. */
23653 if (it->descent < 0)
23654 it->descent = 0;
23656 it->nglyphs = 1;
23658 if (face->box != FACE_NO_BOX)
23660 if (face->box_line_width > 0)
23662 if (slice.y == 0)
23663 it->ascent += face->box_line_width;
23664 if (slice.y + slice.height == img->height)
23665 it->descent += face->box_line_width;
23668 if (it->start_of_box_run_p && slice.x == 0)
23669 it->pixel_width += eabs (face->box_line_width);
23670 if (it->end_of_box_run_p && slice.x + slice.width == img->width)
23671 it->pixel_width += eabs (face->box_line_width);
23674 take_vertical_position_into_account (it);
23676 /* Automatically crop wide image glyphs at right edge so we can
23677 draw the cursor on same display row. */
23678 if ((crop = it->pixel_width - (it->last_visible_x - it->current_x), crop > 0)
23679 && (it->hpos == 0 || it->pixel_width > it->last_visible_x / 4))
23681 it->pixel_width -= crop;
23682 slice.width -= crop;
23685 if (it->glyph_row)
23687 struct glyph *glyph;
23688 enum glyph_row_area area = it->area;
23690 glyph = it->glyph_row->glyphs[area] + it->glyph_row->used[area];
23691 if (glyph < it->glyph_row->glyphs[area + 1])
23693 glyph->charpos = CHARPOS (it->position);
23694 glyph->object = it->object;
23695 glyph->pixel_width = it->pixel_width;
23696 glyph->ascent = glyph_ascent;
23697 glyph->descent = it->descent;
23698 glyph->voffset = it->voffset;
23699 glyph->type = IMAGE_GLYPH;
23700 glyph->avoid_cursor_p = it->avoid_cursor_p;
23701 glyph->multibyte_p = it->multibyte_p;
23702 glyph->left_box_line_p = it->start_of_box_run_p;
23703 glyph->right_box_line_p = it->end_of_box_run_p;
23704 glyph->overlaps_vertically_p = 0;
23705 glyph->padding_p = 0;
23706 glyph->glyph_not_available_p = 0;
23707 glyph->face_id = it->face_id;
23708 glyph->u.img_id = img->id;
23709 glyph->slice.img = slice;
23710 glyph->font_type = FONT_TYPE_UNKNOWN;
23711 if (it->bidi_p)
23713 glyph->resolved_level = it->bidi_it.resolved_level;
23714 if ((it->bidi_it.type & 7) != it->bidi_it.type)
23715 abort ();
23716 glyph->bidi_type = it->bidi_it.type;
23718 ++it->glyph_row->used[area];
23720 else
23721 IT_EXPAND_MATRIX_WIDTH (it, area);
23726 /* Append a stretch glyph to IT->glyph_row. OBJECT is the source
23727 of the glyph, WIDTH and HEIGHT are the width and height of the
23728 stretch. ASCENT is the ascent of the glyph (0 <= ASCENT <= HEIGHT). */
23730 static void
23731 append_stretch_glyph (struct it *it, Lisp_Object object,
23732 int width, int height, int ascent)
23734 struct glyph *glyph;
23735 enum glyph_row_area area = it->area;
23737 xassert (ascent >= 0 && ascent <= height);
23739 glyph = it->glyph_row->glyphs[area] + it->glyph_row->used[area];
23740 if (glyph < it->glyph_row->glyphs[area + 1])
23742 /* If the glyph row is reversed, we need to prepend the glyph
23743 rather than append it. */
23744 if (it->glyph_row->reversed_p && area == TEXT_AREA)
23746 struct glyph *g;
23748 /* Make room for the additional glyph. */
23749 for (g = glyph - 1; g >= it->glyph_row->glyphs[area]; g--)
23750 g[1] = *g;
23751 glyph = it->glyph_row->glyphs[area];
23753 glyph->charpos = CHARPOS (it->position);
23754 glyph->object = object;
23755 glyph->pixel_width = width;
23756 glyph->ascent = ascent;
23757 glyph->descent = height - ascent;
23758 glyph->voffset = it->voffset;
23759 glyph->type = STRETCH_GLYPH;
23760 glyph->avoid_cursor_p = it->avoid_cursor_p;
23761 glyph->multibyte_p = it->multibyte_p;
23762 glyph->left_box_line_p = it->start_of_box_run_p;
23763 glyph->right_box_line_p = it->end_of_box_run_p;
23764 glyph->overlaps_vertically_p = 0;
23765 glyph->padding_p = 0;
23766 glyph->glyph_not_available_p = 0;
23767 glyph->face_id = it->face_id;
23768 glyph->u.stretch.ascent = ascent;
23769 glyph->u.stretch.height = height;
23770 glyph->slice.img = null_glyph_slice;
23771 glyph->font_type = FONT_TYPE_UNKNOWN;
23772 if (it->bidi_p)
23774 glyph->resolved_level = it->bidi_it.resolved_level;
23775 if ((it->bidi_it.type & 7) != it->bidi_it.type)
23776 abort ();
23777 glyph->bidi_type = it->bidi_it.type;
23779 else
23781 glyph->resolved_level = 0;
23782 glyph->bidi_type = UNKNOWN_BT;
23784 ++it->glyph_row->used[area];
23786 else
23787 IT_EXPAND_MATRIX_WIDTH (it, area);
23790 #endif /* HAVE_WINDOW_SYSTEM */
23792 /* Produce a stretch glyph for iterator IT. IT->object is the value
23793 of the glyph property displayed. The value must be a list
23794 `(space KEYWORD VALUE ...)' with the following KEYWORD/VALUE pairs
23795 being recognized:
23797 1. `:width WIDTH' specifies that the space should be WIDTH *
23798 canonical char width wide. WIDTH may be an integer or floating
23799 point number.
23801 2. `:relative-width FACTOR' specifies that the width of the stretch
23802 should be computed from the width of the first character having the
23803 `glyph' property, and should be FACTOR times that width.
23805 3. `:align-to HPOS' specifies that the space should be wide enough
23806 to reach HPOS, a value in canonical character units.
23808 Exactly one of the above pairs must be present.
23810 4. `:height HEIGHT' specifies that the height of the stretch produced
23811 should be HEIGHT, measured in canonical character units.
23813 5. `:relative-height FACTOR' specifies that the height of the
23814 stretch should be FACTOR times the height of the characters having
23815 the glyph property.
23817 Either none or exactly one of 4 or 5 must be present.
23819 6. `:ascent ASCENT' specifies that ASCENT percent of the height
23820 of the stretch should be used for the ascent of the stretch.
23821 ASCENT must be in the range 0 <= ASCENT <= 100. */
23823 void
23824 produce_stretch_glyph (struct it *it)
23826 /* (space :width WIDTH :height HEIGHT ...) */
23827 Lisp_Object prop, plist;
23828 int width = 0, height = 0, align_to = -1;
23829 int zero_width_ok_p = 0;
23830 int ascent = 0;
23831 double tem;
23832 struct face *face = NULL;
23833 struct font *font = NULL;
23835 #ifdef HAVE_WINDOW_SYSTEM
23836 int zero_height_ok_p = 0;
23838 if (FRAME_WINDOW_P (it->f))
23840 face = FACE_FROM_ID (it->f, it->face_id);
23841 font = face->font ? face->font : FRAME_FONT (it->f);
23842 PREPARE_FACE_FOR_DISPLAY (it->f, face);
23844 #endif
23846 /* List should start with `space'. */
23847 xassert (CONSP (it->object) && EQ (XCAR (it->object), Qspace));
23848 plist = XCDR (it->object);
23850 /* Compute the width of the stretch. */
23851 if ((prop = Fplist_get (plist, QCwidth), !NILP (prop))
23852 && calc_pixel_width_or_height (&tem, it, prop, font, 1, 0))
23854 /* Absolute width `:width WIDTH' specified and valid. */
23855 zero_width_ok_p = 1;
23856 width = (int)tem;
23858 #ifdef HAVE_WINDOW_SYSTEM
23859 else if (FRAME_WINDOW_P (it->f)
23860 && (prop = Fplist_get (plist, QCrelative_width), NUMVAL (prop) > 0))
23862 /* Relative width `:relative-width FACTOR' specified and valid.
23863 Compute the width of the characters having the `glyph'
23864 property. */
23865 struct it it2;
23866 unsigned char *p = BYTE_POS_ADDR (IT_BYTEPOS (*it));
23868 it2 = *it;
23869 if (it->multibyte_p)
23870 it2.c = it2.char_to_display = STRING_CHAR_AND_LENGTH (p, it2.len);
23871 else
23873 it2.c = it2.char_to_display = *p, it2.len = 1;
23874 if (! ASCII_CHAR_P (it2.c))
23875 it2.char_to_display = BYTE8_TO_CHAR (it2.c);
23878 it2.glyph_row = NULL;
23879 it2.what = IT_CHARACTER;
23880 x_produce_glyphs (&it2);
23881 width = NUMVAL (prop) * it2.pixel_width;
23883 #endif /* HAVE_WINDOW_SYSTEM */
23884 else if ((prop = Fplist_get (plist, QCalign_to), !NILP (prop))
23885 && calc_pixel_width_or_height (&tem, it, prop, font, 1, &align_to))
23887 if (it->glyph_row == NULL || !it->glyph_row->mode_line_p)
23888 align_to = (align_to < 0
23890 : align_to - window_box_left_offset (it->w, TEXT_AREA));
23891 else if (align_to < 0)
23892 align_to = window_box_left_offset (it->w, TEXT_AREA);
23893 width = max (0, (int)tem + align_to - it->current_x);
23894 zero_width_ok_p = 1;
23896 else
23897 /* Nothing specified -> width defaults to canonical char width. */
23898 width = FRAME_COLUMN_WIDTH (it->f);
23900 if (width <= 0 && (width < 0 || !zero_width_ok_p))
23901 width = 1;
23903 #ifdef HAVE_WINDOW_SYSTEM
23904 /* Compute height. */
23905 if (FRAME_WINDOW_P (it->f))
23907 if ((prop = Fplist_get (plist, QCheight), !NILP (prop))
23908 && calc_pixel_width_or_height (&tem, it, prop, font, 0, 0))
23910 height = (int)tem;
23911 zero_height_ok_p = 1;
23913 else if (prop = Fplist_get (plist, QCrelative_height),
23914 NUMVAL (prop) > 0)
23915 height = FONT_HEIGHT (font) * NUMVAL (prop);
23916 else
23917 height = FONT_HEIGHT (font);
23919 if (height <= 0 && (height < 0 || !zero_height_ok_p))
23920 height = 1;
23922 /* Compute percentage of height used for ascent. If
23923 `:ascent ASCENT' is present and valid, use that. Otherwise,
23924 derive the ascent from the font in use. */
23925 if (prop = Fplist_get (plist, QCascent),
23926 NUMVAL (prop) > 0 && NUMVAL (prop) <= 100)
23927 ascent = height * NUMVAL (prop) / 100.0;
23928 else if (!NILP (prop)
23929 && calc_pixel_width_or_height (&tem, it, prop, font, 0, 0))
23930 ascent = min (max (0, (int)tem), height);
23931 else
23932 ascent = (height * FONT_BASE (font)) / FONT_HEIGHT (font);
23934 else
23935 #endif /* HAVE_WINDOW_SYSTEM */
23936 height = 1;
23938 if (width > 0 && it->line_wrap != TRUNCATE
23939 && it->current_x + width > it->last_visible_x)
23941 width = it->last_visible_x - it->current_x;
23942 #ifdef HAVE_WINDOW_SYSTEM
23943 /* Subtract one more pixel from the stretch width, but only on
23944 GUI frames, since on a TTY each glyph is one "pixel" wide. */
23945 width -= FRAME_WINDOW_P (it->f);
23946 #endif
23949 if (width > 0 && height > 0 && it->glyph_row)
23951 Lisp_Object o_object = it->object;
23952 Lisp_Object object = it->stack[it->sp - 1].string;
23953 int n = width;
23955 if (!STRINGP (object))
23956 object = it->w->buffer;
23957 #ifdef HAVE_WINDOW_SYSTEM
23958 if (FRAME_WINDOW_P (it->f))
23959 append_stretch_glyph (it, object, width, height, ascent);
23960 else
23961 #endif
23963 it->object = object;
23964 it->char_to_display = ' ';
23965 it->pixel_width = it->len = 1;
23966 while (n--)
23967 tty_append_glyph (it);
23968 it->object = o_object;
23972 it->pixel_width = width;
23973 #ifdef HAVE_WINDOW_SYSTEM
23974 if (FRAME_WINDOW_P (it->f))
23976 it->ascent = it->phys_ascent = ascent;
23977 it->descent = it->phys_descent = height - it->ascent;
23978 it->nglyphs = width > 0 && height > 0 ? 1 : 0;
23979 take_vertical_position_into_account (it);
23981 else
23982 #endif
23983 it->nglyphs = width;
23986 #ifdef HAVE_WINDOW_SYSTEM
23988 /* Calculate line-height and line-spacing properties.
23989 An integer value specifies explicit pixel value.
23990 A float value specifies relative value to current face height.
23991 A cons (float . face-name) specifies relative value to
23992 height of specified face font.
23994 Returns height in pixels, or nil. */
23997 static Lisp_Object
23998 calc_line_height_property (struct it *it, Lisp_Object val, struct font *font,
23999 int boff, int override)
24001 Lisp_Object face_name = Qnil;
24002 int ascent, descent, height;
24004 if (NILP (val) || INTEGERP (val) || (override && EQ (val, Qt)))
24005 return val;
24007 if (CONSP (val))
24009 face_name = XCAR (val);
24010 val = XCDR (val);
24011 if (!NUMBERP (val))
24012 val = make_number (1);
24013 if (NILP (face_name))
24015 height = it->ascent + it->descent;
24016 goto scale;
24020 if (NILP (face_name))
24022 font = FRAME_FONT (it->f);
24023 boff = FRAME_BASELINE_OFFSET (it->f);
24025 else if (EQ (face_name, Qt))
24027 override = 0;
24029 else
24031 int face_id;
24032 struct face *face;
24034 face_id = lookup_named_face (it->f, face_name, 0);
24035 if (face_id < 0)
24036 return make_number (-1);
24038 face = FACE_FROM_ID (it->f, face_id);
24039 font = face->font;
24040 if (font == NULL)
24041 return make_number (-1);
24042 boff = font->baseline_offset;
24043 if (font->vertical_centering)
24044 boff = VCENTER_BASELINE_OFFSET (font, it->f) - boff;
24047 ascent = FONT_BASE (font) + boff;
24048 descent = FONT_DESCENT (font) - boff;
24050 if (override)
24052 it->override_ascent = ascent;
24053 it->override_descent = descent;
24054 it->override_boff = boff;
24057 height = ascent + descent;
24059 scale:
24060 if (FLOATP (val))
24061 height = (int)(XFLOAT_DATA (val) * height);
24062 else if (INTEGERP (val))
24063 height *= XINT (val);
24065 return make_number (height);
24069 /* Append a glyph for a glyphless character to IT->glyph_row. FACE_ID
24070 is a face ID to be used for the glyph. FOR_NO_FONT is nonzero if
24071 and only if this is for a character for which no font was found.
24073 If the display method (it->glyphless_method) is
24074 GLYPHLESS_DISPLAY_ACRONYM or GLYPHLESS_DISPLAY_HEX_CODE, LEN is a
24075 length of the acronym or the hexadecimal string, UPPER_XOFF and
24076 UPPER_YOFF are pixel offsets for the upper part of the string,
24077 LOWER_XOFF and LOWER_YOFF are for the lower part.
24079 For the other display methods, LEN through LOWER_YOFF are zero. */
24081 static void
24082 append_glyphless_glyph (struct it *it, int face_id, int for_no_font, int len,
24083 short upper_xoff, short upper_yoff,
24084 short lower_xoff, short lower_yoff)
24086 struct glyph *glyph;
24087 enum glyph_row_area area = it->area;
24089 glyph = it->glyph_row->glyphs[area] + it->glyph_row->used[area];
24090 if (glyph < it->glyph_row->glyphs[area + 1])
24092 /* If the glyph row is reversed, we need to prepend the glyph
24093 rather than append it. */
24094 if (it->glyph_row->reversed_p && area == TEXT_AREA)
24096 struct glyph *g;
24098 /* Make room for the additional glyph. */
24099 for (g = glyph - 1; g >= it->glyph_row->glyphs[area]; g--)
24100 g[1] = *g;
24101 glyph = it->glyph_row->glyphs[area];
24103 glyph->charpos = CHARPOS (it->position);
24104 glyph->object = it->object;
24105 glyph->pixel_width = it->pixel_width;
24106 glyph->ascent = it->ascent;
24107 glyph->descent = it->descent;
24108 glyph->voffset = it->voffset;
24109 glyph->type = GLYPHLESS_GLYPH;
24110 glyph->u.glyphless.method = it->glyphless_method;
24111 glyph->u.glyphless.for_no_font = for_no_font;
24112 glyph->u.glyphless.len = len;
24113 glyph->u.glyphless.ch = it->c;
24114 glyph->slice.glyphless.upper_xoff = upper_xoff;
24115 glyph->slice.glyphless.upper_yoff = upper_yoff;
24116 glyph->slice.glyphless.lower_xoff = lower_xoff;
24117 glyph->slice.glyphless.lower_yoff = lower_yoff;
24118 glyph->avoid_cursor_p = it->avoid_cursor_p;
24119 glyph->multibyte_p = it->multibyte_p;
24120 glyph->left_box_line_p = it->start_of_box_run_p;
24121 glyph->right_box_line_p = it->end_of_box_run_p;
24122 glyph->overlaps_vertically_p = (it->phys_ascent > it->ascent
24123 || it->phys_descent > it->descent);
24124 glyph->padding_p = 0;
24125 glyph->glyph_not_available_p = 0;
24126 glyph->face_id = face_id;
24127 glyph->font_type = FONT_TYPE_UNKNOWN;
24128 if (it->bidi_p)
24130 glyph->resolved_level = it->bidi_it.resolved_level;
24131 if ((it->bidi_it.type & 7) != it->bidi_it.type)
24132 abort ();
24133 glyph->bidi_type = it->bidi_it.type;
24135 ++it->glyph_row->used[area];
24137 else
24138 IT_EXPAND_MATRIX_WIDTH (it, area);
24142 /* Produce a glyph for a glyphless character for iterator IT.
24143 IT->glyphless_method specifies which method to use for displaying
24144 the character. See the description of enum
24145 glyphless_display_method in dispextern.h for the detail.
24147 FOR_NO_FONT is nonzero if and only if this is for a character for
24148 which no font was found. ACRONYM, if non-nil, is an acronym string
24149 for the character. */
24151 static void
24152 produce_glyphless_glyph (struct it *it, int for_no_font, Lisp_Object acronym)
24154 int face_id;
24155 struct face *face;
24156 struct font *font;
24157 int base_width, base_height, width, height;
24158 short upper_xoff, upper_yoff, lower_xoff, lower_yoff;
24159 int len;
24161 /* Get the metrics of the base font. We always refer to the current
24162 ASCII face. */
24163 face = FACE_FROM_ID (it->f, it->face_id)->ascii_face;
24164 font = face->font ? face->font : FRAME_FONT (it->f);
24165 it->ascent = FONT_BASE (font) + font->baseline_offset;
24166 it->descent = FONT_DESCENT (font) - font->baseline_offset;
24167 base_height = it->ascent + it->descent;
24168 base_width = font->average_width;
24170 /* Get a face ID for the glyph by utilizing a cache (the same way as
24171 done for `escape-glyph' in get_next_display_element). */
24172 if (it->f == last_glyphless_glyph_frame
24173 && it->face_id == last_glyphless_glyph_face_id)
24175 face_id = last_glyphless_glyph_merged_face_id;
24177 else
24179 /* Merge the `glyphless-char' face into the current face. */
24180 face_id = merge_faces (it->f, Qglyphless_char, 0, it->face_id);
24181 last_glyphless_glyph_frame = it->f;
24182 last_glyphless_glyph_face_id = it->face_id;
24183 last_glyphless_glyph_merged_face_id = face_id;
24186 if (it->glyphless_method == GLYPHLESS_DISPLAY_THIN_SPACE)
24188 it->pixel_width = THIN_SPACE_WIDTH;
24189 len = 0;
24190 upper_xoff = upper_yoff = lower_xoff = lower_yoff = 0;
24192 else if (it->glyphless_method == GLYPHLESS_DISPLAY_EMPTY_BOX)
24194 width = CHAR_WIDTH (it->c);
24195 if (width == 0)
24196 width = 1;
24197 else if (width > 4)
24198 width = 4;
24199 it->pixel_width = base_width * width;
24200 len = 0;
24201 upper_xoff = upper_yoff = lower_xoff = lower_yoff = 0;
24203 else
24205 char buf[7];
24206 const char *str;
24207 unsigned int code[6];
24208 int upper_len;
24209 int ascent, descent;
24210 struct font_metrics metrics_upper, metrics_lower;
24212 face = FACE_FROM_ID (it->f, face_id);
24213 font = face->font ? face->font : FRAME_FONT (it->f);
24214 PREPARE_FACE_FOR_DISPLAY (it->f, face);
24216 if (it->glyphless_method == GLYPHLESS_DISPLAY_ACRONYM)
24218 if (! STRINGP (acronym) && CHAR_TABLE_P (Vglyphless_char_display))
24219 acronym = CHAR_TABLE_REF (Vglyphless_char_display, it->c);
24220 if (CONSP (acronym))
24221 acronym = XCAR (acronym);
24222 str = STRINGP (acronym) ? SSDATA (acronym) : "";
24224 else
24226 xassert (it->glyphless_method == GLYPHLESS_DISPLAY_HEX_CODE);
24227 sprintf (buf, "%0*X", it->c < 0x10000 ? 4 : 6, it->c);
24228 str = buf;
24230 for (len = 0; str[len] && ASCII_BYTE_P (str[len]) && len < 6; len++)
24231 code[len] = font->driver->encode_char (font, str[len]);
24232 upper_len = (len + 1) / 2;
24233 font->driver->text_extents (font, code, upper_len,
24234 &metrics_upper);
24235 font->driver->text_extents (font, code + upper_len, len - upper_len,
24236 &metrics_lower);
24240 /* +4 is for vertical bars of a box plus 1-pixel spaces at both side. */
24241 width = max (metrics_upper.width, metrics_lower.width) + 4;
24242 upper_xoff = upper_yoff = 2; /* the typical case */
24243 if (base_width >= width)
24245 /* Align the upper to the left, the lower to the right. */
24246 it->pixel_width = base_width;
24247 lower_xoff = base_width - 2 - metrics_lower.width;
24249 else
24251 /* Center the shorter one. */
24252 it->pixel_width = width;
24253 if (metrics_upper.width >= metrics_lower.width)
24254 lower_xoff = (width - metrics_lower.width) / 2;
24255 else
24257 /* FIXME: This code doesn't look right. It formerly was
24258 missing the "lower_xoff = 0;", which couldn't have
24259 been right since it left lower_xoff uninitialized. */
24260 lower_xoff = 0;
24261 upper_xoff = (width - metrics_upper.width) / 2;
24265 /* +5 is for horizontal bars of a box plus 1-pixel spaces at
24266 top, bottom, and between upper and lower strings. */
24267 height = (metrics_upper.ascent + metrics_upper.descent
24268 + metrics_lower.ascent + metrics_lower.descent) + 5;
24269 /* Center vertically.
24270 H:base_height, D:base_descent
24271 h:height, ld:lower_descent, la:lower_ascent, ud:upper_descent
24273 ascent = - (D - H/2 - h/2 + 1); "+ 1" for rounding up
24274 descent = D - H/2 + h/2;
24275 lower_yoff = descent - 2 - ld;
24276 upper_yoff = lower_yoff - la - 1 - ud; */
24277 ascent = - (it->descent - (base_height + height + 1) / 2);
24278 descent = it->descent - (base_height - height) / 2;
24279 lower_yoff = descent - 2 - metrics_lower.descent;
24280 upper_yoff = (lower_yoff - metrics_lower.ascent - 1
24281 - metrics_upper.descent);
24282 /* Don't make the height shorter than the base height. */
24283 if (height > base_height)
24285 it->ascent = ascent;
24286 it->descent = descent;
24290 it->phys_ascent = it->ascent;
24291 it->phys_descent = it->descent;
24292 if (it->glyph_row)
24293 append_glyphless_glyph (it, face_id, for_no_font, len,
24294 upper_xoff, upper_yoff,
24295 lower_xoff, lower_yoff);
24296 it->nglyphs = 1;
24297 take_vertical_position_into_account (it);
24301 /* RIF:
24302 Produce glyphs/get display metrics for the display element IT is
24303 loaded with. See the description of struct it in dispextern.h
24304 for an overview of struct it. */
24306 void
24307 x_produce_glyphs (struct it *it)
24309 int extra_line_spacing = it->extra_line_spacing;
24311 it->glyph_not_available_p = 0;
24313 if (it->what == IT_CHARACTER)
24315 XChar2b char2b;
24316 struct face *face = FACE_FROM_ID (it->f, it->face_id);
24317 struct font *font = face->font;
24318 struct font_metrics *pcm = NULL;
24319 int boff; /* baseline offset */
24321 if (font == NULL)
24323 /* When no suitable font is found, display this character by
24324 the method specified in the first extra slot of
24325 Vglyphless_char_display. */
24326 Lisp_Object acronym = lookup_glyphless_char_display (-1, it);
24328 xassert (it->what == IT_GLYPHLESS);
24329 produce_glyphless_glyph (it, 1, STRINGP (acronym) ? acronym : Qnil);
24330 goto done;
24333 boff = font->baseline_offset;
24334 if (font->vertical_centering)
24335 boff = VCENTER_BASELINE_OFFSET (font, it->f) - boff;
24337 if (it->char_to_display != '\n' && it->char_to_display != '\t')
24339 int stretched_p;
24341 it->nglyphs = 1;
24343 if (it->override_ascent >= 0)
24345 it->ascent = it->override_ascent;
24346 it->descent = it->override_descent;
24347 boff = it->override_boff;
24349 else
24351 it->ascent = FONT_BASE (font) + boff;
24352 it->descent = FONT_DESCENT (font) - boff;
24355 if (get_char_glyph_code (it->char_to_display, font, &char2b))
24357 pcm = get_per_char_metric (font, &char2b);
24358 if (pcm->width == 0
24359 && pcm->rbearing == 0 && pcm->lbearing == 0)
24360 pcm = NULL;
24363 if (pcm)
24365 it->phys_ascent = pcm->ascent + boff;
24366 it->phys_descent = pcm->descent - boff;
24367 it->pixel_width = pcm->width;
24369 else
24371 it->glyph_not_available_p = 1;
24372 it->phys_ascent = it->ascent;
24373 it->phys_descent = it->descent;
24374 it->pixel_width = font->space_width;
24377 if (it->constrain_row_ascent_descent_p)
24379 if (it->descent > it->max_descent)
24381 it->ascent += it->descent - it->max_descent;
24382 it->descent = it->max_descent;
24384 if (it->ascent > it->max_ascent)
24386 it->descent = min (it->max_descent, it->descent + it->ascent - it->max_ascent);
24387 it->ascent = it->max_ascent;
24389 it->phys_ascent = min (it->phys_ascent, it->ascent);
24390 it->phys_descent = min (it->phys_descent, it->descent);
24391 extra_line_spacing = 0;
24394 /* If this is a space inside a region of text with
24395 `space-width' property, change its width. */
24396 stretched_p = it->char_to_display == ' ' && !NILP (it->space_width);
24397 if (stretched_p)
24398 it->pixel_width *= XFLOATINT (it->space_width);
24400 /* If face has a box, add the box thickness to the character
24401 height. If character has a box line to the left and/or
24402 right, add the box line width to the character's width. */
24403 if (face->box != FACE_NO_BOX)
24405 int thick = face->box_line_width;
24407 if (thick > 0)
24409 it->ascent += thick;
24410 it->descent += thick;
24412 else
24413 thick = -thick;
24415 if (it->start_of_box_run_p)
24416 it->pixel_width += thick;
24417 if (it->end_of_box_run_p)
24418 it->pixel_width += thick;
24421 /* If face has an overline, add the height of the overline
24422 (1 pixel) and a 1 pixel margin to the character height. */
24423 if (face->overline_p)
24424 it->ascent += overline_margin;
24426 if (it->constrain_row_ascent_descent_p)
24428 if (it->ascent > it->max_ascent)
24429 it->ascent = it->max_ascent;
24430 if (it->descent > it->max_descent)
24431 it->descent = it->max_descent;
24434 take_vertical_position_into_account (it);
24436 /* If we have to actually produce glyphs, do it. */
24437 if (it->glyph_row)
24439 if (stretched_p)
24441 /* Translate a space with a `space-width' property
24442 into a stretch glyph. */
24443 int ascent = (((it->ascent + it->descent) * FONT_BASE (font))
24444 / FONT_HEIGHT (font));
24445 append_stretch_glyph (it, it->object, it->pixel_width,
24446 it->ascent + it->descent, ascent);
24448 else
24449 append_glyph (it);
24451 /* If characters with lbearing or rbearing are displayed
24452 in this line, record that fact in a flag of the
24453 glyph row. This is used to optimize X output code. */
24454 if (pcm && (pcm->lbearing < 0 || pcm->rbearing > pcm->width))
24455 it->glyph_row->contains_overlapping_glyphs_p = 1;
24457 if (! stretched_p && it->pixel_width == 0)
24458 /* We assure that all visible glyphs have at least 1-pixel
24459 width. */
24460 it->pixel_width = 1;
24462 else if (it->char_to_display == '\n')
24464 /* A newline has no width, but we need the height of the
24465 line. But if previous part of the line sets a height,
24466 don't increase that height */
24468 Lisp_Object height;
24469 Lisp_Object total_height = Qnil;
24471 it->override_ascent = -1;
24472 it->pixel_width = 0;
24473 it->nglyphs = 0;
24475 height = get_it_property (it, Qline_height);
24476 /* Split (line-height total-height) list */
24477 if (CONSP (height)
24478 && CONSP (XCDR (height))
24479 && NILP (XCDR (XCDR (height))))
24481 total_height = XCAR (XCDR (height));
24482 height = XCAR (height);
24484 height = calc_line_height_property (it, height, font, boff, 1);
24486 if (it->override_ascent >= 0)
24488 it->ascent = it->override_ascent;
24489 it->descent = it->override_descent;
24490 boff = it->override_boff;
24492 else
24494 it->ascent = FONT_BASE (font) + boff;
24495 it->descent = FONT_DESCENT (font) - boff;
24498 if (EQ (height, Qt))
24500 if (it->descent > it->max_descent)
24502 it->ascent += it->descent - it->max_descent;
24503 it->descent = it->max_descent;
24505 if (it->ascent > it->max_ascent)
24507 it->descent = min (it->max_descent, it->descent + it->ascent - it->max_ascent);
24508 it->ascent = it->max_ascent;
24510 it->phys_ascent = min (it->phys_ascent, it->ascent);
24511 it->phys_descent = min (it->phys_descent, it->descent);
24512 it->constrain_row_ascent_descent_p = 1;
24513 extra_line_spacing = 0;
24515 else
24517 Lisp_Object spacing;
24519 it->phys_ascent = it->ascent;
24520 it->phys_descent = it->descent;
24522 if ((it->max_ascent > 0 || it->max_descent > 0)
24523 && face->box != FACE_NO_BOX
24524 && face->box_line_width > 0)
24526 it->ascent += face->box_line_width;
24527 it->descent += face->box_line_width;
24529 if (!NILP (height)
24530 && XINT (height) > it->ascent + it->descent)
24531 it->ascent = XINT (height) - it->descent;
24533 if (!NILP (total_height))
24534 spacing = calc_line_height_property (it, total_height, font, boff, 0);
24535 else
24537 spacing = get_it_property (it, Qline_spacing);
24538 spacing = calc_line_height_property (it, spacing, font, boff, 0);
24540 if (INTEGERP (spacing))
24542 extra_line_spacing = XINT (spacing);
24543 if (!NILP (total_height))
24544 extra_line_spacing -= (it->phys_ascent + it->phys_descent);
24548 else /* i.e. (it->char_to_display == '\t') */
24550 if (font->space_width > 0)
24552 int tab_width = it->tab_width * font->space_width;
24553 int x = it->current_x + it->continuation_lines_width;
24554 int next_tab_x = ((1 + x + tab_width - 1) / tab_width) * tab_width;
24556 /* If the distance from the current position to the next tab
24557 stop is less than a space character width, use the
24558 tab stop after that. */
24559 if (next_tab_x - x < font->space_width)
24560 next_tab_x += tab_width;
24562 it->pixel_width = next_tab_x - x;
24563 it->nglyphs = 1;
24564 it->ascent = it->phys_ascent = FONT_BASE (font) + boff;
24565 it->descent = it->phys_descent = FONT_DESCENT (font) - boff;
24567 if (it->glyph_row)
24569 append_stretch_glyph (it, it->object, it->pixel_width,
24570 it->ascent + it->descent, it->ascent);
24573 else
24575 it->pixel_width = 0;
24576 it->nglyphs = 1;
24580 else if (it->what == IT_COMPOSITION && it->cmp_it.ch < 0)
24582 /* A static composition.
24584 Note: A composition is represented as one glyph in the
24585 glyph matrix. There are no padding glyphs.
24587 Important note: pixel_width, ascent, and descent are the
24588 values of what is drawn by draw_glyphs (i.e. the values of
24589 the overall glyphs composed). */
24590 struct face *face = FACE_FROM_ID (it->f, it->face_id);
24591 int boff; /* baseline offset */
24592 struct composition *cmp = composition_table[it->cmp_it.id];
24593 int glyph_len = cmp->glyph_len;
24594 struct font *font = face->font;
24596 it->nglyphs = 1;
24598 /* If we have not yet calculated pixel size data of glyphs of
24599 the composition for the current face font, calculate them
24600 now. Theoretically, we have to check all fonts for the
24601 glyphs, but that requires much time and memory space. So,
24602 here we check only the font of the first glyph. This may
24603 lead to incorrect display, but it's very rare, and C-l
24604 (recenter-top-bottom) can correct the display anyway. */
24605 if (! cmp->font || cmp->font != font)
24607 /* Ascent and descent of the font of the first character
24608 of this composition (adjusted by baseline offset).
24609 Ascent and descent of overall glyphs should not be less
24610 than these, respectively. */
24611 int font_ascent, font_descent, font_height;
24612 /* Bounding box of the overall glyphs. */
24613 int leftmost, rightmost, lowest, highest;
24614 int lbearing, rbearing;
24615 int i, width, ascent, descent;
24616 int left_padded = 0, right_padded = 0;
24617 int c IF_LINT (= 0); /* cmp->glyph_len can't be zero; see Bug#8512 */
24618 XChar2b char2b;
24619 struct font_metrics *pcm;
24620 int font_not_found_p;
24621 ptrdiff_t pos;
24623 for (glyph_len = cmp->glyph_len; glyph_len > 0; glyph_len--)
24624 if ((c = COMPOSITION_GLYPH (cmp, glyph_len - 1)) != '\t')
24625 break;
24626 if (glyph_len < cmp->glyph_len)
24627 right_padded = 1;
24628 for (i = 0; i < glyph_len; i++)
24630 if ((c = COMPOSITION_GLYPH (cmp, i)) != '\t')
24631 break;
24632 cmp->offsets[i * 2] = cmp->offsets[i * 2 + 1] = 0;
24634 if (i > 0)
24635 left_padded = 1;
24637 pos = (STRINGP (it->string) ? IT_STRING_CHARPOS (*it)
24638 : IT_CHARPOS (*it));
24639 /* If no suitable font is found, use the default font. */
24640 font_not_found_p = font == NULL;
24641 if (font_not_found_p)
24643 face = face->ascii_face;
24644 font = face->font;
24646 boff = font->baseline_offset;
24647 if (font->vertical_centering)
24648 boff = VCENTER_BASELINE_OFFSET (font, it->f) - boff;
24649 font_ascent = FONT_BASE (font) + boff;
24650 font_descent = FONT_DESCENT (font) - boff;
24651 font_height = FONT_HEIGHT (font);
24653 cmp->font = (void *) font;
24655 pcm = NULL;
24656 if (! font_not_found_p)
24658 get_char_face_and_encoding (it->f, c, it->face_id,
24659 &char2b, 0);
24660 pcm = get_per_char_metric (font, &char2b);
24663 /* Initialize the bounding box. */
24664 if (pcm)
24666 width = cmp->glyph_len > 0 ? pcm->width : 0;
24667 ascent = pcm->ascent;
24668 descent = pcm->descent;
24669 lbearing = pcm->lbearing;
24670 rbearing = pcm->rbearing;
24672 else
24674 width = cmp->glyph_len > 0 ? font->space_width : 0;
24675 ascent = FONT_BASE (font);
24676 descent = FONT_DESCENT (font);
24677 lbearing = 0;
24678 rbearing = width;
24681 rightmost = width;
24682 leftmost = 0;
24683 lowest = - descent + boff;
24684 highest = ascent + boff;
24686 if (! font_not_found_p
24687 && font->default_ascent
24688 && CHAR_TABLE_P (Vuse_default_ascent)
24689 && !NILP (Faref (Vuse_default_ascent,
24690 make_number (it->char_to_display))))
24691 highest = font->default_ascent + boff;
24693 /* Draw the first glyph at the normal position. It may be
24694 shifted to right later if some other glyphs are drawn
24695 at the left. */
24696 cmp->offsets[i * 2] = 0;
24697 cmp->offsets[i * 2 + 1] = boff;
24698 cmp->lbearing = lbearing;
24699 cmp->rbearing = rbearing;
24701 /* Set cmp->offsets for the remaining glyphs. */
24702 for (i++; i < glyph_len; i++)
24704 int left, right, btm, top;
24705 int ch = COMPOSITION_GLYPH (cmp, i);
24706 int face_id;
24707 struct face *this_face;
24709 if (ch == '\t')
24710 ch = ' ';
24711 face_id = FACE_FOR_CHAR (it->f, face, ch, pos, it->string);
24712 this_face = FACE_FROM_ID (it->f, face_id);
24713 font = this_face->font;
24715 if (font == NULL)
24716 pcm = NULL;
24717 else
24719 get_char_face_and_encoding (it->f, ch, face_id,
24720 &char2b, 0);
24721 pcm = get_per_char_metric (font, &char2b);
24723 if (! pcm)
24724 cmp->offsets[i * 2] = cmp->offsets[i * 2 + 1] = 0;
24725 else
24727 width = pcm->width;
24728 ascent = pcm->ascent;
24729 descent = pcm->descent;
24730 lbearing = pcm->lbearing;
24731 rbearing = pcm->rbearing;
24732 if (cmp->method != COMPOSITION_WITH_RULE_ALTCHARS)
24734 /* Relative composition with or without
24735 alternate chars. */
24736 left = (leftmost + rightmost - width) / 2;
24737 btm = - descent + boff;
24738 if (font->relative_compose
24739 && (! CHAR_TABLE_P (Vignore_relative_composition)
24740 || NILP (Faref (Vignore_relative_composition,
24741 make_number (ch)))))
24744 if (- descent >= font->relative_compose)
24745 /* One extra pixel between two glyphs. */
24746 btm = highest + 1;
24747 else if (ascent <= 0)
24748 /* One extra pixel between two glyphs. */
24749 btm = lowest - 1 - ascent - descent;
24752 else
24754 /* A composition rule is specified by an integer
24755 value that encodes global and new reference
24756 points (GREF and NREF). GREF and NREF are
24757 specified by numbers as below:
24759 0---1---2 -- ascent
24763 9--10--11 -- center
24765 ---3---4---5--- baseline
24767 6---7---8 -- descent
24769 int rule = COMPOSITION_RULE (cmp, i);
24770 int gref, nref, grefx, grefy, nrefx, nrefy, xoff, yoff;
24772 COMPOSITION_DECODE_RULE (rule, gref, nref, xoff, yoff);
24773 grefx = gref % 3, nrefx = nref % 3;
24774 grefy = gref / 3, nrefy = nref / 3;
24775 if (xoff)
24776 xoff = font_height * (xoff - 128) / 256;
24777 if (yoff)
24778 yoff = font_height * (yoff - 128) / 256;
24780 left = (leftmost
24781 + grefx * (rightmost - leftmost) / 2
24782 - nrefx * width / 2
24783 + xoff);
24785 btm = ((grefy == 0 ? highest
24786 : grefy == 1 ? 0
24787 : grefy == 2 ? lowest
24788 : (highest + lowest) / 2)
24789 - (nrefy == 0 ? ascent + descent
24790 : nrefy == 1 ? descent - boff
24791 : nrefy == 2 ? 0
24792 : (ascent + descent) / 2)
24793 + yoff);
24796 cmp->offsets[i * 2] = left;
24797 cmp->offsets[i * 2 + 1] = btm + descent;
24799 /* Update the bounding box of the overall glyphs. */
24800 if (width > 0)
24802 right = left + width;
24803 if (left < leftmost)
24804 leftmost = left;
24805 if (right > rightmost)
24806 rightmost = right;
24808 top = btm + descent + ascent;
24809 if (top > highest)
24810 highest = top;
24811 if (btm < lowest)
24812 lowest = btm;
24814 if (cmp->lbearing > left + lbearing)
24815 cmp->lbearing = left + lbearing;
24816 if (cmp->rbearing < left + rbearing)
24817 cmp->rbearing = left + rbearing;
24821 /* If there are glyphs whose x-offsets are negative,
24822 shift all glyphs to the right and make all x-offsets
24823 non-negative. */
24824 if (leftmost < 0)
24826 for (i = 0; i < cmp->glyph_len; i++)
24827 cmp->offsets[i * 2] -= leftmost;
24828 rightmost -= leftmost;
24829 cmp->lbearing -= leftmost;
24830 cmp->rbearing -= leftmost;
24833 if (left_padded && cmp->lbearing < 0)
24835 for (i = 0; i < cmp->glyph_len; i++)
24836 cmp->offsets[i * 2] -= cmp->lbearing;
24837 rightmost -= cmp->lbearing;
24838 cmp->rbearing -= cmp->lbearing;
24839 cmp->lbearing = 0;
24841 if (right_padded && rightmost < cmp->rbearing)
24843 rightmost = cmp->rbearing;
24846 cmp->pixel_width = rightmost;
24847 cmp->ascent = highest;
24848 cmp->descent = - lowest;
24849 if (cmp->ascent < font_ascent)
24850 cmp->ascent = font_ascent;
24851 if (cmp->descent < font_descent)
24852 cmp->descent = font_descent;
24855 if (it->glyph_row
24856 && (cmp->lbearing < 0
24857 || cmp->rbearing > cmp->pixel_width))
24858 it->glyph_row->contains_overlapping_glyphs_p = 1;
24860 it->pixel_width = cmp->pixel_width;
24861 it->ascent = it->phys_ascent = cmp->ascent;
24862 it->descent = it->phys_descent = cmp->descent;
24863 if (face->box != FACE_NO_BOX)
24865 int thick = face->box_line_width;
24867 if (thick > 0)
24869 it->ascent += thick;
24870 it->descent += thick;
24872 else
24873 thick = - thick;
24875 if (it->start_of_box_run_p)
24876 it->pixel_width += thick;
24877 if (it->end_of_box_run_p)
24878 it->pixel_width += thick;
24881 /* If face has an overline, add the height of the overline
24882 (1 pixel) and a 1 pixel margin to the character height. */
24883 if (face->overline_p)
24884 it->ascent += overline_margin;
24886 take_vertical_position_into_account (it);
24887 if (it->ascent < 0)
24888 it->ascent = 0;
24889 if (it->descent < 0)
24890 it->descent = 0;
24892 if (it->glyph_row && cmp->glyph_len > 0)
24893 append_composite_glyph (it);
24895 else if (it->what == IT_COMPOSITION)
24897 /* A dynamic (automatic) composition. */
24898 struct face *face = FACE_FROM_ID (it->f, it->face_id);
24899 Lisp_Object gstring;
24900 struct font_metrics metrics;
24902 it->nglyphs = 1;
24904 gstring = composition_gstring_from_id (it->cmp_it.id);
24905 it->pixel_width
24906 = composition_gstring_width (gstring, it->cmp_it.from, it->cmp_it.to,
24907 &metrics);
24908 if (it->glyph_row
24909 && (metrics.lbearing < 0 || metrics.rbearing > metrics.width))
24910 it->glyph_row->contains_overlapping_glyphs_p = 1;
24911 it->ascent = it->phys_ascent = metrics.ascent;
24912 it->descent = it->phys_descent = metrics.descent;
24913 if (face->box != FACE_NO_BOX)
24915 int thick = face->box_line_width;
24917 if (thick > 0)
24919 it->ascent += thick;
24920 it->descent += thick;
24922 else
24923 thick = - thick;
24925 if (it->start_of_box_run_p)
24926 it->pixel_width += thick;
24927 if (it->end_of_box_run_p)
24928 it->pixel_width += thick;
24930 /* If face has an overline, add the height of the overline
24931 (1 pixel) and a 1 pixel margin to the character height. */
24932 if (face->overline_p)
24933 it->ascent += overline_margin;
24934 take_vertical_position_into_account (it);
24935 if (it->ascent < 0)
24936 it->ascent = 0;
24937 if (it->descent < 0)
24938 it->descent = 0;
24940 if (it->glyph_row)
24941 append_composite_glyph (it);
24943 else if (it->what == IT_GLYPHLESS)
24944 produce_glyphless_glyph (it, 0, Qnil);
24945 else if (it->what == IT_IMAGE)
24946 produce_image_glyph (it);
24947 else if (it->what == IT_STRETCH)
24948 produce_stretch_glyph (it);
24950 done:
24951 /* Accumulate dimensions. Note: can't assume that it->descent > 0
24952 because this isn't true for images with `:ascent 100'. */
24953 xassert (it->ascent >= 0 && it->descent >= 0);
24954 if (it->area == TEXT_AREA)
24955 it->current_x += it->pixel_width;
24957 if (extra_line_spacing > 0)
24959 it->descent += extra_line_spacing;
24960 if (extra_line_spacing > it->max_extra_line_spacing)
24961 it->max_extra_line_spacing = extra_line_spacing;
24964 it->max_ascent = max (it->max_ascent, it->ascent);
24965 it->max_descent = max (it->max_descent, it->descent);
24966 it->max_phys_ascent = max (it->max_phys_ascent, it->phys_ascent);
24967 it->max_phys_descent = max (it->max_phys_descent, it->phys_descent);
24970 /* EXPORT for RIF:
24971 Output LEN glyphs starting at START at the nominal cursor position.
24972 Advance the nominal cursor over the text. The global variable
24973 updated_window contains the window being updated, updated_row is
24974 the glyph row being updated, and updated_area is the area of that
24975 row being updated. */
24977 void
24978 x_write_glyphs (struct glyph *start, int len)
24980 int x, hpos, chpos = updated_window->phys_cursor.hpos;
24982 xassert (updated_window && updated_row);
24983 /* When the window is hscrolled, cursor hpos can legitimately be out
24984 of bounds, but we draw the cursor at the corresponding window
24985 margin in that case. */
24986 if (!updated_row->reversed_p && chpos < 0)
24987 chpos = 0;
24988 if (updated_row->reversed_p && chpos >= updated_row->used[TEXT_AREA])
24989 chpos = updated_row->used[TEXT_AREA] - 1;
24991 BLOCK_INPUT;
24993 /* Write glyphs. */
24995 hpos = start - updated_row->glyphs[updated_area];
24996 x = draw_glyphs (updated_window, output_cursor.x,
24997 updated_row, updated_area,
24998 hpos, hpos + len,
24999 DRAW_NORMAL_TEXT, 0);
25001 /* Invalidate old phys cursor if the glyph at its hpos is redrawn. */
25002 if (updated_area == TEXT_AREA
25003 && updated_window->phys_cursor_on_p
25004 && updated_window->phys_cursor.vpos == output_cursor.vpos
25005 && chpos >= hpos
25006 && chpos < hpos + len)
25007 updated_window->phys_cursor_on_p = 0;
25009 UNBLOCK_INPUT;
25011 /* Advance the output cursor. */
25012 output_cursor.hpos += len;
25013 output_cursor.x = x;
25017 /* EXPORT for RIF:
25018 Insert LEN glyphs from START at the nominal cursor position. */
25020 void
25021 x_insert_glyphs (struct glyph *start, int len)
25023 struct frame *f;
25024 struct window *w;
25025 int line_height, shift_by_width, shifted_region_width;
25026 struct glyph_row *row;
25027 struct glyph *glyph;
25028 int frame_x, frame_y;
25029 ptrdiff_t hpos;
25031 xassert (updated_window && updated_row);
25032 BLOCK_INPUT;
25033 w = updated_window;
25034 f = XFRAME (WINDOW_FRAME (w));
25036 /* Get the height of the line we are in. */
25037 row = updated_row;
25038 line_height = row->height;
25040 /* Get the width of the glyphs to insert. */
25041 shift_by_width = 0;
25042 for (glyph = start; glyph < start + len; ++glyph)
25043 shift_by_width += glyph->pixel_width;
25045 /* Get the width of the region to shift right. */
25046 shifted_region_width = (window_box_width (w, updated_area)
25047 - output_cursor.x
25048 - shift_by_width);
25050 /* Shift right. */
25051 frame_x = window_box_left (w, updated_area) + output_cursor.x;
25052 frame_y = WINDOW_TO_FRAME_PIXEL_Y (w, output_cursor.y);
25054 FRAME_RIF (f)->shift_glyphs_for_insert (f, frame_x, frame_y, shifted_region_width,
25055 line_height, shift_by_width);
25057 /* Write the glyphs. */
25058 hpos = start - row->glyphs[updated_area];
25059 draw_glyphs (w, output_cursor.x, row, updated_area,
25060 hpos, hpos + len,
25061 DRAW_NORMAL_TEXT, 0);
25063 /* Advance the output cursor. */
25064 output_cursor.hpos += len;
25065 output_cursor.x += shift_by_width;
25066 UNBLOCK_INPUT;
25070 /* EXPORT for RIF:
25071 Erase the current text line from the nominal cursor position
25072 (inclusive) to pixel column TO_X (exclusive). The idea is that
25073 everything from TO_X onward is already erased.
25075 TO_X is a pixel position relative to updated_area of
25076 updated_window. TO_X == -1 means clear to the end of this area. */
25078 void
25079 x_clear_end_of_line (int to_x)
25081 struct frame *f;
25082 struct window *w = updated_window;
25083 int max_x, min_y, max_y;
25084 int from_x, from_y, to_y;
25086 xassert (updated_window && updated_row);
25087 f = XFRAME (w->frame);
25089 if (updated_row->full_width_p)
25090 max_x = WINDOW_TOTAL_WIDTH (w);
25091 else
25092 max_x = window_box_width (w, updated_area);
25093 max_y = window_text_bottom_y (w);
25095 /* TO_X == 0 means don't do anything. TO_X < 0 means clear to end
25096 of window. For TO_X > 0, truncate to end of drawing area. */
25097 if (to_x == 0)
25098 return;
25099 else if (to_x < 0)
25100 to_x = max_x;
25101 else
25102 to_x = min (to_x, max_x);
25104 to_y = min (max_y, output_cursor.y + updated_row->height);
25106 /* Notice if the cursor will be cleared by this operation. */
25107 if (!updated_row->full_width_p)
25108 notice_overwritten_cursor (w, updated_area,
25109 output_cursor.x, -1,
25110 updated_row->y,
25111 MATRIX_ROW_BOTTOM_Y (updated_row));
25113 from_x = output_cursor.x;
25115 /* Translate to frame coordinates. */
25116 if (updated_row->full_width_p)
25118 from_x = WINDOW_TO_FRAME_PIXEL_X (w, from_x);
25119 to_x = WINDOW_TO_FRAME_PIXEL_X (w, to_x);
25121 else
25123 int area_left = window_box_left (w, updated_area);
25124 from_x += area_left;
25125 to_x += area_left;
25128 min_y = WINDOW_HEADER_LINE_HEIGHT (w);
25129 from_y = WINDOW_TO_FRAME_PIXEL_Y (w, max (min_y, output_cursor.y));
25130 to_y = WINDOW_TO_FRAME_PIXEL_Y (w, to_y);
25132 /* Prevent inadvertently clearing to end of the X window. */
25133 if (to_x > from_x && to_y > from_y)
25135 BLOCK_INPUT;
25136 FRAME_RIF (f)->clear_frame_area (f, from_x, from_y,
25137 to_x - from_x, to_y - from_y);
25138 UNBLOCK_INPUT;
25142 #endif /* HAVE_WINDOW_SYSTEM */
25146 /***********************************************************************
25147 Cursor types
25148 ***********************************************************************/
25150 /* Value is the internal representation of the specified cursor type
25151 ARG. If type is BAR_CURSOR, return in *WIDTH the specified width
25152 of the bar cursor. */
25154 static enum text_cursor_kinds
25155 get_specified_cursor_type (Lisp_Object arg, int *width)
25157 enum text_cursor_kinds type;
25159 if (NILP (arg))
25160 return NO_CURSOR;
25162 if (EQ (arg, Qbox))
25163 return FILLED_BOX_CURSOR;
25165 if (EQ (arg, Qhollow))
25166 return HOLLOW_BOX_CURSOR;
25168 if (EQ (arg, Qbar))
25170 *width = 2;
25171 return BAR_CURSOR;
25174 if (CONSP (arg)
25175 && EQ (XCAR (arg), Qbar)
25176 && RANGED_INTEGERP (0, XCDR (arg), INT_MAX))
25178 *width = XINT (XCDR (arg));
25179 return BAR_CURSOR;
25182 if (EQ (arg, Qhbar))
25184 *width = 2;
25185 return HBAR_CURSOR;
25188 if (CONSP (arg)
25189 && EQ (XCAR (arg), Qhbar)
25190 && RANGED_INTEGERP (0, XCDR (arg), INT_MAX))
25192 *width = XINT (XCDR (arg));
25193 return HBAR_CURSOR;
25196 /* Treat anything unknown as "hollow box cursor".
25197 It was bad to signal an error; people have trouble fixing
25198 .Xdefaults with Emacs, when it has something bad in it. */
25199 type = HOLLOW_BOX_CURSOR;
25201 return type;
25204 /* Set the default cursor types for specified frame. */
25205 void
25206 set_frame_cursor_types (struct frame *f, Lisp_Object arg)
25208 int width = 1;
25209 Lisp_Object tem;
25211 FRAME_DESIRED_CURSOR (f) = get_specified_cursor_type (arg, &width);
25212 FRAME_CURSOR_WIDTH (f) = width;
25214 /* By default, set up the blink-off state depending on the on-state. */
25216 tem = Fassoc (arg, Vblink_cursor_alist);
25217 if (!NILP (tem))
25219 FRAME_BLINK_OFF_CURSOR (f)
25220 = get_specified_cursor_type (XCDR (tem), &width);
25221 FRAME_BLINK_OFF_CURSOR_WIDTH (f) = width;
25223 else
25224 FRAME_BLINK_OFF_CURSOR (f) = DEFAULT_CURSOR;
25228 #ifdef HAVE_WINDOW_SYSTEM
25230 /* Return the cursor we want to be displayed in window W. Return
25231 width of bar/hbar cursor through WIDTH arg. Return with
25232 ACTIVE_CURSOR arg set to 1 if cursor in window W is `active'
25233 (i.e. if the `system caret' should track this cursor).
25235 In a mini-buffer window, we want the cursor only to appear if we
25236 are reading input from this window. For the selected window, we
25237 want the cursor type given by the frame parameter or buffer local
25238 setting of cursor-type. If explicitly marked off, draw no cursor.
25239 In all other cases, we want a hollow box cursor. */
25241 static enum text_cursor_kinds
25242 get_window_cursor_type (struct window *w, struct glyph *glyph, int *width,
25243 int *active_cursor)
25245 struct frame *f = XFRAME (w->frame);
25246 struct buffer *b = XBUFFER (w->buffer);
25247 int cursor_type = DEFAULT_CURSOR;
25248 Lisp_Object alt_cursor;
25249 int non_selected = 0;
25251 *active_cursor = 1;
25253 /* Echo area */
25254 if (cursor_in_echo_area
25255 && FRAME_HAS_MINIBUF_P (f)
25256 && EQ (FRAME_MINIBUF_WINDOW (f), echo_area_window))
25258 if (w == XWINDOW (echo_area_window))
25260 if (EQ (BVAR (b, cursor_type), Qt) || NILP (BVAR (b, cursor_type)))
25262 *width = FRAME_CURSOR_WIDTH (f);
25263 return FRAME_DESIRED_CURSOR (f);
25265 else
25266 return get_specified_cursor_type (BVAR (b, cursor_type), width);
25269 *active_cursor = 0;
25270 non_selected = 1;
25273 /* Detect a nonselected window or nonselected frame. */
25274 else if (w != XWINDOW (f->selected_window)
25275 || f != FRAME_X_DISPLAY_INFO (f)->x_highlight_frame)
25277 *active_cursor = 0;
25279 if (MINI_WINDOW_P (w) && minibuf_level == 0)
25280 return NO_CURSOR;
25282 non_selected = 1;
25285 /* Never display a cursor in a window in which cursor-type is nil. */
25286 if (NILP (BVAR (b, cursor_type)))
25287 return NO_CURSOR;
25289 /* Get the normal cursor type for this window. */
25290 if (EQ (BVAR (b, cursor_type), Qt))
25292 cursor_type = FRAME_DESIRED_CURSOR (f);
25293 *width = FRAME_CURSOR_WIDTH (f);
25295 else
25296 cursor_type = get_specified_cursor_type (BVAR (b, cursor_type), width);
25298 /* Use cursor-in-non-selected-windows instead
25299 for non-selected window or frame. */
25300 if (non_selected)
25302 alt_cursor = BVAR (b, cursor_in_non_selected_windows);
25303 if (!EQ (Qt, alt_cursor))
25304 return get_specified_cursor_type (alt_cursor, width);
25305 /* t means modify the normal cursor type. */
25306 if (cursor_type == FILLED_BOX_CURSOR)
25307 cursor_type = HOLLOW_BOX_CURSOR;
25308 else if (cursor_type == BAR_CURSOR && *width > 1)
25309 --*width;
25310 return cursor_type;
25313 /* Use normal cursor if not blinked off. */
25314 if (!w->cursor_off_p)
25316 if (glyph != NULL && glyph->type == IMAGE_GLYPH)
25318 if (cursor_type == FILLED_BOX_CURSOR)
25320 /* Using a block cursor on large images can be very annoying.
25321 So use a hollow cursor for "large" images.
25322 If image is not transparent (no mask), also use hollow cursor. */
25323 struct image *img = IMAGE_FROM_ID (f, glyph->u.img_id);
25324 if (img != NULL && IMAGEP (img->spec))
25326 /* Arbitrarily, interpret "Large" as >32x32 and >NxN
25327 where N = size of default frame font size.
25328 This should cover most of the "tiny" icons people may use. */
25329 if (!img->mask
25330 || img->width > max (32, WINDOW_FRAME_COLUMN_WIDTH (w))
25331 || img->height > max (32, WINDOW_FRAME_LINE_HEIGHT (w)))
25332 cursor_type = HOLLOW_BOX_CURSOR;
25335 else if (cursor_type != NO_CURSOR)
25337 /* Display current only supports BOX and HOLLOW cursors for images.
25338 So for now, unconditionally use a HOLLOW cursor when cursor is
25339 not a solid box cursor. */
25340 cursor_type = HOLLOW_BOX_CURSOR;
25343 return cursor_type;
25346 /* Cursor is blinked off, so determine how to "toggle" it. */
25348 /* First look for an entry matching the buffer's cursor-type in blink-cursor-alist. */
25349 if ((alt_cursor = Fassoc (BVAR (b, cursor_type), Vblink_cursor_alist), !NILP (alt_cursor)))
25350 return get_specified_cursor_type (XCDR (alt_cursor), width);
25352 /* Then see if frame has specified a specific blink off cursor type. */
25353 if (FRAME_BLINK_OFF_CURSOR (f) != DEFAULT_CURSOR)
25355 *width = FRAME_BLINK_OFF_CURSOR_WIDTH (f);
25356 return FRAME_BLINK_OFF_CURSOR (f);
25359 #if 0
25360 /* Some people liked having a permanently visible blinking cursor,
25361 while others had very strong opinions against it. So it was
25362 decided to remove it. KFS 2003-09-03 */
25364 /* Finally perform built-in cursor blinking:
25365 filled box <-> hollow box
25366 wide [h]bar <-> narrow [h]bar
25367 narrow [h]bar <-> no cursor
25368 other type <-> no cursor */
25370 if (cursor_type == FILLED_BOX_CURSOR)
25371 return HOLLOW_BOX_CURSOR;
25373 if ((cursor_type == BAR_CURSOR || cursor_type == HBAR_CURSOR) && *width > 1)
25375 *width = 1;
25376 return cursor_type;
25378 #endif
25380 return NO_CURSOR;
25384 /* Notice when the text cursor of window W has been completely
25385 overwritten by a drawing operation that outputs glyphs in AREA
25386 starting at X0 and ending at X1 in the line starting at Y0 and
25387 ending at Y1. X coordinates are area-relative. X1 < 0 means all
25388 the rest of the line after X0 has been written. Y coordinates
25389 are window-relative. */
25391 static void
25392 notice_overwritten_cursor (struct window *w, enum glyph_row_area area,
25393 int x0, int x1, int y0, int y1)
25395 int cx0, cx1, cy0, cy1;
25396 struct glyph_row *row;
25398 if (!w->phys_cursor_on_p)
25399 return;
25400 if (area != TEXT_AREA)
25401 return;
25403 if (w->phys_cursor.vpos < 0
25404 || w->phys_cursor.vpos >= w->current_matrix->nrows
25405 || (row = w->current_matrix->rows + w->phys_cursor.vpos,
25406 !(row->enabled_p && row->displays_text_p)))
25407 return;
25409 if (row->cursor_in_fringe_p)
25411 row->cursor_in_fringe_p = 0;
25412 draw_fringe_bitmap (w, row, row->reversed_p);
25413 w->phys_cursor_on_p = 0;
25414 return;
25417 cx0 = w->phys_cursor.x;
25418 cx1 = cx0 + w->phys_cursor_width;
25419 if (x0 > cx0 || (x1 >= 0 && x1 < cx1))
25420 return;
25422 /* The cursor image will be completely removed from the
25423 screen if the output area intersects the cursor area in
25424 y-direction. When we draw in [y0 y1[, and some part of
25425 the cursor is at y < y0, that part must have been drawn
25426 before. When scrolling, the cursor is erased before
25427 actually scrolling, so we don't come here. When not
25428 scrolling, the rows above the old cursor row must have
25429 changed, and in this case these rows must have written
25430 over the cursor image.
25432 Likewise if part of the cursor is below y1, with the
25433 exception of the cursor being in the first blank row at
25434 the buffer and window end because update_text_area
25435 doesn't draw that row. (Except when it does, but
25436 that's handled in update_text_area.) */
25438 cy0 = w->phys_cursor.y;
25439 cy1 = cy0 + w->phys_cursor_height;
25440 if ((y0 < cy0 || y0 >= cy1) && (y1 <= cy0 || y1 >= cy1))
25441 return;
25443 w->phys_cursor_on_p = 0;
25446 #endif /* HAVE_WINDOW_SYSTEM */
25449 /************************************************************************
25450 Mouse Face
25451 ************************************************************************/
25453 #ifdef HAVE_WINDOW_SYSTEM
25455 /* EXPORT for RIF:
25456 Fix the display of area AREA of overlapping row ROW in window W
25457 with respect to the overlapping part OVERLAPS. */
25459 void
25460 x_fix_overlapping_area (struct window *w, struct glyph_row *row,
25461 enum glyph_row_area area, int overlaps)
25463 int i, x;
25465 BLOCK_INPUT;
25467 x = 0;
25468 for (i = 0; i < row->used[area];)
25470 if (row->glyphs[area][i].overlaps_vertically_p)
25472 int start = i, start_x = x;
25476 x += row->glyphs[area][i].pixel_width;
25477 ++i;
25479 while (i < row->used[area]
25480 && row->glyphs[area][i].overlaps_vertically_p);
25482 draw_glyphs (w, start_x, row, area,
25483 start, i,
25484 DRAW_NORMAL_TEXT, overlaps);
25486 else
25488 x += row->glyphs[area][i].pixel_width;
25489 ++i;
25493 UNBLOCK_INPUT;
25497 /* EXPORT:
25498 Draw the cursor glyph of window W in glyph row ROW. See the
25499 comment of draw_glyphs for the meaning of HL. */
25501 void
25502 draw_phys_cursor_glyph (struct window *w, struct glyph_row *row,
25503 enum draw_glyphs_face hl)
25505 /* If cursor hpos is out of bounds, don't draw garbage. This can
25506 happen in mini-buffer windows when switching between echo area
25507 glyphs and mini-buffer. */
25508 if ((row->reversed_p
25509 ? (w->phys_cursor.hpos >= 0)
25510 : (w->phys_cursor.hpos < row->used[TEXT_AREA])))
25512 int on_p = w->phys_cursor_on_p;
25513 int x1;
25514 int hpos = w->phys_cursor.hpos;
25516 /* When the window is hscrolled, cursor hpos can legitimately be
25517 out of bounds, but we draw the cursor at the corresponding
25518 window margin in that case. */
25519 if (!row->reversed_p && hpos < 0)
25520 hpos = 0;
25521 if (row->reversed_p && hpos >= row->used[TEXT_AREA])
25522 hpos = row->used[TEXT_AREA] - 1;
25524 x1 = draw_glyphs (w, w->phys_cursor.x, row, TEXT_AREA, hpos, hpos + 1,
25525 hl, 0);
25526 w->phys_cursor_on_p = on_p;
25528 if (hl == DRAW_CURSOR)
25529 w->phys_cursor_width = x1 - w->phys_cursor.x;
25530 /* When we erase the cursor, and ROW is overlapped by other
25531 rows, make sure that these overlapping parts of other rows
25532 are redrawn. */
25533 else if (hl == DRAW_NORMAL_TEXT && row->overlapped_p)
25535 w->phys_cursor_width = x1 - w->phys_cursor.x;
25537 if (row > w->current_matrix->rows
25538 && MATRIX_ROW_OVERLAPS_SUCC_P (row - 1))
25539 x_fix_overlapping_area (w, row - 1, TEXT_AREA,
25540 OVERLAPS_ERASED_CURSOR);
25542 if (MATRIX_ROW_BOTTOM_Y (row) < window_text_bottom_y (w)
25543 && MATRIX_ROW_OVERLAPS_PRED_P (row + 1))
25544 x_fix_overlapping_area (w, row + 1, TEXT_AREA,
25545 OVERLAPS_ERASED_CURSOR);
25551 /* EXPORT:
25552 Erase the image of a cursor of window W from the screen. */
25554 void
25555 erase_phys_cursor (struct window *w)
25557 struct frame *f = XFRAME (w->frame);
25558 Mouse_HLInfo *hlinfo = MOUSE_HL_INFO (f);
25559 int hpos = w->phys_cursor.hpos;
25560 int vpos = w->phys_cursor.vpos;
25561 int mouse_face_here_p = 0;
25562 struct glyph_matrix *active_glyphs = w->current_matrix;
25563 struct glyph_row *cursor_row;
25564 struct glyph *cursor_glyph;
25565 enum draw_glyphs_face hl;
25567 /* No cursor displayed or row invalidated => nothing to do on the
25568 screen. */
25569 if (w->phys_cursor_type == NO_CURSOR)
25570 goto mark_cursor_off;
25572 /* VPOS >= active_glyphs->nrows means that window has been resized.
25573 Don't bother to erase the cursor. */
25574 if (vpos >= active_glyphs->nrows)
25575 goto mark_cursor_off;
25577 /* If row containing cursor is marked invalid, there is nothing we
25578 can do. */
25579 cursor_row = MATRIX_ROW (active_glyphs, vpos);
25580 if (!cursor_row->enabled_p)
25581 goto mark_cursor_off;
25583 /* If line spacing is > 0, old cursor may only be partially visible in
25584 window after split-window. So adjust visible height. */
25585 cursor_row->visible_height = min (cursor_row->visible_height,
25586 window_text_bottom_y (w) - cursor_row->y);
25588 /* If row is completely invisible, don't attempt to delete a cursor which
25589 isn't there. This can happen if cursor is at top of a window, and
25590 we switch to a buffer with a header line in that window. */
25591 if (cursor_row->visible_height <= 0)
25592 goto mark_cursor_off;
25594 /* If cursor is in the fringe, erase by drawing actual bitmap there. */
25595 if (cursor_row->cursor_in_fringe_p)
25597 cursor_row->cursor_in_fringe_p = 0;
25598 draw_fringe_bitmap (w, cursor_row, cursor_row->reversed_p);
25599 goto mark_cursor_off;
25602 /* This can happen when the new row is shorter than the old one.
25603 In this case, either draw_glyphs or clear_end_of_line
25604 should have cleared the cursor. Note that we wouldn't be
25605 able to erase the cursor in this case because we don't have a
25606 cursor glyph at hand. */
25607 if ((cursor_row->reversed_p
25608 ? (w->phys_cursor.hpos < 0)
25609 : (w->phys_cursor.hpos >= cursor_row->used[TEXT_AREA])))
25610 goto mark_cursor_off;
25612 /* When the window is hscrolled, cursor hpos can legitimately be out
25613 of bounds, but we draw the cursor at the corresponding window
25614 margin in that case. */
25615 if (!cursor_row->reversed_p && hpos < 0)
25616 hpos = 0;
25617 if (cursor_row->reversed_p && hpos >= cursor_row->used[TEXT_AREA])
25618 hpos = cursor_row->used[TEXT_AREA] - 1;
25620 /* If the cursor is in the mouse face area, redisplay that when
25621 we clear the cursor. */
25622 if (! NILP (hlinfo->mouse_face_window)
25623 && coords_in_mouse_face_p (w, hpos, vpos)
25624 /* Don't redraw the cursor's spot in mouse face if it is at the
25625 end of a line (on a newline). The cursor appears there, but
25626 mouse highlighting does not. */
25627 && cursor_row->used[TEXT_AREA] > hpos && hpos >= 0)
25628 mouse_face_here_p = 1;
25630 /* Maybe clear the display under the cursor. */
25631 if (w->phys_cursor_type == HOLLOW_BOX_CURSOR)
25633 int x, y, left_x;
25634 int header_line_height = WINDOW_HEADER_LINE_HEIGHT (w);
25635 int width;
25637 cursor_glyph = get_phys_cursor_glyph (w);
25638 if (cursor_glyph == NULL)
25639 goto mark_cursor_off;
25641 width = cursor_glyph->pixel_width;
25642 left_x = window_box_left_offset (w, TEXT_AREA);
25643 x = w->phys_cursor.x;
25644 if (x < left_x)
25645 width -= left_x - x;
25646 width = min (width, window_box_width (w, TEXT_AREA) - x);
25647 y = WINDOW_TO_FRAME_PIXEL_Y (w, max (header_line_height, cursor_row->y));
25648 x = WINDOW_TEXT_TO_FRAME_PIXEL_X (w, max (x, left_x));
25650 if (width > 0)
25651 FRAME_RIF (f)->clear_frame_area (f, x, y, width, cursor_row->visible_height);
25654 /* Erase the cursor by redrawing the character underneath it. */
25655 if (mouse_face_here_p)
25656 hl = DRAW_MOUSE_FACE;
25657 else
25658 hl = DRAW_NORMAL_TEXT;
25659 draw_phys_cursor_glyph (w, cursor_row, hl);
25661 mark_cursor_off:
25662 w->phys_cursor_on_p = 0;
25663 w->phys_cursor_type = NO_CURSOR;
25667 /* EXPORT:
25668 Display or clear cursor of window W. If ON is zero, clear the
25669 cursor. If it is non-zero, display the cursor. If ON is nonzero,
25670 where to put the cursor is specified by HPOS, VPOS, X and Y. */
25672 void
25673 display_and_set_cursor (struct window *w, int on,
25674 int hpos, int vpos, int x, int y)
25676 struct frame *f = XFRAME (w->frame);
25677 int new_cursor_type;
25678 int new_cursor_width;
25679 int active_cursor;
25680 struct glyph_row *glyph_row;
25681 struct glyph *glyph;
25683 /* This is pointless on invisible frames, and dangerous on garbaged
25684 windows and frames; in the latter case, the frame or window may
25685 be in the midst of changing its size, and x and y may be off the
25686 window. */
25687 if (! FRAME_VISIBLE_P (f)
25688 || FRAME_GARBAGED_P (f)
25689 || vpos >= w->current_matrix->nrows
25690 || hpos >= w->current_matrix->matrix_w)
25691 return;
25693 /* If cursor is off and we want it off, return quickly. */
25694 if (!on && !w->phys_cursor_on_p)
25695 return;
25697 glyph_row = MATRIX_ROW (w->current_matrix, vpos);
25698 /* If cursor row is not enabled, we don't really know where to
25699 display the cursor. */
25700 if (!glyph_row->enabled_p)
25702 w->phys_cursor_on_p = 0;
25703 return;
25706 glyph = NULL;
25707 if (!glyph_row->exact_window_width_line_p
25708 || (0 <= hpos && hpos < glyph_row->used[TEXT_AREA]))
25709 glyph = glyph_row->glyphs[TEXT_AREA] + hpos;
25711 xassert (interrupt_input_blocked);
25713 /* Set new_cursor_type to the cursor we want to be displayed. */
25714 new_cursor_type = get_window_cursor_type (w, glyph,
25715 &new_cursor_width, &active_cursor);
25717 /* If cursor is currently being shown and we don't want it to be or
25718 it is in the wrong place, or the cursor type is not what we want,
25719 erase it. */
25720 if (w->phys_cursor_on_p
25721 && (!on
25722 || w->phys_cursor.x != x
25723 || w->phys_cursor.y != y
25724 || new_cursor_type != w->phys_cursor_type
25725 || ((new_cursor_type == BAR_CURSOR || new_cursor_type == HBAR_CURSOR)
25726 && new_cursor_width != w->phys_cursor_width)))
25727 erase_phys_cursor (w);
25729 /* Don't check phys_cursor_on_p here because that flag is only set
25730 to zero in some cases where we know that the cursor has been
25731 completely erased, to avoid the extra work of erasing the cursor
25732 twice. In other words, phys_cursor_on_p can be 1 and the cursor
25733 still not be visible, or it has only been partly erased. */
25734 if (on)
25736 w->phys_cursor_ascent = glyph_row->ascent;
25737 w->phys_cursor_height = glyph_row->height;
25739 /* Set phys_cursor_.* before x_draw_.* is called because some
25740 of them may need the information. */
25741 w->phys_cursor.x = x;
25742 w->phys_cursor.y = glyph_row->y;
25743 w->phys_cursor.hpos = hpos;
25744 w->phys_cursor.vpos = vpos;
25747 FRAME_RIF (f)->draw_window_cursor (w, glyph_row, x, y,
25748 new_cursor_type, new_cursor_width,
25749 on, active_cursor);
25753 /* Switch the display of W's cursor on or off, according to the value
25754 of ON. */
25756 static void
25757 update_window_cursor (struct window *w, int on)
25759 /* Don't update cursor in windows whose frame is in the process
25760 of being deleted. */
25761 if (w->current_matrix)
25763 int hpos = w->phys_cursor.hpos;
25764 int vpos = w->phys_cursor.vpos;
25765 struct glyph_row *row;
25767 if (vpos >= w->current_matrix->nrows
25768 || hpos >= w->current_matrix->matrix_w)
25769 return;
25771 row = MATRIX_ROW (w->current_matrix, vpos);
25773 /* When the window is hscrolled, cursor hpos can legitimately be
25774 out of bounds, but we draw the cursor at the corresponding
25775 window margin in that case. */
25776 if (!row->reversed_p && hpos < 0)
25777 hpos = 0;
25778 if (row->reversed_p && hpos >= row->used[TEXT_AREA])
25779 hpos = row->used[TEXT_AREA] - 1;
25781 BLOCK_INPUT;
25782 display_and_set_cursor (w, on, hpos, vpos,
25783 w->phys_cursor.x, w->phys_cursor.y);
25784 UNBLOCK_INPUT;
25789 /* Call update_window_cursor with parameter ON_P on all leaf windows
25790 in the window tree rooted at W. */
25792 static void
25793 update_cursor_in_window_tree (struct window *w, int on_p)
25795 while (w)
25797 if (!NILP (w->hchild))
25798 update_cursor_in_window_tree (XWINDOW (w->hchild), on_p);
25799 else if (!NILP (w->vchild))
25800 update_cursor_in_window_tree (XWINDOW (w->vchild), on_p);
25801 else
25802 update_window_cursor (w, on_p);
25804 w = NILP (w->next) ? 0 : XWINDOW (w->next);
25809 /* EXPORT:
25810 Display the cursor on window W, or clear it, according to ON_P.
25811 Don't change the cursor's position. */
25813 void
25814 x_update_cursor (struct frame *f, int on_p)
25816 update_cursor_in_window_tree (XWINDOW (f->root_window), on_p);
25820 /* EXPORT:
25821 Clear the cursor of window W to background color, and mark the
25822 cursor as not shown. This is used when the text where the cursor
25823 is about to be rewritten. */
25825 void
25826 x_clear_cursor (struct window *w)
25828 if (FRAME_VISIBLE_P (XFRAME (w->frame)) && w->phys_cursor_on_p)
25829 update_window_cursor (w, 0);
25832 #endif /* HAVE_WINDOW_SYSTEM */
25834 /* Implementation of draw_row_with_mouse_face for GUI sessions, GPM,
25835 and MSDOS. */
25836 static void
25837 draw_row_with_mouse_face (struct window *w, int start_x, struct glyph_row *row,
25838 int start_hpos, int end_hpos,
25839 enum draw_glyphs_face draw)
25841 #ifdef HAVE_WINDOW_SYSTEM
25842 if (FRAME_WINDOW_P (XFRAME (w->frame)))
25844 draw_glyphs (w, start_x, row, TEXT_AREA, start_hpos, end_hpos, draw, 0);
25845 return;
25847 #endif
25848 #if defined (HAVE_GPM) || defined (MSDOS) || defined (WINDOWSNT)
25849 tty_draw_row_with_mouse_face (w, row, start_hpos, end_hpos, draw);
25850 #endif
25853 /* Display the active region described by mouse_face_* according to DRAW. */
25855 static void
25856 show_mouse_face (Mouse_HLInfo *hlinfo, enum draw_glyphs_face draw)
25858 struct window *w = XWINDOW (hlinfo->mouse_face_window);
25859 struct frame *f = XFRAME (WINDOW_FRAME (w));
25861 if (/* If window is in the process of being destroyed, don't bother
25862 to do anything. */
25863 w->current_matrix != NULL
25864 /* Don't update mouse highlight if hidden */
25865 && (draw != DRAW_MOUSE_FACE || !hlinfo->mouse_face_hidden)
25866 /* Recognize when we are called to operate on rows that don't exist
25867 anymore. This can happen when a window is split. */
25868 && hlinfo->mouse_face_end_row < w->current_matrix->nrows)
25870 int phys_cursor_on_p = w->phys_cursor_on_p;
25871 struct glyph_row *row, *first, *last;
25873 first = MATRIX_ROW (w->current_matrix, hlinfo->mouse_face_beg_row);
25874 last = MATRIX_ROW (w->current_matrix, hlinfo->mouse_face_end_row);
25876 for (row = first; row <= last && row->enabled_p; ++row)
25878 int start_hpos, end_hpos, start_x;
25880 /* For all but the first row, the highlight starts at column 0. */
25881 if (row == first)
25883 /* R2L rows have BEG and END in reversed order, but the
25884 screen drawing geometry is always left to right. So
25885 we need to mirror the beginning and end of the
25886 highlighted area in R2L rows. */
25887 if (!row->reversed_p)
25889 start_hpos = hlinfo->mouse_face_beg_col;
25890 start_x = hlinfo->mouse_face_beg_x;
25892 else if (row == last)
25894 start_hpos = hlinfo->mouse_face_end_col;
25895 start_x = hlinfo->mouse_face_end_x;
25897 else
25899 start_hpos = 0;
25900 start_x = 0;
25903 else if (row->reversed_p && row == last)
25905 start_hpos = hlinfo->mouse_face_end_col;
25906 start_x = hlinfo->mouse_face_end_x;
25908 else
25910 start_hpos = 0;
25911 start_x = 0;
25914 if (row == last)
25916 if (!row->reversed_p)
25917 end_hpos = hlinfo->mouse_face_end_col;
25918 else if (row == first)
25919 end_hpos = hlinfo->mouse_face_beg_col;
25920 else
25922 end_hpos = row->used[TEXT_AREA];
25923 if (draw == DRAW_NORMAL_TEXT)
25924 row->fill_line_p = 1; /* Clear to end of line */
25927 else if (row->reversed_p && row == first)
25928 end_hpos = hlinfo->mouse_face_beg_col;
25929 else
25931 end_hpos = row->used[TEXT_AREA];
25932 if (draw == DRAW_NORMAL_TEXT)
25933 row->fill_line_p = 1; /* Clear to end of line */
25936 if (end_hpos > start_hpos)
25938 draw_row_with_mouse_face (w, start_x, row,
25939 start_hpos, end_hpos, draw);
25941 row->mouse_face_p
25942 = draw == DRAW_MOUSE_FACE || draw == DRAW_IMAGE_RAISED;
25946 #ifdef HAVE_WINDOW_SYSTEM
25947 /* When we've written over the cursor, arrange for it to
25948 be displayed again. */
25949 if (FRAME_WINDOW_P (f)
25950 && phys_cursor_on_p && !w->phys_cursor_on_p)
25952 int hpos = w->phys_cursor.hpos;
25954 /* When the window is hscrolled, cursor hpos can legitimately be
25955 out of bounds, but we draw the cursor at the corresponding
25956 window margin in that case. */
25957 if (!row->reversed_p && hpos < 0)
25958 hpos = 0;
25959 if (row->reversed_p && hpos >= row->used[TEXT_AREA])
25960 hpos = row->used[TEXT_AREA] - 1;
25962 BLOCK_INPUT;
25963 display_and_set_cursor (w, 1, hpos, w->phys_cursor.vpos,
25964 w->phys_cursor.x, w->phys_cursor.y);
25965 UNBLOCK_INPUT;
25967 #endif /* HAVE_WINDOW_SYSTEM */
25970 #ifdef HAVE_WINDOW_SYSTEM
25971 /* Change the mouse cursor. */
25972 if (FRAME_WINDOW_P (f))
25974 if (draw == DRAW_NORMAL_TEXT
25975 && !EQ (hlinfo->mouse_face_window, f->tool_bar_window))
25976 FRAME_RIF (f)->define_frame_cursor (f, FRAME_X_OUTPUT (f)->text_cursor);
25977 else if (draw == DRAW_MOUSE_FACE)
25978 FRAME_RIF (f)->define_frame_cursor (f, FRAME_X_OUTPUT (f)->hand_cursor);
25979 else
25980 FRAME_RIF (f)->define_frame_cursor (f, FRAME_X_OUTPUT (f)->nontext_cursor);
25982 #endif /* HAVE_WINDOW_SYSTEM */
25985 /* EXPORT:
25986 Clear out the mouse-highlighted active region.
25987 Redraw it un-highlighted first. Value is non-zero if mouse
25988 face was actually drawn unhighlighted. */
25991 clear_mouse_face (Mouse_HLInfo *hlinfo)
25993 int cleared = 0;
25995 if (!hlinfo->mouse_face_hidden && !NILP (hlinfo->mouse_face_window))
25997 show_mouse_face (hlinfo, DRAW_NORMAL_TEXT);
25998 cleared = 1;
26001 hlinfo->mouse_face_beg_row = hlinfo->mouse_face_beg_col = -1;
26002 hlinfo->mouse_face_end_row = hlinfo->mouse_face_end_col = -1;
26003 hlinfo->mouse_face_window = Qnil;
26004 hlinfo->mouse_face_overlay = Qnil;
26005 return cleared;
26008 /* Return non-zero if the coordinates HPOS and VPOS on windows W are
26009 within the mouse face on that window. */
26010 static int
26011 coords_in_mouse_face_p (struct window *w, int hpos, int vpos)
26013 Mouse_HLInfo *hlinfo = MOUSE_HL_INFO (XFRAME (w->frame));
26015 /* Quickly resolve the easy cases. */
26016 if (!(WINDOWP (hlinfo->mouse_face_window)
26017 && XWINDOW (hlinfo->mouse_face_window) == w))
26018 return 0;
26019 if (vpos < hlinfo->mouse_face_beg_row
26020 || vpos > hlinfo->mouse_face_end_row)
26021 return 0;
26022 if (vpos > hlinfo->mouse_face_beg_row
26023 && vpos < hlinfo->mouse_face_end_row)
26024 return 1;
26026 if (!MATRIX_ROW (w->current_matrix, vpos)->reversed_p)
26028 if (hlinfo->mouse_face_beg_row == hlinfo->mouse_face_end_row)
26030 if (hlinfo->mouse_face_beg_col <= hpos && hpos < hlinfo->mouse_face_end_col)
26031 return 1;
26033 else if ((vpos == hlinfo->mouse_face_beg_row
26034 && hpos >= hlinfo->mouse_face_beg_col)
26035 || (vpos == hlinfo->mouse_face_end_row
26036 && hpos < hlinfo->mouse_face_end_col))
26037 return 1;
26039 else
26041 if (hlinfo->mouse_face_beg_row == hlinfo->mouse_face_end_row)
26043 if (hlinfo->mouse_face_end_col < hpos && hpos <= hlinfo->mouse_face_beg_col)
26044 return 1;
26046 else if ((vpos == hlinfo->mouse_face_beg_row
26047 && hpos <= hlinfo->mouse_face_beg_col)
26048 || (vpos == hlinfo->mouse_face_end_row
26049 && hpos > hlinfo->mouse_face_end_col))
26050 return 1;
26052 return 0;
26056 /* EXPORT:
26057 Non-zero if physical cursor of window W is within mouse face. */
26060 cursor_in_mouse_face_p (struct window *w)
26062 int hpos = w->phys_cursor.hpos;
26063 int vpos = w->phys_cursor.vpos;
26064 struct glyph_row *row = MATRIX_ROW (w->current_matrix, vpos);
26066 /* When the window is hscrolled, cursor hpos can legitimately be out
26067 of bounds, but we draw the cursor at the corresponding window
26068 margin in that case. */
26069 if (!row->reversed_p && hpos < 0)
26070 hpos = 0;
26071 if (row->reversed_p && hpos >= row->used[TEXT_AREA])
26072 hpos = row->used[TEXT_AREA] - 1;
26074 return coords_in_mouse_face_p (w, hpos, vpos);
26079 /* Find the glyph rows START_ROW and END_ROW of window W that display
26080 characters between buffer positions START_CHARPOS and END_CHARPOS
26081 (excluding END_CHARPOS). DISP_STRING is a display string that
26082 covers these buffer positions. This is similar to
26083 row_containing_pos, but is more accurate when bidi reordering makes
26084 buffer positions change non-linearly with glyph rows. */
26085 static void
26086 rows_from_pos_range (struct window *w,
26087 ptrdiff_t start_charpos, ptrdiff_t end_charpos,
26088 Lisp_Object disp_string,
26089 struct glyph_row **start, struct glyph_row **end)
26091 struct glyph_row *first = MATRIX_FIRST_TEXT_ROW (w->current_matrix);
26092 int last_y = window_text_bottom_y (w);
26093 struct glyph_row *row;
26095 *start = NULL;
26096 *end = NULL;
26098 while (!first->enabled_p
26099 && first < MATRIX_BOTTOM_TEXT_ROW (w->current_matrix, w))
26100 first++;
26102 /* Find the START row. */
26103 for (row = first;
26104 row->enabled_p && MATRIX_ROW_BOTTOM_Y (row) <= last_y;
26105 row++)
26107 /* A row can potentially be the START row if the range of the
26108 characters it displays intersects the range
26109 [START_CHARPOS..END_CHARPOS). */
26110 if (! ((start_charpos < MATRIX_ROW_START_CHARPOS (row)
26111 && end_charpos < MATRIX_ROW_START_CHARPOS (row))
26112 /* See the commentary in row_containing_pos, for the
26113 explanation of the complicated way to check whether
26114 some position is beyond the end of the characters
26115 displayed by a row. */
26116 || ((start_charpos > MATRIX_ROW_END_CHARPOS (row)
26117 || (start_charpos == MATRIX_ROW_END_CHARPOS (row)
26118 && !row->ends_at_zv_p
26119 && !MATRIX_ROW_ENDS_IN_MIDDLE_OF_CHAR_P (row)))
26120 && (end_charpos > MATRIX_ROW_END_CHARPOS (row)
26121 || (end_charpos == MATRIX_ROW_END_CHARPOS (row)
26122 && !row->ends_at_zv_p
26123 && !MATRIX_ROW_ENDS_IN_MIDDLE_OF_CHAR_P (row))))))
26125 /* Found a candidate row. Now make sure at least one of the
26126 glyphs it displays has a charpos from the range
26127 [START_CHARPOS..END_CHARPOS).
26129 This is not obvious because bidi reordering could make
26130 buffer positions of a row be 1,2,3,102,101,100, and if we
26131 want to highlight characters in [50..60), we don't want
26132 this row, even though [50..60) does intersect [1..103),
26133 the range of character positions given by the row's start
26134 and end positions. */
26135 struct glyph *g = row->glyphs[TEXT_AREA];
26136 struct glyph *e = g + row->used[TEXT_AREA];
26138 while (g < e)
26140 if (((BUFFERP (g->object) || INTEGERP (g->object))
26141 && start_charpos <= g->charpos && g->charpos < end_charpos)
26142 /* A glyph that comes from DISP_STRING is by
26143 definition to be highlighted. */
26144 || EQ (g->object, disp_string))
26145 *start = row;
26146 g++;
26148 if (*start)
26149 break;
26153 /* Find the END row. */
26154 if (!*start
26155 /* If the last row is partially visible, start looking for END
26156 from that row, instead of starting from FIRST. */
26157 && !(row->enabled_p
26158 && row->y < last_y && MATRIX_ROW_BOTTOM_Y (row) > last_y))
26159 row = first;
26160 for ( ; row->enabled_p && MATRIX_ROW_BOTTOM_Y (row) <= last_y; row++)
26162 struct glyph_row *next = row + 1;
26163 ptrdiff_t next_start = MATRIX_ROW_START_CHARPOS (next);
26165 if (!next->enabled_p
26166 || next >= MATRIX_BOTTOM_TEXT_ROW (w->current_matrix, w)
26167 /* The first row >= START whose range of displayed characters
26168 does NOT intersect the range [START_CHARPOS..END_CHARPOS]
26169 is the row END + 1. */
26170 || (start_charpos < next_start
26171 && end_charpos < next_start)
26172 || ((start_charpos > MATRIX_ROW_END_CHARPOS (next)
26173 || (start_charpos == MATRIX_ROW_END_CHARPOS (next)
26174 && !next->ends_at_zv_p
26175 && !MATRIX_ROW_ENDS_IN_MIDDLE_OF_CHAR_P (next)))
26176 && (end_charpos > MATRIX_ROW_END_CHARPOS (next)
26177 || (end_charpos == MATRIX_ROW_END_CHARPOS (next)
26178 && !next->ends_at_zv_p
26179 && !MATRIX_ROW_ENDS_IN_MIDDLE_OF_CHAR_P (next)))))
26181 *end = row;
26182 break;
26184 else
26186 /* If the next row's edges intersect [START_CHARPOS..END_CHARPOS],
26187 but none of the characters it displays are in the range, it is
26188 also END + 1. */
26189 struct glyph *g = next->glyphs[TEXT_AREA];
26190 struct glyph *s = g;
26191 struct glyph *e = g + next->used[TEXT_AREA];
26193 while (g < e)
26195 if (((BUFFERP (g->object) || INTEGERP (g->object))
26196 && ((start_charpos <= g->charpos && g->charpos < end_charpos)
26197 /* If the buffer position of the first glyph in
26198 the row is equal to END_CHARPOS, it means
26199 the last character to be highlighted is the
26200 newline of ROW, and we must consider NEXT as
26201 END, not END+1. */
26202 || (((!next->reversed_p && g == s)
26203 || (next->reversed_p && g == e - 1))
26204 && (g->charpos == end_charpos
26205 /* Special case for when NEXT is an
26206 empty line at ZV. */
26207 || (g->charpos == -1
26208 && !row->ends_at_zv_p
26209 && next_start == end_charpos)))))
26210 /* A glyph that comes from DISP_STRING is by
26211 definition to be highlighted. */
26212 || EQ (g->object, disp_string))
26213 break;
26214 g++;
26216 if (g == e)
26218 *end = row;
26219 break;
26221 /* The first row that ends at ZV must be the last to be
26222 highlighted. */
26223 else if (next->ends_at_zv_p)
26225 *end = next;
26226 break;
26232 /* This function sets the mouse_face_* elements of HLINFO, assuming
26233 the mouse cursor is on a glyph with buffer charpos MOUSE_CHARPOS in
26234 window WINDOW. START_CHARPOS and END_CHARPOS are buffer positions
26235 for the overlay or run of text properties specifying the mouse
26236 face. BEFORE_STRING and AFTER_STRING, if non-nil, are a
26237 before-string and after-string that must also be highlighted.
26238 DISP_STRING, if non-nil, is a display string that may cover some
26239 or all of the highlighted text. */
26241 static void
26242 mouse_face_from_buffer_pos (Lisp_Object window,
26243 Mouse_HLInfo *hlinfo,
26244 ptrdiff_t mouse_charpos,
26245 ptrdiff_t start_charpos,
26246 ptrdiff_t end_charpos,
26247 Lisp_Object before_string,
26248 Lisp_Object after_string,
26249 Lisp_Object disp_string)
26251 struct window *w = XWINDOW (window);
26252 struct glyph_row *first = MATRIX_FIRST_TEXT_ROW (w->current_matrix);
26253 struct glyph_row *r1, *r2;
26254 struct glyph *glyph, *end;
26255 ptrdiff_t ignore, pos;
26256 int x;
26258 xassert (NILP (disp_string) || STRINGP (disp_string));
26259 xassert (NILP (before_string) || STRINGP (before_string));
26260 xassert (NILP (after_string) || STRINGP (after_string));
26262 /* Find the rows corresponding to START_CHARPOS and END_CHARPOS. */
26263 rows_from_pos_range (w, start_charpos, end_charpos, disp_string, &r1, &r2);
26264 if (r1 == NULL)
26265 r1 = MATRIX_ROW (w->current_matrix, XFASTINT (w->window_end_vpos));
26266 /* If the before-string or display-string contains newlines,
26267 rows_from_pos_range skips to its last row. Move back. */
26268 if (!NILP (before_string) || !NILP (disp_string))
26270 struct glyph_row *prev;
26271 while ((prev = r1 - 1, prev >= first)
26272 && MATRIX_ROW_END_CHARPOS (prev) == start_charpos
26273 && prev->used[TEXT_AREA] > 0)
26275 struct glyph *beg = prev->glyphs[TEXT_AREA];
26276 glyph = beg + prev->used[TEXT_AREA];
26277 while (--glyph >= beg && INTEGERP (glyph->object));
26278 if (glyph < beg
26279 || !(EQ (glyph->object, before_string)
26280 || EQ (glyph->object, disp_string)))
26281 break;
26282 r1 = prev;
26285 if (r2 == NULL)
26287 r2 = MATRIX_ROW (w->current_matrix, XFASTINT (w->window_end_vpos));
26288 hlinfo->mouse_face_past_end = 1;
26290 else if (!NILP (after_string))
26292 /* If the after-string has newlines, advance to its last row. */
26293 struct glyph_row *next;
26294 struct glyph_row *last
26295 = MATRIX_ROW (w->current_matrix, XFASTINT (w->window_end_vpos));
26297 for (next = r2 + 1;
26298 next <= last
26299 && next->used[TEXT_AREA] > 0
26300 && EQ (next->glyphs[TEXT_AREA]->object, after_string);
26301 ++next)
26302 r2 = next;
26304 /* The rest of the display engine assumes that mouse_face_beg_row is
26305 either above mouse_face_end_row or identical to it. But with
26306 bidi-reordered continued lines, the row for START_CHARPOS could
26307 be below the row for END_CHARPOS. If so, swap the rows and store
26308 them in correct order. */
26309 if (r1->y > r2->y)
26311 struct glyph_row *tem = r2;
26313 r2 = r1;
26314 r1 = tem;
26317 hlinfo->mouse_face_beg_y = r1->y;
26318 hlinfo->mouse_face_beg_row = MATRIX_ROW_VPOS (r1, w->current_matrix);
26319 hlinfo->mouse_face_end_y = r2->y;
26320 hlinfo->mouse_face_end_row = MATRIX_ROW_VPOS (r2, w->current_matrix);
26322 /* For a bidi-reordered row, the positions of BEFORE_STRING,
26323 AFTER_STRING, DISP_STRING, START_CHARPOS, and END_CHARPOS
26324 could be anywhere in the row and in any order. The strategy
26325 below is to find the leftmost and the rightmost glyph that
26326 belongs to either of these 3 strings, or whose position is
26327 between START_CHARPOS and END_CHARPOS, and highlight all the
26328 glyphs between those two. This may cover more than just the text
26329 between START_CHARPOS and END_CHARPOS if the range of characters
26330 strides the bidi level boundary, e.g. if the beginning is in R2L
26331 text while the end is in L2R text or vice versa. */
26332 if (!r1->reversed_p)
26334 /* This row is in a left to right paragraph. Scan it left to
26335 right. */
26336 glyph = r1->glyphs[TEXT_AREA];
26337 end = glyph + r1->used[TEXT_AREA];
26338 x = r1->x;
26340 /* Skip truncation glyphs at the start of the glyph row. */
26341 if (r1->displays_text_p)
26342 for (; glyph < end
26343 && INTEGERP (glyph->object)
26344 && glyph->charpos < 0;
26345 ++glyph)
26346 x += glyph->pixel_width;
26348 /* Scan the glyph row, looking for BEFORE_STRING, AFTER_STRING,
26349 or DISP_STRING, and the first glyph from buffer whose
26350 position is between START_CHARPOS and END_CHARPOS. */
26351 for (; glyph < end
26352 && !INTEGERP (glyph->object)
26353 && !EQ (glyph->object, disp_string)
26354 && !(BUFFERP (glyph->object)
26355 && (glyph->charpos >= start_charpos
26356 && glyph->charpos < end_charpos));
26357 ++glyph)
26359 /* BEFORE_STRING or AFTER_STRING are only relevant if they
26360 are present at buffer positions between START_CHARPOS and
26361 END_CHARPOS, or if they come from an overlay. */
26362 if (EQ (glyph->object, before_string))
26364 pos = string_buffer_position (before_string,
26365 start_charpos);
26366 /* If pos == 0, it means before_string came from an
26367 overlay, not from a buffer position. */
26368 if (!pos || (pos >= start_charpos && pos < end_charpos))
26369 break;
26371 else if (EQ (glyph->object, after_string))
26373 pos = string_buffer_position (after_string, end_charpos);
26374 if (!pos || (pos >= start_charpos && pos < end_charpos))
26375 break;
26377 x += glyph->pixel_width;
26379 hlinfo->mouse_face_beg_x = x;
26380 hlinfo->mouse_face_beg_col = glyph - r1->glyphs[TEXT_AREA];
26382 else
26384 /* This row is in a right to left paragraph. Scan it right to
26385 left. */
26386 struct glyph *g;
26388 end = r1->glyphs[TEXT_AREA] - 1;
26389 glyph = end + r1->used[TEXT_AREA];
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)
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, start_charpos);
26416 /* If pos == 0, it means before_string came from an
26417 overlay, not from a buffer position. */
26418 if (!pos || (pos >= start_charpos && pos < end_charpos))
26419 break;
26421 else if (EQ (glyph->object, after_string))
26423 pos = string_buffer_position (after_string, end_charpos);
26424 if (!pos || (pos >= start_charpos && pos < end_charpos))
26425 break;
26429 glyph++; /* first glyph to the right of the highlighted area */
26430 for (g = r1->glyphs[TEXT_AREA], x = r1->x; g < glyph; g++)
26431 x += g->pixel_width;
26432 hlinfo->mouse_face_beg_x = x;
26433 hlinfo->mouse_face_beg_col = glyph - r1->glyphs[TEXT_AREA];
26436 /* If the highlight ends in a different row, compute GLYPH and END
26437 for the end row. Otherwise, reuse the values computed above for
26438 the row where the highlight begins. */
26439 if (r2 != r1)
26441 if (!r2->reversed_p)
26443 glyph = r2->glyphs[TEXT_AREA];
26444 end = glyph + r2->used[TEXT_AREA];
26445 x = r2->x;
26447 else
26449 end = r2->glyphs[TEXT_AREA] - 1;
26450 glyph = end + r2->used[TEXT_AREA];
26454 if (!r2->reversed_p)
26456 /* Skip truncation and continuation glyphs near the end of the
26457 row, and also blanks and stretch glyphs inserted by
26458 extend_face_to_end_of_line. */
26459 while (end > glyph
26460 && INTEGERP ((end - 1)->object))
26461 --end;
26462 /* Scan the rest of the glyph row from the end, looking for the
26463 first glyph that comes from BEFORE_STRING, AFTER_STRING, or
26464 DISP_STRING, or whose position is between START_CHARPOS
26465 and END_CHARPOS */
26466 for (--end;
26467 end > glyph
26468 && !INTEGERP (end->object)
26469 && !EQ (end->object, disp_string)
26470 && !(BUFFERP (end->object)
26471 && (end->charpos >= start_charpos
26472 && end->charpos < end_charpos));
26473 --end)
26475 /* BEFORE_STRING or AFTER_STRING are only relevant if they
26476 are present at buffer positions between START_CHARPOS and
26477 END_CHARPOS, or if they come from an overlay. */
26478 if (EQ (end->object, before_string))
26480 pos = string_buffer_position (before_string, start_charpos);
26481 if (!pos || (pos >= start_charpos && pos < end_charpos))
26482 break;
26484 else if (EQ (end->object, after_string))
26486 pos = string_buffer_position (after_string, end_charpos);
26487 if (!pos || (pos >= start_charpos && pos < end_charpos))
26488 break;
26491 /* Find the X coordinate of the last glyph to be highlighted. */
26492 for (; glyph <= end; ++glyph)
26493 x += glyph->pixel_width;
26495 hlinfo->mouse_face_end_x = x;
26496 hlinfo->mouse_face_end_col = glyph - r2->glyphs[TEXT_AREA];
26498 else
26500 /* Skip truncation and continuation glyphs near the end of the
26501 row, and also blanks and stretch glyphs inserted by
26502 extend_face_to_end_of_line. */
26503 x = r2->x;
26504 end++;
26505 while (end < glyph
26506 && INTEGERP (end->object))
26508 x += end->pixel_width;
26509 ++end;
26511 /* Scan the rest of the glyph row from the end, looking for the
26512 first glyph that comes from BEFORE_STRING, AFTER_STRING, or
26513 DISP_STRING, or whose position is between START_CHARPOS
26514 and END_CHARPOS */
26515 for ( ;
26516 end < glyph
26517 && !INTEGERP (end->object)
26518 && !EQ (end->object, disp_string)
26519 && !(BUFFERP (end->object)
26520 && (end->charpos >= start_charpos
26521 && end->charpos < end_charpos));
26522 ++end)
26524 /* BEFORE_STRING or AFTER_STRING are only relevant if they
26525 are present at buffer positions between START_CHARPOS and
26526 END_CHARPOS, or if they come from an overlay. */
26527 if (EQ (end->object, before_string))
26529 pos = string_buffer_position (before_string, start_charpos);
26530 if (!pos || (pos >= start_charpos && pos < end_charpos))
26531 break;
26533 else if (EQ (end->object, after_string))
26535 pos = string_buffer_position (after_string, end_charpos);
26536 if (!pos || (pos >= start_charpos && pos < end_charpos))
26537 break;
26539 x += end->pixel_width;
26541 /* If we exited the above loop because we arrived at the last
26542 glyph of the row, and its buffer position is still not in
26543 range, it means the last character in range is the preceding
26544 newline. Bump the end column and x values to get past the
26545 last glyph. */
26546 if (end == glyph
26547 && BUFFERP (end->object)
26548 && (end->charpos < start_charpos
26549 || end->charpos >= end_charpos))
26551 x += end->pixel_width;
26552 ++end;
26554 hlinfo->mouse_face_end_x = x;
26555 hlinfo->mouse_face_end_col = end - r2->glyphs[TEXT_AREA];
26558 hlinfo->mouse_face_window = window;
26559 hlinfo->mouse_face_face_id
26560 = face_at_buffer_position (w, mouse_charpos, 0, 0, &ignore,
26561 mouse_charpos + 1,
26562 !hlinfo->mouse_face_hidden, -1);
26563 show_mouse_face (hlinfo, DRAW_MOUSE_FACE);
26566 /* The following function is not used anymore (replaced with
26567 mouse_face_from_string_pos), but I leave it here for the time
26568 being, in case someone would. */
26570 #if 0 /* not used */
26572 /* Find the position of the glyph for position POS in OBJECT in
26573 window W's current matrix, and return in *X, *Y the pixel
26574 coordinates, and return in *HPOS, *VPOS the column/row of the glyph.
26576 RIGHT_P non-zero means return the position of the right edge of the
26577 glyph, RIGHT_P zero means return the left edge position.
26579 If no glyph for POS exists in the matrix, return the position of
26580 the glyph with the next smaller position that is in the matrix, if
26581 RIGHT_P is zero. If RIGHT_P is non-zero, and no glyph for POS
26582 exists in the matrix, return the position of the glyph with the
26583 next larger position in OBJECT.
26585 Value is non-zero if a glyph was found. */
26587 static int
26588 fast_find_string_pos (struct window *w, ptrdiff_t pos, Lisp_Object object,
26589 int *hpos, int *vpos, int *x, int *y, int right_p)
26591 int yb = window_text_bottom_y (w);
26592 struct glyph_row *r;
26593 struct glyph *best_glyph = NULL;
26594 struct glyph_row *best_row = NULL;
26595 int best_x = 0;
26597 for (r = MATRIX_FIRST_TEXT_ROW (w->current_matrix);
26598 r->enabled_p && r->y < yb;
26599 ++r)
26601 struct glyph *g = r->glyphs[TEXT_AREA];
26602 struct glyph *e = g + r->used[TEXT_AREA];
26603 int gx;
26605 for (gx = r->x; g < e; gx += g->pixel_width, ++g)
26606 if (EQ (g->object, object))
26608 if (g->charpos == pos)
26610 best_glyph = g;
26611 best_x = gx;
26612 best_row = r;
26613 goto found;
26615 else if (best_glyph == NULL
26616 || ((eabs (g->charpos - pos)
26617 < eabs (best_glyph->charpos - pos))
26618 && (right_p
26619 ? g->charpos < pos
26620 : g->charpos > pos)))
26622 best_glyph = g;
26623 best_x = gx;
26624 best_row = r;
26629 found:
26631 if (best_glyph)
26633 *x = best_x;
26634 *hpos = best_glyph - best_row->glyphs[TEXT_AREA];
26636 if (right_p)
26638 *x += best_glyph->pixel_width;
26639 ++*hpos;
26642 *y = best_row->y;
26643 *vpos = best_row - w->current_matrix->rows;
26646 return best_glyph != NULL;
26648 #endif /* not used */
26650 /* Find the positions of the first and the last glyphs in window W's
26651 current matrix that occlude positions [STARTPOS..ENDPOS] in OBJECT
26652 (assumed to be a string), and return in HLINFO's mouse_face_*
26653 members the pixel and column/row coordinates of those glyphs. */
26655 static void
26656 mouse_face_from_string_pos (struct window *w, Mouse_HLInfo *hlinfo,
26657 Lisp_Object object,
26658 ptrdiff_t startpos, ptrdiff_t endpos)
26660 int yb = window_text_bottom_y (w);
26661 struct glyph_row *r;
26662 struct glyph *g, *e;
26663 int gx;
26664 int found = 0;
26666 /* Find the glyph row with at least one position in the range
26667 [STARTPOS..ENDPOS], and the first glyph in that row whose
26668 position belongs to that range. */
26669 for (r = MATRIX_FIRST_TEXT_ROW (w->current_matrix);
26670 r->enabled_p && r->y < yb;
26671 ++r)
26673 if (!r->reversed_p)
26675 g = r->glyphs[TEXT_AREA];
26676 e = g + r->used[TEXT_AREA];
26677 for (gx = r->x; g < e; gx += g->pixel_width, ++g)
26678 if (EQ (g->object, object)
26679 && startpos <= g->charpos && g->charpos <= endpos)
26681 hlinfo->mouse_face_beg_row = r - w->current_matrix->rows;
26682 hlinfo->mouse_face_beg_y = r->y;
26683 hlinfo->mouse_face_beg_col = g - r->glyphs[TEXT_AREA];
26684 hlinfo->mouse_face_beg_x = gx;
26685 found = 1;
26686 break;
26689 else
26691 struct glyph *g1;
26693 e = r->glyphs[TEXT_AREA];
26694 g = e + r->used[TEXT_AREA];
26695 for ( ; g > e; --g)
26696 if (EQ ((g-1)->object, object)
26697 && startpos <= (g-1)->charpos && (g-1)->charpos <= endpos)
26699 hlinfo->mouse_face_beg_row = r - w->current_matrix->rows;
26700 hlinfo->mouse_face_beg_y = r->y;
26701 hlinfo->mouse_face_beg_col = g - r->glyphs[TEXT_AREA];
26702 for (gx = r->x, g1 = r->glyphs[TEXT_AREA]; g1 < g; ++g1)
26703 gx += g1->pixel_width;
26704 hlinfo->mouse_face_beg_x = gx;
26705 found = 1;
26706 break;
26709 if (found)
26710 break;
26713 if (!found)
26714 return;
26716 /* Starting with the next row, look for the first row which does NOT
26717 include any glyphs whose positions are in the range. */
26718 for (++r; r->enabled_p && r->y < yb; ++r)
26720 g = r->glyphs[TEXT_AREA];
26721 e = g + r->used[TEXT_AREA];
26722 found = 0;
26723 for ( ; g < e; ++g)
26724 if (EQ (g->object, object)
26725 && startpos <= g->charpos && g->charpos <= endpos)
26727 found = 1;
26728 break;
26730 if (!found)
26731 break;
26734 /* The highlighted region ends on the previous row. */
26735 r--;
26737 /* Set the end row and its vertical pixel coordinate. */
26738 hlinfo->mouse_face_end_row = r - w->current_matrix->rows;
26739 hlinfo->mouse_face_end_y = r->y;
26741 /* Compute and set the end column and the end column's horizontal
26742 pixel coordinate. */
26743 if (!r->reversed_p)
26745 g = r->glyphs[TEXT_AREA];
26746 e = g + r->used[TEXT_AREA];
26747 for ( ; e > g; --e)
26748 if (EQ ((e-1)->object, object)
26749 && startpos <= (e-1)->charpos && (e-1)->charpos <= endpos)
26750 break;
26751 hlinfo->mouse_face_end_col = e - g;
26753 for (gx = r->x; g < e; ++g)
26754 gx += g->pixel_width;
26755 hlinfo->mouse_face_end_x = gx;
26757 else
26759 e = r->glyphs[TEXT_AREA];
26760 g = e + r->used[TEXT_AREA];
26761 for (gx = r->x ; e < g; ++e)
26763 if (EQ (e->object, object)
26764 && startpos <= e->charpos && e->charpos <= endpos)
26765 break;
26766 gx += e->pixel_width;
26768 hlinfo->mouse_face_end_col = e - r->glyphs[TEXT_AREA];
26769 hlinfo->mouse_face_end_x = gx;
26773 #ifdef HAVE_WINDOW_SYSTEM
26775 /* See if position X, Y is within a hot-spot of an image. */
26777 static int
26778 on_hot_spot_p (Lisp_Object hot_spot, int x, int y)
26780 if (!CONSP (hot_spot))
26781 return 0;
26783 if (EQ (XCAR (hot_spot), Qrect))
26785 /* CDR is (Top-Left . Bottom-Right) = ((x0 . y0) . (x1 . y1)) */
26786 Lisp_Object rect = XCDR (hot_spot);
26787 Lisp_Object tem;
26788 if (!CONSP (rect))
26789 return 0;
26790 if (!CONSP (XCAR (rect)))
26791 return 0;
26792 if (!CONSP (XCDR (rect)))
26793 return 0;
26794 if (!(tem = XCAR (XCAR (rect)), INTEGERP (tem) && x >= XINT (tem)))
26795 return 0;
26796 if (!(tem = XCDR (XCAR (rect)), INTEGERP (tem) && y >= XINT (tem)))
26797 return 0;
26798 if (!(tem = XCAR (XCDR (rect)), INTEGERP (tem) && x <= XINT (tem)))
26799 return 0;
26800 if (!(tem = XCDR (XCDR (rect)), INTEGERP (tem) && y <= XINT (tem)))
26801 return 0;
26802 return 1;
26804 else if (EQ (XCAR (hot_spot), Qcircle))
26806 /* CDR is (Center . Radius) = ((x0 . y0) . r) */
26807 Lisp_Object circ = XCDR (hot_spot);
26808 Lisp_Object lr, lx0, ly0;
26809 if (CONSP (circ)
26810 && CONSP (XCAR (circ))
26811 && (lr = XCDR (circ), INTEGERP (lr) || FLOATP (lr))
26812 && (lx0 = XCAR (XCAR (circ)), INTEGERP (lx0))
26813 && (ly0 = XCDR (XCAR (circ)), INTEGERP (ly0)))
26815 double r = XFLOATINT (lr);
26816 double dx = XINT (lx0) - x;
26817 double dy = XINT (ly0) - y;
26818 return (dx * dx + dy * dy <= r * r);
26821 else if (EQ (XCAR (hot_spot), Qpoly))
26823 /* CDR is [x0 y0 x1 y1 x2 y2 ...x(n-1) y(n-1)] */
26824 if (VECTORP (XCDR (hot_spot)))
26826 struct Lisp_Vector *v = XVECTOR (XCDR (hot_spot));
26827 Lisp_Object *poly = v->contents;
26828 ptrdiff_t n = v->header.size;
26829 ptrdiff_t i;
26830 int inside = 0;
26831 Lisp_Object lx, ly;
26832 int x0, y0;
26834 /* Need an even number of coordinates, and at least 3 edges. */
26835 if (n < 6 || n & 1)
26836 return 0;
26838 /* Count edge segments intersecting line from (X,Y) to (X,infinity).
26839 If count is odd, we are inside polygon. Pixels on edges
26840 may or may not be included depending on actual geometry of the
26841 polygon. */
26842 if ((lx = poly[n-2], !INTEGERP (lx))
26843 || (ly = poly[n-1], !INTEGERP (lx)))
26844 return 0;
26845 x0 = XINT (lx), y0 = XINT (ly);
26846 for (i = 0; i < n; i += 2)
26848 int x1 = x0, y1 = y0;
26849 if ((lx = poly[i], !INTEGERP (lx))
26850 || (ly = poly[i+1], !INTEGERP (ly)))
26851 return 0;
26852 x0 = XINT (lx), y0 = XINT (ly);
26854 /* Does this segment cross the X line? */
26855 if (x0 >= x)
26857 if (x1 >= x)
26858 continue;
26860 else if (x1 < x)
26861 continue;
26862 if (y > y0 && y > y1)
26863 continue;
26864 if (y < y0 + ((y1 - y0) * (x - x0)) / (x1 - x0))
26865 inside = !inside;
26867 return inside;
26870 return 0;
26873 Lisp_Object
26874 find_hot_spot (Lisp_Object map, int x, int y)
26876 while (CONSP (map))
26878 if (CONSP (XCAR (map))
26879 && on_hot_spot_p (XCAR (XCAR (map)), x, y))
26880 return XCAR (map);
26881 map = XCDR (map);
26884 return Qnil;
26887 DEFUN ("lookup-image-map", Flookup_image_map, Slookup_image_map,
26888 3, 3, 0,
26889 doc: /* Lookup in image map MAP coordinates X and Y.
26890 An image map is an alist where each element has the format (AREA ID PLIST).
26891 An AREA is specified as either a rectangle, a circle, or a polygon:
26892 A rectangle is a cons (rect . ((x0 . y0) . (x1 . y1))) specifying the
26893 pixel coordinates of the upper left and bottom right corners.
26894 A circle is a cons (circle . ((x0 . y0) . r)) specifying the center
26895 and the radius of the circle; r may be a float or integer.
26896 A polygon is a cons (poly . [x0 y0 x1 y1 ...]) where each pair in the
26897 vector describes one corner in the polygon.
26898 Returns the alist element for the first matching AREA in MAP. */)
26899 (Lisp_Object map, Lisp_Object x, Lisp_Object y)
26901 if (NILP (map))
26902 return Qnil;
26904 CHECK_NUMBER (x);
26905 CHECK_NUMBER (y);
26907 return find_hot_spot (map,
26908 clip_to_bounds (INT_MIN, XINT (x), INT_MAX),
26909 clip_to_bounds (INT_MIN, XINT (y), INT_MAX));
26913 /* Display frame CURSOR, optionally using shape defined by POINTER. */
26914 static void
26915 define_frame_cursor1 (struct frame *f, Cursor cursor, Lisp_Object pointer)
26917 /* Do not change cursor shape while dragging mouse. */
26918 if (!NILP (do_mouse_tracking))
26919 return;
26921 if (!NILP (pointer))
26923 if (EQ (pointer, Qarrow))
26924 cursor = FRAME_X_OUTPUT (f)->nontext_cursor;
26925 else if (EQ (pointer, Qhand))
26926 cursor = FRAME_X_OUTPUT (f)->hand_cursor;
26927 else if (EQ (pointer, Qtext))
26928 cursor = FRAME_X_OUTPUT (f)->text_cursor;
26929 else if (EQ (pointer, intern ("hdrag")))
26930 cursor = FRAME_X_OUTPUT (f)->horizontal_drag_cursor;
26931 #ifdef HAVE_X_WINDOWS
26932 else if (EQ (pointer, intern ("vdrag")))
26933 cursor = FRAME_X_DISPLAY_INFO (f)->vertical_scroll_bar_cursor;
26934 #endif
26935 else if (EQ (pointer, intern ("hourglass")))
26936 cursor = FRAME_X_OUTPUT (f)->hourglass_cursor;
26937 else if (EQ (pointer, Qmodeline))
26938 cursor = FRAME_X_OUTPUT (f)->modeline_cursor;
26939 else
26940 cursor = FRAME_X_OUTPUT (f)->nontext_cursor;
26943 if (cursor != No_Cursor)
26944 FRAME_RIF (f)->define_frame_cursor (f, cursor);
26947 #endif /* HAVE_WINDOW_SYSTEM */
26949 /* Take proper action when mouse has moved to the mode or header line
26950 or marginal area AREA of window W, x-position X and y-position Y.
26951 X is relative to the start of the text display area of W, so the
26952 width of bitmap areas and scroll bars must be subtracted to get a
26953 position relative to the start of the mode line. */
26955 static void
26956 note_mode_line_or_margin_highlight (Lisp_Object window, int x, int y,
26957 enum window_part area)
26959 struct window *w = XWINDOW (window);
26960 struct frame *f = XFRAME (w->frame);
26961 Mouse_HLInfo *hlinfo = MOUSE_HL_INFO (f);
26962 #ifdef HAVE_WINDOW_SYSTEM
26963 Display_Info *dpyinfo;
26964 #endif
26965 Cursor cursor = No_Cursor;
26966 Lisp_Object pointer = Qnil;
26967 int dx, dy, width, height;
26968 ptrdiff_t charpos;
26969 Lisp_Object string, object = Qnil;
26970 Lisp_Object pos IF_LINT (= Qnil), help;
26972 Lisp_Object mouse_face;
26973 int original_x_pixel = x;
26974 struct glyph * glyph = NULL, * row_start_glyph = NULL;
26975 struct glyph_row *row IF_LINT (= 0);
26977 if (area == ON_MODE_LINE || area == ON_HEADER_LINE)
26979 int x0;
26980 struct glyph *end;
26982 /* Kludge alert: mode_line_string takes X/Y in pixels, but
26983 returns them in row/column units! */
26984 string = mode_line_string (w, area, &x, &y, &charpos,
26985 &object, &dx, &dy, &width, &height);
26987 row = (area == ON_MODE_LINE
26988 ? MATRIX_MODE_LINE_ROW (w->current_matrix)
26989 : MATRIX_HEADER_LINE_ROW (w->current_matrix));
26991 /* Find the glyph under the mouse pointer. */
26992 if (row->mode_line_p && row->enabled_p)
26994 glyph = row_start_glyph = row->glyphs[TEXT_AREA];
26995 end = glyph + row->used[TEXT_AREA];
26997 for (x0 = original_x_pixel;
26998 glyph < end && x0 >= glyph->pixel_width;
26999 ++glyph)
27000 x0 -= glyph->pixel_width;
27002 if (glyph >= end)
27003 glyph = NULL;
27006 else
27008 x -= WINDOW_LEFT_SCROLL_BAR_AREA_WIDTH (w);
27009 /* Kludge alert: marginal_area_string takes X/Y in pixels, but
27010 returns them in row/column units! */
27011 string = marginal_area_string (w, area, &x, &y, &charpos,
27012 &object, &dx, &dy, &width, &height);
27015 help = Qnil;
27017 #ifdef HAVE_WINDOW_SYSTEM
27018 if (IMAGEP (object))
27020 Lisp_Object image_map, hotspot;
27021 if ((image_map = Fplist_get (XCDR (object), QCmap),
27022 !NILP (image_map))
27023 && (hotspot = find_hot_spot (image_map, dx, dy),
27024 CONSP (hotspot))
27025 && (hotspot = XCDR (hotspot), CONSP (hotspot)))
27027 Lisp_Object plist;
27029 /* Could check XCAR (hotspot) to see if we enter/leave this hot-spot.
27030 If so, we could look for mouse-enter, mouse-leave
27031 properties in PLIST (and do something...). */
27032 hotspot = XCDR (hotspot);
27033 if (CONSP (hotspot)
27034 && (plist = XCAR (hotspot), CONSP (plist)))
27036 pointer = Fplist_get (plist, Qpointer);
27037 if (NILP (pointer))
27038 pointer = Qhand;
27039 help = Fplist_get (plist, Qhelp_echo);
27040 if (!NILP (help))
27042 help_echo_string = help;
27043 XSETWINDOW (help_echo_window, w);
27044 help_echo_object = w->buffer;
27045 help_echo_pos = charpos;
27049 if (NILP (pointer))
27050 pointer = Fplist_get (XCDR (object), QCpointer);
27052 #endif /* HAVE_WINDOW_SYSTEM */
27054 if (STRINGP (string))
27055 pos = make_number (charpos);
27057 /* Set the help text and mouse pointer. If the mouse is on a part
27058 of the mode line without any text (e.g. past the right edge of
27059 the mode line text), use the default help text and pointer. */
27060 if (STRINGP (string) || area == ON_MODE_LINE)
27062 /* Arrange to display the help by setting the global variables
27063 help_echo_string, help_echo_object, and help_echo_pos. */
27064 if (NILP (help))
27066 if (STRINGP (string))
27067 help = Fget_text_property (pos, Qhelp_echo, string);
27069 if (!NILP (help))
27071 help_echo_string = help;
27072 XSETWINDOW (help_echo_window, w);
27073 help_echo_object = string;
27074 help_echo_pos = charpos;
27076 else if (area == ON_MODE_LINE)
27078 Lisp_Object default_help
27079 = buffer_local_value_1 (Qmode_line_default_help_echo,
27080 w->buffer);
27082 if (STRINGP (default_help))
27084 help_echo_string = default_help;
27085 XSETWINDOW (help_echo_window, w);
27086 help_echo_object = Qnil;
27087 help_echo_pos = -1;
27092 #ifdef HAVE_WINDOW_SYSTEM
27093 /* Change the mouse pointer according to what is under it. */
27094 if (FRAME_WINDOW_P (f))
27096 dpyinfo = FRAME_X_DISPLAY_INFO (f);
27097 if (STRINGP (string))
27099 cursor = FRAME_X_OUTPUT (f)->nontext_cursor;
27101 if (NILP (pointer))
27102 pointer = Fget_text_property (pos, Qpointer, string);
27104 /* Change the mouse pointer according to what is under X/Y. */
27105 if (NILP (pointer)
27106 && ((area == ON_MODE_LINE) || (area == ON_HEADER_LINE)))
27108 Lisp_Object map;
27109 map = Fget_text_property (pos, Qlocal_map, string);
27110 if (!KEYMAPP (map))
27111 map = Fget_text_property (pos, Qkeymap, string);
27112 if (!KEYMAPP (map))
27113 cursor = dpyinfo->vertical_scroll_bar_cursor;
27116 else
27117 /* Default mode-line pointer. */
27118 cursor = FRAME_X_DISPLAY_INFO (f)->vertical_scroll_bar_cursor;
27120 #endif
27123 /* Change the mouse face according to what is under X/Y. */
27124 if (STRINGP (string))
27126 mouse_face = Fget_text_property (pos, Qmouse_face, string);
27127 if (!NILP (mouse_face)
27128 && ((area == ON_MODE_LINE) || (area == ON_HEADER_LINE))
27129 && glyph)
27131 Lisp_Object b, e;
27133 struct glyph * tmp_glyph;
27135 int gpos;
27136 int gseq_length;
27137 int total_pixel_width;
27138 ptrdiff_t begpos, endpos, ignore;
27140 int vpos, hpos;
27142 b = Fprevious_single_property_change (make_number (charpos + 1),
27143 Qmouse_face, string, Qnil);
27144 if (NILP (b))
27145 begpos = 0;
27146 else
27147 begpos = XINT (b);
27149 e = Fnext_single_property_change (pos, Qmouse_face, string, Qnil);
27150 if (NILP (e))
27151 endpos = SCHARS (string);
27152 else
27153 endpos = XINT (e);
27155 /* Calculate the glyph position GPOS of GLYPH in the
27156 displayed string, relative to the beginning of the
27157 highlighted part of the string.
27159 Note: GPOS is different from CHARPOS. CHARPOS is the
27160 position of GLYPH in the internal string object. A mode
27161 line string format has structures which are converted to
27162 a flattened string by the Emacs Lisp interpreter. The
27163 internal string is an element of those structures. The
27164 displayed string is the flattened string. */
27165 tmp_glyph = row_start_glyph;
27166 while (tmp_glyph < glyph
27167 && (!(EQ (tmp_glyph->object, glyph->object)
27168 && begpos <= tmp_glyph->charpos
27169 && tmp_glyph->charpos < endpos)))
27170 tmp_glyph++;
27171 gpos = glyph - tmp_glyph;
27173 /* Calculate the length GSEQ_LENGTH of the glyph sequence of
27174 the highlighted part of the displayed string to which
27175 GLYPH belongs. Note: GSEQ_LENGTH is different from
27176 SCHARS (STRING), because the latter returns the length of
27177 the internal string. */
27178 for (tmp_glyph = row->glyphs[TEXT_AREA] + row->used[TEXT_AREA] - 1;
27179 tmp_glyph > glyph
27180 && (!(EQ (tmp_glyph->object, glyph->object)
27181 && begpos <= tmp_glyph->charpos
27182 && tmp_glyph->charpos < endpos));
27183 tmp_glyph--)
27185 gseq_length = gpos + (tmp_glyph - glyph) + 1;
27187 /* Calculate the total pixel width of all the glyphs between
27188 the beginning of the highlighted area and GLYPH. */
27189 total_pixel_width = 0;
27190 for (tmp_glyph = glyph - gpos; tmp_glyph != glyph; tmp_glyph++)
27191 total_pixel_width += tmp_glyph->pixel_width;
27193 /* Pre calculation of re-rendering position. Note: X is in
27194 column units here, after the call to mode_line_string or
27195 marginal_area_string. */
27196 hpos = x - gpos;
27197 vpos = (area == ON_MODE_LINE
27198 ? (w->current_matrix)->nrows - 1
27199 : 0);
27201 /* If GLYPH's position is included in the region that is
27202 already drawn in mouse face, we have nothing to do. */
27203 if ( EQ (window, hlinfo->mouse_face_window)
27204 && (!row->reversed_p
27205 ? (hlinfo->mouse_face_beg_col <= hpos
27206 && hpos < hlinfo->mouse_face_end_col)
27207 /* In R2L rows we swap BEG and END, see below. */
27208 : (hlinfo->mouse_face_end_col <= hpos
27209 && hpos < hlinfo->mouse_face_beg_col))
27210 && hlinfo->mouse_face_beg_row == vpos )
27211 return;
27213 if (clear_mouse_face (hlinfo))
27214 cursor = No_Cursor;
27216 if (!row->reversed_p)
27218 hlinfo->mouse_face_beg_col = hpos;
27219 hlinfo->mouse_face_beg_x = original_x_pixel
27220 - (total_pixel_width + dx);
27221 hlinfo->mouse_face_end_col = hpos + gseq_length;
27222 hlinfo->mouse_face_end_x = 0;
27224 else
27226 /* In R2L rows, show_mouse_face expects BEG and END
27227 coordinates to be swapped. */
27228 hlinfo->mouse_face_end_col = hpos;
27229 hlinfo->mouse_face_end_x = original_x_pixel
27230 - (total_pixel_width + dx);
27231 hlinfo->mouse_face_beg_col = hpos + gseq_length;
27232 hlinfo->mouse_face_beg_x = 0;
27235 hlinfo->mouse_face_beg_row = vpos;
27236 hlinfo->mouse_face_end_row = hlinfo->mouse_face_beg_row;
27237 hlinfo->mouse_face_beg_y = 0;
27238 hlinfo->mouse_face_end_y = 0;
27239 hlinfo->mouse_face_past_end = 0;
27240 hlinfo->mouse_face_window = window;
27242 hlinfo->mouse_face_face_id = face_at_string_position (w, string,
27243 charpos,
27244 0, 0, 0,
27245 &ignore,
27246 glyph->face_id,
27248 show_mouse_face (hlinfo, DRAW_MOUSE_FACE);
27250 if (NILP (pointer))
27251 pointer = Qhand;
27253 else if ((area == ON_MODE_LINE) || (area == ON_HEADER_LINE))
27254 clear_mouse_face (hlinfo);
27256 #ifdef HAVE_WINDOW_SYSTEM
27257 if (FRAME_WINDOW_P (f))
27258 define_frame_cursor1 (f, cursor, pointer);
27259 #endif
27263 /* EXPORT:
27264 Take proper action when the mouse has moved to position X, Y on
27265 frame F as regards highlighting characters that have mouse-face
27266 properties. Also de-highlighting chars where the mouse was before.
27267 X and Y can be negative or out of range. */
27269 void
27270 note_mouse_highlight (struct frame *f, int x, int y)
27272 Mouse_HLInfo *hlinfo = MOUSE_HL_INFO (f);
27273 enum window_part part = ON_NOTHING;
27274 Lisp_Object window;
27275 struct window *w;
27276 Cursor cursor = No_Cursor;
27277 Lisp_Object pointer = Qnil; /* Takes precedence over cursor! */
27278 struct buffer *b;
27280 /* When a menu is active, don't highlight because this looks odd. */
27281 #if defined (USE_X_TOOLKIT) || defined (USE_GTK) || defined (HAVE_NS) || defined (MSDOS)
27282 if (popup_activated ())
27283 return;
27284 #endif
27286 if (NILP (Vmouse_highlight)
27287 || !f->glyphs_initialized_p
27288 || f->pointer_invisible)
27289 return;
27291 hlinfo->mouse_face_mouse_x = x;
27292 hlinfo->mouse_face_mouse_y = y;
27293 hlinfo->mouse_face_mouse_frame = f;
27295 if (hlinfo->mouse_face_defer)
27296 return;
27298 if (gc_in_progress)
27300 hlinfo->mouse_face_deferred_gc = 1;
27301 return;
27304 /* Which window is that in? */
27305 window = window_from_coordinates (f, x, y, &part, 1);
27307 /* If displaying active text in another window, clear that. */
27308 if (! EQ (window, hlinfo->mouse_face_window)
27309 /* Also clear if we move out of text area in same window. */
27310 || (!NILP (hlinfo->mouse_face_window)
27311 && !NILP (window)
27312 && part != ON_TEXT
27313 && part != ON_MODE_LINE
27314 && part != ON_HEADER_LINE))
27315 clear_mouse_face (hlinfo);
27317 /* Not on a window -> return. */
27318 if (!WINDOWP (window))
27319 return;
27321 /* Reset help_echo_string. It will get recomputed below. */
27322 help_echo_string = Qnil;
27324 /* Convert to window-relative pixel coordinates. */
27325 w = XWINDOW (window);
27326 frame_to_window_pixel_xy (w, &x, &y);
27328 #ifdef HAVE_WINDOW_SYSTEM
27329 /* Handle tool-bar window differently since it doesn't display a
27330 buffer. */
27331 if (EQ (window, f->tool_bar_window))
27333 note_tool_bar_highlight (f, x, y);
27334 return;
27336 #endif
27338 /* Mouse is on the mode, header line or margin? */
27339 if (part == ON_MODE_LINE || part == ON_HEADER_LINE
27340 || part == ON_LEFT_MARGIN || part == ON_RIGHT_MARGIN)
27342 note_mode_line_or_margin_highlight (window, x, y, part);
27343 return;
27346 #ifdef HAVE_WINDOW_SYSTEM
27347 if (part == ON_VERTICAL_BORDER)
27349 cursor = FRAME_X_OUTPUT (f)->horizontal_drag_cursor;
27350 help_echo_string = build_string ("drag-mouse-1: resize");
27352 else if (part == ON_LEFT_FRINGE || part == ON_RIGHT_FRINGE
27353 || part == ON_SCROLL_BAR)
27354 cursor = FRAME_X_OUTPUT (f)->nontext_cursor;
27355 else
27356 cursor = FRAME_X_OUTPUT (f)->text_cursor;
27357 #endif
27359 /* Are we in a window whose display is up to date?
27360 And verify the buffer's text has not changed. */
27361 b = XBUFFER (w->buffer);
27362 if (part == ON_TEXT
27363 && EQ (w->window_end_valid, w->buffer)
27364 && XFASTINT (w->last_modified) == BUF_MODIFF (b)
27365 && XFASTINT (w->last_overlay_modified) == BUF_OVERLAY_MODIFF (b))
27367 int hpos, vpos, dx, dy, area = LAST_AREA;
27368 ptrdiff_t pos;
27369 struct glyph *glyph;
27370 Lisp_Object object;
27371 Lisp_Object mouse_face = Qnil, position;
27372 Lisp_Object *overlay_vec = NULL;
27373 ptrdiff_t i, noverlays;
27374 struct buffer *obuf;
27375 ptrdiff_t obegv, ozv;
27376 int same_region;
27378 /* Find the glyph under X/Y. */
27379 glyph = x_y_to_hpos_vpos (w, x, y, &hpos, &vpos, &dx, &dy, &area);
27381 #ifdef HAVE_WINDOW_SYSTEM
27382 /* Look for :pointer property on image. */
27383 if (glyph != NULL && glyph->type == IMAGE_GLYPH)
27385 struct image *img = IMAGE_FROM_ID (f, glyph->u.img_id);
27386 if (img != NULL && IMAGEP (img->spec))
27388 Lisp_Object image_map, hotspot;
27389 if ((image_map = Fplist_get (XCDR (img->spec), QCmap),
27390 !NILP (image_map))
27391 && (hotspot = find_hot_spot (image_map,
27392 glyph->slice.img.x + dx,
27393 glyph->slice.img.y + dy),
27394 CONSP (hotspot))
27395 && (hotspot = XCDR (hotspot), CONSP (hotspot)))
27397 Lisp_Object plist;
27399 /* Could check XCAR (hotspot) to see if we enter/leave
27400 this hot-spot.
27401 If so, we could look for mouse-enter, mouse-leave
27402 properties in PLIST (and do something...). */
27403 hotspot = XCDR (hotspot);
27404 if (CONSP (hotspot)
27405 && (plist = XCAR (hotspot), CONSP (plist)))
27407 pointer = Fplist_get (plist, Qpointer);
27408 if (NILP (pointer))
27409 pointer = Qhand;
27410 help_echo_string = Fplist_get (plist, Qhelp_echo);
27411 if (!NILP (help_echo_string))
27413 help_echo_window = window;
27414 help_echo_object = glyph->object;
27415 help_echo_pos = glyph->charpos;
27419 if (NILP (pointer))
27420 pointer = Fplist_get (XCDR (img->spec), QCpointer);
27423 #endif /* HAVE_WINDOW_SYSTEM */
27425 /* Clear mouse face if X/Y not over text. */
27426 if (glyph == NULL
27427 || area != TEXT_AREA
27428 || !MATRIX_ROW (w->current_matrix, vpos)->displays_text_p
27429 /* Glyph's OBJECT is an integer for glyphs inserted by the
27430 display engine for its internal purposes, like truncation
27431 and continuation glyphs and blanks beyond the end of
27432 line's text on text terminals. If we are over such a
27433 glyph, we are not over any text. */
27434 || INTEGERP (glyph->object)
27435 /* R2L rows have a stretch glyph at their front, which
27436 stands for no text, whereas L2R rows have no glyphs at
27437 all beyond the end of text. Treat such stretch glyphs
27438 like we do with NULL glyphs in L2R rows. */
27439 || (MATRIX_ROW (w->current_matrix, vpos)->reversed_p
27440 && glyph == MATRIX_ROW (w->current_matrix, vpos)->glyphs[TEXT_AREA]
27441 && glyph->type == STRETCH_GLYPH
27442 && glyph->avoid_cursor_p))
27444 if (clear_mouse_face (hlinfo))
27445 cursor = No_Cursor;
27446 #ifdef HAVE_WINDOW_SYSTEM
27447 if (FRAME_WINDOW_P (f) && NILP (pointer))
27449 if (area != TEXT_AREA)
27450 cursor = FRAME_X_OUTPUT (f)->nontext_cursor;
27451 else
27452 pointer = Vvoid_text_area_pointer;
27454 #endif
27455 goto set_cursor;
27458 pos = glyph->charpos;
27459 object = glyph->object;
27460 if (!STRINGP (object) && !BUFFERP (object))
27461 goto set_cursor;
27463 /* If we get an out-of-range value, return now; avoid an error. */
27464 if (BUFFERP (object) && pos > BUF_Z (b))
27465 goto set_cursor;
27467 /* Make the window's buffer temporarily current for
27468 overlays_at and compute_char_face. */
27469 obuf = current_buffer;
27470 current_buffer = b;
27471 obegv = BEGV;
27472 ozv = ZV;
27473 BEGV = BEG;
27474 ZV = Z;
27476 /* Is this char mouse-active or does it have help-echo? */
27477 position = make_number (pos);
27479 if (BUFFERP (object))
27481 /* Put all the overlays we want in a vector in overlay_vec. */
27482 GET_OVERLAYS_AT (pos, overlay_vec, noverlays, NULL, 0);
27483 /* Sort overlays into increasing priority order. */
27484 noverlays = sort_overlays (overlay_vec, noverlays, w);
27486 else
27487 noverlays = 0;
27489 same_region = coords_in_mouse_face_p (w, hpos, vpos);
27491 if (same_region)
27492 cursor = No_Cursor;
27494 /* Check mouse-face highlighting. */
27495 if (! same_region
27496 /* If there exists an overlay with mouse-face overlapping
27497 the one we are currently highlighting, we have to
27498 check if we enter the overlapping overlay, and then
27499 highlight only that. */
27500 || (OVERLAYP (hlinfo->mouse_face_overlay)
27501 && mouse_face_overlay_overlaps (hlinfo->mouse_face_overlay)))
27503 /* Find the highest priority overlay with a mouse-face. */
27504 Lisp_Object overlay = Qnil;
27505 for (i = noverlays - 1; i >= 0 && NILP (overlay); --i)
27507 mouse_face = Foverlay_get (overlay_vec[i], Qmouse_face);
27508 if (!NILP (mouse_face))
27509 overlay = overlay_vec[i];
27512 /* If we're highlighting the same overlay as before, there's
27513 no need to do that again. */
27514 if (!NILP (overlay) && EQ (overlay, hlinfo->mouse_face_overlay))
27515 goto check_help_echo;
27516 hlinfo->mouse_face_overlay = overlay;
27518 /* Clear the display of the old active region, if any. */
27519 if (clear_mouse_face (hlinfo))
27520 cursor = No_Cursor;
27522 /* If no overlay applies, get a text property. */
27523 if (NILP (overlay))
27524 mouse_face = Fget_text_property (position, Qmouse_face, object);
27526 /* Next, compute the bounds of the mouse highlighting and
27527 display it. */
27528 if (!NILP (mouse_face) && STRINGP (object))
27530 /* The mouse-highlighting comes from a display string
27531 with a mouse-face. */
27532 Lisp_Object s, e;
27533 ptrdiff_t ignore;
27535 s = Fprevious_single_property_change
27536 (make_number (pos + 1), Qmouse_face, object, Qnil);
27537 e = Fnext_single_property_change
27538 (position, Qmouse_face, object, Qnil);
27539 if (NILP (s))
27540 s = make_number (0);
27541 if (NILP (e))
27542 e = make_number (SCHARS (object) - 1);
27543 mouse_face_from_string_pos (w, hlinfo, object,
27544 XINT (s), XINT (e));
27545 hlinfo->mouse_face_past_end = 0;
27546 hlinfo->mouse_face_window = window;
27547 hlinfo->mouse_face_face_id
27548 = face_at_string_position (w, object, pos, 0, 0, 0, &ignore,
27549 glyph->face_id, 1);
27550 show_mouse_face (hlinfo, DRAW_MOUSE_FACE);
27551 cursor = No_Cursor;
27553 else
27555 /* The mouse-highlighting, if any, comes from an overlay
27556 or text property in the buffer. */
27557 Lisp_Object buffer IF_LINT (= Qnil);
27558 Lisp_Object disp_string IF_LINT (= Qnil);
27560 if (STRINGP (object))
27562 /* If we are on a display string with no mouse-face,
27563 check if the text under it has one. */
27564 struct glyph_row *r = MATRIX_ROW (w->current_matrix, vpos);
27565 ptrdiff_t start = MATRIX_ROW_START_CHARPOS (r);
27566 pos = string_buffer_position (object, start);
27567 if (pos > 0)
27569 mouse_face = get_char_property_and_overlay
27570 (make_number (pos), Qmouse_face, w->buffer, &overlay);
27571 buffer = w->buffer;
27572 disp_string = object;
27575 else
27577 buffer = object;
27578 disp_string = Qnil;
27581 if (!NILP (mouse_face))
27583 Lisp_Object before, after;
27584 Lisp_Object before_string, after_string;
27585 /* To correctly find the limits of mouse highlight
27586 in a bidi-reordered buffer, we must not use the
27587 optimization of limiting the search in
27588 previous-single-property-change and
27589 next-single-property-change, because
27590 rows_from_pos_range needs the real start and end
27591 positions to DTRT in this case. That's because
27592 the first row visible in a window does not
27593 necessarily display the character whose position
27594 is the smallest. */
27595 Lisp_Object lim1 =
27596 NILP (BVAR (XBUFFER (buffer), bidi_display_reordering))
27597 ? Fmarker_position (w->start)
27598 : Qnil;
27599 Lisp_Object lim2 =
27600 NILP (BVAR (XBUFFER (buffer), bidi_display_reordering))
27601 ? make_number (BUF_Z (XBUFFER (buffer))
27602 - XFASTINT (w->window_end_pos))
27603 : Qnil;
27605 if (NILP (overlay))
27607 /* Handle the text property case. */
27608 before = Fprevious_single_property_change
27609 (make_number (pos + 1), Qmouse_face, buffer, lim1);
27610 after = Fnext_single_property_change
27611 (make_number (pos), Qmouse_face, buffer, lim2);
27612 before_string = after_string = Qnil;
27614 else
27616 /* Handle the overlay case. */
27617 before = Foverlay_start (overlay);
27618 after = Foverlay_end (overlay);
27619 before_string = Foverlay_get (overlay, Qbefore_string);
27620 after_string = Foverlay_get (overlay, Qafter_string);
27622 if (!STRINGP (before_string)) before_string = Qnil;
27623 if (!STRINGP (after_string)) after_string = Qnil;
27626 mouse_face_from_buffer_pos (window, hlinfo, pos,
27627 NILP (before)
27629 : XFASTINT (before),
27630 NILP (after)
27631 ? BUF_Z (XBUFFER (buffer))
27632 : XFASTINT (after),
27633 before_string, after_string,
27634 disp_string);
27635 cursor = No_Cursor;
27640 check_help_echo:
27642 /* Look for a `help-echo' property. */
27643 if (NILP (help_echo_string)) {
27644 Lisp_Object help, overlay;
27646 /* Check overlays first. */
27647 help = overlay = Qnil;
27648 for (i = noverlays - 1; i >= 0 && NILP (help); --i)
27650 overlay = overlay_vec[i];
27651 help = Foverlay_get (overlay, Qhelp_echo);
27654 if (!NILP (help))
27656 help_echo_string = help;
27657 help_echo_window = window;
27658 help_echo_object = overlay;
27659 help_echo_pos = pos;
27661 else
27663 Lisp_Object obj = glyph->object;
27664 ptrdiff_t charpos = glyph->charpos;
27666 /* Try text properties. */
27667 if (STRINGP (obj)
27668 && charpos >= 0
27669 && charpos < SCHARS (obj))
27671 help = Fget_text_property (make_number (charpos),
27672 Qhelp_echo, obj);
27673 if (NILP (help))
27675 /* If the string itself doesn't specify a help-echo,
27676 see if the buffer text ``under'' it does. */
27677 struct glyph_row *r
27678 = MATRIX_ROW (w->current_matrix, vpos);
27679 ptrdiff_t start = MATRIX_ROW_START_CHARPOS (r);
27680 ptrdiff_t p = string_buffer_position (obj, start);
27681 if (p > 0)
27683 help = Fget_char_property (make_number (p),
27684 Qhelp_echo, w->buffer);
27685 if (!NILP (help))
27687 charpos = p;
27688 obj = w->buffer;
27693 else if (BUFFERP (obj)
27694 && charpos >= BEGV
27695 && charpos < ZV)
27696 help = Fget_text_property (make_number (charpos), Qhelp_echo,
27697 obj);
27699 if (!NILP (help))
27701 help_echo_string = help;
27702 help_echo_window = window;
27703 help_echo_object = obj;
27704 help_echo_pos = charpos;
27709 #ifdef HAVE_WINDOW_SYSTEM
27710 /* Look for a `pointer' property. */
27711 if (FRAME_WINDOW_P (f) && NILP (pointer))
27713 /* Check overlays first. */
27714 for (i = noverlays - 1; i >= 0 && NILP (pointer); --i)
27715 pointer = Foverlay_get (overlay_vec[i], Qpointer);
27717 if (NILP (pointer))
27719 Lisp_Object obj = glyph->object;
27720 ptrdiff_t charpos = glyph->charpos;
27722 /* Try text properties. */
27723 if (STRINGP (obj)
27724 && charpos >= 0
27725 && charpos < SCHARS (obj))
27727 pointer = Fget_text_property (make_number (charpos),
27728 Qpointer, obj);
27729 if (NILP (pointer))
27731 /* If the string itself doesn't specify a pointer,
27732 see if the buffer text ``under'' it does. */
27733 struct glyph_row *r
27734 = MATRIX_ROW (w->current_matrix, vpos);
27735 ptrdiff_t start = MATRIX_ROW_START_CHARPOS (r);
27736 ptrdiff_t p = string_buffer_position (obj, start);
27737 if (p > 0)
27738 pointer = Fget_char_property (make_number (p),
27739 Qpointer, w->buffer);
27742 else if (BUFFERP (obj)
27743 && charpos >= BEGV
27744 && charpos < ZV)
27745 pointer = Fget_text_property (make_number (charpos),
27746 Qpointer, obj);
27749 #endif /* HAVE_WINDOW_SYSTEM */
27751 BEGV = obegv;
27752 ZV = ozv;
27753 current_buffer = obuf;
27756 set_cursor:
27758 #ifdef HAVE_WINDOW_SYSTEM
27759 if (FRAME_WINDOW_P (f))
27760 define_frame_cursor1 (f, cursor, pointer);
27761 #else
27762 /* This is here to prevent a compiler error, about "label at end of
27763 compound statement". */
27764 return;
27765 #endif
27769 /* EXPORT for RIF:
27770 Clear any mouse-face on window W. This function is part of the
27771 redisplay interface, and is called from try_window_id and similar
27772 functions to ensure the mouse-highlight is off. */
27774 void
27775 x_clear_window_mouse_face (struct window *w)
27777 Mouse_HLInfo *hlinfo = MOUSE_HL_INFO (XFRAME (w->frame));
27778 Lisp_Object window;
27780 BLOCK_INPUT;
27781 XSETWINDOW (window, w);
27782 if (EQ (window, hlinfo->mouse_face_window))
27783 clear_mouse_face (hlinfo);
27784 UNBLOCK_INPUT;
27788 /* EXPORT:
27789 Just discard the mouse face information for frame F, if any.
27790 This is used when the size of F is changed. */
27792 void
27793 cancel_mouse_face (struct frame *f)
27795 Lisp_Object window;
27796 Mouse_HLInfo *hlinfo = MOUSE_HL_INFO (f);
27798 window = hlinfo->mouse_face_window;
27799 if (! NILP (window) && XFRAME (XWINDOW (window)->frame) == f)
27801 hlinfo->mouse_face_beg_row = hlinfo->mouse_face_beg_col = -1;
27802 hlinfo->mouse_face_end_row = hlinfo->mouse_face_end_col = -1;
27803 hlinfo->mouse_face_window = Qnil;
27809 /***********************************************************************
27810 Exposure Events
27811 ***********************************************************************/
27813 #ifdef HAVE_WINDOW_SYSTEM
27815 /* Redraw the part of glyph row area AREA of glyph row ROW on window W
27816 which intersects rectangle R. R is in window-relative coordinates. */
27818 static void
27819 expose_area (struct window *w, struct glyph_row *row, XRectangle *r,
27820 enum glyph_row_area area)
27822 struct glyph *first = row->glyphs[area];
27823 struct glyph *end = row->glyphs[area] + row->used[area];
27824 struct glyph *last;
27825 int first_x, start_x, x;
27827 if (area == TEXT_AREA && row->fill_line_p)
27828 /* If row extends face to end of line write the whole line. */
27829 draw_glyphs (w, 0, row, area,
27830 0, row->used[area],
27831 DRAW_NORMAL_TEXT, 0);
27832 else
27834 /* Set START_X to the window-relative start position for drawing glyphs of
27835 AREA. The first glyph of the text area can be partially visible.
27836 The first glyphs of other areas cannot. */
27837 start_x = window_box_left_offset (w, area);
27838 x = start_x;
27839 if (area == TEXT_AREA)
27840 x += row->x;
27842 /* Find the first glyph that must be redrawn. */
27843 while (first < end
27844 && x + first->pixel_width < r->x)
27846 x += first->pixel_width;
27847 ++first;
27850 /* Find the last one. */
27851 last = first;
27852 first_x = x;
27853 while (last < end
27854 && x < r->x + r->width)
27856 x += last->pixel_width;
27857 ++last;
27860 /* Repaint. */
27861 if (last > first)
27862 draw_glyphs (w, first_x - start_x, row, area,
27863 first - row->glyphs[area], last - row->glyphs[area],
27864 DRAW_NORMAL_TEXT, 0);
27869 /* Redraw the parts of the glyph row ROW on window W intersecting
27870 rectangle R. R is in window-relative coordinates. Value is
27871 non-zero if mouse-face was overwritten. */
27873 static int
27874 expose_line (struct window *w, struct glyph_row *row, XRectangle *r)
27876 xassert (row->enabled_p);
27878 if (row->mode_line_p || w->pseudo_window_p)
27879 draw_glyphs (w, 0, row, TEXT_AREA,
27880 0, row->used[TEXT_AREA],
27881 DRAW_NORMAL_TEXT, 0);
27882 else
27884 if (row->used[LEFT_MARGIN_AREA])
27885 expose_area (w, row, r, LEFT_MARGIN_AREA);
27886 if (row->used[TEXT_AREA])
27887 expose_area (w, row, r, TEXT_AREA);
27888 if (row->used[RIGHT_MARGIN_AREA])
27889 expose_area (w, row, r, RIGHT_MARGIN_AREA);
27890 draw_row_fringe_bitmaps (w, row);
27893 return row->mouse_face_p;
27897 /* Redraw those parts of glyphs rows during expose event handling that
27898 overlap other rows. Redrawing of an exposed line writes over parts
27899 of lines overlapping that exposed line; this function fixes that.
27901 W is the window being exposed. FIRST_OVERLAPPING_ROW is the first
27902 row in W's current matrix that is exposed and overlaps other rows.
27903 LAST_OVERLAPPING_ROW is the last such row. */
27905 static void
27906 expose_overlaps (struct window *w,
27907 struct glyph_row *first_overlapping_row,
27908 struct glyph_row *last_overlapping_row,
27909 XRectangle *r)
27911 struct glyph_row *row;
27913 for (row = first_overlapping_row; row <= last_overlapping_row; ++row)
27914 if (row->overlapping_p)
27916 xassert (row->enabled_p && !row->mode_line_p);
27918 row->clip = r;
27919 if (row->used[LEFT_MARGIN_AREA])
27920 x_fix_overlapping_area (w, row, LEFT_MARGIN_AREA, OVERLAPS_BOTH);
27922 if (row->used[TEXT_AREA])
27923 x_fix_overlapping_area (w, row, TEXT_AREA, OVERLAPS_BOTH);
27925 if (row->used[RIGHT_MARGIN_AREA])
27926 x_fix_overlapping_area (w, row, RIGHT_MARGIN_AREA, OVERLAPS_BOTH);
27927 row->clip = NULL;
27932 /* Return non-zero if W's cursor intersects rectangle R. */
27934 static int
27935 phys_cursor_in_rect_p (struct window *w, XRectangle *r)
27937 XRectangle cr, result;
27938 struct glyph *cursor_glyph;
27939 struct glyph_row *row;
27941 if (w->phys_cursor.vpos >= 0
27942 && w->phys_cursor.vpos < w->current_matrix->nrows
27943 && (row = MATRIX_ROW (w->current_matrix, w->phys_cursor.vpos),
27944 row->enabled_p)
27945 && row->cursor_in_fringe_p)
27947 /* Cursor is in the fringe. */
27948 cr.x = window_box_right_offset (w,
27949 (WINDOW_HAS_FRINGES_OUTSIDE_MARGINS (w)
27950 ? RIGHT_MARGIN_AREA
27951 : TEXT_AREA));
27952 cr.y = row->y;
27953 cr.width = WINDOW_RIGHT_FRINGE_WIDTH (w);
27954 cr.height = row->height;
27955 return x_intersect_rectangles (&cr, r, &result);
27958 cursor_glyph = get_phys_cursor_glyph (w);
27959 if (cursor_glyph)
27961 /* r is relative to W's box, but w->phys_cursor.x is relative
27962 to left edge of W's TEXT area. Adjust it. */
27963 cr.x = window_box_left_offset (w, TEXT_AREA) + w->phys_cursor.x;
27964 cr.y = w->phys_cursor.y;
27965 cr.width = cursor_glyph->pixel_width;
27966 cr.height = w->phys_cursor_height;
27967 /* ++KFS: W32 version used W32-specific IntersectRect here, but
27968 I assume the effect is the same -- and this is portable. */
27969 return x_intersect_rectangles (&cr, r, &result);
27971 /* If we don't understand the format, pretend we're not in the hot-spot. */
27972 return 0;
27976 /* EXPORT:
27977 Draw a vertical window border to the right of window W if W doesn't
27978 have vertical scroll bars. */
27980 void
27981 x_draw_vertical_border (struct window *w)
27983 struct frame *f = XFRAME (WINDOW_FRAME (w));
27985 /* We could do better, if we knew what type of scroll-bar the adjacent
27986 windows (on either side) have... But we don't :-(
27987 However, I think this works ok. ++KFS 2003-04-25 */
27989 /* Redraw borders between horizontally adjacent windows. Don't
27990 do it for frames with vertical scroll bars because either the
27991 right scroll bar of a window, or the left scroll bar of its
27992 neighbor will suffice as a border. */
27993 if (FRAME_HAS_VERTICAL_SCROLL_BARS (XFRAME (w->frame)))
27994 return;
27996 if (!WINDOW_RIGHTMOST_P (w)
27997 && !WINDOW_HAS_VERTICAL_SCROLL_BAR_ON_RIGHT (w))
27999 int x0, x1, y0, y1;
28001 window_box_edges (w, -1, &x0, &y0, &x1, &y1);
28002 y1 -= 1;
28004 if (WINDOW_LEFT_FRINGE_WIDTH (w) == 0)
28005 x1 -= 1;
28007 FRAME_RIF (f)->draw_vertical_window_border (w, x1, y0, y1);
28009 else if (!WINDOW_LEFTMOST_P (w)
28010 && !WINDOW_HAS_VERTICAL_SCROLL_BAR_ON_LEFT (w))
28012 int x0, x1, y0, y1;
28014 window_box_edges (w, -1, &x0, &y0, &x1, &y1);
28015 y1 -= 1;
28017 if (WINDOW_LEFT_FRINGE_WIDTH (w) == 0)
28018 x0 -= 1;
28020 FRAME_RIF (f)->draw_vertical_window_border (w, x0, y0, y1);
28025 /* Redraw the part of window W intersection rectangle FR. Pixel
28026 coordinates in FR are frame-relative. Call this function with
28027 input blocked. Value is non-zero if the exposure overwrites
28028 mouse-face. */
28030 static int
28031 expose_window (struct window *w, XRectangle *fr)
28033 struct frame *f = XFRAME (w->frame);
28034 XRectangle wr, r;
28035 int mouse_face_overwritten_p = 0;
28037 /* If window is not yet fully initialized, do nothing. This can
28038 happen when toolkit scroll bars are used and a window is split.
28039 Reconfiguring the scroll bar will generate an expose for a newly
28040 created window. */
28041 if (w->current_matrix == NULL)
28042 return 0;
28044 /* When we're currently updating the window, display and current
28045 matrix usually don't agree. Arrange for a thorough display
28046 later. */
28047 if (w == updated_window)
28049 SET_FRAME_GARBAGED (f);
28050 return 0;
28053 /* Frame-relative pixel rectangle of W. */
28054 wr.x = WINDOW_LEFT_EDGE_X (w);
28055 wr.y = WINDOW_TOP_EDGE_Y (w);
28056 wr.width = WINDOW_TOTAL_WIDTH (w);
28057 wr.height = WINDOW_TOTAL_HEIGHT (w);
28059 if (x_intersect_rectangles (fr, &wr, &r))
28061 int yb = window_text_bottom_y (w);
28062 struct glyph_row *row;
28063 int cursor_cleared_p, phys_cursor_on_p;
28064 struct glyph_row *first_overlapping_row, *last_overlapping_row;
28066 TRACE ((stderr, "expose_window (%d, %d, %d, %d)\n",
28067 r.x, r.y, r.width, r.height));
28069 /* Convert to window coordinates. */
28070 r.x -= WINDOW_LEFT_EDGE_X (w);
28071 r.y -= WINDOW_TOP_EDGE_Y (w);
28073 /* Turn off the cursor. */
28074 if (!w->pseudo_window_p
28075 && phys_cursor_in_rect_p (w, &r))
28077 x_clear_cursor (w);
28078 cursor_cleared_p = 1;
28080 else
28081 cursor_cleared_p = 0;
28083 /* If the row containing the cursor extends face to end of line,
28084 then expose_area might overwrite the cursor outside the
28085 rectangle and thus notice_overwritten_cursor might clear
28086 w->phys_cursor_on_p. We remember the original value and
28087 check later if it is changed. */
28088 phys_cursor_on_p = w->phys_cursor_on_p;
28090 /* Update lines intersecting rectangle R. */
28091 first_overlapping_row = last_overlapping_row = NULL;
28092 for (row = w->current_matrix->rows;
28093 row->enabled_p;
28094 ++row)
28096 int y0 = row->y;
28097 int y1 = MATRIX_ROW_BOTTOM_Y (row);
28099 if ((y0 >= r.y && y0 < r.y + r.height)
28100 || (y1 > r.y && y1 < r.y + r.height)
28101 || (r.y >= y0 && r.y < y1)
28102 || (r.y + r.height > y0 && r.y + r.height < y1))
28104 /* A header line may be overlapping, but there is no need
28105 to fix overlapping areas for them. KFS 2005-02-12 */
28106 if (row->overlapping_p && !row->mode_line_p)
28108 if (first_overlapping_row == NULL)
28109 first_overlapping_row = row;
28110 last_overlapping_row = row;
28113 row->clip = fr;
28114 if (expose_line (w, row, &r))
28115 mouse_face_overwritten_p = 1;
28116 row->clip = NULL;
28118 else if (row->overlapping_p)
28120 /* We must redraw a row overlapping the exposed area. */
28121 if (y0 < r.y
28122 ? y0 + row->phys_height > r.y
28123 : y0 + row->ascent - row->phys_ascent < r.y +r.height)
28125 if (first_overlapping_row == NULL)
28126 first_overlapping_row = row;
28127 last_overlapping_row = row;
28131 if (y1 >= yb)
28132 break;
28135 /* Display the mode line if there is one. */
28136 if (WINDOW_WANTS_MODELINE_P (w)
28137 && (row = MATRIX_MODE_LINE_ROW (w->current_matrix),
28138 row->enabled_p)
28139 && row->y < r.y + r.height)
28141 if (expose_line (w, row, &r))
28142 mouse_face_overwritten_p = 1;
28145 if (!w->pseudo_window_p)
28147 /* Fix the display of overlapping rows. */
28148 if (first_overlapping_row)
28149 expose_overlaps (w, first_overlapping_row, last_overlapping_row,
28150 fr);
28152 /* Draw border between windows. */
28153 x_draw_vertical_border (w);
28155 /* Turn the cursor on again. */
28156 if (cursor_cleared_p
28157 || (phys_cursor_on_p && !w->phys_cursor_on_p))
28158 update_window_cursor (w, 1);
28162 return mouse_face_overwritten_p;
28167 /* Redraw (parts) of all windows in the window tree rooted at W that
28168 intersect R. R contains frame pixel coordinates. Value is
28169 non-zero if the exposure overwrites mouse-face. */
28171 static int
28172 expose_window_tree (struct window *w, XRectangle *r)
28174 struct frame *f = XFRAME (w->frame);
28175 int mouse_face_overwritten_p = 0;
28177 while (w && !FRAME_GARBAGED_P (f))
28179 if (!NILP (w->hchild))
28180 mouse_face_overwritten_p
28181 |= expose_window_tree (XWINDOW (w->hchild), r);
28182 else if (!NILP (w->vchild))
28183 mouse_face_overwritten_p
28184 |= expose_window_tree (XWINDOW (w->vchild), r);
28185 else
28186 mouse_face_overwritten_p |= expose_window (w, r);
28188 w = NILP (w->next) ? NULL : XWINDOW (w->next);
28191 return mouse_face_overwritten_p;
28195 /* EXPORT:
28196 Redisplay an exposed area of frame F. X and Y are the upper-left
28197 corner of the exposed rectangle. W and H are width and height of
28198 the exposed area. All are pixel values. W or H zero means redraw
28199 the entire frame. */
28201 void
28202 expose_frame (struct frame *f, int x, int y, int w, int h)
28204 XRectangle r;
28205 int mouse_face_overwritten_p = 0;
28207 TRACE ((stderr, "expose_frame "));
28209 /* No need to redraw if frame will be redrawn soon. */
28210 if (FRAME_GARBAGED_P (f))
28212 TRACE ((stderr, " garbaged\n"));
28213 return;
28216 /* If basic faces haven't been realized yet, there is no point in
28217 trying to redraw anything. This can happen when we get an expose
28218 event while Emacs is starting, e.g. by moving another window. */
28219 if (FRAME_FACE_CACHE (f) == NULL
28220 || FRAME_FACE_CACHE (f)->used < BASIC_FACE_ID_SENTINEL)
28222 TRACE ((stderr, " no faces\n"));
28223 return;
28226 if (w == 0 || h == 0)
28228 r.x = r.y = 0;
28229 r.width = FRAME_COLUMN_WIDTH (f) * FRAME_COLS (f);
28230 r.height = FRAME_LINE_HEIGHT (f) * FRAME_LINES (f);
28232 else
28234 r.x = x;
28235 r.y = y;
28236 r.width = w;
28237 r.height = h;
28240 TRACE ((stderr, "(%d, %d, %d, %d)\n", r.x, r.y, r.width, r.height));
28241 mouse_face_overwritten_p = expose_window_tree (XWINDOW (f->root_window), &r);
28243 if (WINDOWP (f->tool_bar_window))
28244 mouse_face_overwritten_p
28245 |= expose_window (XWINDOW (f->tool_bar_window), &r);
28247 #ifdef HAVE_X_WINDOWS
28248 #ifndef MSDOS
28249 #ifndef USE_X_TOOLKIT
28250 if (WINDOWP (f->menu_bar_window))
28251 mouse_face_overwritten_p
28252 |= expose_window (XWINDOW (f->menu_bar_window), &r);
28253 #endif /* not USE_X_TOOLKIT */
28254 #endif
28255 #endif
28257 /* Some window managers support a focus-follows-mouse style with
28258 delayed raising of frames. Imagine a partially obscured frame,
28259 and moving the mouse into partially obscured mouse-face on that
28260 frame. The visible part of the mouse-face will be highlighted,
28261 then the WM raises the obscured frame. With at least one WM, KDE
28262 2.1, Emacs is not getting any event for the raising of the frame
28263 (even tried with SubstructureRedirectMask), only Expose events.
28264 These expose events will draw text normally, i.e. not
28265 highlighted. Which means we must redo the highlight here.
28266 Subsume it under ``we love X''. --gerd 2001-08-15 */
28267 /* Included in Windows version because Windows most likely does not
28268 do the right thing if any third party tool offers
28269 focus-follows-mouse with delayed raise. --jason 2001-10-12 */
28270 if (mouse_face_overwritten_p && !FRAME_GARBAGED_P (f))
28272 Mouse_HLInfo *hlinfo = MOUSE_HL_INFO (f);
28273 if (f == hlinfo->mouse_face_mouse_frame)
28275 int mouse_x = hlinfo->mouse_face_mouse_x;
28276 int mouse_y = hlinfo->mouse_face_mouse_y;
28277 clear_mouse_face (hlinfo);
28278 note_mouse_highlight (f, mouse_x, mouse_y);
28284 /* EXPORT:
28285 Determine the intersection of two rectangles R1 and R2. Return
28286 the intersection in *RESULT. Value is non-zero if RESULT is not
28287 empty. */
28290 x_intersect_rectangles (XRectangle *r1, XRectangle *r2, XRectangle *result)
28292 XRectangle *left, *right;
28293 XRectangle *upper, *lower;
28294 int intersection_p = 0;
28296 /* Rearrange so that R1 is the left-most rectangle. */
28297 if (r1->x < r2->x)
28298 left = r1, right = r2;
28299 else
28300 left = r2, right = r1;
28302 /* X0 of the intersection is right.x0, if this is inside R1,
28303 otherwise there is no intersection. */
28304 if (right->x <= left->x + left->width)
28306 result->x = right->x;
28308 /* The right end of the intersection is the minimum of
28309 the right ends of left and right. */
28310 result->width = (min (left->x + left->width, right->x + right->width)
28311 - result->x);
28313 /* Same game for Y. */
28314 if (r1->y < r2->y)
28315 upper = r1, lower = r2;
28316 else
28317 upper = r2, lower = r1;
28319 /* The upper end of the intersection is lower.y0, if this is inside
28320 of upper. Otherwise, there is no intersection. */
28321 if (lower->y <= upper->y + upper->height)
28323 result->y = lower->y;
28325 /* The lower end of the intersection is the minimum of the lower
28326 ends of upper and lower. */
28327 result->height = (min (lower->y + lower->height,
28328 upper->y + upper->height)
28329 - result->y);
28330 intersection_p = 1;
28334 return intersection_p;
28337 #endif /* HAVE_WINDOW_SYSTEM */
28340 /***********************************************************************
28341 Initialization
28342 ***********************************************************************/
28344 void
28345 syms_of_xdisp (void)
28347 Vwith_echo_area_save_vector = Qnil;
28348 staticpro (&Vwith_echo_area_save_vector);
28350 Vmessage_stack = Qnil;
28351 staticpro (&Vmessage_stack);
28353 DEFSYM (Qinhibit_redisplay, "inhibit-redisplay");
28355 message_dolog_marker1 = Fmake_marker ();
28356 staticpro (&message_dolog_marker1);
28357 message_dolog_marker2 = Fmake_marker ();
28358 staticpro (&message_dolog_marker2);
28359 message_dolog_marker3 = Fmake_marker ();
28360 staticpro (&message_dolog_marker3);
28362 #if GLYPH_DEBUG
28363 defsubr (&Sdump_frame_glyph_matrix);
28364 defsubr (&Sdump_glyph_matrix);
28365 defsubr (&Sdump_glyph_row);
28366 defsubr (&Sdump_tool_bar_row);
28367 defsubr (&Strace_redisplay);
28368 defsubr (&Strace_to_stderr);
28369 #endif
28370 #ifdef HAVE_WINDOW_SYSTEM
28371 defsubr (&Stool_bar_lines_needed);
28372 defsubr (&Slookup_image_map);
28373 #endif
28374 defsubr (&Sformat_mode_line);
28375 defsubr (&Sinvisible_p);
28376 defsubr (&Scurrent_bidi_paragraph_direction);
28378 DEFSYM (Qmenu_bar_update_hook, "menu-bar-update-hook");
28379 DEFSYM (Qoverriding_terminal_local_map, "overriding-terminal-local-map");
28380 DEFSYM (Qoverriding_local_map, "overriding-local-map");
28381 DEFSYM (Qwindow_scroll_functions, "window-scroll-functions");
28382 DEFSYM (Qwindow_text_change_functions, "window-text-change-functions");
28383 DEFSYM (Qredisplay_end_trigger_functions, "redisplay-end-trigger-functions");
28384 DEFSYM (Qinhibit_point_motion_hooks, "inhibit-point-motion-hooks");
28385 DEFSYM (Qeval, "eval");
28386 DEFSYM (QCdata, ":data");
28387 DEFSYM (Qdisplay, "display");
28388 DEFSYM (Qspace_width, "space-width");
28389 DEFSYM (Qraise, "raise");
28390 DEFSYM (Qslice, "slice");
28391 DEFSYM (Qspace, "space");
28392 DEFSYM (Qmargin, "margin");
28393 DEFSYM (Qpointer, "pointer");
28394 DEFSYM (Qleft_margin, "left-margin");
28395 DEFSYM (Qright_margin, "right-margin");
28396 DEFSYM (Qcenter, "center");
28397 DEFSYM (Qline_height, "line-height");
28398 DEFSYM (QCalign_to, ":align-to");
28399 DEFSYM (QCrelative_width, ":relative-width");
28400 DEFSYM (QCrelative_height, ":relative-height");
28401 DEFSYM (QCeval, ":eval");
28402 DEFSYM (QCpropertize, ":propertize");
28403 DEFSYM (QCfile, ":file");
28404 DEFSYM (Qfontified, "fontified");
28405 DEFSYM (Qfontification_functions, "fontification-functions");
28406 DEFSYM (Qtrailing_whitespace, "trailing-whitespace");
28407 DEFSYM (Qescape_glyph, "escape-glyph");
28408 DEFSYM (Qnobreak_space, "nobreak-space");
28409 DEFSYM (Qimage, "image");
28410 DEFSYM (Qtext, "text");
28411 DEFSYM (Qboth, "both");
28412 DEFSYM (Qboth_horiz, "both-horiz");
28413 DEFSYM (Qtext_image_horiz, "text-image-horiz");
28414 DEFSYM (QCmap, ":map");
28415 DEFSYM (QCpointer, ":pointer");
28416 DEFSYM (Qrect, "rect");
28417 DEFSYM (Qcircle, "circle");
28418 DEFSYM (Qpoly, "poly");
28419 DEFSYM (Qmessage_truncate_lines, "message-truncate-lines");
28420 DEFSYM (Qgrow_only, "grow-only");
28421 DEFSYM (Qinhibit_menubar_update, "inhibit-menubar-update");
28422 DEFSYM (Qinhibit_eval_during_redisplay, "inhibit-eval-during-redisplay");
28423 DEFSYM (Qposition, "position");
28424 DEFSYM (Qbuffer_position, "buffer-position");
28425 DEFSYM (Qobject, "object");
28426 DEFSYM (Qbar, "bar");
28427 DEFSYM (Qhbar, "hbar");
28428 DEFSYM (Qbox, "box");
28429 DEFSYM (Qhollow, "hollow");
28430 DEFSYM (Qhand, "hand");
28431 DEFSYM (Qarrow, "arrow");
28432 DEFSYM (Qinhibit_free_realized_faces, "inhibit-free-realized-faces");
28434 list_of_error = Fcons (Fcons (intern_c_string ("error"),
28435 Fcons (intern_c_string ("void-variable"), Qnil)),
28436 Qnil);
28437 staticpro (&list_of_error);
28439 DEFSYM (Qlast_arrow_position, "last-arrow-position");
28440 DEFSYM (Qlast_arrow_string, "last-arrow-string");
28441 DEFSYM (Qoverlay_arrow_string, "overlay-arrow-string");
28442 DEFSYM (Qoverlay_arrow_bitmap, "overlay-arrow-bitmap");
28444 echo_buffer[0] = echo_buffer[1] = Qnil;
28445 staticpro (&echo_buffer[0]);
28446 staticpro (&echo_buffer[1]);
28448 echo_area_buffer[0] = echo_area_buffer[1] = Qnil;
28449 staticpro (&echo_area_buffer[0]);
28450 staticpro (&echo_area_buffer[1]);
28452 Vmessages_buffer_name = make_pure_c_string ("*Messages*");
28453 staticpro (&Vmessages_buffer_name);
28455 mode_line_proptrans_alist = Qnil;
28456 staticpro (&mode_line_proptrans_alist);
28457 mode_line_string_list = Qnil;
28458 staticpro (&mode_line_string_list);
28459 mode_line_string_face = Qnil;
28460 staticpro (&mode_line_string_face);
28461 mode_line_string_face_prop = Qnil;
28462 staticpro (&mode_line_string_face_prop);
28463 Vmode_line_unwind_vector = Qnil;
28464 staticpro (&Vmode_line_unwind_vector);
28466 DEFSYM (Qmode_line_default_help_echo, "mode-line-default-help-echo");
28468 help_echo_string = Qnil;
28469 staticpro (&help_echo_string);
28470 help_echo_object = Qnil;
28471 staticpro (&help_echo_object);
28472 help_echo_window = Qnil;
28473 staticpro (&help_echo_window);
28474 previous_help_echo_string = Qnil;
28475 staticpro (&previous_help_echo_string);
28476 help_echo_pos = -1;
28478 DEFSYM (Qright_to_left, "right-to-left");
28479 DEFSYM (Qleft_to_right, "left-to-right");
28481 #ifdef HAVE_WINDOW_SYSTEM
28482 DEFVAR_BOOL ("x-stretch-cursor", x_stretch_cursor_p,
28483 doc: /* Non-nil means draw block cursor as wide as the glyph under it.
28484 For example, if a block cursor is over a tab, it will be drawn as
28485 wide as that tab on the display. */);
28486 x_stretch_cursor_p = 0;
28487 #endif
28489 DEFVAR_LISP ("show-trailing-whitespace", Vshow_trailing_whitespace,
28490 doc: /* Non-nil means highlight trailing whitespace.
28491 The face used for trailing whitespace is `trailing-whitespace'. */);
28492 Vshow_trailing_whitespace = Qnil;
28494 DEFVAR_LISP ("nobreak-char-display", Vnobreak_char_display,
28495 doc: /* Control highlighting of non-ASCII space and hyphen chars.
28496 If the value is t, Emacs highlights non-ASCII chars which have the
28497 same appearance as an ASCII space or hyphen, using the `nobreak-space'
28498 or `escape-glyph' face respectively.
28500 U+00A0 (no-break space), U+00AD (soft hyphen), U+2010 (hyphen), and
28501 U+2011 (non-breaking hyphen) are affected.
28503 Any other non-nil value means to display these characters as a escape
28504 glyph followed by an ordinary space or hyphen.
28506 A value of nil means no special handling of these characters. */);
28507 Vnobreak_char_display = Qt;
28509 DEFVAR_LISP ("void-text-area-pointer", Vvoid_text_area_pointer,
28510 doc: /* The pointer shape to show in void text areas.
28511 A value of nil means to show the text pointer. Other options are `arrow',
28512 `text', `hand', `vdrag', `hdrag', `modeline', and `hourglass'. */);
28513 Vvoid_text_area_pointer = Qarrow;
28515 DEFVAR_LISP ("inhibit-redisplay", Vinhibit_redisplay,
28516 doc: /* Non-nil means don't actually do any redisplay.
28517 This is used for internal purposes. */);
28518 Vinhibit_redisplay = Qnil;
28520 DEFVAR_LISP ("global-mode-string", Vglobal_mode_string,
28521 doc: /* String (or mode line construct) included (normally) in `mode-line-format'. */);
28522 Vglobal_mode_string = Qnil;
28524 DEFVAR_LISP ("overlay-arrow-position", Voverlay_arrow_position,
28525 doc: /* Marker for where to display an arrow on top of the buffer text.
28526 This must be the beginning of a line in order to work.
28527 See also `overlay-arrow-string'. */);
28528 Voverlay_arrow_position = Qnil;
28530 DEFVAR_LISP ("overlay-arrow-string", Voverlay_arrow_string,
28531 doc: /* String to display as an arrow in non-window frames.
28532 See also `overlay-arrow-position'. */);
28533 Voverlay_arrow_string = make_pure_c_string ("=>");
28535 DEFVAR_LISP ("overlay-arrow-variable-list", Voverlay_arrow_variable_list,
28536 doc: /* List of variables (symbols) which hold markers for overlay arrows.
28537 The symbols on this list are examined during redisplay to determine
28538 where to display overlay arrows. */);
28539 Voverlay_arrow_variable_list
28540 = Fcons (intern_c_string ("overlay-arrow-position"), Qnil);
28542 DEFVAR_INT ("scroll-step", emacs_scroll_step,
28543 doc: /* The number of lines to try scrolling a window by when point moves out.
28544 If that fails to bring point back on frame, point is centered instead.
28545 If this is zero, point is always centered after it moves off frame.
28546 If you want scrolling to always be a line at a time, you should set
28547 `scroll-conservatively' to a large value rather than set this to 1. */);
28549 DEFVAR_INT ("scroll-conservatively", scroll_conservatively,
28550 doc: /* Scroll up to this many lines, to bring point back on screen.
28551 If point moves off-screen, redisplay will scroll by up to
28552 `scroll-conservatively' lines in order to bring point just barely
28553 onto the screen again. If that cannot be done, then redisplay
28554 recenters point as usual.
28556 If the value is greater than 100, redisplay will never recenter point,
28557 but will always scroll just enough text to bring point into view, even
28558 if you move far away.
28560 A value of zero means always recenter point if it moves off screen. */);
28561 scroll_conservatively = 0;
28563 DEFVAR_INT ("scroll-margin", scroll_margin,
28564 doc: /* Number of lines of margin at the top and bottom of a window.
28565 Recenter the window whenever point gets within this many lines
28566 of the top or bottom of the window. */);
28567 scroll_margin = 0;
28569 DEFVAR_LISP ("display-pixels-per-inch", Vdisplay_pixels_per_inch,
28570 doc: /* Pixels per inch value for non-window system displays.
28571 Value is a number or a cons (WIDTH-DPI . HEIGHT-DPI). */);
28572 Vdisplay_pixels_per_inch = make_float (72.0);
28574 #if GLYPH_DEBUG
28575 DEFVAR_INT ("debug-end-pos", debug_end_pos, doc: /* Don't ask. */);
28576 #endif
28578 DEFVAR_LISP ("truncate-partial-width-windows",
28579 Vtruncate_partial_width_windows,
28580 doc: /* Non-nil means truncate lines in windows narrower than the frame.
28581 For an integer value, truncate lines in each window narrower than the
28582 full frame width, provided the window width is less than that integer;
28583 otherwise, respect the value of `truncate-lines'.
28585 For any other non-nil value, truncate lines in all windows that do
28586 not span the full frame width.
28588 A value of nil means to respect the value of `truncate-lines'.
28590 If `word-wrap' is enabled, you might want to reduce this. */);
28591 Vtruncate_partial_width_windows = make_number (50);
28593 DEFVAR_BOOL ("mode-line-inverse-video", mode_line_inverse_video,
28594 doc: /* When nil, display the mode-line/header-line/menu-bar in the default face.
28595 Any other value means to use the appropriate face, `mode-line',
28596 `header-line', or `menu' respectively. */);
28597 mode_line_inverse_video = 1;
28599 DEFVAR_LISP ("line-number-display-limit", Vline_number_display_limit,
28600 doc: /* Maximum buffer size for which line number should be displayed.
28601 If the buffer is bigger than this, the line number does not appear
28602 in the mode line. A value of nil means no limit. */);
28603 Vline_number_display_limit = Qnil;
28605 DEFVAR_INT ("line-number-display-limit-width",
28606 line_number_display_limit_width,
28607 doc: /* Maximum line width (in characters) for line number display.
28608 If the average length of the lines near point is bigger than this, then the
28609 line number may be omitted from the mode line. */);
28610 line_number_display_limit_width = 200;
28612 DEFVAR_BOOL ("highlight-nonselected-windows", highlight_nonselected_windows,
28613 doc: /* Non-nil means highlight region even in nonselected windows. */);
28614 highlight_nonselected_windows = 0;
28616 DEFVAR_BOOL ("multiple-frames", multiple_frames,
28617 doc: /* Non-nil if more than one frame is visible on this display.
28618 Minibuffer-only frames don't count, but iconified frames do.
28619 This variable is not guaranteed to be accurate except while processing
28620 `frame-title-format' and `icon-title-format'. */);
28622 DEFVAR_LISP ("frame-title-format", Vframe_title_format,
28623 doc: /* Template for displaying the title bar of visible frames.
28624 \(Assuming the window manager supports this feature.)
28626 This variable has the same structure as `mode-line-format', except that
28627 the %c and %l constructs are ignored. It is used only on frames for
28628 which no explicit name has been set \(see `modify-frame-parameters'). */);
28630 DEFVAR_LISP ("icon-title-format", Vicon_title_format,
28631 doc: /* Template for displaying the title bar of an iconified frame.
28632 \(Assuming the window manager supports this feature.)
28633 This variable has the same structure as `mode-line-format' (which see),
28634 and is used only on frames for which no explicit name has been set
28635 \(see `modify-frame-parameters'). */);
28636 Vicon_title_format
28637 = Vframe_title_format
28638 = pure_cons (intern_c_string ("multiple-frames"),
28639 pure_cons (make_pure_c_string ("%b"),
28640 pure_cons (pure_cons (empty_unibyte_string,
28641 pure_cons (intern_c_string ("invocation-name"),
28642 pure_cons (make_pure_c_string ("@"),
28643 pure_cons (intern_c_string ("system-name"),
28644 Qnil)))),
28645 Qnil)));
28647 DEFVAR_LISP ("message-log-max", Vmessage_log_max,
28648 doc: /* Maximum number of lines to keep in the message log buffer.
28649 If nil, disable message logging. If t, log messages but don't truncate
28650 the buffer when it becomes large. */);
28651 Vmessage_log_max = make_number (100);
28653 DEFVAR_LISP ("window-size-change-functions", Vwindow_size_change_functions,
28654 doc: /* Functions called before redisplay, if window sizes have changed.
28655 The value should be a list of functions that take one argument.
28656 Just before redisplay, for each frame, if any of its windows have changed
28657 size since the last redisplay, or have been split or deleted,
28658 all the functions in the list are called, with the frame as argument. */);
28659 Vwindow_size_change_functions = Qnil;
28661 DEFVAR_LISP ("window-scroll-functions", Vwindow_scroll_functions,
28662 doc: /* List of functions to call before redisplaying a window with scrolling.
28663 Each function is called with two arguments, the window and its new
28664 display-start position. Note that these functions are also called by
28665 `set-window-buffer'. Also note that the value of `window-end' is not
28666 valid when these functions are called.
28668 Warning: Do not use this feature to alter the way the window
28669 is scrolled. It is not designed for that, and such use probably won't
28670 work. */);
28671 Vwindow_scroll_functions = Qnil;
28673 DEFVAR_LISP ("window-text-change-functions",
28674 Vwindow_text_change_functions,
28675 doc: /* Functions to call in redisplay when text in the window might change. */);
28676 Vwindow_text_change_functions = Qnil;
28678 DEFVAR_LISP ("redisplay-end-trigger-functions", Vredisplay_end_trigger_functions,
28679 doc: /* Functions called when redisplay of a window reaches the end trigger.
28680 Each function is called with two arguments, the window and the end trigger value.
28681 See `set-window-redisplay-end-trigger'. */);
28682 Vredisplay_end_trigger_functions = Qnil;
28684 DEFVAR_LISP ("mouse-autoselect-window", Vmouse_autoselect_window,
28685 doc: /* Non-nil means autoselect window with mouse pointer.
28686 If nil, do not autoselect windows.
28687 A positive number means delay autoselection by that many seconds: a
28688 window is autoselected only after the mouse has remained in that
28689 window for the duration of the delay.
28690 A negative number has a similar effect, but causes windows to be
28691 autoselected only after the mouse has stopped moving. \(Because of
28692 the way Emacs compares mouse events, you will occasionally wait twice
28693 that time before the window gets selected.\)
28694 Any other value means to autoselect window instantaneously when the
28695 mouse pointer enters it.
28697 Autoselection selects the minibuffer only if it is active, and never
28698 unselects the minibuffer if it is active.
28700 When customizing this variable make sure that the actual value of
28701 `focus-follows-mouse' matches the behavior of your window manager. */);
28702 Vmouse_autoselect_window = Qnil;
28704 DEFVAR_LISP ("auto-resize-tool-bars", Vauto_resize_tool_bars,
28705 doc: /* Non-nil means automatically resize tool-bars.
28706 This dynamically changes the tool-bar's height to the minimum height
28707 that is needed to make all tool-bar items visible.
28708 If value is `grow-only', the tool-bar's height is only increased
28709 automatically; to decrease the tool-bar height, use \\[recenter]. */);
28710 Vauto_resize_tool_bars = Qt;
28712 DEFVAR_BOOL ("auto-raise-tool-bar-buttons", auto_raise_tool_bar_buttons_p,
28713 doc: /* Non-nil means raise tool-bar buttons when the mouse moves over them. */);
28714 auto_raise_tool_bar_buttons_p = 1;
28716 DEFVAR_BOOL ("make-cursor-line-fully-visible", make_cursor_line_fully_visible_p,
28717 doc: /* Non-nil means to scroll (recenter) cursor line if it is not fully visible. */);
28718 make_cursor_line_fully_visible_p = 1;
28720 DEFVAR_LISP ("tool-bar-border", Vtool_bar_border,
28721 doc: /* Border below tool-bar in pixels.
28722 If an integer, use it as the height of the border.
28723 If it is one of `internal-border-width' or `border-width', use the
28724 value of the corresponding frame parameter.
28725 Otherwise, no border is added below the tool-bar. */);
28726 Vtool_bar_border = Qinternal_border_width;
28728 DEFVAR_LISP ("tool-bar-button-margin", Vtool_bar_button_margin,
28729 doc: /* Margin around tool-bar buttons in pixels.
28730 If an integer, use that for both horizontal and vertical margins.
28731 Otherwise, value should be a pair of integers `(HORZ . VERT)' with
28732 HORZ specifying the horizontal margin, and VERT specifying the
28733 vertical margin. */);
28734 Vtool_bar_button_margin = make_number (DEFAULT_TOOL_BAR_BUTTON_MARGIN);
28736 DEFVAR_INT ("tool-bar-button-relief", tool_bar_button_relief,
28737 doc: /* Relief thickness of tool-bar buttons. */);
28738 tool_bar_button_relief = DEFAULT_TOOL_BAR_BUTTON_RELIEF;
28740 DEFVAR_LISP ("tool-bar-style", Vtool_bar_style,
28741 doc: /* Tool bar style to use.
28742 It can be one of
28743 image - show images only
28744 text - show text only
28745 both - show both, text below image
28746 both-horiz - show text to the right of the image
28747 text-image-horiz - show text to the left of the image
28748 any other - use system default or image if no system default.
28750 This variable only affects the GTK+ toolkit version of Emacs. */);
28751 Vtool_bar_style = Qnil;
28753 DEFVAR_INT ("tool-bar-max-label-size", tool_bar_max_label_size,
28754 doc: /* Maximum number of characters a label can have to be shown.
28755 The tool bar style must also show labels for this to have any effect, see
28756 `tool-bar-style'. */);
28757 tool_bar_max_label_size = DEFAULT_TOOL_BAR_LABEL_SIZE;
28759 DEFVAR_LISP ("fontification-functions", Vfontification_functions,
28760 doc: /* List of functions to call to fontify regions of text.
28761 Each function is called with one argument POS. Functions must
28762 fontify a region starting at POS in the current buffer, and give
28763 fontified regions the property `fontified'. */);
28764 Vfontification_functions = Qnil;
28765 Fmake_variable_buffer_local (Qfontification_functions);
28767 DEFVAR_BOOL ("unibyte-display-via-language-environment",
28768 unibyte_display_via_language_environment,
28769 doc: /* Non-nil means display unibyte text according to language environment.
28770 Specifically, this means that raw bytes in the range 160-255 decimal
28771 are displayed by converting them to the equivalent multibyte characters
28772 according to the current language environment. As a result, they are
28773 displayed according to the current fontset.
28775 Note that this variable affects only how these bytes are displayed,
28776 but does not change the fact they are interpreted as raw bytes. */);
28777 unibyte_display_via_language_environment = 0;
28779 DEFVAR_LISP ("max-mini-window-height", Vmax_mini_window_height,
28780 doc: /* Maximum height for resizing mini-windows (the minibuffer and the echo area).
28781 If a float, it specifies a fraction of the mini-window frame's height.
28782 If an integer, it specifies a number of lines. */);
28783 Vmax_mini_window_height = make_float (0.25);
28785 DEFVAR_LISP ("resize-mini-windows", Vresize_mini_windows,
28786 doc: /* How to resize mini-windows (the minibuffer and the echo area).
28787 A value of nil means don't automatically resize mini-windows.
28788 A value of t means resize them to fit the text displayed in them.
28789 A value of `grow-only', the default, means let mini-windows grow only;
28790 they return to their normal size when the minibuffer is closed, or the
28791 echo area becomes empty. */);
28792 Vresize_mini_windows = Qgrow_only;
28794 DEFVAR_LISP ("blink-cursor-alist", Vblink_cursor_alist,
28795 doc: /* Alist specifying how to blink the cursor off.
28796 Each element has the form (ON-STATE . OFF-STATE). Whenever the
28797 `cursor-type' frame-parameter or variable equals ON-STATE,
28798 comparing using `equal', Emacs uses OFF-STATE to specify
28799 how to blink it off. ON-STATE and OFF-STATE are values for
28800 the `cursor-type' frame parameter.
28802 If a frame's ON-STATE has no entry in this list,
28803 the frame's other specifications determine how to blink the cursor off. */);
28804 Vblink_cursor_alist = Qnil;
28806 DEFVAR_BOOL ("auto-hscroll-mode", automatic_hscrolling_p,
28807 doc: /* Allow or disallow automatic horizontal scrolling of windows.
28808 If non-nil, windows are automatically scrolled horizontally to make
28809 point visible. */);
28810 automatic_hscrolling_p = 1;
28811 DEFSYM (Qauto_hscroll_mode, "auto-hscroll-mode");
28813 DEFVAR_INT ("hscroll-margin", hscroll_margin,
28814 doc: /* How many columns away from the window edge point is allowed to get
28815 before automatic hscrolling will horizontally scroll the window. */);
28816 hscroll_margin = 5;
28818 DEFVAR_LISP ("hscroll-step", Vhscroll_step,
28819 doc: /* How many columns to scroll the window when point gets too close to the edge.
28820 When point is less than `hscroll-margin' columns from the window
28821 edge, automatic hscrolling will scroll the window by the amount of columns
28822 determined by this variable. If its value is a positive integer, scroll that
28823 many columns. If it's a positive floating-point number, it specifies the
28824 fraction of the window's width to scroll. If it's nil or zero, point will be
28825 centered horizontally after the scroll. Any other value, including negative
28826 numbers, are treated as if the value were zero.
28828 Automatic hscrolling always moves point outside the scroll margin, so if
28829 point was more than scroll step columns inside the margin, the window will
28830 scroll more than the value given by the scroll step.
28832 Note that the lower bound for automatic hscrolling specified by `scroll-left'
28833 and `scroll-right' overrides this variable's effect. */);
28834 Vhscroll_step = make_number (0);
28836 DEFVAR_BOOL ("message-truncate-lines", message_truncate_lines,
28837 doc: /* If non-nil, messages are truncated instead of resizing the echo area.
28838 Bind this around calls to `message' to let it take effect. */);
28839 message_truncate_lines = 0;
28841 DEFVAR_LISP ("menu-bar-update-hook", Vmenu_bar_update_hook,
28842 doc: /* Normal hook run to update the menu bar definitions.
28843 Redisplay runs this hook before it redisplays the menu bar.
28844 This is used to update submenus such as Buffers,
28845 whose contents depend on various data. */);
28846 Vmenu_bar_update_hook = Qnil;
28848 DEFVAR_LISP ("menu-updating-frame", Vmenu_updating_frame,
28849 doc: /* Frame for which we are updating a menu.
28850 The enable predicate for a menu binding should check this variable. */);
28851 Vmenu_updating_frame = Qnil;
28853 DEFVAR_BOOL ("inhibit-menubar-update", inhibit_menubar_update,
28854 doc: /* Non-nil means don't update menu bars. Internal use only. */);
28855 inhibit_menubar_update = 0;
28857 DEFVAR_LISP ("wrap-prefix", Vwrap_prefix,
28858 doc: /* Prefix prepended to all continuation lines at display time.
28859 The value may be a string, an image, or a stretch-glyph; it is
28860 interpreted in the same way as the value of a `display' text property.
28862 This variable is overridden by any `wrap-prefix' text or overlay
28863 property.
28865 To add a prefix to non-continuation lines, use `line-prefix'. */);
28866 Vwrap_prefix = Qnil;
28867 DEFSYM (Qwrap_prefix, "wrap-prefix");
28868 Fmake_variable_buffer_local (Qwrap_prefix);
28870 DEFVAR_LISP ("line-prefix", Vline_prefix,
28871 doc: /* Prefix prepended to all non-continuation lines at display time.
28872 The value may be a string, an image, or a stretch-glyph; it is
28873 interpreted in the same way as the value of a `display' text property.
28875 This variable is overridden by any `line-prefix' text or overlay
28876 property.
28878 To add a prefix to continuation lines, use `wrap-prefix'. */);
28879 Vline_prefix = Qnil;
28880 DEFSYM (Qline_prefix, "line-prefix");
28881 Fmake_variable_buffer_local (Qline_prefix);
28883 DEFVAR_BOOL ("inhibit-eval-during-redisplay", inhibit_eval_during_redisplay,
28884 doc: /* Non-nil means don't eval Lisp during redisplay. */);
28885 inhibit_eval_during_redisplay = 0;
28887 DEFVAR_BOOL ("inhibit-free-realized-faces", inhibit_free_realized_faces,
28888 doc: /* Non-nil means don't free realized faces. Internal use only. */);
28889 inhibit_free_realized_faces = 0;
28891 #if GLYPH_DEBUG
28892 DEFVAR_BOOL ("inhibit-try-window-id", inhibit_try_window_id,
28893 doc: /* Inhibit try_window_id display optimization. */);
28894 inhibit_try_window_id = 0;
28896 DEFVAR_BOOL ("inhibit-try-window-reusing", inhibit_try_window_reusing,
28897 doc: /* Inhibit try_window_reusing display optimization. */);
28898 inhibit_try_window_reusing = 0;
28900 DEFVAR_BOOL ("inhibit-try-cursor-movement", inhibit_try_cursor_movement,
28901 doc: /* Inhibit try_cursor_movement display optimization. */);
28902 inhibit_try_cursor_movement = 0;
28903 #endif /* GLYPH_DEBUG */
28905 DEFVAR_INT ("overline-margin", overline_margin,
28906 doc: /* Space between overline and text, in pixels.
28907 The default value is 2: the height of the overline (1 pixel) plus 1 pixel
28908 margin to the character height. */);
28909 overline_margin = 2;
28911 DEFVAR_INT ("underline-minimum-offset",
28912 underline_minimum_offset,
28913 doc: /* Minimum distance between baseline and underline.
28914 This can improve legibility of underlined text at small font sizes,
28915 particularly when using variable `x-use-underline-position-properties'
28916 with fonts that specify an UNDERLINE_POSITION relatively close to the
28917 baseline. The default value is 1. */);
28918 underline_minimum_offset = 1;
28920 DEFVAR_BOOL ("display-hourglass", display_hourglass_p,
28921 doc: /* Non-nil means show an hourglass pointer, when Emacs is busy.
28922 This feature only works when on a window system that can change
28923 cursor shapes. */);
28924 display_hourglass_p = 1;
28926 DEFVAR_LISP ("hourglass-delay", Vhourglass_delay,
28927 doc: /* Seconds to wait before displaying an hourglass pointer when Emacs is busy. */);
28928 Vhourglass_delay = make_number (DEFAULT_HOURGLASS_DELAY);
28930 hourglass_atimer = NULL;
28931 hourglass_shown_p = 0;
28933 DEFSYM (Qglyphless_char, "glyphless-char");
28934 DEFSYM (Qhex_code, "hex-code");
28935 DEFSYM (Qempty_box, "empty-box");
28936 DEFSYM (Qthin_space, "thin-space");
28937 DEFSYM (Qzero_width, "zero-width");
28939 DEFSYM (Qglyphless_char_display, "glyphless-char-display");
28940 /* Intern this now in case it isn't already done.
28941 Setting this variable twice is harmless.
28942 But don't staticpro it here--that is done in alloc.c. */
28943 Qchar_table_extra_slots = intern_c_string ("char-table-extra-slots");
28944 Fput (Qglyphless_char_display, Qchar_table_extra_slots, make_number (1));
28946 DEFVAR_LISP ("glyphless-char-display", Vglyphless_char_display,
28947 doc: /* Char-table defining glyphless characters.
28948 Each element, if non-nil, should be one of the following:
28949 an ASCII acronym string: display this string in a box
28950 `hex-code': display the hexadecimal code of a character in a box
28951 `empty-box': display as an empty box
28952 `thin-space': display as 1-pixel width space
28953 `zero-width': don't display
28954 An element may also be a cons cell (GRAPHICAL . TEXT), which specifies the
28955 display method for graphical terminals and text terminals respectively.
28956 GRAPHICAL and TEXT should each have one of the values listed above.
28958 The char-table has one extra slot to control the display of a character for
28959 which no font is found. This slot only takes effect on graphical terminals.
28960 Its value should be an ASCII acronym string, `hex-code', `empty-box', or
28961 `thin-space'. The default is `empty-box'. */);
28962 Vglyphless_char_display = Fmake_char_table (Qglyphless_char_display, Qnil);
28963 Fset_char_table_extra_slot (Vglyphless_char_display, make_number (0),
28964 Qempty_box);
28968 /* Initialize this module when Emacs starts. */
28970 void
28971 init_xdisp (void)
28973 current_header_line_height = current_mode_line_height = -1;
28975 CHARPOS (this_line_start_pos) = 0;
28977 if (!noninteractive)
28979 struct window *m = XWINDOW (minibuf_window);
28980 Lisp_Object frame = m->frame;
28981 struct frame *f = XFRAME (frame);
28982 Lisp_Object root = FRAME_ROOT_WINDOW (f);
28983 struct window *r = XWINDOW (root);
28984 int i;
28986 echo_area_window = minibuf_window;
28988 XSETFASTINT (r->top_line, FRAME_TOP_MARGIN (f));
28989 XSETFASTINT (r->total_lines, FRAME_LINES (f) - 1 - FRAME_TOP_MARGIN (f));
28990 XSETFASTINT (r->total_cols, FRAME_COLS (f));
28991 XSETFASTINT (m->top_line, FRAME_LINES (f) - 1);
28992 XSETFASTINT (m->total_lines, 1);
28993 XSETFASTINT (m->total_cols, FRAME_COLS (f));
28995 scratch_glyph_row.glyphs[TEXT_AREA] = scratch_glyphs;
28996 scratch_glyph_row.glyphs[TEXT_AREA + 1]
28997 = scratch_glyphs + MAX_SCRATCH_GLYPHS;
28999 /* The default ellipsis glyphs `...'. */
29000 for (i = 0; i < 3; ++i)
29001 default_invis_vector[i] = make_number ('.');
29005 /* Allocate the buffer for frame titles.
29006 Also used for `format-mode-line'. */
29007 int size = 100;
29008 mode_line_noprop_buf = (char *) xmalloc (size);
29009 mode_line_noprop_buf_end = mode_line_noprop_buf + size;
29010 mode_line_noprop_ptr = mode_line_noprop_buf;
29011 mode_line_target = MODE_LINE_DISPLAY;
29014 help_echo_showing_p = 0;
29017 /* Since w32 does not support atimers, it defines its own implementation of
29018 the following three functions in w32fns.c. */
29019 #ifndef WINDOWSNT
29021 /* Platform-independent portion of hourglass implementation. */
29023 /* Cancel a currently active hourglass timer, and start a new one. */
29024 void
29025 start_hourglass (void)
29027 #if defined (HAVE_WINDOW_SYSTEM)
29028 EMACS_TIME delay;
29029 int secs = DEFAULT_HOURGLASS_DELAY, usecs = 0;
29031 cancel_hourglass ();
29033 if (NUMBERP (Vhourglass_delay))
29035 double duration = extract_float (Vhourglass_delay);
29036 if (0 < duration)
29037 duration_to_sec_usec (duration, &secs, &usecs);
29040 EMACS_SET_SECS_USECS (delay, secs, usecs);
29041 hourglass_atimer = start_atimer (ATIMER_RELATIVE, delay,
29042 show_hourglass, NULL);
29043 #endif
29047 /* Cancel the hourglass cursor timer if active, hide a busy cursor if
29048 shown. */
29049 void
29050 cancel_hourglass (void)
29052 #if defined (HAVE_WINDOW_SYSTEM)
29053 if (hourglass_atimer)
29055 cancel_atimer (hourglass_atimer);
29056 hourglass_atimer = NULL;
29059 if (hourglass_shown_p)
29060 hide_hourglass ();
29061 #endif
29063 #endif /* ! WINDOWSNT */