1 /* Display generation from window structure and buffer text.
3 Copyright (C) 1985-1988, 1993-1995, 1997-2015 Free Software Foundation,
6 This file is part of GNU Emacs.
8 GNU Emacs is free software: you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation, either version 3 of the License, or
11 (at your option) any later version.
13 GNU Emacs is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
21 /* New redisplay written by Gerd Moellmann <gerd@gnu.org>.
25 Emacs separates the task of updating the display from code
26 modifying global state, e.g. buffer text. This way functions
27 operating on buffers don't also have to be concerned with updating
30 Updating the display is triggered by the Lisp interpreter when it
31 decides it's time to do it. This is done either automatically for
32 you as part of the interpreter's command loop or as the result of
33 calling Lisp functions like `sit-for'. The C function `redisplay'
34 in xdisp.c is the only entry into the inner redisplay code.
36 The following diagram shows how redisplay code is invoked. As you
37 can see, Lisp calls redisplay and vice versa. Under window systems
38 like X, some portions of the redisplay code are also called
39 asynchronously during mouse movement or expose events. It is very
40 important that these code parts do NOT use the C library (malloc,
41 free) because many C libraries under Unix are not reentrant. They
42 may also NOT call functions of the Lisp interpreter which could
43 change the interpreter's state. If you don't follow these rules,
44 you will encounter bugs which are very hard to explain.
46 +--------------+ redisplay +----------------+
47 | Lisp machine |---------------->| Redisplay code |<--+
48 +--------------+ (xdisp.c) +----------------+ |
50 +----------------------------------+ |
51 Don't use this path when called |
54 expose_window (asynchronous) |
56 X expose events -----+
58 What does redisplay do? Obviously, it has to figure out somehow what
59 has been changed since the last time the display has been updated,
60 and to make these changes visible. Preferably it would do that in
61 a moderately intelligent way, i.e. fast.
63 Changes in buffer text can be deduced from window and buffer
64 structures, and from some global variables like `beg_unchanged' and
65 `end_unchanged'. The contents of the display are additionally
66 recorded in a `glyph matrix', a two-dimensional matrix of glyph
67 structures. Each row in such a matrix corresponds to a line on the
68 display, and each glyph in a row corresponds to a column displaying
69 a character, an image, or what else. This matrix is called the
70 `current glyph matrix' or `current matrix' in redisplay
73 For buffer parts that have been changed since the last update, a
74 second glyph matrix is constructed, the so called `desired glyph
75 matrix' or short `desired matrix'. Current and desired matrix are
76 then compared to find a cheap way to update the display, e.g. by
77 reusing part of the display by scrolling lines.
79 You will find a lot of redisplay optimizations when you start
80 looking at the innards of redisplay. The overall goal of all these
81 optimizations is to make redisplay fast because it is done
82 frequently. Some of these optimizations are implemented by the
87 This function tries to update the display if the text in the
88 window did not change and did not scroll, only point moved, and
89 it did not move off the displayed portion of the text.
91 . try_window_reusing_current_matrix
93 This function reuses the current matrix of a window when text
94 has not changed, but the window start changed (e.g., due to
99 This function attempts to redisplay a window by reusing parts of
100 its existing display. It finds and reuses the part that was not
101 changed, and redraws the rest. (The "id" part in the function's
102 name stands for "insert/delete", not for "identification" or
107 This function performs the full redisplay of a single window
108 assuming that its fonts were not changed and that the cursor
109 will not end up in the scroll margins. (Loading fonts requires
110 re-adjustment of dimensions of glyph matrices, which makes this
111 method impossible to use.)
113 These optimizations are tried in sequence (some can be skipped if
114 it is known that they are not applicable). If none of the
115 optimizations were successful, redisplay calls redisplay_windows,
116 which performs a full redisplay of all windows.
118 Note that there's one more important optimization up Emacs's
119 sleeve, but it is related to actually redrawing the potentially
120 changed portions of the window/frame, not to reproducing the
121 desired matrices of those potentially changed portions. Namely,
122 the function update_frame and its subroutines, which you will find
123 in dispnew.c, compare the desired matrices with the current
124 matrices, and only redraw the portions that changed. So it could
125 happen that the functions in this file for some reason decide that
126 the entire desired matrix needs to be regenerated from scratch, and
127 still only parts of the Emacs display, or even nothing at all, will
128 be actually delivered to the glass, because update_frame has found
129 that the new and the old screen contents are similar or identical.
133 Desired matrices are always built per Emacs window. The function
134 `display_line' is the central function to look at if you are
135 interested. It constructs one row in a desired matrix given an
136 iterator structure containing both a buffer position and a
137 description of the environment in which the text is to be
138 displayed. But this is too early, read on.
140 Characters and pixmaps displayed for a range of buffer text depend
141 on various settings of buffers and windows, on overlays and text
142 properties, on display tables, on selective display. The good news
143 is that all this hairy stuff is hidden behind a small set of
144 interface functions taking an iterator structure (struct it)
147 Iteration over things to be displayed is then simple. It is
148 started by initializing an iterator with a call to init_iterator,
149 passing it the buffer position where to start iteration. For
150 iteration over strings, pass -1 as the position to init_iterator,
151 and call reseat_to_string when the string is ready, to initialize
152 the iterator for that string. Thereafter, calls to
153 get_next_display_element fill the iterator structure with relevant
154 information about the next thing to display. Calls to
155 set_iterator_to_next move the iterator to the next thing.
157 Besides this, an iterator also contains information about the
158 display environment in which glyphs for display elements are to be
159 produced. It has fields for the width and height of the display,
160 the information whether long lines are truncated or continued, a
161 current X and Y position, and lots of other stuff you can better
164 Glyphs in a desired matrix are normally constructed in a loop
165 calling get_next_display_element and then PRODUCE_GLYPHS. The call
166 to PRODUCE_GLYPHS will fill the iterator structure with pixel
167 information about the element being displayed and at the same time
168 produce glyphs for it. If the display element fits on the line
169 being displayed, set_iterator_to_next is called next, otherwise the
170 glyphs produced are discarded. The function display_line is the
171 workhorse of filling glyph rows in the desired matrix with glyphs.
172 In addition to producing glyphs, it also handles line truncation
173 and continuation, word wrap, and cursor positioning (for the
174 latter, see also set_cursor_from_row).
178 That just couldn't be all, could it? What about terminal types not
179 supporting operations on sub-windows of the screen? To update the
180 display on such a terminal, window-based glyph matrices are not
181 well suited. To be able to reuse part of the display (scrolling
182 lines up and down), we must instead have a view of the whole
183 screen. This is what `frame matrices' are for. They are a trick.
185 Frames on terminals like above have a glyph pool. Windows on such
186 a frame sub-allocate their glyph memory from their frame's glyph
187 pool. The frame itself is given its own glyph matrices. By
188 coincidence---or maybe something else---rows in window glyph
189 matrices are slices of corresponding rows in frame matrices. Thus
190 writing to window matrices implicitly updates a frame matrix which
191 provides us with the view of the whole screen that we originally
192 wanted to have without having to move many bytes around. To be
193 honest, there is a little bit more done, but not much more. If you
194 plan to extend that code, take a look at dispnew.c. The function
195 build_frame_matrix is a good starting point.
197 Bidirectional display.
199 Bidirectional display adds quite some hair to this already complex
200 design. The good news are that a large portion of that hairy stuff
201 is hidden in bidi.c behind only 3 interfaces. bidi.c implements a
202 reordering engine which is called by set_iterator_to_next and
203 returns the next character to display in the visual order. See
204 commentary on bidi.c for more details. As far as redisplay is
205 concerned, the effect of calling bidi_move_to_visually_next, the
206 main interface of the reordering engine, is that the iterator gets
207 magically placed on the buffer or string position that is to be
208 displayed next. In other words, a linear iteration through the
209 buffer/string is replaced with a non-linear one. All the rest of
210 the redisplay is oblivious to the bidi reordering.
212 Well, almost oblivious---there are still complications, most of
213 them due to the fact that buffer and string positions no longer
214 change monotonously with glyph indices in a glyph row. Moreover,
215 for continued lines, the buffer positions may not even be
216 monotonously changing with vertical positions. Also, accounting
217 for face changes, overlays, etc. becomes more complex because
218 non-linear iteration could potentially skip many positions with
219 changes, and then cross them again on the way back...
221 One other prominent effect of bidirectional display is that some
222 paragraphs of text need to be displayed starting at the right
223 margin of the window---the so-called right-to-left, or R2L
224 paragraphs. R2L paragraphs are displayed with R2L glyph rows,
225 which have their reversed_p flag set. The bidi reordering engine
226 produces characters in such rows starting from the character which
227 should be the rightmost on display. PRODUCE_GLYPHS then reverses
228 the order, when it fills up the glyph row whose reversed_p flag is
229 set, by prepending each new glyph to what is already there, instead
230 of appending it. When the glyph row is complete, the function
231 extend_face_to_end_of_line fills the empty space to the left of the
232 leftmost character with special glyphs, which will display as,
233 well, empty. On text terminals, these special glyphs are simply
234 blank characters. On graphics terminals, there's a single stretch
235 glyph of a suitably computed width. Both the blanks and the
236 stretch glyph are given the face of the background of the line.
237 This way, the terminal-specific back-end can still draw the glyphs
238 left to right, even for R2L lines.
240 Bidirectional display and character compositions
242 Some scripts cannot be displayed by drawing each character
243 individually, because adjacent characters change each other's shape
244 on display. For example, Arabic and Indic scripts belong to this
247 Emacs display supports this by providing "character compositions",
248 most of which is implemented in composite.c. During the buffer
249 scan that delivers characters to PRODUCE_GLYPHS, if the next
250 character to be delivered is a composed character, the iteration
251 calls composition_reseat_it and next_element_from_composition. If
252 they succeed to compose the character with one or more of the
253 following characters, the whole sequence of characters that where
254 composed is recorded in the `struct composition_it' object that is
255 part of the buffer iterator. The composed sequence could produce
256 one or more font glyphs (called "grapheme clusters") on the screen.
257 Each of these grapheme clusters is then delivered to PRODUCE_GLYPHS
258 in the direction corresponding to the current bidi scan direction
259 (recorded in the scan_dir member of the `struct bidi_it' object
260 that is part of the buffer iterator). In particular, if the bidi
261 iterator currently scans the buffer backwards, the grapheme
262 clusters are delivered back to front. This reorders the grapheme
263 clusters as appropriate for the current bidi context. Note that
264 this means that the grapheme clusters are always stored in the
265 LGSTRING object (see composite.c) in the logical order.
267 Moving an iterator in bidirectional text
268 without producing glyphs
270 Note one important detail mentioned above: that the bidi reordering
271 engine, driven by the iterator, produces characters in R2L rows
272 starting at the character that will be the rightmost on display.
273 As far as the iterator is concerned, the geometry of such rows is
274 still left to right, i.e. the iterator "thinks" the first character
275 is at the leftmost pixel position. The iterator does not know that
276 PRODUCE_GLYPHS reverses the order of the glyphs that the iterator
277 delivers. This is important when functions from the move_it_*
278 family are used to get to certain screen position or to match
279 screen coordinates with buffer coordinates: these functions use the
280 iterator geometry, which is left to right even in R2L paragraphs.
281 This works well with most callers of move_it_*, because they need
282 to get to a specific column, and columns are still numbered in the
283 reading order, i.e. the rightmost character in a R2L paragraph is
284 still column zero. But some callers do not get well with this; a
285 notable example is mouse clicks that need to find the character
286 that corresponds to certain pixel coordinates. See
287 buffer_posn_from_coords in dispnew.c for how this is handled. */
295 #include "keyboard.h"
298 #include "termchar.h"
299 #include "dispextern.h"
300 #include "character.h"
304 #include "commands.h"
308 #include "termhooks.h"
309 #include "termopts.h"
310 #include "intervals.h"
313 #include "region-cache.h"
316 #include "blockinput.h"
317 #ifdef HAVE_WINDOW_SYSTEM
319 #endif /* HAVE_WINDOW_SYSTEM */
324 #ifndef FRAME_X_OUTPUT
325 #define FRAME_X_OUTPUT(f) ((f)->output_data.x)
328 #define INFINITY 10000000
330 /* Holds the list (error). */
331 static Lisp_Object list_of_error
;
333 #ifdef HAVE_WINDOW_SYSTEM
335 /* Test if overflow newline into fringe. Called with iterator IT
336 at or past right window margin, and with IT->current_x set. */
338 #define IT_OVERFLOW_NEWLINE_INTO_FRINGE(IT) \
339 (!NILP (Voverflow_newline_into_fringe) \
340 && FRAME_WINDOW_P ((IT)->f) \
341 && ((IT)->bidi_it.paragraph_dir == R2L \
342 ? (WINDOW_LEFT_FRINGE_WIDTH ((IT)->w) > 0) \
343 : (WINDOW_RIGHT_FRINGE_WIDTH ((IT)->w) > 0)) \
344 && (IT)->current_x == (IT)->last_visible_x)
346 #else /* !HAVE_WINDOW_SYSTEM */
347 #define IT_OVERFLOW_NEWLINE_INTO_FRINGE(it) 0
348 #endif /* HAVE_WINDOW_SYSTEM */
350 /* Test if the display element loaded in IT, or the underlying buffer
351 or string character, is a space or a TAB character. This is used
352 to determine where word wrapping can occur. */
354 #define IT_DISPLAYING_WHITESPACE(it) \
355 ((it->what == IT_CHARACTER && (it->c == ' ' || it->c == '\t')) \
356 || ((STRINGP (it->string) \
357 && (SREF (it->string, IT_STRING_BYTEPOS (*it)) == ' ' \
358 || SREF (it->string, IT_STRING_BYTEPOS (*it)) == '\t')) \
360 && (it->s[IT_BYTEPOS (*it)] == ' ' \
361 || it->s[IT_BYTEPOS (*it)] == '\t')) \
362 || (IT_BYTEPOS (*it) < ZV_BYTE \
363 && (*BYTE_POS_ADDR (IT_BYTEPOS (*it)) == ' ' \
364 || *BYTE_POS_ADDR (IT_BYTEPOS (*it)) == '\t')))) \
366 /* Non-zero means print newline to stdout before next mini-buffer
369 bool noninteractive_need_newline
;
371 /* Non-zero means print newline to message log before next message. */
373 static bool message_log_need_newline
;
375 /* Three markers that message_dolog uses.
376 It could allocate them itself, but that causes trouble
377 in handling memory-full errors. */
378 static Lisp_Object message_dolog_marker1
;
379 static Lisp_Object message_dolog_marker2
;
380 static Lisp_Object message_dolog_marker3
;
382 /* The buffer position of the first character appearing entirely or
383 partially on the line of the selected window which contains the
384 cursor; <= 0 if not known. Set by set_cursor_from_row, used for
385 redisplay optimization in redisplay_internal. */
387 static struct text_pos this_line_start_pos
;
389 /* Number of characters past the end of the line above, including the
390 terminating newline. */
392 static struct text_pos this_line_end_pos
;
394 /* The vertical positions and the height of this line. */
396 static int this_line_vpos
;
397 static int this_line_y
;
398 static int this_line_pixel_height
;
400 /* X position at which this display line starts. Usually zero;
401 negative if first character is partially visible. */
403 static int this_line_start_x
;
405 /* The smallest character position seen by move_it_* functions as they
406 move across display lines. Used to set MATRIX_ROW_START_CHARPOS of
407 hscrolled lines, see display_line. */
409 static struct text_pos this_line_min_pos
;
411 /* Buffer that this_line_.* variables are referring to. */
413 static struct buffer
*this_line_buffer
;
415 /* Nonzero if an overlay arrow has been displayed in this window. */
417 static bool overlay_arrow_seen
;
419 /* Vector containing glyphs for an ellipsis `...'. */
421 static Lisp_Object default_invis_vector
[3];
423 /* This is the window where the echo area message was displayed. It
424 is always a mini-buffer window, but it may not be the same window
425 currently active as a mini-buffer. */
427 Lisp_Object echo_area_window
;
429 /* List of pairs (MESSAGE . MULTIBYTE). The function save_message
430 pushes the current message and the value of
431 message_enable_multibyte on the stack, the function restore_message
432 pops the stack and displays MESSAGE again. */
434 static Lisp_Object Vmessage_stack
;
436 /* Nonzero means multibyte characters were enabled when the echo area
437 message was specified. */
439 static bool message_enable_multibyte
;
441 /* Nonzero if we should redraw the mode lines on the next redisplay.
442 If it has value REDISPLAY_SOME, then only redisplay the mode lines where
443 the `redisplay' bit has been set. Otherwise, redisplay all mode lines
444 (the number used is then only used to track down the cause for this
447 int update_mode_lines
;
449 /* Nonzero if window sizes or contents other than selected-window have changed
450 since last redisplay that finished.
451 If it has value REDISPLAY_SOME, then only redisplay the windows where
452 the `redisplay' bit has been set. Otherwise, redisplay all windows
453 (the number used is then only used to track down the cause for this
456 int windows_or_buffers_changed
;
458 /* Nonzero after display_mode_line if %l was used and it displayed a
461 static bool line_number_displayed
;
463 /* The name of the *Messages* buffer, a string. */
465 static Lisp_Object Vmessages_buffer_name
;
467 /* Current, index 0, and last displayed echo area message. Either
468 buffers from echo_buffers, or nil to indicate no message. */
470 Lisp_Object echo_area_buffer
[2];
472 /* The buffers referenced from echo_area_buffer. */
474 static Lisp_Object echo_buffer
[2];
476 /* A vector saved used in with_area_buffer to reduce consing. */
478 static Lisp_Object Vwith_echo_area_save_vector
;
480 /* Non-zero means display_echo_area should display the last echo area
481 message again. Set by redisplay_preserve_echo_area. */
483 static bool display_last_displayed_message_p
;
485 /* Nonzero if echo area is being used by print; zero if being used by
488 static bool message_buf_print
;
490 /* Set to 1 in clear_message to make redisplay_internal aware
491 of an emptied echo area. */
493 static bool message_cleared_p
;
495 /* A scratch glyph row with contents used for generating truncation
496 glyphs. Also used in direct_output_for_insert. */
498 #define MAX_SCRATCH_GLYPHS 100
499 static struct glyph_row scratch_glyph_row
;
500 static struct glyph scratch_glyphs
[MAX_SCRATCH_GLYPHS
];
502 /* Ascent and height of the last line processed by move_it_to. */
504 static int last_height
;
506 /* Non-zero if there's a help-echo in the echo area. */
508 bool help_echo_showing_p
;
510 /* The maximum distance to look ahead for text properties. Values
511 that are too small let us call compute_char_face and similar
512 functions too often which is expensive. Values that are too large
513 let us call compute_char_face and alike too often because we
514 might not be interested in text properties that far away. */
516 #define TEXT_PROP_DISTANCE_LIMIT 100
518 /* SAVE_IT and RESTORE_IT are called when we save a snapshot of the
519 iterator state and later restore it. This is needed because the
520 bidi iterator on bidi.c keeps a stacked cache of its states, which
521 is really a singleton. When we use scratch iterator objects to
522 move around the buffer, we can cause the bidi cache to be pushed or
523 popped, and therefore we need to restore the cache state when we
524 return to the original iterator. */
525 #define SAVE_IT(ITCOPY,ITORIG,CACHE) \
528 bidi_unshelve_cache (CACHE, 1); \
530 CACHE = bidi_shelve_cache (); \
533 #define RESTORE_IT(pITORIG,pITCOPY,CACHE) \
535 if (pITORIG != pITCOPY) \
536 *(pITORIG) = *(pITCOPY); \
537 bidi_unshelve_cache (CACHE, 0); \
541 /* Functions to mark elements as needing redisplay. */
542 enum { REDISPLAY_SOME
= 2}; /* Arbitrary choice. */
545 redisplay_other_windows (void)
547 if (!windows_or_buffers_changed
)
548 windows_or_buffers_changed
= REDISPLAY_SOME
;
552 wset_redisplay (struct window
*w
)
554 /* Beware: selected_window can be nil during early stages. */
555 if (!EQ (make_lisp_ptr (w
, Lisp_Vectorlike
), selected_window
))
556 redisplay_other_windows ();
561 fset_redisplay (struct frame
*f
)
563 redisplay_other_windows ();
568 bset_redisplay (struct buffer
*b
)
570 int count
= buffer_window_count (b
);
573 /* ... it's visible in other window than selected, */
574 if (count
> 1 || b
!= XBUFFER (XWINDOW (selected_window
)->contents
))
575 redisplay_other_windows ();
576 /* Even if we don't set windows_or_buffers_changed, do set `redisplay'
577 so that if we later set windows_or_buffers_changed, this buffer will
579 b
->text
->redisplay
= true;
584 bset_update_mode_line (struct buffer
*b
)
586 if (!update_mode_lines
)
587 update_mode_lines
= REDISPLAY_SOME
;
588 b
->text
->redisplay
= true;
593 /* Non-zero means print traces of redisplay if compiled with
594 GLYPH_DEBUG defined. */
596 bool trace_redisplay_p
;
598 #endif /* GLYPH_DEBUG */
600 #ifdef DEBUG_TRACE_MOVE
601 /* Non-zero means trace with TRACE_MOVE to stderr. */
604 #define TRACE_MOVE(x) if (trace_move) fprintf x; else (void) 0
606 #define TRACE_MOVE(x) (void) 0
609 /* Buffer being redisplayed -- for redisplay_window_error. */
611 static struct buffer
*displayed_buffer
;
613 /* Value returned from text property handlers (see below). */
618 HANDLED_RECOMPUTE_PROPS
,
619 HANDLED_OVERLAY_STRING_CONSUMED
,
623 /* A description of text properties that redisplay is interested
628 /* The symbol index of the name of the property. */
631 /* A unique index for the property. */
634 /* A handler function called to set up iterator IT from the property
635 at IT's current position. Value is used to steer handle_stop. */
636 enum prop_handled (*handler
) (struct it
*it
);
639 static enum prop_handled
handle_face_prop (struct it
*);
640 static enum prop_handled
handle_invisible_prop (struct it
*);
641 static enum prop_handled
handle_display_prop (struct it
*);
642 static enum prop_handled
handle_composition_prop (struct it
*);
643 static enum prop_handled
handle_overlay_change (struct it
*);
644 static enum prop_handled
handle_fontified_prop (struct it
*);
646 /* Properties handled by iterators. */
648 static struct props it_props
[] =
650 {SYMBOL_INDEX (Qfontified
), FONTIFIED_PROP_IDX
, handle_fontified_prop
},
651 /* Handle `face' before `display' because some sub-properties of
652 `display' need to know the face. */
653 {SYMBOL_INDEX (Qface
), FACE_PROP_IDX
, handle_face_prop
},
654 {SYMBOL_INDEX (Qdisplay
), DISPLAY_PROP_IDX
, handle_display_prop
},
655 {SYMBOL_INDEX (Qinvisible
), INVISIBLE_PROP_IDX
, handle_invisible_prop
},
656 {SYMBOL_INDEX (Qcomposition
), COMPOSITION_PROP_IDX
, handle_composition_prop
},
660 /* Value is the position described by X. If X is a marker, value is
661 the marker_position of X. Otherwise, value is X. */
663 #define COERCE_MARKER(X) (MARKERP ((X)) ? Fmarker_position (X) : (X))
665 /* Enumeration returned by some move_it_.* functions internally. */
669 /* Not used. Undefined value. */
672 /* Move ended at the requested buffer position or ZV. */
673 MOVE_POS_MATCH_OR_ZV
,
675 /* Move ended at the requested X pixel position. */
678 /* Move within a line ended at the end of a line that must be
682 /* Move within a line ended at the end of a line that would
683 be displayed truncated. */
686 /* Move within a line ended at a line end. */
690 /* This counter is used to clear the face cache every once in a while
691 in redisplay_internal. It is incremented for each redisplay.
692 Every CLEAR_FACE_CACHE_COUNT full redisplays, the face cache is
695 #define CLEAR_FACE_CACHE_COUNT 500
696 static int clear_face_cache_count
;
698 /* Similarly for the image cache. */
700 #ifdef HAVE_WINDOW_SYSTEM
701 #define CLEAR_IMAGE_CACHE_COUNT 101
702 static int clear_image_cache_count
;
704 /* Null glyph slice */
705 static struct glyph_slice null_glyph_slice
= { 0, 0, 0, 0 };
708 /* True while redisplay_internal is in progress. */
712 /* If a string, XTread_socket generates an event to display that string.
713 (The display is done in read_char.) */
715 Lisp_Object help_echo_string
;
716 Lisp_Object help_echo_window
;
717 Lisp_Object help_echo_object
;
718 ptrdiff_t help_echo_pos
;
720 /* Temporary variable for XTread_socket. */
722 Lisp_Object previous_help_echo_string
;
724 /* Platform-independent portion of hourglass implementation. */
726 #ifdef HAVE_WINDOW_SYSTEM
728 /* Non-zero means an hourglass cursor is currently shown. */
729 static bool hourglass_shown_p
;
731 /* If non-null, an asynchronous timer that, when it expires, displays
732 an hourglass cursor on all frames. */
733 static struct atimer
*hourglass_atimer
;
735 #endif /* HAVE_WINDOW_SYSTEM */
737 /* Default number of seconds to wait before displaying an hourglass
739 #define DEFAULT_HOURGLASS_DELAY 1
741 #ifdef HAVE_WINDOW_SYSTEM
743 /* Default pixel width of `thin-space' display method. */
744 #define THIN_SPACE_WIDTH 1
746 #endif /* HAVE_WINDOW_SYSTEM */
748 /* Function prototypes. */
750 static void setup_for_ellipsis (struct it
*, int);
751 static void set_iterator_to_next (struct it
*, int);
752 static void mark_window_display_accurate_1 (struct window
*, int);
753 static int single_display_spec_string_p (Lisp_Object
, Lisp_Object
);
754 static int display_prop_string_p (Lisp_Object
, Lisp_Object
);
755 static int row_for_charpos_p (struct glyph_row
*, ptrdiff_t);
756 static int cursor_row_p (struct glyph_row
*);
757 static int redisplay_mode_lines (Lisp_Object
, bool);
758 static char *decode_mode_spec_coding (Lisp_Object
, char *, int);
760 static Lisp_Object
get_it_property (struct it
*it
, Lisp_Object prop
);
762 static void handle_line_prefix (struct it
*);
764 static void pint2str (char *, int, ptrdiff_t);
765 static void pint2hrstr (char *, int, ptrdiff_t);
766 static struct text_pos
run_window_scroll_functions (Lisp_Object
,
768 static int text_outside_line_unchanged_p (struct window
*,
769 ptrdiff_t, ptrdiff_t);
770 static void store_mode_line_noprop_char (char);
771 static int store_mode_line_noprop (const char *, int, int);
772 static void handle_stop (struct it
*);
773 static void handle_stop_backwards (struct it
*, ptrdiff_t);
774 static void vmessage (const char *, va_list) ATTRIBUTE_FORMAT_PRINTF (1, 0);
775 static void ensure_echo_area_buffers (void);
776 static void unwind_with_echo_area_buffer (Lisp_Object
);
777 static Lisp_Object
with_echo_area_buffer_unwind_data (struct window
*);
778 static int with_echo_area_buffer (struct window
*, int,
779 int (*) (ptrdiff_t, Lisp_Object
),
780 ptrdiff_t, Lisp_Object
);
781 static void clear_garbaged_frames (void);
782 static int current_message_1 (ptrdiff_t, Lisp_Object
);
783 static int truncate_message_1 (ptrdiff_t, Lisp_Object
);
784 static void set_message (Lisp_Object
);
785 static int set_message_1 (ptrdiff_t, Lisp_Object
);
786 static int display_echo_area (struct window
*);
787 static int display_echo_area_1 (ptrdiff_t, Lisp_Object
);
788 static int resize_mini_window_1 (ptrdiff_t, Lisp_Object
);
789 static void unwind_redisplay (void);
790 static int string_char_and_length (const unsigned char *, int *);
791 static struct text_pos
display_prop_end (struct it
*, Lisp_Object
,
793 static int compute_window_start_on_continuation_line (struct window
*);
794 static void insert_left_trunc_glyphs (struct it
*);
795 static struct glyph_row
*get_overlay_arrow_glyph_row (struct window
*,
797 static void extend_face_to_end_of_line (struct it
*);
798 static int append_space_for_newline (struct it
*, int);
799 static int cursor_row_fully_visible_p (struct window
*, int, int);
800 static int try_scrolling (Lisp_Object
, int, ptrdiff_t, ptrdiff_t, int, int);
801 static int try_cursor_movement (Lisp_Object
, struct text_pos
, int *);
802 static int trailing_whitespace_p (ptrdiff_t);
803 static intmax_t message_log_check_duplicate (ptrdiff_t, ptrdiff_t);
804 static void push_it (struct it
*, struct text_pos
*);
805 static void iterate_out_of_display_property (struct it
*);
806 static void pop_it (struct it
*);
807 static void sync_frame_with_window_matrix_rows (struct window
*);
808 static void redisplay_internal (void);
809 static bool echo_area_display (bool);
810 static void redisplay_windows (Lisp_Object
);
811 static void redisplay_window (Lisp_Object
, bool);
812 static Lisp_Object
redisplay_window_error (Lisp_Object
);
813 static Lisp_Object
redisplay_window_0 (Lisp_Object
);
814 static Lisp_Object
redisplay_window_1 (Lisp_Object
);
815 static int set_cursor_from_row (struct window
*, struct glyph_row
*,
816 struct glyph_matrix
*, ptrdiff_t, ptrdiff_t,
818 static int update_menu_bar (struct frame
*, int, int);
819 static int try_window_reusing_current_matrix (struct window
*);
820 static int try_window_id (struct window
*);
821 static int display_line (struct it
*);
822 static int display_mode_lines (struct window
*);
823 static int display_mode_line (struct window
*, enum face_id
, Lisp_Object
);
824 static int display_mode_element (struct it
*, int, int, int, Lisp_Object
, Lisp_Object
, int);
825 static int store_mode_line_string (const char *, Lisp_Object
, int, int, int, Lisp_Object
);
826 static const char *decode_mode_spec (struct window
*, int, int, Lisp_Object
*);
827 static void display_menu_bar (struct window
*);
828 static ptrdiff_t display_count_lines (ptrdiff_t, ptrdiff_t, ptrdiff_t,
830 static int display_string (const char *, Lisp_Object
, Lisp_Object
,
831 ptrdiff_t, ptrdiff_t, struct it
*, int, int, int, int);
832 static void compute_line_metrics (struct it
*);
833 static void run_redisplay_end_trigger_hook (struct it
*);
834 static int get_overlay_strings (struct it
*, ptrdiff_t);
835 static int get_overlay_strings_1 (struct it
*, ptrdiff_t, int);
836 static void next_overlay_string (struct it
*);
837 static void reseat (struct it
*, struct text_pos
, int);
838 static void reseat_1 (struct it
*, struct text_pos
, int);
839 static void back_to_previous_visible_line_start (struct it
*);
840 static void reseat_at_next_visible_line_start (struct it
*, int);
841 static int next_element_from_ellipsis (struct it
*);
842 static int next_element_from_display_vector (struct it
*);
843 static int next_element_from_string (struct it
*);
844 static int next_element_from_c_string (struct it
*);
845 static int next_element_from_buffer (struct it
*);
846 static int next_element_from_composition (struct it
*);
847 static int next_element_from_image (struct it
*);
849 static int next_element_from_xwidget(struct it
*);
851 static int next_element_from_stretch (struct it
*);
852 static void load_overlay_strings (struct it
*, ptrdiff_t);
853 static int init_from_display_pos (struct it
*, struct window
*,
854 struct display_pos
*);
855 static void reseat_to_string (struct it
*, const char *,
856 Lisp_Object
, ptrdiff_t, ptrdiff_t, int, int);
857 static int get_next_display_element (struct it
*);
858 static enum move_it_result
859 move_it_in_display_line_to (struct it
*, ptrdiff_t, int,
860 enum move_operation_enum
);
861 static void get_visually_first_element (struct it
*);
862 static void init_to_row_start (struct it
*, struct window
*,
864 static int init_to_row_end (struct it
*, struct window
*,
866 static void back_to_previous_line_start (struct it
*);
867 static int forward_to_next_line_start (struct it
*, int *, struct bidi_it
*);
868 static struct text_pos
string_pos_nchars_ahead (struct text_pos
,
869 Lisp_Object
, ptrdiff_t);
870 static struct text_pos
string_pos (ptrdiff_t, Lisp_Object
);
871 static struct text_pos
c_string_pos (ptrdiff_t, const char *, bool);
872 static ptrdiff_t number_of_chars (const char *, bool);
873 static void compute_stop_pos (struct it
*);
874 static void compute_string_pos (struct text_pos
*, struct text_pos
,
876 static int face_before_or_after_it_pos (struct it
*, int);
877 static ptrdiff_t next_overlay_change (ptrdiff_t);
878 static int handle_display_spec (struct it
*, Lisp_Object
, Lisp_Object
,
879 Lisp_Object
, struct text_pos
*, ptrdiff_t, int);
880 static int handle_single_display_spec (struct it
*, Lisp_Object
,
881 Lisp_Object
, Lisp_Object
,
882 struct text_pos
*, ptrdiff_t, int, int);
883 static int underlying_face_id (struct it
*);
884 static int in_ellipses_for_invisible_text_p (struct display_pos
*,
887 #define face_before_it_pos(IT) face_before_or_after_it_pos ((IT), 1)
888 #define face_after_it_pos(IT) face_before_or_after_it_pos ((IT), 0)
890 #ifdef HAVE_WINDOW_SYSTEM
892 static void x_consider_frame_title (Lisp_Object
);
893 static void update_tool_bar (struct frame
*, int);
894 static int redisplay_tool_bar (struct frame
*);
895 static void x_draw_bottom_divider (struct window
*w
);
896 static void notice_overwritten_cursor (struct window
*,
899 static void append_stretch_glyph (struct it
*, Lisp_Object
,
903 #endif /* HAVE_WINDOW_SYSTEM */
905 static void produce_special_glyphs (struct it
*, enum display_element_type
);
906 static void show_mouse_face (Mouse_HLInfo
*, enum draw_glyphs_face
);
907 static bool coords_in_mouse_face_p (struct window
*, int, int);
911 /***********************************************************************
912 Window display dimensions
913 ***********************************************************************/
915 /* Return the bottom boundary y-position for text lines in window W.
916 This is the first y position at which a line cannot start.
917 It is relative to the top of the window.
919 This is the height of W minus the height of a mode line, if any. */
922 window_text_bottom_y (struct window
*w
)
924 int height
= WINDOW_PIXEL_HEIGHT (w
);
926 height
-= WINDOW_BOTTOM_DIVIDER_WIDTH (w
);
928 if (WINDOW_WANTS_MODELINE_P (w
))
929 height
-= CURRENT_MODE_LINE_HEIGHT (w
);
931 height
-= WINDOW_SCROLL_BAR_AREA_HEIGHT (w
);
936 /* Return the pixel width of display area AREA of window W.
937 ANY_AREA means return the total width of W, not including
938 fringes to the left and right of the window. */
941 window_box_width (struct window
*w
, enum glyph_row_area area
)
943 int width
= w
->pixel_width
;
945 if (!w
->pseudo_window_p
)
947 width
-= WINDOW_SCROLL_BAR_AREA_WIDTH (w
);
948 width
-= WINDOW_RIGHT_DIVIDER_WIDTH (w
);
950 if (area
== TEXT_AREA
)
951 width
-= (WINDOW_MARGINS_WIDTH (w
)
952 + WINDOW_FRINGES_WIDTH (w
));
953 else if (area
== LEFT_MARGIN_AREA
)
954 width
= WINDOW_LEFT_MARGIN_WIDTH (w
);
955 else if (area
== RIGHT_MARGIN_AREA
)
956 width
= WINDOW_RIGHT_MARGIN_WIDTH (w
);
959 /* With wide margins, fringes, etc. we might end up with a negative
960 width, correct that here. */
961 return max (0, width
);
965 /* Return the pixel height of the display area of window W, not
966 including mode lines of W, if any. */
969 window_box_height (struct window
*w
)
971 struct frame
*f
= XFRAME (w
->frame
);
972 int height
= WINDOW_PIXEL_HEIGHT (w
);
974 eassert (height
>= 0);
976 height
-= WINDOW_BOTTOM_DIVIDER_WIDTH (w
);
977 height
-= WINDOW_SCROLL_BAR_AREA_HEIGHT (w
);
979 /* Note: the code below that determines the mode-line/header-line
980 height is essentially the same as that contained in the macro
981 CURRENT_{MODE,HEADER}_LINE_HEIGHT, except that it checks whether
982 the appropriate glyph row has its `mode_line_p' flag set,
983 and if it doesn't, uses estimate_mode_line_height instead. */
985 if (WINDOW_WANTS_MODELINE_P (w
))
987 struct glyph_row
*ml_row
988 = (w
->current_matrix
&& w
->current_matrix
->rows
989 ? MATRIX_MODE_LINE_ROW (w
->current_matrix
)
991 if (ml_row
&& ml_row
->mode_line_p
)
992 height
-= ml_row
->height
;
994 height
-= estimate_mode_line_height (f
, CURRENT_MODE_LINE_FACE_ID (w
));
997 if (WINDOW_WANTS_HEADER_LINE_P (w
))
999 struct glyph_row
*hl_row
1000 = (w
->current_matrix
&& w
->current_matrix
->rows
1001 ? MATRIX_HEADER_LINE_ROW (w
->current_matrix
)
1003 if (hl_row
&& hl_row
->mode_line_p
)
1004 height
-= hl_row
->height
;
1006 height
-= estimate_mode_line_height (f
, HEADER_LINE_FACE_ID
);
1009 /* With a very small font and a mode-line that's taller than
1010 default, we might end up with a negative height. */
1011 return max (0, height
);
1014 /* Return the window-relative coordinate of the left edge of display
1015 area AREA of window W. ANY_AREA means return the left edge of the
1016 whole window, to the right of the left fringe of W. */
1019 window_box_left_offset (struct window
*w
, enum glyph_row_area area
)
1023 if (w
->pseudo_window_p
)
1026 x
= WINDOW_LEFT_SCROLL_BAR_AREA_WIDTH (w
);
1028 if (area
== TEXT_AREA
)
1029 x
+= (WINDOW_LEFT_FRINGE_WIDTH (w
)
1030 + window_box_width (w
, LEFT_MARGIN_AREA
));
1031 else if (area
== RIGHT_MARGIN_AREA
)
1032 x
+= (WINDOW_LEFT_FRINGE_WIDTH (w
)
1033 + window_box_width (w
, LEFT_MARGIN_AREA
)
1034 + window_box_width (w
, TEXT_AREA
)
1035 + (WINDOW_HAS_FRINGES_OUTSIDE_MARGINS (w
)
1037 : WINDOW_RIGHT_FRINGE_WIDTH (w
)));
1038 else if (area
== LEFT_MARGIN_AREA
1039 && WINDOW_HAS_FRINGES_OUTSIDE_MARGINS (w
))
1040 x
+= WINDOW_LEFT_FRINGE_WIDTH (w
);
1042 /* Don't return more than the window's pixel width. */
1043 return min (x
, w
->pixel_width
);
1047 /* Return the window-relative coordinate of the right edge of display
1048 area AREA of window W. ANY_AREA means return the right edge of the
1049 whole window, to the left of the right fringe of W. */
1052 window_box_right_offset (struct window
*w
, enum glyph_row_area area
)
1054 /* Don't return more than the window's pixel width. */
1055 return min (window_box_left_offset (w
, area
) + window_box_width (w
, area
),
1059 /* Return the frame-relative coordinate of the left edge of display
1060 area AREA of window W. ANY_AREA means return the left edge of the
1061 whole window, to the right of the left fringe of W. */
1064 window_box_left (struct window
*w
, enum glyph_row_area area
)
1066 struct frame
*f
= XFRAME (w
->frame
);
1069 if (w
->pseudo_window_p
)
1070 return FRAME_INTERNAL_BORDER_WIDTH (f
);
1072 x
= (WINDOW_LEFT_EDGE_X (w
)
1073 + window_box_left_offset (w
, area
));
1079 /* Return the frame-relative coordinate of the right edge of display
1080 area AREA of window W. ANY_AREA means return the right edge of the
1081 whole window, to the left of the right fringe of W. */
1084 window_box_right (struct window
*w
, enum glyph_row_area area
)
1086 return window_box_left (w
, area
) + window_box_width (w
, area
);
1089 /* Get the bounding box of the display area AREA of window W, without
1090 mode lines, in frame-relative coordinates. ANY_AREA means the
1091 whole window, not including the left and right fringes of
1092 the window. Return in *BOX_X and *BOX_Y the frame-relative pixel
1093 coordinates of the upper-left corner of the box. Return in
1094 *BOX_WIDTH, and *BOX_HEIGHT the pixel width and height of the box. */
1097 window_box (struct window
*w
, enum glyph_row_area area
, int *box_x
,
1098 int *box_y
, int *box_width
, int *box_height
)
1101 *box_width
= window_box_width (w
, area
);
1103 *box_height
= window_box_height (w
);
1105 *box_x
= window_box_left (w
, area
);
1108 *box_y
= WINDOW_TOP_EDGE_Y (w
);
1109 if (WINDOW_WANTS_HEADER_LINE_P (w
))
1110 *box_y
+= CURRENT_HEADER_LINE_HEIGHT (w
);
1114 #ifdef HAVE_WINDOW_SYSTEM
1116 /* Get the bounding box of the display area AREA of window W, without
1117 mode lines and both fringes of the window. Return in *TOP_LEFT_X
1118 and TOP_LEFT_Y the frame-relative pixel coordinates of the
1119 upper-left corner of the box. Return in *BOTTOM_RIGHT_X, and
1120 *BOTTOM_RIGHT_Y the coordinates of the bottom-right corner of the
1124 window_box_edges (struct window
*w
, int *top_left_x
, int *top_left_y
,
1125 int *bottom_right_x
, int *bottom_right_y
)
1127 window_box (w
, ANY_AREA
, top_left_x
, top_left_y
,
1128 bottom_right_x
, bottom_right_y
);
1129 *bottom_right_x
+= *top_left_x
;
1130 *bottom_right_y
+= *top_left_y
;
1133 #endif /* HAVE_WINDOW_SYSTEM */
1135 /***********************************************************************
1137 ***********************************************************************/
1139 /* Return the bottom y-position of the line the iterator IT is in.
1140 This can modify IT's settings. */
1143 line_bottom_y (struct it
*it
)
1145 int line_height
= it
->max_ascent
+ it
->max_descent
;
1146 int line_top_y
= it
->current_y
;
1148 if (line_height
== 0)
1151 line_height
= last_height
;
1152 else if (IT_CHARPOS (*it
) < ZV
)
1154 move_it_by_lines (it
, 1);
1155 line_height
= (it
->max_ascent
|| it
->max_descent
1156 ? it
->max_ascent
+ it
->max_descent
1161 struct glyph_row
*row
= it
->glyph_row
;
1163 /* Use the default character height. */
1164 it
->glyph_row
= NULL
;
1165 it
->what
= IT_CHARACTER
;
1168 PRODUCE_GLYPHS (it
);
1169 line_height
= it
->ascent
+ it
->descent
;
1170 it
->glyph_row
= row
;
1174 return line_top_y
+ line_height
;
1177 DEFUN ("line-pixel-height", Fline_pixel_height
,
1178 Sline_pixel_height
, 0, 0, 0,
1179 doc
: /* Return height in pixels of text line in the selected window.
1181 Value is the height in pixels of the line at point. */)
1186 struct window
*w
= XWINDOW (selected_window
);
1187 struct buffer
*old_buffer
= NULL
;
1190 if (XBUFFER (w
->contents
) != current_buffer
)
1192 old_buffer
= current_buffer
;
1193 set_buffer_internal_1 (XBUFFER (w
->contents
));
1195 SET_TEXT_POS (pt
, PT
, PT_BYTE
);
1196 start_display (&it
, w
, pt
);
1197 it
.vpos
= it
.current_y
= 0;
1199 result
= make_number (line_bottom_y (&it
));
1201 set_buffer_internal_1 (old_buffer
);
1206 /* Return the default pixel height of text lines in window W. The
1207 value is the canonical height of the W frame's default font, plus
1208 any extra space required by the line-spacing variable or frame
1211 Implementation note: this ignores any line-spacing text properties
1212 put on the newline characters. This is because those properties
1213 only affect the _screen_ line ending in the newline (i.e., in a
1214 continued line, only the last screen line will be affected), which
1215 means only a small number of lines in a buffer can ever use this
1216 feature. Since this function is used to compute the default pixel
1217 equivalent of text lines in a window, we can safely ignore those
1218 few lines. For the same reasons, we ignore the line-height
1221 default_line_pixel_height (struct window
*w
)
1223 struct frame
*f
= WINDOW_XFRAME (w
);
1224 int height
= FRAME_LINE_HEIGHT (f
);
1226 if (!FRAME_INITIAL_P (f
) && BUFFERP (w
->contents
))
1228 struct buffer
*b
= XBUFFER (w
->contents
);
1229 Lisp_Object val
= BVAR (b
, extra_line_spacing
);
1232 val
= BVAR (&buffer_defaults
, extra_line_spacing
);
1235 if (RANGED_INTEGERP (0, val
, INT_MAX
))
1236 height
+= XFASTINT (val
);
1237 else if (FLOATP (val
))
1239 int addon
= XFLOAT_DATA (val
) * height
+ 0.5;
1246 height
+= f
->extra_line_spacing
;
1252 /* Subroutine of pos_visible_p below. Extracts a display string, if
1253 any, from the display spec given as its argument. */
1255 string_from_display_spec (Lisp_Object spec
)
1259 while (CONSP (spec
))
1261 if (STRINGP (XCAR (spec
)))
1266 else if (VECTORP (spec
))
1270 for (i
= 0; i
< ASIZE (spec
); i
++)
1272 if (STRINGP (AREF (spec
, i
)))
1273 return AREF (spec
, i
);
1282 /* Limit insanely large values of W->hscroll on frame F to the largest
1283 value that will still prevent first_visible_x and last_visible_x of
1284 'struct it' from overflowing an int. */
1286 window_hscroll_limited (struct window
*w
, struct frame
*f
)
1288 ptrdiff_t window_hscroll
= w
->hscroll
;
1289 int window_text_width
= window_box_width (w
, TEXT_AREA
);
1290 int colwidth
= FRAME_COLUMN_WIDTH (f
);
1292 if (window_hscroll
> (INT_MAX
- window_text_width
) / colwidth
- 1)
1293 window_hscroll
= (INT_MAX
- window_text_width
) / colwidth
- 1;
1295 return window_hscroll
;
1298 /* Return 1 if position CHARPOS is visible in window W.
1299 CHARPOS < 0 means return info about WINDOW_END position.
1300 If visible, set *X and *Y to pixel coordinates of top left corner.
1301 Set *RTOP and *RBOT to pixel height of an invisible area of glyph at POS.
1302 Set *ROWH and *VPOS to row's visible height and VPOS (row number). */
1305 pos_visible_p (struct window
*w
, ptrdiff_t charpos
, int *x
, int *y
,
1306 int *rtop
, int *rbot
, int *rowh
, int *vpos
)
1309 void *itdata
= bidi_shelve_cache ();
1310 struct text_pos top
;
1312 struct buffer
*old_buffer
= NULL
;
1315 if (FRAME_INITIAL_P (XFRAME (WINDOW_FRAME (w
))))
1318 if (XBUFFER (w
->contents
) != current_buffer
)
1320 old_buffer
= current_buffer
;
1321 set_buffer_internal_1 (XBUFFER (w
->contents
));
1324 SET_TEXT_POS_FROM_MARKER (top
, w
->start
);
1325 /* Scrolling a minibuffer window via scroll bar when the echo area
1326 shows long text sometimes resets the minibuffer contents behind
1328 if (CHARPOS (top
) > ZV
)
1329 SET_TEXT_POS (top
, BEGV
, BEGV_BYTE
);
1331 /* Compute exact mode line heights. */
1332 if (WINDOW_WANTS_MODELINE_P (w
))
1334 = display_mode_line (w
, CURRENT_MODE_LINE_FACE_ID (w
),
1335 BVAR (current_buffer
, mode_line_format
));
1337 if (WINDOW_WANTS_HEADER_LINE_P (w
))
1338 w
->header_line_height
1339 = display_mode_line (w
, HEADER_LINE_FACE_ID
,
1340 BVAR (current_buffer
, header_line_format
));
1342 start_display (&it
, w
, top
);
1343 move_it_to (&it
, charpos
, -1, it
.last_visible_y
- 1, -1,
1344 (charpos
>= 0 ? MOVE_TO_POS
: 0) | MOVE_TO_Y
);
1347 && (((!it
.bidi_p
|| it
.bidi_it
.scan_dir
!= -1)
1348 && IT_CHARPOS (it
) >= charpos
)
1349 /* When scanning backwards under bidi iteration, move_it_to
1350 stops at or _before_ CHARPOS, because it stops at or to
1351 the _right_ of the character at CHARPOS. */
1352 || (it
.bidi_p
&& it
.bidi_it
.scan_dir
== -1
1353 && IT_CHARPOS (it
) <= charpos
)))
1355 /* We have reached CHARPOS, or passed it. How the call to
1356 move_it_to can overshoot: (i) If CHARPOS is on invisible text
1357 or covered by a display property, move_it_to stops at the end
1358 of the invisible text, to the right of CHARPOS. (ii) If
1359 CHARPOS is in a display vector, move_it_to stops on its last
1361 int top_x
= it
.current_x
;
1362 int top_y
= it
.current_y
;
1363 int window_top_y
= WINDOW_HEADER_LINE_HEIGHT (w
);
1366 void *save_it_data
= NULL
;
1368 /* Calling line_bottom_y may change it.method, it.position, etc. */
1369 SAVE_IT (save_it
, it
, save_it_data
);
1371 bottom_y
= line_bottom_y (&it
);
1372 if (top_y
< window_top_y
)
1373 visible_p
= bottom_y
> window_top_y
;
1374 else if (top_y
< it
.last_visible_y
)
1376 if (bottom_y
>= it
.last_visible_y
1377 && it
.bidi_p
&& it
.bidi_it
.scan_dir
== -1
1378 && IT_CHARPOS (it
) < charpos
)
1380 /* When the last line of the window is scanned backwards
1381 under bidi iteration, we could be duped into thinking
1382 that we have passed CHARPOS, when in fact move_it_to
1383 simply stopped short of CHARPOS because it reached
1384 last_visible_y. To see if that's what happened, we call
1385 move_it_to again with a slightly larger vertical limit,
1386 and see if it actually moved vertically; if it did, we
1387 didn't really reach CHARPOS, which is beyond window end. */
1388 /* Why 10? because we don't know how many canonical lines
1389 will the height of the next line(s) be. So we guess. */
1390 int ten_more_lines
= 10 * default_line_pixel_height (w
);
1392 move_it_to (&it
, charpos
, -1, bottom_y
+ ten_more_lines
, -1,
1393 MOVE_TO_POS
| MOVE_TO_Y
);
1394 if (it
.current_y
> top_y
)
1398 RESTORE_IT (&it
, &save_it
, save_it_data
);
1401 if (it
.method
== GET_FROM_DISPLAY_VECTOR
)
1403 /* We stopped on the last glyph of a display vector.
1404 Try and recompute. Hack alert! */
1405 if (charpos
< 2 || top
.charpos
>= charpos
)
1406 top_x
= it
.glyph_row
->x
;
1409 struct it it2
, it2_prev
;
1410 /* The idea is to get to the previous buffer
1411 position, consume the character there, and use
1412 the pixel coordinates we get after that. But if
1413 the previous buffer position is also displayed
1414 from a display vector, we need to consume all of
1415 the glyphs from that display vector. */
1416 start_display (&it2
, w
, top
);
1417 move_it_to (&it2
, charpos
- 1, -1, -1, -1, MOVE_TO_POS
);
1418 /* If we didn't get to CHARPOS - 1, there's some
1419 replacing display property at that position, and
1420 we stopped after it. That is exactly the place
1421 whose coordinates we want. */
1422 if (IT_CHARPOS (it2
) != charpos
- 1)
1426 /* Iterate until we get out of the display
1427 vector that displays the character at
1430 get_next_display_element (&it2
);
1431 PRODUCE_GLYPHS (&it2
);
1433 set_iterator_to_next (&it2
, 1);
1434 } while (it2
.method
== GET_FROM_DISPLAY_VECTOR
1435 && IT_CHARPOS (it2
) < charpos
);
1437 if (ITERATOR_AT_END_OF_LINE_P (&it2_prev
)
1438 || it2_prev
.current_x
> it2_prev
.last_visible_x
)
1439 top_x
= it
.glyph_row
->x
;
1442 top_x
= it2_prev
.current_x
;
1443 top_y
= it2_prev
.current_y
;
1447 else if (IT_CHARPOS (it
) != charpos
)
1449 Lisp_Object cpos
= make_number (charpos
);
1450 Lisp_Object spec
= Fget_char_property (cpos
, Qdisplay
, Qnil
);
1451 Lisp_Object string
= string_from_display_spec (spec
);
1452 struct text_pos tpos
;
1453 int replacing_spec_p
;
1454 bool newline_in_string
1456 && memchr (SDATA (string
), '\n', SBYTES (string
)));
1458 SET_TEXT_POS (tpos
, charpos
, CHAR_TO_BYTE (charpos
));
1461 && handle_display_spec (NULL
, spec
, Qnil
, Qnil
, &tpos
,
1462 charpos
, FRAME_WINDOW_P (it
.f
)));
1463 /* The tricky code below is needed because there's a
1464 discrepancy between move_it_to and how we set cursor
1465 when PT is at the beginning of a portion of text
1466 covered by a display property or an overlay with a
1467 display property, or the display line ends in a
1468 newline from a display string. move_it_to will stop
1469 _after_ such display strings, whereas
1470 set_cursor_from_row conspires with cursor_row_p to
1471 place the cursor on the first glyph produced from the
1474 /* We have overshoot PT because it is covered by a
1475 display property that replaces the text it covers.
1476 If the string includes embedded newlines, we are also
1477 in the wrong display line. Backtrack to the correct
1478 line, where the display property begins. */
1479 if (replacing_spec_p
)
1481 Lisp_Object startpos
, endpos
;
1482 EMACS_INT start
, end
;
1486 /* Find the first and the last buffer positions
1487 covered by the display string. */
1489 Fnext_single_char_property_change (cpos
, Qdisplay
,
1492 Fprevious_single_char_property_change (endpos
, Qdisplay
,
1494 start
= XFASTINT (startpos
);
1495 end
= XFASTINT (endpos
);
1496 /* Move to the last buffer position before the
1497 display property. */
1498 start_display (&it3
, w
, top
);
1499 if (start
> CHARPOS (top
))
1500 move_it_to (&it3
, start
- 1, -1, -1, -1, MOVE_TO_POS
);
1501 /* Move forward one more line if the position before
1502 the display string is a newline or if it is the
1503 rightmost character on a line that is
1504 continued or word-wrapped. */
1505 if (it3
.method
== GET_FROM_BUFFER
1507 || FETCH_BYTE (IT_BYTEPOS (it3
)) == '\n'))
1508 move_it_by_lines (&it3
, 1);
1509 else if (move_it_in_display_line_to (&it3
, -1,
1513 == MOVE_LINE_CONTINUED
)
1515 move_it_by_lines (&it3
, 1);
1516 /* When we are under word-wrap, the #$@%!
1517 move_it_by_lines moves 2 lines, so we need to
1519 if (it3
.line_wrap
== WORD_WRAP
)
1520 move_it_by_lines (&it3
, -1);
1523 /* Record the vertical coordinate of the display
1524 line where we wound up. */
1525 top_y
= it3
.current_y
;
1528 /* When characters are reordered for display,
1529 the character displayed to the left of the
1530 display string could be _after_ the display
1531 property in the logical order. Use the
1532 smallest vertical position of these two. */
1533 start_display (&it3
, w
, top
);
1534 move_it_to (&it3
, end
+ 1, -1, -1, -1, MOVE_TO_POS
);
1535 if (it3
.current_y
< top_y
)
1536 top_y
= it3
.current_y
;
1538 /* Move from the top of the window to the beginning
1539 of the display line where the display string
1541 start_display (&it3
, w
, top
);
1542 move_it_to (&it3
, -1, 0, top_y
, -1, MOVE_TO_X
| MOVE_TO_Y
);
1543 /* If it3_moved stays zero after the 'while' loop
1544 below, that means we already were at a newline
1545 before the loop (e.g., the display string begins
1546 with a newline), so we don't need to (and cannot)
1547 inspect the glyphs of it3.glyph_row, because
1548 PRODUCE_GLYPHS will not produce anything for a
1549 newline, and thus it3.glyph_row stays at its
1550 stale content it got at top of the window. */
1552 /* Finally, advance the iterator until we hit the
1553 first display element whose character position is
1554 CHARPOS, or until the first newline from the
1555 display string, which signals the end of the
1557 while (get_next_display_element (&it3
))
1559 PRODUCE_GLYPHS (&it3
);
1560 if (IT_CHARPOS (it3
) == charpos
1561 || ITERATOR_AT_END_OF_LINE_P (&it3
))
1564 set_iterator_to_next (&it3
, 0);
1566 top_x
= it3
.current_x
- it3
.pixel_width
;
1567 /* Normally, we would exit the above loop because we
1568 found the display element whose character
1569 position is CHARPOS. For the contingency that we
1570 didn't, and stopped at the first newline from the
1571 display string, move back over the glyphs
1572 produced from the string, until we find the
1573 rightmost glyph not from the string. */
1575 && newline_in_string
1576 && IT_CHARPOS (it3
) != charpos
&& EQ (it3
.object
, string
))
1578 struct glyph
*g
= it3
.glyph_row
->glyphs
[TEXT_AREA
]
1579 + it3
.glyph_row
->used
[TEXT_AREA
];
1581 while (EQ ((g
- 1)->object
, string
))
1584 top_x
-= g
->pixel_width
;
1586 eassert (g
< it3
.glyph_row
->glyphs
[TEXT_AREA
]
1587 + it3
.glyph_row
->used
[TEXT_AREA
]);
1593 *y
= max (top_y
+ max (0, it
.max_ascent
- it
.ascent
), window_top_y
);
1594 *rtop
= max (0, window_top_y
- top_y
);
1595 *rbot
= max (0, bottom_y
- it
.last_visible_y
);
1596 *rowh
= max (0, (min (bottom_y
, it
.last_visible_y
)
1597 - max (top_y
, window_top_y
)));
1599 if (it
.bidi_it
.paragraph_dir
== R2L
)
1605 /* Either we were asked to provide info about WINDOW_END, or
1606 CHARPOS is in the partially visible glyph row at end of
1609 void *it2data
= NULL
;
1611 SAVE_IT (it2
, it
, it2data
);
1612 if (IT_CHARPOS (it
) < ZV
&& FETCH_BYTE (IT_BYTEPOS (it
)) != '\n')
1613 move_it_by_lines (&it
, 1);
1614 if (charpos
< IT_CHARPOS (it
)
1615 || (it
.what
== IT_EOB
&& charpos
== IT_CHARPOS (it
)))
1618 RESTORE_IT (&it2
, &it2
, it2data
);
1619 move_it_to (&it2
, charpos
, -1, -1, -1, MOVE_TO_POS
);
1621 *y
= it2
.current_y
+ it2
.max_ascent
- it2
.ascent
;
1622 *rtop
= max (0, -it2
.current_y
);
1623 *rbot
= max (0, ((it2
.current_y
+ it2
.max_ascent
+ it2
.max_descent
)
1624 - it
.last_visible_y
));
1625 *rowh
= max (0, (min (it2
.current_y
+ it2
.max_ascent
+ it2
.max_descent
,
1627 - max (it2
.current_y
,
1628 WINDOW_HEADER_LINE_HEIGHT (w
))));
1630 if (it2
.bidi_it
.paragraph_dir
== R2L
)
1634 bidi_unshelve_cache (it2data
, 1);
1636 bidi_unshelve_cache (itdata
, 0);
1639 set_buffer_internal_1 (old_buffer
);
1645 window_hscroll_limited (w
, WINDOW_XFRAME (w
))
1646 * WINDOW_FRAME_COLUMN_WIDTH (w
);
1647 /* For lines in an R2L paragraph, we need to mirror the X pixel
1648 coordinate wrt the text area. For the reasons, see the
1649 commentary in buffer_posn_from_coords and the explanation of
1650 the geometry used by the move_it_* functions at the end of
1651 the large commentary near the beginning of this file. */
1653 *x
= window_box_width (w
, TEXT_AREA
) - *x
- 1;
1657 /* Debugging code. */
1659 fprintf (stderr
, "+pv pt=%d vs=%d --> x=%d y=%d rt=%d rb=%d rh=%d vp=%d\n",
1660 charpos
, w
->vscroll
, *x
, *y
, *rtop
, *rbot
, *rowh
, *vpos
);
1662 fprintf (stderr
, "-pv pt=%d vs=%d\n", charpos
, w
->vscroll
);
1669 /* Return the next character from STR. Return in *LEN the length of
1670 the character. This is like STRING_CHAR_AND_LENGTH but never
1671 returns an invalid character. If we find one, we return a `?', but
1672 with the length of the invalid character. */
1675 string_char_and_length (const unsigned char *str
, int *len
)
1679 c
= STRING_CHAR_AND_LENGTH (str
, *len
);
1680 if (!CHAR_VALID_P (c
))
1681 /* We may not change the length here because other places in Emacs
1682 don't use this function, i.e. they silently accept invalid
1691 /* Given a position POS containing a valid character and byte position
1692 in STRING, return the position NCHARS ahead (NCHARS >= 0). */
1694 static struct text_pos
1695 string_pos_nchars_ahead (struct text_pos pos
, Lisp_Object string
, ptrdiff_t nchars
)
1697 eassert (STRINGP (string
) && nchars
>= 0);
1699 if (STRING_MULTIBYTE (string
))
1701 const unsigned char *p
= SDATA (string
) + BYTEPOS (pos
);
1706 string_char_and_length (p
, &len
);
1709 BYTEPOS (pos
) += len
;
1713 SET_TEXT_POS (pos
, CHARPOS (pos
) + nchars
, BYTEPOS (pos
) + nchars
);
1719 /* Value is the text position, i.e. character and byte position,
1720 for character position CHARPOS in STRING. */
1722 static struct text_pos
1723 string_pos (ptrdiff_t charpos
, Lisp_Object string
)
1725 struct text_pos pos
;
1726 eassert (STRINGP (string
));
1727 eassert (charpos
>= 0);
1728 SET_TEXT_POS (pos
, charpos
, string_char_to_byte (string
, charpos
));
1733 /* Value is a text position, i.e. character and byte position, for
1734 character position CHARPOS in C string S. MULTIBYTE_P non-zero
1735 means recognize multibyte characters. */
1737 static struct text_pos
1738 c_string_pos (ptrdiff_t charpos
, const char *s
, bool multibyte_p
)
1740 struct text_pos pos
;
1742 eassert (s
!= NULL
);
1743 eassert (charpos
>= 0);
1749 SET_TEXT_POS (pos
, 0, 0);
1752 string_char_and_length ((const unsigned char *) s
, &len
);
1755 BYTEPOS (pos
) += len
;
1759 SET_TEXT_POS (pos
, charpos
, charpos
);
1765 /* Value is the number of characters in C string S. MULTIBYTE_P
1766 non-zero means recognize multibyte characters. */
1769 number_of_chars (const char *s
, bool multibyte_p
)
1775 ptrdiff_t rest
= strlen (s
);
1777 const unsigned char *p
= (const unsigned char *) s
;
1779 for (nchars
= 0; rest
> 0; ++nchars
)
1781 string_char_and_length (p
, &len
);
1782 rest
-= len
, p
+= len
;
1786 nchars
= strlen (s
);
1792 /* Compute byte position NEWPOS->bytepos corresponding to
1793 NEWPOS->charpos. POS is a known position in string STRING.
1794 NEWPOS->charpos must be >= POS.charpos. */
1797 compute_string_pos (struct text_pos
*newpos
, struct text_pos pos
, Lisp_Object string
)
1799 eassert (STRINGP (string
));
1800 eassert (CHARPOS (*newpos
) >= CHARPOS (pos
));
1802 if (STRING_MULTIBYTE (string
))
1803 *newpos
= string_pos_nchars_ahead (pos
, string
,
1804 CHARPOS (*newpos
) - CHARPOS (pos
));
1806 BYTEPOS (*newpos
) = CHARPOS (*newpos
);
1810 Return an estimation of the pixel height of mode or header lines on
1811 frame F. FACE_ID specifies what line's height to estimate. */
1814 estimate_mode_line_height (struct frame
*f
, enum face_id face_id
)
1816 #ifdef HAVE_WINDOW_SYSTEM
1817 if (FRAME_WINDOW_P (f
))
1819 int height
= FONT_HEIGHT (FRAME_FONT (f
));
1821 /* This function is called so early when Emacs starts that the face
1822 cache and mode line face are not yet initialized. */
1823 if (FRAME_FACE_CACHE (f
))
1825 struct face
*face
= FACE_FROM_ID (f
, face_id
);
1829 height
= FONT_HEIGHT (face
->font
);
1830 if (face
->box_line_width
> 0)
1831 height
+= 2 * face
->box_line_width
;
1842 /* Given a pixel position (PIX_X, PIX_Y) on frame F, return glyph
1843 co-ordinates in (*X, *Y). Set *BOUNDS to the rectangle that the
1844 glyph at X, Y occupies, if BOUNDS != 0. If NOCLIP is non-zero, do
1845 not force the value into range. */
1848 pixel_to_glyph_coords (struct frame
*f
, register int pix_x
, register int pix_y
,
1849 int *x
, int *y
, NativeRectangle
*bounds
, int noclip
)
1852 #ifdef HAVE_WINDOW_SYSTEM
1853 if (FRAME_WINDOW_P (f
))
1855 /* Arrange for the division in FRAME_PIXEL_X_TO_COL etc. to round down
1856 even for negative values. */
1858 pix_x
-= FRAME_COLUMN_WIDTH (f
) - 1;
1860 pix_y
-= FRAME_LINE_HEIGHT (f
) - 1;
1862 pix_x
= FRAME_PIXEL_X_TO_COL (f
, pix_x
);
1863 pix_y
= FRAME_PIXEL_Y_TO_LINE (f
, pix_y
);
1866 STORE_NATIVE_RECT (*bounds
,
1867 FRAME_COL_TO_PIXEL_X (f
, pix_x
),
1868 FRAME_LINE_TO_PIXEL_Y (f
, pix_y
),
1869 FRAME_COLUMN_WIDTH (f
) - 1,
1870 FRAME_LINE_HEIGHT (f
) - 1);
1872 /* PXW: Should we clip pixels before converting to columns/lines? */
1877 else if (pix_x
> FRAME_TOTAL_COLS (f
))
1878 pix_x
= FRAME_TOTAL_COLS (f
);
1882 else if (pix_y
> FRAME_TOTAL_LINES (f
))
1883 pix_y
= FRAME_TOTAL_LINES (f
);
1893 /* Find the glyph under window-relative coordinates X/Y in window W.
1894 Consider only glyphs from buffer text, i.e. no glyphs from overlay
1895 strings. Return in *HPOS and *VPOS the row and column number of
1896 the glyph found. Return in *AREA the glyph area containing X.
1897 Value is a pointer to the glyph found or null if X/Y is not on
1898 text, or we can't tell because W's current matrix is not up to
1901 static struct glyph
*
1902 x_y_to_hpos_vpos (struct window
*w
, int x
, int y
, int *hpos
, int *vpos
,
1903 int *dx
, int *dy
, int *area
)
1905 struct glyph
*glyph
, *end
;
1906 struct glyph_row
*row
= NULL
;
1909 /* Find row containing Y. Give up if some row is not enabled. */
1910 for (i
= 0; i
< w
->current_matrix
->nrows
; ++i
)
1912 row
= MATRIX_ROW (w
->current_matrix
, i
);
1913 if (!row
->enabled_p
)
1915 if (y
>= row
->y
&& y
< MATRIX_ROW_BOTTOM_Y (row
))
1922 /* Give up if Y is not in the window. */
1923 if (i
== w
->current_matrix
->nrows
)
1926 /* Get the glyph area containing X. */
1927 if (w
->pseudo_window_p
)
1934 if (x
< window_box_left_offset (w
, TEXT_AREA
))
1936 *area
= LEFT_MARGIN_AREA
;
1937 x0
= window_box_left_offset (w
, LEFT_MARGIN_AREA
);
1939 else if (x
< window_box_right_offset (w
, TEXT_AREA
))
1942 x0
= window_box_left_offset (w
, TEXT_AREA
) + min (row
->x
, 0);
1946 *area
= RIGHT_MARGIN_AREA
;
1947 x0
= window_box_left_offset (w
, RIGHT_MARGIN_AREA
);
1951 /* Find glyph containing X. */
1952 glyph
= row
->glyphs
[*area
];
1953 end
= glyph
+ row
->used
[*area
];
1955 while (glyph
< end
&& x
>= glyph
->pixel_width
)
1957 x
-= glyph
->pixel_width
;
1967 *dy
= y
- (row
->y
+ row
->ascent
- glyph
->ascent
);
1970 *hpos
= glyph
- row
->glyphs
[*area
];
1974 /* Convert frame-relative x/y to coordinates relative to window W.
1975 Takes pseudo-windows into account. */
1978 frame_to_window_pixel_xy (struct window
*w
, int *x
, int *y
)
1980 if (w
->pseudo_window_p
)
1982 /* A pseudo-window is always full-width, and starts at the
1983 left edge of the frame, plus a frame border. */
1984 struct frame
*f
= XFRAME (w
->frame
);
1985 *x
-= FRAME_INTERNAL_BORDER_WIDTH (f
);
1986 *y
= FRAME_TO_WINDOW_PIXEL_Y (w
, *y
);
1990 *x
-= WINDOW_LEFT_EDGE_X (w
);
1991 *y
= FRAME_TO_WINDOW_PIXEL_Y (w
, *y
);
1995 #ifdef HAVE_WINDOW_SYSTEM
1998 Return in RECTS[] at most N clipping rectangles for glyph string S.
1999 Return the number of stored rectangles. */
2002 get_glyph_string_clip_rects (struct glyph_string
*s
, NativeRectangle
*rects
, int n
)
2009 if (s
->row
->full_width_p
)
2011 /* Draw full-width. X coordinates are relative to S->w->left_col. */
2012 r
.x
= WINDOW_LEFT_EDGE_X (s
->w
);
2013 if (s
->row
->mode_line_p
)
2014 r
.width
= WINDOW_PIXEL_WIDTH (s
->w
) - WINDOW_RIGHT_DIVIDER_WIDTH (s
->w
);
2016 r
.width
= WINDOW_PIXEL_WIDTH (s
->w
);
2018 /* Unless displaying a mode or menu bar line, which are always
2019 fully visible, clip to the visible part of the row. */
2020 if (s
->w
->pseudo_window_p
)
2021 r
.height
= s
->row
->visible_height
;
2023 r
.height
= s
->height
;
2027 /* This is a text line that may be partially visible. */
2028 r
.x
= window_box_left (s
->w
, s
->area
);
2029 r
.width
= window_box_width (s
->w
, s
->area
);
2030 r
.height
= s
->row
->visible_height
;
2034 if (r
.x
< s
->clip_head
->x
)
2036 if (r
.width
>= s
->clip_head
->x
- r
.x
)
2037 r
.width
-= s
->clip_head
->x
- r
.x
;
2040 r
.x
= s
->clip_head
->x
;
2043 if (r
.x
+ r
.width
> s
->clip_tail
->x
+ s
->clip_tail
->background_width
)
2045 if (s
->clip_tail
->x
+ s
->clip_tail
->background_width
>= r
.x
)
2046 r
.width
= s
->clip_tail
->x
+ s
->clip_tail
->background_width
- r
.x
;
2051 /* If S draws overlapping rows, it's sufficient to use the top and
2052 bottom of the window for clipping because this glyph string
2053 intentionally draws over other lines. */
2054 if (s
->for_overlaps
)
2056 r
.y
= WINDOW_HEADER_LINE_HEIGHT (s
->w
);
2057 r
.height
= window_text_bottom_y (s
->w
) - r
.y
;
2059 /* Alas, the above simple strategy does not work for the
2060 environments with anti-aliased text: if the same text is
2061 drawn onto the same place multiple times, it gets thicker.
2062 If the overlap we are processing is for the erased cursor, we
2063 take the intersection with the rectangle of the cursor. */
2064 if (s
->for_overlaps
& OVERLAPS_ERASED_CURSOR
)
2066 XRectangle rc
, r_save
= r
;
2068 rc
.x
= WINDOW_TEXT_TO_FRAME_PIXEL_X (s
->w
, s
->w
->phys_cursor
.x
);
2069 rc
.y
= s
->w
->phys_cursor
.y
;
2070 rc
.width
= s
->w
->phys_cursor_width
;
2071 rc
.height
= s
->w
->phys_cursor_height
;
2073 x_intersect_rectangles (&r_save
, &rc
, &r
);
2078 /* Don't use S->y for clipping because it doesn't take partially
2079 visible lines into account. For example, it can be negative for
2080 partially visible lines at the top of a window. */
2081 if (!s
->row
->full_width_p
2082 && MATRIX_ROW_PARTIALLY_VISIBLE_AT_TOP_P (s
->w
, s
->row
))
2083 r
.y
= WINDOW_HEADER_LINE_HEIGHT (s
->w
);
2085 r
.y
= max (0, s
->row
->y
);
2088 r
.y
= WINDOW_TO_FRAME_PIXEL_Y (s
->w
, r
.y
);
2090 /* If drawing the cursor, don't let glyph draw outside its
2091 advertised boundaries. Cleartype does this under some circumstances. */
2092 if (s
->hl
== DRAW_CURSOR
)
2094 struct glyph
*glyph
= s
->first_glyph
;
2099 if (r
.width
>= s
->x
- r
.x
)
2100 r
.width
-= s
->x
- r
.x
;
2101 else /* R2L hscrolled row with cursor outside text area */
2105 r
.width
= min (r
.width
, glyph
->pixel_width
);
2107 /* If r.y is below window bottom, ensure that we still see a cursor. */
2108 height
= min (glyph
->ascent
+ glyph
->descent
,
2109 min (FRAME_LINE_HEIGHT (s
->f
), s
->row
->visible_height
));
2110 max_y
= window_text_bottom_y (s
->w
) - height
;
2111 max_y
= WINDOW_TO_FRAME_PIXEL_Y (s
->w
, max_y
);
2112 if (s
->ybase
- glyph
->ascent
> max_y
)
2119 /* Don't draw cursor glyph taller than our actual glyph. */
2120 height
= max (FRAME_LINE_HEIGHT (s
->f
), glyph
->ascent
+ glyph
->descent
);
2121 if (height
< r
.height
)
2123 max_y
= r
.y
+ r
.height
;
2124 r
.y
= min (max_y
, max (r
.y
, s
->ybase
+ glyph
->descent
- height
));
2125 r
.height
= min (max_y
- r
.y
, height
);
2132 XRectangle r_save
= r
;
2134 if (! x_intersect_rectangles (&r_save
, s
->row
->clip
, &r
))
2138 if ((s
->for_overlaps
& OVERLAPS_BOTH
) == 0
2139 || ((s
->for_overlaps
& OVERLAPS_BOTH
) == OVERLAPS_BOTH
&& n
== 1))
2141 #ifdef CONVERT_FROM_XRECT
2142 CONVERT_FROM_XRECT (r
, *rects
);
2150 /* If we are processing overlapping and allowed to return
2151 multiple clipping rectangles, we exclude the row of the glyph
2152 string from the clipping rectangle. This is to avoid drawing
2153 the same text on the environment with anti-aliasing. */
2154 #ifdef CONVERT_FROM_XRECT
2157 XRectangle
*rs
= rects
;
2159 int i
= 0, row_y
= WINDOW_TO_FRAME_PIXEL_Y (s
->w
, s
->row
->y
);
2161 if (s
->for_overlaps
& OVERLAPS_PRED
)
2164 if (r
.y
+ r
.height
> row_y
)
2167 rs
[i
].height
= row_y
- r
.y
;
2173 if (s
->for_overlaps
& OVERLAPS_SUCC
)
2176 if (r
.y
< row_y
+ s
->row
->visible_height
)
2178 if (r
.y
+ r
.height
> row_y
+ s
->row
->visible_height
)
2180 rs
[i
].y
= row_y
+ s
->row
->visible_height
;
2181 rs
[i
].height
= r
.y
+ r
.height
- rs
[i
].y
;
2190 #ifdef CONVERT_FROM_XRECT
2191 for (i
= 0; i
< n
; i
++)
2192 CONVERT_FROM_XRECT (rs
[i
], rects
[i
]);
2199 Return in *NR the clipping rectangle for glyph string S. */
2202 get_glyph_string_clip_rect (struct glyph_string
*s
, NativeRectangle
*nr
)
2204 get_glyph_string_clip_rects (s
, nr
, 1);
2209 Return the position and height of the phys cursor in window W.
2210 Set w->phys_cursor_width to width of phys cursor.
2214 get_phys_cursor_geometry (struct window
*w
, struct glyph_row
*row
,
2215 struct glyph
*glyph
, int *xp
, int *yp
, int *heightp
)
2217 struct frame
*f
= XFRAME (WINDOW_FRAME (w
));
2218 int x
, y
, wd
, h
, h0
, y0
;
2220 /* Compute the width of the rectangle to draw. If on a stretch
2221 glyph, and `x-stretch-block-cursor' is nil, don't draw a
2222 rectangle as wide as the glyph, but use a canonical character
2224 wd
= glyph
->pixel_width
;
2226 x
= w
->phys_cursor
.x
;
2233 if (glyph
->type
== STRETCH_GLYPH
2234 && !x_stretch_cursor_p
)
2235 wd
= min (FRAME_COLUMN_WIDTH (f
), wd
);
2236 w
->phys_cursor_width
= wd
;
2238 y
= w
->phys_cursor
.y
+ row
->ascent
- glyph
->ascent
;
2240 /* If y is below window bottom, ensure that we still see a cursor. */
2241 h0
= min (FRAME_LINE_HEIGHT (f
), row
->visible_height
);
2243 h
= max (h0
, glyph
->ascent
+ glyph
->descent
);
2244 h0
= min (h0
, glyph
->ascent
+ glyph
->descent
);
2246 y0
= WINDOW_HEADER_LINE_HEIGHT (w
);
2249 h
= max (h
- (y0
- y
) + 1, h0
);
2254 y0
= window_text_bottom_y (w
) - h0
;
2262 *xp
= WINDOW_TEXT_TO_FRAME_PIXEL_X (w
, x
);
2263 *yp
= WINDOW_TO_FRAME_PIXEL_Y (w
, y
);
2268 * Remember which glyph the mouse is over.
2272 remember_mouse_glyph (struct frame
*f
, int gx
, int gy
, NativeRectangle
*rect
)
2276 struct glyph_row
*r
, *gr
, *end_row
;
2277 enum window_part part
;
2278 enum glyph_row_area area
;
2279 int x
, y
, width
, height
;
2281 /* Try to determine frame pixel position and size of the glyph under
2282 frame pixel coordinates X/Y on frame F. */
2284 if (window_resize_pixelwise
)
2289 else if (!f
->glyphs_initialized_p
2290 || (window
= window_from_coordinates (f
, gx
, gy
, &part
, 0),
2293 width
= FRAME_SMALLEST_CHAR_WIDTH (f
);
2294 height
= FRAME_SMALLEST_FONT_HEIGHT (f
);
2298 w
= XWINDOW (window
);
2299 width
= WINDOW_FRAME_COLUMN_WIDTH (w
);
2300 height
= WINDOW_FRAME_LINE_HEIGHT (w
);
2302 x
= window_relative_x_coord (w
, part
, gx
);
2303 y
= gy
- WINDOW_TOP_EDGE_Y (w
);
2305 r
= MATRIX_FIRST_TEXT_ROW (w
->current_matrix
);
2306 end_row
= MATRIX_BOTTOM_TEXT_ROW (w
->current_matrix
, w
);
2308 if (w
->pseudo_window_p
)
2311 part
= ON_MODE_LINE
; /* Don't adjust margin. */
2317 case ON_LEFT_MARGIN
:
2318 area
= LEFT_MARGIN_AREA
;
2321 case ON_RIGHT_MARGIN
:
2322 area
= RIGHT_MARGIN_AREA
;
2325 case ON_HEADER_LINE
:
2327 gr
= (part
== ON_HEADER_LINE
2328 ? MATRIX_HEADER_LINE_ROW (w
->current_matrix
)
2329 : MATRIX_MODE_LINE_ROW (w
->current_matrix
));
2332 goto text_glyph_row_found
;
2339 for (; r
<= end_row
&& r
->enabled_p
; ++r
)
2340 if (r
->y
+ r
->height
> y
)
2346 text_glyph_row_found
:
2349 struct glyph
*g
= gr
->glyphs
[area
];
2350 struct glyph
*end
= g
+ gr
->used
[area
];
2352 height
= gr
->height
;
2353 for (gx
= gr
->x
; g
< end
; gx
+= g
->pixel_width
, ++g
)
2354 if (gx
+ g
->pixel_width
> x
)
2359 if (g
->type
== IMAGE_GLYPH
)
2361 /* Don't remember when mouse is over image, as
2362 image may have hot-spots. */
2363 STORE_NATIVE_RECT (*rect
, 0, 0, 0, 0);
2366 width
= g
->pixel_width
;
2370 /* Use nominal char spacing at end of line. */
2372 gx
+= (x
/ width
) * width
;
2375 if (part
!= ON_MODE_LINE
&& part
!= ON_HEADER_LINE
)
2377 gx
+= window_box_left_offset (w
, area
);
2378 /* Don't expand over the modeline to make sure the vertical
2379 drag cursor is shown early enough. */
2380 height
= min (height
,
2381 max (0, WINDOW_BOX_HEIGHT_NO_MODE_LINE (w
) - gy
));
2386 /* Use nominal line height at end of window. */
2387 gx
= (x
/ width
) * width
;
2389 gy
+= (y
/ height
) * height
;
2390 if (part
!= ON_MODE_LINE
&& part
!= ON_HEADER_LINE
)
2391 /* See comment above. */
2392 height
= min (height
,
2393 max (0, WINDOW_BOX_HEIGHT_NO_MODE_LINE (w
) - gy
));
2397 case ON_LEFT_FRINGE
:
2398 gx
= (WINDOW_HAS_FRINGES_OUTSIDE_MARGINS (w
)
2399 ? WINDOW_LEFT_SCROLL_BAR_AREA_WIDTH (w
)
2400 : window_box_right_offset (w
, LEFT_MARGIN_AREA
));
2401 width
= WINDOW_LEFT_FRINGE_WIDTH (w
);
2404 case ON_RIGHT_FRINGE
:
2405 gx
= (WINDOW_HAS_FRINGES_OUTSIDE_MARGINS (w
)
2406 ? window_box_right_offset (w
, RIGHT_MARGIN_AREA
)
2407 : window_box_right_offset (w
, TEXT_AREA
));
2408 if (WINDOW_RIGHT_DIVIDER_WIDTH (w
) == 0
2409 && !WINDOW_HAS_VERTICAL_SCROLL_BAR (w
)
2410 && !WINDOW_RIGHTMOST_P (w
))
2411 if (gx
< WINDOW_PIXEL_WIDTH (w
) - width
)
2412 /* Make sure the vertical border can get her own glyph to the
2413 right of the one we build here. */
2414 width
= WINDOW_RIGHT_FRINGE_WIDTH (w
) - width
;
2416 width
= WINDOW_PIXEL_WIDTH (w
) - gx
;
2418 width
= WINDOW_RIGHT_FRINGE_WIDTH (w
);
2422 case ON_VERTICAL_BORDER
:
2423 gx
= WINDOW_PIXEL_WIDTH (w
) - width
;
2426 case ON_VERTICAL_SCROLL_BAR
:
2427 gx
= (WINDOW_HAS_VERTICAL_SCROLL_BAR_ON_LEFT (w
)
2429 : (window_box_right_offset (w
, RIGHT_MARGIN_AREA
)
2430 + (WINDOW_HAS_FRINGES_OUTSIDE_MARGINS (w
)
2431 ? WINDOW_RIGHT_FRINGE_WIDTH (w
)
2433 width
= WINDOW_SCROLL_BAR_AREA_WIDTH (w
);
2437 for (; r
<= end_row
&& r
->enabled_p
; ++r
)
2438 if (r
->y
+ r
->height
> y
)
2445 height
= gr
->height
;
2448 /* Use nominal line height at end of window. */
2450 gy
+= (y
/ height
) * height
;
2454 case ON_RIGHT_DIVIDER
:
2455 gx
= WINDOW_PIXEL_WIDTH (w
) - WINDOW_RIGHT_DIVIDER_WIDTH (w
);
2456 width
= WINDOW_RIGHT_DIVIDER_WIDTH (w
);
2458 /* The bottom divider prevails. */
2459 height
= WINDOW_PIXEL_HEIGHT (w
) - WINDOW_BOTTOM_DIVIDER_WIDTH (w
);
2462 case ON_BOTTOM_DIVIDER
:
2464 width
= WINDOW_PIXEL_WIDTH (w
);
2465 gy
= WINDOW_PIXEL_HEIGHT (w
) - WINDOW_BOTTOM_DIVIDER_WIDTH (w
);
2466 height
= WINDOW_BOTTOM_DIVIDER_WIDTH (w
);
2472 /* If there is no glyph under the mouse, then we divide the screen
2473 into a grid of the smallest glyph in the frame, and use that
2476 /* Arrange for the division in FRAME_PIXEL_X_TO_COL etc. to
2477 round down even for negative values. */
2483 gx
= (gx
/ width
) * width
;
2484 gy
= (gy
/ height
) * height
;
2490 gx
+= WINDOW_LEFT_EDGE_X (w
);
2491 gy
+= WINDOW_TOP_EDGE_Y (w
);
2494 STORE_NATIVE_RECT (*rect
, gx
, gy
, width
, height
);
2496 /* Visible feedback for debugging. */
2499 XDrawRectangle (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
),
2500 f
->output_data
.x
->normal_gc
,
2501 gx
, gy
, width
, height
);
2507 #endif /* HAVE_WINDOW_SYSTEM */
2510 adjust_window_ends (struct window
*w
, struct glyph_row
*row
, bool current
)
2513 w
->window_end_pos
= Z
- MATRIX_ROW_END_CHARPOS (row
);
2514 w
->window_end_bytepos
= Z_BYTE
- MATRIX_ROW_END_BYTEPOS (row
);
2516 = MATRIX_ROW_VPOS (row
, current
? w
->current_matrix
: w
->desired_matrix
);
2519 /***********************************************************************
2520 Lisp form evaluation
2521 ***********************************************************************/
2523 /* Error handler for safe_eval and safe_call. */
2526 safe_eval_handler (Lisp_Object arg
, ptrdiff_t nargs
, Lisp_Object
*args
)
2528 add_to_log ("Error during redisplay: %S signaled %S",
2529 Flist (nargs
, args
), arg
);
2533 /* Call function FUNC with the rest of NARGS - 1 arguments
2534 following. Return the result, or nil if something went
2535 wrong. Prevent redisplay during the evaluation. */
2538 safe__call (bool inhibit_quit
, ptrdiff_t nargs
, Lisp_Object func
, va_list ap
)
2542 if (inhibit_eval_during_redisplay
)
2547 ptrdiff_t count
= SPECPDL_INDEX ();
2550 SAFE_ALLOCA_LISP (args
, nargs
);
2553 for (i
= 1; i
< nargs
; i
++)
2554 args
[i
] = va_arg (ap
, Lisp_Object
);
2556 specbind (Qinhibit_redisplay
, Qt
);
2558 specbind (Qinhibit_quit
, Qt
);
2559 /* Use Qt to ensure debugger does not run,
2560 so there is no possibility of wanting to redisplay. */
2561 val
= internal_condition_case_n (Ffuncall
, nargs
, args
, Qt
,
2564 val
= unbind_to (count
, val
);
2571 safe_call (ptrdiff_t nargs
, Lisp_Object func
, ...)
2576 va_start (ap
, func
);
2577 retval
= safe__call (false, nargs
, func
, ap
);
2582 /* Call function FN with one argument ARG.
2583 Return the result, or nil if something went wrong. */
2586 safe_call1 (Lisp_Object fn
, Lisp_Object arg
)
2588 return safe_call (2, fn
, arg
);
2592 safe__call1 (bool inhibit_quit
, Lisp_Object fn
, ...)
2598 retval
= safe__call (inhibit_quit
, 2, fn
, ap
);
2604 safe_eval (Lisp_Object sexpr
)
2606 return safe__call1 (false, Qeval
, sexpr
);
2610 safe__eval (bool inhibit_quit
, Lisp_Object sexpr
)
2612 return safe__call1 (inhibit_quit
, Qeval
, sexpr
);
2615 /* Call function FN with two arguments ARG1 and ARG2.
2616 Return the result, or nil if something went wrong. */
2619 safe_call2 (Lisp_Object fn
, Lisp_Object arg1
, Lisp_Object arg2
)
2621 return safe_call (3, fn
, arg1
, arg2
);
2626 /***********************************************************************
2628 ***********************************************************************/
2632 /* Define CHECK_IT to perform sanity checks on iterators.
2633 This is for debugging. It is too slow to do unconditionally. */
2636 check_it (struct it
*it
)
2638 if (it
->method
== GET_FROM_STRING
)
2640 eassert (STRINGP (it
->string
));
2641 eassert (IT_STRING_CHARPOS (*it
) >= 0);
2645 eassert (IT_STRING_CHARPOS (*it
) < 0);
2646 if (it
->method
== GET_FROM_BUFFER
)
2648 /* Check that character and byte positions agree. */
2649 eassert (IT_CHARPOS (*it
) == BYTE_TO_CHAR (IT_BYTEPOS (*it
)));
2654 eassert (it
->current
.dpvec_index
>= 0);
2656 eassert (it
->current
.dpvec_index
< 0);
2659 #define CHECK_IT(IT) check_it ((IT))
2663 #define CHECK_IT(IT) (void) 0
2668 #if defined GLYPH_DEBUG && defined ENABLE_CHECKING
2670 /* Check that the window end of window W is what we expect it
2671 to be---the last row in the current matrix displaying text. */
2674 check_window_end (struct window
*w
)
2676 if (!MINI_WINDOW_P (w
) && w
->window_end_valid
)
2678 struct glyph_row
*row
;
2679 eassert ((row
= MATRIX_ROW (w
->current_matrix
, w
->window_end_vpos
),
2681 || MATRIX_ROW_DISPLAYS_TEXT_P (row
)
2682 || MATRIX_ROW_VPOS (row
, w
->current_matrix
) == 0));
2686 #define CHECK_WINDOW_END(W) check_window_end ((W))
2690 #define CHECK_WINDOW_END(W) (void) 0
2692 #endif /* GLYPH_DEBUG and ENABLE_CHECKING */
2694 /***********************************************************************
2695 Iterator initialization
2696 ***********************************************************************/
2698 /* Initialize IT for displaying current_buffer in window W, starting
2699 at character position CHARPOS. CHARPOS < 0 means that no buffer
2700 position is specified which is useful when the iterator is assigned
2701 a position later. BYTEPOS is the byte position corresponding to
2704 If ROW is not null, calls to produce_glyphs with IT as parameter
2705 will produce glyphs in that row.
2707 BASE_FACE_ID is the id of a base face to use. It must be one of
2708 DEFAULT_FACE_ID for normal text, MODE_LINE_FACE_ID,
2709 MODE_LINE_INACTIVE_FACE_ID, or HEADER_LINE_FACE_ID for displaying
2710 mode lines, or TOOL_BAR_FACE_ID for displaying the tool-bar.
2712 If ROW is null and BASE_FACE_ID is equal to MODE_LINE_FACE_ID,
2713 MODE_LINE_INACTIVE_FACE_ID, or HEADER_LINE_FACE_ID, the iterator
2714 will be initialized to use the corresponding mode line glyph row of
2715 the desired matrix of W. */
2718 init_iterator (struct it
*it
, struct window
*w
,
2719 ptrdiff_t charpos
, ptrdiff_t bytepos
,
2720 struct glyph_row
*row
, enum face_id base_face_id
)
2722 enum face_id remapped_base_face_id
= base_face_id
;
2724 /* Some precondition checks. */
2725 eassert (w
!= NULL
&& it
!= NULL
);
2726 eassert (charpos
< 0 || (charpos
>= BUF_BEG (current_buffer
)
2729 /* If face attributes have been changed since the last redisplay,
2730 free realized faces now because they depend on face definitions
2731 that might have changed. Don't free faces while there might be
2732 desired matrices pending which reference these faces. */
2733 if (face_change_count
&& !inhibit_free_realized_faces
)
2735 face_change_count
= 0;
2736 free_all_realized_faces (Qnil
);
2739 /* Perhaps remap BASE_FACE_ID to a user-specified alternative. */
2740 if (! NILP (Vface_remapping_alist
))
2741 remapped_base_face_id
2742 = lookup_basic_face (XFRAME (w
->frame
), base_face_id
);
2744 /* Use one of the mode line rows of W's desired matrix if
2748 if (base_face_id
== MODE_LINE_FACE_ID
2749 || base_face_id
== MODE_LINE_INACTIVE_FACE_ID
)
2750 row
= MATRIX_MODE_LINE_ROW (w
->desired_matrix
);
2751 else if (base_face_id
== HEADER_LINE_FACE_ID
)
2752 row
= MATRIX_HEADER_LINE_ROW (w
->desired_matrix
);
2756 memset (it
, 0, sizeof *it
);
2757 it
->current
.overlay_string_index
= -1;
2758 it
->current
.dpvec_index
= -1;
2759 it
->base_face_id
= remapped_base_face_id
;
2761 IT_STRING_CHARPOS (*it
) = IT_STRING_BYTEPOS (*it
) = -1;
2762 it
->paragraph_embedding
= L2R
;
2763 it
->bidi_it
.string
.lstring
= Qnil
;
2764 it
->bidi_it
.string
.s
= NULL
;
2765 it
->bidi_it
.string
.bufpos
= 0;
2768 /* The window in which we iterate over current_buffer: */
2769 XSETWINDOW (it
->window
, w
);
2771 it
->f
= XFRAME (w
->frame
);
2775 /* Extra space between lines (on window systems only). */
2776 if (base_face_id
== DEFAULT_FACE_ID
2777 && FRAME_WINDOW_P (it
->f
))
2779 if (NATNUMP (BVAR (current_buffer
, extra_line_spacing
)))
2780 it
->extra_line_spacing
= XFASTINT (BVAR (current_buffer
, extra_line_spacing
));
2781 else if (FLOATP (BVAR (current_buffer
, extra_line_spacing
)))
2782 it
->extra_line_spacing
= (XFLOAT_DATA (BVAR (current_buffer
, extra_line_spacing
))
2783 * FRAME_LINE_HEIGHT (it
->f
));
2784 else if (it
->f
->extra_line_spacing
> 0)
2785 it
->extra_line_spacing
= it
->f
->extra_line_spacing
;
2786 it
->max_extra_line_spacing
= 0;
2789 /* If realized faces have been removed, e.g. because of face
2790 attribute changes of named faces, recompute them. When running
2791 in batch mode, the face cache of the initial frame is null. If
2792 we happen to get called, make a dummy face cache. */
2793 if (FRAME_FACE_CACHE (it
->f
) == NULL
)
2794 init_frame_faces (it
->f
);
2795 if (FRAME_FACE_CACHE (it
->f
)->used
== 0)
2796 recompute_basic_faces (it
->f
);
2798 /* Current value of the `slice', `space-width', and 'height' properties. */
2799 it
->slice
.x
= it
->slice
.y
= it
->slice
.width
= it
->slice
.height
= Qnil
;
2800 it
->space_width
= Qnil
;
2801 it
->font_height
= Qnil
;
2802 it
->override_ascent
= -1;
2804 /* Are control characters displayed as `^C'? */
2805 it
->ctl_arrow_p
= !NILP (BVAR (current_buffer
, ctl_arrow
));
2807 /* -1 means everything between a CR and the following line end
2808 is invisible. >0 means lines indented more than this value are
2810 it
->selective
= (INTEGERP (BVAR (current_buffer
, selective_display
))
2812 (-1, XINT (BVAR (current_buffer
, selective_display
)),
2814 : (!NILP (BVAR (current_buffer
, selective_display
))
2816 it
->selective_display_ellipsis_p
2817 = !NILP (BVAR (current_buffer
, selective_display_ellipses
));
2819 /* Display table to use. */
2820 it
->dp
= window_display_table (w
);
2822 /* Are multibyte characters enabled in current_buffer? */
2823 it
->multibyte_p
= !NILP (BVAR (current_buffer
, enable_multibyte_characters
));
2825 /* Get the position at which the redisplay_end_trigger hook should
2826 be run, if it is to be run at all. */
2827 if (MARKERP (w
->redisplay_end_trigger
)
2828 && XMARKER (w
->redisplay_end_trigger
)->buffer
!= 0)
2829 it
->redisplay_end_trigger_charpos
2830 = marker_position (w
->redisplay_end_trigger
);
2831 else if (INTEGERP (w
->redisplay_end_trigger
))
2832 it
->redisplay_end_trigger_charpos
2833 = clip_to_bounds (PTRDIFF_MIN
, XINT (w
->redisplay_end_trigger
),
2836 it
->tab_width
= SANE_TAB_WIDTH (current_buffer
);
2838 /* Are lines in the display truncated? */
2839 if (base_face_id
!= DEFAULT_FACE_ID
2841 || (! WINDOW_FULL_WIDTH_P (it
->w
)
2842 && ((!NILP (Vtruncate_partial_width_windows
)
2843 && !INTEGERP (Vtruncate_partial_width_windows
))
2844 || (INTEGERP (Vtruncate_partial_width_windows
)
2845 /* PXW: Shall we do something about this? */
2846 && (WINDOW_TOTAL_COLS (it
->w
)
2847 < XINT (Vtruncate_partial_width_windows
))))))
2848 it
->line_wrap
= TRUNCATE
;
2849 else if (NILP (BVAR (current_buffer
, truncate_lines
)))
2850 it
->line_wrap
= NILP (BVAR (current_buffer
, word_wrap
))
2851 ? WINDOW_WRAP
: WORD_WRAP
;
2853 it
->line_wrap
= TRUNCATE
;
2855 /* Get dimensions of truncation and continuation glyphs. These are
2856 displayed as fringe bitmaps under X, but we need them for such
2857 frames when the fringes are turned off. But leave the dimensions
2858 zero for tooltip frames, as these glyphs look ugly there and also
2859 sabotage calculations of tooltip dimensions in x-show-tip. */
2860 #ifdef HAVE_WINDOW_SYSTEM
2861 if (!(FRAME_WINDOW_P (it
->f
)
2862 && FRAMEP (tip_frame
)
2863 && it
->f
== XFRAME (tip_frame
)))
2866 if (it
->line_wrap
== TRUNCATE
)
2868 /* We will need the truncation glyph. */
2869 eassert (it
->glyph_row
== NULL
);
2870 produce_special_glyphs (it
, IT_TRUNCATION
);
2871 it
->truncation_pixel_width
= it
->pixel_width
;
2875 /* We will need the continuation glyph. */
2876 eassert (it
->glyph_row
== NULL
);
2877 produce_special_glyphs (it
, IT_CONTINUATION
);
2878 it
->continuation_pixel_width
= it
->pixel_width
;
2882 /* Reset these values to zero because the produce_special_glyphs
2883 above has changed them. */
2884 it
->pixel_width
= it
->ascent
= it
->descent
= 0;
2885 it
->phys_ascent
= it
->phys_descent
= 0;
2887 /* Set this after getting the dimensions of truncation and
2888 continuation glyphs, so that we don't produce glyphs when calling
2889 produce_special_glyphs, above. */
2890 it
->glyph_row
= row
;
2891 it
->area
= TEXT_AREA
;
2893 /* Get the dimensions of the display area. The display area
2894 consists of the visible window area plus a horizontally scrolled
2895 part to the left of the window. All x-values are relative to the
2896 start of this total display area. */
2897 if (base_face_id
!= DEFAULT_FACE_ID
)
2899 /* Mode lines, menu bar in terminal frames. */
2900 it
->first_visible_x
= 0;
2901 it
->last_visible_x
= WINDOW_PIXEL_WIDTH (w
);
2906 = window_hscroll_limited (it
->w
, it
->f
) * FRAME_COLUMN_WIDTH (it
->f
);
2907 it
->last_visible_x
= (it
->first_visible_x
2908 + window_box_width (w
, TEXT_AREA
));
2910 /* If we truncate lines, leave room for the truncation glyph(s) at
2911 the right margin. Otherwise, leave room for the continuation
2912 glyph(s). Done only if the window has no right fringe. */
2913 if (WINDOW_RIGHT_FRINGE_WIDTH (it
->w
) == 0)
2915 if (it
->line_wrap
== TRUNCATE
)
2916 it
->last_visible_x
-= it
->truncation_pixel_width
;
2918 it
->last_visible_x
-= it
->continuation_pixel_width
;
2921 it
->header_line_p
= WINDOW_WANTS_HEADER_LINE_P (w
);
2922 it
->current_y
= WINDOW_HEADER_LINE_HEIGHT (w
) + w
->vscroll
;
2925 /* Leave room for a border glyph. */
2926 if (!FRAME_WINDOW_P (it
->f
)
2927 && !WINDOW_RIGHTMOST_P (it
->w
))
2928 it
->last_visible_x
-= 1;
2930 it
->last_visible_y
= window_text_bottom_y (w
);
2932 /* For mode lines and alike, arrange for the first glyph having a
2933 left box line if the face specifies a box. */
2934 if (base_face_id
!= DEFAULT_FACE_ID
)
2938 it
->face_id
= remapped_base_face_id
;
2940 /* If we have a boxed mode line, make the first character appear
2941 with a left box line. */
2942 face
= FACE_FROM_ID (it
->f
, remapped_base_face_id
);
2943 if (face
&& face
->box
!= FACE_NO_BOX
)
2944 it
->start_of_box_run_p
= true;
2947 /* If a buffer position was specified, set the iterator there,
2948 getting overlays and face properties from that position. */
2949 if (charpos
>= BUF_BEG (current_buffer
))
2951 it
->stop_charpos
= charpos
;
2952 it
->end_charpos
= ZV
;
2953 eassert (charpos
== BYTE_TO_CHAR (bytepos
));
2954 IT_CHARPOS (*it
) = charpos
;
2955 IT_BYTEPOS (*it
) = bytepos
;
2957 /* We will rely on `reseat' to set this up properly, via
2958 handle_face_prop. */
2959 it
->face_id
= it
->base_face_id
;
2961 it
->start
= it
->current
;
2962 /* Do we need to reorder bidirectional text? Not if this is a
2963 unibyte buffer: by definition, none of the single-byte
2964 characters are strong R2L, so no reordering is needed. And
2965 bidi.c doesn't support unibyte buffers anyway. Also, don't
2966 reorder while we are loading loadup.el, since the tables of
2967 character properties needed for reordering are not yet
2971 && !NILP (BVAR (current_buffer
, bidi_display_reordering
))
2974 /* If we are to reorder bidirectional text, init the bidi
2978 /* Since we don't know at this point whether there will be
2979 any R2L lines in the window, we reserve space for
2980 truncation/continuation glyphs even if only the left
2981 fringe is absent. */
2982 if (base_face_id
== DEFAULT_FACE_ID
2983 && WINDOW_LEFT_FRINGE_WIDTH (it
->w
) == 0
2984 && WINDOW_RIGHT_FRINGE_WIDTH (it
->w
) != 0)
2986 if (it
->line_wrap
== TRUNCATE
)
2987 it
->last_visible_x
-= it
->truncation_pixel_width
;
2989 it
->last_visible_x
-= it
->continuation_pixel_width
;
2991 /* Note the paragraph direction that this buffer wants to
2993 if (EQ (BVAR (current_buffer
, bidi_paragraph_direction
),
2995 it
->paragraph_embedding
= L2R
;
2996 else if (EQ (BVAR (current_buffer
, bidi_paragraph_direction
),
2998 it
->paragraph_embedding
= R2L
;
3000 it
->paragraph_embedding
= NEUTRAL_DIR
;
3001 bidi_unshelve_cache (NULL
, 0);
3002 bidi_init_it (charpos
, IT_BYTEPOS (*it
), FRAME_WINDOW_P (it
->f
),
3006 /* Compute faces etc. */
3007 reseat (it
, it
->current
.pos
, 1);
3014 /* Initialize IT for the display of window W with window start POS. */
3017 start_display (struct it
*it
, struct window
*w
, struct text_pos pos
)
3019 struct glyph_row
*row
;
3020 int first_vpos
= WINDOW_WANTS_HEADER_LINE_P (w
) ? 1 : 0;
3022 row
= w
->desired_matrix
->rows
+ first_vpos
;
3023 init_iterator (it
, w
, CHARPOS (pos
), BYTEPOS (pos
), row
, DEFAULT_FACE_ID
);
3024 it
->first_vpos
= first_vpos
;
3026 /* Don't reseat to previous visible line start if current start
3027 position is in a string or image. */
3028 if (it
->method
== GET_FROM_BUFFER
&& it
->line_wrap
!= TRUNCATE
)
3030 int start_at_line_beg_p
;
3031 int first_y
= it
->current_y
;
3033 /* If window start is not at a line start, skip forward to POS to
3034 get the correct continuation lines width. */
3035 start_at_line_beg_p
= (CHARPOS (pos
) == BEGV
3036 || FETCH_BYTE (BYTEPOS (pos
) - 1) == '\n');
3037 if (!start_at_line_beg_p
)
3041 reseat_at_previous_visible_line_start (it
);
3042 move_it_to (it
, CHARPOS (pos
), -1, -1, -1, MOVE_TO_POS
);
3044 new_x
= it
->current_x
+ it
->pixel_width
;
3046 /* If lines are continued, this line may end in the middle
3047 of a multi-glyph character (e.g. a control character
3048 displayed as \003, or in the middle of an overlay
3049 string). In this case move_it_to above will not have
3050 taken us to the start of the continuation line but to the
3051 end of the continued line. */
3052 if (it
->current_x
> 0
3053 && it
->line_wrap
!= TRUNCATE
/* Lines are continued. */
3054 && (/* And glyph doesn't fit on the line. */
3055 new_x
> it
->last_visible_x
3056 /* Or it fits exactly and we're on a window
3058 || (new_x
== it
->last_visible_x
3059 && FRAME_WINDOW_P (it
->f
)
3060 && ((it
->bidi_p
&& it
->bidi_it
.paragraph_dir
== R2L
)
3061 ? WINDOW_LEFT_FRINGE_WIDTH (it
->w
)
3062 : WINDOW_RIGHT_FRINGE_WIDTH (it
->w
)))))
3064 if ((it
->current
.dpvec_index
>= 0
3065 || it
->current
.overlay_string_index
>= 0)
3066 /* If we are on a newline from a display vector or
3067 overlay string, then we are already at the end of
3068 a screen line; no need to go to the next line in
3069 that case, as this line is not really continued.
3070 (If we do go to the next line, C-e will not DTRT.) */
3073 set_iterator_to_next (it
, 1);
3074 move_it_in_display_line_to (it
, -1, -1, 0);
3077 it
->continuation_lines_width
+= it
->current_x
;
3079 /* If the character at POS is displayed via a display
3080 vector, move_it_to above stops at the final glyph of
3081 IT->dpvec. To make the caller redisplay that character
3082 again (a.k.a. start at POS), we need to reset the
3083 dpvec_index to the beginning of IT->dpvec. */
3084 else if (it
->current
.dpvec_index
>= 0)
3085 it
->current
.dpvec_index
= 0;
3087 /* We're starting a new display line, not affected by the
3088 height of the continued line, so clear the appropriate
3089 fields in the iterator structure. */
3090 it
->max_ascent
= it
->max_descent
= 0;
3091 it
->max_phys_ascent
= it
->max_phys_descent
= 0;
3093 it
->current_y
= first_y
;
3095 it
->current_x
= it
->hpos
= 0;
3101 /* Return 1 if POS is a position in ellipses displayed for invisible
3102 text. W is the window we display, for text property lookup. */
3105 in_ellipses_for_invisible_text_p (struct display_pos
*pos
, struct window
*w
)
3107 Lisp_Object prop
, window
;
3109 ptrdiff_t charpos
= CHARPOS (pos
->pos
);
3111 /* If POS specifies a position in a display vector, this might
3112 be for an ellipsis displayed for invisible text. We won't
3113 get the iterator set up for delivering that ellipsis unless
3114 we make sure that it gets aware of the invisible text. */
3115 if (pos
->dpvec_index
>= 0
3116 && pos
->overlay_string_index
< 0
3117 && CHARPOS (pos
->string_pos
) < 0
3119 && (XSETWINDOW (window
, w
),
3120 prop
= Fget_char_property (make_number (charpos
),
3121 Qinvisible
, window
),
3122 !TEXT_PROP_MEANS_INVISIBLE (prop
)))
3124 prop
= Fget_char_property (make_number (charpos
- 1), Qinvisible
,
3126 ellipses_p
= 2 == TEXT_PROP_MEANS_INVISIBLE (prop
);
3133 /* Initialize IT for stepping through current_buffer in window W,
3134 starting at position POS that includes overlay string and display
3135 vector/ control character translation position information. Value
3136 is zero if there are overlay strings with newlines at POS. */
3139 init_from_display_pos (struct it
*it
, struct window
*w
, struct display_pos
*pos
)
3141 ptrdiff_t charpos
= CHARPOS (pos
->pos
), bytepos
= BYTEPOS (pos
->pos
);
3142 int i
, overlay_strings_with_newlines
= 0;
3144 /* If POS specifies a position in a display vector, this might
3145 be for an ellipsis displayed for invisible text. We won't
3146 get the iterator set up for delivering that ellipsis unless
3147 we make sure that it gets aware of the invisible text. */
3148 if (in_ellipses_for_invisible_text_p (pos
, w
))
3154 /* Keep in mind: the call to reseat in init_iterator skips invisible
3155 text, so we might end up at a position different from POS. This
3156 is only a problem when POS is a row start after a newline and an
3157 overlay starts there with an after-string, and the overlay has an
3158 invisible property. Since we don't skip invisible text in
3159 display_line and elsewhere immediately after consuming the
3160 newline before the row start, such a POS will not be in a string,
3161 but the call to init_iterator below will move us to the
3163 init_iterator (it
, w
, charpos
, bytepos
, NULL
, DEFAULT_FACE_ID
);
3165 /* This only scans the current chunk -- it should scan all chunks.
3166 However, OVERLAY_STRING_CHUNK_SIZE has been increased from 3 in 21.1
3167 to 16 in 22.1 to make this a lesser problem. */
3168 for (i
= 0; i
< it
->n_overlay_strings
&& i
< OVERLAY_STRING_CHUNK_SIZE
; ++i
)
3170 const char *s
= SSDATA (it
->overlay_strings
[i
]);
3171 const char *e
= s
+ SBYTES (it
->overlay_strings
[i
]);
3173 while (s
< e
&& *s
!= '\n')
3178 overlay_strings_with_newlines
= 1;
3183 /* If position is within an overlay string, set up IT to the right
3185 if (pos
->overlay_string_index
>= 0)
3189 /* If the first overlay string happens to have a `display'
3190 property for an image, the iterator will be set up for that
3191 image, and we have to undo that setup first before we can
3192 correct the overlay string index. */
3193 if (it
->method
== GET_FROM_IMAGE
)
3196 /* We already have the first chunk of overlay strings in
3197 IT->overlay_strings. Load more until the one for
3198 pos->overlay_string_index is in IT->overlay_strings. */
3199 if (pos
->overlay_string_index
>= OVERLAY_STRING_CHUNK_SIZE
)
3201 ptrdiff_t n
= pos
->overlay_string_index
/ OVERLAY_STRING_CHUNK_SIZE
;
3202 it
->current
.overlay_string_index
= 0;
3205 load_overlay_strings (it
, 0);
3206 it
->current
.overlay_string_index
+= OVERLAY_STRING_CHUNK_SIZE
;
3210 it
->current
.overlay_string_index
= pos
->overlay_string_index
;
3211 relative_index
= (it
->current
.overlay_string_index
3212 % OVERLAY_STRING_CHUNK_SIZE
);
3213 it
->string
= it
->overlay_strings
[relative_index
];
3214 eassert (STRINGP (it
->string
));
3215 it
->current
.string_pos
= pos
->string_pos
;
3216 it
->method
= GET_FROM_STRING
;
3217 it
->end_charpos
= SCHARS (it
->string
);
3218 /* Set up the bidi iterator for this overlay string. */
3221 it
->bidi_it
.string
.lstring
= it
->string
;
3222 it
->bidi_it
.string
.s
= NULL
;
3223 it
->bidi_it
.string
.schars
= SCHARS (it
->string
);
3224 it
->bidi_it
.string
.bufpos
= it
->overlay_strings_charpos
;
3225 it
->bidi_it
.string
.from_disp_str
= it
->string_from_display_prop_p
;
3226 it
->bidi_it
.string
.unibyte
= !it
->multibyte_p
;
3227 it
->bidi_it
.w
= it
->w
;
3228 bidi_init_it (IT_STRING_CHARPOS (*it
), IT_STRING_BYTEPOS (*it
),
3229 FRAME_WINDOW_P (it
->f
), &it
->bidi_it
);
3231 /* Synchronize the state of the bidi iterator with
3232 pos->string_pos. For any string position other than
3233 zero, this will be done automagically when we resume
3234 iteration over the string and get_visually_first_element
3235 is called. But if string_pos is zero, and the string is
3236 to be reordered for display, we need to resync manually,
3237 since it could be that the iteration state recorded in
3238 pos ended at string_pos of 0 moving backwards in string. */
3239 if (CHARPOS (pos
->string_pos
) == 0)
3241 get_visually_first_element (it
);
3242 if (IT_STRING_CHARPOS (*it
) != 0)
3245 eassert (it
->bidi_it
.charpos
< it
->bidi_it
.string
.schars
);
3246 bidi_move_to_visually_next (&it
->bidi_it
);
3247 } while (it
->bidi_it
.charpos
!= 0);
3249 eassert (IT_STRING_CHARPOS (*it
) == it
->bidi_it
.charpos
3250 && IT_STRING_BYTEPOS (*it
) == it
->bidi_it
.bytepos
);
3254 if (CHARPOS (pos
->string_pos
) >= 0)
3256 /* Recorded position is not in an overlay string, but in another
3257 string. This can only be a string from a `display' property.
3258 IT should already be filled with that string. */
3259 it
->current
.string_pos
= pos
->string_pos
;
3260 eassert (STRINGP (it
->string
));
3262 bidi_init_it (IT_STRING_CHARPOS (*it
), IT_STRING_BYTEPOS (*it
),
3263 FRAME_WINDOW_P (it
->f
), &it
->bidi_it
);
3266 /* Restore position in display vector translations, control
3267 character translations or ellipses. */
3268 if (pos
->dpvec_index
>= 0)
3270 if (it
->dpvec
== NULL
)
3271 get_next_display_element (it
);
3272 eassert (it
->dpvec
&& it
->current
.dpvec_index
== 0);
3273 it
->current
.dpvec_index
= pos
->dpvec_index
;
3277 return !overlay_strings_with_newlines
;
3281 /* Initialize IT for stepping through current_buffer in window W
3282 starting at ROW->start. */
3285 init_to_row_start (struct it
*it
, struct window
*w
, struct glyph_row
*row
)
3287 init_from_display_pos (it
, w
, &row
->start
);
3288 it
->start
= row
->start
;
3289 it
->continuation_lines_width
= row
->continuation_lines_width
;
3294 /* Initialize IT for stepping through current_buffer in window W
3295 starting in the line following ROW, i.e. starting at ROW->end.
3296 Value is zero if there are overlay strings with newlines at ROW's
3300 init_to_row_end (struct it
*it
, struct window
*w
, struct glyph_row
*row
)
3304 if (init_from_display_pos (it
, w
, &row
->end
))
3306 if (row
->continued_p
)
3307 it
->continuation_lines_width
3308 = row
->continuation_lines_width
+ row
->pixel_width
;
3319 /***********************************************************************
3321 ***********************************************************************/
3323 /* Called when IT reaches IT->stop_charpos. Handle text property and
3324 overlay changes. Set IT->stop_charpos to the next position where
3328 handle_stop (struct it
*it
)
3330 enum prop_handled handled
;
3331 int handle_overlay_change_p
;
3335 it
->current
.dpvec_index
= -1;
3336 handle_overlay_change_p
= !it
->ignore_overlay_strings_at_pos_p
;
3337 it
->ignore_overlay_strings_at_pos_p
= 0;
3340 /* Use face of preceding text for ellipsis (if invisible) */
3341 if (it
->selective_display_ellipsis_p
)
3342 it
->saved_face_id
= it
->face_id
;
3344 /* Here's the description of the semantics of, and the logic behind,
3345 the various HANDLED_* statuses:
3347 HANDLED_NORMALLY means the handler did its job, and the loop
3348 should proceed to calling the next handler in order.
3350 HANDLED_RECOMPUTE_PROPS means the handler caused a significant
3351 change in the properties and overlays at current position, so the
3352 loop should be restarted, to re-invoke the handlers that were
3353 already called. This happens when fontification-functions were
3354 called by handle_fontified_prop, and actually fontified
3355 something. Another case where HANDLED_RECOMPUTE_PROPS is
3356 returned is when we discover overlay strings that need to be
3357 displayed right away. The loop below will continue for as long
3358 as the status is HANDLED_RECOMPUTE_PROPS.
3360 HANDLED_RETURN means return immediately to the caller, to
3361 continue iteration without calling any further handlers. This is
3362 used when we need to act on some property right away, for example
3363 when we need to display the ellipsis or a replacing display
3364 property, such as display string or image.
3366 HANDLED_OVERLAY_STRING_CONSUMED means an overlay string was just
3367 consumed, and the handler switched to the next overlay string.
3368 This signals the loop below to refrain from looking for more
3369 overlays before all the overlay strings of the current overlay
3372 Some of the handlers called by the loop push the iterator state
3373 onto the stack (see 'push_it'), and arrange for the iteration to
3374 continue with another object, such as an image, a display string,
3375 or an overlay string. In most such cases, it->stop_charpos is
3376 set to the first character of the string, so that when the
3377 iteration resumes, this function will immediately be called
3378 again, to examine the properties at the beginning of the string.
3380 When a display or overlay string is exhausted, the iterator state
3381 is popped (see 'pop_it'), and iteration continues with the
3382 previous object. Again, in many such cases this function is
3383 called again to find the next position where properties might
3388 handled
= HANDLED_NORMALLY
;
3390 /* Call text property handlers. */
3391 for (p
= it_props
; p
->handler
; ++p
)
3393 handled
= p
->handler (it
);
3395 if (handled
== HANDLED_RECOMPUTE_PROPS
)
3397 else if (handled
== HANDLED_RETURN
)
3399 /* We still want to show before and after strings from
3400 overlays even if the actual buffer text is replaced. */
3401 if (!handle_overlay_change_p
3403 /* Don't call get_overlay_strings_1 if we already
3404 have overlay strings loaded, because doing so
3405 will load them again and push the iterator state
3406 onto the stack one more time, which is not
3407 expected by the rest of the code that processes
3409 || (it
->current
.overlay_string_index
< 0
3410 ? !get_overlay_strings_1 (it
, 0, 0)
3414 setup_for_ellipsis (it
, 0);
3415 /* When handling a display spec, we might load an
3416 empty string. In that case, discard it here. We
3417 used to discard it in handle_single_display_spec,
3418 but that causes get_overlay_strings_1, above, to
3419 ignore overlay strings that we must check. */
3420 if (STRINGP (it
->string
) && !SCHARS (it
->string
))
3424 else if (STRINGP (it
->string
) && !SCHARS (it
->string
))
3428 it
->ignore_overlay_strings_at_pos_p
= true;
3429 it
->string_from_display_prop_p
= 0;
3430 it
->from_disp_prop_p
= 0;
3431 handle_overlay_change_p
= 0;
3433 handled
= HANDLED_RECOMPUTE_PROPS
;
3436 else if (handled
== HANDLED_OVERLAY_STRING_CONSUMED
)
3437 handle_overlay_change_p
= 0;
3440 if (handled
!= HANDLED_RECOMPUTE_PROPS
)
3442 /* Don't check for overlay strings below when set to deliver
3443 characters from a display vector. */
3444 if (it
->method
== GET_FROM_DISPLAY_VECTOR
)
3445 handle_overlay_change_p
= 0;
3447 /* Handle overlay changes.
3448 This sets HANDLED to HANDLED_RECOMPUTE_PROPS
3449 if it finds overlays. */
3450 if (handle_overlay_change_p
)
3451 handled
= handle_overlay_change (it
);
3456 setup_for_ellipsis (it
, 0);
3460 while (handled
== HANDLED_RECOMPUTE_PROPS
);
3462 /* Determine where to stop next. */
3463 if (handled
== HANDLED_NORMALLY
)
3464 compute_stop_pos (it
);
3468 /* Compute IT->stop_charpos from text property and overlay change
3469 information for IT's current position. */
3472 compute_stop_pos (struct it
*it
)
3474 register INTERVAL iv
, next_iv
;
3475 Lisp_Object object
, limit
, position
;
3476 ptrdiff_t charpos
, bytepos
;
3478 if (STRINGP (it
->string
))
3480 /* Strings are usually short, so don't limit the search for
3482 it
->stop_charpos
= it
->end_charpos
;
3483 object
= it
->string
;
3485 charpos
= IT_STRING_CHARPOS (*it
);
3486 bytepos
= IT_STRING_BYTEPOS (*it
);
3492 /* If end_charpos is out of range for some reason, such as a
3493 misbehaving display function, rationalize it (Bug#5984). */
3494 if (it
->end_charpos
> ZV
)
3495 it
->end_charpos
= ZV
;
3496 it
->stop_charpos
= it
->end_charpos
;
3498 /* If next overlay change is in front of the current stop pos
3499 (which is IT->end_charpos), stop there. Note: value of
3500 next_overlay_change is point-max if no overlay change
3502 charpos
= IT_CHARPOS (*it
);
3503 bytepos
= IT_BYTEPOS (*it
);
3504 pos
= next_overlay_change (charpos
);
3505 if (pos
< it
->stop_charpos
)
3506 it
->stop_charpos
= pos
;
3508 /* Set up variables for computing the stop position from text
3509 property changes. */
3510 XSETBUFFER (object
, current_buffer
);
3511 limit
= make_number (IT_CHARPOS (*it
) + TEXT_PROP_DISTANCE_LIMIT
);
3514 /* Get the interval containing IT's position. Value is a null
3515 interval if there isn't such an interval. */
3516 position
= make_number (charpos
);
3517 iv
= validate_interval_range (object
, &position
, &position
, 0);
3520 Lisp_Object values_here
[LAST_PROP_IDX
];
3523 /* Get properties here. */
3524 for (p
= it_props
; p
->handler
; ++p
)
3525 values_here
[p
->idx
] = textget (iv
->plist
,
3526 builtin_lisp_symbol (p
->name
));
3528 /* Look for an interval following iv that has different
3530 for (next_iv
= next_interval (iv
);
3533 || XFASTINT (limit
) > next_iv
->position
));
3534 next_iv
= next_interval (next_iv
))
3536 for (p
= it_props
; p
->handler
; ++p
)
3538 Lisp_Object new_value
= textget (next_iv
->plist
,
3539 builtin_lisp_symbol (p
->name
));
3540 if (!EQ (values_here
[p
->idx
], new_value
))
3550 if (INTEGERP (limit
)
3551 && next_iv
->position
>= XFASTINT (limit
))
3552 /* No text property change up to limit. */
3553 it
->stop_charpos
= min (XFASTINT (limit
), it
->stop_charpos
);
3555 /* Text properties change in next_iv. */
3556 it
->stop_charpos
= min (it
->stop_charpos
, next_iv
->position
);
3560 if (it
->cmp_it
.id
< 0)
3562 ptrdiff_t stoppos
= it
->end_charpos
;
3564 if (it
->bidi_p
&& it
->bidi_it
.scan_dir
< 0)
3566 composition_compute_stop_pos (&it
->cmp_it
, charpos
, bytepos
,
3567 stoppos
, it
->string
);
3570 eassert (STRINGP (it
->string
)
3571 || (it
->stop_charpos
>= BEGV
3572 && it
->stop_charpos
>= IT_CHARPOS (*it
)));
3576 /* Return the position of the next overlay change after POS in
3577 current_buffer. Value is point-max if no overlay change
3578 follows. This is like `next-overlay-change' but doesn't use
3582 next_overlay_change (ptrdiff_t pos
)
3584 ptrdiff_t i
, noverlays
;
3586 Lisp_Object
*overlays
;
3589 /* Get all overlays at the given position. */
3590 GET_OVERLAYS_AT (pos
, overlays
, noverlays
, &endpos
, 1);
3592 /* If any of these overlays ends before endpos,
3593 use its ending point instead. */
3594 for (i
= 0; i
< noverlays
; ++i
)
3599 oend
= OVERLAY_END (overlays
[i
]);
3600 oendpos
= OVERLAY_POSITION (oend
);
3601 endpos
= min (endpos
, oendpos
);
3608 /* How many characters forward to search for a display property or
3609 display string. Searching too far forward makes the bidi display
3610 sluggish, especially in small windows. */
3611 #define MAX_DISP_SCAN 250
3613 /* Return the character position of a display string at or after
3614 position specified by POSITION. If no display string exists at or
3615 after POSITION, return ZV. A display string is either an overlay
3616 with `display' property whose value is a string, or a `display'
3617 text property whose value is a string. STRING is data about the
3618 string to iterate; if STRING->lstring is nil, we are iterating a
3619 buffer. FRAME_WINDOW_P is non-zero when we are displaying a window
3620 on a GUI frame. DISP_PROP is set to zero if we searched
3621 MAX_DISP_SCAN characters forward without finding any display
3622 strings, non-zero otherwise. It is set to 2 if the display string
3623 uses any kind of `(space ...)' spec that will produce a stretch of
3624 white space in the text area. */
3626 compute_display_string_pos (struct text_pos
*position
,
3627 struct bidi_string_data
*string
,
3629 int frame_window_p
, int *disp_prop
)
3631 /* OBJECT = nil means current buffer. */
3632 Lisp_Object object
, object1
;
3633 Lisp_Object pos
, spec
, limpos
;
3634 int string_p
= (string
&& (STRINGP (string
->lstring
) || string
->s
));
3635 ptrdiff_t eob
= string_p
? string
->schars
: ZV
;
3636 ptrdiff_t begb
= string_p
? 0 : BEGV
;
3637 ptrdiff_t bufpos
, charpos
= CHARPOS (*position
);
3639 (charpos
< eob
- MAX_DISP_SCAN
) ? charpos
+ MAX_DISP_SCAN
: eob
;
3640 struct text_pos tpos
;
3643 if (string
&& STRINGP (string
->lstring
))
3644 object1
= object
= string
->lstring
;
3645 else if (w
&& !string_p
)
3647 XSETWINDOW (object
, w
);
3651 object1
= object
= Qnil
;
3656 /* We don't support display properties whose values are strings
3657 that have display string properties. */
3658 || string
->from_disp_str
3659 /* C strings cannot have display properties. */
3660 || (string
->s
&& !STRINGP (object
)))
3666 /* If the character at CHARPOS is where the display string begins,
3668 pos
= make_number (charpos
);
3669 if (STRINGP (object
))
3670 bufpos
= string
->bufpos
;
3674 if (!NILP (spec
= Fget_char_property (pos
, Qdisplay
, object
))
3676 || !EQ (Fget_char_property (make_number (charpos
- 1), Qdisplay
,
3679 && (rv
= handle_display_spec (NULL
, spec
, object
, Qnil
, &tpos
, bufpos
,
3687 /* Look forward for the first character with a `display' property
3688 that will replace the underlying text when displayed. */
3689 limpos
= make_number (lim
);
3691 pos
= Fnext_single_char_property_change (pos
, Qdisplay
, object1
, limpos
);
3692 CHARPOS (tpos
) = XFASTINT (pos
);
3693 if (CHARPOS (tpos
) >= lim
)
3698 if (STRINGP (object
))
3699 BYTEPOS (tpos
) = string_char_to_byte (object
, CHARPOS (tpos
));
3701 BYTEPOS (tpos
) = CHAR_TO_BYTE (CHARPOS (tpos
));
3702 spec
= Fget_char_property (pos
, Qdisplay
, object
);
3703 if (!STRINGP (object
))
3704 bufpos
= CHARPOS (tpos
);
3705 } while (NILP (spec
)
3706 || !(rv
= handle_display_spec (NULL
, spec
, object
, Qnil
, &tpos
,
3707 bufpos
, frame_window_p
)));
3711 return CHARPOS (tpos
);
3714 /* Return the character position of the end of the display string that
3715 started at CHARPOS. If there's no display string at CHARPOS,
3716 return -1. A display string is either an overlay with `display'
3717 property whose value is a string or a `display' text property whose
3718 value is a string. */
3720 compute_display_string_end (ptrdiff_t charpos
, struct bidi_string_data
*string
)
3722 /* OBJECT = nil means current buffer. */
3723 Lisp_Object object
=
3724 (string
&& STRINGP (string
->lstring
)) ? string
->lstring
: Qnil
;
3725 Lisp_Object pos
= make_number (charpos
);
3727 (STRINGP (object
) || (string
&& string
->s
)) ? string
->schars
: ZV
;
3729 if (charpos
>= eob
|| (string
->s
&& !STRINGP (object
)))
3732 /* It could happen that the display property or overlay was removed
3733 since we found it in compute_display_string_pos above. One way
3734 this can happen is if JIT font-lock was called (through
3735 handle_fontified_prop), and jit-lock-functions remove text
3736 properties or overlays from the portion of buffer that includes
3737 CHARPOS. Muse mode is known to do that, for example. In this
3738 case, we return -1 to the caller, to signal that no display
3739 string is actually present at CHARPOS. See bidi_fetch_char for
3740 how this is handled.
3742 An alternative would be to never look for display properties past
3743 it->stop_charpos. But neither compute_display_string_pos nor
3744 bidi_fetch_char that calls it know or care where the next
3746 if (NILP (Fget_char_property (pos
, Qdisplay
, object
)))
3749 /* Look forward for the first character where the `display' property
3751 pos
= Fnext_single_char_property_change (pos
, Qdisplay
, object
, Qnil
);
3753 return XFASTINT (pos
);
3758 /***********************************************************************
3760 ***********************************************************************/
3762 /* Handle changes in the `fontified' property of the current buffer by
3763 calling hook functions from Qfontification_functions to fontify
3766 static enum prop_handled
3767 handle_fontified_prop (struct it
*it
)
3769 Lisp_Object prop
, pos
;
3770 enum prop_handled handled
= HANDLED_NORMALLY
;
3772 if (!NILP (Vmemory_full
))
3775 /* Get the value of the `fontified' property at IT's current buffer
3776 position. (The `fontified' property doesn't have a special
3777 meaning in strings.) If the value is nil, call functions from
3778 Qfontification_functions. */
3779 if (!STRINGP (it
->string
)
3781 && !NILP (Vfontification_functions
)
3782 && !NILP (Vrun_hooks
)
3783 && (pos
= make_number (IT_CHARPOS (*it
)),
3784 prop
= Fget_char_property (pos
, Qfontified
, Qnil
),
3785 /* Ignore the special cased nil value always present at EOB since
3786 no amount of fontifying will be able to change it. */
3787 NILP (prop
) && IT_CHARPOS (*it
) < Z
))
3789 ptrdiff_t count
= SPECPDL_INDEX ();
3791 struct buffer
*obuf
= current_buffer
;
3792 ptrdiff_t begv
= BEGV
, zv
= ZV
;
3793 bool old_clip_changed
= current_buffer
->clip_changed
;
3795 val
= Vfontification_functions
;
3796 specbind (Qfontification_functions
, Qnil
);
3798 eassert (it
->end_charpos
== ZV
);
3800 if (!CONSP (val
) || EQ (XCAR (val
), Qlambda
))
3801 safe_call1 (val
, pos
);
3804 Lisp_Object fns
, fn
;
3805 struct gcpro gcpro1
, gcpro2
;
3810 for (; CONSP (val
); val
= XCDR (val
))
3816 /* A value of t indicates this hook has a local
3817 binding; it means to run the global binding too.
3818 In a global value, t should not occur. If it
3819 does, we must ignore it to avoid an endless
3821 for (fns
= Fdefault_value (Qfontification_functions
);
3827 safe_call1 (fn
, pos
);
3831 safe_call1 (fn
, pos
);
3837 unbind_to (count
, Qnil
);
3839 /* Fontification functions routinely call `save-restriction'.
3840 Normally, this tags clip_changed, which can confuse redisplay
3841 (see discussion in Bug#6671). Since we don't perform any
3842 special handling of fontification changes in the case where
3843 `save-restriction' isn't called, there's no point doing so in
3844 this case either. So, if the buffer's restrictions are
3845 actually left unchanged, reset clip_changed. */
3846 if (obuf
== current_buffer
)
3848 if (begv
== BEGV
&& zv
== ZV
)
3849 current_buffer
->clip_changed
= old_clip_changed
;
3851 /* There isn't much we can reasonably do to protect against
3852 misbehaving fontification, but here's a fig leaf. */
3853 else if (BUFFER_LIVE_P (obuf
))
3854 set_buffer_internal_1 (obuf
);
3856 /* The fontification code may have added/removed text.
3857 It could do even a lot worse, but let's at least protect against
3858 the most obvious case where only the text past `pos' gets changed',
3859 as is/was done in grep.el where some escapes sequences are turned
3860 into face properties (bug#7876). */
3861 it
->end_charpos
= ZV
;
3863 /* Return HANDLED_RECOMPUTE_PROPS only if function fontified
3864 something. This avoids an endless loop if they failed to
3865 fontify the text for which reason ever. */
3866 if (!NILP (Fget_char_property (pos
, Qfontified
, Qnil
)))
3867 handled
= HANDLED_RECOMPUTE_PROPS
;
3875 /***********************************************************************
3877 ***********************************************************************/
3879 /* Set up iterator IT from face properties at its current position.
3880 Called from handle_stop. */
3882 static enum prop_handled
3883 handle_face_prop (struct it
*it
)
3886 ptrdiff_t next_stop
;
3888 if (!STRINGP (it
->string
))
3891 = face_at_buffer_position (it
->w
,
3895 + TEXT_PROP_DISTANCE_LIMIT
),
3896 0, it
->base_face_id
);
3898 /* Is this a start of a run of characters with box face?
3899 Caveat: this can be called for a freshly initialized
3900 iterator; face_id is -1 in this case. We know that the new
3901 face will not change until limit, i.e. if the new face has a
3902 box, all characters up to limit will have one. But, as
3903 usual, we don't know whether limit is really the end. */
3904 if (new_face_id
!= it
->face_id
)
3906 struct face
*new_face
= FACE_FROM_ID (it
->f
, new_face_id
);
3907 /* If it->face_id is -1, old_face below will be NULL, see
3908 the definition of FACE_FROM_ID. This will happen if this
3909 is the initial call that gets the face. */
3910 struct face
*old_face
= FACE_FROM_ID (it
->f
, it
->face_id
);
3912 /* If the value of face_id of the iterator is -1, we have to
3913 look in front of IT's position and see whether there is a
3914 face there that's different from new_face_id. */
3915 if (!old_face
&& IT_CHARPOS (*it
) > BEG
)
3917 int prev_face_id
= face_before_it_pos (it
);
3919 old_face
= FACE_FROM_ID (it
->f
, prev_face_id
);
3922 /* If the new face has a box, but the old face does not,
3923 this is the start of a run of characters with box face,
3924 i.e. this character has a shadow on the left side. */
3925 it
->start_of_box_run_p
= (new_face
->box
!= FACE_NO_BOX
3926 && (old_face
== NULL
|| !old_face
->box
));
3927 it
->face_box_p
= new_face
->box
!= FACE_NO_BOX
;
3935 Lisp_Object from_overlay
3936 = (it
->current
.overlay_string_index
>= 0
3937 ? it
->string_overlays
[it
->current
.overlay_string_index
3938 % OVERLAY_STRING_CHUNK_SIZE
]
3941 /* See if we got to this string directly or indirectly from
3942 an overlay property. That includes the before-string or
3943 after-string of an overlay, strings in display properties
3944 provided by an overlay, their text properties, etc.
3946 FROM_OVERLAY is the overlay that brought us here, or nil if none. */
3947 if (! NILP (from_overlay
))
3948 for (i
= it
->sp
- 1; i
>= 0; i
--)
3950 if (it
->stack
[i
].current
.overlay_string_index
>= 0)
3952 = it
->string_overlays
[it
->stack
[i
].current
.overlay_string_index
3953 % OVERLAY_STRING_CHUNK_SIZE
];
3954 else if (! NILP (it
->stack
[i
].from_overlay
))
3955 from_overlay
= it
->stack
[i
].from_overlay
;
3957 if (!NILP (from_overlay
))
3961 if (! NILP (from_overlay
))
3963 bufpos
= IT_CHARPOS (*it
);
3964 /* For a string from an overlay, the base face depends
3965 only on text properties and ignores overlays. */
3967 = face_for_overlay_string (it
->w
,
3971 + TEXT_PROP_DISTANCE_LIMIT
),
3979 /* For strings from a `display' property, use the face at
3980 IT's current buffer position as the base face to merge
3981 with, so that overlay strings appear in the same face as
3982 surrounding text, unless they specify their own faces.
3983 For strings from wrap-prefix and line-prefix properties,
3984 use the default face, possibly remapped via
3985 Vface_remapping_alist. */
3986 /* Note that the fact that we use the face at _buffer_
3987 position means that a 'display' property on an overlay
3988 string will not inherit the face of that overlay string,
3989 but will instead revert to the face of buffer text
3990 covered by the overlay. This is visible, e.g., when the
3991 overlay specifies a box face, but neither the buffer nor
3992 the display string do. This sounds like a design bug,
3993 but Emacs always did that since v21.1, so changing that
3994 might be a big deal. */
3995 base_face_id
= it
->string_from_prefix_prop_p
3996 ? (!NILP (Vface_remapping_alist
)
3997 ? lookup_basic_face (it
->f
, DEFAULT_FACE_ID
)
3999 : underlying_face_id (it
);
4002 new_face_id
= face_at_string_position (it
->w
,
4004 IT_STRING_CHARPOS (*it
),
4009 /* Is this a start of a run of characters with box? Caveat:
4010 this can be called for a freshly allocated iterator; face_id
4011 is -1 is this case. We know that the new face will not
4012 change until the next check pos, i.e. if the new face has a
4013 box, all characters up to that position will have a
4014 box. But, as usual, we don't know whether that position
4015 is really the end. */
4016 if (new_face_id
!= it
->face_id
)
4018 struct face
*new_face
= FACE_FROM_ID (it
->f
, new_face_id
);
4019 struct face
*old_face
= FACE_FROM_ID (it
->f
, it
->face_id
);
4021 /* If new face has a box but old face hasn't, this is the
4022 start of a run of characters with box, i.e. it has a
4023 shadow on the left side. */
4024 it
->start_of_box_run_p
4025 = new_face
->box
&& (old_face
== NULL
|| !old_face
->box
);
4026 it
->face_box_p
= new_face
->box
!= FACE_NO_BOX
;
4030 it
->face_id
= new_face_id
;
4031 return HANDLED_NORMALLY
;
4035 /* Return the ID of the face ``underlying'' IT's current position,
4036 which is in a string. If the iterator is associated with a
4037 buffer, return the face at IT's current buffer position.
4038 Otherwise, use the iterator's base_face_id. */
4041 underlying_face_id (struct it
*it
)
4043 int face_id
= it
->base_face_id
, i
;
4045 eassert (STRINGP (it
->string
));
4047 for (i
= it
->sp
- 1; i
>= 0; --i
)
4048 if (NILP (it
->stack
[i
].string
))
4049 face_id
= it
->stack
[i
].face_id
;
4055 /* Compute the face one character before or after the current position
4056 of IT, in the visual order. BEFORE_P non-zero means get the face
4057 in front (to the left in L2R paragraphs, to the right in R2L
4058 paragraphs) of IT's screen position. Value is the ID of the face. */
4061 face_before_or_after_it_pos (struct it
*it
, int before_p
)
4064 ptrdiff_t next_check_charpos
;
4066 void *it_copy_data
= NULL
;
4068 eassert (it
->s
== NULL
);
4070 if (STRINGP (it
->string
))
4072 ptrdiff_t bufpos
, charpos
;
4075 /* No face change past the end of the string (for the case
4076 we are padding with spaces). No face change before the
4078 if (IT_STRING_CHARPOS (*it
) >= SCHARS (it
->string
)
4079 || (IT_STRING_CHARPOS (*it
) == 0 && before_p
))
4084 /* Set charpos to the position before or after IT's current
4085 position, in the logical order, which in the non-bidi
4086 case is the same as the visual order. */
4088 charpos
= IT_STRING_CHARPOS (*it
) - 1;
4089 else if (it
->what
== IT_COMPOSITION
)
4090 /* For composition, we must check the character after the
4092 charpos
= IT_STRING_CHARPOS (*it
) + it
->cmp_it
.nchars
;
4094 charpos
= IT_STRING_CHARPOS (*it
) + 1;
4100 /* With bidi iteration, the character before the current
4101 in the visual order cannot be found by simple
4102 iteration, because "reverse" reordering is not
4103 supported. Instead, we need to use the move_it_*
4104 family of functions. */
4105 /* Ignore face changes before the first visible
4106 character on this display line. */
4107 if (it
->current_x
<= it
->first_visible_x
)
4109 SAVE_IT (it_copy
, *it
, it_copy_data
);
4110 /* Implementation note: Since move_it_in_display_line
4111 works in the iterator geometry, and thinks the first
4112 character is always the leftmost, even in R2L lines,
4113 we don't need to distinguish between the R2L and L2R
4115 move_it_in_display_line (&it_copy
, SCHARS (it_copy
.string
),
4116 it_copy
.current_x
- 1, MOVE_TO_X
);
4117 charpos
= IT_STRING_CHARPOS (it_copy
);
4118 RESTORE_IT (it
, it
, it_copy_data
);
4122 /* Set charpos to the string position of the character
4123 that comes after IT's current position in the visual
4125 int n
= (it
->what
== IT_COMPOSITION
? it
->cmp_it
.nchars
: 1);
4129 bidi_move_to_visually_next (&it_copy
.bidi_it
);
4131 charpos
= it_copy
.bidi_it
.charpos
;
4134 eassert (0 <= charpos
&& charpos
<= SCHARS (it
->string
));
4136 if (it
->current
.overlay_string_index
>= 0)
4137 bufpos
= IT_CHARPOS (*it
);
4141 base_face_id
= underlying_face_id (it
);
4143 /* Get the face for ASCII, or unibyte. */
4144 face_id
= face_at_string_position (it
->w
,
4148 &next_check_charpos
,
4151 /* Correct the face for charsets different from ASCII. Do it
4152 for the multibyte case only. The face returned above is
4153 suitable for unibyte text if IT->string is unibyte. */
4154 if (STRING_MULTIBYTE (it
->string
))
4156 struct text_pos pos1
= string_pos (charpos
, it
->string
);
4157 const unsigned char *p
= SDATA (it
->string
) + BYTEPOS (pos1
);
4159 struct face
*face
= FACE_FROM_ID (it
->f
, face_id
);
4161 c
= string_char_and_length (p
, &len
);
4162 face_id
= FACE_FOR_CHAR (it
->f
, face
, c
, charpos
, it
->string
);
4167 struct text_pos pos
;
4169 if ((IT_CHARPOS (*it
) >= ZV
&& !before_p
)
4170 || (IT_CHARPOS (*it
) <= BEGV
&& before_p
))
4173 limit
= IT_CHARPOS (*it
) + TEXT_PROP_DISTANCE_LIMIT
;
4174 pos
= it
->current
.pos
;
4179 DEC_TEXT_POS (pos
, it
->multibyte_p
);
4182 if (it
->what
== IT_COMPOSITION
)
4184 /* For composition, we must check the position after
4186 pos
.charpos
+= it
->cmp_it
.nchars
;
4187 pos
.bytepos
+= it
->len
;
4190 INC_TEXT_POS (pos
, it
->multibyte_p
);
4197 /* With bidi iteration, the character before the current
4198 in the visual order cannot be found by simple
4199 iteration, because "reverse" reordering is not
4200 supported. Instead, we need to use the move_it_*
4201 family of functions. */
4202 /* Ignore face changes before the first visible
4203 character on this display line. */
4204 if (it
->current_x
<= it
->first_visible_x
)
4206 SAVE_IT (it_copy
, *it
, it_copy_data
);
4207 /* Implementation note: Since move_it_in_display_line
4208 works in the iterator geometry, and thinks the first
4209 character is always the leftmost, even in R2L lines,
4210 we don't need to distinguish between the R2L and L2R
4212 move_it_in_display_line (&it_copy
, ZV
,
4213 it_copy
.current_x
- 1, MOVE_TO_X
);
4214 pos
= it_copy
.current
.pos
;
4215 RESTORE_IT (it
, it
, it_copy_data
);
4219 /* Set charpos to the buffer position of the character
4220 that comes after IT's current position in the visual
4222 int n
= (it
->what
== IT_COMPOSITION
? it
->cmp_it
.nchars
: 1);
4226 bidi_move_to_visually_next (&it_copy
.bidi_it
);
4229 it_copy
.bidi_it
.charpos
, it_copy
.bidi_it
.bytepos
);
4232 eassert (BEGV
<= CHARPOS (pos
) && CHARPOS (pos
) <= ZV
);
4234 /* Determine face for CHARSET_ASCII, or unibyte. */
4235 face_id
= face_at_buffer_position (it
->w
,
4237 &next_check_charpos
,
4240 /* Correct the face for charsets different from ASCII. Do it
4241 for the multibyte case only. The face returned above is
4242 suitable for unibyte text if current_buffer is unibyte. */
4243 if (it
->multibyte_p
)
4245 int c
= FETCH_MULTIBYTE_CHAR (BYTEPOS (pos
));
4246 struct face
*face
= FACE_FROM_ID (it
->f
, face_id
);
4247 face_id
= FACE_FOR_CHAR (it
->f
, face
, c
, CHARPOS (pos
), Qnil
);
4256 /***********************************************************************
4258 ***********************************************************************/
4260 /* Set up iterator IT from invisible properties at its current
4261 position. Called from handle_stop. */
4263 static enum prop_handled
4264 handle_invisible_prop (struct it
*it
)
4266 enum prop_handled handled
= HANDLED_NORMALLY
;
4270 if (STRINGP (it
->string
))
4272 Lisp_Object end_charpos
, limit
, charpos
;
4274 /* Get the value of the invisible text property at the
4275 current position. Value will be nil if there is no such
4277 charpos
= make_number (IT_STRING_CHARPOS (*it
));
4278 prop
= Fget_text_property (charpos
, Qinvisible
, it
->string
);
4279 invis_p
= TEXT_PROP_MEANS_INVISIBLE (prop
);
4281 if (invis_p
&& IT_STRING_CHARPOS (*it
) < it
->end_charpos
)
4283 /* Record whether we have to display an ellipsis for the
4285 int display_ellipsis_p
= (invis_p
== 2);
4286 ptrdiff_t len
, endpos
;
4288 handled
= HANDLED_RECOMPUTE_PROPS
;
4290 /* Get the position at which the next visible text can be
4291 found in IT->string, if any. */
4292 endpos
= len
= SCHARS (it
->string
);
4293 XSETINT (limit
, len
);
4296 end_charpos
= Fnext_single_property_change (charpos
, Qinvisible
,
4298 if (INTEGERP (end_charpos
))
4300 endpos
= XFASTINT (end_charpos
);
4301 prop
= Fget_text_property (end_charpos
, Qinvisible
, it
->string
);
4302 invis_p
= TEXT_PROP_MEANS_INVISIBLE (prop
);
4304 display_ellipsis_p
= true;
4307 while (invis_p
&& endpos
< len
);
4309 if (display_ellipsis_p
)
4310 it
->ellipsis_p
= true;
4314 /* Text at END_CHARPOS is visible. Move IT there. */
4315 struct text_pos old
;
4318 old
= it
->current
.string_pos
;
4319 oldpos
= CHARPOS (old
);
4322 if (it
->bidi_it
.first_elt
4323 && it
->bidi_it
.charpos
< SCHARS (it
->string
))
4324 bidi_paragraph_init (it
->paragraph_embedding
,
4326 /* Bidi-iterate out of the invisible text. */
4329 bidi_move_to_visually_next (&it
->bidi_it
);
4331 while (oldpos
<= it
->bidi_it
.charpos
4332 && it
->bidi_it
.charpos
< endpos
);
4334 IT_STRING_CHARPOS (*it
) = it
->bidi_it
.charpos
;
4335 IT_STRING_BYTEPOS (*it
) = it
->bidi_it
.bytepos
;
4336 if (IT_CHARPOS (*it
) >= endpos
)
4337 it
->prev_stop
= endpos
;
4341 IT_STRING_CHARPOS (*it
) = XFASTINT (end_charpos
);
4342 compute_string_pos (&it
->current
.string_pos
, old
, it
->string
);
4347 /* The rest of the string is invisible. If this is an
4348 overlay string, proceed with the next overlay string
4349 or whatever comes and return a character from there. */
4350 if (it
->current
.overlay_string_index
>= 0
4351 && !display_ellipsis_p
)
4353 next_overlay_string (it
);
4354 /* Don't check for overlay strings when we just
4355 finished processing them. */
4356 handled
= HANDLED_OVERLAY_STRING_CONSUMED
;
4360 IT_STRING_CHARPOS (*it
) = SCHARS (it
->string
);
4361 IT_STRING_BYTEPOS (*it
) = SBYTES (it
->string
);
4368 ptrdiff_t newpos
, next_stop
, start_charpos
, tem
;
4369 Lisp_Object pos
, overlay
;
4371 /* First of all, is there invisible text at this position? */
4372 tem
= start_charpos
= IT_CHARPOS (*it
);
4373 pos
= make_number (tem
);
4374 prop
= get_char_property_and_overlay (pos
, Qinvisible
, it
->window
,
4376 invis_p
= TEXT_PROP_MEANS_INVISIBLE (prop
);
4378 /* If we are on invisible text, skip over it. */
4379 if (invis_p
&& start_charpos
< it
->end_charpos
)
4381 /* Record whether we have to display an ellipsis for the
4383 int display_ellipsis_p
= invis_p
== 2;
4385 handled
= HANDLED_RECOMPUTE_PROPS
;
4387 /* Loop skipping over invisible text. The loop is left at
4388 ZV or with IT on the first char being visible again. */
4391 /* Try to skip some invisible text. Return value is the
4392 position reached which can be equal to where we start
4393 if there is nothing invisible there. This skips both
4394 over invisible text properties and overlays with
4395 invisible property. */
4396 newpos
= skip_invisible (tem
, &next_stop
, ZV
, it
->window
);
4398 /* If we skipped nothing at all we weren't at invisible
4399 text in the first place. If everything to the end of
4400 the buffer was skipped, end the loop. */
4401 if (newpos
== tem
|| newpos
>= ZV
)
4405 /* We skipped some characters but not necessarily
4406 all there are. Check if we ended up on visible
4407 text. Fget_char_property returns the property of
4408 the char before the given position, i.e. if we
4409 get invis_p = 0, this means that the char at
4410 newpos is visible. */
4411 pos
= make_number (newpos
);
4412 prop
= Fget_char_property (pos
, Qinvisible
, it
->window
);
4413 invis_p
= TEXT_PROP_MEANS_INVISIBLE (prop
);
4416 /* If we ended up on invisible text, proceed to
4417 skip starting with next_stop. */
4421 /* If there are adjacent invisible texts, don't lose the
4422 second one's ellipsis. */
4424 display_ellipsis_p
= true;
4428 /* The position newpos is now either ZV or on visible text. */
4431 ptrdiff_t bpos
= CHAR_TO_BYTE (newpos
);
4433 = bpos
== ZV_BYTE
|| FETCH_BYTE (bpos
) == '\n';
4435 = newpos
<= BEGV
|| FETCH_BYTE (bpos
- 1) == '\n';
4437 /* If the invisible text ends on a newline or on a
4438 character after a newline, we can avoid the costly,
4439 character by character, bidi iteration to NEWPOS, and
4440 instead simply reseat the iterator there. That's
4441 because all bidi reordering information is tossed at
4442 the newline. This is a big win for modes that hide
4443 complete lines, like Outline, Org, etc. */
4444 if (on_newline
|| after_newline
)
4446 struct text_pos tpos
;
4447 bidi_dir_t pdir
= it
->bidi_it
.paragraph_dir
;
4449 SET_TEXT_POS (tpos
, newpos
, bpos
);
4450 reseat_1 (it
, tpos
, 0);
4451 /* If we reseat on a newline/ZV, we need to prep the
4452 bidi iterator for advancing to the next character
4453 after the newline/EOB, keeping the current paragraph
4454 direction (so that PRODUCE_GLYPHS does TRT wrt
4455 prepending/appending glyphs to a glyph row). */
4458 it
->bidi_it
.first_elt
= 0;
4459 it
->bidi_it
.paragraph_dir
= pdir
;
4460 it
->bidi_it
.ch
= (bpos
== ZV_BYTE
) ? -1 : '\n';
4461 it
->bidi_it
.nchars
= 1;
4462 it
->bidi_it
.ch_len
= 1;
4465 else /* Must use the slow method. */
4467 /* With bidi iteration, the region of invisible text
4468 could start and/or end in the middle of a
4469 non-base embedding level. Therefore, we need to
4470 skip invisible text using the bidi iterator,
4471 starting at IT's current position, until we find
4472 ourselves outside of the invisible text.
4473 Skipping invisible text _after_ bidi iteration
4474 avoids affecting the visual order of the
4475 displayed text when invisible properties are
4476 added or removed. */
4477 if (it
->bidi_it
.first_elt
&& it
->bidi_it
.charpos
< ZV
)
4479 /* If we were `reseat'ed to a new paragraph,
4480 determine the paragraph base direction. We
4481 need to do it now because
4482 next_element_from_buffer may not have a
4483 chance to do it, if we are going to skip any
4484 text at the beginning, which resets the
4486 bidi_paragraph_init (it
->paragraph_embedding
,
4491 bidi_move_to_visually_next (&it
->bidi_it
);
4493 while (it
->stop_charpos
<= it
->bidi_it
.charpos
4494 && it
->bidi_it
.charpos
< newpos
);
4495 IT_CHARPOS (*it
) = it
->bidi_it
.charpos
;
4496 IT_BYTEPOS (*it
) = it
->bidi_it
.bytepos
;
4497 /* If we overstepped NEWPOS, record its position in
4498 the iterator, so that we skip invisible text if
4499 later the bidi iteration lands us in the
4500 invisible region again. */
4501 if (IT_CHARPOS (*it
) >= newpos
)
4502 it
->prev_stop
= newpos
;
4507 IT_CHARPOS (*it
) = newpos
;
4508 IT_BYTEPOS (*it
) = CHAR_TO_BYTE (newpos
);
4511 /* If there are before-strings at the start of invisible
4512 text, and the text is invisible because of a text
4513 property, arrange to show before-strings because 20.x did
4514 it that way. (If the text is invisible because of an
4515 overlay property instead of a text property, this is
4516 already handled in the overlay code.) */
4518 && get_overlay_strings (it
, it
->stop_charpos
))
4520 handled
= HANDLED_RECOMPUTE_PROPS
;
4523 it
->stack
[it
->sp
- 1].display_ellipsis_p
= display_ellipsis_p
;
4524 /* The call to get_overlay_strings above recomputes
4525 it->stop_charpos, but it only considers changes
4526 in properties and overlays beyond iterator's
4527 current position. This causes us to miss changes
4528 that happen exactly where the invisible property
4529 ended. So we play it safe here and force the
4530 iterator to check for potential stop positions
4531 immediately after the invisible text. Note that
4532 if get_overlay_strings returns non-zero, it
4533 normally also pushed the iterator stack, so we
4534 need to update the stop position in the slot
4535 below the current one. */
4536 it
->stack
[it
->sp
- 1].stop_charpos
4537 = CHARPOS (it
->stack
[it
->sp
- 1].current
.pos
);
4540 else if (display_ellipsis_p
)
4542 /* Make sure that the glyphs of the ellipsis will get
4543 correct `charpos' values. If we would not update
4544 it->position here, the glyphs would belong to the
4545 last visible character _before_ the invisible
4546 text, which confuses `set_cursor_from_row'.
4548 We use the last invisible position instead of the
4549 first because this way the cursor is always drawn on
4550 the first "." of the ellipsis, whenever PT is inside
4551 the invisible text. Otherwise the cursor would be
4552 placed _after_ the ellipsis when the point is after the
4553 first invisible character. */
4554 if (!STRINGP (it
->object
))
4556 it
->position
.charpos
= newpos
- 1;
4557 it
->position
.bytepos
= CHAR_TO_BYTE (it
->position
.charpos
);
4559 it
->ellipsis_p
= true;
4560 /* Let the ellipsis display before
4561 considering any properties of the following char.
4562 Fixes jasonr@gnu.org 01 Oct 07 bug. */
4563 handled
= HANDLED_RETURN
;
4572 /* Make iterator IT return `...' next.
4573 Replaces LEN characters from buffer. */
4576 setup_for_ellipsis (struct it
*it
, int len
)
4578 /* Use the display table definition for `...'. Invalid glyphs
4579 will be handled by the method returning elements from dpvec. */
4580 if (it
->dp
&& VECTORP (DISP_INVIS_VECTOR (it
->dp
)))
4582 struct Lisp_Vector
*v
= XVECTOR (DISP_INVIS_VECTOR (it
->dp
));
4583 it
->dpvec
= v
->contents
;
4584 it
->dpend
= v
->contents
+ v
->header
.size
;
4588 /* Default `...'. */
4589 it
->dpvec
= default_invis_vector
;
4590 it
->dpend
= default_invis_vector
+ 3;
4593 it
->dpvec_char_len
= len
;
4594 it
->current
.dpvec_index
= 0;
4595 it
->dpvec_face_id
= -1;
4597 /* Remember the current face id in case glyphs specify faces.
4598 IT's face is restored in set_iterator_to_next.
4599 saved_face_id was set to preceding char's face in handle_stop. */
4600 if (it
->saved_face_id
< 0 || it
->saved_face_id
!= it
->face_id
)
4601 it
->saved_face_id
= it
->face_id
= DEFAULT_FACE_ID
;
4603 it
->method
= GET_FROM_DISPLAY_VECTOR
;
4604 it
->ellipsis_p
= true;
4609 /***********************************************************************
4611 ***********************************************************************/
4613 /* Set up iterator IT from `display' property at its current position.
4614 Called from handle_stop.
4615 We return HANDLED_RETURN if some part of the display property
4616 overrides the display of the buffer text itself.
4617 Otherwise we return HANDLED_NORMALLY. */
4619 static enum prop_handled
4620 handle_display_prop (struct it
*it
)
4622 Lisp_Object propval
, object
, overlay
;
4623 struct text_pos
*position
;
4625 /* Nonzero if some property replaces the display of the text itself. */
4626 int display_replaced_p
= 0;
4628 if (STRINGP (it
->string
))
4630 object
= it
->string
;
4631 position
= &it
->current
.string_pos
;
4632 bufpos
= CHARPOS (it
->current
.pos
);
4636 XSETWINDOW (object
, it
->w
);
4637 position
= &it
->current
.pos
;
4638 bufpos
= CHARPOS (*position
);
4641 /* Reset those iterator values set from display property values. */
4642 it
->slice
.x
= it
->slice
.y
= it
->slice
.width
= it
->slice
.height
= Qnil
;
4643 it
->space_width
= Qnil
;
4644 it
->font_height
= Qnil
;
4647 /* We don't support recursive `display' properties, i.e. string
4648 values that have a string `display' property, that have a string
4649 `display' property etc. */
4650 if (!it
->string_from_display_prop_p
)
4651 it
->area
= TEXT_AREA
;
4653 propval
= get_char_property_and_overlay (make_number (position
->charpos
),
4654 Qdisplay
, object
, &overlay
);
4656 return HANDLED_NORMALLY
;
4657 /* Now OVERLAY is the overlay that gave us this property, or nil
4658 if it was a text property. */
4660 if (!STRINGP (it
->string
))
4661 object
= it
->w
->contents
;
4663 display_replaced_p
= handle_display_spec (it
, propval
, object
, overlay
,
4665 FRAME_WINDOW_P (it
->f
));
4667 return display_replaced_p
? HANDLED_RETURN
: HANDLED_NORMALLY
;
4670 /* Subroutine of handle_display_prop. Returns non-zero if the display
4671 specification in SPEC is a replacing specification, i.e. it would
4672 replace the text covered by `display' property with something else,
4673 such as an image or a display string. If SPEC includes any kind or
4674 `(space ...) specification, the value is 2; this is used by
4675 compute_display_string_pos, which see.
4677 See handle_single_display_spec for documentation of arguments.
4678 frame_window_p is non-zero if the window being redisplayed is on a
4679 GUI frame; this argument is used only if IT is NULL, see below.
4681 IT can be NULL, if this is called by the bidi reordering code
4682 through compute_display_string_pos, which see. In that case, this
4683 function only examines SPEC, but does not otherwise "handle" it, in
4684 the sense that it doesn't set up members of IT from the display
4687 handle_display_spec (struct it
*it
, Lisp_Object spec
, Lisp_Object object
,
4688 Lisp_Object overlay
, struct text_pos
*position
,
4689 ptrdiff_t bufpos
, int frame_window_p
)
4691 int replacing_p
= 0;
4695 /* Simple specifications. */
4696 && !EQ (XCAR (spec
), Qimage
)
4697 #ifdef HAVE_XWIDGETS
4698 && !EQ (XCAR (spec
), Qxwidget
)
4700 && !EQ (XCAR (spec
), Qspace
)
4701 && !EQ (XCAR (spec
), Qwhen
)
4702 && !EQ (XCAR (spec
), Qslice
)
4703 && !EQ (XCAR (spec
), Qspace_width
)
4704 && !EQ (XCAR (spec
), Qheight
)
4705 && !EQ (XCAR (spec
), Qraise
)
4706 /* Marginal area specifications. */
4707 && !(CONSP (XCAR (spec
)) && EQ (XCAR (XCAR (spec
)), Qmargin
))
4708 && !EQ (XCAR (spec
), Qleft_fringe
)
4709 && !EQ (XCAR (spec
), Qright_fringe
)
4710 && !NILP (XCAR (spec
)))
4712 for (; CONSP (spec
); spec
= XCDR (spec
))
4714 if ((rv
= handle_single_display_spec (it
, XCAR (spec
), object
,
4715 overlay
, position
, bufpos
,
4716 replacing_p
, frame_window_p
)))
4719 /* If some text in a string is replaced, `position' no
4720 longer points to the position of `object'. */
4721 if (!it
|| STRINGP (object
))
4726 else if (VECTORP (spec
))
4729 for (i
= 0; i
< ASIZE (spec
); ++i
)
4730 if ((rv
= handle_single_display_spec (it
, AREF (spec
, i
), object
,
4731 overlay
, position
, bufpos
,
4732 replacing_p
, frame_window_p
)))
4735 /* If some text in a string is replaced, `position' no
4736 longer points to the position of `object'. */
4737 if (!it
|| STRINGP (object
))
4743 if ((rv
= handle_single_display_spec (it
, spec
, object
, overlay
,
4744 position
, bufpos
, 0,
4752 /* Value is the position of the end of the `display' property starting
4753 at START_POS in OBJECT. */
4755 static struct text_pos
4756 display_prop_end (struct it
*it
, Lisp_Object object
, struct text_pos start_pos
)
4759 struct text_pos end_pos
;
4761 end
= Fnext_single_char_property_change (make_number (CHARPOS (start_pos
)),
4762 Qdisplay
, object
, Qnil
);
4763 CHARPOS (end_pos
) = XFASTINT (end
);
4764 if (STRINGP (object
))
4765 compute_string_pos (&end_pos
, start_pos
, it
->string
);
4767 BYTEPOS (end_pos
) = CHAR_TO_BYTE (XFASTINT (end
));
4773 /* Set up IT from a single `display' property specification SPEC. OBJECT
4774 is the object in which the `display' property was found. *POSITION
4775 is the position in OBJECT at which the `display' property was found.
4776 BUFPOS is the buffer position of OBJECT (different from POSITION if
4777 OBJECT is not a buffer). DISPLAY_REPLACED_P non-zero means that we
4778 previously saw a display specification which already replaced text
4779 display with something else, for example an image; we ignore such
4780 properties after the first one has been processed.
4782 OVERLAY is the overlay this `display' property came from,
4783 or nil if it was a text property.
4785 If SPEC is a `space' or `image' specification, and in some other
4786 cases too, set *POSITION to the position where the `display'
4789 If IT is NULL, only examine the property specification in SPEC, but
4790 don't set up IT. In that case, FRAME_WINDOW_P non-zero means SPEC
4791 is intended to be displayed in a window on a GUI frame.
4793 Value is non-zero if something was found which replaces the display
4794 of buffer or string text. */
4797 handle_single_display_spec (struct it
*it
, Lisp_Object spec
, Lisp_Object object
,
4798 Lisp_Object overlay
, struct text_pos
*position
,
4799 ptrdiff_t bufpos
, int display_replaced_p
,
4803 Lisp_Object location
, value
;
4804 struct text_pos start_pos
= *position
;
4807 /* If SPEC is a list of the form `(when FORM . VALUE)', evaluate FORM.
4808 If the result is non-nil, use VALUE instead of SPEC. */
4810 if (CONSP (spec
) && EQ (XCAR (spec
), Qwhen
))
4819 if (!NILP (form
) && !EQ (form
, Qt
))
4821 ptrdiff_t count
= SPECPDL_INDEX ();
4822 struct gcpro gcpro1
;
4824 /* Bind `object' to the object having the `display' property, a
4825 buffer or string. Bind `position' to the position in the
4826 object where the property was found, and `buffer-position'
4827 to the current position in the buffer. */
4830 XSETBUFFER (object
, current_buffer
);
4831 specbind (Qobject
, object
);
4832 specbind (Qposition
, make_number (CHARPOS (*position
)));
4833 specbind (Qbuffer_position
, make_number (bufpos
));
4835 form
= safe_eval (form
);
4837 unbind_to (count
, Qnil
);
4843 /* Handle `(height HEIGHT)' specifications. */
4845 && EQ (XCAR (spec
), Qheight
)
4846 && CONSP (XCDR (spec
)))
4850 if (!FRAME_WINDOW_P (it
->f
))
4853 it
->font_height
= XCAR (XCDR (spec
));
4854 if (!NILP (it
->font_height
))
4856 struct face
*face
= FACE_FROM_ID (it
->f
, it
->face_id
);
4857 int new_height
= -1;
4859 if (CONSP (it
->font_height
)
4860 && (EQ (XCAR (it
->font_height
), Qplus
)
4861 || EQ (XCAR (it
->font_height
), Qminus
))
4862 && CONSP (XCDR (it
->font_height
))
4863 && RANGED_INTEGERP (0, XCAR (XCDR (it
->font_height
)), INT_MAX
))
4865 /* `(+ N)' or `(- N)' where N is an integer. */
4866 int steps
= XINT (XCAR (XCDR (it
->font_height
)));
4867 if (EQ (XCAR (it
->font_height
), Qplus
))
4869 it
->face_id
= smaller_face (it
->f
, it
->face_id
, steps
);
4871 else if (FUNCTIONP (it
->font_height
))
4873 /* Call function with current height as argument.
4874 Value is the new height. */
4876 height
= safe_call1 (it
->font_height
,
4877 face
->lface
[LFACE_HEIGHT_INDEX
]);
4878 if (NUMBERP (height
))
4879 new_height
= XFLOATINT (height
);
4881 else if (NUMBERP (it
->font_height
))
4883 /* Value is a multiple of the canonical char height. */
4886 f
= FACE_FROM_ID (it
->f
,
4887 lookup_basic_face (it
->f
, DEFAULT_FACE_ID
));
4888 new_height
= (XFLOATINT (it
->font_height
)
4889 * XINT (f
->lface
[LFACE_HEIGHT_INDEX
]));
4893 /* Evaluate IT->font_height with `height' bound to the
4894 current specified height to get the new height. */
4895 ptrdiff_t count
= SPECPDL_INDEX ();
4897 specbind (Qheight
, face
->lface
[LFACE_HEIGHT_INDEX
]);
4898 value
= safe_eval (it
->font_height
);
4899 unbind_to (count
, Qnil
);
4901 if (NUMBERP (value
))
4902 new_height
= XFLOATINT (value
);
4906 it
->face_id
= face_with_height (it
->f
, it
->face_id
, new_height
);
4913 /* Handle `(space-width WIDTH)'. */
4915 && EQ (XCAR (spec
), Qspace_width
)
4916 && CONSP (XCDR (spec
)))
4920 if (!FRAME_WINDOW_P (it
->f
))
4923 value
= XCAR (XCDR (spec
));
4924 if (NUMBERP (value
) && XFLOATINT (value
) > 0)
4925 it
->space_width
= value
;
4931 /* Handle `(slice X Y WIDTH HEIGHT)'. */
4933 && EQ (XCAR (spec
), Qslice
))
4939 if (!FRAME_WINDOW_P (it
->f
))
4942 if (tem
= XCDR (spec
), CONSP (tem
))
4944 it
->slice
.x
= XCAR (tem
);
4945 if (tem
= XCDR (tem
), CONSP (tem
))
4947 it
->slice
.y
= XCAR (tem
);
4948 if (tem
= XCDR (tem
), CONSP (tem
))
4950 it
->slice
.width
= XCAR (tem
);
4951 if (tem
= XCDR (tem
), CONSP (tem
))
4952 it
->slice
.height
= XCAR (tem
);
4961 /* Handle `(raise FACTOR)'. */
4963 && EQ (XCAR (spec
), Qraise
)
4964 && CONSP (XCDR (spec
)))
4968 if (!FRAME_WINDOW_P (it
->f
))
4971 #ifdef HAVE_WINDOW_SYSTEM
4972 value
= XCAR (XCDR (spec
));
4973 if (NUMBERP (value
))
4975 struct face
*face
= FACE_FROM_ID (it
->f
, it
->face_id
);
4976 it
->voffset
= - (XFLOATINT (value
)
4977 * (FONT_HEIGHT (face
->font
)));
4979 #endif /* HAVE_WINDOW_SYSTEM */
4985 /* Don't handle the other kinds of display specifications
4986 inside a string that we got from a `display' property. */
4987 if (it
&& it
->string_from_display_prop_p
)
4990 /* Characters having this form of property are not displayed, so
4991 we have to find the end of the property. */
4994 start_pos
= *position
;
4995 *position
= display_prop_end (it
, object
, start_pos
);
4999 /* Stop the scan at that end position--we assume that all
5000 text properties change there. */
5002 it
->stop_charpos
= position
->charpos
;
5004 /* Handle `(left-fringe BITMAP [FACE])'
5005 and `(right-fringe BITMAP [FACE])'. */
5007 && (EQ (XCAR (spec
), Qleft_fringe
)
5008 || EQ (XCAR (spec
), Qright_fringe
))
5009 && CONSP (XCDR (spec
)))
5015 if (!FRAME_WINDOW_P (it
->f
))
5016 /* If we return here, POSITION has been advanced
5017 across the text with this property. */
5019 /* Synchronize the bidi iterator with POSITION. This is
5020 needed because we are not going to push the iterator
5021 on behalf of this display property, so there will be
5022 no pop_it call to do this synchronization for us. */
5025 it
->position
= *position
;
5026 iterate_out_of_display_property (it
);
5027 *position
= it
->position
;
5029 /* If we were to display this fringe bitmap,
5030 next_element_from_image would have reset this flag.
5031 Do the same, to avoid affecting overlays that
5033 it
->ignore_overlay_strings_at_pos_p
= 0;
5037 else if (!frame_window_p
)
5040 #ifdef HAVE_WINDOW_SYSTEM
5041 value
= XCAR (XCDR (spec
));
5042 if (!SYMBOLP (value
)
5043 || !(fringe_bitmap
= lookup_fringe_bitmap (value
)))
5044 /* If we return here, POSITION has been advanced
5045 across the text with this property. */
5047 if (it
&& it
->bidi_p
)
5049 it
->position
= *position
;
5050 iterate_out_of_display_property (it
);
5051 *position
= it
->position
;
5054 /* Reset this flag like next_element_from_image would. */
5055 it
->ignore_overlay_strings_at_pos_p
= 0;
5061 int face_id
= lookup_basic_face (it
->f
, DEFAULT_FACE_ID
);
5063 if (CONSP (XCDR (XCDR (spec
))))
5065 Lisp_Object face_name
= XCAR (XCDR (XCDR (spec
)));
5066 int face_id2
= lookup_derived_face (it
->f
, face_name
,
5072 /* Save current settings of IT so that we can restore them
5073 when we are finished with the glyph property value. */
5074 push_it (it
, position
);
5076 it
->area
= TEXT_AREA
;
5077 it
->what
= IT_IMAGE
;
5078 it
->image_id
= -1; /* no image */
5079 it
->position
= start_pos
;
5080 it
->object
= NILP (object
) ? it
->w
->contents
: object
;
5081 it
->method
= GET_FROM_IMAGE
;
5082 it
->from_overlay
= Qnil
;
5083 it
->face_id
= face_id
;
5084 it
->from_disp_prop_p
= true;
5086 /* Say that we haven't consumed the characters with
5087 `display' property yet. The call to pop_it in
5088 set_iterator_to_next will clean this up. */
5089 *position
= start_pos
;
5091 if (EQ (XCAR (spec
), Qleft_fringe
))
5093 it
->left_user_fringe_bitmap
= fringe_bitmap
;
5094 it
->left_user_fringe_face_id
= face_id
;
5098 it
->right_user_fringe_bitmap
= fringe_bitmap
;
5099 it
->right_user_fringe_face_id
= face_id
;
5102 #endif /* HAVE_WINDOW_SYSTEM */
5106 /* Prepare to handle `((margin left-margin) ...)',
5107 `((margin right-margin) ...)' and `((margin nil) ...)'
5108 prefixes for display specifications. */
5109 location
= Qunbound
;
5110 if (CONSP (spec
) && CONSP (XCAR (spec
)))
5114 value
= XCDR (spec
);
5116 value
= XCAR (value
);
5119 if (EQ (XCAR (tem
), Qmargin
)
5120 && (tem
= XCDR (tem
),
5121 tem
= CONSP (tem
) ? XCAR (tem
) : Qnil
,
5123 || EQ (tem
, Qleft_margin
)
5124 || EQ (tem
, Qright_margin
))))
5128 if (EQ (location
, Qunbound
))
5134 /* After this point, VALUE is the property after any
5135 margin prefix has been stripped. It must be a string,
5136 an image specification, or `(space ...)'.
5138 LOCATION specifies where to display: `left-margin',
5139 `right-margin' or nil. */
5141 valid_p
= (STRINGP (value
)
5142 #ifdef HAVE_WINDOW_SYSTEM
5143 || ((it
? FRAME_WINDOW_P (it
->f
) : frame_window_p
)
5144 && valid_image_p (value
))
5145 #endif /* not HAVE_WINDOW_SYSTEM */
5146 || (CONSP (value
) && EQ (XCAR (value
), Qspace
))
5147 #ifdef HAVE_XWIDGETS
5148 || valid_xwidget_spec_p(value
)
5152 if (valid_p
&& !display_replaced_p
)
5158 /* Callers need to know whether the display spec is any kind
5159 of `(space ...)' spec that is about to affect text-area
5161 if (CONSP (value
) && EQ (XCAR (value
), Qspace
) && NILP (location
))
5166 /* Save current settings of IT so that we can restore them
5167 when we are finished with the glyph property value. */
5168 push_it (it
, position
);
5169 it
->from_overlay
= overlay
;
5170 it
->from_disp_prop_p
= true;
5172 if (NILP (location
))
5173 it
->area
= TEXT_AREA
;
5174 else if (EQ (location
, Qleft_margin
))
5175 it
->area
= LEFT_MARGIN_AREA
;
5177 it
->area
= RIGHT_MARGIN_AREA
;
5179 if (STRINGP (value
))
5182 it
->multibyte_p
= STRING_MULTIBYTE (it
->string
);
5183 it
->current
.overlay_string_index
= -1;
5184 IT_STRING_CHARPOS (*it
) = IT_STRING_BYTEPOS (*it
) = 0;
5185 it
->end_charpos
= it
->string_nchars
= SCHARS (it
->string
);
5186 it
->method
= GET_FROM_STRING
;
5187 it
->stop_charpos
= 0;
5189 it
->base_level_stop
= 0;
5190 it
->string_from_display_prop_p
= true;
5191 /* Say that we haven't consumed the characters with
5192 `display' property yet. The call to pop_it in
5193 set_iterator_to_next will clean this up. */
5194 if (BUFFERP (object
))
5195 *position
= start_pos
;
5197 /* Force paragraph direction to be that of the parent
5198 object. If the parent object's paragraph direction is
5199 not yet determined, default to L2R. */
5200 if (it
->bidi_p
&& it
->bidi_it
.paragraph_dir
== R2L
)
5201 it
->paragraph_embedding
= it
->bidi_it
.paragraph_dir
;
5203 it
->paragraph_embedding
= L2R
;
5205 /* Set up the bidi iterator for this display string. */
5208 it
->bidi_it
.string
.lstring
= it
->string
;
5209 it
->bidi_it
.string
.s
= NULL
;
5210 it
->bidi_it
.string
.schars
= it
->end_charpos
;
5211 it
->bidi_it
.string
.bufpos
= bufpos
;
5212 it
->bidi_it
.string
.from_disp_str
= 1;
5213 it
->bidi_it
.string
.unibyte
= !it
->multibyte_p
;
5214 it
->bidi_it
.w
= it
->w
;
5215 bidi_init_it (0, 0, FRAME_WINDOW_P (it
->f
), &it
->bidi_it
);
5218 else if (CONSP (value
) && EQ (XCAR (value
), Qspace
))
5220 it
->method
= GET_FROM_STRETCH
;
5222 *position
= it
->position
= start_pos
;
5223 retval
= 1 + (it
->area
== TEXT_AREA
);
5225 #ifdef HAVE_XWIDGETS
5226 else if (valid_xwidget_spec_p(value
))
5228 //printf("handle_single_display_spec: im an xwidget!!\n");
5229 it
->what
= IT_XWIDGET
;
5230 it
->method
= GET_FROM_XWIDGET
;
5231 it
->position
= start_pos
;
5232 it
->object
= NILP (object
) ? it
->w
->contents
: object
;
5233 *position
= start_pos
;
5235 it
->xwidget
= lookup_xwidget(value
);
5238 #ifdef HAVE_WINDOW_SYSTEM
5241 it
->what
= IT_IMAGE
;
5242 it
->image_id
= lookup_image (it
->f
, value
);
5243 it
->position
= start_pos
;
5244 it
->object
= NILP (object
) ? it
->w
->contents
: object
;
5245 it
->method
= GET_FROM_IMAGE
;
5247 /* Say that we haven't consumed the characters with
5248 `display' property yet. The call to pop_it in
5249 set_iterator_to_next will clean this up. */
5250 *position
= start_pos
;
5252 #endif /* HAVE_WINDOW_SYSTEM */
5257 /* Invalid property or property not supported. Restore
5258 POSITION to what it was before. */
5259 *position
= start_pos
;
5263 /* Check if PROP is a display property value whose text should be
5264 treated as intangible. OVERLAY is the overlay from which PROP
5265 came, or nil if it came from a text property. CHARPOS and BYTEPOS
5266 specify the buffer position covered by PROP. */
5269 display_prop_intangible_p (Lisp_Object prop
, Lisp_Object overlay
,
5270 ptrdiff_t charpos
, ptrdiff_t bytepos
)
5272 int frame_window_p
= FRAME_WINDOW_P (XFRAME (selected_frame
));
5273 struct text_pos position
;
5275 SET_TEXT_POS (position
, charpos
, bytepos
);
5276 return handle_display_spec (NULL
, prop
, Qnil
, overlay
,
5277 &position
, charpos
, frame_window_p
);
5281 /* Return 1 if PROP is a display sub-property value containing STRING.
5283 Implementation note: this and the following function are really
5284 special cases of handle_display_spec and
5285 handle_single_display_spec, and should ideally use the same code.
5286 Until they do, these two pairs must be consistent and must be
5287 modified in sync. */
5290 single_display_spec_string_p (Lisp_Object prop
, Lisp_Object string
)
5292 if (EQ (string
, prop
))
5295 /* Skip over `when FORM'. */
5296 if (CONSP (prop
) && EQ (XCAR (prop
), Qwhen
))
5301 /* Actually, the condition following `when' should be eval'ed,
5302 like handle_single_display_spec does, and we should return
5303 zero if it evaluates to nil. However, this function is
5304 called only when the buffer was already displayed and some
5305 glyph in the glyph matrix was found to come from a display
5306 string. Therefore, the condition was already evaluated, and
5307 the result was non-nil, otherwise the display string wouldn't
5308 have been displayed and we would have never been called for
5309 this property. Thus, we can skip the evaluation and assume
5310 its result is non-nil. */
5315 /* Skip over `margin LOCATION'. */
5316 if (EQ (XCAR (prop
), Qmargin
))
5327 return EQ (prop
, string
) || (CONSP (prop
) && EQ (XCAR (prop
), string
));
5331 /* Return 1 if STRING appears in the `display' property PROP. */
5334 display_prop_string_p (Lisp_Object prop
, Lisp_Object string
)
5337 && !EQ (XCAR (prop
), Qwhen
)
5338 && !(CONSP (XCAR (prop
)) && EQ (Qmargin
, XCAR (XCAR (prop
)))))
5340 /* A list of sub-properties. */
5341 while (CONSP (prop
))
5343 if (single_display_spec_string_p (XCAR (prop
), string
))
5348 else if (VECTORP (prop
))
5350 /* A vector of sub-properties. */
5352 for (i
= 0; i
< ASIZE (prop
); ++i
)
5353 if (single_display_spec_string_p (AREF (prop
, i
), string
))
5357 return single_display_spec_string_p (prop
, string
);
5362 /* Look for STRING in overlays and text properties in the current
5363 buffer, between character positions FROM and TO (excluding TO).
5364 BACK_P non-zero means look back (in this case, TO is supposed to be
5366 Value is the first character position where STRING was found, or
5367 zero if it wasn't found before hitting TO.
5369 This function may only use code that doesn't eval because it is
5370 called asynchronously from note_mouse_highlight. */
5373 string_buffer_position_lim (Lisp_Object string
,
5374 ptrdiff_t from
, ptrdiff_t to
, int back_p
)
5376 Lisp_Object limit
, prop
, pos
;
5379 pos
= make_number (max (from
, BEGV
));
5381 if (!back_p
) /* looking forward */
5383 limit
= make_number (min (to
, ZV
));
5384 while (!found
&& !EQ (pos
, limit
))
5386 prop
= Fget_char_property (pos
, Qdisplay
, Qnil
);
5387 if (!NILP (prop
) && display_prop_string_p (prop
, string
))
5390 pos
= Fnext_single_char_property_change (pos
, Qdisplay
, Qnil
,
5394 else /* looking back */
5396 limit
= make_number (max (to
, BEGV
));
5397 while (!found
&& !EQ (pos
, limit
))
5399 prop
= Fget_char_property (pos
, Qdisplay
, Qnil
);
5400 if (!NILP (prop
) && display_prop_string_p (prop
, string
))
5403 pos
= Fprevious_single_char_property_change (pos
, Qdisplay
, Qnil
,
5408 return found
? XINT (pos
) : 0;
5411 /* Determine which buffer position in current buffer STRING comes from.
5412 AROUND_CHARPOS is an approximate position where it could come from.
5413 Value is the buffer position or 0 if it couldn't be determined.
5415 This function is necessary because we don't record buffer positions
5416 in glyphs generated from strings (to keep struct glyph small).
5417 This function may only use code that doesn't eval because it is
5418 called asynchronously from note_mouse_highlight. */
5421 string_buffer_position (Lisp_Object string
, ptrdiff_t around_charpos
)
5423 const int MAX_DISTANCE
= 1000;
5424 ptrdiff_t found
= string_buffer_position_lim (string
, around_charpos
,
5425 around_charpos
+ MAX_DISTANCE
,
5429 found
= string_buffer_position_lim (string
, around_charpos
,
5430 around_charpos
- MAX_DISTANCE
, 1);
5436 /***********************************************************************
5437 `composition' property
5438 ***********************************************************************/
5440 /* Set up iterator IT from `composition' property at its current
5441 position. Called from handle_stop. */
5443 static enum prop_handled
5444 handle_composition_prop (struct it
*it
)
5446 Lisp_Object prop
, string
;
5447 ptrdiff_t pos
, pos_byte
, start
, end
;
5449 if (STRINGP (it
->string
))
5453 pos
= IT_STRING_CHARPOS (*it
);
5454 pos_byte
= IT_STRING_BYTEPOS (*it
);
5455 string
= it
->string
;
5456 s
= SDATA (string
) + pos_byte
;
5457 it
->c
= STRING_CHAR (s
);
5461 pos
= IT_CHARPOS (*it
);
5462 pos_byte
= IT_BYTEPOS (*it
);
5464 it
->c
= FETCH_CHAR (pos_byte
);
5467 /* If there's a valid composition and point is not inside of the
5468 composition (in the case that the composition is from the current
5469 buffer), draw a glyph composed from the composition components. */
5470 if (find_composition (pos
, -1, &start
, &end
, &prop
, string
)
5471 && composition_valid_p (start
, end
, prop
)
5472 && (STRINGP (it
->string
) || (PT
<= start
|| PT
>= end
)))
5475 /* As we can't handle this situation (perhaps font-lock added
5476 a new composition), we just return here hoping that next
5477 redisplay will detect this composition much earlier. */
5478 return HANDLED_NORMALLY
;
5481 if (STRINGP (it
->string
))
5482 pos_byte
= string_char_to_byte (it
->string
, start
);
5484 pos_byte
= CHAR_TO_BYTE (start
);
5486 it
->cmp_it
.id
= get_composition_id (start
, pos_byte
, end
- start
,
5489 if (it
->cmp_it
.id
>= 0)
5492 it
->cmp_it
.nchars
= COMPOSITION_LENGTH (prop
);
5493 it
->cmp_it
.nglyphs
= -1;
5497 return HANDLED_NORMALLY
;
5502 /***********************************************************************
5504 ***********************************************************************/
5506 /* The following structure is used to record overlay strings for
5507 later sorting in load_overlay_strings. */
5509 struct overlay_entry
5511 Lisp_Object overlay
;
5518 /* Set up iterator IT from overlay strings at its current position.
5519 Called from handle_stop. */
5521 static enum prop_handled
5522 handle_overlay_change (struct it
*it
)
5524 if (!STRINGP (it
->string
) && get_overlay_strings (it
, 0))
5525 return HANDLED_RECOMPUTE_PROPS
;
5527 return HANDLED_NORMALLY
;
5531 /* Set up the next overlay string for delivery by IT, if there is an
5532 overlay string to deliver. Called by set_iterator_to_next when the
5533 end of the current overlay string is reached. If there are more
5534 overlay strings to display, IT->string and
5535 IT->current.overlay_string_index are set appropriately here.
5536 Otherwise IT->string is set to nil. */
5539 next_overlay_string (struct it
*it
)
5541 ++it
->current
.overlay_string_index
;
5542 if (it
->current
.overlay_string_index
== it
->n_overlay_strings
)
5544 /* No more overlay strings. Restore IT's settings to what
5545 they were before overlay strings were processed, and
5546 continue to deliver from current_buffer. */
5548 it
->ellipsis_p
= (it
->stack
[it
->sp
- 1].display_ellipsis_p
!= 0);
5551 || (NILP (it
->string
)
5552 && it
->method
== GET_FROM_BUFFER
5553 && it
->stop_charpos
>= BEGV
5554 && it
->stop_charpos
<= it
->end_charpos
));
5555 it
->current
.overlay_string_index
= -1;
5556 it
->n_overlay_strings
= 0;
5557 it
->overlay_strings_charpos
= -1;
5558 /* If there's an empty display string on the stack, pop the
5559 stack, to resync the bidi iterator with IT's position. Such
5560 empty strings are pushed onto the stack in
5561 get_overlay_strings_1. */
5562 if (it
->sp
> 0 && STRINGP (it
->string
) && !SCHARS (it
->string
))
5565 /* If we're at the end of the buffer, record that we have
5566 processed the overlay strings there already, so that
5567 next_element_from_buffer doesn't try it again. */
5568 if (NILP (it
->string
) && IT_CHARPOS (*it
) >= it
->end_charpos
)
5569 it
->overlay_strings_at_end_processed_p
= true;
5573 /* There are more overlay strings to process. If
5574 IT->current.overlay_string_index has advanced to a position
5575 where we must load IT->overlay_strings with more strings, do
5576 it. We must load at the IT->overlay_strings_charpos where
5577 IT->n_overlay_strings was originally computed; when invisible
5578 text is present, this might not be IT_CHARPOS (Bug#7016). */
5579 int i
= it
->current
.overlay_string_index
% OVERLAY_STRING_CHUNK_SIZE
;
5581 if (it
->current
.overlay_string_index
&& i
== 0)
5582 load_overlay_strings (it
, it
->overlay_strings_charpos
);
5584 /* Initialize IT to deliver display elements from the overlay
5586 it
->string
= it
->overlay_strings
[i
];
5587 it
->multibyte_p
= STRING_MULTIBYTE (it
->string
);
5588 SET_TEXT_POS (it
->current
.string_pos
, 0, 0);
5589 it
->method
= GET_FROM_STRING
;
5590 it
->stop_charpos
= 0;
5591 it
->end_charpos
= SCHARS (it
->string
);
5592 if (it
->cmp_it
.stop_pos
>= 0)
5593 it
->cmp_it
.stop_pos
= 0;
5595 it
->base_level_stop
= 0;
5597 /* Set up the bidi iterator for this overlay string. */
5600 it
->bidi_it
.string
.lstring
= it
->string
;
5601 it
->bidi_it
.string
.s
= NULL
;
5602 it
->bidi_it
.string
.schars
= SCHARS (it
->string
);
5603 it
->bidi_it
.string
.bufpos
= it
->overlay_strings_charpos
;
5604 it
->bidi_it
.string
.from_disp_str
= it
->string_from_display_prop_p
;
5605 it
->bidi_it
.string
.unibyte
= !it
->multibyte_p
;
5606 it
->bidi_it
.w
= it
->w
;
5607 bidi_init_it (0, 0, FRAME_WINDOW_P (it
->f
), &it
->bidi_it
);
5615 /* Compare two overlay_entry structures E1 and E2. Used as a
5616 comparison function for qsort in load_overlay_strings. Overlay
5617 strings for the same position are sorted so that
5619 1. All after-strings come in front of before-strings, except
5620 when they come from the same overlay.
5622 2. Within after-strings, strings are sorted so that overlay strings
5623 from overlays with higher priorities come first.
5625 2. Within before-strings, strings are sorted so that overlay
5626 strings from overlays with higher priorities come last.
5628 Value is analogous to strcmp. */
5632 compare_overlay_entries (const void *e1
, const void *e2
)
5634 struct overlay_entry
const *entry1
= e1
;
5635 struct overlay_entry
const *entry2
= e2
;
5638 if (entry1
->after_string_p
!= entry2
->after_string_p
)
5640 /* Let after-strings appear in front of before-strings if
5641 they come from different overlays. */
5642 if (EQ (entry1
->overlay
, entry2
->overlay
))
5643 result
= entry1
->after_string_p
? 1 : -1;
5645 result
= entry1
->after_string_p
? -1 : 1;
5647 else if (entry1
->priority
!= entry2
->priority
)
5649 if (entry1
->after_string_p
)
5650 /* After-strings sorted in order of decreasing priority. */
5651 result
= entry2
->priority
< entry1
->priority
? -1 : 1;
5653 /* Before-strings sorted in order of increasing priority. */
5654 result
= entry1
->priority
< entry2
->priority
? -1 : 1;
5663 /* Load the vector IT->overlay_strings with overlay strings from IT's
5664 current buffer position, or from CHARPOS if that is > 0. Set
5665 IT->n_overlays to the total number of overlay strings found.
5667 Overlay strings are processed OVERLAY_STRING_CHUNK_SIZE strings at
5668 a time. On entry into load_overlay_strings,
5669 IT->current.overlay_string_index gives the number of overlay
5670 strings that have already been loaded by previous calls to this
5673 IT->add_overlay_start contains an additional overlay start
5674 position to consider for taking overlay strings from, if non-zero.
5675 This position comes into play when the overlay has an `invisible'
5676 property, and both before and after-strings. When we've skipped to
5677 the end of the overlay, because of its `invisible' property, we
5678 nevertheless want its before-string to appear.
5679 IT->add_overlay_start will contain the overlay start position
5682 Overlay strings are sorted so that after-string strings come in
5683 front of before-string strings. Within before and after-strings,
5684 strings are sorted by overlay priority. See also function
5685 compare_overlay_entries. */
5688 load_overlay_strings (struct it
*it
, ptrdiff_t charpos
)
5690 Lisp_Object overlay
, window
, str
, invisible
;
5691 struct Lisp_Overlay
*ov
;
5692 ptrdiff_t start
, end
;
5693 ptrdiff_t n
= 0, i
, j
;
5695 struct overlay_entry entriesbuf
[20];
5696 ptrdiff_t size
= ARRAYELTS (entriesbuf
);
5697 struct overlay_entry
*entries
= entriesbuf
;
5701 charpos
= IT_CHARPOS (*it
);
5703 /* Append the overlay string STRING of overlay OVERLAY to vector
5704 `entries' which has size `size' and currently contains `n'
5705 elements. AFTER_P non-zero means STRING is an after-string of
5707 #define RECORD_OVERLAY_STRING(OVERLAY, STRING, AFTER_P) \
5710 Lisp_Object priority; \
5714 struct overlay_entry *old = entries; \
5715 SAFE_NALLOCA (entries, 2, size); \
5716 memcpy (entries, old, size * sizeof *entries); \
5720 entries[n].string = (STRING); \
5721 entries[n].overlay = (OVERLAY); \
5722 priority = Foverlay_get ((OVERLAY), Qpriority); \
5723 entries[n].priority = INTEGERP (priority) ? XINT (priority) : 0; \
5724 entries[n].after_string_p = (AFTER_P); \
5729 /* Process overlay before the overlay center. */
5730 for (ov
= current_buffer
->overlays_before
; ov
; ov
= ov
->next
)
5732 XSETMISC (overlay
, ov
);
5733 eassert (OVERLAYP (overlay
));
5734 start
= OVERLAY_POSITION (OVERLAY_START (overlay
));
5735 end
= OVERLAY_POSITION (OVERLAY_END (overlay
));
5740 /* Skip this overlay if it doesn't start or end at IT's current
5742 if (end
!= charpos
&& start
!= charpos
)
5745 /* Skip this overlay if it doesn't apply to IT->w. */
5746 window
= Foverlay_get (overlay
, Qwindow
);
5747 if (WINDOWP (window
) && XWINDOW (window
) != it
->w
)
5750 /* If the text ``under'' the overlay is invisible, both before-
5751 and after-strings from this overlay are visible; start and
5752 end position are indistinguishable. */
5753 invisible
= Foverlay_get (overlay
, Qinvisible
);
5754 invis_p
= TEXT_PROP_MEANS_INVISIBLE (invisible
);
5756 /* If overlay has a non-empty before-string, record it. */
5757 if ((start
== charpos
|| (end
== charpos
&& invis_p
))
5758 && (str
= Foverlay_get (overlay
, Qbefore_string
), STRINGP (str
))
5760 RECORD_OVERLAY_STRING (overlay
, str
, 0);
5762 /* If overlay has a non-empty after-string, record it. */
5763 if ((end
== charpos
|| (start
== charpos
&& invis_p
))
5764 && (str
= Foverlay_get (overlay
, Qafter_string
), STRINGP (str
))
5766 RECORD_OVERLAY_STRING (overlay
, str
, 1);
5769 /* Process overlays after the overlay center. */
5770 for (ov
= current_buffer
->overlays_after
; ov
; ov
= ov
->next
)
5772 XSETMISC (overlay
, ov
);
5773 eassert (OVERLAYP (overlay
));
5774 start
= OVERLAY_POSITION (OVERLAY_START (overlay
));
5775 end
= OVERLAY_POSITION (OVERLAY_END (overlay
));
5777 if (start
> charpos
)
5780 /* Skip this overlay if it doesn't start or end at IT's current
5782 if (end
!= charpos
&& start
!= charpos
)
5785 /* Skip this overlay if it doesn't apply to IT->w. */
5786 window
= Foverlay_get (overlay
, Qwindow
);
5787 if (WINDOWP (window
) && XWINDOW (window
) != it
->w
)
5790 /* If the text ``under'' the overlay is invisible, it has a zero
5791 dimension, and both before- and after-strings apply. */
5792 invisible
= Foverlay_get (overlay
, Qinvisible
);
5793 invis_p
= TEXT_PROP_MEANS_INVISIBLE (invisible
);
5795 /* If overlay has a non-empty before-string, record it. */
5796 if ((start
== charpos
|| (end
== charpos
&& invis_p
))
5797 && (str
= Foverlay_get (overlay
, Qbefore_string
), STRINGP (str
))
5799 RECORD_OVERLAY_STRING (overlay
, str
, 0);
5801 /* If overlay has a non-empty after-string, record it. */
5802 if ((end
== charpos
|| (start
== charpos
&& invis_p
))
5803 && (str
= Foverlay_get (overlay
, Qafter_string
), STRINGP (str
))
5805 RECORD_OVERLAY_STRING (overlay
, str
, 1);
5808 #undef RECORD_OVERLAY_STRING
5812 qsort (entries
, n
, sizeof *entries
, compare_overlay_entries
);
5814 /* Record number of overlay strings, and where we computed it. */
5815 it
->n_overlay_strings
= n
;
5816 it
->overlay_strings_charpos
= charpos
;
5818 /* IT->current.overlay_string_index is the number of overlay strings
5819 that have already been consumed by IT. Copy some of the
5820 remaining overlay strings to IT->overlay_strings. */
5822 j
= it
->current
.overlay_string_index
;
5823 while (i
< OVERLAY_STRING_CHUNK_SIZE
&& j
< n
)
5825 it
->overlay_strings
[i
] = entries
[j
].string
;
5826 it
->string_overlays
[i
++] = entries
[j
++].overlay
;
5834 /* Get the first chunk of overlay strings at IT's current buffer
5835 position, or at CHARPOS if that is > 0. Value is non-zero if at
5836 least one overlay string was found. */
5839 get_overlay_strings_1 (struct it
*it
, ptrdiff_t charpos
, int compute_stop_p
)
5841 /* Get the first OVERLAY_STRING_CHUNK_SIZE overlay strings to
5842 process. This fills IT->overlay_strings with strings, and sets
5843 IT->n_overlay_strings to the total number of strings to process.
5844 IT->pos.overlay_string_index has to be set temporarily to zero
5845 because load_overlay_strings needs this; it must be set to -1
5846 when no overlay strings are found because a zero value would
5847 indicate a position in the first overlay string. */
5848 it
->current
.overlay_string_index
= 0;
5849 load_overlay_strings (it
, charpos
);
5851 /* If we found overlay strings, set up IT to deliver display
5852 elements from the first one. Otherwise set up IT to deliver
5853 from current_buffer. */
5854 if (it
->n_overlay_strings
)
5856 /* Make sure we know settings in current_buffer, so that we can
5857 restore meaningful values when we're done with the overlay
5860 compute_stop_pos (it
);
5861 eassert (it
->face_id
>= 0);
5863 /* Save IT's settings. They are restored after all overlay
5864 strings have been processed. */
5865 eassert (!compute_stop_p
|| it
->sp
== 0);
5867 /* When called from handle_stop, there might be an empty display
5868 string loaded. In that case, don't bother saving it. But
5869 don't use this optimization with the bidi iterator, since we
5870 need the corresponding pop_it call to resync the bidi
5871 iterator's position with IT's position, after we are done
5872 with the overlay strings. (The corresponding call to pop_it
5873 in case of an empty display string is in
5874 next_overlay_string.) */
5876 && STRINGP (it
->string
) && !SCHARS (it
->string
)))
5879 /* Set up IT to deliver display elements from the first overlay
5881 IT_STRING_CHARPOS (*it
) = IT_STRING_BYTEPOS (*it
) = 0;
5882 it
->string
= it
->overlay_strings
[0];
5883 it
->from_overlay
= Qnil
;
5884 it
->stop_charpos
= 0;
5885 eassert (STRINGP (it
->string
));
5886 it
->end_charpos
= SCHARS (it
->string
);
5888 it
->base_level_stop
= 0;
5889 it
->multibyte_p
= STRING_MULTIBYTE (it
->string
);
5890 it
->method
= GET_FROM_STRING
;
5891 it
->from_disp_prop_p
= 0;
5893 /* Force paragraph direction to be that of the parent
5895 if (it
->bidi_p
&& it
->bidi_it
.paragraph_dir
== R2L
)
5896 it
->paragraph_embedding
= it
->bidi_it
.paragraph_dir
;
5898 it
->paragraph_embedding
= L2R
;
5900 /* Set up the bidi iterator for this overlay string. */
5903 ptrdiff_t pos
= (charpos
> 0 ? charpos
: IT_CHARPOS (*it
));
5905 it
->bidi_it
.string
.lstring
= it
->string
;
5906 it
->bidi_it
.string
.s
= NULL
;
5907 it
->bidi_it
.string
.schars
= SCHARS (it
->string
);
5908 it
->bidi_it
.string
.bufpos
= pos
;
5909 it
->bidi_it
.string
.from_disp_str
= it
->string_from_display_prop_p
;
5910 it
->bidi_it
.string
.unibyte
= !it
->multibyte_p
;
5911 it
->bidi_it
.w
= it
->w
;
5912 bidi_init_it (0, 0, FRAME_WINDOW_P (it
->f
), &it
->bidi_it
);
5917 it
->current
.overlay_string_index
= -1;
5922 get_overlay_strings (struct it
*it
, ptrdiff_t charpos
)
5925 it
->method
= GET_FROM_BUFFER
;
5927 (void) get_overlay_strings_1 (it
, charpos
, 1);
5931 /* Value is non-zero if we found at least one overlay string. */
5932 return STRINGP (it
->string
);
5937 /***********************************************************************
5938 Saving and restoring state
5939 ***********************************************************************/
5941 /* Save current settings of IT on IT->stack. Called, for example,
5942 before setting up IT for an overlay string, to be able to restore
5943 IT's settings to what they were after the overlay string has been
5944 processed. If POSITION is non-NULL, it is the position to save on
5945 the stack instead of IT->position. */
5948 push_it (struct it
*it
, struct text_pos
*position
)
5950 struct iterator_stack_entry
*p
;
5952 eassert (it
->sp
< IT_STACK_SIZE
);
5953 p
= it
->stack
+ it
->sp
;
5955 p
->stop_charpos
= it
->stop_charpos
;
5956 p
->prev_stop
= it
->prev_stop
;
5957 p
->base_level_stop
= it
->base_level_stop
;
5958 p
->cmp_it
= it
->cmp_it
;
5959 eassert (it
->face_id
>= 0);
5960 p
->face_id
= it
->face_id
;
5961 p
->string
= it
->string
;
5962 p
->method
= it
->method
;
5963 p
->from_overlay
= it
->from_overlay
;
5966 case GET_FROM_IMAGE
:
5967 p
->u
.image
.object
= it
->object
;
5968 p
->u
.image
.image_id
= it
->image_id
;
5969 p
->u
.image
.slice
= it
->slice
;
5971 case GET_FROM_STRETCH
:
5972 p
->u
.stretch
.object
= it
->object
;
5974 #ifdef HAVE_XWIDGETS
5975 case GET_FROM_XWIDGET
:
5976 p
->u
.xwidget
.object
= it
->object
;
5980 p
->position
= position
? *position
: it
->position
;
5981 p
->current
= it
->current
;
5982 p
->end_charpos
= it
->end_charpos
;
5983 p
->string_nchars
= it
->string_nchars
;
5985 p
->multibyte_p
= it
->multibyte_p
;
5986 p
->avoid_cursor_p
= it
->avoid_cursor_p
;
5987 p
->space_width
= it
->space_width
;
5988 p
->font_height
= it
->font_height
;
5989 p
->voffset
= it
->voffset
;
5990 p
->string_from_display_prop_p
= it
->string_from_display_prop_p
;
5991 p
->string_from_prefix_prop_p
= it
->string_from_prefix_prop_p
;
5992 p
->display_ellipsis_p
= 0;
5993 p
->line_wrap
= it
->line_wrap
;
5994 p
->bidi_p
= it
->bidi_p
;
5995 p
->paragraph_embedding
= it
->paragraph_embedding
;
5996 p
->from_disp_prop_p
= it
->from_disp_prop_p
;
5999 /* Save the state of the bidi iterator as well. */
6001 bidi_push_it (&it
->bidi_it
);
6005 iterate_out_of_display_property (struct it
*it
)
6007 int buffer_p
= !STRINGP (it
->string
);
6008 ptrdiff_t eob
= (buffer_p
? ZV
: it
->end_charpos
);
6009 ptrdiff_t bob
= (buffer_p
? BEGV
: 0);
6011 eassert (eob
>= CHARPOS (it
->position
) && CHARPOS (it
->position
) >= bob
);
6013 /* Maybe initialize paragraph direction. If we are at the beginning
6014 of a new paragraph, next_element_from_buffer may not have a
6015 chance to do that. */
6016 if (it
->bidi_it
.first_elt
&& it
->bidi_it
.charpos
< eob
)
6017 bidi_paragraph_init (it
->paragraph_embedding
, &it
->bidi_it
, 1);
6018 /* prev_stop can be zero, so check against BEGV as well. */
6019 while (it
->bidi_it
.charpos
>= bob
6020 && it
->prev_stop
<= it
->bidi_it
.charpos
6021 && it
->bidi_it
.charpos
< CHARPOS (it
->position
)
6022 && it
->bidi_it
.charpos
< eob
)
6023 bidi_move_to_visually_next (&it
->bidi_it
);
6024 /* Record the stop_pos we just crossed, for when we cross it
6026 if (it
->bidi_it
.charpos
> CHARPOS (it
->position
))
6027 it
->prev_stop
= CHARPOS (it
->position
);
6028 /* If we ended up not where pop_it put us, resync IT's
6029 positional members with the bidi iterator. */
6030 if (it
->bidi_it
.charpos
!= CHARPOS (it
->position
))
6031 SET_TEXT_POS (it
->position
, it
->bidi_it
.charpos
, it
->bidi_it
.bytepos
);
6033 it
->current
.pos
= it
->position
;
6035 it
->current
.string_pos
= it
->position
;
6038 /* Restore IT's settings from IT->stack. Called, for example, when no
6039 more overlay strings must be processed, and we return to delivering
6040 display elements from a buffer, or when the end of a string from a
6041 `display' property is reached and we return to delivering display
6042 elements from an overlay string, or from a buffer. */
6045 pop_it (struct it
*it
)
6047 struct iterator_stack_entry
*p
;
6048 int from_display_prop
= it
->from_disp_prop_p
;
6050 eassert (it
->sp
> 0);
6052 p
= it
->stack
+ it
->sp
;
6053 it
->stop_charpos
= p
->stop_charpos
;
6054 it
->prev_stop
= p
->prev_stop
;
6055 it
->base_level_stop
= p
->base_level_stop
;
6056 it
->cmp_it
= p
->cmp_it
;
6057 it
->face_id
= p
->face_id
;
6058 it
->current
= p
->current
;
6059 it
->position
= p
->position
;
6060 it
->string
= p
->string
;
6061 it
->from_overlay
= p
->from_overlay
;
6062 if (NILP (it
->string
))
6063 SET_TEXT_POS (it
->current
.string_pos
, -1, -1);
6064 it
->method
= p
->method
;
6067 case GET_FROM_IMAGE
:
6068 it
->image_id
= p
->u
.image
.image_id
;
6069 it
->object
= p
->u
.image
.object
;
6070 it
->slice
= p
->u
.image
.slice
;
6072 #ifdef HAVE_XWIDGETS
6073 case GET_FROM_XWIDGET
:
6074 it
->object
= p
->u
.xwidget
.object
;
6077 case GET_FROM_STRETCH
:
6078 it
->object
= p
->u
.stretch
.object
;
6080 case GET_FROM_BUFFER
:
6081 it
->object
= it
->w
->contents
;
6083 case GET_FROM_STRING
:
6085 struct face
*face
= FACE_FROM_ID (it
->f
, it
->face_id
);
6087 /* Restore the face_box_p flag, since it could have been
6088 overwritten by the face of the object that we just finished
6091 it
->face_box_p
= face
->box
!= FACE_NO_BOX
;
6092 it
->object
= it
->string
;
6095 case GET_FROM_DISPLAY_VECTOR
:
6097 it
->method
= GET_FROM_C_STRING
;
6098 else if (STRINGP (it
->string
))
6099 it
->method
= GET_FROM_STRING
;
6102 it
->method
= GET_FROM_BUFFER
;
6103 it
->object
= it
->w
->contents
;
6106 it
->end_charpos
= p
->end_charpos
;
6107 it
->string_nchars
= p
->string_nchars
;
6109 it
->multibyte_p
= p
->multibyte_p
;
6110 it
->avoid_cursor_p
= p
->avoid_cursor_p
;
6111 it
->space_width
= p
->space_width
;
6112 it
->font_height
= p
->font_height
;
6113 it
->voffset
= p
->voffset
;
6114 it
->string_from_display_prop_p
= p
->string_from_display_prop_p
;
6115 it
->string_from_prefix_prop_p
= p
->string_from_prefix_prop_p
;
6116 it
->line_wrap
= p
->line_wrap
;
6117 it
->bidi_p
= p
->bidi_p
;
6118 it
->paragraph_embedding
= p
->paragraph_embedding
;
6119 it
->from_disp_prop_p
= p
->from_disp_prop_p
;
6122 bidi_pop_it (&it
->bidi_it
);
6123 /* Bidi-iterate until we get out of the portion of text, if any,
6124 covered by a `display' text property or by an overlay with
6125 `display' property. (We cannot just jump there, because the
6126 internal coherency of the bidi iterator state can not be
6127 preserved across such jumps.) We also must determine the
6128 paragraph base direction if the overlay we just processed is
6129 at the beginning of a new paragraph. */
6130 if (from_display_prop
6131 && (it
->method
== GET_FROM_BUFFER
|| it
->method
== GET_FROM_STRING
))
6132 iterate_out_of_display_property (it
);
6134 eassert ((BUFFERP (it
->object
)
6135 && IT_CHARPOS (*it
) == it
->bidi_it
.charpos
6136 && IT_BYTEPOS (*it
) == it
->bidi_it
.bytepos
)
6137 || (STRINGP (it
->object
)
6138 && IT_STRING_CHARPOS (*it
) == it
->bidi_it
.charpos
6139 && IT_STRING_BYTEPOS (*it
) == it
->bidi_it
.bytepos
)
6140 || (CONSP (it
->object
) && it
->method
== GET_FROM_STRETCH
));
6146 /***********************************************************************
6148 ***********************************************************************/
6150 /* Set IT's current position to the previous line start. */
6153 back_to_previous_line_start (struct it
*it
)
6155 ptrdiff_t cp
= IT_CHARPOS (*it
), bp
= IT_BYTEPOS (*it
);
6158 IT_CHARPOS (*it
) = find_newline_no_quit (cp
, bp
, -1, &IT_BYTEPOS (*it
));
6162 /* Move IT to the next line start.
6164 Value is non-zero if a newline was found. Set *SKIPPED_P to 1 if
6165 we skipped over part of the text (as opposed to moving the iterator
6166 continuously over the text). Otherwise, don't change the value
6169 If BIDI_IT_PREV is non-NULL, store into it the state of the bidi
6170 iterator on the newline, if it was found.
6172 Newlines may come from buffer text, overlay strings, or strings
6173 displayed via the `display' property. That's the reason we can't
6174 simply use find_newline_no_quit.
6176 Note that this function may not skip over invisible text that is so
6177 because of text properties and immediately follows a newline. If
6178 it would, function reseat_at_next_visible_line_start, when called
6179 from set_iterator_to_next, would effectively make invisible
6180 characters following a newline part of the wrong glyph row, which
6181 leads to wrong cursor motion. */
6184 forward_to_next_line_start (struct it
*it
, int *skipped_p
,
6185 struct bidi_it
*bidi_it_prev
)
6187 ptrdiff_t old_selective
;
6188 int newline_found_p
, n
;
6189 const int MAX_NEWLINE_DISTANCE
= 500;
6191 /* If already on a newline, just consume it to avoid unintended
6192 skipping over invisible text below. */
6193 if (it
->what
== IT_CHARACTER
6195 && CHARPOS (it
->position
) == IT_CHARPOS (*it
))
6197 if (it
->bidi_p
&& bidi_it_prev
)
6198 *bidi_it_prev
= it
->bidi_it
;
6199 set_iterator_to_next (it
, 0);
6204 /* Don't handle selective display in the following. It's (a)
6205 unnecessary because it's done by the caller, and (b) leads to an
6206 infinite recursion because next_element_from_ellipsis indirectly
6207 calls this function. */
6208 old_selective
= it
->selective
;
6211 /* Scan for a newline within MAX_NEWLINE_DISTANCE display elements
6212 from buffer text. */
6213 for (n
= newline_found_p
= 0;
6214 !newline_found_p
&& n
< MAX_NEWLINE_DISTANCE
;
6215 n
+= STRINGP (it
->string
) ? 0 : 1)
6217 if (!get_next_display_element (it
))
6219 newline_found_p
= it
->what
== IT_CHARACTER
&& it
->c
== '\n';
6220 if (newline_found_p
&& it
->bidi_p
&& bidi_it_prev
)
6221 *bidi_it_prev
= it
->bidi_it
;
6222 set_iterator_to_next (it
, 0);
6225 /* If we didn't find a newline near enough, see if we can use a
6227 if (!newline_found_p
)
6229 ptrdiff_t bytepos
, start
= IT_CHARPOS (*it
);
6230 ptrdiff_t limit
= find_newline_no_quit (start
, IT_BYTEPOS (*it
),
6234 eassert (!STRINGP (it
->string
));
6236 /* If there isn't any `display' property in sight, and no
6237 overlays, we can just use the position of the newline in
6239 if (it
->stop_charpos
>= limit
6240 || ((pos
= Fnext_single_property_change (make_number (start
),
6242 make_number (limit
)),
6244 && next_overlay_change (start
) == ZV
))
6248 IT_CHARPOS (*it
) = limit
;
6249 IT_BYTEPOS (*it
) = bytepos
;
6253 struct bidi_it bprev
;
6255 /* Help bidi.c avoid expensive searches for display
6256 properties and overlays, by telling it that there are
6257 none up to `limit'. */
6258 if (it
->bidi_it
.disp_pos
< limit
)
6260 it
->bidi_it
.disp_pos
= limit
;
6261 it
->bidi_it
.disp_prop
= 0;
6264 bprev
= it
->bidi_it
;
6265 bidi_move_to_visually_next (&it
->bidi_it
);
6266 } while (it
->bidi_it
.charpos
!= limit
);
6267 IT_CHARPOS (*it
) = limit
;
6268 IT_BYTEPOS (*it
) = it
->bidi_it
.bytepos
;
6270 *bidi_it_prev
= bprev
;
6272 *skipped_p
= newline_found_p
= true;
6276 while (get_next_display_element (it
)
6277 && !newline_found_p
)
6279 newline_found_p
= ITERATOR_AT_END_OF_LINE_P (it
);
6280 if (newline_found_p
&& it
->bidi_p
&& bidi_it_prev
)
6281 *bidi_it_prev
= it
->bidi_it
;
6282 set_iterator_to_next (it
, 0);
6287 it
->selective
= old_selective
;
6288 return newline_found_p
;
6292 /* Set IT's current position to the previous visible line start. Skip
6293 invisible text that is so either due to text properties or due to
6294 selective display. Caution: this does not change IT->current_x and
6298 back_to_previous_visible_line_start (struct it
*it
)
6300 while (IT_CHARPOS (*it
) > BEGV
)
6302 back_to_previous_line_start (it
);
6304 if (IT_CHARPOS (*it
) <= BEGV
)
6307 /* If selective > 0, then lines indented more than its value are
6309 if (it
->selective
> 0
6310 && indented_beyond_p (IT_CHARPOS (*it
), IT_BYTEPOS (*it
),
6314 /* Check the newline before point for invisibility. */
6317 prop
= Fget_char_property (make_number (IT_CHARPOS (*it
) - 1),
6318 Qinvisible
, it
->window
);
6319 if (TEXT_PROP_MEANS_INVISIBLE (prop
))
6323 if (IT_CHARPOS (*it
) <= BEGV
)
6328 void *it2data
= NULL
;
6331 Lisp_Object val
, overlay
;
6333 SAVE_IT (it2
, *it
, it2data
);
6335 /* If newline is part of a composition, continue from start of composition */
6336 if (find_composition (IT_CHARPOS (*it
), -1, &beg
, &end
, &val
, Qnil
)
6337 && beg
< IT_CHARPOS (*it
))
6340 /* If newline is replaced by a display property, find start of overlay
6341 or interval and continue search from that point. */
6342 pos
= --IT_CHARPOS (it2
);
6345 bidi_unshelve_cache (NULL
, 0);
6346 it2
.string_from_display_prop_p
= 0;
6347 it2
.from_disp_prop_p
= 0;
6348 if (handle_display_prop (&it2
) == HANDLED_RETURN
6349 && !NILP (val
= get_char_property_and_overlay
6350 (make_number (pos
), Qdisplay
, Qnil
, &overlay
))
6351 && (OVERLAYP (overlay
)
6352 ? (beg
= OVERLAY_POSITION (OVERLAY_START (overlay
)))
6353 : get_property_and_range (pos
, Qdisplay
, &val
, &beg
, &end
, Qnil
)))
6355 RESTORE_IT (it
, it
, it2data
);
6359 /* Newline is not replaced by anything -- so we are done. */
6360 RESTORE_IT (it
, it
, it2data
);
6366 IT_CHARPOS (*it
) = beg
;
6367 IT_BYTEPOS (*it
) = buf_charpos_to_bytepos (current_buffer
, beg
);
6371 it
->continuation_lines_width
= 0;
6373 eassert (IT_CHARPOS (*it
) >= BEGV
);
6374 eassert (IT_CHARPOS (*it
) == BEGV
6375 || FETCH_BYTE (IT_BYTEPOS (*it
) - 1) == '\n');
6380 /* Reseat iterator IT at the previous visible line start. Skip
6381 invisible text that is so either due to text properties or due to
6382 selective display. At the end, update IT's overlay information,
6383 face information etc. */
6386 reseat_at_previous_visible_line_start (struct it
*it
)
6388 back_to_previous_visible_line_start (it
);
6389 reseat (it
, it
->current
.pos
, 1);
6394 /* Reseat iterator IT on the next visible line start in the current
6395 buffer. ON_NEWLINE_P non-zero means position IT on the newline
6396 preceding the line start. Skip over invisible text that is so
6397 because of selective display. Compute faces, overlays etc at the
6398 new position. Note that this function does not skip over text that
6399 is invisible because of text properties. */
6402 reseat_at_next_visible_line_start (struct it
*it
, int on_newline_p
)
6404 int newline_found_p
, skipped_p
= 0;
6405 struct bidi_it bidi_it_prev
;
6407 newline_found_p
= forward_to_next_line_start (it
, &skipped_p
, &bidi_it_prev
);
6409 /* Skip over lines that are invisible because they are indented
6410 more than the value of IT->selective. */
6411 if (it
->selective
> 0)
6412 while (IT_CHARPOS (*it
) < ZV
6413 && indented_beyond_p (IT_CHARPOS (*it
), IT_BYTEPOS (*it
),
6416 eassert (IT_BYTEPOS (*it
) == BEGV
6417 || FETCH_BYTE (IT_BYTEPOS (*it
) - 1) == '\n');
6419 forward_to_next_line_start (it
, &skipped_p
, &bidi_it_prev
);
6422 /* Position on the newline if that's what's requested. */
6423 if (on_newline_p
&& newline_found_p
)
6425 if (STRINGP (it
->string
))
6427 if (IT_STRING_CHARPOS (*it
) > 0)
6431 --IT_STRING_CHARPOS (*it
);
6432 --IT_STRING_BYTEPOS (*it
);
6436 /* We need to restore the bidi iterator to the state
6437 it had on the newline, and resync the IT's
6438 position with that. */
6439 it
->bidi_it
= bidi_it_prev
;
6440 IT_STRING_CHARPOS (*it
) = it
->bidi_it
.charpos
;
6441 IT_STRING_BYTEPOS (*it
) = it
->bidi_it
.bytepos
;
6445 else if (IT_CHARPOS (*it
) > BEGV
)
6454 /* We need to restore the bidi iterator to the state it
6455 had on the newline and resync IT with that. */
6456 it
->bidi_it
= bidi_it_prev
;
6457 IT_CHARPOS (*it
) = it
->bidi_it
.charpos
;
6458 IT_BYTEPOS (*it
) = it
->bidi_it
.bytepos
;
6460 reseat (it
, it
->current
.pos
, 0);
6464 reseat (it
, it
->current
.pos
, 0);
6471 /***********************************************************************
6472 Changing an iterator's position
6473 ***********************************************************************/
6475 /* Change IT's current position to POS in current_buffer. If FORCE_P
6476 is non-zero, always check for text properties at the new position.
6477 Otherwise, text properties are only looked up if POS >=
6478 IT->check_charpos of a property. */
6481 reseat (struct it
*it
, struct text_pos pos
, int force_p
)
6483 ptrdiff_t original_pos
= IT_CHARPOS (*it
);
6485 reseat_1 (it
, pos
, 0);
6487 /* Determine where to check text properties. Avoid doing it
6488 where possible because text property lookup is very expensive. */
6490 || CHARPOS (pos
) > it
->stop_charpos
6491 || CHARPOS (pos
) < original_pos
)
6495 /* For bidi iteration, we need to prime prev_stop and
6496 base_level_stop with our best estimations. */
6497 /* Implementation note: Of course, POS is not necessarily a
6498 stop position, so assigning prev_pos to it is a lie; we
6499 should have called compute_stop_backwards. However, if
6500 the current buffer does not include any R2L characters,
6501 that call would be a waste of cycles, because the
6502 iterator will never move back, and thus never cross this
6503 "fake" stop position. So we delay that backward search
6504 until the time we really need it, in next_element_from_buffer. */
6505 if (CHARPOS (pos
) != it
->prev_stop
)
6506 it
->prev_stop
= CHARPOS (pos
);
6507 if (CHARPOS (pos
) < it
->base_level_stop
)
6508 it
->base_level_stop
= 0; /* meaning it's unknown */
6514 it
->prev_stop
= it
->base_level_stop
= 0;
6523 /* Change IT's buffer position to POS. SET_STOP_P non-zero means set
6524 IT->stop_pos to POS, also. */
6527 reseat_1 (struct it
*it
, struct text_pos pos
, int set_stop_p
)
6529 /* Don't call this function when scanning a C string. */
6530 eassert (it
->s
== NULL
);
6532 /* POS must be a reasonable value. */
6533 eassert (CHARPOS (pos
) >= BEGV
&& CHARPOS (pos
) <= ZV
);
6535 it
->current
.pos
= it
->position
= pos
;
6536 it
->end_charpos
= ZV
;
6538 it
->current
.dpvec_index
= -1;
6539 it
->current
.overlay_string_index
= -1;
6540 IT_STRING_CHARPOS (*it
) = -1;
6541 IT_STRING_BYTEPOS (*it
) = -1;
6543 it
->method
= GET_FROM_BUFFER
;
6544 it
->object
= it
->w
->contents
;
6545 it
->area
= TEXT_AREA
;
6546 it
->multibyte_p
= !NILP (BVAR (current_buffer
, enable_multibyte_characters
));
6548 it
->string_from_display_prop_p
= 0;
6549 it
->string_from_prefix_prop_p
= 0;
6551 it
->from_disp_prop_p
= 0;
6552 it
->face_before_selective_p
= 0;
6555 bidi_init_it (IT_CHARPOS (*it
), IT_BYTEPOS (*it
), FRAME_WINDOW_P (it
->f
),
6557 bidi_unshelve_cache (NULL
, 0);
6558 it
->bidi_it
.paragraph_dir
= NEUTRAL_DIR
;
6559 it
->bidi_it
.string
.s
= NULL
;
6560 it
->bidi_it
.string
.lstring
= Qnil
;
6561 it
->bidi_it
.string
.bufpos
= 0;
6562 it
->bidi_it
.string
.from_disp_str
= 0;
6563 it
->bidi_it
.string
.unibyte
= 0;
6564 it
->bidi_it
.w
= it
->w
;
6569 it
->stop_charpos
= CHARPOS (pos
);
6570 it
->base_level_stop
= CHARPOS (pos
);
6572 /* This make the information stored in it->cmp_it invalidate. */
6577 /* Set up IT for displaying a string, starting at CHARPOS in window W.
6578 If S is non-null, it is a C string to iterate over. Otherwise,
6579 STRING gives a Lisp string to iterate over.
6581 If PRECISION > 0, don't return more then PRECISION number of
6582 characters from the string.
6584 If FIELD_WIDTH > 0, return padding spaces until FIELD_WIDTH
6585 characters have been returned. FIELD_WIDTH < 0 means an infinite
6588 MULTIBYTE = 0 means disable processing of multibyte characters,
6589 MULTIBYTE > 0 means enable it,
6590 MULTIBYTE < 0 means use IT->multibyte_p.
6592 IT must be initialized via a prior call to init_iterator before
6593 calling this function. */
6596 reseat_to_string (struct it
*it
, const char *s
, Lisp_Object string
,
6597 ptrdiff_t charpos
, ptrdiff_t precision
, int field_width
,
6600 /* No text property checks performed by default, but see below. */
6601 it
->stop_charpos
= -1;
6603 /* Set iterator position and end position. */
6604 memset (&it
->current
, 0, sizeof it
->current
);
6605 it
->current
.overlay_string_index
= -1;
6606 it
->current
.dpvec_index
= -1;
6607 eassert (charpos
>= 0);
6609 /* If STRING is specified, use its multibyteness, otherwise use the
6610 setting of MULTIBYTE, if specified. */
6612 it
->multibyte_p
= multibyte
> 0;
6614 /* Bidirectional reordering of strings is controlled by the default
6615 value of bidi-display-reordering. Don't try to reorder while
6616 loading loadup.el, as the necessary character property tables are
6617 not yet available. */
6620 && !NILP (BVAR (&buffer_defaults
, bidi_display_reordering
));
6624 eassert (STRINGP (string
));
6625 it
->string
= string
;
6627 it
->end_charpos
= it
->string_nchars
= SCHARS (string
);
6628 it
->method
= GET_FROM_STRING
;
6629 it
->current
.string_pos
= string_pos (charpos
, string
);
6633 it
->bidi_it
.string
.lstring
= string
;
6634 it
->bidi_it
.string
.s
= NULL
;
6635 it
->bidi_it
.string
.schars
= it
->end_charpos
;
6636 it
->bidi_it
.string
.bufpos
= 0;
6637 it
->bidi_it
.string
.from_disp_str
= 0;
6638 it
->bidi_it
.string
.unibyte
= !it
->multibyte_p
;
6639 it
->bidi_it
.w
= it
->w
;
6640 bidi_init_it (charpos
, IT_STRING_BYTEPOS (*it
),
6641 FRAME_WINDOW_P (it
->f
), &it
->bidi_it
);
6646 it
->s
= (const unsigned char *) s
;
6649 /* Note that we use IT->current.pos, not it->current.string_pos,
6650 for displaying C strings. */
6651 IT_STRING_CHARPOS (*it
) = IT_STRING_BYTEPOS (*it
) = -1;
6652 if (it
->multibyte_p
)
6654 it
->current
.pos
= c_string_pos (charpos
, s
, 1);
6655 it
->end_charpos
= it
->string_nchars
= number_of_chars (s
, 1);
6659 IT_CHARPOS (*it
) = IT_BYTEPOS (*it
) = charpos
;
6660 it
->end_charpos
= it
->string_nchars
= strlen (s
);
6665 it
->bidi_it
.string
.lstring
= Qnil
;
6666 it
->bidi_it
.string
.s
= (const unsigned char *) s
;
6667 it
->bidi_it
.string
.schars
= it
->end_charpos
;
6668 it
->bidi_it
.string
.bufpos
= 0;
6669 it
->bidi_it
.string
.from_disp_str
= 0;
6670 it
->bidi_it
.string
.unibyte
= !it
->multibyte_p
;
6671 it
->bidi_it
.w
= it
->w
;
6672 bidi_init_it (charpos
, IT_BYTEPOS (*it
), FRAME_WINDOW_P (it
->f
),
6675 it
->method
= GET_FROM_C_STRING
;
6678 /* PRECISION > 0 means don't return more than PRECISION characters
6680 if (precision
> 0 && it
->end_charpos
- charpos
> precision
)
6682 it
->end_charpos
= it
->string_nchars
= charpos
+ precision
;
6684 it
->bidi_it
.string
.schars
= it
->end_charpos
;
6687 /* FIELD_WIDTH > 0 means pad with spaces until FIELD_WIDTH
6688 characters have been returned. FIELD_WIDTH == 0 means don't pad,
6689 FIELD_WIDTH < 0 means infinite field width. This is useful for
6690 padding with `-' at the end of a mode line. */
6691 if (field_width
< 0)
6692 field_width
= INFINITY
;
6693 /* Implementation note: We deliberately don't enlarge
6694 it->bidi_it.string.schars here to fit it->end_charpos, because
6695 the bidi iterator cannot produce characters out of thin air. */
6696 if (field_width
> it
->end_charpos
- charpos
)
6697 it
->end_charpos
= charpos
+ field_width
;
6699 /* Use the standard display table for displaying strings. */
6700 if (DISP_TABLE_P (Vstandard_display_table
))
6701 it
->dp
= XCHAR_TABLE (Vstandard_display_table
);
6703 it
->stop_charpos
= charpos
;
6704 it
->prev_stop
= charpos
;
6705 it
->base_level_stop
= 0;
6708 it
->bidi_it
.first_elt
= 1;
6709 it
->bidi_it
.paragraph_dir
= NEUTRAL_DIR
;
6710 it
->bidi_it
.disp_pos
= -1;
6712 if (s
== NULL
&& it
->multibyte_p
)
6714 ptrdiff_t endpos
= SCHARS (it
->string
);
6715 if (endpos
> it
->end_charpos
)
6716 endpos
= it
->end_charpos
;
6717 composition_compute_stop_pos (&it
->cmp_it
, charpos
, -1, endpos
,
6725 /***********************************************************************
6727 ***********************************************************************/
6729 /* Map enum it_method value to corresponding next_element_from_* function. */
6731 static int (* get_next_element
[NUM_IT_METHODS
]) (struct it
*it
) =
6733 next_element_from_buffer
,
6734 next_element_from_display_vector
,
6735 next_element_from_string
,
6736 next_element_from_c_string
,
6737 next_element_from_image
,
6738 next_element_from_stretch
6739 #ifdef HAVE_XWIDGETS
6740 ,next_element_from_xwidget
6744 #define GET_NEXT_DISPLAY_ELEMENT(it) (*get_next_element[(it)->method]) (it)
6747 /* Return 1 iff a character at CHARPOS (and BYTEPOS) is composed
6748 (possibly with the following characters). */
6750 #define CHAR_COMPOSED_P(IT,CHARPOS,BYTEPOS,END_CHARPOS) \
6751 ((IT)->cmp_it.id >= 0 \
6752 || ((IT)->cmp_it.stop_pos == (CHARPOS) \
6753 && composition_reseat_it (&(IT)->cmp_it, CHARPOS, BYTEPOS, \
6754 END_CHARPOS, (IT)->w, \
6755 FACE_FROM_ID ((IT)->f, (IT)->face_id), \
6759 /* Lookup the char-table Vglyphless_char_display for character C (-1
6760 if we want information for no-font case), and return the display
6761 method symbol. By side-effect, update it->what and
6762 it->glyphless_method. This function is called from
6763 get_next_display_element for each character element, and from
6764 x_produce_glyphs when no suitable font was found. */
6767 lookup_glyphless_char_display (int c
, struct it
*it
)
6769 Lisp_Object glyphless_method
= Qnil
;
6771 if (CHAR_TABLE_P (Vglyphless_char_display
)
6772 && CHAR_TABLE_EXTRA_SLOTS (XCHAR_TABLE (Vglyphless_char_display
)) >= 1)
6776 glyphless_method
= CHAR_TABLE_REF (Vglyphless_char_display
, c
);
6777 if (CONSP (glyphless_method
))
6778 glyphless_method
= FRAME_WINDOW_P (it
->f
)
6779 ? XCAR (glyphless_method
)
6780 : XCDR (glyphless_method
);
6783 glyphless_method
= XCHAR_TABLE (Vglyphless_char_display
)->extras
[0];
6787 if (NILP (glyphless_method
))
6790 /* The default is to display the character by a proper font. */
6792 /* The default for the no-font case is to display an empty box. */
6793 glyphless_method
= Qempty_box
;
6795 if (EQ (glyphless_method
, Qzero_width
))
6798 return glyphless_method
;
6799 /* This method can't be used for the no-font case. */
6800 glyphless_method
= Qempty_box
;
6802 if (EQ (glyphless_method
, Qthin_space
))
6803 it
->glyphless_method
= GLYPHLESS_DISPLAY_THIN_SPACE
;
6804 else if (EQ (glyphless_method
, Qempty_box
))
6805 it
->glyphless_method
= GLYPHLESS_DISPLAY_EMPTY_BOX
;
6806 else if (EQ (glyphless_method
, Qhex_code
))
6807 it
->glyphless_method
= GLYPHLESS_DISPLAY_HEX_CODE
;
6808 else if (STRINGP (glyphless_method
))
6809 it
->glyphless_method
= GLYPHLESS_DISPLAY_ACRONYM
;
6812 /* Invalid value. We use the default method. */
6813 glyphless_method
= Qnil
;
6816 it
->what
= IT_GLYPHLESS
;
6817 return glyphless_method
;
6820 /* Merge escape glyph face and cache the result. */
6822 static struct frame
*last_escape_glyph_frame
= NULL
;
6823 static int last_escape_glyph_face_id
= (1 << FACE_ID_BITS
);
6824 static int last_escape_glyph_merged_face_id
= 0;
6827 merge_escape_glyph_face (struct it
*it
)
6831 if (it
->f
== last_escape_glyph_frame
6832 && it
->face_id
== last_escape_glyph_face_id
)
6833 face_id
= last_escape_glyph_merged_face_id
;
6836 /* Merge the `escape-glyph' face into the current face. */
6837 face_id
= merge_faces (it
->f
, Qescape_glyph
, 0, it
->face_id
);
6838 last_escape_glyph_frame
= it
->f
;
6839 last_escape_glyph_face_id
= it
->face_id
;
6840 last_escape_glyph_merged_face_id
= face_id
;
6845 /* Likewise for glyphless glyph face. */
6847 static struct frame
*last_glyphless_glyph_frame
= NULL
;
6848 static int last_glyphless_glyph_face_id
= (1 << FACE_ID_BITS
);
6849 static int last_glyphless_glyph_merged_face_id
= 0;
6852 merge_glyphless_glyph_face (struct it
*it
)
6856 if (it
->f
== last_glyphless_glyph_frame
6857 && it
->face_id
== last_glyphless_glyph_face_id
)
6858 face_id
= last_glyphless_glyph_merged_face_id
;
6861 /* Merge the `glyphless-char' face into the current face. */
6862 face_id
= merge_faces (it
->f
, Qglyphless_char
, 0, it
->face_id
);
6863 last_glyphless_glyph_frame
= it
->f
;
6864 last_glyphless_glyph_face_id
= it
->face_id
;
6865 last_glyphless_glyph_merged_face_id
= face_id
;
6870 /* Load IT's display element fields with information about the next
6871 display element from the current position of IT. Value is zero if
6872 end of buffer (or C string) is reached. */
6875 get_next_display_element (struct it
*it
)
6877 /* Non-zero means that we found a display element. Zero means that
6878 we hit the end of what we iterate over. Performance note: the
6879 function pointer `method' used here turns out to be faster than
6880 using a sequence of if-statements. */
6884 success_p
= GET_NEXT_DISPLAY_ELEMENT (it
);
6886 if (it
->what
== IT_CHARACTER
)
6888 /* UAX#9, L4: "A character is depicted by a mirrored glyph if
6889 and only if (a) the resolved directionality of that character
6891 /* FIXME: Do we need an exception for characters from display
6893 if (it
->bidi_p
&& it
->bidi_it
.type
== STRONG_R
6894 && !inhibit_bidi_mirroring
)
6895 it
->c
= bidi_mirror_char (it
->c
);
6896 /* Map via display table or translate control characters.
6897 IT->c, IT->len etc. have been set to the next character by
6898 the function call above. If we have a display table, and it
6899 contains an entry for IT->c, translate it. Don't do this if
6900 IT->c itself comes from a display table, otherwise we could
6901 end up in an infinite recursion. (An alternative could be to
6902 count the recursion depth of this function and signal an
6903 error when a certain maximum depth is reached.) Is it worth
6905 if (success_p
&& it
->dpvec
== NULL
)
6908 struct charset
*unibyte
= CHARSET_FROM_ID (charset_unibyte
);
6909 int nonascii_space_p
= 0;
6910 int nonascii_hyphen_p
= 0;
6911 int c
= it
->c
; /* This is the character to display. */
6913 if (! it
->multibyte_p
&& ! ASCII_CHAR_P (c
))
6915 eassert (SINGLE_BYTE_CHAR_P (c
));
6916 if (unibyte_display_via_language_environment
)
6918 c
= DECODE_CHAR (unibyte
, c
);
6920 c
= BYTE8_TO_CHAR (it
->c
);
6923 c
= BYTE8_TO_CHAR (it
->c
);
6927 && (dv
= DISP_CHAR_VECTOR (it
->dp
, c
),
6930 struct Lisp_Vector
*v
= XVECTOR (dv
);
6932 /* Return the first character from the display table
6933 entry, if not empty. If empty, don't display the
6934 current character. */
6937 it
->dpvec_char_len
= it
->len
;
6938 it
->dpvec
= v
->contents
;
6939 it
->dpend
= v
->contents
+ v
->header
.size
;
6940 it
->current
.dpvec_index
= 0;
6941 it
->dpvec_face_id
= -1;
6942 it
->saved_face_id
= it
->face_id
;
6943 it
->method
= GET_FROM_DISPLAY_VECTOR
;
6948 set_iterator_to_next (it
, 0);
6953 if (! NILP (lookup_glyphless_char_display (c
, it
)))
6955 if (it
->what
== IT_GLYPHLESS
)
6957 /* Don't display this character. */
6958 set_iterator_to_next (it
, 0);
6962 /* If `nobreak-char-display' is non-nil, we display
6963 non-ASCII spaces and hyphens specially. */
6964 if (! ASCII_CHAR_P (c
) && ! NILP (Vnobreak_char_display
))
6967 nonascii_space_p
= true;
6968 else if (c
== 0xAD || c
== 0x2010 || c
== 0x2011)
6969 nonascii_hyphen_p
= true;
6972 /* Translate control characters into `\003' or `^C' form.
6973 Control characters coming from a display table entry are
6974 currently not translated because we use IT->dpvec to hold
6975 the translation. This could easily be changed but I
6976 don't believe that it is worth doing.
6978 The characters handled by `nobreak-char-display' must be
6981 Non-printable characters and raw-byte characters are also
6982 translated to octal form. */
6983 if (((c
< ' ' || c
== 127) /* ASCII control chars. */
6984 ? (it
->area
!= TEXT_AREA
6985 /* In mode line, treat \n, \t like other crl chars. */
6988 && (it
->glyph_row
->mode_line_p
|| it
->avoid_cursor_p
))
6989 || (c
!= '\n' && c
!= '\t'))
6991 || nonascii_hyphen_p
6993 || ! CHAR_PRINTABLE_P (c
))))
6995 /* C is a control character, non-ASCII space/hyphen,
6996 raw-byte, or a non-printable character which must be
6997 displayed either as '\003' or as `^C' where the '\\'
6998 and '^' can be defined in the display table. Fill
6999 IT->ctl_chars with glyphs for what we have to
7000 display. Then, set IT->dpvec to these glyphs. */
7007 /* Handle control characters with ^. */
7009 if (ASCII_CHAR_P (c
) && it
->ctl_arrow_p
)
7013 g
= '^'; /* default glyph for Control */
7014 /* Set IT->ctl_chars[0] to the glyph for `^'. */
7016 && (gc
= DISP_CTRL_GLYPH (it
->dp
), GLYPH_CODE_P (gc
)))
7018 g
= GLYPH_CODE_CHAR (gc
);
7019 lface_id
= GLYPH_CODE_FACE (gc
);
7023 ? merge_faces (it
->f
, Qt
, lface_id
, it
->face_id
)
7024 : merge_escape_glyph_face (it
));
7026 XSETINT (it
->ctl_chars
[0], g
);
7027 XSETINT (it
->ctl_chars
[1], c
^ 0100);
7029 goto display_control
;
7032 /* Handle non-ascii space in the mode where it only gets
7035 if (nonascii_space_p
&& EQ (Vnobreak_char_display
, Qt
))
7037 /* Merge `nobreak-space' into the current face. */
7038 face_id
= merge_faces (it
->f
, Qnobreak_space
, 0,
7040 XSETINT (it
->ctl_chars
[0], ' ');
7042 goto display_control
;
7045 /* Handle sequences that start with the "escape glyph". */
7047 /* the default escape glyph is \. */
7048 escape_glyph
= '\\';
7051 && (gc
= DISP_ESCAPE_GLYPH (it
->dp
), GLYPH_CODE_P (gc
)))
7053 escape_glyph
= GLYPH_CODE_CHAR (gc
);
7054 lface_id
= GLYPH_CODE_FACE (gc
);
7058 ? merge_faces (it
->f
, Qt
, lface_id
, it
->face_id
)
7059 : merge_escape_glyph_face (it
));
7061 /* Draw non-ASCII hyphen with just highlighting: */
7063 if (nonascii_hyphen_p
&& EQ (Vnobreak_char_display
, Qt
))
7065 XSETINT (it
->ctl_chars
[0], '-');
7067 goto display_control
;
7070 /* Draw non-ASCII space/hyphen with escape glyph: */
7072 if (nonascii_space_p
|| nonascii_hyphen_p
)
7074 XSETINT (it
->ctl_chars
[0], escape_glyph
);
7075 XSETINT (it
->ctl_chars
[1], nonascii_space_p
? ' ' : '-');
7077 goto display_control
;
7084 if (CHAR_BYTE8_P (c
))
7085 /* Display \200 instead of \17777600. */
7086 c
= CHAR_TO_BYTE8 (c
);
7087 len
= sprintf (str
, "%03o", c
);
7089 XSETINT (it
->ctl_chars
[0], escape_glyph
);
7090 for (i
= 0; i
< len
; i
++)
7091 XSETINT (it
->ctl_chars
[i
+ 1], str
[i
]);
7096 /* Set up IT->dpvec and return first character from it. */
7097 it
->dpvec_char_len
= it
->len
;
7098 it
->dpvec
= it
->ctl_chars
;
7099 it
->dpend
= it
->dpvec
+ ctl_len
;
7100 it
->current
.dpvec_index
= 0;
7101 it
->dpvec_face_id
= face_id
;
7102 it
->saved_face_id
= it
->face_id
;
7103 it
->method
= GET_FROM_DISPLAY_VECTOR
;
7107 it
->char_to_display
= c
;
7111 it
->char_to_display
= it
->c
;
7115 #ifdef HAVE_WINDOW_SYSTEM
7116 /* Adjust face id for a multibyte character. There are no multibyte
7117 character in unibyte text. */
7118 if ((it
->what
== IT_CHARACTER
|| it
->what
== IT_COMPOSITION
)
7121 && FRAME_WINDOW_P (it
->f
))
7123 struct face
*face
= FACE_FROM_ID (it
->f
, it
->face_id
);
7125 if (it
->what
== IT_COMPOSITION
&& it
->cmp_it
.ch
>= 0)
7127 /* Automatic composition with glyph-string. */
7128 Lisp_Object gstring
= composition_gstring_from_id (it
->cmp_it
.id
);
7130 it
->face_id
= face_for_font (it
->f
, LGSTRING_FONT (gstring
), face
);
7134 ptrdiff_t pos
= (it
->s
? -1
7135 : STRINGP (it
->string
) ? IT_STRING_CHARPOS (*it
)
7136 : IT_CHARPOS (*it
));
7139 if (it
->what
== IT_CHARACTER
)
7140 c
= it
->char_to_display
;
7143 struct composition
*cmp
= composition_table
[it
->cmp_it
.id
];
7147 for (i
= 0; i
< cmp
->glyph_len
; i
++)
7148 /* TAB in a composition means display glyphs with
7149 padding space on the left or right. */
7150 if ((c
= COMPOSITION_GLYPH (cmp
, i
)) != '\t')
7153 it
->face_id
= FACE_FOR_CHAR (it
->f
, face
, c
, pos
, it
->string
);
7156 #endif /* HAVE_WINDOW_SYSTEM */
7159 /* Is this character the last one of a run of characters with
7160 box? If yes, set IT->end_of_box_run_p to 1. */
7164 if (it
->method
== GET_FROM_STRING
&& it
->sp
)
7166 int face_id
= underlying_face_id (it
);
7167 struct face
*face
= FACE_FROM_ID (it
->f
, face_id
);
7171 if (face
->box
== FACE_NO_BOX
)
7173 /* If the box comes from face properties in a
7174 display string, check faces in that string. */
7175 int string_face_id
= face_after_it_pos (it
);
7176 it
->end_of_box_run_p
7177 = (FACE_FROM_ID (it
->f
, string_face_id
)->box
7180 /* Otherwise, the box comes from the underlying face.
7181 If this is the last string character displayed, check
7182 the next buffer location. */
7183 else if ((IT_STRING_CHARPOS (*it
) >= SCHARS (it
->string
) - 1)
7184 /* n_overlay_strings is unreliable unless
7185 overlay_string_index is non-negative. */
7186 && ((it
->current
.overlay_string_index
>= 0
7187 && (it
->current
.overlay_string_index
7188 == it
->n_overlay_strings
- 1))
7189 /* A string from display property. */
7190 || it
->from_disp_prop_p
))
7194 struct text_pos pos
= it
->current
.pos
;
7196 /* For a string from a display property, the next
7197 buffer position is stored in the 'position'
7198 member of the iteration stack slot below the
7199 current one, see handle_single_display_spec. By
7200 contrast, it->current.pos was is not yet updated
7201 to point to that buffer position; that will
7202 happen in pop_it, after we finish displaying the
7203 current string. Note that we already checked
7204 above that it->sp is positive, so subtracting one
7206 if (it
->from_disp_prop_p
)
7207 pos
= (it
->stack
+ it
->sp
- 1)->position
;
7209 INC_TEXT_POS (pos
, it
->multibyte_p
);
7211 if (CHARPOS (pos
) >= ZV
)
7212 it
->end_of_box_run_p
= true;
7215 next_face_id
= face_at_buffer_position
7216 (it
->w
, CHARPOS (pos
), &ignore
,
7217 CHARPOS (pos
) + TEXT_PROP_DISTANCE_LIMIT
, 0, -1);
7218 it
->end_of_box_run_p
7219 = (FACE_FROM_ID (it
->f
, next_face_id
)->box
7225 /* next_element_from_display_vector sets this flag according to
7226 faces of the display vector glyphs, see there. */
7227 else if (it
->method
!= GET_FROM_DISPLAY_VECTOR
)
7229 int face_id
= face_after_it_pos (it
);
7230 it
->end_of_box_run_p
7231 = (face_id
!= it
->face_id
7232 && FACE_FROM_ID (it
->f
, face_id
)->box
== FACE_NO_BOX
);
7235 /* If we reached the end of the object we've been iterating (e.g., a
7236 display string or an overlay string), and there's something on
7237 IT->stack, proceed with what's on the stack. It doesn't make
7238 sense to return zero if there's unprocessed stuff on the stack,
7239 because otherwise that stuff will never be displayed. */
7240 if (!success_p
&& it
->sp
> 0)
7242 set_iterator_to_next (it
, 0);
7243 success_p
= get_next_display_element (it
);
7246 /* Value is 0 if end of buffer or string reached. */
7251 /* Move IT to the next display element.
7253 RESEAT_P non-zero means if called on a newline in buffer text,
7254 skip to the next visible line start.
7256 Functions get_next_display_element and set_iterator_to_next are
7257 separate because I find this arrangement easier to handle than a
7258 get_next_display_element function that also increments IT's
7259 position. The way it is we can first look at an iterator's current
7260 display element, decide whether it fits on a line, and if it does,
7261 increment the iterator position. The other way around we probably
7262 would either need a flag indicating whether the iterator has to be
7263 incremented the next time, or we would have to implement a
7264 decrement position function which would not be easy to write. */
7267 set_iterator_to_next (struct it
*it
, int reseat_p
)
7269 /* Reset flags indicating start and end of a sequence of characters
7270 with box. Reset them at the start of this function because
7271 moving the iterator to a new position might set them. */
7272 it
->start_of_box_run_p
= it
->end_of_box_run_p
= 0;
7276 case GET_FROM_BUFFER
:
7277 /* The current display element of IT is a character from
7278 current_buffer. Advance in the buffer, and maybe skip over
7279 invisible lines that are so because of selective display. */
7280 if (ITERATOR_AT_END_OF_LINE_P (it
) && reseat_p
)
7281 reseat_at_next_visible_line_start (it
, 0);
7282 else if (it
->cmp_it
.id
>= 0)
7284 /* We are currently getting glyphs from a composition. */
7287 IT_CHARPOS (*it
) += it
->cmp_it
.nchars
;
7288 IT_BYTEPOS (*it
) += it
->cmp_it
.nbytes
;
7294 /* Update IT's char/byte positions to point to the first
7295 character of the next grapheme cluster, or to the
7296 character visually after the current composition. */
7297 for (i
= 0; i
< it
->cmp_it
.nchars
; i
++)
7298 bidi_move_to_visually_next (&it
->bidi_it
);
7299 IT_BYTEPOS (*it
) = it
->bidi_it
.bytepos
;
7300 IT_CHARPOS (*it
) = it
->bidi_it
.charpos
;
7303 if ((! it
->bidi_p
|| ! it
->cmp_it
.reversed_p
)
7304 && it
->cmp_it
.to
< it
->cmp_it
.nglyphs
)
7306 /* Composition created while scanning forward. Proceed
7307 to the next grapheme cluster. */
7308 it
->cmp_it
.from
= it
->cmp_it
.to
;
7310 else if ((it
->bidi_p
&& it
->cmp_it
.reversed_p
)
7311 && it
->cmp_it
.from
> 0)
7313 /* Composition created while scanning backward. Proceed
7314 to the previous grapheme cluster. */
7315 it
->cmp_it
.to
= it
->cmp_it
.from
;
7319 /* No more grapheme clusters in this composition.
7320 Find the next stop position. */
7321 ptrdiff_t stop
= it
->end_charpos
;
7323 if (it
->bidi_it
.scan_dir
< 0)
7324 /* Now we are scanning backward and don't know
7327 composition_compute_stop_pos (&it
->cmp_it
, IT_CHARPOS (*it
),
7328 IT_BYTEPOS (*it
), stop
, Qnil
);
7333 eassert (it
->len
!= 0);
7337 IT_BYTEPOS (*it
) += it
->len
;
7338 IT_CHARPOS (*it
) += 1;
7342 int prev_scan_dir
= it
->bidi_it
.scan_dir
;
7343 /* If this is a new paragraph, determine its base
7344 direction (a.k.a. its base embedding level). */
7345 if (it
->bidi_it
.new_paragraph
)
7346 bidi_paragraph_init (it
->paragraph_embedding
, &it
->bidi_it
, 0);
7347 bidi_move_to_visually_next (&it
->bidi_it
);
7348 IT_BYTEPOS (*it
) = it
->bidi_it
.bytepos
;
7349 IT_CHARPOS (*it
) = it
->bidi_it
.charpos
;
7350 if (prev_scan_dir
!= it
->bidi_it
.scan_dir
)
7352 /* As the scan direction was changed, we must
7353 re-compute the stop position for composition. */
7354 ptrdiff_t stop
= it
->end_charpos
;
7355 if (it
->bidi_it
.scan_dir
< 0)
7357 composition_compute_stop_pos (&it
->cmp_it
, IT_CHARPOS (*it
),
7358 IT_BYTEPOS (*it
), stop
, Qnil
);
7361 eassert (IT_BYTEPOS (*it
) == CHAR_TO_BYTE (IT_CHARPOS (*it
)));
7365 case GET_FROM_C_STRING
:
7366 /* Current display element of IT is from a C string. */
7368 /* If the string position is beyond string's end, it means
7369 next_element_from_c_string is padding the string with
7370 blanks, in which case we bypass the bidi iterator,
7371 because it cannot deal with such virtual characters. */
7372 || IT_CHARPOS (*it
) >= it
->bidi_it
.string
.schars
)
7374 IT_BYTEPOS (*it
) += it
->len
;
7375 IT_CHARPOS (*it
) += 1;
7379 bidi_move_to_visually_next (&it
->bidi_it
);
7380 IT_BYTEPOS (*it
) = it
->bidi_it
.bytepos
;
7381 IT_CHARPOS (*it
) = it
->bidi_it
.charpos
;
7385 case GET_FROM_DISPLAY_VECTOR
:
7386 /* Current display element of IT is from a display table entry.
7387 Advance in the display table definition. Reset it to null if
7388 end reached, and continue with characters from buffers/
7390 ++it
->current
.dpvec_index
;
7392 /* Restore face of the iterator to what they were before the
7393 display vector entry (these entries may contain faces). */
7394 it
->face_id
= it
->saved_face_id
;
7396 if (it
->dpvec
+ it
->current
.dpvec_index
>= it
->dpend
)
7398 int recheck_faces
= it
->ellipsis_p
;
7401 it
->method
= GET_FROM_C_STRING
;
7402 else if (STRINGP (it
->string
))
7403 it
->method
= GET_FROM_STRING
;
7406 it
->method
= GET_FROM_BUFFER
;
7407 it
->object
= it
->w
->contents
;
7411 it
->current
.dpvec_index
= -1;
7413 /* Skip over characters which were displayed via IT->dpvec. */
7414 if (it
->dpvec_char_len
< 0)
7415 reseat_at_next_visible_line_start (it
, 1);
7416 else if (it
->dpvec_char_len
> 0)
7418 if (it
->method
== GET_FROM_STRING
7419 && it
->current
.overlay_string_index
>= 0
7420 && it
->n_overlay_strings
> 0)
7421 it
->ignore_overlay_strings_at_pos_p
= true;
7422 it
->len
= it
->dpvec_char_len
;
7423 set_iterator_to_next (it
, reseat_p
);
7426 /* Maybe recheck faces after display vector. */
7428 it
->stop_charpos
= IT_CHARPOS (*it
);
7432 case GET_FROM_STRING
:
7433 /* Current display element is a character from a Lisp string. */
7434 eassert (it
->s
== NULL
&& STRINGP (it
->string
));
7435 /* Don't advance past string end. These conditions are true
7436 when set_iterator_to_next is called at the end of
7437 get_next_display_element, in which case the Lisp string is
7438 already exhausted, and all we want is pop the iterator
7440 if (it
->current
.overlay_string_index
>= 0)
7442 /* This is an overlay string, so there's no padding with
7443 spaces, and the number of characters in the string is
7444 where the string ends. */
7445 if (IT_STRING_CHARPOS (*it
) >= SCHARS (it
->string
))
7446 goto consider_string_end
;
7450 /* Not an overlay string. There could be padding, so test
7451 against it->end_charpos. */
7452 if (IT_STRING_CHARPOS (*it
) >= it
->end_charpos
)
7453 goto consider_string_end
;
7455 if (it
->cmp_it
.id
>= 0)
7457 /* We are delivering display elements from a composition.
7458 Update the string position past the grapheme cluster
7459 we've just processed. */
7462 IT_STRING_CHARPOS (*it
) += it
->cmp_it
.nchars
;
7463 IT_STRING_BYTEPOS (*it
) += it
->cmp_it
.nbytes
;
7469 for (i
= 0; i
< it
->cmp_it
.nchars
; i
++)
7470 bidi_move_to_visually_next (&it
->bidi_it
);
7471 IT_STRING_BYTEPOS (*it
) = it
->bidi_it
.bytepos
;
7472 IT_STRING_CHARPOS (*it
) = it
->bidi_it
.charpos
;
7475 /* Did we exhaust all the grapheme clusters of this
7477 if ((! it
->bidi_p
|| ! it
->cmp_it
.reversed_p
)
7478 && (it
->cmp_it
.to
< it
->cmp_it
.nglyphs
))
7480 /* Not all the grapheme clusters were processed yet;
7481 advance to the next cluster. */
7482 it
->cmp_it
.from
= it
->cmp_it
.to
;
7484 else if ((it
->bidi_p
&& it
->cmp_it
.reversed_p
)
7485 && it
->cmp_it
.from
> 0)
7487 /* Likewise: advance to the next cluster, but going in
7488 the reverse direction. */
7489 it
->cmp_it
.to
= it
->cmp_it
.from
;
7493 /* This composition was fully processed; find the next
7494 candidate place for checking for composed
7496 /* Always limit string searches to the string length;
7497 any padding spaces are not part of the string, and
7498 there cannot be any compositions in that padding. */
7499 ptrdiff_t stop
= SCHARS (it
->string
);
7501 if (it
->bidi_p
&& it
->bidi_it
.scan_dir
< 0)
7503 else if (it
->end_charpos
< stop
)
7505 /* Cf. PRECISION in reseat_to_string: we might be
7506 limited in how many of the string characters we
7508 stop
= it
->end_charpos
;
7510 composition_compute_stop_pos (&it
->cmp_it
,
7511 IT_STRING_CHARPOS (*it
),
7512 IT_STRING_BYTEPOS (*it
), stop
,
7519 /* If the string position is beyond string's end, it
7520 means next_element_from_string is padding the string
7521 with blanks, in which case we bypass the bidi
7522 iterator, because it cannot deal with such virtual
7524 || IT_STRING_CHARPOS (*it
) >= it
->bidi_it
.string
.schars
)
7526 IT_STRING_BYTEPOS (*it
) += it
->len
;
7527 IT_STRING_CHARPOS (*it
) += 1;
7531 int prev_scan_dir
= it
->bidi_it
.scan_dir
;
7533 bidi_move_to_visually_next (&it
->bidi_it
);
7534 IT_STRING_BYTEPOS (*it
) = it
->bidi_it
.bytepos
;
7535 IT_STRING_CHARPOS (*it
) = it
->bidi_it
.charpos
;
7536 /* If the scan direction changes, we may need to update
7537 the place where to check for composed characters. */
7538 if (prev_scan_dir
!= it
->bidi_it
.scan_dir
)
7540 ptrdiff_t stop
= SCHARS (it
->string
);
7542 if (it
->bidi_it
.scan_dir
< 0)
7544 else if (it
->end_charpos
< stop
)
7545 stop
= it
->end_charpos
;
7547 composition_compute_stop_pos (&it
->cmp_it
,
7548 IT_STRING_CHARPOS (*it
),
7549 IT_STRING_BYTEPOS (*it
), stop
,
7555 consider_string_end
:
7557 if (it
->current
.overlay_string_index
>= 0)
7559 /* IT->string is an overlay string. Advance to the
7560 next, if there is one. */
7561 if (IT_STRING_CHARPOS (*it
) >= SCHARS (it
->string
))
7564 next_overlay_string (it
);
7566 setup_for_ellipsis (it
, 0);
7571 /* IT->string is not an overlay string. If we reached
7572 its end, and there is something on IT->stack, proceed
7573 with what is on the stack. This can be either another
7574 string, this time an overlay string, or a buffer. */
7575 if (IT_STRING_CHARPOS (*it
) == SCHARS (it
->string
)
7579 if (it
->method
== GET_FROM_STRING
)
7580 goto consider_string_end
;
7585 case GET_FROM_IMAGE
:
7586 case GET_FROM_STRETCH
:
7587 #ifdef HAVE_XWIDGETS
7588 case GET_FROM_XWIDGET
:
7591 /* The position etc with which we have to proceed are on
7592 the stack. The position may be at the end of a string,
7593 if the `display' property takes up the whole string. */
7594 eassert (it
->sp
> 0);
7596 if (it
->method
== GET_FROM_STRING
)
7597 goto consider_string_end
;
7601 /* There are no other methods defined, so this should be a bug. */
7605 eassert (it
->method
!= GET_FROM_STRING
7606 || (STRINGP (it
->string
)
7607 && IT_STRING_CHARPOS (*it
) >= 0));
7610 /* Load IT's display element fields with information about the next
7611 display element which comes from a display table entry or from the
7612 result of translating a control character to one of the forms `^C'
7615 IT->dpvec holds the glyphs to return as characters.
7616 IT->saved_face_id holds the face id before the display vector--it
7617 is restored into IT->face_id in set_iterator_to_next. */
7620 next_element_from_display_vector (struct it
*it
)
7623 int prev_face_id
= it
->face_id
;
7627 eassert (it
->dpvec
&& it
->current
.dpvec_index
>= 0);
7629 it
->face_id
= it
->saved_face_id
;
7631 /* KFS: This code used to check ip->dpvec[0] instead of the current element.
7632 That seemed totally bogus - so I changed it... */
7633 gc
= it
->dpvec
[it
->current
.dpvec_index
];
7635 if (GLYPH_CODE_P (gc
))
7637 struct face
*this_face
, *prev_face
, *next_face
;
7639 it
->c
= GLYPH_CODE_CHAR (gc
);
7640 it
->len
= CHAR_BYTES (it
->c
);
7642 /* The entry may contain a face id to use. Such a face id is
7643 the id of a Lisp face, not a realized face. A face id of
7644 zero means no face is specified. */
7645 if (it
->dpvec_face_id
>= 0)
7646 it
->face_id
= it
->dpvec_face_id
;
7649 int lface_id
= GLYPH_CODE_FACE (gc
);
7651 it
->face_id
= merge_faces (it
->f
, Qt
, lface_id
,
7655 /* Glyphs in the display vector could have the box face, so we
7656 need to set the related flags in the iterator, as
7658 this_face
= FACE_FROM_ID (it
->f
, it
->face_id
);
7659 prev_face
= FACE_FROM_ID (it
->f
, prev_face_id
);
7661 /* Is this character the first character of a box-face run? */
7662 it
->start_of_box_run_p
= (this_face
&& this_face
->box
!= FACE_NO_BOX
7664 || prev_face
->box
== FACE_NO_BOX
));
7666 /* For the last character of the box-face run, we need to look
7667 either at the next glyph from the display vector, or at the
7668 face we saw before the display vector. */
7669 next_face_id
= it
->saved_face_id
;
7670 if (it
->current
.dpvec_index
< it
->dpend
- it
->dpvec
- 1)
7672 if (it
->dpvec_face_id
>= 0)
7673 next_face_id
= it
->dpvec_face_id
;
7677 GLYPH_CODE_FACE (it
->dpvec
[it
->current
.dpvec_index
+ 1]);
7680 next_face_id
= merge_faces (it
->f
, Qt
, lface_id
,
7684 next_face
= FACE_FROM_ID (it
->f
, next_face_id
);
7685 it
->end_of_box_run_p
= (this_face
&& this_face
->box
!= FACE_NO_BOX
7687 || next_face
->box
== FACE_NO_BOX
));
7688 it
->face_box_p
= this_face
&& this_face
->box
!= FACE_NO_BOX
;
7691 /* Display table entry is invalid. Return a space. */
7692 it
->c
= ' ', it
->len
= 1;
7694 /* Don't change position and object of the iterator here. They are
7695 still the values of the character that had this display table
7696 entry or was translated, and that's what we want. */
7697 it
->what
= IT_CHARACTER
;
7701 /* Get the first element of string/buffer in the visual order, after
7702 being reseated to a new position in a string or a buffer. */
7704 get_visually_first_element (struct it
*it
)
7706 int string_p
= STRINGP (it
->string
) || it
->s
;
7707 ptrdiff_t eob
= (string_p
? it
->bidi_it
.string
.schars
: ZV
);
7708 ptrdiff_t bob
= (string_p
? 0 : BEGV
);
7710 if (STRINGP (it
->string
))
7712 it
->bidi_it
.charpos
= IT_STRING_CHARPOS (*it
);
7713 it
->bidi_it
.bytepos
= IT_STRING_BYTEPOS (*it
);
7717 it
->bidi_it
.charpos
= IT_CHARPOS (*it
);
7718 it
->bidi_it
.bytepos
= IT_BYTEPOS (*it
);
7721 if (it
->bidi_it
.charpos
== eob
)
7723 /* Nothing to do, but reset the FIRST_ELT flag, like
7724 bidi_paragraph_init does, because we are not going to
7726 it
->bidi_it
.first_elt
= 0;
7728 else if (it
->bidi_it
.charpos
== bob
7730 && (FETCH_CHAR (it
->bidi_it
.bytepos
- 1) == '\n'
7731 || FETCH_CHAR (it
->bidi_it
.bytepos
) == '\n')))
7733 /* If we are at the beginning of a line/string, we can produce
7734 the next element right away. */
7735 bidi_paragraph_init (it
->paragraph_embedding
, &it
->bidi_it
, 1);
7736 bidi_move_to_visually_next (&it
->bidi_it
);
7740 ptrdiff_t orig_bytepos
= it
->bidi_it
.bytepos
;
7742 /* We need to prime the bidi iterator starting at the line's or
7743 string's beginning, before we will be able to produce the
7746 it
->bidi_it
.charpos
= it
->bidi_it
.bytepos
= 0;
7748 it
->bidi_it
.charpos
= find_newline_no_quit (IT_CHARPOS (*it
),
7749 IT_BYTEPOS (*it
), -1,
7750 &it
->bidi_it
.bytepos
);
7751 bidi_paragraph_init (it
->paragraph_embedding
, &it
->bidi_it
, 1);
7754 /* Now return to buffer/string position where we were asked
7755 to get the next display element, and produce that. */
7756 bidi_move_to_visually_next (&it
->bidi_it
);
7758 while (it
->bidi_it
.bytepos
!= orig_bytepos
7759 && it
->bidi_it
.charpos
< eob
);
7762 /* Adjust IT's position information to where we ended up. */
7763 if (STRINGP (it
->string
))
7765 IT_STRING_CHARPOS (*it
) = it
->bidi_it
.charpos
;
7766 IT_STRING_BYTEPOS (*it
) = it
->bidi_it
.bytepos
;
7770 IT_CHARPOS (*it
) = it
->bidi_it
.charpos
;
7771 IT_BYTEPOS (*it
) = it
->bidi_it
.bytepos
;
7774 if (STRINGP (it
->string
) || !it
->s
)
7776 ptrdiff_t stop
, charpos
, bytepos
;
7778 if (STRINGP (it
->string
))
7781 stop
= SCHARS (it
->string
);
7782 if (stop
> it
->end_charpos
)
7783 stop
= it
->end_charpos
;
7784 charpos
= IT_STRING_CHARPOS (*it
);
7785 bytepos
= IT_STRING_BYTEPOS (*it
);
7789 stop
= it
->end_charpos
;
7790 charpos
= IT_CHARPOS (*it
);
7791 bytepos
= IT_BYTEPOS (*it
);
7793 if (it
->bidi_it
.scan_dir
< 0)
7795 composition_compute_stop_pos (&it
->cmp_it
, charpos
, bytepos
, stop
,
7800 /* Load IT with the next display element from Lisp string IT->string.
7801 IT->current.string_pos is the current position within the string.
7802 If IT->current.overlay_string_index >= 0, the Lisp string is an
7806 next_element_from_string (struct it
*it
)
7808 struct text_pos position
;
7810 eassert (STRINGP (it
->string
));
7811 eassert (!it
->bidi_p
|| EQ (it
->string
, it
->bidi_it
.string
.lstring
));
7812 eassert (IT_STRING_CHARPOS (*it
) >= 0);
7813 position
= it
->current
.string_pos
;
7815 /* With bidi reordering, the character to display might not be the
7816 character at IT_STRING_CHARPOS. BIDI_IT.FIRST_ELT non-zero means
7817 that we were reseat()ed to a new string, whose paragraph
7818 direction is not known. */
7819 if (it
->bidi_p
&& it
->bidi_it
.first_elt
)
7821 get_visually_first_element (it
);
7822 SET_TEXT_POS (position
, IT_STRING_CHARPOS (*it
), IT_STRING_BYTEPOS (*it
));
7825 /* Time to check for invisible text? */
7826 if (IT_STRING_CHARPOS (*it
) < it
->end_charpos
)
7828 if (IT_STRING_CHARPOS (*it
) >= it
->stop_charpos
)
7831 || BIDI_AT_BASE_LEVEL (it
->bidi_it
)
7832 || IT_STRING_CHARPOS (*it
) == it
->stop_charpos
))
7834 /* With bidi non-linear iteration, we could find
7835 ourselves far beyond the last computed stop_charpos,
7836 with several other stop positions in between that we
7837 missed. Scan them all now, in buffer's logical
7838 order, until we find and handle the last stop_charpos
7839 that precedes our current position. */
7840 handle_stop_backwards (it
, it
->stop_charpos
);
7841 return GET_NEXT_DISPLAY_ELEMENT (it
);
7847 /* Take note of the stop position we just moved
7848 across, for when we will move back across it. */
7849 it
->prev_stop
= it
->stop_charpos
;
7850 /* If we are at base paragraph embedding level, take
7851 note of the last stop position seen at this
7853 if (BIDI_AT_BASE_LEVEL (it
->bidi_it
))
7854 it
->base_level_stop
= it
->stop_charpos
;
7858 /* Since a handler may have changed IT->method, we must
7860 return GET_NEXT_DISPLAY_ELEMENT (it
);
7864 /* If we are before prev_stop, we may have overstepped
7865 on our way backwards a stop_pos, and if so, we need
7866 to handle that stop_pos. */
7867 && IT_STRING_CHARPOS (*it
) < it
->prev_stop
7868 /* We can sometimes back up for reasons that have nothing
7869 to do with bidi reordering. E.g., compositions. The
7870 code below is only needed when we are above the base
7871 embedding level, so test for that explicitly. */
7872 && !BIDI_AT_BASE_LEVEL (it
->bidi_it
))
7874 /* If we lost track of base_level_stop, we have no better
7875 place for handle_stop_backwards to start from than string
7876 beginning. This happens, e.g., when we were reseated to
7877 the previous screenful of text by vertical-motion. */
7878 if (it
->base_level_stop
<= 0
7879 || IT_STRING_CHARPOS (*it
) < it
->base_level_stop
)
7880 it
->base_level_stop
= 0;
7881 handle_stop_backwards (it
, it
->base_level_stop
);
7882 return GET_NEXT_DISPLAY_ELEMENT (it
);
7886 if (it
->current
.overlay_string_index
>= 0)
7888 /* Get the next character from an overlay string. In overlay
7889 strings, there is no field width or padding with spaces to
7891 if (IT_STRING_CHARPOS (*it
) >= SCHARS (it
->string
))
7896 else if (CHAR_COMPOSED_P (it
, IT_STRING_CHARPOS (*it
),
7897 IT_STRING_BYTEPOS (*it
),
7898 it
->bidi_it
.scan_dir
< 0
7900 : SCHARS (it
->string
))
7901 && next_element_from_composition (it
))
7905 else if (STRING_MULTIBYTE (it
->string
))
7907 const unsigned char *s
= (SDATA (it
->string
)
7908 + IT_STRING_BYTEPOS (*it
));
7909 it
->c
= string_char_and_length (s
, &it
->len
);
7913 it
->c
= SREF (it
->string
, IT_STRING_BYTEPOS (*it
));
7919 /* Get the next character from a Lisp string that is not an
7920 overlay string. Such strings come from the mode line, for
7921 example. We may have to pad with spaces, or truncate the
7922 string. See also next_element_from_c_string. */
7923 if (IT_STRING_CHARPOS (*it
) >= it
->end_charpos
)
7928 else if (IT_STRING_CHARPOS (*it
) >= it
->string_nchars
)
7930 /* Pad with spaces. */
7931 it
->c
= ' ', it
->len
= 1;
7932 CHARPOS (position
) = BYTEPOS (position
) = -1;
7934 else if (CHAR_COMPOSED_P (it
, IT_STRING_CHARPOS (*it
),
7935 IT_STRING_BYTEPOS (*it
),
7936 it
->bidi_it
.scan_dir
< 0
7938 : it
->string_nchars
)
7939 && next_element_from_composition (it
))
7943 else if (STRING_MULTIBYTE (it
->string
))
7945 const unsigned char *s
= (SDATA (it
->string
)
7946 + IT_STRING_BYTEPOS (*it
));
7947 it
->c
= string_char_and_length (s
, &it
->len
);
7951 it
->c
= SREF (it
->string
, IT_STRING_BYTEPOS (*it
));
7956 /* Record what we have and where it came from. */
7957 it
->what
= IT_CHARACTER
;
7958 it
->object
= it
->string
;
7959 it
->position
= position
;
7964 /* Load IT with next display element from C string IT->s.
7965 IT->string_nchars is the maximum number of characters to return
7966 from the string. IT->end_charpos may be greater than
7967 IT->string_nchars when this function is called, in which case we
7968 may have to return padding spaces. Value is zero if end of string
7969 reached, including padding spaces. */
7972 next_element_from_c_string (struct it
*it
)
7974 bool success_p
= true;
7977 eassert (!it
->bidi_p
|| it
->s
== it
->bidi_it
.string
.s
);
7978 it
->what
= IT_CHARACTER
;
7979 BYTEPOS (it
->position
) = CHARPOS (it
->position
) = 0;
7980 it
->object
= make_number (0);
7982 /* With bidi reordering, the character to display might not be the
7983 character at IT_CHARPOS. BIDI_IT.FIRST_ELT non-zero means that
7984 we were reseated to a new string, whose paragraph direction is
7986 if (it
->bidi_p
&& it
->bidi_it
.first_elt
)
7987 get_visually_first_element (it
);
7989 /* IT's position can be greater than IT->string_nchars in case a
7990 field width or precision has been specified when the iterator was
7992 if (IT_CHARPOS (*it
) >= it
->end_charpos
)
7994 /* End of the game. */
7998 else if (IT_CHARPOS (*it
) >= it
->string_nchars
)
8000 /* Pad with spaces. */
8001 it
->c
= ' ', it
->len
= 1;
8002 BYTEPOS (it
->position
) = CHARPOS (it
->position
) = -1;
8004 else if (it
->multibyte_p
)
8005 it
->c
= string_char_and_length (it
->s
+ IT_BYTEPOS (*it
), &it
->len
);
8007 it
->c
= it
->s
[IT_BYTEPOS (*it
)], it
->len
= 1;
8013 /* Set up IT to return characters from an ellipsis, if appropriate.
8014 The definition of the ellipsis glyphs may come from a display table
8015 entry. This function fills IT with the first glyph from the
8016 ellipsis if an ellipsis is to be displayed. */
8019 next_element_from_ellipsis (struct it
*it
)
8021 if (it
->selective_display_ellipsis_p
)
8022 setup_for_ellipsis (it
, it
->len
);
8025 /* The face at the current position may be different from the
8026 face we find after the invisible text. Remember what it
8027 was in IT->saved_face_id, and signal that it's there by
8028 setting face_before_selective_p. */
8029 it
->saved_face_id
= it
->face_id
;
8030 it
->method
= GET_FROM_BUFFER
;
8031 it
->object
= it
->w
->contents
;
8032 reseat_at_next_visible_line_start (it
, 1);
8033 it
->face_before_selective_p
= true;
8036 return GET_NEXT_DISPLAY_ELEMENT (it
);
8040 /* Deliver an image display element. The iterator IT is already
8041 filled with image information (done in handle_display_prop). Value
8046 next_element_from_image (struct it
*it
)
8048 it
->what
= IT_IMAGE
;
8049 it
->ignore_overlay_strings_at_pos_p
= 0;
8053 #ifdef HAVE_XWIDGETS
8054 /* im not sure about this FIXME JAVE*/
8056 next_element_from_xwidget (struct it
*it
)
8058 it
->what
= IT_XWIDGET
;
8059 //assert_valid_xwidget_id(it->xwidget_id,"next_element_from_xwidget");
8060 //this is shaky because why do we set "what" if we dont set the other parts??
8061 //printf("xwidget_id %d: in next_element_from_xwidget: FIXME \n", it->xwidget_id);
8067 /* Fill iterator IT with next display element from a stretch glyph
8068 property. IT->object is the value of the text property. Value is
8072 next_element_from_stretch (struct it
*it
)
8074 it
->what
= IT_STRETCH
;
8078 /* Scan backwards from IT's current position until we find a stop
8079 position, or until BEGV. This is called when we find ourself
8080 before both the last known prev_stop and base_level_stop while
8081 reordering bidirectional text. */
8084 compute_stop_pos_backwards (struct it
*it
)
8086 const int SCAN_BACK_LIMIT
= 1000;
8087 struct text_pos pos
;
8088 struct display_pos save_current
= it
->current
;
8089 struct text_pos save_position
= it
->position
;
8090 ptrdiff_t charpos
= IT_CHARPOS (*it
);
8091 ptrdiff_t where_we_are
= charpos
;
8092 ptrdiff_t save_stop_pos
= it
->stop_charpos
;
8093 ptrdiff_t save_end_pos
= it
->end_charpos
;
8095 eassert (NILP (it
->string
) && !it
->s
);
8096 eassert (it
->bidi_p
);
8100 it
->end_charpos
= min (charpos
+ 1, ZV
);
8101 charpos
= max (charpos
- SCAN_BACK_LIMIT
, BEGV
);
8102 SET_TEXT_POS (pos
, charpos
, CHAR_TO_BYTE (charpos
));
8103 reseat_1 (it
, pos
, 0);
8104 compute_stop_pos (it
);
8105 /* We must advance forward, right? */
8106 if (it
->stop_charpos
<= charpos
)
8109 while (charpos
> BEGV
&& it
->stop_charpos
>= it
->end_charpos
);
8111 if (it
->stop_charpos
<= where_we_are
)
8112 it
->prev_stop
= it
->stop_charpos
;
8114 it
->prev_stop
= BEGV
;
8116 it
->current
= save_current
;
8117 it
->position
= save_position
;
8118 it
->stop_charpos
= save_stop_pos
;
8119 it
->end_charpos
= save_end_pos
;
8122 /* Scan forward from CHARPOS in the current buffer/string, until we
8123 find a stop position > current IT's position. Then handle the stop
8124 position before that. This is called when we bump into a stop
8125 position while reordering bidirectional text. CHARPOS should be
8126 the last previously processed stop_pos (or BEGV/0, if none were
8127 processed yet) whose position is less that IT's current
8131 handle_stop_backwards (struct it
*it
, ptrdiff_t charpos
)
8133 int bufp
= !STRINGP (it
->string
);
8134 ptrdiff_t where_we_are
= (bufp
? IT_CHARPOS (*it
) : IT_STRING_CHARPOS (*it
));
8135 struct display_pos save_current
= it
->current
;
8136 struct text_pos save_position
= it
->position
;
8137 struct text_pos pos1
;
8138 ptrdiff_t next_stop
;
8140 /* Scan in strict logical order. */
8141 eassert (it
->bidi_p
);
8145 it
->prev_stop
= charpos
;
8148 SET_TEXT_POS (pos1
, charpos
, CHAR_TO_BYTE (charpos
));
8149 reseat_1 (it
, pos1
, 0);
8152 it
->current
.string_pos
= string_pos (charpos
, it
->string
);
8153 compute_stop_pos (it
);
8154 /* We must advance forward, right? */
8155 if (it
->stop_charpos
<= it
->prev_stop
)
8157 charpos
= it
->stop_charpos
;
8159 while (charpos
<= where_we_are
);
8162 it
->current
= save_current
;
8163 it
->position
= save_position
;
8164 next_stop
= it
->stop_charpos
;
8165 it
->stop_charpos
= it
->prev_stop
;
8167 it
->stop_charpos
= next_stop
;
8170 /* Load IT with the next display element from current_buffer. Value
8171 is zero if end of buffer reached. IT->stop_charpos is the next
8172 position at which to stop and check for text properties or buffer
8176 next_element_from_buffer (struct it
*it
)
8178 bool success_p
= true;
8180 eassert (IT_CHARPOS (*it
) >= BEGV
);
8181 eassert (NILP (it
->string
) && !it
->s
);
8182 eassert (!it
->bidi_p
8183 || (EQ (it
->bidi_it
.string
.lstring
, Qnil
)
8184 && it
->bidi_it
.string
.s
== NULL
));
8186 /* With bidi reordering, the character to display might not be the
8187 character at IT_CHARPOS. BIDI_IT.FIRST_ELT non-zero means that
8188 we were reseat()ed to a new buffer position, which is potentially
8189 a different paragraph. */
8190 if (it
->bidi_p
&& it
->bidi_it
.first_elt
)
8192 get_visually_first_element (it
);
8193 SET_TEXT_POS (it
->position
, IT_CHARPOS (*it
), IT_BYTEPOS (*it
));
8196 if (IT_CHARPOS (*it
) >= it
->stop_charpos
)
8198 if (IT_CHARPOS (*it
) >= it
->end_charpos
)
8200 int overlay_strings_follow_p
;
8202 /* End of the game, except when overlay strings follow that
8203 haven't been returned yet. */
8204 if (it
->overlay_strings_at_end_processed_p
)
8205 overlay_strings_follow_p
= 0;
8208 it
->overlay_strings_at_end_processed_p
= true;
8209 overlay_strings_follow_p
= get_overlay_strings (it
, 0);
8212 if (overlay_strings_follow_p
)
8213 success_p
= GET_NEXT_DISPLAY_ELEMENT (it
);
8217 it
->position
= it
->current
.pos
;
8221 else if (!(!it
->bidi_p
8222 || BIDI_AT_BASE_LEVEL (it
->bidi_it
)
8223 || IT_CHARPOS (*it
) == it
->stop_charpos
))
8225 /* With bidi non-linear iteration, we could find ourselves
8226 far beyond the last computed stop_charpos, with several
8227 other stop positions in between that we missed. Scan
8228 them all now, in buffer's logical order, until we find
8229 and handle the last stop_charpos that precedes our
8230 current position. */
8231 handle_stop_backwards (it
, it
->stop_charpos
);
8232 return GET_NEXT_DISPLAY_ELEMENT (it
);
8238 /* Take note of the stop position we just moved across,
8239 for when we will move back across it. */
8240 it
->prev_stop
= it
->stop_charpos
;
8241 /* If we are at base paragraph embedding level, take
8242 note of the last stop position seen at this
8244 if (BIDI_AT_BASE_LEVEL (it
->bidi_it
))
8245 it
->base_level_stop
= it
->stop_charpos
;
8248 return GET_NEXT_DISPLAY_ELEMENT (it
);
8252 /* If we are before prev_stop, we may have overstepped on
8253 our way backwards a stop_pos, and if so, we need to
8254 handle that stop_pos. */
8255 && IT_CHARPOS (*it
) < it
->prev_stop
8256 /* We can sometimes back up for reasons that have nothing
8257 to do with bidi reordering. E.g., compositions. The
8258 code below is only needed when we are above the base
8259 embedding level, so test for that explicitly. */
8260 && !BIDI_AT_BASE_LEVEL (it
->bidi_it
))
8262 if (it
->base_level_stop
<= 0
8263 || IT_CHARPOS (*it
) < it
->base_level_stop
)
8265 /* If we lost track of base_level_stop, we need to find
8266 prev_stop by looking backwards. This happens, e.g., when
8267 we were reseated to the previous screenful of text by
8269 it
->base_level_stop
= BEGV
;
8270 compute_stop_pos_backwards (it
);
8271 handle_stop_backwards (it
, it
->prev_stop
);
8274 handle_stop_backwards (it
, it
->base_level_stop
);
8275 return GET_NEXT_DISPLAY_ELEMENT (it
);
8279 /* No face changes, overlays etc. in sight, so just return a
8280 character from current_buffer. */
8284 /* We moved to the next buffer position, so any info about
8285 previously seen overlays is no longer valid. */
8286 it
->ignore_overlay_strings_at_pos_p
= 0;
8288 /* Maybe run the redisplay end trigger hook. Performance note:
8289 This doesn't seem to cost measurable time. */
8290 if (it
->redisplay_end_trigger_charpos
8292 && IT_CHARPOS (*it
) >= it
->redisplay_end_trigger_charpos
)
8293 run_redisplay_end_trigger_hook (it
);
8295 stop
= it
->bidi_it
.scan_dir
< 0 ? -1 : it
->end_charpos
;
8296 if (CHAR_COMPOSED_P (it
, IT_CHARPOS (*it
), IT_BYTEPOS (*it
),
8298 && next_element_from_composition (it
))
8303 /* Get the next character, maybe multibyte. */
8304 p
= BYTE_POS_ADDR (IT_BYTEPOS (*it
));
8305 if (it
->multibyte_p
&& !ASCII_CHAR_P (*p
))
8306 it
->c
= STRING_CHAR_AND_LENGTH (p
, it
->len
);
8308 it
->c
= *p
, it
->len
= 1;
8310 /* Record what we have and where it came from. */
8311 it
->what
= IT_CHARACTER
;
8312 it
->object
= it
->w
->contents
;
8313 it
->position
= it
->current
.pos
;
8315 /* Normally we return the character found above, except when we
8316 really want to return an ellipsis for selective display. */
8321 /* A value of selective > 0 means hide lines indented more
8322 than that number of columns. */
8323 if (it
->selective
> 0
8324 && IT_CHARPOS (*it
) + 1 < ZV
8325 && indented_beyond_p (IT_CHARPOS (*it
) + 1,
8326 IT_BYTEPOS (*it
) + 1,
8329 success_p
= next_element_from_ellipsis (it
);
8330 it
->dpvec_char_len
= -1;
8333 else if (it
->c
== '\r' && it
->selective
== -1)
8335 /* A value of selective == -1 means that everything from the
8336 CR to the end of the line is invisible, with maybe an
8337 ellipsis displayed for it. */
8338 success_p
= next_element_from_ellipsis (it
);
8339 it
->dpvec_char_len
= -1;
8344 /* Value is zero if end of buffer reached. */
8345 eassert (!success_p
|| it
->what
!= IT_CHARACTER
|| it
->len
> 0);
8350 /* Run the redisplay end trigger hook for IT. */
8353 run_redisplay_end_trigger_hook (struct it
*it
)
8355 Lisp_Object args
[3];
8357 /* IT->glyph_row should be non-null, i.e. we should be actually
8358 displaying something, or otherwise we should not run the hook. */
8359 eassert (it
->glyph_row
);
8361 /* Set up hook arguments. */
8362 args
[0] = Qredisplay_end_trigger_functions
;
8363 args
[1] = it
->window
;
8364 XSETINT (args
[2], it
->redisplay_end_trigger_charpos
);
8365 it
->redisplay_end_trigger_charpos
= 0;
8367 /* Since we are *trying* to run these functions, don't try to run
8368 them again, even if they get an error. */
8369 wset_redisplay_end_trigger (it
->w
, Qnil
);
8370 Frun_hook_with_args (3, args
);
8372 /* Notice if it changed the face of the character we are on. */
8373 handle_face_prop (it
);
8377 /* Deliver a composition display element. Unlike the other
8378 next_element_from_XXX, this function is not registered in the array
8379 get_next_element[]. It is called from next_element_from_buffer and
8380 next_element_from_string when necessary. */
8383 next_element_from_composition (struct it
*it
)
8385 it
->what
= IT_COMPOSITION
;
8386 it
->len
= it
->cmp_it
.nbytes
;
8387 if (STRINGP (it
->string
))
8391 IT_STRING_CHARPOS (*it
) += it
->cmp_it
.nchars
;
8392 IT_STRING_BYTEPOS (*it
) += it
->cmp_it
.nbytes
;
8395 it
->position
= it
->current
.string_pos
;
8396 it
->object
= it
->string
;
8397 it
->c
= composition_update_it (&it
->cmp_it
, IT_STRING_CHARPOS (*it
),
8398 IT_STRING_BYTEPOS (*it
), it
->string
);
8404 IT_CHARPOS (*it
) += it
->cmp_it
.nchars
;
8405 IT_BYTEPOS (*it
) += it
->cmp_it
.nbytes
;
8408 if (it
->bidi_it
.new_paragraph
)
8409 bidi_paragraph_init (it
->paragraph_embedding
, &it
->bidi_it
, 0);
8410 /* Resync the bidi iterator with IT's new position.
8411 FIXME: this doesn't support bidirectional text. */
8412 while (it
->bidi_it
.charpos
< IT_CHARPOS (*it
))
8413 bidi_move_to_visually_next (&it
->bidi_it
);
8417 it
->position
= it
->current
.pos
;
8418 it
->object
= it
->w
->contents
;
8419 it
->c
= composition_update_it (&it
->cmp_it
, IT_CHARPOS (*it
),
8420 IT_BYTEPOS (*it
), Qnil
);
8427 /***********************************************************************
8428 Moving an iterator without producing glyphs
8429 ***********************************************************************/
8431 /* Check if iterator is at a position corresponding to a valid buffer
8432 position after some move_it_ call. */
8434 #define IT_POS_VALID_AFTER_MOVE_P(it) \
8435 ((it)->method == GET_FROM_STRING \
8436 ? IT_STRING_CHARPOS (*it) == 0 \
8440 /* Move iterator IT to a specified buffer or X position within one
8441 line on the display without producing glyphs.
8443 OP should be a bit mask including some or all of these bits:
8444 MOVE_TO_X: Stop upon reaching x-position TO_X.
8445 MOVE_TO_POS: Stop upon reaching buffer or string position TO_CHARPOS.
8446 Regardless of OP's value, stop upon reaching the end of the display line.
8448 TO_X is normally a value 0 <= TO_X <= IT->last_visible_x.
8449 This means, in particular, that TO_X includes window's horizontal
8452 The return value has several possible values that
8453 say what condition caused the scan to stop:
8455 MOVE_POS_MATCH_OR_ZV
8456 - when TO_POS or ZV was reached.
8459 -when TO_X was reached before TO_POS or ZV were reached.
8462 - when we reached the end of the display area and the line must
8466 - when we reached the end of the display area and the line is
8470 - when we stopped at a line end, i.e. a newline or a CR and selective
8473 static enum move_it_result
8474 move_it_in_display_line_to (struct it
*it
,
8475 ptrdiff_t to_charpos
, int to_x
,
8476 enum move_operation_enum op
)
8478 enum move_it_result result
= MOVE_UNDEFINED
;
8479 struct glyph_row
*saved_glyph_row
;
8480 struct it wrap_it
, atpos_it
, atx_it
, ppos_it
;
8481 void *wrap_data
= NULL
, *atpos_data
= NULL
, *atx_data
= NULL
;
8482 void *ppos_data
= NULL
;
8484 enum it_method prev_method
= it
->method
;
8485 ptrdiff_t closest_pos
IF_LINT (= 0), prev_pos
= IT_CHARPOS (*it
);
8486 int saw_smaller_pos
= prev_pos
< to_charpos
;
8488 /* Don't produce glyphs in produce_glyphs. */
8489 saved_glyph_row
= it
->glyph_row
;
8490 it
->glyph_row
= NULL
;
8492 /* Use wrap_it to save a copy of IT wherever a word wrap could
8493 occur. Use atpos_it to save a copy of IT at the desired buffer
8494 position, if found, so that we can scan ahead and check if the
8495 word later overshoots the window edge. Use atx_it similarly, for
8501 /* Use ppos_it under bidi reordering to save a copy of IT for the
8502 initial position. We restore that position in IT when we have
8503 scanned the entire display line without finding a match for
8504 TO_CHARPOS and all the character positions are greater than
8505 TO_CHARPOS. We then restart the scan from the initial position,
8506 and stop at CLOSEST_POS, which is a position > TO_CHARPOS that is
8507 the closest to TO_CHARPOS. */
8510 if ((op
& MOVE_TO_POS
) && IT_CHARPOS (*it
) >= to_charpos
)
8512 SAVE_IT (ppos_it
, *it
, ppos_data
);
8513 closest_pos
= IT_CHARPOS (*it
);
8519 #define BUFFER_POS_REACHED_P() \
8520 ((op & MOVE_TO_POS) != 0 \
8521 && BUFFERP (it->object) \
8522 && (IT_CHARPOS (*it) == to_charpos \
8524 || BIDI_AT_BASE_LEVEL (it->bidi_it)) \
8525 && IT_CHARPOS (*it) > to_charpos) \
8526 || (it->what == IT_COMPOSITION \
8527 && ((IT_CHARPOS (*it) > to_charpos \
8528 && to_charpos >= it->cmp_it.charpos) \
8529 || (IT_CHARPOS (*it) < to_charpos \
8530 && to_charpos <= it->cmp_it.charpos)))) \
8531 && (it->method == GET_FROM_BUFFER \
8532 || (it->method == GET_FROM_DISPLAY_VECTOR \
8533 && it->dpvec + it->current.dpvec_index + 1 >= it->dpend)))
8535 /* If there's a line-/wrap-prefix, handle it. */
8536 if (it
->hpos
== 0 && it
->method
== GET_FROM_BUFFER
8537 && it
->current_y
< it
->last_visible_y
)
8538 handle_line_prefix (it
);
8540 if (IT_CHARPOS (*it
) < CHARPOS (this_line_min_pos
))
8541 SET_TEXT_POS (this_line_min_pos
, IT_CHARPOS (*it
), IT_BYTEPOS (*it
));
8545 int x
, i
, ascent
= 0, descent
= 0;
8547 /* Utility macro to reset an iterator with x, ascent, and descent. */
8548 #define IT_RESET_X_ASCENT_DESCENT(IT) \
8549 ((IT)->current_x = x, (IT)->max_ascent = ascent, \
8550 (IT)->max_descent = descent)
8552 /* Stop if we move beyond TO_CHARPOS (after an image or a
8553 display string or stretch glyph). */
8554 if ((op
& MOVE_TO_POS
) != 0
8555 && BUFFERP (it
->object
)
8556 && it
->method
== GET_FROM_BUFFER
8558 /* When the iterator is at base embedding level, we
8559 are guaranteed that characters are delivered for
8560 display in strictly increasing order of their
8561 buffer positions. */
8562 || BIDI_AT_BASE_LEVEL (it
->bidi_it
))
8563 && IT_CHARPOS (*it
) > to_charpos
)
8565 && (prev_method
== GET_FROM_IMAGE
8566 || prev_method
== GET_FROM_STRETCH
8567 || prev_method
== GET_FROM_STRING
)
8568 /* Passed TO_CHARPOS from left to right. */
8569 && ((prev_pos
< to_charpos
8570 && IT_CHARPOS (*it
) > to_charpos
)
8571 /* Passed TO_CHARPOS from right to left. */
8572 || (prev_pos
> to_charpos
8573 && IT_CHARPOS (*it
) < to_charpos
)))))
8575 if (it
->line_wrap
!= WORD_WRAP
|| wrap_it
.sp
< 0)
8577 result
= MOVE_POS_MATCH_OR_ZV
;
8580 else if (it
->line_wrap
== WORD_WRAP
&& atpos_it
.sp
< 0)
8581 /* If wrap_it is valid, the current position might be in a
8582 word that is wrapped. So, save the iterator in
8583 atpos_it and continue to see if wrapping happens. */
8584 SAVE_IT (atpos_it
, *it
, atpos_data
);
8587 /* Stop when ZV reached.
8588 We used to stop here when TO_CHARPOS reached as well, but that is
8589 too soon if this glyph does not fit on this line. So we handle it
8590 explicitly below. */
8591 if (!get_next_display_element (it
))
8593 result
= MOVE_POS_MATCH_OR_ZV
;
8597 if (it
->line_wrap
== TRUNCATE
)
8599 if (BUFFER_POS_REACHED_P ())
8601 result
= MOVE_POS_MATCH_OR_ZV
;
8607 if (it
->line_wrap
== WORD_WRAP
&& it
->area
== TEXT_AREA
)
8609 if (IT_DISPLAYING_WHITESPACE (it
))
8613 /* We have reached a glyph that follows one or more
8614 whitespace characters. If the position is
8615 already found, we are done. */
8616 if (atpos_it
.sp
>= 0)
8618 RESTORE_IT (it
, &atpos_it
, atpos_data
);
8619 result
= MOVE_POS_MATCH_OR_ZV
;
8624 RESTORE_IT (it
, &atx_it
, atx_data
);
8625 result
= MOVE_X_REACHED
;
8628 /* Otherwise, we can wrap here. */
8629 SAVE_IT (wrap_it
, *it
, wrap_data
);
8635 /* Remember the line height for the current line, in case
8636 the next element doesn't fit on the line. */
8637 ascent
= it
->max_ascent
;
8638 descent
= it
->max_descent
;
8640 /* The call to produce_glyphs will get the metrics of the
8641 display element IT is loaded with. Record the x-position
8642 before this display element, in case it doesn't fit on the
8646 PRODUCE_GLYPHS (it
);
8648 if (it
->area
!= TEXT_AREA
)
8650 prev_method
= it
->method
;
8651 if (it
->method
== GET_FROM_BUFFER
)
8652 prev_pos
= IT_CHARPOS (*it
);
8653 set_iterator_to_next (it
, 1);
8654 if (IT_CHARPOS (*it
) < CHARPOS (this_line_min_pos
))
8655 SET_TEXT_POS (this_line_min_pos
,
8656 IT_CHARPOS (*it
), IT_BYTEPOS (*it
));
8658 && (op
& MOVE_TO_POS
)
8659 && IT_CHARPOS (*it
) > to_charpos
8660 && IT_CHARPOS (*it
) < closest_pos
)
8661 closest_pos
= IT_CHARPOS (*it
);
8665 /* The number of glyphs we get back in IT->nglyphs will normally
8666 be 1 except when IT->c is (i) a TAB, or (ii) a multi-glyph
8667 character on a terminal frame, or (iii) a line end. For the
8668 second case, IT->nglyphs - 1 padding glyphs will be present.
8669 (On X frames, there is only one glyph produced for a
8670 composite character.)
8672 The behavior implemented below means, for continuation lines,
8673 that as many spaces of a TAB as fit on the current line are
8674 displayed there. For terminal frames, as many glyphs of a
8675 multi-glyph character are displayed in the current line, too.
8676 This is what the old redisplay code did, and we keep it that
8677 way. Under X, the whole shape of a complex character must
8678 fit on the line or it will be completely displayed in the
8681 Note that both for tabs and padding glyphs, all glyphs have
8685 /* More than one glyph or glyph doesn't fit on line. All
8686 glyphs have the same width. */
8687 int single_glyph_width
= it
->pixel_width
/ it
->nglyphs
;
8689 int x_before_this_char
= x
;
8690 int hpos_before_this_char
= it
->hpos
;
8692 for (i
= 0; i
< it
->nglyphs
; ++i
, x
= new_x
)
8694 new_x
= x
+ single_glyph_width
;
8696 /* We want to leave anything reaching TO_X to the caller. */
8697 if ((op
& MOVE_TO_X
) && new_x
> to_x
)
8699 if (BUFFER_POS_REACHED_P ())
8701 if (it
->line_wrap
!= WORD_WRAP
|| wrap_it
.sp
< 0)
8702 goto buffer_pos_reached
;
8703 if (atpos_it
.sp
< 0)
8705 SAVE_IT (atpos_it
, *it
, atpos_data
);
8706 IT_RESET_X_ASCENT_DESCENT (&atpos_it
);
8711 if (it
->line_wrap
!= WORD_WRAP
|| wrap_it
.sp
< 0)
8714 result
= MOVE_X_REACHED
;
8719 SAVE_IT (atx_it
, *it
, atx_data
);
8720 IT_RESET_X_ASCENT_DESCENT (&atx_it
);
8725 if (/* Lines are continued. */
8726 it
->line_wrap
!= TRUNCATE
8727 && (/* And glyph doesn't fit on the line. */
8728 new_x
> it
->last_visible_x
8729 /* Or it fits exactly and we're on a window
8731 || (new_x
== it
->last_visible_x
8732 && FRAME_WINDOW_P (it
->f
)
8733 && ((it
->bidi_p
&& it
->bidi_it
.paragraph_dir
== R2L
)
8734 ? WINDOW_LEFT_FRINGE_WIDTH (it
->w
)
8735 : WINDOW_RIGHT_FRINGE_WIDTH (it
->w
)))))
8737 if (/* IT->hpos == 0 means the very first glyph
8738 doesn't fit on the line, e.g. a wide image. */
8740 || (new_x
== it
->last_visible_x
8741 && FRAME_WINDOW_P (it
->f
)))
8744 it
->current_x
= new_x
;
8746 /* The character's last glyph just barely fits
8748 if (i
== it
->nglyphs
- 1)
8750 /* If this is the destination position,
8751 return a position *before* it in this row,
8752 now that we know it fits in this row. */
8753 if (BUFFER_POS_REACHED_P ())
8755 if (it
->line_wrap
!= WORD_WRAP
8758 it
->hpos
= hpos_before_this_char
;
8759 it
->current_x
= x_before_this_char
;
8760 result
= MOVE_POS_MATCH_OR_ZV
;
8763 if (it
->line_wrap
== WORD_WRAP
8766 SAVE_IT (atpos_it
, *it
, atpos_data
);
8767 atpos_it
.current_x
= x_before_this_char
;
8768 atpos_it
.hpos
= hpos_before_this_char
;
8772 prev_method
= it
->method
;
8773 if (it
->method
== GET_FROM_BUFFER
)
8774 prev_pos
= IT_CHARPOS (*it
);
8775 set_iterator_to_next (it
, 1);
8776 if (IT_CHARPOS (*it
) < CHARPOS (this_line_min_pos
))
8777 SET_TEXT_POS (this_line_min_pos
,
8778 IT_CHARPOS (*it
), IT_BYTEPOS (*it
));
8779 /* On graphical terminals, newlines may
8780 "overflow" into the fringe if
8781 overflow-newline-into-fringe is non-nil.
8782 On text terminals, and on graphical
8783 terminals with no right margin, newlines
8784 may overflow into the last glyph on the
8786 if (!FRAME_WINDOW_P (it
->f
)
8788 && it
->bidi_it
.paragraph_dir
== R2L
)
8789 ? WINDOW_LEFT_FRINGE_WIDTH (it
->w
)
8790 : WINDOW_RIGHT_FRINGE_WIDTH (it
->w
)) == 0
8791 || IT_OVERFLOW_NEWLINE_INTO_FRINGE (it
))
8793 if (!get_next_display_element (it
))
8795 result
= MOVE_POS_MATCH_OR_ZV
;
8798 if (BUFFER_POS_REACHED_P ())
8800 if (ITERATOR_AT_END_OF_LINE_P (it
))
8801 result
= MOVE_POS_MATCH_OR_ZV
;
8803 result
= MOVE_LINE_CONTINUED
;
8806 if (ITERATOR_AT_END_OF_LINE_P (it
)
8807 && (it
->line_wrap
!= WORD_WRAP
8809 || IT_OVERFLOW_NEWLINE_INTO_FRINGE (it
)))
8811 result
= MOVE_NEWLINE_OR_CR
;
8818 IT_RESET_X_ASCENT_DESCENT (it
);
8820 if (wrap_it
.sp
>= 0)
8822 RESTORE_IT (it
, &wrap_it
, wrap_data
);
8827 TRACE_MOVE ((stderr
, "move_it_in: continued at %d\n",
8829 result
= MOVE_LINE_CONTINUED
;
8833 if (BUFFER_POS_REACHED_P ())
8835 if (it
->line_wrap
!= WORD_WRAP
|| wrap_it
.sp
< 0)
8836 goto buffer_pos_reached
;
8837 if (it
->line_wrap
== WORD_WRAP
&& atpos_it
.sp
< 0)
8839 SAVE_IT (atpos_it
, *it
, atpos_data
);
8840 IT_RESET_X_ASCENT_DESCENT (&atpos_it
);
8844 if (new_x
> it
->first_visible_x
)
8846 /* Glyph is visible. Increment number of glyphs that
8847 would be displayed. */
8852 if (result
!= MOVE_UNDEFINED
)
8855 else if (BUFFER_POS_REACHED_P ())
8858 IT_RESET_X_ASCENT_DESCENT (it
);
8859 result
= MOVE_POS_MATCH_OR_ZV
;
8862 else if ((op
& MOVE_TO_X
) && it
->current_x
>= to_x
)
8864 /* Stop when TO_X specified and reached. This check is
8865 necessary here because of lines consisting of a line end,
8866 only. The line end will not produce any glyphs and we
8867 would never get MOVE_X_REACHED. */
8868 eassert (it
->nglyphs
== 0);
8869 result
= MOVE_X_REACHED
;
8873 /* Is this a line end? If yes, we're done. */
8874 if (ITERATOR_AT_END_OF_LINE_P (it
))
8876 /* If we are past TO_CHARPOS, but never saw any character
8877 positions smaller than TO_CHARPOS, return
8878 MOVE_POS_MATCH_OR_ZV, like the unidirectional display
8880 if (it
->bidi_p
&& (op
& MOVE_TO_POS
) != 0)
8882 if (!saw_smaller_pos
&& IT_CHARPOS (*it
) > to_charpos
)
8884 if (closest_pos
< ZV
)
8886 RESTORE_IT (it
, &ppos_it
, ppos_data
);
8887 /* Don't recurse if closest_pos is equal to
8888 to_charpos, since we have just tried that. */
8889 if (closest_pos
!= to_charpos
)
8890 move_it_in_display_line_to (it
, closest_pos
, -1,
8892 result
= MOVE_POS_MATCH_OR_ZV
;
8895 goto buffer_pos_reached
;
8897 else if (it
->line_wrap
== WORD_WRAP
&& atpos_it
.sp
>= 0
8898 && IT_CHARPOS (*it
) > to_charpos
)
8899 goto buffer_pos_reached
;
8901 result
= MOVE_NEWLINE_OR_CR
;
8904 result
= MOVE_NEWLINE_OR_CR
;
8908 prev_method
= it
->method
;
8909 if (it
->method
== GET_FROM_BUFFER
)
8910 prev_pos
= IT_CHARPOS (*it
);
8911 /* The current display element has been consumed. Advance
8913 set_iterator_to_next (it
, 1);
8914 if (IT_CHARPOS (*it
) < CHARPOS (this_line_min_pos
))
8915 SET_TEXT_POS (this_line_min_pos
, IT_CHARPOS (*it
), IT_BYTEPOS (*it
));
8916 if (IT_CHARPOS (*it
) < to_charpos
)
8917 saw_smaller_pos
= 1;
8919 && (op
& MOVE_TO_POS
)
8920 && IT_CHARPOS (*it
) >= to_charpos
8921 && IT_CHARPOS (*it
) < closest_pos
)
8922 closest_pos
= IT_CHARPOS (*it
);
8924 /* Stop if lines are truncated and IT's current x-position is
8925 past the right edge of the window now. */
8926 if (it
->line_wrap
== TRUNCATE
8927 && it
->current_x
>= it
->last_visible_x
)
8929 if (!FRAME_WINDOW_P (it
->f
)
8930 || ((it
->bidi_p
&& it
->bidi_it
.paragraph_dir
== R2L
)
8931 ? WINDOW_LEFT_FRINGE_WIDTH (it
->w
)
8932 : WINDOW_RIGHT_FRINGE_WIDTH (it
->w
)) == 0
8933 || IT_OVERFLOW_NEWLINE_INTO_FRINGE (it
))
8937 if ((at_eob_p
= !get_next_display_element (it
))
8938 || BUFFER_POS_REACHED_P ()
8939 /* If we are past TO_CHARPOS, but never saw any
8940 character positions smaller than TO_CHARPOS,
8941 return MOVE_POS_MATCH_OR_ZV, like the
8942 unidirectional display did. */
8943 || (it
->bidi_p
&& (op
& MOVE_TO_POS
) != 0
8945 && IT_CHARPOS (*it
) > to_charpos
))
8948 && !BUFFER_POS_REACHED_P ()
8949 && !at_eob_p
&& closest_pos
< ZV
)
8951 RESTORE_IT (it
, &ppos_it
, ppos_data
);
8952 if (closest_pos
!= to_charpos
)
8953 move_it_in_display_line_to (it
, closest_pos
, -1,
8956 result
= MOVE_POS_MATCH_OR_ZV
;
8959 if (ITERATOR_AT_END_OF_LINE_P (it
))
8961 result
= MOVE_NEWLINE_OR_CR
;
8965 else if (it
->bidi_p
&& (op
& MOVE_TO_POS
) != 0
8967 && IT_CHARPOS (*it
) > to_charpos
)
8969 if (closest_pos
< ZV
)
8971 RESTORE_IT (it
, &ppos_it
, ppos_data
);
8972 if (closest_pos
!= to_charpos
)
8973 move_it_in_display_line_to (it
, closest_pos
, -1,
8976 result
= MOVE_POS_MATCH_OR_ZV
;
8979 result
= MOVE_LINE_TRUNCATED
;
8982 #undef IT_RESET_X_ASCENT_DESCENT
8985 #undef BUFFER_POS_REACHED_P
8987 /* If we scanned beyond to_pos and didn't find a point to wrap at,
8988 restore the saved iterator. */
8989 if (atpos_it
.sp
>= 0)
8990 RESTORE_IT (it
, &atpos_it
, atpos_data
);
8991 else if (atx_it
.sp
>= 0)
8992 RESTORE_IT (it
, &atx_it
, atx_data
);
8997 bidi_unshelve_cache (atpos_data
, 1);
8999 bidi_unshelve_cache (atx_data
, 1);
9001 bidi_unshelve_cache (wrap_data
, 1);
9003 bidi_unshelve_cache (ppos_data
, 1);
9005 /* Restore the iterator settings altered at the beginning of this
9007 it
->glyph_row
= saved_glyph_row
;
9011 /* For external use. */
9013 move_it_in_display_line (struct it
*it
,
9014 ptrdiff_t to_charpos
, int to_x
,
9015 enum move_operation_enum op
)
9017 if (it
->line_wrap
== WORD_WRAP
9018 && (op
& MOVE_TO_X
))
9021 void *save_data
= NULL
;
9024 SAVE_IT (save_it
, *it
, save_data
);
9025 skip
= move_it_in_display_line_to (it
, to_charpos
, to_x
, op
);
9026 /* When word-wrap is on, TO_X may lie past the end
9027 of a wrapped line. Then it->current is the
9028 character on the next line, so backtrack to the
9029 space before the wrap point. */
9030 if (skip
== MOVE_LINE_CONTINUED
)
9032 int prev_x
= max (it
->current_x
- 1, 0);
9033 RESTORE_IT (it
, &save_it
, save_data
);
9034 move_it_in_display_line_to
9035 (it
, -1, prev_x
, MOVE_TO_X
);
9038 bidi_unshelve_cache (save_data
, 1);
9041 move_it_in_display_line_to (it
, to_charpos
, to_x
, op
);
9045 /* Move IT forward until it satisfies one or more of the criteria in
9046 TO_CHARPOS, TO_X, TO_Y, and TO_VPOS.
9048 OP is a bit-mask that specifies where to stop, and in particular,
9049 which of those four position arguments makes a difference. See the
9050 description of enum move_operation_enum.
9052 If TO_CHARPOS is in invisible text, e.g. a truncated part of a
9053 screen line, this function will set IT to the next position that is
9054 displayed to the right of TO_CHARPOS on the screen.
9056 Return the maximum pixel length of any line scanned but never more
9057 than it.last_visible_x. */
9060 move_it_to (struct it
*it
, ptrdiff_t to_charpos
, int to_x
, int to_y
, int to_vpos
, int op
)
9062 enum move_it_result skip
, skip2
= MOVE_X_REACHED
;
9063 int line_height
, line_start_x
= 0, reached
= 0;
9064 int max_current_x
= 0;
9065 void *backup_data
= NULL
;
9069 if (op
& MOVE_TO_VPOS
)
9071 /* If no TO_CHARPOS and no TO_X specified, stop at the
9072 start of the line TO_VPOS. */
9073 if ((op
& (MOVE_TO_X
| MOVE_TO_POS
)) == 0)
9075 if (it
->vpos
== to_vpos
)
9081 skip
= move_it_in_display_line_to (it
, -1, -1, 0);
9085 /* TO_VPOS >= 0 means stop at TO_X in the line at
9086 TO_VPOS, or at TO_POS, whichever comes first. */
9087 if (it
->vpos
== to_vpos
)
9093 skip
= move_it_in_display_line_to (it
, to_charpos
, to_x
, op
);
9095 if (skip
== MOVE_POS_MATCH_OR_ZV
|| it
->vpos
== to_vpos
)
9100 else if (skip
== MOVE_X_REACHED
&& it
->vpos
!= to_vpos
)
9102 /* We have reached TO_X but not in the line we want. */
9103 skip
= move_it_in_display_line_to (it
, to_charpos
,
9105 if (skip
== MOVE_POS_MATCH_OR_ZV
)
9113 else if (op
& MOVE_TO_Y
)
9115 struct it it_backup
;
9117 if (it
->line_wrap
== WORD_WRAP
)
9118 SAVE_IT (it_backup
, *it
, backup_data
);
9120 /* TO_Y specified means stop at TO_X in the line containing
9121 TO_Y---or at TO_CHARPOS if this is reached first. The
9122 problem is that we can't really tell whether the line
9123 contains TO_Y before we have completely scanned it, and
9124 this may skip past TO_X. What we do is to first scan to
9127 If TO_X is not specified, use a TO_X of zero. The reason
9128 is to make the outcome of this function more predictable.
9129 If we didn't use TO_X == 0, we would stop at the end of
9130 the line which is probably not what a caller would expect
9132 skip
= move_it_in_display_line_to
9133 (it
, to_charpos
, ((op
& MOVE_TO_X
) ? to_x
: 0),
9134 (MOVE_TO_X
| (op
& MOVE_TO_POS
)));
9136 /* If TO_CHARPOS is reached or ZV, we don't have to do more. */
9137 if (skip
== MOVE_POS_MATCH_OR_ZV
)
9139 else if (skip
== MOVE_X_REACHED
)
9141 /* If TO_X was reached, we want to know whether TO_Y is
9142 in the line. We know this is the case if the already
9143 scanned glyphs make the line tall enough. Otherwise,
9144 we must check by scanning the rest of the line. */
9145 line_height
= it
->max_ascent
+ it
->max_descent
;
9146 if (to_y
>= it
->current_y
9147 && to_y
< it
->current_y
+ line_height
)
9152 SAVE_IT (it_backup
, *it
, backup_data
);
9153 TRACE_MOVE ((stderr
, "move_it: from %d\n", IT_CHARPOS (*it
)));
9154 skip2
= move_it_in_display_line_to (it
, to_charpos
, -1,
9156 TRACE_MOVE ((stderr
, "move_it: to %d\n", IT_CHARPOS (*it
)));
9157 line_height
= it
->max_ascent
+ it
->max_descent
;
9158 TRACE_MOVE ((stderr
, "move_it: line_height = %d\n", line_height
));
9160 if (to_y
>= it
->current_y
9161 && to_y
< it
->current_y
+ line_height
)
9163 /* If TO_Y is in this line and TO_X was reached
9164 above, we scanned too far. We have to restore
9165 IT's settings to the ones before skipping. But
9166 keep the more accurate values of max_ascent and
9167 max_descent we've found while skipping the rest
9168 of the line, for the sake of callers, such as
9169 pos_visible_p, that need to know the line
9171 int max_ascent
= it
->max_ascent
;
9172 int max_descent
= it
->max_descent
;
9174 RESTORE_IT (it
, &it_backup
, backup_data
);
9175 it
->max_ascent
= max_ascent
;
9176 it
->max_descent
= max_descent
;
9182 if (skip
== MOVE_POS_MATCH_OR_ZV
)
9188 /* Check whether TO_Y is in this line. */
9189 line_height
= it
->max_ascent
+ it
->max_descent
;
9190 TRACE_MOVE ((stderr
, "move_it: line_height = %d\n", line_height
));
9192 if (to_y
>= it
->current_y
9193 && to_y
< it
->current_y
+ line_height
)
9195 if (to_y
> it
->current_y
)
9196 max_current_x
= max (it
->current_x
, max_current_x
);
9198 /* When word-wrap is on, TO_X may lie past the end
9199 of a wrapped line. Then it->current is the
9200 character on the next line, so backtrack to the
9201 space before the wrap point. */
9202 if (skip
== MOVE_LINE_CONTINUED
9203 && it
->line_wrap
== WORD_WRAP
)
9205 int prev_x
= max (it
->current_x
- 1, 0);
9206 RESTORE_IT (it
, &it_backup
, backup_data
);
9207 skip
= move_it_in_display_line_to
9208 (it
, -1, prev_x
, MOVE_TO_X
);
9217 max_current_x
= max (it
->current_x
, max_current_x
);
9221 else if (BUFFERP (it
->object
)
9222 && (it
->method
== GET_FROM_BUFFER
9223 || it
->method
== GET_FROM_STRETCH
)
9224 && IT_CHARPOS (*it
) >= to_charpos
9225 /* Under bidi iteration, a call to set_iterator_to_next
9226 can scan far beyond to_charpos if the initial
9227 portion of the next line needs to be reordered. In
9228 that case, give move_it_in_display_line_to another
9231 && it
->bidi_it
.scan_dir
== -1))
9232 skip
= MOVE_POS_MATCH_OR_ZV
;
9234 skip
= move_it_in_display_line_to (it
, to_charpos
, -1, MOVE_TO_POS
);
9238 case MOVE_POS_MATCH_OR_ZV
:
9239 max_current_x
= max (it
->current_x
, max_current_x
);
9243 case MOVE_NEWLINE_OR_CR
:
9244 max_current_x
= max (it
->current_x
, max_current_x
);
9245 set_iterator_to_next (it
, 1);
9246 it
->continuation_lines_width
= 0;
9249 case MOVE_LINE_TRUNCATED
:
9250 max_current_x
= it
->last_visible_x
;
9251 it
->continuation_lines_width
= 0;
9252 reseat_at_next_visible_line_start (it
, 0);
9253 if ((op
& MOVE_TO_POS
) != 0
9254 && IT_CHARPOS (*it
) > to_charpos
)
9261 case MOVE_LINE_CONTINUED
:
9262 max_current_x
= it
->last_visible_x
;
9263 /* For continued lines ending in a tab, some of the glyphs
9264 associated with the tab are displayed on the current
9265 line. Since it->current_x does not include these glyphs,
9266 we use it->last_visible_x instead. */
9269 it
->continuation_lines_width
+= it
->last_visible_x
;
9270 /* When moving by vpos, ensure that the iterator really
9271 advances to the next line (bug#847, bug#969). Fixme:
9272 do we need to do this in other circumstances? */
9273 if (it
->current_x
!= it
->last_visible_x
9274 && (op
& MOVE_TO_VPOS
)
9275 && !(op
& (MOVE_TO_X
| MOVE_TO_POS
)))
9277 line_start_x
= it
->current_x
+ it
->pixel_width
9278 - it
->last_visible_x
;
9279 if (FRAME_WINDOW_P (it
->f
))
9281 struct face
*face
= FACE_FROM_ID (it
->f
, it
->face_id
);
9282 struct font
*face_font
= face
->font
;
9284 /* When display_line produces a continued line
9285 that ends in a TAB, it skips a tab stop that
9286 is closer than the font's space character
9287 width (see x_produce_glyphs where it produces
9288 the stretch glyph which represents a TAB).
9289 We need to reproduce the same logic here. */
9290 eassert (face_font
);
9293 if (line_start_x
< face_font
->space_width
)
9295 += it
->tab_width
* face_font
->space_width
;
9298 set_iterator_to_next (it
, 0);
9302 it
->continuation_lines_width
+= it
->current_x
;
9309 /* Reset/increment for the next run. */
9310 recenter_overlay_lists (current_buffer
, IT_CHARPOS (*it
));
9311 it
->current_x
= line_start_x
;
9314 it
->current_y
+= it
->max_ascent
+ it
->max_descent
;
9316 last_height
= it
->max_ascent
+ it
->max_descent
;
9317 it
->max_ascent
= it
->max_descent
= 0;
9322 /* On text terminals, we may stop at the end of a line in the middle
9323 of a multi-character glyph. If the glyph itself is continued,
9324 i.e. it is actually displayed on the next line, don't treat this
9325 stopping point as valid; move to the next line instead (unless
9326 that brings us offscreen). */
9327 if (!FRAME_WINDOW_P (it
->f
)
9329 && IT_CHARPOS (*it
) == to_charpos
9330 && it
->what
== IT_CHARACTER
9332 && it
->line_wrap
== WINDOW_WRAP
9333 && it
->current_x
== it
->last_visible_x
- 1
9336 && it
->vpos
< it
->w
->window_end_vpos
)
9338 it
->continuation_lines_width
+= it
->current_x
;
9339 it
->current_x
= it
->hpos
= it
->max_ascent
= it
->max_descent
= 0;
9340 it
->current_y
+= it
->max_ascent
+ it
->max_descent
;
9342 last_height
= it
->max_ascent
+ it
->max_descent
;
9346 bidi_unshelve_cache (backup_data
, 1);
9348 TRACE_MOVE ((stderr
, "move_it_to: reached %d\n", reached
));
9350 return max_current_x
;
9354 /* Move iterator IT backward by a specified y-distance DY, DY >= 0.
9356 If DY > 0, move IT backward at least that many pixels. DY = 0
9357 means move IT backward to the preceding line start or BEGV. This
9358 function may move over more than DY pixels if IT->current_y - DY
9359 ends up in the middle of a line; in this case IT->current_y will be
9360 set to the top of the line moved to. */
9363 move_it_vertically_backward (struct it
*it
, int dy
)
9367 void *it2data
= NULL
, *it3data
= NULL
;
9368 ptrdiff_t start_pos
;
9370 = (it
->last_visible_x
- it
->first_visible_x
) / FRAME_COLUMN_WIDTH (it
->f
);
9371 ptrdiff_t pos_limit
;
9376 start_pos
= IT_CHARPOS (*it
);
9378 /* Estimate how many newlines we must move back. */
9379 nlines
= max (1, dy
/ default_line_pixel_height (it
->w
));
9380 if (it
->line_wrap
== TRUNCATE
|| nchars_per_row
== 0)
9383 pos_limit
= max (start_pos
- nlines
* nchars_per_row
, BEGV
);
9385 /* Set the iterator's position that many lines back. But don't go
9386 back more than NLINES full screen lines -- this wins a day with
9387 buffers which have very long lines. */
9388 while (nlines
-- && IT_CHARPOS (*it
) > pos_limit
)
9389 back_to_previous_visible_line_start (it
);
9391 /* Reseat the iterator here. When moving backward, we don't want
9392 reseat to skip forward over invisible text, set up the iterator
9393 to deliver from overlay strings at the new position etc. So,
9394 use reseat_1 here. */
9395 reseat_1 (it
, it
->current
.pos
, 1);
9397 /* We are now surely at a line start. */
9398 it
->current_x
= it
->hpos
= 0; /* FIXME: this is incorrect when bidi
9399 reordering is in effect. */
9400 it
->continuation_lines_width
= 0;
9402 /* Move forward and see what y-distance we moved. First move to the
9403 start of the next line so that we get its height. We need this
9404 height to be able to tell whether we reached the specified
9406 SAVE_IT (it2
, *it
, it2data
);
9407 it2
.max_ascent
= it2
.max_descent
= 0;
9410 move_it_to (&it2
, start_pos
, -1, -1, it2
.vpos
+ 1,
9411 MOVE_TO_POS
| MOVE_TO_VPOS
);
9413 while (!(IT_POS_VALID_AFTER_MOVE_P (&it2
)
9414 /* If we are in a display string which starts at START_POS,
9415 and that display string includes a newline, and we are
9416 right after that newline (i.e. at the beginning of a
9417 display line), exit the loop, because otherwise we will
9418 infloop, since move_it_to will see that it is already at
9419 START_POS and will not move. */
9420 || (it2
.method
== GET_FROM_STRING
9421 && IT_CHARPOS (it2
) == start_pos
9422 && SREF (it2
.string
, IT_STRING_BYTEPOS (it2
) - 1) == '\n')));
9423 eassert (IT_CHARPOS (*it
) >= BEGV
);
9424 SAVE_IT (it3
, it2
, it3data
);
9426 move_it_to (&it2
, start_pos
, -1, -1, -1, MOVE_TO_POS
);
9427 eassert (IT_CHARPOS (*it
) >= BEGV
);
9428 /* H is the actual vertical distance from the position in *IT
9429 and the starting position. */
9430 h
= it2
.current_y
- it
->current_y
;
9431 /* NLINES is the distance in number of lines. */
9432 nlines
= it2
.vpos
- it
->vpos
;
9434 /* Correct IT's y and vpos position
9435 so that they are relative to the starting point. */
9441 /* DY == 0 means move to the start of the screen line. The
9442 value of nlines is > 0 if continuation lines were involved,
9443 or if the original IT position was at start of a line. */
9444 RESTORE_IT (it
, it
, it2data
);
9446 move_it_by_lines (it
, nlines
);
9447 /* The above code moves us to some position NLINES down,
9448 usually to its first glyph (leftmost in an L2R line), but
9449 that's not necessarily the start of the line, under bidi
9450 reordering. We want to get to the character position
9451 that is immediately after the newline of the previous
9454 && !it
->continuation_lines_width
9455 && !STRINGP (it
->string
)
9456 && IT_CHARPOS (*it
) > BEGV
9457 && FETCH_BYTE (IT_BYTEPOS (*it
) - 1) != '\n')
9459 ptrdiff_t cp
= IT_CHARPOS (*it
), bp
= IT_BYTEPOS (*it
);
9462 cp
= find_newline_no_quit (cp
, bp
, -1, NULL
);
9463 move_it_to (it
, cp
, -1, -1, -1, MOVE_TO_POS
);
9465 bidi_unshelve_cache (it3data
, 1);
9469 /* The y-position we try to reach, relative to *IT.
9470 Note that H has been subtracted in front of the if-statement. */
9471 int target_y
= it
->current_y
+ h
- dy
;
9472 int y0
= it3
.current_y
;
9476 RESTORE_IT (&it3
, &it3
, it3data
);
9477 y1
= line_bottom_y (&it3
);
9478 line_height
= y1
- y0
;
9479 RESTORE_IT (it
, it
, it2data
);
9480 /* If we did not reach target_y, try to move further backward if
9481 we can. If we moved too far backward, try to move forward. */
9482 if (target_y
< it
->current_y
9483 /* This is heuristic. In a window that's 3 lines high, with
9484 a line height of 13 pixels each, recentering with point
9485 on the bottom line will try to move -39/2 = 19 pixels
9486 backward. Try to avoid moving into the first line. */
9487 && (it
->current_y
- target_y
9488 > min (window_box_height (it
->w
), line_height
* 2 / 3))
9489 && IT_CHARPOS (*it
) > BEGV
)
9491 TRACE_MOVE ((stderr
, " not far enough -> move_vert %d\n",
9492 target_y
- it
->current_y
));
9493 dy
= it
->current_y
- target_y
;
9494 goto move_further_back
;
9496 else if (target_y
>= it
->current_y
+ line_height
9497 && IT_CHARPOS (*it
) < ZV
)
9499 /* Should move forward by at least one line, maybe more.
9501 Note: Calling move_it_by_lines can be expensive on
9502 terminal frames, where compute_motion is used (via
9503 vmotion) to do the job, when there are very long lines
9504 and truncate-lines is nil. That's the reason for
9505 treating terminal frames specially here. */
9507 if (!FRAME_WINDOW_P (it
->f
))
9508 move_it_vertically (it
, target_y
- (it
->current_y
+ line_height
));
9513 move_it_by_lines (it
, 1);
9515 while (target_y
>= line_bottom_y (it
) && IT_CHARPOS (*it
) < ZV
);
9522 /* Move IT by a specified amount of pixel lines DY. DY negative means
9523 move backwards. DY = 0 means move to start of screen line. At the
9524 end, IT will be on the start of a screen line. */
9527 move_it_vertically (struct it
*it
, int dy
)
9530 move_it_vertically_backward (it
, -dy
);
9533 TRACE_MOVE ((stderr
, "move_it_v: from %d, %d\n", IT_CHARPOS (*it
), dy
));
9534 move_it_to (it
, ZV
, -1, it
->current_y
+ dy
, -1,
9535 MOVE_TO_POS
| MOVE_TO_Y
);
9536 TRACE_MOVE ((stderr
, "move_it_v: to %d\n", IT_CHARPOS (*it
)));
9538 /* If buffer ends in ZV without a newline, move to the start of
9539 the line to satisfy the post-condition. */
9540 if (IT_CHARPOS (*it
) == ZV
9542 && FETCH_BYTE (IT_BYTEPOS (*it
) - 1) != '\n')
9543 move_it_by_lines (it
, 0);
9548 /* Move iterator IT past the end of the text line it is in. */
9551 move_it_past_eol (struct it
*it
)
9553 enum move_it_result rc
;
9555 rc
= move_it_in_display_line_to (it
, Z
, 0, MOVE_TO_POS
);
9556 if (rc
== MOVE_NEWLINE_OR_CR
)
9557 set_iterator_to_next (it
, 0);
9561 /* Move IT by a specified number DVPOS of screen lines down. DVPOS
9562 negative means move up. DVPOS == 0 means move to the start of the
9565 Optimization idea: If we would know that IT->f doesn't use
9566 a face with proportional font, we could be faster for
9567 truncate-lines nil. */
9570 move_it_by_lines (struct it
*it
, ptrdiff_t dvpos
)
9573 /* The commented-out optimization uses vmotion on terminals. This
9574 gives bad results, because elements like it->what, on which
9575 callers such as pos_visible_p rely, aren't updated. */
9576 /* struct position pos;
9577 if (!FRAME_WINDOW_P (it->f))
9579 struct text_pos textpos;
9581 pos = *vmotion (IT_CHARPOS (*it), dvpos, it->w);
9582 SET_TEXT_POS (textpos, pos.bufpos, pos.bytepos);
9583 reseat (it, textpos, 1);
9584 it->vpos += pos.vpos;
9585 it->current_y += pos.vpos;
9591 /* DVPOS == 0 means move to the start of the screen line. */
9592 move_it_vertically_backward (it
, 0);
9593 /* Let next call to line_bottom_y calculate real line height. */
9598 move_it_to (it
, -1, -1, -1, it
->vpos
+ dvpos
, MOVE_TO_VPOS
);
9599 if (!IT_POS_VALID_AFTER_MOVE_P (it
))
9601 /* Only move to the next buffer position if we ended up in a
9602 string from display property, not in an overlay string
9603 (before-string or after-string). That is because the
9604 latter don't conceal the underlying buffer position, so
9605 we can ask to move the iterator to the exact position we
9606 are interested in. Note that, even if we are already at
9607 IT_CHARPOS (*it), the call below is not a no-op, as it
9608 will detect that we are at the end of the string, pop the
9609 iterator, and compute it->current_x and it->hpos
9611 move_it_to (it
, IT_CHARPOS (*it
) + it
->string_from_display_prop_p
,
9612 -1, -1, -1, MOVE_TO_POS
);
9618 void *it2data
= NULL
;
9619 ptrdiff_t start_charpos
, i
;
9621 = (it
->last_visible_x
- it
->first_visible_x
) / FRAME_COLUMN_WIDTH (it
->f
);
9622 bool hit_pos_limit
= false;
9623 ptrdiff_t pos_limit
;
9625 /* Start at the beginning of the screen line containing IT's
9626 position. This may actually move vertically backwards,
9627 in case of overlays, so adjust dvpos accordingly. */
9629 move_it_vertically_backward (it
, 0);
9632 /* Go back -DVPOS buffer lines, but no farther than -DVPOS full
9633 screen lines, and reseat the iterator there. */
9634 start_charpos
= IT_CHARPOS (*it
);
9635 if (it
->line_wrap
== TRUNCATE
|| nchars_per_row
== 0)
9638 pos_limit
= max (start_charpos
+ dvpos
* nchars_per_row
, BEGV
);
9640 for (i
= -dvpos
; i
> 0 && IT_CHARPOS (*it
) > pos_limit
; --i
)
9641 back_to_previous_visible_line_start (it
);
9642 if (i
> 0 && IT_CHARPOS (*it
) <= pos_limit
)
9643 hit_pos_limit
= true;
9644 reseat (it
, it
->current
.pos
, 1);
9646 /* Move further back if we end up in a string or an image. */
9647 while (!IT_POS_VALID_AFTER_MOVE_P (it
))
9649 /* First try to move to start of display line. */
9651 move_it_vertically_backward (it
, 0);
9653 if (IT_POS_VALID_AFTER_MOVE_P (it
))
9655 /* If start of line is still in string or image,
9656 move further back. */
9657 back_to_previous_visible_line_start (it
);
9658 reseat (it
, it
->current
.pos
, 1);
9662 it
->current_x
= it
->hpos
= 0;
9664 /* Above call may have moved too far if continuation lines
9665 are involved. Scan forward and see if it did. */
9666 SAVE_IT (it2
, *it
, it2data
);
9667 it2
.vpos
= it2
.current_y
= 0;
9668 move_it_to (&it2
, start_charpos
, -1, -1, -1, MOVE_TO_POS
);
9669 it
->vpos
-= it2
.vpos
;
9670 it
->current_y
-= it2
.current_y
;
9671 it
->current_x
= it
->hpos
= 0;
9673 /* If we moved too far back, move IT some lines forward. */
9674 if (it2
.vpos
> -dvpos
)
9676 int delta
= it2
.vpos
+ dvpos
;
9678 RESTORE_IT (&it2
, &it2
, it2data
);
9679 SAVE_IT (it2
, *it
, it2data
);
9680 move_it_to (it
, -1, -1, -1, it
->vpos
+ delta
, MOVE_TO_VPOS
);
9681 /* Move back again if we got too far ahead. */
9682 if (IT_CHARPOS (*it
) >= start_charpos
)
9683 RESTORE_IT (it
, &it2
, it2data
);
9685 bidi_unshelve_cache (it2data
, 1);
9687 else if (hit_pos_limit
&& pos_limit
> BEGV
9688 && dvpos
< 0 && it2
.vpos
< -dvpos
)
9690 /* If we hit the limit, but still didn't make it far enough
9691 back, that means there's a display string with a newline
9692 covering a large chunk of text, and that caused
9693 back_to_previous_visible_line_start try to go too far.
9694 Punish those who commit such atrocities by going back
9695 until we've reached DVPOS, after lifting the limit, which
9696 could make it slow for very long lines. "If it hurts,
9699 RESTORE_IT (it
, it
, it2data
);
9700 for (i
= -dvpos
; i
> 0; --i
)
9702 back_to_previous_visible_line_start (it
);
9705 reseat_1 (it
, it
->current
.pos
, 1);
9708 RESTORE_IT (it
, it
, it2data
);
9712 /* Return true if IT points into the middle of a display vector. */
9715 in_display_vector_p (struct it
*it
)
9717 return (it
->method
== GET_FROM_DISPLAY_VECTOR
9718 && it
->current
.dpvec_index
> 0
9719 && it
->dpvec
+ it
->current
.dpvec_index
!= it
->dpend
);
9722 DEFUN ("window-text-pixel-size", Fwindow_text_pixel_size
, Swindow_text_pixel_size
, 0, 6, 0,
9723 doc
: /* Return the size of the text of WINDOW's buffer in pixels.
9724 WINDOW must be a live window and defaults to the selected one. The
9725 return value is a cons of the maximum pixel-width of any text line and
9726 the maximum pixel-height of all text lines.
9728 The optional argument FROM, if non-nil, specifies the first text
9729 position and defaults to the minimum accessible position of the buffer.
9730 If FROM is t, use the minimum accessible position that is not a newline
9731 character. TO, if non-nil, specifies the last text position and
9732 defaults to the maximum accessible position of the buffer. If TO is t,
9733 use the maximum accessible position that is not a newline character.
9735 The optional argument X-LIMIT, if non-nil, specifies the maximum text
9736 width that can be returned. X-LIMIT nil or omitted, means to use the
9737 pixel-width of WINDOW's body; use this if you do not intend to change
9738 the width of WINDOW. Use the maximum width WINDOW may assume if you
9739 intend to change WINDOW's width. In any case, text whose x-coordinate
9740 is beyond X-LIMIT is ignored. Since calculating the width of long lines
9741 can take some time, it's always a good idea to make this argument as
9742 small as possible; in particular, if the buffer contains long lines that
9743 shall be truncated anyway.
9745 The optional argument Y-LIMIT, if non-nil, specifies the maximum text
9746 height that can be returned. Text lines whose y-coordinate is beyond
9747 Y-LIMIT are ignored. Since calculating the text height of a large
9748 buffer can take some time, it makes sense to specify this argument if
9749 the size of the buffer is unknown.
9751 Optional argument MODE-AND-HEADER-LINE nil or omitted means do not
9752 include the height of the mode- or header-line of WINDOW in the return
9753 value. If it is either the symbol `mode-line' or `header-line', include
9754 only the height of that line, if present, in the return value. If t,
9755 include the height of both, if present, in the return value. */)
9756 (Lisp_Object window
, Lisp_Object from
, Lisp_Object to
, Lisp_Object x_limit
, Lisp_Object y_limit
,
9757 Lisp_Object mode_and_header_line
)
9759 struct window
*w
= decode_live_window (window
);
9763 struct buffer
*old_buffer
= NULL
;
9764 ptrdiff_t start
, end
, pos
;
9765 struct text_pos startp
;
9766 void *itdata
= NULL
;
9767 int c
, max_y
= -1, x
= 0, y
= 0;
9773 if (b
!= current_buffer
)
9775 old_buffer
= current_buffer
;
9776 set_buffer_internal (b
);
9781 else if (EQ (from
, Qt
))
9784 while ((pos
++ < ZV
) && (c
= FETCH_CHAR (pos
))
9785 && (c
== ' ' || c
== '\t' || c
== '\n' || c
== '\r'))
9787 while ((pos
-- > BEGV
) && (c
= FETCH_CHAR (pos
)) && (c
== ' ' || c
== '\t'))
9792 CHECK_NUMBER_COERCE_MARKER (from
);
9793 start
= min (max (XINT (from
), BEGV
), ZV
);
9798 else if (EQ (to
, Qt
))
9801 while ((pos
-- > BEGV
) && (c
= FETCH_CHAR (pos
))
9802 && (c
== ' ' || c
== '\t' || c
== '\n' || c
== '\r'))
9804 while ((pos
++ < ZV
) && (c
= FETCH_CHAR (pos
)) && (c
== ' ' || c
== '\t'))
9809 CHECK_NUMBER_COERCE_MARKER (to
);
9810 end
= max (start
, min (XINT (to
), ZV
));
9813 if (!NILP (y_limit
))
9815 CHECK_NUMBER (y_limit
);
9816 max_y
= min (XINT (y_limit
), INT_MAX
);
9819 itdata
= bidi_shelve_cache ();
9820 SET_TEXT_POS (startp
, start
, CHAR_TO_BYTE (start
));
9821 start_display (&it
, w
, startp
);
9824 x
= move_it_to (&it
, end
, -1, max_y
, -1, MOVE_TO_POS
| MOVE_TO_Y
);
9827 CHECK_NUMBER (x_limit
);
9828 it
.last_visible_x
= min (XINT (x_limit
), INFINITY
);
9829 /* Actually, we never want move_it_to stop at to_x. But to make
9830 sure that move_it_in_display_line_to always moves far enough,
9831 we set it to INT_MAX and specify MOVE_TO_X. */
9832 x
= move_it_to (&it
, end
, INT_MAX
, max_y
, -1,
9833 MOVE_TO_POS
| MOVE_TO_X
| MOVE_TO_Y
);
9836 y
= it
.current_y
+ it
.max_ascent
+ it
.max_descent
;
9838 if (!EQ (mode_and_header_line
, Qheader_line
)
9839 && !EQ (mode_and_header_line
, Qt
))
9840 /* Do not count the header-line which was counted automatically by
9842 y
= y
- WINDOW_HEADER_LINE_HEIGHT (w
);
9844 if (EQ (mode_and_header_line
, Qmode_line
)
9845 || EQ (mode_and_header_line
, Qt
))
9846 /* Do count the mode-line which is not included automatically by
9848 y
= y
+ WINDOW_MODE_LINE_HEIGHT (w
);
9850 bidi_unshelve_cache (itdata
, 0);
9853 set_buffer_internal (old_buffer
);
9855 return Fcons (make_number (x
), make_number (y
));
9858 /***********************************************************************
9860 ***********************************************************************/
9863 /* Add a message with format string FORMAT and arguments ARG1 and ARG2
9867 add_to_log (const char *format
, Lisp_Object arg1
, Lisp_Object arg2
)
9869 Lisp_Object args
[3];
9870 Lisp_Object msg
, fmt
;
9873 struct gcpro gcpro1
, gcpro2
, gcpro3
, gcpro4
;
9877 GCPRO4 (fmt
, msg
, arg1
, arg2
);
9879 args
[0] = fmt
= build_string (format
);
9882 msg
= Fformat (3, args
);
9884 len
= SBYTES (msg
) + 1;
9885 buffer
= SAFE_ALLOCA (len
);
9886 memcpy (buffer
, SDATA (msg
), len
);
9888 message_dolog (buffer
, len
- 1, 1, 0);
9895 /* Output a newline in the *Messages* buffer if "needs" one. */
9898 message_log_maybe_newline (void)
9900 if (message_log_need_newline
)
9901 message_dolog ("", 0, 1, 0);
9905 /* Add a string M of length NBYTES to the message log, optionally
9906 terminated with a newline when NLFLAG is true. MULTIBYTE, if
9907 true, means interpret the contents of M as multibyte. This
9908 function calls low-level routines in order to bypass text property
9909 hooks, etc. which might not be safe to run.
9911 This may GC (insert may run before/after change hooks),
9912 so the buffer M must NOT point to a Lisp string. */
9915 message_dolog (const char *m
, ptrdiff_t nbytes
, bool nlflag
, bool multibyte
)
9917 const unsigned char *msg
= (const unsigned char *) m
;
9919 if (!NILP (Vmemory_full
))
9922 if (!NILP (Vmessage_log_max
))
9924 struct buffer
*oldbuf
;
9925 Lisp_Object oldpoint
, oldbegv
, oldzv
;
9926 int old_windows_or_buffers_changed
= windows_or_buffers_changed
;
9927 ptrdiff_t point_at_end
= 0;
9928 ptrdiff_t zv_at_end
= 0;
9929 Lisp_Object old_deactivate_mark
;
9930 struct gcpro gcpro1
;
9932 old_deactivate_mark
= Vdeactivate_mark
;
9933 oldbuf
= current_buffer
;
9935 /* Ensure the Messages buffer exists, and switch to it.
9936 If we created it, set the major-mode. */
9939 if (NILP (Fget_buffer (Vmessages_buffer_name
))) newbuffer
= 1;
9941 Fset_buffer (Fget_buffer_create (Vmessages_buffer_name
));
9944 && !NILP (Ffboundp (intern ("messages-buffer-mode"))))
9945 call0 (intern ("messages-buffer-mode"));
9948 bset_undo_list (current_buffer
, Qt
);
9949 bset_cache_long_scans (current_buffer
, Qnil
);
9951 oldpoint
= message_dolog_marker1
;
9952 set_marker_restricted_both (oldpoint
, Qnil
, PT
, PT_BYTE
);
9953 oldbegv
= message_dolog_marker2
;
9954 set_marker_restricted_both (oldbegv
, Qnil
, BEGV
, BEGV_BYTE
);
9955 oldzv
= message_dolog_marker3
;
9956 set_marker_restricted_both (oldzv
, Qnil
, ZV
, ZV_BYTE
);
9957 GCPRO1 (old_deactivate_mark
);
9965 BEGV_BYTE
= BEG_BYTE
;
9968 TEMP_SET_PT_BOTH (Z
, Z_BYTE
);
9970 /* Insert the string--maybe converting multibyte to single byte
9971 or vice versa, so that all the text fits the buffer. */
9973 && NILP (BVAR (current_buffer
, enable_multibyte_characters
)))
9979 /* Convert a multibyte string to single-byte
9980 for the *Message* buffer. */
9981 for (i
= 0; i
< nbytes
; i
+= char_bytes
)
9983 c
= string_char_and_length (msg
+ i
, &char_bytes
);
9984 work
[0] = CHAR_TO_BYTE8 (c
);
9985 insert_1_both (work
, 1, 1, 1, 0, 0);
9988 else if (! multibyte
9989 && ! NILP (BVAR (current_buffer
, enable_multibyte_characters
)))
9993 unsigned char str
[MAX_MULTIBYTE_LENGTH
];
9994 /* Convert a single-byte string to multibyte
9995 for the *Message* buffer. */
9996 for (i
= 0; i
< nbytes
; i
++)
9999 MAKE_CHAR_MULTIBYTE (c
);
10000 char_bytes
= CHAR_STRING (c
, str
);
10001 insert_1_both ((char *) str
, 1, char_bytes
, 1, 0, 0);
10005 insert_1_both (m
, chars_in_text (msg
, nbytes
), nbytes
, 1, 0, 0);
10009 ptrdiff_t this_bol
, this_bol_byte
, prev_bol
, prev_bol_byte
;
10012 insert_1_both ("\n", 1, 1, 1, 0, 0);
10014 scan_newline (Z
, Z_BYTE
, BEG
, BEG_BYTE
, -2, 0);
10016 this_bol_byte
= PT_BYTE
;
10018 /* See if this line duplicates the previous one.
10019 If so, combine duplicates. */
10020 if (this_bol
> BEG
)
10022 scan_newline (PT
, PT_BYTE
, BEG
, BEG_BYTE
, -2, 0);
10024 prev_bol_byte
= PT_BYTE
;
10026 dups
= message_log_check_duplicate (prev_bol_byte
,
10030 del_range_both (prev_bol
, prev_bol_byte
,
10031 this_bol
, this_bol_byte
, 0);
10034 char dupstr
[sizeof " [ times]"
10035 + INT_STRLEN_BOUND (printmax_t
)];
10037 /* If you change this format, don't forget to also
10038 change message_log_check_duplicate. */
10039 int duplen
= sprintf (dupstr
, " [%"pMd
" times]", dups
);
10040 TEMP_SET_PT_BOTH (Z
- 1, Z_BYTE
- 1);
10041 insert_1_both (dupstr
, duplen
, duplen
, 1, 0, 1);
10046 /* If we have more than the desired maximum number of lines
10047 in the *Messages* buffer now, delete the oldest ones.
10048 This is safe because we don't have undo in this buffer. */
10050 if (NATNUMP (Vmessage_log_max
))
10052 scan_newline (Z
, Z_BYTE
, BEG
, BEG_BYTE
,
10053 -XFASTINT (Vmessage_log_max
) - 1, 0);
10054 del_range_both (BEG
, BEG_BYTE
, PT
, PT_BYTE
, 0);
10057 BEGV
= marker_position (oldbegv
);
10058 BEGV_BYTE
= marker_byte_position (oldbegv
);
10067 ZV
= marker_position (oldzv
);
10068 ZV_BYTE
= marker_byte_position (oldzv
);
10072 TEMP_SET_PT_BOTH (Z
, Z_BYTE
);
10074 /* We can't do Fgoto_char (oldpoint) because it will run some
10076 TEMP_SET_PT_BOTH (marker_position (oldpoint
),
10077 marker_byte_position (oldpoint
));
10080 unchain_marker (XMARKER (oldpoint
));
10081 unchain_marker (XMARKER (oldbegv
));
10082 unchain_marker (XMARKER (oldzv
));
10084 /* We called insert_1_both above with its 5th argument (PREPARE)
10085 zero, which prevents insert_1_both from calling
10086 prepare_to_modify_buffer, which in turns prevents us from
10087 incrementing windows_or_buffers_changed even if *Messages* is
10088 shown in some window. So we must manually set
10089 windows_or_buffers_changed here to make up for that. */
10090 windows_or_buffers_changed
= old_windows_or_buffers_changed
;
10091 bset_redisplay (current_buffer
);
10093 set_buffer_internal (oldbuf
);
10095 message_log_need_newline
= !nlflag
;
10096 Vdeactivate_mark
= old_deactivate_mark
;
10101 /* We are at the end of the buffer after just having inserted a newline.
10102 (Note: We depend on the fact we won't be crossing the gap.)
10103 Check to see if the most recent message looks a lot like the previous one.
10104 Return 0 if different, 1 if the new one should just replace it, or a
10105 value N > 1 if we should also append " [N times]". */
10108 message_log_check_duplicate (ptrdiff_t prev_bol_byte
, ptrdiff_t this_bol_byte
)
10111 ptrdiff_t len
= Z_BYTE
- 1 - this_bol_byte
;
10113 unsigned char *p1
= BUF_BYTE_ADDRESS (current_buffer
, prev_bol_byte
);
10114 unsigned char *p2
= BUF_BYTE_ADDRESS (current_buffer
, this_bol_byte
);
10116 for (i
= 0; i
< len
; i
++)
10118 if (i
>= 3 && p1
[i
- 3] == '.' && p1
[i
- 2] == '.' && p1
[i
- 1] == '.')
10120 if (p1
[i
] != p2
[i
])
10126 if (*p1
++ == ' ' && *p1
++ == '[')
10129 intmax_t n
= strtoimax ((char *) p1
, &pend
, 10);
10130 if (0 < n
&& n
< INTMAX_MAX
&& strncmp (pend
, " times]\n", 8) == 0)
10137 /* Display an echo area message M with a specified length of NBYTES
10138 bytes. The string may include null characters. If M is not a
10139 string, clear out any existing message, and let the mini-buffer
10142 This function cancels echoing. */
10145 message3 (Lisp_Object m
)
10147 struct gcpro gcpro1
;
10150 clear_message (true, true);
10153 /* First flush out any partial line written with print. */
10154 message_log_maybe_newline ();
10157 ptrdiff_t nbytes
= SBYTES (m
);
10158 bool multibyte
= STRING_MULTIBYTE (m
);
10161 SAFE_ALLOCA_STRING (buffer
, m
);
10162 message_dolog (buffer
, nbytes
, 1, multibyte
);
10165 message3_nolog (m
);
10171 /* The non-logging version of message3.
10172 This does not cancel echoing, because it is used for echoing.
10173 Perhaps we need to make a separate function for echoing
10174 and make this cancel echoing. */
10177 message3_nolog (Lisp_Object m
)
10179 struct frame
*sf
= SELECTED_FRAME ();
10181 if (FRAME_INITIAL_P (sf
))
10183 if (noninteractive_need_newline
)
10184 putc ('\n', stderr
);
10185 noninteractive_need_newline
= 0;
10188 Lisp_Object s
= ENCODE_SYSTEM (m
);
10190 fwrite (SDATA (s
), SBYTES (s
), 1, stderr
);
10192 if (cursor_in_echo_area
== 0)
10193 fprintf (stderr
, "\n");
10196 /* Error messages get reported properly by cmd_error, so this must be just an
10197 informative message; if the frame hasn't really been initialized yet, just
10199 else if (INTERACTIVE
&& sf
->glyphs_initialized_p
)
10201 /* Get the frame containing the mini-buffer
10202 that the selected frame is using. */
10203 Lisp_Object mini_window
= FRAME_MINIBUF_WINDOW (sf
);
10204 Lisp_Object frame
= XWINDOW (mini_window
)->frame
;
10205 struct frame
*f
= XFRAME (frame
);
10207 if (FRAME_VISIBLE_P (sf
) && !FRAME_VISIBLE_P (f
))
10208 Fmake_frame_visible (frame
);
10210 if (STRINGP (m
) && SCHARS (m
) > 0)
10213 if (minibuffer_auto_raise
)
10214 Fraise_frame (frame
);
10215 /* Assume we are not echoing.
10216 (If we are, echo_now will override this.) */
10217 echo_message_buffer
= Qnil
;
10220 clear_message (true, true);
10222 do_pending_window_change (false);
10223 echo_area_display (true);
10224 do_pending_window_change (false);
10225 if (FRAME_TERMINAL (f
)->frame_up_to_date_hook
)
10226 (*FRAME_TERMINAL (f
)->frame_up_to_date_hook
) (f
);
10231 /* Display a null-terminated echo area message M. If M is 0, clear
10232 out any existing message, and let the mini-buffer text show through.
10234 The buffer M must continue to exist until after the echo area gets
10235 cleared or some other message gets displayed there. Do not pass
10236 text that is stored in a Lisp string. Do not pass text in a buffer
10237 that was alloca'd. */
10240 message1 (const char *m
)
10242 message3 (m
? build_unibyte_string (m
) : Qnil
);
10246 /* The non-logging counterpart of message1. */
10249 message1_nolog (const char *m
)
10251 message3_nolog (m
? build_unibyte_string (m
) : Qnil
);
10254 /* Display a message M which contains a single %s
10255 which gets replaced with STRING. */
10258 message_with_string (const char *m
, Lisp_Object string
, int log
)
10260 CHECK_STRING (string
);
10262 if (noninteractive
)
10266 /* ENCODE_SYSTEM below can GC and/or relocate the
10267 Lisp data, so make sure we don't use it here. */
10268 eassert (relocatable_string_data_p (m
) != 1);
10270 if (noninteractive_need_newline
)
10271 putc ('\n', stderr
);
10272 noninteractive_need_newline
= 0;
10273 fprintf (stderr
, m
, SDATA (ENCODE_SYSTEM (string
)));
10274 if (!cursor_in_echo_area
)
10275 fprintf (stderr
, "\n");
10279 else if (INTERACTIVE
)
10281 /* The frame whose minibuffer we're going to display the message on.
10282 It may be larger than the selected frame, so we need
10283 to use its buffer, not the selected frame's buffer. */
10284 Lisp_Object mini_window
;
10285 struct frame
*f
, *sf
= SELECTED_FRAME ();
10287 /* Get the frame containing the minibuffer
10288 that the selected frame is using. */
10289 mini_window
= FRAME_MINIBUF_WINDOW (sf
);
10290 f
= XFRAME (WINDOW_FRAME (XWINDOW (mini_window
)));
10292 /* Error messages get reported properly by cmd_error, so this must be
10293 just an informative message; if the frame hasn't really been
10294 initialized yet, just toss it. */
10295 if (f
->glyphs_initialized_p
)
10297 Lisp_Object args
[2], msg
;
10298 struct gcpro gcpro1
, gcpro2
;
10300 args
[0] = build_string (m
);
10301 args
[1] = msg
= string
;
10302 GCPRO2 (args
[0], msg
);
10305 msg
= Fformat (2, args
);
10310 message3_nolog (msg
);
10314 /* Print should start at the beginning of the message
10315 buffer next time. */
10316 message_buf_print
= 0;
10322 /* Dump an informative message to the minibuf. If M is 0, clear out
10323 any existing message, and let the mini-buffer text show through. */
10326 vmessage (const char *m
, va_list ap
)
10328 if (noninteractive
)
10332 if (noninteractive_need_newline
)
10333 putc ('\n', stderr
);
10334 noninteractive_need_newline
= 0;
10335 vfprintf (stderr
, m
, ap
);
10336 if (cursor_in_echo_area
== 0)
10337 fprintf (stderr
, "\n");
10341 else if (INTERACTIVE
)
10343 /* The frame whose mini-buffer we're going to display the message
10344 on. It may be larger than the selected frame, so we need to
10345 use its buffer, not the selected frame's buffer. */
10346 Lisp_Object mini_window
;
10347 struct frame
*f
, *sf
= SELECTED_FRAME ();
10349 /* Get the frame containing the mini-buffer
10350 that the selected frame is using. */
10351 mini_window
= FRAME_MINIBUF_WINDOW (sf
);
10352 f
= XFRAME (WINDOW_FRAME (XWINDOW (mini_window
)));
10354 /* Error messages get reported properly by cmd_error, so this must be
10355 just an informative message; if the frame hasn't really been
10356 initialized yet, just toss it. */
10357 if (f
->glyphs_initialized_p
)
10362 ptrdiff_t maxsize
= FRAME_MESSAGE_BUF_SIZE (f
);
10364 char *message_buf
= SAFE_ALLOCA (maxsize
+ 1);
10366 len
= doprnt (message_buf
, maxsize
, m
, 0, ap
);
10368 message3 (make_string (message_buf
, len
));
10374 /* Print should start at the beginning of the message
10375 buffer next time. */
10376 message_buf_print
= 0;
10382 message (const char *m
, ...)
10392 /* The non-logging version of message. */
10395 message_nolog (const char *m
, ...)
10397 Lisp_Object old_log_max
;
10400 old_log_max
= Vmessage_log_max
;
10401 Vmessage_log_max
= Qnil
;
10403 Vmessage_log_max
= old_log_max
;
10409 /* Display the current message in the current mini-buffer. This is
10410 only called from error handlers in process.c, and is not time
10414 update_echo_area (void)
10416 if (!NILP (echo_area_buffer
[0]))
10418 Lisp_Object string
;
10419 string
= Fcurrent_message ();
10425 /* Make sure echo area buffers in `echo_buffers' are live.
10426 If they aren't, make new ones. */
10429 ensure_echo_area_buffers (void)
10433 for (i
= 0; i
< 2; ++i
)
10434 if (!BUFFERP (echo_buffer
[i
])
10435 || !BUFFER_LIVE_P (XBUFFER (echo_buffer
[i
])))
10438 Lisp_Object old_buffer
;
10441 old_buffer
= echo_buffer
[i
];
10442 echo_buffer
[i
] = Fget_buffer_create
10443 (make_formatted_string (name
, " *Echo Area %d*", i
));
10444 bset_truncate_lines (XBUFFER (echo_buffer
[i
]), Qnil
);
10445 /* to force word wrap in echo area -
10446 it was decided to postpone this*/
10447 /* XBUFFER (echo_buffer[i])->word_wrap = Qt; */
10449 for (j
= 0; j
< 2; ++j
)
10450 if (EQ (old_buffer
, echo_area_buffer
[j
]))
10451 echo_area_buffer
[j
] = echo_buffer
[i
];
10456 /* Call FN with args A1..A2 with either the current or last displayed
10457 echo_area_buffer as current buffer.
10459 WHICH zero means use the current message buffer
10460 echo_area_buffer[0]. If that is nil, choose a suitable buffer
10461 from echo_buffer[] and clear it.
10463 WHICH > 0 means use echo_area_buffer[1]. If that is nil, choose a
10464 suitable buffer from echo_buffer[] and clear it.
10466 If WHICH < 0, set echo_area_buffer[1] to echo_area_buffer[0], so
10467 that the current message becomes the last displayed one, make
10468 choose a suitable buffer for echo_area_buffer[0], and clear it.
10470 Value is what FN returns. */
10473 with_echo_area_buffer (struct window
*w
, int which
,
10474 int (*fn
) (ptrdiff_t, Lisp_Object
),
10475 ptrdiff_t a1
, Lisp_Object a2
)
10477 Lisp_Object buffer
;
10478 int this_one
, the_other
, clear_buffer_p
, rc
;
10479 ptrdiff_t count
= SPECPDL_INDEX ();
10481 /* If buffers aren't live, make new ones. */
10482 ensure_echo_area_buffers ();
10484 clear_buffer_p
= 0;
10487 this_one
= 0, the_other
= 1;
10488 else if (which
> 0)
10489 this_one
= 1, the_other
= 0;
10492 this_one
= 0, the_other
= 1;
10493 clear_buffer_p
= true;
10495 /* We need a fresh one in case the current echo buffer equals
10496 the one containing the last displayed echo area message. */
10497 if (!NILP (echo_area_buffer
[this_one
])
10498 && EQ (echo_area_buffer
[this_one
], echo_area_buffer
[the_other
]))
10499 echo_area_buffer
[this_one
] = Qnil
;
10502 /* Choose a suitable buffer from echo_buffer[] is we don't
10504 if (NILP (echo_area_buffer
[this_one
]))
10506 echo_area_buffer
[this_one
]
10507 = (EQ (echo_area_buffer
[the_other
], echo_buffer
[this_one
])
10508 ? echo_buffer
[the_other
]
10509 : echo_buffer
[this_one
]);
10510 clear_buffer_p
= true;
10513 buffer
= echo_area_buffer
[this_one
];
10515 /* Don't get confused by reusing the buffer used for echoing
10516 for a different purpose. */
10517 if (echo_kboard
== NULL
&& EQ (buffer
, echo_message_buffer
))
10520 record_unwind_protect (unwind_with_echo_area_buffer
,
10521 with_echo_area_buffer_unwind_data (w
));
10523 /* Make the echo area buffer current. Note that for display
10524 purposes, it is not necessary that the displayed window's buffer
10525 == current_buffer, except for text property lookup. So, let's
10526 only set that buffer temporarily here without doing a full
10527 Fset_window_buffer. We must also change w->pointm, though,
10528 because otherwise an assertions in unshow_buffer fails, and Emacs
10530 set_buffer_internal_1 (XBUFFER (buffer
));
10533 wset_buffer (w
, buffer
);
10534 set_marker_both (w
->pointm
, buffer
, BEG
, BEG_BYTE
);
10535 set_marker_both (w
->old_pointm
, buffer
, BEG
, BEG_BYTE
);
10538 bset_undo_list (current_buffer
, Qt
);
10539 bset_read_only (current_buffer
, Qnil
);
10540 specbind (Qinhibit_read_only
, Qt
);
10541 specbind (Qinhibit_modification_hooks
, Qt
);
10543 if (clear_buffer_p
&& Z
> BEG
)
10544 del_range (BEG
, Z
);
10546 eassert (BEGV
>= BEG
);
10547 eassert (ZV
<= Z
&& ZV
>= BEGV
);
10551 eassert (BEGV
>= BEG
);
10552 eassert (ZV
<= Z
&& ZV
>= BEGV
);
10554 unbind_to (count
, Qnil
);
10559 /* Save state that should be preserved around the call to the function
10560 FN called in with_echo_area_buffer. */
10563 with_echo_area_buffer_unwind_data (struct window
*w
)
10566 Lisp_Object vector
, tmp
;
10568 /* Reduce consing by keeping one vector in
10569 Vwith_echo_area_save_vector. */
10570 vector
= Vwith_echo_area_save_vector
;
10571 Vwith_echo_area_save_vector
= Qnil
;
10574 vector
= Fmake_vector (make_number (11), Qnil
);
10576 XSETBUFFER (tmp
, current_buffer
); ASET (vector
, i
, tmp
); ++i
;
10577 ASET (vector
, i
, Vdeactivate_mark
); ++i
;
10578 ASET (vector
, i
, make_number (windows_or_buffers_changed
)); ++i
;
10582 XSETWINDOW (tmp
, w
); ASET (vector
, i
, tmp
); ++i
;
10583 ASET (vector
, i
, w
->contents
); ++i
;
10584 ASET (vector
, i
, make_number (marker_position (w
->pointm
))); ++i
;
10585 ASET (vector
, i
, make_number (marker_byte_position (w
->pointm
))); ++i
;
10586 ASET (vector
, i
, make_number (marker_position (w
->old_pointm
))); ++i
;
10587 ASET (vector
, i
, make_number (marker_byte_position (w
->old_pointm
))); ++i
;
10588 ASET (vector
, i
, make_number (marker_position (w
->start
))); ++i
;
10589 ASET (vector
, i
, make_number (marker_byte_position (w
->start
))); ++i
;
10594 for (; i
< end
; ++i
)
10595 ASET (vector
, i
, Qnil
);
10598 eassert (i
== ASIZE (vector
));
10603 /* Restore global state from VECTOR which was created by
10604 with_echo_area_buffer_unwind_data. */
10607 unwind_with_echo_area_buffer (Lisp_Object vector
)
10609 set_buffer_internal_1 (XBUFFER (AREF (vector
, 0)));
10610 Vdeactivate_mark
= AREF (vector
, 1);
10611 windows_or_buffers_changed
= XFASTINT (AREF (vector
, 2));
10613 if (WINDOWP (AREF (vector
, 3)))
10616 Lisp_Object buffer
;
10618 w
= XWINDOW (AREF (vector
, 3));
10619 buffer
= AREF (vector
, 4);
10621 wset_buffer (w
, buffer
);
10622 set_marker_both (w
->pointm
, buffer
,
10623 XFASTINT (AREF (vector
, 5)),
10624 XFASTINT (AREF (vector
, 6)));
10625 set_marker_both (w
->old_pointm
, buffer
,
10626 XFASTINT (AREF (vector
, 7)),
10627 XFASTINT (AREF (vector
, 8)));
10628 set_marker_both (w
->start
, buffer
,
10629 XFASTINT (AREF (vector
, 9)),
10630 XFASTINT (AREF (vector
, 10)));
10633 Vwith_echo_area_save_vector
= vector
;
10637 /* Set up the echo area for use by print functions. MULTIBYTE_P
10638 non-zero means we will print multibyte. */
10641 setup_echo_area_for_printing (int multibyte_p
)
10643 /* If we can't find an echo area any more, exit. */
10644 if (! FRAME_LIVE_P (XFRAME (selected_frame
)))
10645 Fkill_emacs (Qnil
);
10647 ensure_echo_area_buffers ();
10649 if (!message_buf_print
)
10651 /* A message has been output since the last time we printed.
10652 Choose a fresh echo area buffer. */
10653 if (EQ (echo_area_buffer
[1], echo_buffer
[0]))
10654 echo_area_buffer
[0] = echo_buffer
[1];
10656 echo_area_buffer
[0] = echo_buffer
[0];
10658 /* Switch to that buffer and clear it. */
10659 set_buffer_internal (XBUFFER (echo_area_buffer
[0]));
10660 bset_truncate_lines (current_buffer
, Qnil
);
10664 ptrdiff_t count
= SPECPDL_INDEX ();
10665 specbind (Qinhibit_read_only
, Qt
);
10666 /* Note that undo recording is always disabled. */
10667 del_range (BEG
, Z
);
10668 unbind_to (count
, Qnil
);
10670 TEMP_SET_PT_BOTH (BEG
, BEG_BYTE
);
10672 /* Set up the buffer for the multibyteness we need. */
10674 != !NILP (BVAR (current_buffer
, enable_multibyte_characters
)))
10675 Fset_buffer_multibyte (multibyte_p
? Qt
: Qnil
);
10677 /* Raise the frame containing the echo area. */
10678 if (minibuffer_auto_raise
)
10680 struct frame
*sf
= SELECTED_FRAME ();
10681 Lisp_Object mini_window
;
10682 mini_window
= FRAME_MINIBUF_WINDOW (sf
);
10683 Fraise_frame (WINDOW_FRAME (XWINDOW (mini_window
)));
10686 message_log_maybe_newline ();
10687 message_buf_print
= 1;
10691 if (NILP (echo_area_buffer
[0]))
10693 if (EQ (echo_area_buffer
[1], echo_buffer
[0]))
10694 echo_area_buffer
[0] = echo_buffer
[1];
10696 echo_area_buffer
[0] = echo_buffer
[0];
10699 if (current_buffer
!= XBUFFER (echo_area_buffer
[0]))
10701 /* Someone switched buffers between print requests. */
10702 set_buffer_internal (XBUFFER (echo_area_buffer
[0]));
10703 bset_truncate_lines (current_buffer
, Qnil
);
10709 /* Display an echo area message in window W. Value is non-zero if W's
10710 height is changed. If display_last_displayed_message_p is
10711 non-zero, display the message that was last displayed, otherwise
10712 display the current message. */
10715 display_echo_area (struct window
*w
)
10717 int i
, no_message_p
, window_height_changed_p
;
10719 /* Temporarily disable garbage collections while displaying the echo
10720 area. This is done because a GC can print a message itself.
10721 That message would modify the echo area buffer's contents while a
10722 redisplay of the buffer is going on, and seriously confuse
10724 ptrdiff_t count
= inhibit_garbage_collection ();
10726 /* If there is no message, we must call display_echo_area_1
10727 nevertheless because it resizes the window. But we will have to
10728 reset the echo_area_buffer in question to nil at the end because
10729 with_echo_area_buffer will sets it to an empty buffer. */
10730 i
= display_last_displayed_message_p
? 1 : 0;
10731 no_message_p
= NILP (echo_area_buffer
[i
]);
10733 window_height_changed_p
10734 = with_echo_area_buffer (w
, display_last_displayed_message_p
,
10735 display_echo_area_1
,
10736 (intptr_t) w
, Qnil
);
10739 echo_area_buffer
[i
] = Qnil
;
10741 unbind_to (count
, Qnil
);
10742 return window_height_changed_p
;
10746 /* Helper for display_echo_area. Display the current buffer which
10747 contains the current echo area message in window W, a mini-window,
10748 a pointer to which is passed in A1. A2..A4 are currently not used.
10749 Change the height of W so that all of the message is displayed.
10750 Value is non-zero if height of W was changed. */
10753 display_echo_area_1 (ptrdiff_t a1
, Lisp_Object a2
)
10756 struct window
*w
= (struct window
*) i1
;
10757 Lisp_Object window
;
10758 struct text_pos start
;
10759 int window_height_changed_p
= 0;
10761 /* Do this before displaying, so that we have a large enough glyph
10762 matrix for the display. If we can't get enough space for the
10763 whole text, display the last N lines. That works by setting w->start. */
10764 window_height_changed_p
= resize_mini_window (w
, 0);
10766 /* Use the starting position chosen by resize_mini_window. */
10767 SET_TEXT_POS_FROM_MARKER (start
, w
->start
);
10770 clear_glyph_matrix (w
->desired_matrix
);
10771 XSETWINDOW (window
, w
);
10772 try_window (window
, start
, 0);
10774 return window_height_changed_p
;
10778 /* Resize the echo area window to exactly the size needed for the
10779 currently displayed message, if there is one. If a mini-buffer
10780 is active, don't shrink it. */
10783 resize_echo_area_exactly (void)
10785 if (BUFFERP (echo_area_buffer
[0])
10786 && WINDOWP (echo_area_window
))
10788 struct window
*w
= XWINDOW (echo_area_window
);
10789 Lisp_Object resize_exactly
= (minibuf_level
== 0 ? Qt
: Qnil
);
10790 int resized_p
= with_echo_area_buffer (w
, 0, resize_mini_window_1
,
10791 (intptr_t) w
, resize_exactly
);
10794 windows_or_buffers_changed
= 42;
10795 update_mode_lines
= 30;
10796 redisplay_internal ();
10802 /* Callback function for with_echo_area_buffer, when used from
10803 resize_echo_area_exactly. A1 contains a pointer to the window to
10804 resize, EXACTLY non-nil means resize the mini-window exactly to the
10805 size of the text displayed. A3 and A4 are not used. Value is what
10806 resize_mini_window returns. */
10809 resize_mini_window_1 (ptrdiff_t a1
, Lisp_Object exactly
)
10812 return resize_mini_window ((struct window
*) i1
, !NILP (exactly
));
10816 /* Resize mini-window W to fit the size of its contents. EXACT_P
10817 means size the window exactly to the size needed. Otherwise, it's
10818 only enlarged until W's buffer is empty.
10820 Set W->start to the right place to begin display. If the whole
10821 contents fit, start at the beginning. Otherwise, start so as
10822 to make the end of the contents appear. This is particularly
10823 important for y-or-n-p, but seems desirable generally.
10825 Value is non-zero if the window height has been changed. */
10828 resize_mini_window (struct window
*w
, int exact_p
)
10830 struct frame
*f
= XFRAME (w
->frame
);
10831 int window_height_changed_p
= 0;
10833 eassert (MINI_WINDOW_P (w
));
10835 /* By default, start display at the beginning. */
10836 set_marker_both (w
->start
, w
->contents
,
10837 BUF_BEGV (XBUFFER (w
->contents
)),
10838 BUF_BEGV_BYTE (XBUFFER (w
->contents
)));
10840 /* Don't resize windows while redisplaying a window; it would
10841 confuse redisplay functions when the size of the window they are
10842 displaying changes from under them. Such a resizing can happen,
10843 for instance, when which-func prints a long message while
10844 we are running fontification-functions. We're running these
10845 functions with safe_call which binds inhibit-redisplay to t. */
10846 if (!NILP (Vinhibit_redisplay
))
10849 /* Nil means don't try to resize. */
10850 if (NILP (Vresize_mini_windows
)
10851 || (FRAME_X_P (f
) && FRAME_X_OUTPUT (f
) == NULL
))
10854 if (!FRAME_MINIBUF_ONLY_P (f
))
10857 int total_height
= (WINDOW_PIXEL_HEIGHT (XWINDOW (FRAME_ROOT_WINDOW (f
)))
10858 + WINDOW_PIXEL_HEIGHT (w
));
10859 int unit
= FRAME_LINE_HEIGHT (f
);
10860 int height
, max_height
;
10861 struct text_pos start
;
10862 struct buffer
*old_current_buffer
= NULL
;
10864 if (current_buffer
!= XBUFFER (w
->contents
))
10866 old_current_buffer
= current_buffer
;
10867 set_buffer_internal (XBUFFER (w
->contents
));
10870 init_iterator (&it
, w
, BEGV
, BEGV_BYTE
, NULL
, DEFAULT_FACE_ID
);
10872 /* Compute the max. number of lines specified by the user. */
10873 if (FLOATP (Vmax_mini_window_height
))
10874 max_height
= XFLOATINT (Vmax_mini_window_height
) * total_height
;
10875 else if (INTEGERP (Vmax_mini_window_height
))
10876 max_height
= XINT (Vmax_mini_window_height
) * unit
;
10878 max_height
= total_height
/ 4;
10880 /* Correct that max. height if it's bogus. */
10881 max_height
= clip_to_bounds (unit
, max_height
, total_height
);
10883 /* Find out the height of the text in the window. */
10884 if (it
.line_wrap
== TRUNCATE
)
10889 move_it_to (&it
, ZV
, -1, -1, -1, MOVE_TO_POS
);
10890 if (it
.max_ascent
== 0 && it
.max_descent
== 0)
10891 height
= it
.current_y
+ last_height
;
10893 height
= it
.current_y
+ it
.max_ascent
+ it
.max_descent
;
10894 height
-= min (it
.extra_line_spacing
, it
.max_extra_line_spacing
);
10897 /* Compute a suitable window start. */
10898 if (height
> max_height
)
10900 height
= (max_height
/ unit
) * unit
;
10901 init_iterator (&it
, w
, ZV
, ZV_BYTE
, NULL
, DEFAULT_FACE_ID
);
10902 move_it_vertically_backward (&it
, height
- unit
);
10903 start
= it
.current
.pos
;
10906 SET_TEXT_POS (start
, BEGV
, BEGV_BYTE
);
10907 SET_MARKER_FROM_TEXT_POS (w
->start
, start
);
10909 if (EQ (Vresize_mini_windows
, Qgrow_only
))
10911 /* Let it grow only, until we display an empty message, in which
10912 case the window shrinks again. */
10913 if (height
> WINDOW_PIXEL_HEIGHT (w
))
10915 int old_height
= WINDOW_PIXEL_HEIGHT (w
);
10917 FRAME_WINDOWS_FROZEN (f
) = 1;
10918 grow_mini_window (w
, height
- WINDOW_PIXEL_HEIGHT (w
), 1);
10919 window_height_changed_p
= WINDOW_PIXEL_HEIGHT (w
) != old_height
;
10921 else if (height
< WINDOW_PIXEL_HEIGHT (w
)
10922 && (exact_p
|| BEGV
== ZV
))
10924 int old_height
= WINDOW_PIXEL_HEIGHT (w
);
10926 FRAME_WINDOWS_FROZEN (f
) = 0;
10927 shrink_mini_window (w
, 1);
10928 window_height_changed_p
= WINDOW_PIXEL_HEIGHT (w
) != old_height
;
10933 /* Always resize to exact size needed. */
10934 if (height
> WINDOW_PIXEL_HEIGHT (w
))
10936 int old_height
= WINDOW_PIXEL_HEIGHT (w
);
10938 FRAME_WINDOWS_FROZEN (f
) = 1;
10939 grow_mini_window (w
, height
- WINDOW_PIXEL_HEIGHT (w
), 1);
10940 window_height_changed_p
= WINDOW_PIXEL_HEIGHT (w
) != old_height
;
10942 else if (height
< WINDOW_PIXEL_HEIGHT (w
))
10944 int old_height
= WINDOW_PIXEL_HEIGHT (w
);
10946 FRAME_WINDOWS_FROZEN (f
) = 0;
10947 shrink_mini_window (w
, 1);
10951 FRAME_WINDOWS_FROZEN (f
) = 1;
10952 grow_mini_window (w
, height
- WINDOW_PIXEL_HEIGHT (w
), 1);
10955 window_height_changed_p
= WINDOW_PIXEL_HEIGHT (w
) != old_height
;
10959 if (old_current_buffer
)
10960 set_buffer_internal (old_current_buffer
);
10963 return window_height_changed_p
;
10967 /* Value is the current message, a string, or nil if there is no
10968 current message. */
10971 current_message (void)
10975 if (!BUFFERP (echo_area_buffer
[0]))
10979 with_echo_area_buffer (0, 0, current_message_1
,
10980 (intptr_t) &msg
, Qnil
);
10982 echo_area_buffer
[0] = Qnil
;
10990 current_message_1 (ptrdiff_t a1
, Lisp_Object a2
)
10993 Lisp_Object
*msg
= (Lisp_Object
*) i1
;
10996 *msg
= make_buffer_string (BEG
, Z
, 1);
11003 /* Push the current message on Vmessage_stack for later restoration
11004 by restore_message. Value is non-zero if the current message isn't
11005 empty. This is a relatively infrequent operation, so it's not
11006 worth optimizing. */
11009 push_message (void)
11011 Lisp_Object msg
= current_message ();
11012 Vmessage_stack
= Fcons (msg
, Vmessage_stack
);
11013 return STRINGP (msg
);
11017 /* Restore message display from the top of Vmessage_stack. */
11020 restore_message (void)
11022 eassert (CONSP (Vmessage_stack
));
11023 message3_nolog (XCAR (Vmessage_stack
));
11027 /* Handler for unwind-protect calling pop_message. */
11030 pop_message_unwind (void)
11032 /* Pop the top-most entry off Vmessage_stack. */
11033 eassert (CONSP (Vmessage_stack
));
11034 Vmessage_stack
= XCDR (Vmessage_stack
);
11038 /* Check that Vmessage_stack is nil. Called from emacs.c when Emacs
11039 exits. If the stack is not empty, we have a missing pop_message
11043 check_message_stack (void)
11045 if (!NILP (Vmessage_stack
))
11050 /* Truncate to NCHARS what will be displayed in the echo area the next
11051 time we display it---but don't redisplay it now. */
11054 truncate_echo_area (ptrdiff_t nchars
)
11057 echo_area_buffer
[0] = Qnil
;
11058 else if (!noninteractive
11060 && !NILP (echo_area_buffer
[0]))
11062 struct frame
*sf
= SELECTED_FRAME ();
11063 /* Error messages get reported properly by cmd_error, so this must be
11064 just an informative message; if the frame hasn't really been
11065 initialized yet, just toss it. */
11066 if (sf
->glyphs_initialized_p
)
11067 with_echo_area_buffer (0, 0, truncate_message_1
, nchars
, Qnil
);
11072 /* Helper function for truncate_echo_area. Truncate the current
11073 message to at most NCHARS characters. */
11076 truncate_message_1 (ptrdiff_t nchars
, Lisp_Object a2
)
11078 if (BEG
+ nchars
< Z
)
11079 del_range (BEG
+ nchars
, Z
);
11081 echo_area_buffer
[0] = Qnil
;
11085 /* Set the current message to STRING. */
11088 set_message (Lisp_Object string
)
11090 eassert (STRINGP (string
));
11092 message_enable_multibyte
= STRING_MULTIBYTE (string
);
11094 with_echo_area_buffer (0, -1, set_message_1
, 0, string
);
11095 message_buf_print
= 0;
11096 help_echo_showing_p
= 0;
11098 if (STRINGP (Vdebug_on_message
)
11099 && STRINGP (string
)
11100 && fast_string_match (Vdebug_on_message
, string
) >= 0)
11101 call_debugger (list2 (Qerror
, string
));
11105 /* Helper function for set_message. First argument is ignored and second
11106 argument has the same meaning as for set_message.
11107 This function is called with the echo area buffer being current. */
11110 set_message_1 (ptrdiff_t a1
, Lisp_Object string
)
11112 eassert (STRINGP (string
));
11114 /* Change multibyteness of the echo buffer appropriately. */
11115 if (message_enable_multibyte
11116 != !NILP (BVAR (current_buffer
, enable_multibyte_characters
)))
11117 Fset_buffer_multibyte (message_enable_multibyte
? Qt
: Qnil
);
11119 bset_truncate_lines (current_buffer
, message_truncate_lines
? Qt
: Qnil
);
11120 if (!NILP (BVAR (current_buffer
, bidi_display_reordering
)))
11121 bset_bidi_paragraph_direction (current_buffer
, Qleft_to_right
);
11123 /* Insert new message at BEG. */
11124 TEMP_SET_PT_BOTH (BEG
, BEG_BYTE
);
11126 /* This function takes care of single/multibyte conversion.
11127 We just have to ensure that the echo area buffer has the right
11128 setting of enable_multibyte_characters. */
11129 insert_from_string (string
, 0, 0, SCHARS (string
), SBYTES (string
), 1);
11135 /* Clear messages. CURRENT_P non-zero means clear the current
11136 message. LAST_DISPLAYED_P non-zero means clear the message
11140 clear_message (bool current_p
, bool last_displayed_p
)
11144 echo_area_buffer
[0] = Qnil
;
11145 message_cleared_p
= true;
11148 if (last_displayed_p
)
11149 echo_area_buffer
[1] = Qnil
;
11151 message_buf_print
= 0;
11154 /* Clear garbaged frames.
11156 This function is used where the old redisplay called
11157 redraw_garbaged_frames which in turn called redraw_frame which in
11158 turn called clear_frame. The call to clear_frame was a source of
11159 flickering. I believe a clear_frame is not necessary. It should
11160 suffice in the new redisplay to invalidate all current matrices,
11161 and ensure a complete redisplay of all windows. */
11164 clear_garbaged_frames (void)
11166 if (frame_garbaged
)
11168 Lisp_Object tail
, frame
;
11170 FOR_EACH_FRAME (tail
, frame
)
11172 struct frame
*f
= XFRAME (frame
);
11174 if (FRAME_VISIBLE_P (f
) && FRAME_GARBAGED_P (f
))
11179 clear_current_matrices (f
);
11180 fset_redisplay (f
);
11181 f
->garbaged
= false;
11182 f
->resized_p
= false;
11186 frame_garbaged
= false;
11191 /* Redisplay the echo area of the selected frame. If UPDATE_FRAME_P
11192 is non-zero update selected_frame. Value is non-zero if the
11193 mini-windows height has been changed. */
11196 echo_area_display (bool update_frame_p
)
11198 Lisp_Object mini_window
;
11201 bool window_height_changed_p
= false;
11202 struct frame
*sf
= SELECTED_FRAME ();
11204 mini_window
= FRAME_MINIBUF_WINDOW (sf
);
11205 w
= XWINDOW (mini_window
);
11206 f
= XFRAME (WINDOW_FRAME (w
));
11208 /* Don't display if frame is invisible or not yet initialized. */
11209 if (!FRAME_VISIBLE_P (f
) || !f
->glyphs_initialized_p
)
11212 #ifdef HAVE_WINDOW_SYSTEM
11213 /* When Emacs starts, selected_frame may be the initial terminal
11214 frame. If we let this through, a message would be displayed on
11216 if (FRAME_INITIAL_P (XFRAME (selected_frame
)))
11218 #endif /* HAVE_WINDOW_SYSTEM */
11220 /* Redraw garbaged frames. */
11221 clear_garbaged_frames ();
11223 if (!NILP (echo_area_buffer
[0]) || minibuf_level
== 0)
11225 echo_area_window
= mini_window
;
11226 window_height_changed_p
= display_echo_area (w
);
11227 w
->must_be_updated_p
= true;
11229 /* Update the display, unless called from redisplay_internal.
11230 Also don't update the screen during redisplay itself. The
11231 update will happen at the end of redisplay, and an update
11232 here could cause confusion. */
11233 if (update_frame_p
&& !redisplaying_p
)
11237 /* If the display update has been interrupted by pending
11238 input, update mode lines in the frame. Due to the
11239 pending input, it might have been that redisplay hasn't
11240 been called, so that mode lines above the echo area are
11241 garbaged. This looks odd, so we prevent it here. */
11242 if (!display_completed
)
11243 n
= redisplay_mode_lines (FRAME_ROOT_WINDOW (f
), false);
11245 if (window_height_changed_p
11246 /* Don't do this if Emacs is shutting down. Redisplay
11247 needs to run hooks. */
11248 && !NILP (Vrun_hooks
))
11250 /* Must update other windows. Likewise as in other
11251 cases, don't let this update be interrupted by
11253 ptrdiff_t count
= SPECPDL_INDEX ();
11254 specbind (Qredisplay_dont_pause
, Qt
);
11255 windows_or_buffers_changed
= 44;
11256 redisplay_internal ();
11257 unbind_to (count
, Qnil
);
11259 else if (FRAME_WINDOW_P (f
) && n
== 0)
11261 /* Window configuration is the same as before.
11262 Can do with a display update of the echo area,
11263 unless we displayed some mode lines. */
11264 update_single_window (w
);
11268 update_frame (f
, true, true);
11270 /* If cursor is in the echo area, make sure that the next
11271 redisplay displays the minibuffer, so that the cursor will
11272 be replaced with what the minibuffer wants. */
11273 if (cursor_in_echo_area
)
11274 wset_redisplay (XWINDOW (mini_window
));
11277 else if (!EQ (mini_window
, selected_window
))
11278 wset_redisplay (XWINDOW (mini_window
));
11280 /* Last displayed message is now the current message. */
11281 echo_area_buffer
[1] = echo_area_buffer
[0];
11282 /* Inform read_char that we're not echoing. */
11283 echo_message_buffer
= Qnil
;
11285 /* Prevent redisplay optimization in redisplay_internal by resetting
11286 this_line_start_pos. This is done because the mini-buffer now
11287 displays the message instead of its buffer text. */
11288 if (EQ (mini_window
, selected_window
))
11289 CHARPOS (this_line_start_pos
) = 0;
11291 return window_height_changed_p
;
11294 /* Nonzero if W's buffer was changed but not saved. */
11297 window_buffer_changed (struct window
*w
)
11299 struct buffer
*b
= XBUFFER (w
->contents
);
11301 eassert (BUFFER_LIVE_P (b
));
11303 return (((BUF_SAVE_MODIFF (b
) < BUF_MODIFF (b
)) != w
->last_had_star
));
11306 /* Nonzero if W has %c in its mode line and mode line should be updated. */
11309 mode_line_update_needed (struct window
*w
)
11311 return (w
->column_number_displayed
!= -1
11312 && !(PT
== w
->last_point
&& !window_outdated (w
))
11313 && (w
->column_number_displayed
!= current_column ()));
11316 /* Nonzero if window start of W is frozen and may not be changed during
11320 window_frozen_p (struct window
*w
)
11322 if (FRAME_WINDOWS_FROZEN (XFRAME (WINDOW_FRAME (w
))))
11324 Lisp_Object window
;
11326 XSETWINDOW (window
, w
);
11327 if (MINI_WINDOW_P (w
))
11329 else if (EQ (window
, selected_window
))
11331 else if (MINI_WINDOW_P (XWINDOW (selected_window
))
11332 && EQ (window
, Vminibuf_scroll_window
))
11333 /* This special window can't be frozen too. */
11341 /***********************************************************************
11342 Mode Lines and Frame Titles
11343 ***********************************************************************/
11345 /* A buffer for constructing non-propertized mode-line strings and
11346 frame titles in it; allocated from the heap in init_xdisp and
11347 resized as needed in store_mode_line_noprop_char. */
11349 static char *mode_line_noprop_buf
;
11351 /* The buffer's end, and a current output position in it. */
11353 static char *mode_line_noprop_buf_end
;
11354 static char *mode_line_noprop_ptr
;
11356 #define MODE_LINE_NOPROP_LEN(start) \
11357 ((mode_line_noprop_ptr - mode_line_noprop_buf) - start)
11360 MODE_LINE_DISPLAY
= 0,
11364 } mode_line_target
;
11366 /* Alist that caches the results of :propertize.
11367 Each element is (PROPERTIZED-STRING . PROPERTY-LIST). */
11368 static Lisp_Object mode_line_proptrans_alist
;
11370 /* List of strings making up the mode-line. */
11371 static Lisp_Object mode_line_string_list
;
11373 /* Base face property when building propertized mode line string. */
11374 static Lisp_Object mode_line_string_face
;
11375 static Lisp_Object mode_line_string_face_prop
;
11378 /* Unwind data for mode line strings */
11380 static Lisp_Object Vmode_line_unwind_vector
;
11383 format_mode_line_unwind_data (struct frame
*target_frame
,
11384 struct buffer
*obuf
,
11386 int save_proptrans
)
11388 Lisp_Object vector
, tmp
;
11390 /* Reduce consing by keeping one vector in
11391 Vwith_echo_area_save_vector. */
11392 vector
= Vmode_line_unwind_vector
;
11393 Vmode_line_unwind_vector
= Qnil
;
11396 vector
= Fmake_vector (make_number (10), Qnil
);
11398 ASET (vector
, 0, make_number (mode_line_target
));
11399 ASET (vector
, 1, make_number (MODE_LINE_NOPROP_LEN (0)));
11400 ASET (vector
, 2, mode_line_string_list
);
11401 ASET (vector
, 3, save_proptrans
? mode_line_proptrans_alist
: Qt
);
11402 ASET (vector
, 4, mode_line_string_face
);
11403 ASET (vector
, 5, mode_line_string_face_prop
);
11406 XSETBUFFER (tmp
, obuf
);
11409 ASET (vector
, 6, tmp
);
11410 ASET (vector
, 7, owin
);
11413 /* Similarly to `with-selected-window', if the operation selects
11414 a window on another frame, we must restore that frame's
11415 selected window, and (for a tty) the top-frame. */
11416 ASET (vector
, 8, target_frame
->selected_window
);
11417 if (FRAME_TERMCAP_P (target_frame
))
11418 ASET (vector
, 9, FRAME_TTY (target_frame
)->top_frame
);
11425 unwind_format_mode_line (Lisp_Object vector
)
11427 Lisp_Object old_window
= AREF (vector
, 7);
11428 Lisp_Object target_frame_window
= AREF (vector
, 8);
11429 Lisp_Object old_top_frame
= AREF (vector
, 9);
11431 mode_line_target
= XINT (AREF (vector
, 0));
11432 mode_line_noprop_ptr
= mode_line_noprop_buf
+ XINT (AREF (vector
, 1));
11433 mode_line_string_list
= AREF (vector
, 2);
11434 if (! EQ (AREF (vector
, 3), Qt
))
11435 mode_line_proptrans_alist
= AREF (vector
, 3);
11436 mode_line_string_face
= AREF (vector
, 4);
11437 mode_line_string_face_prop
= AREF (vector
, 5);
11439 /* Select window before buffer, since it may change the buffer. */
11440 if (!NILP (old_window
))
11442 /* If the operation that we are unwinding had selected a window
11443 on a different frame, reset its frame-selected-window. For a
11444 text terminal, reset its top-frame if necessary. */
11445 if (!NILP (target_frame_window
))
11448 = WINDOW_FRAME (XWINDOW (target_frame_window
));
11450 if (!EQ (frame
, WINDOW_FRAME (XWINDOW (old_window
))))
11451 Fselect_window (target_frame_window
, Qt
);
11453 if (!NILP (old_top_frame
) && !EQ (old_top_frame
, frame
))
11454 Fselect_frame (old_top_frame
, Qt
);
11457 Fselect_window (old_window
, Qt
);
11460 if (!NILP (AREF (vector
, 6)))
11462 set_buffer_internal_1 (XBUFFER (AREF (vector
, 6)));
11463 ASET (vector
, 6, Qnil
);
11466 Vmode_line_unwind_vector
= vector
;
11470 /* Store a single character C for the frame title in mode_line_noprop_buf.
11471 Re-allocate mode_line_noprop_buf if necessary. */
11474 store_mode_line_noprop_char (char c
)
11476 /* If output position has reached the end of the allocated buffer,
11477 increase the buffer's size. */
11478 if (mode_line_noprop_ptr
== mode_line_noprop_buf_end
)
11480 ptrdiff_t len
= MODE_LINE_NOPROP_LEN (0);
11481 ptrdiff_t size
= len
;
11482 mode_line_noprop_buf
=
11483 xpalloc (mode_line_noprop_buf
, &size
, 1, STRING_BYTES_BOUND
, 1);
11484 mode_line_noprop_buf_end
= mode_line_noprop_buf
+ size
;
11485 mode_line_noprop_ptr
= mode_line_noprop_buf
+ len
;
11488 *mode_line_noprop_ptr
++ = c
;
11492 /* Store part of a frame title in mode_line_noprop_buf, beginning at
11493 mode_line_noprop_ptr. STRING is the string to store. Do not copy
11494 characters that yield more columns than PRECISION; PRECISION <= 0
11495 means copy the whole string. Pad with spaces until FIELD_WIDTH
11496 number of characters have been copied; FIELD_WIDTH <= 0 means don't
11497 pad. Called from display_mode_element when it is used to build a
11501 store_mode_line_noprop (const char *string
, int field_width
, int precision
)
11503 const unsigned char *str
= (const unsigned char *) string
;
11505 ptrdiff_t dummy
, nbytes
;
11507 /* Copy at most PRECISION chars from STR. */
11508 nbytes
= strlen (string
);
11509 n
+= c_string_width (str
, nbytes
, precision
, &dummy
, &nbytes
);
11511 store_mode_line_noprop_char (*str
++);
11513 /* Fill up with spaces until FIELD_WIDTH reached. */
11514 while (field_width
> 0
11515 && n
< field_width
)
11517 store_mode_line_noprop_char (' ');
11524 /***********************************************************************
11526 ***********************************************************************/
11528 #ifdef HAVE_WINDOW_SYSTEM
11530 /* Set the title of FRAME, if it has changed. The title format is
11531 Vicon_title_format if FRAME is iconified, otherwise it is
11532 frame_title_format. */
11535 x_consider_frame_title (Lisp_Object frame
)
11537 struct frame
*f
= XFRAME (frame
);
11539 if (FRAME_WINDOW_P (f
)
11540 || FRAME_MINIBUF_ONLY_P (f
)
11541 || f
->explicit_name
)
11543 /* Do we have more than one visible frame on this X display? */
11544 Lisp_Object tail
, other_frame
, fmt
;
11545 ptrdiff_t title_start
;
11549 ptrdiff_t count
= SPECPDL_INDEX ();
11551 FOR_EACH_FRAME (tail
, other_frame
)
11553 struct frame
*tf
= XFRAME (other_frame
);
11556 && FRAME_KBOARD (tf
) == FRAME_KBOARD (f
)
11557 && !FRAME_MINIBUF_ONLY_P (tf
)
11558 && !EQ (other_frame
, tip_frame
)
11559 && (FRAME_VISIBLE_P (tf
) || FRAME_ICONIFIED_P (tf
)))
11563 /* Set global variable indicating that multiple frames exist. */
11564 multiple_frames
= CONSP (tail
);
11566 /* Switch to the buffer of selected window of the frame. Set up
11567 mode_line_target so that display_mode_element will output into
11568 mode_line_noprop_buf; then display the title. */
11569 record_unwind_protect (unwind_format_mode_line
,
11570 format_mode_line_unwind_data
11571 (f
, current_buffer
, selected_window
, 0));
11573 Fselect_window (f
->selected_window
, Qt
);
11574 set_buffer_internal_1
11575 (XBUFFER (XWINDOW (f
->selected_window
)->contents
));
11576 fmt
= FRAME_ICONIFIED_P (f
) ? Vicon_title_format
: Vframe_title_format
;
11578 mode_line_target
= MODE_LINE_TITLE
;
11579 title_start
= MODE_LINE_NOPROP_LEN (0);
11580 init_iterator (&it
, XWINDOW (f
->selected_window
), -1, -1,
11581 NULL
, DEFAULT_FACE_ID
);
11582 display_mode_element (&it
, 0, -1, -1, fmt
, Qnil
, 0);
11583 len
= MODE_LINE_NOPROP_LEN (title_start
);
11584 title
= mode_line_noprop_buf
+ title_start
;
11585 unbind_to (count
, Qnil
);
11587 /* Set the title only if it's changed. This avoids consing in
11588 the common case where it hasn't. (If it turns out that we've
11589 already wasted too much time by walking through the list with
11590 display_mode_element, then we might need to optimize at a
11591 higher level than this.) */
11592 if (! STRINGP (f
->name
)
11593 || SBYTES (f
->name
) != len
11594 || memcmp (title
, SDATA (f
->name
), len
) != 0)
11595 x_implicitly_set_name (f
, make_string (title
, len
), Qnil
);
11599 #endif /* not HAVE_WINDOW_SYSTEM */
11602 /***********************************************************************
11604 ***********************************************************************/
11606 /* Non-zero if we will not redisplay all visible windows. */
11607 #define REDISPLAY_SOME_P() \
11608 ((windows_or_buffers_changed == 0 \
11609 || windows_or_buffers_changed == REDISPLAY_SOME) \
11610 && (update_mode_lines == 0 \
11611 || update_mode_lines == REDISPLAY_SOME))
11613 /* Prepare for redisplay by updating menu-bar item lists when
11614 appropriate. This can call eval. */
11617 prepare_menu_bars (void)
11619 bool all_windows
= windows_or_buffers_changed
|| update_mode_lines
;
11620 bool some_windows
= REDISPLAY_SOME_P ();
11621 struct gcpro gcpro1
, gcpro2
;
11622 Lisp_Object tooltip_frame
;
11624 #ifdef HAVE_WINDOW_SYSTEM
11625 tooltip_frame
= tip_frame
;
11627 tooltip_frame
= Qnil
;
11630 if (FUNCTIONP (Vpre_redisplay_function
))
11632 Lisp_Object windows
= all_windows
? Qt
: Qnil
;
11633 if (all_windows
&& some_windows
)
11635 Lisp_Object ws
= window_list ();
11636 for (windows
= Qnil
; CONSP (ws
); ws
= XCDR (ws
))
11638 Lisp_Object
this = XCAR (ws
);
11639 struct window
*w
= XWINDOW (this);
11641 || XFRAME (w
->frame
)->redisplay
11642 || XBUFFER (w
->contents
)->text
->redisplay
)
11644 windows
= Fcons (this, windows
);
11648 safe__call1 (true, Vpre_redisplay_function
, windows
);
11651 /* Update all frame titles based on their buffer names, etc. We do
11652 this before the menu bars so that the buffer-menu will show the
11653 up-to-date frame titles. */
11654 #ifdef HAVE_WINDOW_SYSTEM
11657 Lisp_Object tail
, frame
;
11659 FOR_EACH_FRAME (tail
, frame
)
11661 struct frame
*f
= XFRAME (frame
);
11662 struct window
*w
= XWINDOW (FRAME_SELECTED_WINDOW (f
));
11666 && !XBUFFER (w
->contents
)->text
->redisplay
)
11669 if (!EQ (frame
, tooltip_frame
)
11670 && (FRAME_ICONIFIED_P (f
)
11671 || FRAME_VISIBLE_P (f
) == 1
11672 /* Exclude TTY frames that are obscured because they
11673 are not the top frame on their console. This is
11674 because x_consider_frame_title actually switches
11675 to the frame, which for TTY frames means it is
11676 marked as garbaged, and will be completely
11677 redrawn on the next redisplay cycle. This causes
11678 TTY frames to be completely redrawn, when there
11679 are more than one of them, even though nothing
11680 should be changed on display. */
11681 || (FRAME_VISIBLE_P (f
) == 2 && FRAME_WINDOW_P (f
))))
11682 x_consider_frame_title (frame
);
11685 #endif /* HAVE_WINDOW_SYSTEM */
11687 /* Update the menu bar item lists, if appropriate. This has to be
11688 done before any actual redisplay or generation of display lines. */
11692 Lisp_Object tail
, frame
;
11693 ptrdiff_t count
= SPECPDL_INDEX ();
11694 /* 1 means that update_menu_bar has run its hooks
11695 so any further calls to update_menu_bar shouldn't do so again. */
11696 int menu_bar_hooks_run
= 0;
11698 record_unwind_save_match_data ();
11700 FOR_EACH_FRAME (tail
, frame
)
11702 struct frame
*f
= XFRAME (frame
);
11703 struct window
*w
= XWINDOW (FRAME_SELECTED_WINDOW (f
));
11705 /* Ignore tooltip frame. */
11706 if (EQ (frame
, tooltip_frame
))
11712 && !XBUFFER (w
->contents
)->text
->redisplay
)
11715 /* If a window on this frame changed size, report that to
11716 the user and clear the size-change flag. */
11717 if (FRAME_WINDOW_SIZES_CHANGED (f
))
11719 Lisp_Object functions
;
11721 /* Clear flag first in case we get an error below. */
11722 FRAME_WINDOW_SIZES_CHANGED (f
) = 0;
11723 functions
= Vwindow_size_change_functions
;
11724 GCPRO2 (tail
, functions
);
11726 while (CONSP (functions
))
11728 if (!EQ (XCAR (functions
), Qt
))
11729 call1 (XCAR (functions
), frame
);
11730 functions
= XCDR (functions
);
11736 menu_bar_hooks_run
= update_menu_bar (f
, 0, menu_bar_hooks_run
);
11737 #ifdef HAVE_WINDOW_SYSTEM
11738 update_tool_bar (f
, 0);
11743 unbind_to (count
, Qnil
);
11747 struct frame
*sf
= SELECTED_FRAME ();
11748 update_menu_bar (sf
, 1, 0);
11749 #ifdef HAVE_WINDOW_SYSTEM
11750 update_tool_bar (sf
, 1);
11756 /* Update the menu bar item list for frame F. This has to be done
11757 before we start to fill in any display lines, because it can call
11760 If SAVE_MATCH_DATA is non-zero, we must save and restore it here.
11762 If HOOKS_RUN is 1, that means a previous call to update_menu_bar
11763 already ran the menu bar hooks for this redisplay, so there
11764 is no need to run them again. The return value is the
11765 updated value of this flag, to pass to the next call. */
11768 update_menu_bar (struct frame
*f
, int save_match_data
, int hooks_run
)
11770 Lisp_Object window
;
11771 register struct window
*w
;
11773 /* If called recursively during a menu update, do nothing. This can
11774 happen when, for instance, an activate-menubar-hook causes a
11776 if (inhibit_menubar_update
)
11779 window
= FRAME_SELECTED_WINDOW (f
);
11780 w
= XWINDOW (window
);
11782 if (FRAME_WINDOW_P (f
)
11784 #if defined (USE_X_TOOLKIT) || defined (HAVE_NTGUI) \
11785 || defined (HAVE_NS) || defined (USE_GTK)
11786 FRAME_EXTERNAL_MENU_BAR (f
)
11788 FRAME_MENU_BAR_LINES (f
) > 0
11790 : FRAME_MENU_BAR_LINES (f
) > 0)
11792 /* If the user has switched buffers or windows, we need to
11793 recompute to reflect the new bindings. But we'll
11794 recompute when update_mode_lines is set too; that means
11795 that people can use force-mode-line-update to request
11796 that the menu bar be recomputed. The adverse effect on
11797 the rest of the redisplay algorithm is about the same as
11798 windows_or_buffers_changed anyway. */
11799 if (windows_or_buffers_changed
11800 /* This used to test w->update_mode_line, but we believe
11801 there is no need to recompute the menu in that case. */
11802 || update_mode_lines
11803 || window_buffer_changed (w
))
11805 struct buffer
*prev
= current_buffer
;
11806 ptrdiff_t count
= SPECPDL_INDEX ();
11808 specbind (Qinhibit_menubar_update
, Qt
);
11810 set_buffer_internal_1 (XBUFFER (w
->contents
));
11811 if (save_match_data
)
11812 record_unwind_save_match_data ();
11813 if (NILP (Voverriding_local_map_menu_flag
))
11815 specbind (Qoverriding_terminal_local_map
, Qnil
);
11816 specbind (Qoverriding_local_map
, Qnil
);
11821 /* Run the Lucid hook. */
11822 safe_run_hooks (Qactivate_menubar_hook
);
11824 /* If it has changed current-menubar from previous value,
11825 really recompute the menu-bar from the value. */
11826 if (! NILP (Vlucid_menu_bar_dirty_flag
))
11827 call0 (Qrecompute_lucid_menubar
);
11829 safe_run_hooks (Qmenu_bar_update_hook
);
11834 XSETFRAME (Vmenu_updating_frame
, f
);
11835 fset_menu_bar_items (f
, menu_bar_items (FRAME_MENU_BAR_ITEMS (f
)));
11837 /* Redisplay the menu bar in case we changed it. */
11838 #if defined (USE_X_TOOLKIT) || defined (HAVE_NTGUI) \
11839 || defined (HAVE_NS) || defined (USE_GTK)
11840 if (FRAME_WINDOW_P (f
))
11842 #if defined (HAVE_NS)
11843 /* All frames on Mac OS share the same menubar. So only
11844 the selected frame should be allowed to set it. */
11845 if (f
== SELECTED_FRAME ())
11847 set_frame_menubar (f
, 0, 0);
11850 /* On a terminal screen, the menu bar is an ordinary screen
11851 line, and this makes it get updated. */
11852 w
->update_mode_line
= 1;
11853 #else /* ! (USE_X_TOOLKIT || HAVE_NTGUI || HAVE_NS || USE_GTK) */
11854 /* In the non-toolkit version, the menu bar is an ordinary screen
11855 line, and this makes it get updated. */
11856 w
->update_mode_line
= 1;
11857 #endif /* ! (USE_X_TOOLKIT || HAVE_NTGUI || HAVE_NS || USE_GTK) */
11859 unbind_to (count
, Qnil
);
11860 set_buffer_internal_1 (prev
);
11867 /***********************************************************************
11869 ***********************************************************************/
11871 #ifdef HAVE_WINDOW_SYSTEM
11873 /* Select `frame' temporarily without running all the code in
11875 FIXME: Maybe do_switch_frame should be trimmed down similarly
11876 when `norecord' is set. */
11878 fast_set_selected_frame (Lisp_Object frame
)
11880 if (!EQ (selected_frame
, frame
))
11882 selected_frame
= frame
;
11883 selected_window
= XFRAME (frame
)->selected_window
;
11887 /* Update the tool-bar item list for frame F. This has to be done
11888 before we start to fill in any display lines. Called from
11889 prepare_menu_bars. If SAVE_MATCH_DATA is non-zero, we must save
11890 and restore it here. */
11893 update_tool_bar (struct frame
*f
, int save_match_data
)
11895 #if defined (USE_GTK) || defined (HAVE_NS)
11896 int do_update
= FRAME_EXTERNAL_TOOL_BAR (f
);
11898 int do_update
= (WINDOWP (f
->tool_bar_window
)
11899 && WINDOW_TOTAL_LINES (XWINDOW (f
->tool_bar_window
)) > 0);
11904 Lisp_Object window
;
11907 window
= FRAME_SELECTED_WINDOW (f
);
11908 w
= XWINDOW (window
);
11910 /* If the user has switched buffers or windows, we need to
11911 recompute to reflect the new bindings. But we'll
11912 recompute when update_mode_lines is set too; that means
11913 that people can use force-mode-line-update to request
11914 that the menu bar be recomputed. The adverse effect on
11915 the rest of the redisplay algorithm is about the same as
11916 windows_or_buffers_changed anyway. */
11917 if (windows_or_buffers_changed
11918 || w
->update_mode_line
11919 || update_mode_lines
11920 || window_buffer_changed (w
))
11922 struct buffer
*prev
= current_buffer
;
11923 ptrdiff_t count
= SPECPDL_INDEX ();
11924 Lisp_Object frame
, new_tool_bar
;
11925 int new_n_tool_bar
;
11926 struct gcpro gcpro1
;
11928 /* Set current_buffer to the buffer of the selected
11929 window of the frame, so that we get the right local
11931 set_buffer_internal_1 (XBUFFER (w
->contents
));
11933 /* Save match data, if we must. */
11934 if (save_match_data
)
11935 record_unwind_save_match_data ();
11937 /* Make sure that we don't accidentally use bogus keymaps. */
11938 if (NILP (Voverriding_local_map_menu_flag
))
11940 specbind (Qoverriding_terminal_local_map
, Qnil
);
11941 specbind (Qoverriding_local_map
, Qnil
);
11944 GCPRO1 (new_tool_bar
);
11946 /* We must temporarily set the selected frame to this frame
11947 before calling tool_bar_items, because the calculation of
11948 the tool-bar keymap uses the selected frame (see
11949 `tool-bar-make-keymap' in tool-bar.el). */
11950 eassert (EQ (selected_window
,
11951 /* Since we only explicitly preserve selected_frame,
11952 check that selected_window would be redundant. */
11953 XFRAME (selected_frame
)->selected_window
));
11954 record_unwind_protect (fast_set_selected_frame
, selected_frame
);
11955 XSETFRAME (frame
, f
);
11956 fast_set_selected_frame (frame
);
11958 /* Build desired tool-bar items from keymaps. */
11960 = tool_bar_items (Fcopy_sequence (f
->tool_bar_items
),
11963 /* Redisplay the tool-bar if we changed it. */
11964 if (new_n_tool_bar
!= f
->n_tool_bar_items
11965 || NILP (Fequal (new_tool_bar
, f
->tool_bar_items
)))
11967 /* Redisplay that happens asynchronously due to an expose event
11968 may access f->tool_bar_items. Make sure we update both
11969 variables within BLOCK_INPUT so no such event interrupts. */
11971 fset_tool_bar_items (f
, new_tool_bar
);
11972 f
->n_tool_bar_items
= new_n_tool_bar
;
11973 w
->update_mode_line
= 1;
11979 unbind_to (count
, Qnil
);
11980 set_buffer_internal_1 (prev
);
11985 #if ! defined (USE_GTK) && ! defined (HAVE_NS)
11987 /* Set F->desired_tool_bar_string to a Lisp string representing frame
11988 F's desired tool-bar contents. F->tool_bar_items must have
11989 been set up previously by calling prepare_menu_bars. */
11992 build_desired_tool_bar_string (struct frame
*f
)
11994 int i
, size
, size_needed
;
11995 struct gcpro gcpro1
, gcpro2
;
11996 Lisp_Object image
, plist
;
11998 image
= plist
= Qnil
;
11999 GCPRO2 (image
, plist
);
12001 /* Prepare F->desired_tool_bar_string. If we can reuse it, do so.
12002 Otherwise, make a new string. */
12004 /* The size of the string we might be able to reuse. */
12005 size
= (STRINGP (f
->desired_tool_bar_string
)
12006 ? SCHARS (f
->desired_tool_bar_string
)
12009 /* We need one space in the string for each image. */
12010 size_needed
= f
->n_tool_bar_items
;
12012 /* Reuse f->desired_tool_bar_string, if possible. */
12013 if (size
< size_needed
|| NILP (f
->desired_tool_bar_string
))
12014 fset_desired_tool_bar_string
12015 (f
, Fmake_string (make_number (size_needed
), make_number (' ')));
12018 AUTO_LIST4 (props
, Qdisplay
, Qnil
, Qmenu_item
, Qnil
);
12019 struct gcpro gcpro1
;
12021 Fremove_text_properties (make_number (0), make_number (size
),
12022 props
, f
->desired_tool_bar_string
);
12026 /* Put a `display' property on the string for the images to display,
12027 put a `menu_item' property on tool-bar items with a value that
12028 is the index of the item in F's tool-bar item vector. */
12029 for (i
= 0; i
< f
->n_tool_bar_items
; ++i
)
12031 #define PROP(IDX) \
12032 AREF (f->tool_bar_items, i * TOOL_BAR_ITEM_NSLOTS + (IDX))
12034 int enabled_p
= !NILP (PROP (TOOL_BAR_ITEM_ENABLED_P
));
12035 int selected_p
= !NILP (PROP (TOOL_BAR_ITEM_SELECTED_P
));
12036 int hmargin
, vmargin
, relief
, idx
, end
;
12038 /* If image is a vector, choose the image according to the
12040 image
= PROP (TOOL_BAR_ITEM_IMAGES
);
12041 if (VECTORP (image
))
12045 ? TOOL_BAR_IMAGE_ENABLED_SELECTED
12046 : TOOL_BAR_IMAGE_ENABLED_DESELECTED
);
12049 ? TOOL_BAR_IMAGE_DISABLED_SELECTED
12050 : TOOL_BAR_IMAGE_DISABLED_DESELECTED
);
12052 eassert (ASIZE (image
) >= idx
);
12053 image
= AREF (image
, idx
);
12058 /* Ignore invalid image specifications. */
12059 if (!valid_image_p (image
))
12062 /* Display the tool-bar button pressed, or depressed. */
12063 plist
= Fcopy_sequence (XCDR (image
));
12065 /* Compute margin and relief to draw. */
12066 relief
= (tool_bar_button_relief
>= 0
12067 ? tool_bar_button_relief
12068 : DEFAULT_TOOL_BAR_BUTTON_RELIEF
);
12069 hmargin
= vmargin
= relief
;
12071 if (RANGED_INTEGERP (1, Vtool_bar_button_margin
,
12072 INT_MAX
- max (hmargin
, vmargin
)))
12074 hmargin
+= XFASTINT (Vtool_bar_button_margin
);
12075 vmargin
+= XFASTINT (Vtool_bar_button_margin
);
12077 else if (CONSP (Vtool_bar_button_margin
))
12079 if (RANGED_INTEGERP (1, XCAR (Vtool_bar_button_margin
),
12080 INT_MAX
- hmargin
))
12081 hmargin
+= XFASTINT (XCAR (Vtool_bar_button_margin
));
12083 if (RANGED_INTEGERP (1, XCDR (Vtool_bar_button_margin
),
12084 INT_MAX
- vmargin
))
12085 vmargin
+= XFASTINT (XCDR (Vtool_bar_button_margin
));
12088 if (auto_raise_tool_bar_buttons_p
)
12090 /* Add a `:relief' property to the image spec if the item is
12094 plist
= Fplist_put (plist
, QCrelief
, make_number (-relief
));
12101 /* If image is selected, display it pressed, i.e. with a
12102 negative relief. If it's not selected, display it with a
12104 plist
= Fplist_put (plist
, QCrelief
,
12106 ? make_number (-relief
)
12107 : make_number (relief
)));
12112 /* Put a margin around the image. */
12113 if (hmargin
|| vmargin
)
12115 if (hmargin
== vmargin
)
12116 plist
= Fplist_put (plist
, QCmargin
, make_number (hmargin
));
12118 plist
= Fplist_put (plist
, QCmargin
,
12119 Fcons (make_number (hmargin
),
12120 make_number (vmargin
)));
12123 /* If button is not enabled, and we don't have special images
12124 for the disabled state, make the image appear disabled by
12125 applying an appropriate algorithm to it. */
12126 if (!enabled_p
&& idx
< 0)
12127 plist
= Fplist_put (plist
, QCconversion
, Qdisabled
);
12129 /* Put a `display' text property on the string for the image to
12130 display. Put a `menu-item' property on the string that gives
12131 the start of this item's properties in the tool-bar items
12133 image
= Fcons (Qimage
, plist
);
12134 AUTO_LIST4 (props
, Qdisplay
, image
, Qmenu_item
,
12135 make_number (i
* TOOL_BAR_ITEM_NSLOTS
));
12136 struct gcpro gcpro1
;
12139 /* Let the last image hide all remaining spaces in the tool bar
12140 string. The string can be longer than needed when we reuse a
12141 previous string. */
12142 if (i
+ 1 == f
->n_tool_bar_items
)
12143 end
= SCHARS (f
->desired_tool_bar_string
);
12146 Fadd_text_properties (make_number (i
), make_number (end
),
12147 props
, f
->desired_tool_bar_string
);
12156 /* Display one line of the tool-bar of frame IT->f.
12158 HEIGHT specifies the desired height of the tool-bar line.
12159 If the actual height of the glyph row is less than HEIGHT, the
12160 row's height is increased to HEIGHT, and the icons are centered
12161 vertically in the new height.
12163 If HEIGHT is -1, we are counting needed tool-bar lines, so don't
12164 count a final empty row in case the tool-bar width exactly matches
12169 display_tool_bar_line (struct it
*it
, int height
)
12171 struct glyph_row
*row
= it
->glyph_row
;
12172 int max_x
= it
->last_visible_x
;
12173 struct glyph
*last
;
12175 /* Don't extend on a previously drawn tool bar items (Bug#16058). */
12176 clear_glyph_row (row
);
12177 row
->enabled_p
= true;
12178 row
->y
= it
->current_y
;
12180 /* Note that this isn't made use of if the face hasn't a box,
12181 so there's no need to check the face here. */
12182 it
->start_of_box_run_p
= 1;
12184 while (it
->current_x
< max_x
)
12186 int x
, n_glyphs_before
, i
, nglyphs
;
12187 struct it it_before
;
12189 /* Get the next display element. */
12190 if (!get_next_display_element (it
))
12192 /* Don't count empty row if we are counting needed tool-bar lines. */
12193 if (height
< 0 && !it
->hpos
)
12198 /* Produce glyphs. */
12199 n_glyphs_before
= row
->used
[TEXT_AREA
];
12202 PRODUCE_GLYPHS (it
);
12204 nglyphs
= row
->used
[TEXT_AREA
] - n_glyphs_before
;
12206 x
= it_before
.current_x
;
12207 while (i
< nglyphs
)
12209 struct glyph
*glyph
= row
->glyphs
[TEXT_AREA
] + n_glyphs_before
+ i
;
12211 if (x
+ glyph
->pixel_width
> max_x
)
12213 /* Glyph doesn't fit on line. Backtrack. */
12214 row
->used
[TEXT_AREA
] = n_glyphs_before
;
12216 /* If this is the only glyph on this line, it will never fit on the
12217 tool-bar, so skip it. But ensure there is at least one glyph,
12218 so we don't accidentally disable the tool-bar. */
12219 if (n_glyphs_before
== 0
12220 && (it
->vpos
> 0 || IT_STRING_CHARPOS (*it
) < it
->end_charpos
-1))
12226 x
+= glyph
->pixel_width
;
12230 /* Stop at line end. */
12231 if (ITERATOR_AT_END_OF_LINE_P (it
))
12234 set_iterator_to_next (it
, 1);
12239 row
->displays_text_p
= row
->used
[TEXT_AREA
] != 0;
12241 /* Use default face for the border below the tool bar.
12243 FIXME: When auto-resize-tool-bars is grow-only, there is
12244 no additional border below the possibly empty tool-bar lines.
12245 So to make the extra empty lines look "normal", we have to
12246 use the tool-bar face for the border too. */
12247 if (!MATRIX_ROW_DISPLAYS_TEXT_P (row
)
12248 && !EQ (Vauto_resize_tool_bars
, Qgrow_only
))
12249 it
->face_id
= DEFAULT_FACE_ID
;
12251 extend_face_to_end_of_line (it
);
12252 last
= row
->glyphs
[TEXT_AREA
] + row
->used
[TEXT_AREA
] - 1;
12253 last
->right_box_line_p
= 1;
12254 if (last
== row
->glyphs
[TEXT_AREA
])
12255 last
->left_box_line_p
= 1;
12257 /* Make line the desired height and center it vertically. */
12258 if ((height
-= it
->max_ascent
+ it
->max_descent
) > 0)
12260 /* Don't add more than one line height. */
12261 height
%= FRAME_LINE_HEIGHT (it
->f
);
12262 it
->max_ascent
+= height
/ 2;
12263 it
->max_descent
+= (height
+ 1) / 2;
12266 compute_line_metrics (it
);
12268 /* If line is empty, make it occupy the rest of the tool-bar. */
12269 if (!MATRIX_ROW_DISPLAYS_TEXT_P (row
))
12271 row
->height
= row
->phys_height
= it
->last_visible_y
- row
->y
;
12272 row
->visible_height
= row
->height
;
12273 row
->ascent
= row
->phys_ascent
= 0;
12274 row
->extra_line_spacing
= 0;
12277 row
->full_width_p
= 1;
12278 row
->continued_p
= 0;
12279 row
->truncated_on_left_p
= 0;
12280 row
->truncated_on_right_p
= 0;
12282 it
->current_x
= it
->hpos
= 0;
12283 it
->current_y
+= row
->height
;
12289 /* Value is the number of pixels needed to make all tool-bar items of
12290 frame F visible. The actual number of glyph rows needed is
12291 returned in *N_ROWS if non-NULL. */
12293 tool_bar_height (struct frame
*f
, int *n_rows
, bool pixelwise
)
12295 struct window
*w
= XWINDOW (f
->tool_bar_window
);
12297 /* tool_bar_height is called from redisplay_tool_bar after building
12298 the desired matrix, so use (unused) mode-line row as temporary row to
12299 avoid destroying the first tool-bar row. */
12300 struct glyph_row
*temp_row
= MATRIX_MODE_LINE_ROW (w
->desired_matrix
);
12302 /* Initialize an iterator for iteration over
12303 F->desired_tool_bar_string in the tool-bar window of frame F. */
12304 init_iterator (&it
, w
, -1, -1, temp_row
, TOOL_BAR_FACE_ID
);
12305 temp_row
->reversed_p
= false;
12306 it
.first_visible_x
= 0;
12307 it
.last_visible_x
= WINDOW_PIXEL_WIDTH (w
);
12308 reseat_to_string (&it
, NULL
, f
->desired_tool_bar_string
, 0, 0, 0, -1);
12309 it
.paragraph_embedding
= L2R
;
12311 while (!ITERATOR_AT_END_P (&it
))
12313 clear_glyph_row (temp_row
);
12314 it
.glyph_row
= temp_row
;
12315 display_tool_bar_line (&it
, -1);
12317 clear_glyph_row (temp_row
);
12319 /* f->n_tool_bar_rows == 0 means "unknown"; -1 means no tool-bar. */
12321 *n_rows
= it
.vpos
> 0 ? it
.vpos
: -1;
12324 return it
.current_y
;
12326 return (it
.current_y
+ FRAME_LINE_HEIGHT (f
) - 1) / FRAME_LINE_HEIGHT (f
);
12329 #endif /* !USE_GTK && !HAVE_NS */
12331 DEFUN ("tool-bar-height", Ftool_bar_height
, Stool_bar_height
,
12333 doc
: /* Return the number of lines occupied by the tool bar of FRAME.
12334 If FRAME is nil or omitted, use the selected frame. Optional argument
12335 PIXELWISE non-nil means return the height of the tool bar in pixels. */)
12336 (Lisp_Object frame
, Lisp_Object pixelwise
)
12340 #if ! defined (USE_GTK) && ! defined (HAVE_NS)
12341 struct frame
*f
= decode_any_frame (frame
);
12343 if (WINDOWP (f
->tool_bar_window
)
12344 && WINDOW_PIXEL_HEIGHT (XWINDOW (f
->tool_bar_window
)) > 0)
12346 update_tool_bar (f
, 1);
12347 if (f
->n_tool_bar_items
)
12349 build_desired_tool_bar_string (f
);
12350 height
= tool_bar_height (f
, NULL
, NILP (pixelwise
) ? 0 : 1);
12355 return make_number (height
);
12359 /* Display the tool-bar of frame F. Value is non-zero if tool-bar's
12360 height should be changed. */
12362 redisplay_tool_bar (struct frame
*f
)
12364 #if defined (USE_GTK) || defined (HAVE_NS)
12366 if (FRAME_EXTERNAL_TOOL_BAR (f
))
12367 update_frame_tool_bar (f
);
12370 #else /* !USE_GTK && !HAVE_NS */
12374 struct glyph_row
*row
;
12376 /* If frame hasn't a tool-bar window or if it is zero-height, don't
12377 do anything. This means you must start with tool-bar-lines
12378 non-zero to get the auto-sizing effect. Or in other words, you
12379 can turn off tool-bars by specifying tool-bar-lines zero. */
12380 if (!WINDOWP (f
->tool_bar_window
)
12381 || (w
= XWINDOW (f
->tool_bar_window
),
12382 WINDOW_TOTAL_LINES (w
) == 0))
12385 /* Set up an iterator for the tool-bar window. */
12386 init_iterator (&it
, w
, -1, -1, w
->desired_matrix
->rows
, TOOL_BAR_FACE_ID
);
12387 it
.first_visible_x
= 0;
12388 it
.last_visible_x
= WINDOW_PIXEL_WIDTH (w
);
12389 row
= it
.glyph_row
;
12390 row
->reversed_p
= false;
12392 /* Build a string that represents the contents of the tool-bar. */
12393 build_desired_tool_bar_string (f
);
12394 reseat_to_string (&it
, NULL
, f
->desired_tool_bar_string
, 0, 0, 0, -1);
12395 /* FIXME: This should be controlled by a user option. But it
12396 doesn't make sense to have an R2L tool bar if the menu bar cannot
12397 be drawn also R2L, and making the menu bar R2L is tricky due
12398 toolkit-specific code that implements it. If an R2L tool bar is
12399 ever supported, display_tool_bar_line should also be augmented to
12400 call unproduce_glyphs like display_line and display_string
12402 it
.paragraph_embedding
= L2R
;
12404 if (f
->n_tool_bar_rows
== 0)
12406 int new_height
= tool_bar_height (f
, &f
->n_tool_bar_rows
, 1);
12408 if (new_height
!= WINDOW_PIXEL_HEIGHT (w
))
12410 x_change_tool_bar_height (f
, new_height
);
12411 frame_default_tool_bar_height
= new_height
;
12412 /* Always do that now. */
12413 clear_glyph_matrix (w
->desired_matrix
);
12414 f
->fonts_changed
= 1;
12419 /* Display as many lines as needed to display all tool-bar items. */
12421 if (f
->n_tool_bar_rows
> 0)
12423 int border
, rows
, height
, extra
;
12425 if (TYPE_RANGED_INTEGERP (int, Vtool_bar_border
))
12426 border
= XINT (Vtool_bar_border
);
12427 else if (EQ (Vtool_bar_border
, Qinternal_border_width
))
12428 border
= FRAME_INTERNAL_BORDER_WIDTH (f
);
12429 else if (EQ (Vtool_bar_border
, Qborder_width
))
12430 border
= f
->border_width
;
12436 rows
= f
->n_tool_bar_rows
;
12437 height
= max (1, (it
.last_visible_y
- border
) / rows
);
12438 extra
= it
.last_visible_y
- border
- height
* rows
;
12440 while (it
.current_y
< it
.last_visible_y
)
12443 if (extra
> 0 && rows
-- > 0)
12445 h
= (extra
+ rows
- 1) / rows
;
12448 display_tool_bar_line (&it
, height
+ h
);
12453 while (it
.current_y
< it
.last_visible_y
)
12454 display_tool_bar_line (&it
, 0);
12457 /* It doesn't make much sense to try scrolling in the tool-bar
12458 window, so don't do it. */
12459 w
->desired_matrix
->no_scrolling_p
= 1;
12460 w
->must_be_updated_p
= 1;
12462 if (!NILP (Vauto_resize_tool_bars
))
12464 int change_height_p
= 0;
12466 /* If we couldn't display everything, change the tool-bar's
12467 height if there is room for more. */
12468 if (IT_STRING_CHARPOS (it
) < it
.end_charpos
)
12469 change_height_p
= 1;
12471 /* We subtract 1 because display_tool_bar_line advances the
12472 glyph_row pointer before returning to its caller. We want to
12473 examine the last glyph row produced by
12474 display_tool_bar_line. */
12475 row
= it
.glyph_row
- 1;
12477 /* If there are blank lines at the end, except for a partially
12478 visible blank line at the end that is smaller than
12479 FRAME_LINE_HEIGHT, change the tool-bar's height. */
12480 if (!MATRIX_ROW_DISPLAYS_TEXT_P (row
)
12481 && row
->height
>= FRAME_LINE_HEIGHT (f
))
12482 change_height_p
= 1;
12484 /* If row displays tool-bar items, but is partially visible,
12485 change the tool-bar's height. */
12486 if (MATRIX_ROW_DISPLAYS_TEXT_P (row
)
12487 && MATRIX_ROW_BOTTOM_Y (row
) > it
.last_visible_y
)
12488 change_height_p
= 1;
12490 /* Resize windows as needed by changing the `tool-bar-lines'
12491 frame parameter. */
12492 if (change_height_p
)
12495 int new_height
= tool_bar_height (f
, &nrows
, 1);
12497 change_height_p
= ((EQ (Vauto_resize_tool_bars
, Qgrow_only
)
12498 && !f
->minimize_tool_bar_window_p
)
12499 ? (new_height
> WINDOW_PIXEL_HEIGHT (w
))
12500 : (new_height
!= WINDOW_PIXEL_HEIGHT (w
)));
12501 f
->minimize_tool_bar_window_p
= 0;
12503 if (change_height_p
)
12505 x_change_tool_bar_height (f
, new_height
);
12506 frame_default_tool_bar_height
= new_height
;
12507 clear_glyph_matrix (w
->desired_matrix
);
12508 f
->n_tool_bar_rows
= nrows
;
12509 f
->fonts_changed
= 1;
12516 f
->minimize_tool_bar_window_p
= 0;
12519 #endif /* USE_GTK || HAVE_NS */
12522 #if ! defined (USE_GTK) && ! defined (HAVE_NS)
12524 /* Get information about the tool-bar item which is displayed in GLYPH
12525 on frame F. Return in *PROP_IDX the index where tool-bar item
12526 properties start in F->tool_bar_items. Value is zero if
12527 GLYPH doesn't display a tool-bar item. */
12530 tool_bar_item_info (struct frame
*f
, struct glyph
*glyph
, int *prop_idx
)
12536 /* This function can be called asynchronously, which means we must
12537 exclude any possibility that Fget_text_property signals an
12539 charpos
= min (SCHARS (f
->current_tool_bar_string
), glyph
->charpos
);
12540 charpos
= max (0, charpos
);
12542 /* Get the text property `menu-item' at pos. The value of that
12543 property is the start index of this item's properties in
12544 F->tool_bar_items. */
12545 prop
= Fget_text_property (make_number (charpos
),
12546 Qmenu_item
, f
->current_tool_bar_string
);
12547 if (INTEGERP (prop
))
12549 *prop_idx
= XINT (prop
);
12559 /* Get information about the tool-bar item at position X/Y on frame F.
12560 Return in *GLYPH a pointer to the glyph of the tool-bar item in
12561 the current matrix of the tool-bar window of F, or NULL if not
12562 on a tool-bar item. Return in *PROP_IDX the index of the tool-bar
12563 item in F->tool_bar_items. Value is
12565 -1 if X/Y is not on a tool-bar item
12566 0 if X/Y is on the same item that was highlighted before.
12570 get_tool_bar_item (struct frame
*f
, int x
, int y
, struct glyph
**glyph
,
12571 int *hpos
, int *vpos
, int *prop_idx
)
12573 Mouse_HLInfo
*hlinfo
= MOUSE_HL_INFO (f
);
12574 struct window
*w
= XWINDOW (f
->tool_bar_window
);
12577 /* Find the glyph under X/Y. */
12578 *glyph
= x_y_to_hpos_vpos (w
, x
, y
, hpos
, vpos
, 0, 0, &area
);
12579 if (*glyph
== NULL
)
12582 /* Get the start of this tool-bar item's properties in
12583 f->tool_bar_items. */
12584 if (!tool_bar_item_info (f
, *glyph
, prop_idx
))
12587 /* Is mouse on the highlighted item? */
12588 if (EQ (f
->tool_bar_window
, hlinfo
->mouse_face_window
)
12589 && *vpos
>= hlinfo
->mouse_face_beg_row
12590 && *vpos
<= hlinfo
->mouse_face_end_row
12591 && (*vpos
> hlinfo
->mouse_face_beg_row
12592 || *hpos
>= hlinfo
->mouse_face_beg_col
)
12593 && (*vpos
< hlinfo
->mouse_face_end_row
12594 || *hpos
< hlinfo
->mouse_face_end_col
12595 || hlinfo
->mouse_face_past_end
))
12603 Handle mouse button event on the tool-bar of frame F, at
12604 frame-relative coordinates X/Y. DOWN_P is 1 for a button press,
12605 0 for button release. MODIFIERS is event modifiers for button
12609 handle_tool_bar_click (struct frame
*f
, int x
, int y
, int down_p
,
12612 Mouse_HLInfo
*hlinfo
= MOUSE_HL_INFO (f
);
12613 struct window
*w
= XWINDOW (f
->tool_bar_window
);
12614 int hpos
, vpos
, prop_idx
;
12615 struct glyph
*glyph
;
12616 Lisp_Object enabled_p
;
12619 /* If not on the highlighted tool-bar item, and mouse-highlight is
12620 non-nil, return. This is so we generate the tool-bar button
12621 click only when the mouse button is released on the same item as
12622 where it was pressed. However, when mouse-highlight is disabled,
12623 generate the click when the button is released regardless of the
12624 highlight, since tool-bar items are not highlighted in that
12626 frame_to_window_pixel_xy (w
, &x
, &y
);
12627 ts
= get_tool_bar_item (f
, x
, y
, &glyph
, &hpos
, &vpos
, &prop_idx
);
12629 || (ts
!= 0 && !NILP (Vmouse_highlight
)))
12632 /* When mouse-highlight is off, generate the click for the item
12633 where the button was pressed, disregarding where it was
12635 if (NILP (Vmouse_highlight
) && !down_p
)
12636 prop_idx
= f
->last_tool_bar_item
;
12638 /* If item is disabled, do nothing. */
12639 enabled_p
= AREF (f
->tool_bar_items
, prop_idx
+ TOOL_BAR_ITEM_ENABLED_P
);
12640 if (NILP (enabled_p
))
12645 /* Show item in pressed state. */
12646 if (!NILP (Vmouse_highlight
))
12647 show_mouse_face (hlinfo
, DRAW_IMAGE_SUNKEN
);
12648 f
->last_tool_bar_item
= prop_idx
;
12652 Lisp_Object key
, frame
;
12653 struct input_event event
;
12654 EVENT_INIT (event
);
12656 /* Show item in released state. */
12657 if (!NILP (Vmouse_highlight
))
12658 show_mouse_face (hlinfo
, DRAW_IMAGE_RAISED
);
12660 key
= AREF (f
->tool_bar_items
, prop_idx
+ TOOL_BAR_ITEM_KEY
);
12662 XSETFRAME (frame
, f
);
12663 event
.kind
= TOOL_BAR_EVENT
;
12664 event
.frame_or_window
= frame
;
12666 kbd_buffer_store_event (&event
);
12668 event
.kind
= TOOL_BAR_EVENT
;
12669 event
.frame_or_window
= frame
;
12671 event
.modifiers
= modifiers
;
12672 kbd_buffer_store_event (&event
);
12673 f
->last_tool_bar_item
= -1;
12678 /* Possibly highlight a tool-bar item on frame F when mouse moves to
12679 tool-bar window-relative coordinates X/Y. Called from
12680 note_mouse_highlight. */
12683 note_tool_bar_highlight (struct frame
*f
, int x
, int y
)
12685 Lisp_Object window
= f
->tool_bar_window
;
12686 struct window
*w
= XWINDOW (window
);
12687 Display_Info
*dpyinfo
= FRAME_DISPLAY_INFO (f
);
12688 Mouse_HLInfo
*hlinfo
= MOUSE_HL_INFO (f
);
12690 struct glyph
*glyph
;
12691 struct glyph_row
*row
;
12693 Lisp_Object enabled_p
;
12695 enum draw_glyphs_face draw
= DRAW_IMAGE_RAISED
;
12696 int mouse_down_p
, rc
;
12698 /* Function note_mouse_highlight is called with negative X/Y
12699 values when mouse moves outside of the frame. */
12700 if (x
<= 0 || y
<= 0)
12702 clear_mouse_face (hlinfo
);
12706 rc
= get_tool_bar_item (f
, x
, y
, &glyph
, &hpos
, &vpos
, &prop_idx
);
12709 /* Not on tool-bar item. */
12710 clear_mouse_face (hlinfo
);
12714 /* On same tool-bar item as before. */
12715 goto set_help_echo
;
12717 clear_mouse_face (hlinfo
);
12719 /* Mouse is down, but on different tool-bar item? */
12720 mouse_down_p
= (x_mouse_grabbed (dpyinfo
)
12721 && f
== dpyinfo
->last_mouse_frame
);
12723 if (mouse_down_p
&& f
->last_tool_bar_item
!= prop_idx
)
12726 draw
= mouse_down_p
? DRAW_IMAGE_SUNKEN
: DRAW_IMAGE_RAISED
;
12728 /* If tool-bar item is not enabled, don't highlight it. */
12729 enabled_p
= AREF (f
->tool_bar_items
, prop_idx
+ TOOL_BAR_ITEM_ENABLED_P
);
12730 if (!NILP (enabled_p
) && !NILP (Vmouse_highlight
))
12732 /* Compute the x-position of the glyph. In front and past the
12733 image is a space. We include this in the highlighted area. */
12734 row
= MATRIX_ROW (w
->current_matrix
, vpos
);
12735 for (i
= x
= 0; i
< hpos
; ++i
)
12736 x
+= row
->glyphs
[TEXT_AREA
][i
].pixel_width
;
12738 /* Record this as the current active region. */
12739 hlinfo
->mouse_face_beg_col
= hpos
;
12740 hlinfo
->mouse_face_beg_row
= vpos
;
12741 hlinfo
->mouse_face_beg_x
= x
;
12742 hlinfo
->mouse_face_past_end
= 0;
12744 hlinfo
->mouse_face_end_col
= hpos
+ 1;
12745 hlinfo
->mouse_face_end_row
= vpos
;
12746 hlinfo
->mouse_face_end_x
= x
+ glyph
->pixel_width
;
12747 hlinfo
->mouse_face_window
= window
;
12748 hlinfo
->mouse_face_face_id
= TOOL_BAR_FACE_ID
;
12750 /* Display it as active. */
12751 show_mouse_face (hlinfo
, draw
);
12756 /* Set help_echo_string to a help string to display for this tool-bar item.
12757 XTread_socket does the rest. */
12758 help_echo_object
= help_echo_window
= Qnil
;
12759 help_echo_pos
= -1;
12760 help_echo_string
= AREF (f
->tool_bar_items
, prop_idx
+ TOOL_BAR_ITEM_HELP
);
12761 if (NILP (help_echo_string
))
12762 help_echo_string
= AREF (f
->tool_bar_items
, prop_idx
+ TOOL_BAR_ITEM_CAPTION
);
12765 #endif /* !USE_GTK && !HAVE_NS */
12767 #endif /* HAVE_WINDOW_SYSTEM */
12771 /************************************************************************
12772 Horizontal scrolling
12773 ************************************************************************/
12775 static int hscroll_window_tree (Lisp_Object
);
12776 static int hscroll_windows (Lisp_Object
);
12778 /* For all leaf windows in the window tree rooted at WINDOW, set their
12779 hscroll value so that PT is (i) visible in the window, and (ii) so
12780 that it is not within a certain margin at the window's left and
12781 right border. Value is non-zero if any window's hscroll has been
12785 hscroll_window_tree (Lisp_Object window
)
12787 int hscrolled_p
= 0;
12788 int hscroll_relative_p
= FLOATP (Vhscroll_step
);
12789 int hscroll_step_abs
= 0;
12790 double hscroll_step_rel
= 0;
12792 if (hscroll_relative_p
)
12794 hscroll_step_rel
= XFLOAT_DATA (Vhscroll_step
);
12795 if (hscroll_step_rel
< 0)
12797 hscroll_relative_p
= 0;
12798 hscroll_step_abs
= 0;
12801 else if (TYPE_RANGED_INTEGERP (int, Vhscroll_step
))
12803 hscroll_step_abs
= XINT (Vhscroll_step
);
12804 if (hscroll_step_abs
< 0)
12805 hscroll_step_abs
= 0;
12808 hscroll_step_abs
= 0;
12810 while (WINDOWP (window
))
12812 struct window
*w
= XWINDOW (window
);
12814 if (WINDOWP (w
->contents
))
12815 hscrolled_p
|= hscroll_window_tree (w
->contents
);
12816 else if (w
->cursor
.vpos
>= 0)
12819 int text_area_width
;
12820 struct glyph_row
*cursor_row
;
12821 struct glyph_row
*bottom_row
;
12824 bottom_row
= MATRIX_BOTTOM_TEXT_ROW (w
->desired_matrix
, w
);
12825 if (w
->cursor
.vpos
< bottom_row
- w
->desired_matrix
->rows
)
12826 cursor_row
= MATRIX_ROW (w
->desired_matrix
, w
->cursor
.vpos
);
12828 cursor_row
= bottom_row
- 1;
12830 if (!cursor_row
->enabled_p
)
12832 bottom_row
= MATRIX_BOTTOM_TEXT_ROW (w
->current_matrix
, w
);
12833 if (w
->cursor
.vpos
< bottom_row
- w
->current_matrix
->rows
)
12834 cursor_row
= MATRIX_ROW (w
->current_matrix
, w
->cursor
.vpos
);
12836 cursor_row
= bottom_row
- 1;
12838 row_r2l_p
= cursor_row
->reversed_p
;
12840 text_area_width
= window_box_width (w
, TEXT_AREA
);
12842 /* Scroll when cursor is inside this scroll margin. */
12843 h_margin
= hscroll_margin
* WINDOW_FRAME_COLUMN_WIDTH (w
);
12845 /* If the position of this window's point has explicitly
12846 changed, no more suspend auto hscrolling. */
12847 if (NILP (Fequal (Fwindow_point (window
), Fwindow_old_point (window
))))
12848 w
->suspend_auto_hscroll
= 0;
12850 /* Remember window point. */
12851 Fset_marker (w
->old_pointm
,
12852 ((w
== XWINDOW (selected_window
))
12853 ? make_number (BUF_PT (XBUFFER (w
->contents
)))
12854 : Fmarker_position (w
->pointm
)),
12857 if (!NILP (Fbuffer_local_value (Qauto_hscroll_mode
, w
->contents
))
12858 && w
->suspend_auto_hscroll
== 0
12859 /* In some pathological cases, like restoring a window
12860 configuration into a frame that is much smaller than
12861 the one from which the configuration was saved, we
12862 get glyph rows whose start and end have zero buffer
12863 positions, which we cannot handle below. Just skip
12865 && CHARPOS (cursor_row
->start
.pos
) >= BUF_BEG (w
->contents
)
12866 /* For left-to-right rows, hscroll when cursor is either
12867 (i) inside the right hscroll margin, or (ii) if it is
12868 inside the left margin and the window is already
12871 && ((w
->hscroll
&& w
->cursor
.x
<= h_margin
)
12872 || (cursor_row
->enabled_p
12873 && cursor_row
->truncated_on_right_p
12874 && (w
->cursor
.x
>= text_area_width
- h_margin
))))
12875 /* For right-to-left rows, the logic is similar,
12876 except that rules for scrolling to left and right
12877 are reversed. E.g., if cursor.x <= h_margin, we
12878 need to hscroll "to the right" unconditionally,
12879 and that will scroll the screen to the left so as
12880 to reveal the next portion of the row. */
12882 && ((cursor_row
->enabled_p
12883 /* FIXME: It is confusing to set the
12884 truncated_on_right_p flag when R2L rows
12885 are actually truncated on the left. */
12886 && cursor_row
->truncated_on_right_p
12887 && w
->cursor
.x
<= h_margin
)
12889 && (w
->cursor
.x
>= text_area_width
- h_margin
))))))
12893 struct buffer
*saved_current_buffer
;
12897 /* Find point in a display of infinite width. */
12898 saved_current_buffer
= current_buffer
;
12899 current_buffer
= XBUFFER (w
->contents
);
12901 if (w
== XWINDOW (selected_window
))
12904 pt
= clip_to_bounds (BEGV
, marker_position (w
->pointm
), ZV
);
12906 /* Move iterator to pt starting at cursor_row->start in
12907 a line with infinite width. */
12908 init_to_row_start (&it
, w
, cursor_row
);
12909 it
.last_visible_x
= INFINITY
;
12910 move_it_in_display_line_to (&it
, pt
, -1, MOVE_TO_POS
);
12911 current_buffer
= saved_current_buffer
;
12913 /* Position cursor in window. */
12914 if (!hscroll_relative_p
&& hscroll_step_abs
== 0)
12915 hscroll
= max (0, (it
.current_x
12916 - (ITERATOR_AT_END_OF_LINE_P (&it
)
12917 ? (text_area_width
- 4 * FRAME_COLUMN_WIDTH (it
.f
))
12918 : (text_area_width
/ 2))))
12919 / FRAME_COLUMN_WIDTH (it
.f
);
12920 else if ((!row_r2l_p
12921 && w
->cursor
.x
>= text_area_width
- h_margin
)
12922 || (row_r2l_p
&& w
->cursor
.x
<= h_margin
))
12924 if (hscroll_relative_p
)
12925 wanted_x
= text_area_width
* (1 - hscroll_step_rel
)
12928 wanted_x
= text_area_width
12929 - hscroll_step_abs
* FRAME_COLUMN_WIDTH (it
.f
)
12932 = max (0, it
.current_x
- wanted_x
) / FRAME_COLUMN_WIDTH (it
.f
);
12936 if (hscroll_relative_p
)
12937 wanted_x
= text_area_width
* hscroll_step_rel
12940 wanted_x
= hscroll_step_abs
* FRAME_COLUMN_WIDTH (it
.f
)
12943 = max (0, it
.current_x
- wanted_x
) / FRAME_COLUMN_WIDTH (it
.f
);
12945 hscroll
= max (hscroll
, w
->min_hscroll
);
12947 /* Don't prevent redisplay optimizations if hscroll
12948 hasn't changed, as it will unnecessarily slow down
12950 if (w
->hscroll
!= hscroll
)
12952 XBUFFER (w
->contents
)->prevent_redisplay_optimizations_p
= 1;
12953 w
->hscroll
= hscroll
;
12962 /* Value is non-zero if hscroll of any leaf window has been changed. */
12963 return hscrolled_p
;
12967 /* Set hscroll so that cursor is visible and not inside horizontal
12968 scroll margins for all windows in the tree rooted at WINDOW. See
12969 also hscroll_window_tree above. Value is non-zero if any window's
12970 hscroll has been changed. If it has, desired matrices on the frame
12971 of WINDOW are cleared. */
12974 hscroll_windows (Lisp_Object window
)
12976 int hscrolled_p
= hscroll_window_tree (window
);
12978 clear_desired_matrices (XFRAME (WINDOW_FRAME (XWINDOW (window
))));
12979 return hscrolled_p
;
12984 /************************************************************************
12986 ************************************************************************/
12988 /* Variables holding some state of redisplay if GLYPH_DEBUG is defined
12989 to a non-zero value. This is sometimes handy to have in a debugger
12994 /* First and last unchanged row for try_window_id. */
12996 static int debug_first_unchanged_at_end_vpos
;
12997 static int debug_last_unchanged_at_beg_vpos
;
12999 /* Delta vpos and y. */
13001 static int debug_dvpos
, debug_dy
;
13003 /* Delta in characters and bytes for try_window_id. */
13005 static ptrdiff_t debug_delta
, debug_delta_bytes
;
13007 /* Values of window_end_pos and window_end_vpos at the end of
13010 static ptrdiff_t debug_end_vpos
;
13012 /* Append a string to W->desired_matrix->method. FMT is a printf
13013 format string. If trace_redisplay_p is true also printf the
13014 resulting string to stderr. */
13016 static void debug_method_add (struct window
*, char const *, ...)
13017 ATTRIBUTE_FORMAT_PRINTF (2, 3);
13020 debug_method_add (struct window
*w
, char const *fmt
, ...)
13023 char *method
= w
->desired_matrix
->method
;
13024 int len
= strlen (method
);
13025 int size
= sizeof w
->desired_matrix
->method
;
13026 int remaining
= size
- len
- 1;
13029 if (len
&& remaining
)
13032 --remaining
, ++len
;
13035 va_start (ap
, fmt
);
13036 vsnprintf (method
+ len
, remaining
+ 1, fmt
, ap
);
13039 if (trace_redisplay_p
)
13040 fprintf (stderr
, "%p (%s): %s\n",
13042 ((BUFFERP (w
->contents
)
13043 && STRINGP (BVAR (XBUFFER (w
->contents
), name
)))
13044 ? SSDATA (BVAR (XBUFFER (w
->contents
), name
))
13049 #endif /* GLYPH_DEBUG */
13052 /* Value is non-zero if all changes in window W, which displays
13053 current_buffer, are in the text between START and END. START is a
13054 buffer position, END is given as a distance from Z. Used in
13055 redisplay_internal for display optimization. */
13058 text_outside_line_unchanged_p (struct window
*w
,
13059 ptrdiff_t start
, ptrdiff_t end
)
13061 int unchanged_p
= 1;
13063 /* If text or overlays have changed, see where. */
13064 if (window_outdated (w
))
13066 /* Gap in the line? */
13067 if (GPT
< start
|| Z
- GPT
< end
)
13070 /* Changes start in front of the line, or end after it? */
13072 && (BEG_UNCHANGED
< start
- 1
13073 || END_UNCHANGED
< end
))
13076 /* If selective display, can't optimize if changes start at the
13077 beginning of the line. */
13079 && INTEGERP (BVAR (current_buffer
, selective_display
))
13080 && XINT (BVAR (current_buffer
, selective_display
)) > 0
13081 && (BEG_UNCHANGED
< start
|| GPT
<= start
))
13084 /* If there are overlays at the start or end of the line, these
13085 may have overlay strings with newlines in them. A change at
13086 START, for instance, may actually concern the display of such
13087 overlay strings as well, and they are displayed on different
13088 lines. So, quickly rule out this case. (For the future, it
13089 might be desirable to implement something more telling than
13090 just BEG/END_UNCHANGED.) */
13093 if (BEG
+ BEG_UNCHANGED
== start
13094 && overlay_touches_p (start
))
13096 if (END_UNCHANGED
== end
13097 && overlay_touches_p (Z
- end
))
13101 /* Under bidi reordering, adding or deleting a character in the
13102 beginning of a paragraph, before the first strong directional
13103 character, can change the base direction of the paragraph (unless
13104 the buffer specifies a fixed paragraph direction), which will
13105 require to redisplay the whole paragraph. It might be worthwhile
13106 to find the paragraph limits and widen the range of redisplayed
13107 lines to that, but for now just give up this optimization. */
13108 if (!NILP (BVAR (XBUFFER (w
->contents
), bidi_display_reordering
))
13109 && NILP (BVAR (XBUFFER (w
->contents
), bidi_paragraph_direction
)))
13113 return unchanged_p
;
13117 /* Do a frame update, taking possible shortcuts into account. This is
13118 the main external entry point for redisplay.
13120 If the last redisplay displayed an echo area message and that message
13121 is no longer requested, we clear the echo area or bring back the
13122 mini-buffer if that is in use. */
13127 redisplay_internal ();
13132 overlay_arrow_string_or_property (Lisp_Object var
)
13136 if (val
= Fget (var
, Qoverlay_arrow_string
), STRINGP (val
))
13139 return Voverlay_arrow_string
;
13142 /* Return 1 if there are any overlay-arrows in current_buffer. */
13144 overlay_arrow_in_current_buffer_p (void)
13148 for (vlist
= Voverlay_arrow_variable_list
;
13150 vlist
= XCDR (vlist
))
13152 Lisp_Object var
= XCAR (vlist
);
13155 if (!SYMBOLP (var
))
13157 val
= find_symbol_value (var
);
13159 && current_buffer
== XMARKER (val
)->buffer
)
13166 /* Return 1 if any overlay_arrows have moved or overlay-arrow-string
13170 overlay_arrows_changed_p (void)
13174 for (vlist
= Voverlay_arrow_variable_list
;
13176 vlist
= XCDR (vlist
))
13178 Lisp_Object var
= XCAR (vlist
);
13179 Lisp_Object val
, pstr
;
13181 if (!SYMBOLP (var
))
13183 val
= find_symbol_value (var
);
13184 if (!MARKERP (val
))
13186 if (! EQ (COERCE_MARKER (val
),
13187 Fget (var
, Qlast_arrow_position
))
13188 || ! (pstr
= overlay_arrow_string_or_property (var
),
13189 EQ (pstr
, Fget (var
, Qlast_arrow_string
))))
13195 /* Mark overlay arrows to be updated on next redisplay. */
13198 update_overlay_arrows (int up_to_date
)
13202 for (vlist
= Voverlay_arrow_variable_list
;
13204 vlist
= XCDR (vlist
))
13206 Lisp_Object var
= XCAR (vlist
);
13208 if (!SYMBOLP (var
))
13211 if (up_to_date
> 0)
13213 Lisp_Object val
= find_symbol_value (var
);
13214 Fput (var
, Qlast_arrow_position
,
13215 COERCE_MARKER (val
));
13216 Fput (var
, Qlast_arrow_string
,
13217 overlay_arrow_string_or_property (var
));
13219 else if (up_to_date
< 0
13220 || !NILP (Fget (var
, Qlast_arrow_position
)))
13222 Fput (var
, Qlast_arrow_position
, Qt
);
13223 Fput (var
, Qlast_arrow_string
, Qt
);
13229 /* Return overlay arrow string to display at row.
13230 Return integer (bitmap number) for arrow bitmap in left fringe.
13231 Return nil if no overlay arrow. */
13234 overlay_arrow_at_row (struct it
*it
, struct glyph_row
*row
)
13238 for (vlist
= Voverlay_arrow_variable_list
;
13240 vlist
= XCDR (vlist
))
13242 Lisp_Object var
= XCAR (vlist
);
13245 if (!SYMBOLP (var
))
13248 val
= find_symbol_value (var
);
13251 && current_buffer
== XMARKER (val
)->buffer
13252 && (MATRIX_ROW_START_CHARPOS (row
) == marker_position (val
)))
13254 if (FRAME_WINDOW_P (it
->f
)
13255 /* FIXME: if ROW->reversed_p is set, this should test
13256 the right fringe, not the left one. */
13257 && WINDOW_LEFT_FRINGE_WIDTH (it
->w
) > 0)
13259 #ifdef HAVE_WINDOW_SYSTEM
13260 if (val
= Fget (var
, Qoverlay_arrow_bitmap
), SYMBOLP (val
))
13263 if ((fringe_bitmap
= lookup_fringe_bitmap (val
)) != 0)
13264 return make_number (fringe_bitmap
);
13267 return make_number (-1); /* Use default arrow bitmap. */
13269 return overlay_arrow_string_or_property (var
);
13276 /* Return 1 if point moved out of or into a composition. Otherwise
13277 return 0. PREV_BUF and PREV_PT are the last point buffer and
13278 position. BUF and PT are the current point buffer and position. */
13281 check_point_in_composition (struct buffer
*prev_buf
, ptrdiff_t prev_pt
,
13282 struct buffer
*buf
, ptrdiff_t pt
)
13284 ptrdiff_t start
, end
;
13286 Lisp_Object buffer
;
13288 XSETBUFFER (buffer
, buf
);
13289 /* Check a composition at the last point if point moved within the
13291 if (prev_buf
== buf
)
13294 /* Point didn't move. */
13297 if (prev_pt
> BUF_BEGV (buf
) && prev_pt
< BUF_ZV (buf
)
13298 && find_composition (prev_pt
, -1, &start
, &end
, &prop
, buffer
)
13299 && composition_valid_p (start
, end
, prop
)
13300 && start
< prev_pt
&& end
> prev_pt
)
13301 /* The last point was within the composition. Return 1 iff
13302 point moved out of the composition. */
13303 return (pt
<= start
|| pt
>= end
);
13306 /* Check a composition at the current point. */
13307 return (pt
> BUF_BEGV (buf
) && pt
< BUF_ZV (buf
)
13308 && find_composition (pt
, -1, &start
, &end
, &prop
, buffer
)
13309 && composition_valid_p (start
, end
, prop
)
13310 && start
< pt
&& end
> pt
);
13313 /* Reconsider the clip changes of buffer which is displayed in W. */
13316 reconsider_clip_changes (struct window
*w
)
13318 struct buffer
*b
= XBUFFER (w
->contents
);
13320 if (b
->clip_changed
13321 && w
->window_end_valid
13322 && w
->current_matrix
->buffer
== b
13323 && w
->current_matrix
->zv
== BUF_ZV (b
)
13324 && w
->current_matrix
->begv
== BUF_BEGV (b
))
13325 b
->clip_changed
= 0;
13327 /* If display wasn't paused, and W is not a tool bar window, see if
13328 point has been moved into or out of a composition. In that case,
13329 we set b->clip_changed to 1 to force updating the screen. If
13330 b->clip_changed has already been set to 1, we can skip this
13332 if (!b
->clip_changed
&& w
->window_end_valid
)
13334 ptrdiff_t pt
= (w
== XWINDOW (selected_window
)
13335 ? PT
: marker_position (w
->pointm
));
13337 if ((w
->current_matrix
->buffer
!= b
|| pt
!= w
->last_point
)
13338 && check_point_in_composition (w
->current_matrix
->buffer
,
13339 w
->last_point
, b
, pt
))
13340 b
->clip_changed
= 1;
13345 propagate_buffer_redisplay (void)
13346 { /* Resetting b->text->redisplay is problematic!
13347 We can't just reset it in the case that some window that displays
13348 it has not been redisplayed; and such a window can stay
13349 unredisplayed for a long time if it's currently invisible.
13350 But we do want to reset it at the end of redisplay otherwise
13351 its displayed windows will keep being redisplayed over and over
13353 So we copy all b->text->redisplay flags up to their windows here,
13354 such that mark_window_display_accurate can safely reset
13355 b->text->redisplay. */
13356 Lisp_Object ws
= window_list ();
13357 for (; CONSP (ws
); ws
= XCDR (ws
))
13359 struct window
*thisw
= XWINDOW (XCAR (ws
));
13360 struct buffer
*thisb
= XBUFFER (thisw
->contents
);
13361 if (thisb
->text
->redisplay
)
13362 thisw
->redisplay
= true;
13366 #define STOP_POLLING \
13367 do { if (! polling_stopped_here) stop_polling (); \
13368 polling_stopped_here = 1; } while (0)
13370 #define RESUME_POLLING \
13371 do { if (polling_stopped_here) start_polling (); \
13372 polling_stopped_here = 0; } while (0)
13375 /* Perhaps in the future avoid recentering windows if it
13376 is not necessary; currently that causes some problems. */
13379 redisplay_internal (void)
13381 struct window
*w
= XWINDOW (selected_window
);
13385 bool must_finish
= 0, match_p
;
13386 struct text_pos tlbufpos
, tlendpos
;
13387 int number_of_visible_frames
;
13390 int polling_stopped_here
= 0;
13391 Lisp_Object tail
, frame
;
13393 /* True means redisplay has to consider all windows on all
13394 frames. False, only selected_window is considered. */
13395 bool consider_all_windows_p
;
13397 /* True means redisplay has to redisplay the miniwindow. */
13398 bool update_miniwindow_p
= false;
13400 TRACE ((stderr
, "redisplay_internal %d\n", redisplaying_p
));
13402 /* No redisplay if running in batch mode or frame is not yet fully
13403 initialized, or redisplay is explicitly turned off by setting
13404 Vinhibit_redisplay. */
13405 if (FRAME_INITIAL_P (SELECTED_FRAME ())
13406 || !NILP (Vinhibit_redisplay
))
13409 /* Don't examine these until after testing Vinhibit_redisplay.
13410 When Emacs is shutting down, perhaps because its connection to
13411 X has dropped, we should not look at them at all. */
13412 fr
= XFRAME (w
->frame
);
13413 sf
= SELECTED_FRAME ();
13415 if (!fr
->glyphs_initialized_p
)
13418 #if defined (USE_X_TOOLKIT) || defined (USE_GTK) || defined (HAVE_NS)
13419 if (popup_activated ())
13423 /* I don't think this happens but let's be paranoid. */
13424 if (redisplaying_p
)
13427 /* Record a function that clears redisplaying_p
13428 when we leave this function. */
13429 count
= SPECPDL_INDEX ();
13430 record_unwind_protect_void (unwind_redisplay
);
13431 redisplaying_p
= 1;
13432 specbind (Qinhibit_free_realized_faces
, Qnil
);
13434 /* Record this function, so it appears on the profiler's backtraces. */
13435 record_in_backtrace (Qredisplay_internal
, 0, 0);
13437 FOR_EACH_FRAME (tail
, frame
)
13438 XFRAME (frame
)->already_hscrolled_p
= 0;
13441 /* Remember the currently selected window. */
13445 last_escape_glyph_frame
= NULL
;
13446 last_escape_glyph_face_id
= (1 << FACE_ID_BITS
);
13447 last_glyphless_glyph_frame
= NULL
;
13448 last_glyphless_glyph_face_id
= (1 << FACE_ID_BITS
);
13450 /* If face_change_count is non-zero, init_iterator will free all
13451 realized faces, which includes the faces referenced from current
13452 matrices. So, we can't reuse current matrices in this case. */
13453 if (face_change_count
)
13454 windows_or_buffers_changed
= 47;
13456 if ((FRAME_TERMCAP_P (sf
) || FRAME_MSDOS_P (sf
))
13457 && FRAME_TTY (sf
)->previous_frame
!= sf
)
13459 /* Since frames on a single ASCII terminal share the same
13460 display area, displaying a different frame means redisplay
13461 the whole thing. */
13462 SET_FRAME_GARBAGED (sf
);
13464 set_tty_color_mode (FRAME_TTY (sf
), sf
);
13466 FRAME_TTY (sf
)->previous_frame
= sf
;
13469 /* Set the visible flags for all frames. Do this before checking for
13470 resized or garbaged frames; they want to know if their frames are
13471 visible. See the comment in frame.h for FRAME_SAMPLE_VISIBILITY. */
13472 number_of_visible_frames
= 0;
13474 FOR_EACH_FRAME (tail
, frame
)
13476 struct frame
*f
= XFRAME (frame
);
13478 if (FRAME_VISIBLE_P (f
))
13480 ++number_of_visible_frames
;
13481 /* Adjust matrices for visible frames only. */
13482 if (f
->fonts_changed
)
13484 adjust_frame_glyphs (f
);
13485 f
->fonts_changed
= 0;
13487 /* If cursor type has been changed on the frame
13488 other than selected, consider all frames. */
13489 if (f
!= sf
&& f
->cursor_type_changed
)
13490 update_mode_lines
= 31;
13492 clear_desired_matrices (f
);
13495 /* Notice any pending interrupt request to change frame size. */
13496 do_pending_window_change (true);
13498 /* do_pending_window_change could change the selected_window due to
13499 frame resizing which makes the selected window too small. */
13500 if (WINDOWP (selected_window
) && (w
= XWINDOW (selected_window
)) != sw
)
13503 /* Clear frames marked as garbaged. */
13504 clear_garbaged_frames ();
13506 /* Build menubar and tool-bar items. */
13507 if (NILP (Vmemory_full
))
13508 prepare_menu_bars ();
13510 reconsider_clip_changes (w
);
13512 /* In most cases selected window displays current buffer. */
13513 match_p
= XBUFFER (w
->contents
) == current_buffer
;
13516 /* Detect case that we need to write or remove a star in the mode line. */
13517 if ((SAVE_MODIFF
< MODIFF
) != w
->last_had_star
)
13518 w
->update_mode_line
= 1;
13520 if (mode_line_update_needed (w
))
13521 w
->update_mode_line
= 1;
13523 /* If reconsider_clip_changes above decided that the narrowing
13524 in the current buffer changed, make sure all other windows
13525 showing that buffer will be redisplayed. */
13526 if (current_buffer
->clip_changed
)
13527 bset_update_mode_line (current_buffer
);
13530 /* Normally the message* functions will have already displayed and
13531 updated the echo area, but the frame may have been trashed, or
13532 the update may have been preempted, so display the echo area
13533 again here. Checking message_cleared_p captures the case that
13534 the echo area should be cleared. */
13535 if ((!NILP (echo_area_buffer
[0]) && !display_last_displayed_message_p
)
13536 || (!NILP (echo_area_buffer
[1]) && display_last_displayed_message_p
)
13537 || (message_cleared_p
13538 && minibuf_level
== 0
13539 /* If the mini-window is currently selected, this means the
13540 echo-area doesn't show through. */
13541 && !MINI_WINDOW_P (XWINDOW (selected_window
))))
13543 int window_height_changed_p
= echo_area_display (false);
13545 if (message_cleared_p
)
13546 update_miniwindow_p
= true;
13550 /* If we don't display the current message, don't clear the
13551 message_cleared_p flag, because, if we did, we wouldn't clear
13552 the echo area in the next redisplay which doesn't preserve
13554 if (!display_last_displayed_message_p
)
13555 message_cleared_p
= 0;
13557 if (window_height_changed_p
)
13559 windows_or_buffers_changed
= 50;
13561 /* If window configuration was changed, frames may have been
13562 marked garbaged. Clear them or we will experience
13563 surprises wrt scrolling. */
13564 clear_garbaged_frames ();
13567 else if (EQ (selected_window
, minibuf_window
)
13568 && (current_buffer
->clip_changed
|| window_outdated (w
))
13569 && resize_mini_window (w
, 0))
13571 /* Resized active mini-window to fit the size of what it is
13572 showing if its contents might have changed. */
13575 /* If window configuration was changed, frames may have been
13576 marked garbaged. Clear them or we will experience
13577 surprises wrt scrolling. */
13578 clear_garbaged_frames ();
13581 if (windows_or_buffers_changed
&& !update_mode_lines
)
13582 /* Code that sets windows_or_buffers_changed doesn't distinguish whether
13583 only the windows's contents needs to be refreshed, or whether the
13584 mode-lines also need a refresh. */
13585 update_mode_lines
= (windows_or_buffers_changed
== REDISPLAY_SOME
13586 ? REDISPLAY_SOME
: 32);
13588 /* If specs for an arrow have changed, do thorough redisplay
13589 to ensure we remove any arrow that should no longer exist. */
13590 if (overlay_arrows_changed_p ())
13591 /* Apparently, this is the only case where we update other windows,
13592 without updating other mode-lines. */
13593 windows_or_buffers_changed
= 49;
13595 consider_all_windows_p
= (update_mode_lines
13596 || windows_or_buffers_changed
);
13598 #define AINC(a,i) \
13599 if (VECTORP (a) && i >= 0 && i < ASIZE (a) && INTEGERP (AREF (a, i))) \
13600 ASET (a, i, make_number (1 + XINT (AREF (a, i))))
13602 AINC (Vredisplay__all_windows_cause
, windows_or_buffers_changed
);
13603 AINC (Vredisplay__mode_lines_cause
, update_mode_lines
);
13605 /* Optimize the case that only the line containing the cursor in the
13606 selected window has changed. Variables starting with this_ are
13607 set in display_line and record information about the line
13608 containing the cursor. */
13609 tlbufpos
= this_line_start_pos
;
13610 tlendpos
= this_line_end_pos
;
13611 if (!consider_all_windows_p
13612 && CHARPOS (tlbufpos
) > 0
13613 && !w
->update_mode_line
13614 && !current_buffer
->clip_changed
13615 && !current_buffer
->prevent_redisplay_optimizations_p
13616 && FRAME_VISIBLE_P (XFRAME (w
->frame
))
13617 && !FRAME_OBSCURED_P (XFRAME (w
->frame
))
13618 && !XFRAME (w
->frame
)->cursor_type_changed
13619 /* Make sure recorded data applies to current buffer, etc. */
13620 && this_line_buffer
== current_buffer
13623 && !w
->optional_new_start
13624 /* Point must be on the line that we have info recorded about. */
13625 && PT
>= CHARPOS (tlbufpos
)
13626 && PT
<= Z
- CHARPOS (tlendpos
)
13627 /* All text outside that line, including its final newline,
13628 must be unchanged. */
13629 && text_outside_line_unchanged_p (w
, CHARPOS (tlbufpos
),
13630 CHARPOS (tlendpos
)))
13632 if (CHARPOS (tlbufpos
) > BEGV
13633 && FETCH_BYTE (BYTEPOS (tlbufpos
) - 1) != '\n'
13634 && (CHARPOS (tlbufpos
) == ZV
13635 || FETCH_BYTE (BYTEPOS (tlbufpos
)) == '\n'))
13636 /* Former continuation line has disappeared by becoming empty. */
13638 else if (window_outdated (w
) || MINI_WINDOW_P (w
))
13640 /* We have to handle the case of continuation around a
13641 wide-column character (see the comment in indent.c around
13644 For instance, in the following case:
13646 -------- Insert --------
13647 K_A_N_\\ `a' K_A_N_a\ `X_' are wide-column chars.
13648 J_I_ ==> J_I_ `^^' are cursors.
13652 As we have to redraw the line above, we cannot use this
13656 int line_height_before
= this_line_pixel_height
;
13658 /* Note that start_display will handle the case that the
13659 line starting at tlbufpos is a continuation line. */
13660 start_display (&it
, w
, tlbufpos
);
13662 /* Implementation note: It this still necessary? */
13663 if (it
.current_x
!= this_line_start_x
)
13666 TRACE ((stderr
, "trying display optimization 1\n"));
13667 w
->cursor
.vpos
= -1;
13668 overlay_arrow_seen
= 0;
13669 it
.vpos
= this_line_vpos
;
13670 it
.current_y
= this_line_y
;
13671 it
.glyph_row
= MATRIX_ROW (w
->desired_matrix
, this_line_vpos
);
13672 display_line (&it
);
13674 /* If line contains point, is not continued,
13675 and ends at same distance from eob as before, we win. */
13676 if (w
->cursor
.vpos
>= 0
13677 /* Line is not continued, otherwise this_line_start_pos
13678 would have been set to 0 in display_line. */
13679 && CHARPOS (this_line_start_pos
)
13680 /* Line ends as before. */
13681 && CHARPOS (this_line_end_pos
) == CHARPOS (tlendpos
)
13682 /* Line has same height as before. Otherwise other lines
13683 would have to be shifted up or down. */
13684 && this_line_pixel_height
== line_height_before
)
13686 /* If this is not the window's last line, we must adjust
13687 the charstarts of the lines below. */
13688 if (it
.current_y
< it
.last_visible_y
)
13690 struct glyph_row
*row
13691 = MATRIX_ROW (w
->current_matrix
, this_line_vpos
+ 1);
13692 ptrdiff_t delta
, delta_bytes
;
13694 /* We used to distinguish between two cases here,
13695 conditioned by Z - CHARPOS (tlendpos) == ZV, for
13696 when the line ends in a newline or the end of the
13697 buffer's accessible portion. But both cases did
13698 the same, so they were collapsed. */
13700 - CHARPOS (tlendpos
)
13701 - MATRIX_ROW_START_CHARPOS (row
));
13702 delta_bytes
= (Z_BYTE
13703 - BYTEPOS (tlendpos
)
13704 - MATRIX_ROW_START_BYTEPOS (row
));
13706 increment_matrix_positions (w
->current_matrix
,
13707 this_line_vpos
+ 1,
13708 w
->current_matrix
->nrows
,
13709 delta
, delta_bytes
);
13712 /* If this row displays text now but previously didn't,
13713 or vice versa, w->window_end_vpos may have to be
13715 if (MATRIX_ROW_DISPLAYS_TEXT_P (it
.glyph_row
- 1))
13717 if (w
->window_end_vpos
< this_line_vpos
)
13718 w
->window_end_vpos
= this_line_vpos
;
13720 else if (w
->window_end_vpos
== this_line_vpos
13721 && this_line_vpos
> 0)
13722 w
->window_end_vpos
= this_line_vpos
- 1;
13723 w
->window_end_valid
= 0;
13725 /* Update hint: No need to try to scroll in update_window. */
13726 w
->desired_matrix
->no_scrolling_p
= 1;
13729 *w
->desired_matrix
->method
= 0;
13730 debug_method_add (w
, "optimization 1");
13732 #ifdef HAVE_WINDOW_SYSTEM
13733 update_window_fringes (w
, 0);
13740 else if (/* Cursor position hasn't changed. */
13741 PT
== w
->last_point
13742 /* Make sure the cursor was last displayed
13743 in this window. Otherwise we have to reposition it. */
13745 /* PXW: Must be converted to pixels, probably. */
13746 && 0 <= w
->cursor
.vpos
13747 && w
->cursor
.vpos
< WINDOW_TOTAL_LINES (w
))
13751 do_pending_window_change (true);
13752 /* If selected_window changed, redisplay again. */
13753 if (WINDOWP (selected_window
)
13754 && (w
= XWINDOW (selected_window
)) != sw
)
13757 /* We used to always goto end_of_redisplay here, but this
13758 isn't enough if we have a blinking cursor. */
13759 if (w
->cursor_off_p
== w
->last_cursor_off_p
)
13760 goto end_of_redisplay
;
13764 /* If highlighting the region, or if the cursor is in the echo area,
13765 then we can't just move the cursor. */
13766 else if (NILP (Vshow_trailing_whitespace
)
13767 && !cursor_in_echo_area
)
13770 struct glyph_row
*row
;
13772 /* Skip from tlbufpos to PT and see where it is. Note that
13773 PT may be in invisible text. If so, we will end at the
13774 next visible position. */
13775 init_iterator (&it
, w
, CHARPOS (tlbufpos
), BYTEPOS (tlbufpos
),
13776 NULL
, DEFAULT_FACE_ID
);
13777 it
.current_x
= this_line_start_x
;
13778 it
.current_y
= this_line_y
;
13779 it
.vpos
= this_line_vpos
;
13781 /* The call to move_it_to stops in front of PT, but
13782 moves over before-strings. */
13783 move_it_to (&it
, PT
, -1, -1, -1, MOVE_TO_POS
);
13785 if (it
.vpos
== this_line_vpos
13786 && (row
= MATRIX_ROW (w
->current_matrix
, this_line_vpos
),
13789 eassert (this_line_vpos
== it
.vpos
);
13790 eassert (this_line_y
== it
.current_y
);
13791 set_cursor_from_row (w
, row
, w
->current_matrix
, 0, 0, 0, 0);
13793 *w
->desired_matrix
->method
= 0;
13794 debug_method_add (w
, "optimization 3");
13803 /* Text changed drastically or point moved off of line. */
13804 SET_MATRIX_ROW_ENABLED_P (w
->desired_matrix
, this_line_vpos
, false);
13807 CHARPOS (this_line_start_pos
) = 0;
13808 ++clear_face_cache_count
;
13809 #ifdef HAVE_WINDOW_SYSTEM
13810 ++clear_image_cache_count
;
13813 /* Build desired matrices, and update the display. If
13814 consider_all_windows_p is non-zero, do it for all windows on all
13815 frames. Otherwise do it for selected_window, only. */
13817 if (consider_all_windows_p
)
13819 FOR_EACH_FRAME (tail
, frame
)
13820 XFRAME (frame
)->updated_p
= 0;
13822 propagate_buffer_redisplay ();
13824 FOR_EACH_FRAME (tail
, frame
)
13826 struct frame
*f
= XFRAME (frame
);
13828 /* We don't have to do anything for unselected terminal
13830 if ((FRAME_TERMCAP_P (f
) || FRAME_MSDOS_P (f
))
13831 && !EQ (FRAME_TTY (f
)->top_frame
, frame
))
13836 #if defined (HAVE_WINDOW_SYSTEM) && !defined (USE_GTK) && !defined (HAVE_NS)
13837 /* Redisplay internal tool bar if this is the first time so we
13838 can adjust the frame height right now, if necessary. */
13839 if (!f
->tool_bar_redisplayed_once
)
13841 if (redisplay_tool_bar (f
))
13842 adjust_frame_glyphs (f
);
13843 f
->tool_bar_redisplayed_once
= true;
13847 if (FRAME_WINDOW_P (f
) || FRAME_TERMCAP_P (f
) || f
== sf
)
13850 /* Only GC scrollbars when we redisplay the whole frame. */
13851 = f
->redisplay
|| !REDISPLAY_SOME_P ();
13852 /* Mark all the scroll bars to be removed; we'll redeem
13853 the ones we want when we redisplay their windows. */
13854 if (gcscrollbars
&& FRAME_TERMINAL (f
)->condemn_scroll_bars_hook
)
13855 FRAME_TERMINAL (f
)->condemn_scroll_bars_hook (f
);
13857 if (FRAME_VISIBLE_P (f
) && !FRAME_OBSCURED_P (f
))
13858 redisplay_windows (FRAME_ROOT_WINDOW (f
));
13859 /* Remember that the invisible frames need to be redisplayed next
13860 time they're visible. */
13861 else if (!REDISPLAY_SOME_P ())
13862 f
->redisplay
= true;
13864 /* The X error handler may have deleted that frame. */
13865 if (!FRAME_LIVE_P (f
))
13868 /* Any scroll bars which redisplay_windows should have
13869 nuked should now go away. */
13870 if (gcscrollbars
&& FRAME_TERMINAL (f
)->judge_scroll_bars_hook
)
13871 FRAME_TERMINAL (f
)->judge_scroll_bars_hook (f
);
13873 if (FRAME_VISIBLE_P (f
) && !FRAME_OBSCURED_P (f
))
13875 /* If fonts changed on visible frame, display again. */
13876 if (f
->fonts_changed
)
13878 adjust_frame_glyphs (f
);
13879 f
->fonts_changed
= false;
13883 /* See if we have to hscroll. */
13884 if (!f
->already_hscrolled_p
)
13886 f
->already_hscrolled_p
= true;
13887 if (hscroll_windows (f
->root_window
))
13891 /* Prevent various kinds of signals during display
13892 update. stdio is not robust about handling
13893 signals, which can cause an apparent I/O error. */
13894 if (interrupt_input
)
13895 unrequest_sigio ();
13898 pending
|= update_frame (f
, false, false);
13899 f
->cursor_type_changed
= false;
13900 f
->updated_p
= true;
13905 eassert (EQ (XFRAME (selected_frame
)->selected_window
, selected_window
));
13909 /* Do the mark_window_display_accurate after all windows have
13910 been redisplayed because this call resets flags in buffers
13911 which are needed for proper redisplay. */
13912 FOR_EACH_FRAME (tail
, frame
)
13914 struct frame
*f
= XFRAME (frame
);
13917 f
->redisplay
= false;
13918 mark_window_display_accurate (f
->root_window
, 1);
13919 if (FRAME_TERMINAL (f
)->frame_up_to_date_hook
)
13920 FRAME_TERMINAL (f
)->frame_up_to_date_hook (f
);
13925 else if (FRAME_VISIBLE_P (sf
) && !FRAME_OBSCURED_P (sf
))
13927 Lisp_Object mini_window
= FRAME_MINIBUF_WINDOW (sf
);
13928 struct frame
*mini_frame
;
13930 displayed_buffer
= XBUFFER (XWINDOW (selected_window
)->contents
);
13931 /* Use list_of_error, not Qerror, so that
13932 we catch only errors and don't run the debugger. */
13933 internal_condition_case_1 (redisplay_window_1
, selected_window
,
13935 redisplay_window_error
);
13936 if (update_miniwindow_p
)
13937 internal_condition_case_1 (redisplay_window_1
, mini_window
,
13939 redisplay_window_error
);
13941 /* Compare desired and current matrices, perform output. */
13944 /* If fonts changed, display again. */
13945 if (sf
->fonts_changed
)
13948 /* Prevent various kinds of signals during display update.
13949 stdio is not robust about handling signals,
13950 which can cause an apparent I/O error. */
13951 if (interrupt_input
)
13952 unrequest_sigio ();
13955 if (FRAME_VISIBLE_P (sf
) && !FRAME_OBSCURED_P (sf
))
13957 if (hscroll_windows (selected_window
))
13960 XWINDOW (selected_window
)->must_be_updated_p
= true;
13961 pending
= update_frame (sf
, false, false);
13962 sf
->cursor_type_changed
= false;
13965 /* We may have called echo_area_display at the top of this
13966 function. If the echo area is on another frame, that may
13967 have put text on a frame other than the selected one, so the
13968 above call to update_frame would not have caught it. Catch
13970 mini_window
= FRAME_MINIBUF_WINDOW (sf
);
13971 mini_frame
= XFRAME (WINDOW_FRAME (XWINDOW (mini_window
)));
13973 if (mini_frame
!= sf
&& FRAME_WINDOW_P (mini_frame
))
13975 XWINDOW (mini_window
)->must_be_updated_p
= true;
13976 pending
|= update_frame (mini_frame
, false, false);
13977 mini_frame
->cursor_type_changed
= false;
13978 if (!pending
&& hscroll_windows (mini_window
))
13983 /* If display was paused because of pending input, make sure we do a
13984 thorough update the next time. */
13987 /* Prevent the optimization at the beginning of
13988 redisplay_internal that tries a single-line update of the
13989 line containing the cursor in the selected window. */
13990 CHARPOS (this_line_start_pos
) = 0;
13992 /* Let the overlay arrow be updated the next time. */
13993 update_overlay_arrows (0);
13995 /* If we pause after scrolling, some rows in the current
13996 matrices of some windows are not valid. */
13997 if (!WINDOW_FULL_WIDTH_P (w
)
13998 && !FRAME_WINDOW_P (XFRAME (w
->frame
)))
13999 update_mode_lines
= 36;
14003 if (!consider_all_windows_p
)
14005 /* This has already been done above if
14006 consider_all_windows_p is set. */
14007 if (XBUFFER (w
->contents
)->text
->redisplay
14008 && buffer_window_count (XBUFFER (w
->contents
)) > 1)
14009 /* This can happen if b->text->redisplay was set during
14011 propagate_buffer_redisplay ();
14012 mark_window_display_accurate_1 (w
, 1);
14014 /* Say overlay arrows are up to date. */
14015 update_overlay_arrows (1);
14017 if (FRAME_TERMINAL (sf
)->frame_up_to_date_hook
!= 0)
14018 FRAME_TERMINAL (sf
)->frame_up_to_date_hook (sf
);
14021 update_mode_lines
= 0;
14022 windows_or_buffers_changed
= 0;
14025 /* Start SIGIO interrupts coming again. Having them off during the
14026 code above makes it less likely one will discard output, but not
14027 impossible, since there might be stuff in the system buffer here.
14028 But it is much hairier to try to do anything about that. */
14029 if (interrupt_input
)
14033 /* If a frame has become visible which was not before, redisplay
14034 again, so that we display it. Expose events for such a frame
14035 (which it gets when becoming visible) don't call the parts of
14036 redisplay constructing glyphs, so simply exposing a frame won't
14037 display anything in this case. So, we have to display these
14038 frames here explicitly. */
14043 FOR_EACH_FRAME (tail
, frame
)
14045 if (XFRAME (frame
)->visible
)
14049 if (new_count
!= number_of_visible_frames
)
14050 windows_or_buffers_changed
= 52;
14053 /* Change frame size now if a change is pending. */
14054 do_pending_window_change (true);
14056 /* If we just did a pending size change, or have additional
14057 visible frames, or selected_window changed, redisplay again. */
14058 if ((windows_or_buffers_changed
&& !pending
)
14059 || (WINDOWP (selected_window
) && (w
= XWINDOW (selected_window
)) != sw
))
14062 /* Clear the face and image caches.
14064 We used to do this only if consider_all_windows_p. But the cache
14065 needs to be cleared if a timer creates images in the current
14066 buffer (e.g. the test case in Bug#6230). */
14068 if (clear_face_cache_count
> CLEAR_FACE_CACHE_COUNT
)
14070 clear_face_cache (false);
14071 clear_face_cache_count
= 0;
14074 #ifdef HAVE_WINDOW_SYSTEM
14075 if (clear_image_cache_count
> CLEAR_IMAGE_CACHE_COUNT
)
14077 clear_image_caches (Qnil
);
14078 clear_image_cache_count
= 0;
14080 #endif /* HAVE_WINDOW_SYSTEM */
14084 ns_set_doc_edited ();
14086 if (interrupt_input
&& interrupts_deferred
)
14089 unbind_to (count
, Qnil
);
14094 /* Redisplay, but leave alone any recent echo area message unless
14095 another message has been requested in its place.
14097 This is useful in situations where you need to redisplay but no
14098 user action has occurred, making it inappropriate for the message
14099 area to be cleared. See tracking_off and
14100 wait_reading_process_output for examples of these situations.
14102 FROM_WHERE is an integer saying from where this function was
14103 called. This is useful for debugging. */
14106 redisplay_preserve_echo_area (int from_where
)
14108 TRACE ((stderr
, "redisplay_preserve_echo_area (%d)\n", from_where
));
14110 if (!NILP (echo_area_buffer
[1]))
14112 /* We have a previously displayed message, but no current
14113 message. Redisplay the previous message. */
14114 display_last_displayed_message_p
= true;
14115 redisplay_internal ();
14116 display_last_displayed_message_p
= false;
14119 redisplay_internal ();
14121 flush_frame (SELECTED_FRAME ());
14125 /* Function registered with record_unwind_protect in redisplay_internal. */
14128 unwind_redisplay (void)
14130 redisplaying_p
= 0;
14134 /* Mark the display of leaf window W as accurate or inaccurate.
14135 If ACCURATE_P is non-zero mark display of W as accurate. If
14136 ACCURATE_P is zero, arrange for W to be redisplayed the next
14137 time redisplay_internal is called. */
14140 mark_window_display_accurate_1 (struct window
*w
, int accurate_p
)
14142 struct buffer
*b
= XBUFFER (w
->contents
);
14144 w
->last_modified
= accurate_p
? BUF_MODIFF (b
) : 0;
14145 w
->last_overlay_modified
= accurate_p
? BUF_OVERLAY_MODIFF (b
) : 0;
14146 w
->last_had_star
= BUF_MODIFF (b
) > BUF_SAVE_MODIFF (b
);
14150 b
->clip_changed
= false;
14151 b
->prevent_redisplay_optimizations_p
= false;
14152 eassert (buffer_window_count (b
) > 0);
14153 /* Resetting b->text->redisplay is problematic!
14154 In order to make it safer to do it here, redisplay_internal must
14155 have copied all b->text->redisplay to their respective windows. */
14156 b
->text
->redisplay
= false;
14158 BUF_UNCHANGED_MODIFIED (b
) = BUF_MODIFF (b
);
14159 BUF_OVERLAY_UNCHANGED_MODIFIED (b
) = BUF_OVERLAY_MODIFF (b
);
14160 BUF_BEG_UNCHANGED (b
) = BUF_GPT (b
) - BUF_BEG (b
);
14161 BUF_END_UNCHANGED (b
) = BUF_Z (b
) - BUF_GPT (b
);
14163 w
->current_matrix
->buffer
= b
;
14164 w
->current_matrix
->begv
= BUF_BEGV (b
);
14165 w
->current_matrix
->zv
= BUF_ZV (b
);
14167 w
->last_cursor_vpos
= w
->cursor
.vpos
;
14168 w
->last_cursor_off_p
= w
->cursor_off_p
;
14170 if (w
== XWINDOW (selected_window
))
14171 w
->last_point
= BUF_PT (b
);
14173 w
->last_point
= marker_position (w
->pointm
);
14175 w
->window_end_valid
= true;
14176 w
->update_mode_line
= false;
14179 w
->redisplay
= !accurate_p
;
14183 /* Mark the display of windows in the window tree rooted at WINDOW as
14184 accurate or inaccurate. If ACCURATE_P is non-zero mark display of
14185 windows as accurate. If ACCURATE_P is zero, arrange for windows to
14186 be redisplayed the next time redisplay_internal is called. */
14189 mark_window_display_accurate (Lisp_Object window
, int accurate_p
)
14193 for (; !NILP (window
); window
= w
->next
)
14195 w
= XWINDOW (window
);
14196 if (WINDOWP (w
->contents
))
14197 mark_window_display_accurate (w
->contents
, accurate_p
);
14199 mark_window_display_accurate_1 (w
, accurate_p
);
14203 update_overlay_arrows (1);
14205 /* Force a thorough redisplay the next time by setting
14206 last_arrow_position and last_arrow_string to t, which is
14207 unequal to any useful value of Voverlay_arrow_... */
14208 update_overlay_arrows (-1);
14212 /* Return value in display table DP (Lisp_Char_Table *) for character
14213 C. Since a display table doesn't have any parent, we don't have to
14214 follow parent. Do not call this function directly but use the
14215 macro DISP_CHAR_VECTOR. */
14218 disp_char_vector (struct Lisp_Char_Table
*dp
, int c
)
14222 if (ASCII_CHAR_P (c
))
14225 if (SUB_CHAR_TABLE_P (val
))
14226 val
= XSUB_CHAR_TABLE (val
)->contents
[c
];
14232 XSETCHAR_TABLE (table
, dp
);
14233 val
= char_table_ref (table
, c
);
14242 /***********************************************************************
14244 ***********************************************************************/
14246 /* Redisplay all leaf windows in the window tree rooted at WINDOW. */
14249 redisplay_windows (Lisp_Object window
)
14251 while (!NILP (window
))
14253 struct window
*w
= XWINDOW (window
);
14255 if (WINDOWP (w
->contents
))
14256 redisplay_windows (w
->contents
);
14257 else if (BUFFERP (w
->contents
))
14259 displayed_buffer
= XBUFFER (w
->contents
);
14260 /* Use list_of_error, not Qerror, so that
14261 we catch only errors and don't run the debugger. */
14262 internal_condition_case_1 (redisplay_window_0
, window
,
14264 redisplay_window_error
);
14272 redisplay_window_error (Lisp_Object ignore
)
14274 displayed_buffer
->display_error_modiff
= BUF_MODIFF (displayed_buffer
);
14279 redisplay_window_0 (Lisp_Object window
)
14281 if (displayed_buffer
->display_error_modiff
< BUF_MODIFF (displayed_buffer
))
14282 redisplay_window (window
, false);
14287 redisplay_window_1 (Lisp_Object window
)
14289 if (displayed_buffer
->display_error_modiff
< BUF_MODIFF (displayed_buffer
))
14290 redisplay_window (window
, true);
14295 /* Set cursor position of W. PT is assumed to be displayed in ROW.
14296 DELTA and DELTA_BYTES are the numbers of characters and bytes by
14297 which positions recorded in ROW differ from current buffer
14300 Return 0 if cursor is not on this row, 1 otherwise. */
14303 set_cursor_from_row (struct window
*w
, struct glyph_row
*row
,
14304 struct glyph_matrix
*matrix
,
14305 ptrdiff_t delta
, ptrdiff_t delta_bytes
,
14308 struct glyph
*glyph
= row
->glyphs
[TEXT_AREA
];
14309 struct glyph
*end
= glyph
+ row
->used
[TEXT_AREA
];
14310 struct glyph
*cursor
= NULL
;
14311 /* The last known character position in row. */
14312 ptrdiff_t last_pos
= MATRIX_ROW_START_CHARPOS (row
) + delta
;
14314 ptrdiff_t pt_old
= PT
- delta
;
14315 ptrdiff_t pos_before
= MATRIX_ROW_START_CHARPOS (row
) + delta
;
14316 ptrdiff_t pos_after
= MATRIX_ROW_END_CHARPOS (row
) + delta
;
14317 struct glyph
*glyph_before
= glyph
- 1, *glyph_after
= end
;
14318 /* A glyph beyond the edge of TEXT_AREA which we should never
14320 struct glyph
*glyphs_end
= end
;
14321 /* Non-zero means we've found a match for cursor position, but that
14322 glyph has the avoid_cursor_p flag set. */
14323 int match_with_avoid_cursor
= 0;
14324 /* Non-zero means we've seen at least one glyph that came from a
14326 int string_seen
= 0;
14327 /* Largest and smallest buffer positions seen so far during scan of
14329 ptrdiff_t bpos_max
= pos_before
;
14330 ptrdiff_t bpos_min
= pos_after
;
14331 /* Last buffer position covered by an overlay string with an integer
14332 `cursor' property. */
14333 ptrdiff_t bpos_covered
= 0;
14334 /* Non-zero means the display string on which to display the cursor
14335 comes from a text property, not from an overlay. */
14336 int string_from_text_prop
= 0;
14338 /* Don't even try doing anything if called for a mode-line or
14339 header-line row, since the rest of the code isn't prepared to
14340 deal with such calamities. */
14341 eassert (!row
->mode_line_p
);
14342 if (row
->mode_line_p
)
14345 /* Skip over glyphs not having an object at the start and the end of
14346 the row. These are special glyphs like truncation marks on
14347 terminal frames. */
14348 if (MATRIX_ROW_DISPLAYS_TEXT_P (row
))
14350 if (!row
->reversed_p
)
14353 && NILP (glyph
->object
)
14354 && glyph
->charpos
< 0)
14356 x
+= glyph
->pixel_width
;
14360 && NILP ((end
- 1)->object
)
14361 /* CHARPOS is zero for blanks and stretch glyphs
14362 inserted by extend_face_to_end_of_line. */
14363 && (end
- 1)->charpos
<= 0)
14365 glyph_before
= glyph
- 1;
14372 /* If the glyph row is reversed, we need to process it from back
14373 to front, so swap the edge pointers. */
14374 glyphs_end
= end
= glyph
- 1;
14375 glyph
+= row
->used
[TEXT_AREA
] - 1;
14377 while (glyph
> end
+ 1
14378 && NILP (glyph
->object
)
14379 && glyph
->charpos
< 0)
14382 x
-= glyph
->pixel_width
;
14384 if (NILP (glyph
->object
) && glyph
->charpos
< 0)
14386 /* By default, in reversed rows we put the cursor on the
14387 rightmost (first in the reading order) glyph. */
14388 for (g
= end
+ 1; g
< glyph
; g
++)
14389 x
+= g
->pixel_width
;
14391 && NILP ((end
+ 1)->object
)
14392 && (end
+ 1)->charpos
<= 0)
14394 glyph_before
= glyph
+ 1;
14398 else if (row
->reversed_p
)
14400 /* In R2L rows that don't display text, put the cursor on the
14401 rightmost glyph. Case in point: an empty last line that is
14402 part of an R2L paragraph. */
14404 /* Avoid placing the cursor on the last glyph of the row, where
14405 on terminal frames we hold the vertical border between
14406 adjacent windows. */
14407 if (!FRAME_WINDOW_P (WINDOW_XFRAME (w
))
14408 && !WINDOW_RIGHTMOST_P (w
)
14409 && cursor
== row
->glyphs
[LAST_AREA
] - 1)
14411 x
= -1; /* will be computed below, at label compute_x */
14414 /* Step 1: Try to find the glyph whose character position
14415 corresponds to point. If that's not possible, find 2 glyphs
14416 whose character positions are the closest to point, one before
14417 point, the other after it. */
14418 if (!row
->reversed_p
)
14419 while (/* not marched to end of glyph row */
14421 /* glyph was not inserted by redisplay for internal purposes */
14422 && !NILP (glyph
->object
))
14424 if (BUFFERP (glyph
->object
))
14426 ptrdiff_t dpos
= glyph
->charpos
- pt_old
;
14428 if (glyph
->charpos
> bpos_max
)
14429 bpos_max
= glyph
->charpos
;
14430 if (glyph
->charpos
< bpos_min
)
14431 bpos_min
= glyph
->charpos
;
14432 if (!glyph
->avoid_cursor_p
)
14434 /* If we hit point, we've found the glyph on which to
14435 display the cursor. */
14438 match_with_avoid_cursor
= 0;
14441 /* See if we've found a better approximation to
14442 POS_BEFORE or to POS_AFTER. */
14443 if (0 > dpos
&& dpos
> pos_before
- pt_old
)
14445 pos_before
= glyph
->charpos
;
14446 glyph_before
= glyph
;
14448 else if (0 < dpos
&& dpos
< pos_after
- pt_old
)
14450 pos_after
= glyph
->charpos
;
14451 glyph_after
= glyph
;
14454 else if (dpos
== 0)
14455 match_with_avoid_cursor
= 1;
14457 else if (STRINGP (glyph
->object
))
14459 Lisp_Object chprop
;
14460 ptrdiff_t glyph_pos
= glyph
->charpos
;
14462 chprop
= Fget_char_property (make_number (glyph_pos
), Qcursor
,
14464 if (!NILP (chprop
))
14466 /* If the string came from a `display' text property,
14467 look up the buffer position of that property and
14468 use that position to update bpos_max, as if we
14469 actually saw such a position in one of the row's
14470 glyphs. This helps with supporting integer values
14471 of `cursor' property on the display string in
14472 situations where most or all of the row's buffer
14473 text is completely covered by display properties,
14474 so that no glyph with valid buffer positions is
14475 ever seen in the row. */
14476 ptrdiff_t prop_pos
=
14477 string_buffer_position_lim (glyph
->object
, pos_before
,
14480 if (prop_pos
>= pos_before
)
14481 bpos_max
= prop_pos
;
14483 if (INTEGERP (chprop
))
14485 bpos_covered
= bpos_max
+ XINT (chprop
);
14486 /* If the `cursor' property covers buffer positions up
14487 to and including point, we should display cursor on
14488 this glyph. Note that, if a `cursor' property on one
14489 of the string's characters has an integer value, we
14490 will break out of the loop below _before_ we get to
14491 the position match above. IOW, integer values of
14492 the `cursor' property override the "exact match for
14493 point" strategy of positioning the cursor. */
14494 /* Implementation note: bpos_max == pt_old when, e.g.,
14495 we are in an empty line, where bpos_max is set to
14496 MATRIX_ROW_START_CHARPOS, see above. */
14497 if (bpos_max
<= pt_old
&& bpos_covered
>= pt_old
)
14506 x
+= glyph
->pixel_width
;
14509 else if (glyph
> end
) /* row is reversed */
14510 while (!NILP (glyph
->object
))
14512 if (BUFFERP (glyph
->object
))
14514 ptrdiff_t dpos
= glyph
->charpos
- pt_old
;
14516 if (glyph
->charpos
> bpos_max
)
14517 bpos_max
= glyph
->charpos
;
14518 if (glyph
->charpos
< bpos_min
)
14519 bpos_min
= glyph
->charpos
;
14520 if (!glyph
->avoid_cursor_p
)
14524 match_with_avoid_cursor
= 0;
14527 if (0 > dpos
&& dpos
> pos_before
- pt_old
)
14529 pos_before
= glyph
->charpos
;
14530 glyph_before
= glyph
;
14532 else if (0 < dpos
&& dpos
< pos_after
- pt_old
)
14534 pos_after
= glyph
->charpos
;
14535 glyph_after
= glyph
;
14538 else if (dpos
== 0)
14539 match_with_avoid_cursor
= 1;
14541 else if (STRINGP (glyph
->object
))
14543 Lisp_Object chprop
;
14544 ptrdiff_t glyph_pos
= glyph
->charpos
;
14546 chprop
= Fget_char_property (make_number (glyph_pos
), Qcursor
,
14548 if (!NILP (chprop
))
14550 ptrdiff_t prop_pos
=
14551 string_buffer_position_lim (glyph
->object
, pos_before
,
14554 if (prop_pos
>= pos_before
)
14555 bpos_max
= prop_pos
;
14557 if (INTEGERP (chprop
))
14559 bpos_covered
= bpos_max
+ XINT (chprop
);
14560 /* If the `cursor' property covers buffer positions up
14561 to and including point, we should display cursor on
14563 if (bpos_max
<= pt_old
&& bpos_covered
>= pt_old
)
14572 if (glyph
== glyphs_end
) /* don't dereference outside TEXT_AREA */
14574 x
--; /* can't use any pixel_width */
14577 x
-= glyph
->pixel_width
;
14580 /* Step 2: If we didn't find an exact match for point, we need to
14581 look for a proper place to put the cursor among glyphs between
14582 GLYPH_BEFORE and GLYPH_AFTER. */
14583 if (!((row
->reversed_p
? glyph
> glyphs_end
: glyph
< glyphs_end
)
14584 && BUFFERP (glyph
->object
) && glyph
->charpos
== pt_old
)
14585 && !(bpos_max
<= pt_old
&& pt_old
<= bpos_covered
))
14587 /* An empty line has a single glyph whose OBJECT is nil and
14588 whose CHARPOS is the position of a newline on that line.
14589 Note that on a TTY, there are more glyphs after that, which
14590 were produced by extend_face_to_end_of_line, but their
14591 CHARPOS is zero or negative. */
14593 (row
->reversed_p
? glyph
> glyphs_end
: glyph
< glyphs_end
)
14594 && NILP (glyph
->object
) && glyph
->charpos
> 0
14595 /* On a TTY, continued and truncated rows also have a glyph at
14596 their end whose OBJECT is nil and whose CHARPOS is
14597 positive (the continuation and truncation glyphs), but such
14598 rows are obviously not "empty". */
14599 && !(row
->continued_p
|| row
->truncated_on_right_p
);
14601 if (row
->ends_in_ellipsis_p
&& pos_after
== last_pos
)
14603 ptrdiff_t ellipsis_pos
;
14605 /* Scan back over the ellipsis glyphs. */
14606 if (!row
->reversed_p
)
14608 ellipsis_pos
= (glyph
- 1)->charpos
;
14609 while (glyph
> row
->glyphs
[TEXT_AREA
]
14610 && (glyph
- 1)->charpos
== ellipsis_pos
)
14611 glyph
--, x
-= glyph
->pixel_width
;
14612 /* That loop always goes one position too far, including
14613 the glyph before the ellipsis. So scan forward over
14615 x
+= glyph
->pixel_width
;
14618 else /* row is reversed */
14620 ellipsis_pos
= (glyph
+ 1)->charpos
;
14621 while (glyph
< row
->glyphs
[TEXT_AREA
] + row
->used
[TEXT_AREA
] - 1
14622 && (glyph
+ 1)->charpos
== ellipsis_pos
)
14623 glyph
++, x
+= glyph
->pixel_width
;
14624 x
-= glyph
->pixel_width
;
14628 else if (match_with_avoid_cursor
)
14630 cursor
= glyph_after
;
14633 else if (string_seen
)
14635 int incr
= row
->reversed_p
? -1 : +1;
14637 /* Need to find the glyph that came out of a string which is
14638 present at point. That glyph is somewhere between
14639 GLYPH_BEFORE and GLYPH_AFTER, and it came from a string
14640 positioned between POS_BEFORE and POS_AFTER in the
14642 struct glyph
*start
, *stop
;
14643 ptrdiff_t pos
= pos_before
;
14647 /* If the row ends in a newline from a display string,
14648 reordering could have moved the glyphs belonging to the
14649 string out of the [GLYPH_BEFORE..GLYPH_AFTER] range. So
14650 in this case we extend the search to the last glyph in
14651 the row that was not inserted by redisplay. */
14652 if (row
->ends_in_newline_from_string_p
)
14655 pos_after
= MATRIX_ROW_END_CHARPOS (row
) + delta
;
14658 /* GLYPH_BEFORE and GLYPH_AFTER are the glyphs that
14659 correspond to POS_BEFORE and POS_AFTER, respectively. We
14660 need START and STOP in the order that corresponds to the
14661 row's direction as given by its reversed_p flag. If the
14662 directionality of characters between POS_BEFORE and
14663 POS_AFTER is the opposite of the row's base direction,
14664 these characters will have been reordered for display,
14665 and we need to reverse START and STOP. */
14666 if (!row
->reversed_p
)
14668 start
= min (glyph_before
, glyph_after
);
14669 stop
= max (glyph_before
, glyph_after
);
14673 start
= max (glyph_before
, glyph_after
);
14674 stop
= min (glyph_before
, glyph_after
);
14676 for (glyph
= start
+ incr
;
14677 row
->reversed_p
? glyph
> stop
: glyph
< stop
; )
14680 /* Any glyphs that come from the buffer are here because
14681 of bidi reordering. Skip them, and only pay
14682 attention to glyphs that came from some string. */
14683 if (STRINGP (glyph
->object
))
14687 /* If the display property covers the newline, we
14688 need to search for it one position farther. */
14689 ptrdiff_t lim
= pos_after
14690 + (pos_after
== MATRIX_ROW_END_CHARPOS (row
) + delta
);
14692 string_from_text_prop
= 0;
14693 str
= glyph
->object
;
14694 tem
= string_buffer_position_lim (str
, pos
, lim
, 0);
14695 if (tem
== 0 /* from overlay */
14698 /* If the string from which this glyph came is
14699 found in the buffer at point, or at position
14700 that is closer to point than pos_after, then
14701 we've found the glyph we've been looking for.
14702 If it comes from an overlay (tem == 0), and
14703 it has the `cursor' property on one of its
14704 glyphs, record that glyph as a candidate for
14705 displaying the cursor. (As in the
14706 unidirectional version, we will display the
14707 cursor on the last candidate we find.) */
14710 || (tem
- pt_old
> 0 && tem
< pos_after
))
14712 /* The glyphs from this string could have
14713 been reordered. Find the one with the
14714 smallest string position. Or there could
14715 be a character in the string with the
14716 `cursor' property, which means display
14717 cursor on that character's glyph. */
14718 ptrdiff_t strpos
= glyph
->charpos
;
14723 string_from_text_prop
= 1;
14726 (row
->reversed_p
? glyph
> stop
: glyph
< stop
)
14727 && EQ (glyph
->object
, str
);
14731 ptrdiff_t gpos
= glyph
->charpos
;
14733 cprop
= Fget_char_property (make_number (gpos
),
14741 if (tem
&& glyph
->charpos
< strpos
)
14743 strpos
= glyph
->charpos
;
14749 || (tem
- pt_old
> 0 && tem
< pos_after
))
14753 pos
= tem
+ 1; /* don't find previous instances */
14755 /* This string is not what we want; skip all of the
14756 glyphs that came from it. */
14757 while ((row
->reversed_p
? glyph
> stop
: glyph
< stop
)
14758 && EQ (glyph
->object
, str
))
14765 /* If we reached the end of the line, and END was from a string,
14766 the cursor is not on this line. */
14768 && (row
->reversed_p
? glyph
<= end
: glyph
>= end
)
14769 && (row
->reversed_p
? end
> glyphs_end
: end
< glyphs_end
)
14770 && STRINGP (end
->object
)
14771 && row
->continued_p
)
14774 /* A truncated row may not include PT among its character positions.
14775 Setting the cursor inside the scroll margin will trigger
14776 recalculation of hscroll in hscroll_window_tree. But if a
14777 display string covers point, defer to the string-handling
14778 code below to figure this out. */
14779 else if (row
->truncated_on_left_p
&& pt_old
< bpos_min
)
14781 cursor
= glyph_before
;
14784 else if ((row
->truncated_on_right_p
&& pt_old
> bpos_max
)
14785 /* Zero-width characters produce no glyphs. */
14787 && (row
->reversed_p
14788 ? glyph_after
> glyphs_end
14789 : glyph_after
< glyphs_end
)))
14791 cursor
= glyph_after
;
14797 if (cursor
!= NULL
)
14799 else if (glyph
== glyphs_end
14800 && pos_before
== pos_after
14801 && STRINGP ((row
->reversed_p
14802 ? row
->glyphs
[TEXT_AREA
] + row
->used
[TEXT_AREA
] - 1
14803 : row
->glyphs
[TEXT_AREA
])->object
))
14805 /* If all the glyphs of this row came from strings, put the
14806 cursor on the first glyph of the row. This avoids having the
14807 cursor outside of the text area in this very rare and hard
14811 ? row
->glyphs
[TEXT_AREA
] + row
->used
[TEXT_AREA
] - 1
14812 : row
->glyphs
[TEXT_AREA
];
14818 /* Need to compute x that corresponds to GLYPH. */
14819 for (g
= row
->glyphs
[TEXT_AREA
], x
= row
->x
; g
< glyph
; g
++)
14821 if (g
>= row
->glyphs
[TEXT_AREA
] + row
->used
[TEXT_AREA
])
14823 x
+= g
->pixel_width
;
14827 /* ROW could be part of a continued line, which, under bidi
14828 reordering, might have other rows whose start and end charpos
14829 occlude point. Only set w->cursor if we found a better
14830 approximation to the cursor position than we have from previously
14831 examined candidate rows belonging to the same continued line. */
14832 if (/* We already have a candidate row. */
14833 w
->cursor
.vpos
>= 0
14834 /* That candidate is not the row we are processing. */
14835 && MATRIX_ROW (matrix
, w
->cursor
.vpos
) != row
14836 /* Make sure cursor.vpos specifies a row whose start and end
14837 charpos occlude point, and it is valid candidate for being a
14838 cursor-row. This is because some callers of this function
14839 leave cursor.vpos at the row where the cursor was displayed
14840 during the last redisplay cycle. */
14841 && MATRIX_ROW_START_CHARPOS (MATRIX_ROW (matrix
, w
->cursor
.vpos
)) <= pt_old
14842 && pt_old
<= MATRIX_ROW_END_CHARPOS (MATRIX_ROW (matrix
, w
->cursor
.vpos
))
14843 && cursor_row_p (MATRIX_ROW (matrix
, w
->cursor
.vpos
)))
14846 = MATRIX_ROW_GLYPH_START (matrix
, w
->cursor
.vpos
) + w
->cursor
.hpos
;
14848 /* Don't consider glyphs that are outside TEXT_AREA. */
14849 if (!(row
->reversed_p
? glyph
> glyphs_end
: glyph
< glyphs_end
))
14851 /* Keep the candidate whose buffer position is the closest to
14852 point or has the `cursor' property. */
14853 if (/* Previous candidate is a glyph in TEXT_AREA of that row. */
14854 w
->cursor
.hpos
>= 0
14855 && w
->cursor
.hpos
< MATRIX_ROW_USED (matrix
, w
->cursor
.vpos
)
14856 && ((BUFFERP (g1
->object
)
14857 && (g1
->charpos
== pt_old
/* An exact match always wins. */
14858 || (BUFFERP (glyph
->object
)
14859 && eabs (g1
->charpos
- pt_old
)
14860 < eabs (glyph
->charpos
- pt_old
))))
14861 /* Previous candidate is a glyph from a string that has
14862 a non-nil `cursor' property. */
14863 || (STRINGP (g1
->object
)
14864 && (!NILP (Fget_char_property (make_number (g1
->charpos
),
14865 Qcursor
, g1
->object
))
14866 /* Previous candidate is from the same display
14867 string as this one, and the display string
14868 came from a text property. */
14869 || (EQ (g1
->object
, glyph
->object
)
14870 && string_from_text_prop
)
14871 /* this candidate is from newline and its
14872 position is not an exact match */
14873 || (NILP (glyph
->object
)
14874 && glyph
->charpos
!= pt_old
)))))
14876 /* If this candidate gives an exact match, use that. */
14877 if (!((BUFFERP (glyph
->object
) && glyph
->charpos
== pt_old
)
14878 /* If this candidate is a glyph created for the
14879 terminating newline of a line, and point is on that
14880 newline, it wins because it's an exact match. */
14881 || (!row
->continued_p
14882 && NILP (glyph
->object
)
14883 && glyph
->charpos
== 0
14884 && pt_old
== MATRIX_ROW_END_CHARPOS (row
) - 1))
14885 /* Otherwise, keep the candidate that comes from a row
14886 spanning less buffer positions. This may win when one or
14887 both candidate positions are on glyphs that came from
14888 display strings, for which we cannot compare buffer
14890 && MATRIX_ROW_END_CHARPOS (MATRIX_ROW (matrix
, w
->cursor
.vpos
))
14891 - MATRIX_ROW_START_CHARPOS (MATRIX_ROW (matrix
, w
->cursor
.vpos
))
14892 < MATRIX_ROW_END_CHARPOS (row
) - MATRIX_ROW_START_CHARPOS (row
))
14895 w
->cursor
.hpos
= glyph
- row
->glyphs
[TEXT_AREA
];
14897 w
->cursor
.vpos
= MATRIX_ROW_VPOS (row
, matrix
) + dvpos
;
14898 w
->cursor
.y
= row
->y
+ dy
;
14900 if (w
== XWINDOW (selected_window
))
14902 if (!row
->continued_p
14903 && !MATRIX_ROW_CONTINUATION_LINE_P (row
)
14906 this_line_buffer
= XBUFFER (w
->contents
);
14908 CHARPOS (this_line_start_pos
)
14909 = MATRIX_ROW_START_CHARPOS (row
) + delta
;
14910 BYTEPOS (this_line_start_pos
)
14911 = MATRIX_ROW_START_BYTEPOS (row
) + delta_bytes
;
14913 CHARPOS (this_line_end_pos
)
14914 = Z
- (MATRIX_ROW_END_CHARPOS (row
) + delta
);
14915 BYTEPOS (this_line_end_pos
)
14916 = Z_BYTE
- (MATRIX_ROW_END_BYTEPOS (row
) + delta_bytes
);
14918 this_line_y
= w
->cursor
.y
;
14919 this_line_pixel_height
= row
->height
;
14920 this_line_vpos
= w
->cursor
.vpos
;
14921 this_line_start_x
= row
->x
;
14924 CHARPOS (this_line_start_pos
) = 0;
14931 /* Run window scroll functions, if any, for WINDOW with new window
14932 start STARTP. Sets the window start of WINDOW to that position.
14934 We assume that the window's buffer is really current. */
14936 static struct text_pos
14937 run_window_scroll_functions (Lisp_Object window
, struct text_pos startp
)
14939 struct window
*w
= XWINDOW (window
);
14940 SET_MARKER_FROM_TEXT_POS (w
->start
, startp
);
14942 eassert (current_buffer
== XBUFFER (w
->contents
));
14944 if (!NILP (Vwindow_scroll_functions
))
14946 run_hook_with_args_2 (Qwindow_scroll_functions
, window
,
14947 make_number (CHARPOS (startp
)));
14948 SET_TEXT_POS_FROM_MARKER (startp
, w
->start
);
14949 /* In case the hook functions switch buffers. */
14950 set_buffer_internal (XBUFFER (w
->contents
));
14957 /* Make sure the line containing the cursor is fully visible.
14958 A value of 1 means there is nothing to be done.
14959 (Either the line is fully visible, or it cannot be made so,
14960 or we cannot tell.)
14962 If FORCE_P is non-zero, return 0 even if partial visible cursor row
14963 is higher than window.
14965 If CURRENT_MATRIX_P is non-zero, use the information from the
14966 window's current glyph matrix; otherwise use the desired glyph
14969 A value of 0 means the caller should do scrolling
14970 as if point had gone off the screen. */
14973 cursor_row_fully_visible_p (struct window
*w
, int force_p
, int current_matrix_p
)
14975 struct glyph_matrix
*matrix
;
14976 struct glyph_row
*row
;
14979 if (!make_cursor_line_fully_visible_p
)
14982 /* It's not always possible to find the cursor, e.g, when a window
14983 is full of overlay strings. Don't do anything in that case. */
14984 if (w
->cursor
.vpos
< 0)
14987 matrix
= current_matrix_p
? w
->current_matrix
: w
->desired_matrix
;
14988 row
= MATRIX_ROW (matrix
, w
->cursor
.vpos
);
14990 /* If the cursor row is not partially visible, there's nothing to do. */
14991 if (!MATRIX_ROW_PARTIALLY_VISIBLE_P (w
, row
))
14994 /* If the row the cursor is in is taller than the window's height,
14995 it's not clear what to do, so do nothing. */
14996 window_height
= window_box_height (w
);
14997 if (row
->height
>= window_height
)
14999 if (!force_p
|| MINI_WINDOW_P (w
)
15000 || w
->vscroll
|| w
->cursor
.vpos
== 0)
15007 /* Try scrolling PT into view in window WINDOW. JUST_THIS_ONE_P
15008 non-zero means only WINDOW is redisplayed in redisplay_internal.
15009 TEMP_SCROLL_STEP has the same meaning as emacs_scroll_step, and is used
15010 in redisplay_window to bring a partially visible line into view in
15011 the case that only the cursor has moved.
15013 LAST_LINE_MISFIT should be nonzero if we're scrolling because the
15014 last screen line's vertical height extends past the end of the screen.
15018 1 if scrolling succeeded
15020 0 if scrolling didn't find point.
15022 -1 if new fonts have been loaded so that we must interrupt
15023 redisplay, adjust glyph matrices, and try again. */
15029 SCROLLING_NEED_LARGER_MATRICES
15032 /* If scroll-conservatively is more than this, never recenter.
15034 If you change this, don't forget to update the doc string of
15035 `scroll-conservatively' and the Emacs manual. */
15036 #define SCROLL_LIMIT 100
15039 try_scrolling (Lisp_Object window
, int just_this_one_p
,
15040 ptrdiff_t arg_scroll_conservatively
, ptrdiff_t scroll_step
,
15041 int temp_scroll_step
, int last_line_misfit
)
15043 struct window
*w
= XWINDOW (window
);
15044 struct frame
*f
= XFRAME (w
->frame
);
15045 struct text_pos pos
, startp
;
15047 int this_scroll_margin
, scroll_max
, rc
, height
;
15048 int dy
= 0, amount_to_scroll
= 0, scroll_down_p
= 0;
15049 int extra_scroll_margin_lines
= last_line_misfit
? 1 : 0;
15050 Lisp_Object aggressive
;
15051 /* We will never try scrolling more than this number of lines. */
15052 int scroll_limit
= SCROLL_LIMIT
;
15053 int frame_line_height
= default_line_pixel_height (w
);
15054 int window_total_lines
15055 = WINDOW_TOTAL_LINES (w
) * FRAME_LINE_HEIGHT (f
) / frame_line_height
;
15058 debug_method_add (w
, "try_scrolling");
15061 SET_TEXT_POS_FROM_MARKER (startp
, w
->start
);
15063 /* Compute scroll margin height in pixels. We scroll when point is
15064 within this distance from the top or bottom of the window. */
15065 if (scroll_margin
> 0)
15066 this_scroll_margin
= min (scroll_margin
, window_total_lines
/ 4)
15067 * frame_line_height
;
15069 this_scroll_margin
= 0;
15071 /* Force arg_scroll_conservatively to have a reasonable value, to
15072 avoid scrolling too far away with slow move_it_* functions. Note
15073 that the user can supply scroll-conservatively equal to
15074 `most-positive-fixnum', which can be larger than INT_MAX. */
15075 if (arg_scroll_conservatively
> scroll_limit
)
15077 arg_scroll_conservatively
= scroll_limit
+ 1;
15078 scroll_max
= scroll_limit
* frame_line_height
;
15080 else if (scroll_step
|| arg_scroll_conservatively
|| temp_scroll_step
)
15081 /* Compute how much we should try to scroll maximally to bring
15082 point into view. */
15083 scroll_max
= (max (scroll_step
,
15084 max (arg_scroll_conservatively
, temp_scroll_step
))
15085 * frame_line_height
);
15086 else if (NUMBERP (BVAR (current_buffer
, scroll_down_aggressively
))
15087 || NUMBERP (BVAR (current_buffer
, scroll_up_aggressively
)))
15088 /* We're trying to scroll because of aggressive scrolling but no
15089 scroll_step is set. Choose an arbitrary one. */
15090 scroll_max
= 10 * frame_line_height
;
15096 /* Decide whether to scroll down. */
15097 if (PT
> CHARPOS (startp
))
15099 int scroll_margin_y
;
15101 /* Compute the pixel ypos of the scroll margin, then move IT to
15102 either that ypos or PT, whichever comes first. */
15103 start_display (&it
, w
, startp
);
15104 scroll_margin_y
= it
.last_visible_y
- this_scroll_margin
15105 - frame_line_height
* extra_scroll_margin_lines
;
15106 move_it_to (&it
, PT
, -1, scroll_margin_y
- 1, -1,
15107 (MOVE_TO_POS
| MOVE_TO_Y
));
15109 if (PT
> CHARPOS (it
.current
.pos
))
15111 int y0
= line_bottom_y (&it
);
15112 /* Compute how many pixels below window bottom to stop searching
15113 for PT. This avoids costly search for PT that is far away if
15114 the user limited scrolling by a small number of lines, but
15115 always finds PT if scroll_conservatively is set to a large
15116 number, such as most-positive-fixnum. */
15117 int slack
= max (scroll_max
, 10 * frame_line_height
);
15118 int y_to_move
= it
.last_visible_y
+ slack
;
15120 /* Compute the distance from the scroll margin to PT or to
15121 the scroll limit, whichever comes first. This should
15122 include the height of the cursor line, to make that line
15124 move_it_to (&it
, PT
, -1, y_to_move
,
15125 -1, MOVE_TO_POS
| MOVE_TO_Y
);
15126 dy
= line_bottom_y (&it
) - y0
;
15128 if (dy
> scroll_max
)
15129 return SCROLLING_FAILED
;
15138 /* Point is in or below the bottom scroll margin, so move the
15139 window start down. If scrolling conservatively, move it just
15140 enough down to make point visible. If scroll_step is set,
15141 move it down by scroll_step. */
15142 if (arg_scroll_conservatively
)
15144 = min (max (dy
, frame_line_height
),
15145 frame_line_height
* arg_scroll_conservatively
);
15146 else if (scroll_step
|| temp_scroll_step
)
15147 amount_to_scroll
= scroll_max
;
15150 aggressive
= BVAR (current_buffer
, scroll_up_aggressively
);
15151 height
= WINDOW_BOX_TEXT_HEIGHT (w
);
15152 if (NUMBERP (aggressive
))
15154 double float_amount
= XFLOATINT (aggressive
) * height
;
15155 int aggressive_scroll
= float_amount
;
15156 if (aggressive_scroll
== 0 && float_amount
> 0)
15157 aggressive_scroll
= 1;
15158 /* Don't let point enter the scroll margin near top of
15159 the window. This could happen if the value of
15160 scroll_up_aggressively is too large and there are
15161 non-zero margins, because scroll_up_aggressively
15162 means put point that fraction of window height
15163 _from_the_bottom_margin_. */
15164 if (aggressive_scroll
+ 2 * this_scroll_margin
> height
)
15165 aggressive_scroll
= height
- 2 * this_scroll_margin
;
15166 amount_to_scroll
= dy
+ aggressive_scroll
;
15170 if (amount_to_scroll
<= 0)
15171 return SCROLLING_FAILED
;
15173 start_display (&it
, w
, startp
);
15174 if (arg_scroll_conservatively
<= scroll_limit
)
15175 move_it_vertically (&it
, amount_to_scroll
);
15178 /* Extra precision for users who set scroll-conservatively
15179 to a large number: make sure the amount we scroll
15180 the window start is never less than amount_to_scroll,
15181 which was computed as distance from window bottom to
15182 point. This matters when lines at window top and lines
15183 below window bottom have different height. */
15185 void *it1data
= NULL
;
15186 /* We use a temporary it1 because line_bottom_y can modify
15187 its argument, if it moves one line down; see there. */
15190 SAVE_IT (it1
, it
, it1data
);
15191 start_y
= line_bottom_y (&it1
);
15193 RESTORE_IT (&it
, &it
, it1data
);
15194 move_it_by_lines (&it
, 1);
15195 SAVE_IT (it1
, it
, it1data
);
15196 } while (line_bottom_y (&it1
) - start_y
< amount_to_scroll
);
15199 /* If STARTP is unchanged, move it down another screen line. */
15200 if (CHARPOS (it
.current
.pos
) == CHARPOS (startp
))
15201 move_it_by_lines (&it
, 1);
15202 startp
= it
.current
.pos
;
15206 struct text_pos scroll_margin_pos
= startp
;
15209 /* See if point is inside the scroll margin at the top of the
15211 if (this_scroll_margin
)
15215 start_display (&it
, w
, startp
);
15216 y_start
= it
.current_y
;
15217 move_it_vertically (&it
, this_scroll_margin
);
15218 scroll_margin_pos
= it
.current
.pos
;
15219 /* If we didn't move enough before hitting ZV, request
15220 additional amount of scroll, to move point out of the
15222 if (IT_CHARPOS (it
) == ZV
15223 && it
.current_y
- y_start
< this_scroll_margin
)
15224 y_offset
= this_scroll_margin
- (it
.current_y
- y_start
);
15227 if (PT
< CHARPOS (scroll_margin_pos
))
15229 /* Point is in the scroll margin at the top of the window or
15230 above what is displayed in the window. */
15233 /* Compute the vertical distance from PT to the scroll
15234 margin position. Move as far as scroll_max allows, or
15235 one screenful, or 10 screen lines, whichever is largest.
15236 Give up if distance is greater than scroll_max or if we
15237 didn't reach the scroll margin position. */
15238 SET_TEXT_POS (pos
, PT
, PT_BYTE
);
15239 start_display (&it
, w
, pos
);
15241 y_to_move
= max (it
.last_visible_y
,
15242 max (scroll_max
, 10 * frame_line_height
));
15243 move_it_to (&it
, CHARPOS (scroll_margin_pos
), 0,
15245 MOVE_TO_POS
| MOVE_TO_X
| MOVE_TO_Y
);
15246 dy
= it
.current_y
- y0
;
15247 if (dy
> scroll_max
15248 || IT_CHARPOS (it
) < CHARPOS (scroll_margin_pos
))
15249 return SCROLLING_FAILED
;
15251 /* Additional scroll for when ZV was too close to point. */
15254 /* Compute new window start. */
15255 start_display (&it
, w
, startp
);
15257 if (arg_scroll_conservatively
)
15258 amount_to_scroll
= max (dy
, frame_line_height
15259 * max (scroll_step
, temp_scroll_step
));
15260 else if (scroll_step
|| temp_scroll_step
)
15261 amount_to_scroll
= scroll_max
;
15264 aggressive
= BVAR (current_buffer
, scroll_down_aggressively
);
15265 height
= WINDOW_BOX_TEXT_HEIGHT (w
);
15266 if (NUMBERP (aggressive
))
15268 double float_amount
= XFLOATINT (aggressive
) * height
;
15269 int aggressive_scroll
= float_amount
;
15270 if (aggressive_scroll
== 0 && float_amount
> 0)
15271 aggressive_scroll
= 1;
15272 /* Don't let point enter the scroll margin near
15273 bottom of the window, if the value of
15274 scroll_down_aggressively happens to be too
15276 if (aggressive_scroll
+ 2 * this_scroll_margin
> height
)
15277 aggressive_scroll
= height
- 2 * this_scroll_margin
;
15278 amount_to_scroll
= dy
+ aggressive_scroll
;
15282 if (amount_to_scroll
<= 0)
15283 return SCROLLING_FAILED
;
15285 move_it_vertically_backward (&it
, amount_to_scroll
);
15286 startp
= it
.current
.pos
;
15290 /* Run window scroll functions. */
15291 startp
= run_window_scroll_functions (window
, startp
);
15293 /* Display the window. Give up if new fonts are loaded, or if point
15295 if (!try_window (window
, startp
, 0))
15296 rc
= SCROLLING_NEED_LARGER_MATRICES
;
15297 else if (w
->cursor
.vpos
< 0)
15299 clear_glyph_matrix (w
->desired_matrix
);
15300 rc
= SCROLLING_FAILED
;
15304 /* Maybe forget recorded base line for line number display. */
15305 if (!just_this_one_p
15306 || current_buffer
->clip_changed
15307 || BEG_UNCHANGED
< CHARPOS (startp
))
15308 w
->base_line_number
= 0;
15310 /* If cursor ends up on a partially visible line,
15311 treat that as being off the bottom of the screen. */
15312 if (! cursor_row_fully_visible_p (w
, extra_scroll_margin_lines
<= 1, 0)
15313 /* It's possible that the cursor is on the first line of the
15314 buffer, which is partially obscured due to a vscroll
15315 (Bug#7537). In that case, avoid looping forever. */
15316 && extra_scroll_margin_lines
< w
->desired_matrix
->nrows
- 1)
15318 clear_glyph_matrix (w
->desired_matrix
);
15319 ++extra_scroll_margin_lines
;
15322 rc
= SCROLLING_SUCCESS
;
15329 /* Compute a suitable window start for window W if display of W starts
15330 on a continuation line. Value is non-zero if a new window start
15333 The new window start will be computed, based on W's width, starting
15334 from the start of the continued line. It is the start of the
15335 screen line with the minimum distance from the old start W->start. */
15338 compute_window_start_on_continuation_line (struct window
*w
)
15340 struct text_pos pos
, start_pos
;
15341 int window_start_changed_p
= 0;
15343 SET_TEXT_POS_FROM_MARKER (start_pos
, w
->start
);
15345 /* If window start is on a continuation line... Window start may be
15346 < BEGV in case there's invisible text at the start of the
15347 buffer (M-x rmail, for example). */
15348 if (CHARPOS (start_pos
) > BEGV
15349 && FETCH_BYTE (BYTEPOS (start_pos
) - 1) != '\n')
15352 struct glyph_row
*row
;
15354 /* Handle the case that the window start is out of range. */
15355 if (CHARPOS (start_pos
) < BEGV
)
15356 SET_TEXT_POS (start_pos
, BEGV
, BEGV_BYTE
);
15357 else if (CHARPOS (start_pos
) > ZV
)
15358 SET_TEXT_POS (start_pos
, ZV
, ZV_BYTE
);
15360 /* Find the start of the continued line. This should be fast
15361 because find_newline is fast (newline cache). */
15362 row
= w
->desired_matrix
->rows
+ (WINDOW_WANTS_HEADER_LINE_P (w
) ? 1 : 0);
15363 init_iterator (&it
, w
, CHARPOS (start_pos
), BYTEPOS (start_pos
),
15364 row
, DEFAULT_FACE_ID
);
15365 reseat_at_previous_visible_line_start (&it
);
15367 /* If the line start is "too far" away from the window start,
15368 say it takes too much time to compute a new window start. */
15369 if (CHARPOS (start_pos
) - IT_CHARPOS (it
)
15370 /* PXW: Do we need upper bounds here? */
15371 < WINDOW_TOTAL_LINES (w
) * WINDOW_TOTAL_COLS (w
))
15373 int min_distance
, distance
;
15375 /* Move forward by display lines to find the new window
15376 start. If window width was enlarged, the new start can
15377 be expected to be > the old start. If window width was
15378 decreased, the new window start will be < the old start.
15379 So, we're looking for the display line start with the
15380 minimum distance from the old window start. */
15381 pos
= it
.current
.pos
;
15382 min_distance
= INFINITY
;
15383 while ((distance
= eabs (CHARPOS (start_pos
) - IT_CHARPOS (it
))),
15384 distance
< min_distance
)
15386 min_distance
= distance
;
15387 pos
= it
.current
.pos
;
15388 if (it
.line_wrap
== WORD_WRAP
)
15390 /* Under WORD_WRAP, move_it_by_lines is likely to
15391 overshoot and stop not at the first, but the
15392 second character from the left margin. So in
15393 that case, we need a more tight control on the X
15394 coordinate of the iterator than move_it_by_lines
15395 promises in its contract. The method is to first
15396 go to the last (rightmost) visible character of a
15397 line, then move to the leftmost character on the
15398 next line in a separate call. */
15399 move_it_to (&it
, ZV
, it
.last_visible_x
, it
.current_y
, -1,
15400 MOVE_TO_POS
| MOVE_TO_X
| MOVE_TO_Y
);
15401 move_it_to (&it
, ZV
, 0,
15402 it
.current_y
+ it
.max_ascent
+ it
.max_descent
, -1,
15403 MOVE_TO_POS
| MOVE_TO_X
| MOVE_TO_Y
);
15406 move_it_by_lines (&it
, 1);
15409 /* Set the window start there. */
15410 SET_MARKER_FROM_TEXT_POS (w
->start
, pos
);
15411 window_start_changed_p
= 1;
15415 return window_start_changed_p
;
15419 /* Try cursor movement in case text has not changed in window WINDOW,
15420 with window start STARTP. Value is
15422 CURSOR_MOVEMENT_SUCCESS if successful
15424 CURSOR_MOVEMENT_CANNOT_BE_USED if this method cannot be used
15426 CURSOR_MOVEMENT_MUST_SCROLL if we know we have to scroll the
15427 display. *SCROLL_STEP is set to 1, under certain circumstances, if
15428 we want to scroll as if scroll-step were set to 1. See the code.
15430 CURSOR_MOVEMENT_NEED_LARGER_MATRICES if we need larger matrices, in
15431 which case we have to abort this redisplay, and adjust matrices
15436 CURSOR_MOVEMENT_SUCCESS
,
15437 CURSOR_MOVEMENT_CANNOT_BE_USED
,
15438 CURSOR_MOVEMENT_MUST_SCROLL
,
15439 CURSOR_MOVEMENT_NEED_LARGER_MATRICES
15443 try_cursor_movement (Lisp_Object window
, struct text_pos startp
, int *scroll_step
)
15445 struct window
*w
= XWINDOW (window
);
15446 struct frame
*f
= XFRAME (w
->frame
);
15447 int rc
= CURSOR_MOVEMENT_CANNOT_BE_USED
;
15450 if (inhibit_try_cursor_movement
)
15454 /* Previously, there was a check for Lisp integer in the
15455 if-statement below. Now, this field is converted to
15456 ptrdiff_t, thus zero means invalid position in a buffer. */
15457 eassert (w
->last_point
> 0);
15458 /* Likewise there was a check whether window_end_vpos is nil or larger
15459 than the window. Now window_end_vpos is int and so never nil, but
15460 let's leave eassert to check whether it fits in the window. */
15461 eassert (w
->window_end_vpos
< w
->current_matrix
->nrows
);
15463 /* Handle case where text has not changed, only point, and it has
15464 not moved off the frame. */
15465 if (/* Point may be in this window. */
15466 PT
>= CHARPOS (startp
)
15467 /* Selective display hasn't changed. */
15468 && !current_buffer
->clip_changed
15469 /* Function force-mode-line-update is used to force a thorough
15470 redisplay. It sets either windows_or_buffers_changed or
15471 update_mode_lines. So don't take a shortcut here for these
15473 && !update_mode_lines
15474 && !windows_or_buffers_changed
15475 && !f
->cursor_type_changed
15476 && NILP (Vshow_trailing_whitespace
)
15477 /* This code is not used for mini-buffer for the sake of the case
15478 of redisplaying to replace an echo area message; since in
15479 that case the mini-buffer contents per se are usually
15480 unchanged. This code is of no real use in the mini-buffer
15481 since the handling of this_line_start_pos, etc., in redisplay
15482 handles the same cases. */
15483 && !EQ (window
, minibuf_window
)
15484 && (FRAME_WINDOW_P (f
)
15485 || !overlay_arrow_in_current_buffer_p ()))
15487 int this_scroll_margin
, top_scroll_margin
;
15488 struct glyph_row
*row
= NULL
;
15489 int frame_line_height
= default_line_pixel_height (w
);
15490 int window_total_lines
15491 = WINDOW_TOTAL_LINES (w
) * FRAME_LINE_HEIGHT (f
) / frame_line_height
;
15494 debug_method_add (w
, "cursor movement");
15497 /* Scroll if point within this distance from the top or bottom
15498 of the window. This is a pixel value. */
15499 if (scroll_margin
> 0)
15501 this_scroll_margin
= min (scroll_margin
, window_total_lines
/ 4);
15502 this_scroll_margin
*= frame_line_height
;
15505 this_scroll_margin
= 0;
15507 top_scroll_margin
= this_scroll_margin
;
15508 if (WINDOW_WANTS_HEADER_LINE_P (w
))
15509 top_scroll_margin
+= CURRENT_HEADER_LINE_HEIGHT (w
);
15511 /* Start with the row the cursor was displayed during the last
15512 not paused redisplay. Give up if that row is not valid. */
15513 if (w
->last_cursor_vpos
< 0
15514 || w
->last_cursor_vpos
>= w
->current_matrix
->nrows
)
15515 rc
= CURSOR_MOVEMENT_MUST_SCROLL
;
15518 row
= MATRIX_ROW (w
->current_matrix
, w
->last_cursor_vpos
);
15519 if (row
->mode_line_p
)
15521 if (!row
->enabled_p
)
15522 rc
= CURSOR_MOVEMENT_MUST_SCROLL
;
15525 if (rc
== CURSOR_MOVEMENT_CANNOT_BE_USED
)
15527 int scroll_p
= 0, must_scroll
= 0;
15528 int last_y
= window_text_bottom_y (w
) - this_scroll_margin
;
15530 if (PT
> w
->last_point
)
15532 /* Point has moved forward. */
15533 while (MATRIX_ROW_END_CHARPOS (row
) < PT
15534 && MATRIX_ROW_BOTTOM_Y (row
) < last_y
)
15536 eassert (row
->enabled_p
);
15540 /* If the end position of a row equals the start
15541 position of the next row, and PT is at that position,
15542 we would rather display cursor in the next line. */
15543 while (MATRIX_ROW_BOTTOM_Y (row
) < last_y
15544 && MATRIX_ROW_END_CHARPOS (row
) == PT
15545 && row
< MATRIX_MODE_LINE_ROW (w
->current_matrix
)
15546 && MATRIX_ROW_START_CHARPOS (row
+1) == PT
15547 && !cursor_row_p (row
))
15550 /* If within the scroll margin, scroll. Note that
15551 MATRIX_ROW_BOTTOM_Y gives the pixel position at which
15552 the next line would be drawn, and that
15553 this_scroll_margin can be zero. */
15554 if (MATRIX_ROW_BOTTOM_Y (row
) > last_y
15555 || PT
> MATRIX_ROW_END_CHARPOS (row
)
15556 /* Line is completely visible last line in window
15557 and PT is to be set in the next line. */
15558 || (MATRIX_ROW_BOTTOM_Y (row
) == last_y
15559 && PT
== MATRIX_ROW_END_CHARPOS (row
)
15560 && !row
->ends_at_zv_p
15561 && !MATRIX_ROW_ENDS_IN_MIDDLE_OF_CHAR_P (row
)))
15564 else if (PT
< w
->last_point
)
15566 /* Cursor has to be moved backward. Note that PT >=
15567 CHARPOS (startp) because of the outer if-statement. */
15568 while (!row
->mode_line_p
15569 && (MATRIX_ROW_START_CHARPOS (row
) > PT
15570 || (MATRIX_ROW_START_CHARPOS (row
) == PT
15571 && (MATRIX_ROW_STARTS_IN_MIDDLE_OF_CHAR_P (row
)
15572 || (/* STARTS_IN_MIDDLE_OF_STRING_P (row) */
15573 row
> w
->current_matrix
->rows
15574 && (row
-1)->ends_in_newline_from_string_p
))))
15575 && (row
->y
> top_scroll_margin
15576 || CHARPOS (startp
) == BEGV
))
15578 eassert (row
->enabled_p
);
15582 /* Consider the following case: Window starts at BEGV,
15583 there is invisible, intangible text at BEGV, so that
15584 display starts at some point START > BEGV. It can
15585 happen that we are called with PT somewhere between
15586 BEGV and START. Try to handle that case. */
15587 if (row
< w
->current_matrix
->rows
15588 || row
->mode_line_p
)
15590 row
= w
->current_matrix
->rows
;
15591 if (row
->mode_line_p
)
15595 /* Due to newlines in overlay strings, we may have to
15596 skip forward over overlay strings. */
15597 while (MATRIX_ROW_BOTTOM_Y (row
) < last_y
15598 && MATRIX_ROW_END_CHARPOS (row
) == PT
15599 && !cursor_row_p (row
))
15602 /* If within the scroll margin, scroll. */
15603 if (row
->y
< top_scroll_margin
15604 && CHARPOS (startp
) != BEGV
)
15609 /* Cursor did not move. So don't scroll even if cursor line
15610 is partially visible, as it was so before. */
15611 rc
= CURSOR_MOVEMENT_SUCCESS
;
15614 if (PT
< MATRIX_ROW_START_CHARPOS (row
)
15615 || PT
> MATRIX_ROW_END_CHARPOS (row
))
15617 /* if PT is not in the glyph row, give up. */
15618 rc
= CURSOR_MOVEMENT_MUST_SCROLL
;
15621 else if (rc
!= CURSOR_MOVEMENT_SUCCESS
15622 && !NILP (BVAR (XBUFFER (w
->contents
), bidi_display_reordering
)))
15624 struct glyph_row
*row1
;
15626 /* If rows are bidi-reordered and point moved, back up
15627 until we find a row that does not belong to a
15628 continuation line. This is because we must consider
15629 all rows of a continued line as candidates for the
15630 new cursor positioning, since row start and end
15631 positions change non-linearly with vertical position
15633 /* FIXME: Revisit this when glyph ``spilling'' in
15634 continuation lines' rows is implemented for
15635 bidi-reordered rows. */
15636 for (row1
= MATRIX_FIRST_TEXT_ROW (w
->current_matrix
);
15637 MATRIX_ROW_CONTINUATION_LINE_P (row
);
15640 /* If we hit the beginning of the displayed portion
15641 without finding the first row of a continued
15645 rc
= CURSOR_MOVEMENT_MUST_SCROLL
;
15648 eassert (row
->enabled_p
);
15653 else if (rc
!= CURSOR_MOVEMENT_SUCCESS
15654 && MATRIX_ROW_PARTIALLY_VISIBLE_P (w
, row
)
15655 /* Make sure this isn't a header line by any chance, since
15656 then MATRIX_ROW_PARTIALLY_VISIBLE_P might yield non-zero. */
15657 && !row
->mode_line_p
15658 && make_cursor_line_fully_visible_p
)
15660 if (PT
== MATRIX_ROW_END_CHARPOS (row
)
15661 && !row
->ends_at_zv_p
15662 && !MATRIX_ROW_ENDS_IN_MIDDLE_OF_CHAR_P (row
))
15663 rc
= CURSOR_MOVEMENT_MUST_SCROLL
;
15664 else if (row
->height
> window_box_height (w
))
15666 /* If we end up in a partially visible line, let's
15667 make it fully visible, except when it's taller
15668 than the window, in which case we can't do much
15671 rc
= CURSOR_MOVEMENT_MUST_SCROLL
;
15675 set_cursor_from_row (w
, row
, w
->current_matrix
, 0, 0, 0, 0);
15676 if (!cursor_row_fully_visible_p (w
, 0, 1))
15677 rc
= CURSOR_MOVEMENT_MUST_SCROLL
;
15679 rc
= CURSOR_MOVEMENT_SUCCESS
;
15683 rc
= CURSOR_MOVEMENT_MUST_SCROLL
;
15684 else if (rc
!= CURSOR_MOVEMENT_SUCCESS
15685 && !NILP (BVAR (XBUFFER (w
->contents
), bidi_display_reordering
)))
15687 /* With bidi-reordered rows, there could be more than
15688 one candidate row whose start and end positions
15689 occlude point. We need to let set_cursor_from_row
15690 find the best candidate. */
15691 /* FIXME: Revisit this when glyph ``spilling'' in
15692 continuation lines' rows is implemented for
15693 bidi-reordered rows. */
15698 int at_zv_p
= 0, exact_match_p
= 0;
15700 if (MATRIX_ROW_START_CHARPOS (row
) <= PT
15701 && PT
<= MATRIX_ROW_END_CHARPOS (row
)
15702 && cursor_row_p (row
))
15703 rv
|= set_cursor_from_row (w
, row
, w
->current_matrix
,
15705 /* As soon as we've found the exact match for point,
15706 or the first suitable row whose ends_at_zv_p flag
15707 is set, we are done. */
15710 at_zv_p
= MATRIX_ROW (w
->current_matrix
,
15711 w
->cursor
.vpos
)->ends_at_zv_p
;
15713 && w
->cursor
.hpos
>= 0
15714 && w
->cursor
.hpos
< MATRIX_ROW_USED (w
->current_matrix
,
15717 struct glyph_row
*candidate
=
15718 MATRIX_ROW (w
->current_matrix
, w
->cursor
.vpos
);
15720 candidate
->glyphs
[TEXT_AREA
] + w
->cursor
.hpos
;
15721 ptrdiff_t endpos
= MATRIX_ROW_END_CHARPOS (candidate
);
15724 (BUFFERP (g
->object
) && g
->charpos
== PT
)
15725 || (NILP (g
->object
)
15726 && (g
->charpos
== PT
15727 || (g
->charpos
== 0 && endpos
- 1 == PT
)));
15729 if (at_zv_p
|| exact_match_p
)
15731 rc
= CURSOR_MOVEMENT_SUCCESS
;
15735 if (MATRIX_ROW_BOTTOM_Y (row
) == last_y
)
15739 while (((MATRIX_ROW_CONTINUATION_LINE_P (row
)
15740 || row
->continued_p
)
15741 && MATRIX_ROW_BOTTOM_Y (row
) <= last_y
)
15742 || (MATRIX_ROW_START_CHARPOS (row
) == PT
15743 && MATRIX_ROW_BOTTOM_Y (row
) < last_y
));
15744 /* If we didn't find any candidate rows, or exited the
15745 loop before all the candidates were examined, signal
15746 to the caller that this method failed. */
15747 if (rc
!= CURSOR_MOVEMENT_SUCCESS
15749 && !MATRIX_ROW_CONTINUATION_LINE_P (row
)
15750 && !row
->continued_p
))
15751 rc
= CURSOR_MOVEMENT_MUST_SCROLL
;
15753 rc
= CURSOR_MOVEMENT_SUCCESS
;
15759 if (set_cursor_from_row (w
, row
, w
->current_matrix
, 0, 0, 0, 0))
15761 rc
= CURSOR_MOVEMENT_SUCCESS
;
15766 while (MATRIX_ROW_BOTTOM_Y (row
) < last_y
15767 && MATRIX_ROW_START_CHARPOS (row
) == PT
15768 && cursor_row_p (row
));
15778 set_vertical_scroll_bar (struct window
*w
)
15780 ptrdiff_t start
, end
, whole
;
15782 /* Calculate the start and end positions for the current window.
15783 At some point, it would be nice to choose between scrollbars
15784 which reflect the whole buffer size, with special markers
15785 indicating narrowing, and scrollbars which reflect only the
15788 Note that mini-buffers sometimes aren't displaying any text. */
15789 if (!MINI_WINDOW_P (w
)
15790 || (w
== XWINDOW (minibuf_window
)
15791 && NILP (echo_area_buffer
[0])))
15793 struct buffer
*buf
= XBUFFER (w
->contents
);
15794 whole
= BUF_ZV (buf
) - BUF_BEGV (buf
);
15795 start
= marker_position (w
->start
) - BUF_BEGV (buf
);
15796 /* I don't think this is guaranteed to be right. For the
15797 moment, we'll pretend it is. */
15798 end
= BUF_Z (buf
) - w
->window_end_pos
- BUF_BEGV (buf
);
15802 if (whole
< (end
- start
))
15803 whole
= end
- start
;
15806 start
= end
= whole
= 0;
15808 /* Indicate what this scroll bar ought to be displaying now. */
15809 if (FRAME_TERMINAL (XFRAME (w
->frame
))->set_vertical_scroll_bar_hook
)
15810 (*FRAME_TERMINAL (XFRAME (w
->frame
))->set_vertical_scroll_bar_hook
)
15811 (w
, end
- start
, whole
, start
);
15816 set_horizontal_scroll_bar (struct window
*w
)
15818 int start
, end
, whole
, portion
;
15820 if (!MINI_WINDOW_P (w
)
15821 || (w
== XWINDOW (minibuf_window
)
15822 && NILP (echo_area_buffer
[0])))
15824 struct buffer
*b
= XBUFFER (w
->contents
);
15825 struct buffer
*old_buffer
= NULL
;
15827 struct text_pos startp
;
15829 if (b
!= current_buffer
)
15831 old_buffer
= current_buffer
;
15832 set_buffer_internal (b
);
15835 SET_TEXT_POS_FROM_MARKER (startp
, w
->start
);
15836 start_display (&it
, w
, startp
);
15837 it
.last_visible_x
= INT_MAX
;
15838 whole
= move_it_to (&it
, -1, INT_MAX
, window_box_height (w
), -1,
15839 MOVE_TO_X
| MOVE_TO_Y
);
15840 /* whole = move_it_to (&it, w->window_end_pos, INT_MAX,
15841 window_box_height (w), -1,
15842 MOVE_TO_POS | MOVE_TO_X | MOVE_TO_Y); */
15844 start
= w
->hscroll
* FRAME_COLUMN_WIDTH (WINDOW_XFRAME (w
));
15845 end
= start
+ window_box_width (w
, TEXT_AREA
);
15846 portion
= end
- start
;
15847 /* After enlarging a horizontally scrolled window such that it
15848 gets at least as wide as the text it contains, make sure that
15849 the thumb doesn't fill the entire scroll bar so we can still
15850 drag it back to see the entire text. */
15851 whole
= max (whole
, end
);
15857 pdir
= Fcurrent_bidi_paragraph_direction (Qnil
);
15858 if (EQ (pdir
, Qright_to_left
))
15860 start
= whole
- end
;
15861 end
= start
+ portion
;
15866 set_buffer_internal (old_buffer
);
15869 start
= end
= whole
= portion
= 0;
15871 w
->hscroll_whole
= whole
;
15873 /* Indicate what this scroll bar ought to be displaying now. */
15874 if (FRAME_TERMINAL (XFRAME (w
->frame
))->set_horizontal_scroll_bar_hook
)
15875 (*FRAME_TERMINAL (XFRAME (w
->frame
))->set_horizontal_scroll_bar_hook
)
15876 (w
, portion
, whole
, start
);
15880 /* Redisplay leaf window WINDOW. JUST_THIS_ONE_P non-zero means only
15881 selected_window is redisplayed.
15883 We can return without actually redisplaying the window if fonts has been
15884 changed on window's frame. In that case, redisplay_internal will retry.
15886 As one of the important parts of redisplaying a window, we need to
15887 decide whether the previous window-start position (stored in the
15888 window's w->start marker position) is still valid, and if it isn't,
15889 recompute it. Some details about that:
15891 . The previous window-start could be in a continuation line, in
15892 which case we need to recompute it when the window width
15893 changes. See compute_window_start_on_continuation_line and its
15896 . The text that changed since last redisplay could include the
15897 previous window-start position. In that case, we try to salvage
15898 what we can from the current glyph matrix by calling
15899 try_scrolling, which see.
15901 . Some Emacs command could force us to use a specific window-start
15902 position by setting the window's force_start flag, or gently
15903 propose doing that by setting the window's optional_new_start
15904 flag. In these cases, we try using the specified start point if
15905 that succeeds (i.e. the window desired matrix is successfully
15906 recomputed, and point location is within the window). In case
15907 of optional_new_start, we first check if the specified start
15908 position is feasible, i.e. if it will allow point to be
15909 displayed in the window. If using the specified start point
15910 fails, e.g., if new fonts are needed to be loaded, we abort the
15911 redisplay cycle and leave it up to the next cycle to figure out
15914 . Note that the window's force_start flag is sometimes set by
15915 redisplay itself, when it decides that the previous window start
15916 point is fine and should be kept. Search for "goto force_start"
15917 below to see the details. Like the values of window-start
15918 specified outside of redisplay, these internally-deduced values
15919 are tested for feasibility, and ignored if found to be
15922 . Note that the function try_window, used to completely redisplay
15923 a window, accepts the window's start point as its argument.
15924 This is used several times in the redisplay code to control
15925 where the window start will be, according to user options such
15926 as scroll-conservatively, and also to ensure the screen line
15927 showing point will be fully (as opposed to partially) visible on
15931 redisplay_window (Lisp_Object window
, bool just_this_one_p
)
15933 struct window
*w
= XWINDOW (window
);
15934 struct frame
*f
= XFRAME (w
->frame
);
15935 struct buffer
*buffer
= XBUFFER (w
->contents
);
15936 struct buffer
*old
= current_buffer
;
15937 struct text_pos lpoint
, opoint
, startp
;
15938 int update_mode_line
;
15941 /* Record it now because it's overwritten. */
15942 bool current_matrix_up_to_date_p
= false;
15943 bool used_current_matrix_p
= false;
15944 /* This is less strict than current_matrix_up_to_date_p.
15945 It indicates that the buffer contents and narrowing are unchanged. */
15946 bool buffer_unchanged_p
= false;
15947 int temp_scroll_step
= 0;
15948 ptrdiff_t count
= SPECPDL_INDEX ();
15950 int centering_position
= -1;
15951 int last_line_misfit
= 0;
15952 ptrdiff_t beg_unchanged
, end_unchanged
;
15953 int frame_line_height
;
15955 SET_TEXT_POS (lpoint
, PT
, PT_BYTE
);
15959 *w
->desired_matrix
->method
= 0;
15962 if (!just_this_one_p
15963 && REDISPLAY_SOME_P ()
15966 && !buffer
->text
->redisplay
15967 && BUF_PT (buffer
) == w
->last_point
)
15970 /* Make sure that both W's markers are valid. */
15971 eassert (XMARKER (w
->start
)->buffer
== buffer
);
15972 eassert (XMARKER (w
->pointm
)->buffer
== buffer
);
15974 /* We come here again if we need to run window-text-change-functions
15977 reconsider_clip_changes (w
);
15978 frame_line_height
= default_line_pixel_height (w
);
15980 /* Has the mode line to be updated? */
15981 update_mode_line
= (w
->update_mode_line
15982 || update_mode_lines
15983 || buffer
->clip_changed
15984 || buffer
->prevent_redisplay_optimizations_p
);
15986 if (!just_this_one_p
)
15987 /* If `just_this_one_p' is set, we apparently set must_be_updated_p more
15988 cleverly elsewhere. */
15989 w
->must_be_updated_p
= true;
15991 if (MINI_WINDOW_P (w
))
15993 if (w
== XWINDOW (echo_area_window
)
15994 && !NILP (echo_area_buffer
[0]))
15996 if (update_mode_line
)
15997 /* We may have to update a tty frame's menu bar or a
15998 tool-bar. Example `M-x C-h C-h C-g'. */
15999 goto finish_menu_bars
;
16001 /* We've already displayed the echo area glyphs in this window. */
16002 goto finish_scroll_bars
;
16004 else if ((w
!= XWINDOW (minibuf_window
)
16005 || minibuf_level
== 0)
16006 /* When buffer is nonempty, redisplay window normally. */
16007 && BUF_Z (XBUFFER (w
->contents
)) == BUF_BEG (XBUFFER (w
->contents
))
16008 /* Quail displays non-mini buffers in minibuffer window.
16009 In that case, redisplay the window normally. */
16010 && !NILP (Fmemq (w
->contents
, Vminibuffer_list
)))
16012 /* W is a mini-buffer window, but it's not active, so clear
16014 int yb
= window_text_bottom_y (w
);
16015 struct glyph_row
*row
;
16018 for (y
= 0, row
= w
->desired_matrix
->rows
;
16020 y
+= row
->height
, ++row
)
16021 blank_row (w
, row
, y
);
16022 goto finish_scroll_bars
;
16025 clear_glyph_matrix (w
->desired_matrix
);
16028 /* Otherwise set up data on this window; select its buffer and point
16030 /* Really select the buffer, for the sake of buffer-local
16032 set_buffer_internal_1 (XBUFFER (w
->contents
));
16034 current_matrix_up_to_date_p
16035 = (w
->window_end_valid
16036 && !current_buffer
->clip_changed
16037 && !current_buffer
->prevent_redisplay_optimizations_p
16038 && !window_outdated (w
));
16040 /* Run the window-text-change-functions
16041 if it is possible that the text on the screen has changed
16042 (either due to modification of the text, or any other reason). */
16043 if (!current_matrix_up_to_date_p
16044 && !NILP (Vwindow_text_change_functions
))
16046 safe_run_hooks (Qwindow_text_change_functions
);
16050 beg_unchanged
= BEG_UNCHANGED
;
16051 end_unchanged
= END_UNCHANGED
;
16053 SET_TEXT_POS (opoint
, PT
, PT_BYTE
);
16055 specbind (Qinhibit_point_motion_hooks
, Qt
);
16058 = (w
->window_end_valid
16059 && !current_buffer
->clip_changed
16060 && !window_outdated (w
));
16062 /* When windows_or_buffers_changed is non-zero, we can't rely
16063 on the window end being valid, so set it to zero there. */
16064 if (windows_or_buffers_changed
)
16066 /* If window starts on a continuation line, maybe adjust the
16067 window start in case the window's width changed. */
16068 if (XMARKER (w
->start
)->buffer
== current_buffer
)
16069 compute_window_start_on_continuation_line (w
);
16071 w
->window_end_valid
= false;
16072 /* If so, we also can't rely on current matrix
16073 and should not fool try_cursor_movement below. */
16074 current_matrix_up_to_date_p
= false;
16077 /* Some sanity checks. */
16078 CHECK_WINDOW_END (w
);
16079 if (Z
== Z_BYTE
&& CHARPOS (opoint
) != BYTEPOS (opoint
))
16081 if (BYTEPOS (opoint
) < CHARPOS (opoint
))
16084 if (mode_line_update_needed (w
))
16085 update_mode_line
= 1;
16087 /* Point refers normally to the selected window. For any other
16088 window, set up appropriate value. */
16089 if (!EQ (window
, selected_window
))
16091 ptrdiff_t new_pt
= marker_position (w
->pointm
);
16092 ptrdiff_t new_pt_byte
= marker_byte_position (w
->pointm
);
16097 new_pt_byte
= BEGV_BYTE
;
16098 set_marker_both (w
->pointm
, Qnil
, BEGV
, BEGV_BYTE
);
16100 else if (new_pt
> (ZV
- 1))
16103 new_pt_byte
= ZV_BYTE
;
16104 set_marker_both (w
->pointm
, Qnil
, ZV
, ZV_BYTE
);
16107 /* We don't use SET_PT so that the point-motion hooks don't run. */
16108 TEMP_SET_PT_BOTH (new_pt
, new_pt_byte
);
16111 /* If any of the character widths specified in the display table
16112 have changed, invalidate the width run cache. It's true that
16113 this may be a bit late to catch such changes, but the rest of
16114 redisplay goes (non-fatally) haywire when the display table is
16115 changed, so why should we worry about doing any better? */
16116 if (current_buffer
->width_run_cache
16117 || (current_buffer
->base_buffer
16118 && current_buffer
->base_buffer
->width_run_cache
))
16120 struct Lisp_Char_Table
*disptab
= buffer_display_table ();
16122 if (! disptab_matches_widthtab
16123 (disptab
, XVECTOR (BVAR (current_buffer
, width_table
))))
16125 struct buffer
*buf
= current_buffer
;
16127 if (buf
->base_buffer
)
16128 buf
= buf
->base_buffer
;
16129 invalidate_region_cache (buf
, buf
->width_run_cache
, BEG
, Z
);
16130 recompute_width_table (current_buffer
, disptab
);
16134 /* If window-start is screwed up, choose a new one. */
16135 if (XMARKER (w
->start
)->buffer
!= current_buffer
)
16138 SET_TEXT_POS_FROM_MARKER (startp
, w
->start
);
16140 /* If someone specified a new starting point but did not insist,
16141 check whether it can be used. */
16142 if ((w
->optional_new_start
|| window_frozen_p (w
))
16143 && CHARPOS (startp
) >= BEGV
16144 && CHARPOS (startp
) <= ZV
)
16146 ptrdiff_t it_charpos
;
16148 w
->optional_new_start
= 0;
16149 start_display (&it
, w
, startp
);
16150 move_it_to (&it
, PT
, 0, it
.last_visible_y
, -1,
16151 MOVE_TO_POS
| MOVE_TO_X
| MOVE_TO_Y
);
16152 /* Record IT's position now, since line_bottom_y might change
16154 it_charpos
= IT_CHARPOS (it
);
16155 /* Make sure we set the force_start flag only if the cursor row
16156 will be fully visible. Otherwise, the code under force_start
16157 label below will try to move point back into view, which is
16158 not what the code which sets optional_new_start wants. */
16159 if ((it
.current_y
== 0 || line_bottom_y (&it
) < it
.last_visible_y
)
16160 && !w
->force_start
)
16162 if (it_charpos
== PT
)
16163 w
->force_start
= 1;
16164 /* IT may overshoot PT if text at PT is invisible. */
16165 else if (it_charpos
> PT
&& CHARPOS (startp
) <= PT
)
16166 w
->force_start
= 1;
16168 if (w
->force_start
)
16170 if (window_frozen_p (w
))
16171 debug_method_add (w
, "set force_start from frozen window start");
16173 debug_method_add (w
, "set force_start from optional_new_start");
16181 /* Handle case where place to start displaying has been specified,
16182 unless the specified location is outside the accessible range. */
16183 if (w
->force_start
)
16185 /* We set this later on if we have to adjust point. */
16188 w
->force_start
= 0;
16190 w
->window_end_valid
= 0;
16192 /* Forget any recorded base line for line number display. */
16193 if (!buffer_unchanged_p
)
16194 w
->base_line_number
= 0;
16196 /* Redisplay the mode line. Select the buffer properly for that.
16197 Also, run the hook window-scroll-functions
16198 because we have scrolled. */
16199 /* Note, we do this after clearing force_start because
16200 if there's an error, it is better to forget about force_start
16201 than to get into an infinite loop calling the hook functions
16202 and having them get more errors. */
16203 if (!update_mode_line
16204 || ! NILP (Vwindow_scroll_functions
))
16206 update_mode_line
= 1;
16207 w
->update_mode_line
= 1;
16208 startp
= run_window_scroll_functions (window
, startp
);
16211 if (CHARPOS (startp
) < BEGV
)
16212 SET_TEXT_POS (startp
, BEGV
, BEGV_BYTE
);
16213 else if (CHARPOS (startp
) > ZV
)
16214 SET_TEXT_POS (startp
, ZV
, ZV_BYTE
);
16216 /* Redisplay, then check if cursor has been set during the
16217 redisplay. Give up if new fonts were loaded. */
16218 /* We used to issue a CHECK_MARGINS argument to try_window here,
16219 but this causes scrolling to fail when point begins inside
16220 the scroll margin (bug#148) -- cyd */
16221 if (!try_window (window
, startp
, 0))
16223 w
->force_start
= 1;
16224 clear_glyph_matrix (w
->desired_matrix
);
16225 goto need_larger_matrices
;
16228 if (w
->cursor
.vpos
< 0)
16230 /* If point does not appear, try to move point so it does
16231 appear. The desired matrix has been built above, so we
16232 can use it here. */
16233 new_vpos
= window_box_height (w
) / 2;
16236 if (!cursor_row_fully_visible_p (w
, 0, 0))
16238 /* Point does appear, but on a line partly visible at end of window.
16239 Move it back to a fully-visible line. */
16240 new_vpos
= window_box_height (w
);
16241 /* But if window_box_height suggests a Y coordinate that is
16242 not less than we already have, that line will clearly not
16243 be fully visible, so give up and scroll the display.
16244 This can happen when the default face uses a font whose
16245 dimensions are different from the frame's default
16247 if (new_vpos
>= w
->cursor
.y
)
16249 w
->cursor
.vpos
= -1;
16250 clear_glyph_matrix (w
->desired_matrix
);
16251 goto try_to_scroll
;
16254 else if (w
->cursor
.vpos
>= 0)
16256 /* Some people insist on not letting point enter the scroll
16257 margin, even though this part handles windows that didn't
16259 int window_total_lines
16260 = WINDOW_TOTAL_LINES (w
) * FRAME_LINE_HEIGHT (f
) / frame_line_height
;
16261 int margin
= min (scroll_margin
, window_total_lines
/ 4);
16262 int pixel_margin
= margin
* frame_line_height
;
16263 bool header_line
= WINDOW_WANTS_HEADER_LINE_P (w
);
16265 /* Note: We add an extra FRAME_LINE_HEIGHT, because the loop
16266 below, which finds the row to move point to, advances by
16267 the Y coordinate of the _next_ row, see the definition of
16268 MATRIX_ROW_BOTTOM_Y. */
16269 if (w
->cursor
.vpos
< margin
+ header_line
)
16271 w
->cursor
.vpos
= -1;
16272 clear_glyph_matrix (w
->desired_matrix
);
16273 goto try_to_scroll
;
16277 int window_height
= window_box_height (w
);
16280 window_height
+= CURRENT_HEADER_LINE_HEIGHT (w
);
16281 if (w
->cursor
.y
>= window_height
- pixel_margin
)
16283 w
->cursor
.vpos
= -1;
16284 clear_glyph_matrix (w
->desired_matrix
);
16285 goto try_to_scroll
;
16290 /* If we need to move point for either of the above reasons,
16291 now actually do it. */
16294 struct glyph_row
*row
;
16296 row
= MATRIX_FIRST_TEXT_ROW (w
->desired_matrix
);
16297 while (MATRIX_ROW_BOTTOM_Y (row
) < new_vpos
)
16300 TEMP_SET_PT_BOTH (MATRIX_ROW_START_CHARPOS (row
),
16301 MATRIX_ROW_START_BYTEPOS (row
));
16303 if (w
!= XWINDOW (selected_window
))
16304 set_marker_both (w
->pointm
, Qnil
, PT
, PT_BYTE
);
16305 else if (current_buffer
== old
)
16306 SET_TEXT_POS (lpoint
, PT
, PT_BYTE
);
16308 set_cursor_from_row (w
, row
, w
->desired_matrix
, 0, 0, 0, 0);
16310 /* Re-run pre-redisplay-function so it can update the region
16311 according to the new position of point. */
16312 /* Other than the cursor, w's redisplay is done so we can set its
16313 redisplay to false. Also the buffer's redisplay can be set to
16314 false, since propagate_buffer_redisplay should have already
16315 propagated its info to `w' anyway. */
16316 w
->redisplay
= false;
16317 XBUFFER (w
->contents
)->text
->redisplay
= false;
16318 safe__call1 (true, Vpre_redisplay_function
, Fcons (window
, Qnil
));
16320 if (w
->redisplay
|| XBUFFER (w
->contents
)->text
->redisplay
)
16322 /* pre-redisplay-function made changes (e.g. move the region)
16323 that require another round of redisplay. */
16324 clear_glyph_matrix (w
->desired_matrix
);
16325 if (!try_window (window
, startp
, 0))
16326 goto need_larger_matrices
;
16329 if (w
->cursor
.vpos
< 0 || !cursor_row_fully_visible_p (w
, 0, 0))
16331 clear_glyph_matrix (w
->desired_matrix
);
16332 goto try_to_scroll
;
16336 debug_method_add (w
, "forced window start");
16341 /* Handle case where text has not changed, only point, and it has
16342 not moved off the frame, and we are not retrying after hscroll.
16343 (current_matrix_up_to_date_p is nonzero when retrying.) */
16344 if (current_matrix_up_to_date_p
16345 && (rc
= try_cursor_movement (window
, startp
, &temp_scroll_step
),
16346 rc
!= CURSOR_MOVEMENT_CANNOT_BE_USED
))
16350 case CURSOR_MOVEMENT_SUCCESS
:
16351 used_current_matrix_p
= 1;
16354 case CURSOR_MOVEMENT_MUST_SCROLL
:
16355 goto try_to_scroll
;
16361 /* If current starting point was originally the beginning of a line
16362 but no longer is, find a new starting point. */
16363 else if (w
->start_at_line_beg
16364 && !(CHARPOS (startp
) <= BEGV
16365 || FETCH_BYTE (BYTEPOS (startp
) - 1) == '\n'))
16368 debug_method_add (w
, "recenter 1");
16373 /* Try scrolling with try_window_id. Value is > 0 if update has
16374 been done, it is -1 if we know that the same window start will
16375 not work. It is 0 if unsuccessful for some other reason. */
16376 else if ((tem
= try_window_id (w
)) != 0)
16379 debug_method_add (w
, "try_window_id %d", tem
);
16382 if (f
->fonts_changed
)
16383 goto need_larger_matrices
;
16387 /* Otherwise try_window_id has returned -1 which means that we
16388 don't want the alternative below this comment to execute. */
16390 else if (CHARPOS (startp
) >= BEGV
16391 && CHARPOS (startp
) <= ZV
16392 && PT
>= CHARPOS (startp
)
16393 && (CHARPOS (startp
) < ZV
16394 /* Avoid starting at end of buffer. */
16395 || CHARPOS (startp
) == BEGV
16396 || !window_outdated (w
)))
16398 int d1
, d2
, d5
, d6
;
16401 /* If first window line is a continuation line, and window start
16402 is inside the modified region, but the first change is before
16403 current window start, we must select a new window start.
16405 However, if this is the result of a down-mouse event (e.g. by
16406 extending the mouse-drag-overlay), we don't want to select a
16407 new window start, since that would change the position under
16408 the mouse, resulting in an unwanted mouse-movement rather
16409 than a simple mouse-click. */
16410 if (!w
->start_at_line_beg
16411 && NILP (do_mouse_tracking
)
16412 && CHARPOS (startp
) > BEGV
16413 && CHARPOS (startp
) > BEG
+ beg_unchanged
16414 && CHARPOS (startp
) <= Z
- end_unchanged
16415 /* Even if w->start_at_line_beg is nil, a new window may
16416 start at a line_beg, since that's how set_buffer_window
16417 sets it. So, we need to check the return value of
16418 compute_window_start_on_continuation_line. (See also
16420 && XMARKER (w
->start
)->buffer
== current_buffer
16421 && compute_window_start_on_continuation_line (w
)
16422 /* It doesn't make sense to force the window start like we
16423 do at label force_start if it is already known that point
16424 will not be fully visible in the resulting window, because
16425 doing so will move point from its correct position
16426 instead of scrolling the window to bring point into view.
16428 && pos_visible_p (w
, PT
, &d1
, &d2
, &rtop
, &rbot
, &d5
, &d6
)
16429 /* A very tall row could need more than the window height,
16430 in which case we accept that it is partially visible. */
16431 && (rtop
!= 0) == (rbot
!= 0))
16433 w
->force_start
= 1;
16434 SET_TEXT_POS_FROM_MARKER (startp
, w
->start
);
16436 debug_method_add (w
, "recomputed window start in continuation line");
16442 debug_method_add (w
, "same window start");
16445 /* Try to redisplay starting at same place as before.
16446 If point has not moved off frame, accept the results. */
16447 if (!current_matrix_up_to_date_p
16448 /* Don't use try_window_reusing_current_matrix in this case
16449 because a window scroll function can have changed the
16451 || !NILP (Vwindow_scroll_functions
)
16452 || MINI_WINDOW_P (w
)
16453 || !(used_current_matrix_p
16454 = try_window_reusing_current_matrix (w
)))
16456 IF_DEBUG (debug_method_add (w
, "1"));
16457 if (try_window (window
, startp
, TRY_WINDOW_CHECK_MARGINS
) < 0)
16458 /* -1 means we need to scroll.
16459 0 means we need new matrices, but fonts_changed
16460 is set in that case, so we will detect it below. */
16461 goto try_to_scroll
;
16464 if (f
->fonts_changed
)
16465 goto need_larger_matrices
;
16467 if (w
->cursor
.vpos
>= 0)
16469 if (!just_this_one_p
16470 || current_buffer
->clip_changed
16471 || BEG_UNCHANGED
< CHARPOS (startp
))
16472 /* Forget any recorded base line for line number display. */
16473 w
->base_line_number
= 0;
16475 if (!cursor_row_fully_visible_p (w
, 1, 0))
16477 clear_glyph_matrix (w
->desired_matrix
);
16478 last_line_misfit
= 1;
16480 /* Drop through and scroll. */
16485 clear_glyph_matrix (w
->desired_matrix
);
16490 /* Redisplay the mode line. Select the buffer properly for that. */
16491 if (!update_mode_line
)
16493 update_mode_line
= 1;
16494 w
->update_mode_line
= 1;
16497 /* Try to scroll by specified few lines. */
16498 if ((scroll_conservatively
16499 || emacs_scroll_step
16500 || temp_scroll_step
16501 || NUMBERP (BVAR (current_buffer
, scroll_up_aggressively
))
16502 || NUMBERP (BVAR (current_buffer
, scroll_down_aggressively
)))
16503 && CHARPOS (startp
) >= BEGV
16504 && CHARPOS (startp
) <= ZV
)
16506 /* The function returns -1 if new fonts were loaded, 1 if
16507 successful, 0 if not successful. */
16508 int ss
= try_scrolling (window
, just_this_one_p
,
16509 scroll_conservatively
,
16511 temp_scroll_step
, last_line_misfit
);
16514 case SCROLLING_SUCCESS
:
16517 case SCROLLING_NEED_LARGER_MATRICES
:
16518 goto need_larger_matrices
;
16520 case SCROLLING_FAILED
:
16528 /* Finally, just choose a place to start which positions point
16529 according to user preferences. */
16534 debug_method_add (w
, "recenter");
16537 /* Forget any previously recorded base line for line number display. */
16538 if (!buffer_unchanged_p
)
16539 w
->base_line_number
= 0;
16541 /* Determine the window start relative to point. */
16542 init_iterator (&it
, w
, PT
, PT_BYTE
, NULL
, DEFAULT_FACE_ID
);
16543 it
.current_y
= it
.last_visible_y
;
16544 if (centering_position
< 0)
16546 int window_total_lines
16547 = WINDOW_TOTAL_LINES (w
) * FRAME_LINE_HEIGHT (f
) / frame_line_height
;
16549 = scroll_margin
> 0
16550 ? min (scroll_margin
, window_total_lines
/ 4)
16552 ptrdiff_t margin_pos
= CHARPOS (startp
);
16553 Lisp_Object aggressive
;
16556 /* If there is a scroll margin at the top of the window, find
16557 its character position. */
16559 /* Cannot call start_display if startp is not in the
16560 accessible region of the buffer. This can happen when we
16561 have just switched to a different buffer and/or changed
16562 its restriction. In that case, startp is initialized to
16563 the character position 1 (BEGV) because we did not yet
16564 have chance to display the buffer even once. */
16565 && BEGV
<= CHARPOS (startp
) && CHARPOS (startp
) <= ZV
)
16568 void *it1data
= NULL
;
16570 SAVE_IT (it1
, it
, it1data
);
16571 start_display (&it1
, w
, startp
);
16572 move_it_vertically (&it1
, margin
* frame_line_height
);
16573 margin_pos
= IT_CHARPOS (it1
);
16574 RESTORE_IT (&it
, &it
, it1data
);
16576 scrolling_up
= PT
> margin_pos
;
16579 ? BVAR (current_buffer
, scroll_up_aggressively
)
16580 : BVAR (current_buffer
, scroll_down_aggressively
);
16582 if (!MINI_WINDOW_P (w
)
16583 && (scroll_conservatively
> SCROLL_LIMIT
|| NUMBERP (aggressive
)))
16587 /* Setting scroll-conservatively overrides
16588 scroll-*-aggressively. */
16589 if (!scroll_conservatively
&& NUMBERP (aggressive
))
16591 double float_amount
= XFLOATINT (aggressive
);
16593 pt_offset
= float_amount
* WINDOW_BOX_TEXT_HEIGHT (w
);
16594 if (pt_offset
== 0 && float_amount
> 0)
16596 if (pt_offset
&& margin
> 0)
16599 /* Compute how much to move the window start backward from
16600 point so that point will be displayed where the user
16604 centering_position
= it
.last_visible_y
;
16606 centering_position
-= pt_offset
;
16607 centering_position
-=
16608 frame_line_height
* (1 + margin
+ (last_line_misfit
!= 0))
16609 + WINDOW_HEADER_LINE_HEIGHT (w
);
16610 /* Don't let point enter the scroll margin near top of
16612 if (centering_position
< margin
* frame_line_height
)
16613 centering_position
= margin
* frame_line_height
;
16616 centering_position
= margin
* frame_line_height
+ pt_offset
;
16619 /* Set the window start half the height of the window backward
16621 centering_position
= window_box_height (w
) / 2;
16623 move_it_vertically_backward (&it
, centering_position
);
16625 eassert (IT_CHARPOS (it
) >= BEGV
);
16627 /* The function move_it_vertically_backward may move over more
16628 than the specified y-distance. If it->w is small, e.g. a
16629 mini-buffer window, we may end up in front of the window's
16630 display area. Start displaying at the start of the line
16631 containing PT in this case. */
16632 if (it
.current_y
<= 0)
16634 init_iterator (&it
, w
, PT
, PT_BYTE
, NULL
, DEFAULT_FACE_ID
);
16635 move_it_vertically_backward (&it
, 0);
16639 it
.current_x
= it
.hpos
= 0;
16641 /* Set the window start position here explicitly, to avoid an
16642 infinite loop in case the functions in window-scroll-functions
16644 set_marker_both (w
->start
, Qnil
, IT_CHARPOS (it
), IT_BYTEPOS (it
));
16646 /* Run scroll hooks. */
16647 startp
= run_window_scroll_functions (window
, it
.current
.pos
);
16649 /* Redisplay the window. */
16650 if (!current_matrix_up_to_date_p
16651 || windows_or_buffers_changed
16652 || f
->cursor_type_changed
16653 /* Don't use try_window_reusing_current_matrix in this case
16654 because it can have changed the buffer. */
16655 || !NILP (Vwindow_scroll_functions
)
16656 || !just_this_one_p
16657 || MINI_WINDOW_P (w
)
16658 || !(used_current_matrix_p
16659 = try_window_reusing_current_matrix (w
)))
16660 try_window (window
, startp
, 0);
16662 /* If new fonts have been loaded (due to fontsets), give up. We
16663 have to start a new redisplay since we need to re-adjust glyph
16665 if (f
->fonts_changed
)
16666 goto need_larger_matrices
;
16668 /* If cursor did not appear assume that the middle of the window is
16669 in the first line of the window. Do it again with the next line.
16670 (Imagine a window of height 100, displaying two lines of height
16671 60. Moving back 50 from it->last_visible_y will end in the first
16673 if (w
->cursor
.vpos
< 0)
16675 if (w
->window_end_valid
&& PT
>= Z
- w
->window_end_pos
)
16677 clear_glyph_matrix (w
->desired_matrix
);
16678 move_it_by_lines (&it
, 1);
16679 try_window (window
, it
.current
.pos
, 0);
16681 else if (PT
< IT_CHARPOS (it
))
16683 clear_glyph_matrix (w
->desired_matrix
);
16684 move_it_by_lines (&it
, -1);
16685 try_window (window
, it
.current
.pos
, 0);
16689 /* Not much we can do about it. */
16693 /* Consider the following case: Window starts at BEGV, there is
16694 invisible, intangible text at BEGV, so that display starts at
16695 some point START > BEGV. It can happen that we are called with
16696 PT somewhere between BEGV and START. Try to handle that case,
16697 and similar ones. */
16698 if (w
->cursor
.vpos
< 0)
16700 /* First, try locating the proper glyph row for PT. */
16701 struct glyph_row
*row
=
16702 row_containing_pos (w
, PT
, w
->current_matrix
->rows
, NULL
, 0);
16704 /* Sometimes point is at the beginning of invisible text that is
16705 before the 1st character displayed in the row. In that case,
16706 row_containing_pos fails to find the row, because no glyphs
16707 with appropriate buffer positions are present in the row.
16708 Therefore, we next try to find the row which shows the 1st
16709 position after the invisible text. */
16713 get_char_property_and_overlay (make_number (PT
), Qinvisible
,
16716 if (TEXT_PROP_MEANS_INVISIBLE (val
))
16719 Lisp_Object invis_end
=
16720 Fnext_single_char_property_change (make_number (PT
), Qinvisible
,
16723 if (NATNUMP (invis_end
))
16724 alt_pos
= XFASTINT (invis_end
);
16727 row
= row_containing_pos (w
, alt_pos
, w
->current_matrix
->rows
,
16731 /* Finally, fall back on the first row of the window after the
16732 header line (if any). This is slightly better than not
16733 displaying the cursor at all. */
16736 row
= w
->current_matrix
->rows
;
16737 if (row
->mode_line_p
)
16740 set_cursor_from_row (w
, row
, w
->current_matrix
, 0, 0, 0, 0);
16743 if (!cursor_row_fully_visible_p (w
, 0, 0))
16745 /* If vscroll is enabled, disable it and try again. */
16749 clear_glyph_matrix (w
->desired_matrix
);
16753 /* Users who set scroll-conservatively to a large number want
16754 point just above/below the scroll margin. If we ended up
16755 with point's row partially visible, move the window start to
16756 make that row fully visible and out of the margin. */
16757 if (scroll_conservatively
> SCROLL_LIMIT
)
16759 int window_total_lines
16760 = WINDOW_TOTAL_LINES (w
) * FRAME_LINE_HEIGHT (f
) * frame_line_height
;
16763 ? min (scroll_margin
, window_total_lines
/ 4)
16765 int move_down
= w
->cursor
.vpos
>= window_total_lines
/ 2;
16767 move_it_by_lines (&it
, move_down
? margin
+ 1 : -(margin
+ 1));
16768 clear_glyph_matrix (w
->desired_matrix
);
16769 if (1 == try_window (window
, it
.current
.pos
,
16770 TRY_WINDOW_CHECK_MARGINS
))
16774 /* If centering point failed to make the whole line visible,
16775 put point at the top instead. That has to make the whole line
16776 visible, if it can be done. */
16777 if (centering_position
== 0)
16780 clear_glyph_matrix (w
->desired_matrix
);
16781 centering_position
= 0;
16787 SET_TEXT_POS_FROM_MARKER (startp
, w
->start
);
16788 w
->start_at_line_beg
= (CHARPOS (startp
) == BEGV
16789 || FETCH_BYTE (BYTEPOS (startp
) - 1) == '\n');
16791 /* Display the mode line, if we must. */
16792 if ((update_mode_line
16793 /* If window not full width, must redo its mode line
16794 if (a) the window to its side is being redone and
16795 (b) we do a frame-based redisplay. This is a consequence
16796 of how inverted lines are drawn in frame-based redisplay. */
16797 || (!just_this_one_p
16798 && !FRAME_WINDOW_P (f
)
16799 && !WINDOW_FULL_WIDTH_P (w
))
16800 /* Line number to display. */
16801 || w
->base_line_pos
> 0
16802 /* Column number is displayed and different from the one displayed. */
16803 || (w
->column_number_displayed
!= -1
16804 && (w
->column_number_displayed
!= current_column ())))
16805 /* This means that the window has a mode line. */
16806 && (WINDOW_WANTS_MODELINE_P (w
)
16807 || WINDOW_WANTS_HEADER_LINE_P (w
)))
16810 display_mode_lines (w
);
16812 /* If mode line height has changed, arrange for a thorough
16813 immediate redisplay using the correct mode line height. */
16814 if (WINDOW_WANTS_MODELINE_P (w
)
16815 && CURRENT_MODE_LINE_HEIGHT (w
) != DESIRED_MODE_LINE_HEIGHT (w
))
16817 f
->fonts_changed
= 1;
16818 w
->mode_line_height
= -1;
16819 MATRIX_MODE_LINE_ROW (w
->current_matrix
)->height
16820 = DESIRED_MODE_LINE_HEIGHT (w
);
16823 /* If header line height has changed, arrange for a thorough
16824 immediate redisplay using the correct header line height. */
16825 if (WINDOW_WANTS_HEADER_LINE_P (w
)
16826 && CURRENT_HEADER_LINE_HEIGHT (w
) != DESIRED_HEADER_LINE_HEIGHT (w
))
16828 f
->fonts_changed
= 1;
16829 w
->header_line_height
= -1;
16830 MATRIX_HEADER_LINE_ROW (w
->current_matrix
)->height
16831 = DESIRED_HEADER_LINE_HEIGHT (w
);
16834 if (f
->fonts_changed
)
16835 goto need_larger_matrices
;
16838 if (!line_number_displayed
&& w
->base_line_pos
!= -1)
16840 w
->base_line_pos
= 0;
16841 w
->base_line_number
= 0;
16846 /* When we reach a frame's selected window, redo the frame's menu bar. */
16847 if (update_mode_line
16848 && EQ (FRAME_SELECTED_WINDOW (f
), window
))
16850 int redisplay_menu_p
= 0;
16852 if (FRAME_WINDOW_P (f
))
16854 #if defined (USE_X_TOOLKIT) || defined (HAVE_NTGUI) \
16855 || defined (HAVE_NS) || defined (USE_GTK)
16856 redisplay_menu_p
= FRAME_EXTERNAL_MENU_BAR (f
);
16858 redisplay_menu_p
= FRAME_MENU_BAR_LINES (f
) > 0;
16862 redisplay_menu_p
= FRAME_MENU_BAR_LINES (f
) > 0;
16864 if (redisplay_menu_p
)
16865 display_menu_bar (w
);
16867 #ifdef HAVE_WINDOW_SYSTEM
16868 if (FRAME_WINDOW_P (f
))
16870 #if defined (USE_GTK) || defined (HAVE_NS)
16871 if (FRAME_EXTERNAL_TOOL_BAR (f
))
16872 redisplay_tool_bar (f
);
16874 if (WINDOWP (f
->tool_bar_window
)
16875 && (FRAME_TOOL_BAR_LINES (f
) > 0
16876 || !NILP (Vauto_resize_tool_bars
))
16877 && redisplay_tool_bar (f
))
16878 ignore_mouse_drag_p
= 1;
16884 #ifdef HAVE_WINDOW_SYSTEM
16885 if (FRAME_WINDOW_P (f
)
16886 && update_window_fringes (w
, (just_this_one_p
16887 || (!used_current_matrix_p
&& !overlay_arrow_seen
)
16888 || w
->pseudo_window_p
)))
16892 if (draw_window_fringes (w
, 1))
16894 if (WINDOW_RIGHT_DIVIDER_WIDTH (w
))
16895 x_draw_right_divider (w
);
16897 x_draw_vertical_border (w
);
16903 if (WINDOW_BOTTOM_DIVIDER_WIDTH (w
))
16904 x_draw_bottom_divider (w
);
16905 #endif /* HAVE_WINDOW_SYSTEM */
16907 /* We go to this label, with fonts_changed set, if it is
16908 necessary to try again using larger glyph matrices.
16909 We have to redeem the scroll bar even in this case,
16910 because the loop in redisplay_internal expects that. */
16911 need_larger_matrices
:
16913 finish_scroll_bars
:
16915 if (WINDOW_HAS_VERTICAL_SCROLL_BAR (w
) || WINDOW_HAS_HORIZONTAL_SCROLL_BAR (w
))
16917 if (WINDOW_HAS_VERTICAL_SCROLL_BAR (w
))
16918 /* Set the thumb's position and size. */
16919 set_vertical_scroll_bar (w
);
16921 if (WINDOW_HAS_HORIZONTAL_SCROLL_BAR (w
))
16922 /* Set the thumb's position and size. */
16923 set_horizontal_scroll_bar (w
);
16925 /* Note that we actually used the scroll bar attached to this
16926 window, so it shouldn't be deleted at the end of redisplay. */
16927 if (FRAME_TERMINAL (f
)->redeem_scroll_bar_hook
)
16928 (*FRAME_TERMINAL (f
)->redeem_scroll_bar_hook
) (w
);
16931 /* Restore current_buffer and value of point in it. The window
16932 update may have changed the buffer, so first make sure `opoint'
16933 is still valid (Bug#6177). */
16934 if (CHARPOS (opoint
) < BEGV
)
16935 TEMP_SET_PT_BOTH (BEGV
, BEGV_BYTE
);
16936 else if (CHARPOS (opoint
) > ZV
)
16937 TEMP_SET_PT_BOTH (Z
, Z_BYTE
);
16939 TEMP_SET_PT_BOTH (CHARPOS (opoint
), BYTEPOS (opoint
));
16941 set_buffer_internal_1 (old
);
16942 /* Avoid an abort in TEMP_SET_PT_BOTH if the buffer has become
16943 shorter. This can be caused by log truncation in *Messages*. */
16944 if (CHARPOS (lpoint
) <= ZV
)
16945 TEMP_SET_PT_BOTH (CHARPOS (lpoint
), BYTEPOS (lpoint
));
16947 unbind_to (count
, Qnil
);
16951 /* Build the complete desired matrix of WINDOW with a window start
16952 buffer position POS.
16954 Value is 1 if successful. It is zero if fonts were loaded during
16955 redisplay which makes re-adjusting glyph matrices necessary, and -1
16956 if point would appear in the scroll margins.
16957 (We check the former only if TRY_WINDOW_IGNORE_FONTS_CHANGE is
16958 unset in FLAGS, and the latter only if TRY_WINDOW_CHECK_MARGINS is
16962 try_window (Lisp_Object window
, struct text_pos pos
, int flags
)
16964 struct window
*w
= XWINDOW (window
);
16966 struct glyph_row
*last_text_row
= NULL
;
16967 struct frame
*f
= XFRAME (w
->frame
);
16968 int frame_line_height
= default_line_pixel_height (w
);
16970 /* Make POS the new window start. */
16971 set_marker_both (w
->start
, Qnil
, CHARPOS (pos
), BYTEPOS (pos
));
16973 /* Mark cursor position as unknown. No overlay arrow seen. */
16974 w
->cursor
.vpos
= -1;
16975 overlay_arrow_seen
= 0;
16977 /* Initialize iterator and info to start at POS. */
16978 start_display (&it
, w
, pos
);
16979 it
.glyph_row
->reversed_p
= false;
16981 /* Display all lines of W. */
16982 while (it
.current_y
< it
.last_visible_y
)
16984 if (display_line (&it
))
16985 last_text_row
= it
.glyph_row
- 1;
16986 if (f
->fonts_changed
&& !(flags
& TRY_WINDOW_IGNORE_FONTS_CHANGE
))
16990 /* Don't let the cursor end in the scroll margins. */
16991 if ((flags
& TRY_WINDOW_CHECK_MARGINS
)
16992 && !MINI_WINDOW_P (w
))
16994 int this_scroll_margin
;
16995 int window_total_lines
16996 = WINDOW_TOTAL_LINES (w
) * FRAME_LINE_HEIGHT (f
) / frame_line_height
;
16998 if (scroll_margin
> 0)
17000 this_scroll_margin
= min (scroll_margin
, window_total_lines
/ 4);
17001 this_scroll_margin
*= frame_line_height
;
17004 this_scroll_margin
= 0;
17006 if ((w
->cursor
.y
>= 0 /* not vscrolled */
17007 && w
->cursor
.y
< this_scroll_margin
17008 && CHARPOS (pos
) > BEGV
17009 && IT_CHARPOS (it
) < ZV
)
17010 /* rms: considering make_cursor_line_fully_visible_p here
17011 seems to give wrong results. We don't want to recenter
17012 when the last line is partly visible, we want to allow
17013 that case to be handled in the usual way. */
17014 || w
->cursor
.y
> it
.last_visible_y
- this_scroll_margin
- 1)
17016 w
->cursor
.vpos
= -1;
17017 clear_glyph_matrix (w
->desired_matrix
);
17022 /* If bottom moved off end of frame, change mode line percentage. */
17023 if (w
->window_end_pos
<= 0 && Z
!= IT_CHARPOS (it
))
17024 w
->update_mode_line
= 1;
17026 /* Set window_end_pos to the offset of the last character displayed
17027 on the window from the end of current_buffer. Set
17028 window_end_vpos to its row number. */
17031 eassert (MATRIX_ROW_DISPLAYS_TEXT_P (last_text_row
));
17032 adjust_window_ends (w
, last_text_row
, 0);
17034 (MATRIX_ROW_DISPLAYS_TEXT_P (MATRIX_ROW (w
->desired_matrix
,
17035 w
->window_end_vpos
)));
17039 w
->window_end_bytepos
= Z_BYTE
- ZV_BYTE
;
17040 w
->window_end_pos
= Z
- ZV
;
17041 w
->window_end_vpos
= 0;
17044 /* But that is not valid info until redisplay finishes. */
17045 w
->window_end_valid
= 0;
17051 /************************************************************************
17052 Window redisplay reusing current matrix when buffer has not changed
17053 ************************************************************************/
17055 /* Try redisplay of window W showing an unchanged buffer with a
17056 different window start than the last time it was displayed by
17057 reusing its current matrix. Value is non-zero if successful.
17058 W->start is the new window start. */
17061 try_window_reusing_current_matrix (struct window
*w
)
17063 struct frame
*f
= XFRAME (w
->frame
);
17064 struct glyph_row
*bottom_row
;
17067 struct text_pos start
, new_start
;
17068 int nrows_scrolled
, i
;
17069 struct glyph_row
*last_text_row
;
17070 struct glyph_row
*last_reused_text_row
;
17071 struct glyph_row
*start_row
;
17072 int start_vpos
, min_y
, max_y
;
17075 if (inhibit_try_window_reusing
)
17079 #ifdef HAVE_XWIDGETS_xxx
17080 //currently this is needed to detect xwidget movement reliably. or probably not.
17081 printf("try_window_reusing_current_matrix\n");
17086 if (/* This function doesn't handle terminal frames. */
17087 !FRAME_WINDOW_P (f
)
17088 /* Don't try to reuse the display if windows have been split
17090 || windows_or_buffers_changed
17091 || f
->cursor_type_changed
)
17094 /* Can't do this if showing trailing whitespace. */
17095 if (!NILP (Vshow_trailing_whitespace
))
17098 /* If top-line visibility has changed, give up. */
17099 if (WINDOW_WANTS_HEADER_LINE_P (w
)
17100 != MATRIX_HEADER_LINE_ROW (w
->current_matrix
)->mode_line_p
)
17103 /* Give up if old or new display is scrolled vertically. We could
17104 make this function handle this, but right now it doesn't. */
17105 start_row
= MATRIX_FIRST_TEXT_ROW (w
->current_matrix
);
17106 if (w
->vscroll
|| MATRIX_ROW_PARTIALLY_VISIBLE_P (w
, start_row
))
17109 /* The variable new_start now holds the new window start. The old
17110 start `start' can be determined from the current matrix. */
17111 SET_TEXT_POS_FROM_MARKER (new_start
, w
->start
);
17112 start
= start_row
->minpos
;
17113 start_vpos
= MATRIX_ROW_VPOS (start_row
, w
->current_matrix
);
17115 /* Clear the desired matrix for the display below. */
17116 clear_glyph_matrix (w
->desired_matrix
);
17118 if (CHARPOS (new_start
) <= CHARPOS (start
))
17120 /* Don't use this method if the display starts with an ellipsis
17121 displayed for invisible text. It's not easy to handle that case
17122 below, and it's certainly not worth the effort since this is
17123 not a frequent case. */
17124 if (in_ellipses_for_invisible_text_p (&start_row
->start
, w
))
17127 IF_DEBUG (debug_method_add (w
, "twu1"));
17129 /* Display up to a row that can be reused. The variable
17130 last_text_row is set to the last row displayed that displays
17131 text. Note that it.vpos == 0 if or if not there is a
17132 header-line; it's not the same as the MATRIX_ROW_VPOS! */
17133 start_display (&it
, w
, new_start
);
17134 w
->cursor
.vpos
= -1;
17135 last_text_row
= last_reused_text_row
= NULL
;
17137 while (it
.current_y
< it
.last_visible_y
&& !f
->fonts_changed
)
17139 /* If we have reached into the characters in the START row,
17140 that means the line boundaries have changed. So we
17141 can't start copying with the row START. Maybe it will
17142 work to start copying with the following row. */
17143 while (IT_CHARPOS (it
) > CHARPOS (start
))
17145 /* Advance to the next row as the "start". */
17147 start
= start_row
->minpos
;
17148 /* If there are no more rows to try, or just one, give up. */
17149 if (start_row
== MATRIX_MODE_LINE_ROW (w
->current_matrix
) - 1
17150 || w
->vscroll
|| MATRIX_ROW_PARTIALLY_VISIBLE_P (w
, start_row
)
17151 || CHARPOS (start
) == ZV
)
17153 clear_glyph_matrix (w
->desired_matrix
);
17157 start_vpos
= MATRIX_ROW_VPOS (start_row
, w
->current_matrix
);
17159 /* If we have reached alignment, we can copy the rest of the
17161 if (IT_CHARPOS (it
) == CHARPOS (start
)
17162 /* Don't accept "alignment" inside a display vector,
17163 since start_row could have started in the middle of
17164 that same display vector (thus their character
17165 positions match), and we have no way of telling if
17166 that is the case. */
17167 && it
.current
.dpvec_index
< 0)
17170 it
.glyph_row
->reversed_p
= false;
17171 if (display_line (&it
))
17172 last_text_row
= it
.glyph_row
- 1;
17176 /* A value of current_y < last_visible_y means that we stopped
17177 at the previous window start, which in turn means that we
17178 have at least one reusable row. */
17179 if (it
.current_y
< it
.last_visible_y
)
17181 struct glyph_row
*row
;
17183 /* IT.vpos always starts from 0; it counts text lines. */
17184 nrows_scrolled
= it
.vpos
- (start_row
- MATRIX_FIRST_TEXT_ROW (w
->current_matrix
));
17186 /* Find PT if not already found in the lines displayed. */
17187 if (w
->cursor
.vpos
< 0)
17189 int dy
= it
.current_y
- start_row
->y
;
17191 row
= MATRIX_FIRST_TEXT_ROW (w
->current_matrix
);
17192 row
= row_containing_pos (w
, PT
, row
, NULL
, dy
);
17194 set_cursor_from_row (w
, row
, w
->current_matrix
, 0, 0,
17195 dy
, nrows_scrolled
);
17198 clear_glyph_matrix (w
->desired_matrix
);
17203 /* Scroll the display. Do it before the current matrix is
17204 changed. The problem here is that update has not yet
17205 run, i.e. part of the current matrix is not up to date.
17206 scroll_run_hook will clear the cursor, and use the
17207 current matrix to get the height of the row the cursor is
17209 run
.current_y
= start_row
->y
;
17210 run
.desired_y
= it
.current_y
;
17211 run
.height
= it
.last_visible_y
- it
.current_y
;
17213 if (run
.height
> 0 && run
.current_y
!= run
.desired_y
)
17216 FRAME_RIF (f
)->update_window_begin_hook (w
);
17217 FRAME_RIF (f
)->clear_window_mouse_face (w
);
17218 FRAME_RIF (f
)->scroll_run_hook (w
, &run
);
17219 FRAME_RIF (f
)->update_window_end_hook (w
, 0, 0);
17223 /* Shift current matrix down by nrows_scrolled lines. */
17224 bottom_row
= MATRIX_BOTTOM_TEXT_ROW (w
->current_matrix
, w
);
17225 rotate_matrix (w
->current_matrix
,
17227 MATRIX_ROW_VPOS (bottom_row
, w
->current_matrix
),
17230 /* Disable lines that must be updated. */
17231 for (i
= 0; i
< nrows_scrolled
; ++i
)
17232 (start_row
+ i
)->enabled_p
= false;
17234 /* Re-compute Y positions. */
17235 min_y
= WINDOW_HEADER_LINE_HEIGHT (w
);
17236 max_y
= it
.last_visible_y
;
17237 for (row
= start_row
+ nrows_scrolled
;
17241 row
->y
= it
.current_y
;
17242 row
->visible_height
= row
->height
;
17244 if (row
->y
< min_y
)
17245 row
->visible_height
-= min_y
- row
->y
;
17246 if (row
->y
+ row
->height
> max_y
)
17247 row
->visible_height
-= row
->y
+ row
->height
- max_y
;
17248 if (row
->fringe_bitmap_periodic_p
)
17249 row
->redraw_fringe_bitmaps_p
= 1;
17251 it
.current_y
+= row
->height
;
17253 if (MATRIX_ROW_DISPLAYS_TEXT_P (row
))
17254 last_reused_text_row
= row
;
17255 if (MATRIX_ROW_BOTTOM_Y (row
) >= it
.last_visible_y
)
17259 /* Disable lines in the current matrix which are now
17260 below the window. */
17261 for (++row
; row
< bottom_row
; ++row
)
17262 row
->enabled_p
= row
->mode_line_p
= 0;
17265 /* Update window_end_pos etc.; last_reused_text_row is the last
17266 reused row from the current matrix containing text, if any.
17267 The value of last_text_row is the last displayed line
17268 containing text. */
17269 if (last_reused_text_row
)
17270 adjust_window_ends (w
, last_reused_text_row
, 1);
17271 else if (last_text_row
)
17272 adjust_window_ends (w
, last_text_row
, 0);
17275 /* This window must be completely empty. */
17276 w
->window_end_bytepos
= Z_BYTE
- ZV_BYTE
;
17277 w
->window_end_pos
= Z
- ZV
;
17278 w
->window_end_vpos
= 0;
17280 w
->window_end_valid
= 0;
17282 /* Update hint: don't try scrolling again in update_window. */
17283 w
->desired_matrix
->no_scrolling_p
= 1;
17286 debug_method_add (w
, "try_window_reusing_current_matrix 1");
17290 else if (CHARPOS (new_start
) > CHARPOS (start
))
17292 struct glyph_row
*pt_row
, *row
;
17293 struct glyph_row
*first_reusable_row
;
17294 struct glyph_row
*first_row_to_display
;
17296 int yb
= window_text_bottom_y (w
);
17298 /* Find the row starting at new_start, if there is one. Don't
17299 reuse a partially visible line at the end. */
17300 first_reusable_row
= start_row
;
17301 while (first_reusable_row
->enabled_p
17302 && MATRIX_ROW_BOTTOM_Y (first_reusable_row
) < yb
17303 && (MATRIX_ROW_START_CHARPOS (first_reusable_row
)
17304 < CHARPOS (new_start
)))
17305 ++first_reusable_row
;
17307 /* Give up if there is no row to reuse. */
17308 if (MATRIX_ROW_BOTTOM_Y (first_reusable_row
) >= yb
17309 || !first_reusable_row
->enabled_p
17310 || (MATRIX_ROW_START_CHARPOS (first_reusable_row
)
17311 != CHARPOS (new_start
)))
17314 /* We can reuse fully visible rows beginning with
17315 first_reusable_row to the end of the window. Set
17316 first_row_to_display to the first row that cannot be reused.
17317 Set pt_row to the row containing point, if there is any. */
17319 for (first_row_to_display
= first_reusable_row
;
17320 MATRIX_ROW_BOTTOM_Y (first_row_to_display
) < yb
;
17321 ++first_row_to_display
)
17323 if (PT
>= MATRIX_ROW_START_CHARPOS (first_row_to_display
)
17324 && (PT
< MATRIX_ROW_END_CHARPOS (first_row_to_display
)
17325 || (PT
== MATRIX_ROW_END_CHARPOS (first_row_to_display
)
17326 && first_row_to_display
->ends_at_zv_p
17327 && pt_row
== NULL
)))
17328 pt_row
= first_row_to_display
;
17331 /* Start displaying at the start of first_row_to_display. */
17332 eassert (first_row_to_display
->y
< yb
);
17333 init_to_row_start (&it
, w
, first_row_to_display
);
17335 nrows_scrolled
= (MATRIX_ROW_VPOS (first_reusable_row
, w
->current_matrix
)
17337 it
.vpos
= (MATRIX_ROW_VPOS (first_row_to_display
, w
->current_matrix
)
17339 it
.current_y
= (first_row_to_display
->y
- first_reusable_row
->y
17340 + WINDOW_HEADER_LINE_HEIGHT (w
));
17342 /* Display lines beginning with first_row_to_display in the
17343 desired matrix. Set last_text_row to the last row displayed
17344 that displays text. */
17345 it
.glyph_row
= MATRIX_ROW (w
->desired_matrix
, it
.vpos
);
17346 if (pt_row
== NULL
)
17347 w
->cursor
.vpos
= -1;
17348 last_text_row
= NULL
;
17349 while (it
.current_y
< it
.last_visible_y
&& !f
->fonts_changed
)
17350 if (display_line (&it
))
17351 last_text_row
= it
.glyph_row
- 1;
17353 /* If point is in a reused row, adjust y and vpos of the cursor
17357 w
->cursor
.vpos
-= nrows_scrolled
;
17358 w
->cursor
.y
-= first_reusable_row
->y
- start_row
->y
;
17361 /* Give up if point isn't in a row displayed or reused. (This
17362 also handles the case where w->cursor.vpos < nrows_scrolled
17363 after the calls to display_line, which can happen with scroll
17364 margins. See bug#1295.) */
17365 if (w
->cursor
.vpos
< 0)
17367 clear_glyph_matrix (w
->desired_matrix
);
17371 /* Scroll the display. */
17372 run
.current_y
= first_reusable_row
->y
;
17373 run
.desired_y
= WINDOW_HEADER_LINE_HEIGHT (w
);
17374 run
.height
= it
.last_visible_y
- run
.current_y
;
17375 dy
= run
.current_y
- run
.desired_y
;
17380 FRAME_RIF (f
)->update_window_begin_hook (w
);
17381 FRAME_RIF (f
)->clear_window_mouse_face (w
);
17382 FRAME_RIF (f
)->scroll_run_hook (w
, &run
);
17383 FRAME_RIF (f
)->update_window_end_hook (w
, 0, 0);
17387 /* Adjust Y positions of reused rows. */
17388 bottom_row
= MATRIX_BOTTOM_TEXT_ROW (w
->current_matrix
, w
);
17389 min_y
= WINDOW_HEADER_LINE_HEIGHT (w
);
17390 max_y
= it
.last_visible_y
;
17391 for (row
= first_reusable_row
; row
< first_row_to_display
; ++row
)
17394 row
->visible_height
= row
->height
;
17395 if (row
->y
< min_y
)
17396 row
->visible_height
-= min_y
- row
->y
;
17397 if (row
->y
+ row
->height
> max_y
)
17398 row
->visible_height
-= row
->y
+ row
->height
- max_y
;
17399 if (row
->fringe_bitmap_periodic_p
)
17400 row
->redraw_fringe_bitmaps_p
= 1;
17403 /* Scroll the current matrix. */
17404 eassert (nrows_scrolled
> 0);
17405 rotate_matrix (w
->current_matrix
,
17407 MATRIX_ROW_VPOS (bottom_row
, w
->current_matrix
),
17410 /* Disable rows not reused. */
17411 for (row
-= nrows_scrolled
; row
< bottom_row
; ++row
)
17412 row
->enabled_p
= false;
17414 /* Point may have moved to a different line, so we cannot assume that
17415 the previous cursor position is valid; locate the correct row. */
17418 for (row
= MATRIX_ROW (w
->current_matrix
, w
->cursor
.vpos
);
17420 && PT
>= MATRIX_ROW_END_CHARPOS (row
)
17421 && !row
->ends_at_zv_p
;
17425 w
->cursor
.y
= row
->y
;
17427 if (row
< bottom_row
)
17429 /* Can't simply scan the row for point with
17430 bidi-reordered glyph rows. Let set_cursor_from_row
17431 figure out where to put the cursor, and if it fails,
17433 if (!NILP (BVAR (XBUFFER (w
->contents
), bidi_display_reordering
)))
17435 if (!set_cursor_from_row (w
, row
, w
->current_matrix
,
17438 clear_glyph_matrix (w
->desired_matrix
);
17444 struct glyph
*glyph
= row
->glyphs
[TEXT_AREA
] + w
->cursor
.hpos
;
17445 struct glyph
*end
= row
->glyphs
[TEXT_AREA
] + row
->used
[TEXT_AREA
];
17448 && (!BUFFERP (glyph
->object
)
17449 || glyph
->charpos
< PT
);
17453 w
->cursor
.x
+= glyph
->pixel_width
;
17459 /* Adjust window end. A null value of last_text_row means that
17460 the window end is in reused rows which in turn means that
17461 only its vpos can have changed. */
17463 adjust_window_ends (w
, last_text_row
, 0);
17465 w
->window_end_vpos
-= nrows_scrolled
;
17467 w
->window_end_valid
= 0;
17468 w
->desired_matrix
->no_scrolling_p
= 1;
17471 debug_method_add (w
, "try_window_reusing_current_matrix 2");
17481 /************************************************************************
17482 Window redisplay reusing current matrix when buffer has changed
17483 ************************************************************************/
17485 static struct glyph_row
*find_last_unchanged_at_beg_row (struct window
*);
17486 static struct glyph_row
*find_first_unchanged_at_end_row (struct window
*,
17487 ptrdiff_t *, ptrdiff_t *);
17488 static struct glyph_row
*
17489 find_last_row_displaying_text (struct glyph_matrix
*, struct it
*,
17490 struct glyph_row
*);
17493 /* Return the last row in MATRIX displaying text. If row START is
17494 non-null, start searching with that row. IT gives the dimensions
17495 of the display. Value is null if matrix is empty; otherwise it is
17496 a pointer to the row found. */
17498 static struct glyph_row
*
17499 find_last_row_displaying_text (struct glyph_matrix
*matrix
, struct it
*it
,
17500 struct glyph_row
*start
)
17502 struct glyph_row
*row
, *row_found
;
17504 /* Set row_found to the last row in IT->w's current matrix
17505 displaying text. The loop looks funny but think of partially
17508 row
= start
? start
: MATRIX_FIRST_TEXT_ROW (matrix
);
17509 while (MATRIX_ROW_DISPLAYS_TEXT_P (row
))
17511 eassert (row
->enabled_p
);
17513 if (MATRIX_ROW_BOTTOM_Y (row
) >= it
->last_visible_y
)
17522 /* Return the last row in the current matrix of W that is not affected
17523 by changes at the start of current_buffer that occurred since W's
17524 current matrix was built. Value is null if no such row exists.
17526 BEG_UNCHANGED us the number of characters unchanged at the start of
17527 current_buffer. BEG + BEG_UNCHANGED is the buffer position of the
17528 first changed character in current_buffer. Characters at positions <
17529 BEG + BEG_UNCHANGED are at the same buffer positions as they were
17530 when the current matrix was built. */
17532 static struct glyph_row
*
17533 find_last_unchanged_at_beg_row (struct window
*w
)
17535 ptrdiff_t first_changed_pos
= BEG
+ BEG_UNCHANGED
;
17536 struct glyph_row
*row
;
17537 struct glyph_row
*row_found
= NULL
;
17538 int yb
= window_text_bottom_y (w
);
17540 /* Find the last row displaying unchanged text. */
17541 for (row
= MATRIX_FIRST_TEXT_ROW (w
->current_matrix
);
17542 MATRIX_ROW_DISPLAYS_TEXT_P (row
)
17543 && MATRIX_ROW_START_CHARPOS (row
) < first_changed_pos
;
17546 if (/* If row ends before first_changed_pos, it is unchanged,
17547 except in some case. */
17548 MATRIX_ROW_END_CHARPOS (row
) <= first_changed_pos
17549 /* When row ends in ZV and we write at ZV it is not
17551 && !row
->ends_at_zv_p
17552 /* When first_changed_pos is the end of a continued line,
17553 row is not unchanged because it may be no longer
17555 && !(MATRIX_ROW_END_CHARPOS (row
) == first_changed_pos
17556 && (row
->continued_p
17557 || row
->exact_window_width_line_p
))
17558 /* If ROW->end is beyond ZV, then ROW->end is outdated and
17559 needs to be recomputed, so don't consider this row as
17560 unchanged. This happens when the last line was
17561 bidi-reordered and was killed immediately before this
17562 redisplay cycle. In that case, ROW->end stores the
17563 buffer position of the first visual-order character of
17564 the killed text, which is now beyond ZV. */
17565 && CHARPOS (row
->end
.pos
) <= ZV
)
17568 /* Stop if last visible row. */
17569 if (MATRIX_ROW_BOTTOM_Y (row
) >= yb
)
17577 /* Find the first glyph row in the current matrix of W that is not
17578 affected by changes at the end of current_buffer since the
17579 time W's current matrix was built.
17581 Return in *DELTA the number of chars by which buffer positions in
17582 unchanged text at the end of current_buffer must be adjusted.
17584 Return in *DELTA_BYTES the corresponding number of bytes.
17586 Value is null if no such row exists, i.e. all rows are affected by
17589 static struct glyph_row
*
17590 find_first_unchanged_at_end_row (struct window
*w
,
17591 ptrdiff_t *delta
, ptrdiff_t *delta_bytes
)
17593 struct glyph_row
*row
;
17594 struct glyph_row
*row_found
= NULL
;
17596 *delta
= *delta_bytes
= 0;
17598 /* Display must not have been paused, otherwise the current matrix
17599 is not up to date. */
17600 eassert (w
->window_end_valid
);
17602 /* A value of window_end_pos >= END_UNCHANGED means that the window
17603 end is in the range of changed text. If so, there is no
17604 unchanged row at the end of W's current matrix. */
17605 if (w
->window_end_pos
>= END_UNCHANGED
)
17608 /* Set row to the last row in W's current matrix displaying text. */
17609 row
= MATRIX_ROW (w
->current_matrix
, w
->window_end_vpos
);
17611 /* If matrix is entirely empty, no unchanged row exists. */
17612 if (MATRIX_ROW_DISPLAYS_TEXT_P (row
))
17614 /* The value of row is the last glyph row in the matrix having a
17615 meaningful buffer position in it. The end position of row
17616 corresponds to window_end_pos. This allows us to translate
17617 buffer positions in the current matrix to current buffer
17618 positions for characters not in changed text. */
17620 MATRIX_ROW_END_CHARPOS (row
) + w
->window_end_pos
;
17621 ptrdiff_t Z_BYTE_old
=
17622 MATRIX_ROW_END_BYTEPOS (row
) + w
->window_end_bytepos
;
17623 ptrdiff_t last_unchanged_pos
, last_unchanged_pos_old
;
17624 struct glyph_row
*first_text_row
17625 = MATRIX_FIRST_TEXT_ROW (w
->current_matrix
);
17627 *delta
= Z
- Z_old
;
17628 *delta_bytes
= Z_BYTE
- Z_BYTE_old
;
17630 /* Set last_unchanged_pos to the buffer position of the last
17631 character in the buffer that has not been changed. Z is the
17632 index + 1 of the last character in current_buffer, i.e. by
17633 subtracting END_UNCHANGED we get the index of the last
17634 unchanged character, and we have to add BEG to get its buffer
17636 last_unchanged_pos
= Z
- END_UNCHANGED
+ BEG
;
17637 last_unchanged_pos_old
= last_unchanged_pos
- *delta
;
17639 /* Search backward from ROW for a row displaying a line that
17640 starts at a minimum position >= last_unchanged_pos_old. */
17641 for (; row
> first_text_row
; --row
)
17643 /* This used to abort, but it can happen.
17644 It is ok to just stop the search instead here. KFS. */
17645 if (!row
->enabled_p
|| !MATRIX_ROW_DISPLAYS_TEXT_P (row
))
17648 if (MATRIX_ROW_START_CHARPOS (row
) >= last_unchanged_pos_old
)
17653 eassert (!row_found
|| MATRIX_ROW_DISPLAYS_TEXT_P (row_found
));
17659 /* Make sure that glyph rows in the current matrix of window W
17660 reference the same glyph memory as corresponding rows in the
17661 frame's frame matrix. This function is called after scrolling W's
17662 current matrix on a terminal frame in try_window_id and
17663 try_window_reusing_current_matrix. */
17666 sync_frame_with_window_matrix_rows (struct window
*w
)
17668 struct frame
*f
= XFRAME (w
->frame
);
17669 struct glyph_row
*window_row
, *window_row_end
, *frame_row
;
17671 /* Preconditions: W must be a leaf window and full-width. Its frame
17672 must have a frame matrix. */
17673 eassert (BUFFERP (w
->contents
));
17674 eassert (WINDOW_FULL_WIDTH_P (w
));
17675 eassert (!FRAME_WINDOW_P (f
));
17677 /* If W is a full-width window, glyph pointers in W's current matrix
17678 have, by definition, to be the same as glyph pointers in the
17679 corresponding frame matrix. Note that frame matrices have no
17680 marginal areas (see build_frame_matrix). */
17681 window_row
= w
->current_matrix
->rows
;
17682 window_row_end
= window_row
+ w
->current_matrix
->nrows
;
17683 frame_row
= f
->current_matrix
->rows
+ WINDOW_TOP_EDGE_LINE (w
);
17684 while (window_row
< window_row_end
)
17686 struct glyph
*start
= window_row
->glyphs
[LEFT_MARGIN_AREA
];
17687 struct glyph
*end
= window_row
->glyphs
[LAST_AREA
];
17689 frame_row
->glyphs
[LEFT_MARGIN_AREA
] = start
;
17690 frame_row
->glyphs
[TEXT_AREA
] = start
;
17691 frame_row
->glyphs
[RIGHT_MARGIN_AREA
] = end
;
17692 frame_row
->glyphs
[LAST_AREA
] = end
;
17694 /* Disable frame rows whose corresponding window rows have
17695 been disabled in try_window_id. */
17696 if (!window_row
->enabled_p
)
17697 frame_row
->enabled_p
= false;
17699 ++window_row
, ++frame_row
;
17704 /* Find the glyph row in window W containing CHARPOS. Consider all
17705 rows between START and END (not inclusive). END null means search
17706 all rows to the end of the display area of W. Value is the row
17707 containing CHARPOS or null. */
17710 row_containing_pos (struct window
*w
, ptrdiff_t charpos
,
17711 struct glyph_row
*start
, struct glyph_row
*end
, int dy
)
17713 struct glyph_row
*row
= start
;
17714 struct glyph_row
*best_row
= NULL
;
17715 ptrdiff_t mindif
= BUF_ZV (XBUFFER (w
->contents
)) + 1;
17718 /* If we happen to start on a header-line, skip that. */
17719 if (row
->mode_line_p
)
17722 if ((end
&& row
>= end
) || !row
->enabled_p
)
17725 last_y
= window_text_bottom_y (w
) - dy
;
17729 /* Give up if we have gone too far. */
17730 if (end
&& row
>= end
)
17732 /* This formerly returned if they were equal.
17733 I think that both quantities are of a "last plus one" type;
17734 if so, when they are equal, the row is within the screen. -- rms. */
17735 if (MATRIX_ROW_BOTTOM_Y (row
) > last_y
)
17738 /* If it is in this row, return this row. */
17739 if (! (MATRIX_ROW_END_CHARPOS (row
) < charpos
17740 || (MATRIX_ROW_END_CHARPOS (row
) == charpos
17741 /* The end position of a row equals the start
17742 position of the next row. If CHARPOS is there, we
17743 would rather consider it displayed in the next
17744 line, except when this line ends in ZV. */
17745 && !row_for_charpos_p (row
, charpos
)))
17746 && charpos
>= MATRIX_ROW_START_CHARPOS (row
))
17750 if (NILP (BVAR (XBUFFER (w
->contents
), bidi_display_reordering
))
17751 || (!best_row
&& !row
->continued_p
))
17753 /* In bidi-reordered rows, there could be several rows whose
17754 edges surround CHARPOS, all of these rows belonging to
17755 the same continued line. We need to find the row which
17756 fits CHARPOS the best. */
17757 for (g
= row
->glyphs
[TEXT_AREA
];
17758 g
< row
->glyphs
[TEXT_AREA
] + row
->used
[TEXT_AREA
];
17761 if (!STRINGP (g
->object
))
17763 if (g
->charpos
> 0 && eabs (g
->charpos
- charpos
) < mindif
)
17765 mindif
= eabs (g
->charpos
- charpos
);
17767 /* Exact match always wins. */
17774 else if (best_row
&& !row
->continued_p
)
17781 /* Try to redisplay window W by reusing its existing display. W's
17782 current matrix must be up to date when this function is called,
17783 i.e. window_end_valid must be nonzero.
17787 >= 1 if successful, i.e. display has been updated
17789 1 means the changes were in front of a newline that precedes
17790 the window start, and the whole current matrix was reused
17791 2 means the changes were after the last position displayed
17792 in the window, and the whole current matrix was reused
17793 3 means portions of the current matrix were reused, while
17794 some of the screen lines were redrawn
17795 -1 if redisplay with same window start is known not to succeed
17796 0 if otherwise unsuccessful
17798 The following steps are performed:
17800 1. Find the last row in the current matrix of W that is not
17801 affected by changes at the start of current_buffer. If no such row
17804 2. Find the first row in W's current matrix that is not affected by
17805 changes at the end of current_buffer. Maybe there is no such row.
17807 3. Display lines beginning with the row + 1 found in step 1 to the
17808 row found in step 2 or, if step 2 didn't find a row, to the end of
17811 4. If cursor is not known to appear on the window, give up.
17813 5. If display stopped at the row found in step 2, scroll the
17814 display and current matrix as needed.
17816 6. Maybe display some lines at the end of W, if we must. This can
17817 happen under various circumstances, like a partially visible line
17818 becoming fully visible, or because newly displayed lines are displayed
17819 in smaller font sizes.
17821 7. Update W's window end information. */
17824 try_window_id (struct window
*w
)
17826 struct frame
*f
= XFRAME (w
->frame
);
17827 struct glyph_matrix
*current_matrix
= w
->current_matrix
;
17828 struct glyph_matrix
*desired_matrix
= w
->desired_matrix
;
17829 struct glyph_row
*last_unchanged_at_beg_row
;
17830 struct glyph_row
*first_unchanged_at_end_row
;
17831 struct glyph_row
*row
;
17832 struct glyph_row
*bottom_row
;
17835 ptrdiff_t delta
= 0, delta_bytes
= 0, stop_pos
;
17837 struct text_pos start_pos
;
17839 int first_unchanged_at_end_vpos
= 0;
17840 struct glyph_row
*last_text_row
, *last_text_row_at_end
;
17841 struct text_pos start
;
17842 ptrdiff_t first_changed_charpos
, last_changed_charpos
;
17845 if (inhibit_try_window_id
)
17849 /* This is handy for debugging. */
17851 #define GIVE_UP(X) \
17853 fprintf (stderr, "try_window_id give up %d\n", (X)); \
17857 #define GIVE_UP(X) return 0
17860 SET_TEXT_POS_FROM_MARKER (start
, w
->start
);
17862 /* Don't use this for mini-windows because these can show
17863 messages and mini-buffers, and we don't handle that here. */
17864 if (MINI_WINDOW_P (w
))
17867 /* This flag is used to prevent redisplay optimizations. */
17868 if (windows_or_buffers_changed
|| f
->cursor_type_changed
)
17871 /* This function's optimizations cannot be used if overlays have
17872 changed in the buffer displayed by the window, so give up if they
17874 if (w
->last_overlay_modified
!= OVERLAY_MODIFF
)
17877 /* Verify that narrowing has not changed.
17878 Also verify that we were not told to prevent redisplay optimizations.
17879 It would be nice to further
17880 reduce the number of cases where this prevents try_window_id. */
17881 if (current_buffer
->clip_changed
17882 || current_buffer
->prevent_redisplay_optimizations_p
)
17885 /* Window must either use window-based redisplay or be full width. */
17886 if (!FRAME_WINDOW_P (f
)
17887 && (!FRAME_LINE_INS_DEL_OK (f
)
17888 || !WINDOW_FULL_WIDTH_P (w
)))
17891 /* Give up if point is known NOT to appear in W. */
17892 if (PT
< CHARPOS (start
))
17895 /* Another way to prevent redisplay optimizations. */
17896 if (w
->last_modified
== 0)
17899 /* Verify that window is not hscrolled. */
17900 if (w
->hscroll
!= 0)
17903 /* Verify that display wasn't paused. */
17904 if (!w
->window_end_valid
)
17907 /* Likewise if highlighting trailing whitespace. */
17908 if (!NILP (Vshow_trailing_whitespace
))
17911 /* Can't use this if overlay arrow position and/or string have
17913 if (overlay_arrows_changed_p ())
17916 /* When word-wrap is on, adding a space to the first word of a
17917 wrapped line can change the wrap position, altering the line
17918 above it. It might be worthwhile to handle this more
17919 intelligently, but for now just redisplay from scratch. */
17920 if (!NILP (BVAR (XBUFFER (w
->contents
), word_wrap
)))
17923 /* Under bidi reordering, adding or deleting a character in the
17924 beginning of a paragraph, before the first strong directional
17925 character, can change the base direction of the paragraph (unless
17926 the buffer specifies a fixed paragraph direction), which will
17927 require to redisplay the whole paragraph. It might be worthwhile
17928 to find the paragraph limits and widen the range of redisplayed
17929 lines to that, but for now just give up this optimization and
17930 redisplay from scratch. */
17931 if (!NILP (BVAR (XBUFFER (w
->contents
), bidi_display_reordering
))
17932 && NILP (BVAR (XBUFFER (w
->contents
), bidi_paragraph_direction
)))
17935 /* Make sure beg_unchanged and end_unchanged are up to date. Do it
17936 only if buffer has really changed. The reason is that the gap is
17937 initially at Z for freshly visited files. The code below would
17938 set end_unchanged to 0 in that case. */
17939 if (MODIFF
> SAVE_MODIFF
17940 /* This seems to happen sometimes after saving a buffer. */
17941 || BEG_UNCHANGED
+ END_UNCHANGED
> Z_BYTE
)
17943 if (GPT
- BEG
< BEG_UNCHANGED
)
17944 BEG_UNCHANGED
= GPT
- BEG
;
17945 if (Z
- GPT
< END_UNCHANGED
)
17946 END_UNCHANGED
= Z
- GPT
;
17949 /* The position of the first and last character that has been changed. */
17950 first_changed_charpos
= BEG
+ BEG_UNCHANGED
;
17951 last_changed_charpos
= Z
- END_UNCHANGED
;
17953 /* If window starts after a line end, and the last change is in
17954 front of that newline, then changes don't affect the display.
17955 This case happens with stealth-fontification. Note that although
17956 the display is unchanged, glyph positions in the matrix have to
17957 be adjusted, of course. */
17958 row
= MATRIX_ROW (w
->current_matrix
, w
->window_end_vpos
);
17959 if (MATRIX_ROW_DISPLAYS_TEXT_P (row
)
17960 && ((last_changed_charpos
< CHARPOS (start
)
17961 && CHARPOS (start
) == BEGV
)
17962 || (last_changed_charpos
< CHARPOS (start
) - 1
17963 && FETCH_BYTE (BYTEPOS (start
) - 1) == '\n')))
17965 ptrdiff_t Z_old
, Z_delta
, Z_BYTE_old
, Z_delta_bytes
;
17966 struct glyph_row
*r0
;
17968 /* Compute how many chars/bytes have been added to or removed
17969 from the buffer. */
17970 Z_old
= MATRIX_ROW_END_CHARPOS (row
) + w
->window_end_pos
;
17971 Z_BYTE_old
= MATRIX_ROW_END_BYTEPOS (row
) + w
->window_end_bytepos
;
17972 Z_delta
= Z
- Z_old
;
17973 Z_delta_bytes
= Z_BYTE
- Z_BYTE_old
;
17975 /* Give up if PT is not in the window. Note that it already has
17976 been checked at the start of try_window_id that PT is not in
17977 front of the window start. */
17978 if (PT
>= MATRIX_ROW_END_CHARPOS (row
) + Z_delta
)
17981 /* If window start is unchanged, we can reuse the whole matrix
17982 as is, after adjusting glyph positions. No need to compute
17983 the window end again, since its offset from Z hasn't changed. */
17984 r0
= MATRIX_FIRST_TEXT_ROW (current_matrix
);
17985 if (CHARPOS (start
) == MATRIX_ROW_START_CHARPOS (r0
) + Z_delta
17986 && BYTEPOS (start
) == MATRIX_ROW_START_BYTEPOS (r0
) + Z_delta_bytes
17987 /* PT must not be in a partially visible line. */
17988 && !(PT
>= MATRIX_ROW_START_CHARPOS (row
) + Z_delta
17989 && MATRIX_ROW_BOTTOM_Y (row
) > window_text_bottom_y (w
)))
17991 /* Adjust positions in the glyph matrix. */
17992 if (Z_delta
|| Z_delta_bytes
)
17994 struct glyph_row
*r1
17995 = MATRIX_BOTTOM_TEXT_ROW (current_matrix
, w
);
17996 increment_matrix_positions (w
->current_matrix
,
17997 MATRIX_ROW_VPOS (r0
, current_matrix
),
17998 MATRIX_ROW_VPOS (r1
, current_matrix
),
17999 Z_delta
, Z_delta_bytes
);
18002 /* Set the cursor. */
18003 row
= row_containing_pos (w
, PT
, r0
, NULL
, 0);
18005 set_cursor_from_row (w
, row
, current_matrix
, 0, 0, 0, 0);
18010 /* Handle the case that changes are all below what is displayed in
18011 the window, and that PT is in the window. This shortcut cannot
18012 be taken if ZV is visible in the window, and text has been added
18013 there that is visible in the window. */
18014 if (first_changed_charpos
>= MATRIX_ROW_END_CHARPOS (row
)
18015 /* ZV is not visible in the window, or there are no
18016 changes at ZV, actually. */
18017 && (current_matrix
->zv
> MATRIX_ROW_END_CHARPOS (row
)
18018 || first_changed_charpos
== last_changed_charpos
))
18020 struct glyph_row
*r0
;
18022 /* Give up if PT is not in the window. Note that it already has
18023 been checked at the start of try_window_id that PT is not in
18024 front of the window start. */
18025 if (PT
>= MATRIX_ROW_END_CHARPOS (row
))
18028 /* If window start is unchanged, we can reuse the whole matrix
18029 as is, without changing glyph positions since no text has
18030 been added/removed in front of the window end. */
18031 r0
= MATRIX_FIRST_TEXT_ROW (current_matrix
);
18032 if (TEXT_POS_EQUAL_P (start
, r0
->minpos
)
18033 /* PT must not be in a partially visible line. */
18034 && !(PT
>= MATRIX_ROW_START_CHARPOS (row
)
18035 && MATRIX_ROW_BOTTOM_Y (row
) > window_text_bottom_y (w
)))
18037 /* We have to compute the window end anew since text
18038 could have been added/removed after it. */
18039 w
->window_end_pos
= Z
- MATRIX_ROW_END_CHARPOS (row
);
18040 w
->window_end_bytepos
= Z_BYTE
- MATRIX_ROW_END_BYTEPOS (row
);
18042 /* Set the cursor. */
18043 row
= row_containing_pos (w
, PT
, r0
, NULL
, 0);
18045 set_cursor_from_row (w
, row
, current_matrix
, 0, 0, 0, 0);
18050 /* Give up if window start is in the changed area.
18052 The condition used to read
18054 (BEG_UNCHANGED + END_UNCHANGED != Z - BEG && ...)
18056 but why that was tested escapes me at the moment. */
18057 if (CHARPOS (start
) >= first_changed_charpos
18058 && CHARPOS (start
) <= last_changed_charpos
)
18061 /* Check that window start agrees with the start of the first glyph
18062 row in its current matrix. Check this after we know the window
18063 start is not in changed text, otherwise positions would not be
18065 row
= MATRIX_FIRST_TEXT_ROW (current_matrix
);
18066 if (!TEXT_POS_EQUAL_P (start
, row
->minpos
))
18069 /* Give up if the window ends in strings. Overlay strings
18070 at the end are difficult to handle, so don't try. */
18071 row
= MATRIX_ROW (current_matrix
, w
->window_end_vpos
);
18072 if (MATRIX_ROW_START_CHARPOS (row
) == MATRIX_ROW_END_CHARPOS (row
))
18075 /* Compute the position at which we have to start displaying new
18076 lines. Some of the lines at the top of the window might be
18077 reusable because they are not displaying changed text. Find the
18078 last row in W's current matrix not affected by changes at the
18079 start of current_buffer. Value is null if changes start in the
18080 first line of window. */
18081 last_unchanged_at_beg_row
= find_last_unchanged_at_beg_row (w
);
18082 if (last_unchanged_at_beg_row
)
18084 /* Avoid starting to display in the middle of a character, a TAB
18085 for instance. This is easier than to set up the iterator
18086 exactly, and it's not a frequent case, so the additional
18087 effort wouldn't really pay off. */
18088 while ((MATRIX_ROW_ENDS_IN_MIDDLE_OF_CHAR_P (last_unchanged_at_beg_row
)
18089 || last_unchanged_at_beg_row
->ends_in_newline_from_string_p
)
18090 && last_unchanged_at_beg_row
> w
->current_matrix
->rows
)
18091 --last_unchanged_at_beg_row
;
18093 if (MATRIX_ROW_ENDS_IN_MIDDLE_OF_CHAR_P (last_unchanged_at_beg_row
))
18096 if (init_to_row_end (&it
, w
, last_unchanged_at_beg_row
) == 0)
18098 start_pos
= it
.current
.pos
;
18100 /* Start displaying new lines in the desired matrix at the same
18101 vpos we would use in the current matrix, i.e. below
18102 last_unchanged_at_beg_row. */
18103 it
.vpos
= 1 + MATRIX_ROW_VPOS (last_unchanged_at_beg_row
,
18105 it
.glyph_row
= MATRIX_ROW (desired_matrix
, it
.vpos
);
18106 it
.current_y
= MATRIX_ROW_BOTTOM_Y (last_unchanged_at_beg_row
);
18108 eassert (it
.hpos
== 0 && it
.current_x
== 0);
18112 /* There are no reusable lines at the start of the window.
18113 Start displaying in the first text line. */
18114 start_display (&it
, w
, start
);
18115 it
.vpos
= it
.first_vpos
;
18116 start_pos
= it
.current
.pos
;
18119 /* Find the first row that is not affected by changes at the end of
18120 the buffer. Value will be null if there is no unchanged row, in
18121 which case we must redisplay to the end of the window. delta
18122 will be set to the value by which buffer positions beginning with
18123 first_unchanged_at_end_row have to be adjusted due to text
18125 first_unchanged_at_end_row
18126 = find_first_unchanged_at_end_row (w
, &delta
, &delta_bytes
);
18127 IF_DEBUG (debug_delta
= delta
);
18128 IF_DEBUG (debug_delta_bytes
= delta_bytes
);
18130 /* Set stop_pos to the buffer position up to which we will have to
18131 display new lines. If first_unchanged_at_end_row != NULL, this
18132 is the buffer position of the start of the line displayed in that
18133 row. For first_unchanged_at_end_row == NULL, use 0 to indicate
18134 that we don't stop at a buffer position. */
18136 if (first_unchanged_at_end_row
)
18138 eassert (last_unchanged_at_beg_row
== NULL
18139 || first_unchanged_at_end_row
>= last_unchanged_at_beg_row
);
18141 /* If this is a continuation line, move forward to the next one
18142 that isn't. Changes in lines above affect this line.
18143 Caution: this may move first_unchanged_at_end_row to a row
18144 not displaying text. */
18145 while (MATRIX_ROW_CONTINUATION_LINE_P (first_unchanged_at_end_row
)
18146 && MATRIX_ROW_DISPLAYS_TEXT_P (first_unchanged_at_end_row
)
18147 && (MATRIX_ROW_BOTTOM_Y (first_unchanged_at_end_row
)
18148 < it
.last_visible_y
))
18149 ++first_unchanged_at_end_row
;
18151 if (!MATRIX_ROW_DISPLAYS_TEXT_P (first_unchanged_at_end_row
)
18152 || (MATRIX_ROW_BOTTOM_Y (first_unchanged_at_end_row
)
18153 >= it
.last_visible_y
))
18154 first_unchanged_at_end_row
= NULL
;
18157 stop_pos
= (MATRIX_ROW_START_CHARPOS (first_unchanged_at_end_row
)
18159 first_unchanged_at_end_vpos
18160 = MATRIX_ROW_VPOS (first_unchanged_at_end_row
, current_matrix
);
18161 eassert (stop_pos
>= Z
- END_UNCHANGED
);
18164 else if (last_unchanged_at_beg_row
== NULL
)
18170 /* Either there is no unchanged row at the end, or the one we have
18171 now displays text. This is a necessary condition for the window
18172 end pos calculation at the end of this function. */
18173 eassert (first_unchanged_at_end_row
== NULL
18174 || MATRIX_ROW_DISPLAYS_TEXT_P (first_unchanged_at_end_row
));
18176 debug_last_unchanged_at_beg_vpos
18177 = (last_unchanged_at_beg_row
18178 ? MATRIX_ROW_VPOS (last_unchanged_at_beg_row
, current_matrix
)
18180 debug_first_unchanged_at_end_vpos
= first_unchanged_at_end_vpos
;
18182 #endif /* GLYPH_DEBUG */
18185 /* Display new lines. Set last_text_row to the last new line
18186 displayed which has text on it, i.e. might end up as being the
18187 line where the window_end_vpos is. */
18188 w
->cursor
.vpos
= -1;
18189 last_text_row
= NULL
;
18190 overlay_arrow_seen
= 0;
18191 if (it
.current_y
< it
.last_visible_y
18192 && !f
->fonts_changed
18193 && (first_unchanged_at_end_row
== NULL
18194 || IT_CHARPOS (it
) < stop_pos
))
18195 it
.glyph_row
->reversed_p
= false;
18196 while (it
.current_y
< it
.last_visible_y
18197 && !f
->fonts_changed
18198 && (first_unchanged_at_end_row
== NULL
18199 || IT_CHARPOS (it
) < stop_pos
))
18201 if (display_line (&it
))
18202 last_text_row
= it
.glyph_row
- 1;
18205 if (f
->fonts_changed
)
18209 /* Compute differences in buffer positions, y-positions etc. for
18210 lines reused at the bottom of the window. Compute what we can
18212 if (first_unchanged_at_end_row
18213 /* No lines reused because we displayed everything up to the
18214 bottom of the window. */
18215 && it
.current_y
< it
.last_visible_y
)
18218 - MATRIX_ROW_VPOS (first_unchanged_at_end_row
,
18220 dy
= it
.current_y
- first_unchanged_at_end_row
->y
;
18221 run
.current_y
= first_unchanged_at_end_row
->y
;
18222 run
.desired_y
= run
.current_y
+ dy
;
18223 run
.height
= it
.last_visible_y
- max (run
.current_y
, run
.desired_y
);
18227 delta
= delta_bytes
= dvpos
= dy
18228 = run
.current_y
= run
.desired_y
= run
.height
= 0;
18229 first_unchanged_at_end_row
= NULL
;
18231 IF_DEBUG ((debug_dvpos
= dvpos
, debug_dy
= dy
));
18234 /* Find the cursor if not already found. We have to decide whether
18235 PT will appear on this window (it sometimes doesn't, but this is
18236 not a very frequent case.) This decision has to be made before
18237 the current matrix is altered. A value of cursor.vpos < 0 means
18238 that PT is either in one of the lines beginning at
18239 first_unchanged_at_end_row or below the window. Don't care for
18240 lines that might be displayed later at the window end; as
18241 mentioned, this is not a frequent case. */
18242 if (w
->cursor
.vpos
< 0)
18244 /* Cursor in unchanged rows at the top? */
18245 if (PT
< CHARPOS (start_pos
)
18246 && last_unchanged_at_beg_row
)
18248 row
= row_containing_pos (w
, PT
,
18249 MATRIX_FIRST_TEXT_ROW (w
->current_matrix
),
18250 last_unchanged_at_beg_row
+ 1, 0);
18252 set_cursor_from_row (w
, row
, w
->current_matrix
, 0, 0, 0, 0);
18255 /* Start from first_unchanged_at_end_row looking for PT. */
18256 else if (first_unchanged_at_end_row
)
18258 row
= row_containing_pos (w
, PT
- delta
,
18259 first_unchanged_at_end_row
, NULL
, 0);
18261 set_cursor_from_row (w
, row
, w
->current_matrix
, delta
,
18262 delta_bytes
, dy
, dvpos
);
18265 /* Give up if cursor was not found. */
18266 if (w
->cursor
.vpos
< 0)
18268 clear_glyph_matrix (w
->desired_matrix
);
18273 /* Don't let the cursor end in the scroll margins. */
18275 int this_scroll_margin
, cursor_height
;
18276 int frame_line_height
= default_line_pixel_height (w
);
18277 int window_total_lines
18278 = WINDOW_TOTAL_LINES (w
) * FRAME_LINE_HEIGHT (it
.f
) / frame_line_height
;
18280 this_scroll_margin
=
18281 max (0, min (scroll_margin
, window_total_lines
/ 4));
18282 this_scroll_margin
*= frame_line_height
;
18283 cursor_height
= MATRIX_ROW (w
->desired_matrix
, w
->cursor
.vpos
)->height
;
18285 if ((w
->cursor
.y
< this_scroll_margin
18286 && CHARPOS (start
) > BEGV
)
18287 /* Old redisplay didn't take scroll margin into account at the bottom,
18288 but then global-hl-line-mode doesn't scroll. KFS 2004-06-14 */
18289 || (w
->cursor
.y
+ (make_cursor_line_fully_visible_p
18290 ? cursor_height
+ this_scroll_margin
18291 : 1)) > it
.last_visible_y
)
18293 w
->cursor
.vpos
= -1;
18294 clear_glyph_matrix (w
->desired_matrix
);
18299 /* Scroll the display. Do it before changing the current matrix so
18300 that xterm.c doesn't get confused about where the cursor glyph is
18302 if (dy
&& run
.height
)
18306 if (FRAME_WINDOW_P (f
))
18308 FRAME_RIF (f
)->update_window_begin_hook (w
);
18309 FRAME_RIF (f
)->clear_window_mouse_face (w
);
18310 FRAME_RIF (f
)->scroll_run_hook (w
, &run
);
18311 FRAME_RIF (f
)->update_window_end_hook (w
, 0, 0);
18315 /* Terminal frame. In this case, dvpos gives the number of
18316 lines to scroll by; dvpos < 0 means scroll up. */
18318 = MATRIX_ROW_VPOS (first_unchanged_at_end_row
, w
->current_matrix
);
18319 int from
= WINDOW_TOP_EDGE_LINE (w
) + from_vpos
;
18320 int end
= (WINDOW_TOP_EDGE_LINE (w
)
18321 + (WINDOW_WANTS_HEADER_LINE_P (w
) ? 1 : 0)
18322 + window_internal_height (w
));
18324 #if defined (HAVE_GPM) || defined (MSDOS)
18325 x_clear_window_mouse_face (w
);
18327 /* Perform the operation on the screen. */
18330 /* Scroll last_unchanged_at_beg_row to the end of the
18331 window down dvpos lines. */
18332 set_terminal_window (f
, end
);
18334 /* On dumb terminals delete dvpos lines at the end
18335 before inserting dvpos empty lines. */
18336 if (!FRAME_SCROLL_REGION_OK (f
))
18337 ins_del_lines (f
, end
- dvpos
, -dvpos
);
18339 /* Insert dvpos empty lines in front of
18340 last_unchanged_at_beg_row. */
18341 ins_del_lines (f
, from
, dvpos
);
18343 else if (dvpos
< 0)
18345 /* Scroll up last_unchanged_at_beg_vpos to the end of
18346 the window to last_unchanged_at_beg_vpos - |dvpos|. */
18347 set_terminal_window (f
, end
);
18349 /* Delete dvpos lines in front of
18350 last_unchanged_at_beg_vpos. ins_del_lines will set
18351 the cursor to the given vpos and emit |dvpos| delete
18353 ins_del_lines (f
, from
+ dvpos
, dvpos
);
18355 /* On a dumb terminal insert dvpos empty lines at the
18357 if (!FRAME_SCROLL_REGION_OK (f
))
18358 ins_del_lines (f
, end
+ dvpos
, -dvpos
);
18361 set_terminal_window (f
, 0);
18367 /* Shift reused rows of the current matrix to the right position.
18368 BOTTOM_ROW is the last + 1 row in the current matrix reserved for
18370 bottom_row
= MATRIX_BOTTOM_TEXT_ROW (current_matrix
, w
);
18371 bottom_vpos
= MATRIX_ROW_VPOS (bottom_row
, current_matrix
);
18374 rotate_matrix (current_matrix
, first_unchanged_at_end_vpos
+ dvpos
,
18375 bottom_vpos
, dvpos
);
18376 clear_glyph_matrix_rows (current_matrix
, bottom_vpos
+ dvpos
,
18379 else if (dvpos
> 0)
18381 rotate_matrix (current_matrix
, first_unchanged_at_end_vpos
,
18382 bottom_vpos
, dvpos
);
18383 clear_glyph_matrix_rows (current_matrix
, first_unchanged_at_end_vpos
,
18384 first_unchanged_at_end_vpos
+ dvpos
);
18387 /* For frame-based redisplay, make sure that current frame and window
18388 matrix are in sync with respect to glyph memory. */
18389 if (!FRAME_WINDOW_P (f
))
18390 sync_frame_with_window_matrix_rows (w
);
18392 /* Adjust buffer positions in reused rows. */
18393 if (delta
|| delta_bytes
)
18394 increment_matrix_positions (current_matrix
,
18395 first_unchanged_at_end_vpos
+ dvpos
,
18396 bottom_vpos
, delta
, delta_bytes
);
18398 /* Adjust Y positions. */
18400 shift_glyph_matrix (w
, current_matrix
,
18401 first_unchanged_at_end_vpos
+ dvpos
,
18404 if (first_unchanged_at_end_row
)
18406 first_unchanged_at_end_row
+= dvpos
;
18407 if (first_unchanged_at_end_row
->y
>= it
.last_visible_y
18408 || !MATRIX_ROW_DISPLAYS_TEXT_P (first_unchanged_at_end_row
))
18409 first_unchanged_at_end_row
= NULL
;
18412 /* If scrolling up, there may be some lines to display at the end of
18414 last_text_row_at_end
= NULL
;
18417 /* Scrolling up can leave for example a partially visible line
18418 at the end of the window to be redisplayed. */
18419 /* Set last_row to the glyph row in the current matrix where the
18420 window end line is found. It has been moved up or down in
18421 the matrix by dvpos. */
18422 int last_vpos
= w
->window_end_vpos
+ dvpos
;
18423 struct glyph_row
*last_row
= MATRIX_ROW (current_matrix
, last_vpos
);
18425 /* If last_row is the window end line, it should display text. */
18426 eassert (MATRIX_ROW_DISPLAYS_TEXT_P (last_row
));
18428 /* If window end line was partially visible before, begin
18429 displaying at that line. Otherwise begin displaying with the
18430 line following it. */
18431 if (MATRIX_ROW_BOTTOM_Y (last_row
) - dy
>= it
.last_visible_y
)
18433 init_to_row_start (&it
, w
, last_row
);
18434 it
.vpos
= last_vpos
;
18435 it
.current_y
= last_row
->y
;
18439 init_to_row_end (&it
, w
, last_row
);
18440 it
.vpos
= 1 + last_vpos
;
18441 it
.current_y
= MATRIX_ROW_BOTTOM_Y (last_row
);
18445 /* We may start in a continuation line. If so, we have to
18446 get the right continuation_lines_width and current_x. */
18447 it
.continuation_lines_width
= last_row
->continuation_lines_width
;
18448 it
.hpos
= it
.current_x
= 0;
18450 /* Display the rest of the lines at the window end. */
18451 it
.glyph_row
= MATRIX_ROW (desired_matrix
, it
.vpos
);
18452 while (it
.current_y
< it
.last_visible_y
&& !f
->fonts_changed
)
18454 /* Is it always sure that the display agrees with lines in
18455 the current matrix? I don't think so, so we mark rows
18456 displayed invalid in the current matrix by setting their
18457 enabled_p flag to zero. */
18458 SET_MATRIX_ROW_ENABLED_P (w
->current_matrix
, it
.vpos
, false);
18459 if (display_line (&it
))
18460 last_text_row_at_end
= it
.glyph_row
- 1;
18464 /* Update window_end_pos and window_end_vpos. */
18465 if (first_unchanged_at_end_row
&& !last_text_row_at_end
)
18467 /* Window end line if one of the preserved rows from the current
18468 matrix. Set row to the last row displaying text in current
18469 matrix starting at first_unchanged_at_end_row, after
18471 eassert (MATRIX_ROW_DISPLAYS_TEXT_P (first_unchanged_at_end_row
));
18472 row
= find_last_row_displaying_text (w
->current_matrix
, &it
,
18473 first_unchanged_at_end_row
);
18474 eassert (row
&& MATRIX_ROW_DISPLAYS_TEXT_P (row
));
18475 adjust_window_ends (w
, row
, 1);
18476 eassert (w
->window_end_bytepos
>= 0);
18477 IF_DEBUG (debug_method_add (w
, "A"));
18479 else if (last_text_row_at_end
)
18481 adjust_window_ends (w
, last_text_row_at_end
, 0);
18482 eassert (w
->window_end_bytepos
>= 0);
18483 IF_DEBUG (debug_method_add (w
, "B"));
18485 else if (last_text_row
)
18487 /* We have displayed either to the end of the window or at the
18488 end of the window, i.e. the last row with text is to be found
18489 in the desired matrix. */
18490 adjust_window_ends (w
, last_text_row
, 0);
18491 eassert (w
->window_end_bytepos
>= 0);
18493 else if (first_unchanged_at_end_row
== NULL
18494 && last_text_row
== NULL
18495 && last_text_row_at_end
== NULL
)
18497 /* Displayed to end of window, but no line containing text was
18498 displayed. Lines were deleted at the end of the window. */
18499 int first_vpos
= WINDOW_WANTS_HEADER_LINE_P (w
) ? 1 : 0;
18500 int vpos
= w
->window_end_vpos
;
18501 struct glyph_row
*current_row
= current_matrix
->rows
+ vpos
;
18502 struct glyph_row
*desired_row
= desired_matrix
->rows
+ vpos
;
18505 row
== NULL
&& vpos
>= first_vpos
;
18506 --vpos
, --current_row
, --desired_row
)
18508 if (desired_row
->enabled_p
)
18510 if (MATRIX_ROW_DISPLAYS_TEXT_P (desired_row
))
18513 else if (MATRIX_ROW_DISPLAYS_TEXT_P (current_row
))
18517 eassert (row
!= NULL
);
18518 w
->window_end_vpos
= vpos
+ 1;
18519 w
->window_end_pos
= Z
- MATRIX_ROW_END_CHARPOS (row
);
18520 w
->window_end_bytepos
= Z_BYTE
- MATRIX_ROW_END_BYTEPOS (row
);
18521 eassert (w
->window_end_bytepos
>= 0);
18522 IF_DEBUG (debug_method_add (w
, "C"));
18527 IF_DEBUG ((debug_end_pos
= w
->window_end_pos
,
18528 debug_end_vpos
= w
->window_end_vpos
));
18530 /* Record that display has not been completed. */
18531 w
->window_end_valid
= 0;
18532 w
->desired_matrix
->no_scrolling_p
= 1;
18540 /***********************************************************************
18541 More debugging support
18542 ***********************************************************************/
18546 void dump_glyph_row (struct glyph_row
*, int, int) EXTERNALLY_VISIBLE
;
18547 void dump_glyph_matrix (struct glyph_matrix
*, int) EXTERNALLY_VISIBLE
;
18548 void dump_glyph (struct glyph_row
*, struct glyph
*, int) EXTERNALLY_VISIBLE
;
18551 /* Dump the contents of glyph matrix MATRIX on stderr.
18553 GLYPHS 0 means don't show glyph contents.
18554 GLYPHS 1 means show glyphs in short form
18555 GLYPHS > 1 means show glyphs in long form. */
18558 dump_glyph_matrix (struct glyph_matrix
*matrix
, int glyphs
)
18561 for (i
= 0; i
< matrix
->nrows
; ++i
)
18562 dump_glyph_row (MATRIX_ROW (matrix
, i
), i
, glyphs
);
18566 /* Dump contents of glyph GLYPH to stderr. ROW and AREA are
18567 the glyph row and area where the glyph comes from. */
18570 dump_glyph (struct glyph_row
*row
, struct glyph
*glyph
, int area
)
18572 if (glyph
->type
== CHAR_GLYPH
18573 || glyph
->type
== GLYPHLESS_GLYPH
)
18576 " %5"pD
"d %c %9"pI
"d %c %3d 0x%06x %c %4d %1.1d%1.1d\n",
18577 glyph
- row
->glyphs
[TEXT_AREA
],
18578 (glyph
->type
== CHAR_GLYPH
18582 (BUFFERP (glyph
->object
)
18584 : (STRINGP (glyph
->object
)
18586 : (NILP (glyph
->object
)
18589 glyph
->pixel_width
,
18591 (glyph
->u
.ch
< 0x80 && glyph
->u
.ch
>= ' '
18595 glyph
->left_box_line_p
,
18596 glyph
->right_box_line_p
);
18598 else if (glyph
->type
== STRETCH_GLYPH
)
18601 " %5"pD
"d %c %9"pI
"d %c %3d 0x%06x %c %4d %1.1d%1.1d\n",
18602 glyph
- row
->glyphs
[TEXT_AREA
],
18605 (BUFFERP (glyph
->object
)
18607 : (STRINGP (glyph
->object
)
18609 : (NILP (glyph
->object
)
18612 glyph
->pixel_width
,
18616 glyph
->left_box_line_p
,
18617 glyph
->right_box_line_p
);
18619 else if (glyph
->type
== IMAGE_GLYPH
)
18622 " %5"pD
"d %c %9"pI
"d %c %3d 0x%06x %c %4d %1.1d%1.1d\n",
18623 glyph
- row
->glyphs
[TEXT_AREA
],
18626 (BUFFERP (glyph
->object
)
18628 : (STRINGP (glyph
->object
)
18630 : (NILP (glyph
->object
)
18633 glyph
->pixel_width
,
18637 glyph
->left_box_line_p
,
18638 glyph
->right_box_line_p
);
18640 else if (glyph
->type
== COMPOSITE_GLYPH
)
18643 " %5"pD
"d %c %9"pI
"d %c %3d 0x%06x",
18644 glyph
- row
->glyphs
[TEXT_AREA
],
18647 (BUFFERP (glyph
->object
)
18649 : (STRINGP (glyph
->object
)
18651 : (NILP (glyph
->object
)
18654 glyph
->pixel_width
,
18656 if (glyph
->u
.cmp
.automatic
)
18659 glyph
->slice
.cmp
.from
, glyph
->slice
.cmp
.to
);
18660 fprintf (stderr
, " . %4d %1.1d%1.1d\n",
18662 glyph
->left_box_line_p
,
18663 glyph
->right_box_line_p
);
18665 #ifdef HAVE_XWIDGETS
18666 else if (glyph
->type
== XWIDGET_GLYPH
)
18669 " %5d %4c %6d %c %3d 0x%05x %c %4d %1.1d%1.1d\n",
18670 glyph
- row
->glyphs
[TEXT_AREA
],
18673 (BUFFERP (glyph
->object
)
18675 : (STRINGP (glyph
->object
)
18678 glyph
->pixel_width
,
18682 glyph
->left_box_line_p
,
18683 glyph
->right_box_line_p
);
18685 // printf("dump xwidget glyph\n");
18691 /* Dump the contents of glyph row at VPOS in MATRIX to stderr.
18692 GLYPHS 0 means don't show glyph contents.
18693 GLYPHS 1 means show glyphs in short form
18694 GLYPHS > 1 means show glyphs in long form. */
18697 dump_glyph_row (struct glyph_row
*row
, int vpos
, int glyphs
)
18701 fprintf (stderr
, "Row Start End Used oE><\\CTZFesm X Y W H V A P\n");
18702 fprintf (stderr
, "==============================================================================\n");
18704 fprintf (stderr
, "%3d %9"pI
"d %9"pI
"d %4d %1.1d%1.1d%1.1d%1.1d\
18705 %1.1d%1.1d%1.1d%1.1d%1.1d%1.1d%1.1d%1.1d %4d %4d %4d %4d %4d %4d %4d\n",
18707 MATRIX_ROW_START_CHARPOS (row
),
18708 MATRIX_ROW_END_CHARPOS (row
),
18709 row
->used
[TEXT_AREA
],
18710 row
->contains_overlapping_glyphs_p
,
18712 row
->truncated_on_left_p
,
18713 row
->truncated_on_right_p
,
18715 MATRIX_ROW_CONTINUATION_LINE_P (row
),
18716 MATRIX_ROW_DISPLAYS_TEXT_P (row
),
18719 row
->ends_in_middle_of_char_p
,
18720 row
->starts_in_middle_of_char_p
,
18726 row
->visible_height
,
18729 /* The next 3 lines should align to "Start" in the header. */
18730 fprintf (stderr
, " %9"pD
"d %9"pD
"d\t%5d\n", row
->start
.overlay_string_index
,
18731 row
->end
.overlay_string_index
,
18732 row
->continuation_lines_width
);
18733 fprintf (stderr
, " %9"pI
"d %9"pI
"d\n",
18734 CHARPOS (row
->start
.string_pos
),
18735 CHARPOS (row
->end
.string_pos
));
18736 fprintf (stderr
, " %9d %9d\n", row
->start
.dpvec_index
,
18737 row
->end
.dpvec_index
);
18744 for (area
= LEFT_MARGIN_AREA
; area
< LAST_AREA
; ++area
)
18746 struct glyph
*glyph
= row
->glyphs
[area
];
18747 struct glyph
*glyph_end
= glyph
+ row
->used
[area
];
18749 /* Glyph for a line end in text. */
18750 if (area
== TEXT_AREA
&& glyph
== glyph_end
&& glyph
->charpos
> 0)
18753 if (glyph
< glyph_end
)
18754 fprintf (stderr
, " Glyph# Type Pos O W Code C Face LR\n");
18756 for (; glyph
< glyph_end
; ++glyph
)
18757 dump_glyph (row
, glyph
, area
);
18760 else if (glyphs
== 1)
18763 char s
[SHRT_MAX
+ 4];
18765 for (area
= LEFT_MARGIN_AREA
; area
< LAST_AREA
; ++area
)
18769 for (i
= 0; i
< row
->used
[area
]; ++i
)
18771 struct glyph
*glyph
= row
->glyphs
[area
] + i
;
18772 if (i
== row
->used
[area
] - 1
18773 && area
== TEXT_AREA
18774 && NILP (glyph
->object
)
18775 && glyph
->type
== CHAR_GLYPH
18776 && glyph
->u
.ch
== ' ')
18778 strcpy (&s
[i
], "[\\n]");
18781 else if (glyph
->type
== CHAR_GLYPH
18782 && glyph
->u
.ch
< 0x80
18783 && glyph
->u
.ch
>= ' ')
18784 s
[i
] = glyph
->u
.ch
;
18790 fprintf (stderr
, "%3d: (%d) '%s'\n", vpos
, row
->enabled_p
, s
);
18796 DEFUN ("dump-glyph-matrix", Fdump_glyph_matrix
,
18797 Sdump_glyph_matrix
, 0, 1, "p",
18798 doc
: /* Dump the current matrix of the selected window to stderr.
18799 Shows contents of glyph row structures. With non-nil
18800 parameter GLYPHS, dump glyphs as well. If GLYPHS is 1 show
18801 glyphs in short form, otherwise show glyphs in long form.
18803 Interactively, no argument means show glyphs in short form;
18804 with numeric argument, its value is passed as the GLYPHS flag. */)
18805 (Lisp_Object glyphs
)
18807 struct window
*w
= XWINDOW (selected_window
);
18808 struct buffer
*buffer
= XBUFFER (w
->contents
);
18810 fprintf (stderr
, "PT = %"pI
"d, BEGV = %"pI
"d. ZV = %"pI
"d\n",
18811 BUF_PT (buffer
), BUF_BEGV (buffer
), BUF_ZV (buffer
));
18812 fprintf (stderr
, "Cursor x = %d, y = %d, hpos = %d, vpos = %d\n",
18813 w
->cursor
.x
, w
->cursor
.y
, w
->cursor
.hpos
, w
->cursor
.vpos
);
18814 fprintf (stderr
, "=============================================\n");
18815 dump_glyph_matrix (w
->current_matrix
,
18816 TYPE_RANGED_INTEGERP (int, glyphs
) ? XINT (glyphs
) : 0);
18821 DEFUN ("dump-frame-glyph-matrix", Fdump_frame_glyph_matrix
,
18822 Sdump_frame_glyph_matrix
, 0, 0, "", doc
: /* Dump the current glyph matrix of the selected frame to stderr.
18823 Only text-mode frames have frame glyph matrices. */)
18826 struct frame
*f
= XFRAME (selected_frame
);
18828 if (f
->current_matrix
)
18829 dump_glyph_matrix (f
->current_matrix
, 1);
18831 fprintf (stderr
, "*** This frame doesn't have a frame glyph matrix ***\n");
18836 DEFUN ("dump-glyph-row", Fdump_glyph_row
, Sdump_glyph_row
, 1, 2, "",
18837 doc
: /* Dump glyph row ROW to stderr.
18838 GLYPH 0 means don't dump glyphs.
18839 GLYPH 1 means dump glyphs in short form.
18840 GLYPH > 1 or omitted means dump glyphs in long form. */)
18841 (Lisp_Object row
, Lisp_Object glyphs
)
18843 struct glyph_matrix
*matrix
;
18846 CHECK_NUMBER (row
);
18847 matrix
= XWINDOW (selected_window
)->current_matrix
;
18849 if (vpos
>= 0 && vpos
< matrix
->nrows
)
18850 dump_glyph_row (MATRIX_ROW (matrix
, vpos
),
18852 TYPE_RANGED_INTEGERP (int, glyphs
) ? XINT (glyphs
) : 2);
18857 DEFUN ("dump-tool-bar-row", Fdump_tool_bar_row
, Sdump_tool_bar_row
, 1, 2, "",
18858 doc
: /* Dump glyph row ROW of the tool-bar of the current frame to stderr.
18859 GLYPH 0 means don't dump glyphs.
18860 GLYPH 1 means dump glyphs in short form.
18861 GLYPH > 1 or omitted means dump glyphs in long form.
18863 If there's no tool-bar, or if the tool-bar is not drawn by Emacs,
18865 (Lisp_Object row
, Lisp_Object glyphs
)
18867 #if defined (HAVE_WINDOW_SYSTEM) && ! defined (USE_GTK) && ! defined (HAVE_NS)
18868 struct frame
*sf
= SELECTED_FRAME ();
18869 struct glyph_matrix
*m
= XWINDOW (sf
->tool_bar_window
)->current_matrix
;
18872 CHECK_NUMBER (row
);
18874 if (vpos
>= 0 && vpos
< m
->nrows
)
18875 dump_glyph_row (MATRIX_ROW (m
, vpos
), vpos
,
18876 TYPE_RANGED_INTEGERP (int, glyphs
) ? XINT (glyphs
) : 2);
18882 DEFUN ("trace-redisplay", Ftrace_redisplay
, Strace_redisplay
, 0, 1, "P",
18883 doc
: /* Toggle tracing of redisplay.
18884 With ARG, turn tracing on if and only if ARG is positive. */)
18888 trace_redisplay_p
= !trace_redisplay_p
;
18891 arg
= Fprefix_numeric_value (arg
);
18892 trace_redisplay_p
= XINT (arg
) > 0;
18899 DEFUN ("trace-to-stderr", Ftrace_to_stderr
, Strace_to_stderr
, 1, MANY
, "",
18900 doc
: /* Like `format', but print result to stderr.
18901 usage: (trace-to-stderr STRING &rest OBJECTS) */)
18902 (ptrdiff_t nargs
, Lisp_Object
*args
)
18904 Lisp_Object s
= Fformat (nargs
, args
);
18905 fprintf (stderr
, "%s", SDATA (s
));
18909 #endif /* GLYPH_DEBUG */
18913 /***********************************************************************
18914 Building Desired Matrix Rows
18915 ***********************************************************************/
18917 /* Return a temporary glyph row holding the glyphs of an overlay arrow.
18918 Used for non-window-redisplay windows, and for windows w/o left fringe. */
18920 static struct glyph_row
*
18921 get_overlay_arrow_glyph_row (struct window
*w
, Lisp_Object overlay_arrow_string
)
18923 struct frame
*f
= XFRAME (WINDOW_FRAME (w
));
18924 struct buffer
*buffer
= XBUFFER (w
->contents
);
18925 struct buffer
*old
= current_buffer
;
18926 const unsigned char *arrow_string
= SDATA (overlay_arrow_string
);
18927 ptrdiff_t arrow_len
= SCHARS (overlay_arrow_string
);
18928 const unsigned char *arrow_end
= arrow_string
+ arrow_len
;
18929 const unsigned char *p
;
18932 int n_glyphs_before
;
18934 set_buffer_temp (buffer
);
18935 init_iterator (&it
, w
, -1, -1, &scratch_glyph_row
, DEFAULT_FACE_ID
);
18936 scratch_glyph_row
.reversed_p
= false;
18937 it
.glyph_row
->used
[TEXT_AREA
] = 0;
18938 SET_TEXT_POS (it
.position
, 0, 0);
18940 multibyte_p
= !NILP (BVAR (buffer
, enable_multibyte_characters
));
18942 while (p
< arrow_end
)
18944 Lisp_Object face
, ilisp
;
18946 /* Get the next character. */
18948 it
.c
= it
.char_to_display
= string_char_and_length (p
, &it
.len
);
18951 it
.c
= it
.char_to_display
= *p
, it
.len
= 1;
18952 if (! ASCII_CHAR_P (it
.c
))
18953 it
.char_to_display
= BYTE8_TO_CHAR (it
.c
);
18957 /* Get its face. */
18958 ilisp
= make_number (p
- arrow_string
);
18959 face
= Fget_text_property (ilisp
, Qface
, overlay_arrow_string
);
18960 it
.face_id
= compute_char_face (f
, it
.char_to_display
, face
);
18962 /* Compute its width, get its glyphs. */
18963 n_glyphs_before
= it
.glyph_row
->used
[TEXT_AREA
];
18964 SET_TEXT_POS (it
.position
, -1, -1);
18965 PRODUCE_GLYPHS (&it
);
18967 /* If this character doesn't fit any more in the line, we have
18968 to remove some glyphs. */
18969 if (it
.current_x
> it
.last_visible_x
)
18971 it
.glyph_row
->used
[TEXT_AREA
] = n_glyphs_before
;
18976 set_buffer_temp (old
);
18977 return it
.glyph_row
;
18981 /* Insert truncation glyphs at the start of IT->glyph_row. Which
18982 glyphs to insert is determined by produce_special_glyphs. */
18985 insert_left_trunc_glyphs (struct it
*it
)
18987 struct it truncate_it
;
18988 struct glyph
*from
, *end
, *to
, *toend
;
18990 eassert (!FRAME_WINDOW_P (it
->f
)
18991 || (!it
->glyph_row
->reversed_p
18992 && WINDOW_LEFT_FRINGE_WIDTH (it
->w
) == 0)
18993 || (it
->glyph_row
->reversed_p
18994 && WINDOW_RIGHT_FRINGE_WIDTH (it
->w
) == 0));
18996 /* Get the truncation glyphs. */
18998 truncate_it
.current_x
= 0;
18999 truncate_it
.face_id
= DEFAULT_FACE_ID
;
19000 truncate_it
.glyph_row
= &scratch_glyph_row
;
19001 truncate_it
.area
= TEXT_AREA
;
19002 truncate_it
.glyph_row
->used
[TEXT_AREA
] = 0;
19003 CHARPOS (truncate_it
.position
) = BYTEPOS (truncate_it
.position
) = -1;
19004 truncate_it
.object
= Qnil
;
19005 produce_special_glyphs (&truncate_it
, IT_TRUNCATION
);
19007 /* Overwrite glyphs from IT with truncation glyphs. */
19008 if (!it
->glyph_row
->reversed_p
)
19010 short tused
= truncate_it
.glyph_row
->used
[TEXT_AREA
];
19012 from
= truncate_it
.glyph_row
->glyphs
[TEXT_AREA
];
19013 end
= from
+ tused
;
19014 to
= it
->glyph_row
->glyphs
[TEXT_AREA
];
19015 toend
= to
+ it
->glyph_row
->used
[TEXT_AREA
];
19016 if (FRAME_WINDOW_P (it
->f
))
19018 /* On GUI frames, when variable-size fonts are displayed,
19019 the truncation glyphs may need more pixels than the row's
19020 glyphs they overwrite. We overwrite more glyphs to free
19021 enough screen real estate, and enlarge the stretch glyph
19022 on the right (see display_line), if there is one, to
19023 preserve the screen position of the truncation glyphs on
19026 struct glyph
*g
= to
;
19029 /* The first glyph could be partially visible, in which case
19030 it->glyph_row->x will be negative. But we want the left
19031 truncation glyphs to be aligned at the left margin of the
19032 window, so we override the x coordinate at which the row
19034 it
->glyph_row
->x
= 0;
19035 while (g
< toend
&& w
< it
->truncation_pixel_width
)
19037 w
+= g
->pixel_width
;
19040 if (g
- to
- tused
> 0)
19042 memmove (to
+ tused
, g
, (toend
- g
) * sizeof(*g
));
19043 it
->glyph_row
->used
[TEXT_AREA
] -= g
- to
- tused
;
19045 used
= it
->glyph_row
->used
[TEXT_AREA
];
19046 if (it
->glyph_row
->truncated_on_right_p
19047 && WINDOW_RIGHT_FRINGE_WIDTH (it
->w
) == 0
19048 && it
->glyph_row
->glyphs
[TEXT_AREA
][used
- 2].type
19051 int extra
= w
- it
->truncation_pixel_width
;
19053 it
->glyph_row
->glyphs
[TEXT_AREA
][used
- 2].pixel_width
+= extra
;
19060 /* There may be padding glyphs left over. Overwrite them too. */
19061 if (!FRAME_WINDOW_P (it
->f
))
19063 while (to
< toend
&& CHAR_GLYPH_PADDING_P (*to
))
19065 from
= truncate_it
.glyph_row
->glyphs
[TEXT_AREA
];
19072 it
->glyph_row
->used
[TEXT_AREA
] = to
- it
->glyph_row
->glyphs
[TEXT_AREA
];
19076 short tused
= truncate_it
.glyph_row
->used
[TEXT_AREA
];
19078 /* In R2L rows, overwrite the last (rightmost) glyphs, and do
19079 that back to front. */
19080 end
= truncate_it
.glyph_row
->glyphs
[TEXT_AREA
];
19081 from
= end
+ truncate_it
.glyph_row
->used
[TEXT_AREA
] - 1;
19082 toend
= it
->glyph_row
->glyphs
[TEXT_AREA
];
19083 to
= toend
+ it
->glyph_row
->used
[TEXT_AREA
] - 1;
19084 if (FRAME_WINDOW_P (it
->f
))
19087 struct glyph
*g
= to
;
19089 while (g
>= toend
&& w
< it
->truncation_pixel_width
)
19091 w
+= g
->pixel_width
;
19094 if (to
- g
- tused
> 0)
19096 if (it
->glyph_row
->truncated_on_right_p
19097 && WINDOW_LEFT_FRINGE_WIDTH (it
->w
) == 0
19098 && it
->glyph_row
->glyphs
[TEXT_AREA
][1].type
== STRETCH_GLYPH
)
19100 int extra
= w
- it
->truncation_pixel_width
;
19102 it
->glyph_row
->glyphs
[TEXT_AREA
][1].pixel_width
+= extra
;
19106 while (from
>= end
&& to
>= toend
)
19108 if (!FRAME_WINDOW_P (it
->f
))
19110 while (to
>= toend
&& CHAR_GLYPH_PADDING_P (*to
))
19113 truncate_it
.glyph_row
->glyphs
[TEXT_AREA
]
19114 + truncate_it
.glyph_row
->used
[TEXT_AREA
] - 1;
19115 while (from
>= end
&& to
>= toend
)
19121 /* Need to free some room before prepending additional
19123 int move_by
= from
- end
+ 1;
19124 struct glyph
*g0
= it
->glyph_row
->glyphs
[TEXT_AREA
];
19125 struct glyph
*g
= g0
+ it
->glyph_row
->used
[TEXT_AREA
] - 1;
19127 for ( ; g
>= g0
; g
--)
19129 while (from
>= end
)
19131 it
->glyph_row
->used
[TEXT_AREA
] += move_by
;
19136 /* Compute the hash code for ROW. */
19138 row_hash (struct glyph_row
*row
)
19141 unsigned hashval
= 0;
19143 for (area
= LEFT_MARGIN_AREA
; area
< LAST_AREA
; ++area
)
19144 for (k
= 0; k
< row
->used
[area
]; ++k
)
19145 hashval
= ((((hashval
<< 4) + (hashval
>> 24)) & 0x0fffffff)
19146 + row
->glyphs
[area
][k
].u
.val
19147 + row
->glyphs
[area
][k
].face_id
19148 + row
->glyphs
[area
][k
].padding_p
19149 + (row
->glyphs
[area
][k
].type
<< 2));
19154 /* Compute the pixel height and width of IT->glyph_row.
19156 Most of the time, ascent and height of a display line will be equal
19157 to the max_ascent and max_height values of the display iterator
19158 structure. This is not the case if
19160 1. We hit ZV without displaying anything. In this case, max_ascent
19161 and max_height will be zero.
19163 2. We have some glyphs that don't contribute to the line height.
19164 (The glyph row flag contributes_to_line_height_p is for future
19165 pixmap extensions).
19167 The first case is easily covered by using default values because in
19168 these cases, the line height does not really matter, except that it
19169 must not be zero. */
19172 compute_line_metrics (struct it
*it
)
19174 struct glyph_row
*row
= it
->glyph_row
;
19176 if (FRAME_WINDOW_P (it
->f
))
19178 int i
, min_y
, max_y
;
19180 /* The line may consist of one space only, that was added to
19181 place the cursor on it. If so, the row's height hasn't been
19183 if (row
->height
== 0)
19185 if (it
->max_ascent
+ it
->max_descent
== 0)
19186 it
->max_descent
= it
->max_phys_descent
= FRAME_LINE_HEIGHT (it
->f
);
19187 row
->ascent
= it
->max_ascent
;
19188 row
->height
= it
->max_ascent
+ it
->max_descent
;
19189 row
->phys_ascent
= it
->max_phys_ascent
;
19190 row
->phys_height
= it
->max_phys_ascent
+ it
->max_phys_descent
;
19191 row
->extra_line_spacing
= it
->max_extra_line_spacing
;
19194 /* Compute the width of this line. */
19195 row
->pixel_width
= row
->x
;
19196 for (i
= 0; i
< row
->used
[TEXT_AREA
]; ++i
)
19197 row
->pixel_width
+= row
->glyphs
[TEXT_AREA
][i
].pixel_width
;
19199 eassert (row
->pixel_width
>= 0);
19200 eassert (row
->ascent
>= 0 && row
->height
> 0);
19202 row
->overlapping_p
= (MATRIX_ROW_OVERLAPS_SUCC_P (row
)
19203 || MATRIX_ROW_OVERLAPS_PRED_P (row
));
19205 /* If first line's physical ascent is larger than its logical
19206 ascent, use the physical ascent, and make the row taller.
19207 This makes accented characters fully visible. */
19208 if (row
== MATRIX_FIRST_TEXT_ROW (it
->w
->desired_matrix
)
19209 && row
->phys_ascent
> row
->ascent
)
19211 row
->height
+= row
->phys_ascent
- row
->ascent
;
19212 row
->ascent
= row
->phys_ascent
;
19215 /* Compute how much of the line is visible. */
19216 row
->visible_height
= row
->height
;
19218 min_y
= WINDOW_HEADER_LINE_HEIGHT (it
->w
);
19219 max_y
= WINDOW_BOX_HEIGHT_NO_MODE_LINE (it
->w
);
19221 if (row
->y
< min_y
)
19222 row
->visible_height
-= min_y
- row
->y
;
19223 if (row
->y
+ row
->height
> max_y
)
19224 row
->visible_height
-= row
->y
+ row
->height
- max_y
;
19228 row
->pixel_width
= row
->used
[TEXT_AREA
];
19229 if (row
->continued_p
)
19230 row
->pixel_width
-= it
->continuation_pixel_width
;
19231 else if (row
->truncated_on_right_p
)
19232 row
->pixel_width
-= it
->truncation_pixel_width
;
19233 row
->ascent
= row
->phys_ascent
= 0;
19234 row
->height
= row
->phys_height
= row
->visible_height
= 1;
19235 row
->extra_line_spacing
= 0;
19238 /* Compute a hash code for this row. */
19239 row
->hash
= row_hash (row
);
19241 it
->max_ascent
= it
->max_descent
= 0;
19242 it
->max_phys_ascent
= it
->max_phys_descent
= 0;
19246 /* Append one space to the glyph row of iterator IT if doing a
19247 window-based redisplay. The space has the same face as
19248 IT->face_id. Value is non-zero if a space was added.
19250 This function is called to make sure that there is always one glyph
19251 at the end of a glyph row that the cursor can be set on under
19252 window-systems. (If there weren't such a glyph we would not know
19253 how wide and tall a box cursor should be displayed).
19255 At the same time this space let's a nicely handle clearing to the
19256 end of the line if the row ends in italic text. */
19259 append_space_for_newline (struct it
*it
, int default_face_p
)
19261 if (FRAME_WINDOW_P (it
->f
))
19263 int n
= it
->glyph_row
->used
[TEXT_AREA
];
19265 if (it
->glyph_row
->glyphs
[TEXT_AREA
] + n
19266 < it
->glyph_row
->glyphs
[1 + TEXT_AREA
])
19268 /* Save some values that must not be changed.
19269 Must save IT->c and IT->len because otherwise
19270 ITERATOR_AT_END_P wouldn't work anymore after
19271 append_space_for_newline has been called. */
19272 enum display_element_type saved_what
= it
->what
;
19273 int saved_c
= it
->c
, saved_len
= it
->len
;
19274 int saved_char_to_display
= it
->char_to_display
;
19275 int saved_x
= it
->current_x
;
19276 int saved_face_id
= it
->face_id
;
19277 int saved_box_end
= it
->end_of_box_run_p
;
19278 struct text_pos saved_pos
;
19279 Lisp_Object saved_object
;
19282 saved_object
= it
->object
;
19283 saved_pos
= it
->position
;
19285 it
->what
= IT_CHARACTER
;
19286 memset (&it
->position
, 0, sizeof it
->position
);
19288 it
->c
= it
->char_to_display
= ' ';
19291 /* If the default face was remapped, be sure to use the
19292 remapped face for the appended newline. */
19293 if (default_face_p
)
19294 it
->face_id
= lookup_basic_face (it
->f
, DEFAULT_FACE_ID
);
19295 else if (it
->face_before_selective_p
)
19296 it
->face_id
= it
->saved_face_id
;
19297 face
= FACE_FROM_ID (it
->f
, it
->face_id
);
19298 it
->face_id
= FACE_FOR_CHAR (it
->f
, face
, 0, -1, Qnil
);
19299 /* In R2L rows, we will prepend a stretch glyph that will
19300 have the end_of_box_run_p flag set for it, so there's no
19301 need for the appended newline glyph to have that flag
19303 if (it
->glyph_row
->reversed_p
19304 /* But if the appended newline glyph goes all the way to
19305 the end of the row, there will be no stretch glyph,
19306 so leave the box flag set. */
19307 && saved_x
+ FRAME_COLUMN_WIDTH (it
->f
) < it
->last_visible_x
)
19308 it
->end_of_box_run_p
= 0;
19310 PRODUCE_GLYPHS (it
);
19312 it
->override_ascent
= -1;
19313 it
->constrain_row_ascent_descent_p
= 0;
19314 it
->current_x
= saved_x
;
19315 it
->object
= saved_object
;
19316 it
->position
= saved_pos
;
19317 it
->what
= saved_what
;
19318 it
->face_id
= saved_face_id
;
19319 it
->len
= saved_len
;
19321 it
->char_to_display
= saved_char_to_display
;
19322 it
->end_of_box_run_p
= saved_box_end
;
19331 /* Extend the face of the last glyph in the text area of IT->glyph_row
19332 to the end of the display line. Called from display_line. If the
19333 glyph row is empty, add a space glyph to it so that we know the
19334 face to draw. Set the glyph row flag fill_line_p. If the glyph
19335 row is R2L, prepend a stretch glyph to cover the empty space to the
19336 left of the leftmost glyph. */
19339 extend_face_to_end_of_line (struct it
*it
)
19341 struct face
*face
, *default_face
;
19342 struct frame
*f
= it
->f
;
19344 /* If line is already filled, do nothing. Non window-system frames
19345 get a grace of one more ``pixel'' because their characters are
19346 1-``pixel'' wide, so they hit the equality too early. This grace
19347 is needed only for R2L rows that are not continued, to produce
19348 one extra blank where we could display the cursor. */
19349 if ((it
->current_x
>= it
->last_visible_x
19350 + (!FRAME_WINDOW_P (f
)
19351 && it
->glyph_row
->reversed_p
19352 && !it
->glyph_row
->continued_p
))
19353 /* If the window has display margins, we will need to extend
19354 their face even if the text area is filled. */
19355 && !(WINDOW_LEFT_MARGIN_WIDTH (it
->w
) > 0
19356 || WINDOW_RIGHT_MARGIN_WIDTH (it
->w
) > 0))
19359 /* The default face, possibly remapped. */
19360 default_face
= FACE_FROM_ID (f
, lookup_basic_face (f
, DEFAULT_FACE_ID
));
19362 /* Face extension extends the background and box of IT->face_id
19363 to the end of the line. If the background equals the background
19364 of the frame, we don't have to do anything. */
19365 if (it
->face_before_selective_p
)
19366 face
= FACE_FROM_ID (f
, it
->saved_face_id
);
19368 face
= FACE_FROM_ID (f
, it
->face_id
);
19370 if (FRAME_WINDOW_P (f
)
19371 && MATRIX_ROW_DISPLAYS_TEXT_P (it
->glyph_row
)
19372 && face
->box
== FACE_NO_BOX
19373 && face
->background
== FRAME_BACKGROUND_PIXEL (f
)
19374 #ifdef HAVE_WINDOW_SYSTEM
19377 && !it
->glyph_row
->reversed_p
)
19380 /* Set the glyph row flag indicating that the face of the last glyph
19381 in the text area has to be drawn to the end of the text area. */
19382 it
->glyph_row
->fill_line_p
= 1;
19384 /* If current character of IT is not ASCII, make sure we have the
19385 ASCII face. This will be automatically undone the next time
19386 get_next_display_element returns a multibyte character. Note
19387 that the character will always be single byte in unibyte
19389 if (!ASCII_CHAR_P (it
->c
))
19391 it
->face_id
= FACE_FOR_CHAR (f
, face
, 0, -1, Qnil
);
19394 if (FRAME_WINDOW_P (f
))
19396 /* If the row is empty, add a space with the current face of IT,
19397 so that we know which face to draw. */
19398 if (it
->glyph_row
->used
[TEXT_AREA
] == 0)
19400 it
->glyph_row
->glyphs
[TEXT_AREA
][0] = space_glyph
;
19401 it
->glyph_row
->glyphs
[TEXT_AREA
][0].face_id
= face
->id
;
19402 it
->glyph_row
->used
[TEXT_AREA
] = 1;
19404 /* Mode line and the header line don't have margins, and
19405 likewise the frame's tool-bar window, if there is any. */
19406 if (!(it
->glyph_row
->mode_line_p
19407 #if defined (HAVE_WINDOW_SYSTEM) && ! defined (USE_GTK) && ! defined (HAVE_NS)
19408 || (WINDOWP (f
->tool_bar_window
)
19409 && it
->w
== XWINDOW (f
->tool_bar_window
))
19413 if (WINDOW_LEFT_MARGIN_WIDTH (it
->w
) > 0
19414 && it
->glyph_row
->used
[LEFT_MARGIN_AREA
] == 0)
19416 it
->glyph_row
->glyphs
[LEFT_MARGIN_AREA
][0] = space_glyph
;
19417 it
->glyph_row
->glyphs
[LEFT_MARGIN_AREA
][0].face_id
=
19419 it
->glyph_row
->used
[LEFT_MARGIN_AREA
] = 1;
19421 if (WINDOW_RIGHT_MARGIN_WIDTH (it
->w
) > 0
19422 && it
->glyph_row
->used
[RIGHT_MARGIN_AREA
] == 0)
19424 it
->glyph_row
->glyphs
[RIGHT_MARGIN_AREA
][0] = space_glyph
;
19425 it
->glyph_row
->glyphs
[RIGHT_MARGIN_AREA
][0].face_id
=
19427 it
->glyph_row
->used
[RIGHT_MARGIN_AREA
] = 1;
19430 #ifdef HAVE_WINDOW_SYSTEM
19431 if (it
->glyph_row
->reversed_p
)
19433 /* Prepend a stretch glyph to the row, such that the
19434 rightmost glyph will be drawn flushed all the way to the
19435 right margin of the window. The stretch glyph that will
19436 occupy the empty space, if any, to the left of the
19438 struct font
*font
= face
->font
? face
->font
: FRAME_FONT (f
);
19439 struct glyph
*row_start
= it
->glyph_row
->glyphs
[TEXT_AREA
];
19440 struct glyph
*row_end
= row_start
+ it
->glyph_row
->used
[TEXT_AREA
];
19442 int row_width
, stretch_ascent
, stretch_width
;
19443 struct text_pos saved_pos
;
19444 int saved_face_id
, saved_avoid_cursor
, saved_box_start
;
19446 for (row_width
= 0, g
= row_start
; g
< row_end
; g
++)
19447 row_width
+= g
->pixel_width
;
19449 /* FIXME: There are various minor display glitches in R2L
19450 rows when only one of the fringes is missing. The
19451 strange condition below produces the least bad effect. */
19452 if ((WINDOW_LEFT_FRINGE_WIDTH (it
->w
) == 0)
19453 == (WINDOW_RIGHT_FRINGE_WIDTH (it
->w
) == 0)
19454 || WINDOW_RIGHT_FRINGE_WIDTH (it
->w
) != 0)
19455 stretch_width
= window_box_width (it
->w
, TEXT_AREA
);
19457 stretch_width
= it
->last_visible_x
- it
->first_visible_x
;
19458 stretch_width
-= row_width
;
19460 if (stretch_width
> 0)
19463 (((it
->ascent
+ it
->descent
)
19464 * FONT_BASE (font
)) / FONT_HEIGHT (font
));
19465 saved_pos
= it
->position
;
19466 memset (&it
->position
, 0, sizeof it
->position
);
19467 saved_avoid_cursor
= it
->avoid_cursor_p
;
19468 it
->avoid_cursor_p
= 1;
19469 saved_face_id
= it
->face_id
;
19470 saved_box_start
= it
->start_of_box_run_p
;
19471 /* The last row's stretch glyph should get the default
19472 face, to avoid painting the rest of the window with
19473 the region face, if the region ends at ZV. */
19474 if (it
->glyph_row
->ends_at_zv_p
)
19475 it
->face_id
= default_face
->id
;
19477 it
->face_id
= face
->id
;
19478 it
->start_of_box_run_p
= 0;
19479 append_stretch_glyph (it
, Qnil
, stretch_width
,
19480 it
->ascent
+ it
->descent
, stretch_ascent
);
19481 it
->position
= saved_pos
;
19482 it
->avoid_cursor_p
= saved_avoid_cursor
;
19483 it
->face_id
= saved_face_id
;
19484 it
->start_of_box_run_p
= saved_box_start
;
19486 /* If stretch_width comes out negative, it means that the
19487 last glyph is only partially visible. In R2L rows, we
19488 want the leftmost glyph to be partially visible, so we
19489 need to give the row the corresponding left offset. */
19490 if (stretch_width
< 0)
19491 it
->glyph_row
->x
= stretch_width
;
19493 #endif /* HAVE_WINDOW_SYSTEM */
19497 /* Save some values that must not be changed. */
19498 int saved_x
= it
->current_x
;
19499 struct text_pos saved_pos
;
19500 Lisp_Object saved_object
;
19501 enum display_element_type saved_what
= it
->what
;
19502 int saved_face_id
= it
->face_id
;
19504 saved_object
= it
->object
;
19505 saved_pos
= it
->position
;
19507 it
->what
= IT_CHARACTER
;
19508 memset (&it
->position
, 0, sizeof it
->position
);
19510 it
->c
= it
->char_to_display
= ' ';
19513 if (WINDOW_LEFT_MARGIN_WIDTH (it
->w
) > 0
19514 && (it
->glyph_row
->used
[LEFT_MARGIN_AREA
]
19515 < WINDOW_LEFT_MARGIN_WIDTH (it
->w
))
19516 && !it
->glyph_row
->mode_line_p
19517 && default_face
->background
!= FRAME_BACKGROUND_PIXEL (f
))
19519 struct glyph
*g
= it
->glyph_row
->glyphs
[LEFT_MARGIN_AREA
];
19520 struct glyph
*e
= g
+ it
->glyph_row
->used
[LEFT_MARGIN_AREA
];
19522 for (it
->current_x
= 0; g
< e
; g
++)
19523 it
->current_x
+= g
->pixel_width
;
19525 it
->area
= LEFT_MARGIN_AREA
;
19526 it
->face_id
= default_face
->id
;
19527 while (it
->glyph_row
->used
[LEFT_MARGIN_AREA
]
19528 < WINDOW_LEFT_MARGIN_WIDTH (it
->w
))
19530 PRODUCE_GLYPHS (it
);
19531 /* term.c:produce_glyphs advances it->current_x only for
19533 it
->current_x
+= it
->pixel_width
;
19536 it
->current_x
= saved_x
;
19537 it
->area
= TEXT_AREA
;
19540 /* The last row's blank glyphs should get the default face, to
19541 avoid painting the rest of the window with the region face,
19542 if the region ends at ZV. */
19543 if (it
->glyph_row
->ends_at_zv_p
)
19544 it
->face_id
= default_face
->id
;
19546 it
->face_id
= face
->id
;
19547 PRODUCE_GLYPHS (it
);
19549 while (it
->current_x
<= it
->last_visible_x
)
19550 PRODUCE_GLYPHS (it
);
19552 if (WINDOW_RIGHT_MARGIN_WIDTH (it
->w
) > 0
19553 && (it
->glyph_row
->used
[RIGHT_MARGIN_AREA
]
19554 < WINDOW_RIGHT_MARGIN_WIDTH (it
->w
))
19555 && !it
->glyph_row
->mode_line_p
19556 && default_face
->background
!= FRAME_BACKGROUND_PIXEL (f
))
19558 struct glyph
*g
= it
->glyph_row
->glyphs
[RIGHT_MARGIN_AREA
];
19559 struct glyph
*e
= g
+ it
->glyph_row
->used
[RIGHT_MARGIN_AREA
];
19561 for ( ; g
< e
; g
++)
19562 it
->current_x
+= g
->pixel_width
;
19564 it
->area
= RIGHT_MARGIN_AREA
;
19565 it
->face_id
= default_face
->id
;
19566 while (it
->glyph_row
->used
[RIGHT_MARGIN_AREA
]
19567 < WINDOW_RIGHT_MARGIN_WIDTH (it
->w
))
19569 PRODUCE_GLYPHS (it
);
19570 it
->current_x
+= it
->pixel_width
;
19573 it
->area
= TEXT_AREA
;
19576 /* Don't count these blanks really. It would let us insert a left
19577 truncation glyph below and make us set the cursor on them, maybe. */
19578 it
->current_x
= saved_x
;
19579 it
->object
= saved_object
;
19580 it
->position
= saved_pos
;
19581 it
->what
= saved_what
;
19582 it
->face_id
= saved_face_id
;
19587 /* Value is non-zero if text starting at CHARPOS in current_buffer is
19588 trailing whitespace. */
19591 trailing_whitespace_p (ptrdiff_t charpos
)
19593 ptrdiff_t bytepos
= CHAR_TO_BYTE (charpos
);
19596 while (bytepos
< ZV_BYTE
19597 && (c
= FETCH_CHAR (bytepos
),
19598 c
== ' ' || c
== '\t'))
19601 if (bytepos
>= ZV_BYTE
|| c
== '\n' || c
== '\r')
19603 if (bytepos
!= PT_BYTE
)
19610 /* Highlight trailing whitespace, if any, in ROW. */
19613 highlight_trailing_whitespace (struct frame
*f
, struct glyph_row
*row
)
19615 int used
= row
->used
[TEXT_AREA
];
19619 struct glyph
*start
= row
->glyphs
[TEXT_AREA
];
19620 struct glyph
*glyph
= start
+ used
- 1;
19622 if (row
->reversed_p
)
19624 /* Right-to-left rows need to be processed in the opposite
19625 direction, so swap the edge pointers. */
19627 start
= row
->glyphs
[TEXT_AREA
] + used
- 1;
19630 /* Skip over glyphs inserted to display the cursor at the
19631 end of a line, for extending the face of the last glyph
19632 to the end of the line on terminals, and for truncation
19633 and continuation glyphs. */
19634 if (!row
->reversed_p
)
19636 while (glyph
>= start
19637 && glyph
->type
== CHAR_GLYPH
19638 && NILP (glyph
->object
))
19643 while (glyph
<= start
19644 && glyph
->type
== CHAR_GLYPH
19645 && NILP (glyph
->object
))
19649 /* If last glyph is a space or stretch, and it's trailing
19650 whitespace, set the face of all trailing whitespace glyphs in
19651 IT->glyph_row to `trailing-whitespace'. */
19652 if ((row
->reversed_p
? glyph
<= start
: glyph
>= start
)
19653 && BUFFERP (glyph
->object
)
19654 && (glyph
->type
== STRETCH_GLYPH
19655 || (glyph
->type
== CHAR_GLYPH
19656 && glyph
->u
.ch
== ' '))
19657 && trailing_whitespace_p (glyph
->charpos
))
19659 int face_id
= lookup_named_face (f
, Qtrailing_whitespace
, 0);
19663 if (!row
->reversed_p
)
19665 while (glyph
>= start
19666 && BUFFERP (glyph
->object
)
19667 && (glyph
->type
== STRETCH_GLYPH
19668 || (glyph
->type
== CHAR_GLYPH
19669 && glyph
->u
.ch
== ' ')))
19670 (glyph
--)->face_id
= face_id
;
19674 while (glyph
<= start
19675 && BUFFERP (glyph
->object
)
19676 && (glyph
->type
== STRETCH_GLYPH
19677 || (glyph
->type
== CHAR_GLYPH
19678 && glyph
->u
.ch
== ' ')))
19679 (glyph
++)->face_id
= face_id
;
19686 /* Value is non-zero if glyph row ROW should be
19687 considered to hold the buffer position CHARPOS. */
19690 row_for_charpos_p (struct glyph_row
*row
, ptrdiff_t charpos
)
19694 if (charpos
== CHARPOS (row
->end
.pos
)
19695 || charpos
== MATRIX_ROW_END_CHARPOS (row
))
19697 /* Suppose the row ends on a string.
19698 Unless the row is continued, that means it ends on a newline
19699 in the string. If it's anything other than a display string
19700 (e.g., a before-string from an overlay), we don't want the
19701 cursor there. (This heuristic seems to give the optimal
19702 behavior for the various types of multi-line strings.)
19703 One exception: if the string has `cursor' property on one of
19704 its characters, we _do_ want the cursor there. */
19705 if (CHARPOS (row
->end
.string_pos
) >= 0)
19707 if (row
->continued_p
)
19711 /* Check for `display' property. */
19712 struct glyph
*beg
= row
->glyphs
[TEXT_AREA
];
19713 struct glyph
*end
= beg
+ row
->used
[TEXT_AREA
] - 1;
19714 struct glyph
*glyph
;
19717 for (glyph
= end
; glyph
>= beg
; --glyph
)
19718 if (STRINGP (glyph
->object
))
19721 = Fget_char_property (make_number (charpos
),
19725 && display_prop_string_p (prop
, glyph
->object
));
19726 /* If there's a `cursor' property on one of the
19727 string's characters, this row is a cursor row,
19728 even though this is not a display string. */
19731 Lisp_Object s
= glyph
->object
;
19733 for ( ; glyph
>= beg
&& EQ (glyph
->object
, s
); --glyph
)
19735 ptrdiff_t gpos
= glyph
->charpos
;
19737 if (!NILP (Fget_char_property (make_number (gpos
),
19749 else if (MATRIX_ROW_ENDS_IN_MIDDLE_OF_CHAR_P (row
))
19751 /* If the row ends in middle of a real character,
19752 and the line is continued, we want the cursor here.
19753 That's because CHARPOS (ROW->end.pos) would equal
19754 PT if PT is before the character. */
19755 if (!row
->ends_in_ellipsis_p
)
19756 result
= row
->continued_p
;
19758 /* If the row ends in an ellipsis, then
19759 CHARPOS (ROW->end.pos) will equal point after the
19760 invisible text. We want that position to be displayed
19761 after the ellipsis. */
19764 /* If the row ends at ZV, display the cursor at the end of that
19765 row instead of at the start of the row below. */
19766 else if (row
->ends_at_zv_p
)
19775 /* Value is non-zero if glyph row ROW should be
19776 used to hold the cursor. */
19779 cursor_row_p (struct glyph_row
*row
)
19781 return row_for_charpos_p (row
, PT
);
19786 /* Push the property PROP so that it will be rendered at the current
19787 position in IT. Return 1 if PROP was successfully pushed, 0
19788 otherwise. Called from handle_line_prefix to handle the
19789 `line-prefix' and `wrap-prefix' properties. */
19792 push_prefix_prop (struct it
*it
, Lisp_Object prop
)
19794 struct text_pos pos
=
19795 STRINGP (it
->string
) ? it
->current
.string_pos
: it
->current
.pos
;
19797 eassert (it
->method
== GET_FROM_BUFFER
19798 || it
->method
== GET_FROM_DISPLAY_VECTOR
19799 || it
->method
== GET_FROM_STRING
);
19801 /* We need to save the current buffer/string position, so it will be
19802 restored by pop_it, because iterate_out_of_display_property
19803 depends on that being set correctly, but some situations leave
19804 it->position not yet set when this function is called. */
19805 push_it (it
, &pos
);
19807 if (STRINGP (prop
))
19809 if (SCHARS (prop
) == 0)
19816 it
->string_from_prefix_prop_p
= 1;
19817 it
->multibyte_p
= STRING_MULTIBYTE (it
->string
);
19818 it
->current
.overlay_string_index
= -1;
19819 IT_STRING_CHARPOS (*it
) = IT_STRING_BYTEPOS (*it
) = 0;
19820 it
->end_charpos
= it
->string_nchars
= SCHARS (it
->string
);
19821 it
->method
= GET_FROM_STRING
;
19822 it
->stop_charpos
= 0;
19824 it
->base_level_stop
= 0;
19826 /* Force paragraph direction to be that of the parent
19828 if (it
->bidi_p
&& it
->bidi_it
.paragraph_dir
== R2L
)
19829 it
->paragraph_embedding
= it
->bidi_it
.paragraph_dir
;
19831 it
->paragraph_embedding
= L2R
;
19833 /* Set up the bidi iterator for this display string. */
19836 it
->bidi_it
.string
.lstring
= it
->string
;
19837 it
->bidi_it
.string
.s
= NULL
;
19838 it
->bidi_it
.string
.schars
= it
->end_charpos
;
19839 it
->bidi_it
.string
.bufpos
= IT_CHARPOS (*it
);
19840 it
->bidi_it
.string
.from_disp_str
= it
->string_from_display_prop_p
;
19841 it
->bidi_it
.string
.unibyte
= !it
->multibyte_p
;
19842 it
->bidi_it
.w
= it
->w
;
19843 bidi_init_it (0, 0, FRAME_WINDOW_P (it
->f
), &it
->bidi_it
);
19846 else if (CONSP (prop
) && EQ (XCAR (prop
), Qspace
))
19848 it
->method
= GET_FROM_STRETCH
;
19851 #ifdef HAVE_WINDOW_SYSTEM
19852 else if (IMAGEP (prop
))
19854 it
->what
= IT_IMAGE
;
19855 it
->image_id
= lookup_image (it
->f
, prop
);
19856 it
->method
= GET_FROM_IMAGE
;
19858 #endif /* HAVE_WINDOW_SYSTEM */
19861 pop_it (it
); /* bogus display property, give up */
19868 /* Return the character-property PROP at the current position in IT. */
19871 get_it_property (struct it
*it
, Lisp_Object prop
)
19873 Lisp_Object position
, object
= it
->object
;
19875 if (STRINGP (object
))
19876 position
= make_number (IT_STRING_CHARPOS (*it
));
19877 else if (BUFFERP (object
))
19879 position
= make_number (IT_CHARPOS (*it
));
19880 object
= it
->window
;
19885 return Fget_char_property (position
, prop
, object
);
19888 /* See if there's a line- or wrap-prefix, and if so, push it on IT. */
19891 handle_line_prefix (struct it
*it
)
19893 Lisp_Object prefix
;
19895 if (it
->continuation_lines_width
> 0)
19897 prefix
= get_it_property (it
, Qwrap_prefix
);
19899 prefix
= Vwrap_prefix
;
19903 prefix
= get_it_property (it
, Qline_prefix
);
19905 prefix
= Vline_prefix
;
19907 if (! NILP (prefix
) && push_prefix_prop (it
, prefix
))
19909 /* If the prefix is wider than the window, and we try to wrap
19910 it, it would acquire its own wrap prefix, and so on till the
19911 iterator stack overflows. So, don't wrap the prefix. */
19912 it
->line_wrap
= TRUNCATE
;
19913 it
->avoid_cursor_p
= 1;
19919 /* Remove N glyphs at the start of a reversed IT->glyph_row. Called
19920 only for R2L lines from display_line and display_string, when they
19921 decide that too many glyphs were produced by PRODUCE_GLYPHS, and
19922 the line/string needs to be continued on the next glyph row. */
19924 unproduce_glyphs (struct it
*it
, int n
)
19926 struct glyph
*glyph
, *end
;
19928 eassert (it
->glyph_row
);
19929 eassert (it
->glyph_row
->reversed_p
);
19930 eassert (it
->area
== TEXT_AREA
);
19931 eassert (n
<= it
->glyph_row
->used
[TEXT_AREA
]);
19933 if (n
> it
->glyph_row
->used
[TEXT_AREA
])
19934 n
= it
->glyph_row
->used
[TEXT_AREA
];
19935 glyph
= it
->glyph_row
->glyphs
[TEXT_AREA
] + n
;
19936 end
= it
->glyph_row
->glyphs
[TEXT_AREA
] + it
->glyph_row
->used
[TEXT_AREA
];
19937 for ( ; glyph
< end
; glyph
++)
19938 glyph
[-n
] = *glyph
;
19941 /* Find the positions in a bidi-reordered ROW to serve as ROW->minpos
19942 and ROW->maxpos. */
19944 find_row_edges (struct it
*it
, struct glyph_row
*row
,
19945 ptrdiff_t min_pos
, ptrdiff_t min_bpos
,
19946 ptrdiff_t max_pos
, ptrdiff_t max_bpos
)
19948 /* FIXME: Revisit this when glyph ``spilling'' in continuation
19949 lines' rows is implemented for bidi-reordered rows. */
19951 /* ROW->minpos is the value of min_pos, the minimal buffer position
19952 we have in ROW, or ROW->start.pos if that is smaller. */
19953 if (min_pos
<= ZV
&& min_pos
< row
->start
.pos
.charpos
)
19954 SET_TEXT_POS (row
->minpos
, min_pos
, min_bpos
);
19956 /* We didn't find buffer positions smaller than ROW->start, or
19957 didn't find _any_ valid buffer positions in any of the glyphs,
19958 so we must trust the iterator's computed positions. */
19959 row
->minpos
= row
->start
.pos
;
19962 max_pos
= CHARPOS (it
->current
.pos
);
19963 max_bpos
= BYTEPOS (it
->current
.pos
);
19966 /* Here are the various use-cases for ending the row, and the
19967 corresponding values for ROW->maxpos:
19969 Line ends in a newline from buffer eol_pos + 1
19970 Line is continued from buffer max_pos + 1
19971 Line is truncated on right it->current.pos
19972 Line ends in a newline from string max_pos + 1(*)
19973 (*) + 1 only when line ends in a forward scan
19974 Line is continued from string max_pos
19975 Line is continued from display vector max_pos
19976 Line is entirely from a string min_pos == max_pos
19977 Line is entirely from a display vector min_pos == max_pos
19978 Line that ends at ZV ZV
19980 If you discover other use-cases, please add them here as
19982 if (row
->ends_at_zv_p
)
19983 row
->maxpos
= it
->current
.pos
;
19984 else if (row
->used
[TEXT_AREA
])
19986 int seen_this_string
= 0;
19987 struct glyph_row
*r1
= row
- 1;
19989 /* Did we see the same display string on the previous row? */
19990 if (STRINGP (it
->object
)
19991 /* this is not the first row */
19992 && row
> it
->w
->desired_matrix
->rows
19993 /* previous row is not the header line */
19994 && !r1
->mode_line_p
19995 /* previous row also ends in a newline from a string */
19996 && r1
->ends_in_newline_from_string_p
)
19998 struct glyph
*start
, *end
;
20000 /* Search for the last glyph of the previous row that came
20001 from buffer or string. Depending on whether the row is
20002 L2R or R2L, we need to process it front to back or the
20003 other way round. */
20004 if (!r1
->reversed_p
)
20006 start
= r1
->glyphs
[TEXT_AREA
];
20007 end
= start
+ r1
->used
[TEXT_AREA
];
20008 /* Glyphs inserted by redisplay have nil as their object. */
20010 && NILP ((end
- 1)->object
)
20011 && (end
- 1)->charpos
<= 0)
20015 if (EQ ((end
- 1)->object
, it
->object
))
20016 seen_this_string
= 1;
20019 /* If all the glyphs of the previous row were inserted
20020 by redisplay, it means the previous row was
20021 produced from a single newline, which is only
20022 possible if that newline came from the same string
20023 as the one which produced this ROW. */
20024 seen_this_string
= 1;
20028 end
= r1
->glyphs
[TEXT_AREA
] - 1;
20029 start
= end
+ r1
->used
[TEXT_AREA
];
20031 && NILP ((end
+ 1)->object
)
20032 && (end
+ 1)->charpos
<= 0)
20036 if (EQ ((end
+ 1)->object
, it
->object
))
20037 seen_this_string
= 1;
20040 seen_this_string
= 1;
20043 /* Take note of each display string that covers a newline only
20044 once, the first time we see it. This is for when a display
20045 string includes more than one newline in it. */
20046 if (row
->ends_in_newline_from_string_p
&& !seen_this_string
)
20048 /* If we were scanning the buffer forward when we displayed
20049 the string, we want to account for at least one buffer
20050 position that belongs to this row (position covered by
20051 the display string), so that cursor positioning will
20052 consider this row as a candidate when point is at the end
20053 of the visual line represented by this row. This is not
20054 required when scanning back, because max_pos will already
20055 have a much larger value. */
20056 if (CHARPOS (row
->end
.pos
) > max_pos
)
20057 INC_BOTH (max_pos
, max_bpos
);
20058 SET_TEXT_POS (row
->maxpos
, max_pos
, max_bpos
);
20060 else if (CHARPOS (it
->eol_pos
) > 0)
20061 SET_TEXT_POS (row
->maxpos
,
20062 CHARPOS (it
->eol_pos
) + 1, BYTEPOS (it
->eol_pos
) + 1);
20063 else if (row
->continued_p
)
20065 /* If max_pos is different from IT's current position, it
20066 means IT->method does not belong to the display element
20067 at max_pos. However, it also means that the display
20068 element at max_pos was displayed in its entirety on this
20069 line, which is equivalent to saying that the next line
20070 starts at the next buffer position. */
20071 if (IT_CHARPOS (*it
) == max_pos
&& it
->method
!= GET_FROM_BUFFER
)
20072 SET_TEXT_POS (row
->maxpos
, max_pos
, max_bpos
);
20075 INC_BOTH (max_pos
, max_bpos
);
20076 SET_TEXT_POS (row
->maxpos
, max_pos
, max_bpos
);
20079 else if (row
->truncated_on_right_p
)
20080 /* display_line already called reseat_at_next_visible_line_start,
20081 which puts the iterator at the beginning of the next line, in
20082 the logical order. */
20083 row
->maxpos
= it
->current
.pos
;
20084 else if (max_pos
== min_pos
&& it
->method
!= GET_FROM_BUFFER
)
20085 /* A line that is entirely from a string/image/stretch... */
20086 row
->maxpos
= row
->minpos
;
20091 row
->maxpos
= it
->current
.pos
;
20094 /* Construct the glyph row IT->glyph_row in the desired matrix of
20095 IT->w from text at the current position of IT. See dispextern.h
20096 for an overview of struct it. Value is non-zero if
20097 IT->glyph_row displays text, as opposed to a line displaying ZV
20101 display_line (struct it
*it
)
20103 struct glyph_row
*row
= it
->glyph_row
;
20104 Lisp_Object overlay_arrow_string
;
20106 void *wrap_data
= NULL
;
20107 int may_wrap
= 0, wrap_x
IF_LINT (= 0);
20108 int wrap_row_used
= -1;
20109 int wrap_row_ascent
IF_LINT (= 0), wrap_row_height
IF_LINT (= 0);
20110 int wrap_row_phys_ascent
IF_LINT (= 0), wrap_row_phys_height
IF_LINT (= 0);
20111 int wrap_row_extra_line_spacing
IF_LINT (= 0);
20112 ptrdiff_t wrap_row_min_pos
IF_LINT (= 0), wrap_row_min_bpos
IF_LINT (= 0);
20113 ptrdiff_t wrap_row_max_pos
IF_LINT (= 0), wrap_row_max_bpos
IF_LINT (= 0);
20115 ptrdiff_t min_pos
= ZV
+ 1, max_pos
= 0;
20116 ptrdiff_t min_bpos
IF_LINT (= 0), max_bpos
IF_LINT (= 0);
20117 bool pending_handle_line_prefix
= false;
20119 /* We always start displaying at hpos zero even if hscrolled. */
20120 eassert (it
->hpos
== 0 && it
->current_x
== 0);
20122 if (MATRIX_ROW_VPOS (row
, it
->w
->desired_matrix
)
20123 >= it
->w
->desired_matrix
->nrows
)
20125 it
->w
->nrows_scale_factor
++;
20126 it
->f
->fonts_changed
= 1;
20130 /* Clear the result glyph row and enable it. */
20131 prepare_desired_row (it
->w
, row
, false);
20133 row
->y
= it
->current_y
;
20134 row
->start
= it
->start
;
20135 row
->continuation_lines_width
= it
->continuation_lines_width
;
20136 row
->displays_text_p
= 1;
20137 row
->starts_in_middle_of_char_p
= it
->starts_in_middle_of_char_p
;
20138 it
->starts_in_middle_of_char_p
= 0;
20140 /* Arrange the overlays nicely for our purposes. Usually, we call
20141 display_line on only one line at a time, in which case this
20142 can't really hurt too much, or we call it on lines which appear
20143 one after another in the buffer, in which case all calls to
20144 recenter_overlay_lists but the first will be pretty cheap. */
20145 recenter_overlay_lists (current_buffer
, IT_CHARPOS (*it
));
20147 /* Move over display elements that are not visible because we are
20148 hscrolled. This may stop at an x-position < IT->first_visible_x
20149 if the first glyph is partially visible or if we hit a line end. */
20150 if (it
->current_x
< it
->first_visible_x
)
20152 enum move_it_result move_result
;
20154 this_line_min_pos
= row
->start
.pos
;
20155 move_result
= move_it_in_display_line_to (it
, ZV
, it
->first_visible_x
,
20156 MOVE_TO_POS
| MOVE_TO_X
);
20157 /* If we are under a large hscroll, move_it_in_display_line_to
20158 could hit the end of the line without reaching
20159 it->first_visible_x. Pretend that we did reach it. This is
20160 especially important on a TTY, where we will call
20161 extend_face_to_end_of_line, which needs to know how many
20162 blank glyphs to produce. */
20163 if (it
->current_x
< it
->first_visible_x
20164 && (move_result
== MOVE_NEWLINE_OR_CR
20165 || move_result
== MOVE_POS_MATCH_OR_ZV
))
20166 it
->current_x
= it
->first_visible_x
;
20168 /* Record the smallest positions seen while we moved over
20169 display elements that are not visible. This is needed by
20170 redisplay_internal for optimizing the case where the cursor
20171 stays inside the same line. The rest of this function only
20172 considers positions that are actually displayed, so
20173 RECORD_MAX_MIN_POS will not otherwise record positions that
20174 are hscrolled to the left of the left edge of the window. */
20175 min_pos
= CHARPOS (this_line_min_pos
);
20176 min_bpos
= BYTEPOS (this_line_min_pos
);
20178 else if (it
->area
== TEXT_AREA
)
20180 /* We only do this when not calling move_it_in_display_line_to
20181 above, because that function calls itself handle_line_prefix. */
20182 handle_line_prefix (it
);
20186 /* Line-prefix and wrap-prefix are always displayed in the text
20187 area. But if this is the first call to display_line after
20188 init_iterator, the iterator might have been set up to write
20189 into a marginal area, e.g. if the line begins with some
20190 display property that writes to the margins. So we need to
20191 wait with the call to handle_line_prefix until whatever
20192 writes to the margin has done its job. */
20193 pending_handle_line_prefix
= true;
20196 /* Get the initial row height. This is either the height of the
20197 text hscrolled, if there is any, or zero. */
20198 row
->ascent
= it
->max_ascent
;
20199 row
->height
= it
->max_ascent
+ it
->max_descent
;
20200 row
->phys_ascent
= it
->max_phys_ascent
;
20201 row
->phys_height
= it
->max_phys_ascent
+ it
->max_phys_descent
;
20202 row
->extra_line_spacing
= it
->max_extra_line_spacing
;
20204 /* Utility macro to record max and min buffer positions seen until now. */
20205 #define RECORD_MAX_MIN_POS(IT) \
20208 int composition_p = !STRINGP ((IT)->string) \
20209 && ((IT)->what == IT_COMPOSITION); \
20210 ptrdiff_t current_pos = \
20211 composition_p ? (IT)->cmp_it.charpos \
20212 : IT_CHARPOS (*(IT)); \
20213 ptrdiff_t current_bpos = \
20214 composition_p ? CHAR_TO_BYTE (current_pos) \
20215 : IT_BYTEPOS (*(IT)); \
20216 if (current_pos < min_pos) \
20218 min_pos = current_pos; \
20219 min_bpos = current_bpos; \
20221 if (IT_CHARPOS (*it) > max_pos) \
20223 max_pos = IT_CHARPOS (*it); \
20224 max_bpos = IT_BYTEPOS (*it); \
20229 /* Loop generating characters. The loop is left with IT on the next
20230 character to display. */
20233 int n_glyphs_before
, hpos_before
, x_before
;
20235 int ascent
= 0, descent
= 0, phys_ascent
= 0, phys_descent
= 0;
20237 /* Retrieve the next thing to display. Value is zero if end of
20239 if (!get_next_display_element (it
))
20241 /* Maybe add a space at the end of this line that is used to
20242 display the cursor there under X. Set the charpos of the
20243 first glyph of blank lines not corresponding to any text
20245 if (IT_OVERFLOW_NEWLINE_INTO_FRINGE (it
))
20246 row
->exact_window_width_line_p
= 1;
20247 else if ((append_space_for_newline (it
, 1) && row
->used
[TEXT_AREA
] == 1)
20248 || row
->used
[TEXT_AREA
] == 0)
20250 row
->glyphs
[TEXT_AREA
]->charpos
= -1;
20251 row
->displays_text_p
= 0;
20253 if (!NILP (BVAR (XBUFFER (it
->w
->contents
), indicate_empty_lines
))
20254 && (!MINI_WINDOW_P (it
->w
)
20255 || (minibuf_level
&& EQ (it
->window
, minibuf_window
))))
20256 row
->indicate_empty_line_p
= 1;
20259 it
->continuation_lines_width
= 0;
20260 row
->ends_at_zv_p
= 1;
20261 /* A row that displays right-to-left text must always have
20262 its last face extended all the way to the end of line,
20263 even if this row ends in ZV, because we still write to
20264 the screen left to right. We also need to extend the
20265 last face if the default face is remapped to some
20266 different face, otherwise the functions that clear
20267 portions of the screen will clear with the default face's
20268 background color. */
20269 if (row
->reversed_p
20270 || lookup_basic_face (it
->f
, DEFAULT_FACE_ID
) != DEFAULT_FACE_ID
)
20271 extend_face_to_end_of_line (it
);
20275 /* Now, get the metrics of what we want to display. This also
20276 generates glyphs in `row' (which is IT->glyph_row). */
20277 n_glyphs_before
= row
->used
[TEXT_AREA
];
20280 /* Remember the line height so far in case the next element doesn't
20281 fit on the line. */
20282 if (it
->line_wrap
!= TRUNCATE
)
20284 ascent
= it
->max_ascent
;
20285 descent
= it
->max_descent
;
20286 phys_ascent
= it
->max_phys_ascent
;
20287 phys_descent
= it
->max_phys_descent
;
20289 if (it
->line_wrap
== WORD_WRAP
&& it
->area
== TEXT_AREA
)
20291 if (IT_DISPLAYING_WHITESPACE (it
))
20295 SAVE_IT (wrap_it
, *it
, wrap_data
);
20297 wrap_row_used
= row
->used
[TEXT_AREA
];
20298 wrap_row_ascent
= row
->ascent
;
20299 wrap_row_height
= row
->height
;
20300 wrap_row_phys_ascent
= row
->phys_ascent
;
20301 wrap_row_phys_height
= row
->phys_height
;
20302 wrap_row_extra_line_spacing
= row
->extra_line_spacing
;
20303 wrap_row_min_pos
= min_pos
;
20304 wrap_row_min_bpos
= min_bpos
;
20305 wrap_row_max_pos
= max_pos
;
20306 wrap_row_max_bpos
= max_bpos
;
20312 PRODUCE_GLYPHS (it
);
20314 /* If this display element was in marginal areas, continue with
20316 if (it
->area
!= TEXT_AREA
)
20318 row
->ascent
= max (row
->ascent
, it
->max_ascent
);
20319 row
->height
= max (row
->height
, it
->max_ascent
+ it
->max_descent
);
20320 row
->phys_ascent
= max (row
->phys_ascent
, it
->max_phys_ascent
);
20321 row
->phys_height
= max (row
->phys_height
,
20322 it
->max_phys_ascent
+ it
->max_phys_descent
);
20323 row
->extra_line_spacing
= max (row
->extra_line_spacing
,
20324 it
->max_extra_line_spacing
);
20325 set_iterator_to_next (it
, 1);
20326 /* If we didn't handle the line/wrap prefix above, and the
20327 call to set_iterator_to_next just switched to TEXT_AREA,
20328 process the prefix now. */
20329 if (it
->area
== TEXT_AREA
&& pending_handle_line_prefix
)
20331 pending_handle_line_prefix
= false;
20332 handle_line_prefix (it
);
20337 /* Does the display element fit on the line? If we truncate
20338 lines, we should draw past the right edge of the window. If
20339 we don't truncate, we want to stop so that we can display the
20340 continuation glyph before the right margin. If lines are
20341 continued, there are two possible strategies for characters
20342 resulting in more than 1 glyph (e.g. tabs): Display as many
20343 glyphs as possible in this line and leave the rest for the
20344 continuation line, or display the whole element in the next
20345 line. Original redisplay did the former, so we do it also. */
20346 nglyphs
= row
->used
[TEXT_AREA
] - n_glyphs_before
;
20347 hpos_before
= it
->hpos
;
20350 if (/* Not a newline. */
20352 /* Glyphs produced fit entirely in the line. */
20353 && it
->current_x
< it
->last_visible_x
)
20355 it
->hpos
+= nglyphs
;
20356 row
->ascent
= max (row
->ascent
, it
->max_ascent
);
20357 row
->height
= max (row
->height
, it
->max_ascent
+ it
->max_descent
);
20358 row
->phys_ascent
= max (row
->phys_ascent
, it
->max_phys_ascent
);
20359 row
->phys_height
= max (row
->phys_height
,
20360 it
->max_phys_ascent
+ it
->max_phys_descent
);
20361 row
->extra_line_spacing
= max (row
->extra_line_spacing
,
20362 it
->max_extra_line_spacing
);
20363 if (it
->current_x
- it
->pixel_width
< it
->first_visible_x
20364 /* In R2L rows, we arrange in extend_face_to_end_of_line
20365 to add a right offset to the line, by a suitable
20366 change to the stretch glyph that is the leftmost
20367 glyph of the line. */
20368 && !row
->reversed_p
)
20369 row
->x
= x
- it
->first_visible_x
;
20370 /* Record the maximum and minimum buffer positions seen so
20371 far in glyphs that will be displayed by this row. */
20373 RECORD_MAX_MIN_POS (it
);
20378 struct glyph
*glyph
;
20380 for (i
= 0; i
< nglyphs
; ++i
, x
= new_x
)
20382 /* Identify the glyphs added by the last call to
20383 PRODUCE_GLYPHS. In R2L rows, they are prepended to
20384 the previous glyphs. */
20385 if (!row
->reversed_p
)
20386 glyph
= row
->glyphs
[TEXT_AREA
] + n_glyphs_before
+ i
;
20388 glyph
= row
->glyphs
[TEXT_AREA
] + nglyphs
- 1 - i
;
20389 new_x
= x
+ glyph
->pixel_width
;
20391 if (/* Lines are continued. */
20392 it
->line_wrap
!= TRUNCATE
20393 && (/* Glyph doesn't fit on the line. */
20394 new_x
> it
->last_visible_x
20395 /* Or it fits exactly on a window system frame. */
20396 || (new_x
== it
->last_visible_x
20397 && FRAME_WINDOW_P (it
->f
)
20398 && (row
->reversed_p
20399 ? WINDOW_LEFT_FRINGE_WIDTH (it
->w
)
20400 : WINDOW_RIGHT_FRINGE_WIDTH (it
->w
)))))
20402 /* End of a continued line. */
20405 || (new_x
== it
->last_visible_x
20406 && FRAME_WINDOW_P (it
->f
)
20407 && (row
->reversed_p
20408 ? WINDOW_LEFT_FRINGE_WIDTH (it
->w
)
20409 : WINDOW_RIGHT_FRINGE_WIDTH (it
->w
))))
20411 /* Current glyph is the only one on the line or
20412 fits exactly on the line. We must continue
20413 the line because we can't draw the cursor
20414 after the glyph. */
20415 row
->continued_p
= 1;
20416 it
->current_x
= new_x
;
20417 it
->continuation_lines_width
+= new_x
;
20419 if (i
== nglyphs
- 1)
20421 /* If line-wrap is on, check if a previous
20422 wrap point was found. */
20423 if (!IT_OVERFLOW_NEWLINE_INTO_FRINGE (it
)
20424 && wrap_row_used
> 0
20425 /* Even if there is a previous wrap
20426 point, continue the line here as
20427 usual, if (i) the previous character
20428 was a space or tab AND (ii) the
20429 current character is not. */
20431 || IT_DISPLAYING_WHITESPACE (it
)))
20434 /* Record the maximum and minimum buffer
20435 positions seen so far in glyphs that will be
20436 displayed by this row. */
20438 RECORD_MAX_MIN_POS (it
);
20439 set_iterator_to_next (it
, 1);
20440 if (IT_OVERFLOW_NEWLINE_INTO_FRINGE (it
))
20442 if (!get_next_display_element (it
))
20444 row
->exact_window_width_line_p
= 1;
20445 it
->continuation_lines_width
= 0;
20446 row
->continued_p
= 0;
20447 row
->ends_at_zv_p
= 1;
20449 else if (ITERATOR_AT_END_OF_LINE_P (it
))
20451 row
->continued_p
= 0;
20452 row
->exact_window_width_line_p
= 1;
20454 /* If line-wrap is on, check if a
20455 previous wrap point was found. */
20456 else if (wrap_row_used
> 0
20457 /* Even if there is a previous wrap
20458 point, continue the line here as
20459 usual, if (i) the previous character
20460 was a space or tab AND (ii) the
20461 current character is not. */
20463 || IT_DISPLAYING_WHITESPACE (it
)))
20468 else if (it
->bidi_p
)
20469 RECORD_MAX_MIN_POS (it
);
20470 if (WINDOW_LEFT_MARGIN_WIDTH (it
->w
) > 0
20471 || WINDOW_RIGHT_MARGIN_WIDTH (it
->w
) > 0)
20472 extend_face_to_end_of_line (it
);
20474 else if (CHAR_GLYPH_PADDING_P (*glyph
)
20475 && !FRAME_WINDOW_P (it
->f
))
20477 /* A padding glyph that doesn't fit on this line.
20478 This means the whole character doesn't fit
20480 if (row
->reversed_p
)
20481 unproduce_glyphs (it
, row
->used
[TEXT_AREA
]
20482 - n_glyphs_before
);
20483 row
->used
[TEXT_AREA
] = n_glyphs_before
;
20485 /* Fill the rest of the row with continuation
20486 glyphs like in 20.x. */
20487 while (row
->glyphs
[TEXT_AREA
] + row
->used
[TEXT_AREA
]
20488 < row
->glyphs
[1 + TEXT_AREA
])
20489 produce_special_glyphs (it
, IT_CONTINUATION
);
20491 row
->continued_p
= 1;
20492 it
->current_x
= x_before
;
20493 it
->continuation_lines_width
+= x_before
;
20495 /* Restore the height to what it was before the
20496 element not fitting on the line. */
20497 it
->max_ascent
= ascent
;
20498 it
->max_descent
= descent
;
20499 it
->max_phys_ascent
= phys_ascent
;
20500 it
->max_phys_descent
= phys_descent
;
20501 if (WINDOW_LEFT_MARGIN_WIDTH (it
->w
) > 0
20502 || WINDOW_RIGHT_MARGIN_WIDTH (it
->w
) > 0)
20503 extend_face_to_end_of_line (it
);
20505 else if (wrap_row_used
> 0)
20508 if (row
->reversed_p
)
20509 unproduce_glyphs (it
,
20510 row
->used
[TEXT_AREA
] - wrap_row_used
);
20511 RESTORE_IT (it
, &wrap_it
, wrap_data
);
20512 it
->continuation_lines_width
+= wrap_x
;
20513 row
->used
[TEXT_AREA
] = wrap_row_used
;
20514 row
->ascent
= wrap_row_ascent
;
20515 row
->height
= wrap_row_height
;
20516 row
->phys_ascent
= wrap_row_phys_ascent
;
20517 row
->phys_height
= wrap_row_phys_height
;
20518 row
->extra_line_spacing
= wrap_row_extra_line_spacing
;
20519 min_pos
= wrap_row_min_pos
;
20520 min_bpos
= wrap_row_min_bpos
;
20521 max_pos
= wrap_row_max_pos
;
20522 max_bpos
= wrap_row_max_bpos
;
20523 row
->continued_p
= 1;
20524 row
->ends_at_zv_p
= 0;
20525 row
->exact_window_width_line_p
= 0;
20526 it
->continuation_lines_width
+= x
;
20528 /* Make sure that a non-default face is extended
20529 up to the right margin of the window. */
20530 extend_face_to_end_of_line (it
);
20532 else if (it
->c
== '\t' && FRAME_WINDOW_P (it
->f
))
20534 /* A TAB that extends past the right edge of the
20535 window. This produces a single glyph on
20536 window system frames. We leave the glyph in
20537 this row and let it fill the row, but don't
20538 consume the TAB. */
20539 if ((row
->reversed_p
20540 ? WINDOW_LEFT_FRINGE_WIDTH (it
->w
)
20541 : WINDOW_RIGHT_FRINGE_WIDTH (it
->w
)) == 0)
20542 produce_special_glyphs (it
, IT_CONTINUATION
);
20543 it
->continuation_lines_width
+= it
->last_visible_x
;
20544 row
->ends_in_middle_of_char_p
= 1;
20545 row
->continued_p
= 1;
20546 glyph
->pixel_width
= it
->last_visible_x
- x
;
20547 it
->starts_in_middle_of_char_p
= 1;
20548 if (WINDOW_LEFT_MARGIN_WIDTH (it
->w
) > 0
20549 || WINDOW_RIGHT_MARGIN_WIDTH (it
->w
) > 0)
20550 extend_face_to_end_of_line (it
);
20554 /* Something other than a TAB that draws past
20555 the right edge of the window. Restore
20556 positions to values before the element. */
20557 if (row
->reversed_p
)
20558 unproduce_glyphs (it
, row
->used
[TEXT_AREA
]
20559 - (n_glyphs_before
+ i
));
20560 row
->used
[TEXT_AREA
] = n_glyphs_before
+ i
;
20562 /* Display continuation glyphs. */
20563 it
->current_x
= x_before
;
20564 it
->continuation_lines_width
+= x
;
20565 if (!FRAME_WINDOW_P (it
->f
)
20566 || (row
->reversed_p
20567 ? WINDOW_LEFT_FRINGE_WIDTH (it
->w
)
20568 : WINDOW_RIGHT_FRINGE_WIDTH (it
->w
)) == 0)
20569 produce_special_glyphs (it
, IT_CONTINUATION
);
20570 row
->continued_p
= 1;
20572 extend_face_to_end_of_line (it
);
20574 if (nglyphs
> 1 && i
> 0)
20576 row
->ends_in_middle_of_char_p
= 1;
20577 it
->starts_in_middle_of_char_p
= 1;
20580 /* Restore the height to what it was before the
20581 element not fitting on the line. */
20582 it
->max_ascent
= ascent
;
20583 it
->max_descent
= descent
;
20584 it
->max_phys_ascent
= phys_ascent
;
20585 it
->max_phys_descent
= phys_descent
;
20590 else if (new_x
> it
->first_visible_x
)
20592 /* Increment number of glyphs actually displayed. */
20595 /* Record the maximum and minimum buffer positions
20596 seen so far in glyphs that will be displayed by
20599 RECORD_MAX_MIN_POS (it
);
20601 if (x
< it
->first_visible_x
&& !row
->reversed_p
)
20602 /* Glyph is partially visible, i.e. row starts at
20603 negative X position. Don't do that in R2L
20604 rows, where we arrange to add a right offset to
20605 the line in extend_face_to_end_of_line, by a
20606 suitable change to the stretch glyph that is
20607 the leftmost glyph of the line. */
20608 row
->x
= x
- it
->first_visible_x
;
20609 /* When the last glyph of an R2L row only fits
20610 partially on the line, we need to set row->x to a
20611 negative offset, so that the leftmost glyph is
20612 the one that is partially visible. But if we are
20613 going to produce the truncation glyph, this will
20614 be taken care of in produce_special_glyphs. */
20615 if (row
->reversed_p
20616 && new_x
> it
->last_visible_x
20617 && !(it
->line_wrap
== TRUNCATE
20618 && WINDOW_LEFT_FRINGE_WIDTH (it
->w
) == 0))
20620 eassert (FRAME_WINDOW_P (it
->f
));
20621 row
->x
= it
->last_visible_x
- new_x
;
20626 /* Glyph is completely off the left margin of the
20627 window. This should not happen because of the
20628 move_it_in_display_line at the start of this
20629 function, unless the text display area of the
20630 window is empty. */
20631 eassert (it
->first_visible_x
<= it
->last_visible_x
);
20634 /* Even if this display element produced no glyphs at all,
20635 we want to record its position. */
20636 if (it
->bidi_p
&& nglyphs
== 0)
20637 RECORD_MAX_MIN_POS (it
);
20639 row
->ascent
= max (row
->ascent
, it
->max_ascent
);
20640 row
->height
= max (row
->height
, it
->max_ascent
+ it
->max_descent
);
20641 row
->phys_ascent
= max (row
->phys_ascent
, it
->max_phys_ascent
);
20642 row
->phys_height
= max (row
->phys_height
,
20643 it
->max_phys_ascent
+ it
->max_phys_descent
);
20644 row
->extra_line_spacing
= max (row
->extra_line_spacing
,
20645 it
->max_extra_line_spacing
);
20647 /* End of this display line if row is continued. */
20648 if (row
->continued_p
|| row
->ends_at_zv_p
)
20653 /* Is this a line end? If yes, we're also done, after making
20654 sure that a non-default face is extended up to the right
20655 margin of the window. */
20656 if (ITERATOR_AT_END_OF_LINE_P (it
))
20658 int used_before
= row
->used
[TEXT_AREA
];
20660 row
->ends_in_newline_from_string_p
= STRINGP (it
->object
);
20662 /* Add a space at the end of the line that is used to
20663 display the cursor there. */
20664 if (!IT_OVERFLOW_NEWLINE_INTO_FRINGE (it
))
20665 append_space_for_newline (it
, 0);
20667 /* Extend the face to the end of the line. */
20668 extend_face_to_end_of_line (it
);
20670 /* Make sure we have the position. */
20671 if (used_before
== 0)
20672 row
->glyphs
[TEXT_AREA
]->charpos
= CHARPOS (it
->position
);
20674 /* Record the position of the newline, for use in
20676 it
->eol_pos
= it
->current
.pos
;
20678 /* Consume the line end. This skips over invisible lines. */
20679 set_iterator_to_next (it
, 1);
20680 it
->continuation_lines_width
= 0;
20684 /* Proceed with next display element. Note that this skips
20685 over lines invisible because of selective display. */
20686 set_iterator_to_next (it
, 1);
20688 /* If we truncate lines, we are done when the last displayed
20689 glyphs reach past the right margin of the window. */
20690 if (it
->line_wrap
== TRUNCATE
20691 && ((FRAME_WINDOW_P (it
->f
)
20692 /* Images are preprocessed in produce_image_glyph such
20693 that they are cropped at the right edge of the
20694 window, so an image glyph will always end exactly at
20695 last_visible_x, even if there's no right fringe. */
20696 && ((row
->reversed_p
20697 ? WINDOW_LEFT_FRINGE_WIDTH (it
->w
)
20698 : WINDOW_RIGHT_FRINGE_WIDTH (it
->w
))
20699 || it
->what
== IT_IMAGE
))
20700 ? (it
->current_x
>= it
->last_visible_x
)
20701 : (it
->current_x
> it
->last_visible_x
)))
20703 /* Maybe add truncation glyphs. */
20704 if (!FRAME_WINDOW_P (it
->f
)
20705 || (row
->reversed_p
20706 ? WINDOW_LEFT_FRINGE_WIDTH (it
->w
)
20707 : WINDOW_RIGHT_FRINGE_WIDTH (it
->w
)) == 0)
20711 if (!row
->reversed_p
)
20713 for (i
= row
->used
[TEXT_AREA
] - 1; i
> 0; --i
)
20714 if (!CHAR_GLYPH_PADDING_P (row
->glyphs
[TEXT_AREA
][i
]))
20719 for (i
= 0; i
< row
->used
[TEXT_AREA
]; i
++)
20720 if (!CHAR_GLYPH_PADDING_P (row
->glyphs
[TEXT_AREA
][i
]))
20722 /* Remove any padding glyphs at the front of ROW, to
20723 make room for the truncation glyphs we will be
20724 adding below. The loop below always inserts at
20725 least one truncation glyph, so also remove the
20726 last glyph added to ROW. */
20727 unproduce_glyphs (it
, i
+ 1);
20728 /* Adjust i for the loop below. */
20729 i
= row
->used
[TEXT_AREA
] - (i
+ 1);
20732 /* produce_special_glyphs overwrites the last glyph, so
20733 we don't want that if we want to keep that last
20734 glyph, which means it's an image. */
20735 if (it
->current_x
> it
->last_visible_x
)
20737 it
->current_x
= x_before
;
20738 if (!FRAME_WINDOW_P (it
->f
))
20740 for (n
= row
->used
[TEXT_AREA
]; i
< n
; ++i
)
20742 row
->used
[TEXT_AREA
] = i
;
20743 produce_special_glyphs (it
, IT_TRUNCATION
);
20748 row
->used
[TEXT_AREA
] = i
;
20749 produce_special_glyphs (it
, IT_TRUNCATION
);
20751 it
->hpos
= hpos_before
;
20754 else if (IT_OVERFLOW_NEWLINE_INTO_FRINGE (it
))
20756 /* Don't truncate if we can overflow newline into fringe. */
20757 if (!get_next_display_element (it
))
20759 it
->continuation_lines_width
= 0;
20760 row
->ends_at_zv_p
= 1;
20761 row
->exact_window_width_line_p
= 1;
20764 if (ITERATOR_AT_END_OF_LINE_P (it
))
20766 row
->exact_window_width_line_p
= 1;
20767 goto at_end_of_line
;
20769 it
->current_x
= x_before
;
20770 it
->hpos
= hpos_before
;
20773 row
->truncated_on_right_p
= 1;
20774 it
->continuation_lines_width
= 0;
20775 reseat_at_next_visible_line_start (it
, 0);
20776 /* We insist below that IT's position be at ZV because in
20777 bidi-reordered lines the character at visible line start
20778 might not be the character that follows the newline in
20779 the logical order. */
20780 if (IT_BYTEPOS (*it
) > BEG_BYTE
)
20781 row
->ends_at_zv_p
=
20782 IT_BYTEPOS (*it
) >= ZV_BYTE
&& FETCH_BYTE (ZV_BYTE
- 1) != '\n';
20784 row
->ends_at_zv_p
= false;
20790 bidi_unshelve_cache (wrap_data
, 1);
20792 /* If line is not empty and hscrolled, maybe insert truncation glyphs
20793 at the left window margin. */
20794 if (it
->first_visible_x
20795 && IT_CHARPOS (*it
) != CHARPOS (row
->start
.pos
))
20797 if (!FRAME_WINDOW_P (it
->f
)
20798 || (((row
->reversed_p
20799 ? WINDOW_RIGHT_FRINGE_WIDTH (it
->w
)
20800 : WINDOW_LEFT_FRINGE_WIDTH (it
->w
)) == 0)
20801 /* Don't let insert_left_trunc_glyphs overwrite the
20802 first glyph of the row if it is an image. */
20803 && row
->glyphs
[TEXT_AREA
]->type
!= IMAGE_GLYPH
))
20804 insert_left_trunc_glyphs (it
);
20805 row
->truncated_on_left_p
= 1;
20808 /* Remember the position at which this line ends.
20810 BIDI Note: any code that needs MATRIX_ROW_START/END_CHARPOS
20811 cannot be before the call to find_row_edges below, since that is
20812 where these positions are determined. */
20813 row
->end
= it
->current
;
20816 row
->minpos
= row
->start
.pos
;
20817 row
->maxpos
= row
->end
.pos
;
20821 /* ROW->minpos and ROW->maxpos must be the smallest and
20822 `1 + the largest' buffer positions in ROW. But if ROW was
20823 bidi-reordered, these two positions can be anywhere in the
20824 row, so we must determine them now. */
20825 find_row_edges (it
, row
, min_pos
, min_bpos
, max_pos
, max_bpos
);
20828 /* If the start of this line is the overlay arrow-position, then
20829 mark this glyph row as the one containing the overlay arrow.
20830 This is clearly a mess with variable size fonts. It would be
20831 better to let it be displayed like cursors under X. */
20832 if ((MATRIX_ROW_DISPLAYS_TEXT_P (row
) || !overlay_arrow_seen
)
20833 && (overlay_arrow_string
= overlay_arrow_at_row (it
, row
),
20834 !NILP (overlay_arrow_string
)))
20836 /* Overlay arrow in window redisplay is a fringe bitmap. */
20837 if (STRINGP (overlay_arrow_string
))
20839 struct glyph_row
*arrow_row
20840 = get_overlay_arrow_glyph_row (it
->w
, overlay_arrow_string
);
20841 struct glyph
*glyph
= arrow_row
->glyphs
[TEXT_AREA
];
20842 struct glyph
*arrow_end
= glyph
+ arrow_row
->used
[TEXT_AREA
];
20843 struct glyph
*p
= row
->glyphs
[TEXT_AREA
];
20844 struct glyph
*p2
, *end
;
20846 /* Copy the arrow glyphs. */
20847 while (glyph
< arrow_end
)
20850 /* Throw away padding glyphs. */
20852 end
= row
->glyphs
[TEXT_AREA
] + row
->used
[TEXT_AREA
];
20853 while (p2
< end
&& CHAR_GLYPH_PADDING_P (*p2
))
20859 row
->used
[TEXT_AREA
] = p2
- row
->glyphs
[TEXT_AREA
];
20864 eassert (INTEGERP (overlay_arrow_string
));
20865 row
->overlay_arrow_bitmap
= XINT (overlay_arrow_string
);
20867 overlay_arrow_seen
= 1;
20870 /* Highlight trailing whitespace. */
20871 if (!NILP (Vshow_trailing_whitespace
))
20872 highlight_trailing_whitespace (it
->f
, it
->glyph_row
);
20874 /* Compute pixel dimensions of this line. */
20875 compute_line_metrics (it
);
20877 /* Implementation note: No changes in the glyphs of ROW or in their
20878 faces can be done past this point, because compute_line_metrics
20879 computes ROW's hash value and stores it within the glyph_row
20882 /* Record whether this row ends inside an ellipsis. */
20883 row
->ends_in_ellipsis_p
20884 = (it
->method
== GET_FROM_DISPLAY_VECTOR
20885 && it
->ellipsis_p
);
20887 /* Save fringe bitmaps in this row. */
20888 row
->left_user_fringe_bitmap
= it
->left_user_fringe_bitmap
;
20889 row
->left_user_fringe_face_id
= it
->left_user_fringe_face_id
;
20890 row
->right_user_fringe_bitmap
= it
->right_user_fringe_bitmap
;
20891 row
->right_user_fringe_face_id
= it
->right_user_fringe_face_id
;
20893 it
->left_user_fringe_bitmap
= 0;
20894 it
->left_user_fringe_face_id
= 0;
20895 it
->right_user_fringe_bitmap
= 0;
20896 it
->right_user_fringe_face_id
= 0;
20898 /* Maybe set the cursor. */
20899 cvpos
= it
->w
->cursor
.vpos
;
20901 /* In bidi-reordered rows, keep checking for proper cursor
20902 position even if one has been found already, because buffer
20903 positions in such rows change non-linearly with ROW->VPOS,
20904 when a line is continued. One exception: when we are at ZV,
20905 display cursor on the first suitable glyph row, since all
20906 the empty rows after that also have their position set to ZV. */
20907 /* FIXME: Revisit this when glyph ``spilling'' in continuation
20908 lines' rows is implemented for bidi-reordered rows. */
20910 && !MATRIX_ROW (it
->w
->desired_matrix
, cvpos
)->ends_at_zv_p
))
20911 && PT
>= MATRIX_ROW_START_CHARPOS (row
)
20912 && PT
<= MATRIX_ROW_END_CHARPOS (row
)
20913 && cursor_row_p (row
))
20914 set_cursor_from_row (it
->w
, row
, it
->w
->desired_matrix
, 0, 0, 0, 0);
20916 /* Prepare for the next line. This line starts horizontally at (X
20917 HPOS) = (0 0). Vertical positions are incremented. As a
20918 convenience for the caller, IT->glyph_row is set to the next
20920 it
->current_x
= it
->hpos
= 0;
20921 it
->current_y
+= row
->height
;
20922 SET_TEXT_POS (it
->eol_pos
, 0, 0);
20925 /* The next row should by default use the same value of the
20926 reversed_p flag as this one. set_iterator_to_next decides when
20927 it's a new paragraph, and PRODUCE_GLYPHS recomputes the value of
20928 the flag accordingly. */
20929 if (it
->glyph_row
< MATRIX_BOTTOM_TEXT_ROW (it
->w
->desired_matrix
, it
->w
))
20930 it
->glyph_row
->reversed_p
= row
->reversed_p
;
20931 it
->start
= row
->end
;
20932 return MATRIX_ROW_DISPLAYS_TEXT_P (row
);
20934 #undef RECORD_MAX_MIN_POS
20937 DEFUN ("current-bidi-paragraph-direction", Fcurrent_bidi_paragraph_direction
,
20938 Scurrent_bidi_paragraph_direction
, 0, 1, 0,
20939 doc
: /* Return paragraph direction at point in BUFFER.
20940 Value is either `left-to-right' or `right-to-left'.
20941 If BUFFER is omitted or nil, it defaults to the current buffer.
20943 Paragraph direction determines how the text in the paragraph is displayed.
20944 In left-to-right paragraphs, text begins at the left margin of the window
20945 and the reading direction is generally left to right. In right-to-left
20946 paragraphs, text begins at the right margin and is read from right to left.
20948 See also `bidi-paragraph-direction'. */)
20949 (Lisp_Object buffer
)
20951 struct buffer
*buf
= current_buffer
;
20952 struct buffer
*old
= buf
;
20954 if (! NILP (buffer
))
20956 CHECK_BUFFER (buffer
);
20957 buf
= XBUFFER (buffer
);
20960 if (NILP (BVAR (buf
, bidi_display_reordering
))
20961 || NILP (BVAR (buf
, enable_multibyte_characters
))
20962 /* When we are loading loadup.el, the character property tables
20963 needed for bidi iteration are not yet available. */
20964 || !NILP (Vpurify_flag
))
20965 return Qleft_to_right
;
20966 else if (!NILP (BVAR (buf
, bidi_paragraph_direction
)))
20967 return BVAR (buf
, bidi_paragraph_direction
);
20970 /* Determine the direction from buffer text. We could try to
20971 use current_matrix if it is up to date, but this seems fast
20972 enough as it is. */
20973 struct bidi_it itb
;
20974 ptrdiff_t pos
= BUF_PT (buf
);
20975 ptrdiff_t bytepos
= BUF_PT_BYTE (buf
);
20977 void *itb_data
= bidi_shelve_cache ();
20979 set_buffer_temp (buf
);
20980 /* bidi_paragraph_init finds the base direction of the paragraph
20981 by searching forward from paragraph start. We need the base
20982 direction of the current or _previous_ paragraph, so we need
20983 to make sure we are within that paragraph. To that end, find
20984 the previous non-empty line. */
20985 if (pos
>= ZV
&& pos
> BEGV
)
20986 DEC_BOTH (pos
, bytepos
);
20987 AUTO_STRING (trailing_white_space
, "[\f\t ]*\n");
20988 if (fast_looking_at (trailing_white_space
,
20989 pos
, bytepos
, ZV
, ZV_BYTE
, Qnil
) > 0)
20991 while ((c
= FETCH_BYTE (bytepos
)) == '\n'
20992 || c
== ' ' || c
== '\t' || c
== '\f')
20994 if (bytepos
<= BEGV_BYTE
)
20999 while (!CHAR_HEAD_P (FETCH_BYTE (bytepos
)))
21002 bidi_init_it (pos
, bytepos
, FRAME_WINDOW_P (SELECTED_FRAME ()), &itb
);
21003 itb
.paragraph_dir
= NEUTRAL_DIR
;
21004 itb
.string
.s
= NULL
;
21005 itb
.string
.lstring
= Qnil
;
21006 itb
.string
.bufpos
= 0;
21007 itb
.string
.from_disp_str
= 0;
21008 itb
.string
.unibyte
= 0;
21009 /* We have no window to use here for ignoring window-specific
21010 overlays. Using NULL for window pointer will cause
21011 compute_display_string_pos to use the current buffer. */
21013 bidi_paragraph_init (NEUTRAL_DIR
, &itb
, 1);
21014 bidi_unshelve_cache (itb_data
, 0);
21015 set_buffer_temp (old
);
21016 switch (itb
.paragraph_dir
)
21019 return Qleft_to_right
;
21022 return Qright_to_left
;
21030 DEFUN ("bidi-find-overridden-directionality",
21031 Fbidi_find_overridden_directionality
,
21032 Sbidi_find_overridden_directionality
, 2, 3, 0,
21033 doc
: /* Return position between FROM and TO where directionality was overridden.
21035 This function returns the first character position in the specified
21036 region of OBJECT where there is a character whose `bidi-class' property
21037 is `L', but which was forced to display as `R' by a directional
21038 override, and likewise with characters whose `bidi-class' is `R'
21039 or `AL' that were forced to display as `L'.
21041 If no such character is found, the function returns nil.
21043 OBJECT is a Lisp string or buffer to search for overridden
21044 directionality, and defaults to the current buffer if nil or omitted.
21045 OBJECT can also be a window, in which case the function will search
21046 the buffer displayed in that window. Passing the window instead of
21047 a buffer is preferable when the buffer is displayed in some window,
21048 because this function will then be able to correctly account for
21049 window-specific overlays, which can affect the results.
21051 Strong directional characters `L', `R', and `AL' can have their
21052 intrinsic directionality overridden by directional override
21053 control characters RLO \(u+202e) and LRO \(u+202d). See the
21054 function `get-char-code-property' for a way to inquire about
21055 the `bidi-class' property of a character. */)
21056 (Lisp_Object from
, Lisp_Object to
, Lisp_Object object
)
21058 struct buffer
*buf
= current_buffer
;
21059 struct buffer
*old
= buf
;
21060 struct window
*w
= NULL
;
21061 bool frame_window_p
= FRAME_WINDOW_P (SELECTED_FRAME ());
21062 struct bidi_it itb
;
21063 ptrdiff_t from_pos
, to_pos
, from_bpos
;
21066 if (!NILP (object
))
21068 if (BUFFERP (object
))
21069 buf
= XBUFFER (object
);
21070 else if (WINDOWP (object
))
21072 w
= decode_live_window (object
);
21073 buf
= XBUFFER (w
->contents
);
21074 frame_window_p
= FRAME_WINDOW_P (XFRAME (w
->frame
));
21077 CHECK_STRING (object
);
21080 if (STRINGP (object
))
21082 /* Characters in unibyte strings are always treated by bidi.c as
21084 if (!STRING_MULTIBYTE (object
)
21085 /* When we are loading loadup.el, the character property
21086 tables needed for bidi iteration are not yet
21088 || !NILP (Vpurify_flag
))
21091 validate_subarray (object
, from
, to
, SCHARS (object
), &from_pos
, &to_pos
);
21092 if (from_pos
>= SCHARS (object
))
21095 /* Set up the bidi iterator. */
21096 itb_data
= bidi_shelve_cache ();
21097 itb
.paragraph_dir
= NEUTRAL_DIR
;
21098 itb
.string
.lstring
= object
;
21099 itb
.string
.s
= NULL
;
21100 itb
.string
.schars
= SCHARS (object
);
21101 itb
.string
.bufpos
= 0;
21102 itb
.string
.from_disp_str
= 0;
21103 itb
.string
.unibyte
= 0;
21105 bidi_init_it (0, 0, frame_window_p
, &itb
);
21109 /* Nothing this fancy can happen in unibyte buffers, or in a
21110 buffer that disabled reordering, or if FROM is at EOB. */
21111 if (NILP (BVAR (buf
, bidi_display_reordering
))
21112 || NILP (BVAR (buf
, enable_multibyte_characters
))
21113 /* When we are loading loadup.el, the character property
21114 tables needed for bidi iteration are not yet
21116 || !NILP (Vpurify_flag
))
21119 set_buffer_temp (buf
);
21120 validate_region (&from
, &to
);
21121 from_pos
= XINT (from
);
21122 to_pos
= XINT (to
);
21123 if (from_pos
>= ZV
)
21126 /* Set up the bidi iterator. */
21127 itb_data
= bidi_shelve_cache ();
21128 from_bpos
= CHAR_TO_BYTE (from_pos
);
21129 if (from_pos
== BEGV
)
21131 itb
.charpos
= BEGV
;
21132 itb
.bytepos
= BEGV_BYTE
;
21134 else if (FETCH_CHAR (from_bpos
- 1) == '\n')
21136 itb
.charpos
= from_pos
;
21137 itb
.bytepos
= from_bpos
;
21140 itb
.charpos
= find_newline_no_quit (from_pos
, CHAR_TO_BYTE (from_pos
),
21142 itb
.paragraph_dir
= NEUTRAL_DIR
;
21143 itb
.string
.s
= NULL
;
21144 itb
.string
.lstring
= Qnil
;
21145 itb
.string
.bufpos
= 0;
21146 itb
.string
.from_disp_str
= 0;
21147 itb
.string
.unibyte
= 0;
21149 bidi_init_it (itb
.charpos
, itb
.bytepos
, frame_window_p
, &itb
);
21154 /* For the purposes of this function, the actual base direction of
21155 the paragraph doesn't matter, so just set it to L2R. */
21156 bidi_paragraph_init (L2R
, &itb
, 0);
21157 while ((found
= bidi_find_first_overridden (&itb
)) < from_pos
)
21159 } while (found
== ZV
&& itb
.ch
== '\n' && itb
.charpos
< to_pos
);
21161 bidi_unshelve_cache (itb_data
, 0);
21162 set_buffer_temp (old
);
21164 return (from_pos
<= found
&& found
< to_pos
) ? make_number (found
) : Qnil
;
21167 DEFUN ("move-point-visually", Fmove_point_visually
,
21168 Smove_point_visually
, 1, 1, 0,
21169 doc
: /* Move point in the visual order in the specified DIRECTION.
21170 DIRECTION can be 1, meaning move to the right, or -1, which moves to the
21173 Value is the new character position of point. */)
21174 (Lisp_Object direction
)
21176 struct window
*w
= XWINDOW (selected_window
);
21177 struct buffer
*b
= XBUFFER (w
->contents
);
21178 struct glyph_row
*row
;
21180 Lisp_Object paragraph_dir
;
21182 #define ROW_GLYPH_NEWLINE_P(ROW,GLYPH) \
21183 (!(ROW)->continued_p \
21184 && NILP ((GLYPH)->object) \
21185 && (GLYPH)->type == CHAR_GLYPH \
21186 && (GLYPH)->u.ch == ' ' \
21187 && (GLYPH)->charpos >= 0 \
21188 && !(GLYPH)->avoid_cursor_p)
21190 CHECK_NUMBER (direction
);
21191 dir
= XINT (direction
);
21197 /* If current matrix is up-to-date, we can use the information
21198 recorded in the glyphs, at least as long as the goal is on the
21200 if (w
->window_end_valid
21201 && !windows_or_buffers_changed
21203 && !b
->clip_changed
21204 && !b
->prevent_redisplay_optimizations_p
21205 && !window_outdated (w
)
21206 /* We rely below on the cursor coordinates to be up to date, but
21207 we cannot trust them if some command moved point since the
21208 last complete redisplay. */
21209 && w
->last_point
== BUF_PT (b
)
21210 && w
->cursor
.vpos
>= 0
21211 && w
->cursor
.vpos
< w
->current_matrix
->nrows
21212 && (row
= MATRIX_ROW (w
->current_matrix
, w
->cursor
.vpos
))->enabled_p
)
21214 struct glyph
*g
= row
->glyphs
[TEXT_AREA
];
21215 struct glyph
*e
= dir
> 0 ? g
+ row
->used
[TEXT_AREA
] : g
- 1;
21216 struct glyph
*gpt
= g
+ w
->cursor
.hpos
;
21218 for (g
= gpt
+ dir
; (dir
> 0 ? g
< e
: g
> e
); g
+= dir
)
21220 if (BUFFERP (g
->object
) && g
->charpos
!= PT
)
21222 SET_PT (g
->charpos
);
21223 w
->cursor
.vpos
= -1;
21224 return make_number (PT
);
21226 else if (!NILP (g
->object
) && !EQ (g
->object
, gpt
->object
))
21230 if (BUFFERP (gpt
->object
))
21233 if ((gpt
->resolved_level
- row
->reversed_p
) % 2 == 0)
21234 new_pos
+= (row
->reversed_p
? -dir
: dir
);
21236 new_pos
-= (row
->reversed_p
? -dir
: dir
);
21238 else if (BUFFERP (g
->object
))
21239 new_pos
= g
->charpos
;
21243 w
->cursor
.vpos
= -1;
21244 return make_number (PT
);
21246 else if (ROW_GLYPH_NEWLINE_P (row
, g
))
21248 /* Glyphs inserted at the end of a non-empty line for
21249 positioning the cursor have zero charpos, so we must
21250 deduce the value of point by other means. */
21251 if (g
->charpos
> 0)
21252 SET_PT (g
->charpos
);
21253 else if (row
->ends_at_zv_p
&& PT
!= ZV
)
21255 else if (PT
!= MATRIX_ROW_END_CHARPOS (row
) - 1)
21256 SET_PT (MATRIX_ROW_END_CHARPOS (row
) - 1);
21259 w
->cursor
.vpos
= -1;
21260 return make_number (PT
);
21263 if (g
== e
|| NILP (g
->object
))
21265 if (row
->truncated_on_left_p
|| row
->truncated_on_right_p
)
21266 goto simulate_display
;
21267 if (!row
->reversed_p
)
21271 if (row
< MATRIX_FIRST_TEXT_ROW (w
->current_matrix
)
21272 || row
> MATRIX_BOTTOM_TEXT_ROW (w
->current_matrix
, w
))
21273 goto simulate_display
;
21277 if (row
->reversed_p
&& !row
->continued_p
)
21279 SET_PT (MATRIX_ROW_END_CHARPOS (row
) - 1);
21280 w
->cursor
.vpos
= -1;
21281 return make_number (PT
);
21283 g
= row
->glyphs
[TEXT_AREA
];
21284 e
= g
+ row
->used
[TEXT_AREA
];
21285 for ( ; g
< e
; g
++)
21287 if (BUFFERP (g
->object
)
21288 /* Empty lines have only one glyph, which stands
21289 for the newline, and whose charpos is the
21290 buffer position of the newline. */
21291 || ROW_GLYPH_NEWLINE_P (row
, g
)
21292 /* When the buffer ends in a newline, the line at
21293 EOB also has one glyph, but its charpos is -1. */
21294 || (row
->ends_at_zv_p
21295 && !row
->reversed_p
21296 && NILP (g
->object
)
21297 && g
->type
== CHAR_GLYPH
21298 && g
->u
.ch
== ' '))
21300 if (g
->charpos
> 0)
21301 SET_PT (g
->charpos
);
21302 else if (!row
->reversed_p
21303 && row
->ends_at_zv_p
21308 w
->cursor
.vpos
= -1;
21309 return make_number (PT
);
21315 if (!row
->reversed_p
&& !row
->continued_p
)
21317 SET_PT (MATRIX_ROW_END_CHARPOS (row
) - 1);
21318 w
->cursor
.vpos
= -1;
21319 return make_number (PT
);
21321 e
= row
->glyphs
[TEXT_AREA
];
21322 g
= e
+ row
->used
[TEXT_AREA
] - 1;
21323 for ( ; g
>= e
; g
--)
21325 if (BUFFERP (g
->object
)
21326 || (ROW_GLYPH_NEWLINE_P (row
, g
)
21328 /* Empty R2L lines on GUI frames have the buffer
21329 position of the newline stored in the stretch
21331 || g
->type
== STRETCH_GLYPH
21332 || (row
->ends_at_zv_p
21334 && NILP (g
->object
)
21335 && g
->type
== CHAR_GLYPH
21336 && g
->u
.ch
== ' '))
21338 if (g
->charpos
> 0)
21339 SET_PT (g
->charpos
);
21340 else if (row
->reversed_p
21341 && row
->ends_at_zv_p
21346 w
->cursor
.vpos
= -1;
21347 return make_number (PT
);
21356 /* If we wind up here, we failed to move by using the glyphs, so we
21357 need to simulate display instead. */
21360 paragraph_dir
= Fcurrent_bidi_paragraph_direction (w
->contents
);
21362 paragraph_dir
= Qleft_to_right
;
21363 if (EQ (paragraph_dir
, Qright_to_left
))
21365 if (PT
<= BEGV
&& dir
< 0)
21366 xsignal0 (Qbeginning_of_buffer
);
21367 else if (PT
>= ZV
&& dir
> 0)
21368 xsignal0 (Qend_of_buffer
);
21371 struct text_pos pt
;
21373 int pt_x
, target_x
, pixel_width
, pt_vpos
;
21375 bool overshoot_expected
= false;
21376 bool target_is_eol_p
= false;
21378 /* Setup the arena. */
21379 SET_TEXT_POS (pt
, PT
, PT_BYTE
);
21380 start_display (&it
, w
, pt
);
21382 if (it
.cmp_it
.id
< 0
21383 && it
.method
== GET_FROM_STRING
21384 && it
.area
== TEXT_AREA
21385 && it
.string_from_display_prop_p
21386 && (it
.sp
> 0 && it
.stack
[it
.sp
- 1].method
== GET_FROM_BUFFER
))
21387 overshoot_expected
= true;
21389 /* Find the X coordinate of point. We start from the beginning
21390 of this or previous line to make sure we are before point in
21391 the logical order (since the move_it_* functions can only
21394 reseat_at_previous_visible_line_start (&it
);
21395 it
.current_x
= it
.hpos
= it
.current_y
= it
.vpos
= 0;
21396 if (IT_CHARPOS (it
) != PT
)
21398 move_it_to (&it
, overshoot_expected
? PT
- 1 : PT
,
21399 -1, -1, -1, MOVE_TO_POS
);
21400 /* If we missed point because the character there is
21401 displayed out of a display vector that has more than one
21402 glyph, retry expecting overshoot. */
21403 if (it
.method
== GET_FROM_DISPLAY_VECTOR
21404 && it
.current
.dpvec_index
> 0
21405 && !overshoot_expected
)
21407 overshoot_expected
= true;
21410 else if (IT_CHARPOS (it
) != PT
&& !overshoot_expected
)
21411 move_it_in_display_line (&it
, PT
, -1, MOVE_TO_POS
);
21413 pt_x
= it
.current_x
;
21415 if (dir
> 0 || overshoot_expected
)
21417 struct glyph_row
*row
= it
.glyph_row
;
21419 /* When point is at beginning of line, we don't have
21420 information about the glyph there loaded into struct
21421 it. Calling get_next_display_element fixes that. */
21423 get_next_display_element (&it
);
21424 at_eol_p
= ITERATOR_AT_END_OF_LINE_P (&it
);
21425 it
.glyph_row
= NULL
;
21426 PRODUCE_GLYPHS (&it
); /* compute it.pixel_width */
21427 it
.glyph_row
= row
;
21428 /* PRODUCE_GLYPHS advances it.current_x, so we must restore
21429 it, lest it will become out of sync with it's buffer
21431 it
.current_x
= pt_x
;
21434 at_eol_p
= ITERATOR_AT_END_OF_LINE_P (&it
);
21435 pixel_width
= it
.pixel_width
;
21436 if (overshoot_expected
&& at_eol_p
)
21438 else if (pixel_width
<= 0)
21441 /* If there's a display string (or something similar) at point,
21442 we are actually at the glyph to the left of point, so we need
21443 to correct the X coordinate. */
21444 if (overshoot_expected
)
21447 pt_x
+= pixel_width
* it
.bidi_it
.scan_dir
;
21449 pt_x
+= pixel_width
;
21452 /* Compute target X coordinate, either to the left or to the
21453 right of point. On TTY frames, all characters have the same
21454 pixel width of 1, so we can use that. On GUI frames we don't
21455 have an easy way of getting at the pixel width of the
21456 character to the left of point, so we use a different method
21457 of getting to that place. */
21459 target_x
= pt_x
+ pixel_width
;
21461 target_x
= pt_x
- (!FRAME_WINDOW_P (it
.f
)) * pixel_width
;
21463 /* Target X coordinate could be one line above or below the line
21464 of point, in which case we need to adjust the target X
21465 coordinate. Also, if moving to the left, we need to begin at
21466 the left edge of the point's screen line. */
21471 start_display (&it
, w
, pt
);
21472 reseat_at_previous_visible_line_start (&it
);
21473 it
.current_x
= it
.current_y
= it
.hpos
= 0;
21475 move_it_by_lines (&it
, pt_vpos
);
21479 move_it_by_lines (&it
, -1);
21480 target_x
= it
.last_visible_x
- !FRAME_WINDOW_P (it
.f
);
21481 target_is_eol_p
= true;
21482 /* Under word-wrap, we don't know the x coordinate of
21483 the last character displayed on the previous line,
21484 which immediately precedes the wrap point. To find
21485 out its x coordinate, we try moving to the right
21486 margin of the window, which will stop at the wrap
21487 point, and then reset target_x to point at the
21488 character that precedes the wrap point. This is not
21489 needed on GUI frames, because (see below) there we
21490 move from the left margin one grapheme cluster at a
21491 time, and stop when we hit the wrap point. */
21492 if (!FRAME_WINDOW_P (it
.f
) && it
.line_wrap
== WORD_WRAP
)
21494 void *it_data
= NULL
;
21497 SAVE_IT (it2
, it
, it_data
);
21498 move_it_in_display_line_to (&it
, ZV
, target_x
,
21499 MOVE_TO_POS
| MOVE_TO_X
);
21500 /* If we arrived at target_x, that _is_ the last
21501 character on the previous line. */
21502 if (it
.current_x
!= target_x
)
21503 target_x
= it
.current_x
- 1;
21504 RESTORE_IT (&it
, &it2
, it_data
);
21511 || (target_x
>= it
.last_visible_x
21512 && it
.line_wrap
!= TRUNCATE
))
21515 move_it_by_lines (&it
, 0);
21516 move_it_by_lines (&it
, 1);
21521 /* Move to the target X coordinate. */
21522 #ifdef HAVE_WINDOW_SYSTEM
21523 /* On GUI frames, as we don't know the X coordinate of the
21524 character to the left of point, moving point to the left
21525 requires walking, one grapheme cluster at a time, until we
21526 find ourself at a place immediately to the left of the
21527 character at point. */
21528 if (FRAME_WINDOW_P (it
.f
) && dir
< 0)
21530 struct text_pos new_pos
;
21531 enum move_it_result rc
= MOVE_X_REACHED
;
21533 if (it
.current_x
== 0)
21534 get_next_display_element (&it
);
21535 if (it
.what
== IT_COMPOSITION
)
21537 new_pos
.charpos
= it
.cmp_it
.charpos
;
21538 new_pos
.bytepos
= -1;
21541 new_pos
= it
.current
.pos
;
21543 while (it
.current_x
+ it
.pixel_width
<= target_x
21544 && (rc
== MOVE_X_REACHED
21545 /* Under word-wrap, move_it_in_display_line_to
21546 stops at correct coordinates, but sometimes
21547 returns MOVE_POS_MATCH_OR_ZV. */
21548 || (it
.line_wrap
== WORD_WRAP
21549 && rc
== MOVE_POS_MATCH_OR_ZV
)))
21551 int new_x
= it
.current_x
+ it
.pixel_width
;
21553 /* For composed characters, we want the position of the
21554 first character in the grapheme cluster (usually, the
21555 composition's base character), whereas it.current
21556 might give us the position of the _last_ one, e.g. if
21557 the composition is rendered in reverse due to bidi
21559 if (it
.what
== IT_COMPOSITION
)
21561 new_pos
.charpos
= it
.cmp_it
.charpos
;
21562 new_pos
.bytepos
= -1;
21565 new_pos
= it
.current
.pos
;
21566 if (new_x
== it
.current_x
)
21568 rc
= move_it_in_display_line_to (&it
, ZV
, new_x
,
21569 MOVE_TO_POS
| MOVE_TO_X
);
21570 if (ITERATOR_AT_END_OF_LINE_P (&it
) && !target_is_eol_p
)
21573 /* The previous position we saw in the loop is the one we
21575 if (new_pos
.bytepos
== -1)
21576 new_pos
.bytepos
= CHAR_TO_BYTE (new_pos
.charpos
);
21577 it
.current
.pos
= new_pos
;
21581 if (it
.current_x
!= target_x
)
21582 move_it_in_display_line_to (&it
, ZV
, target_x
, MOVE_TO_POS
| MOVE_TO_X
);
21584 /* When lines are truncated, the above loop will stop at the
21585 window edge. But we want to get to the end of line, even if
21586 it is beyond the window edge; automatic hscroll will then
21587 scroll the window to show point as appropriate. */
21588 if (target_is_eol_p
&& it
.line_wrap
== TRUNCATE
21589 && get_next_display_element (&it
))
21591 struct text_pos new_pos
= it
.current
.pos
;
21593 while (!ITERATOR_AT_END_OF_LINE_P (&it
))
21595 set_iterator_to_next (&it
, 0);
21596 if (it
.method
== GET_FROM_BUFFER
)
21597 new_pos
= it
.current
.pos
;
21598 if (!get_next_display_element (&it
))
21602 it
.current
.pos
= new_pos
;
21605 /* If we ended up in a display string that covers point, move to
21606 buffer position to the right in the visual order. */
21609 while (IT_CHARPOS (it
) == PT
)
21611 set_iterator_to_next (&it
, 0);
21612 if (!get_next_display_element (&it
))
21617 /* Move point to that position. */
21618 SET_PT_BOTH (IT_CHARPOS (it
), IT_BYTEPOS (it
));
21621 return make_number (PT
);
21623 #undef ROW_GLYPH_NEWLINE_P
21626 DEFUN ("bidi-resolved-levels", Fbidi_resolved_levels
,
21627 Sbidi_resolved_levels
, 0, 1, 0,
21628 doc
: /* Return the resolved bidirectional levels of characters at VPOS.
21630 The resolved levels are produced by the Emacs bidi reordering engine
21631 that implements the UBA, the Unicode Bidirectional Algorithm. Please
21632 read the Unicode Standard Annex 9 (UAX#9) for background information
21633 about these levels.
21635 VPOS is the zero-based number of the current window's screen line
21636 for which to produce the resolved levels. If VPOS is nil or omitted,
21637 it defaults to the screen line of point. If the window displays a
21638 header line, VPOS of zero will report on the header line, and first
21639 line of text in the window will have VPOS of 1.
21641 Value is an array of resolved levels, indexed by glyph number.
21642 Glyphs are numbered from zero starting from the beginning of the
21643 screen line, i.e. the left edge of the window for left-to-right lines
21644 and from the right edge for right-to-left lines. The resolved levels
21645 are produced only for the window's text area; text in display margins
21648 If the selected window's display is not up-to-date, or if the specified
21649 screen line does not display text, this function returns nil. It is
21650 highly recommended to bind this function to some simple key, like F8,
21651 in order to avoid these problems.
21653 This function exists mainly for testing the correctness of the
21654 Emacs UBA implementation, in particular with the test suite. */)
21657 struct window
*w
= XWINDOW (selected_window
);
21658 struct buffer
*b
= XBUFFER (w
->contents
);
21660 struct glyph_row
*row
;
21664 int d1
, d2
, d3
, d4
, d5
;
21666 pos_visible_p (w
, PT
, &d1
, &d2
, &d3
, &d4
, &d5
, &nrow
);
21670 CHECK_NUMBER_COERCE_MARKER (vpos
);
21671 nrow
= XINT (vpos
);
21674 /* We require up-to-date glyph matrix for this window. */
21675 if (w
->window_end_valid
21676 && !windows_or_buffers_changed
21678 && !b
->clip_changed
21679 && !b
->prevent_redisplay_optimizations_p
21680 && !window_outdated (w
)
21682 && nrow
< w
->current_matrix
->nrows
21683 && (row
= MATRIX_ROW (w
->current_matrix
, nrow
))->enabled_p
21684 && MATRIX_ROW_DISPLAYS_TEXT_P (row
))
21686 struct glyph
*g
, *e
, *g1
;
21688 Lisp_Object levels
;
21690 if (!row
->reversed_p
) /* Left-to-right glyph row. */
21692 g
= g1
= row
->glyphs
[TEXT_AREA
];
21693 e
= g
+ row
->used
[TEXT_AREA
];
21695 /* Skip over glyphs at the start of the row that was
21696 generated by redisplay for its own needs. */
21698 && NILP (g
->object
)
21703 /* Count the "interesting" glyphs in this row. */
21704 for (nglyphs
= 0; g
< e
&& !NILP (g
->object
); g
++)
21707 /* Create and fill the array. */
21708 levels
= make_uninit_vector (nglyphs
);
21709 for (i
= 0; g1
< g
; i
++, g1
++)
21710 ASET (levels
, i
, make_number (g1
->resolved_level
));
21712 else /* Right-to-left glyph row. */
21714 g
= row
->glyphs
[TEXT_AREA
] + row
->used
[TEXT_AREA
] - 1;
21715 e
= row
->glyphs
[TEXT_AREA
] - 1;
21717 && NILP (g
->object
)
21721 for (nglyphs
= 0; g
> e
&& !NILP (g
->object
); g
--)
21723 levels
= make_uninit_vector (nglyphs
);
21724 for (i
= 0; g1
> g
; i
++, g1
--)
21725 ASET (levels
, i
, make_number (g1
->resolved_level
));
21735 /***********************************************************************
21737 ***********************************************************************/
21739 /* Redisplay the menu bar in the frame for window W.
21741 The menu bar of X frames that don't have X toolkit support is
21742 displayed in a special window W->frame->menu_bar_window.
21744 The menu bar of terminal frames is treated specially as far as
21745 glyph matrices are concerned. Menu bar lines are not part of
21746 windows, so the update is done directly on the frame matrix rows
21747 for the menu bar. */
21750 display_menu_bar (struct window
*w
)
21752 struct frame
*f
= XFRAME (WINDOW_FRAME (w
));
21757 /* Don't do all this for graphical frames. */
21759 if (FRAME_W32_P (f
))
21762 #if defined (USE_X_TOOLKIT) || defined (USE_GTK)
21768 if (FRAME_NS_P (f
))
21770 #endif /* HAVE_NS */
21772 #if defined (USE_X_TOOLKIT) || defined (USE_GTK)
21773 eassert (!FRAME_WINDOW_P (f
));
21774 init_iterator (&it
, w
, -1, -1, f
->desired_matrix
->rows
, MENU_FACE_ID
);
21775 it
.first_visible_x
= 0;
21776 it
.last_visible_x
= FRAME_PIXEL_WIDTH (f
);
21777 #elif defined (HAVE_X_WINDOWS) /* X without toolkit. */
21778 if (FRAME_WINDOW_P (f
))
21780 /* Menu bar lines are displayed in the desired matrix of the
21781 dummy window menu_bar_window. */
21782 struct window
*menu_w
;
21783 menu_w
= XWINDOW (f
->menu_bar_window
);
21784 init_iterator (&it
, menu_w
, -1, -1, menu_w
->desired_matrix
->rows
,
21786 it
.first_visible_x
= 0;
21787 it
.last_visible_x
= FRAME_PIXEL_WIDTH (f
);
21790 #endif /* not USE_X_TOOLKIT and not USE_GTK */
21792 /* This is a TTY frame, i.e. character hpos/vpos are used as
21794 init_iterator (&it
, w
, -1, -1, f
->desired_matrix
->rows
,
21796 it
.first_visible_x
= 0;
21797 it
.last_visible_x
= FRAME_COLS (f
);
21800 /* FIXME: This should be controlled by a user option. See the
21801 comments in redisplay_tool_bar and display_mode_line about
21803 it
.paragraph_embedding
= L2R
;
21805 /* Clear all rows of the menu bar. */
21806 for (i
= 0; i
< FRAME_MENU_BAR_LINES (f
); ++i
)
21808 struct glyph_row
*row
= it
.glyph_row
+ i
;
21809 clear_glyph_row (row
);
21810 row
->enabled_p
= true;
21811 row
->full_width_p
= 1;
21812 row
->reversed_p
= false;
21815 /* Display all items of the menu bar. */
21816 items
= FRAME_MENU_BAR_ITEMS (it
.f
);
21817 for (i
= 0; i
< ASIZE (items
); i
+= 4)
21819 Lisp_Object string
;
21821 /* Stop at nil string. */
21822 string
= AREF (items
, i
+ 1);
21826 /* Remember where item was displayed. */
21827 ASET (items
, i
+ 3, make_number (it
.hpos
));
21829 /* Display the item, pad with one space. */
21830 if (it
.current_x
< it
.last_visible_x
)
21831 display_string (NULL
, string
, Qnil
, 0, 0, &it
,
21832 SCHARS (string
) + 1, 0, 0, -1);
21835 /* Fill out the line with spaces. */
21836 if (it
.current_x
< it
.last_visible_x
)
21837 display_string ("", Qnil
, Qnil
, 0, 0, &it
, -1, 0, 0, -1);
21839 /* Compute the total height of the lines. */
21840 compute_line_metrics (&it
);
21843 /* Deep copy of a glyph row, including the glyphs. */
21845 deep_copy_glyph_row (struct glyph_row
*to
, struct glyph_row
*from
)
21847 struct glyph
*pointers
[1 + LAST_AREA
];
21848 int to_used
= to
->used
[TEXT_AREA
];
21850 /* Save glyph pointers of TO. */
21851 memcpy (pointers
, to
->glyphs
, sizeof to
->glyphs
);
21853 /* Do a structure assignment. */
21856 /* Restore original glyph pointers of TO. */
21857 memcpy (to
->glyphs
, pointers
, sizeof to
->glyphs
);
21859 /* Copy the glyphs. */
21860 memcpy (to
->glyphs
[TEXT_AREA
], from
->glyphs
[TEXT_AREA
],
21861 min (from
->used
[TEXT_AREA
], to_used
) * sizeof (struct glyph
));
21863 /* If we filled only part of the TO row, fill the rest with
21864 space_glyph (which will display as empty space). */
21865 if (to_used
> from
->used
[TEXT_AREA
])
21866 fill_up_frame_row_with_spaces (to
, to_used
);
21869 /* Display one menu item on a TTY, by overwriting the glyphs in the
21870 frame F's desired glyph matrix with glyphs produced from the menu
21871 item text. Called from term.c to display TTY drop-down menus one
21874 ITEM_TEXT is the menu item text as a C string.
21876 FACE_ID is the face ID to be used for this menu item. FACE_ID
21877 could specify one of 3 faces: a face for an enabled item, a face
21878 for a disabled item, or a face for a selected item.
21880 X and Y are coordinates of the first glyph in the frame's desired
21881 matrix to be overwritten by the menu item. Since this is a TTY, Y
21882 is the zero-based number of the glyph row and X is the zero-based
21883 glyph number in the row, starting from left, where to start
21884 displaying the item.
21886 SUBMENU non-zero means this menu item drops down a submenu, which
21887 should be indicated by displaying a proper visual cue after the
21891 display_tty_menu_item (const char *item_text
, int width
, int face_id
,
21892 int x
, int y
, int submenu
)
21895 struct frame
*f
= SELECTED_FRAME ();
21896 struct window
*w
= XWINDOW (f
->selected_window
);
21897 int saved_used
, saved_truncated
, saved_width
, saved_reversed
;
21898 struct glyph_row
*row
;
21899 size_t item_len
= strlen (item_text
);
21901 eassert (FRAME_TERMCAP_P (f
));
21903 /* Don't write beyond the matrix's last row. This can happen for
21904 TTY screens that are not high enough to show the entire menu.
21905 (This is actually a bit of defensive programming, as
21906 tty_menu_display already limits the number of menu items to one
21907 less than the number of screen lines.) */
21908 if (y
>= f
->desired_matrix
->nrows
)
21911 init_iterator (&it
, w
, -1, -1, f
->desired_matrix
->rows
+ y
, MENU_FACE_ID
);
21912 it
.first_visible_x
= 0;
21913 it
.last_visible_x
= FRAME_COLS (f
) - 1;
21914 row
= it
.glyph_row
;
21915 /* Start with the row contents from the current matrix. */
21916 deep_copy_glyph_row (row
, f
->current_matrix
->rows
+ y
);
21917 saved_width
= row
->full_width_p
;
21918 row
->full_width_p
= 1;
21919 saved_reversed
= row
->reversed_p
;
21920 row
->reversed_p
= 0;
21921 row
->enabled_p
= true;
21923 /* Arrange for the menu item glyphs to start at (X,Y) and have the
21925 eassert (x
< f
->desired_matrix
->matrix_w
);
21926 it
.current_x
= it
.hpos
= x
;
21927 it
.current_y
= it
.vpos
= y
;
21928 saved_used
= row
->used
[TEXT_AREA
];
21929 saved_truncated
= row
->truncated_on_right_p
;
21930 row
->used
[TEXT_AREA
] = x
;
21931 it
.face_id
= face_id
;
21932 it
.line_wrap
= TRUNCATE
;
21934 /* FIXME: This should be controlled by a user option. See the
21935 comments in redisplay_tool_bar and display_mode_line about this.
21936 Also, if paragraph_embedding could ever be R2L, changes will be
21937 needed to avoid shifting to the right the row characters in
21938 term.c:append_glyph. */
21939 it
.paragraph_embedding
= L2R
;
21941 /* Pad with a space on the left. */
21942 display_string (" ", Qnil
, Qnil
, 0, 0, &it
, 1, 0, FRAME_COLS (f
) - 1, -1);
21944 /* Display the menu item, pad with spaces to WIDTH. */
21947 display_string (item_text
, Qnil
, Qnil
, 0, 0, &it
,
21948 item_len
, 0, FRAME_COLS (f
) - 1, -1);
21950 /* Indicate with " >" that there's a submenu. */
21951 display_string (" >", Qnil
, Qnil
, 0, 0, &it
, width
, 0,
21952 FRAME_COLS (f
) - 1, -1);
21955 display_string (item_text
, Qnil
, Qnil
, 0, 0, &it
,
21956 width
, 0, FRAME_COLS (f
) - 1, -1);
21958 row
->used
[TEXT_AREA
] = max (saved_used
, row
->used
[TEXT_AREA
]);
21959 row
->truncated_on_right_p
= saved_truncated
;
21960 row
->hash
= row_hash (row
);
21961 row
->full_width_p
= saved_width
;
21962 row
->reversed_p
= saved_reversed
;
21965 /***********************************************************************
21967 ***********************************************************************/
21969 /* Redisplay mode lines in the window tree whose root is WINDOW. If
21970 FORCE is non-zero, redisplay mode lines unconditionally.
21971 Otherwise, redisplay only mode lines that are garbaged. Value is
21972 the number of windows whose mode lines were redisplayed. */
21975 redisplay_mode_lines (Lisp_Object window
, bool force
)
21979 while (!NILP (window
))
21981 struct window
*w
= XWINDOW (window
);
21983 if (WINDOWP (w
->contents
))
21984 nwindows
+= redisplay_mode_lines (w
->contents
, force
);
21986 || FRAME_GARBAGED_P (XFRAME (w
->frame
))
21987 || !MATRIX_MODE_LINE_ROW (w
->current_matrix
)->enabled_p
)
21989 struct text_pos lpoint
;
21990 struct buffer
*old
= current_buffer
;
21992 /* Set the window's buffer for the mode line display. */
21993 SET_TEXT_POS (lpoint
, PT
, PT_BYTE
);
21994 set_buffer_internal_1 (XBUFFER (w
->contents
));
21996 /* Point refers normally to the selected window. For any
21997 other window, set up appropriate value. */
21998 if (!EQ (window
, selected_window
))
22000 struct text_pos pt
;
22002 CLIP_TEXT_POS_FROM_MARKER (pt
, w
->pointm
);
22003 TEMP_SET_PT_BOTH (CHARPOS (pt
), BYTEPOS (pt
));
22006 /* Display mode lines. */
22007 clear_glyph_matrix (w
->desired_matrix
);
22008 if (display_mode_lines (w
))
22011 /* Restore old settings. */
22012 set_buffer_internal_1 (old
);
22013 TEMP_SET_PT_BOTH (CHARPOS (lpoint
), BYTEPOS (lpoint
));
22023 /* Display the mode and/or header line of window W. Value is the
22024 sum number of mode lines and header lines displayed. */
22027 display_mode_lines (struct window
*w
)
22029 Lisp_Object old_selected_window
= selected_window
;
22030 Lisp_Object old_selected_frame
= selected_frame
;
22031 Lisp_Object new_frame
= w
->frame
;
22032 Lisp_Object old_frame_selected_window
= XFRAME (new_frame
)->selected_window
;
22035 selected_frame
= new_frame
;
22036 /* FIXME: If we were to allow the mode-line's computation changing the buffer
22037 or window's point, then we'd need select_window_1 here as well. */
22038 XSETWINDOW (selected_window
, w
);
22039 XFRAME (new_frame
)->selected_window
= selected_window
;
22041 /* These will be set while the mode line specs are processed. */
22042 line_number_displayed
= 0;
22043 w
->column_number_displayed
= -1;
22045 if (WINDOW_WANTS_MODELINE_P (w
))
22047 struct window
*sel_w
= XWINDOW (old_selected_window
);
22049 /* Select mode line face based on the real selected window. */
22050 display_mode_line (w
, CURRENT_MODE_LINE_FACE_ID_3 (sel_w
, sel_w
, w
),
22051 BVAR (current_buffer
, mode_line_format
));
22055 if (WINDOW_WANTS_HEADER_LINE_P (w
))
22057 display_mode_line (w
, HEADER_LINE_FACE_ID
,
22058 BVAR (current_buffer
, header_line_format
));
22062 XFRAME (new_frame
)->selected_window
= old_frame_selected_window
;
22063 selected_frame
= old_selected_frame
;
22064 selected_window
= old_selected_window
;
22066 w
->must_be_updated_p
= true;
22071 /* Display mode or header line of window W. FACE_ID specifies which
22072 line to display; it is either MODE_LINE_FACE_ID or
22073 HEADER_LINE_FACE_ID. FORMAT is the mode/header line format to
22074 display. Value is the pixel height of the mode/header line
22078 display_mode_line (struct window
*w
, enum face_id face_id
, Lisp_Object format
)
22082 ptrdiff_t count
= SPECPDL_INDEX ();
22084 init_iterator (&it
, w
, -1, -1, NULL
, face_id
);
22085 /* Don't extend on a previously drawn mode-line.
22086 This may happen if called from pos_visible_p. */
22087 it
.glyph_row
->enabled_p
= false;
22088 prepare_desired_row (w
, it
.glyph_row
, true);
22090 it
.glyph_row
->mode_line_p
= 1;
22092 /* FIXME: This should be controlled by a user option. But
22093 supporting such an option is not trivial, since the mode line is
22094 made up of many separate strings. */
22095 it
.paragraph_embedding
= L2R
;
22097 record_unwind_protect (unwind_format_mode_line
,
22098 format_mode_line_unwind_data (NULL
, NULL
, Qnil
, 0));
22100 mode_line_target
= MODE_LINE_DISPLAY
;
22102 /* Temporarily make frame's keyboard the current kboard so that
22103 kboard-local variables in the mode_line_format will get the right
22105 push_kboard (FRAME_KBOARD (it
.f
));
22106 record_unwind_save_match_data ();
22107 display_mode_element (&it
, 0, 0, 0, format
, Qnil
, 0);
22110 unbind_to (count
, Qnil
);
22112 /* Fill up with spaces. */
22113 display_string (" ", Qnil
, Qnil
, 0, 0, &it
, 10000, -1, -1, 0);
22115 compute_line_metrics (&it
);
22116 it
.glyph_row
->full_width_p
= 1;
22117 it
.glyph_row
->continued_p
= 0;
22118 it
.glyph_row
->truncated_on_left_p
= 0;
22119 it
.glyph_row
->truncated_on_right_p
= 0;
22121 /* Make a 3D mode-line have a shadow at its right end. */
22122 face
= FACE_FROM_ID (it
.f
, face_id
);
22123 extend_face_to_end_of_line (&it
);
22124 if (face
->box
!= FACE_NO_BOX
)
22126 struct glyph
*last
= (it
.glyph_row
->glyphs
[TEXT_AREA
]
22127 + it
.glyph_row
->used
[TEXT_AREA
] - 1);
22128 last
->right_box_line_p
= 1;
22131 return it
.glyph_row
->height
;
22134 /* Move element ELT in LIST to the front of LIST.
22135 Return the updated list. */
22138 move_elt_to_front (Lisp_Object elt
, Lisp_Object list
)
22140 register Lisp_Object tail
, prev
;
22141 register Lisp_Object tem
;
22145 while (CONSP (tail
))
22151 /* Splice out the link TAIL. */
22153 list
= XCDR (tail
);
22155 Fsetcdr (prev
, XCDR (tail
));
22157 /* Now make it the first. */
22158 Fsetcdr (tail
, list
);
22163 tail
= XCDR (tail
);
22167 /* Not found--return unchanged LIST. */
22171 /* Contribute ELT to the mode line for window IT->w. How it
22172 translates into text depends on its data type.
22174 IT describes the display environment in which we display, as usual.
22176 DEPTH is the depth in recursion. It is used to prevent
22177 infinite recursion here.
22179 FIELD_WIDTH is the number of characters the display of ELT should
22180 occupy in the mode line, and PRECISION is the maximum number of
22181 characters to display from ELT's representation. See
22182 display_string for details.
22184 Returns the hpos of the end of the text generated by ELT.
22186 PROPS is a property list to add to any string we encounter.
22188 If RISKY is nonzero, remove (disregard) any properties in any string
22189 we encounter, and ignore :eval and :propertize.
22191 The global variable `mode_line_target' determines whether the
22192 output is passed to `store_mode_line_noprop',
22193 `store_mode_line_string', or `display_string'. */
22196 display_mode_element (struct it
*it
, int depth
, int field_width
, int precision
,
22197 Lisp_Object elt
, Lisp_Object props
, int risky
)
22199 int n
= 0, field
, prec
;
22204 elt
= build_string ("*too-deep*");
22208 switch (XTYPE (elt
))
22212 /* A string: output it and check for %-constructs within it. */
22214 ptrdiff_t offset
= 0;
22216 if (SCHARS (elt
) > 0
22217 && (!NILP (props
) || risky
))
22219 Lisp_Object oprops
, aelt
;
22220 oprops
= Ftext_properties_at (make_number (0), elt
);
22222 /* If the starting string's properties are not what
22223 we want, translate the string. Also, if the string
22224 is risky, do that anyway. */
22226 if (NILP (Fequal (props
, oprops
)) || risky
)
22228 /* If the starting string has properties,
22229 merge the specified ones onto the existing ones. */
22230 if (! NILP (oprops
) && !risky
)
22234 oprops
= Fcopy_sequence (oprops
);
22236 while (CONSP (tem
))
22238 oprops
= Fplist_put (oprops
, XCAR (tem
),
22239 XCAR (XCDR (tem
)));
22240 tem
= XCDR (XCDR (tem
));
22245 aelt
= Fassoc (elt
, mode_line_proptrans_alist
);
22246 if (! NILP (aelt
) && !NILP (Fequal (props
, XCDR (aelt
))))
22248 /* AELT is what we want. Move it to the front
22249 without consing. */
22251 mode_line_proptrans_alist
22252 = move_elt_to_front (aelt
, mode_line_proptrans_alist
);
22258 /* If AELT has the wrong props, it is useless.
22259 so get rid of it. */
22261 mode_line_proptrans_alist
22262 = Fdelq (aelt
, mode_line_proptrans_alist
);
22264 elt
= Fcopy_sequence (elt
);
22265 Fset_text_properties (make_number (0), Flength (elt
),
22267 /* Add this item to mode_line_proptrans_alist. */
22268 mode_line_proptrans_alist
22269 = Fcons (Fcons (elt
, props
),
22270 mode_line_proptrans_alist
);
22271 /* Truncate mode_line_proptrans_alist
22272 to at most 50 elements. */
22273 tem
= Fnthcdr (make_number (50),
22274 mode_line_proptrans_alist
);
22276 XSETCDR (tem
, Qnil
);
22285 prec
= precision
- n
;
22286 switch (mode_line_target
)
22288 case MODE_LINE_NOPROP
:
22289 case MODE_LINE_TITLE
:
22290 n
+= store_mode_line_noprop (SSDATA (elt
), -1, prec
);
22292 case MODE_LINE_STRING
:
22293 n
+= store_mode_line_string (NULL
, elt
, 1, 0, prec
, Qnil
);
22295 case MODE_LINE_DISPLAY
:
22296 n
+= display_string (NULL
, elt
, Qnil
, 0, 0, it
,
22297 0, prec
, 0, STRING_MULTIBYTE (elt
));
22304 /* Handle the non-literal case. */
22306 while ((precision
<= 0 || n
< precision
)
22307 && SREF (elt
, offset
) != 0
22308 && (mode_line_target
!= MODE_LINE_DISPLAY
22309 || it
->current_x
< it
->last_visible_x
))
22311 ptrdiff_t last_offset
= offset
;
22313 /* Advance to end of string or next format specifier. */
22314 while ((c
= SREF (elt
, offset
++)) != '\0' && c
!= '%')
22317 if (offset
- 1 != last_offset
)
22319 ptrdiff_t nchars
, nbytes
;
22321 /* Output to end of string or up to '%'. Field width
22322 is length of string. Don't output more than
22323 PRECISION allows us. */
22326 prec
= c_string_width (SDATA (elt
) + last_offset
,
22327 offset
- last_offset
, precision
- n
,
22330 switch (mode_line_target
)
22332 case MODE_LINE_NOPROP
:
22333 case MODE_LINE_TITLE
:
22334 n
+= store_mode_line_noprop (SSDATA (elt
) + last_offset
, 0, prec
);
22336 case MODE_LINE_STRING
:
22338 ptrdiff_t bytepos
= last_offset
;
22339 ptrdiff_t charpos
= string_byte_to_char (elt
, bytepos
);
22340 ptrdiff_t endpos
= (precision
<= 0
22341 ? string_byte_to_char (elt
, offset
)
22342 : charpos
+ nchars
);
22344 n
+= store_mode_line_string (NULL
,
22345 Fsubstring (elt
, make_number (charpos
),
22346 make_number (endpos
)),
22350 case MODE_LINE_DISPLAY
:
22352 ptrdiff_t bytepos
= last_offset
;
22353 ptrdiff_t charpos
= string_byte_to_char (elt
, bytepos
);
22355 if (precision
<= 0)
22356 nchars
= string_byte_to_char (elt
, offset
) - charpos
;
22357 n
+= display_string (NULL
, elt
, Qnil
, 0, charpos
,
22359 STRING_MULTIBYTE (elt
));
22364 else /* c == '%' */
22366 ptrdiff_t percent_position
= offset
;
22368 /* Get the specified minimum width. Zero means
22371 while ((c
= SREF (elt
, offset
++)) >= '0' && c
<= '9')
22372 field
= field
* 10 + c
- '0';
22374 /* Don't pad beyond the total padding allowed. */
22375 if (field_width
- n
> 0 && field
> field_width
- n
)
22376 field
= field_width
- n
;
22378 /* Note that either PRECISION <= 0 or N < PRECISION. */
22379 prec
= precision
- n
;
22382 n
+= display_mode_element (it
, depth
, field
, prec
,
22383 Vglobal_mode_string
, props
,
22388 ptrdiff_t bytepos
, charpos
;
22390 Lisp_Object string
;
22392 bytepos
= percent_position
;
22393 charpos
= (STRING_MULTIBYTE (elt
)
22394 ? string_byte_to_char (elt
, bytepos
)
22396 spec
= decode_mode_spec (it
->w
, c
, field
, &string
);
22397 multibyte
= STRINGP (string
) && STRING_MULTIBYTE (string
);
22399 switch (mode_line_target
)
22401 case MODE_LINE_NOPROP
:
22402 case MODE_LINE_TITLE
:
22403 n
+= store_mode_line_noprop (spec
, field
, prec
);
22405 case MODE_LINE_STRING
:
22407 Lisp_Object tem
= build_string (spec
);
22408 props
= Ftext_properties_at (make_number (charpos
), elt
);
22409 /* Should only keep face property in props */
22410 n
+= store_mode_line_string (NULL
, tem
, 0, field
, prec
, props
);
22413 case MODE_LINE_DISPLAY
:
22415 int nglyphs_before
, nwritten
;
22417 nglyphs_before
= it
->glyph_row
->used
[TEXT_AREA
];
22418 nwritten
= display_string (spec
, string
, elt
,
22423 /* Assign to the glyphs written above the
22424 string where the `%x' came from, position
22428 struct glyph
*glyph
22429 = (it
->glyph_row
->glyphs
[TEXT_AREA
]
22433 for (i
= 0; i
< nwritten
; ++i
)
22435 glyph
[i
].object
= elt
;
22436 glyph
[i
].charpos
= charpos
;
22453 /* A symbol: process the value of the symbol recursively
22454 as if it appeared here directly. Avoid error if symbol void.
22455 Special case: if value of symbol is a string, output the string
22458 register Lisp_Object tem
;
22460 /* If the variable is not marked as risky to set
22461 then its contents are risky to use. */
22462 if (NILP (Fget (elt
, Qrisky_local_variable
)))
22465 tem
= Fboundp (elt
);
22468 tem
= Fsymbol_value (elt
);
22469 /* If value is a string, output that string literally:
22470 don't check for % within it. */
22474 if (!EQ (tem
, elt
))
22476 /* Give up right away for nil or t. */
22486 register Lisp_Object car
, tem
;
22488 /* A cons cell: five distinct cases.
22489 If first element is :eval or :propertize, do something special.
22490 If first element is a string or a cons, process all the elements
22491 and effectively concatenate them.
22492 If first element is a negative number, truncate displaying cdr to
22493 at most that many characters. If positive, pad (with spaces)
22494 to at least that many characters.
22495 If first element is a symbol, process the cadr or caddr recursively
22496 according to whether the symbol's value is non-nil or nil. */
22498 if (EQ (car
, QCeval
))
22500 /* An element of the form (:eval FORM) means evaluate FORM
22501 and use the result as mode line elements. */
22506 if (CONSP (XCDR (elt
)))
22509 spec
= safe__eval (true, XCAR (XCDR (elt
)));
22510 n
+= display_mode_element (it
, depth
, field_width
- n
,
22511 precision
- n
, spec
, props
,
22515 else if (EQ (car
, QCpropertize
))
22517 /* An element of the form (:propertize ELT PROPS...)
22518 means display ELT but applying properties PROPS. */
22523 if (CONSP (XCDR (elt
)))
22524 n
+= display_mode_element (it
, depth
, field_width
- n
,
22525 precision
- n
, XCAR (XCDR (elt
)),
22526 XCDR (XCDR (elt
)), risky
);
22528 else if (SYMBOLP (car
))
22530 tem
= Fboundp (car
);
22534 /* elt is now the cdr, and we know it is a cons cell.
22535 Use its car if CAR has a non-nil value. */
22538 tem
= Fsymbol_value (car
);
22545 /* Symbol's value is nil (or symbol is unbound)
22546 Get the cddr of the original list
22547 and if possible find the caddr and use that. */
22551 else if (!CONSP (elt
))
22556 else if (INTEGERP (car
))
22558 register int lim
= XINT (car
);
22562 /* Negative int means reduce maximum width. */
22563 if (precision
<= 0)
22566 precision
= min (precision
, -lim
);
22570 /* Padding specified. Don't let it be more than
22571 current maximum. */
22573 lim
= min (precision
, lim
);
22575 /* If that's more padding than already wanted, queue it.
22576 But don't reduce padding already specified even if
22577 that is beyond the current truncation point. */
22578 field_width
= max (lim
, field_width
);
22582 else if (STRINGP (car
) || CONSP (car
))
22584 Lisp_Object halftail
= elt
;
22588 && (precision
<= 0 || n
< precision
))
22590 n
+= display_mode_element (it
, depth
,
22591 /* Do padding only after the last
22592 element in the list. */
22593 (! CONSP (XCDR (elt
))
22596 precision
- n
, XCAR (elt
),
22600 if ((len
& 1) == 0)
22601 halftail
= XCDR (halftail
);
22602 /* Check for cycle. */
22603 if (EQ (halftail
, elt
))
22612 elt
= build_string ("*invalid*");
22616 /* Pad to FIELD_WIDTH. */
22617 if (field_width
> 0 && n
< field_width
)
22619 switch (mode_line_target
)
22621 case MODE_LINE_NOPROP
:
22622 case MODE_LINE_TITLE
:
22623 n
+= store_mode_line_noprop ("", field_width
- n
, 0);
22625 case MODE_LINE_STRING
:
22626 n
+= store_mode_line_string ("", Qnil
, 0, field_width
- n
, 0, Qnil
);
22628 case MODE_LINE_DISPLAY
:
22629 n
+= display_string ("", Qnil
, Qnil
, 0, 0, it
, field_width
- n
,
22638 /* Store a mode-line string element in mode_line_string_list.
22640 If STRING is non-null, display that C string. Otherwise, the Lisp
22641 string LISP_STRING is displayed.
22643 FIELD_WIDTH is the minimum number of output glyphs to produce.
22644 If STRING has fewer characters than FIELD_WIDTH, pad to the right
22645 with spaces. FIELD_WIDTH <= 0 means don't pad.
22647 PRECISION is the maximum number of characters to output from
22648 STRING. PRECISION <= 0 means don't truncate the string.
22650 If COPY_STRING is non-zero, make a copy of LISP_STRING before adding
22651 properties to the string.
22653 PROPS are the properties to add to the string.
22654 The mode_line_string_face face property is always added to the string.
22658 store_mode_line_string (const char *string
, Lisp_Object lisp_string
, int copy_string
,
22659 int field_width
, int precision
, Lisp_Object props
)
22664 if (string
!= NULL
)
22666 len
= strlen (string
);
22667 if (precision
> 0 && len
> precision
)
22669 lisp_string
= make_string (string
, len
);
22671 props
= mode_line_string_face_prop
;
22672 else if (!NILP (mode_line_string_face
))
22674 Lisp_Object face
= Fplist_get (props
, Qface
);
22675 props
= Fcopy_sequence (props
);
22677 face
= mode_line_string_face
;
22679 face
= list2 (face
, mode_line_string_face
);
22680 props
= Fplist_put (props
, Qface
, face
);
22682 Fadd_text_properties (make_number (0), make_number (len
),
22683 props
, lisp_string
);
22687 len
= XFASTINT (Flength (lisp_string
));
22688 if (precision
> 0 && len
> precision
)
22691 lisp_string
= Fsubstring (lisp_string
, make_number (0), make_number (len
));
22694 if (!NILP (mode_line_string_face
))
22698 props
= Ftext_properties_at (make_number (0), lisp_string
);
22699 face
= Fplist_get (props
, Qface
);
22701 face
= mode_line_string_face
;
22703 face
= list2 (face
, mode_line_string_face
);
22704 props
= list2 (Qface
, face
);
22706 lisp_string
= Fcopy_sequence (lisp_string
);
22709 Fadd_text_properties (make_number (0), make_number (len
),
22710 props
, lisp_string
);
22715 mode_line_string_list
= Fcons (lisp_string
, mode_line_string_list
);
22719 if (field_width
> len
)
22721 field_width
-= len
;
22722 lisp_string
= Fmake_string (make_number (field_width
), make_number (' '));
22724 Fadd_text_properties (make_number (0), make_number (field_width
),
22725 props
, lisp_string
);
22726 mode_line_string_list
= Fcons (lisp_string
, mode_line_string_list
);
22734 DEFUN ("format-mode-line", Fformat_mode_line
, Sformat_mode_line
,
22736 doc
: /* Format a string out of a mode line format specification.
22737 First arg FORMAT specifies the mode line format (see `mode-line-format'
22738 for details) to use.
22740 By default, the format is evaluated for the currently selected window.
22742 Optional second arg FACE specifies the face property to put on all
22743 characters for which no face is specified. The value nil means the
22744 default face. The value t means whatever face the window's mode line
22745 currently uses (either `mode-line' or `mode-line-inactive',
22746 depending on whether the window is the selected window or not).
22747 An integer value means the value string has no text
22750 Optional third and fourth args WINDOW and BUFFER specify the window
22751 and buffer to use as the context for the formatting (defaults
22752 are the selected window and the WINDOW's buffer). */)
22753 (Lisp_Object format
, Lisp_Object face
,
22754 Lisp_Object window
, Lisp_Object buffer
)
22759 struct buffer
*old_buffer
= NULL
;
22761 int no_props
= INTEGERP (face
);
22762 ptrdiff_t count
= SPECPDL_INDEX ();
22764 int string_start
= 0;
22766 w
= decode_any_window (window
);
22767 XSETWINDOW (window
, w
);
22770 buffer
= w
->contents
;
22771 CHECK_BUFFER (buffer
);
22773 /* Make formatting the modeline a non-op when noninteractive, otherwise
22774 there will be problems later caused by a partially initialized frame. */
22775 if (NILP (format
) || noninteractive
)
22776 return empty_unibyte_string
;
22781 face_id
= (NILP (face
) || EQ (face
, Qdefault
)) ? DEFAULT_FACE_ID
22782 : EQ (face
, Qt
) ? (EQ (window
, selected_window
)
22783 ? MODE_LINE_FACE_ID
: MODE_LINE_INACTIVE_FACE_ID
)
22784 : EQ (face
, Qmode_line
) ? MODE_LINE_FACE_ID
22785 : EQ (face
, Qmode_line_inactive
) ? MODE_LINE_INACTIVE_FACE_ID
22786 : EQ (face
, Qheader_line
) ? HEADER_LINE_FACE_ID
22787 : EQ (face
, Qtool_bar
) ? TOOL_BAR_FACE_ID
22790 old_buffer
= current_buffer
;
22792 /* Save things including mode_line_proptrans_alist,
22793 and set that to nil so that we don't alter the outer value. */
22794 record_unwind_protect (unwind_format_mode_line
,
22795 format_mode_line_unwind_data
22796 (XFRAME (WINDOW_FRAME (w
)),
22797 old_buffer
, selected_window
, 1));
22798 mode_line_proptrans_alist
= Qnil
;
22800 Fselect_window (window
, Qt
);
22801 set_buffer_internal_1 (XBUFFER (buffer
));
22803 init_iterator (&it
, w
, -1, -1, NULL
, face_id
);
22807 mode_line_target
= MODE_LINE_NOPROP
;
22808 mode_line_string_face_prop
= Qnil
;
22809 mode_line_string_list
= Qnil
;
22810 string_start
= MODE_LINE_NOPROP_LEN (0);
22814 mode_line_target
= MODE_LINE_STRING
;
22815 mode_line_string_list
= Qnil
;
22816 mode_line_string_face
= face
;
22817 mode_line_string_face_prop
22818 = NILP (face
) ? Qnil
: list2 (Qface
, face
);
22821 push_kboard (FRAME_KBOARD (it
.f
));
22822 display_mode_element (&it
, 0, 0, 0, format
, Qnil
, 0);
22827 len
= MODE_LINE_NOPROP_LEN (string_start
);
22828 str
= make_string (mode_line_noprop_buf
+ string_start
, len
);
22832 mode_line_string_list
= Fnreverse (mode_line_string_list
);
22833 str
= Fmapconcat (intern ("identity"), mode_line_string_list
,
22834 empty_unibyte_string
);
22837 unbind_to (count
, Qnil
);
22841 /* Write a null-terminated, right justified decimal representation of
22842 the positive integer D to BUF using a minimal field width WIDTH. */
22845 pint2str (register char *buf
, register int width
, register ptrdiff_t d
)
22847 register char *p
= buf
;
22855 *p
++ = d
% 10 + '0';
22860 for (width
-= (int) (p
- buf
); width
> 0; --width
)
22871 /* Write a null-terminated, right justified decimal and "human
22872 readable" representation of the nonnegative integer D to BUF using
22873 a minimal field width WIDTH. D should be smaller than 999.5e24. */
22875 static const char power_letter
[] =
22889 pint2hrstr (char *buf
, int width
, ptrdiff_t d
)
22891 /* We aim to represent the nonnegative integer D as
22892 QUOTIENT.TENTHS * 10 ^ (3 * EXPONENT). */
22893 ptrdiff_t quotient
= d
;
22895 /* -1 means: do not use TENTHS. */
22899 /* Length of QUOTIENT.TENTHS as a string. */
22905 if (quotient
>= 1000)
22907 /* Scale to the appropriate EXPONENT. */
22910 remainder
= quotient
% 1000;
22914 while (quotient
>= 1000);
22916 /* Round to nearest and decide whether to use TENTHS or not. */
22919 tenths
= remainder
/ 100;
22920 if (remainder
% 100 >= 50)
22927 if (quotient
== 10)
22935 if (remainder
>= 500)
22937 if (quotient
< 999)
22948 /* Calculate the LENGTH of QUOTIENT.TENTHS as a string. */
22949 if (tenths
== -1 && quotient
<= 99)
22956 p
= psuffix
= buf
+ max (width
, length
);
22958 /* Print EXPONENT. */
22959 *psuffix
++ = power_letter
[exponent
];
22962 /* Print TENTHS. */
22965 *--p
= '0' + tenths
;
22969 /* Print QUOTIENT. */
22972 int digit
= quotient
% 10;
22973 *--p
= '0' + digit
;
22975 while ((quotient
/= 10) != 0);
22977 /* Print leading spaces. */
22982 /* Set a mnemonic character for coding_system (Lisp symbol) in BUF.
22983 If EOL_FLAG is 1, set also a mnemonic character for end-of-line
22984 type of CODING_SYSTEM. Return updated pointer into BUF. */
22986 static unsigned char invalid_eol_type
[] = "(*invalid*)";
22989 decode_mode_spec_coding (Lisp_Object coding_system
, register char *buf
, int eol_flag
)
22992 bool multibyte
= !NILP (BVAR (current_buffer
, enable_multibyte_characters
));
22993 const unsigned char *eol_str
;
22995 /* The EOL conversion we are using. */
22996 Lisp_Object eoltype
;
22998 val
= CODING_SYSTEM_SPEC (coding_system
);
23001 if (!VECTORP (val
)) /* Not yet decided. */
23003 *buf
++ = multibyte
? '-' : ' ';
23005 eoltype
= eol_mnemonic_undecided
;
23006 /* Don't mention EOL conversion if it isn't decided. */
23011 Lisp_Object eolvalue
;
23013 attrs
= AREF (val
, 0);
23014 eolvalue
= AREF (val
, 2);
23017 ? XFASTINT (CODING_ATTR_MNEMONIC (attrs
))
23022 /* The EOL conversion that is normal on this system. */
23024 if (NILP (eolvalue
)) /* Not yet decided. */
23025 eoltype
= eol_mnemonic_undecided
;
23026 else if (VECTORP (eolvalue
)) /* Not yet decided. */
23027 eoltype
= eol_mnemonic_undecided
;
23028 else /* eolvalue is Qunix, Qdos, or Qmac. */
23029 eoltype
= (EQ (eolvalue
, Qunix
)
23030 ? eol_mnemonic_unix
23031 : (EQ (eolvalue
, Qdos
) == 1
23032 ? eol_mnemonic_dos
: eol_mnemonic_mac
));
23038 /* Mention the EOL conversion if it is not the usual one. */
23039 if (STRINGP (eoltype
))
23041 eol_str
= SDATA (eoltype
);
23042 eol_str_len
= SBYTES (eoltype
);
23044 else if (CHARACTERP (eoltype
))
23046 int c
= XFASTINT (eoltype
);
23047 return buf
+ CHAR_STRING (c
, (unsigned char *) buf
);
23051 eol_str
= invalid_eol_type
;
23052 eol_str_len
= sizeof (invalid_eol_type
) - 1;
23054 memcpy (buf
, eol_str
, eol_str_len
);
23055 buf
+= eol_str_len
;
23061 /* Return a string for the output of a mode line %-spec for window W,
23062 generated by character C. FIELD_WIDTH > 0 means pad the string
23063 returned with spaces to that value. Return a Lisp string in
23064 *STRING if the resulting string is taken from that Lisp string.
23066 Note we operate on the current buffer for most purposes. */
23068 static char lots_of_dashes
[] = "--------------------------------------------------------------------------------------------------------------------------------------------";
23070 static const char *
23071 decode_mode_spec (struct window
*w
, register int c
, int field_width
,
23072 Lisp_Object
*string
)
23075 struct frame
*f
= XFRAME (WINDOW_FRAME (w
));
23076 char *decode_mode_spec_buf
= f
->decode_mode_spec_buffer
;
23077 /* We are going to use f->decode_mode_spec_buffer as the buffer to
23078 produce strings from numerical values, so limit preposterously
23079 large values of FIELD_WIDTH to avoid overrunning the buffer's
23080 end. The size of the buffer is enough for FRAME_MESSAGE_BUF_SIZE
23081 bytes plus the terminating null. */
23082 int width
= min (field_width
, FRAME_MESSAGE_BUF_SIZE (f
));
23083 struct buffer
*b
= current_buffer
;
23091 if (!NILP (BVAR (b
, read_only
)))
23093 if (BUF_MODIFF (b
) > BUF_SAVE_MODIFF (b
))
23098 /* This differs from %* only for a modified read-only buffer. */
23099 if (BUF_MODIFF (b
) > BUF_SAVE_MODIFF (b
))
23101 if (!NILP (BVAR (b
, read_only
)))
23106 /* This differs from %* in ignoring read-only-ness. */
23107 if (BUF_MODIFF (b
) > BUF_SAVE_MODIFF (b
))
23119 if (command_loop_level
> 5)
23121 p
= decode_mode_spec_buf
;
23122 for (i
= 0; i
< command_loop_level
; i
++)
23125 return decode_mode_spec_buf
;
23133 if (command_loop_level
> 5)
23135 p
= decode_mode_spec_buf
;
23136 for (i
= 0; i
< command_loop_level
; i
++)
23139 return decode_mode_spec_buf
;
23146 /* Let lots_of_dashes be a string of infinite length. */
23147 if (mode_line_target
== MODE_LINE_NOPROP
23148 || mode_line_target
== MODE_LINE_STRING
)
23150 if (field_width
<= 0
23151 || field_width
> sizeof (lots_of_dashes
))
23153 for (i
= 0; i
< FRAME_MESSAGE_BUF_SIZE (f
) - 1; ++i
)
23154 decode_mode_spec_buf
[i
] = '-';
23155 decode_mode_spec_buf
[i
] = '\0';
23156 return decode_mode_spec_buf
;
23159 return lots_of_dashes
;
23163 obj
= BVAR (b
, name
);
23167 /* %c and %l are ignored in `frame-title-format'.
23168 (In redisplay_internal, the frame title is drawn _before_ the
23169 windows are updated, so the stuff which depends on actual
23170 window contents (such as %l) may fail to render properly, or
23171 even crash emacs.) */
23172 if (mode_line_target
== MODE_LINE_TITLE
)
23176 ptrdiff_t col
= current_column ();
23177 w
->column_number_displayed
= col
;
23178 pint2str (decode_mode_spec_buf
, width
, col
);
23179 return decode_mode_spec_buf
;
23183 #if !defined SYSTEM_MALLOC && !defined HYBRID_MALLOC
23185 if (NILP (Vmemory_full
))
23188 return "!MEM FULL! ";
23195 /* %F displays the frame name. */
23196 if (!NILP (f
->title
))
23197 return SSDATA (f
->title
);
23198 if (f
->explicit_name
|| ! FRAME_WINDOW_P (f
))
23199 return SSDATA (f
->name
);
23203 obj
= BVAR (b
, filename
);
23208 ptrdiff_t size
= ZV
- BEGV
;
23209 pint2str (decode_mode_spec_buf
, width
, size
);
23210 return decode_mode_spec_buf
;
23215 ptrdiff_t size
= ZV
- BEGV
;
23216 pint2hrstr (decode_mode_spec_buf
, width
, size
);
23217 return decode_mode_spec_buf
;
23222 ptrdiff_t startpos
, startpos_byte
, line
, linepos
, linepos_byte
;
23223 ptrdiff_t topline
, nlines
, height
;
23226 /* %c and %l are ignored in `frame-title-format'. */
23227 if (mode_line_target
== MODE_LINE_TITLE
)
23230 startpos
= marker_position (w
->start
);
23231 startpos_byte
= marker_byte_position (w
->start
);
23232 height
= WINDOW_TOTAL_LINES (w
);
23234 /* If we decided that this buffer isn't suitable for line numbers,
23235 don't forget that too fast. */
23236 if (w
->base_line_pos
== -1)
23239 /* If the buffer is very big, don't waste time. */
23240 if (INTEGERP (Vline_number_display_limit
)
23241 && BUF_ZV (b
) - BUF_BEGV (b
) > XINT (Vline_number_display_limit
))
23243 w
->base_line_pos
= 0;
23244 w
->base_line_number
= 0;
23248 if (w
->base_line_number
> 0
23249 && w
->base_line_pos
> 0
23250 && w
->base_line_pos
<= startpos
)
23252 line
= w
->base_line_number
;
23253 linepos
= w
->base_line_pos
;
23254 linepos_byte
= buf_charpos_to_bytepos (b
, linepos
);
23259 linepos
= BUF_BEGV (b
);
23260 linepos_byte
= BUF_BEGV_BYTE (b
);
23263 /* Count lines from base line to window start position. */
23264 nlines
= display_count_lines (linepos_byte
,
23268 topline
= nlines
+ line
;
23270 /* Determine a new base line, if the old one is too close
23271 or too far away, or if we did not have one.
23272 "Too close" means it's plausible a scroll-down would
23273 go back past it. */
23274 if (startpos
== BUF_BEGV (b
))
23276 w
->base_line_number
= topline
;
23277 w
->base_line_pos
= BUF_BEGV (b
);
23279 else if (nlines
< height
+ 25 || nlines
> height
* 3 + 50
23280 || linepos
== BUF_BEGV (b
))
23282 ptrdiff_t limit
= BUF_BEGV (b
);
23283 ptrdiff_t limit_byte
= BUF_BEGV_BYTE (b
);
23284 ptrdiff_t position
;
23285 ptrdiff_t distance
=
23286 (height
* 2 + 30) * line_number_display_limit_width
;
23288 if (startpos
- distance
> limit
)
23290 limit
= startpos
- distance
;
23291 limit_byte
= CHAR_TO_BYTE (limit
);
23294 nlines
= display_count_lines (startpos_byte
,
23296 - (height
* 2 + 30),
23298 /* If we couldn't find the lines we wanted within
23299 line_number_display_limit_width chars per line,
23300 give up on line numbers for this window. */
23301 if (position
== limit_byte
&& limit
== startpos
- distance
)
23303 w
->base_line_pos
= -1;
23304 w
->base_line_number
= 0;
23308 w
->base_line_number
= topline
- nlines
;
23309 w
->base_line_pos
= BYTE_TO_CHAR (position
);
23312 /* Now count lines from the start pos to point. */
23313 nlines
= display_count_lines (startpos_byte
,
23314 PT_BYTE
, PT
, &junk
);
23316 /* Record that we did display the line number. */
23317 line_number_displayed
= 1;
23319 /* Make the string to show. */
23320 pint2str (decode_mode_spec_buf
, width
, topline
+ nlines
);
23321 return decode_mode_spec_buf
;
23324 char *p
= decode_mode_spec_buf
;
23325 int pad
= width
- 2;
23331 return decode_mode_spec_buf
;
23337 obj
= BVAR (b
, mode_name
);
23341 if (BUF_BEGV (b
) > BUF_BEG (b
) || BUF_ZV (b
) < BUF_Z (b
))
23347 ptrdiff_t pos
= marker_position (w
->start
);
23348 ptrdiff_t total
= BUF_ZV (b
) - BUF_BEGV (b
);
23350 if (w
->window_end_pos
<= BUF_Z (b
) - BUF_ZV (b
))
23352 if (pos
<= BUF_BEGV (b
))
23357 else if (pos
<= BUF_BEGV (b
))
23361 if (total
> 1000000)
23362 /* Do it differently for a large value, to avoid overflow. */
23363 total
= ((pos
- BUF_BEGV (b
)) + (total
/ 100) - 1) / (total
/ 100);
23365 total
= ((pos
- BUF_BEGV (b
)) * 100 + total
- 1) / total
;
23366 /* We can't normally display a 3-digit number,
23367 so get us a 2-digit number that is close. */
23370 sprintf (decode_mode_spec_buf
, "%2"pD
"d%%", total
);
23371 return decode_mode_spec_buf
;
23375 /* Display percentage of size above the bottom of the screen. */
23378 ptrdiff_t toppos
= marker_position (w
->start
);
23379 ptrdiff_t botpos
= BUF_Z (b
) - w
->window_end_pos
;
23380 ptrdiff_t total
= BUF_ZV (b
) - BUF_BEGV (b
);
23382 if (botpos
>= BUF_ZV (b
))
23384 if (toppos
<= BUF_BEGV (b
))
23391 if (total
> 1000000)
23392 /* Do it differently for a large value, to avoid overflow. */
23393 total
= ((botpos
- BUF_BEGV (b
)) + (total
/ 100) - 1) / (total
/ 100);
23395 total
= ((botpos
- BUF_BEGV (b
)) * 100 + total
- 1) / total
;
23396 /* We can't normally display a 3-digit number,
23397 so get us a 2-digit number that is close. */
23400 if (toppos
<= BUF_BEGV (b
))
23401 sprintf (decode_mode_spec_buf
, "Top%2"pD
"d%%", total
);
23403 sprintf (decode_mode_spec_buf
, "%2"pD
"d%%", total
);
23404 return decode_mode_spec_buf
;
23409 /* status of process */
23410 obj
= Fget_buffer_process (Fcurrent_buffer ());
23412 return "no process";
23414 obj
= Fsymbol_name (Fprocess_status (obj
));
23420 ptrdiff_t count
= inhibit_garbage_collection ();
23421 Lisp_Object curdir
= BVAR (current_buffer
, directory
);
23422 Lisp_Object val
= Qnil
;
23424 if (STRINGP (curdir
))
23425 val
= call1 (intern ("file-remote-p"), curdir
);
23427 unbind_to (count
, Qnil
);
23436 /* coding-system (not including end-of-line format) */
23438 /* coding-system (including end-of-line type) */
23440 int eol_flag
= (c
== 'Z');
23441 char *p
= decode_mode_spec_buf
;
23443 if (! FRAME_WINDOW_P (f
))
23445 /* No need to mention EOL here--the terminal never needs
23446 to do EOL conversion. */
23447 p
= decode_mode_spec_coding (CODING_ID_NAME
23448 (FRAME_KEYBOARD_CODING (f
)->id
),
23450 p
= decode_mode_spec_coding (CODING_ID_NAME
23451 (FRAME_TERMINAL_CODING (f
)->id
),
23454 p
= decode_mode_spec_coding (BVAR (b
, buffer_file_coding_system
),
23457 #if 0 /* This proves to be annoying; I think we can do without. -- rms. */
23458 #ifdef subprocesses
23459 obj
= Fget_buffer_process (Fcurrent_buffer ());
23460 if (PROCESSP (obj
))
23462 p
= decode_mode_spec_coding
23463 (XPROCESS (obj
)->decode_coding_system
, p
, eol_flag
);
23464 p
= decode_mode_spec_coding
23465 (XPROCESS (obj
)->encode_coding_system
, p
, eol_flag
);
23467 #endif /* subprocesses */
23470 return decode_mode_spec_buf
;
23477 return SSDATA (obj
);
23484 /* Count up to COUNT lines starting from START_BYTE. COUNT negative
23485 means count lines back from START_BYTE. But don't go beyond
23486 LIMIT_BYTE. Return the number of lines thus found (always
23489 Set *BYTE_POS_PTR to the byte position where we stopped. This is
23490 either the position COUNT lines after/before START_BYTE, if we
23491 found COUNT lines, or LIMIT_BYTE if we hit the limit before finding
23495 display_count_lines (ptrdiff_t start_byte
,
23496 ptrdiff_t limit_byte
, ptrdiff_t count
,
23497 ptrdiff_t *byte_pos_ptr
)
23499 register unsigned char *cursor
;
23500 unsigned char *base
;
23502 register ptrdiff_t ceiling
;
23503 register unsigned char *ceiling_addr
;
23504 ptrdiff_t orig_count
= count
;
23506 /* If we are not in selective display mode,
23507 check only for newlines. */
23508 int selective_display
= (!NILP (BVAR (current_buffer
, selective_display
))
23509 && !INTEGERP (BVAR (current_buffer
, selective_display
)));
23513 while (start_byte
< limit_byte
)
23515 ceiling
= BUFFER_CEILING_OF (start_byte
);
23516 ceiling
= min (limit_byte
- 1, ceiling
);
23517 ceiling_addr
= BYTE_POS_ADDR (ceiling
) + 1;
23518 base
= (cursor
= BYTE_POS_ADDR (start_byte
));
23522 if (selective_display
)
23524 while (*cursor
!= '\n' && *cursor
!= 015
23525 && ++cursor
!= ceiling_addr
)
23527 if (cursor
== ceiling_addr
)
23532 cursor
= memchr (cursor
, '\n', ceiling_addr
- cursor
);
23541 start_byte
+= cursor
- base
;
23542 *byte_pos_ptr
= start_byte
;
23546 while (cursor
< ceiling_addr
);
23548 start_byte
+= ceiling_addr
- base
;
23553 while (start_byte
> limit_byte
)
23555 ceiling
= BUFFER_FLOOR_OF (start_byte
- 1);
23556 ceiling
= max (limit_byte
, ceiling
);
23557 ceiling_addr
= BYTE_POS_ADDR (ceiling
);
23558 base
= (cursor
= BYTE_POS_ADDR (start_byte
- 1) + 1);
23561 if (selective_display
)
23563 while (--cursor
>= ceiling_addr
23564 && *cursor
!= '\n' && *cursor
!= 015)
23566 if (cursor
< ceiling_addr
)
23571 cursor
= memrchr (ceiling_addr
, '\n', cursor
- ceiling_addr
);
23578 start_byte
+= cursor
- base
+ 1;
23579 *byte_pos_ptr
= start_byte
;
23580 /* When scanning backwards, we should
23581 not count the newline posterior to which we stop. */
23582 return - orig_count
- 1;
23585 start_byte
+= ceiling_addr
- base
;
23589 *byte_pos_ptr
= limit_byte
;
23592 return - orig_count
+ count
;
23593 return orig_count
- count
;
23599 /***********************************************************************
23601 ***********************************************************************/
23603 /* Display a NUL-terminated string, starting with index START.
23605 If STRING is non-null, display that C string. Otherwise, the Lisp
23606 string LISP_STRING is displayed. There's a case that STRING is
23607 non-null and LISP_STRING is not nil. It means STRING is a string
23608 data of LISP_STRING. In that case, we display LISP_STRING while
23609 ignoring its text properties.
23611 If FACE_STRING is not nil, FACE_STRING_POS is a position in
23612 FACE_STRING. Display STRING or LISP_STRING with the face at
23613 FACE_STRING_POS in FACE_STRING:
23615 Display the string in the environment given by IT, but use the
23616 standard display table, temporarily.
23618 FIELD_WIDTH is the minimum number of output glyphs to produce.
23619 If STRING has fewer characters than FIELD_WIDTH, pad to the right
23620 with spaces. If STRING has more characters, more than FIELD_WIDTH
23621 glyphs will be produced. FIELD_WIDTH <= 0 means don't pad.
23623 PRECISION is the maximum number of characters to output from
23624 STRING. PRECISION < 0 means don't truncate the string.
23626 This is roughly equivalent to printf format specifiers:
23628 FIELD_WIDTH PRECISION PRINTF
23629 ----------------------------------------
23635 MULTIBYTE zero means do not display multibyte chars, > 0 means do
23636 display them, and < 0 means obey the current buffer's value of
23637 enable_multibyte_characters.
23639 Value is the number of columns displayed. */
23642 display_string (const char *string
, Lisp_Object lisp_string
, Lisp_Object face_string
,
23643 ptrdiff_t face_string_pos
, ptrdiff_t start
, struct it
*it
,
23644 int field_width
, int precision
, int max_x
, int multibyte
)
23646 int hpos_at_start
= it
->hpos
;
23647 int saved_face_id
= it
->face_id
;
23648 struct glyph_row
*row
= it
->glyph_row
;
23649 ptrdiff_t it_charpos
;
23651 /* Initialize the iterator IT for iteration over STRING beginning
23652 with index START. */
23653 reseat_to_string (it
, NILP (lisp_string
) ? string
: NULL
, lisp_string
, start
,
23654 precision
, field_width
, multibyte
);
23655 if (string
&& STRINGP (lisp_string
))
23656 /* LISP_STRING is the one returned by decode_mode_spec. We should
23657 ignore its text properties. */
23658 it
->stop_charpos
= it
->end_charpos
;
23660 /* If displaying STRING, set up the face of the iterator from
23661 FACE_STRING, if that's given. */
23662 if (STRINGP (face_string
))
23668 = face_at_string_position (it
->w
, face_string
, face_string_pos
,
23669 0, &endptr
, it
->base_face_id
, 0);
23670 face
= FACE_FROM_ID (it
->f
, it
->face_id
);
23671 it
->face_box_p
= face
->box
!= FACE_NO_BOX
;
23674 /* Set max_x to the maximum allowed X position. Don't let it go
23675 beyond the right edge of the window. */
23677 max_x
= it
->last_visible_x
;
23679 max_x
= min (max_x
, it
->last_visible_x
);
23681 /* Skip over display elements that are not visible. because IT->w is
23683 if (it
->current_x
< it
->first_visible_x
)
23684 move_it_in_display_line_to (it
, 100000, it
->first_visible_x
,
23685 MOVE_TO_POS
| MOVE_TO_X
);
23687 row
->ascent
= it
->max_ascent
;
23688 row
->height
= it
->max_ascent
+ it
->max_descent
;
23689 row
->phys_ascent
= it
->max_phys_ascent
;
23690 row
->phys_height
= it
->max_phys_ascent
+ it
->max_phys_descent
;
23691 row
->extra_line_spacing
= it
->max_extra_line_spacing
;
23693 if (STRINGP (it
->string
))
23694 it_charpos
= IT_STRING_CHARPOS (*it
);
23696 it_charpos
= IT_CHARPOS (*it
);
23698 /* This condition is for the case that we are called with current_x
23699 past last_visible_x. */
23700 while (it
->current_x
< max_x
)
23702 int x_before
, x
, n_glyphs_before
, i
, nglyphs
;
23704 /* Get the next display element. */
23705 if (!get_next_display_element (it
))
23708 /* Produce glyphs. */
23709 x_before
= it
->current_x
;
23710 n_glyphs_before
= row
->used
[TEXT_AREA
];
23711 PRODUCE_GLYPHS (it
);
23713 nglyphs
= row
->used
[TEXT_AREA
] - n_glyphs_before
;
23716 while (i
< nglyphs
)
23718 struct glyph
*glyph
= row
->glyphs
[TEXT_AREA
] + n_glyphs_before
+ i
;
23720 if (it
->line_wrap
!= TRUNCATE
23721 && x
+ glyph
->pixel_width
> max_x
)
23723 /* End of continued line or max_x reached. */
23724 if (CHAR_GLYPH_PADDING_P (*glyph
))
23726 /* A wide character is unbreakable. */
23727 if (row
->reversed_p
)
23728 unproduce_glyphs (it
, row
->used
[TEXT_AREA
]
23729 - n_glyphs_before
);
23730 row
->used
[TEXT_AREA
] = n_glyphs_before
;
23731 it
->current_x
= x_before
;
23735 if (row
->reversed_p
)
23736 unproduce_glyphs (it
, row
->used
[TEXT_AREA
]
23737 - (n_glyphs_before
+ i
));
23738 row
->used
[TEXT_AREA
] = n_glyphs_before
+ i
;
23743 else if (x
+ glyph
->pixel_width
>= it
->first_visible_x
)
23745 /* Glyph is at least partially visible. */
23747 if (x
< it
->first_visible_x
)
23748 row
->x
= x
- it
->first_visible_x
;
23752 /* Glyph is off the left margin of the display area.
23753 Should not happen. */
23757 row
->ascent
= max (row
->ascent
, it
->max_ascent
);
23758 row
->height
= max (row
->height
, it
->max_ascent
+ it
->max_descent
);
23759 row
->phys_ascent
= max (row
->phys_ascent
, it
->max_phys_ascent
);
23760 row
->phys_height
= max (row
->phys_height
,
23761 it
->max_phys_ascent
+ it
->max_phys_descent
);
23762 row
->extra_line_spacing
= max (row
->extra_line_spacing
,
23763 it
->max_extra_line_spacing
);
23764 x
+= glyph
->pixel_width
;
23768 /* Stop if max_x reached. */
23772 /* Stop at line ends. */
23773 if (ITERATOR_AT_END_OF_LINE_P (it
))
23775 it
->continuation_lines_width
= 0;
23779 set_iterator_to_next (it
, 1);
23780 if (STRINGP (it
->string
))
23781 it_charpos
= IT_STRING_CHARPOS (*it
);
23783 it_charpos
= IT_CHARPOS (*it
);
23785 /* Stop if truncating at the right edge. */
23786 if (it
->line_wrap
== TRUNCATE
23787 && it
->current_x
>= it
->last_visible_x
)
23789 /* Add truncation mark, but don't do it if the line is
23790 truncated at a padding space. */
23791 if (it_charpos
< it
->string_nchars
)
23793 if (!FRAME_WINDOW_P (it
->f
))
23797 if (it
->current_x
> it
->last_visible_x
)
23799 if (!row
->reversed_p
)
23801 for (ii
= row
->used
[TEXT_AREA
] - 1; ii
> 0; --ii
)
23802 if (!CHAR_GLYPH_PADDING_P (row
->glyphs
[TEXT_AREA
][ii
]))
23807 for (ii
= 0; ii
< row
->used
[TEXT_AREA
]; ii
++)
23808 if (!CHAR_GLYPH_PADDING_P (row
->glyphs
[TEXT_AREA
][ii
]))
23810 unproduce_glyphs (it
, ii
+ 1);
23811 ii
= row
->used
[TEXT_AREA
] - (ii
+ 1);
23813 for (n
= row
->used
[TEXT_AREA
]; ii
< n
; ++ii
)
23815 row
->used
[TEXT_AREA
] = ii
;
23816 produce_special_glyphs (it
, IT_TRUNCATION
);
23819 produce_special_glyphs (it
, IT_TRUNCATION
);
23821 row
->truncated_on_right_p
= 1;
23827 /* Maybe insert a truncation at the left. */
23828 if (it
->first_visible_x
23831 if (!FRAME_WINDOW_P (it
->f
)
23832 || (row
->reversed_p
23833 ? WINDOW_RIGHT_FRINGE_WIDTH (it
->w
)
23834 : WINDOW_LEFT_FRINGE_WIDTH (it
->w
)) == 0)
23835 insert_left_trunc_glyphs (it
);
23836 row
->truncated_on_left_p
= 1;
23839 it
->face_id
= saved_face_id
;
23841 /* Value is number of columns displayed. */
23842 return it
->hpos
- hpos_at_start
;
23847 /* This is like a combination of memq and assq. Return 1/2 if PROPVAL
23848 appears as an element of LIST or as the car of an element of LIST.
23849 If PROPVAL is a list, compare each element against LIST in that
23850 way, and return 1/2 if any element of PROPVAL is found in LIST.
23851 Otherwise return 0. This function cannot quit.
23852 The return value is 2 if the text is invisible but with an ellipsis
23853 and 1 if it's invisible and without an ellipsis. */
23856 invisible_p (register Lisp_Object propval
, Lisp_Object list
)
23858 register Lisp_Object tail
, proptail
;
23860 for (tail
= list
; CONSP (tail
); tail
= XCDR (tail
))
23862 register Lisp_Object tem
;
23864 if (EQ (propval
, tem
))
23866 if (CONSP (tem
) && EQ (propval
, XCAR (tem
)))
23867 return NILP (XCDR (tem
)) ? 1 : 2;
23870 if (CONSP (propval
))
23872 for (proptail
= propval
; CONSP (proptail
); proptail
= XCDR (proptail
))
23874 Lisp_Object propelt
;
23875 propelt
= XCAR (proptail
);
23876 for (tail
= list
; CONSP (tail
); tail
= XCDR (tail
))
23878 register Lisp_Object tem
;
23880 if (EQ (propelt
, tem
))
23882 if (CONSP (tem
) && EQ (propelt
, XCAR (tem
)))
23883 return NILP (XCDR (tem
)) ? 1 : 2;
23891 DEFUN ("invisible-p", Finvisible_p
, Sinvisible_p
, 1, 1, 0,
23892 doc
: /* Non-nil if the property makes the text invisible.
23893 POS-OR-PROP can be a marker or number, in which case it is taken to be
23894 a position in the current buffer and the value of the `invisible' property
23895 is checked; or it can be some other value, which is then presumed to be the
23896 value of the `invisible' property of the text of interest.
23897 The non-nil value returned can be t for truly invisible text or something
23898 else if the text is replaced by an ellipsis. */)
23899 (Lisp_Object pos_or_prop
)
23902 = (NATNUMP (pos_or_prop
) || MARKERP (pos_or_prop
)
23903 ? Fget_char_property (pos_or_prop
, Qinvisible
, Qnil
)
23905 int invis
= TEXT_PROP_MEANS_INVISIBLE (prop
);
23906 return (invis
== 0 ? Qnil
23908 : make_number (invis
));
23911 /* Calculate a width or height in pixels from a specification using
23912 the following elements:
23915 NUM - a (fractional) multiple of the default font width/height
23916 (NUM) - specifies exactly NUM pixels
23917 UNIT - a fixed number of pixels, see below.
23918 ELEMENT - size of a display element in pixels, see below.
23919 (NUM . SPEC) - equals NUM * SPEC
23920 (+ SPEC SPEC ...) - add pixel values
23921 (- SPEC SPEC ...) - subtract pixel values
23922 (- SPEC) - negate pixel value
23925 INT or FLOAT - a number constant
23926 SYMBOL - use symbol's (buffer local) variable binding.
23929 in - pixels per inch *)
23930 mm - pixels per 1/1000 meter *)
23931 cm - pixels per 1/100 meter *)
23932 width - width of current font in pixels.
23933 height - height of current font in pixels.
23935 *) using the ratio(s) defined in display-pixels-per-inch.
23939 left-fringe - left fringe width in pixels
23940 right-fringe - right fringe width in pixels
23942 left-margin - left margin width in pixels
23943 right-margin - right margin width in pixels
23945 scroll-bar - scroll-bar area width in pixels
23949 Pixels corresponding to 5 inches:
23952 Total width of non-text areas on left side of window (if scroll-bar is on left):
23953 '(space :width (+ left-fringe left-margin scroll-bar))
23955 Align to first text column (in header line):
23956 '(space :align-to 0)
23958 Align to middle of text area minus half the width of variable `my-image'
23959 containing a loaded image:
23960 '(space :align-to (0.5 . (- text my-image)))
23962 Width of left margin minus width of 1 character in the default font:
23963 '(space :width (- left-margin 1))
23965 Width of left margin minus width of 2 characters in the current font:
23966 '(space :width (- left-margin (2 . width)))
23968 Center 1 character over left-margin (in header line):
23969 '(space :align-to (+ left-margin (0.5 . left-margin) -0.5))
23971 Different ways to express width of left fringe plus left margin minus one pixel:
23972 '(space :width (- (+ left-fringe left-margin) (1)))
23973 '(space :width (+ left-fringe left-margin (- (1))))
23974 '(space :width (+ left-fringe left-margin (-1)))
23979 calc_pixel_width_or_height (double *res
, struct it
*it
, Lisp_Object prop
,
23980 struct font
*font
, int width_p
, int *align_to
)
23984 #define OK_PIXELS(val) ((*res = (double)(val)), 1)
23985 #define OK_ALIGN_TO(val) ((*align_to = (int)(val)), 1)
23988 return OK_PIXELS (0);
23990 eassert (FRAME_LIVE_P (it
->f
));
23992 if (SYMBOLP (prop
))
23994 if (SCHARS (SYMBOL_NAME (prop
)) == 2)
23996 char *unit
= SSDATA (SYMBOL_NAME (prop
));
23998 if (unit
[0] == 'i' && unit
[1] == 'n')
24000 else if (unit
[0] == 'm' && unit
[1] == 'm')
24002 else if (unit
[0] == 'c' && unit
[1] == 'm')
24008 double ppi
= (width_p
? FRAME_RES_X (it
->f
)
24009 : FRAME_RES_Y (it
->f
));
24012 return OK_PIXELS (ppi
/ pixels
);
24017 #ifdef HAVE_WINDOW_SYSTEM
24018 if (EQ (prop
, Qheight
))
24019 return OK_PIXELS (font
? FONT_HEIGHT (font
) : FRAME_LINE_HEIGHT (it
->f
));
24020 if (EQ (prop
, Qwidth
))
24021 return OK_PIXELS (font
? FONT_WIDTH (font
) : FRAME_COLUMN_WIDTH (it
->f
));
24023 if (EQ (prop
, Qheight
) || EQ (prop
, Qwidth
))
24024 return OK_PIXELS (1);
24027 if (EQ (prop
, Qtext
))
24028 return OK_PIXELS (width_p
24029 ? window_box_width (it
->w
, TEXT_AREA
)
24030 : WINDOW_BOX_HEIGHT_NO_MODE_LINE (it
->w
));
24032 if (align_to
&& *align_to
< 0)
24035 if (EQ (prop
, Qleft
))
24036 return OK_ALIGN_TO (window_box_left_offset (it
->w
, TEXT_AREA
));
24037 if (EQ (prop
, Qright
))
24038 return OK_ALIGN_TO (window_box_right_offset (it
->w
, TEXT_AREA
));
24039 if (EQ (prop
, Qcenter
))
24040 return OK_ALIGN_TO (window_box_left_offset (it
->w
, TEXT_AREA
)
24041 + window_box_width (it
->w
, TEXT_AREA
) / 2);
24042 if (EQ (prop
, Qleft_fringe
))
24043 return OK_ALIGN_TO (WINDOW_HAS_FRINGES_OUTSIDE_MARGINS (it
->w
)
24044 ? WINDOW_LEFT_SCROLL_BAR_AREA_WIDTH (it
->w
)
24045 : window_box_right_offset (it
->w
, LEFT_MARGIN_AREA
));
24046 if (EQ (prop
, Qright_fringe
))
24047 return OK_ALIGN_TO (WINDOW_HAS_FRINGES_OUTSIDE_MARGINS (it
->w
)
24048 ? window_box_right_offset (it
->w
, RIGHT_MARGIN_AREA
)
24049 : window_box_right_offset (it
->w
, TEXT_AREA
));
24050 if (EQ (prop
, Qleft_margin
))
24051 return OK_ALIGN_TO (window_box_left_offset (it
->w
, LEFT_MARGIN_AREA
));
24052 if (EQ (prop
, Qright_margin
))
24053 return OK_ALIGN_TO (window_box_left_offset (it
->w
, RIGHT_MARGIN_AREA
));
24054 if (EQ (prop
, Qscroll_bar
))
24055 return OK_ALIGN_TO (WINDOW_HAS_VERTICAL_SCROLL_BAR_ON_LEFT (it
->w
)
24057 : (window_box_right_offset (it
->w
, RIGHT_MARGIN_AREA
)
24058 + (WINDOW_HAS_FRINGES_OUTSIDE_MARGINS (it
->w
)
24059 ? WINDOW_RIGHT_FRINGE_WIDTH (it
->w
)
24064 if (EQ (prop
, Qleft_fringe
))
24065 return OK_PIXELS (WINDOW_LEFT_FRINGE_WIDTH (it
->w
));
24066 if (EQ (prop
, Qright_fringe
))
24067 return OK_PIXELS (WINDOW_RIGHT_FRINGE_WIDTH (it
->w
));
24068 if (EQ (prop
, Qleft_margin
))
24069 return OK_PIXELS (WINDOW_LEFT_MARGIN_WIDTH (it
->w
));
24070 if (EQ (prop
, Qright_margin
))
24071 return OK_PIXELS (WINDOW_RIGHT_MARGIN_WIDTH (it
->w
));
24072 if (EQ (prop
, Qscroll_bar
))
24073 return OK_PIXELS (WINDOW_SCROLL_BAR_AREA_WIDTH (it
->w
));
24076 prop
= buffer_local_value (prop
, it
->w
->contents
);
24077 if (EQ (prop
, Qunbound
))
24081 if (INTEGERP (prop
) || FLOATP (prop
))
24083 int base_unit
= (width_p
24084 ? FRAME_COLUMN_WIDTH (it
->f
)
24085 : FRAME_LINE_HEIGHT (it
->f
));
24086 return OK_PIXELS (XFLOATINT (prop
) * base_unit
);
24091 Lisp_Object car
= XCAR (prop
);
24092 Lisp_Object cdr
= XCDR (prop
);
24096 #ifdef HAVE_WINDOW_SYSTEM
24097 if (FRAME_WINDOW_P (it
->f
)
24098 && valid_image_p (prop
))
24100 ptrdiff_t id
= lookup_image (it
->f
, prop
);
24101 struct image
*img
= IMAGE_FROM_ID (it
->f
, id
);
24103 return OK_PIXELS (width_p
? img
->width
: img
->height
);
24105 #ifdef HAVE_XWIDGETS
24106 if (FRAME_WINDOW_P (it
->f
) && valid_xwidget_spec_p (prop
))
24108 printf("calc_pixel_width_or_height: return dummy size FIXME\n");
24109 return OK_PIXELS (width_p
? 100 : 100);
24113 if (EQ (car
, Qplus
) || EQ (car
, Qminus
))
24119 while (CONSP (cdr
))
24121 if (!calc_pixel_width_or_height (&px
, it
, XCAR (cdr
),
24122 font
, width_p
, align_to
))
24125 pixels
= (EQ (car
, Qplus
) ? px
: -px
), first
= 0;
24130 if (EQ (car
, Qminus
))
24132 return OK_PIXELS (pixels
);
24135 car
= buffer_local_value (car
, it
->w
->contents
);
24136 if (EQ (car
, Qunbound
))
24140 if (INTEGERP (car
) || FLOATP (car
))
24143 pixels
= XFLOATINT (car
);
24145 return OK_PIXELS (pixels
);
24146 if (calc_pixel_width_or_height (&fact
, it
, cdr
,
24147 font
, width_p
, align_to
))
24148 return OK_PIXELS (pixels
* fact
);
24159 /***********************************************************************
24161 ***********************************************************************/
24163 #ifdef HAVE_WINDOW_SYSTEM
24168 dump_glyph_string (struct glyph_string
*s
)
24170 fprintf (stderr
, "glyph string\n");
24171 fprintf (stderr
, " x, y, w, h = %d, %d, %d, %d\n",
24172 s
->x
, s
->y
, s
->width
, s
->height
);
24173 fprintf (stderr
, " ybase = %d\n", s
->ybase
);
24174 fprintf (stderr
, " hl = %d\n", s
->hl
);
24175 fprintf (stderr
, " left overhang = %d, right = %d\n",
24176 s
->left_overhang
, s
->right_overhang
);
24177 fprintf (stderr
, " nchars = %d\n", s
->nchars
);
24178 fprintf (stderr
, " extends to end of line = %d\n",
24179 s
->extends_to_end_of_line_p
);
24180 fprintf (stderr
, " font height = %d\n", FONT_HEIGHT (s
->font
));
24181 fprintf (stderr
, " bg width = %d\n", s
->background_width
);
24184 #endif /* GLYPH_DEBUG */
24186 /* Initialize glyph string S. CHAR2B is a suitably allocated vector
24187 of XChar2b structures for S; it can't be allocated in
24188 init_glyph_string because it must be allocated via `alloca'. W
24189 is the window on which S is drawn. ROW and AREA are the glyph row
24190 and area within the row from which S is constructed. START is the
24191 index of the first glyph structure covered by S. HL is a
24192 face-override for drawing S. */
24195 #define OPTIONAL_HDC(hdc) HDC hdc,
24196 #define DECLARE_HDC(hdc) HDC hdc;
24197 #define ALLOCATE_HDC(hdc, f) hdc = get_frame_dc ((f))
24198 #define RELEASE_HDC(hdc, f) release_frame_dc ((f), (hdc))
24201 #ifndef OPTIONAL_HDC
24202 #define OPTIONAL_HDC(hdc)
24203 #define DECLARE_HDC(hdc)
24204 #define ALLOCATE_HDC(hdc, f)
24205 #define RELEASE_HDC(hdc, f)
24209 init_glyph_string (struct glyph_string
*s
,
24211 XChar2b
*char2b
, struct window
*w
, struct glyph_row
*row
,
24212 enum glyph_row_area area
, int start
, enum draw_glyphs_face hl
)
24214 memset (s
, 0, sizeof *s
);
24216 s
->f
= XFRAME (w
->frame
);
24220 s
->display
= FRAME_X_DISPLAY (s
->f
);
24221 s
->window
= FRAME_X_WINDOW (s
->f
);
24222 s
->char2b
= char2b
;
24226 s
->first_glyph
= row
->glyphs
[area
] + start
;
24227 s
->height
= row
->height
;
24228 s
->y
= WINDOW_TO_FRAME_PIXEL_Y (w
, row
->y
);
24229 s
->ybase
= s
->y
+ row
->ascent
;
24233 /* Append the list of glyph strings with head H and tail T to the list
24234 with head *HEAD and tail *TAIL. Set *HEAD and *TAIL to the result. */
24237 append_glyph_string_lists (struct glyph_string
**head
, struct glyph_string
**tail
,
24238 struct glyph_string
*h
, struct glyph_string
*t
)
24252 /* Prepend the list of glyph strings with head H and tail T to the
24253 list with head *HEAD and tail *TAIL. Set *HEAD and *TAIL to the
24257 prepend_glyph_string_lists (struct glyph_string
**head
, struct glyph_string
**tail
,
24258 struct glyph_string
*h
, struct glyph_string
*t
)
24272 /* Append glyph string S to the list with head *HEAD and tail *TAIL.
24273 Set *HEAD and *TAIL to the resulting list. */
24276 append_glyph_string (struct glyph_string
**head
, struct glyph_string
**tail
,
24277 struct glyph_string
*s
)
24279 s
->next
= s
->prev
= NULL
;
24280 append_glyph_string_lists (head
, tail
, s
, s
);
24284 /* Get face and two-byte form of character C in face FACE_ID on frame F.
24285 The encoding of C is returned in *CHAR2B. DISPLAY_P non-zero means
24286 make sure that X resources for the face returned are allocated.
24287 Value is a pointer to a realized face that is ready for display if
24288 DISPLAY_P is non-zero. */
24290 static struct face
*
24291 get_char_face_and_encoding (struct frame
*f
, int c
, int face_id
,
24292 XChar2b
*char2b
, int display_p
)
24294 struct face
*face
= FACE_FROM_ID (f
, face_id
);
24299 code
= face
->font
->driver
->encode_char (face
->font
, c
);
24301 if (code
== FONT_INVALID_CODE
)
24304 STORE_XCHAR2B (char2b
, (code
>> 8), (code
& 0xFF));
24306 /* Make sure X resources of the face are allocated. */
24307 #ifdef HAVE_X_WINDOWS
24311 eassert (face
!= NULL
);
24312 prepare_face_for_display (f
, face
);
24319 /* Get face and two-byte form of character glyph GLYPH on frame F.
24320 The encoding of GLYPH->u.ch is returned in *CHAR2B. Value is
24321 a pointer to a realized face that is ready for display. */
24323 static struct face
*
24324 get_glyph_face_and_encoding (struct frame
*f
, struct glyph
*glyph
,
24325 XChar2b
*char2b
, int *two_byte_p
)
24330 eassert (glyph
->type
== CHAR_GLYPH
);
24331 face
= FACE_FROM_ID (f
, glyph
->face_id
);
24333 /* Make sure X resources of the face are allocated. */
24334 eassert (face
!= NULL
);
24335 prepare_face_for_display (f
, face
);
24342 if (CHAR_BYTE8_P (glyph
->u
.ch
))
24343 code
= CHAR_TO_BYTE8 (glyph
->u
.ch
);
24345 code
= face
->font
->driver
->encode_char (face
->font
, glyph
->u
.ch
);
24347 if (code
== FONT_INVALID_CODE
)
24351 STORE_XCHAR2B (char2b
, (code
>> 8), (code
& 0xFF));
24356 /* Get glyph code of character C in FONT in the two-byte form CHAR2B.
24357 Return 1 if FONT has a glyph for C, otherwise return 0. */
24360 get_char_glyph_code (int c
, struct font
*font
, XChar2b
*char2b
)
24364 if (CHAR_BYTE8_P (c
))
24365 code
= CHAR_TO_BYTE8 (c
);
24367 code
= font
->driver
->encode_char (font
, c
);
24369 if (code
== FONT_INVALID_CODE
)
24371 STORE_XCHAR2B (char2b
, (code
>> 8), (code
& 0xFF));
24376 /* Fill glyph string S with composition components specified by S->cmp.
24378 BASE_FACE is the base face of the composition.
24379 S->cmp_from is the index of the first component for S.
24381 OVERLAPS non-zero means S should draw the foreground only, and use
24382 its physical height for clipping. See also draw_glyphs.
24384 Value is the index of a component not in S. */
24387 fill_composite_glyph_string (struct glyph_string
*s
, struct face
*base_face
,
24391 /* For all glyphs of this composition, starting at the offset
24392 S->cmp_from, until we reach the end of the definition or encounter a
24393 glyph that requires the different face, add it to S. */
24398 s
->for_overlaps
= overlaps
;
24401 for (i
= s
->cmp_from
; i
< s
->cmp
->glyph_len
; i
++)
24403 int c
= COMPOSITION_GLYPH (s
->cmp
, i
);
24405 /* TAB in a composition means display glyphs with padding space
24406 on the left or right. */
24409 int face_id
= FACE_FOR_CHAR (s
->f
, base_face
->ascii_face
, c
,
24412 face
= get_char_face_and_encoding (s
->f
, c
, face_id
,
24419 s
->font
= s
->face
->font
;
24421 else if (s
->face
!= face
)
24429 if (s
->face
== NULL
)
24431 s
->face
= base_face
->ascii_face
;
24432 s
->font
= s
->face
->font
;
24435 /* All glyph strings for the same composition has the same width,
24436 i.e. the width set for the first component of the composition. */
24437 s
->width
= s
->first_glyph
->pixel_width
;
24439 /* If the specified font could not be loaded, use the frame's
24440 default font, but record the fact that we couldn't load it in
24441 the glyph string so that we can draw rectangles for the
24442 characters of the glyph string. */
24443 if (s
->font
== NULL
)
24445 s
->font_not_found_p
= 1;
24446 s
->font
= FRAME_FONT (s
->f
);
24449 /* Adjust base line for subscript/superscript text. */
24450 s
->ybase
+= s
->first_glyph
->voffset
;
24452 /* This glyph string must always be drawn with 16-bit functions. */
24459 fill_gstring_glyph_string (struct glyph_string
*s
, int face_id
,
24460 int start
, int end
, int overlaps
)
24462 struct glyph
*glyph
, *last
;
24463 Lisp_Object lgstring
;
24466 s
->for_overlaps
= overlaps
;
24467 glyph
= s
->row
->glyphs
[s
->area
] + start
;
24468 last
= s
->row
->glyphs
[s
->area
] + end
;
24469 s
->cmp_id
= glyph
->u
.cmp
.id
;
24470 s
->cmp_from
= glyph
->slice
.cmp
.from
;
24471 s
->cmp_to
= glyph
->slice
.cmp
.to
+ 1;
24472 s
->face
= FACE_FROM_ID (s
->f
, face_id
);
24473 lgstring
= composition_gstring_from_id (s
->cmp_id
);
24474 s
->font
= XFONT_OBJECT (LGSTRING_FONT (lgstring
));
24476 while (glyph
< last
24477 && glyph
->u
.cmp
.automatic
24478 && glyph
->u
.cmp
.id
== s
->cmp_id
24479 && s
->cmp_to
== glyph
->slice
.cmp
.from
)
24480 s
->cmp_to
= (glyph
++)->slice
.cmp
.to
+ 1;
24482 for (i
= s
->cmp_from
; i
< s
->cmp_to
; i
++)
24484 Lisp_Object lglyph
= LGSTRING_GLYPH (lgstring
, i
);
24485 unsigned code
= LGLYPH_CODE (lglyph
);
24487 STORE_XCHAR2B ((s
->char2b
+ i
), code
>> 8, code
& 0xFF);
24489 s
->width
= composition_gstring_width (lgstring
, s
->cmp_from
, s
->cmp_to
, NULL
);
24490 return glyph
- s
->row
->glyphs
[s
->area
];
24494 /* Fill glyph string S from a sequence glyphs for glyphless characters.
24495 See the comment of fill_glyph_string for arguments.
24496 Value is the index of the first glyph not in S. */
24500 fill_glyphless_glyph_string (struct glyph_string
*s
, int face_id
,
24501 int start
, int end
, int overlaps
)
24503 struct glyph
*glyph
, *last
;
24506 eassert (s
->first_glyph
->type
== GLYPHLESS_GLYPH
);
24507 s
->for_overlaps
= overlaps
;
24508 glyph
= s
->row
->glyphs
[s
->area
] + start
;
24509 last
= s
->row
->glyphs
[s
->area
] + end
;
24510 voffset
= glyph
->voffset
;
24511 s
->face
= FACE_FROM_ID (s
->f
, face_id
);
24512 s
->font
= s
->face
->font
? s
->face
->font
: FRAME_FONT (s
->f
);
24514 s
->width
= glyph
->pixel_width
;
24516 while (glyph
< last
24517 && glyph
->type
== GLYPHLESS_GLYPH
24518 && glyph
->voffset
== voffset
24519 && glyph
->face_id
== face_id
)
24522 s
->width
+= glyph
->pixel_width
;
24525 s
->ybase
+= voffset
;
24526 return glyph
- s
->row
->glyphs
[s
->area
];
24530 /* Fill glyph string S from a sequence of character glyphs.
24532 FACE_ID is the face id of the string. START is the index of the
24533 first glyph to consider, END is the index of the last + 1.
24534 OVERLAPS non-zero means S should draw the foreground only, and use
24535 its physical height for clipping. See also draw_glyphs.
24537 Value is the index of the first glyph not in S. */
24540 fill_glyph_string (struct glyph_string
*s
, int face_id
,
24541 int start
, int end
, int overlaps
)
24543 struct glyph
*glyph
, *last
;
24545 int glyph_not_available_p
;
24547 eassert (s
->f
== XFRAME (s
->w
->frame
));
24548 eassert (s
->nchars
== 0);
24549 eassert (start
>= 0 && end
> start
);
24551 s
->for_overlaps
= overlaps
;
24552 glyph
= s
->row
->glyphs
[s
->area
] + start
;
24553 last
= s
->row
->glyphs
[s
->area
] + end
;
24554 voffset
= glyph
->voffset
;
24555 s
->padding_p
= glyph
->padding_p
;
24556 glyph_not_available_p
= glyph
->glyph_not_available_p
;
24558 while (glyph
< last
24559 && glyph
->type
== CHAR_GLYPH
24560 && glyph
->voffset
== voffset
24561 /* Same face id implies same font, nowadays. */
24562 && glyph
->face_id
== face_id
24563 && glyph
->glyph_not_available_p
== glyph_not_available_p
)
24567 s
->face
= get_glyph_face_and_encoding (s
->f
, glyph
,
24568 s
->char2b
+ s
->nchars
,
24570 s
->two_byte_p
= two_byte_p
;
24572 eassert (s
->nchars
<= end
- start
);
24573 s
->width
+= glyph
->pixel_width
;
24574 if (glyph
++->padding_p
!= s
->padding_p
)
24578 s
->font
= s
->face
->font
;
24580 /* If the specified font could not be loaded, use the frame's font,
24581 but record the fact that we couldn't load it in
24582 S->font_not_found_p so that we can draw rectangles for the
24583 characters of the glyph string. */
24584 if (s
->font
== NULL
|| glyph_not_available_p
)
24586 s
->font_not_found_p
= 1;
24587 s
->font
= FRAME_FONT (s
->f
);
24590 /* Adjust base line for subscript/superscript text. */
24591 s
->ybase
+= voffset
;
24593 eassert (s
->face
&& s
->face
->gc
);
24594 return glyph
- s
->row
->glyphs
[s
->area
];
24598 /* Fill glyph string S from image glyph S->first_glyph. */
24601 fill_image_glyph_string (struct glyph_string
*s
)
24603 eassert (s
->first_glyph
->type
== IMAGE_GLYPH
);
24604 s
->img
= IMAGE_FROM_ID (s
->f
, s
->first_glyph
->u
.img_id
);
24606 s
->slice
= s
->first_glyph
->slice
.img
;
24607 s
->face
= FACE_FROM_ID (s
->f
, s
->first_glyph
->face_id
);
24608 s
->font
= s
->face
->font
;
24609 s
->width
= s
->first_glyph
->pixel_width
;
24611 /* Adjust base line for subscript/superscript text. */
24612 s
->ybase
+= s
->first_glyph
->voffset
;
24616 #ifdef HAVE_XWIDGETS
24618 fill_xwidget_glyph_string (struct glyph_string
*s
)
24620 eassert (s
->first_glyph
->type
== XWIDGET_GLYPH
);
24621 printf("fill_xwidget_glyph_string: width:%d \n",s
->first_glyph
->pixel_width
);
24622 s
->face
= FACE_FROM_ID (s
->f
, s
->first_glyph
->face_id
);
24623 s
->font
= s
->face
->font
;
24624 s
->width
= s
->first_glyph
->pixel_width
;
24625 s
->ybase
+= s
->first_glyph
->voffset
;
24626 s
->xwidget
= s
->first_glyph
->u
.xwidget
;
24627 //assert_valid_xwidget_id ( s->xwidget, "fill_xwidget_glyph_string");
24630 /* Fill glyph string S from a sequence of stretch glyphs.
24632 START is the index of the first glyph to consider,
24633 END is the index of the last + 1.
24635 Value is the index of the first glyph not in S. */
24638 fill_stretch_glyph_string (struct glyph_string
*s
, int start
, int end
)
24640 struct glyph
*glyph
, *last
;
24641 int voffset
, face_id
;
24643 eassert (s
->first_glyph
->type
== STRETCH_GLYPH
);
24645 glyph
= s
->row
->glyphs
[s
->area
] + start
;
24646 last
= s
->row
->glyphs
[s
->area
] + end
;
24647 face_id
= glyph
->face_id
;
24648 s
->face
= FACE_FROM_ID (s
->f
, face_id
);
24649 s
->font
= s
->face
->font
;
24650 s
->width
= glyph
->pixel_width
;
24652 voffset
= glyph
->voffset
;
24656 && glyph
->type
== STRETCH_GLYPH
24657 && glyph
->voffset
== voffset
24658 && glyph
->face_id
== face_id
);
24660 s
->width
+= glyph
->pixel_width
;
24662 /* Adjust base line for subscript/superscript text. */
24663 s
->ybase
+= voffset
;
24665 /* The case that face->gc == 0 is handled when drawing the glyph
24666 string by calling prepare_face_for_display. */
24668 return glyph
- s
->row
->glyphs
[s
->area
];
24671 static struct font_metrics
*
24672 get_per_char_metric (struct font
*font
, XChar2b
*char2b
)
24674 static struct font_metrics metrics
;
24679 code
= (XCHAR2B_BYTE1 (char2b
) << 8) | XCHAR2B_BYTE2 (char2b
);
24680 if (code
== FONT_INVALID_CODE
)
24682 font
->driver
->text_extents (font
, &code
, 1, &metrics
);
24687 Set *LEFT and *RIGHT to the left and right overhang of GLYPH on
24688 frame F. Overhangs of glyphs other than type CHAR_GLYPH are
24689 assumed to be zero. */
24692 x_get_glyph_overhangs (struct glyph
*glyph
, struct frame
*f
, int *left
, int *right
)
24694 *left
= *right
= 0;
24696 if (glyph
->type
== CHAR_GLYPH
)
24700 struct font_metrics
*pcm
;
24702 face
= get_glyph_face_and_encoding (f
, glyph
, &char2b
, NULL
);
24703 if (face
->font
&& (pcm
= get_per_char_metric (face
->font
, &char2b
)))
24705 if (pcm
->rbearing
> pcm
->width
)
24706 *right
= pcm
->rbearing
- pcm
->width
;
24707 if (pcm
->lbearing
< 0)
24708 *left
= -pcm
->lbearing
;
24711 else if (glyph
->type
== COMPOSITE_GLYPH
)
24713 if (! glyph
->u
.cmp
.automatic
)
24715 struct composition
*cmp
= composition_table
[glyph
->u
.cmp
.id
];
24717 if (cmp
->rbearing
> cmp
->pixel_width
)
24718 *right
= cmp
->rbearing
- cmp
->pixel_width
;
24719 if (cmp
->lbearing
< 0)
24720 *left
= - cmp
->lbearing
;
24724 Lisp_Object gstring
= composition_gstring_from_id (glyph
->u
.cmp
.id
);
24725 struct font_metrics metrics
;
24727 composition_gstring_width (gstring
, glyph
->slice
.cmp
.from
,
24728 glyph
->slice
.cmp
.to
+ 1, &metrics
);
24729 if (metrics
.rbearing
> metrics
.width
)
24730 *right
= metrics
.rbearing
- metrics
.width
;
24731 if (metrics
.lbearing
< 0)
24732 *left
= - metrics
.lbearing
;
24738 /* Return the index of the first glyph preceding glyph string S that
24739 is overwritten by S because of S's left overhang. Value is -1
24740 if no glyphs are overwritten. */
24743 left_overwritten (struct glyph_string
*s
)
24747 if (s
->left_overhang
)
24750 struct glyph
*glyphs
= s
->row
->glyphs
[s
->area
];
24751 int first
= s
->first_glyph
- glyphs
;
24753 for (i
= first
- 1; i
>= 0 && x
> -s
->left_overhang
; --i
)
24754 x
-= glyphs
[i
].pixel_width
;
24765 /* Return the index of the first glyph preceding glyph string S that
24766 is overwriting S because of its right overhang. Value is -1 if no
24767 glyph in front of S overwrites S. */
24770 left_overwriting (struct glyph_string
*s
)
24773 struct glyph
*glyphs
= s
->row
->glyphs
[s
->area
];
24774 int first
= s
->first_glyph
- glyphs
;
24778 for (i
= first
- 1; i
>= 0; --i
)
24781 x_get_glyph_overhangs (glyphs
+ i
, s
->f
, &left
, &right
);
24784 x
-= glyphs
[i
].pixel_width
;
24791 /* Return the index of the last glyph following glyph string S that is
24792 overwritten by S because of S's right overhang. Value is -1 if
24793 no such glyph is found. */
24796 right_overwritten (struct glyph_string
*s
)
24800 if (s
->right_overhang
)
24803 struct glyph
*glyphs
= s
->row
->glyphs
[s
->area
];
24804 int first
= (s
->first_glyph
- glyphs
24805 + (s
->first_glyph
->type
== COMPOSITE_GLYPH
? 1 : s
->nchars
));
24806 int end
= s
->row
->used
[s
->area
];
24808 for (i
= first
; i
< end
&& s
->right_overhang
> x
; ++i
)
24809 x
+= glyphs
[i
].pixel_width
;
24818 /* Return the index of the last glyph following glyph string S that
24819 overwrites S because of its left overhang. Value is negative
24820 if no such glyph is found. */
24823 right_overwriting (struct glyph_string
*s
)
24826 int end
= s
->row
->used
[s
->area
];
24827 struct glyph
*glyphs
= s
->row
->glyphs
[s
->area
];
24828 int first
= (s
->first_glyph
- glyphs
24829 + (s
->first_glyph
->type
== COMPOSITE_GLYPH
? 1 : s
->nchars
));
24833 for (i
= first
; i
< end
; ++i
)
24836 x_get_glyph_overhangs (glyphs
+ i
, s
->f
, &left
, &right
);
24839 x
+= glyphs
[i
].pixel_width
;
24846 /* Set background width of glyph string S. START is the index of the
24847 first glyph following S. LAST_X is the right-most x-position + 1
24848 in the drawing area. */
24851 set_glyph_string_background_width (struct glyph_string
*s
, int start
, int last_x
)
24853 /* If the face of this glyph string has to be drawn to the end of
24854 the drawing area, set S->extends_to_end_of_line_p. */
24856 if (start
== s
->row
->used
[s
->area
]
24857 && ((s
->row
->fill_line_p
24858 && (s
->hl
== DRAW_NORMAL_TEXT
24859 || s
->hl
== DRAW_IMAGE_RAISED
24860 || s
->hl
== DRAW_IMAGE_SUNKEN
))
24861 || s
->hl
== DRAW_MOUSE_FACE
))
24862 s
->extends_to_end_of_line_p
= 1;
24864 /* If S extends its face to the end of the line, set its
24865 background_width to the distance to the right edge of the drawing
24867 if (s
->extends_to_end_of_line_p
)
24868 s
->background_width
= last_x
- s
->x
+ 1;
24870 s
->background_width
= s
->width
;
24874 /* Compute overhangs and x-positions for glyph string S and its
24875 predecessors, or successors. X is the starting x-position for S.
24876 BACKWARD_P non-zero means process predecessors. */
24879 compute_overhangs_and_x (struct glyph_string
*s
, int x
, int backward_p
)
24885 if (FRAME_RIF (s
->f
)->compute_glyph_string_overhangs
)
24886 FRAME_RIF (s
->f
)->compute_glyph_string_overhangs (s
);
24896 if (FRAME_RIF (s
->f
)->compute_glyph_string_overhangs
)
24897 FRAME_RIF (s
->f
)->compute_glyph_string_overhangs (s
);
24907 /* The following macros are only called from draw_glyphs below.
24908 They reference the following parameters of that function directly:
24909 `w', `row', `area', and `overlap_p'
24910 as well as the following local variables:
24911 `s', `f', and `hdc' (in W32) */
24914 /* On W32, silently add local `hdc' variable to argument list of
24915 init_glyph_string. */
24916 #define INIT_GLYPH_STRING(s, char2b, w, row, area, start, hl) \
24917 init_glyph_string (s, hdc, char2b, w, row, area, start, hl)
24919 #define INIT_GLYPH_STRING(s, char2b, w, row, area, start, hl) \
24920 init_glyph_string (s, char2b, w, row, area, start, hl)
24923 /* Add a glyph string for a stretch glyph to the list of strings
24924 between HEAD and TAIL. START is the index of the stretch glyph in
24925 row area AREA of glyph row ROW. END is the index of the last glyph
24926 in that glyph row area. X is the current output position assigned
24927 to the new glyph string constructed. HL overrides that face of the
24928 glyph; e.g. it is DRAW_CURSOR if a cursor has to be drawn. LAST_X
24929 is the right-most x-position of the drawing area. */
24931 /* SunOS 4 bundled cc, barfed on continuations in the arg lists here
24932 and below -- keep them on one line. */
24933 #define BUILD_STRETCH_GLYPH_STRING(START, END, HEAD, TAIL, HL, X, LAST_X) \
24936 s = alloca (sizeof *s); \
24937 INIT_GLYPH_STRING (s, NULL, w, row, area, START, HL); \
24938 START = fill_stretch_glyph_string (s, START, END); \
24939 append_glyph_string (&HEAD, &TAIL, s); \
24945 /* Add a glyph string for an image glyph to the list of strings
24946 between HEAD and TAIL. START is the index of the image glyph in
24947 row area AREA of glyph row ROW. END is the index of the last glyph
24948 in that glyph row area. X is the current output position assigned
24949 to the new glyph string constructed. HL overrides that face of the
24950 glyph; e.g. it is DRAW_CURSOR if a cursor has to be drawn. LAST_X
24951 is the right-most x-position of the drawing area. */
24953 #define BUILD_IMAGE_GLYPH_STRING(START, END, HEAD, TAIL, HL, X, LAST_X) \
24956 s = alloca (sizeof *s); \
24957 INIT_GLYPH_STRING (s, NULL, w, row, area, START, HL); \
24958 fill_image_glyph_string (s); \
24959 append_glyph_string (&HEAD, &TAIL, s); \
24965 #ifdef HAVE_XWIDGETS
24966 #define BUILD_XWIDGET_GLYPH_STRING(START, END, HEAD, TAIL, HL, X, LAST_X) \
24969 printf("BUILD_XWIDGET_GLYPH_STRING\n"); \
24970 s = (struct glyph_string *) alloca (sizeof *s); \
24971 INIT_GLYPH_STRING (s, NULL, w, row, area, START, HL); \
24972 fill_xwidget_glyph_string (s); \
24973 append_glyph_string (&HEAD, &TAIL, s); \
24981 /* Add a glyph string for a sequence of character glyphs to the list
24982 of strings between HEAD and TAIL. START is the index of the first
24983 glyph in row area AREA of glyph row ROW that is part of the new
24984 glyph string. END is the index of the last glyph in that glyph row
24985 area. X is the current output position assigned to the new glyph
24986 string constructed. HL overrides that face of the glyph; e.g. it
24987 is DRAW_CURSOR if a cursor has to be drawn. LAST_X is the
24988 right-most x-position of the drawing area. */
24990 #define BUILD_CHAR_GLYPH_STRINGS(START, END, HEAD, TAIL, HL, X, LAST_X) \
24996 face_id = (row)->glyphs[area][START].face_id; \
24998 s = alloca (sizeof *s); \
24999 SAFE_NALLOCA (char2b, 1, (END) - (START)); \
25000 INIT_GLYPH_STRING (s, char2b, w, row, area, START, HL); \
25001 append_glyph_string (&HEAD, &TAIL, s); \
25003 START = fill_glyph_string (s, face_id, START, END, overlaps); \
25008 /* Add a glyph string for a composite sequence to the list of strings
25009 between HEAD and TAIL. START is the index of the first glyph in
25010 row area AREA of glyph row ROW that is part of the new glyph
25011 string. END is the index of the last glyph in that glyph row area.
25012 X is the current output position assigned to the new glyph string
25013 constructed. HL overrides that face of the glyph; e.g. it is
25014 DRAW_CURSOR if a cursor has to be drawn. LAST_X is the right-most
25015 x-position of the drawing area. */
25017 #define BUILD_COMPOSITE_GLYPH_STRING(START, END, HEAD, TAIL, HL, X, LAST_X) \
25019 int face_id = (row)->glyphs[area][START].face_id; \
25020 struct face *base_face = FACE_FROM_ID (f, face_id); \
25021 ptrdiff_t cmp_id = (row)->glyphs[area][START].u.cmp.id; \
25022 struct composition *cmp = composition_table[cmp_id]; \
25024 struct glyph_string *first_s = NULL; \
25027 SAFE_NALLOCA (char2b, 1, cmp->glyph_len); \
25029 /* Make glyph_strings for each glyph sequence that is drawable by \
25030 the same face, and append them to HEAD/TAIL. */ \
25031 for (n = 0; n < cmp->glyph_len;) \
25033 s = alloca (sizeof *s); \
25034 INIT_GLYPH_STRING (s, char2b, w, row, area, START, HL); \
25035 append_glyph_string (&(HEAD), &(TAIL), s); \
25041 n = fill_composite_glyph_string (s, base_face, overlaps); \
25049 /* Add a glyph string for a glyph-string sequence to the list of strings
25050 between HEAD and TAIL. */
25052 #define BUILD_GSTRING_GLYPH_STRING(START, END, HEAD, TAIL, HL, X, LAST_X) \
25056 Lisp_Object gstring; \
25058 face_id = (row)->glyphs[area][START].face_id; \
25059 gstring = (composition_gstring_from_id \
25060 ((row)->glyphs[area][START].u.cmp.id)); \
25061 s = alloca (sizeof *s); \
25062 SAFE_NALLOCA (char2b, 1, LGSTRING_GLYPH_LEN (gstring)); \
25063 INIT_GLYPH_STRING (s, char2b, w, row, area, START, HL); \
25064 append_glyph_string (&(HEAD), &(TAIL), s); \
25066 START = fill_gstring_glyph_string (s, face_id, START, END, overlaps); \
25070 /* Add a glyph string for a sequence of glyphless character's glyphs
25071 to the list of strings between HEAD and TAIL. The meanings of
25072 arguments are the same as those of BUILD_CHAR_GLYPH_STRINGS. */
25074 #define BUILD_GLYPHLESS_GLYPH_STRING(START, END, HEAD, TAIL, HL, X, LAST_X) \
25079 face_id = (row)->glyphs[area][START].face_id; \
25081 s = alloca (sizeof *s); \
25082 INIT_GLYPH_STRING (s, NULL, w, row, area, START, HL); \
25083 append_glyph_string (&HEAD, &TAIL, s); \
25085 START = fill_glyphless_glyph_string (s, face_id, START, END, \
25091 /* Build a list of glyph strings between HEAD and TAIL for the glyphs
25092 of AREA of glyph row ROW on window W between indices START and END.
25093 HL overrides the face for drawing glyph strings, e.g. it is
25094 DRAW_CURSOR to draw a cursor. X and LAST_X are start and end
25095 x-positions of the drawing area.
25097 This is an ugly monster macro construct because we must use alloca
25098 to allocate glyph strings (because draw_glyphs can be called
25099 asynchronously). */
25101 #define BUILD_GLYPH_STRINGS_1(START, END, HEAD, TAIL, HL, X, LAST_X) \
25104 HEAD = TAIL = NULL; \
25105 while (START < END) \
25107 struct glyph *first_glyph = (row)->glyphs[area] + START; \
25108 switch (first_glyph->type) \
25111 BUILD_CHAR_GLYPH_STRINGS (START, END, HEAD, TAIL, \
25115 case COMPOSITE_GLYPH: \
25116 if (first_glyph->u.cmp.automatic) \
25117 BUILD_GSTRING_GLYPH_STRING (START, END, HEAD, TAIL, \
25120 BUILD_COMPOSITE_GLYPH_STRING (START, END, HEAD, TAIL, \
25124 case STRETCH_GLYPH: \
25125 BUILD_STRETCH_GLYPH_STRING (START, END, HEAD, TAIL, \
25129 case IMAGE_GLYPH: \
25130 BUILD_IMAGE_GLYPH_STRING (START, END, HEAD, TAIL, \
25134 #define BUILD_GLYPH_STRINGS_XW(START, END, HEAD, TAIL, HL, X, LAST_X) \
25135 case XWIDGET_GLYPH: \
25136 BUILD_XWIDGET_GLYPH_STRING (START, END, HEAD, TAIL, \
25140 #define BUILD_GLYPH_STRINGS_2(START, END, HEAD, TAIL, HL, X, LAST_X) \
25141 case GLYPHLESS_GLYPH: \
25142 BUILD_GLYPHLESS_GLYPH_STRING (START, END, HEAD, TAIL, \
25152 set_glyph_string_background_width (s, START, LAST_X); \
25159 #ifdef HAVE_XWIDGETS
25160 #define BUILD_GLYPH_STRINGS(START, END, HEAD, TAIL, HL, X, LAST_X) \
25161 BUILD_GLYPH_STRINGS_1(START, END, HEAD, TAIL, HL, X, LAST_X) \
25162 BUILD_GLYPH_STRINGS_XW(START, END, HEAD, TAIL, HL, X, LAST_X) \
25163 BUILD_GLYPH_STRINGS_2(START, END, HEAD, TAIL, HL, X, LAST_X)
25165 #define BUILD_GLYPH_STRINGS(START, END, HEAD, TAIL, HL, X, LAST_X) \
25166 BUILD_GLYPH_STRINGS_1(START, END, HEAD, TAIL, HL, X, LAST_X) \
25167 BUILD_GLYPH_STRINGS_2(START, END, HEAD, TAIL, HL, X, LAST_X)
25171 /* Draw glyphs between START and END in AREA of ROW on window W,
25172 starting at x-position X. X is relative to AREA in W. HL is a
25173 face-override with the following meaning:
25175 DRAW_NORMAL_TEXT draw normally
25176 DRAW_CURSOR draw in cursor face
25177 DRAW_MOUSE_FACE draw in mouse face.
25178 DRAW_INVERSE_VIDEO draw in mode line face
25179 DRAW_IMAGE_SUNKEN draw an image with a sunken relief around it
25180 DRAW_IMAGE_RAISED draw an image with a raised relief around it
25182 If OVERLAPS is non-zero, draw only the foreground of characters and
25183 clip to the physical height of ROW. Non-zero value also defines
25184 the overlapping part to be drawn:
25186 OVERLAPS_PRED overlap with preceding rows
25187 OVERLAPS_SUCC overlap with succeeding rows
25188 OVERLAPS_BOTH overlap with both preceding/succeeding rows
25189 OVERLAPS_ERASED_CURSOR overlap with erased cursor area
25191 Value is the x-position reached, relative to AREA of W. */
25194 draw_glyphs (struct window
*w
, int x
, struct glyph_row
*row
,
25195 enum glyph_row_area area
, ptrdiff_t start
, ptrdiff_t end
,
25196 enum draw_glyphs_face hl
, int overlaps
)
25198 struct glyph_string
*head
, *tail
;
25199 struct glyph_string
*s
;
25200 struct glyph_string
*clip_head
= NULL
, *clip_tail
= NULL
;
25201 int i
, j
, x_reached
, last_x
, area_left
= 0;
25202 struct frame
*f
= XFRAME (WINDOW_FRAME (w
));
25205 ALLOCATE_HDC (hdc
, f
);
25207 /* Let's rather be paranoid than getting a SEGV. */
25208 end
= min (end
, row
->used
[area
]);
25209 start
= clip_to_bounds (0, start
, end
);
25211 /* Translate X to frame coordinates. Set last_x to the right
25212 end of the drawing area. */
25213 if (row
->full_width_p
)
25215 /* X is relative to the left edge of W, without scroll bars
25217 area_left
= WINDOW_LEFT_EDGE_X (w
);
25218 last_x
= (WINDOW_LEFT_EDGE_X (w
) + WINDOW_PIXEL_WIDTH (w
)
25219 - (row
->mode_line_p
? WINDOW_RIGHT_DIVIDER_WIDTH (w
) : 0));
25223 area_left
= window_box_left (w
, area
);
25224 last_x
= area_left
+ window_box_width (w
, area
);
25228 /* Build a doubly-linked list of glyph_string structures between
25229 head and tail from what we have to draw. Note that the macro
25230 BUILD_GLYPH_STRINGS will modify its start parameter. That's
25231 the reason we use a separate variable `i'. */
25234 BUILD_GLYPH_STRINGS (i
, end
, head
, tail
, hl
, x
, last_x
);
25236 x_reached
= tail
->x
+ tail
->background_width
;
25240 /* If there are any glyphs with lbearing < 0 or rbearing > width in
25241 the row, redraw some glyphs in front or following the glyph
25242 strings built above. */
25243 if (head
&& !overlaps
&& row
->contains_overlapping_glyphs_p
)
25245 struct glyph_string
*h
, *t
;
25246 Mouse_HLInfo
*hlinfo
= MOUSE_HL_INFO (f
);
25247 int mouse_beg_col
IF_LINT (= 0), mouse_end_col
IF_LINT (= 0);
25248 int check_mouse_face
= 0;
25251 /* If mouse highlighting is on, we may need to draw adjacent
25252 glyphs using mouse-face highlighting. */
25253 if (area
== TEXT_AREA
&& row
->mouse_face_p
25254 && hlinfo
->mouse_face_beg_row
>= 0
25255 && hlinfo
->mouse_face_end_row
>= 0)
25257 ptrdiff_t row_vpos
= MATRIX_ROW_VPOS (row
, w
->current_matrix
);
25259 if (row_vpos
>= hlinfo
->mouse_face_beg_row
25260 && row_vpos
<= hlinfo
->mouse_face_end_row
)
25262 check_mouse_face
= 1;
25263 mouse_beg_col
= (row_vpos
== hlinfo
->mouse_face_beg_row
)
25264 ? hlinfo
->mouse_face_beg_col
: 0;
25265 mouse_end_col
= (row_vpos
== hlinfo
->mouse_face_end_row
)
25266 ? hlinfo
->mouse_face_end_col
25267 : row
->used
[TEXT_AREA
];
25271 /* Compute overhangs for all glyph strings. */
25272 if (FRAME_RIF (f
)->compute_glyph_string_overhangs
)
25273 for (s
= head
; s
; s
= s
->next
)
25274 FRAME_RIF (f
)->compute_glyph_string_overhangs (s
);
25276 /* Prepend glyph strings for glyphs in front of the first glyph
25277 string that are overwritten because of the first glyph
25278 string's left overhang. The background of all strings
25279 prepended must be drawn because the first glyph string
25281 i
= left_overwritten (head
);
25284 enum draw_glyphs_face overlap_hl
;
25286 /* If this row contains mouse highlighting, attempt to draw
25287 the overlapped glyphs with the correct highlight. This
25288 code fails if the overlap encompasses more than one glyph
25289 and mouse-highlight spans only some of these glyphs.
25290 However, making it work perfectly involves a lot more
25291 code, and I don't know if the pathological case occurs in
25292 practice, so we'll stick to this for now. --- cyd */
25293 if (check_mouse_face
25294 && mouse_beg_col
< start
&& mouse_end_col
> i
)
25295 overlap_hl
= DRAW_MOUSE_FACE
;
25297 overlap_hl
= DRAW_NORMAL_TEXT
;
25299 if (hl
!= overlap_hl
)
25302 BUILD_GLYPH_STRINGS (j
, start
, h
, t
,
25303 overlap_hl
, dummy_x
, last_x
);
25305 compute_overhangs_and_x (t
, head
->x
, 1);
25306 prepend_glyph_string_lists (&head
, &tail
, h
, t
);
25307 if (clip_head
== NULL
)
25311 /* Prepend glyph strings for glyphs in front of the first glyph
25312 string that overwrite that glyph string because of their
25313 right overhang. For these strings, only the foreground must
25314 be drawn, because it draws over the glyph string at `head'.
25315 The background must not be drawn because this would overwrite
25316 right overhangs of preceding glyphs for which no glyph
25318 i
= left_overwriting (head
);
25321 enum draw_glyphs_face overlap_hl
;
25323 if (check_mouse_face
25324 && mouse_beg_col
< start
&& mouse_end_col
> i
)
25325 overlap_hl
= DRAW_MOUSE_FACE
;
25327 overlap_hl
= DRAW_NORMAL_TEXT
;
25329 if (hl
== overlap_hl
|| clip_head
== NULL
)
25331 BUILD_GLYPH_STRINGS (i
, start
, h
, t
,
25332 overlap_hl
, dummy_x
, last_x
);
25333 for (s
= h
; s
; s
= s
->next
)
25334 s
->background_filled_p
= 1;
25335 compute_overhangs_and_x (t
, head
->x
, 1);
25336 prepend_glyph_string_lists (&head
, &tail
, h
, t
);
25339 /* Append glyphs strings for glyphs following the last glyph
25340 string tail that are overwritten by tail. The background of
25341 these strings has to be drawn because tail's foreground draws
25343 i
= right_overwritten (tail
);
25346 enum draw_glyphs_face overlap_hl
;
25348 if (check_mouse_face
25349 && mouse_beg_col
< i
&& mouse_end_col
> end
)
25350 overlap_hl
= DRAW_MOUSE_FACE
;
25352 overlap_hl
= DRAW_NORMAL_TEXT
;
25354 if (hl
!= overlap_hl
)
25356 BUILD_GLYPH_STRINGS (end
, i
, h
, t
,
25357 overlap_hl
, x
, last_x
);
25358 /* Because BUILD_GLYPH_STRINGS updates the first argument,
25359 we don't have `end = i;' here. */
25360 compute_overhangs_and_x (h
, tail
->x
+ tail
->width
, 0);
25361 append_glyph_string_lists (&head
, &tail
, h
, t
);
25362 if (clip_tail
== NULL
)
25366 /* Append glyph strings for glyphs following the last glyph
25367 string tail that overwrite tail. The foreground of such
25368 glyphs has to be drawn because it writes into the background
25369 of tail. The background must not be drawn because it could
25370 paint over the foreground of following glyphs. */
25371 i
= right_overwriting (tail
);
25374 enum draw_glyphs_face overlap_hl
;
25375 if (check_mouse_face
25376 && mouse_beg_col
< i
&& mouse_end_col
> end
)
25377 overlap_hl
= DRAW_MOUSE_FACE
;
25379 overlap_hl
= DRAW_NORMAL_TEXT
;
25381 if (hl
== overlap_hl
|| clip_tail
== NULL
)
25383 i
++; /* We must include the Ith glyph. */
25384 BUILD_GLYPH_STRINGS (end
, i
, h
, t
,
25385 overlap_hl
, x
, last_x
);
25386 for (s
= h
; s
; s
= s
->next
)
25387 s
->background_filled_p
= 1;
25388 compute_overhangs_and_x (h
, tail
->x
+ tail
->width
, 0);
25389 append_glyph_string_lists (&head
, &tail
, h
, t
);
25391 if (clip_head
|| clip_tail
)
25392 for (s
= head
; s
; s
= s
->next
)
25394 s
->clip_head
= clip_head
;
25395 s
->clip_tail
= clip_tail
;
25399 /* Draw all strings. */
25400 for (s
= head
; s
; s
= s
->next
)
25401 FRAME_RIF (f
)->draw_glyph_string (s
);
25404 /* When focus a sole frame and move horizontally, this sets on_p to 0
25405 causing a failure to erase prev cursor position. */
25406 if (area
== TEXT_AREA
25407 && !row
->full_width_p
25408 /* When drawing overlapping rows, only the glyph strings'
25409 foreground is drawn, which doesn't erase a cursor
25413 int x0
= clip_head
? clip_head
->x
: (head
? head
->x
: x
);
25414 int x1
= (clip_tail
? clip_tail
->x
+ clip_tail
->background_width
25415 : (tail
? tail
->x
+ tail
->background_width
: x
));
25419 notice_overwritten_cursor (w
, TEXT_AREA
, x0
, x1
,
25420 row
->y
, MATRIX_ROW_BOTTOM_Y (row
));
25424 /* Value is the x-position up to which drawn, relative to AREA of W.
25425 This doesn't include parts drawn because of overhangs. */
25426 if (row
->full_width_p
)
25427 x_reached
= FRAME_TO_WINDOW_PIXEL_X (w
, x_reached
);
25429 x_reached
-= area_left
;
25431 RELEASE_HDC (hdc
, f
);
25437 /* Expand row matrix if too narrow. Don't expand if area
25440 #define IT_EXPAND_MATRIX_WIDTH(it, area) \
25442 if (!it->f->fonts_changed \
25443 && (it->glyph_row->glyphs[area] \
25444 < it->glyph_row->glyphs[area + 1])) \
25446 it->w->ncols_scale_factor++; \
25447 it->f->fonts_changed = 1; \
25451 /* Store one glyph for IT->char_to_display in IT->glyph_row.
25452 Called from x_produce_glyphs when IT->glyph_row is non-null. */
25455 append_glyph (struct it
*it
)
25457 struct glyph
*glyph
;
25458 enum glyph_row_area area
= it
->area
;
25460 eassert (it
->glyph_row
);
25461 eassert (it
->char_to_display
!= '\n' && it
->char_to_display
!= '\t');
25463 glyph
= it
->glyph_row
->glyphs
[area
] + it
->glyph_row
->used
[area
];
25464 if (glyph
< it
->glyph_row
->glyphs
[area
+ 1])
25466 /* If the glyph row is reversed, we need to prepend the glyph
25467 rather than append it. */
25468 if (it
->glyph_row
->reversed_p
&& area
== TEXT_AREA
)
25472 /* Make room for the additional glyph. */
25473 for (g
= glyph
- 1; g
>= it
->glyph_row
->glyphs
[area
]; g
--)
25475 glyph
= it
->glyph_row
->glyphs
[area
];
25477 glyph
->charpos
= CHARPOS (it
->position
);
25478 glyph
->object
= it
->object
;
25479 if (it
->pixel_width
> 0)
25481 glyph
->pixel_width
= it
->pixel_width
;
25482 glyph
->padding_p
= 0;
25486 /* Assure at least 1-pixel width. Otherwise, cursor can't
25487 be displayed correctly. */
25488 glyph
->pixel_width
= 1;
25489 glyph
->padding_p
= 1;
25491 glyph
->ascent
= it
->ascent
;
25492 glyph
->descent
= it
->descent
;
25493 glyph
->voffset
= it
->voffset
;
25494 glyph
->type
= CHAR_GLYPH
;
25495 glyph
->avoid_cursor_p
= it
->avoid_cursor_p
;
25496 glyph
->multibyte_p
= it
->multibyte_p
;
25497 if (it
->glyph_row
->reversed_p
&& area
== TEXT_AREA
)
25499 /* In R2L rows, the left and the right box edges need to be
25500 drawn in reverse direction. */
25501 glyph
->right_box_line_p
= it
->start_of_box_run_p
;
25502 glyph
->left_box_line_p
= it
->end_of_box_run_p
;
25506 glyph
->left_box_line_p
= it
->start_of_box_run_p
;
25507 glyph
->right_box_line_p
= it
->end_of_box_run_p
;
25509 glyph
->overlaps_vertically_p
= (it
->phys_ascent
> it
->ascent
25510 || it
->phys_descent
> it
->descent
);
25511 glyph
->glyph_not_available_p
= it
->glyph_not_available_p
;
25512 glyph
->face_id
= it
->face_id
;
25513 glyph
->u
.ch
= it
->char_to_display
;
25514 glyph
->slice
.img
= null_glyph_slice
;
25515 glyph
->font_type
= FONT_TYPE_UNKNOWN
;
25518 glyph
->resolved_level
= it
->bidi_it
.resolved_level
;
25519 eassert ((it
->bidi_it
.type
& 7) == it
->bidi_it
.type
);
25520 glyph
->bidi_type
= it
->bidi_it
.type
;
25524 glyph
->resolved_level
= 0;
25525 glyph
->bidi_type
= UNKNOWN_BT
;
25527 ++it
->glyph_row
->used
[area
];
25530 IT_EXPAND_MATRIX_WIDTH (it
, area
);
25533 /* Store one glyph for the composition IT->cmp_it.id in
25534 IT->glyph_row. Called from x_produce_glyphs when IT->glyph_row is
25538 append_composite_glyph (struct it
*it
)
25540 struct glyph
*glyph
;
25541 enum glyph_row_area area
= it
->area
;
25543 eassert (it
->glyph_row
);
25545 glyph
= it
->glyph_row
->glyphs
[area
] + it
->glyph_row
->used
[area
];
25546 if (glyph
< it
->glyph_row
->glyphs
[area
+ 1])
25548 /* If the glyph row is reversed, we need to prepend the glyph
25549 rather than append it. */
25550 if (it
->glyph_row
->reversed_p
&& it
->area
== TEXT_AREA
)
25554 /* Make room for the new glyph. */
25555 for (g
= glyph
- 1; g
>= it
->glyph_row
->glyphs
[it
->area
]; g
--)
25557 glyph
= it
->glyph_row
->glyphs
[it
->area
];
25559 glyph
->charpos
= it
->cmp_it
.charpos
;
25560 glyph
->object
= it
->object
;
25561 glyph
->pixel_width
= it
->pixel_width
;
25562 glyph
->ascent
= it
->ascent
;
25563 glyph
->descent
= it
->descent
;
25564 glyph
->voffset
= it
->voffset
;
25565 glyph
->type
= COMPOSITE_GLYPH
;
25566 if (it
->cmp_it
.ch
< 0)
25568 glyph
->u
.cmp
.automatic
= 0;
25569 glyph
->u
.cmp
.id
= it
->cmp_it
.id
;
25570 glyph
->slice
.cmp
.from
= glyph
->slice
.cmp
.to
= 0;
25574 glyph
->u
.cmp
.automatic
= 1;
25575 glyph
->u
.cmp
.id
= it
->cmp_it
.id
;
25576 glyph
->slice
.cmp
.from
= it
->cmp_it
.from
;
25577 glyph
->slice
.cmp
.to
= it
->cmp_it
.to
- 1;
25579 glyph
->avoid_cursor_p
= it
->avoid_cursor_p
;
25580 glyph
->multibyte_p
= it
->multibyte_p
;
25581 if (it
->glyph_row
->reversed_p
&& area
== TEXT_AREA
)
25583 /* In R2L rows, the left and the right box edges need to be
25584 drawn in reverse direction. */
25585 glyph
->right_box_line_p
= it
->start_of_box_run_p
;
25586 glyph
->left_box_line_p
= it
->end_of_box_run_p
;
25590 glyph
->left_box_line_p
= it
->start_of_box_run_p
;
25591 glyph
->right_box_line_p
= it
->end_of_box_run_p
;
25593 glyph
->overlaps_vertically_p
= (it
->phys_ascent
> it
->ascent
25594 || it
->phys_descent
> it
->descent
);
25595 glyph
->padding_p
= 0;
25596 glyph
->glyph_not_available_p
= 0;
25597 glyph
->face_id
= it
->face_id
;
25598 glyph
->font_type
= FONT_TYPE_UNKNOWN
;
25601 glyph
->resolved_level
= it
->bidi_it
.resolved_level
;
25602 eassert ((it
->bidi_it
.type
& 7) == it
->bidi_it
.type
);
25603 glyph
->bidi_type
= it
->bidi_it
.type
;
25605 ++it
->glyph_row
->used
[area
];
25608 IT_EXPAND_MATRIX_WIDTH (it
, area
);
25612 /* Change IT->ascent and IT->height according to the setting of
25616 take_vertical_position_into_account (struct it
*it
)
25620 if (it
->voffset
< 0)
25621 /* Increase the ascent so that we can display the text higher
25623 it
->ascent
-= it
->voffset
;
25625 /* Increase the descent so that we can display the text lower
25627 it
->descent
+= it
->voffset
;
25632 /* Produce glyphs/get display metrics for the image IT is loaded with.
25633 See the description of struct display_iterator in dispextern.h for
25634 an overview of struct display_iterator. */
25637 produce_image_glyph (struct it
*it
)
25641 int glyph_ascent
, crop
;
25642 struct glyph_slice slice
;
25644 eassert (it
->what
== IT_IMAGE
);
25646 face
= FACE_FROM_ID (it
->f
, it
->face_id
);
25648 /* Make sure X resources of the face is loaded. */
25649 prepare_face_for_display (it
->f
, face
);
25651 if (it
->image_id
< 0)
25653 /* Fringe bitmap. */
25654 it
->ascent
= it
->phys_ascent
= 0;
25655 it
->descent
= it
->phys_descent
= 0;
25656 it
->pixel_width
= 0;
25661 img
= IMAGE_FROM_ID (it
->f
, it
->image_id
);
25663 /* Make sure X resources of the image is loaded. */
25664 prepare_image_for_display (it
->f
, img
);
25666 slice
.x
= slice
.y
= 0;
25667 slice
.width
= img
->width
;
25668 slice
.height
= img
->height
;
25670 if (INTEGERP (it
->slice
.x
))
25671 slice
.x
= XINT (it
->slice
.x
);
25672 else if (FLOATP (it
->slice
.x
))
25673 slice
.x
= XFLOAT_DATA (it
->slice
.x
) * img
->width
;
25675 if (INTEGERP (it
->slice
.y
))
25676 slice
.y
= XINT (it
->slice
.y
);
25677 else if (FLOATP (it
->slice
.y
))
25678 slice
.y
= XFLOAT_DATA (it
->slice
.y
) * img
->height
;
25680 if (INTEGERP (it
->slice
.width
))
25681 slice
.width
= XINT (it
->slice
.width
);
25682 else if (FLOATP (it
->slice
.width
))
25683 slice
.width
= XFLOAT_DATA (it
->slice
.width
) * img
->width
;
25685 if (INTEGERP (it
->slice
.height
))
25686 slice
.height
= XINT (it
->slice
.height
);
25687 else if (FLOATP (it
->slice
.height
))
25688 slice
.height
= XFLOAT_DATA (it
->slice
.height
) * img
->height
;
25690 if (slice
.x
>= img
->width
)
25691 slice
.x
= img
->width
;
25692 if (slice
.y
>= img
->height
)
25693 slice
.y
= img
->height
;
25694 if (slice
.x
+ slice
.width
>= img
->width
)
25695 slice
.width
= img
->width
- slice
.x
;
25696 if (slice
.y
+ slice
.height
> img
->height
)
25697 slice
.height
= img
->height
- slice
.y
;
25699 if (slice
.width
== 0 || slice
.height
== 0)
25702 it
->ascent
= it
->phys_ascent
= glyph_ascent
= image_ascent (img
, face
, &slice
);
25704 it
->descent
= slice
.height
- glyph_ascent
;
25706 it
->descent
+= img
->vmargin
;
25707 if (slice
.y
+ slice
.height
== img
->height
)
25708 it
->descent
+= img
->vmargin
;
25709 it
->phys_descent
= it
->descent
;
25711 it
->pixel_width
= slice
.width
;
25713 it
->pixel_width
+= img
->hmargin
;
25714 if (slice
.x
+ slice
.width
== img
->width
)
25715 it
->pixel_width
+= img
->hmargin
;
25717 /* It's quite possible for images to have an ascent greater than
25718 their height, so don't get confused in that case. */
25719 if (it
->descent
< 0)
25724 if (face
->box
!= FACE_NO_BOX
)
25726 if (face
->box_line_width
> 0)
25729 it
->ascent
+= face
->box_line_width
;
25730 if (slice
.y
+ slice
.height
== img
->height
)
25731 it
->descent
+= face
->box_line_width
;
25734 if (it
->start_of_box_run_p
&& slice
.x
== 0)
25735 it
->pixel_width
+= eabs (face
->box_line_width
);
25736 if (it
->end_of_box_run_p
&& slice
.x
+ slice
.width
== img
->width
)
25737 it
->pixel_width
+= eabs (face
->box_line_width
);
25740 take_vertical_position_into_account (it
);
25742 /* Automatically crop wide image glyphs at right edge so we can
25743 draw the cursor on same display row. */
25744 if ((crop
= it
->pixel_width
- (it
->last_visible_x
- it
->current_x
), crop
> 0)
25745 && (it
->hpos
== 0 || it
->pixel_width
> it
->last_visible_x
/ 4))
25747 it
->pixel_width
-= crop
;
25748 slice
.width
-= crop
;
25753 struct glyph
*glyph
;
25754 enum glyph_row_area area
= it
->area
;
25756 glyph
= it
->glyph_row
->glyphs
[area
] + it
->glyph_row
->used
[area
];
25757 if (glyph
< it
->glyph_row
->glyphs
[area
+ 1])
25759 glyph
->charpos
= CHARPOS (it
->position
);
25760 glyph
->object
= it
->object
;
25761 glyph
->pixel_width
= it
->pixel_width
;
25762 glyph
->ascent
= glyph_ascent
;
25763 glyph
->descent
= it
->descent
;
25764 glyph
->voffset
= it
->voffset
;
25765 glyph
->type
= IMAGE_GLYPH
;
25766 glyph
->avoid_cursor_p
= it
->avoid_cursor_p
;
25767 glyph
->multibyte_p
= it
->multibyte_p
;
25768 if (it
->glyph_row
->reversed_p
&& area
== TEXT_AREA
)
25770 /* In R2L rows, the left and the right box edges need to be
25771 drawn in reverse direction. */
25772 glyph
->right_box_line_p
= it
->start_of_box_run_p
;
25773 glyph
->left_box_line_p
= it
->end_of_box_run_p
;
25777 glyph
->left_box_line_p
= it
->start_of_box_run_p
;
25778 glyph
->right_box_line_p
= it
->end_of_box_run_p
;
25780 glyph
->overlaps_vertically_p
= 0;
25781 glyph
->padding_p
= 0;
25782 glyph
->glyph_not_available_p
= 0;
25783 glyph
->face_id
= it
->face_id
;
25784 glyph
->u
.img_id
= img
->id
;
25785 glyph
->slice
.img
= slice
;
25786 glyph
->font_type
= FONT_TYPE_UNKNOWN
;
25789 glyph
->resolved_level
= it
->bidi_it
.resolved_level
;
25790 eassert ((it
->bidi_it
.type
& 7) == it
->bidi_it
.type
);
25791 glyph
->bidi_type
= it
->bidi_it
.type
;
25793 ++it
->glyph_row
->used
[area
];
25796 IT_EXPAND_MATRIX_WIDTH (it
, area
);
25800 #ifdef HAVE_XWIDGETS
25802 produce_xwidget_glyph (struct it
*it
)
25804 struct xwidget
* xw
;
25806 int glyph_ascent
, crop
;
25807 printf("produce_xwidget_glyph:\n");
25808 eassert (it
->what
== IT_XWIDGET
);
25810 face
= FACE_FROM_ID (it
->f
, it
->face_id
);
25812 /* Make sure X resources of the face is loaded. */
25813 prepare_face_for_display (it
->f
, face
);
25816 it
->ascent
= it
->phys_ascent
= glyph_ascent
= xw
->height
/2;
25817 it
->descent
= xw
->height
/2;
25818 it
->phys_descent
= it
->descent
;
25819 it
->pixel_width
= xw
->width
;
25820 /* It's quite possible for images to have an ascent greater than
25821 their height, so don't get confused in that case. */
25822 if (it
->descent
< 0)
25827 if (face
->box
!= FACE_NO_BOX
)
25829 if (face
->box_line_width
> 0)
25831 it
->ascent
+= face
->box_line_width
;
25832 it
->descent
+= face
->box_line_width
;
25835 if (it
->start_of_box_run_p
)
25836 it
->pixel_width
+= eabs (face
->box_line_width
);
25837 it
->pixel_width
+= eabs (face
->box_line_width
);
25840 take_vertical_position_into_account (it
);
25842 /* Automatically crop wide image glyphs at right edge so we can
25843 draw the cursor on same display row. */
25844 if ((crop
= it
->pixel_width
- (it
->last_visible_x
- it
->current_x
), crop
> 0)
25845 && (it
->hpos
== 0 || it
->pixel_width
> it
->last_visible_x
/ 4))
25847 it
->pixel_width
-= crop
;
25852 struct glyph
*glyph
;
25853 enum glyph_row_area area
= it
->area
;
25855 glyph
= it
->glyph_row
->glyphs
[area
] + it
->glyph_row
->used
[area
];
25856 if (it
->glyph_row
->reversed_p
)
25860 /* Make room for the new glyph. */
25861 for (g
= glyph
- 1; g
>= it
->glyph_row
->glyphs
[it
->area
]; g
--)
25863 glyph
= it
->glyph_row
->glyphs
[it
->area
];
25865 if (glyph
< it
->glyph_row
->glyphs
[area
+ 1])
25867 glyph
->charpos
= CHARPOS (it
->position
);
25868 glyph
->object
= it
->object
;
25869 glyph
->pixel_width
= it
->pixel_width
;
25870 glyph
->ascent
= glyph_ascent
;
25871 glyph
->descent
= it
->descent
;
25872 glyph
->voffset
= it
->voffset
;
25873 glyph
->type
= XWIDGET_GLYPH
;
25874 glyph
->avoid_cursor_p
= it
->avoid_cursor_p
;
25875 glyph
->multibyte_p
= it
->multibyte_p
;
25876 if (it
->glyph_row
->reversed_p
&& area
== TEXT_AREA
)
25878 /* In R2L rows, the left and the right box edges need to be
25879 drawn in reverse direction. */
25880 glyph
->right_box_line_p
= it
->start_of_box_run_p
;
25881 glyph
->left_box_line_p
= it
->end_of_box_run_p
;
25885 glyph
->left_box_line_p
= it
->start_of_box_run_p
;
25886 glyph
->right_box_line_p
= it
->end_of_box_run_p
;
25888 glyph
->overlaps_vertically_p
= 0;
25889 glyph
->padding_p
= 0;
25890 glyph
->glyph_not_available_p
= 0;
25891 glyph
->face_id
= it
->face_id
;
25892 glyph
->u
.xwidget
= it
->xwidget
;
25893 //assert_valid_xwidget_id(glyph->u.xwidget_id,"produce_xwidget_glyph");
25894 glyph
->font_type
= FONT_TYPE_UNKNOWN
;
25897 glyph
->resolved_level
= it
->bidi_it
.resolved_level
;
25898 eassert ((it
->bidi_it
.type
& 7) == it
->bidi_it
.type
);
25899 glyph
->bidi_type
= it
->bidi_it
.type
;
25901 ++it
->glyph_row
->used
[area
];
25904 IT_EXPAND_MATRIX_WIDTH (it
, area
);
25909 /* Append a stretch glyph to IT->glyph_row. OBJECT is the source
25910 of the glyph, WIDTH and HEIGHT are the width and height of the
25911 stretch. ASCENT is the ascent of the glyph (0 <= ASCENT <= HEIGHT). */
25914 append_stretch_glyph (struct it
*it
, Lisp_Object object
,
25915 int width
, int height
, int ascent
)
25917 struct glyph
*glyph
;
25918 enum glyph_row_area area
= it
->area
;
25920 eassert (ascent
>= 0 && ascent
<= height
);
25922 glyph
= it
->glyph_row
->glyphs
[area
] + it
->glyph_row
->used
[area
];
25923 if (glyph
< it
->glyph_row
->glyphs
[area
+ 1])
25925 /* If the glyph row is reversed, we need to prepend the glyph
25926 rather than append it. */
25927 if (it
->glyph_row
->reversed_p
&& area
== TEXT_AREA
)
25931 /* Make room for the additional glyph. */
25932 for (g
= glyph
- 1; g
>= it
->glyph_row
->glyphs
[area
]; g
--)
25934 glyph
= it
->glyph_row
->glyphs
[area
];
25936 /* Decrease the width of the first glyph of the row that
25937 begins before first_visible_x (e.g., due to hscroll).
25938 This is so the overall width of the row becomes smaller
25939 by the scroll amount, and the stretch glyph appended by
25940 extend_face_to_end_of_line will be wider, to shift the
25941 row glyphs to the right. (In L2R rows, the corresponding
25942 left-shift effect is accomplished by setting row->x to a
25943 negative value, which won't work with R2L rows.)
25945 This must leave us with a positive value of WIDTH, since
25946 otherwise the call to move_it_in_display_line_to at the
25947 beginning of display_line would have got past the entire
25948 first glyph, and then it->current_x would have been
25949 greater or equal to it->first_visible_x. */
25950 if (it
->current_x
< it
->first_visible_x
)
25951 width
-= it
->first_visible_x
- it
->current_x
;
25952 eassert (width
> 0);
25954 glyph
->charpos
= CHARPOS (it
->position
);
25955 glyph
->object
= object
;
25956 glyph
->pixel_width
= width
;
25957 glyph
->ascent
= ascent
;
25958 glyph
->descent
= height
- ascent
;
25959 glyph
->voffset
= it
->voffset
;
25960 glyph
->type
= STRETCH_GLYPH
;
25961 glyph
->avoid_cursor_p
= it
->avoid_cursor_p
;
25962 glyph
->multibyte_p
= it
->multibyte_p
;
25963 if (it
->glyph_row
->reversed_p
&& area
== TEXT_AREA
)
25965 /* In R2L rows, the left and the right box edges need to be
25966 drawn in reverse direction. */
25967 glyph
->right_box_line_p
= it
->start_of_box_run_p
;
25968 glyph
->left_box_line_p
= it
->end_of_box_run_p
;
25972 glyph
->left_box_line_p
= it
->start_of_box_run_p
;
25973 glyph
->right_box_line_p
= it
->end_of_box_run_p
;
25975 glyph
->overlaps_vertically_p
= 0;
25976 glyph
->padding_p
= 0;
25977 glyph
->glyph_not_available_p
= 0;
25978 glyph
->face_id
= it
->face_id
;
25979 glyph
->u
.stretch
.ascent
= ascent
;
25980 glyph
->u
.stretch
.height
= height
;
25981 glyph
->slice
.img
= null_glyph_slice
;
25982 glyph
->font_type
= FONT_TYPE_UNKNOWN
;
25985 glyph
->resolved_level
= it
->bidi_it
.resolved_level
;
25986 eassert ((it
->bidi_it
.type
& 7) == it
->bidi_it
.type
);
25987 glyph
->bidi_type
= it
->bidi_it
.type
;
25991 glyph
->resolved_level
= 0;
25992 glyph
->bidi_type
= UNKNOWN_BT
;
25994 ++it
->glyph_row
->used
[area
];
25997 IT_EXPAND_MATRIX_WIDTH (it
, area
);
26000 #endif /* HAVE_WINDOW_SYSTEM */
26002 /* Produce a stretch glyph for iterator IT. IT->object is the value
26003 of the glyph property displayed. The value must be a list
26004 `(space KEYWORD VALUE ...)' with the following KEYWORD/VALUE pairs
26007 1. `:width WIDTH' specifies that the space should be WIDTH *
26008 canonical char width wide. WIDTH may be an integer or floating
26011 2. `:relative-width FACTOR' specifies that the width of the stretch
26012 should be computed from the width of the first character having the
26013 `glyph' property, and should be FACTOR times that width.
26015 3. `:align-to HPOS' specifies that the space should be wide enough
26016 to reach HPOS, a value in canonical character units.
26018 Exactly one of the above pairs must be present.
26020 4. `:height HEIGHT' specifies that the height of the stretch produced
26021 should be HEIGHT, measured in canonical character units.
26023 5. `:relative-height FACTOR' specifies that the height of the
26024 stretch should be FACTOR times the height of the characters having
26025 the glyph property.
26027 Either none or exactly one of 4 or 5 must be present.
26029 6. `:ascent ASCENT' specifies that ASCENT percent of the height
26030 of the stretch should be used for the ascent of the stretch.
26031 ASCENT must be in the range 0 <= ASCENT <= 100. */
26034 produce_stretch_glyph (struct it
*it
)
26036 /* (space :width WIDTH :height HEIGHT ...) */
26037 Lisp_Object prop
, plist
;
26038 int width
= 0, height
= 0, align_to
= -1;
26039 int zero_width_ok_p
= 0;
26041 struct font
*font
= NULL
;
26043 #ifdef HAVE_WINDOW_SYSTEM
26045 int zero_height_ok_p
= 0;
26047 if (FRAME_WINDOW_P (it
->f
))
26049 struct face
*face
= FACE_FROM_ID (it
->f
, it
->face_id
);
26050 font
= face
->font
? face
->font
: FRAME_FONT (it
->f
);
26051 prepare_face_for_display (it
->f
, face
);
26055 /* List should start with `space'. */
26056 eassert (CONSP (it
->object
) && EQ (XCAR (it
->object
), Qspace
));
26057 plist
= XCDR (it
->object
);
26059 /* Compute the width of the stretch. */
26060 if ((prop
= Fplist_get (plist
, QCwidth
), !NILP (prop
))
26061 && calc_pixel_width_or_height (&tem
, it
, prop
, font
, 1, 0))
26063 /* Absolute width `:width WIDTH' specified and valid. */
26064 zero_width_ok_p
= 1;
26067 #ifdef HAVE_WINDOW_SYSTEM
26068 else if (FRAME_WINDOW_P (it
->f
)
26069 && (prop
= Fplist_get (plist
, QCrelative_width
), NUMVAL (prop
) > 0))
26071 /* Relative width `:relative-width FACTOR' specified and valid.
26072 Compute the width of the characters having the `glyph'
26075 unsigned char *p
= BYTE_POS_ADDR (IT_BYTEPOS (*it
));
26078 if (it
->multibyte_p
)
26079 it2
.c
= it2
.char_to_display
= STRING_CHAR_AND_LENGTH (p
, it2
.len
);
26082 it2
.c
= it2
.char_to_display
= *p
, it2
.len
= 1;
26083 if (! ASCII_CHAR_P (it2
.c
))
26084 it2
.char_to_display
= BYTE8_TO_CHAR (it2
.c
);
26087 it2
.glyph_row
= NULL
;
26088 it2
.what
= IT_CHARACTER
;
26089 x_produce_glyphs (&it2
);
26090 width
= NUMVAL (prop
) * it2
.pixel_width
;
26092 #endif /* HAVE_WINDOW_SYSTEM */
26093 else if ((prop
= Fplist_get (plist
, QCalign_to
), !NILP (prop
))
26094 && calc_pixel_width_or_height (&tem
, it
, prop
, font
, 1, &align_to
))
26096 if (it
->glyph_row
== NULL
|| !it
->glyph_row
->mode_line_p
)
26097 align_to
= (align_to
< 0
26099 : align_to
- window_box_left_offset (it
->w
, TEXT_AREA
));
26100 else if (align_to
< 0)
26101 align_to
= window_box_left_offset (it
->w
, TEXT_AREA
);
26102 width
= max (0, (int)tem
+ align_to
- it
->current_x
);
26103 zero_width_ok_p
= 1;
26106 /* Nothing specified -> width defaults to canonical char width. */
26107 width
= FRAME_COLUMN_WIDTH (it
->f
);
26109 if (width
<= 0 && (width
< 0 || !zero_width_ok_p
))
26112 #ifdef HAVE_WINDOW_SYSTEM
26113 /* Compute height. */
26114 if (FRAME_WINDOW_P (it
->f
))
26116 if ((prop
= Fplist_get (plist
, QCheight
), !NILP (prop
))
26117 && calc_pixel_width_or_height (&tem
, it
, prop
, font
, 0, 0))
26120 zero_height_ok_p
= 1;
26122 else if (prop
= Fplist_get (plist
, QCrelative_height
),
26124 height
= FONT_HEIGHT (font
) * NUMVAL (prop
);
26126 height
= FONT_HEIGHT (font
);
26128 if (height
<= 0 && (height
< 0 || !zero_height_ok_p
))
26131 /* Compute percentage of height used for ascent. If
26132 `:ascent ASCENT' is present and valid, use that. Otherwise,
26133 derive the ascent from the font in use. */
26134 if (prop
= Fplist_get (plist
, QCascent
),
26135 NUMVAL (prop
) > 0 && NUMVAL (prop
) <= 100)
26136 ascent
= height
* NUMVAL (prop
) / 100.0;
26137 else if (!NILP (prop
)
26138 && calc_pixel_width_or_height (&tem
, it
, prop
, font
, 0, 0))
26139 ascent
= min (max (0, (int)tem
), height
);
26141 ascent
= (height
* FONT_BASE (font
)) / FONT_HEIGHT (font
);
26144 #endif /* HAVE_WINDOW_SYSTEM */
26147 if (width
> 0 && it
->line_wrap
!= TRUNCATE
26148 && it
->current_x
+ width
> it
->last_visible_x
)
26150 width
= it
->last_visible_x
- it
->current_x
;
26151 #ifdef HAVE_WINDOW_SYSTEM
26152 /* Subtract one more pixel from the stretch width, but only on
26153 GUI frames, since on a TTY each glyph is one "pixel" wide. */
26154 width
-= FRAME_WINDOW_P (it
->f
);
26158 if (width
> 0 && height
> 0 && it
->glyph_row
)
26160 Lisp_Object o_object
= it
->object
;
26161 Lisp_Object object
= it
->stack
[it
->sp
- 1].string
;
26164 if (!STRINGP (object
))
26165 object
= it
->w
->contents
;
26166 #ifdef HAVE_WINDOW_SYSTEM
26167 if (FRAME_WINDOW_P (it
->f
))
26168 append_stretch_glyph (it
, object
, width
, height
, ascent
);
26172 it
->object
= object
;
26173 it
->char_to_display
= ' ';
26174 it
->pixel_width
= it
->len
= 1;
26176 tty_append_glyph (it
);
26177 it
->object
= o_object
;
26181 it
->pixel_width
= width
;
26182 #ifdef HAVE_WINDOW_SYSTEM
26183 if (FRAME_WINDOW_P (it
->f
))
26185 it
->ascent
= it
->phys_ascent
= ascent
;
26186 it
->descent
= it
->phys_descent
= height
- it
->ascent
;
26187 it
->nglyphs
= width
> 0 && height
> 0 ? 1 : 0;
26188 take_vertical_position_into_account (it
);
26192 it
->nglyphs
= width
;
26195 /* Get information about special display element WHAT in an
26196 environment described by IT. WHAT is one of IT_TRUNCATION or
26197 IT_CONTINUATION. Maybe produce glyphs for WHAT if IT has a
26198 non-null glyph_row member. This function ensures that fields like
26199 face_id, c, len of IT are left untouched. */
26202 produce_special_glyphs (struct it
*it
, enum display_element_type what
)
26209 temp_it
.object
= Qnil
;
26210 memset (&temp_it
.current
, 0, sizeof temp_it
.current
);
26212 if (what
== IT_CONTINUATION
)
26214 /* Continuation glyph. For R2L lines, we mirror it by hand. */
26215 if (it
->bidi_it
.paragraph_dir
== R2L
)
26216 SET_GLYPH_FROM_CHAR (glyph
, '/');
26218 SET_GLYPH_FROM_CHAR (glyph
, '\\');
26220 && (gc
= DISP_CONTINUE_GLYPH (it
->dp
), GLYPH_CODE_P (gc
)))
26222 /* FIXME: Should we mirror GC for R2L lines? */
26223 SET_GLYPH_FROM_GLYPH_CODE (glyph
, gc
);
26224 spec_glyph_lookup_face (XWINDOW (it
->window
), &glyph
);
26227 else if (what
== IT_TRUNCATION
)
26229 /* Truncation glyph. */
26230 SET_GLYPH_FROM_CHAR (glyph
, '$');
26232 && (gc
= DISP_TRUNC_GLYPH (it
->dp
), GLYPH_CODE_P (gc
)))
26234 /* FIXME: Should we mirror GC for R2L lines? */
26235 SET_GLYPH_FROM_GLYPH_CODE (glyph
, gc
);
26236 spec_glyph_lookup_face (XWINDOW (it
->window
), &glyph
);
26242 #ifdef HAVE_WINDOW_SYSTEM
26243 /* On a GUI frame, when the right fringe (left fringe for R2L rows)
26244 is turned off, we precede the truncation/continuation glyphs by a
26245 stretch glyph whose width is computed such that these special
26246 glyphs are aligned at the window margin, even when very different
26247 fonts are used in different glyph rows. */
26248 if (FRAME_WINDOW_P (temp_it
.f
)
26249 /* init_iterator calls this with it->glyph_row == NULL, and it
26250 wants only the pixel width of the truncation/continuation
26252 && temp_it
.glyph_row
26253 /* insert_left_trunc_glyphs calls us at the beginning of the
26254 row, and it has its own calculation of the stretch glyph
26256 && temp_it
.glyph_row
->used
[TEXT_AREA
] > 0
26257 && (temp_it
.glyph_row
->reversed_p
26258 ? WINDOW_LEFT_FRINGE_WIDTH (temp_it
.w
)
26259 : WINDOW_RIGHT_FRINGE_WIDTH (temp_it
.w
)) == 0)
26261 int stretch_width
= temp_it
.last_visible_x
- temp_it
.current_x
;
26263 if (stretch_width
> 0)
26265 struct face
*face
= FACE_FROM_ID (temp_it
.f
, temp_it
.face_id
);
26266 struct font
*font
=
26267 face
->font
? face
->font
: FRAME_FONT (temp_it
.f
);
26268 int stretch_ascent
=
26269 (((temp_it
.ascent
+ temp_it
.descent
)
26270 * FONT_BASE (font
)) / FONT_HEIGHT (font
));
26272 append_stretch_glyph (&temp_it
, Qnil
, stretch_width
,
26273 temp_it
.ascent
+ temp_it
.descent
,
26280 temp_it
.what
= IT_CHARACTER
;
26281 temp_it
.c
= temp_it
.char_to_display
= GLYPH_CHAR (glyph
);
26282 temp_it
.face_id
= GLYPH_FACE (glyph
);
26283 temp_it
.len
= CHAR_BYTES (temp_it
.c
);
26285 PRODUCE_GLYPHS (&temp_it
);
26286 it
->pixel_width
= temp_it
.pixel_width
;
26287 it
->nglyphs
= temp_it
.nglyphs
;
26290 #ifdef HAVE_WINDOW_SYSTEM
26292 /* Calculate line-height and line-spacing properties.
26293 An integer value specifies explicit pixel value.
26294 A float value specifies relative value to current face height.
26295 A cons (float . face-name) specifies relative value to
26296 height of specified face font.
26298 Returns height in pixels, or nil. */
26302 calc_line_height_property (struct it
*it
, Lisp_Object val
, struct font
*font
,
26303 int boff
, int override
)
26305 Lisp_Object face_name
= Qnil
;
26306 int ascent
, descent
, height
;
26308 if (NILP (val
) || INTEGERP (val
) || (override
&& EQ (val
, Qt
)))
26313 face_name
= XCAR (val
);
26315 if (!NUMBERP (val
))
26316 val
= make_number (1);
26317 if (NILP (face_name
))
26319 height
= it
->ascent
+ it
->descent
;
26324 if (NILP (face_name
))
26326 font
= FRAME_FONT (it
->f
);
26327 boff
= FRAME_BASELINE_OFFSET (it
->f
);
26329 else if (EQ (face_name
, Qt
))
26338 face_id
= lookup_named_face (it
->f
, face_name
, 0);
26340 return make_number (-1);
26342 face
= FACE_FROM_ID (it
->f
, face_id
);
26345 return make_number (-1);
26346 boff
= font
->baseline_offset
;
26347 if (font
->vertical_centering
)
26348 boff
= VCENTER_BASELINE_OFFSET (font
, it
->f
) - boff
;
26351 ascent
= FONT_BASE (font
) + boff
;
26352 descent
= FONT_DESCENT (font
) - boff
;
26356 it
->override_ascent
= ascent
;
26357 it
->override_descent
= descent
;
26358 it
->override_boff
= boff
;
26361 height
= ascent
+ descent
;
26365 height
= (int)(XFLOAT_DATA (val
) * height
);
26366 else if (INTEGERP (val
))
26367 height
*= XINT (val
);
26369 return make_number (height
);
26373 /* Append a glyph for a glyphless character to IT->glyph_row. FACE_ID
26374 is a face ID to be used for the glyph. FOR_NO_FONT is nonzero if
26375 and only if this is for a character for which no font was found.
26377 If the display method (it->glyphless_method) is
26378 GLYPHLESS_DISPLAY_ACRONYM or GLYPHLESS_DISPLAY_HEX_CODE, LEN is a
26379 length of the acronym or the hexadecimal string, UPPER_XOFF and
26380 UPPER_YOFF are pixel offsets for the upper part of the string,
26381 LOWER_XOFF and LOWER_YOFF are for the lower part.
26383 For the other display methods, LEN through LOWER_YOFF are zero. */
26386 append_glyphless_glyph (struct it
*it
, int face_id
, int for_no_font
, int len
,
26387 short upper_xoff
, short upper_yoff
,
26388 short lower_xoff
, short lower_yoff
)
26390 struct glyph
*glyph
;
26391 enum glyph_row_area area
= it
->area
;
26393 glyph
= it
->glyph_row
->glyphs
[area
] + it
->glyph_row
->used
[area
];
26394 if (glyph
< it
->glyph_row
->glyphs
[area
+ 1])
26396 /* If the glyph row is reversed, we need to prepend the glyph
26397 rather than append it. */
26398 if (it
->glyph_row
->reversed_p
&& area
== TEXT_AREA
)
26402 /* Make room for the additional glyph. */
26403 for (g
= glyph
- 1; g
>= it
->glyph_row
->glyphs
[area
]; g
--)
26405 glyph
= it
->glyph_row
->glyphs
[area
];
26407 glyph
->charpos
= CHARPOS (it
->position
);
26408 glyph
->object
= it
->object
;
26409 glyph
->pixel_width
= it
->pixel_width
;
26410 glyph
->ascent
= it
->ascent
;
26411 glyph
->descent
= it
->descent
;
26412 glyph
->voffset
= it
->voffset
;
26413 glyph
->type
= GLYPHLESS_GLYPH
;
26414 glyph
->u
.glyphless
.method
= it
->glyphless_method
;
26415 glyph
->u
.glyphless
.for_no_font
= for_no_font
;
26416 glyph
->u
.glyphless
.len
= len
;
26417 glyph
->u
.glyphless
.ch
= it
->c
;
26418 glyph
->slice
.glyphless
.upper_xoff
= upper_xoff
;
26419 glyph
->slice
.glyphless
.upper_yoff
= upper_yoff
;
26420 glyph
->slice
.glyphless
.lower_xoff
= lower_xoff
;
26421 glyph
->slice
.glyphless
.lower_yoff
= lower_yoff
;
26422 glyph
->avoid_cursor_p
= it
->avoid_cursor_p
;
26423 glyph
->multibyte_p
= it
->multibyte_p
;
26424 if (it
->glyph_row
->reversed_p
&& area
== TEXT_AREA
)
26426 /* In R2L rows, the left and the right box edges need to be
26427 drawn in reverse direction. */
26428 glyph
->right_box_line_p
= it
->start_of_box_run_p
;
26429 glyph
->left_box_line_p
= it
->end_of_box_run_p
;
26433 glyph
->left_box_line_p
= it
->start_of_box_run_p
;
26434 glyph
->right_box_line_p
= it
->end_of_box_run_p
;
26436 glyph
->overlaps_vertically_p
= (it
->phys_ascent
> it
->ascent
26437 || it
->phys_descent
> it
->descent
);
26438 glyph
->padding_p
= 0;
26439 glyph
->glyph_not_available_p
= 0;
26440 glyph
->face_id
= face_id
;
26441 glyph
->font_type
= FONT_TYPE_UNKNOWN
;
26444 glyph
->resolved_level
= it
->bidi_it
.resolved_level
;
26445 eassert ((it
->bidi_it
.type
& 7) == it
->bidi_it
.type
);
26446 glyph
->bidi_type
= it
->bidi_it
.type
;
26448 ++it
->glyph_row
->used
[area
];
26451 IT_EXPAND_MATRIX_WIDTH (it
, area
);
26455 /* Produce a glyph for a glyphless character for iterator IT.
26456 IT->glyphless_method specifies which method to use for displaying
26457 the character. See the description of enum
26458 glyphless_display_method in dispextern.h for the detail.
26460 FOR_NO_FONT is nonzero if and only if this is for a character for
26461 which no font was found. ACRONYM, if non-nil, is an acronym string
26462 for the character. */
26465 produce_glyphless_glyph (struct it
*it
, int for_no_font
, Lisp_Object acronym
)
26470 int base_width
, base_height
, width
, height
;
26471 short upper_xoff
, upper_yoff
, lower_xoff
, lower_yoff
;
26474 /* Get the metrics of the base font. We always refer to the current
26476 face
= FACE_FROM_ID (it
->f
, it
->face_id
)->ascii_face
;
26477 font
= face
->font
? face
->font
: FRAME_FONT (it
->f
);
26478 it
->ascent
= FONT_BASE (font
) + font
->baseline_offset
;
26479 it
->descent
= FONT_DESCENT (font
) - font
->baseline_offset
;
26480 base_height
= it
->ascent
+ it
->descent
;
26481 base_width
= font
->average_width
;
26483 face_id
= merge_glyphless_glyph_face (it
);
26485 if (it
->glyphless_method
== GLYPHLESS_DISPLAY_THIN_SPACE
)
26487 it
->pixel_width
= THIN_SPACE_WIDTH
;
26489 upper_xoff
= upper_yoff
= lower_xoff
= lower_yoff
= 0;
26491 else if (it
->glyphless_method
== GLYPHLESS_DISPLAY_EMPTY_BOX
)
26493 width
= CHAR_WIDTH (it
->c
);
26496 else if (width
> 4)
26498 it
->pixel_width
= base_width
* width
;
26500 upper_xoff
= upper_yoff
= lower_xoff
= lower_yoff
= 0;
26506 unsigned int code
[6];
26508 int ascent
, descent
;
26509 struct font_metrics metrics_upper
, metrics_lower
;
26511 face
= FACE_FROM_ID (it
->f
, face_id
);
26512 font
= face
->font
? face
->font
: FRAME_FONT (it
->f
);
26513 prepare_face_for_display (it
->f
, face
);
26515 if (it
->glyphless_method
== GLYPHLESS_DISPLAY_ACRONYM
)
26517 if (! STRINGP (acronym
) && CHAR_TABLE_P (Vglyphless_char_display
))
26518 acronym
= CHAR_TABLE_REF (Vglyphless_char_display
, it
->c
);
26519 if (CONSP (acronym
))
26520 acronym
= XCAR (acronym
);
26521 str
= STRINGP (acronym
) ? SSDATA (acronym
) : "";
26525 eassert (it
->glyphless_method
== GLYPHLESS_DISPLAY_HEX_CODE
);
26526 sprintf (buf
, "%0*X", it
->c
< 0x10000 ? 4 : 6, it
->c
);
26529 for (len
= 0; str
[len
] && ASCII_CHAR_P (str
[len
]) && len
< 6; len
++)
26530 code
[len
] = font
->driver
->encode_char (font
, str
[len
]);
26531 upper_len
= (len
+ 1) / 2;
26532 font
->driver
->text_extents (font
, code
, upper_len
,
26534 font
->driver
->text_extents (font
, code
+ upper_len
, len
- upper_len
,
26539 /* +4 is for vertical bars of a box plus 1-pixel spaces at both side. */
26540 width
= max (metrics_upper
.width
, metrics_lower
.width
) + 4;
26541 upper_xoff
= upper_yoff
= 2; /* the typical case */
26542 if (base_width
>= width
)
26544 /* Align the upper to the left, the lower to the right. */
26545 it
->pixel_width
= base_width
;
26546 lower_xoff
= base_width
- 2 - metrics_lower
.width
;
26550 /* Center the shorter one. */
26551 it
->pixel_width
= width
;
26552 if (metrics_upper
.width
>= metrics_lower
.width
)
26553 lower_xoff
= (width
- metrics_lower
.width
) / 2;
26556 /* FIXME: This code doesn't look right. It formerly was
26557 missing the "lower_xoff = 0;", which couldn't have
26558 been right since it left lower_xoff uninitialized. */
26560 upper_xoff
= (width
- metrics_upper
.width
) / 2;
26564 /* +5 is for horizontal bars of a box plus 1-pixel spaces at
26565 top, bottom, and between upper and lower strings. */
26566 height
= (metrics_upper
.ascent
+ metrics_upper
.descent
26567 + metrics_lower
.ascent
+ metrics_lower
.descent
) + 5;
26568 /* Center vertically.
26569 H:base_height, D:base_descent
26570 h:height, ld:lower_descent, la:lower_ascent, ud:upper_descent
26572 ascent = - (D - H/2 - h/2 + 1); "+ 1" for rounding up
26573 descent = D - H/2 + h/2;
26574 lower_yoff = descent - 2 - ld;
26575 upper_yoff = lower_yoff - la - 1 - ud; */
26576 ascent
= - (it
->descent
- (base_height
+ height
+ 1) / 2);
26577 descent
= it
->descent
- (base_height
- height
) / 2;
26578 lower_yoff
= descent
- 2 - metrics_lower
.descent
;
26579 upper_yoff
= (lower_yoff
- metrics_lower
.ascent
- 1
26580 - metrics_upper
.descent
);
26581 /* Don't make the height shorter than the base height. */
26582 if (height
> base_height
)
26584 it
->ascent
= ascent
;
26585 it
->descent
= descent
;
26589 it
->phys_ascent
= it
->ascent
;
26590 it
->phys_descent
= it
->descent
;
26592 append_glyphless_glyph (it
, face_id
, for_no_font
, len
,
26593 upper_xoff
, upper_yoff
,
26594 lower_xoff
, lower_yoff
);
26596 take_vertical_position_into_account (it
);
26601 Produce glyphs/get display metrics for the display element IT is
26602 loaded with. See the description of struct it in dispextern.h
26603 for an overview of struct it. */
26606 x_produce_glyphs (struct it
*it
)
26608 int extra_line_spacing
= it
->extra_line_spacing
;
26610 it
->glyph_not_available_p
= 0;
26612 if (it
->what
== IT_CHARACTER
)
26615 struct face
*face
= FACE_FROM_ID (it
->f
, it
->face_id
);
26616 struct font
*font
= face
->font
;
26617 struct font_metrics
*pcm
= NULL
;
26618 int boff
; /* Baseline offset. */
26622 /* When no suitable font is found, display this character by
26623 the method specified in the first extra slot of
26624 Vglyphless_char_display. */
26625 Lisp_Object acronym
= lookup_glyphless_char_display (-1, it
);
26627 eassert (it
->what
== IT_GLYPHLESS
);
26628 produce_glyphless_glyph (it
, 1, STRINGP (acronym
) ? acronym
: Qnil
);
26632 boff
= font
->baseline_offset
;
26633 if (font
->vertical_centering
)
26634 boff
= VCENTER_BASELINE_OFFSET (font
, it
->f
) - boff
;
26636 if (it
->char_to_display
!= '\n' && it
->char_to_display
!= '\t')
26642 if (it
->override_ascent
>= 0)
26644 it
->ascent
= it
->override_ascent
;
26645 it
->descent
= it
->override_descent
;
26646 boff
= it
->override_boff
;
26650 it
->ascent
= FONT_BASE (font
) + boff
;
26651 it
->descent
= FONT_DESCENT (font
) - boff
;
26654 if (get_char_glyph_code (it
->char_to_display
, font
, &char2b
))
26656 pcm
= get_per_char_metric (font
, &char2b
);
26657 if (pcm
->width
== 0
26658 && pcm
->rbearing
== 0 && pcm
->lbearing
== 0)
26664 it
->phys_ascent
= pcm
->ascent
+ boff
;
26665 it
->phys_descent
= pcm
->descent
- boff
;
26666 it
->pixel_width
= pcm
->width
;
26670 it
->glyph_not_available_p
= 1;
26671 it
->phys_ascent
= it
->ascent
;
26672 it
->phys_descent
= it
->descent
;
26673 it
->pixel_width
= font
->space_width
;
26676 if (it
->constrain_row_ascent_descent_p
)
26678 if (it
->descent
> it
->max_descent
)
26680 it
->ascent
+= it
->descent
- it
->max_descent
;
26681 it
->descent
= it
->max_descent
;
26683 if (it
->ascent
> it
->max_ascent
)
26685 it
->descent
= min (it
->max_descent
, it
->descent
+ it
->ascent
- it
->max_ascent
);
26686 it
->ascent
= it
->max_ascent
;
26688 it
->phys_ascent
= min (it
->phys_ascent
, it
->ascent
);
26689 it
->phys_descent
= min (it
->phys_descent
, it
->descent
);
26690 extra_line_spacing
= 0;
26693 /* If this is a space inside a region of text with
26694 `space-width' property, change its width. */
26695 stretched_p
= it
->char_to_display
== ' ' && !NILP (it
->space_width
);
26697 it
->pixel_width
*= XFLOATINT (it
->space_width
);
26699 /* If face has a box, add the box thickness to the character
26700 height. If character has a box line to the left and/or
26701 right, add the box line width to the character's width. */
26702 if (face
->box
!= FACE_NO_BOX
)
26704 int thick
= face
->box_line_width
;
26708 it
->ascent
+= thick
;
26709 it
->descent
+= thick
;
26714 if (it
->start_of_box_run_p
)
26715 it
->pixel_width
+= thick
;
26716 if (it
->end_of_box_run_p
)
26717 it
->pixel_width
+= thick
;
26720 /* If face has an overline, add the height of the overline
26721 (1 pixel) and a 1 pixel margin to the character height. */
26722 if (face
->overline_p
)
26723 it
->ascent
+= overline_margin
;
26725 if (it
->constrain_row_ascent_descent_p
)
26727 if (it
->ascent
> it
->max_ascent
)
26728 it
->ascent
= it
->max_ascent
;
26729 if (it
->descent
> it
->max_descent
)
26730 it
->descent
= it
->max_descent
;
26733 take_vertical_position_into_account (it
);
26735 /* If we have to actually produce glyphs, do it. */
26740 /* Translate a space with a `space-width' property
26741 into a stretch glyph. */
26742 int ascent
= (((it
->ascent
+ it
->descent
) * FONT_BASE (font
))
26743 / FONT_HEIGHT (font
));
26744 append_stretch_glyph (it
, it
->object
, it
->pixel_width
,
26745 it
->ascent
+ it
->descent
, ascent
);
26750 /* If characters with lbearing or rbearing are displayed
26751 in this line, record that fact in a flag of the
26752 glyph row. This is used to optimize X output code. */
26753 if (pcm
&& (pcm
->lbearing
< 0 || pcm
->rbearing
> pcm
->width
))
26754 it
->glyph_row
->contains_overlapping_glyphs_p
= 1;
26756 if (! stretched_p
&& it
->pixel_width
== 0)
26757 /* We assure that all visible glyphs have at least 1-pixel
26759 it
->pixel_width
= 1;
26761 else if (it
->char_to_display
== '\n')
26763 /* A newline has no width, but we need the height of the
26764 line. But if previous part of the line sets a height,
26765 don't increase that height. */
26767 Lisp_Object height
;
26768 Lisp_Object total_height
= Qnil
;
26770 it
->override_ascent
= -1;
26771 it
->pixel_width
= 0;
26774 height
= get_it_property (it
, Qline_height
);
26775 /* Split (line-height total-height) list. */
26777 && CONSP (XCDR (height
))
26778 && NILP (XCDR (XCDR (height
))))
26780 total_height
= XCAR (XCDR (height
));
26781 height
= XCAR (height
);
26783 height
= calc_line_height_property (it
, height
, font
, boff
, 1);
26785 if (it
->override_ascent
>= 0)
26787 it
->ascent
= it
->override_ascent
;
26788 it
->descent
= it
->override_descent
;
26789 boff
= it
->override_boff
;
26793 it
->ascent
= FONT_BASE (font
) + boff
;
26794 it
->descent
= FONT_DESCENT (font
) - boff
;
26797 if (EQ (height
, Qt
))
26799 if (it
->descent
> it
->max_descent
)
26801 it
->ascent
+= it
->descent
- it
->max_descent
;
26802 it
->descent
= it
->max_descent
;
26804 if (it
->ascent
> it
->max_ascent
)
26806 it
->descent
= min (it
->max_descent
, it
->descent
+ it
->ascent
- it
->max_ascent
);
26807 it
->ascent
= it
->max_ascent
;
26809 it
->phys_ascent
= min (it
->phys_ascent
, it
->ascent
);
26810 it
->phys_descent
= min (it
->phys_descent
, it
->descent
);
26811 it
->constrain_row_ascent_descent_p
= 1;
26812 extra_line_spacing
= 0;
26816 Lisp_Object spacing
;
26818 it
->phys_ascent
= it
->ascent
;
26819 it
->phys_descent
= it
->descent
;
26821 if ((it
->max_ascent
> 0 || it
->max_descent
> 0)
26822 && face
->box
!= FACE_NO_BOX
26823 && face
->box_line_width
> 0)
26825 it
->ascent
+= face
->box_line_width
;
26826 it
->descent
+= face
->box_line_width
;
26829 && XINT (height
) > it
->ascent
+ it
->descent
)
26830 it
->ascent
= XINT (height
) - it
->descent
;
26832 if (!NILP (total_height
))
26833 spacing
= calc_line_height_property (it
, total_height
, font
, boff
, 0);
26836 spacing
= get_it_property (it
, Qline_spacing
);
26837 spacing
= calc_line_height_property (it
, spacing
, font
, boff
, 0);
26839 if (INTEGERP (spacing
))
26841 extra_line_spacing
= XINT (spacing
);
26842 if (!NILP (total_height
))
26843 extra_line_spacing
-= (it
->phys_ascent
+ it
->phys_descent
);
26847 else /* i.e. (it->char_to_display == '\t') */
26849 if (font
->space_width
> 0)
26851 int tab_width
= it
->tab_width
* font
->space_width
;
26852 int x
= it
->current_x
+ it
->continuation_lines_width
;
26853 int next_tab_x
= ((1 + x
+ tab_width
- 1) / tab_width
) * tab_width
;
26855 /* If the distance from the current position to the next tab
26856 stop is less than a space character width, use the
26857 tab stop after that. */
26858 if (next_tab_x
- x
< font
->space_width
)
26859 next_tab_x
+= tab_width
;
26861 it
->pixel_width
= next_tab_x
- x
;
26863 it
->ascent
= it
->phys_ascent
= FONT_BASE (font
) + boff
;
26864 it
->descent
= it
->phys_descent
= FONT_DESCENT (font
) - boff
;
26868 append_stretch_glyph (it
, it
->object
, it
->pixel_width
,
26869 it
->ascent
+ it
->descent
, it
->ascent
);
26874 it
->pixel_width
= 0;
26879 else if (it
->what
== IT_COMPOSITION
&& it
->cmp_it
.ch
< 0)
26881 /* A static composition.
26883 Note: A composition is represented as one glyph in the
26884 glyph matrix. There are no padding glyphs.
26886 Important note: pixel_width, ascent, and descent are the
26887 values of what is drawn by draw_glyphs (i.e. the values of
26888 the overall glyphs composed). */
26889 struct face
*face
= FACE_FROM_ID (it
->f
, it
->face_id
);
26890 int boff
; /* baseline offset */
26891 struct composition
*cmp
= composition_table
[it
->cmp_it
.id
];
26892 int glyph_len
= cmp
->glyph_len
;
26893 struct font
*font
= face
->font
;
26897 /* If we have not yet calculated pixel size data of glyphs of
26898 the composition for the current face font, calculate them
26899 now. Theoretically, we have to check all fonts for the
26900 glyphs, but that requires much time and memory space. So,
26901 here we check only the font of the first glyph. This may
26902 lead to incorrect display, but it's very rare, and C-l
26903 (recenter-top-bottom) can correct the display anyway. */
26904 if (! cmp
->font
|| cmp
->font
!= font
)
26906 /* Ascent and descent of the font of the first character
26907 of this composition (adjusted by baseline offset).
26908 Ascent and descent of overall glyphs should not be less
26909 than these, respectively. */
26910 int font_ascent
, font_descent
, font_height
;
26911 /* Bounding box of the overall glyphs. */
26912 int leftmost
, rightmost
, lowest
, highest
;
26913 int lbearing
, rbearing
;
26914 int i
, width
, ascent
, descent
;
26915 int left_padded
= 0, right_padded
= 0;
26916 int c
IF_LINT (= 0); /* cmp->glyph_len can't be zero; see Bug#8512 */
26918 struct font_metrics
*pcm
;
26919 int font_not_found_p
;
26922 for (glyph_len
= cmp
->glyph_len
; glyph_len
> 0; glyph_len
--)
26923 if ((c
= COMPOSITION_GLYPH (cmp
, glyph_len
- 1)) != '\t')
26925 if (glyph_len
< cmp
->glyph_len
)
26927 for (i
= 0; i
< glyph_len
; i
++)
26929 if ((c
= COMPOSITION_GLYPH (cmp
, i
)) != '\t')
26931 cmp
->offsets
[i
* 2] = cmp
->offsets
[i
* 2 + 1] = 0;
26936 pos
= (STRINGP (it
->string
) ? IT_STRING_CHARPOS (*it
)
26937 : IT_CHARPOS (*it
));
26938 /* If no suitable font is found, use the default font. */
26939 font_not_found_p
= font
== NULL
;
26940 if (font_not_found_p
)
26942 face
= face
->ascii_face
;
26945 boff
= font
->baseline_offset
;
26946 if (font
->vertical_centering
)
26947 boff
= VCENTER_BASELINE_OFFSET (font
, it
->f
) - boff
;
26948 font_ascent
= FONT_BASE (font
) + boff
;
26949 font_descent
= FONT_DESCENT (font
) - boff
;
26950 font_height
= FONT_HEIGHT (font
);
26955 if (! font_not_found_p
)
26957 get_char_face_and_encoding (it
->f
, c
, it
->face_id
,
26959 pcm
= get_per_char_metric (font
, &char2b
);
26962 /* Initialize the bounding box. */
26965 width
= cmp
->glyph_len
> 0 ? pcm
->width
: 0;
26966 ascent
= pcm
->ascent
;
26967 descent
= pcm
->descent
;
26968 lbearing
= pcm
->lbearing
;
26969 rbearing
= pcm
->rbearing
;
26973 width
= cmp
->glyph_len
> 0 ? font
->space_width
: 0;
26974 ascent
= FONT_BASE (font
);
26975 descent
= FONT_DESCENT (font
);
26982 lowest
= - descent
+ boff
;
26983 highest
= ascent
+ boff
;
26985 if (! font_not_found_p
26986 && font
->default_ascent
26987 && CHAR_TABLE_P (Vuse_default_ascent
)
26988 && !NILP (Faref (Vuse_default_ascent
,
26989 make_number (it
->char_to_display
))))
26990 highest
= font
->default_ascent
+ boff
;
26992 /* Draw the first glyph at the normal position. It may be
26993 shifted to right later if some other glyphs are drawn
26995 cmp
->offsets
[i
* 2] = 0;
26996 cmp
->offsets
[i
* 2 + 1] = boff
;
26997 cmp
->lbearing
= lbearing
;
26998 cmp
->rbearing
= rbearing
;
27000 /* Set cmp->offsets for the remaining glyphs. */
27001 for (i
++; i
< glyph_len
; i
++)
27003 int left
, right
, btm
, top
;
27004 int ch
= COMPOSITION_GLYPH (cmp
, i
);
27006 struct face
*this_face
;
27010 face_id
= FACE_FOR_CHAR (it
->f
, face
, ch
, pos
, it
->string
);
27011 this_face
= FACE_FROM_ID (it
->f
, face_id
);
27012 font
= this_face
->font
;
27018 get_char_face_and_encoding (it
->f
, ch
, face_id
,
27020 pcm
= get_per_char_metric (font
, &char2b
);
27023 cmp
->offsets
[i
* 2] = cmp
->offsets
[i
* 2 + 1] = 0;
27026 width
= pcm
->width
;
27027 ascent
= pcm
->ascent
;
27028 descent
= pcm
->descent
;
27029 lbearing
= pcm
->lbearing
;
27030 rbearing
= pcm
->rbearing
;
27031 if (cmp
->method
!= COMPOSITION_WITH_RULE_ALTCHARS
)
27033 /* Relative composition with or without
27034 alternate chars. */
27035 left
= (leftmost
+ rightmost
- width
) / 2;
27036 btm
= - descent
+ boff
;
27037 if (font
->relative_compose
27038 && (! CHAR_TABLE_P (Vignore_relative_composition
)
27039 || NILP (Faref (Vignore_relative_composition
,
27040 make_number (ch
)))))
27043 if (- descent
>= font
->relative_compose
)
27044 /* One extra pixel between two glyphs. */
27046 else if (ascent
<= 0)
27047 /* One extra pixel between two glyphs. */
27048 btm
= lowest
- 1 - ascent
- descent
;
27053 /* A composition rule is specified by an integer
27054 value that encodes global and new reference
27055 points (GREF and NREF). GREF and NREF are
27056 specified by numbers as below:
27058 0---1---2 -- ascent
27062 9--10--11 -- center
27064 ---3---4---5--- baseline
27066 6---7---8 -- descent
27068 int rule
= COMPOSITION_RULE (cmp
, i
);
27069 int gref
, nref
, grefx
, grefy
, nrefx
, nrefy
, xoff
, yoff
;
27071 COMPOSITION_DECODE_RULE (rule
, gref
, nref
, xoff
, yoff
);
27072 grefx
= gref
% 3, nrefx
= nref
% 3;
27073 grefy
= gref
/ 3, nrefy
= nref
/ 3;
27075 xoff
= font_height
* (xoff
- 128) / 256;
27077 yoff
= font_height
* (yoff
- 128) / 256;
27080 + grefx
* (rightmost
- leftmost
) / 2
27081 - nrefx
* width
/ 2
27084 btm
= ((grefy
== 0 ? highest
27086 : grefy
== 2 ? lowest
27087 : (highest
+ lowest
) / 2)
27088 - (nrefy
== 0 ? ascent
+ descent
27089 : nrefy
== 1 ? descent
- boff
27091 : (ascent
+ descent
) / 2)
27095 cmp
->offsets
[i
* 2] = left
;
27096 cmp
->offsets
[i
* 2 + 1] = btm
+ descent
;
27098 /* Update the bounding box of the overall glyphs. */
27101 right
= left
+ width
;
27102 if (left
< leftmost
)
27104 if (right
> rightmost
)
27107 top
= btm
+ descent
+ ascent
;
27113 if (cmp
->lbearing
> left
+ lbearing
)
27114 cmp
->lbearing
= left
+ lbearing
;
27115 if (cmp
->rbearing
< left
+ rbearing
)
27116 cmp
->rbearing
= left
+ rbearing
;
27120 /* If there are glyphs whose x-offsets are negative,
27121 shift all glyphs to the right and make all x-offsets
27125 for (i
= 0; i
< cmp
->glyph_len
; i
++)
27126 cmp
->offsets
[i
* 2] -= leftmost
;
27127 rightmost
-= leftmost
;
27128 cmp
->lbearing
-= leftmost
;
27129 cmp
->rbearing
-= leftmost
;
27132 if (left_padded
&& cmp
->lbearing
< 0)
27134 for (i
= 0; i
< cmp
->glyph_len
; i
++)
27135 cmp
->offsets
[i
* 2] -= cmp
->lbearing
;
27136 rightmost
-= cmp
->lbearing
;
27137 cmp
->rbearing
-= cmp
->lbearing
;
27140 if (right_padded
&& rightmost
< cmp
->rbearing
)
27142 rightmost
= cmp
->rbearing
;
27145 cmp
->pixel_width
= rightmost
;
27146 cmp
->ascent
= highest
;
27147 cmp
->descent
= - lowest
;
27148 if (cmp
->ascent
< font_ascent
)
27149 cmp
->ascent
= font_ascent
;
27150 if (cmp
->descent
< font_descent
)
27151 cmp
->descent
= font_descent
;
27155 && (cmp
->lbearing
< 0
27156 || cmp
->rbearing
> cmp
->pixel_width
))
27157 it
->glyph_row
->contains_overlapping_glyphs_p
= 1;
27159 it
->pixel_width
= cmp
->pixel_width
;
27160 it
->ascent
= it
->phys_ascent
= cmp
->ascent
;
27161 it
->descent
= it
->phys_descent
= cmp
->descent
;
27162 if (face
->box
!= FACE_NO_BOX
)
27164 int thick
= face
->box_line_width
;
27168 it
->ascent
+= thick
;
27169 it
->descent
+= thick
;
27174 if (it
->start_of_box_run_p
)
27175 it
->pixel_width
+= thick
;
27176 if (it
->end_of_box_run_p
)
27177 it
->pixel_width
+= thick
;
27180 /* If face has an overline, add the height of the overline
27181 (1 pixel) and a 1 pixel margin to the character height. */
27182 if (face
->overline_p
)
27183 it
->ascent
+= overline_margin
;
27185 take_vertical_position_into_account (it
);
27186 if (it
->ascent
< 0)
27188 if (it
->descent
< 0)
27191 if (it
->glyph_row
&& cmp
->glyph_len
> 0)
27192 append_composite_glyph (it
);
27194 else if (it
->what
== IT_COMPOSITION
)
27196 /* A dynamic (automatic) composition. */
27197 struct face
*face
= FACE_FROM_ID (it
->f
, it
->face_id
);
27198 Lisp_Object gstring
;
27199 struct font_metrics metrics
;
27203 gstring
= composition_gstring_from_id (it
->cmp_it
.id
);
27205 = composition_gstring_width (gstring
, it
->cmp_it
.from
, it
->cmp_it
.to
,
27208 && (metrics
.lbearing
< 0 || metrics
.rbearing
> metrics
.width
))
27209 it
->glyph_row
->contains_overlapping_glyphs_p
= 1;
27210 it
->ascent
= it
->phys_ascent
= metrics
.ascent
;
27211 it
->descent
= it
->phys_descent
= metrics
.descent
;
27212 if (face
->box
!= FACE_NO_BOX
)
27214 int thick
= face
->box_line_width
;
27218 it
->ascent
+= thick
;
27219 it
->descent
+= thick
;
27224 if (it
->start_of_box_run_p
)
27225 it
->pixel_width
+= thick
;
27226 if (it
->end_of_box_run_p
)
27227 it
->pixel_width
+= thick
;
27229 /* If face has an overline, add the height of the overline
27230 (1 pixel) and a 1 pixel margin to the character height. */
27231 if (face
->overline_p
)
27232 it
->ascent
+= overline_margin
;
27233 take_vertical_position_into_account (it
);
27234 if (it
->ascent
< 0)
27236 if (it
->descent
< 0)
27240 append_composite_glyph (it
);
27242 else if (it
->what
== IT_GLYPHLESS
)
27243 produce_glyphless_glyph (it
, 0, Qnil
);
27244 else if (it
->what
== IT_IMAGE
)
27245 produce_image_glyph (it
);
27246 else if (it
->what
== IT_STRETCH
)
27247 produce_stretch_glyph (it
);
27248 #ifdef HAVE_XWIDGETS
27249 else if (it
->what
== IT_XWIDGET
)
27250 produce_xwidget_glyph (it
);
27254 /* Accumulate dimensions. Note: can't assume that it->descent > 0
27255 because this isn't true for images with `:ascent 100'. */
27256 eassert (it
->ascent
>= 0 && it
->descent
>= 0);
27257 if (it
->area
== TEXT_AREA
)
27258 it
->current_x
+= it
->pixel_width
;
27260 if (extra_line_spacing
> 0)
27262 it
->descent
+= extra_line_spacing
;
27263 if (extra_line_spacing
> it
->max_extra_line_spacing
)
27264 it
->max_extra_line_spacing
= extra_line_spacing
;
27267 it
->max_ascent
= max (it
->max_ascent
, it
->ascent
);
27268 it
->max_descent
= max (it
->max_descent
, it
->descent
);
27269 it
->max_phys_ascent
= max (it
->max_phys_ascent
, it
->phys_ascent
);
27270 it
->max_phys_descent
= max (it
->max_phys_descent
, it
->phys_descent
);
27274 Output LEN glyphs starting at START at the nominal cursor position.
27275 Advance the nominal cursor over the text. UPDATED_ROW is the glyph row
27276 being updated, and UPDATED_AREA is the area of that row being updated. */
27279 x_write_glyphs (struct window
*w
, struct glyph_row
*updated_row
,
27280 struct glyph
*start
, enum glyph_row_area updated_area
, int len
)
27282 int x
, hpos
, chpos
= w
->phys_cursor
.hpos
;
27284 eassert (updated_row
);
27285 /* When the window is hscrolled, cursor hpos can legitimately be out
27286 of bounds, but we draw the cursor at the corresponding window
27287 margin in that case. */
27288 if (!updated_row
->reversed_p
&& chpos
< 0)
27290 if (updated_row
->reversed_p
&& chpos
>= updated_row
->used
[TEXT_AREA
])
27291 chpos
= updated_row
->used
[TEXT_AREA
] - 1;
27295 /* Write glyphs. */
27297 hpos
= start
- updated_row
->glyphs
[updated_area
];
27298 x
= draw_glyphs (w
, w
->output_cursor
.x
,
27299 updated_row
, updated_area
,
27301 DRAW_NORMAL_TEXT
, 0);
27303 /* Invalidate old phys cursor if the glyph at its hpos is redrawn. */
27304 if (updated_area
== TEXT_AREA
27305 && w
->phys_cursor_on_p
27306 && w
->phys_cursor
.vpos
== w
->output_cursor
.vpos
27308 && chpos
< hpos
+ len
)
27309 w
->phys_cursor_on_p
= 0;
27313 /* Advance the output cursor. */
27314 w
->output_cursor
.hpos
+= len
;
27315 w
->output_cursor
.x
= x
;
27320 Insert LEN glyphs from START at the nominal cursor position. */
27323 x_insert_glyphs (struct window
*w
, struct glyph_row
*updated_row
,
27324 struct glyph
*start
, enum glyph_row_area updated_area
, int len
)
27327 int line_height
, shift_by_width
, shifted_region_width
;
27328 struct glyph_row
*row
;
27329 struct glyph
*glyph
;
27330 int frame_x
, frame_y
;
27333 eassert (updated_row
);
27335 f
= XFRAME (WINDOW_FRAME (w
));
27337 /* Get the height of the line we are in. */
27339 line_height
= row
->height
;
27341 /* Get the width of the glyphs to insert. */
27342 shift_by_width
= 0;
27343 for (glyph
= start
; glyph
< start
+ len
; ++glyph
)
27344 shift_by_width
+= glyph
->pixel_width
;
27346 /* Get the width of the region to shift right. */
27347 shifted_region_width
= (window_box_width (w
, updated_area
)
27348 - w
->output_cursor
.x
27352 frame_x
= window_box_left (w
, updated_area
) + w
->output_cursor
.x
;
27353 frame_y
= WINDOW_TO_FRAME_PIXEL_Y (w
, w
->output_cursor
.y
);
27355 FRAME_RIF (f
)->shift_glyphs_for_insert (f
, frame_x
, frame_y
, shifted_region_width
,
27356 line_height
, shift_by_width
);
27358 /* Write the glyphs. */
27359 hpos
= start
- row
->glyphs
[updated_area
];
27360 draw_glyphs (w
, w
->output_cursor
.x
, row
, updated_area
,
27362 DRAW_NORMAL_TEXT
, 0);
27364 /* Advance the output cursor. */
27365 w
->output_cursor
.hpos
+= len
;
27366 w
->output_cursor
.x
+= shift_by_width
;
27372 Erase the current text line from the nominal cursor position
27373 (inclusive) to pixel column TO_X (exclusive). The idea is that
27374 everything from TO_X onward is already erased.
27376 TO_X is a pixel position relative to UPDATED_AREA of currently
27377 updated window W. TO_X == -1 means clear to the end of this area. */
27380 x_clear_end_of_line (struct window
*w
, struct glyph_row
*updated_row
,
27381 enum glyph_row_area updated_area
, int to_x
)
27384 int max_x
, min_y
, max_y
;
27385 int from_x
, from_y
, to_y
;
27387 eassert (updated_row
);
27388 f
= XFRAME (w
->frame
);
27390 if (updated_row
->full_width_p
)
27391 max_x
= (WINDOW_PIXEL_WIDTH (w
)
27392 - (updated_row
->mode_line_p
? WINDOW_RIGHT_DIVIDER_WIDTH (w
) : 0));
27394 max_x
= window_box_width (w
, updated_area
);
27395 max_y
= window_text_bottom_y (w
);
27397 /* TO_X == 0 means don't do anything. TO_X < 0 means clear to end
27398 of window. For TO_X > 0, truncate to end of drawing area. */
27404 to_x
= min (to_x
, max_x
);
27406 to_y
= min (max_y
, w
->output_cursor
.y
+ updated_row
->height
);
27408 /* Notice if the cursor will be cleared by this operation. */
27409 if (!updated_row
->full_width_p
)
27410 notice_overwritten_cursor (w
, updated_area
,
27411 w
->output_cursor
.x
, -1,
27413 MATRIX_ROW_BOTTOM_Y (updated_row
));
27415 from_x
= w
->output_cursor
.x
;
27417 /* Translate to frame coordinates. */
27418 if (updated_row
->full_width_p
)
27420 from_x
= WINDOW_TO_FRAME_PIXEL_X (w
, from_x
);
27421 to_x
= WINDOW_TO_FRAME_PIXEL_X (w
, to_x
);
27425 int area_left
= window_box_left (w
, updated_area
);
27426 from_x
+= area_left
;
27430 min_y
= WINDOW_HEADER_LINE_HEIGHT (w
);
27431 from_y
= WINDOW_TO_FRAME_PIXEL_Y (w
, max (min_y
, w
->output_cursor
.y
));
27432 to_y
= WINDOW_TO_FRAME_PIXEL_Y (w
, to_y
);
27434 /* Prevent inadvertently clearing to end of the X window. */
27435 if (to_x
> from_x
&& to_y
> from_y
)
27438 FRAME_RIF (f
)->clear_frame_area (f
, from_x
, from_y
,
27439 to_x
- from_x
, to_y
- from_y
);
27444 #endif /* HAVE_WINDOW_SYSTEM */
27448 /***********************************************************************
27450 ***********************************************************************/
27452 /* Value is the internal representation of the specified cursor type
27453 ARG. If type is BAR_CURSOR, return in *WIDTH the specified width
27454 of the bar cursor. */
27456 static enum text_cursor_kinds
27457 get_specified_cursor_type (Lisp_Object arg
, int *width
)
27459 enum text_cursor_kinds type
;
27464 if (EQ (arg
, Qbox
))
27465 return FILLED_BOX_CURSOR
;
27467 if (EQ (arg
, Qhollow
))
27468 return HOLLOW_BOX_CURSOR
;
27470 if (EQ (arg
, Qbar
))
27477 && EQ (XCAR (arg
), Qbar
)
27478 && RANGED_INTEGERP (0, XCDR (arg
), INT_MAX
))
27480 *width
= XINT (XCDR (arg
));
27484 if (EQ (arg
, Qhbar
))
27487 return HBAR_CURSOR
;
27491 && EQ (XCAR (arg
), Qhbar
)
27492 && RANGED_INTEGERP (0, XCDR (arg
), INT_MAX
))
27494 *width
= XINT (XCDR (arg
));
27495 return HBAR_CURSOR
;
27498 /* Treat anything unknown as "hollow box cursor".
27499 It was bad to signal an error; people have trouble fixing
27500 .Xdefaults with Emacs, when it has something bad in it. */
27501 type
= HOLLOW_BOX_CURSOR
;
27506 /* Set the default cursor types for specified frame. */
27508 set_frame_cursor_types (struct frame
*f
, Lisp_Object arg
)
27513 FRAME_DESIRED_CURSOR (f
) = get_specified_cursor_type (arg
, &width
);
27514 FRAME_CURSOR_WIDTH (f
) = width
;
27516 /* By default, set up the blink-off state depending on the on-state. */
27518 tem
= Fassoc (arg
, Vblink_cursor_alist
);
27521 FRAME_BLINK_OFF_CURSOR (f
)
27522 = get_specified_cursor_type (XCDR (tem
), &width
);
27523 FRAME_BLINK_OFF_CURSOR_WIDTH (f
) = width
;
27526 FRAME_BLINK_OFF_CURSOR (f
) = DEFAULT_CURSOR
;
27528 /* Make sure the cursor gets redrawn. */
27529 f
->cursor_type_changed
= 1;
27533 #ifdef HAVE_WINDOW_SYSTEM
27535 /* Return the cursor we want to be displayed in window W. Return
27536 width of bar/hbar cursor through WIDTH arg. Return with
27537 ACTIVE_CURSOR arg set to 1 if cursor in window W is `active'
27538 (i.e. if the `system caret' should track this cursor).
27540 In a mini-buffer window, we want the cursor only to appear if we
27541 are reading input from this window. For the selected window, we
27542 want the cursor type given by the frame parameter or buffer local
27543 setting of cursor-type. If explicitly marked off, draw no cursor.
27544 In all other cases, we want a hollow box cursor. */
27546 static enum text_cursor_kinds
27547 get_window_cursor_type (struct window
*w
, struct glyph
*glyph
, int *width
,
27548 int *active_cursor
)
27550 struct frame
*f
= XFRAME (w
->frame
);
27551 struct buffer
*b
= XBUFFER (w
->contents
);
27552 int cursor_type
= DEFAULT_CURSOR
;
27553 Lisp_Object alt_cursor
;
27554 int non_selected
= 0;
27556 *active_cursor
= 1;
27559 if (cursor_in_echo_area
27560 && FRAME_HAS_MINIBUF_P (f
)
27561 && EQ (FRAME_MINIBUF_WINDOW (f
), echo_area_window
))
27563 if (w
== XWINDOW (echo_area_window
))
27565 if (EQ (BVAR (b
, cursor_type
), Qt
) || NILP (BVAR (b
, cursor_type
)))
27567 *width
= FRAME_CURSOR_WIDTH (f
);
27568 return FRAME_DESIRED_CURSOR (f
);
27571 return get_specified_cursor_type (BVAR (b
, cursor_type
), width
);
27574 *active_cursor
= 0;
27578 /* Detect a nonselected window or nonselected frame. */
27579 else if (w
!= XWINDOW (f
->selected_window
)
27580 || f
!= FRAME_DISPLAY_INFO (f
)->x_highlight_frame
)
27582 *active_cursor
= 0;
27584 if (MINI_WINDOW_P (w
) && minibuf_level
== 0)
27590 /* Never display a cursor in a window in which cursor-type is nil. */
27591 if (NILP (BVAR (b
, cursor_type
)))
27594 /* Get the normal cursor type for this window. */
27595 if (EQ (BVAR (b
, cursor_type
), Qt
))
27597 cursor_type
= FRAME_DESIRED_CURSOR (f
);
27598 *width
= FRAME_CURSOR_WIDTH (f
);
27601 cursor_type
= get_specified_cursor_type (BVAR (b
, cursor_type
), width
);
27603 /* Use cursor-in-non-selected-windows instead
27604 for non-selected window or frame. */
27607 alt_cursor
= BVAR (b
, cursor_in_non_selected_windows
);
27608 if (!EQ (Qt
, alt_cursor
))
27609 return get_specified_cursor_type (alt_cursor
, width
);
27610 /* t means modify the normal cursor type. */
27611 if (cursor_type
== FILLED_BOX_CURSOR
)
27612 cursor_type
= HOLLOW_BOX_CURSOR
;
27613 else if (cursor_type
== BAR_CURSOR
&& *width
> 1)
27615 return cursor_type
;
27618 /* Use normal cursor if not blinked off. */
27619 if (!w
->cursor_off_p
)
27622 #ifdef HAVE_XWIDGETS
27623 if (glyph
!= NULL
&& glyph
->type
== XWIDGET_GLYPH
){
27624 //printf("attempt xwidget cursor avoidance in get_window_cursor_type\n");
27628 if (glyph
!= NULL
&& glyph
->type
== IMAGE_GLYPH
)
27630 if (cursor_type
== FILLED_BOX_CURSOR
)
27632 /* Using a block cursor on large images can be very annoying.
27633 So use a hollow cursor for "large" images.
27634 If image is not transparent (no mask), also use hollow cursor. */
27635 struct image
*img
= IMAGE_FROM_ID (f
, glyph
->u
.img_id
);
27636 if (img
!= NULL
&& IMAGEP (img
->spec
))
27638 /* Arbitrarily, interpret "Large" as >32x32 and >NxN
27639 where N = size of default frame font size.
27640 This should cover most of the "tiny" icons people may use. */
27642 || img
->width
> max (32, WINDOW_FRAME_COLUMN_WIDTH (w
))
27643 || img
->height
> max (32, WINDOW_FRAME_LINE_HEIGHT (w
)))
27644 cursor_type
= HOLLOW_BOX_CURSOR
;
27647 else if (cursor_type
!= NO_CURSOR
)
27649 /* Display current only supports BOX and HOLLOW cursors for images.
27650 So for now, unconditionally use a HOLLOW cursor when cursor is
27651 not a solid box cursor. */
27652 cursor_type
= HOLLOW_BOX_CURSOR
;
27655 return cursor_type
;
27658 /* Cursor is blinked off, so determine how to "toggle" it. */
27660 /* First look for an entry matching the buffer's cursor-type in blink-cursor-alist. */
27661 if ((alt_cursor
= Fassoc (BVAR (b
, cursor_type
), Vblink_cursor_alist
), !NILP (alt_cursor
)))
27662 return get_specified_cursor_type (XCDR (alt_cursor
), width
);
27664 /* Then see if frame has specified a specific blink off cursor type. */
27665 if (FRAME_BLINK_OFF_CURSOR (f
) != DEFAULT_CURSOR
)
27667 *width
= FRAME_BLINK_OFF_CURSOR_WIDTH (f
);
27668 return FRAME_BLINK_OFF_CURSOR (f
);
27672 /* Some people liked having a permanently visible blinking cursor,
27673 while others had very strong opinions against it. So it was
27674 decided to remove it. KFS 2003-09-03 */
27676 /* Finally perform built-in cursor blinking:
27677 filled box <-> hollow box
27678 wide [h]bar <-> narrow [h]bar
27679 narrow [h]bar <-> no cursor
27680 other type <-> no cursor */
27682 if (cursor_type
== FILLED_BOX_CURSOR
)
27683 return HOLLOW_BOX_CURSOR
;
27685 if ((cursor_type
== BAR_CURSOR
|| cursor_type
== HBAR_CURSOR
) && *width
> 1)
27688 return cursor_type
;
27696 /* Notice when the text cursor of window W has been completely
27697 overwritten by a drawing operation that outputs glyphs in AREA
27698 starting at X0 and ending at X1 in the line starting at Y0 and
27699 ending at Y1. X coordinates are area-relative. X1 < 0 means all
27700 the rest of the line after X0 has been written. Y coordinates
27701 are window-relative. */
27704 notice_overwritten_cursor (struct window
*w
, enum glyph_row_area area
,
27705 int x0
, int x1
, int y0
, int y1
)
27707 int cx0
, cx1
, cy0
, cy1
;
27708 struct glyph_row
*row
;
27710 if (!w
->phys_cursor_on_p
)
27712 if (area
!= TEXT_AREA
)
27715 if (w
->phys_cursor
.vpos
< 0
27716 || w
->phys_cursor
.vpos
>= w
->current_matrix
->nrows
27717 || (row
= w
->current_matrix
->rows
+ w
->phys_cursor
.vpos
,
27718 !(row
->enabled_p
&& MATRIX_ROW_DISPLAYS_TEXT_P (row
))))
27721 if (row
->cursor_in_fringe_p
)
27723 row
->cursor_in_fringe_p
= 0;
27724 draw_fringe_bitmap (w
, row
, row
->reversed_p
);
27725 w
->phys_cursor_on_p
= 0;
27729 cx0
= w
->phys_cursor
.x
;
27730 cx1
= cx0
+ w
->phys_cursor_width
;
27731 if (x0
> cx0
|| (x1
>= 0 && x1
< cx1
))
27734 /* The cursor image will be completely removed from the
27735 screen if the output area intersects the cursor area in
27736 y-direction. When we draw in [y0 y1[, and some part of
27737 the cursor is at y < y0, that part must have been drawn
27738 before. When scrolling, the cursor is erased before
27739 actually scrolling, so we don't come here. When not
27740 scrolling, the rows above the old cursor row must have
27741 changed, and in this case these rows must have written
27742 over the cursor image.
27744 Likewise if part of the cursor is below y1, with the
27745 exception of the cursor being in the first blank row at
27746 the buffer and window end because update_text_area
27747 doesn't draw that row. (Except when it does, but
27748 that's handled in update_text_area.) */
27750 cy0
= w
->phys_cursor
.y
;
27751 cy1
= cy0
+ w
->phys_cursor_height
;
27752 if ((y0
< cy0
|| y0
>= cy1
) && (y1
<= cy0
|| y1
>= cy1
))
27755 w
->phys_cursor_on_p
= 0;
27758 #endif /* HAVE_WINDOW_SYSTEM */
27761 /************************************************************************
27763 ************************************************************************/
27765 #ifdef HAVE_WINDOW_SYSTEM
27768 Fix the display of area AREA of overlapping row ROW in window W
27769 with respect to the overlapping part OVERLAPS. */
27772 x_fix_overlapping_area (struct window
*w
, struct glyph_row
*row
,
27773 enum glyph_row_area area
, int overlaps
)
27780 for (i
= 0; i
< row
->used
[area
];)
27782 if (row
->glyphs
[area
][i
].overlaps_vertically_p
)
27784 int start
= i
, start_x
= x
;
27788 x
+= row
->glyphs
[area
][i
].pixel_width
;
27791 while (i
< row
->used
[area
]
27792 && row
->glyphs
[area
][i
].overlaps_vertically_p
);
27794 draw_glyphs (w
, start_x
, row
, area
,
27796 DRAW_NORMAL_TEXT
, overlaps
);
27800 x
+= row
->glyphs
[area
][i
].pixel_width
;
27810 Draw the cursor glyph of window W in glyph row ROW. See the
27811 comment of draw_glyphs for the meaning of HL. */
27814 draw_phys_cursor_glyph (struct window
*w
, struct glyph_row
*row
,
27815 enum draw_glyphs_face hl
)
27817 /* If cursor hpos is out of bounds, don't draw garbage. This can
27818 happen in mini-buffer windows when switching between echo area
27819 glyphs and mini-buffer. */
27820 if ((row
->reversed_p
27821 ? (w
->phys_cursor
.hpos
>= 0)
27822 : (w
->phys_cursor
.hpos
< row
->used
[TEXT_AREA
])))
27824 int on_p
= w
->phys_cursor_on_p
;
27826 int hpos
= w
->phys_cursor
.hpos
;
27828 /* When the window is hscrolled, cursor hpos can legitimately be
27829 out of bounds, but we draw the cursor at the corresponding
27830 window margin in that case. */
27831 if (!row
->reversed_p
&& hpos
< 0)
27833 if (row
->reversed_p
&& hpos
>= row
->used
[TEXT_AREA
])
27834 hpos
= row
->used
[TEXT_AREA
] - 1;
27836 x1
= draw_glyphs (w
, w
->phys_cursor
.x
, row
, TEXT_AREA
, hpos
, hpos
+ 1,
27838 w
->phys_cursor_on_p
= on_p
;
27840 if (hl
== DRAW_CURSOR
)
27841 w
->phys_cursor_width
= x1
- w
->phys_cursor
.x
;
27842 /* When we erase the cursor, and ROW is overlapped by other
27843 rows, make sure that these overlapping parts of other rows
27845 else if (hl
== DRAW_NORMAL_TEXT
&& row
->overlapped_p
)
27847 w
->phys_cursor_width
= x1
- w
->phys_cursor
.x
;
27849 if (row
> w
->current_matrix
->rows
27850 && MATRIX_ROW_OVERLAPS_SUCC_P (row
- 1))
27851 x_fix_overlapping_area (w
, row
- 1, TEXT_AREA
,
27852 OVERLAPS_ERASED_CURSOR
);
27854 if (MATRIX_ROW_BOTTOM_Y (row
) < window_text_bottom_y (w
)
27855 && MATRIX_ROW_OVERLAPS_PRED_P (row
+ 1))
27856 x_fix_overlapping_area (w
, row
+ 1, TEXT_AREA
,
27857 OVERLAPS_ERASED_CURSOR
);
27863 /* Erase the image of a cursor of window W from the screen. */
27866 erase_phys_cursor (struct window
*w
)
27868 struct frame
*f
= XFRAME (w
->frame
);
27869 Mouse_HLInfo
*hlinfo
= MOUSE_HL_INFO (f
);
27870 int hpos
= w
->phys_cursor
.hpos
;
27871 int vpos
= w
->phys_cursor
.vpos
;
27872 int mouse_face_here_p
= 0;
27873 struct glyph_matrix
*active_glyphs
= w
->current_matrix
;
27874 struct glyph_row
*cursor_row
;
27875 struct glyph
*cursor_glyph
;
27876 enum draw_glyphs_face hl
;
27878 /* No cursor displayed or row invalidated => nothing to do on the
27880 if (w
->phys_cursor_type
== NO_CURSOR
)
27881 goto mark_cursor_off
;
27883 /* VPOS >= active_glyphs->nrows means that window has been resized.
27884 Don't bother to erase the cursor. */
27885 if (vpos
>= active_glyphs
->nrows
)
27886 goto mark_cursor_off
;
27888 /* If row containing cursor is marked invalid, there is nothing we
27890 cursor_row
= MATRIX_ROW (active_glyphs
, vpos
);
27891 if (!cursor_row
->enabled_p
)
27892 goto mark_cursor_off
;
27894 /* If line spacing is > 0, old cursor may only be partially visible in
27895 window after split-window. So adjust visible height. */
27896 cursor_row
->visible_height
= min (cursor_row
->visible_height
,
27897 window_text_bottom_y (w
) - cursor_row
->y
);
27899 /* If row is completely invisible, don't attempt to delete a cursor which
27900 isn't there. This can happen if cursor is at top of a window, and
27901 we switch to a buffer with a header line in that window. */
27902 if (cursor_row
->visible_height
<= 0)
27903 goto mark_cursor_off
;
27905 /* If cursor is in the fringe, erase by drawing actual bitmap there. */
27906 if (cursor_row
->cursor_in_fringe_p
)
27908 cursor_row
->cursor_in_fringe_p
= 0;
27909 draw_fringe_bitmap (w
, cursor_row
, cursor_row
->reversed_p
);
27910 goto mark_cursor_off
;
27913 /* This can happen when the new row is shorter than the old one.
27914 In this case, either draw_glyphs or clear_end_of_line
27915 should have cleared the cursor. Note that we wouldn't be
27916 able to erase the cursor in this case because we don't have a
27917 cursor glyph at hand. */
27918 if ((cursor_row
->reversed_p
27919 ? (w
->phys_cursor
.hpos
< 0)
27920 : (w
->phys_cursor
.hpos
>= cursor_row
->used
[TEXT_AREA
])))
27921 goto mark_cursor_off
;
27923 /* When the window is hscrolled, cursor hpos can legitimately be out
27924 of bounds, but we draw the cursor at the corresponding window
27925 margin in that case. */
27926 if (!cursor_row
->reversed_p
&& hpos
< 0)
27928 if (cursor_row
->reversed_p
&& hpos
>= cursor_row
->used
[TEXT_AREA
])
27929 hpos
= cursor_row
->used
[TEXT_AREA
] - 1;
27931 /* If the cursor is in the mouse face area, redisplay that when
27932 we clear the cursor. */
27933 if (! NILP (hlinfo
->mouse_face_window
)
27934 && coords_in_mouse_face_p (w
, hpos
, vpos
)
27935 /* Don't redraw the cursor's spot in mouse face if it is at the
27936 end of a line (on a newline). The cursor appears there, but
27937 mouse highlighting does not. */
27938 && cursor_row
->used
[TEXT_AREA
] > hpos
&& hpos
>= 0)
27939 mouse_face_here_p
= 1;
27941 /* Maybe clear the display under the cursor. */
27942 if (w
->phys_cursor_type
== HOLLOW_BOX_CURSOR
)
27945 int header_line_height
= WINDOW_HEADER_LINE_HEIGHT (w
);
27948 cursor_glyph
= get_phys_cursor_glyph (w
);
27949 if (cursor_glyph
== NULL
)
27950 goto mark_cursor_off
;
27952 width
= cursor_glyph
->pixel_width
;
27953 x
= w
->phys_cursor
.x
;
27959 width
= min (width
, window_box_width (w
, TEXT_AREA
) - x
);
27960 y
= WINDOW_TO_FRAME_PIXEL_Y (w
, max (header_line_height
, cursor_row
->y
));
27961 x
= WINDOW_TEXT_TO_FRAME_PIXEL_X (w
, x
);
27964 FRAME_RIF (f
)->clear_frame_area (f
, x
, y
, width
, cursor_row
->visible_height
);
27967 /* Erase the cursor by redrawing the character underneath it. */
27968 if (mouse_face_here_p
)
27969 hl
= DRAW_MOUSE_FACE
;
27971 hl
= DRAW_NORMAL_TEXT
;
27972 draw_phys_cursor_glyph (w
, cursor_row
, hl
);
27975 w
->phys_cursor_on_p
= 0;
27976 w
->phys_cursor_type
= NO_CURSOR
;
27981 Display or clear cursor of window W. If ON is zero, clear the
27982 cursor. If it is non-zero, display the cursor. If ON is nonzero,
27983 where to put the cursor is specified by HPOS, VPOS, X and Y. */
27986 display_and_set_cursor (struct window
*w
, bool on
,
27987 int hpos
, int vpos
, int x
, int y
)
27989 struct frame
*f
= XFRAME (w
->frame
);
27990 int new_cursor_type
;
27991 int new_cursor_width
;
27993 struct glyph_row
*glyph_row
;
27994 struct glyph
*glyph
;
27996 /* This is pointless on invisible frames, and dangerous on garbaged
27997 windows and frames; in the latter case, the frame or window may
27998 be in the midst of changing its size, and x and y may be off the
28000 if (! FRAME_VISIBLE_P (f
)
28001 || FRAME_GARBAGED_P (f
)
28002 || vpos
>= w
->current_matrix
->nrows
28003 || hpos
>= w
->current_matrix
->matrix_w
)
28006 /* If cursor is off and we want it off, return quickly. */
28007 if (!on
&& !w
->phys_cursor_on_p
)
28010 glyph_row
= MATRIX_ROW (w
->current_matrix
, vpos
);
28011 /* If cursor row is not enabled, we don't really know where to
28012 display the cursor. */
28013 if (!glyph_row
->enabled_p
)
28015 w
->phys_cursor_on_p
= 0;
28020 if (!glyph_row
->exact_window_width_line_p
28021 || (0 <= hpos
&& hpos
< glyph_row
->used
[TEXT_AREA
]))
28022 glyph
= glyph_row
->glyphs
[TEXT_AREA
] + hpos
;
28024 eassert (input_blocked_p ());
28026 /* Set new_cursor_type to the cursor we want to be displayed. */
28027 new_cursor_type
= get_window_cursor_type (w
, glyph
,
28028 &new_cursor_width
, &active_cursor
);
28030 /* If cursor is currently being shown and we don't want it to be or
28031 it is in the wrong place, or the cursor type is not what we want,
28033 if (w
->phys_cursor_on_p
28035 || w
->phys_cursor
.x
!= x
28036 || w
->phys_cursor
.y
!= y
28037 /* HPOS can be negative in R2L rows whose
28038 exact_window_width_line_p flag is set (i.e. their newline
28039 would "overflow into the fringe"). */
28041 || new_cursor_type
!= w
->phys_cursor_type
28042 || ((new_cursor_type
== BAR_CURSOR
|| new_cursor_type
== HBAR_CURSOR
)
28043 && new_cursor_width
!= w
->phys_cursor_width
)))
28044 erase_phys_cursor (w
);
28046 /* Don't check phys_cursor_on_p here because that flag is only set
28047 to zero in some cases where we know that the cursor has been
28048 completely erased, to avoid the extra work of erasing the cursor
28049 twice. In other words, phys_cursor_on_p can be 1 and the cursor
28050 still not be visible, or it has only been partly erased. */
28053 w
->phys_cursor_ascent
= glyph_row
->ascent
;
28054 w
->phys_cursor_height
= glyph_row
->height
;
28056 /* Set phys_cursor_.* before x_draw_.* is called because some
28057 of them may need the information. */
28058 w
->phys_cursor
.x
= x
;
28059 w
->phys_cursor
.y
= glyph_row
->y
;
28060 w
->phys_cursor
.hpos
= hpos
;
28061 w
->phys_cursor
.vpos
= vpos
;
28064 FRAME_RIF (f
)->draw_window_cursor (w
, glyph_row
, x
, y
,
28065 new_cursor_type
, new_cursor_width
,
28066 on
, active_cursor
);
28070 /* Switch the display of W's cursor on or off, according to the value
28074 update_window_cursor (struct window
*w
, bool on
)
28076 /* Don't update cursor in windows whose frame is in the process
28077 of being deleted. */
28078 if (w
->current_matrix
)
28080 int hpos
= w
->phys_cursor
.hpos
;
28081 int vpos
= w
->phys_cursor
.vpos
;
28082 struct glyph_row
*row
;
28084 if (vpos
>= w
->current_matrix
->nrows
28085 || hpos
>= w
->current_matrix
->matrix_w
)
28088 row
= MATRIX_ROW (w
->current_matrix
, vpos
);
28090 /* When the window is hscrolled, cursor hpos can legitimately be
28091 out of bounds, but we draw the cursor at the corresponding
28092 window margin in that case. */
28093 if (!row
->reversed_p
&& hpos
< 0)
28095 if (row
->reversed_p
&& hpos
>= row
->used
[TEXT_AREA
])
28096 hpos
= row
->used
[TEXT_AREA
] - 1;
28099 display_and_set_cursor (w
, on
, hpos
, vpos
,
28100 w
->phys_cursor
.x
, w
->phys_cursor
.y
);
28106 /* Call update_window_cursor with parameter ON_P on all leaf windows
28107 in the window tree rooted at W. */
28110 update_cursor_in_window_tree (struct window
*w
, bool on_p
)
28114 if (WINDOWP (w
->contents
))
28115 update_cursor_in_window_tree (XWINDOW (w
->contents
), on_p
);
28117 update_window_cursor (w
, on_p
);
28119 w
= NILP (w
->next
) ? 0 : XWINDOW (w
->next
);
28125 Display the cursor on window W, or clear it, according to ON_P.
28126 Don't change the cursor's position. */
28129 x_update_cursor (struct frame
*f
, bool on_p
)
28131 update_cursor_in_window_tree (XWINDOW (f
->root_window
), on_p
);
28136 Clear the cursor of window W to background color, and mark the
28137 cursor as not shown. This is used when the text where the cursor
28138 is about to be rewritten. */
28141 x_clear_cursor (struct window
*w
)
28143 if (FRAME_VISIBLE_P (XFRAME (w
->frame
)) && w
->phys_cursor_on_p
)
28144 update_window_cursor (w
, 0);
28147 #endif /* HAVE_WINDOW_SYSTEM */
28149 /* Implementation of draw_row_with_mouse_face for GUI sessions, GPM,
28152 draw_row_with_mouse_face (struct window
*w
, int start_x
, struct glyph_row
*row
,
28153 int start_hpos
, int end_hpos
,
28154 enum draw_glyphs_face draw
)
28156 #ifdef HAVE_WINDOW_SYSTEM
28157 if (FRAME_WINDOW_P (XFRAME (w
->frame
)))
28159 draw_glyphs (w
, start_x
, row
, TEXT_AREA
, start_hpos
, end_hpos
, draw
, 0);
28163 #if defined (HAVE_GPM) || defined (MSDOS) || defined (WINDOWSNT)
28164 tty_draw_row_with_mouse_face (w
, row
, start_hpos
, end_hpos
, draw
);
28168 /* Display the active region described by mouse_face_* according to DRAW. */
28171 show_mouse_face (Mouse_HLInfo
*hlinfo
, enum draw_glyphs_face draw
)
28173 struct window
*w
= XWINDOW (hlinfo
->mouse_face_window
);
28174 struct frame
*f
= XFRAME (WINDOW_FRAME (w
));
28176 if (/* If window is in the process of being destroyed, don't bother
28178 w
->current_matrix
!= NULL
28179 /* Don't update mouse highlight if hidden. */
28180 && (draw
!= DRAW_MOUSE_FACE
|| !hlinfo
->mouse_face_hidden
)
28181 /* Recognize when we are called to operate on rows that don't exist
28182 anymore. This can happen when a window is split. */
28183 && hlinfo
->mouse_face_end_row
< w
->current_matrix
->nrows
)
28185 int phys_cursor_on_p
= w
->phys_cursor_on_p
;
28186 struct glyph_row
*row
, *first
, *last
;
28188 first
= MATRIX_ROW (w
->current_matrix
, hlinfo
->mouse_face_beg_row
);
28189 last
= MATRIX_ROW (w
->current_matrix
, hlinfo
->mouse_face_end_row
);
28191 for (row
= first
; row
<= last
&& row
->enabled_p
; ++row
)
28193 int start_hpos
, end_hpos
, start_x
;
28195 /* For all but the first row, the highlight starts at column 0. */
28198 /* R2L rows have BEG and END in reversed order, but the
28199 screen drawing geometry is always left to right. So
28200 we need to mirror the beginning and end of the
28201 highlighted area in R2L rows. */
28202 if (!row
->reversed_p
)
28204 start_hpos
= hlinfo
->mouse_face_beg_col
;
28205 start_x
= hlinfo
->mouse_face_beg_x
;
28207 else if (row
== last
)
28209 start_hpos
= hlinfo
->mouse_face_end_col
;
28210 start_x
= hlinfo
->mouse_face_end_x
;
28218 else if (row
->reversed_p
&& row
== last
)
28220 start_hpos
= hlinfo
->mouse_face_end_col
;
28221 start_x
= hlinfo
->mouse_face_end_x
;
28231 if (!row
->reversed_p
)
28232 end_hpos
= hlinfo
->mouse_face_end_col
;
28233 else if (row
== first
)
28234 end_hpos
= hlinfo
->mouse_face_beg_col
;
28237 end_hpos
= row
->used
[TEXT_AREA
];
28238 if (draw
== DRAW_NORMAL_TEXT
)
28239 row
->fill_line_p
= 1; /* Clear to end of line */
28242 else if (row
->reversed_p
&& row
== first
)
28243 end_hpos
= hlinfo
->mouse_face_beg_col
;
28246 end_hpos
= row
->used
[TEXT_AREA
];
28247 if (draw
== DRAW_NORMAL_TEXT
)
28248 row
->fill_line_p
= 1; /* Clear to end of line */
28251 if (end_hpos
> start_hpos
)
28253 draw_row_with_mouse_face (w
, start_x
, row
,
28254 start_hpos
, end_hpos
, draw
);
28257 = draw
== DRAW_MOUSE_FACE
|| draw
== DRAW_IMAGE_RAISED
;
28261 #ifdef HAVE_WINDOW_SYSTEM
28262 /* When we've written over the cursor, arrange for it to
28263 be displayed again. */
28264 if (FRAME_WINDOW_P (f
)
28265 && phys_cursor_on_p
&& !w
->phys_cursor_on_p
)
28267 int hpos
= w
->phys_cursor
.hpos
;
28269 /* When the window is hscrolled, cursor hpos can legitimately be
28270 out of bounds, but we draw the cursor at the corresponding
28271 window margin in that case. */
28272 if (!row
->reversed_p
&& hpos
< 0)
28274 if (row
->reversed_p
&& hpos
>= row
->used
[TEXT_AREA
])
28275 hpos
= row
->used
[TEXT_AREA
] - 1;
28278 display_and_set_cursor (w
, 1, hpos
, w
->phys_cursor
.vpos
,
28279 w
->phys_cursor
.x
, w
->phys_cursor
.y
);
28282 #endif /* HAVE_WINDOW_SYSTEM */
28285 #ifdef HAVE_WINDOW_SYSTEM
28286 /* Change the mouse cursor. */
28287 if (FRAME_WINDOW_P (f
) && NILP (do_mouse_tracking
))
28289 #if ! defined (USE_GTK) && ! defined (HAVE_NS)
28290 if (draw
== DRAW_NORMAL_TEXT
28291 && !EQ (hlinfo
->mouse_face_window
, f
->tool_bar_window
))
28292 FRAME_RIF (f
)->define_frame_cursor (f
, FRAME_X_OUTPUT (f
)->text_cursor
);
28295 if (draw
== DRAW_MOUSE_FACE
)
28296 FRAME_RIF (f
)->define_frame_cursor (f
, FRAME_X_OUTPUT (f
)->hand_cursor
);
28298 FRAME_RIF (f
)->define_frame_cursor (f
, FRAME_X_OUTPUT (f
)->nontext_cursor
);
28300 #endif /* HAVE_WINDOW_SYSTEM */
28304 Clear out the mouse-highlighted active region.
28305 Redraw it un-highlighted first. Value is non-zero if mouse
28306 face was actually drawn unhighlighted. */
28309 clear_mouse_face (Mouse_HLInfo
*hlinfo
)
28313 if (!hlinfo
->mouse_face_hidden
&& !NILP (hlinfo
->mouse_face_window
))
28315 show_mouse_face (hlinfo
, DRAW_NORMAL_TEXT
);
28319 hlinfo
->mouse_face_beg_row
= hlinfo
->mouse_face_beg_col
= -1;
28320 hlinfo
->mouse_face_end_row
= hlinfo
->mouse_face_end_col
= -1;
28321 hlinfo
->mouse_face_window
= Qnil
;
28322 hlinfo
->mouse_face_overlay
= Qnil
;
28326 /* Return true if the coordinates HPOS and VPOS on windows W are
28327 within the mouse face on that window. */
28329 coords_in_mouse_face_p (struct window
*w
, int hpos
, int vpos
)
28331 Mouse_HLInfo
*hlinfo
= MOUSE_HL_INFO (XFRAME (w
->frame
));
28333 /* Quickly resolve the easy cases. */
28334 if (!(WINDOWP (hlinfo
->mouse_face_window
)
28335 && XWINDOW (hlinfo
->mouse_face_window
) == w
))
28337 if (vpos
< hlinfo
->mouse_face_beg_row
28338 || vpos
> hlinfo
->mouse_face_end_row
)
28340 if (vpos
> hlinfo
->mouse_face_beg_row
28341 && vpos
< hlinfo
->mouse_face_end_row
)
28344 if (!MATRIX_ROW (w
->current_matrix
, vpos
)->reversed_p
)
28346 if (hlinfo
->mouse_face_beg_row
== hlinfo
->mouse_face_end_row
)
28348 if (hlinfo
->mouse_face_beg_col
<= hpos
&& hpos
< hlinfo
->mouse_face_end_col
)
28351 else if ((vpos
== hlinfo
->mouse_face_beg_row
28352 && hpos
>= hlinfo
->mouse_face_beg_col
)
28353 || (vpos
== hlinfo
->mouse_face_end_row
28354 && hpos
< hlinfo
->mouse_face_end_col
))
28359 if (hlinfo
->mouse_face_beg_row
== hlinfo
->mouse_face_end_row
)
28361 if (hlinfo
->mouse_face_end_col
< hpos
&& hpos
<= hlinfo
->mouse_face_beg_col
)
28364 else if ((vpos
== hlinfo
->mouse_face_beg_row
28365 && hpos
<= hlinfo
->mouse_face_beg_col
)
28366 || (vpos
== hlinfo
->mouse_face_end_row
28367 && hpos
> hlinfo
->mouse_face_end_col
))
28375 True if physical cursor of window W is within mouse face. */
28378 cursor_in_mouse_face_p (struct window
*w
)
28380 int hpos
= w
->phys_cursor
.hpos
;
28381 int vpos
= w
->phys_cursor
.vpos
;
28382 struct glyph_row
*row
= MATRIX_ROW (w
->current_matrix
, vpos
);
28384 /* When the window is hscrolled, cursor hpos can legitimately be out
28385 of bounds, but we draw the cursor at the corresponding window
28386 margin in that case. */
28387 if (!row
->reversed_p
&& hpos
< 0)
28389 if (row
->reversed_p
&& hpos
>= row
->used
[TEXT_AREA
])
28390 hpos
= row
->used
[TEXT_AREA
] - 1;
28392 return coords_in_mouse_face_p (w
, hpos
, vpos
);
28397 /* Find the glyph rows START_ROW and END_ROW of window W that display
28398 characters between buffer positions START_CHARPOS and END_CHARPOS
28399 (excluding END_CHARPOS). DISP_STRING is a display string that
28400 covers these buffer positions. This is similar to
28401 row_containing_pos, but is more accurate when bidi reordering makes
28402 buffer positions change non-linearly with glyph rows. */
28404 rows_from_pos_range (struct window
*w
,
28405 ptrdiff_t start_charpos
, ptrdiff_t end_charpos
,
28406 Lisp_Object disp_string
,
28407 struct glyph_row
**start
, struct glyph_row
**end
)
28409 struct glyph_row
*first
= MATRIX_FIRST_TEXT_ROW (w
->current_matrix
);
28410 int last_y
= window_text_bottom_y (w
);
28411 struct glyph_row
*row
;
28416 while (!first
->enabled_p
28417 && first
< MATRIX_BOTTOM_TEXT_ROW (w
->current_matrix
, w
))
28420 /* Find the START row. */
28422 row
->enabled_p
&& MATRIX_ROW_BOTTOM_Y (row
) <= last_y
;
28425 /* A row can potentially be the START row if the range of the
28426 characters it displays intersects the range
28427 [START_CHARPOS..END_CHARPOS). */
28428 if (! ((start_charpos
< MATRIX_ROW_START_CHARPOS (row
)
28429 && end_charpos
< MATRIX_ROW_START_CHARPOS (row
))
28430 /* See the commentary in row_containing_pos, for the
28431 explanation of the complicated way to check whether
28432 some position is beyond the end of the characters
28433 displayed by a row. */
28434 || ((start_charpos
> MATRIX_ROW_END_CHARPOS (row
)
28435 || (start_charpos
== MATRIX_ROW_END_CHARPOS (row
)
28436 && !row
->ends_at_zv_p
28437 && !MATRIX_ROW_ENDS_IN_MIDDLE_OF_CHAR_P (row
)))
28438 && (end_charpos
> MATRIX_ROW_END_CHARPOS (row
)
28439 || (end_charpos
== MATRIX_ROW_END_CHARPOS (row
)
28440 && !row
->ends_at_zv_p
28441 && !MATRIX_ROW_ENDS_IN_MIDDLE_OF_CHAR_P (row
))))))
28443 /* Found a candidate row. Now make sure at least one of the
28444 glyphs it displays has a charpos from the range
28445 [START_CHARPOS..END_CHARPOS).
28447 This is not obvious because bidi reordering could make
28448 buffer positions of a row be 1,2,3,102,101,100, and if we
28449 want to highlight characters in [50..60), we don't want
28450 this row, even though [50..60) does intersect [1..103),
28451 the range of character positions given by the row's start
28452 and end positions. */
28453 struct glyph
*g
= row
->glyphs
[TEXT_AREA
];
28454 struct glyph
*e
= g
+ row
->used
[TEXT_AREA
];
28458 if (((BUFFERP (g
->object
) || NILP (g
->object
))
28459 && start_charpos
<= g
->charpos
&& g
->charpos
< end_charpos
)
28460 /* A glyph that comes from DISP_STRING is by
28461 definition to be highlighted. */
28462 || EQ (g
->object
, disp_string
))
28471 /* Find the END row. */
28473 /* If the last row is partially visible, start looking for END
28474 from that row, instead of starting from FIRST. */
28475 && !(row
->enabled_p
28476 && row
->y
< last_y
&& MATRIX_ROW_BOTTOM_Y (row
) > last_y
))
28478 for ( ; row
->enabled_p
&& MATRIX_ROW_BOTTOM_Y (row
) <= last_y
; row
++)
28480 struct glyph_row
*next
= row
+ 1;
28481 ptrdiff_t next_start
= MATRIX_ROW_START_CHARPOS (next
);
28483 if (!next
->enabled_p
28484 || next
>= MATRIX_BOTTOM_TEXT_ROW (w
->current_matrix
, w
)
28485 /* The first row >= START whose range of displayed characters
28486 does NOT intersect the range [START_CHARPOS..END_CHARPOS]
28487 is the row END + 1. */
28488 || (start_charpos
< next_start
28489 && end_charpos
< next_start
)
28490 || ((start_charpos
> MATRIX_ROW_END_CHARPOS (next
)
28491 || (start_charpos
== MATRIX_ROW_END_CHARPOS (next
)
28492 && !next
->ends_at_zv_p
28493 && !MATRIX_ROW_ENDS_IN_MIDDLE_OF_CHAR_P (next
)))
28494 && (end_charpos
> MATRIX_ROW_END_CHARPOS (next
)
28495 || (end_charpos
== MATRIX_ROW_END_CHARPOS (next
)
28496 && !next
->ends_at_zv_p
28497 && !MATRIX_ROW_ENDS_IN_MIDDLE_OF_CHAR_P (next
)))))
28504 /* If the next row's edges intersect [START_CHARPOS..END_CHARPOS],
28505 but none of the characters it displays are in the range, it is
28507 struct glyph
*g
= next
->glyphs
[TEXT_AREA
];
28508 struct glyph
*s
= g
;
28509 struct glyph
*e
= g
+ next
->used
[TEXT_AREA
];
28513 if (((BUFFERP (g
->object
) || NILP (g
->object
))
28514 && ((start_charpos
<= g
->charpos
&& g
->charpos
< end_charpos
)
28515 /* If the buffer position of the first glyph in
28516 the row is equal to END_CHARPOS, it means
28517 the last character to be highlighted is the
28518 newline of ROW, and we must consider NEXT as
28520 || (((!next
->reversed_p
&& g
== s
)
28521 || (next
->reversed_p
&& g
== e
- 1))
28522 && (g
->charpos
== end_charpos
28523 /* Special case for when NEXT is an
28524 empty line at ZV. */
28525 || (g
->charpos
== -1
28526 && !row
->ends_at_zv_p
28527 && next_start
== end_charpos
)))))
28528 /* A glyph that comes from DISP_STRING is by
28529 definition to be highlighted. */
28530 || EQ (g
->object
, disp_string
))
28539 /* The first row that ends at ZV must be the last to be
28541 else if (next
->ends_at_zv_p
)
28550 /* This function sets the mouse_face_* elements of HLINFO, assuming
28551 the mouse cursor is on a glyph with buffer charpos MOUSE_CHARPOS in
28552 window WINDOW. START_CHARPOS and END_CHARPOS are buffer positions
28553 for the overlay or run of text properties specifying the mouse
28554 face. BEFORE_STRING and AFTER_STRING, if non-nil, are a
28555 before-string and after-string that must also be highlighted.
28556 DISP_STRING, if non-nil, is a display string that may cover some
28557 or all of the highlighted text. */
28560 mouse_face_from_buffer_pos (Lisp_Object window
,
28561 Mouse_HLInfo
*hlinfo
,
28562 ptrdiff_t mouse_charpos
,
28563 ptrdiff_t start_charpos
,
28564 ptrdiff_t end_charpos
,
28565 Lisp_Object before_string
,
28566 Lisp_Object after_string
,
28567 Lisp_Object disp_string
)
28569 struct window
*w
= XWINDOW (window
);
28570 struct glyph_row
*first
= MATRIX_FIRST_TEXT_ROW (w
->current_matrix
);
28571 struct glyph_row
*r1
, *r2
;
28572 struct glyph
*glyph
, *end
;
28573 ptrdiff_t ignore
, pos
;
28576 eassert (NILP (disp_string
) || STRINGP (disp_string
));
28577 eassert (NILP (before_string
) || STRINGP (before_string
));
28578 eassert (NILP (after_string
) || STRINGP (after_string
));
28580 /* Find the rows corresponding to START_CHARPOS and END_CHARPOS. */
28581 rows_from_pos_range (w
, start_charpos
, end_charpos
, disp_string
, &r1
, &r2
);
28583 r1
= MATRIX_ROW (w
->current_matrix
, w
->window_end_vpos
);
28584 /* If the before-string or display-string contains newlines,
28585 rows_from_pos_range skips to its last row. Move back. */
28586 if (!NILP (before_string
) || !NILP (disp_string
))
28588 struct glyph_row
*prev
;
28589 while ((prev
= r1
- 1, prev
>= first
)
28590 && MATRIX_ROW_END_CHARPOS (prev
) == start_charpos
28591 && prev
->used
[TEXT_AREA
] > 0)
28593 struct glyph
*beg
= prev
->glyphs
[TEXT_AREA
];
28594 glyph
= beg
+ prev
->used
[TEXT_AREA
];
28595 while (--glyph
>= beg
&& NILP (glyph
->object
));
28597 || !(EQ (glyph
->object
, before_string
)
28598 || EQ (glyph
->object
, disp_string
)))
28605 r2
= MATRIX_ROW (w
->current_matrix
, w
->window_end_vpos
);
28606 hlinfo
->mouse_face_past_end
= 1;
28608 else if (!NILP (after_string
))
28610 /* If the after-string has newlines, advance to its last row. */
28611 struct glyph_row
*next
;
28612 struct glyph_row
*last
28613 = MATRIX_ROW (w
->current_matrix
, w
->window_end_vpos
);
28615 for (next
= r2
+ 1;
28617 && next
->used
[TEXT_AREA
] > 0
28618 && EQ (next
->glyphs
[TEXT_AREA
]->object
, after_string
);
28622 /* The rest of the display engine assumes that mouse_face_beg_row is
28623 either above mouse_face_end_row or identical to it. But with
28624 bidi-reordered continued lines, the row for START_CHARPOS could
28625 be below the row for END_CHARPOS. If so, swap the rows and store
28626 them in correct order. */
28629 struct glyph_row
*tem
= r2
;
28635 hlinfo
->mouse_face_beg_row
= MATRIX_ROW_VPOS (r1
, w
->current_matrix
);
28636 hlinfo
->mouse_face_end_row
= MATRIX_ROW_VPOS (r2
, w
->current_matrix
);
28638 /* For a bidi-reordered row, the positions of BEFORE_STRING,
28639 AFTER_STRING, DISP_STRING, START_CHARPOS, and END_CHARPOS
28640 could be anywhere in the row and in any order. The strategy
28641 below is to find the leftmost and the rightmost glyph that
28642 belongs to either of these 3 strings, or whose position is
28643 between START_CHARPOS and END_CHARPOS, and highlight all the
28644 glyphs between those two. This may cover more than just the text
28645 between START_CHARPOS and END_CHARPOS if the range of characters
28646 strides the bidi level boundary, e.g. if the beginning is in R2L
28647 text while the end is in L2R text or vice versa. */
28648 if (!r1
->reversed_p
)
28650 /* This row is in a left to right paragraph. Scan it left to
28652 glyph
= r1
->glyphs
[TEXT_AREA
];
28653 end
= glyph
+ r1
->used
[TEXT_AREA
];
28656 /* Skip truncation glyphs at the start of the glyph row. */
28657 if (MATRIX_ROW_DISPLAYS_TEXT_P (r1
))
28659 && NILP (glyph
->object
)
28660 && glyph
->charpos
< 0;
28662 x
+= glyph
->pixel_width
;
28664 /* Scan the glyph row, looking for BEFORE_STRING, AFTER_STRING,
28665 or DISP_STRING, and the first glyph from buffer whose
28666 position is between START_CHARPOS and END_CHARPOS. */
28668 && !NILP (glyph
->object
)
28669 && !EQ (glyph
->object
, disp_string
)
28670 && !(BUFFERP (glyph
->object
)
28671 && (glyph
->charpos
>= start_charpos
28672 && glyph
->charpos
< end_charpos
));
28675 /* BEFORE_STRING or AFTER_STRING are only relevant if they
28676 are present at buffer positions between START_CHARPOS and
28677 END_CHARPOS, or if they come from an overlay. */
28678 if (EQ (glyph
->object
, before_string
))
28680 pos
= string_buffer_position (before_string
,
28682 /* If pos == 0, it means before_string came from an
28683 overlay, not from a buffer position. */
28684 if (!pos
|| (pos
>= start_charpos
&& pos
< end_charpos
))
28687 else if (EQ (glyph
->object
, after_string
))
28689 pos
= string_buffer_position (after_string
, end_charpos
);
28690 if (!pos
|| (pos
>= start_charpos
&& pos
< end_charpos
))
28693 x
+= glyph
->pixel_width
;
28695 hlinfo
->mouse_face_beg_x
= x
;
28696 hlinfo
->mouse_face_beg_col
= glyph
- r1
->glyphs
[TEXT_AREA
];
28700 /* This row is in a right to left paragraph. Scan it right to
28704 end
= r1
->glyphs
[TEXT_AREA
] - 1;
28705 glyph
= end
+ r1
->used
[TEXT_AREA
];
28707 /* Skip truncation glyphs at the start of the glyph row. */
28708 if (MATRIX_ROW_DISPLAYS_TEXT_P (r1
))
28710 && NILP (glyph
->object
)
28711 && glyph
->charpos
< 0;
28715 /* Scan the glyph row, looking for BEFORE_STRING, AFTER_STRING,
28716 or DISP_STRING, and the first glyph from buffer whose
28717 position is between START_CHARPOS and END_CHARPOS. */
28719 && !NILP (glyph
->object
)
28720 && !EQ (glyph
->object
, disp_string
)
28721 && !(BUFFERP (glyph
->object
)
28722 && (glyph
->charpos
>= start_charpos
28723 && glyph
->charpos
< end_charpos
));
28726 /* BEFORE_STRING or AFTER_STRING are only relevant if they
28727 are present at buffer positions between START_CHARPOS and
28728 END_CHARPOS, or if they come from an overlay. */
28729 if (EQ (glyph
->object
, before_string
))
28731 pos
= string_buffer_position (before_string
, start_charpos
);
28732 /* If pos == 0, it means before_string came from an
28733 overlay, not from a buffer position. */
28734 if (!pos
|| (pos
>= start_charpos
&& pos
< end_charpos
))
28737 else if (EQ (glyph
->object
, after_string
))
28739 pos
= string_buffer_position (after_string
, end_charpos
);
28740 if (!pos
|| (pos
>= start_charpos
&& pos
< end_charpos
))
28745 glyph
++; /* first glyph to the right of the highlighted area */
28746 for (g
= r1
->glyphs
[TEXT_AREA
], x
= r1
->x
; g
< glyph
; g
++)
28747 x
+= g
->pixel_width
;
28748 hlinfo
->mouse_face_beg_x
= x
;
28749 hlinfo
->mouse_face_beg_col
= glyph
- r1
->glyphs
[TEXT_AREA
];
28752 /* If the highlight ends in a different row, compute GLYPH and END
28753 for the end row. Otherwise, reuse the values computed above for
28754 the row where the highlight begins. */
28757 if (!r2
->reversed_p
)
28759 glyph
= r2
->glyphs
[TEXT_AREA
];
28760 end
= glyph
+ r2
->used
[TEXT_AREA
];
28765 end
= r2
->glyphs
[TEXT_AREA
] - 1;
28766 glyph
= end
+ r2
->used
[TEXT_AREA
];
28770 if (!r2
->reversed_p
)
28772 /* Skip truncation and continuation glyphs near the end of the
28773 row, and also blanks and stretch glyphs inserted by
28774 extend_face_to_end_of_line. */
28776 && NILP ((end
- 1)->object
))
28778 /* Scan the rest of the glyph row from the end, looking for the
28779 first glyph that comes from BEFORE_STRING, AFTER_STRING, or
28780 DISP_STRING, or whose position is between START_CHARPOS
28784 && !NILP (end
->object
)
28785 && !EQ (end
->object
, disp_string
)
28786 && !(BUFFERP (end
->object
)
28787 && (end
->charpos
>= start_charpos
28788 && end
->charpos
< end_charpos
));
28791 /* BEFORE_STRING or AFTER_STRING are only relevant if they
28792 are present at buffer positions between START_CHARPOS and
28793 END_CHARPOS, or if they come from an overlay. */
28794 if (EQ (end
->object
, before_string
))
28796 pos
= string_buffer_position (before_string
, start_charpos
);
28797 if (!pos
|| (pos
>= start_charpos
&& pos
< end_charpos
))
28800 else if (EQ (end
->object
, after_string
))
28802 pos
= string_buffer_position (after_string
, end_charpos
);
28803 if (!pos
|| (pos
>= start_charpos
&& pos
< end_charpos
))
28807 /* Find the X coordinate of the last glyph to be highlighted. */
28808 for (; glyph
<= end
; ++glyph
)
28809 x
+= glyph
->pixel_width
;
28811 hlinfo
->mouse_face_end_x
= x
;
28812 hlinfo
->mouse_face_end_col
= glyph
- r2
->glyphs
[TEXT_AREA
];
28816 /* Skip truncation and continuation glyphs near the end of the
28817 row, and also blanks and stretch glyphs inserted by
28818 extend_face_to_end_of_line. */
28822 && NILP (end
->object
))
28824 x
+= end
->pixel_width
;
28827 /* Scan the rest of the glyph row from the end, looking for the
28828 first glyph that comes from BEFORE_STRING, AFTER_STRING, or
28829 DISP_STRING, or whose position is between START_CHARPOS
28833 && !NILP (end
->object
)
28834 && !EQ (end
->object
, disp_string
)
28835 && !(BUFFERP (end
->object
)
28836 && (end
->charpos
>= start_charpos
28837 && end
->charpos
< end_charpos
));
28840 /* BEFORE_STRING or AFTER_STRING are only relevant if they
28841 are present at buffer positions between START_CHARPOS and
28842 END_CHARPOS, or if they come from an overlay. */
28843 if (EQ (end
->object
, before_string
))
28845 pos
= string_buffer_position (before_string
, start_charpos
);
28846 if (!pos
|| (pos
>= start_charpos
&& pos
< end_charpos
))
28849 else if (EQ (end
->object
, after_string
))
28851 pos
= string_buffer_position (after_string
, end_charpos
);
28852 if (!pos
|| (pos
>= start_charpos
&& pos
< end_charpos
))
28855 x
+= end
->pixel_width
;
28857 /* If we exited the above loop because we arrived at the last
28858 glyph of the row, and its buffer position is still not in
28859 range, it means the last character in range is the preceding
28860 newline. Bump the end column and x values to get past the
28863 && BUFFERP (end
->object
)
28864 && (end
->charpos
< start_charpos
28865 || end
->charpos
>= end_charpos
))
28867 x
+= end
->pixel_width
;
28870 hlinfo
->mouse_face_end_x
= x
;
28871 hlinfo
->mouse_face_end_col
= end
- r2
->glyphs
[TEXT_AREA
];
28874 hlinfo
->mouse_face_window
= window
;
28875 hlinfo
->mouse_face_face_id
28876 = face_at_buffer_position (w
, mouse_charpos
, &ignore
,
28878 !hlinfo
->mouse_face_hidden
, -1);
28879 show_mouse_face (hlinfo
, DRAW_MOUSE_FACE
);
28882 /* The following function is not used anymore (replaced with
28883 mouse_face_from_string_pos), but I leave it here for the time
28884 being, in case someone would. */
28886 #if 0 /* not used */
28888 /* Find the position of the glyph for position POS in OBJECT in
28889 window W's current matrix, and return in *X, *Y the pixel
28890 coordinates, and return in *HPOS, *VPOS the column/row of the glyph.
28892 RIGHT_P non-zero means return the position of the right edge of the
28893 glyph, RIGHT_P zero means return the left edge position.
28895 If no glyph for POS exists in the matrix, return the position of
28896 the glyph with the next smaller position that is in the matrix, if
28897 RIGHT_P is zero. If RIGHT_P is non-zero, and no glyph for POS
28898 exists in the matrix, return the position of the glyph with the
28899 next larger position in OBJECT.
28901 Value is non-zero if a glyph was found. */
28904 fast_find_string_pos (struct window
*w
, ptrdiff_t pos
, Lisp_Object object
,
28905 int *hpos
, int *vpos
, int *x
, int *y
, int right_p
)
28907 int yb
= window_text_bottom_y (w
);
28908 struct glyph_row
*r
;
28909 struct glyph
*best_glyph
= NULL
;
28910 struct glyph_row
*best_row
= NULL
;
28913 for (r
= MATRIX_FIRST_TEXT_ROW (w
->current_matrix
);
28914 r
->enabled_p
&& r
->y
< yb
;
28917 struct glyph
*g
= r
->glyphs
[TEXT_AREA
];
28918 struct glyph
*e
= g
+ r
->used
[TEXT_AREA
];
28921 for (gx
= r
->x
; g
< e
; gx
+= g
->pixel_width
, ++g
)
28922 if (EQ (g
->object
, object
))
28924 if (g
->charpos
== pos
)
28931 else if (best_glyph
== NULL
28932 || ((eabs (g
->charpos
- pos
)
28933 < eabs (best_glyph
->charpos
- pos
))
28936 : g
->charpos
> pos
)))
28950 *hpos
= best_glyph
- best_row
->glyphs
[TEXT_AREA
];
28954 *x
+= best_glyph
->pixel_width
;
28959 *vpos
= MATRIX_ROW_VPOS (best_row
, w
->current_matrix
);
28962 return best_glyph
!= NULL
;
28964 #endif /* not used */
28966 /* Find the positions of the first and the last glyphs in window W's
28967 current matrix that occlude positions [STARTPOS..ENDPOS) in OBJECT
28968 (assumed to be a string), and return in HLINFO's mouse_face_*
28969 members the pixel and column/row coordinates of those glyphs. */
28972 mouse_face_from_string_pos (struct window
*w
, Mouse_HLInfo
*hlinfo
,
28973 Lisp_Object object
,
28974 ptrdiff_t startpos
, ptrdiff_t endpos
)
28976 int yb
= window_text_bottom_y (w
);
28977 struct glyph_row
*r
;
28978 struct glyph
*g
, *e
;
28982 /* Find the glyph row with at least one position in the range
28983 [STARTPOS..ENDPOS), and the first glyph in that row whose
28984 position belongs to that range. */
28985 for (r
= MATRIX_FIRST_TEXT_ROW (w
->current_matrix
);
28986 r
->enabled_p
&& r
->y
< yb
;
28989 if (!r
->reversed_p
)
28991 g
= r
->glyphs
[TEXT_AREA
];
28992 e
= g
+ r
->used
[TEXT_AREA
];
28993 for (gx
= r
->x
; g
< e
; gx
+= g
->pixel_width
, ++g
)
28994 if (EQ (g
->object
, object
)
28995 && startpos
<= g
->charpos
&& g
->charpos
< endpos
)
28997 hlinfo
->mouse_face_beg_row
28998 = MATRIX_ROW_VPOS (r
, w
->current_matrix
);
28999 hlinfo
->mouse_face_beg_col
= g
- r
->glyphs
[TEXT_AREA
];
29000 hlinfo
->mouse_face_beg_x
= gx
;
29009 e
= r
->glyphs
[TEXT_AREA
];
29010 g
= e
+ r
->used
[TEXT_AREA
];
29011 for ( ; g
> e
; --g
)
29012 if (EQ ((g
-1)->object
, object
)
29013 && startpos
<= (g
-1)->charpos
&& (g
-1)->charpos
< endpos
)
29015 hlinfo
->mouse_face_beg_row
29016 = MATRIX_ROW_VPOS (r
, w
->current_matrix
);
29017 hlinfo
->mouse_face_beg_col
= g
- r
->glyphs
[TEXT_AREA
];
29018 for (gx
= r
->x
, g1
= r
->glyphs
[TEXT_AREA
]; g1
< g
; ++g1
)
29019 gx
+= g1
->pixel_width
;
29020 hlinfo
->mouse_face_beg_x
= gx
;
29032 /* Starting with the next row, look for the first row which does NOT
29033 include any glyphs whose positions are in the range. */
29034 for (++r
; r
->enabled_p
&& r
->y
< yb
; ++r
)
29036 g
= r
->glyphs
[TEXT_AREA
];
29037 e
= g
+ r
->used
[TEXT_AREA
];
29039 for ( ; g
< e
; ++g
)
29040 if (EQ (g
->object
, object
)
29041 && startpos
<= g
->charpos
&& g
->charpos
< endpos
)
29050 /* The highlighted region ends on the previous row. */
29053 /* Set the end row. */
29054 hlinfo
->mouse_face_end_row
= MATRIX_ROW_VPOS (r
, w
->current_matrix
);
29056 /* Compute and set the end column and the end column's horizontal
29057 pixel coordinate. */
29058 if (!r
->reversed_p
)
29060 g
= r
->glyphs
[TEXT_AREA
];
29061 e
= g
+ r
->used
[TEXT_AREA
];
29062 for ( ; e
> g
; --e
)
29063 if (EQ ((e
-1)->object
, object
)
29064 && startpos
<= (e
-1)->charpos
&& (e
-1)->charpos
< endpos
)
29066 hlinfo
->mouse_face_end_col
= e
- g
;
29068 for (gx
= r
->x
; g
< e
; ++g
)
29069 gx
+= g
->pixel_width
;
29070 hlinfo
->mouse_face_end_x
= gx
;
29074 e
= r
->glyphs
[TEXT_AREA
];
29075 g
= e
+ r
->used
[TEXT_AREA
];
29076 for (gx
= r
->x
; e
< g
; ++e
)
29078 if (EQ (e
->object
, object
)
29079 && startpos
<= e
->charpos
&& e
->charpos
< endpos
)
29081 gx
+= e
->pixel_width
;
29083 hlinfo
->mouse_face_end_col
= e
- r
->glyphs
[TEXT_AREA
];
29084 hlinfo
->mouse_face_end_x
= gx
;
29088 #ifdef HAVE_WINDOW_SYSTEM
29090 /* See if position X, Y is within a hot-spot of an image. */
29093 on_hot_spot_p (Lisp_Object hot_spot
, int x
, int y
)
29095 if (!CONSP (hot_spot
))
29098 if (EQ (XCAR (hot_spot
), Qrect
))
29100 /* CDR is (Top-Left . Bottom-Right) = ((x0 . y0) . (x1 . y1)) */
29101 Lisp_Object rect
= XCDR (hot_spot
);
29105 if (!CONSP (XCAR (rect
)))
29107 if (!CONSP (XCDR (rect
)))
29109 if (!(tem
= XCAR (XCAR (rect
)), INTEGERP (tem
) && x
>= XINT (tem
)))
29111 if (!(tem
= XCDR (XCAR (rect
)), INTEGERP (tem
) && y
>= XINT (tem
)))
29113 if (!(tem
= XCAR (XCDR (rect
)), INTEGERP (tem
) && x
<= XINT (tem
)))
29115 if (!(tem
= XCDR (XCDR (rect
)), INTEGERP (tem
) && y
<= XINT (tem
)))
29119 else if (EQ (XCAR (hot_spot
), Qcircle
))
29121 /* CDR is (Center . Radius) = ((x0 . y0) . r) */
29122 Lisp_Object circ
= XCDR (hot_spot
);
29123 Lisp_Object lr
, lx0
, ly0
;
29125 && CONSP (XCAR (circ
))
29126 && (lr
= XCDR (circ
), INTEGERP (lr
) || FLOATP (lr
))
29127 && (lx0
= XCAR (XCAR (circ
)), INTEGERP (lx0
))
29128 && (ly0
= XCDR (XCAR (circ
)), INTEGERP (ly0
)))
29130 double r
= XFLOATINT (lr
);
29131 double dx
= XINT (lx0
) - x
;
29132 double dy
= XINT (ly0
) - y
;
29133 return (dx
* dx
+ dy
* dy
<= r
* r
);
29136 else if (EQ (XCAR (hot_spot
), Qpoly
))
29138 /* CDR is [x0 y0 x1 y1 x2 y2 ...x(n-1) y(n-1)] */
29139 if (VECTORP (XCDR (hot_spot
)))
29141 struct Lisp_Vector
*v
= XVECTOR (XCDR (hot_spot
));
29142 Lisp_Object
*poly
= v
->contents
;
29143 ptrdiff_t n
= v
->header
.size
;
29146 Lisp_Object lx
, ly
;
29149 /* Need an even number of coordinates, and at least 3 edges. */
29150 if (n
< 6 || n
& 1)
29153 /* Count edge segments intersecting line from (X,Y) to (X,infinity).
29154 If count is odd, we are inside polygon. Pixels on edges
29155 may or may not be included depending on actual geometry of the
29157 if ((lx
= poly
[n
-2], !INTEGERP (lx
))
29158 || (ly
= poly
[n
-1], !INTEGERP (lx
)))
29160 x0
= XINT (lx
), y0
= XINT (ly
);
29161 for (i
= 0; i
< n
; i
+= 2)
29163 int x1
= x0
, y1
= y0
;
29164 if ((lx
= poly
[i
], !INTEGERP (lx
))
29165 || (ly
= poly
[i
+1], !INTEGERP (ly
)))
29167 x0
= XINT (lx
), y0
= XINT (ly
);
29169 /* Does this segment cross the X line? */
29177 if (y
> y0
&& y
> y1
)
29179 if (y
< y0
+ ((y1
- y0
) * (x
- x0
)) / (x1
- x0
))
29189 find_hot_spot (Lisp_Object map
, int x
, int y
)
29191 while (CONSP (map
))
29193 if (CONSP (XCAR (map
))
29194 && on_hot_spot_p (XCAR (XCAR (map
)), x
, y
))
29202 DEFUN ("lookup-image-map", Flookup_image_map
, Slookup_image_map
,
29204 doc
: /* Lookup in image map MAP coordinates X and Y.
29205 An image map is an alist where each element has the format (AREA ID PLIST).
29206 An AREA is specified as either a rectangle, a circle, or a polygon:
29207 A rectangle is a cons (rect . ((x0 . y0) . (x1 . y1))) specifying the
29208 pixel coordinates of the upper left and bottom right corners.
29209 A circle is a cons (circle . ((x0 . y0) . r)) specifying the center
29210 and the radius of the circle; r may be a float or integer.
29211 A polygon is a cons (poly . [x0 y0 x1 y1 ...]) where each pair in the
29212 vector describes one corner in the polygon.
29213 Returns the alist element for the first matching AREA in MAP. */)
29214 (Lisp_Object map
, Lisp_Object x
, Lisp_Object y
)
29222 return find_hot_spot (map
,
29223 clip_to_bounds (INT_MIN
, XINT (x
), INT_MAX
),
29224 clip_to_bounds (INT_MIN
, XINT (y
), INT_MAX
));
29228 /* Display frame CURSOR, optionally using shape defined by POINTER. */
29230 define_frame_cursor1 (struct frame
*f
, Cursor cursor
, Lisp_Object pointer
)
29232 /* Do not change cursor shape while dragging mouse. */
29233 if (!NILP (do_mouse_tracking
))
29236 if (!NILP (pointer
))
29238 if (EQ (pointer
, Qarrow
))
29239 cursor
= FRAME_X_OUTPUT (f
)->nontext_cursor
;
29240 else if (EQ (pointer
, Qhand
))
29241 cursor
= FRAME_X_OUTPUT (f
)->hand_cursor
;
29242 else if (EQ (pointer
, Qtext
))
29243 cursor
= FRAME_X_OUTPUT (f
)->text_cursor
;
29244 else if (EQ (pointer
, intern ("hdrag")))
29245 cursor
= FRAME_X_OUTPUT (f
)->horizontal_drag_cursor
;
29246 else if (EQ (pointer
, intern ("nhdrag")))
29247 cursor
= FRAME_X_OUTPUT (f
)->vertical_drag_cursor
;
29248 #ifdef HAVE_X_WINDOWS
29249 else if (EQ (pointer
, intern ("vdrag")))
29250 cursor
= FRAME_DISPLAY_INFO (f
)->vertical_scroll_bar_cursor
;
29252 else if (EQ (pointer
, intern ("hourglass")))
29253 cursor
= FRAME_X_OUTPUT (f
)->hourglass_cursor
;
29254 else if (EQ (pointer
, Qmodeline
))
29255 cursor
= FRAME_X_OUTPUT (f
)->modeline_cursor
;
29257 cursor
= FRAME_X_OUTPUT (f
)->nontext_cursor
;
29260 if (cursor
!= No_Cursor
)
29261 FRAME_RIF (f
)->define_frame_cursor (f
, cursor
);
29264 #endif /* HAVE_WINDOW_SYSTEM */
29266 /* Take proper action when mouse has moved to the mode or header line
29267 or marginal area AREA of window W, x-position X and y-position Y.
29268 X is relative to the start of the text display area of W, so the
29269 width of bitmap areas and scroll bars must be subtracted to get a
29270 position relative to the start of the mode line. */
29273 note_mode_line_or_margin_highlight (Lisp_Object window
, int x
, int y
,
29274 enum window_part area
)
29276 struct window
*w
= XWINDOW (window
);
29277 struct frame
*f
= XFRAME (w
->frame
);
29278 Mouse_HLInfo
*hlinfo
= MOUSE_HL_INFO (f
);
29279 #ifdef HAVE_WINDOW_SYSTEM
29280 Display_Info
*dpyinfo
;
29282 Cursor cursor
= No_Cursor
;
29283 Lisp_Object pointer
= Qnil
;
29284 int dx
, dy
, width
, height
;
29286 Lisp_Object string
, object
= Qnil
;
29287 Lisp_Object pos
IF_LINT (= Qnil
), help
;
29289 Lisp_Object mouse_face
;
29290 int original_x_pixel
= x
;
29291 struct glyph
* glyph
= NULL
, * row_start_glyph
= NULL
;
29292 struct glyph_row
*row
IF_LINT (= 0);
29294 if (area
== ON_MODE_LINE
|| area
== ON_HEADER_LINE
)
29299 /* Kludge alert: mode_line_string takes X/Y in pixels, but
29300 returns them in row/column units! */
29301 string
= mode_line_string (w
, area
, &x
, &y
, &charpos
,
29302 &object
, &dx
, &dy
, &width
, &height
);
29304 row
= (area
== ON_MODE_LINE
29305 ? MATRIX_MODE_LINE_ROW (w
->current_matrix
)
29306 : MATRIX_HEADER_LINE_ROW (w
->current_matrix
));
29308 /* Find the glyph under the mouse pointer. */
29309 if (row
->mode_line_p
&& row
->enabled_p
)
29311 glyph
= row_start_glyph
= row
->glyphs
[TEXT_AREA
];
29312 end
= glyph
+ row
->used
[TEXT_AREA
];
29314 for (x0
= original_x_pixel
;
29315 glyph
< end
&& x0
>= glyph
->pixel_width
;
29317 x0
-= glyph
->pixel_width
;
29325 x
-= WINDOW_LEFT_SCROLL_BAR_AREA_WIDTH (w
);
29326 /* Kludge alert: marginal_area_string takes X/Y in pixels, but
29327 returns them in row/column units! */
29328 string
= marginal_area_string (w
, area
, &x
, &y
, &charpos
,
29329 &object
, &dx
, &dy
, &width
, &height
);
29334 #ifdef HAVE_WINDOW_SYSTEM
29335 if (IMAGEP (object
))
29337 Lisp_Object image_map
, hotspot
;
29338 if ((image_map
= Fplist_get (XCDR (object
), QCmap
),
29340 && (hotspot
= find_hot_spot (image_map
, dx
, dy
),
29342 && (hotspot
= XCDR (hotspot
), CONSP (hotspot
)))
29346 /* Could check XCAR (hotspot) to see if we enter/leave this hot-spot.
29347 If so, we could look for mouse-enter, mouse-leave
29348 properties in PLIST (and do something...). */
29349 hotspot
= XCDR (hotspot
);
29350 if (CONSP (hotspot
)
29351 && (plist
= XCAR (hotspot
), CONSP (plist
)))
29353 pointer
= Fplist_get (plist
, Qpointer
);
29354 if (NILP (pointer
))
29356 help
= Fplist_get (plist
, Qhelp_echo
);
29359 help_echo_string
= help
;
29360 XSETWINDOW (help_echo_window
, w
);
29361 help_echo_object
= w
->contents
;
29362 help_echo_pos
= charpos
;
29366 if (NILP (pointer
))
29367 pointer
= Fplist_get (XCDR (object
), QCpointer
);
29369 #endif /* HAVE_WINDOW_SYSTEM */
29371 if (STRINGP (string
))
29372 pos
= make_number (charpos
);
29374 /* Set the help text and mouse pointer. If the mouse is on a part
29375 of the mode line without any text (e.g. past the right edge of
29376 the mode line text), use the default help text and pointer. */
29377 if (STRINGP (string
) || area
== ON_MODE_LINE
)
29379 /* Arrange to display the help by setting the global variables
29380 help_echo_string, help_echo_object, and help_echo_pos. */
29383 if (STRINGP (string
))
29384 help
= Fget_text_property (pos
, Qhelp_echo
, string
);
29388 help_echo_string
= help
;
29389 XSETWINDOW (help_echo_window
, w
);
29390 help_echo_object
= string
;
29391 help_echo_pos
= charpos
;
29393 else if (area
== ON_MODE_LINE
)
29395 Lisp_Object default_help
29396 = buffer_local_value (Qmode_line_default_help_echo
,
29399 if (STRINGP (default_help
))
29401 help_echo_string
= default_help
;
29402 XSETWINDOW (help_echo_window
, w
);
29403 help_echo_object
= Qnil
;
29404 help_echo_pos
= -1;
29409 #ifdef HAVE_WINDOW_SYSTEM
29410 /* Change the mouse pointer according to what is under it. */
29411 if (FRAME_WINDOW_P (f
))
29413 bool draggable
= (! WINDOW_BOTTOMMOST_P (w
)
29415 || NILP (Vresize_mini_windows
));
29417 dpyinfo
= FRAME_DISPLAY_INFO (f
);
29418 if (STRINGP (string
))
29420 cursor
= FRAME_X_OUTPUT (f
)->nontext_cursor
;
29422 if (NILP (pointer
))
29423 pointer
= Fget_text_property (pos
, Qpointer
, string
);
29425 /* Change the mouse pointer according to what is under X/Y. */
29427 && ((area
== ON_MODE_LINE
) || (area
== ON_HEADER_LINE
)))
29430 map
= Fget_text_property (pos
, Qlocal_map
, string
);
29431 if (!KEYMAPP (map
))
29432 map
= Fget_text_property (pos
, Qkeymap
, string
);
29433 if (!KEYMAPP (map
) && draggable
)
29434 cursor
= dpyinfo
->vertical_scroll_bar_cursor
;
29437 else if (draggable
)
29438 /* Default mode-line pointer. */
29439 cursor
= FRAME_DISPLAY_INFO (f
)->vertical_scroll_bar_cursor
;
29444 /* Change the mouse face according to what is under X/Y. */
29445 if (STRINGP (string
))
29447 mouse_face
= Fget_text_property (pos
, Qmouse_face
, string
);
29448 if (!NILP (Vmouse_highlight
) && !NILP (mouse_face
)
29449 && ((area
== ON_MODE_LINE
) || (area
== ON_HEADER_LINE
))
29454 struct glyph
* tmp_glyph
;
29458 int total_pixel_width
;
29459 ptrdiff_t begpos
, endpos
, ignore
;
29463 b
= Fprevious_single_property_change (make_number (charpos
+ 1),
29464 Qmouse_face
, string
, Qnil
);
29470 e
= Fnext_single_property_change (pos
, Qmouse_face
, string
, Qnil
);
29472 endpos
= SCHARS (string
);
29476 /* Calculate the glyph position GPOS of GLYPH in the
29477 displayed string, relative to the beginning of the
29478 highlighted part of the string.
29480 Note: GPOS is different from CHARPOS. CHARPOS is the
29481 position of GLYPH in the internal string object. A mode
29482 line string format has structures which are converted to
29483 a flattened string by the Emacs Lisp interpreter. The
29484 internal string is an element of those structures. The
29485 displayed string is the flattened string. */
29486 tmp_glyph
= row_start_glyph
;
29487 while (tmp_glyph
< glyph
29488 && (!(EQ (tmp_glyph
->object
, glyph
->object
)
29489 && begpos
<= tmp_glyph
->charpos
29490 && tmp_glyph
->charpos
< endpos
)))
29492 gpos
= glyph
- tmp_glyph
;
29494 /* Calculate the length GSEQ_LENGTH of the glyph sequence of
29495 the highlighted part of the displayed string to which
29496 GLYPH belongs. Note: GSEQ_LENGTH is different from
29497 SCHARS (STRING), because the latter returns the length of
29498 the internal string. */
29499 for (tmp_glyph
= row
->glyphs
[TEXT_AREA
] + row
->used
[TEXT_AREA
] - 1;
29501 && (!(EQ (tmp_glyph
->object
, glyph
->object
)
29502 && begpos
<= tmp_glyph
->charpos
29503 && tmp_glyph
->charpos
< endpos
));
29506 gseq_length
= gpos
+ (tmp_glyph
- glyph
) + 1;
29508 /* Calculate the total pixel width of all the glyphs between
29509 the beginning of the highlighted area and GLYPH. */
29510 total_pixel_width
= 0;
29511 for (tmp_glyph
= glyph
- gpos
; tmp_glyph
!= glyph
; tmp_glyph
++)
29512 total_pixel_width
+= tmp_glyph
->pixel_width
;
29514 /* Pre calculation of re-rendering position. Note: X is in
29515 column units here, after the call to mode_line_string or
29516 marginal_area_string. */
29518 vpos
= (area
== ON_MODE_LINE
29519 ? (w
->current_matrix
)->nrows
- 1
29522 /* If GLYPH's position is included in the region that is
29523 already drawn in mouse face, we have nothing to do. */
29524 if ( EQ (window
, hlinfo
->mouse_face_window
)
29525 && (!row
->reversed_p
29526 ? (hlinfo
->mouse_face_beg_col
<= hpos
29527 && hpos
< hlinfo
->mouse_face_end_col
)
29528 /* In R2L rows we swap BEG and END, see below. */
29529 : (hlinfo
->mouse_face_end_col
<= hpos
29530 && hpos
< hlinfo
->mouse_face_beg_col
))
29531 && hlinfo
->mouse_face_beg_row
== vpos
)
29534 if (clear_mouse_face (hlinfo
))
29535 cursor
= No_Cursor
;
29537 if (!row
->reversed_p
)
29539 hlinfo
->mouse_face_beg_col
= hpos
;
29540 hlinfo
->mouse_face_beg_x
= original_x_pixel
29541 - (total_pixel_width
+ dx
);
29542 hlinfo
->mouse_face_end_col
= hpos
+ gseq_length
;
29543 hlinfo
->mouse_face_end_x
= 0;
29547 /* In R2L rows, show_mouse_face expects BEG and END
29548 coordinates to be swapped. */
29549 hlinfo
->mouse_face_end_col
= hpos
;
29550 hlinfo
->mouse_face_end_x
= original_x_pixel
29551 - (total_pixel_width
+ dx
);
29552 hlinfo
->mouse_face_beg_col
= hpos
+ gseq_length
;
29553 hlinfo
->mouse_face_beg_x
= 0;
29556 hlinfo
->mouse_face_beg_row
= vpos
;
29557 hlinfo
->mouse_face_end_row
= hlinfo
->mouse_face_beg_row
;
29558 hlinfo
->mouse_face_past_end
= 0;
29559 hlinfo
->mouse_face_window
= window
;
29561 hlinfo
->mouse_face_face_id
= face_at_string_position (w
, string
,
29566 show_mouse_face (hlinfo
, DRAW_MOUSE_FACE
);
29568 if (NILP (pointer
))
29571 else if ((area
== ON_MODE_LINE
) || (area
== ON_HEADER_LINE
))
29572 clear_mouse_face (hlinfo
);
29574 #ifdef HAVE_WINDOW_SYSTEM
29575 if (FRAME_WINDOW_P (f
))
29576 define_frame_cursor1 (f
, cursor
, pointer
);
29582 Take proper action when the mouse has moved to position X, Y on
29583 frame F with regards to highlighting portions of display that have
29584 mouse-face properties. Also de-highlight portions of display where
29585 the mouse was before, set the mouse pointer shape as appropriate
29586 for the mouse coordinates, and activate help echo (tooltips).
29587 X and Y can be negative or out of range. */
29590 note_mouse_highlight (struct frame
*f
, int x
, int y
)
29592 Mouse_HLInfo
*hlinfo
= MOUSE_HL_INFO (f
);
29593 enum window_part part
= ON_NOTHING
;
29594 Lisp_Object window
;
29596 Cursor cursor
= No_Cursor
;
29597 Lisp_Object pointer
= Qnil
; /* Takes precedence over cursor! */
29600 /* When a menu is active, don't highlight because this looks odd. */
29601 #if defined (USE_X_TOOLKIT) || defined (USE_GTK) || defined (HAVE_NS) || defined (MSDOS)
29602 if (popup_activated ())
29606 if (!f
->glyphs_initialized_p
29607 || f
->pointer_invisible
)
29610 hlinfo
->mouse_face_mouse_x
= x
;
29611 hlinfo
->mouse_face_mouse_y
= y
;
29612 hlinfo
->mouse_face_mouse_frame
= f
;
29614 if (hlinfo
->mouse_face_defer
)
29617 /* Which window is that in? */
29618 window
= window_from_coordinates (f
, x
, y
, &part
, 1);
29620 /* If displaying active text in another window, clear that. */
29621 if (! EQ (window
, hlinfo
->mouse_face_window
)
29622 /* Also clear if we move out of text area in same window. */
29623 || (!NILP (hlinfo
->mouse_face_window
)
29626 && part
!= ON_MODE_LINE
29627 && part
!= ON_HEADER_LINE
))
29628 clear_mouse_face (hlinfo
);
29630 /* Not on a window -> return. */
29631 if (!WINDOWP (window
))
29634 /* Reset help_echo_string. It will get recomputed below. */
29635 help_echo_string
= Qnil
;
29637 /* Convert to window-relative pixel coordinates. */
29638 w
= XWINDOW (window
);
29639 frame_to_window_pixel_xy (w
, &x
, &y
);
29641 #if defined (HAVE_WINDOW_SYSTEM) && ! defined (USE_GTK) && ! defined (HAVE_NS)
29642 /* Handle tool-bar window differently since it doesn't display a
29644 if (EQ (window
, f
->tool_bar_window
))
29646 note_tool_bar_highlight (f
, x
, y
);
29651 /* Mouse is on the mode, header line or margin? */
29652 if (part
== ON_MODE_LINE
|| part
== ON_HEADER_LINE
29653 || part
== ON_LEFT_MARGIN
|| part
== ON_RIGHT_MARGIN
)
29655 note_mode_line_or_margin_highlight (window
, x
, y
, part
);
29657 #ifdef HAVE_WINDOW_SYSTEM
29658 if (part
== ON_LEFT_MARGIN
|| part
== ON_RIGHT_MARGIN
)
29660 cursor
= FRAME_X_OUTPUT (f
)->nontext_cursor
;
29661 /* Show non-text cursor (Bug#16647). */
29669 #ifdef HAVE_WINDOW_SYSTEM
29670 if (part
== ON_VERTICAL_BORDER
)
29672 cursor
= FRAME_X_OUTPUT (f
)->horizontal_drag_cursor
;
29673 help_echo_string
= build_string ("drag-mouse-1: resize");
29675 else if (part
== ON_RIGHT_DIVIDER
)
29677 cursor
= FRAME_X_OUTPUT (f
)->horizontal_drag_cursor
;
29678 help_echo_string
= build_string ("drag-mouse-1: resize");
29680 else if (part
== ON_BOTTOM_DIVIDER
)
29681 if (! WINDOW_BOTTOMMOST_P (w
)
29683 || NILP (Vresize_mini_windows
))
29685 cursor
= FRAME_X_OUTPUT (f
)->vertical_drag_cursor
;
29686 help_echo_string
= build_string ("drag-mouse-1: resize");
29689 cursor
= FRAME_X_OUTPUT (f
)->nontext_cursor
;
29690 else if (part
== ON_LEFT_FRINGE
|| part
== ON_RIGHT_FRINGE
29691 || part
== ON_VERTICAL_SCROLL_BAR
29692 || part
== ON_HORIZONTAL_SCROLL_BAR
)
29693 cursor
= FRAME_X_OUTPUT (f
)->nontext_cursor
;
29695 cursor
= FRAME_X_OUTPUT (f
)->text_cursor
;
29698 /* Are we in a window whose display is up to date?
29699 And verify the buffer's text has not changed. */
29700 b
= XBUFFER (w
->contents
);
29701 if (part
== ON_TEXT
&& w
->window_end_valid
&& !window_outdated (w
))
29703 int hpos
, vpos
, dx
, dy
, area
= LAST_AREA
;
29705 struct glyph
*glyph
;
29706 Lisp_Object object
;
29707 Lisp_Object mouse_face
= Qnil
, position
;
29708 Lisp_Object
*overlay_vec
= NULL
;
29709 ptrdiff_t i
, noverlays
;
29710 struct buffer
*obuf
;
29711 ptrdiff_t obegv
, ozv
;
29714 /* Find the glyph under X/Y. */
29715 glyph
= x_y_to_hpos_vpos (w
, x
, y
, &hpos
, &vpos
, &dx
, &dy
, &area
);
29717 #ifdef HAVE_WINDOW_SYSTEM
29718 /* Look for :pointer property on image. */
29719 if (glyph
!= NULL
&& glyph
->type
== IMAGE_GLYPH
)
29721 struct image
*img
= IMAGE_FROM_ID (f
, glyph
->u
.img_id
);
29722 if (img
!= NULL
&& IMAGEP (img
->spec
))
29724 Lisp_Object image_map
, hotspot
;
29725 if ((image_map
= Fplist_get (XCDR (img
->spec
), QCmap
),
29727 && (hotspot
= find_hot_spot (image_map
,
29728 glyph
->slice
.img
.x
+ dx
,
29729 glyph
->slice
.img
.y
+ dy
),
29731 && (hotspot
= XCDR (hotspot
), CONSP (hotspot
)))
29735 /* Could check XCAR (hotspot) to see if we enter/leave
29737 If so, we could look for mouse-enter, mouse-leave
29738 properties in PLIST (and do something...). */
29739 hotspot
= XCDR (hotspot
);
29740 if (CONSP (hotspot
)
29741 && (plist
= XCAR (hotspot
), CONSP (plist
)))
29743 pointer
= Fplist_get (plist
, Qpointer
);
29744 if (NILP (pointer
))
29746 help_echo_string
= Fplist_get (plist
, Qhelp_echo
);
29747 if (!NILP (help_echo_string
))
29749 help_echo_window
= window
;
29750 help_echo_object
= glyph
->object
;
29751 help_echo_pos
= glyph
->charpos
;
29755 if (NILP (pointer
))
29756 pointer
= Fplist_get (XCDR (img
->spec
), QCpointer
);
29759 #endif /* HAVE_WINDOW_SYSTEM */
29761 /* Clear mouse face if X/Y not over text. */
29763 || area
!= TEXT_AREA
29764 || !MATRIX_ROW_DISPLAYS_TEXT_P (MATRIX_ROW (w
->current_matrix
, vpos
))
29765 /* Glyph's OBJECT is nil for glyphs inserted by the
29766 display engine for its internal purposes, like truncation
29767 and continuation glyphs and blanks beyond the end of
29768 line's text on text terminals. If we are over such a
29769 glyph, we are not over any text. */
29770 || NILP (glyph
->object
)
29771 /* R2L rows have a stretch glyph at their front, which
29772 stands for no text, whereas L2R rows have no glyphs at
29773 all beyond the end of text. Treat such stretch glyphs
29774 like we do with NULL glyphs in L2R rows. */
29775 || (MATRIX_ROW (w
->current_matrix
, vpos
)->reversed_p
29776 && glyph
== MATRIX_ROW_GLYPH_START (w
->current_matrix
, vpos
)
29777 && glyph
->type
== STRETCH_GLYPH
29778 && glyph
->avoid_cursor_p
))
29780 if (clear_mouse_face (hlinfo
))
29781 cursor
= No_Cursor
;
29782 #ifdef HAVE_WINDOW_SYSTEM
29783 if (FRAME_WINDOW_P (f
) && NILP (pointer
))
29785 if (area
!= TEXT_AREA
)
29786 cursor
= FRAME_X_OUTPUT (f
)->nontext_cursor
;
29788 pointer
= Vvoid_text_area_pointer
;
29794 pos
= glyph
->charpos
;
29795 object
= glyph
->object
;
29796 if (!STRINGP (object
) && !BUFFERP (object
))
29799 /* If we get an out-of-range value, return now; avoid an error. */
29800 if (BUFFERP (object
) && pos
> BUF_Z (b
))
29803 /* Make the window's buffer temporarily current for
29804 overlays_at and compute_char_face. */
29805 obuf
= current_buffer
;
29806 current_buffer
= b
;
29812 /* Is this char mouse-active or does it have help-echo? */
29813 position
= make_number (pos
);
29817 if (BUFFERP (object
))
29819 /* Put all the overlays we want in a vector in overlay_vec. */
29820 GET_OVERLAYS_AT (pos
, overlay_vec
, noverlays
, NULL
, 0);
29821 /* Sort overlays into increasing priority order. */
29822 noverlays
= sort_overlays (overlay_vec
, noverlays
, w
);
29827 if (NILP (Vmouse_highlight
))
29829 clear_mouse_face (hlinfo
);
29830 goto check_help_echo
;
29833 same_region
= coords_in_mouse_face_p (w
, hpos
, vpos
);
29836 cursor
= No_Cursor
;
29838 /* Check mouse-face highlighting. */
29840 /* If there exists an overlay with mouse-face overlapping
29841 the one we are currently highlighting, we have to
29842 check if we enter the overlapping overlay, and then
29843 highlight only that. */
29844 || (OVERLAYP (hlinfo
->mouse_face_overlay
)
29845 && mouse_face_overlay_overlaps (hlinfo
->mouse_face_overlay
)))
29847 /* Find the highest priority overlay with a mouse-face. */
29848 Lisp_Object overlay
= Qnil
;
29849 for (i
= noverlays
- 1; i
>= 0 && NILP (overlay
); --i
)
29851 mouse_face
= Foverlay_get (overlay_vec
[i
], Qmouse_face
);
29852 if (!NILP (mouse_face
))
29853 overlay
= overlay_vec
[i
];
29856 /* If we're highlighting the same overlay as before, there's
29857 no need to do that again. */
29858 if (!NILP (overlay
) && EQ (overlay
, hlinfo
->mouse_face_overlay
))
29859 goto check_help_echo
;
29860 hlinfo
->mouse_face_overlay
= overlay
;
29862 /* Clear the display of the old active region, if any. */
29863 if (clear_mouse_face (hlinfo
))
29864 cursor
= No_Cursor
;
29866 /* If no overlay applies, get a text property. */
29867 if (NILP (overlay
))
29868 mouse_face
= Fget_text_property (position
, Qmouse_face
, object
);
29870 /* Next, compute the bounds of the mouse highlighting and
29872 if (!NILP (mouse_face
) && STRINGP (object
))
29874 /* The mouse-highlighting comes from a display string
29875 with a mouse-face. */
29879 s
= Fprevious_single_property_change
29880 (make_number (pos
+ 1), Qmouse_face
, object
, Qnil
);
29881 e
= Fnext_single_property_change
29882 (position
, Qmouse_face
, object
, Qnil
);
29884 s
= make_number (0);
29886 e
= make_number (SCHARS (object
));
29887 mouse_face_from_string_pos (w
, hlinfo
, object
,
29888 XINT (s
), XINT (e
));
29889 hlinfo
->mouse_face_past_end
= 0;
29890 hlinfo
->mouse_face_window
= window
;
29891 hlinfo
->mouse_face_face_id
29892 = face_at_string_position (w
, object
, pos
, 0, &ignore
,
29893 glyph
->face_id
, 1);
29894 show_mouse_face (hlinfo
, DRAW_MOUSE_FACE
);
29895 cursor
= No_Cursor
;
29899 /* The mouse-highlighting, if any, comes from an overlay
29900 or text property in the buffer. */
29901 Lisp_Object buffer
IF_LINT (= Qnil
);
29902 Lisp_Object disp_string
IF_LINT (= Qnil
);
29904 if (STRINGP (object
))
29906 /* If we are on a display string with no mouse-face,
29907 check if the text under it has one. */
29908 struct glyph_row
*r
= MATRIX_ROW (w
->current_matrix
, vpos
);
29909 ptrdiff_t start
= MATRIX_ROW_START_CHARPOS (r
);
29910 pos
= string_buffer_position (object
, start
);
29913 mouse_face
= get_char_property_and_overlay
29914 (make_number (pos
), Qmouse_face
, w
->contents
, &overlay
);
29915 buffer
= w
->contents
;
29916 disp_string
= object
;
29922 disp_string
= Qnil
;
29925 if (!NILP (mouse_face
))
29927 Lisp_Object before
, after
;
29928 Lisp_Object before_string
, after_string
;
29929 /* To correctly find the limits of mouse highlight
29930 in a bidi-reordered buffer, we must not use the
29931 optimization of limiting the search in
29932 previous-single-property-change and
29933 next-single-property-change, because
29934 rows_from_pos_range needs the real start and end
29935 positions to DTRT in this case. That's because
29936 the first row visible in a window does not
29937 necessarily display the character whose position
29938 is the smallest. */
29940 = NILP (BVAR (XBUFFER (buffer
), bidi_display_reordering
))
29941 ? Fmarker_position (w
->start
)
29944 = NILP (BVAR (XBUFFER (buffer
), bidi_display_reordering
))
29945 ? make_number (BUF_Z (XBUFFER (buffer
))
29946 - w
->window_end_pos
)
29949 if (NILP (overlay
))
29951 /* Handle the text property case. */
29952 before
= Fprevious_single_property_change
29953 (make_number (pos
+ 1), Qmouse_face
, buffer
, lim1
);
29954 after
= Fnext_single_property_change
29955 (make_number (pos
), Qmouse_face
, buffer
, lim2
);
29956 before_string
= after_string
= Qnil
;
29960 /* Handle the overlay case. */
29961 before
= Foverlay_start (overlay
);
29962 after
= Foverlay_end (overlay
);
29963 before_string
= Foverlay_get (overlay
, Qbefore_string
);
29964 after_string
= Foverlay_get (overlay
, Qafter_string
);
29966 if (!STRINGP (before_string
)) before_string
= Qnil
;
29967 if (!STRINGP (after_string
)) after_string
= Qnil
;
29970 mouse_face_from_buffer_pos (window
, hlinfo
, pos
,
29973 : XFASTINT (before
),
29975 ? BUF_Z (XBUFFER (buffer
))
29976 : XFASTINT (after
),
29977 before_string
, after_string
,
29979 cursor
= No_Cursor
;
29986 /* Look for a `help-echo' property. */
29987 if (NILP (help_echo_string
)) {
29988 Lisp_Object help
, overlay
;
29990 /* Check overlays first. */
29991 help
= overlay
= Qnil
;
29992 for (i
= noverlays
- 1; i
>= 0 && NILP (help
); --i
)
29994 overlay
= overlay_vec
[i
];
29995 help
= Foverlay_get (overlay
, Qhelp_echo
);
30000 help_echo_string
= help
;
30001 help_echo_window
= window
;
30002 help_echo_object
= overlay
;
30003 help_echo_pos
= pos
;
30007 Lisp_Object obj
= glyph
->object
;
30008 ptrdiff_t charpos
= glyph
->charpos
;
30010 /* Try text properties. */
30013 && charpos
< SCHARS (obj
))
30015 help
= Fget_text_property (make_number (charpos
),
30019 /* If the string itself doesn't specify a help-echo,
30020 see if the buffer text ``under'' it does. */
30021 struct glyph_row
*r
30022 = MATRIX_ROW (w
->current_matrix
, vpos
);
30023 ptrdiff_t start
= MATRIX_ROW_START_CHARPOS (r
);
30024 ptrdiff_t p
= string_buffer_position (obj
, start
);
30027 help
= Fget_char_property (make_number (p
),
30028 Qhelp_echo
, w
->contents
);
30037 else if (BUFFERP (obj
)
30040 help
= Fget_text_property (make_number (charpos
), Qhelp_echo
,
30045 help_echo_string
= help
;
30046 help_echo_window
= window
;
30047 help_echo_object
= obj
;
30048 help_echo_pos
= charpos
;
30053 #ifdef HAVE_WINDOW_SYSTEM
30054 /* Look for a `pointer' property. */
30055 if (FRAME_WINDOW_P (f
) && NILP (pointer
))
30057 /* Check overlays first. */
30058 for (i
= noverlays
- 1; i
>= 0 && NILP (pointer
); --i
)
30059 pointer
= Foverlay_get (overlay_vec
[i
], Qpointer
);
30061 if (NILP (pointer
))
30063 Lisp_Object obj
= glyph
->object
;
30064 ptrdiff_t charpos
= glyph
->charpos
;
30066 /* Try text properties. */
30069 && charpos
< SCHARS (obj
))
30071 pointer
= Fget_text_property (make_number (charpos
),
30073 if (NILP (pointer
))
30075 /* If the string itself doesn't specify a pointer,
30076 see if the buffer text ``under'' it does. */
30077 struct glyph_row
*r
30078 = MATRIX_ROW (w
->current_matrix
, vpos
);
30079 ptrdiff_t start
= MATRIX_ROW_START_CHARPOS (r
);
30080 ptrdiff_t p
= string_buffer_position (obj
, start
);
30082 pointer
= Fget_char_property (make_number (p
),
30083 Qpointer
, w
->contents
);
30086 else if (BUFFERP (obj
)
30089 pointer
= Fget_text_property (make_number (charpos
),
30093 #endif /* HAVE_WINDOW_SYSTEM */
30097 current_buffer
= obuf
;
30103 #ifdef HAVE_WINDOW_SYSTEM
30104 if (FRAME_WINDOW_P (f
))
30105 define_frame_cursor1 (f
, cursor
, pointer
);
30107 /* This is here to prevent a compiler error, about "label at end of
30108 compound statement". */
30115 Clear any mouse-face on window W. This function is part of the
30116 redisplay interface, and is called from try_window_id and similar
30117 functions to ensure the mouse-highlight is off. */
30120 x_clear_window_mouse_face (struct window
*w
)
30122 Mouse_HLInfo
*hlinfo
= MOUSE_HL_INFO (XFRAME (w
->frame
));
30123 Lisp_Object window
;
30126 XSETWINDOW (window
, w
);
30127 if (EQ (window
, hlinfo
->mouse_face_window
))
30128 clear_mouse_face (hlinfo
);
30134 Just discard the mouse face information for frame F, if any.
30135 This is used when the size of F is changed. */
30138 cancel_mouse_face (struct frame
*f
)
30140 Lisp_Object window
;
30141 Mouse_HLInfo
*hlinfo
= MOUSE_HL_INFO (f
);
30143 window
= hlinfo
->mouse_face_window
;
30144 if (! NILP (window
) && XFRAME (XWINDOW (window
)->frame
) == f
)
30145 reset_mouse_highlight (hlinfo
);
30150 /***********************************************************************
30152 ***********************************************************************/
30154 #ifdef HAVE_WINDOW_SYSTEM
30156 /* Redraw the part of glyph row area AREA of glyph row ROW on window W
30157 which intersects rectangle R. R is in window-relative coordinates. */
30160 expose_area (struct window
*w
, struct glyph_row
*row
, XRectangle
*r
,
30161 enum glyph_row_area area
)
30163 struct glyph
*first
= row
->glyphs
[area
];
30164 struct glyph
*end
= row
->glyphs
[area
] + row
->used
[area
];
30165 struct glyph
*last
;
30166 int first_x
, start_x
, x
;
30168 if (area
== TEXT_AREA
&& row
->fill_line_p
)
30169 /* If row extends face to end of line write the whole line. */
30170 draw_glyphs (w
, 0, row
, area
,
30171 0, row
->used
[area
],
30172 DRAW_NORMAL_TEXT
, 0);
30175 /* Set START_X to the window-relative start position for drawing glyphs of
30176 AREA. The first glyph of the text area can be partially visible.
30177 The first glyphs of other areas cannot. */
30178 start_x
= window_box_left_offset (w
, area
);
30180 if (area
== TEXT_AREA
)
30183 /* Find the first glyph that must be redrawn. */
30185 && x
+ first
->pixel_width
< r
->x
)
30187 x
+= first
->pixel_width
;
30191 /* Find the last one. */
30195 && x
< r
->x
+ r
->width
)
30197 x
+= last
->pixel_width
;
30203 draw_glyphs (w
, first_x
- start_x
, row
, area
,
30204 first
- row
->glyphs
[area
], last
- row
->glyphs
[area
],
30205 DRAW_NORMAL_TEXT
, 0);
30210 /* Redraw the parts of the glyph row ROW on window W intersecting
30211 rectangle R. R is in window-relative coordinates. Value is
30212 non-zero if mouse-face was overwritten. */
30215 expose_line (struct window
*w
, struct glyph_row
*row
, XRectangle
*r
)
30217 eassert (row
->enabled_p
);
30219 if (row
->mode_line_p
|| w
->pseudo_window_p
)
30220 draw_glyphs (w
, 0, row
, TEXT_AREA
,
30221 0, row
->used
[TEXT_AREA
],
30222 DRAW_NORMAL_TEXT
, 0);
30225 if (row
->used
[LEFT_MARGIN_AREA
])
30226 expose_area (w
, row
, r
, LEFT_MARGIN_AREA
);
30227 if (row
->used
[TEXT_AREA
])
30228 expose_area (w
, row
, r
, TEXT_AREA
);
30229 if (row
->used
[RIGHT_MARGIN_AREA
])
30230 expose_area (w
, row
, r
, RIGHT_MARGIN_AREA
);
30231 draw_row_fringe_bitmaps (w
, row
);
30234 return row
->mouse_face_p
;
30238 /* Redraw those parts of glyphs rows during expose event handling that
30239 overlap other rows. Redrawing of an exposed line writes over parts
30240 of lines overlapping that exposed line; this function fixes that.
30242 W is the window being exposed. FIRST_OVERLAPPING_ROW is the first
30243 row in W's current matrix that is exposed and overlaps other rows.
30244 LAST_OVERLAPPING_ROW is the last such row. */
30247 expose_overlaps (struct window
*w
,
30248 struct glyph_row
*first_overlapping_row
,
30249 struct glyph_row
*last_overlapping_row
,
30252 struct glyph_row
*row
;
30254 for (row
= first_overlapping_row
; row
<= last_overlapping_row
; ++row
)
30255 if (row
->overlapping_p
)
30257 eassert (row
->enabled_p
&& !row
->mode_line_p
);
30260 if (row
->used
[LEFT_MARGIN_AREA
])
30261 x_fix_overlapping_area (w
, row
, LEFT_MARGIN_AREA
, OVERLAPS_BOTH
);
30263 if (row
->used
[TEXT_AREA
])
30264 x_fix_overlapping_area (w
, row
, TEXT_AREA
, OVERLAPS_BOTH
);
30266 if (row
->used
[RIGHT_MARGIN_AREA
])
30267 x_fix_overlapping_area (w
, row
, RIGHT_MARGIN_AREA
, OVERLAPS_BOTH
);
30273 /* Return non-zero if W's cursor intersects rectangle R. */
30276 phys_cursor_in_rect_p (struct window
*w
, XRectangle
*r
)
30278 XRectangle cr
, result
;
30279 struct glyph
*cursor_glyph
;
30280 struct glyph_row
*row
;
30282 if (w
->phys_cursor
.vpos
>= 0
30283 && w
->phys_cursor
.vpos
< w
->current_matrix
->nrows
30284 && (row
= MATRIX_ROW (w
->current_matrix
, w
->phys_cursor
.vpos
),
30286 && row
->cursor_in_fringe_p
)
30288 /* Cursor is in the fringe. */
30289 cr
.x
= window_box_right_offset (w
,
30290 (WINDOW_HAS_FRINGES_OUTSIDE_MARGINS (w
)
30291 ? RIGHT_MARGIN_AREA
30294 cr
.width
= WINDOW_RIGHT_FRINGE_WIDTH (w
);
30295 cr
.height
= row
->height
;
30296 return x_intersect_rectangles (&cr
, r
, &result
);
30299 cursor_glyph
= get_phys_cursor_glyph (w
);
30302 /* r is relative to W's box, but w->phys_cursor.x is relative
30303 to left edge of W's TEXT area. Adjust it. */
30304 cr
.x
= window_box_left_offset (w
, TEXT_AREA
) + w
->phys_cursor
.x
;
30305 cr
.y
= w
->phys_cursor
.y
;
30306 cr
.width
= cursor_glyph
->pixel_width
;
30307 cr
.height
= w
->phys_cursor_height
;
30308 /* ++KFS: W32 version used W32-specific IntersectRect here, but
30309 I assume the effect is the same -- and this is portable. */
30310 return x_intersect_rectangles (&cr
, r
, &result
);
30312 /* If we don't understand the format, pretend we're not in the hot-spot. */
30318 Draw a vertical window border to the right of window W if W doesn't
30319 have vertical scroll bars. */
30322 x_draw_vertical_border (struct window
*w
)
30324 struct frame
*f
= XFRAME (WINDOW_FRAME (w
));
30326 /* We could do better, if we knew what type of scroll-bar the adjacent
30327 windows (on either side) have... But we don't :-(
30328 However, I think this works ok. ++KFS 2003-04-25 */
30330 /* Redraw borders between horizontally adjacent windows. Don't
30331 do it for frames with vertical scroll bars because either the
30332 right scroll bar of a window, or the left scroll bar of its
30333 neighbor will suffice as a border. */
30334 if (FRAME_HAS_VERTICAL_SCROLL_BARS (f
) || FRAME_RIGHT_DIVIDER_WIDTH (f
))
30337 /* Note: It is necessary to redraw both the left and the right
30338 borders, for when only this single window W is being
30340 if (!WINDOW_RIGHTMOST_P (w
)
30341 && !WINDOW_HAS_VERTICAL_SCROLL_BAR_ON_RIGHT (w
))
30343 int x0
, x1
, y0
, y1
;
30345 window_box_edges (w
, &x0
, &y0
, &x1
, &y1
);
30348 if (WINDOW_LEFT_FRINGE_WIDTH (w
) == 0)
30351 FRAME_RIF (f
)->draw_vertical_window_border (w
, x1
, y0
, y1
);
30354 if (!WINDOW_LEFTMOST_P (w
)
30355 && !WINDOW_HAS_VERTICAL_SCROLL_BAR_ON_LEFT (w
))
30357 int x0
, x1
, y0
, y1
;
30359 window_box_edges (w
, &x0
, &y0
, &x1
, &y1
);
30362 if (WINDOW_LEFT_FRINGE_WIDTH (w
) == 0)
30365 FRAME_RIF (f
)->draw_vertical_window_border (w
, x0
, y0
, y1
);
30370 /* Draw window dividers for window W. */
30373 x_draw_right_divider (struct window
*w
)
30375 struct frame
*f
= WINDOW_XFRAME (w
);
30377 if (w
->mini
|| w
->pseudo_window_p
)
30379 else if (WINDOW_RIGHT_DIVIDER_WIDTH (w
))
30381 int x0
= WINDOW_RIGHT_EDGE_X (w
) - WINDOW_RIGHT_DIVIDER_WIDTH (w
);
30382 int x1
= WINDOW_RIGHT_EDGE_X (w
);
30383 int y0
= WINDOW_TOP_EDGE_Y (w
);
30384 /* The bottom divider prevails. */
30385 int y1
= WINDOW_BOTTOM_EDGE_Y (w
) - WINDOW_BOTTOM_DIVIDER_WIDTH (w
);
30387 FRAME_RIF (f
)->draw_window_divider (w
, x0
, x1
, y0
, y1
);
30392 x_draw_bottom_divider (struct window
*w
)
30394 struct frame
*f
= XFRAME (WINDOW_FRAME (w
));
30396 if (w
->mini
|| w
->pseudo_window_p
)
30398 else if (WINDOW_BOTTOM_DIVIDER_WIDTH (w
))
30400 int x0
= WINDOW_LEFT_EDGE_X (w
);
30401 int x1
= WINDOW_RIGHT_EDGE_X (w
);
30402 int y0
= WINDOW_BOTTOM_EDGE_Y (w
) - WINDOW_BOTTOM_DIVIDER_WIDTH (w
);
30403 int y1
= WINDOW_BOTTOM_EDGE_Y (w
);
30405 FRAME_RIF (f
)->draw_window_divider (w
, x0
, x1
, y0
, y1
);
30409 /* Redraw the part of window W intersection rectangle FR. Pixel
30410 coordinates in FR are frame-relative. Call this function with
30411 input blocked. Value is non-zero if the exposure overwrites
30415 expose_window (struct window
*w
, XRectangle
*fr
)
30417 struct frame
*f
= XFRAME (w
->frame
);
30419 int mouse_face_overwritten_p
= 0;
30421 /* If window is not yet fully initialized, do nothing. This can
30422 happen when toolkit scroll bars are used and a window is split.
30423 Reconfiguring the scroll bar will generate an expose for a newly
30425 if (w
->current_matrix
== NULL
)
30428 /* When we're currently updating the window, display and current
30429 matrix usually don't agree. Arrange for a thorough display
30431 if (w
->must_be_updated_p
)
30433 SET_FRAME_GARBAGED (f
);
30437 /* Frame-relative pixel rectangle of W. */
30438 wr
.x
= WINDOW_LEFT_EDGE_X (w
);
30439 wr
.y
= WINDOW_TOP_EDGE_Y (w
);
30440 wr
.width
= WINDOW_PIXEL_WIDTH (w
);
30441 wr
.height
= WINDOW_PIXEL_HEIGHT (w
);
30443 if (x_intersect_rectangles (fr
, &wr
, &r
))
30445 int yb
= window_text_bottom_y (w
);
30446 struct glyph_row
*row
;
30447 int cursor_cleared_p
, phys_cursor_on_p
;
30448 struct glyph_row
*first_overlapping_row
, *last_overlapping_row
;
30450 TRACE ((stderr
, "expose_window (%d, %d, %d, %d)\n",
30451 r
.x
, r
.y
, r
.width
, r
.height
));
30453 /* Convert to window coordinates. */
30454 r
.x
-= WINDOW_LEFT_EDGE_X (w
);
30455 r
.y
-= WINDOW_TOP_EDGE_Y (w
);
30457 /* Turn off the cursor. */
30458 if (!w
->pseudo_window_p
30459 && phys_cursor_in_rect_p (w
, &r
))
30461 x_clear_cursor (w
);
30462 cursor_cleared_p
= 1;
30465 cursor_cleared_p
= 0;
30467 /* If the row containing the cursor extends face to end of line,
30468 then expose_area might overwrite the cursor outside the
30469 rectangle and thus notice_overwritten_cursor might clear
30470 w->phys_cursor_on_p. We remember the original value and
30471 check later if it is changed. */
30472 phys_cursor_on_p
= w
->phys_cursor_on_p
;
30474 /* Update lines intersecting rectangle R. */
30475 first_overlapping_row
= last_overlapping_row
= NULL
;
30476 for (row
= w
->current_matrix
->rows
;
30481 int y1
= MATRIX_ROW_BOTTOM_Y (row
);
30483 if ((y0
>= r
.y
&& y0
< r
.y
+ r
.height
)
30484 || (y1
> r
.y
&& y1
< r
.y
+ r
.height
)
30485 || (r
.y
>= y0
&& r
.y
< y1
)
30486 || (r
.y
+ r
.height
> y0
&& r
.y
+ r
.height
< y1
))
30488 /* A header line may be overlapping, but there is no need
30489 to fix overlapping areas for them. KFS 2005-02-12 */
30490 if (row
->overlapping_p
&& !row
->mode_line_p
)
30492 if (first_overlapping_row
== NULL
)
30493 first_overlapping_row
= row
;
30494 last_overlapping_row
= row
;
30498 if (expose_line (w
, row
, &r
))
30499 mouse_face_overwritten_p
= 1;
30502 else if (row
->overlapping_p
)
30504 /* We must redraw a row overlapping the exposed area. */
30506 ? y0
+ row
->phys_height
> r
.y
30507 : y0
+ row
->ascent
- row
->phys_ascent
< r
.y
+r
.height
)
30509 if (first_overlapping_row
== NULL
)
30510 first_overlapping_row
= row
;
30511 last_overlapping_row
= row
;
30519 /* Display the mode line if there is one. */
30520 if (WINDOW_WANTS_MODELINE_P (w
)
30521 && (row
= MATRIX_MODE_LINE_ROW (w
->current_matrix
),
30523 && row
->y
< r
.y
+ r
.height
)
30525 if (expose_line (w
, row
, &r
))
30526 mouse_face_overwritten_p
= 1;
30529 if (!w
->pseudo_window_p
)
30531 /* Fix the display of overlapping rows. */
30532 if (first_overlapping_row
)
30533 expose_overlaps (w
, first_overlapping_row
, last_overlapping_row
,
30536 /* Draw border between windows. */
30537 if (WINDOW_RIGHT_DIVIDER_WIDTH (w
))
30538 x_draw_right_divider (w
);
30540 x_draw_vertical_border (w
);
30542 if (WINDOW_BOTTOM_DIVIDER_WIDTH (w
))
30543 x_draw_bottom_divider (w
);
30545 /* Turn the cursor on again. */
30546 if (cursor_cleared_p
30547 || (phys_cursor_on_p
&& !w
->phys_cursor_on_p
))
30548 update_window_cursor (w
, 1);
30552 return mouse_face_overwritten_p
;
30557 /* Redraw (parts) of all windows in the window tree rooted at W that
30558 intersect R. R contains frame pixel coordinates. Value is
30559 non-zero if the exposure overwrites mouse-face. */
30562 expose_window_tree (struct window
*w
, XRectangle
*r
)
30564 struct frame
*f
= XFRAME (w
->frame
);
30565 int mouse_face_overwritten_p
= 0;
30567 while (w
&& !FRAME_GARBAGED_P (f
))
30569 if (WINDOWP (w
->contents
))
30570 mouse_face_overwritten_p
30571 |= expose_window_tree (XWINDOW (w
->contents
), r
);
30573 mouse_face_overwritten_p
|= expose_window (w
, r
);
30575 w
= NILP (w
->next
) ? NULL
: XWINDOW (w
->next
);
30578 return mouse_face_overwritten_p
;
30583 Redisplay an exposed area of frame F. X and Y are the upper-left
30584 corner of the exposed rectangle. W and H are width and height of
30585 the exposed area. All are pixel values. W or H zero means redraw
30586 the entire frame. */
30589 expose_frame (struct frame
*f
, int x
, int y
, int w
, int h
)
30592 int mouse_face_overwritten_p
= 0;
30594 TRACE ((stderr
, "expose_frame "));
30596 /* No need to redraw if frame will be redrawn soon. */
30597 if (FRAME_GARBAGED_P (f
))
30599 TRACE ((stderr
, " garbaged\n"));
30603 /* If basic faces haven't been realized yet, there is no point in
30604 trying to redraw anything. This can happen when we get an expose
30605 event while Emacs is starting, e.g. by moving another window. */
30606 if (FRAME_FACE_CACHE (f
) == NULL
30607 || FRAME_FACE_CACHE (f
)->used
< BASIC_FACE_ID_SENTINEL
)
30609 TRACE ((stderr
, " no faces\n"));
30613 if (w
== 0 || h
== 0)
30616 r
.width
= FRAME_TEXT_WIDTH (f
);
30617 r
.height
= FRAME_TEXT_HEIGHT (f
);
30627 TRACE ((stderr
, "(%d, %d, %d, %d)\n", r
.x
, r
.y
, r
.width
, r
.height
));
30628 mouse_face_overwritten_p
= expose_window_tree (XWINDOW (f
->root_window
), &r
);
30630 #if ! defined (USE_GTK) && ! defined (HAVE_NS)
30631 if (WINDOWP (f
->tool_bar_window
))
30632 mouse_face_overwritten_p
30633 |= expose_window (XWINDOW (f
->tool_bar_window
), &r
);
30636 #ifdef HAVE_X_WINDOWS
30638 #if ! defined (USE_X_TOOLKIT) && ! defined (USE_GTK)
30639 if (WINDOWP (f
->menu_bar_window
))
30640 mouse_face_overwritten_p
30641 |= expose_window (XWINDOW (f
->menu_bar_window
), &r
);
30642 #endif /* not USE_X_TOOLKIT and not USE_GTK */
30646 /* Some window managers support a focus-follows-mouse style with
30647 delayed raising of frames. Imagine a partially obscured frame,
30648 and moving the mouse into partially obscured mouse-face on that
30649 frame. The visible part of the mouse-face will be highlighted,
30650 then the WM raises the obscured frame. With at least one WM, KDE
30651 2.1, Emacs is not getting any event for the raising of the frame
30652 (even tried with SubstructureRedirectMask), only Expose events.
30653 These expose events will draw text normally, i.e. not
30654 highlighted. Which means we must redo the highlight here.
30655 Subsume it under ``we love X''. --gerd 2001-08-15 */
30656 /* Included in Windows version because Windows most likely does not
30657 do the right thing if any third party tool offers
30658 focus-follows-mouse with delayed raise. --jason 2001-10-12 */
30659 if (mouse_face_overwritten_p
&& !FRAME_GARBAGED_P (f
))
30661 Mouse_HLInfo
*hlinfo
= MOUSE_HL_INFO (f
);
30662 if (f
== hlinfo
->mouse_face_mouse_frame
)
30664 int mouse_x
= hlinfo
->mouse_face_mouse_x
;
30665 int mouse_y
= hlinfo
->mouse_face_mouse_y
;
30666 clear_mouse_face (hlinfo
);
30667 note_mouse_highlight (f
, mouse_x
, mouse_y
);
30674 Determine the intersection of two rectangles R1 and R2. Return
30675 the intersection in *RESULT. Value is non-zero if RESULT is not
30679 x_intersect_rectangles (XRectangle
*r1
, XRectangle
*r2
, XRectangle
*result
)
30681 XRectangle
*left
, *right
;
30682 XRectangle
*upper
, *lower
;
30683 int intersection_p
= 0;
30685 /* Rearrange so that R1 is the left-most rectangle. */
30687 left
= r1
, right
= r2
;
30689 left
= r2
, right
= r1
;
30691 /* X0 of the intersection is right.x0, if this is inside R1,
30692 otherwise there is no intersection. */
30693 if (right
->x
<= left
->x
+ left
->width
)
30695 result
->x
= right
->x
;
30697 /* The right end of the intersection is the minimum of
30698 the right ends of left and right. */
30699 result
->width
= (min (left
->x
+ left
->width
, right
->x
+ right
->width
)
30702 /* Same game for Y. */
30704 upper
= r1
, lower
= r2
;
30706 upper
= r2
, lower
= r1
;
30708 /* The upper end of the intersection is lower.y0, if this is inside
30709 of upper. Otherwise, there is no intersection. */
30710 if (lower
->y
<= upper
->y
+ upper
->height
)
30712 result
->y
= lower
->y
;
30714 /* The lower end of the intersection is the minimum of the lower
30715 ends of upper and lower. */
30716 result
->height
= (min (lower
->y
+ lower
->height
,
30717 upper
->y
+ upper
->height
)
30719 intersection_p
= 1;
30723 return intersection_p
;
30726 #endif /* HAVE_WINDOW_SYSTEM */
30729 /***********************************************************************
30731 ***********************************************************************/
30734 syms_of_xdisp (void)
30736 Vwith_echo_area_save_vector
= Qnil
;
30737 staticpro (&Vwith_echo_area_save_vector
);
30739 Vmessage_stack
= Qnil
;
30740 staticpro (&Vmessage_stack
);
30742 /* Non-nil means don't actually do any redisplay. */
30743 DEFSYM (Qinhibit_redisplay
, "inhibit-redisplay");
30745 DEFSYM (Qredisplay_internal
, "redisplay_internal (C function)");
30747 message_dolog_marker1
= Fmake_marker ();
30748 staticpro (&message_dolog_marker1
);
30749 message_dolog_marker2
= Fmake_marker ();
30750 staticpro (&message_dolog_marker2
);
30751 message_dolog_marker3
= Fmake_marker ();
30752 staticpro (&message_dolog_marker3
);
30755 defsubr (&Sdump_frame_glyph_matrix
);
30756 defsubr (&Sdump_glyph_matrix
);
30757 defsubr (&Sdump_glyph_row
);
30758 defsubr (&Sdump_tool_bar_row
);
30759 defsubr (&Strace_redisplay
);
30760 defsubr (&Strace_to_stderr
);
30762 #ifdef HAVE_WINDOW_SYSTEM
30763 defsubr (&Stool_bar_height
);
30764 defsubr (&Slookup_image_map
);
30766 defsubr (&Sline_pixel_height
);
30767 defsubr (&Sformat_mode_line
);
30768 defsubr (&Sinvisible_p
);
30769 defsubr (&Scurrent_bidi_paragraph_direction
);
30770 defsubr (&Swindow_text_pixel_size
);
30771 defsubr (&Smove_point_visually
);
30772 defsubr (&Sbidi_find_overridden_directionality
);
30774 DEFSYM (Qmenu_bar_update_hook
, "menu-bar-update-hook");
30775 DEFSYM (Qoverriding_terminal_local_map
, "overriding-terminal-local-map");
30776 DEFSYM (Qoverriding_local_map
, "overriding-local-map");
30777 DEFSYM (Qwindow_scroll_functions
, "window-scroll-functions");
30778 DEFSYM (Qwindow_text_change_functions
, "window-text-change-functions");
30779 DEFSYM (Qredisplay_end_trigger_functions
, "redisplay-end-trigger-functions");
30780 DEFSYM (Qinhibit_point_motion_hooks
, "inhibit-point-motion-hooks");
30781 DEFSYM (Qeval
, "eval");
30782 DEFSYM (QCdata
, ":data");
30784 /* Names of text properties relevant for redisplay. */
30785 DEFSYM (Qdisplay
, "display");
30786 DEFSYM (Qspace_width
, "space-width");
30787 DEFSYM (Qraise
, "raise");
30788 DEFSYM (Qslice
, "slice");
30789 DEFSYM (Qspace
, "space");
30790 DEFSYM (Qmargin
, "margin");
30791 DEFSYM (Qpointer
, "pointer");
30792 DEFSYM (Qleft_margin
, "left-margin");
30793 DEFSYM (Qright_margin
, "right-margin");
30794 DEFSYM (Qcenter
, "center");
30795 DEFSYM (Qline_height
, "line-height");
30796 DEFSYM (QCalign_to
, ":align-to");
30797 DEFSYM (QCrelative_width
, ":relative-width");
30798 DEFSYM (QCrelative_height
, ":relative-height");
30799 DEFSYM (QCeval
, ":eval");
30800 DEFSYM (QCpropertize
, ":propertize");
30801 DEFSYM (QCfile
, ":file");
30802 DEFSYM (Qfontified
, "fontified");
30803 DEFSYM (Qfontification_functions
, "fontification-functions");
30805 /* Name of the face used to highlight trailing whitespace. */
30806 DEFSYM (Qtrailing_whitespace
, "trailing-whitespace");
30808 /* Name and number of the face used to highlight escape glyphs. */
30809 DEFSYM (Qescape_glyph
, "escape-glyph");
30811 /* Name and number of the face used to highlight non-breaking spaces. */
30812 DEFSYM (Qnobreak_space
, "nobreak-space");
30814 /* The symbol 'image' which is the car of the lists used to represent
30815 images in Lisp. Also a tool bar style. */
30816 DEFSYM (Qimage
, "image");
30818 /* Tool bar styles. */
30819 DEFSYM (Qtext
, "text");
30820 DEFSYM (Qboth
, "both");
30821 DEFSYM (Qboth_horiz
, "both-horiz");
30822 DEFSYM (Qtext_image_horiz
, "text-image-horiz");
30824 /* The image map types. */
30825 DEFSYM (QCmap
, ":map");
30826 DEFSYM (QCpointer
, ":pointer");
30827 DEFSYM (Qrect
, "rect");
30828 DEFSYM (Qcircle
, "circle");
30829 DEFSYM (Qpoly
, "poly");
30831 /* The symbol `inhibit-menubar-update' and its DEFVAR_BOOL variable. */
30832 DEFSYM (Qinhibit_menubar_update
, "inhibit-menubar-update");
30833 DEFSYM (Qmessage_truncate_lines
, "message-truncate-lines");
30835 DEFSYM (Qgrow_only
, "grow-only");
30836 DEFSYM (Qinhibit_eval_during_redisplay
, "inhibit-eval-during-redisplay");
30837 DEFSYM (Qposition
, "position");
30838 DEFSYM (Qbuffer_position
, "buffer-position");
30839 DEFSYM (Qobject
, "object");
30841 /* Cursor shapes. */
30842 DEFSYM (Qbar
, "bar");
30843 DEFSYM (Qhbar
, "hbar");
30844 DEFSYM (Qbox
, "box");
30845 DEFSYM (Qhollow
, "hollow");
30847 /* Pointer shapes. */
30848 DEFSYM (Qhand
, "hand");
30849 DEFSYM (Qarrow
, "arrow");
30852 DEFSYM (Qinhibit_free_realized_faces
, "inhibit-free-realized-faces");
30854 list_of_error
= list1 (list2 (intern_c_string ("error"),
30855 intern_c_string ("void-variable")));
30856 staticpro (&list_of_error
);
30858 /* Values of those variables at last redisplay are stored as
30859 properties on 'overlay-arrow-position' symbol. However, if
30860 Voverlay_arrow_position is a marker, last-arrow-position is its
30861 numerical position. */
30862 DEFSYM (Qlast_arrow_position
, "last-arrow-position");
30863 DEFSYM (Qlast_arrow_string
, "last-arrow-string");
30865 /* Alternative overlay-arrow-string and overlay-arrow-bitmap
30866 properties on a symbol in overlay-arrow-variable-list. */
30867 DEFSYM (Qoverlay_arrow_string
, "overlay-arrow-string");
30868 DEFSYM (Qoverlay_arrow_bitmap
, "overlay-arrow-bitmap");
30870 echo_buffer
[0] = echo_buffer
[1] = Qnil
;
30871 staticpro (&echo_buffer
[0]);
30872 staticpro (&echo_buffer
[1]);
30874 echo_area_buffer
[0] = echo_area_buffer
[1] = Qnil
;
30875 staticpro (&echo_area_buffer
[0]);
30876 staticpro (&echo_area_buffer
[1]);
30878 Vmessages_buffer_name
= build_pure_c_string ("*Messages*");
30879 staticpro (&Vmessages_buffer_name
);
30881 mode_line_proptrans_alist
= Qnil
;
30882 staticpro (&mode_line_proptrans_alist
);
30883 mode_line_string_list
= Qnil
;
30884 staticpro (&mode_line_string_list
);
30885 mode_line_string_face
= Qnil
;
30886 staticpro (&mode_line_string_face
);
30887 mode_line_string_face_prop
= Qnil
;
30888 staticpro (&mode_line_string_face_prop
);
30889 Vmode_line_unwind_vector
= Qnil
;
30890 staticpro (&Vmode_line_unwind_vector
);
30892 DEFSYM (Qmode_line_default_help_echo
, "mode-line-default-help-echo");
30894 help_echo_string
= Qnil
;
30895 staticpro (&help_echo_string
);
30896 help_echo_object
= Qnil
;
30897 staticpro (&help_echo_object
);
30898 help_echo_window
= Qnil
;
30899 staticpro (&help_echo_window
);
30900 previous_help_echo_string
= Qnil
;
30901 staticpro (&previous_help_echo_string
);
30902 help_echo_pos
= -1;
30904 DEFSYM (Qright_to_left
, "right-to-left");
30905 DEFSYM (Qleft_to_right
, "left-to-right");
30906 defsubr (&Sbidi_resolved_levels
);
30908 #ifdef HAVE_WINDOW_SYSTEM
30909 DEFVAR_BOOL ("x-stretch-cursor", x_stretch_cursor_p
,
30910 doc
: /* Non-nil means draw block cursor as wide as the glyph under it.
30911 For example, if a block cursor is over a tab, it will be drawn as
30912 wide as that tab on the display. */);
30913 x_stretch_cursor_p
= 0;
30916 DEFVAR_LISP ("show-trailing-whitespace", Vshow_trailing_whitespace
,
30917 doc
: /* Non-nil means highlight trailing whitespace.
30918 The face used for trailing whitespace is `trailing-whitespace'. */);
30919 Vshow_trailing_whitespace
= Qnil
;
30921 DEFVAR_LISP ("nobreak-char-display", Vnobreak_char_display
,
30922 doc
: /* Control highlighting of non-ASCII space and hyphen chars.
30923 If the value is t, Emacs highlights non-ASCII chars which have the
30924 same appearance as an ASCII space or hyphen, using the `nobreak-space'
30925 or `escape-glyph' face respectively.
30927 U+00A0 (no-break space), U+00AD (soft hyphen), U+2010 (hyphen), and
30928 U+2011 (non-breaking hyphen) are affected.
30930 Any other non-nil value means to display these characters as a escape
30931 glyph followed by an ordinary space or hyphen.
30933 A value of nil means no special handling of these characters. */);
30934 Vnobreak_char_display
= Qt
;
30936 DEFVAR_LISP ("void-text-area-pointer", Vvoid_text_area_pointer
,
30937 doc
: /* The pointer shape to show in void text areas.
30938 A value of nil means to show the text pointer. Other options are
30939 `arrow', `text', `hand', `vdrag', `hdrag', `nhdrag', `modeline', and
30941 Vvoid_text_area_pointer
= Qarrow
;
30943 DEFVAR_LISP ("inhibit-redisplay", Vinhibit_redisplay
,
30944 doc
: /* Non-nil means don't actually do any redisplay.
30945 This is used for internal purposes. */);
30946 Vinhibit_redisplay
= Qnil
;
30948 DEFVAR_LISP ("global-mode-string", Vglobal_mode_string
,
30949 doc
: /* String (or mode line construct) included (normally) in `mode-line-format'. */);
30950 Vglobal_mode_string
= Qnil
;
30952 DEFVAR_LISP ("overlay-arrow-position", Voverlay_arrow_position
,
30953 doc
: /* Marker for where to display an arrow on top of the buffer text.
30954 This must be the beginning of a line in order to work.
30955 See also `overlay-arrow-string'. */);
30956 Voverlay_arrow_position
= Qnil
;
30958 DEFVAR_LISP ("overlay-arrow-string", Voverlay_arrow_string
,
30959 doc
: /* String to display as an arrow in non-window frames.
30960 See also `overlay-arrow-position'. */);
30961 Voverlay_arrow_string
= build_pure_c_string ("=>");
30963 DEFVAR_LISP ("overlay-arrow-variable-list", Voverlay_arrow_variable_list
,
30964 doc
: /* List of variables (symbols) which hold markers for overlay arrows.
30965 The symbols on this list are examined during redisplay to determine
30966 where to display overlay arrows. */);
30967 Voverlay_arrow_variable_list
30968 = list1 (intern_c_string ("overlay-arrow-position"));
30970 DEFVAR_INT ("scroll-step", emacs_scroll_step
,
30971 doc
: /* The number of lines to try scrolling a window by when point moves out.
30972 If that fails to bring point back on frame, point is centered instead.
30973 If this is zero, point is always centered after it moves off frame.
30974 If you want scrolling to always be a line at a time, you should set
30975 `scroll-conservatively' to a large value rather than set this to 1. */);
30977 DEFVAR_INT ("scroll-conservatively", scroll_conservatively
,
30978 doc
: /* Scroll up to this many lines, to bring point back on screen.
30979 If point moves off-screen, redisplay will scroll by up to
30980 `scroll-conservatively' lines in order to bring point just barely
30981 onto the screen again. If that cannot be done, then redisplay
30982 recenters point as usual.
30984 If the value is greater than 100, redisplay will never recenter point,
30985 but will always scroll just enough text to bring point into view, even
30986 if you move far away.
30988 A value of zero means always recenter point if it moves off screen. */);
30989 scroll_conservatively
= 0;
30991 DEFVAR_INT ("scroll-margin", scroll_margin
,
30992 doc
: /* Number of lines of margin at the top and bottom of a window.
30993 Recenter the window whenever point gets within this many lines
30994 of the top or bottom of the window. */);
30997 DEFVAR_LISP ("display-pixels-per-inch", Vdisplay_pixels_per_inch
,
30998 doc
: /* Pixels per inch value for non-window system displays.
30999 Value is a number or a cons (WIDTH-DPI . HEIGHT-DPI). */);
31000 Vdisplay_pixels_per_inch
= make_float (72.0);
31003 DEFVAR_INT ("debug-end-pos", debug_end_pos
, doc
: /* Don't ask. */);
31006 DEFVAR_LISP ("truncate-partial-width-windows",
31007 Vtruncate_partial_width_windows
,
31008 doc
: /* Non-nil means truncate lines in windows narrower than the frame.
31009 For an integer value, truncate lines in each window narrower than the
31010 full frame width, provided the window width is less than that integer;
31011 otherwise, respect the value of `truncate-lines'.
31013 For any other non-nil value, truncate lines in all windows that do
31014 not span the full frame width.
31016 A value of nil means to respect the value of `truncate-lines'.
31018 If `word-wrap' is enabled, you might want to reduce this. */);
31019 Vtruncate_partial_width_windows
= make_number (50);
31021 DEFVAR_LISP ("line-number-display-limit", Vline_number_display_limit
,
31022 doc
: /* Maximum buffer size for which line number should be displayed.
31023 If the buffer is bigger than this, the line number does not appear
31024 in the mode line. A value of nil means no limit. */);
31025 Vline_number_display_limit
= Qnil
;
31027 DEFVAR_INT ("line-number-display-limit-width",
31028 line_number_display_limit_width
,
31029 doc
: /* Maximum line width (in characters) for line number display.
31030 If the average length of the lines near point is bigger than this, then the
31031 line number may be omitted from the mode line. */);
31032 line_number_display_limit_width
= 200;
31034 DEFVAR_BOOL ("highlight-nonselected-windows", highlight_nonselected_windows
,
31035 doc
: /* Non-nil means highlight region even in nonselected windows. */);
31036 highlight_nonselected_windows
= 0;
31038 DEFVAR_BOOL ("multiple-frames", multiple_frames
,
31039 doc
: /* Non-nil if more than one frame is visible on this display.
31040 Minibuffer-only frames don't count, but iconified frames do.
31041 This variable is not guaranteed to be accurate except while processing
31042 `frame-title-format' and `icon-title-format'. */);
31044 DEFVAR_LISP ("frame-title-format", Vframe_title_format
,
31045 doc
: /* Template for displaying the title bar of visible frames.
31046 \(Assuming the window manager supports this feature.)
31048 This variable has the same structure as `mode-line-format', except that
31049 the %c and %l constructs are ignored. It is used only on frames for
31050 which no explicit name has been set \(see `modify-frame-parameters'). */);
31052 DEFVAR_LISP ("icon-title-format", Vicon_title_format
,
31053 doc
: /* Template for displaying the title bar of an iconified frame.
31054 \(Assuming the window manager supports this feature.)
31055 This variable has the same structure as `mode-line-format' (which see),
31056 and is used only on frames for which no explicit name has been set
31057 \(see `modify-frame-parameters'). */);
31059 = Vframe_title_format
31060 = listn (CONSTYPE_PURE
, 3,
31061 intern_c_string ("multiple-frames"),
31062 build_pure_c_string ("%b"),
31063 listn (CONSTYPE_PURE
, 4,
31064 empty_unibyte_string
,
31065 intern_c_string ("invocation-name"),
31066 build_pure_c_string ("@"),
31067 intern_c_string ("system-name")));
31069 DEFVAR_LISP ("message-log-max", Vmessage_log_max
,
31070 doc
: /* Maximum number of lines to keep in the message log buffer.
31071 If nil, disable message logging. If t, log messages but don't truncate
31072 the buffer when it becomes large. */);
31073 Vmessage_log_max
= make_number (1000);
31075 DEFVAR_LISP ("window-size-change-functions", Vwindow_size_change_functions
,
31076 doc
: /* Functions called before redisplay, if window sizes have changed.
31077 The value should be a list of functions that take one argument.
31078 Just before redisplay, for each frame, if any of its windows have changed
31079 size since the last redisplay, or have been split or deleted,
31080 all the functions in the list are called, with the frame as argument. */);
31081 Vwindow_size_change_functions
= Qnil
;
31083 DEFVAR_LISP ("window-scroll-functions", Vwindow_scroll_functions
,
31084 doc
: /* List of functions to call before redisplaying a window with scrolling.
31085 Each function is called with two arguments, the window and its new
31086 display-start position.
31087 These functions are called whenever the `window-start' marker is modified,
31088 either to point into another buffer (e.g. via `set-window-buffer') or another
31089 place in the same buffer.
31090 Note that the value of `window-end' is not valid when these functions are
31093 Warning: Do not use this feature to alter the way the window
31094 is scrolled. It is not designed for that, and such use probably won't
31096 Vwindow_scroll_functions
= Qnil
;
31098 DEFVAR_LISP ("window-text-change-functions",
31099 Vwindow_text_change_functions
,
31100 doc
: /* Functions to call in redisplay when text in the window might change. */);
31101 Vwindow_text_change_functions
= Qnil
;
31103 DEFVAR_LISP ("redisplay-end-trigger-functions", Vredisplay_end_trigger_functions
,
31104 doc
: /* Functions called when redisplay of a window reaches the end trigger.
31105 Each function is called with two arguments, the window and the end trigger value.
31106 See `set-window-redisplay-end-trigger'. */);
31107 Vredisplay_end_trigger_functions
= Qnil
;
31109 DEFVAR_LISP ("mouse-autoselect-window", Vmouse_autoselect_window
,
31110 doc
: /* Non-nil means autoselect window with mouse pointer.
31111 If nil, do not autoselect windows.
31112 A positive number means delay autoselection by that many seconds: a
31113 window is autoselected only after the mouse has remained in that
31114 window for the duration of the delay.
31115 A negative number has a similar effect, but causes windows to be
31116 autoselected only after the mouse has stopped moving. \(Because of
31117 the way Emacs compares mouse events, you will occasionally wait twice
31118 that time before the window gets selected.\)
31119 Any other value means to autoselect window instantaneously when the
31120 mouse pointer enters it.
31122 Autoselection selects the minibuffer only if it is active, and never
31123 unselects the minibuffer if it is active.
31125 When customizing this variable make sure that the actual value of
31126 `focus-follows-mouse' matches the behavior of your window manager. */);
31127 Vmouse_autoselect_window
= Qnil
;
31129 DEFVAR_LISP ("auto-resize-tool-bars", Vauto_resize_tool_bars
,
31130 doc
: /* Non-nil means automatically resize tool-bars.
31131 This dynamically changes the tool-bar's height to the minimum height
31132 that is needed to make all tool-bar items visible.
31133 If value is `grow-only', the tool-bar's height is only increased
31134 automatically; to decrease the tool-bar height, use \\[recenter]. */);
31135 Vauto_resize_tool_bars
= Qt
;
31137 DEFVAR_BOOL ("auto-raise-tool-bar-buttons", auto_raise_tool_bar_buttons_p
,
31138 doc
: /* Non-nil means raise tool-bar buttons when the mouse moves over them. */);
31139 auto_raise_tool_bar_buttons_p
= 1;
31141 DEFVAR_BOOL ("make-cursor-line-fully-visible", make_cursor_line_fully_visible_p
,
31142 doc
: /* Non-nil means to scroll (recenter) cursor line if it is not fully visible. */);
31143 make_cursor_line_fully_visible_p
= 1;
31145 DEFVAR_LISP ("tool-bar-border", Vtool_bar_border
,
31146 doc
: /* Border below tool-bar in pixels.
31147 If an integer, use it as the height of the border.
31148 If it is one of `internal-border-width' or `border-width', use the
31149 value of the corresponding frame parameter.
31150 Otherwise, no border is added below the tool-bar. */);
31151 Vtool_bar_border
= Qinternal_border_width
;
31153 DEFVAR_LISP ("tool-bar-button-margin", Vtool_bar_button_margin
,
31154 doc
: /* Margin around tool-bar buttons in pixels.
31155 If an integer, use that for both horizontal and vertical margins.
31156 Otherwise, value should be a pair of integers `(HORZ . VERT)' with
31157 HORZ specifying the horizontal margin, and VERT specifying the
31158 vertical margin. */);
31159 Vtool_bar_button_margin
= make_number (DEFAULT_TOOL_BAR_BUTTON_MARGIN
);
31161 DEFVAR_INT ("tool-bar-button-relief", tool_bar_button_relief
,
31162 doc
: /* Relief thickness of tool-bar buttons. */);
31163 tool_bar_button_relief
= DEFAULT_TOOL_BAR_BUTTON_RELIEF
;
31165 DEFVAR_LISP ("tool-bar-style", Vtool_bar_style
,
31166 doc
: /* Tool bar style to use.
31168 image - show images only
31169 text - show text only
31170 both - show both, text below image
31171 both-horiz - show text to the right of the image
31172 text-image-horiz - show text to the left of the image
31173 any other - use system default or image if no system default.
31175 This variable only affects the GTK+ toolkit version of Emacs. */);
31176 Vtool_bar_style
= Qnil
;
31178 DEFVAR_INT ("tool-bar-max-label-size", tool_bar_max_label_size
,
31179 doc
: /* Maximum number of characters a label can have to be shown.
31180 The tool bar style must also show labels for this to have any effect, see
31181 `tool-bar-style'. */);
31182 tool_bar_max_label_size
= DEFAULT_TOOL_BAR_LABEL_SIZE
;
31184 DEFVAR_LISP ("fontification-functions", Vfontification_functions
,
31185 doc
: /* List of functions to call to fontify regions of text.
31186 Each function is called with one argument POS. Functions must
31187 fontify a region starting at POS in the current buffer, and give
31188 fontified regions the property `fontified'. */);
31189 Vfontification_functions
= Qnil
;
31190 Fmake_variable_buffer_local (Qfontification_functions
);
31192 DEFVAR_BOOL ("unibyte-display-via-language-environment",
31193 unibyte_display_via_language_environment
,
31194 doc
: /* Non-nil means display unibyte text according to language environment.
31195 Specifically, this means that raw bytes in the range 160-255 decimal
31196 are displayed by converting them to the equivalent multibyte characters
31197 according to the current language environment. As a result, they are
31198 displayed according to the current fontset.
31200 Note that this variable affects only how these bytes are displayed,
31201 but does not change the fact they are interpreted as raw bytes. */);
31202 unibyte_display_via_language_environment
= 0;
31204 DEFVAR_LISP ("max-mini-window-height", Vmax_mini_window_height
,
31205 doc
: /* Maximum height for resizing mini-windows (the minibuffer and the echo area).
31206 If a float, it specifies a fraction of the mini-window frame's height.
31207 If an integer, it specifies a number of lines. */);
31208 Vmax_mini_window_height
= make_float (0.25);
31210 DEFVAR_LISP ("resize-mini-windows", Vresize_mini_windows
,
31211 doc
: /* How to resize mini-windows (the minibuffer and the echo area).
31212 A value of nil means don't automatically resize mini-windows.
31213 A value of t means resize them to fit the text displayed in them.
31214 A value of `grow-only', the default, means let mini-windows grow only;
31215 they return to their normal size when the minibuffer is closed, or the
31216 echo area becomes empty. */);
31217 Vresize_mini_windows
= Qgrow_only
;
31219 DEFVAR_LISP ("blink-cursor-alist", Vblink_cursor_alist
,
31220 doc
: /* Alist specifying how to blink the cursor off.
31221 Each element has the form (ON-STATE . OFF-STATE). Whenever the
31222 `cursor-type' frame-parameter or variable equals ON-STATE,
31223 comparing using `equal', Emacs uses OFF-STATE to specify
31224 how to blink it off. ON-STATE and OFF-STATE are values for
31225 the `cursor-type' frame parameter.
31227 If a frame's ON-STATE has no entry in this list,
31228 the frame's other specifications determine how to blink the cursor off. */);
31229 Vblink_cursor_alist
= Qnil
;
31231 DEFVAR_BOOL ("auto-hscroll-mode", automatic_hscrolling_p
,
31232 doc
: /* Allow or disallow automatic horizontal scrolling of windows.
31233 If non-nil, windows are automatically scrolled horizontally to make
31234 point visible. */);
31235 automatic_hscrolling_p
= 1;
31236 DEFSYM (Qauto_hscroll_mode
, "auto-hscroll-mode");
31238 DEFVAR_INT ("hscroll-margin", hscroll_margin
,
31239 doc
: /* How many columns away from the window edge point is allowed to get
31240 before automatic hscrolling will horizontally scroll the window. */);
31241 hscroll_margin
= 5;
31243 DEFVAR_LISP ("hscroll-step", Vhscroll_step
,
31244 doc
: /* How many columns to scroll the window when point gets too close to the edge.
31245 When point is less than `hscroll-margin' columns from the window
31246 edge, automatic hscrolling will scroll the window by the amount of columns
31247 determined by this variable. If its value is a positive integer, scroll that
31248 many columns. If it's a positive floating-point number, it specifies the
31249 fraction of the window's width to scroll. If it's nil or zero, point will be
31250 centered horizontally after the scroll. Any other value, including negative
31251 numbers, are treated as if the value were zero.
31253 Automatic hscrolling always moves point outside the scroll margin, so if
31254 point was more than scroll step columns inside the margin, the window will
31255 scroll more than the value given by the scroll step.
31257 Note that the lower bound for automatic hscrolling specified by `scroll-left'
31258 and `scroll-right' overrides this variable's effect. */);
31259 Vhscroll_step
= make_number (0);
31261 DEFVAR_BOOL ("message-truncate-lines", message_truncate_lines
,
31262 doc
: /* If non-nil, messages are truncated instead of resizing the echo area.
31263 Bind this around calls to `message' to let it take effect. */);
31264 message_truncate_lines
= 0;
31266 DEFVAR_LISP ("menu-bar-update-hook", Vmenu_bar_update_hook
,
31267 doc
: /* Normal hook run to update the menu bar definitions.
31268 Redisplay runs this hook before it redisplays the menu bar.
31269 This is used to update menus such as Buffers, whose contents depend on
31271 Vmenu_bar_update_hook
= Qnil
;
31273 DEFVAR_LISP ("menu-updating-frame", Vmenu_updating_frame
,
31274 doc
: /* Frame for which we are updating a menu.
31275 The enable predicate for a menu binding should check this variable. */);
31276 Vmenu_updating_frame
= Qnil
;
31278 DEFVAR_BOOL ("inhibit-menubar-update", inhibit_menubar_update
,
31279 doc
: /* Non-nil means don't update menu bars. Internal use only. */);
31280 inhibit_menubar_update
= 0;
31282 DEFVAR_LISP ("wrap-prefix", Vwrap_prefix
,
31283 doc
: /* Prefix prepended to all continuation lines at display time.
31284 The value may be a string, an image, or a stretch-glyph; it is
31285 interpreted in the same way as the value of a `display' text property.
31287 This variable is overridden by any `wrap-prefix' text or overlay
31290 To add a prefix to non-continuation lines, use `line-prefix'. */);
31291 Vwrap_prefix
= Qnil
;
31292 DEFSYM (Qwrap_prefix
, "wrap-prefix");
31293 Fmake_variable_buffer_local (Qwrap_prefix
);
31295 DEFVAR_LISP ("line-prefix", Vline_prefix
,
31296 doc
: /* Prefix prepended to all non-continuation lines at display time.
31297 The value may be a string, an image, or a stretch-glyph; it is
31298 interpreted in the same way as the value of a `display' text property.
31300 This variable is overridden by any `line-prefix' text or overlay
31303 To add a prefix to continuation lines, use `wrap-prefix'. */);
31304 Vline_prefix
= Qnil
;
31305 DEFSYM (Qline_prefix
, "line-prefix");
31306 Fmake_variable_buffer_local (Qline_prefix
);
31308 DEFVAR_BOOL ("inhibit-eval-during-redisplay", inhibit_eval_during_redisplay
,
31309 doc
: /* Non-nil means don't eval Lisp during redisplay. */);
31310 inhibit_eval_during_redisplay
= 0;
31312 DEFVAR_BOOL ("inhibit-free-realized-faces", inhibit_free_realized_faces
,
31313 doc
: /* Non-nil means don't free realized faces. Internal use only. */);
31314 inhibit_free_realized_faces
= 0;
31316 DEFVAR_BOOL ("inhibit-bidi-mirroring", inhibit_bidi_mirroring
,
31317 doc
: /* Non-nil means don't mirror characters even when bidi context requires that.
31318 Intended for use during debugging and for testing bidi display;
31319 see biditest.el in the test suite. */);
31320 inhibit_bidi_mirroring
= 0;
31323 DEFVAR_BOOL ("inhibit-try-window-id", inhibit_try_window_id
,
31324 doc
: /* Inhibit try_window_id display optimization. */);
31325 inhibit_try_window_id
= 0;
31327 DEFVAR_BOOL ("inhibit-try-window-reusing", inhibit_try_window_reusing
,
31328 doc
: /* Inhibit try_window_reusing display optimization. */);
31329 inhibit_try_window_reusing
= 0;
31331 DEFVAR_BOOL ("inhibit-try-cursor-movement", inhibit_try_cursor_movement
,
31332 doc
: /* Inhibit try_cursor_movement display optimization. */);
31333 inhibit_try_cursor_movement
= 0;
31334 #endif /* GLYPH_DEBUG */
31336 DEFVAR_INT ("overline-margin", overline_margin
,
31337 doc
: /* Space between overline and text, in pixels.
31338 The default value is 2: the height of the overline (1 pixel) plus 1 pixel
31339 margin to the character height. */);
31340 overline_margin
= 2;
31342 DEFVAR_INT ("underline-minimum-offset",
31343 underline_minimum_offset
,
31344 doc
: /* Minimum distance between baseline and underline.
31345 This can improve legibility of underlined text at small font sizes,
31346 particularly when using variable `x-use-underline-position-properties'
31347 with fonts that specify an UNDERLINE_POSITION relatively close to the
31348 baseline. The default value is 1. */);
31349 underline_minimum_offset
= 1;
31351 DEFVAR_BOOL ("display-hourglass", display_hourglass_p
,
31352 doc
: /* Non-nil means show an hourglass pointer, when Emacs is busy.
31353 This feature only works when on a window system that can change
31354 cursor shapes. */);
31355 display_hourglass_p
= 1;
31357 DEFVAR_LISP ("hourglass-delay", Vhourglass_delay
,
31358 doc
: /* Seconds to wait before displaying an hourglass pointer when Emacs is busy. */);
31359 Vhourglass_delay
= make_number (DEFAULT_HOURGLASS_DELAY
);
31361 #ifdef HAVE_WINDOW_SYSTEM
31362 hourglass_atimer
= NULL
;
31363 hourglass_shown_p
= 0;
31364 #endif /* HAVE_WINDOW_SYSTEM */
31366 /* Name of the face used to display glyphless characters. */
31367 DEFSYM (Qglyphless_char
, "glyphless-char");
31369 /* Method symbols for Vglyphless_char_display. */
31370 DEFSYM (Qhex_code
, "hex-code");
31371 DEFSYM (Qempty_box
, "empty-box");
31372 DEFSYM (Qthin_space
, "thin-space");
31373 DEFSYM (Qzero_width
, "zero-width");
31375 DEFVAR_LISP ("pre-redisplay-function", Vpre_redisplay_function
,
31376 doc
: /* Function run just before redisplay.
31377 It is called with one argument, which is the set of windows that are to
31378 be redisplayed. This set can be nil (meaning, only the selected window),
31379 or t (meaning all windows). */);
31380 Vpre_redisplay_function
= intern ("ignore");
31382 /* Symbol for the purpose of Vglyphless_char_display. */
31383 DEFSYM (Qglyphless_char_display
, "glyphless-char-display");
31384 Fput (Qglyphless_char_display
, Qchar_table_extra_slots
, make_number (1));
31386 DEFVAR_LISP ("glyphless-char-display", Vglyphless_char_display
,
31387 doc
: /* Char-table defining glyphless characters.
31388 Each element, if non-nil, should be one of the following:
31389 an ASCII acronym string: display this string in a box
31390 `hex-code': display the hexadecimal code of a character in a box
31391 `empty-box': display as an empty box
31392 `thin-space': display as 1-pixel width space
31393 `zero-width': don't display
31394 An element may also be a cons cell (GRAPHICAL . TEXT), which specifies the
31395 display method for graphical terminals and text terminals respectively.
31396 GRAPHICAL and TEXT should each have one of the values listed above.
31398 The char-table has one extra slot to control the display of a character for
31399 which no font is found. This slot only takes effect on graphical terminals.
31400 Its value should be an ASCII acronym string, `hex-code', `empty-box', or
31401 `thin-space'. The default is `empty-box'.
31403 If a character has a non-nil entry in an active display table, the
31404 display table takes effect; in this case, Emacs does not consult
31405 `glyphless-char-display' at all. */);
31406 Vglyphless_char_display
= Fmake_char_table (Qglyphless_char_display
, Qnil
);
31407 Fset_char_table_extra_slot (Vglyphless_char_display
, make_number (0),
31410 DEFVAR_LISP ("debug-on-message", Vdebug_on_message
,
31411 doc
: /* If non-nil, debug if a message matching this regexp is displayed. */);
31412 Vdebug_on_message
= Qnil
;
31414 DEFVAR_LISP ("redisplay--all-windows-cause", Vredisplay__all_windows_cause
,
31416 Vredisplay__all_windows_cause
31417 = Fmake_vector (make_number (100), make_number (0));
31419 DEFVAR_LISP ("redisplay--mode-lines-cause", Vredisplay__mode_lines_cause
,
31421 Vredisplay__mode_lines_cause
31422 = Fmake_vector (make_number (100), make_number (0));
31426 /* Initialize this module when Emacs starts. */
31431 CHARPOS (this_line_start_pos
) = 0;
31433 if (!noninteractive
)
31435 struct window
*m
= XWINDOW (minibuf_window
);
31436 Lisp_Object frame
= m
->frame
;
31437 struct frame
*f
= XFRAME (frame
);
31438 Lisp_Object root
= FRAME_ROOT_WINDOW (f
);
31439 struct window
*r
= XWINDOW (root
);
31442 echo_area_window
= minibuf_window
;
31444 r
->top_line
= FRAME_TOP_MARGIN (f
);
31445 r
->pixel_top
= r
->top_line
* FRAME_LINE_HEIGHT (f
);
31446 r
->total_cols
= FRAME_COLS (f
);
31447 r
->pixel_width
= r
->total_cols
* FRAME_COLUMN_WIDTH (f
);
31448 r
->total_lines
= FRAME_TOTAL_LINES (f
) - 1 - FRAME_TOP_MARGIN (f
);
31449 r
->pixel_height
= r
->total_lines
* FRAME_LINE_HEIGHT (f
);
31451 m
->top_line
= FRAME_TOTAL_LINES (f
) - 1;
31452 m
->pixel_top
= m
->top_line
* FRAME_LINE_HEIGHT (f
);
31453 m
->total_cols
= FRAME_COLS (f
);
31454 m
->pixel_width
= m
->total_cols
* FRAME_COLUMN_WIDTH (f
);
31455 m
->total_lines
= 1;
31456 m
->pixel_height
= m
->total_lines
* FRAME_LINE_HEIGHT (f
);
31458 scratch_glyph_row
.glyphs
[TEXT_AREA
] = scratch_glyphs
;
31459 scratch_glyph_row
.glyphs
[TEXT_AREA
+ 1]
31460 = scratch_glyphs
+ MAX_SCRATCH_GLYPHS
;
31462 /* The default ellipsis glyphs `...'. */
31463 for (i
= 0; i
< 3; ++i
)
31464 default_invis_vector
[i
] = make_number ('.');
31468 /* Allocate the buffer for frame titles.
31469 Also used for `format-mode-line'. */
31471 mode_line_noprop_buf
= xmalloc (size
);
31472 mode_line_noprop_buf_end
= mode_line_noprop_buf
+ size
;
31473 mode_line_noprop_ptr
= mode_line_noprop_buf
;
31474 mode_line_target
= MODE_LINE_DISPLAY
;
31477 help_echo_showing_p
= 0;
31480 #ifdef HAVE_WINDOW_SYSTEM
31482 /* Platform-independent portion of hourglass implementation. */
31484 /* Timer function of hourglass_atimer. */
31487 show_hourglass (struct atimer
*timer
)
31489 /* The timer implementation will cancel this timer automatically
31490 after this function has run. Set hourglass_atimer to null
31491 so that we know the timer doesn't have to be canceled. */
31492 hourglass_atimer
= NULL
;
31494 if (!hourglass_shown_p
)
31496 Lisp_Object tail
, frame
;
31500 FOR_EACH_FRAME (tail
, frame
)
31502 struct frame
*f
= XFRAME (frame
);
31504 if (FRAME_LIVE_P (f
) && FRAME_WINDOW_P (f
)
31505 && FRAME_RIF (f
)->show_hourglass
)
31506 FRAME_RIF (f
)->show_hourglass (f
);
31509 hourglass_shown_p
= 1;
31514 /* Cancel a currently active hourglass timer, and start a new one. */
31517 start_hourglass (void)
31519 struct timespec delay
;
31521 cancel_hourglass ();
31523 if (INTEGERP (Vhourglass_delay
)
31524 && XINT (Vhourglass_delay
) > 0)
31525 delay
= make_timespec (min (XINT (Vhourglass_delay
),
31526 TYPE_MAXIMUM (time_t)),
31528 else if (FLOATP (Vhourglass_delay
)
31529 && XFLOAT_DATA (Vhourglass_delay
) > 0)
31530 delay
= dtotimespec (XFLOAT_DATA (Vhourglass_delay
));
31532 delay
= make_timespec (DEFAULT_HOURGLASS_DELAY
, 0);
31534 hourglass_atimer
= start_atimer (ATIMER_RELATIVE
, delay
,
31535 show_hourglass
, NULL
);
31538 /* Cancel the hourglass cursor timer if active, hide a busy cursor if
31542 cancel_hourglass (void)
31544 if (hourglass_atimer
)
31546 cancel_atimer (hourglass_atimer
);
31547 hourglass_atimer
= NULL
;
31550 if (hourglass_shown_p
)
31552 Lisp_Object tail
, frame
;
31556 FOR_EACH_FRAME (tail
, frame
)
31558 struct frame
*f
= XFRAME (frame
);
31560 if (FRAME_LIVE_P (f
) && FRAME_WINDOW_P (f
)
31561 && FRAME_RIF (f
)->hide_hourglass
)
31562 FRAME_RIF (f
)->hide_hourglass (f
);
31564 /* No cursors on non GUI frames - restore to stock arrow cursor. */
31565 else if (!FRAME_W32_P (f
))
31566 w32_arrow_cursor ();
31570 hourglass_shown_p
= 0;
31575 #endif /* HAVE_WINDOW_SYSTEM */