Fix part 4 of bug#9771 with assertion violation when wrap-prefix is used
[bpt/emacs.git] / src / xdisp.c
1 /* Display generation from window structure and buffer text.
2
3 Copyright (C) 1985-1988, 1993-1995, 1997-2011 Free Software Foundation, Inc.
4
5 This file is part of GNU Emacs.
6
7 GNU Emacs is free software: you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation, either version 3 of the License, or
10 (at your option) any later version.
11
12 GNU Emacs is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
19
20 /* New redisplay written by Gerd Moellmann <gerd@gnu.org>.
21
22 Redisplay.
23
24 Emacs separates the task of updating the display from code
25 modifying global state, e.g. buffer text. This way functions
26 operating on buffers don't also have to be concerned with updating
27 the display.
28
29 Updating the display is triggered by the Lisp interpreter when it
30 decides it's time to do it. This is done either automatically for
31 you as part of the interpreter's command loop or as the result of
32 calling Lisp functions like `sit-for'. The C function `redisplay'
33 in xdisp.c is the only entry into the inner redisplay code.
34
35 The following diagram shows how redisplay code is invoked. As you
36 can see, Lisp calls redisplay and vice versa. Under window systems
37 like X, some portions of the redisplay code are also called
38 asynchronously during mouse movement or expose events. It is very
39 important that these code parts do NOT use the C library (malloc,
40 free) because many C libraries under Unix are not reentrant. They
41 may also NOT call functions of the Lisp interpreter which could
42 change the interpreter's state. If you don't follow these rules,
43 you will encounter bugs which are very hard to explain.
44
45 +--------------+ redisplay +----------------+
46 | Lisp machine |---------------->| Redisplay code |<--+
47 +--------------+ (xdisp.c) +----------------+ |
48 ^ | |
49 +----------------------------------+ |
50 Don't use this path when called |
51 asynchronously! |
52 |
53 expose_window (asynchronous) |
54 |
55 X expose events -----+
56
57 What does redisplay do? Obviously, it has to figure out somehow what
58 has been changed since the last time the display has been updated,
59 and to make these changes visible. Preferably it would do that in
60 a moderately intelligent way, i.e. fast.
61
62 Changes in buffer text can be deduced from window and buffer
63 structures, and from some global variables like `beg_unchanged' and
64 `end_unchanged'. The contents of the display are additionally
65 recorded in a `glyph matrix', a two-dimensional matrix of glyph
66 structures. Each row in such a matrix corresponds to a line on the
67 display, and each glyph in a row corresponds to a column displaying
68 a character, an image, or what else. This matrix is called the
69 `current glyph matrix' or `current matrix' in redisplay
70 terminology.
71
72 For buffer parts that have been changed since the last update, a
73 second glyph matrix is constructed, the so called `desired glyph
74 matrix' or short `desired matrix'. Current and desired matrix are
75 then compared to find a cheap way to update the display, e.g. by
76 reusing part of the display by scrolling lines.
77
78 You will find a lot of redisplay optimizations when you start
79 looking at the innards of redisplay. The overall goal of all these
80 optimizations is to make redisplay fast because it is done
81 frequently. Some of these optimizations are implemented by the
82 following functions:
83
84 . try_cursor_movement
85
86 This function tries to update the display if the text in the
87 window did not change and did not scroll, only point moved, and
88 it did not move off the displayed portion of the text.
89
90 . try_window_reusing_current_matrix
91
92 This function reuses the current matrix of a window when text
93 has not changed, but the window start changed (e.g., due to
94 scrolling).
95
96 . try_window_id
97
98 This function attempts to redisplay a window by reusing parts of
99 its existing display. It finds and reuses the part that was not
100 changed, and redraws the rest.
101
102 . try_window
103
104 This function performs the full redisplay of a single window
105 assuming that its fonts were not changed and that the cursor
106 will not end up in the scroll margins. (Loading fonts requires
107 re-adjustment of dimensions of glyph matrices, which makes this
108 method impossible to use.)
109
110 These optimizations are tried in sequence (some can be skipped if
111 it is known that they are not applicable). If none of the
112 optimizations were successful, redisplay calls redisplay_windows,
113 which performs a full redisplay of all windows.
114
115 Desired matrices.
116
117 Desired matrices are always built per Emacs window. The function
118 `display_line' is the central function to look at if you are
119 interested. It constructs one row in a desired matrix given an
120 iterator structure containing both a buffer position and a
121 description of the environment in which the text is to be
122 displayed. But this is too early, read on.
123
124 Characters and pixmaps displayed for a range of buffer text depend
125 on various settings of buffers and windows, on overlays and text
126 properties, on display tables, on selective display. The good news
127 is that all this hairy stuff is hidden behind a small set of
128 interface functions taking an iterator structure (struct it)
129 argument.
130
131 Iteration over things to be displayed is then simple. It is
132 started by initializing an iterator with a call to init_iterator,
133 passing it the buffer position where to start iteration. For
134 iteration over strings, pass -1 as the position to init_iterator,
135 and call reseat_to_string when the string is ready, to initialize
136 the iterator for that string. Thereafter, calls to
137 get_next_display_element fill the iterator structure with relevant
138 information about the next thing to display. Calls to
139 set_iterator_to_next move the iterator to the next thing.
140
141 Besides this, an iterator also contains information about the
142 display environment in which glyphs for display elements are to be
143 produced. It has fields for the width and height of the display,
144 the information whether long lines are truncated or continued, a
145 current X and Y position, and lots of other stuff you can better
146 see in dispextern.h.
147
148 Glyphs in a desired matrix are normally constructed in a loop
149 calling get_next_display_element and then PRODUCE_GLYPHS. The call
150 to PRODUCE_GLYPHS will fill the iterator structure with pixel
151 information about the element being displayed and at the same time
152 produce glyphs for it. If the display element fits on the line
153 being displayed, set_iterator_to_next is called next, otherwise the
154 glyphs produced are discarded. The function display_line is the
155 workhorse of filling glyph rows in the desired matrix with glyphs.
156 In addition to producing glyphs, it also handles line truncation
157 and continuation, word wrap, and cursor positioning (for the
158 latter, see also set_cursor_from_row).
159
160 Frame matrices.
161
162 That just couldn't be all, could it? What about terminal types not
163 supporting operations on sub-windows of the screen? To update the
164 display on such a terminal, window-based glyph matrices are not
165 well suited. To be able to reuse part of the display (scrolling
166 lines up and down), we must instead have a view of the whole
167 screen. This is what `frame matrices' are for. They are a trick.
168
169 Frames on terminals like above have a glyph pool. Windows on such
170 a frame sub-allocate their glyph memory from their frame's glyph
171 pool. The frame itself is given its own glyph matrices. By
172 coincidence---or maybe something else---rows in window glyph
173 matrices are slices of corresponding rows in frame matrices. Thus
174 writing to window matrices implicitly updates a frame matrix which
175 provides us with the view of the whole screen that we originally
176 wanted to have without having to move many bytes around. To be
177 honest, there is a little bit more done, but not much more. If you
178 plan to extend that code, take a look at dispnew.c. The function
179 build_frame_matrix is a good starting point.
180
181 Bidirectional display.
182
183 Bidirectional display adds quite some hair to this already complex
184 design. The good news are that a large portion of that hairy stuff
185 is hidden in bidi.c behind only 3 interfaces. bidi.c implements a
186 reordering engine which is called by set_iterator_to_next and
187 returns the next character to display in the visual order. See
188 commentary on bidi.c for more details. As far as redisplay is
189 concerned, the effect of calling bidi_move_to_visually_next, the
190 main interface of the reordering engine, is that the iterator gets
191 magically placed on the buffer or string position that is to be
192 displayed next. In other words, a linear iteration through the
193 buffer/string is replaced with a non-linear one. All the rest of
194 the redisplay is oblivious to the bidi reordering.
195
196 Well, almost oblivious---there are still complications, most of
197 them due to the fact that buffer and string positions no longer
198 change monotonously with glyph indices in a glyph row. Moreover,
199 for continued lines, the buffer positions may not even be
200 monotonously changing with vertical positions. Also, accounting
201 for face changes, overlays, etc. becomes more complex because
202 non-linear iteration could potentially skip many positions with
203 changes, and then cross them again on the way back...
204
205 One other prominent effect of bidirectional display is that some
206 paragraphs of text need to be displayed starting at the right
207 margin of the window---the so-called right-to-left, or R2L
208 paragraphs. R2L paragraphs are displayed with R2L glyph rows,
209 which have their reversed_p flag set. The bidi reordering engine
210 produces characters in such rows starting from the character which
211 should be the rightmost on display. PRODUCE_GLYPHS then reverses
212 the order, when it fills up the glyph row whose reversed_p flag is
213 set, by prepending each new glyph to what is already there, instead
214 of appending it. When the glyph row is complete, the function
215 extend_face_to_end_of_line fills the empty space to the left of the
216 leftmost character with special glyphs, which will display as,
217 well, empty. On text terminals, these special glyphs are simply
218 blank characters. On graphics terminals, there's a single stretch
219 glyph of a suitably computed width. Both the blanks and the
220 stretch glyph are given the face of the background of the line.
221 This way, the terminal-specific back-end can still draw the glyphs
222 left to right, even for R2L lines.
223
224 Bidirectional display and character compositions
225
226 Some scripts cannot be displayed by drawing each character
227 individually, because adjacent characters change each other's shape
228 on display. For example, Arabic and Indic scripts belong to this
229 category.
230
231 Emacs display supports this by providing "character compositions",
232 most of which is implemented in composite.c. During the buffer
233 scan that delivers characters to PRODUCE_GLYPHS, if the next
234 character to be delivered is a composed character, the iteration
235 calls composition_reseat_it and next_element_from_composition. If
236 they succeed to compose the character with one or more of the
237 following characters, the whole sequence of characters that where
238 composed is recorded in the `struct composition_it' object that is
239 part of the buffer iterator. The composed sequence could produce
240 one or more font glyphs (called "grapheme clusters") on the screen.
241 Each of these grapheme clusters is then delivered to PRODUCE_GLYPHS
242 in the direction corresponding to the current bidi scan direction
243 (recorded in the scan_dir member of the `struct bidi_it' object
244 that is part of the buffer iterator). In particular, if the bidi
245 iterator currently scans the buffer backwards, the grapheme
246 clusters are delivered back to front. This reorders the grapheme
247 clusters as appropriate for the current bidi context. Note that
248 this means that the grapheme clusters are always stored in the
249 LGSTRING object (see composite.c) in the logical order.
250
251 Moving an iterator in bidirectional text
252 without producing glyphs
253
254 Note one important detail mentioned above: that the bidi reordering
255 engine, driven by the iterator, produces characters in R2L rows
256 starting at the character that will be the rightmost on display.
257 As far as the iterator is concerned, the geometry of such rows is
258 still left to right, i.e. the iterator "thinks" the first character
259 is at the leftmost pixel position. The iterator does not know that
260 PRODUCE_GLYPHS reverses the order of the glyphs that the iterator
261 delivers. This is important when functions from the move_it_*
262 family are used to get to certain screen position or to match
263 screen coordinates with buffer coordinates: these functions use the
264 iterator geometry, which is left to right even in R2L paragraphs.
265 This works well with most callers of move_it_*, because they need
266 to get to a specific column, and columns are still numbered in the
267 reading order, i.e. the rightmost character in a R2L paragraph is
268 still column zero. But some callers do not get well with this; a
269 notable example is mouse clicks that need to find the character
270 that corresponds to certain pixel coordinates. See
271 buffer_posn_from_coords in dispnew.c for how this is handled. */
272
273 #include <config.h>
274 #include <stdio.h>
275 #include <limits.h>
276 #include <setjmp.h>
277
278 #include "lisp.h"
279 #include "keyboard.h"
280 #include "frame.h"
281 #include "window.h"
282 #include "termchar.h"
283 #include "dispextern.h"
284 #include "buffer.h"
285 #include "character.h"
286 #include "charset.h"
287 #include "indent.h"
288 #include "commands.h"
289 #include "keymap.h"
290 #include "macros.h"
291 #include "disptab.h"
292 #include "termhooks.h"
293 #include "termopts.h"
294 #include "intervals.h"
295 #include "coding.h"
296 #include "process.h"
297 #include "region-cache.h"
298 #include "font.h"
299 #include "fontset.h"
300 #include "blockinput.h"
301
302 #ifdef HAVE_X_WINDOWS
303 #include "xterm.h"
304 #endif
305 #ifdef WINDOWSNT
306 #include "w32term.h"
307 #endif
308 #ifdef HAVE_NS
309 #include "nsterm.h"
310 #endif
311 #ifdef USE_GTK
312 #include "gtkutil.h"
313 #endif
314
315 #include "font.h"
316
317 #ifndef FRAME_X_OUTPUT
318 #define FRAME_X_OUTPUT(f) ((f)->output_data.x)
319 #endif
320
321 #define INFINITY 10000000
322
323 Lisp_Object Qoverriding_local_map, Qoverriding_terminal_local_map;
324 Lisp_Object Qwindow_scroll_functions;
325 static Lisp_Object Qwindow_text_change_functions;
326 static Lisp_Object Qredisplay_end_trigger_functions;
327 Lisp_Object Qinhibit_point_motion_hooks;
328 static Lisp_Object QCeval, QCpropertize;
329 Lisp_Object QCfile, QCdata;
330 static Lisp_Object Qfontified;
331 static Lisp_Object Qgrow_only;
332 static Lisp_Object Qinhibit_eval_during_redisplay;
333 static Lisp_Object Qbuffer_position, Qposition, Qobject;
334 static Lisp_Object Qright_to_left, Qleft_to_right;
335
336 /* Cursor shapes */
337 Lisp_Object Qbar, Qhbar, Qbox, Qhollow;
338
339 /* Pointer shapes */
340 static Lisp_Object Qarrow, Qhand;
341 Lisp_Object Qtext;
342
343 /* Holds the list (error). */
344 static Lisp_Object list_of_error;
345
346 static Lisp_Object Qfontification_functions;
347
348 static Lisp_Object Qwrap_prefix;
349 static Lisp_Object Qline_prefix;
350
351 /* Non-nil means don't actually do any redisplay. */
352
353 Lisp_Object Qinhibit_redisplay;
354
355 /* Names of text properties relevant for redisplay. */
356
357 Lisp_Object Qdisplay;
358
359 Lisp_Object Qspace, QCalign_to;
360 static Lisp_Object QCrelative_width, QCrelative_height;
361 Lisp_Object Qleft_margin, Qright_margin;
362 static Lisp_Object Qspace_width, Qraise;
363 static Lisp_Object Qslice;
364 Lisp_Object Qcenter;
365 static Lisp_Object Qmargin, Qpointer;
366 static Lisp_Object Qline_height;
367
368 #ifdef HAVE_WINDOW_SYSTEM
369
370 /* Test if overflow newline into fringe. Called with iterator IT
371 at or past right window margin, and with IT->current_x set. */
372
373 #define IT_OVERFLOW_NEWLINE_INTO_FRINGE(IT) \
374 (!NILP (Voverflow_newline_into_fringe) \
375 && FRAME_WINDOW_P ((IT)->f) \
376 && ((IT)->bidi_it.paragraph_dir == R2L \
377 ? (WINDOW_LEFT_FRINGE_WIDTH ((IT)->w) > 0) \
378 : (WINDOW_RIGHT_FRINGE_WIDTH ((IT)->w) > 0)) \
379 && (IT)->current_x == (IT)->last_visible_x \
380 && (IT)->line_wrap != WORD_WRAP)
381
382 #else /* !HAVE_WINDOW_SYSTEM */
383 #define IT_OVERFLOW_NEWLINE_INTO_FRINGE(it) 0
384 #endif /* HAVE_WINDOW_SYSTEM */
385
386 /* Test if the display element loaded in IT is a space or tab
387 character. This is used to determine word wrapping. */
388
389 #define IT_DISPLAYING_WHITESPACE(it) \
390 (it->what == IT_CHARACTER && (it->c == ' ' || it->c == '\t'))
391
392 /* Name of the face used to highlight trailing whitespace. */
393
394 static Lisp_Object Qtrailing_whitespace;
395
396 /* Name and number of the face used to highlight escape glyphs. */
397
398 static Lisp_Object Qescape_glyph;
399
400 /* Name and number of the face used to highlight non-breaking spaces. */
401
402 static Lisp_Object Qnobreak_space;
403
404 /* The symbol `image' which is the car of the lists used to represent
405 images in Lisp. Also a tool bar style. */
406
407 Lisp_Object Qimage;
408
409 /* The image map types. */
410 Lisp_Object QCmap;
411 static Lisp_Object QCpointer;
412 static Lisp_Object Qrect, Qcircle, Qpoly;
413
414 /* Tool bar styles */
415 Lisp_Object Qboth, Qboth_horiz, Qtext_image_horiz;
416
417 /* Non-zero means print newline to stdout before next mini-buffer
418 message. */
419
420 int noninteractive_need_newline;
421
422 /* Non-zero means print newline to message log before next message. */
423
424 static int message_log_need_newline;
425
426 /* Three markers that message_dolog uses.
427 It could allocate them itself, but that causes trouble
428 in handling memory-full errors. */
429 static Lisp_Object message_dolog_marker1;
430 static Lisp_Object message_dolog_marker2;
431 static Lisp_Object message_dolog_marker3;
432 \f
433 /* The buffer position of the first character appearing entirely or
434 partially on the line of the selected window which contains the
435 cursor; <= 0 if not known. Set by set_cursor_from_row, used for
436 redisplay optimization in redisplay_internal. */
437
438 static struct text_pos this_line_start_pos;
439
440 /* Number of characters past the end of the line above, including the
441 terminating newline. */
442
443 static struct text_pos this_line_end_pos;
444
445 /* The vertical positions and the height of this line. */
446
447 static int this_line_vpos;
448 static int this_line_y;
449 static int this_line_pixel_height;
450
451 /* X position at which this display line starts. Usually zero;
452 negative if first character is partially visible. */
453
454 static int this_line_start_x;
455
456 /* The smallest character position seen by move_it_* functions as they
457 move across display lines. Used to set MATRIX_ROW_START_CHARPOS of
458 hscrolled lines, see display_line. */
459
460 static struct text_pos this_line_min_pos;
461
462 /* Buffer that this_line_.* variables are referring to. */
463
464 static struct buffer *this_line_buffer;
465
466
467 /* Values of those variables at last redisplay are stored as
468 properties on `overlay-arrow-position' symbol. However, if
469 Voverlay_arrow_position is a marker, last-arrow-position is its
470 numerical position. */
471
472 static Lisp_Object Qlast_arrow_position, Qlast_arrow_string;
473
474 /* Alternative overlay-arrow-string and overlay-arrow-bitmap
475 properties on a symbol in overlay-arrow-variable-list. */
476
477 static Lisp_Object Qoverlay_arrow_string, Qoverlay_arrow_bitmap;
478
479 Lisp_Object Qmenu_bar_update_hook;
480
481 /* Nonzero if an overlay arrow has been displayed in this window. */
482
483 static int overlay_arrow_seen;
484
485 /* Number of windows showing the buffer of the selected window (or
486 another buffer with the same base buffer). keyboard.c refers to
487 this. */
488
489 int buffer_shared;
490
491 /* Vector containing glyphs for an ellipsis `...'. */
492
493 static Lisp_Object default_invis_vector[3];
494
495 /* This is the window where the echo area message was displayed. It
496 is always a mini-buffer window, but it may not be the same window
497 currently active as a mini-buffer. */
498
499 Lisp_Object echo_area_window;
500
501 /* List of pairs (MESSAGE . MULTIBYTE). The function save_message
502 pushes the current message and the value of
503 message_enable_multibyte on the stack, the function restore_message
504 pops the stack and displays MESSAGE again. */
505
506 static Lisp_Object Vmessage_stack;
507
508 /* Nonzero means multibyte characters were enabled when the echo area
509 message was specified. */
510
511 static int message_enable_multibyte;
512
513 /* Nonzero if we should redraw the mode lines on the next redisplay. */
514
515 int update_mode_lines;
516
517 /* Nonzero if window sizes or contents have changed since last
518 redisplay that finished. */
519
520 int windows_or_buffers_changed;
521
522 /* Nonzero means a frame's cursor type has been changed. */
523
524 int cursor_type_changed;
525
526 /* Nonzero after display_mode_line if %l was used and it displayed a
527 line number. */
528
529 static int line_number_displayed;
530
531 /* The name of the *Messages* buffer, a string. */
532
533 static Lisp_Object Vmessages_buffer_name;
534
535 /* Current, index 0, and last displayed echo area message. Either
536 buffers from echo_buffers, or nil to indicate no message. */
537
538 Lisp_Object echo_area_buffer[2];
539
540 /* The buffers referenced from echo_area_buffer. */
541
542 static Lisp_Object echo_buffer[2];
543
544 /* A vector saved used in with_area_buffer to reduce consing. */
545
546 static Lisp_Object Vwith_echo_area_save_vector;
547
548 /* Non-zero means display_echo_area should display the last echo area
549 message again. Set by redisplay_preserve_echo_area. */
550
551 static int display_last_displayed_message_p;
552
553 /* Nonzero if echo area is being used by print; zero if being used by
554 message. */
555
556 static int message_buf_print;
557
558 /* The symbol `inhibit-menubar-update' and its DEFVAR_BOOL variable. */
559
560 static Lisp_Object Qinhibit_menubar_update;
561 static Lisp_Object Qmessage_truncate_lines;
562
563 /* Set to 1 in clear_message to make redisplay_internal aware
564 of an emptied echo area. */
565
566 static int message_cleared_p;
567
568 /* A scratch glyph row with contents used for generating truncation
569 glyphs. Also used in direct_output_for_insert. */
570
571 #define MAX_SCRATCH_GLYPHS 100
572 static struct glyph_row scratch_glyph_row;
573 static struct glyph scratch_glyphs[MAX_SCRATCH_GLYPHS];
574
575 /* Ascent and height of the last line processed by move_it_to. */
576
577 static int last_max_ascent, last_height;
578
579 /* Non-zero if there's a help-echo in the echo area. */
580
581 int help_echo_showing_p;
582
583 /* If >= 0, computed, exact values of mode-line and header-line height
584 to use in the macros CURRENT_MODE_LINE_HEIGHT and
585 CURRENT_HEADER_LINE_HEIGHT. */
586
587 int current_mode_line_height, current_header_line_height;
588
589 /* The maximum distance to look ahead for text properties. Values
590 that are too small let us call compute_char_face and similar
591 functions too often which is expensive. Values that are too large
592 let us call compute_char_face and alike too often because we
593 might not be interested in text properties that far away. */
594
595 #define TEXT_PROP_DISTANCE_LIMIT 100
596
597 /* SAVE_IT and RESTORE_IT are called when we save a snapshot of the
598 iterator state and later restore it. This is needed because the
599 bidi iterator on bidi.c keeps a stacked cache of its states, which
600 is really a singleton. When we use scratch iterator objects to
601 move around the buffer, we can cause the bidi cache to be pushed or
602 popped, and therefore we need to restore the cache state when we
603 return to the original iterator. */
604 #define SAVE_IT(ITCOPY,ITORIG,CACHE) \
605 do { \
606 if (CACHE) \
607 bidi_unshelve_cache (CACHE, 1); \
608 ITCOPY = ITORIG; \
609 CACHE = bidi_shelve_cache (); \
610 } while (0)
611
612 #define RESTORE_IT(pITORIG,pITCOPY,CACHE) \
613 do { \
614 if (pITORIG != pITCOPY) \
615 *(pITORIG) = *(pITCOPY); \
616 bidi_unshelve_cache (CACHE, 0); \
617 CACHE = NULL; \
618 } while (0)
619
620 #if GLYPH_DEBUG
621
622 /* Non-zero means print traces of redisplay if compiled with
623 GLYPH_DEBUG != 0. */
624
625 int trace_redisplay_p;
626
627 #endif /* GLYPH_DEBUG */
628
629 #ifdef DEBUG_TRACE_MOVE
630 /* Non-zero means trace with TRACE_MOVE to stderr. */
631 int trace_move;
632
633 #define TRACE_MOVE(x) if (trace_move) fprintf x; else (void) 0
634 #else
635 #define TRACE_MOVE(x) (void) 0
636 #endif
637
638 static Lisp_Object Qauto_hscroll_mode;
639
640 /* Buffer being redisplayed -- for redisplay_window_error. */
641
642 static struct buffer *displayed_buffer;
643
644 /* Value returned from text property handlers (see below). */
645
646 enum prop_handled
647 {
648 HANDLED_NORMALLY,
649 HANDLED_RECOMPUTE_PROPS,
650 HANDLED_OVERLAY_STRING_CONSUMED,
651 HANDLED_RETURN
652 };
653
654 /* A description of text properties that redisplay is interested
655 in. */
656
657 struct props
658 {
659 /* The name of the property. */
660 Lisp_Object *name;
661
662 /* A unique index for the property. */
663 enum prop_idx idx;
664
665 /* A handler function called to set up iterator IT from the property
666 at IT's current position. Value is used to steer handle_stop. */
667 enum prop_handled (*handler) (struct it *it);
668 };
669
670 static enum prop_handled handle_face_prop (struct it *);
671 static enum prop_handled handle_invisible_prop (struct it *);
672 static enum prop_handled handle_display_prop (struct it *);
673 static enum prop_handled handle_composition_prop (struct it *);
674 static enum prop_handled handle_overlay_change (struct it *);
675 static enum prop_handled handle_fontified_prop (struct it *);
676
677 /* Properties handled by iterators. */
678
679 static struct props it_props[] =
680 {
681 {&Qfontified, FONTIFIED_PROP_IDX, handle_fontified_prop},
682 /* Handle `face' before `display' because some sub-properties of
683 `display' need to know the face. */
684 {&Qface, FACE_PROP_IDX, handle_face_prop},
685 {&Qdisplay, DISPLAY_PROP_IDX, handle_display_prop},
686 {&Qinvisible, INVISIBLE_PROP_IDX, handle_invisible_prop},
687 {&Qcomposition, COMPOSITION_PROP_IDX, handle_composition_prop},
688 {NULL, 0, NULL}
689 };
690
691 /* Value is the position described by X. If X is a marker, value is
692 the marker_position of X. Otherwise, value is X. */
693
694 #define COERCE_MARKER(X) (MARKERP ((X)) ? Fmarker_position (X) : (X))
695
696 /* Enumeration returned by some move_it_.* functions internally. */
697
698 enum move_it_result
699 {
700 /* Not used. Undefined value. */
701 MOVE_UNDEFINED,
702
703 /* Move ended at the requested buffer position or ZV. */
704 MOVE_POS_MATCH_OR_ZV,
705
706 /* Move ended at the requested X pixel position. */
707 MOVE_X_REACHED,
708
709 /* Move within a line ended at the end of a line that must be
710 continued. */
711 MOVE_LINE_CONTINUED,
712
713 /* Move within a line ended at the end of a line that would
714 be displayed truncated. */
715 MOVE_LINE_TRUNCATED,
716
717 /* Move within a line ended at a line end. */
718 MOVE_NEWLINE_OR_CR
719 };
720
721 /* This counter is used to clear the face cache every once in a while
722 in redisplay_internal. It is incremented for each redisplay.
723 Every CLEAR_FACE_CACHE_COUNT full redisplays, the face cache is
724 cleared. */
725
726 #define CLEAR_FACE_CACHE_COUNT 500
727 static int clear_face_cache_count;
728
729 /* Similarly for the image cache. */
730
731 #ifdef HAVE_WINDOW_SYSTEM
732 #define CLEAR_IMAGE_CACHE_COUNT 101
733 static int clear_image_cache_count;
734
735 /* Null glyph slice */
736 static struct glyph_slice null_glyph_slice = { 0, 0, 0, 0 };
737 #endif
738
739 /* Non-zero while redisplay_internal is in progress. */
740
741 int redisplaying_p;
742
743 static Lisp_Object Qinhibit_free_realized_faces;
744
745 /* If a string, XTread_socket generates an event to display that string.
746 (The display is done in read_char.) */
747
748 Lisp_Object help_echo_string;
749 Lisp_Object help_echo_window;
750 Lisp_Object help_echo_object;
751 EMACS_INT help_echo_pos;
752
753 /* Temporary variable for XTread_socket. */
754
755 Lisp_Object previous_help_echo_string;
756
757 /* Platform-independent portion of hourglass implementation. */
758
759 /* Non-zero means an hourglass cursor is currently shown. */
760 int hourglass_shown_p;
761
762 /* If non-null, an asynchronous timer that, when it expires, displays
763 an hourglass cursor on all frames. */
764 struct atimer *hourglass_atimer;
765
766 /* Name of the face used to display glyphless characters. */
767 Lisp_Object Qglyphless_char;
768
769 /* Symbol for the purpose of Vglyphless_char_display. */
770 static Lisp_Object Qglyphless_char_display;
771
772 /* Method symbols for Vglyphless_char_display. */
773 static Lisp_Object Qhex_code, Qempty_box, Qthin_space, Qzero_width;
774
775 /* Default pixel width of `thin-space' display method. */
776 #define THIN_SPACE_WIDTH 1
777
778 /* Default number of seconds to wait before displaying an hourglass
779 cursor. */
780 #define DEFAULT_HOURGLASS_DELAY 1
781
782 \f
783 /* Function prototypes. */
784
785 static void setup_for_ellipsis (struct it *, int);
786 static void set_iterator_to_next (struct it *, int);
787 static void mark_window_display_accurate_1 (struct window *, int);
788 static int single_display_spec_string_p (Lisp_Object, Lisp_Object);
789 static int display_prop_string_p (Lisp_Object, Lisp_Object);
790 static int cursor_row_p (struct glyph_row *);
791 static int redisplay_mode_lines (Lisp_Object, int);
792 static char *decode_mode_spec_coding (Lisp_Object, char *, int);
793
794 static Lisp_Object get_it_property (struct it *it, Lisp_Object prop);
795
796 static void handle_line_prefix (struct it *);
797
798 static void pint2str (char *, int, EMACS_INT);
799 static void pint2hrstr (char *, int, EMACS_INT);
800 static struct text_pos run_window_scroll_functions (Lisp_Object,
801 struct text_pos);
802 static void reconsider_clip_changes (struct window *, struct buffer *);
803 static int text_outside_line_unchanged_p (struct window *,
804 EMACS_INT, EMACS_INT);
805 static void store_mode_line_noprop_char (char);
806 static int store_mode_line_noprop (const char *, int, int);
807 static void handle_stop (struct it *);
808 static void handle_stop_backwards (struct it *, EMACS_INT);
809 static void vmessage (const char *, va_list) ATTRIBUTE_FORMAT_PRINTF (1, 0);
810 static void ensure_echo_area_buffers (void);
811 static Lisp_Object unwind_with_echo_area_buffer (Lisp_Object);
812 static Lisp_Object with_echo_area_buffer_unwind_data (struct window *);
813 static int with_echo_area_buffer (struct window *, int,
814 int (*) (EMACS_INT, Lisp_Object, EMACS_INT, EMACS_INT),
815 EMACS_INT, Lisp_Object, EMACS_INT, EMACS_INT);
816 static void clear_garbaged_frames (void);
817 static int current_message_1 (EMACS_INT, Lisp_Object, EMACS_INT, EMACS_INT);
818 static void pop_message (void);
819 static int truncate_message_1 (EMACS_INT, Lisp_Object, EMACS_INT, EMACS_INT);
820 static void set_message (const char *, Lisp_Object, EMACS_INT, int);
821 static int set_message_1 (EMACS_INT, Lisp_Object, EMACS_INT, EMACS_INT);
822 static int display_echo_area (struct window *);
823 static int display_echo_area_1 (EMACS_INT, Lisp_Object, EMACS_INT, EMACS_INT);
824 static int resize_mini_window_1 (EMACS_INT, Lisp_Object, EMACS_INT, EMACS_INT);
825 static Lisp_Object unwind_redisplay (Lisp_Object);
826 static int string_char_and_length (const unsigned char *, int *);
827 static struct text_pos display_prop_end (struct it *, Lisp_Object,
828 struct text_pos);
829 static int compute_window_start_on_continuation_line (struct window *);
830 static Lisp_Object safe_eval_handler (Lisp_Object);
831 static void insert_left_trunc_glyphs (struct it *);
832 static struct glyph_row *get_overlay_arrow_glyph_row (struct window *,
833 Lisp_Object);
834 static void extend_face_to_end_of_line (struct it *);
835 static int append_space_for_newline (struct it *, int);
836 static int cursor_row_fully_visible_p (struct window *, int, int);
837 static int try_scrolling (Lisp_Object, int, EMACS_INT, EMACS_INT, int, int);
838 static int try_cursor_movement (Lisp_Object, struct text_pos, int *);
839 static int trailing_whitespace_p (EMACS_INT);
840 static intmax_t message_log_check_duplicate (EMACS_INT, EMACS_INT);
841 static void push_it (struct it *, struct text_pos *);
842 static void pop_it (struct it *);
843 static void sync_frame_with_window_matrix_rows (struct window *);
844 static void select_frame_for_redisplay (Lisp_Object);
845 static void redisplay_internal (void);
846 static int echo_area_display (int);
847 static void redisplay_windows (Lisp_Object);
848 static void redisplay_window (Lisp_Object, int);
849 static Lisp_Object redisplay_window_error (Lisp_Object);
850 static Lisp_Object redisplay_window_0 (Lisp_Object);
851 static Lisp_Object redisplay_window_1 (Lisp_Object);
852 static int set_cursor_from_row (struct window *, struct glyph_row *,
853 struct glyph_matrix *, EMACS_INT, EMACS_INT,
854 int, int);
855 static int update_menu_bar (struct frame *, int, int);
856 static int try_window_reusing_current_matrix (struct window *);
857 static int try_window_id (struct window *);
858 static int display_line (struct it *);
859 static int display_mode_lines (struct window *);
860 static int display_mode_line (struct window *, enum face_id, Lisp_Object);
861 static int display_mode_element (struct it *, int, int, int, Lisp_Object, Lisp_Object, int);
862 static int store_mode_line_string (const char *, Lisp_Object, int, int, int, Lisp_Object);
863 static const char *decode_mode_spec (struct window *, int, int, Lisp_Object *);
864 static void display_menu_bar (struct window *);
865 static EMACS_INT display_count_lines (EMACS_INT, EMACS_INT, EMACS_INT,
866 EMACS_INT *);
867 static int display_string (const char *, Lisp_Object, Lisp_Object,
868 EMACS_INT, EMACS_INT, struct it *, int, int, int, int);
869 static void compute_line_metrics (struct it *);
870 static void run_redisplay_end_trigger_hook (struct it *);
871 static int get_overlay_strings (struct it *, EMACS_INT);
872 static int get_overlay_strings_1 (struct it *, EMACS_INT, int);
873 static void next_overlay_string (struct it *);
874 static void reseat (struct it *, struct text_pos, int);
875 static void reseat_1 (struct it *, struct text_pos, int);
876 static void back_to_previous_visible_line_start (struct it *);
877 void reseat_at_previous_visible_line_start (struct it *);
878 static void reseat_at_next_visible_line_start (struct it *, int);
879 static int next_element_from_ellipsis (struct it *);
880 static int next_element_from_display_vector (struct it *);
881 static int next_element_from_string (struct it *);
882 static int next_element_from_c_string (struct it *);
883 static int next_element_from_buffer (struct it *);
884 static int next_element_from_composition (struct it *);
885 static int next_element_from_image (struct it *);
886 static int next_element_from_stretch (struct it *);
887 static void load_overlay_strings (struct it *, EMACS_INT);
888 static int init_from_display_pos (struct it *, struct window *,
889 struct display_pos *);
890 static void reseat_to_string (struct it *, const char *,
891 Lisp_Object, EMACS_INT, EMACS_INT, int, int);
892 static int get_next_display_element (struct it *);
893 static enum move_it_result
894 move_it_in_display_line_to (struct it *, EMACS_INT, int,
895 enum move_operation_enum);
896 void move_it_vertically_backward (struct it *, int);
897 static void init_to_row_start (struct it *, struct window *,
898 struct glyph_row *);
899 static int init_to_row_end (struct it *, struct window *,
900 struct glyph_row *);
901 static void back_to_previous_line_start (struct it *);
902 static int forward_to_next_line_start (struct it *, int *, struct bidi_it *);
903 static struct text_pos string_pos_nchars_ahead (struct text_pos,
904 Lisp_Object, EMACS_INT);
905 static struct text_pos string_pos (EMACS_INT, Lisp_Object);
906 static struct text_pos c_string_pos (EMACS_INT, const char *, int);
907 static EMACS_INT number_of_chars (const char *, int);
908 static void compute_stop_pos (struct it *);
909 static void compute_string_pos (struct text_pos *, struct text_pos,
910 Lisp_Object);
911 static int face_before_or_after_it_pos (struct it *, int);
912 static EMACS_INT next_overlay_change (EMACS_INT);
913 static int handle_display_spec (struct it *, Lisp_Object, Lisp_Object,
914 Lisp_Object, struct text_pos *, EMACS_INT, int);
915 static int handle_single_display_spec (struct it *, Lisp_Object,
916 Lisp_Object, Lisp_Object,
917 struct text_pos *, EMACS_INT, int, int);
918 static int underlying_face_id (struct it *);
919 static int in_ellipses_for_invisible_text_p (struct display_pos *,
920 struct window *);
921
922 #define face_before_it_pos(IT) face_before_or_after_it_pos ((IT), 1)
923 #define face_after_it_pos(IT) face_before_or_after_it_pos ((IT), 0)
924
925 #ifdef HAVE_WINDOW_SYSTEM
926
927 static void x_consider_frame_title (Lisp_Object);
928 static int tool_bar_lines_needed (struct frame *, int *);
929 static void update_tool_bar (struct frame *, int);
930 static void build_desired_tool_bar_string (struct frame *f);
931 static int redisplay_tool_bar (struct frame *);
932 static void display_tool_bar_line (struct it *, int);
933 static void notice_overwritten_cursor (struct window *,
934 enum glyph_row_area,
935 int, int, int, int);
936 static void append_stretch_glyph (struct it *, Lisp_Object,
937 int, int, int);
938
939
940 #endif /* HAVE_WINDOW_SYSTEM */
941
942 static void show_mouse_face (Mouse_HLInfo *, enum draw_glyphs_face);
943 static int coords_in_mouse_face_p (struct window *, int, int);
944
945
946 \f
947 /***********************************************************************
948 Window display dimensions
949 ***********************************************************************/
950
951 /* Return the bottom boundary y-position for text lines in window W.
952 This is the first y position at which a line cannot start.
953 It is relative to the top of the window.
954
955 This is the height of W minus the height of a mode line, if any. */
956
957 inline int
958 window_text_bottom_y (struct window *w)
959 {
960 int height = WINDOW_TOTAL_HEIGHT (w);
961
962 if (WINDOW_WANTS_MODELINE_P (w))
963 height -= CURRENT_MODE_LINE_HEIGHT (w);
964 return height;
965 }
966
967 /* Return the pixel width of display area AREA of window W. AREA < 0
968 means return the total width of W, not including fringes to
969 the left and right of the window. */
970
971 inline int
972 window_box_width (struct window *w, int area)
973 {
974 int cols = XFASTINT (w->total_cols);
975 int pixels = 0;
976
977 if (!w->pseudo_window_p)
978 {
979 cols -= WINDOW_SCROLL_BAR_COLS (w);
980
981 if (area == TEXT_AREA)
982 {
983 if (INTEGERP (w->left_margin_cols))
984 cols -= XFASTINT (w->left_margin_cols);
985 if (INTEGERP (w->right_margin_cols))
986 cols -= XFASTINT (w->right_margin_cols);
987 pixels = -WINDOW_TOTAL_FRINGE_WIDTH (w);
988 }
989 else if (area == LEFT_MARGIN_AREA)
990 {
991 cols = (INTEGERP (w->left_margin_cols)
992 ? XFASTINT (w->left_margin_cols) : 0);
993 pixels = 0;
994 }
995 else if (area == RIGHT_MARGIN_AREA)
996 {
997 cols = (INTEGERP (w->right_margin_cols)
998 ? XFASTINT (w->right_margin_cols) : 0);
999 pixels = 0;
1000 }
1001 }
1002
1003 return cols * WINDOW_FRAME_COLUMN_WIDTH (w) + pixels;
1004 }
1005
1006
1007 /* Return the pixel height of the display area of window W, not
1008 including mode lines of W, if any. */
1009
1010 inline int
1011 window_box_height (struct window *w)
1012 {
1013 struct frame *f = XFRAME (w->frame);
1014 int height = WINDOW_TOTAL_HEIGHT (w);
1015
1016 xassert (height >= 0);
1017
1018 /* Note: the code below that determines the mode-line/header-line
1019 height is essentially the same as that contained in the macro
1020 CURRENT_{MODE,HEADER}_LINE_HEIGHT, except that it checks whether
1021 the appropriate glyph row has its `mode_line_p' flag set,
1022 and if it doesn't, uses estimate_mode_line_height instead. */
1023
1024 if (WINDOW_WANTS_MODELINE_P (w))
1025 {
1026 struct glyph_row *ml_row
1027 = (w->current_matrix && w->current_matrix->rows
1028 ? MATRIX_MODE_LINE_ROW (w->current_matrix)
1029 : 0);
1030 if (ml_row && ml_row->mode_line_p)
1031 height -= ml_row->height;
1032 else
1033 height -= estimate_mode_line_height (f, CURRENT_MODE_LINE_FACE_ID (w));
1034 }
1035
1036 if (WINDOW_WANTS_HEADER_LINE_P (w))
1037 {
1038 struct glyph_row *hl_row
1039 = (w->current_matrix && w->current_matrix->rows
1040 ? MATRIX_HEADER_LINE_ROW (w->current_matrix)
1041 : 0);
1042 if (hl_row && hl_row->mode_line_p)
1043 height -= hl_row->height;
1044 else
1045 height -= estimate_mode_line_height (f, HEADER_LINE_FACE_ID);
1046 }
1047
1048 /* With a very small font and a mode-line that's taller than
1049 default, we might end up with a negative height. */
1050 return max (0, height);
1051 }
1052
1053 /* Return the window-relative coordinate of the left edge of display
1054 area AREA of window W. AREA < 0 means return the left edge of the
1055 whole window, to the right of the left fringe of W. */
1056
1057 inline int
1058 window_box_left_offset (struct window *w, int area)
1059 {
1060 int x;
1061
1062 if (w->pseudo_window_p)
1063 return 0;
1064
1065 x = WINDOW_LEFT_SCROLL_BAR_AREA_WIDTH (w);
1066
1067 if (area == TEXT_AREA)
1068 x += (WINDOW_LEFT_FRINGE_WIDTH (w)
1069 + window_box_width (w, LEFT_MARGIN_AREA));
1070 else if (area == RIGHT_MARGIN_AREA)
1071 x += (WINDOW_LEFT_FRINGE_WIDTH (w)
1072 + window_box_width (w, LEFT_MARGIN_AREA)
1073 + window_box_width (w, TEXT_AREA)
1074 + (WINDOW_HAS_FRINGES_OUTSIDE_MARGINS (w)
1075 ? 0
1076 : WINDOW_RIGHT_FRINGE_WIDTH (w)));
1077 else if (area == LEFT_MARGIN_AREA
1078 && WINDOW_HAS_FRINGES_OUTSIDE_MARGINS (w))
1079 x += WINDOW_LEFT_FRINGE_WIDTH (w);
1080
1081 return x;
1082 }
1083
1084
1085 /* Return the window-relative coordinate of the right edge of display
1086 area AREA of window W. AREA < 0 means return the right edge of the
1087 whole window, to the left of the right fringe of W. */
1088
1089 inline int
1090 window_box_right_offset (struct window *w, int area)
1091 {
1092 return window_box_left_offset (w, area) + window_box_width (w, area);
1093 }
1094
1095 /* Return the frame-relative coordinate of the left edge of display
1096 area AREA of window W. AREA < 0 means return the left edge of the
1097 whole window, to the right of the left fringe of W. */
1098
1099 inline int
1100 window_box_left (struct window *w, int area)
1101 {
1102 struct frame *f = XFRAME (w->frame);
1103 int x;
1104
1105 if (w->pseudo_window_p)
1106 return FRAME_INTERNAL_BORDER_WIDTH (f);
1107
1108 x = (WINDOW_LEFT_EDGE_X (w)
1109 + window_box_left_offset (w, area));
1110
1111 return x;
1112 }
1113
1114
1115 /* Return the frame-relative coordinate of the right edge of display
1116 area AREA of window W. AREA < 0 means return the right edge of the
1117 whole window, to the left of the right fringe of W. */
1118
1119 inline int
1120 window_box_right (struct window *w, int area)
1121 {
1122 return window_box_left (w, area) + window_box_width (w, area);
1123 }
1124
1125 /* Get the bounding box of the display area AREA of window W, without
1126 mode lines, in frame-relative coordinates. AREA < 0 means the
1127 whole window, not including the left and right fringes of
1128 the window. Return in *BOX_X and *BOX_Y the frame-relative pixel
1129 coordinates of the upper-left corner of the box. Return in
1130 *BOX_WIDTH, and *BOX_HEIGHT the pixel width and height of the box. */
1131
1132 inline void
1133 window_box (struct window *w, int area, int *box_x, int *box_y,
1134 int *box_width, int *box_height)
1135 {
1136 if (box_width)
1137 *box_width = window_box_width (w, area);
1138 if (box_height)
1139 *box_height = window_box_height (w);
1140 if (box_x)
1141 *box_x = window_box_left (w, area);
1142 if (box_y)
1143 {
1144 *box_y = WINDOW_TOP_EDGE_Y (w);
1145 if (WINDOW_WANTS_HEADER_LINE_P (w))
1146 *box_y += CURRENT_HEADER_LINE_HEIGHT (w);
1147 }
1148 }
1149
1150
1151 /* Get the bounding box of the display area AREA of window W, without
1152 mode lines. AREA < 0 means the whole window, not including the
1153 left and right fringe of the window. Return in *TOP_LEFT_X
1154 and TOP_LEFT_Y the frame-relative pixel coordinates of the
1155 upper-left corner of the box. Return in *BOTTOM_RIGHT_X, and
1156 *BOTTOM_RIGHT_Y the coordinates of the bottom-right corner of the
1157 box. */
1158
1159 static inline void
1160 window_box_edges (struct window *w, int area, int *top_left_x, int *top_left_y,
1161 int *bottom_right_x, int *bottom_right_y)
1162 {
1163 window_box (w, area, top_left_x, top_left_y, bottom_right_x,
1164 bottom_right_y);
1165 *bottom_right_x += *top_left_x;
1166 *bottom_right_y += *top_left_y;
1167 }
1168
1169
1170 \f
1171 /***********************************************************************
1172 Utilities
1173 ***********************************************************************/
1174
1175 /* Return the bottom y-position of the line the iterator IT is in.
1176 This can modify IT's settings. */
1177
1178 int
1179 line_bottom_y (struct it *it)
1180 {
1181 int line_height = it->max_ascent + it->max_descent;
1182 int line_top_y = it->current_y;
1183
1184 if (line_height == 0)
1185 {
1186 if (last_height)
1187 line_height = last_height;
1188 else if (IT_CHARPOS (*it) < ZV)
1189 {
1190 move_it_by_lines (it, 1);
1191 line_height = (it->max_ascent || it->max_descent
1192 ? it->max_ascent + it->max_descent
1193 : last_height);
1194 }
1195 else
1196 {
1197 struct glyph_row *row = it->glyph_row;
1198
1199 /* Use the default character height. */
1200 it->glyph_row = NULL;
1201 it->what = IT_CHARACTER;
1202 it->c = ' ';
1203 it->len = 1;
1204 PRODUCE_GLYPHS (it);
1205 line_height = it->ascent + it->descent;
1206 it->glyph_row = row;
1207 }
1208 }
1209
1210 return line_top_y + line_height;
1211 }
1212
1213 /* Subroutine of pos_visible_p below. Extracts a display string, if
1214 any, from the display spec given as its argument. */
1215 static Lisp_Object
1216 string_from_display_spec (Lisp_Object spec)
1217 {
1218 if (CONSP (spec))
1219 {
1220 while (CONSP (spec))
1221 {
1222 if (STRINGP (XCAR (spec)))
1223 return XCAR (spec);
1224 spec = XCDR (spec);
1225 }
1226 }
1227 else if (VECTORP (spec))
1228 {
1229 ptrdiff_t i;
1230
1231 for (i = 0; i < ASIZE (spec); i++)
1232 {
1233 if (STRINGP (AREF (spec, i)))
1234 return AREF (spec, i);
1235 }
1236 return Qnil;
1237 }
1238
1239 return spec;
1240 }
1241
1242 /* Return 1 if position CHARPOS is visible in window W.
1243 CHARPOS < 0 means return info about WINDOW_END position.
1244 If visible, set *X and *Y to pixel coordinates of top left corner.
1245 Set *RTOP and *RBOT to pixel height of an invisible area of glyph at POS.
1246 Set *ROWH and *VPOS to row's visible height and VPOS (row number). */
1247
1248 int
1249 pos_visible_p (struct window *w, EMACS_INT charpos, int *x, int *y,
1250 int *rtop, int *rbot, int *rowh, int *vpos)
1251 {
1252 struct it it;
1253 void *itdata = bidi_shelve_cache ();
1254 struct text_pos top;
1255 int visible_p = 0;
1256 struct buffer *old_buffer = NULL;
1257
1258 if (FRAME_INITIAL_P (XFRAME (WINDOW_FRAME (w))))
1259 return visible_p;
1260
1261 if (XBUFFER (w->buffer) != current_buffer)
1262 {
1263 old_buffer = current_buffer;
1264 set_buffer_internal_1 (XBUFFER (w->buffer));
1265 }
1266
1267 SET_TEXT_POS_FROM_MARKER (top, w->start);
1268
1269 /* Compute exact mode line heights. */
1270 if (WINDOW_WANTS_MODELINE_P (w))
1271 current_mode_line_height
1272 = display_mode_line (w, CURRENT_MODE_LINE_FACE_ID (w),
1273 BVAR (current_buffer, mode_line_format));
1274
1275 if (WINDOW_WANTS_HEADER_LINE_P (w))
1276 current_header_line_height
1277 = display_mode_line (w, HEADER_LINE_FACE_ID,
1278 BVAR (current_buffer, header_line_format));
1279
1280 start_display (&it, w, top);
1281 move_it_to (&it, charpos, -1, it.last_visible_y-1, -1,
1282 (charpos >= 0 ? MOVE_TO_POS : 0) | MOVE_TO_Y);
1283
1284 if (charpos >= 0
1285 && (((!it.bidi_p || it.bidi_it.scan_dir == 1)
1286 && IT_CHARPOS (it) >= charpos)
1287 /* When scanning backwards under bidi iteration, move_it_to
1288 stops at or _before_ CHARPOS, because it stops at or to
1289 the _right_ of the character at CHARPOS. */
1290 || (it.bidi_p && it.bidi_it.scan_dir == -1
1291 && IT_CHARPOS (it) <= charpos)))
1292 {
1293 /* We have reached CHARPOS, or passed it. How the call to
1294 move_it_to can overshoot: (i) If CHARPOS is on invisible text
1295 or covered by a display property, move_it_to stops at the end
1296 of the invisible text, to the right of CHARPOS. (ii) If
1297 CHARPOS is in a display vector, move_it_to stops on its last
1298 glyph. */
1299 int top_x = it.current_x;
1300 int top_y = it.current_y;
1301 enum it_method it_method = it.method;
1302 /* Calling line_bottom_y may change it.method, it.position, etc. */
1303 int bottom_y = (last_height = 0, line_bottom_y (&it));
1304 int window_top_y = WINDOW_HEADER_LINE_HEIGHT (w);
1305
1306 if (top_y < window_top_y)
1307 visible_p = bottom_y > window_top_y;
1308 else if (top_y < it.last_visible_y)
1309 visible_p = 1;
1310 if (visible_p)
1311 {
1312 if (it_method == GET_FROM_DISPLAY_VECTOR)
1313 {
1314 /* We stopped on the last glyph of a display vector.
1315 Try and recompute. Hack alert! */
1316 if (charpos < 2 || top.charpos >= charpos)
1317 top_x = it.glyph_row->x;
1318 else
1319 {
1320 struct it it2;
1321 start_display (&it2, w, top);
1322 move_it_to (&it2, charpos - 1, -1, -1, -1, MOVE_TO_POS);
1323 get_next_display_element (&it2);
1324 PRODUCE_GLYPHS (&it2);
1325 if (ITERATOR_AT_END_OF_LINE_P (&it2)
1326 || it2.current_x > it2.last_visible_x)
1327 top_x = it.glyph_row->x;
1328 else
1329 {
1330 top_x = it2.current_x;
1331 top_y = it2.current_y;
1332 }
1333 }
1334 }
1335 else if (IT_CHARPOS (it) != charpos)
1336 {
1337 Lisp_Object cpos = make_number (charpos);
1338 Lisp_Object spec = Fget_char_property (cpos, Qdisplay, Qnil);
1339 Lisp_Object string = string_from_display_spec (spec);
1340 int newline_in_string = 0;
1341
1342 if (STRINGP (string))
1343 {
1344 const char *s = SSDATA (string);
1345 const char *e = s + SBYTES (string);
1346 while (s < e)
1347 {
1348 if (*s++ == '\n')
1349 {
1350 newline_in_string = 1;
1351 break;
1352 }
1353 }
1354 }
1355 /* The tricky code below is needed because there's a
1356 discrepancy between move_it_to and how we set cursor
1357 when the display line ends in a newline from a
1358 display string. move_it_to will stop _after_ such
1359 display strings, whereas set_cursor_from_row
1360 conspires with cursor_row_p to place the cursor on
1361 the first glyph produced from the display string. */
1362
1363 /* We have overshoot PT because it is covered by a
1364 display property whose value is a string. If the
1365 string includes embedded newlines, we are also in the
1366 wrong display line. Backtrack to the correct line,
1367 where the display string begins. */
1368 if (newline_in_string)
1369 {
1370 Lisp_Object startpos, endpos;
1371 EMACS_INT start, end;
1372 struct it it3;
1373
1374 /* Find the first and the last buffer positions
1375 covered by the display string. */
1376 endpos =
1377 Fnext_single_char_property_change (cpos, Qdisplay,
1378 Qnil, Qnil);
1379 startpos =
1380 Fprevious_single_char_property_change (endpos, Qdisplay,
1381 Qnil, Qnil);
1382 start = XFASTINT (startpos);
1383 end = XFASTINT (endpos);
1384 /* Move to the last buffer position before the
1385 display property. */
1386 start_display (&it3, w, top);
1387 move_it_to (&it3, start - 1, -1, -1, -1, MOVE_TO_POS);
1388 /* Move forward one more line if the position before
1389 the display string is a newline or if it is the
1390 rightmost character on a line that is
1391 continued or word-wrapped. */
1392 if (it3.method == GET_FROM_BUFFER
1393 && it3.c == '\n')
1394 move_it_by_lines (&it3, 1);
1395 else if (move_it_in_display_line_to (&it3, -1,
1396 it3.current_x
1397 + it3.pixel_width,
1398 MOVE_TO_X)
1399 == MOVE_LINE_CONTINUED)
1400 {
1401 move_it_by_lines (&it3, 1);
1402 /* When we are under word-wrap, the #$@%!
1403 move_it_by_lines moves 2 lines, so we need to
1404 fix that up. */
1405 if (it3.line_wrap == WORD_WRAP)
1406 move_it_by_lines (&it3, -1);
1407 }
1408
1409 /* Record the vertical coordinate of the display
1410 line where we wound up. */
1411 top_y = it3.current_y;
1412 if (it3.bidi_p)
1413 {
1414 /* When characters are reordered for display,
1415 the character displayed to the left of the
1416 display string could be _after_ the display
1417 property in the logical order. Use the
1418 smallest vertical position of these two. */
1419 start_display (&it3, w, top);
1420 move_it_to (&it3, end + 1, -1, -1, -1, MOVE_TO_POS);
1421 if (it3.current_y < top_y)
1422 top_y = it3.current_y;
1423 }
1424 /* Move from the top of the window to the beginning
1425 of the display line where the display string
1426 begins. */
1427 start_display (&it3, w, top);
1428 move_it_to (&it3, -1, 0, top_y, -1, MOVE_TO_X | MOVE_TO_Y);
1429 /* Finally, advance the iterator until we hit the
1430 first display element whose character position is
1431 CHARPOS, or until the first newline from the
1432 display string, which signals the end of the
1433 display line. */
1434 while (get_next_display_element (&it3))
1435 {
1436 PRODUCE_GLYPHS (&it3);
1437 if (IT_CHARPOS (it3) == charpos
1438 || ITERATOR_AT_END_OF_LINE_P (&it3))
1439 break;
1440 set_iterator_to_next (&it3, 0);
1441 }
1442 top_x = it3.current_x - it3.pixel_width;
1443 /* Normally, we would exit the above loop because we
1444 found the display element whose character
1445 position is CHARPOS. For the contingency that we
1446 didn't, and stopped at the first newline from the
1447 display string, move back over the glyphs
1448 prfoduced from the string, until we find the
1449 rightmost glyph not from the string. */
1450 if (IT_CHARPOS (it3) != charpos && EQ (it3.object, string))
1451 {
1452 struct glyph *g = it3.glyph_row->glyphs[TEXT_AREA]
1453 + it3.glyph_row->used[TEXT_AREA];
1454
1455 while (EQ ((g - 1)->object, string))
1456 {
1457 --g;
1458 top_x -= g->pixel_width;
1459 }
1460 xassert (g < it3.glyph_row->glyphs[TEXT_AREA]
1461 + it3.glyph_row->used[TEXT_AREA]);
1462 }
1463 }
1464 }
1465
1466 *x = top_x;
1467 *y = max (top_y + max (0, it.max_ascent - it.ascent), window_top_y);
1468 *rtop = max (0, window_top_y - top_y);
1469 *rbot = max (0, bottom_y - it.last_visible_y);
1470 *rowh = max (0, (min (bottom_y, it.last_visible_y)
1471 - max (top_y, window_top_y)));
1472 *vpos = it.vpos;
1473 }
1474 }
1475 else
1476 {
1477 /* We were asked to provide info about WINDOW_END. */
1478 struct it it2;
1479 void *it2data = NULL;
1480
1481 SAVE_IT (it2, it, it2data);
1482 if (IT_CHARPOS (it) < ZV && FETCH_BYTE (IT_BYTEPOS (it)) != '\n')
1483 move_it_by_lines (&it, 1);
1484 if (charpos < IT_CHARPOS (it)
1485 || (it.what == IT_EOB && charpos == IT_CHARPOS (it)))
1486 {
1487 visible_p = 1;
1488 RESTORE_IT (&it2, &it2, it2data);
1489 move_it_to (&it2, charpos, -1, -1, -1, MOVE_TO_POS);
1490 *x = it2.current_x;
1491 *y = it2.current_y + it2.max_ascent - it2.ascent;
1492 *rtop = max (0, -it2.current_y);
1493 *rbot = max (0, ((it2.current_y + it2.max_ascent + it2.max_descent)
1494 - it.last_visible_y));
1495 *rowh = max (0, (min (it2.current_y + it2.max_ascent + it2.max_descent,
1496 it.last_visible_y)
1497 - max (it2.current_y,
1498 WINDOW_HEADER_LINE_HEIGHT (w))));
1499 *vpos = it2.vpos;
1500 }
1501 else
1502 bidi_unshelve_cache (it2data, 1);
1503 }
1504 bidi_unshelve_cache (itdata, 0);
1505
1506 if (old_buffer)
1507 set_buffer_internal_1 (old_buffer);
1508
1509 current_header_line_height = current_mode_line_height = -1;
1510
1511 if (visible_p && XFASTINT (w->hscroll) > 0)
1512 *x -= XFASTINT (w->hscroll) * WINDOW_FRAME_COLUMN_WIDTH (w);
1513
1514 #if 0
1515 /* Debugging code. */
1516 if (visible_p)
1517 fprintf (stderr, "+pv pt=%d vs=%d --> x=%d y=%d rt=%d rb=%d rh=%d vp=%d\n",
1518 charpos, w->vscroll, *x, *y, *rtop, *rbot, *rowh, *vpos);
1519 else
1520 fprintf (stderr, "-pv pt=%d vs=%d\n", charpos, w->vscroll);
1521 #endif
1522
1523 return visible_p;
1524 }
1525
1526
1527 /* Return the next character from STR. Return in *LEN the length of
1528 the character. This is like STRING_CHAR_AND_LENGTH but never
1529 returns an invalid character. If we find one, we return a `?', but
1530 with the length of the invalid character. */
1531
1532 static inline int
1533 string_char_and_length (const unsigned char *str, int *len)
1534 {
1535 int c;
1536
1537 c = STRING_CHAR_AND_LENGTH (str, *len);
1538 if (!CHAR_VALID_P (c))
1539 /* We may not change the length here because other places in Emacs
1540 don't use this function, i.e. they silently accept invalid
1541 characters. */
1542 c = '?';
1543
1544 return c;
1545 }
1546
1547
1548
1549 /* Given a position POS containing a valid character and byte position
1550 in STRING, return the position NCHARS ahead (NCHARS >= 0). */
1551
1552 static struct text_pos
1553 string_pos_nchars_ahead (struct text_pos pos, Lisp_Object string, EMACS_INT nchars)
1554 {
1555 xassert (STRINGP (string) && nchars >= 0);
1556
1557 if (STRING_MULTIBYTE (string))
1558 {
1559 const unsigned char *p = SDATA (string) + BYTEPOS (pos);
1560 int len;
1561
1562 while (nchars--)
1563 {
1564 string_char_and_length (p, &len);
1565 p += len;
1566 CHARPOS (pos) += 1;
1567 BYTEPOS (pos) += len;
1568 }
1569 }
1570 else
1571 SET_TEXT_POS (pos, CHARPOS (pos) + nchars, BYTEPOS (pos) + nchars);
1572
1573 return pos;
1574 }
1575
1576
1577 /* Value is the text position, i.e. character and byte position,
1578 for character position CHARPOS in STRING. */
1579
1580 static inline struct text_pos
1581 string_pos (EMACS_INT charpos, Lisp_Object string)
1582 {
1583 struct text_pos pos;
1584 xassert (STRINGP (string));
1585 xassert (charpos >= 0);
1586 SET_TEXT_POS (pos, charpos, string_char_to_byte (string, charpos));
1587 return pos;
1588 }
1589
1590
1591 /* Value is a text position, i.e. character and byte position, for
1592 character position CHARPOS in C string S. MULTIBYTE_P non-zero
1593 means recognize multibyte characters. */
1594
1595 static struct text_pos
1596 c_string_pos (EMACS_INT charpos, const char *s, int multibyte_p)
1597 {
1598 struct text_pos pos;
1599
1600 xassert (s != NULL);
1601 xassert (charpos >= 0);
1602
1603 if (multibyte_p)
1604 {
1605 int len;
1606
1607 SET_TEXT_POS (pos, 0, 0);
1608 while (charpos--)
1609 {
1610 string_char_and_length ((const unsigned char *) s, &len);
1611 s += len;
1612 CHARPOS (pos) += 1;
1613 BYTEPOS (pos) += len;
1614 }
1615 }
1616 else
1617 SET_TEXT_POS (pos, charpos, charpos);
1618
1619 return pos;
1620 }
1621
1622
1623 /* Value is the number of characters in C string S. MULTIBYTE_P
1624 non-zero means recognize multibyte characters. */
1625
1626 static EMACS_INT
1627 number_of_chars (const char *s, int multibyte_p)
1628 {
1629 EMACS_INT nchars;
1630
1631 if (multibyte_p)
1632 {
1633 EMACS_INT rest = strlen (s);
1634 int len;
1635 const unsigned char *p = (const unsigned char *) s;
1636
1637 for (nchars = 0; rest > 0; ++nchars)
1638 {
1639 string_char_and_length (p, &len);
1640 rest -= len, p += len;
1641 }
1642 }
1643 else
1644 nchars = strlen (s);
1645
1646 return nchars;
1647 }
1648
1649
1650 /* Compute byte position NEWPOS->bytepos corresponding to
1651 NEWPOS->charpos. POS is a known position in string STRING.
1652 NEWPOS->charpos must be >= POS.charpos. */
1653
1654 static void
1655 compute_string_pos (struct text_pos *newpos, struct text_pos pos, Lisp_Object string)
1656 {
1657 xassert (STRINGP (string));
1658 xassert (CHARPOS (*newpos) >= CHARPOS (pos));
1659
1660 if (STRING_MULTIBYTE (string))
1661 *newpos = string_pos_nchars_ahead (pos, string,
1662 CHARPOS (*newpos) - CHARPOS (pos));
1663 else
1664 BYTEPOS (*newpos) = CHARPOS (*newpos);
1665 }
1666
1667 /* EXPORT:
1668 Return an estimation of the pixel height of mode or header lines on
1669 frame F. FACE_ID specifies what line's height to estimate. */
1670
1671 int
1672 estimate_mode_line_height (struct frame *f, enum face_id face_id)
1673 {
1674 #ifdef HAVE_WINDOW_SYSTEM
1675 if (FRAME_WINDOW_P (f))
1676 {
1677 int height = FONT_HEIGHT (FRAME_FONT (f));
1678
1679 /* This function is called so early when Emacs starts that the face
1680 cache and mode line face are not yet initialized. */
1681 if (FRAME_FACE_CACHE (f))
1682 {
1683 struct face *face = FACE_FROM_ID (f, face_id);
1684 if (face)
1685 {
1686 if (face->font)
1687 height = FONT_HEIGHT (face->font);
1688 if (face->box_line_width > 0)
1689 height += 2 * face->box_line_width;
1690 }
1691 }
1692
1693 return height;
1694 }
1695 #endif
1696
1697 return 1;
1698 }
1699
1700 /* Given a pixel position (PIX_X, PIX_Y) on frame F, return glyph
1701 co-ordinates in (*X, *Y). Set *BOUNDS to the rectangle that the
1702 glyph at X, Y occupies, if BOUNDS != 0. If NOCLIP is non-zero, do
1703 not force the value into range. */
1704
1705 void
1706 pixel_to_glyph_coords (FRAME_PTR f, register int pix_x, register int pix_y,
1707 int *x, int *y, NativeRectangle *bounds, int noclip)
1708 {
1709
1710 #ifdef HAVE_WINDOW_SYSTEM
1711 if (FRAME_WINDOW_P (f))
1712 {
1713 /* Arrange for the division in FRAME_PIXEL_X_TO_COL etc. to round down
1714 even for negative values. */
1715 if (pix_x < 0)
1716 pix_x -= FRAME_COLUMN_WIDTH (f) - 1;
1717 if (pix_y < 0)
1718 pix_y -= FRAME_LINE_HEIGHT (f) - 1;
1719
1720 pix_x = FRAME_PIXEL_X_TO_COL (f, pix_x);
1721 pix_y = FRAME_PIXEL_Y_TO_LINE (f, pix_y);
1722
1723 if (bounds)
1724 STORE_NATIVE_RECT (*bounds,
1725 FRAME_COL_TO_PIXEL_X (f, pix_x),
1726 FRAME_LINE_TO_PIXEL_Y (f, pix_y),
1727 FRAME_COLUMN_WIDTH (f) - 1,
1728 FRAME_LINE_HEIGHT (f) - 1);
1729
1730 if (!noclip)
1731 {
1732 if (pix_x < 0)
1733 pix_x = 0;
1734 else if (pix_x > FRAME_TOTAL_COLS (f))
1735 pix_x = FRAME_TOTAL_COLS (f);
1736
1737 if (pix_y < 0)
1738 pix_y = 0;
1739 else if (pix_y > FRAME_LINES (f))
1740 pix_y = FRAME_LINES (f);
1741 }
1742 }
1743 #endif
1744
1745 *x = pix_x;
1746 *y = pix_y;
1747 }
1748
1749
1750 /* Find the glyph under window-relative coordinates X/Y in window W.
1751 Consider only glyphs from buffer text, i.e. no glyphs from overlay
1752 strings. Return in *HPOS and *VPOS the row and column number of
1753 the glyph found. Return in *AREA the glyph area containing X.
1754 Value is a pointer to the glyph found or null if X/Y is not on
1755 text, or we can't tell because W's current matrix is not up to
1756 date. */
1757
1758 static
1759 struct glyph *
1760 x_y_to_hpos_vpos (struct window *w, int x, int y, int *hpos, int *vpos,
1761 int *dx, int *dy, int *area)
1762 {
1763 struct glyph *glyph, *end;
1764 struct glyph_row *row = NULL;
1765 int x0, i;
1766
1767 /* Find row containing Y. Give up if some row is not enabled. */
1768 for (i = 0; i < w->current_matrix->nrows; ++i)
1769 {
1770 row = MATRIX_ROW (w->current_matrix, i);
1771 if (!row->enabled_p)
1772 return NULL;
1773 if (y >= row->y && y < MATRIX_ROW_BOTTOM_Y (row))
1774 break;
1775 }
1776
1777 *vpos = i;
1778 *hpos = 0;
1779
1780 /* Give up if Y is not in the window. */
1781 if (i == w->current_matrix->nrows)
1782 return NULL;
1783
1784 /* Get the glyph area containing X. */
1785 if (w->pseudo_window_p)
1786 {
1787 *area = TEXT_AREA;
1788 x0 = 0;
1789 }
1790 else
1791 {
1792 if (x < window_box_left_offset (w, TEXT_AREA))
1793 {
1794 *area = LEFT_MARGIN_AREA;
1795 x0 = window_box_left_offset (w, LEFT_MARGIN_AREA);
1796 }
1797 else if (x < window_box_right_offset (w, TEXT_AREA))
1798 {
1799 *area = TEXT_AREA;
1800 x0 = window_box_left_offset (w, TEXT_AREA) + min (row->x, 0);
1801 }
1802 else
1803 {
1804 *area = RIGHT_MARGIN_AREA;
1805 x0 = window_box_left_offset (w, RIGHT_MARGIN_AREA);
1806 }
1807 }
1808
1809 /* Find glyph containing X. */
1810 glyph = row->glyphs[*area];
1811 end = glyph + row->used[*area];
1812 x -= x0;
1813 while (glyph < end && x >= glyph->pixel_width)
1814 {
1815 x -= glyph->pixel_width;
1816 ++glyph;
1817 }
1818
1819 if (glyph == end)
1820 return NULL;
1821
1822 if (dx)
1823 {
1824 *dx = x;
1825 *dy = y - (row->y + row->ascent - glyph->ascent);
1826 }
1827
1828 *hpos = glyph - row->glyphs[*area];
1829 return glyph;
1830 }
1831
1832 /* Convert frame-relative x/y to coordinates relative to window W.
1833 Takes pseudo-windows into account. */
1834
1835 static void
1836 frame_to_window_pixel_xy (struct window *w, int *x, int *y)
1837 {
1838 if (w->pseudo_window_p)
1839 {
1840 /* A pseudo-window is always full-width, and starts at the
1841 left edge of the frame, plus a frame border. */
1842 struct frame *f = XFRAME (w->frame);
1843 *x -= FRAME_INTERNAL_BORDER_WIDTH (f);
1844 *y = FRAME_TO_WINDOW_PIXEL_Y (w, *y);
1845 }
1846 else
1847 {
1848 *x -= WINDOW_LEFT_EDGE_X (w);
1849 *y = FRAME_TO_WINDOW_PIXEL_Y (w, *y);
1850 }
1851 }
1852
1853 #ifdef HAVE_WINDOW_SYSTEM
1854
1855 /* EXPORT:
1856 Return in RECTS[] at most N clipping rectangles for glyph string S.
1857 Return the number of stored rectangles. */
1858
1859 int
1860 get_glyph_string_clip_rects (struct glyph_string *s, NativeRectangle *rects, int n)
1861 {
1862 XRectangle r;
1863
1864 if (n <= 0)
1865 return 0;
1866
1867 if (s->row->full_width_p)
1868 {
1869 /* Draw full-width. X coordinates are relative to S->w->left_col. */
1870 r.x = WINDOW_LEFT_EDGE_X (s->w);
1871 r.width = WINDOW_TOTAL_WIDTH (s->w);
1872
1873 /* Unless displaying a mode or menu bar line, which are always
1874 fully visible, clip to the visible part of the row. */
1875 if (s->w->pseudo_window_p)
1876 r.height = s->row->visible_height;
1877 else
1878 r.height = s->height;
1879 }
1880 else
1881 {
1882 /* This is a text line that may be partially visible. */
1883 r.x = window_box_left (s->w, s->area);
1884 r.width = window_box_width (s->w, s->area);
1885 r.height = s->row->visible_height;
1886 }
1887
1888 if (s->clip_head)
1889 if (r.x < s->clip_head->x)
1890 {
1891 if (r.width >= s->clip_head->x - r.x)
1892 r.width -= s->clip_head->x - r.x;
1893 else
1894 r.width = 0;
1895 r.x = s->clip_head->x;
1896 }
1897 if (s->clip_tail)
1898 if (r.x + r.width > s->clip_tail->x + s->clip_tail->background_width)
1899 {
1900 if (s->clip_tail->x + s->clip_tail->background_width >= r.x)
1901 r.width = s->clip_tail->x + s->clip_tail->background_width - r.x;
1902 else
1903 r.width = 0;
1904 }
1905
1906 /* If S draws overlapping rows, it's sufficient to use the top and
1907 bottom of the window for clipping because this glyph string
1908 intentionally draws over other lines. */
1909 if (s->for_overlaps)
1910 {
1911 r.y = WINDOW_HEADER_LINE_HEIGHT (s->w);
1912 r.height = window_text_bottom_y (s->w) - r.y;
1913
1914 /* Alas, the above simple strategy does not work for the
1915 environments with anti-aliased text: if the same text is
1916 drawn onto the same place multiple times, it gets thicker.
1917 If the overlap we are processing is for the erased cursor, we
1918 take the intersection with the rectagle of the cursor. */
1919 if (s->for_overlaps & OVERLAPS_ERASED_CURSOR)
1920 {
1921 XRectangle rc, r_save = r;
1922
1923 rc.x = WINDOW_TEXT_TO_FRAME_PIXEL_X (s->w, s->w->phys_cursor.x);
1924 rc.y = s->w->phys_cursor.y;
1925 rc.width = s->w->phys_cursor_width;
1926 rc.height = s->w->phys_cursor_height;
1927
1928 x_intersect_rectangles (&r_save, &rc, &r);
1929 }
1930 }
1931 else
1932 {
1933 /* Don't use S->y for clipping because it doesn't take partially
1934 visible lines into account. For example, it can be negative for
1935 partially visible lines at the top of a window. */
1936 if (!s->row->full_width_p
1937 && MATRIX_ROW_PARTIALLY_VISIBLE_AT_TOP_P (s->w, s->row))
1938 r.y = WINDOW_HEADER_LINE_HEIGHT (s->w);
1939 else
1940 r.y = max (0, s->row->y);
1941 }
1942
1943 r.y = WINDOW_TO_FRAME_PIXEL_Y (s->w, r.y);
1944
1945 /* If drawing the cursor, don't let glyph draw outside its
1946 advertised boundaries. Cleartype does this under some circumstances. */
1947 if (s->hl == DRAW_CURSOR)
1948 {
1949 struct glyph *glyph = s->first_glyph;
1950 int height, max_y;
1951
1952 if (s->x > r.x)
1953 {
1954 r.width -= s->x - r.x;
1955 r.x = s->x;
1956 }
1957 r.width = min (r.width, glyph->pixel_width);
1958
1959 /* If r.y is below window bottom, ensure that we still see a cursor. */
1960 height = min (glyph->ascent + glyph->descent,
1961 min (FRAME_LINE_HEIGHT (s->f), s->row->visible_height));
1962 max_y = window_text_bottom_y (s->w) - height;
1963 max_y = WINDOW_TO_FRAME_PIXEL_Y (s->w, max_y);
1964 if (s->ybase - glyph->ascent > max_y)
1965 {
1966 r.y = max_y;
1967 r.height = height;
1968 }
1969 else
1970 {
1971 /* Don't draw cursor glyph taller than our actual glyph. */
1972 height = max (FRAME_LINE_HEIGHT (s->f), glyph->ascent + glyph->descent);
1973 if (height < r.height)
1974 {
1975 max_y = r.y + r.height;
1976 r.y = min (max_y, max (r.y, s->ybase + glyph->descent - height));
1977 r.height = min (max_y - r.y, height);
1978 }
1979 }
1980 }
1981
1982 if (s->row->clip)
1983 {
1984 XRectangle r_save = r;
1985
1986 if (! x_intersect_rectangles (&r_save, s->row->clip, &r))
1987 r.width = 0;
1988 }
1989
1990 if ((s->for_overlaps & OVERLAPS_BOTH) == 0
1991 || ((s->for_overlaps & OVERLAPS_BOTH) == OVERLAPS_BOTH && n == 1))
1992 {
1993 #ifdef CONVERT_FROM_XRECT
1994 CONVERT_FROM_XRECT (r, *rects);
1995 #else
1996 *rects = r;
1997 #endif
1998 return 1;
1999 }
2000 else
2001 {
2002 /* If we are processing overlapping and allowed to return
2003 multiple clipping rectangles, we exclude the row of the glyph
2004 string from the clipping rectangle. This is to avoid drawing
2005 the same text on the environment with anti-aliasing. */
2006 #ifdef CONVERT_FROM_XRECT
2007 XRectangle rs[2];
2008 #else
2009 XRectangle *rs = rects;
2010 #endif
2011 int i = 0, row_y = WINDOW_TO_FRAME_PIXEL_Y (s->w, s->row->y);
2012
2013 if (s->for_overlaps & OVERLAPS_PRED)
2014 {
2015 rs[i] = r;
2016 if (r.y + r.height > row_y)
2017 {
2018 if (r.y < row_y)
2019 rs[i].height = row_y - r.y;
2020 else
2021 rs[i].height = 0;
2022 }
2023 i++;
2024 }
2025 if (s->for_overlaps & OVERLAPS_SUCC)
2026 {
2027 rs[i] = r;
2028 if (r.y < row_y + s->row->visible_height)
2029 {
2030 if (r.y + r.height > row_y + s->row->visible_height)
2031 {
2032 rs[i].y = row_y + s->row->visible_height;
2033 rs[i].height = r.y + r.height - rs[i].y;
2034 }
2035 else
2036 rs[i].height = 0;
2037 }
2038 i++;
2039 }
2040
2041 n = i;
2042 #ifdef CONVERT_FROM_XRECT
2043 for (i = 0; i < n; i++)
2044 CONVERT_FROM_XRECT (rs[i], rects[i]);
2045 #endif
2046 return n;
2047 }
2048 }
2049
2050 /* EXPORT:
2051 Return in *NR the clipping rectangle for glyph string S. */
2052
2053 void
2054 get_glyph_string_clip_rect (struct glyph_string *s, NativeRectangle *nr)
2055 {
2056 get_glyph_string_clip_rects (s, nr, 1);
2057 }
2058
2059
2060 /* EXPORT:
2061 Return the position and height of the phys cursor in window W.
2062 Set w->phys_cursor_width to width of phys cursor.
2063 */
2064
2065 void
2066 get_phys_cursor_geometry (struct window *w, struct glyph_row *row,
2067 struct glyph *glyph, int *xp, int *yp, int *heightp)
2068 {
2069 struct frame *f = XFRAME (WINDOW_FRAME (w));
2070 int x, y, wd, h, h0, y0;
2071
2072 /* Compute the width of the rectangle to draw. If on a stretch
2073 glyph, and `x-stretch-block-cursor' is nil, don't draw a
2074 rectangle as wide as the glyph, but use a canonical character
2075 width instead. */
2076 wd = glyph->pixel_width - 1;
2077 #if defined (HAVE_NTGUI) || defined (HAVE_NS)
2078 wd++; /* Why? */
2079 #endif
2080
2081 x = w->phys_cursor.x;
2082 if (x < 0)
2083 {
2084 wd += x;
2085 x = 0;
2086 }
2087
2088 if (glyph->type == STRETCH_GLYPH
2089 && !x_stretch_cursor_p)
2090 wd = min (FRAME_COLUMN_WIDTH (f), wd);
2091 w->phys_cursor_width = wd;
2092
2093 y = w->phys_cursor.y + row->ascent - glyph->ascent;
2094
2095 /* If y is below window bottom, ensure that we still see a cursor. */
2096 h0 = min (FRAME_LINE_HEIGHT (f), row->visible_height);
2097
2098 h = max (h0, glyph->ascent + glyph->descent);
2099 h0 = min (h0, glyph->ascent + glyph->descent);
2100
2101 y0 = WINDOW_HEADER_LINE_HEIGHT (w);
2102 if (y < y0)
2103 {
2104 h = max (h - (y0 - y) + 1, h0);
2105 y = y0 - 1;
2106 }
2107 else
2108 {
2109 y0 = window_text_bottom_y (w) - h0;
2110 if (y > y0)
2111 {
2112 h += y - y0;
2113 y = y0;
2114 }
2115 }
2116
2117 *xp = WINDOW_TEXT_TO_FRAME_PIXEL_X (w, x);
2118 *yp = WINDOW_TO_FRAME_PIXEL_Y (w, y);
2119 *heightp = h;
2120 }
2121
2122 /*
2123 * Remember which glyph the mouse is over.
2124 */
2125
2126 void
2127 remember_mouse_glyph (struct frame *f, int gx, int gy, NativeRectangle *rect)
2128 {
2129 Lisp_Object window;
2130 struct window *w;
2131 struct glyph_row *r, *gr, *end_row;
2132 enum window_part part;
2133 enum glyph_row_area area;
2134 int x, y, width, height;
2135
2136 /* Try to determine frame pixel position and size of the glyph under
2137 frame pixel coordinates X/Y on frame F. */
2138
2139 if (!f->glyphs_initialized_p
2140 || (window = window_from_coordinates (f, gx, gy, &part, 0),
2141 NILP (window)))
2142 {
2143 width = FRAME_SMALLEST_CHAR_WIDTH (f);
2144 height = FRAME_SMALLEST_FONT_HEIGHT (f);
2145 goto virtual_glyph;
2146 }
2147
2148 w = XWINDOW (window);
2149 width = WINDOW_FRAME_COLUMN_WIDTH (w);
2150 height = WINDOW_FRAME_LINE_HEIGHT (w);
2151
2152 x = window_relative_x_coord (w, part, gx);
2153 y = gy - WINDOW_TOP_EDGE_Y (w);
2154
2155 r = MATRIX_FIRST_TEXT_ROW (w->current_matrix);
2156 end_row = MATRIX_BOTTOM_TEXT_ROW (w->current_matrix, w);
2157
2158 if (w->pseudo_window_p)
2159 {
2160 area = TEXT_AREA;
2161 part = ON_MODE_LINE; /* Don't adjust margin. */
2162 goto text_glyph;
2163 }
2164
2165 switch (part)
2166 {
2167 case ON_LEFT_MARGIN:
2168 area = LEFT_MARGIN_AREA;
2169 goto text_glyph;
2170
2171 case ON_RIGHT_MARGIN:
2172 area = RIGHT_MARGIN_AREA;
2173 goto text_glyph;
2174
2175 case ON_HEADER_LINE:
2176 case ON_MODE_LINE:
2177 gr = (part == ON_HEADER_LINE
2178 ? MATRIX_HEADER_LINE_ROW (w->current_matrix)
2179 : MATRIX_MODE_LINE_ROW (w->current_matrix));
2180 gy = gr->y;
2181 area = TEXT_AREA;
2182 goto text_glyph_row_found;
2183
2184 case ON_TEXT:
2185 area = TEXT_AREA;
2186
2187 text_glyph:
2188 gr = 0; gy = 0;
2189 for (; r <= end_row && r->enabled_p; ++r)
2190 if (r->y + r->height > y)
2191 {
2192 gr = r; gy = r->y;
2193 break;
2194 }
2195
2196 text_glyph_row_found:
2197 if (gr && gy <= y)
2198 {
2199 struct glyph *g = gr->glyphs[area];
2200 struct glyph *end = g + gr->used[area];
2201
2202 height = gr->height;
2203 for (gx = gr->x; g < end; gx += g->pixel_width, ++g)
2204 if (gx + g->pixel_width > x)
2205 break;
2206
2207 if (g < end)
2208 {
2209 if (g->type == IMAGE_GLYPH)
2210 {
2211 /* Don't remember when mouse is over image, as
2212 image may have hot-spots. */
2213 STORE_NATIVE_RECT (*rect, 0, 0, 0, 0);
2214 return;
2215 }
2216 width = g->pixel_width;
2217 }
2218 else
2219 {
2220 /* Use nominal char spacing at end of line. */
2221 x -= gx;
2222 gx += (x / width) * width;
2223 }
2224
2225 if (part != ON_MODE_LINE && part != ON_HEADER_LINE)
2226 gx += window_box_left_offset (w, area);
2227 }
2228 else
2229 {
2230 /* Use nominal line height at end of window. */
2231 gx = (x / width) * width;
2232 y -= gy;
2233 gy += (y / height) * height;
2234 }
2235 break;
2236
2237 case ON_LEFT_FRINGE:
2238 gx = (WINDOW_HAS_FRINGES_OUTSIDE_MARGINS (w)
2239 ? WINDOW_LEFT_SCROLL_BAR_AREA_WIDTH (w)
2240 : window_box_right_offset (w, LEFT_MARGIN_AREA));
2241 width = WINDOW_LEFT_FRINGE_WIDTH (w);
2242 goto row_glyph;
2243
2244 case ON_RIGHT_FRINGE:
2245 gx = (WINDOW_HAS_FRINGES_OUTSIDE_MARGINS (w)
2246 ? window_box_right_offset (w, RIGHT_MARGIN_AREA)
2247 : window_box_right_offset (w, TEXT_AREA));
2248 width = WINDOW_RIGHT_FRINGE_WIDTH (w);
2249 goto row_glyph;
2250
2251 case ON_SCROLL_BAR:
2252 gx = (WINDOW_HAS_VERTICAL_SCROLL_BAR_ON_LEFT (w)
2253 ? 0
2254 : (window_box_right_offset (w, RIGHT_MARGIN_AREA)
2255 + (WINDOW_HAS_FRINGES_OUTSIDE_MARGINS (w)
2256 ? WINDOW_RIGHT_FRINGE_WIDTH (w)
2257 : 0)));
2258 width = WINDOW_SCROLL_BAR_AREA_WIDTH (w);
2259
2260 row_glyph:
2261 gr = 0, gy = 0;
2262 for (; r <= end_row && r->enabled_p; ++r)
2263 if (r->y + r->height > y)
2264 {
2265 gr = r; gy = r->y;
2266 break;
2267 }
2268
2269 if (gr && gy <= y)
2270 height = gr->height;
2271 else
2272 {
2273 /* Use nominal line height at end of window. */
2274 y -= gy;
2275 gy += (y / height) * height;
2276 }
2277 break;
2278
2279 default:
2280 ;
2281 virtual_glyph:
2282 /* If there is no glyph under the mouse, then we divide the screen
2283 into a grid of the smallest glyph in the frame, and use that
2284 as our "glyph". */
2285
2286 /* Arrange for the division in FRAME_PIXEL_X_TO_COL etc. to
2287 round down even for negative values. */
2288 if (gx < 0)
2289 gx -= width - 1;
2290 if (gy < 0)
2291 gy -= height - 1;
2292
2293 gx = (gx / width) * width;
2294 gy = (gy / height) * height;
2295
2296 goto store_rect;
2297 }
2298
2299 gx += WINDOW_LEFT_EDGE_X (w);
2300 gy += WINDOW_TOP_EDGE_Y (w);
2301
2302 store_rect:
2303 STORE_NATIVE_RECT (*rect, gx, gy, width, height);
2304
2305 /* Visible feedback for debugging. */
2306 #if 0
2307 #if HAVE_X_WINDOWS
2308 XDrawRectangle (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
2309 f->output_data.x->normal_gc,
2310 gx, gy, width, height);
2311 #endif
2312 #endif
2313 }
2314
2315
2316 #endif /* HAVE_WINDOW_SYSTEM */
2317
2318 \f
2319 /***********************************************************************
2320 Lisp form evaluation
2321 ***********************************************************************/
2322
2323 /* Error handler for safe_eval and safe_call. */
2324
2325 static Lisp_Object
2326 safe_eval_handler (Lisp_Object arg)
2327 {
2328 add_to_log ("Error during redisplay: %S", arg, Qnil);
2329 return Qnil;
2330 }
2331
2332
2333 /* Evaluate SEXPR and return the result, or nil if something went
2334 wrong. Prevent redisplay during the evaluation. */
2335
2336 /* Call function ARGS[0] with arguments ARGS[1] to ARGS[NARGS - 1].
2337 Return the result, or nil if something went wrong. Prevent
2338 redisplay during the evaluation. */
2339
2340 Lisp_Object
2341 safe_call (ptrdiff_t nargs, Lisp_Object *args)
2342 {
2343 Lisp_Object val;
2344
2345 if (inhibit_eval_during_redisplay)
2346 val = Qnil;
2347 else
2348 {
2349 int count = SPECPDL_INDEX ();
2350 struct gcpro gcpro1;
2351
2352 GCPRO1 (args[0]);
2353 gcpro1.nvars = nargs;
2354 specbind (Qinhibit_redisplay, Qt);
2355 /* Use Qt to ensure debugger does not run,
2356 so there is no possibility of wanting to redisplay. */
2357 val = internal_condition_case_n (Ffuncall, nargs, args, Qt,
2358 safe_eval_handler);
2359 UNGCPRO;
2360 val = unbind_to (count, val);
2361 }
2362
2363 return val;
2364 }
2365
2366
2367 /* Call function FN with one argument ARG.
2368 Return the result, or nil if something went wrong. */
2369
2370 Lisp_Object
2371 safe_call1 (Lisp_Object fn, Lisp_Object arg)
2372 {
2373 Lisp_Object args[2];
2374 args[0] = fn;
2375 args[1] = arg;
2376 return safe_call (2, args);
2377 }
2378
2379 static Lisp_Object Qeval;
2380
2381 Lisp_Object
2382 safe_eval (Lisp_Object sexpr)
2383 {
2384 return safe_call1 (Qeval, sexpr);
2385 }
2386
2387 /* Call function FN with one argument ARG.
2388 Return the result, or nil if something went wrong. */
2389
2390 Lisp_Object
2391 safe_call2 (Lisp_Object fn, Lisp_Object arg1, Lisp_Object arg2)
2392 {
2393 Lisp_Object args[3];
2394 args[0] = fn;
2395 args[1] = arg1;
2396 args[2] = arg2;
2397 return safe_call (3, args);
2398 }
2399
2400
2401 \f
2402 /***********************************************************************
2403 Debugging
2404 ***********************************************************************/
2405
2406 #if 0
2407
2408 /* Define CHECK_IT to perform sanity checks on iterators.
2409 This is for debugging. It is too slow to do unconditionally. */
2410
2411 static void
2412 check_it (struct it *it)
2413 {
2414 if (it->method == GET_FROM_STRING)
2415 {
2416 xassert (STRINGP (it->string));
2417 xassert (IT_STRING_CHARPOS (*it) >= 0);
2418 }
2419 else
2420 {
2421 xassert (IT_STRING_CHARPOS (*it) < 0);
2422 if (it->method == GET_FROM_BUFFER)
2423 {
2424 /* Check that character and byte positions agree. */
2425 xassert (IT_CHARPOS (*it) == BYTE_TO_CHAR (IT_BYTEPOS (*it)));
2426 }
2427 }
2428
2429 if (it->dpvec)
2430 xassert (it->current.dpvec_index >= 0);
2431 else
2432 xassert (it->current.dpvec_index < 0);
2433 }
2434
2435 #define CHECK_IT(IT) check_it ((IT))
2436
2437 #else /* not 0 */
2438
2439 #define CHECK_IT(IT) (void) 0
2440
2441 #endif /* not 0 */
2442
2443
2444 #if GLYPH_DEBUG && XASSERTS
2445
2446 /* Check that the window end of window W is what we expect it
2447 to be---the last row in the current matrix displaying text. */
2448
2449 static void
2450 check_window_end (struct window *w)
2451 {
2452 if (!MINI_WINDOW_P (w)
2453 && !NILP (w->window_end_valid))
2454 {
2455 struct glyph_row *row;
2456 xassert ((row = MATRIX_ROW (w->current_matrix,
2457 XFASTINT (w->window_end_vpos)),
2458 !row->enabled_p
2459 || MATRIX_ROW_DISPLAYS_TEXT_P (row)
2460 || MATRIX_ROW_VPOS (row, w->current_matrix) == 0));
2461 }
2462 }
2463
2464 #define CHECK_WINDOW_END(W) check_window_end ((W))
2465
2466 #else
2467
2468 #define CHECK_WINDOW_END(W) (void) 0
2469
2470 #endif
2471
2472
2473 \f
2474 /***********************************************************************
2475 Iterator initialization
2476 ***********************************************************************/
2477
2478 /* Initialize IT for displaying current_buffer in window W, starting
2479 at character position CHARPOS. CHARPOS < 0 means that no buffer
2480 position is specified which is useful when the iterator is assigned
2481 a position later. BYTEPOS is the byte position corresponding to
2482 CHARPOS. BYTEPOS < 0 means compute it from CHARPOS.
2483
2484 If ROW is not null, calls to produce_glyphs with IT as parameter
2485 will produce glyphs in that row.
2486
2487 BASE_FACE_ID is the id of a base face to use. It must be one of
2488 DEFAULT_FACE_ID for normal text, MODE_LINE_FACE_ID,
2489 MODE_LINE_INACTIVE_FACE_ID, or HEADER_LINE_FACE_ID for displaying
2490 mode lines, or TOOL_BAR_FACE_ID for displaying the tool-bar.
2491
2492 If ROW is null and BASE_FACE_ID is equal to MODE_LINE_FACE_ID,
2493 MODE_LINE_INACTIVE_FACE_ID, or HEADER_LINE_FACE_ID, the iterator
2494 will be initialized to use the corresponding mode line glyph row of
2495 the desired matrix of W. */
2496
2497 void
2498 init_iterator (struct it *it, struct window *w,
2499 EMACS_INT charpos, EMACS_INT bytepos,
2500 struct glyph_row *row, enum face_id base_face_id)
2501 {
2502 int highlight_region_p;
2503 enum face_id remapped_base_face_id = base_face_id;
2504
2505 /* Some precondition checks. */
2506 xassert (w != NULL && it != NULL);
2507 xassert (charpos < 0 || (charpos >= BUF_BEG (current_buffer)
2508 && charpos <= ZV));
2509
2510 /* If face attributes have been changed since the last redisplay,
2511 free realized faces now because they depend on face definitions
2512 that might have changed. Don't free faces while there might be
2513 desired matrices pending which reference these faces. */
2514 if (face_change_count && !inhibit_free_realized_faces)
2515 {
2516 face_change_count = 0;
2517 free_all_realized_faces (Qnil);
2518 }
2519
2520 /* Perhaps remap BASE_FACE_ID to a user-specified alternative. */
2521 if (! NILP (Vface_remapping_alist))
2522 remapped_base_face_id = lookup_basic_face (XFRAME (w->frame), base_face_id);
2523
2524 /* Use one of the mode line rows of W's desired matrix if
2525 appropriate. */
2526 if (row == NULL)
2527 {
2528 if (base_face_id == MODE_LINE_FACE_ID
2529 || base_face_id == MODE_LINE_INACTIVE_FACE_ID)
2530 row = MATRIX_MODE_LINE_ROW (w->desired_matrix);
2531 else if (base_face_id == HEADER_LINE_FACE_ID)
2532 row = MATRIX_HEADER_LINE_ROW (w->desired_matrix);
2533 }
2534
2535 /* Clear IT. */
2536 memset (it, 0, sizeof *it);
2537 it->current.overlay_string_index = -1;
2538 it->current.dpvec_index = -1;
2539 it->base_face_id = remapped_base_face_id;
2540 it->string = Qnil;
2541 IT_STRING_CHARPOS (*it) = IT_STRING_BYTEPOS (*it) = -1;
2542 it->paragraph_embedding = L2R;
2543 it->bidi_it.string.lstring = Qnil;
2544 it->bidi_it.string.s = NULL;
2545 it->bidi_it.string.bufpos = 0;
2546
2547 /* The window in which we iterate over current_buffer: */
2548 XSETWINDOW (it->window, w);
2549 it->w = w;
2550 it->f = XFRAME (w->frame);
2551
2552 it->cmp_it.id = -1;
2553
2554 /* Extra space between lines (on window systems only). */
2555 if (base_face_id == DEFAULT_FACE_ID
2556 && FRAME_WINDOW_P (it->f))
2557 {
2558 if (NATNUMP (BVAR (current_buffer, extra_line_spacing)))
2559 it->extra_line_spacing = XFASTINT (BVAR (current_buffer, extra_line_spacing));
2560 else if (FLOATP (BVAR (current_buffer, extra_line_spacing)))
2561 it->extra_line_spacing = (XFLOAT_DATA (BVAR (current_buffer, extra_line_spacing))
2562 * FRAME_LINE_HEIGHT (it->f));
2563 else if (it->f->extra_line_spacing > 0)
2564 it->extra_line_spacing = it->f->extra_line_spacing;
2565 it->max_extra_line_spacing = 0;
2566 }
2567
2568 /* If realized faces have been removed, e.g. because of face
2569 attribute changes of named faces, recompute them. When running
2570 in batch mode, the face cache of the initial frame is null. If
2571 we happen to get called, make a dummy face cache. */
2572 if (FRAME_FACE_CACHE (it->f) == NULL)
2573 init_frame_faces (it->f);
2574 if (FRAME_FACE_CACHE (it->f)->used == 0)
2575 recompute_basic_faces (it->f);
2576
2577 /* Current value of the `slice', `space-width', and 'height' properties. */
2578 it->slice.x = it->slice.y = it->slice.width = it->slice.height = Qnil;
2579 it->space_width = Qnil;
2580 it->font_height = Qnil;
2581 it->override_ascent = -1;
2582
2583 /* Are control characters displayed as `^C'? */
2584 it->ctl_arrow_p = !NILP (BVAR (current_buffer, ctl_arrow));
2585
2586 /* -1 means everything between a CR and the following line end
2587 is invisible. >0 means lines indented more than this value are
2588 invisible. */
2589 it->selective = (INTEGERP (BVAR (current_buffer, selective_display))
2590 ? XINT (BVAR (current_buffer, selective_display))
2591 : (!NILP (BVAR (current_buffer, selective_display))
2592 ? -1 : 0));
2593 it->selective_display_ellipsis_p
2594 = !NILP (BVAR (current_buffer, selective_display_ellipses));
2595
2596 /* Display table to use. */
2597 it->dp = window_display_table (w);
2598
2599 /* Are multibyte characters enabled in current_buffer? */
2600 it->multibyte_p = !NILP (BVAR (current_buffer, enable_multibyte_characters));
2601
2602 /* Non-zero if we should highlight the region. */
2603 highlight_region_p
2604 = (!NILP (Vtransient_mark_mode)
2605 && !NILP (BVAR (current_buffer, mark_active))
2606 && XMARKER (BVAR (current_buffer, mark))->buffer != 0);
2607
2608 /* Set IT->region_beg_charpos and IT->region_end_charpos to the
2609 start and end of a visible region in window IT->w. Set both to
2610 -1 to indicate no region. */
2611 if (highlight_region_p
2612 /* Maybe highlight only in selected window. */
2613 && (/* Either show region everywhere. */
2614 highlight_nonselected_windows
2615 /* Or show region in the selected window. */
2616 || w == XWINDOW (selected_window)
2617 /* Or show the region if we are in the mini-buffer and W is
2618 the window the mini-buffer refers to. */
2619 || (MINI_WINDOW_P (XWINDOW (selected_window))
2620 && WINDOWP (minibuf_selected_window)
2621 && w == XWINDOW (minibuf_selected_window))))
2622 {
2623 EMACS_INT markpos = marker_position (BVAR (current_buffer, mark));
2624 it->region_beg_charpos = min (PT, markpos);
2625 it->region_end_charpos = max (PT, markpos);
2626 }
2627 else
2628 it->region_beg_charpos = it->region_end_charpos = -1;
2629
2630 /* Get the position at which the redisplay_end_trigger hook should
2631 be run, if it is to be run at all. */
2632 if (MARKERP (w->redisplay_end_trigger)
2633 && XMARKER (w->redisplay_end_trigger)->buffer != 0)
2634 it->redisplay_end_trigger_charpos
2635 = marker_position (w->redisplay_end_trigger);
2636 else if (INTEGERP (w->redisplay_end_trigger))
2637 it->redisplay_end_trigger_charpos = XINT (w->redisplay_end_trigger);
2638
2639 it->tab_width = SANE_TAB_WIDTH (current_buffer);
2640
2641 /* Are lines in the display truncated? */
2642 if (base_face_id != DEFAULT_FACE_ID
2643 || XINT (it->w->hscroll)
2644 || (! WINDOW_FULL_WIDTH_P (it->w)
2645 && ((!NILP (Vtruncate_partial_width_windows)
2646 && !INTEGERP (Vtruncate_partial_width_windows))
2647 || (INTEGERP (Vtruncate_partial_width_windows)
2648 && (WINDOW_TOTAL_COLS (it->w)
2649 < XINT (Vtruncate_partial_width_windows))))))
2650 it->line_wrap = TRUNCATE;
2651 else if (NILP (BVAR (current_buffer, truncate_lines)))
2652 it->line_wrap = NILP (BVAR (current_buffer, word_wrap))
2653 ? WINDOW_WRAP : WORD_WRAP;
2654 else
2655 it->line_wrap = TRUNCATE;
2656
2657 /* Get dimensions of truncation and continuation glyphs. These are
2658 displayed as fringe bitmaps under X, so we don't need them for such
2659 frames. */
2660 if (!FRAME_WINDOW_P (it->f))
2661 {
2662 if (it->line_wrap == TRUNCATE)
2663 {
2664 /* We will need the truncation glyph. */
2665 xassert (it->glyph_row == NULL);
2666 produce_special_glyphs (it, IT_TRUNCATION);
2667 it->truncation_pixel_width = it->pixel_width;
2668 }
2669 else
2670 {
2671 /* We will need the continuation glyph. */
2672 xassert (it->glyph_row == NULL);
2673 produce_special_glyphs (it, IT_CONTINUATION);
2674 it->continuation_pixel_width = it->pixel_width;
2675 }
2676
2677 /* Reset these values to zero because the produce_special_glyphs
2678 above has changed them. */
2679 it->pixel_width = it->ascent = it->descent = 0;
2680 it->phys_ascent = it->phys_descent = 0;
2681 }
2682
2683 /* Set this after getting the dimensions of truncation and
2684 continuation glyphs, so that we don't produce glyphs when calling
2685 produce_special_glyphs, above. */
2686 it->glyph_row = row;
2687 it->area = TEXT_AREA;
2688
2689 /* Forget any previous info about this row being reversed. */
2690 if (it->glyph_row)
2691 it->glyph_row->reversed_p = 0;
2692
2693 /* Get the dimensions of the display area. The display area
2694 consists of the visible window area plus a horizontally scrolled
2695 part to the left of the window. All x-values are relative to the
2696 start of this total display area. */
2697 if (base_face_id != DEFAULT_FACE_ID)
2698 {
2699 /* Mode lines, menu bar in terminal frames. */
2700 it->first_visible_x = 0;
2701 it->last_visible_x = WINDOW_TOTAL_WIDTH (w);
2702 }
2703 else
2704 {
2705 it->first_visible_x
2706 = XFASTINT (it->w->hscroll) * FRAME_COLUMN_WIDTH (it->f);
2707 it->last_visible_x = (it->first_visible_x
2708 + window_box_width (w, TEXT_AREA));
2709
2710 /* If we truncate lines, leave room for the truncator glyph(s) at
2711 the right margin. Otherwise, leave room for the continuation
2712 glyph(s). Truncation and continuation glyphs are not inserted
2713 for window-based redisplay. */
2714 if (!FRAME_WINDOW_P (it->f))
2715 {
2716 if (it->line_wrap == TRUNCATE)
2717 it->last_visible_x -= it->truncation_pixel_width;
2718 else
2719 it->last_visible_x -= it->continuation_pixel_width;
2720 }
2721
2722 it->header_line_p = WINDOW_WANTS_HEADER_LINE_P (w);
2723 it->current_y = WINDOW_HEADER_LINE_HEIGHT (w) + w->vscroll;
2724 }
2725
2726 /* Leave room for a border glyph. */
2727 if (!FRAME_WINDOW_P (it->f)
2728 && !WINDOW_RIGHTMOST_P (it->w))
2729 it->last_visible_x -= 1;
2730
2731 it->last_visible_y = window_text_bottom_y (w);
2732
2733 /* For mode lines and alike, arrange for the first glyph having a
2734 left box line if the face specifies a box. */
2735 if (base_face_id != DEFAULT_FACE_ID)
2736 {
2737 struct face *face;
2738
2739 it->face_id = remapped_base_face_id;
2740
2741 /* If we have a boxed mode line, make the first character appear
2742 with a left box line. */
2743 face = FACE_FROM_ID (it->f, remapped_base_face_id);
2744 if (face->box != FACE_NO_BOX)
2745 it->start_of_box_run_p = 1;
2746 }
2747
2748 /* If a buffer position was specified, set the iterator there,
2749 getting overlays and face properties from that position. */
2750 if (charpos >= BUF_BEG (current_buffer))
2751 {
2752 it->end_charpos = ZV;
2753 it->face_id = -1;
2754 IT_CHARPOS (*it) = charpos;
2755
2756 /* Compute byte position if not specified. */
2757 if (bytepos < charpos)
2758 IT_BYTEPOS (*it) = CHAR_TO_BYTE (charpos);
2759 else
2760 IT_BYTEPOS (*it) = bytepos;
2761
2762 it->start = it->current;
2763 /* Do we need to reorder bidirectional text? Not if this is a
2764 unibyte buffer: by definition, none of the single-byte
2765 characters are strong R2L, so no reordering is needed. And
2766 bidi.c doesn't support unibyte buffers anyway. */
2767 it->bidi_p =
2768 !NILP (BVAR (current_buffer, bidi_display_reordering))
2769 && it->multibyte_p;
2770
2771 /* If we are to reorder bidirectional text, init the bidi
2772 iterator. */
2773 if (it->bidi_p)
2774 {
2775 /* Note the paragraph direction that this buffer wants to
2776 use. */
2777 if (EQ (BVAR (current_buffer, bidi_paragraph_direction),
2778 Qleft_to_right))
2779 it->paragraph_embedding = L2R;
2780 else if (EQ (BVAR (current_buffer, bidi_paragraph_direction),
2781 Qright_to_left))
2782 it->paragraph_embedding = R2L;
2783 else
2784 it->paragraph_embedding = NEUTRAL_DIR;
2785 bidi_unshelve_cache (NULL, 0);
2786 bidi_init_it (charpos, IT_BYTEPOS (*it), FRAME_WINDOW_P (it->f),
2787 &it->bidi_it);
2788 }
2789
2790 /* Compute faces etc. */
2791 reseat (it, it->current.pos, 1);
2792 }
2793
2794 CHECK_IT (it);
2795 }
2796
2797
2798 /* Initialize IT for the display of window W with window start POS. */
2799
2800 void
2801 start_display (struct it *it, struct window *w, struct text_pos pos)
2802 {
2803 struct glyph_row *row;
2804 int first_vpos = WINDOW_WANTS_HEADER_LINE_P (w) ? 1 : 0;
2805
2806 row = w->desired_matrix->rows + first_vpos;
2807 init_iterator (it, w, CHARPOS (pos), BYTEPOS (pos), row, DEFAULT_FACE_ID);
2808 it->first_vpos = first_vpos;
2809
2810 /* Don't reseat to previous visible line start if current start
2811 position is in a string or image. */
2812 if (it->method == GET_FROM_BUFFER && it->line_wrap != TRUNCATE)
2813 {
2814 int start_at_line_beg_p;
2815 int first_y = it->current_y;
2816
2817 /* If window start is not at a line start, skip forward to POS to
2818 get the correct continuation lines width. */
2819 start_at_line_beg_p = (CHARPOS (pos) == BEGV
2820 || FETCH_BYTE (BYTEPOS (pos) - 1) == '\n');
2821 if (!start_at_line_beg_p)
2822 {
2823 int new_x;
2824
2825 reseat_at_previous_visible_line_start (it);
2826 move_it_to (it, CHARPOS (pos), -1, -1, -1, MOVE_TO_POS);
2827
2828 new_x = it->current_x + it->pixel_width;
2829
2830 /* If lines are continued, this line may end in the middle
2831 of a multi-glyph character (e.g. a control character
2832 displayed as \003, or in the middle of an overlay
2833 string). In this case move_it_to above will not have
2834 taken us to the start of the continuation line but to the
2835 end of the continued line. */
2836 if (it->current_x > 0
2837 && it->line_wrap != TRUNCATE /* Lines are continued. */
2838 && (/* And glyph doesn't fit on the line. */
2839 new_x > it->last_visible_x
2840 /* Or it fits exactly and we're on a window
2841 system frame. */
2842 || (new_x == it->last_visible_x
2843 && FRAME_WINDOW_P (it->f))))
2844 {
2845 if (it->current.dpvec_index >= 0
2846 || it->current.overlay_string_index >= 0)
2847 {
2848 set_iterator_to_next (it, 1);
2849 move_it_in_display_line_to (it, -1, -1, 0);
2850 }
2851
2852 it->continuation_lines_width += it->current_x;
2853 }
2854
2855 /* We're starting a new display line, not affected by the
2856 height of the continued line, so clear the appropriate
2857 fields in the iterator structure. */
2858 it->max_ascent = it->max_descent = 0;
2859 it->max_phys_ascent = it->max_phys_descent = 0;
2860
2861 it->current_y = first_y;
2862 it->vpos = 0;
2863 it->current_x = it->hpos = 0;
2864 }
2865 }
2866 }
2867
2868
2869 /* Return 1 if POS is a position in ellipses displayed for invisible
2870 text. W is the window we display, for text property lookup. */
2871
2872 static int
2873 in_ellipses_for_invisible_text_p (struct display_pos *pos, struct window *w)
2874 {
2875 Lisp_Object prop, window;
2876 int ellipses_p = 0;
2877 EMACS_INT charpos = CHARPOS (pos->pos);
2878
2879 /* If POS specifies a position in a display vector, this might
2880 be for an ellipsis displayed for invisible text. We won't
2881 get the iterator set up for delivering that ellipsis unless
2882 we make sure that it gets aware of the invisible text. */
2883 if (pos->dpvec_index >= 0
2884 && pos->overlay_string_index < 0
2885 && CHARPOS (pos->string_pos) < 0
2886 && charpos > BEGV
2887 && (XSETWINDOW (window, w),
2888 prop = Fget_char_property (make_number (charpos),
2889 Qinvisible, window),
2890 !TEXT_PROP_MEANS_INVISIBLE (prop)))
2891 {
2892 prop = Fget_char_property (make_number (charpos - 1), Qinvisible,
2893 window);
2894 ellipses_p = 2 == TEXT_PROP_MEANS_INVISIBLE (prop);
2895 }
2896
2897 return ellipses_p;
2898 }
2899
2900
2901 /* Initialize IT for stepping through current_buffer in window W,
2902 starting at position POS that includes overlay string and display
2903 vector/ control character translation position information. Value
2904 is zero if there are overlay strings with newlines at POS. */
2905
2906 static int
2907 init_from_display_pos (struct it *it, struct window *w, struct display_pos *pos)
2908 {
2909 EMACS_INT charpos = CHARPOS (pos->pos), bytepos = BYTEPOS (pos->pos);
2910 int i, overlay_strings_with_newlines = 0;
2911
2912 /* If POS specifies a position in a display vector, this might
2913 be for an ellipsis displayed for invisible text. We won't
2914 get the iterator set up for delivering that ellipsis unless
2915 we make sure that it gets aware of the invisible text. */
2916 if (in_ellipses_for_invisible_text_p (pos, w))
2917 {
2918 --charpos;
2919 bytepos = 0;
2920 }
2921
2922 /* Keep in mind: the call to reseat in init_iterator skips invisible
2923 text, so we might end up at a position different from POS. This
2924 is only a problem when POS is a row start after a newline and an
2925 overlay starts there with an after-string, and the overlay has an
2926 invisible property. Since we don't skip invisible text in
2927 display_line and elsewhere immediately after consuming the
2928 newline before the row start, such a POS will not be in a string,
2929 but the call to init_iterator below will move us to the
2930 after-string. */
2931 init_iterator (it, w, charpos, bytepos, NULL, DEFAULT_FACE_ID);
2932
2933 /* This only scans the current chunk -- it should scan all chunks.
2934 However, OVERLAY_STRING_CHUNK_SIZE has been increased from 3 in 21.1
2935 to 16 in 22.1 to make this a lesser problem. */
2936 for (i = 0; i < it->n_overlay_strings && i < OVERLAY_STRING_CHUNK_SIZE; ++i)
2937 {
2938 const char *s = SSDATA (it->overlay_strings[i]);
2939 const char *e = s + SBYTES (it->overlay_strings[i]);
2940
2941 while (s < e && *s != '\n')
2942 ++s;
2943
2944 if (s < e)
2945 {
2946 overlay_strings_with_newlines = 1;
2947 break;
2948 }
2949 }
2950
2951 /* If position is within an overlay string, set up IT to the right
2952 overlay string. */
2953 if (pos->overlay_string_index >= 0)
2954 {
2955 int relative_index;
2956
2957 /* If the first overlay string happens to have a `display'
2958 property for an image, the iterator will be set up for that
2959 image, and we have to undo that setup first before we can
2960 correct the overlay string index. */
2961 if (it->method == GET_FROM_IMAGE)
2962 pop_it (it);
2963
2964 /* We already have the first chunk of overlay strings in
2965 IT->overlay_strings. Load more until the one for
2966 pos->overlay_string_index is in IT->overlay_strings. */
2967 if (pos->overlay_string_index >= OVERLAY_STRING_CHUNK_SIZE)
2968 {
2969 int n = pos->overlay_string_index / OVERLAY_STRING_CHUNK_SIZE;
2970 it->current.overlay_string_index = 0;
2971 while (n--)
2972 {
2973 load_overlay_strings (it, 0);
2974 it->current.overlay_string_index += OVERLAY_STRING_CHUNK_SIZE;
2975 }
2976 }
2977
2978 it->current.overlay_string_index = pos->overlay_string_index;
2979 relative_index = (it->current.overlay_string_index
2980 % OVERLAY_STRING_CHUNK_SIZE);
2981 it->string = it->overlay_strings[relative_index];
2982 xassert (STRINGP (it->string));
2983 it->current.string_pos = pos->string_pos;
2984 it->method = GET_FROM_STRING;
2985 }
2986
2987 if (CHARPOS (pos->string_pos) >= 0)
2988 {
2989 /* Recorded position is not in an overlay string, but in another
2990 string. This can only be a string from a `display' property.
2991 IT should already be filled with that string. */
2992 it->current.string_pos = pos->string_pos;
2993 xassert (STRINGP (it->string));
2994 }
2995
2996 /* Restore position in display vector translations, control
2997 character translations or ellipses. */
2998 if (pos->dpvec_index >= 0)
2999 {
3000 if (it->dpvec == NULL)
3001 get_next_display_element (it);
3002 xassert (it->dpvec && it->current.dpvec_index == 0);
3003 it->current.dpvec_index = pos->dpvec_index;
3004 }
3005
3006 CHECK_IT (it);
3007 return !overlay_strings_with_newlines;
3008 }
3009
3010
3011 /* Initialize IT for stepping through current_buffer in window W
3012 starting at ROW->start. */
3013
3014 static void
3015 init_to_row_start (struct it *it, struct window *w, struct glyph_row *row)
3016 {
3017 init_from_display_pos (it, w, &row->start);
3018 it->start = row->start;
3019 it->continuation_lines_width = row->continuation_lines_width;
3020 CHECK_IT (it);
3021 }
3022
3023
3024 /* Initialize IT for stepping through current_buffer in window W
3025 starting in the line following ROW, i.e. starting at ROW->end.
3026 Value is zero if there are overlay strings with newlines at ROW's
3027 end position. */
3028
3029 static int
3030 init_to_row_end (struct it *it, struct window *w, struct glyph_row *row)
3031 {
3032 int success = 0;
3033
3034 if (init_from_display_pos (it, w, &row->end))
3035 {
3036 if (row->continued_p)
3037 it->continuation_lines_width
3038 = row->continuation_lines_width + row->pixel_width;
3039 CHECK_IT (it);
3040 success = 1;
3041 }
3042
3043 return success;
3044 }
3045
3046
3047
3048 \f
3049 /***********************************************************************
3050 Text properties
3051 ***********************************************************************/
3052
3053 /* Called when IT reaches IT->stop_charpos. Handle text property and
3054 overlay changes. Set IT->stop_charpos to the next position where
3055 to stop. */
3056
3057 static void
3058 handle_stop (struct it *it)
3059 {
3060 enum prop_handled handled;
3061 int handle_overlay_change_p;
3062 struct props *p;
3063
3064 it->dpvec = NULL;
3065 it->current.dpvec_index = -1;
3066 handle_overlay_change_p = !it->ignore_overlay_strings_at_pos_p;
3067 it->ignore_overlay_strings_at_pos_p = 0;
3068 it->ellipsis_p = 0;
3069
3070 /* Use face of preceding text for ellipsis (if invisible) */
3071 if (it->selective_display_ellipsis_p)
3072 it->saved_face_id = it->face_id;
3073
3074 do
3075 {
3076 handled = HANDLED_NORMALLY;
3077
3078 /* Call text property handlers. */
3079 for (p = it_props; p->handler; ++p)
3080 {
3081 handled = p->handler (it);
3082
3083 if (handled == HANDLED_RECOMPUTE_PROPS)
3084 break;
3085 else if (handled == HANDLED_RETURN)
3086 {
3087 /* We still want to show before and after strings from
3088 overlays even if the actual buffer text is replaced. */
3089 if (!handle_overlay_change_p
3090 || it->sp > 1
3091 || !get_overlay_strings_1 (it, 0, 0))
3092 {
3093 if (it->ellipsis_p)
3094 setup_for_ellipsis (it, 0);
3095 /* When handling a display spec, we might load an
3096 empty string. In that case, discard it here. We
3097 used to discard it in handle_single_display_spec,
3098 but that causes get_overlay_strings_1, above, to
3099 ignore overlay strings that we must check. */
3100 if (STRINGP (it->string) && !SCHARS (it->string))
3101 pop_it (it);
3102 return;
3103 }
3104 else if (STRINGP (it->string) && !SCHARS (it->string))
3105 pop_it (it);
3106 else
3107 {
3108 it->ignore_overlay_strings_at_pos_p = 1;
3109 it->string_from_display_prop_p = 0;
3110 it->from_disp_prop_p = 0;
3111 handle_overlay_change_p = 0;
3112 }
3113 handled = HANDLED_RECOMPUTE_PROPS;
3114 break;
3115 }
3116 else if (handled == HANDLED_OVERLAY_STRING_CONSUMED)
3117 handle_overlay_change_p = 0;
3118 }
3119
3120 if (handled != HANDLED_RECOMPUTE_PROPS)
3121 {
3122 /* Don't check for overlay strings below when set to deliver
3123 characters from a display vector. */
3124 if (it->method == GET_FROM_DISPLAY_VECTOR)
3125 handle_overlay_change_p = 0;
3126
3127 /* Handle overlay changes.
3128 This sets HANDLED to HANDLED_RECOMPUTE_PROPS
3129 if it finds overlays. */
3130 if (handle_overlay_change_p)
3131 handled = handle_overlay_change (it);
3132 }
3133
3134 if (it->ellipsis_p)
3135 {
3136 setup_for_ellipsis (it, 0);
3137 break;
3138 }
3139 }
3140 while (handled == HANDLED_RECOMPUTE_PROPS);
3141
3142 /* Determine where to stop next. */
3143 if (handled == HANDLED_NORMALLY)
3144 compute_stop_pos (it);
3145 }
3146
3147
3148 /* Compute IT->stop_charpos from text property and overlay change
3149 information for IT's current position. */
3150
3151 static void
3152 compute_stop_pos (struct it *it)
3153 {
3154 register INTERVAL iv, next_iv;
3155 Lisp_Object object, limit, position;
3156 EMACS_INT charpos, bytepos;
3157
3158 /* If nowhere else, stop at the end. */
3159 it->stop_charpos = it->end_charpos;
3160
3161 if (STRINGP (it->string))
3162 {
3163 /* Strings are usually short, so don't limit the search for
3164 properties. */
3165 object = it->string;
3166 limit = Qnil;
3167 charpos = IT_STRING_CHARPOS (*it);
3168 bytepos = IT_STRING_BYTEPOS (*it);
3169 }
3170 else
3171 {
3172 EMACS_INT pos;
3173
3174 /* If next overlay change is in front of the current stop pos
3175 (which is IT->end_charpos), stop there. Note: value of
3176 next_overlay_change is point-max if no overlay change
3177 follows. */
3178 charpos = IT_CHARPOS (*it);
3179 bytepos = IT_BYTEPOS (*it);
3180 pos = next_overlay_change (charpos);
3181 if (pos < it->stop_charpos)
3182 it->stop_charpos = pos;
3183
3184 /* If showing the region, we have to stop at the region
3185 start or end because the face might change there. */
3186 if (it->region_beg_charpos > 0)
3187 {
3188 if (IT_CHARPOS (*it) < it->region_beg_charpos)
3189 it->stop_charpos = min (it->stop_charpos, it->region_beg_charpos);
3190 else if (IT_CHARPOS (*it) < it->region_end_charpos)
3191 it->stop_charpos = min (it->stop_charpos, it->region_end_charpos);
3192 }
3193
3194 /* Set up variables for computing the stop position from text
3195 property changes. */
3196 XSETBUFFER (object, current_buffer);
3197 limit = make_number (IT_CHARPOS (*it) + TEXT_PROP_DISTANCE_LIMIT);
3198 }
3199
3200 /* Get the interval containing IT's position. Value is a null
3201 interval if there isn't such an interval. */
3202 position = make_number (charpos);
3203 iv = validate_interval_range (object, &position, &position, 0);
3204 if (!NULL_INTERVAL_P (iv))
3205 {
3206 Lisp_Object values_here[LAST_PROP_IDX];
3207 struct props *p;
3208
3209 /* Get properties here. */
3210 for (p = it_props; p->handler; ++p)
3211 values_here[p->idx] = textget (iv->plist, *p->name);
3212
3213 /* Look for an interval following iv that has different
3214 properties. */
3215 for (next_iv = next_interval (iv);
3216 (!NULL_INTERVAL_P (next_iv)
3217 && (NILP (limit)
3218 || XFASTINT (limit) > next_iv->position));
3219 next_iv = next_interval (next_iv))
3220 {
3221 for (p = it_props; p->handler; ++p)
3222 {
3223 Lisp_Object new_value;
3224
3225 new_value = textget (next_iv->plist, *p->name);
3226 if (!EQ (values_here[p->idx], new_value))
3227 break;
3228 }
3229
3230 if (p->handler)
3231 break;
3232 }
3233
3234 if (!NULL_INTERVAL_P (next_iv))
3235 {
3236 if (INTEGERP (limit)
3237 && next_iv->position >= XFASTINT (limit))
3238 /* No text property change up to limit. */
3239 it->stop_charpos = min (XFASTINT (limit), it->stop_charpos);
3240 else
3241 /* Text properties change in next_iv. */
3242 it->stop_charpos = min (it->stop_charpos, next_iv->position);
3243 }
3244 }
3245
3246 if (it->cmp_it.id < 0)
3247 {
3248 EMACS_INT stoppos = it->end_charpos;
3249
3250 if (it->bidi_p && it->bidi_it.scan_dir < 0)
3251 stoppos = -1;
3252 composition_compute_stop_pos (&it->cmp_it, charpos, bytepos,
3253 stoppos, it->string);
3254 }
3255
3256 xassert (STRINGP (it->string)
3257 || (it->stop_charpos >= BEGV
3258 && it->stop_charpos >= IT_CHARPOS (*it)));
3259 }
3260
3261
3262 /* Return the position of the next overlay change after POS in
3263 current_buffer. Value is point-max if no overlay change
3264 follows. This is like `next-overlay-change' but doesn't use
3265 xmalloc. */
3266
3267 static EMACS_INT
3268 next_overlay_change (EMACS_INT pos)
3269 {
3270 ptrdiff_t i, noverlays;
3271 EMACS_INT endpos;
3272 Lisp_Object *overlays;
3273
3274 /* Get all overlays at the given position. */
3275 GET_OVERLAYS_AT (pos, overlays, noverlays, &endpos, 1);
3276
3277 /* If any of these overlays ends before endpos,
3278 use its ending point instead. */
3279 for (i = 0; i < noverlays; ++i)
3280 {
3281 Lisp_Object oend;
3282 EMACS_INT oendpos;
3283
3284 oend = OVERLAY_END (overlays[i]);
3285 oendpos = OVERLAY_POSITION (oend);
3286 endpos = min (endpos, oendpos);
3287 }
3288
3289 return endpos;
3290 }
3291
3292 /* How many characters forward to search for a display property or
3293 display string. Searching too far forward makes the bidi display
3294 sluggish, especially in small windows. */
3295 #define MAX_DISP_SCAN 250
3296
3297 /* Return the character position of a display string at or after
3298 position specified by POSITION. If no display string exists at or
3299 after POSITION, return ZV. A display string is either an overlay
3300 with `display' property whose value is a string, or a `display'
3301 text property whose value is a string. STRING is data about the
3302 string to iterate; if STRING->lstring is nil, we are iterating a
3303 buffer. FRAME_WINDOW_P is non-zero when we are displaying a window
3304 on a GUI frame. DISP_PROP is set to zero if we searched
3305 MAX_DISP_SCAN characters forward without finding any display
3306 strings, non-zero otherwise. It is set to 2 if the display string
3307 uses any kind of `(space ...)' spec that will produce a stretch of
3308 white space in the text area. */
3309 EMACS_INT
3310 compute_display_string_pos (struct text_pos *position,
3311 struct bidi_string_data *string,
3312 int frame_window_p, int *disp_prop)
3313 {
3314 /* OBJECT = nil means current buffer. */
3315 Lisp_Object object =
3316 (string && STRINGP (string->lstring)) ? string->lstring : Qnil;
3317 Lisp_Object pos, spec, limpos;
3318 int string_p = (string && (STRINGP (string->lstring) || string->s));
3319 EMACS_INT eob = string_p ? string->schars : ZV;
3320 EMACS_INT begb = string_p ? 0 : BEGV;
3321 EMACS_INT bufpos, charpos = CHARPOS (*position);
3322 EMACS_INT lim =
3323 (charpos < eob - MAX_DISP_SCAN) ? charpos + MAX_DISP_SCAN : eob;
3324 struct text_pos tpos;
3325 int rv = 0;
3326
3327 *disp_prop = 1;
3328
3329 if (charpos >= eob
3330 /* We don't support display properties whose values are strings
3331 that have display string properties. */
3332 || string->from_disp_str
3333 /* C strings cannot have display properties. */
3334 || (string->s && !STRINGP (object)))
3335 {
3336 *disp_prop = 0;
3337 return eob;
3338 }
3339
3340 /* If the character at CHARPOS is where the display string begins,
3341 return CHARPOS. */
3342 pos = make_number (charpos);
3343 if (STRINGP (object))
3344 bufpos = string->bufpos;
3345 else
3346 bufpos = charpos;
3347 tpos = *position;
3348 if (!NILP (spec = Fget_char_property (pos, Qdisplay, object))
3349 && (charpos <= begb
3350 || !EQ (Fget_char_property (make_number (charpos - 1), Qdisplay,
3351 object),
3352 spec))
3353 && (rv = handle_display_spec (NULL, spec, object, Qnil, &tpos, bufpos,
3354 frame_window_p)))
3355 {
3356 if (rv == 2)
3357 *disp_prop = 2;
3358 return charpos;
3359 }
3360
3361 /* Look forward for the first character with a `display' property
3362 that will replace the underlying text when displayed. */
3363 limpos = make_number (lim);
3364 do {
3365 pos = Fnext_single_char_property_change (pos, Qdisplay, object, limpos);
3366 CHARPOS (tpos) = XFASTINT (pos);
3367 if (CHARPOS (tpos) >= lim)
3368 {
3369 *disp_prop = 0;
3370 break;
3371 }
3372 if (STRINGP (object))
3373 BYTEPOS (tpos) = string_char_to_byte (object, CHARPOS (tpos));
3374 else
3375 BYTEPOS (tpos) = CHAR_TO_BYTE (CHARPOS (tpos));
3376 spec = Fget_char_property (pos, Qdisplay, object);
3377 if (!STRINGP (object))
3378 bufpos = CHARPOS (tpos);
3379 } while (NILP (spec)
3380 || !(rv = handle_display_spec (NULL, spec, object, Qnil, &tpos,
3381 bufpos, frame_window_p)));
3382 if (rv == 2)
3383 *disp_prop = 2;
3384
3385 return CHARPOS (tpos);
3386 }
3387
3388 /* Return the character position of the end of the display string that
3389 started at CHARPOS. If there's no display string at CHARPOS,
3390 return -1. A display string is either an overlay with `display'
3391 property whose value is a string or a `display' text property whose
3392 value is a string. */
3393 EMACS_INT
3394 compute_display_string_end (EMACS_INT charpos, struct bidi_string_data *string)
3395 {
3396 /* OBJECT = nil means current buffer. */
3397 Lisp_Object object =
3398 (string && STRINGP (string->lstring)) ? string->lstring : Qnil;
3399 Lisp_Object pos = make_number (charpos);
3400 EMACS_INT eob =
3401 (STRINGP (object) || (string && string->s)) ? string->schars : ZV;
3402
3403 if (charpos >= eob || (string->s && !STRINGP (object)))
3404 return eob;
3405
3406 /* It could happen that the display property or overlay was removed
3407 since we found it in compute_display_string_pos above. One way
3408 this can happen is if JIT font-lock was called (through
3409 handle_fontified_prop), and jit-lock-functions remove text
3410 properties or overlays from the portion of buffer that includes
3411 CHARPOS. Muse mode is known to do that, for example. In this
3412 case, we return -1 to the caller, to signal that no display
3413 string is actually present at CHARPOS. See bidi_fetch_char for
3414 how this is handled.
3415
3416 An alternative would be to never look for display properties past
3417 it->stop_charpos. But neither compute_display_string_pos nor
3418 bidi_fetch_char that calls it know or care where the next
3419 stop_charpos is. */
3420 if (NILP (Fget_char_property (pos, Qdisplay, object)))
3421 return -1;
3422
3423 /* Look forward for the first character where the `display' property
3424 changes. */
3425 pos = Fnext_single_char_property_change (pos, Qdisplay, object, Qnil);
3426
3427 return XFASTINT (pos);
3428 }
3429
3430
3431 \f
3432 /***********************************************************************
3433 Fontification
3434 ***********************************************************************/
3435
3436 /* Handle changes in the `fontified' property of the current buffer by
3437 calling hook functions from Qfontification_functions to fontify
3438 regions of text. */
3439
3440 static enum prop_handled
3441 handle_fontified_prop (struct it *it)
3442 {
3443 Lisp_Object prop, pos;
3444 enum prop_handled handled = HANDLED_NORMALLY;
3445
3446 if (!NILP (Vmemory_full))
3447 return handled;
3448
3449 /* Get the value of the `fontified' property at IT's current buffer
3450 position. (The `fontified' property doesn't have a special
3451 meaning in strings.) If the value is nil, call functions from
3452 Qfontification_functions. */
3453 if (!STRINGP (it->string)
3454 && it->s == NULL
3455 && !NILP (Vfontification_functions)
3456 && !NILP (Vrun_hooks)
3457 && (pos = make_number (IT_CHARPOS (*it)),
3458 prop = Fget_char_property (pos, Qfontified, Qnil),
3459 /* Ignore the special cased nil value always present at EOB since
3460 no amount of fontifying will be able to change it. */
3461 NILP (prop) && IT_CHARPOS (*it) < Z))
3462 {
3463 int count = SPECPDL_INDEX ();
3464 Lisp_Object val;
3465 struct buffer *obuf = current_buffer;
3466 int begv = BEGV, zv = ZV;
3467 int old_clip_changed = current_buffer->clip_changed;
3468
3469 val = Vfontification_functions;
3470 specbind (Qfontification_functions, Qnil);
3471
3472 xassert (it->end_charpos == ZV);
3473
3474 if (!CONSP (val) || EQ (XCAR (val), Qlambda))
3475 safe_call1 (val, pos);
3476 else
3477 {
3478 Lisp_Object fns, fn;
3479 struct gcpro gcpro1, gcpro2;
3480
3481 fns = Qnil;
3482 GCPRO2 (val, fns);
3483
3484 for (; CONSP (val); val = XCDR (val))
3485 {
3486 fn = XCAR (val);
3487
3488 if (EQ (fn, Qt))
3489 {
3490 /* A value of t indicates this hook has a local
3491 binding; it means to run the global binding too.
3492 In a global value, t should not occur. If it
3493 does, we must ignore it to avoid an endless
3494 loop. */
3495 for (fns = Fdefault_value (Qfontification_functions);
3496 CONSP (fns);
3497 fns = XCDR (fns))
3498 {
3499 fn = XCAR (fns);
3500 if (!EQ (fn, Qt))
3501 safe_call1 (fn, pos);
3502 }
3503 }
3504 else
3505 safe_call1 (fn, pos);
3506 }
3507
3508 UNGCPRO;
3509 }
3510
3511 unbind_to (count, Qnil);
3512
3513 /* Fontification functions routinely call `save-restriction'.
3514 Normally, this tags clip_changed, which can confuse redisplay
3515 (see discussion in Bug#6671). Since we don't perform any
3516 special handling of fontification changes in the case where
3517 `save-restriction' isn't called, there's no point doing so in
3518 this case either. So, if the buffer's restrictions are
3519 actually left unchanged, reset clip_changed. */
3520 if (obuf == current_buffer)
3521 {
3522 if (begv == BEGV && zv == ZV)
3523 current_buffer->clip_changed = old_clip_changed;
3524 }
3525 /* There isn't much we can reasonably do to protect against
3526 misbehaving fontification, but here's a fig leaf. */
3527 else if (!NILP (BVAR (obuf, name)))
3528 set_buffer_internal_1 (obuf);
3529
3530 /* The fontification code may have added/removed text.
3531 It could do even a lot worse, but let's at least protect against
3532 the most obvious case where only the text past `pos' gets changed',
3533 as is/was done in grep.el where some escapes sequences are turned
3534 into face properties (bug#7876). */
3535 it->end_charpos = ZV;
3536
3537 /* Return HANDLED_RECOMPUTE_PROPS only if function fontified
3538 something. This avoids an endless loop if they failed to
3539 fontify the text for which reason ever. */
3540 if (!NILP (Fget_char_property (pos, Qfontified, Qnil)))
3541 handled = HANDLED_RECOMPUTE_PROPS;
3542 }
3543
3544 return handled;
3545 }
3546
3547
3548 \f
3549 /***********************************************************************
3550 Faces
3551 ***********************************************************************/
3552
3553 /* Set up iterator IT from face properties at its current position.
3554 Called from handle_stop. */
3555
3556 static enum prop_handled
3557 handle_face_prop (struct it *it)
3558 {
3559 int new_face_id;
3560 EMACS_INT next_stop;
3561
3562 if (!STRINGP (it->string))
3563 {
3564 new_face_id
3565 = face_at_buffer_position (it->w,
3566 IT_CHARPOS (*it),
3567 it->region_beg_charpos,
3568 it->region_end_charpos,
3569 &next_stop,
3570 (IT_CHARPOS (*it)
3571 + TEXT_PROP_DISTANCE_LIMIT),
3572 0, it->base_face_id);
3573
3574 /* Is this a start of a run of characters with box face?
3575 Caveat: this can be called for a freshly initialized
3576 iterator; face_id is -1 in this case. We know that the new
3577 face will not change until limit, i.e. if the new face has a
3578 box, all characters up to limit will have one. But, as
3579 usual, we don't know whether limit is really the end. */
3580 if (new_face_id != it->face_id)
3581 {
3582 struct face *new_face = FACE_FROM_ID (it->f, new_face_id);
3583
3584 /* If new face has a box but old face has not, this is
3585 the start of a run of characters with box, i.e. it has
3586 a shadow on the left side. The value of face_id of the
3587 iterator will be -1 if this is the initial call that gets
3588 the face. In this case, we have to look in front of IT's
3589 position and see whether there is a face != new_face_id. */
3590 it->start_of_box_run_p
3591 = (new_face->box != FACE_NO_BOX
3592 && (it->face_id >= 0
3593 || IT_CHARPOS (*it) == BEG
3594 || new_face_id != face_before_it_pos (it)));
3595 it->face_box_p = new_face->box != FACE_NO_BOX;
3596 }
3597 }
3598 else
3599 {
3600 int base_face_id;
3601 EMACS_INT bufpos;
3602 int i;
3603 Lisp_Object from_overlay
3604 = (it->current.overlay_string_index >= 0
3605 ? it->string_overlays[it->current.overlay_string_index]
3606 : Qnil);
3607
3608 /* See if we got to this string directly or indirectly from
3609 an overlay property. That includes the before-string or
3610 after-string of an overlay, strings in display properties
3611 provided by an overlay, their text properties, etc.
3612
3613 FROM_OVERLAY is the overlay that brought us here, or nil if none. */
3614 if (! NILP (from_overlay))
3615 for (i = it->sp - 1; i >= 0; i--)
3616 {
3617 if (it->stack[i].current.overlay_string_index >= 0)
3618 from_overlay
3619 = it->string_overlays[it->stack[i].current.overlay_string_index];
3620 else if (! NILP (it->stack[i].from_overlay))
3621 from_overlay = it->stack[i].from_overlay;
3622
3623 if (!NILP (from_overlay))
3624 break;
3625 }
3626
3627 if (! NILP (from_overlay))
3628 {
3629 bufpos = IT_CHARPOS (*it);
3630 /* For a string from an overlay, the base face depends
3631 only on text properties and ignores overlays. */
3632 base_face_id
3633 = face_for_overlay_string (it->w,
3634 IT_CHARPOS (*it),
3635 it->region_beg_charpos,
3636 it->region_end_charpos,
3637 &next_stop,
3638 (IT_CHARPOS (*it)
3639 + TEXT_PROP_DISTANCE_LIMIT),
3640 0,
3641 from_overlay);
3642 }
3643 else
3644 {
3645 bufpos = 0;
3646
3647 /* For strings from a `display' property, use the face at
3648 IT's current buffer position as the base face to merge
3649 with, so that overlay strings appear in the same face as
3650 surrounding text, unless they specify their own
3651 faces. */
3652 base_face_id = underlying_face_id (it);
3653 }
3654
3655 new_face_id = face_at_string_position (it->w,
3656 it->string,
3657 IT_STRING_CHARPOS (*it),
3658 bufpos,
3659 it->region_beg_charpos,
3660 it->region_end_charpos,
3661 &next_stop,
3662 base_face_id, 0);
3663
3664 /* Is this a start of a run of characters with box? Caveat:
3665 this can be called for a freshly allocated iterator; face_id
3666 is -1 is this case. We know that the new face will not
3667 change until the next check pos, i.e. if the new face has a
3668 box, all characters up to that position will have a
3669 box. But, as usual, we don't know whether that position
3670 is really the end. */
3671 if (new_face_id != it->face_id)
3672 {
3673 struct face *new_face = FACE_FROM_ID (it->f, new_face_id);
3674 struct face *old_face = FACE_FROM_ID (it->f, it->face_id);
3675
3676 /* If new face has a box but old face hasn't, this is the
3677 start of a run of characters with box, i.e. it has a
3678 shadow on the left side. */
3679 it->start_of_box_run_p
3680 = new_face->box && (old_face == NULL || !old_face->box);
3681 it->face_box_p = new_face->box != FACE_NO_BOX;
3682 }
3683 }
3684
3685 it->face_id = new_face_id;
3686 return HANDLED_NORMALLY;
3687 }
3688
3689
3690 /* Return the ID of the face ``underlying'' IT's current position,
3691 which is in a string. If the iterator is associated with a
3692 buffer, return the face at IT's current buffer position.
3693 Otherwise, use the iterator's base_face_id. */
3694
3695 static int
3696 underlying_face_id (struct it *it)
3697 {
3698 int face_id = it->base_face_id, i;
3699
3700 xassert (STRINGP (it->string));
3701
3702 for (i = it->sp - 1; i >= 0; --i)
3703 if (NILP (it->stack[i].string))
3704 face_id = it->stack[i].face_id;
3705
3706 return face_id;
3707 }
3708
3709
3710 /* Compute the face one character before or after the current position
3711 of IT, in the visual order. BEFORE_P non-zero means get the face
3712 in front (to the left in L2R paragraphs, to the right in R2L
3713 paragraphs) of IT's screen position. Value is the ID of the face. */
3714
3715 static int
3716 face_before_or_after_it_pos (struct it *it, int before_p)
3717 {
3718 int face_id, limit;
3719 EMACS_INT next_check_charpos;
3720 struct it it_copy;
3721 void *it_copy_data = NULL;
3722
3723 xassert (it->s == NULL);
3724
3725 if (STRINGP (it->string))
3726 {
3727 EMACS_INT bufpos, charpos;
3728 int base_face_id;
3729
3730 /* No face change past the end of the string (for the case
3731 we are padding with spaces). No face change before the
3732 string start. */
3733 if (IT_STRING_CHARPOS (*it) >= SCHARS (it->string)
3734 || (IT_STRING_CHARPOS (*it) == 0 && before_p))
3735 return it->face_id;
3736
3737 if (!it->bidi_p)
3738 {
3739 /* Set charpos to the position before or after IT's current
3740 position, in the logical order, which in the non-bidi
3741 case is the same as the visual order. */
3742 if (before_p)
3743 charpos = IT_STRING_CHARPOS (*it) - 1;
3744 else if (it->what == IT_COMPOSITION)
3745 /* For composition, we must check the character after the
3746 composition. */
3747 charpos = IT_STRING_CHARPOS (*it) + it->cmp_it.nchars;
3748 else
3749 charpos = IT_STRING_CHARPOS (*it) + 1;
3750 }
3751 else
3752 {
3753 if (before_p)
3754 {
3755 /* With bidi iteration, the character before the current
3756 in the visual order cannot be found by simple
3757 iteration, because "reverse" reordering is not
3758 supported. Instead, we need to use the move_it_*
3759 family of functions. */
3760 /* Ignore face changes before the first visible
3761 character on this display line. */
3762 if (it->current_x <= it->first_visible_x)
3763 return it->face_id;
3764 SAVE_IT (it_copy, *it, it_copy_data);
3765 /* Implementation note: Since move_it_in_display_line
3766 works in the iterator geometry, and thinks the first
3767 character is always the leftmost, even in R2L lines,
3768 we don't need to distinguish between the R2L and L2R
3769 cases here. */
3770 move_it_in_display_line (&it_copy, SCHARS (it_copy.string),
3771 it_copy.current_x - 1, MOVE_TO_X);
3772 charpos = IT_STRING_CHARPOS (it_copy);
3773 RESTORE_IT (it, it, it_copy_data);
3774 }
3775 else
3776 {
3777 /* Set charpos to the string position of the character
3778 that comes after IT's current position in the visual
3779 order. */
3780 int n = (it->what == IT_COMPOSITION ? it->cmp_it.nchars : 1);
3781
3782 it_copy = *it;
3783 while (n--)
3784 bidi_move_to_visually_next (&it_copy.bidi_it);
3785
3786 charpos = it_copy.bidi_it.charpos;
3787 }
3788 }
3789 xassert (0 <= charpos && charpos <= SCHARS (it->string));
3790
3791 if (it->current.overlay_string_index >= 0)
3792 bufpos = IT_CHARPOS (*it);
3793 else
3794 bufpos = 0;
3795
3796 base_face_id = underlying_face_id (it);
3797
3798 /* Get the face for ASCII, or unibyte. */
3799 face_id = face_at_string_position (it->w,
3800 it->string,
3801 charpos,
3802 bufpos,
3803 it->region_beg_charpos,
3804 it->region_end_charpos,
3805 &next_check_charpos,
3806 base_face_id, 0);
3807
3808 /* Correct the face for charsets different from ASCII. Do it
3809 for the multibyte case only. The face returned above is
3810 suitable for unibyte text if IT->string is unibyte. */
3811 if (STRING_MULTIBYTE (it->string))
3812 {
3813 struct text_pos pos1 = string_pos (charpos, it->string);
3814 const unsigned char *p = SDATA (it->string) + BYTEPOS (pos1);
3815 int c, len;
3816 struct face *face = FACE_FROM_ID (it->f, face_id);
3817
3818 c = string_char_and_length (p, &len);
3819 face_id = FACE_FOR_CHAR (it->f, face, c, charpos, it->string);
3820 }
3821 }
3822 else
3823 {
3824 struct text_pos pos;
3825
3826 if ((IT_CHARPOS (*it) >= ZV && !before_p)
3827 || (IT_CHARPOS (*it) <= BEGV && before_p))
3828 return it->face_id;
3829
3830 limit = IT_CHARPOS (*it) + TEXT_PROP_DISTANCE_LIMIT;
3831 pos = it->current.pos;
3832
3833 if (!it->bidi_p)
3834 {
3835 if (before_p)
3836 DEC_TEXT_POS (pos, it->multibyte_p);
3837 else
3838 {
3839 if (it->what == IT_COMPOSITION)
3840 {
3841 /* For composition, we must check the position after
3842 the composition. */
3843 pos.charpos += it->cmp_it.nchars;
3844 pos.bytepos += it->len;
3845 }
3846 else
3847 INC_TEXT_POS (pos, it->multibyte_p);
3848 }
3849 }
3850 else
3851 {
3852 if (before_p)
3853 {
3854 /* With bidi iteration, the character before the current
3855 in the visual order cannot be found by simple
3856 iteration, because "reverse" reordering is not
3857 supported. Instead, we need to use the move_it_*
3858 family of functions. */
3859 /* Ignore face changes before the first visible
3860 character on this display line. */
3861 if (it->current_x <= it->first_visible_x)
3862 return it->face_id;
3863 SAVE_IT (it_copy, *it, it_copy_data);
3864 /* Implementation note: Since move_it_in_display_line
3865 works in the iterator geometry, and thinks the first
3866 character is always the leftmost, even in R2L lines,
3867 we don't need to distinguish between the R2L and L2R
3868 cases here. */
3869 move_it_in_display_line (&it_copy, ZV,
3870 it_copy.current_x - 1, MOVE_TO_X);
3871 pos = it_copy.current.pos;
3872 RESTORE_IT (it, it, it_copy_data);
3873 }
3874 else
3875 {
3876 /* Set charpos to the buffer position of the character
3877 that comes after IT's current position in the visual
3878 order. */
3879 int n = (it->what == IT_COMPOSITION ? it->cmp_it.nchars : 1);
3880
3881 it_copy = *it;
3882 while (n--)
3883 bidi_move_to_visually_next (&it_copy.bidi_it);
3884
3885 SET_TEXT_POS (pos,
3886 it_copy.bidi_it.charpos, it_copy.bidi_it.bytepos);
3887 }
3888 }
3889 xassert (BEGV <= CHARPOS (pos) && CHARPOS (pos) <= ZV);
3890
3891 /* Determine face for CHARSET_ASCII, or unibyte. */
3892 face_id = face_at_buffer_position (it->w,
3893 CHARPOS (pos),
3894 it->region_beg_charpos,
3895 it->region_end_charpos,
3896 &next_check_charpos,
3897 limit, 0, -1);
3898
3899 /* Correct the face for charsets different from ASCII. Do it
3900 for the multibyte case only. The face returned above is
3901 suitable for unibyte text if current_buffer is unibyte. */
3902 if (it->multibyte_p)
3903 {
3904 int c = FETCH_MULTIBYTE_CHAR (BYTEPOS (pos));
3905 struct face *face = FACE_FROM_ID (it->f, face_id);
3906 face_id = FACE_FOR_CHAR (it->f, face, c, CHARPOS (pos), Qnil);
3907 }
3908 }
3909
3910 return face_id;
3911 }
3912
3913
3914 \f
3915 /***********************************************************************
3916 Invisible text
3917 ***********************************************************************/
3918
3919 /* Set up iterator IT from invisible properties at its current
3920 position. Called from handle_stop. */
3921
3922 static enum prop_handled
3923 handle_invisible_prop (struct it *it)
3924 {
3925 enum prop_handled handled = HANDLED_NORMALLY;
3926
3927 if (STRINGP (it->string))
3928 {
3929 Lisp_Object prop, end_charpos, limit, charpos;
3930
3931 /* Get the value of the invisible text property at the
3932 current position. Value will be nil if there is no such
3933 property. */
3934 charpos = make_number (IT_STRING_CHARPOS (*it));
3935 prop = Fget_text_property (charpos, Qinvisible, it->string);
3936
3937 if (!NILP (prop)
3938 && IT_STRING_CHARPOS (*it) < it->end_charpos)
3939 {
3940 EMACS_INT endpos;
3941
3942 handled = HANDLED_RECOMPUTE_PROPS;
3943
3944 /* Get the position at which the next change of the
3945 invisible text property can be found in IT->string.
3946 Value will be nil if the property value is the same for
3947 all the rest of IT->string. */
3948 XSETINT (limit, SCHARS (it->string));
3949 end_charpos = Fnext_single_property_change (charpos, Qinvisible,
3950 it->string, limit);
3951
3952 /* Text at current position is invisible. The next
3953 change in the property is at position end_charpos.
3954 Move IT's current position to that position. */
3955 if (INTEGERP (end_charpos)
3956 && (endpos = XFASTINT (end_charpos)) < XFASTINT (limit))
3957 {
3958 struct text_pos old;
3959 EMACS_INT oldpos;
3960
3961 old = it->current.string_pos;
3962 oldpos = CHARPOS (old);
3963 if (it->bidi_p)
3964 {
3965 if (it->bidi_it.first_elt
3966 && it->bidi_it.charpos < SCHARS (it->string))
3967 bidi_paragraph_init (it->paragraph_embedding,
3968 &it->bidi_it, 1);
3969 /* Bidi-iterate out of the invisible text. */
3970 do
3971 {
3972 bidi_move_to_visually_next (&it->bidi_it);
3973 }
3974 while (oldpos <= it->bidi_it.charpos
3975 && it->bidi_it.charpos < endpos);
3976
3977 IT_STRING_CHARPOS (*it) = it->bidi_it.charpos;
3978 IT_STRING_BYTEPOS (*it) = it->bidi_it.bytepos;
3979 if (IT_CHARPOS (*it) >= endpos)
3980 it->prev_stop = endpos;
3981 }
3982 else
3983 {
3984 IT_STRING_CHARPOS (*it) = XFASTINT (end_charpos);
3985 compute_string_pos (&it->current.string_pos, old, it->string);
3986 }
3987 }
3988 else
3989 {
3990 /* The rest of the string is invisible. If this is an
3991 overlay string, proceed with the next overlay string
3992 or whatever comes and return a character from there. */
3993 if (it->current.overlay_string_index >= 0)
3994 {
3995 next_overlay_string (it);
3996 /* Don't check for overlay strings when we just
3997 finished processing them. */
3998 handled = HANDLED_OVERLAY_STRING_CONSUMED;
3999 }
4000 else
4001 {
4002 IT_STRING_CHARPOS (*it) = SCHARS (it->string);
4003 IT_STRING_BYTEPOS (*it) = SBYTES (it->string);
4004 }
4005 }
4006 }
4007 }
4008 else
4009 {
4010 int invis_p;
4011 EMACS_INT newpos, next_stop, start_charpos, tem;
4012 Lisp_Object pos, prop, overlay;
4013
4014 /* First of all, is there invisible text at this position? */
4015 tem = start_charpos = IT_CHARPOS (*it);
4016 pos = make_number (tem);
4017 prop = get_char_property_and_overlay (pos, Qinvisible, it->window,
4018 &overlay);
4019 invis_p = TEXT_PROP_MEANS_INVISIBLE (prop);
4020
4021 /* If we are on invisible text, skip over it. */
4022 if (invis_p && start_charpos < it->end_charpos)
4023 {
4024 /* Record whether we have to display an ellipsis for the
4025 invisible text. */
4026 int display_ellipsis_p = invis_p == 2;
4027
4028 handled = HANDLED_RECOMPUTE_PROPS;
4029
4030 /* Loop skipping over invisible text. The loop is left at
4031 ZV or with IT on the first char being visible again. */
4032 do
4033 {
4034 /* Try to skip some invisible text. Return value is the
4035 position reached which can be equal to where we start
4036 if there is nothing invisible there. This skips both
4037 over invisible text properties and overlays with
4038 invisible property. */
4039 newpos = skip_invisible (tem, &next_stop, ZV, it->window);
4040
4041 /* If we skipped nothing at all we weren't at invisible
4042 text in the first place. If everything to the end of
4043 the buffer was skipped, end the loop. */
4044 if (newpos == tem || newpos >= ZV)
4045 invis_p = 0;
4046 else
4047 {
4048 /* We skipped some characters but not necessarily
4049 all there are. Check if we ended up on visible
4050 text. Fget_char_property returns the property of
4051 the char before the given position, i.e. if we
4052 get invis_p = 0, this means that the char at
4053 newpos is visible. */
4054 pos = make_number (newpos);
4055 prop = Fget_char_property (pos, Qinvisible, it->window);
4056 invis_p = TEXT_PROP_MEANS_INVISIBLE (prop);
4057 }
4058
4059 /* If we ended up on invisible text, proceed to
4060 skip starting with next_stop. */
4061 if (invis_p)
4062 tem = next_stop;
4063
4064 /* If there are adjacent invisible texts, don't lose the
4065 second one's ellipsis. */
4066 if (invis_p == 2)
4067 display_ellipsis_p = 1;
4068 }
4069 while (invis_p);
4070
4071 /* The position newpos is now either ZV or on visible text. */
4072 if (it->bidi_p && newpos < ZV)
4073 {
4074 EMACS_INT bpos = CHAR_TO_BYTE (newpos);
4075
4076 if (FETCH_BYTE (bpos) == '\n'
4077 || (newpos > BEGV && FETCH_BYTE (bpos - 1) == '\n'))
4078 {
4079 /* If the invisible text ends on a newline or the
4080 character after a newline, we can avoid the
4081 costly, character by character, bidi iteration to
4082 newpos, and instead simply reseat the iterator
4083 there. That's because all bidi reordering
4084 information is tossed at the newline. This is a
4085 big win for modes that hide complete lines, like
4086 Outline, Org, etc. (Implementation note: the
4087 call to reseat_1 is necessary, because it signals
4088 to the bidi iterator that it needs to reinit its
4089 internal information when the next element for
4090 display is requested. */
4091 struct text_pos tpos;
4092
4093 SET_TEXT_POS (tpos, newpos, bpos);
4094 reseat_1 (it, tpos, 0);
4095 }
4096 else /* Must use the slow method. */
4097 {
4098 /* With bidi iteration, the region of invisible text
4099 could start and/or end in the middle of a
4100 non-base embedding level. Therefore, we need to
4101 skip invisible text using the bidi iterator,
4102 starting at IT's current position, until we find
4103 ourselves outside the invisible text. Skipping
4104 invisible text _after_ bidi iteration avoids
4105 affecting the visual order of the displayed text
4106 when invisible properties are added or
4107 removed. */
4108 if (it->bidi_it.first_elt && it->bidi_it.charpos < ZV)
4109 {
4110 /* If we were `reseat'ed to a new paragraph,
4111 determine the paragraph base direction. We
4112 need to do it now because
4113 next_element_from_buffer may not have a
4114 chance to do it, if we are going to skip any
4115 text at the beginning, which resets the
4116 FIRST_ELT flag. */
4117 bidi_paragraph_init (it->paragraph_embedding,
4118 &it->bidi_it, 1);
4119 }
4120 do
4121 {
4122 bidi_move_to_visually_next (&it->bidi_it);
4123 }
4124 while (it->stop_charpos <= it->bidi_it.charpos
4125 && it->bidi_it.charpos < newpos);
4126 IT_CHARPOS (*it) = it->bidi_it.charpos;
4127 IT_BYTEPOS (*it) = it->bidi_it.bytepos;
4128 /* If we overstepped NEWPOS, record its position in
4129 the iterator, so that we skip invisible text if
4130 later the bidi iteration lands us in the
4131 invisible region again. */
4132 if (IT_CHARPOS (*it) >= newpos)
4133 it->prev_stop = newpos;
4134 }
4135 }
4136 else
4137 {
4138 IT_CHARPOS (*it) = newpos;
4139 IT_BYTEPOS (*it) = CHAR_TO_BYTE (newpos);
4140 }
4141
4142 /* If there are before-strings at the start of invisible
4143 text, and the text is invisible because of a text
4144 property, arrange to show before-strings because 20.x did
4145 it that way. (If the text is invisible because of an
4146 overlay property instead of a text property, this is
4147 already handled in the overlay code.) */
4148 if (NILP (overlay)
4149 && get_overlay_strings (it, it->stop_charpos))
4150 {
4151 handled = HANDLED_RECOMPUTE_PROPS;
4152 it->stack[it->sp - 1].display_ellipsis_p = display_ellipsis_p;
4153 }
4154 else if (display_ellipsis_p)
4155 {
4156 /* Make sure that the glyphs of the ellipsis will get
4157 correct `charpos' values. If we would not update
4158 it->position here, the glyphs would belong to the
4159 last visible character _before_ the invisible
4160 text, which confuses `set_cursor_from_row'.
4161
4162 We use the last invisible position instead of the
4163 first because this way the cursor is always drawn on
4164 the first "." of the ellipsis, whenever PT is inside
4165 the invisible text. Otherwise the cursor would be
4166 placed _after_ the ellipsis when the point is after the
4167 first invisible character. */
4168 if (!STRINGP (it->object))
4169 {
4170 it->position.charpos = newpos - 1;
4171 it->position.bytepos = CHAR_TO_BYTE (it->position.charpos);
4172 }
4173 it->ellipsis_p = 1;
4174 /* Let the ellipsis display before
4175 considering any properties of the following char.
4176 Fixes jasonr@gnu.org 01 Oct 07 bug. */
4177 handled = HANDLED_RETURN;
4178 }
4179 }
4180 }
4181
4182 return handled;
4183 }
4184
4185
4186 /* Make iterator IT return `...' next.
4187 Replaces LEN characters from buffer. */
4188
4189 static void
4190 setup_for_ellipsis (struct it *it, int len)
4191 {
4192 /* Use the display table definition for `...'. Invalid glyphs
4193 will be handled by the method returning elements from dpvec. */
4194 if (it->dp && VECTORP (DISP_INVIS_VECTOR (it->dp)))
4195 {
4196 struct Lisp_Vector *v = XVECTOR (DISP_INVIS_VECTOR (it->dp));
4197 it->dpvec = v->contents;
4198 it->dpend = v->contents + v->header.size;
4199 }
4200 else
4201 {
4202 /* Default `...'. */
4203 it->dpvec = default_invis_vector;
4204 it->dpend = default_invis_vector + 3;
4205 }
4206
4207 it->dpvec_char_len = len;
4208 it->current.dpvec_index = 0;
4209 it->dpvec_face_id = -1;
4210
4211 /* Remember the current face id in case glyphs specify faces.
4212 IT's face is restored in set_iterator_to_next.
4213 saved_face_id was set to preceding char's face in handle_stop. */
4214 if (it->saved_face_id < 0 || it->saved_face_id != it->face_id)
4215 it->saved_face_id = it->face_id = DEFAULT_FACE_ID;
4216
4217 it->method = GET_FROM_DISPLAY_VECTOR;
4218 it->ellipsis_p = 1;
4219 }
4220
4221
4222 \f
4223 /***********************************************************************
4224 'display' property
4225 ***********************************************************************/
4226
4227 /* Set up iterator IT from `display' property at its current position.
4228 Called from handle_stop.
4229 We return HANDLED_RETURN if some part of the display property
4230 overrides the display of the buffer text itself.
4231 Otherwise we return HANDLED_NORMALLY. */
4232
4233 static enum prop_handled
4234 handle_display_prop (struct it *it)
4235 {
4236 Lisp_Object propval, object, overlay;
4237 struct text_pos *position;
4238 EMACS_INT bufpos;
4239 /* Nonzero if some property replaces the display of the text itself. */
4240 int display_replaced_p = 0;
4241
4242 if (STRINGP (it->string))
4243 {
4244 object = it->string;
4245 position = &it->current.string_pos;
4246 bufpos = CHARPOS (it->current.pos);
4247 }
4248 else
4249 {
4250 XSETWINDOW (object, it->w);
4251 position = &it->current.pos;
4252 bufpos = CHARPOS (*position);
4253 }
4254
4255 /* Reset those iterator values set from display property values. */
4256 it->slice.x = it->slice.y = it->slice.width = it->slice.height = Qnil;
4257 it->space_width = Qnil;
4258 it->font_height = Qnil;
4259 it->voffset = 0;
4260
4261 /* We don't support recursive `display' properties, i.e. string
4262 values that have a string `display' property, that have a string
4263 `display' property etc. */
4264 if (!it->string_from_display_prop_p)
4265 it->area = TEXT_AREA;
4266
4267 propval = get_char_property_and_overlay (make_number (position->charpos),
4268 Qdisplay, object, &overlay);
4269 if (NILP (propval))
4270 return HANDLED_NORMALLY;
4271 /* Now OVERLAY is the overlay that gave us this property, or nil
4272 if it was a text property. */
4273
4274 if (!STRINGP (it->string))
4275 object = it->w->buffer;
4276
4277 display_replaced_p = handle_display_spec (it, propval, object, overlay,
4278 position, bufpos,
4279 FRAME_WINDOW_P (it->f));
4280
4281 return display_replaced_p ? HANDLED_RETURN : HANDLED_NORMALLY;
4282 }
4283
4284 /* Subroutine of handle_display_prop. Returns non-zero if the display
4285 specification in SPEC is a replacing specification, i.e. it would
4286 replace the text covered by `display' property with something else,
4287 such as an image or a display string. If SPEC includes any kind or
4288 `(space ...) specification, the value is 2; this is used by
4289 compute_display_string_pos, which see.
4290
4291 See handle_single_display_spec for documentation of arguments.
4292 frame_window_p is non-zero if the window being redisplayed is on a
4293 GUI frame; this argument is used only if IT is NULL, see below.
4294
4295 IT can be NULL, if this is called by the bidi reordering code
4296 through compute_display_string_pos, which see. In that case, this
4297 function only examines SPEC, but does not otherwise "handle" it, in
4298 the sense that it doesn't set up members of IT from the display
4299 spec. */
4300 static int
4301 handle_display_spec (struct it *it, Lisp_Object spec, Lisp_Object object,
4302 Lisp_Object overlay, struct text_pos *position,
4303 EMACS_INT bufpos, int frame_window_p)
4304 {
4305 int replacing_p = 0;
4306 int rv;
4307
4308 if (CONSP (spec)
4309 /* Simple specerties. */
4310 && !EQ (XCAR (spec), Qimage)
4311 && !EQ (XCAR (spec), Qspace)
4312 && !EQ (XCAR (spec), Qwhen)
4313 && !EQ (XCAR (spec), Qslice)
4314 && !EQ (XCAR (spec), Qspace_width)
4315 && !EQ (XCAR (spec), Qheight)
4316 && !EQ (XCAR (spec), Qraise)
4317 /* Marginal area specifications. */
4318 && !(CONSP (XCAR (spec)) && EQ (XCAR (XCAR (spec)), Qmargin))
4319 && !EQ (XCAR (spec), Qleft_fringe)
4320 && !EQ (XCAR (spec), Qright_fringe)
4321 && !NILP (XCAR (spec)))
4322 {
4323 for (; CONSP (spec); spec = XCDR (spec))
4324 {
4325 if ((rv = handle_single_display_spec (it, XCAR (spec), object,
4326 overlay, position, bufpos,
4327 replacing_p, frame_window_p)))
4328 {
4329 replacing_p = rv;
4330 /* If some text in a string is replaced, `position' no
4331 longer points to the position of `object'. */
4332 if (!it || STRINGP (object))
4333 break;
4334 }
4335 }
4336 }
4337 else if (VECTORP (spec))
4338 {
4339 int i;
4340 for (i = 0; i < ASIZE (spec); ++i)
4341 if ((rv = handle_single_display_spec (it, AREF (spec, i), object,
4342 overlay, position, bufpos,
4343 replacing_p, frame_window_p)))
4344 {
4345 replacing_p = rv;
4346 /* If some text in a string is replaced, `position' no
4347 longer points to the position of `object'. */
4348 if (!it || STRINGP (object))
4349 break;
4350 }
4351 }
4352 else
4353 {
4354 if ((rv = handle_single_display_spec (it, spec, object, overlay,
4355 position, bufpos, 0,
4356 frame_window_p)))
4357 replacing_p = rv;
4358 }
4359
4360 return replacing_p;
4361 }
4362
4363 /* Value is the position of the end of the `display' property starting
4364 at START_POS in OBJECT. */
4365
4366 static struct text_pos
4367 display_prop_end (struct it *it, Lisp_Object object, struct text_pos start_pos)
4368 {
4369 Lisp_Object end;
4370 struct text_pos end_pos;
4371
4372 end = Fnext_single_char_property_change (make_number (CHARPOS (start_pos)),
4373 Qdisplay, object, Qnil);
4374 CHARPOS (end_pos) = XFASTINT (end);
4375 if (STRINGP (object))
4376 compute_string_pos (&end_pos, start_pos, it->string);
4377 else
4378 BYTEPOS (end_pos) = CHAR_TO_BYTE (XFASTINT (end));
4379
4380 return end_pos;
4381 }
4382
4383
4384 /* Set up IT from a single `display' property specification SPEC. OBJECT
4385 is the object in which the `display' property was found. *POSITION
4386 is the position in OBJECT at which the `display' property was found.
4387 BUFPOS is the buffer position of OBJECT (different from POSITION if
4388 OBJECT is not a buffer). DISPLAY_REPLACED_P non-zero means that we
4389 previously saw a display specification which already replaced text
4390 display with something else, for example an image; we ignore such
4391 properties after the first one has been processed.
4392
4393 OVERLAY is the overlay this `display' property came from,
4394 or nil if it was a text property.
4395
4396 If SPEC is a `space' or `image' specification, and in some other
4397 cases too, set *POSITION to the position where the `display'
4398 property ends.
4399
4400 If IT is NULL, only examine the property specification in SPEC, but
4401 don't set up IT. In that case, FRAME_WINDOW_P non-zero means SPEC
4402 is intended to be displayed in a window on a GUI frame.
4403
4404 Value is non-zero if something was found which replaces the display
4405 of buffer or string text. */
4406
4407 static int
4408 handle_single_display_spec (struct it *it, Lisp_Object spec, Lisp_Object object,
4409 Lisp_Object overlay, struct text_pos *position,
4410 EMACS_INT bufpos, int display_replaced_p,
4411 int frame_window_p)
4412 {
4413 Lisp_Object form;
4414 Lisp_Object location, value;
4415 struct text_pos start_pos = *position;
4416 int valid_p;
4417
4418 /* If SPEC is a list of the form `(when FORM . VALUE)', evaluate FORM.
4419 If the result is non-nil, use VALUE instead of SPEC. */
4420 form = Qt;
4421 if (CONSP (spec) && EQ (XCAR (spec), Qwhen))
4422 {
4423 spec = XCDR (spec);
4424 if (!CONSP (spec))
4425 return 0;
4426 form = XCAR (spec);
4427 spec = XCDR (spec);
4428 }
4429
4430 if (!NILP (form) && !EQ (form, Qt))
4431 {
4432 int count = SPECPDL_INDEX ();
4433 struct gcpro gcpro1;
4434
4435 /* Bind `object' to the object having the `display' property, a
4436 buffer or string. Bind `position' to the position in the
4437 object where the property was found, and `buffer-position'
4438 to the current position in the buffer. */
4439
4440 if (NILP (object))
4441 XSETBUFFER (object, current_buffer);
4442 specbind (Qobject, object);
4443 specbind (Qposition, make_number (CHARPOS (*position)));
4444 specbind (Qbuffer_position, make_number (bufpos));
4445 GCPRO1 (form);
4446 form = safe_eval (form);
4447 UNGCPRO;
4448 unbind_to (count, Qnil);
4449 }
4450
4451 if (NILP (form))
4452 return 0;
4453
4454 /* Handle `(height HEIGHT)' specifications. */
4455 if (CONSP (spec)
4456 && EQ (XCAR (spec), Qheight)
4457 && CONSP (XCDR (spec)))
4458 {
4459 if (it)
4460 {
4461 if (!FRAME_WINDOW_P (it->f))
4462 return 0;
4463
4464 it->font_height = XCAR (XCDR (spec));
4465 if (!NILP (it->font_height))
4466 {
4467 struct face *face = FACE_FROM_ID (it->f, it->face_id);
4468 int new_height = -1;
4469
4470 if (CONSP (it->font_height)
4471 && (EQ (XCAR (it->font_height), Qplus)
4472 || EQ (XCAR (it->font_height), Qminus))
4473 && CONSP (XCDR (it->font_height))
4474 && INTEGERP (XCAR (XCDR (it->font_height))))
4475 {
4476 /* `(+ N)' or `(- N)' where N is an integer. */
4477 int steps = XINT (XCAR (XCDR (it->font_height)));
4478 if (EQ (XCAR (it->font_height), Qplus))
4479 steps = - steps;
4480 it->face_id = smaller_face (it->f, it->face_id, steps);
4481 }
4482 else if (FUNCTIONP (it->font_height))
4483 {
4484 /* Call function with current height as argument.
4485 Value is the new height. */
4486 Lisp_Object height;
4487 height = safe_call1 (it->font_height,
4488 face->lface[LFACE_HEIGHT_INDEX]);
4489 if (NUMBERP (height))
4490 new_height = XFLOATINT (height);
4491 }
4492 else if (NUMBERP (it->font_height))
4493 {
4494 /* Value is a multiple of the canonical char height. */
4495 struct face *f;
4496
4497 f = FACE_FROM_ID (it->f,
4498 lookup_basic_face (it->f, DEFAULT_FACE_ID));
4499 new_height = (XFLOATINT (it->font_height)
4500 * XINT (f->lface[LFACE_HEIGHT_INDEX]));
4501 }
4502 else
4503 {
4504 /* Evaluate IT->font_height with `height' bound to the
4505 current specified height to get the new height. */
4506 int count = SPECPDL_INDEX ();
4507
4508 specbind (Qheight, face->lface[LFACE_HEIGHT_INDEX]);
4509 value = safe_eval (it->font_height);
4510 unbind_to (count, Qnil);
4511
4512 if (NUMBERP (value))
4513 new_height = XFLOATINT (value);
4514 }
4515
4516 if (new_height > 0)
4517 it->face_id = face_with_height (it->f, it->face_id, new_height);
4518 }
4519 }
4520
4521 return 0;
4522 }
4523
4524 /* Handle `(space-width WIDTH)'. */
4525 if (CONSP (spec)
4526 && EQ (XCAR (spec), Qspace_width)
4527 && CONSP (XCDR (spec)))
4528 {
4529 if (it)
4530 {
4531 if (!FRAME_WINDOW_P (it->f))
4532 return 0;
4533
4534 value = XCAR (XCDR (spec));
4535 if (NUMBERP (value) && XFLOATINT (value) > 0)
4536 it->space_width = value;
4537 }
4538
4539 return 0;
4540 }
4541
4542 /* Handle `(slice X Y WIDTH HEIGHT)'. */
4543 if (CONSP (spec)
4544 && EQ (XCAR (spec), Qslice))
4545 {
4546 Lisp_Object tem;
4547
4548 if (it)
4549 {
4550 if (!FRAME_WINDOW_P (it->f))
4551 return 0;
4552
4553 if (tem = XCDR (spec), CONSP (tem))
4554 {
4555 it->slice.x = XCAR (tem);
4556 if (tem = XCDR (tem), CONSP (tem))
4557 {
4558 it->slice.y = XCAR (tem);
4559 if (tem = XCDR (tem), CONSP (tem))
4560 {
4561 it->slice.width = XCAR (tem);
4562 if (tem = XCDR (tem), CONSP (tem))
4563 it->slice.height = XCAR (tem);
4564 }
4565 }
4566 }
4567 }
4568
4569 return 0;
4570 }
4571
4572 /* Handle `(raise FACTOR)'. */
4573 if (CONSP (spec)
4574 && EQ (XCAR (spec), Qraise)
4575 && CONSP (XCDR (spec)))
4576 {
4577 if (it)
4578 {
4579 if (!FRAME_WINDOW_P (it->f))
4580 return 0;
4581
4582 #ifdef HAVE_WINDOW_SYSTEM
4583 value = XCAR (XCDR (spec));
4584 if (NUMBERP (value))
4585 {
4586 struct face *face = FACE_FROM_ID (it->f, it->face_id);
4587 it->voffset = - (XFLOATINT (value)
4588 * (FONT_HEIGHT (face->font)));
4589 }
4590 #endif /* HAVE_WINDOW_SYSTEM */
4591 }
4592
4593 return 0;
4594 }
4595
4596 /* Don't handle the other kinds of display specifications
4597 inside a string that we got from a `display' property. */
4598 if (it && it->string_from_display_prop_p)
4599 return 0;
4600
4601 /* Characters having this form of property are not displayed, so
4602 we have to find the end of the property. */
4603 if (it)
4604 {
4605 start_pos = *position;
4606 *position = display_prop_end (it, object, start_pos);
4607 }
4608 value = Qnil;
4609
4610 /* Stop the scan at that end position--we assume that all
4611 text properties change there. */
4612 if (it)
4613 it->stop_charpos = position->charpos;
4614
4615 /* Handle `(left-fringe BITMAP [FACE])'
4616 and `(right-fringe BITMAP [FACE])'. */
4617 if (CONSP (spec)
4618 && (EQ (XCAR (spec), Qleft_fringe)
4619 || EQ (XCAR (spec), Qright_fringe))
4620 && CONSP (XCDR (spec)))
4621 {
4622 int fringe_bitmap;
4623
4624 if (it)
4625 {
4626 if (!FRAME_WINDOW_P (it->f))
4627 /* If we return here, POSITION has been advanced
4628 across the text with this property. */
4629 return 0;
4630 }
4631 else if (!frame_window_p)
4632 return 0;
4633
4634 #ifdef HAVE_WINDOW_SYSTEM
4635 value = XCAR (XCDR (spec));
4636 if (!SYMBOLP (value)
4637 || !(fringe_bitmap = lookup_fringe_bitmap (value)))
4638 /* If we return here, POSITION has been advanced
4639 across the text with this property. */
4640 return 0;
4641
4642 if (it)
4643 {
4644 int face_id = lookup_basic_face (it->f, DEFAULT_FACE_ID);;
4645
4646 if (CONSP (XCDR (XCDR (spec))))
4647 {
4648 Lisp_Object face_name = XCAR (XCDR (XCDR (spec)));
4649 int face_id2 = lookup_derived_face (it->f, face_name,
4650 FRINGE_FACE_ID, 0);
4651 if (face_id2 >= 0)
4652 face_id = face_id2;
4653 }
4654
4655 /* Save current settings of IT so that we can restore them
4656 when we are finished with the glyph property value. */
4657 push_it (it, position);
4658
4659 it->area = TEXT_AREA;
4660 it->what = IT_IMAGE;
4661 it->image_id = -1; /* no image */
4662 it->position = start_pos;
4663 it->object = NILP (object) ? it->w->buffer : object;
4664 it->method = GET_FROM_IMAGE;
4665 it->from_overlay = Qnil;
4666 it->face_id = face_id;
4667 it->from_disp_prop_p = 1;
4668
4669 /* Say that we haven't consumed the characters with
4670 `display' property yet. The call to pop_it in
4671 set_iterator_to_next will clean this up. */
4672 *position = start_pos;
4673
4674 if (EQ (XCAR (spec), Qleft_fringe))
4675 {
4676 it->left_user_fringe_bitmap = fringe_bitmap;
4677 it->left_user_fringe_face_id = face_id;
4678 }
4679 else
4680 {
4681 it->right_user_fringe_bitmap = fringe_bitmap;
4682 it->right_user_fringe_face_id = face_id;
4683 }
4684 }
4685 #endif /* HAVE_WINDOW_SYSTEM */
4686 return 1;
4687 }
4688
4689 /* Prepare to handle `((margin left-margin) ...)',
4690 `((margin right-margin) ...)' and `((margin nil) ...)'
4691 prefixes for display specifications. */
4692 location = Qunbound;
4693 if (CONSP (spec) && CONSP (XCAR (spec)))
4694 {
4695 Lisp_Object tem;
4696
4697 value = XCDR (spec);
4698 if (CONSP (value))
4699 value = XCAR (value);
4700
4701 tem = XCAR (spec);
4702 if (EQ (XCAR (tem), Qmargin)
4703 && (tem = XCDR (tem),
4704 tem = CONSP (tem) ? XCAR (tem) : Qnil,
4705 (NILP (tem)
4706 || EQ (tem, Qleft_margin)
4707 || EQ (tem, Qright_margin))))
4708 location = tem;
4709 }
4710
4711 if (EQ (location, Qunbound))
4712 {
4713 location = Qnil;
4714 value = spec;
4715 }
4716
4717 /* After this point, VALUE is the property after any
4718 margin prefix has been stripped. It must be a string,
4719 an image specification, or `(space ...)'.
4720
4721 LOCATION specifies where to display: `left-margin',
4722 `right-margin' or nil. */
4723
4724 valid_p = (STRINGP (value)
4725 #ifdef HAVE_WINDOW_SYSTEM
4726 || ((it ? FRAME_WINDOW_P (it->f) : frame_window_p)
4727 && valid_image_p (value))
4728 #endif /* not HAVE_WINDOW_SYSTEM */
4729 || (CONSP (value) && EQ (XCAR (value), Qspace)));
4730
4731 if (valid_p && !display_replaced_p)
4732 {
4733 int retval = 1;
4734
4735 if (!it)
4736 {
4737 /* Callers need to know whether the display spec is any kind
4738 of `(space ...)' spec that is about to affect text-area
4739 display. */
4740 if (CONSP (value) && EQ (XCAR (value), Qspace) && NILP (location))
4741 retval = 2;
4742 return retval;
4743 }
4744
4745 /* Save current settings of IT so that we can restore them
4746 when we are finished with the glyph property value. */
4747 push_it (it, position);
4748 it->from_overlay = overlay;
4749 it->from_disp_prop_p = 1;
4750
4751 if (NILP (location))
4752 it->area = TEXT_AREA;
4753 else if (EQ (location, Qleft_margin))
4754 it->area = LEFT_MARGIN_AREA;
4755 else
4756 it->area = RIGHT_MARGIN_AREA;
4757
4758 if (STRINGP (value))
4759 {
4760 it->string = value;
4761 it->multibyte_p = STRING_MULTIBYTE (it->string);
4762 it->current.overlay_string_index = -1;
4763 IT_STRING_CHARPOS (*it) = IT_STRING_BYTEPOS (*it) = 0;
4764 it->end_charpos = it->string_nchars = SCHARS (it->string);
4765 it->method = GET_FROM_STRING;
4766 it->stop_charpos = 0;
4767 it->prev_stop = 0;
4768 it->base_level_stop = 0;
4769 it->string_from_display_prop_p = 1;
4770 /* Say that we haven't consumed the characters with
4771 `display' property yet. The call to pop_it in
4772 set_iterator_to_next will clean this up. */
4773 if (BUFFERP (object))
4774 *position = start_pos;
4775
4776 /* Force paragraph direction to be that of the parent
4777 object. If the parent object's paragraph direction is
4778 not yet determined, default to L2R. */
4779 if (it->bidi_p && it->bidi_it.paragraph_dir == R2L)
4780 it->paragraph_embedding = it->bidi_it.paragraph_dir;
4781 else
4782 it->paragraph_embedding = L2R;
4783
4784 /* Set up the bidi iterator for this display string. */
4785 if (it->bidi_p)
4786 {
4787 it->bidi_it.string.lstring = it->string;
4788 it->bidi_it.string.s = NULL;
4789 it->bidi_it.string.schars = it->end_charpos;
4790 it->bidi_it.string.bufpos = bufpos;
4791 it->bidi_it.string.from_disp_str = 1;
4792 it->bidi_it.string.unibyte = !it->multibyte_p;
4793 bidi_init_it (0, 0, FRAME_WINDOW_P (it->f), &it->bidi_it);
4794 }
4795 }
4796 else if (CONSP (value) && EQ (XCAR (value), Qspace))
4797 {
4798 it->method = GET_FROM_STRETCH;
4799 it->object = value;
4800 *position = it->position = start_pos;
4801 retval = 1 + (it->area == TEXT_AREA);
4802 }
4803 #ifdef HAVE_WINDOW_SYSTEM
4804 else
4805 {
4806 it->what = IT_IMAGE;
4807 it->image_id = lookup_image (it->f, value);
4808 it->position = start_pos;
4809 it->object = NILP (object) ? it->w->buffer : object;
4810 it->method = GET_FROM_IMAGE;
4811
4812 /* Say that we haven't consumed the characters with
4813 `display' property yet. The call to pop_it in
4814 set_iterator_to_next will clean this up. */
4815 *position = start_pos;
4816 }
4817 #endif /* HAVE_WINDOW_SYSTEM */
4818
4819 return retval;
4820 }
4821
4822 /* Invalid property or property not supported. Restore
4823 POSITION to what it was before. */
4824 *position = start_pos;
4825 return 0;
4826 }
4827
4828 /* Check if PROP is a display property value whose text should be
4829 treated as intangible. OVERLAY is the overlay from which PROP
4830 came, or nil if it came from a text property. CHARPOS and BYTEPOS
4831 specify the buffer position covered by PROP. */
4832
4833 int
4834 display_prop_intangible_p (Lisp_Object prop, Lisp_Object overlay,
4835 EMACS_INT charpos, EMACS_INT bytepos)
4836 {
4837 int frame_window_p = FRAME_WINDOW_P (XFRAME (selected_frame));
4838 struct text_pos position;
4839
4840 SET_TEXT_POS (position, charpos, bytepos);
4841 return handle_display_spec (NULL, prop, Qnil, overlay,
4842 &position, charpos, frame_window_p);
4843 }
4844
4845
4846 /* Return 1 if PROP is a display sub-property value containing STRING.
4847
4848 Implementation note: this and the following function are really
4849 special cases of handle_display_spec and
4850 handle_single_display_spec, and should ideally use the same code.
4851 Until they do, these two pairs must be consistent and must be
4852 modified in sync. */
4853
4854 static int
4855 single_display_spec_string_p (Lisp_Object prop, Lisp_Object string)
4856 {
4857 if (EQ (string, prop))
4858 return 1;
4859
4860 /* Skip over `when FORM'. */
4861 if (CONSP (prop) && EQ (XCAR (prop), Qwhen))
4862 {
4863 prop = XCDR (prop);
4864 if (!CONSP (prop))
4865 return 0;
4866 /* Actually, the condition following `when' should be eval'ed,
4867 like handle_single_display_spec does, and we should return
4868 zero if it evaluates to nil. However, this function is
4869 called only when the buffer was already displayed and some
4870 glyph in the glyph matrix was found to come from a display
4871 string. Therefore, the condition was already evaluated, and
4872 the result was non-nil, otherwise the display string wouldn't
4873 have been displayed and we would have never been called for
4874 this property. Thus, we can skip the evaluation and assume
4875 its result is non-nil. */
4876 prop = XCDR (prop);
4877 }
4878
4879 if (CONSP (prop))
4880 /* Skip over `margin LOCATION'. */
4881 if (EQ (XCAR (prop), Qmargin))
4882 {
4883 prop = XCDR (prop);
4884 if (!CONSP (prop))
4885 return 0;
4886
4887 prop = XCDR (prop);
4888 if (!CONSP (prop))
4889 return 0;
4890 }
4891
4892 return EQ (prop, string) || (CONSP (prop) && EQ (XCAR (prop), string));
4893 }
4894
4895
4896 /* Return 1 if STRING appears in the `display' property PROP. */
4897
4898 static int
4899 display_prop_string_p (Lisp_Object prop, Lisp_Object string)
4900 {
4901 if (CONSP (prop)
4902 && !EQ (XCAR (prop), Qwhen)
4903 && !(CONSP (XCAR (prop)) && EQ (Qmargin, XCAR (XCAR (prop)))))
4904 {
4905 /* A list of sub-properties. */
4906 while (CONSP (prop))
4907 {
4908 if (single_display_spec_string_p (XCAR (prop), string))
4909 return 1;
4910 prop = XCDR (prop);
4911 }
4912 }
4913 else if (VECTORP (prop))
4914 {
4915 /* A vector of sub-properties. */
4916 int i;
4917 for (i = 0; i < ASIZE (prop); ++i)
4918 if (single_display_spec_string_p (AREF (prop, i), string))
4919 return 1;
4920 }
4921 else
4922 return single_display_spec_string_p (prop, string);
4923
4924 return 0;
4925 }
4926
4927 /* Look for STRING in overlays and text properties in the current
4928 buffer, between character positions FROM and TO (excluding TO).
4929 BACK_P non-zero means look back (in this case, TO is supposed to be
4930 less than FROM).
4931 Value is the first character position where STRING was found, or
4932 zero if it wasn't found before hitting TO.
4933
4934 This function may only use code that doesn't eval because it is
4935 called asynchronously from note_mouse_highlight. */
4936
4937 static EMACS_INT
4938 string_buffer_position_lim (Lisp_Object string,
4939 EMACS_INT from, EMACS_INT to, int back_p)
4940 {
4941 Lisp_Object limit, prop, pos;
4942 int found = 0;
4943
4944 pos = make_number (from);
4945
4946 if (!back_p) /* looking forward */
4947 {
4948 limit = make_number (min (to, ZV));
4949 while (!found && !EQ (pos, limit))
4950 {
4951 prop = Fget_char_property (pos, Qdisplay, Qnil);
4952 if (!NILP (prop) && display_prop_string_p (prop, string))
4953 found = 1;
4954 else
4955 pos = Fnext_single_char_property_change (pos, Qdisplay, Qnil,
4956 limit);
4957 }
4958 }
4959 else /* looking back */
4960 {
4961 limit = make_number (max (to, BEGV));
4962 while (!found && !EQ (pos, limit))
4963 {
4964 prop = Fget_char_property (pos, Qdisplay, Qnil);
4965 if (!NILP (prop) && display_prop_string_p (prop, string))
4966 found = 1;
4967 else
4968 pos = Fprevious_single_char_property_change (pos, Qdisplay, Qnil,
4969 limit);
4970 }
4971 }
4972
4973 return found ? XINT (pos) : 0;
4974 }
4975
4976 /* Determine which buffer position in current buffer STRING comes from.
4977 AROUND_CHARPOS is an approximate position where it could come from.
4978 Value is the buffer position or 0 if it couldn't be determined.
4979
4980 This function is necessary because we don't record buffer positions
4981 in glyphs generated from strings (to keep struct glyph small).
4982 This function may only use code that doesn't eval because it is
4983 called asynchronously from note_mouse_highlight. */
4984
4985 static EMACS_INT
4986 string_buffer_position (Lisp_Object string, EMACS_INT around_charpos)
4987 {
4988 const int MAX_DISTANCE = 1000;
4989 EMACS_INT found = string_buffer_position_lim (string, around_charpos,
4990 around_charpos + MAX_DISTANCE,
4991 0);
4992
4993 if (!found)
4994 found = string_buffer_position_lim (string, around_charpos,
4995 around_charpos - MAX_DISTANCE, 1);
4996 return found;
4997 }
4998
4999
5000 \f
5001 /***********************************************************************
5002 `composition' property
5003 ***********************************************************************/
5004
5005 /* Set up iterator IT from `composition' property at its current
5006 position. Called from handle_stop. */
5007
5008 static enum prop_handled
5009 handle_composition_prop (struct it *it)
5010 {
5011 Lisp_Object prop, string;
5012 EMACS_INT pos, pos_byte, start, end;
5013
5014 if (STRINGP (it->string))
5015 {
5016 unsigned char *s;
5017
5018 pos = IT_STRING_CHARPOS (*it);
5019 pos_byte = IT_STRING_BYTEPOS (*it);
5020 string = it->string;
5021 s = SDATA (string) + pos_byte;
5022 it->c = STRING_CHAR (s);
5023 }
5024 else
5025 {
5026 pos = IT_CHARPOS (*it);
5027 pos_byte = IT_BYTEPOS (*it);
5028 string = Qnil;
5029 it->c = FETCH_CHAR (pos_byte);
5030 }
5031
5032 /* If there's a valid composition and point is not inside of the
5033 composition (in the case that the composition is from the current
5034 buffer), draw a glyph composed from the composition components. */
5035 if (find_composition (pos, -1, &start, &end, &prop, string)
5036 && COMPOSITION_VALID_P (start, end, prop)
5037 && (STRINGP (it->string) || (PT <= start || PT >= end)))
5038 {
5039 if (start < pos)
5040 /* As we can't handle this situation (perhaps font-lock added
5041 a new composition), we just return here hoping that next
5042 redisplay will detect this composition much earlier. */
5043 return HANDLED_NORMALLY;
5044 if (start != pos)
5045 {
5046 if (STRINGP (it->string))
5047 pos_byte = string_char_to_byte (it->string, start);
5048 else
5049 pos_byte = CHAR_TO_BYTE (start);
5050 }
5051 it->cmp_it.id = get_composition_id (start, pos_byte, end - start,
5052 prop, string);
5053
5054 if (it->cmp_it.id >= 0)
5055 {
5056 it->cmp_it.ch = -1;
5057 it->cmp_it.nchars = COMPOSITION_LENGTH (prop);
5058 it->cmp_it.nglyphs = -1;
5059 }
5060 }
5061
5062 return HANDLED_NORMALLY;
5063 }
5064
5065
5066 \f
5067 /***********************************************************************
5068 Overlay strings
5069 ***********************************************************************/
5070
5071 /* The following structure is used to record overlay strings for
5072 later sorting in load_overlay_strings. */
5073
5074 struct overlay_entry
5075 {
5076 Lisp_Object overlay;
5077 Lisp_Object string;
5078 int priority;
5079 int after_string_p;
5080 };
5081
5082
5083 /* Set up iterator IT from overlay strings at its current position.
5084 Called from handle_stop. */
5085
5086 static enum prop_handled
5087 handle_overlay_change (struct it *it)
5088 {
5089 if (!STRINGP (it->string) && get_overlay_strings (it, 0))
5090 return HANDLED_RECOMPUTE_PROPS;
5091 else
5092 return HANDLED_NORMALLY;
5093 }
5094
5095
5096 /* Set up the next overlay string for delivery by IT, if there is an
5097 overlay string to deliver. Called by set_iterator_to_next when the
5098 end of the current overlay string is reached. If there are more
5099 overlay strings to display, IT->string and
5100 IT->current.overlay_string_index are set appropriately here.
5101 Otherwise IT->string is set to nil. */
5102
5103 static void
5104 next_overlay_string (struct it *it)
5105 {
5106 ++it->current.overlay_string_index;
5107 if (it->current.overlay_string_index == it->n_overlay_strings)
5108 {
5109 /* No more overlay strings. Restore IT's settings to what
5110 they were before overlay strings were processed, and
5111 continue to deliver from current_buffer. */
5112
5113 it->ellipsis_p = (it->stack[it->sp - 1].display_ellipsis_p != 0);
5114 pop_it (it);
5115 xassert (it->sp > 0
5116 || (NILP (it->string)
5117 && it->method == GET_FROM_BUFFER
5118 && it->stop_charpos >= BEGV
5119 && it->stop_charpos <= it->end_charpos));
5120 it->current.overlay_string_index = -1;
5121 it->n_overlay_strings = 0;
5122 it->overlay_strings_charpos = -1;
5123
5124 /* If we're at the end of the buffer, record that we have
5125 processed the overlay strings there already, so that
5126 next_element_from_buffer doesn't try it again. */
5127 if (NILP (it->string) && IT_CHARPOS (*it) >= it->end_charpos)
5128 it->overlay_strings_at_end_processed_p = 1;
5129 }
5130 else
5131 {
5132 /* There are more overlay strings to process. If
5133 IT->current.overlay_string_index has advanced to a position
5134 where we must load IT->overlay_strings with more strings, do
5135 it. We must load at the IT->overlay_strings_charpos where
5136 IT->n_overlay_strings was originally computed; when invisible
5137 text is present, this might not be IT_CHARPOS (Bug#7016). */
5138 int i = it->current.overlay_string_index % OVERLAY_STRING_CHUNK_SIZE;
5139
5140 if (it->current.overlay_string_index && i == 0)
5141 load_overlay_strings (it, it->overlay_strings_charpos);
5142
5143 /* Initialize IT to deliver display elements from the overlay
5144 string. */
5145 it->string = it->overlay_strings[i];
5146 it->multibyte_p = STRING_MULTIBYTE (it->string);
5147 SET_TEXT_POS (it->current.string_pos, 0, 0);
5148 it->method = GET_FROM_STRING;
5149 it->stop_charpos = 0;
5150 if (it->cmp_it.stop_pos >= 0)
5151 it->cmp_it.stop_pos = 0;
5152 it->prev_stop = 0;
5153 it->base_level_stop = 0;
5154
5155 /* Set up the bidi iterator for this overlay string. */
5156 if (it->bidi_p)
5157 {
5158 it->bidi_it.string.lstring = it->string;
5159 it->bidi_it.string.s = NULL;
5160 it->bidi_it.string.schars = SCHARS (it->string);
5161 it->bidi_it.string.bufpos = it->overlay_strings_charpos;
5162 it->bidi_it.string.from_disp_str = it->string_from_display_prop_p;
5163 it->bidi_it.string.unibyte = !it->multibyte_p;
5164 bidi_init_it (0, 0, FRAME_WINDOW_P (it->f), &it->bidi_it);
5165 }
5166 }
5167
5168 CHECK_IT (it);
5169 }
5170
5171
5172 /* Compare two overlay_entry structures E1 and E2. Used as a
5173 comparison function for qsort in load_overlay_strings. Overlay
5174 strings for the same position are sorted so that
5175
5176 1. All after-strings come in front of before-strings, except
5177 when they come from the same overlay.
5178
5179 2. Within after-strings, strings are sorted so that overlay strings
5180 from overlays with higher priorities come first.
5181
5182 2. Within before-strings, strings are sorted so that overlay
5183 strings from overlays with higher priorities come last.
5184
5185 Value is analogous to strcmp. */
5186
5187
5188 static int
5189 compare_overlay_entries (const void *e1, const void *e2)
5190 {
5191 struct overlay_entry *entry1 = (struct overlay_entry *) e1;
5192 struct overlay_entry *entry2 = (struct overlay_entry *) e2;
5193 int result;
5194
5195 if (entry1->after_string_p != entry2->after_string_p)
5196 {
5197 /* Let after-strings appear in front of before-strings if
5198 they come from different overlays. */
5199 if (EQ (entry1->overlay, entry2->overlay))
5200 result = entry1->after_string_p ? 1 : -1;
5201 else
5202 result = entry1->after_string_p ? -1 : 1;
5203 }
5204 else if (entry1->after_string_p)
5205 /* After-strings sorted in order of decreasing priority. */
5206 result = entry2->priority - entry1->priority;
5207 else
5208 /* Before-strings sorted in order of increasing priority. */
5209 result = entry1->priority - entry2->priority;
5210
5211 return result;
5212 }
5213
5214
5215 /* Load the vector IT->overlay_strings with overlay strings from IT's
5216 current buffer position, or from CHARPOS if that is > 0. Set
5217 IT->n_overlays to the total number of overlay strings found.
5218
5219 Overlay strings are processed OVERLAY_STRING_CHUNK_SIZE strings at
5220 a time. On entry into load_overlay_strings,
5221 IT->current.overlay_string_index gives the number of overlay
5222 strings that have already been loaded by previous calls to this
5223 function.
5224
5225 IT->add_overlay_start contains an additional overlay start
5226 position to consider for taking overlay strings from, if non-zero.
5227 This position comes into play when the overlay has an `invisible'
5228 property, and both before and after-strings. When we've skipped to
5229 the end of the overlay, because of its `invisible' property, we
5230 nevertheless want its before-string to appear.
5231 IT->add_overlay_start will contain the overlay start position
5232 in this case.
5233
5234 Overlay strings are sorted so that after-string strings come in
5235 front of before-string strings. Within before and after-strings,
5236 strings are sorted by overlay priority. See also function
5237 compare_overlay_entries. */
5238
5239 static void
5240 load_overlay_strings (struct it *it, EMACS_INT charpos)
5241 {
5242 Lisp_Object overlay, window, str, invisible;
5243 struct Lisp_Overlay *ov;
5244 EMACS_INT start, end;
5245 int size = 20;
5246 int n = 0, i, j, invis_p;
5247 struct overlay_entry *entries
5248 = (struct overlay_entry *) alloca (size * sizeof *entries);
5249
5250 if (charpos <= 0)
5251 charpos = IT_CHARPOS (*it);
5252
5253 /* Append the overlay string STRING of overlay OVERLAY to vector
5254 `entries' which has size `size' and currently contains `n'
5255 elements. AFTER_P non-zero means STRING is an after-string of
5256 OVERLAY. */
5257 #define RECORD_OVERLAY_STRING(OVERLAY, STRING, AFTER_P) \
5258 do \
5259 { \
5260 Lisp_Object priority; \
5261 \
5262 if (n == size) \
5263 { \
5264 int new_size = 2 * size; \
5265 struct overlay_entry *old = entries; \
5266 entries = \
5267 (struct overlay_entry *) alloca (new_size \
5268 * sizeof *entries); \
5269 memcpy (entries, old, size * sizeof *entries); \
5270 size = new_size; \
5271 } \
5272 \
5273 entries[n].string = (STRING); \
5274 entries[n].overlay = (OVERLAY); \
5275 priority = Foverlay_get ((OVERLAY), Qpriority); \
5276 entries[n].priority = INTEGERP (priority) ? XINT (priority) : 0; \
5277 entries[n].after_string_p = (AFTER_P); \
5278 ++n; \
5279 } \
5280 while (0)
5281
5282 /* Process overlay before the overlay center. */
5283 for (ov = current_buffer->overlays_before; ov; ov = ov->next)
5284 {
5285 XSETMISC (overlay, ov);
5286 xassert (OVERLAYP (overlay));
5287 start = OVERLAY_POSITION (OVERLAY_START (overlay));
5288 end = OVERLAY_POSITION (OVERLAY_END (overlay));
5289
5290 if (end < charpos)
5291 break;
5292
5293 /* Skip this overlay if it doesn't start or end at IT's current
5294 position. */
5295 if (end != charpos && start != charpos)
5296 continue;
5297
5298 /* Skip this overlay if it doesn't apply to IT->w. */
5299 window = Foverlay_get (overlay, Qwindow);
5300 if (WINDOWP (window) && XWINDOW (window) != it->w)
5301 continue;
5302
5303 /* If the text ``under'' the overlay is invisible, both before-
5304 and after-strings from this overlay are visible; start and
5305 end position are indistinguishable. */
5306 invisible = Foverlay_get (overlay, Qinvisible);
5307 invis_p = TEXT_PROP_MEANS_INVISIBLE (invisible);
5308
5309 /* If overlay has a non-empty before-string, record it. */
5310 if ((start == charpos || (end == charpos && invis_p))
5311 && (str = Foverlay_get (overlay, Qbefore_string), STRINGP (str))
5312 && SCHARS (str))
5313 RECORD_OVERLAY_STRING (overlay, str, 0);
5314
5315 /* If overlay has a non-empty after-string, record it. */
5316 if ((end == charpos || (start == charpos && invis_p))
5317 && (str = Foverlay_get (overlay, Qafter_string), STRINGP (str))
5318 && SCHARS (str))
5319 RECORD_OVERLAY_STRING (overlay, str, 1);
5320 }
5321
5322 /* Process overlays after the overlay center. */
5323 for (ov = current_buffer->overlays_after; ov; ov = ov->next)
5324 {
5325 XSETMISC (overlay, ov);
5326 xassert (OVERLAYP (overlay));
5327 start = OVERLAY_POSITION (OVERLAY_START (overlay));
5328 end = OVERLAY_POSITION (OVERLAY_END (overlay));
5329
5330 if (start > charpos)
5331 break;
5332
5333 /* Skip this overlay if it doesn't start or end at IT's current
5334 position. */
5335 if (end != charpos && start != charpos)
5336 continue;
5337
5338 /* Skip this overlay if it doesn't apply to IT->w. */
5339 window = Foverlay_get (overlay, Qwindow);
5340 if (WINDOWP (window) && XWINDOW (window) != it->w)
5341 continue;
5342
5343 /* If the text ``under'' the overlay is invisible, it has a zero
5344 dimension, and both before- and after-strings apply. */
5345 invisible = Foverlay_get (overlay, Qinvisible);
5346 invis_p = TEXT_PROP_MEANS_INVISIBLE (invisible);
5347
5348 /* If overlay has a non-empty before-string, record it. */
5349 if ((start == charpos || (end == charpos && invis_p))
5350 && (str = Foverlay_get (overlay, Qbefore_string), STRINGP (str))
5351 && SCHARS (str))
5352 RECORD_OVERLAY_STRING (overlay, str, 0);
5353
5354 /* If overlay has a non-empty after-string, record it. */
5355 if ((end == charpos || (start == charpos && invis_p))
5356 && (str = Foverlay_get (overlay, Qafter_string), STRINGP (str))
5357 && SCHARS (str))
5358 RECORD_OVERLAY_STRING (overlay, str, 1);
5359 }
5360
5361 #undef RECORD_OVERLAY_STRING
5362
5363 /* Sort entries. */
5364 if (n > 1)
5365 qsort (entries, n, sizeof *entries, compare_overlay_entries);
5366
5367 /* Record number of overlay strings, and where we computed it. */
5368 it->n_overlay_strings = n;
5369 it->overlay_strings_charpos = charpos;
5370
5371 /* IT->current.overlay_string_index is the number of overlay strings
5372 that have already been consumed by IT. Copy some of the
5373 remaining overlay strings to IT->overlay_strings. */
5374 i = 0;
5375 j = it->current.overlay_string_index;
5376 while (i < OVERLAY_STRING_CHUNK_SIZE && j < n)
5377 {
5378 it->overlay_strings[i] = entries[j].string;
5379 it->string_overlays[i++] = entries[j++].overlay;
5380 }
5381
5382 CHECK_IT (it);
5383 }
5384
5385
5386 /* Get the first chunk of overlay strings at IT's current buffer
5387 position, or at CHARPOS if that is > 0. Value is non-zero if at
5388 least one overlay string was found. */
5389
5390 static int
5391 get_overlay_strings_1 (struct it *it, EMACS_INT charpos, int compute_stop_p)
5392 {
5393 /* Get the first OVERLAY_STRING_CHUNK_SIZE overlay strings to
5394 process. This fills IT->overlay_strings with strings, and sets
5395 IT->n_overlay_strings to the total number of strings to process.
5396 IT->pos.overlay_string_index has to be set temporarily to zero
5397 because load_overlay_strings needs this; it must be set to -1
5398 when no overlay strings are found because a zero value would
5399 indicate a position in the first overlay string. */
5400 it->current.overlay_string_index = 0;
5401 load_overlay_strings (it, charpos);
5402
5403 /* If we found overlay strings, set up IT to deliver display
5404 elements from the first one. Otherwise set up IT to deliver
5405 from current_buffer. */
5406 if (it->n_overlay_strings)
5407 {
5408 /* Make sure we know settings in current_buffer, so that we can
5409 restore meaningful values when we're done with the overlay
5410 strings. */
5411 if (compute_stop_p)
5412 compute_stop_pos (it);
5413 xassert (it->face_id >= 0);
5414
5415 /* Save IT's settings. They are restored after all overlay
5416 strings have been processed. */
5417 xassert (!compute_stop_p || it->sp == 0);
5418
5419 /* When called from handle_stop, there might be an empty display
5420 string loaded. In that case, don't bother saving it. */
5421 if (!STRINGP (it->string) || SCHARS (it->string))
5422 push_it (it, NULL);
5423
5424 /* Set up IT to deliver display elements from the first overlay
5425 string. */
5426 IT_STRING_CHARPOS (*it) = IT_STRING_BYTEPOS (*it) = 0;
5427 it->string = it->overlay_strings[0];
5428 it->from_overlay = Qnil;
5429 it->stop_charpos = 0;
5430 xassert (STRINGP (it->string));
5431 it->end_charpos = SCHARS (it->string);
5432 it->prev_stop = 0;
5433 it->base_level_stop = 0;
5434 it->multibyte_p = STRING_MULTIBYTE (it->string);
5435 it->method = GET_FROM_STRING;
5436 it->from_disp_prop_p = 0;
5437
5438 /* Force paragraph direction to be that of the parent
5439 buffer. */
5440 if (it->bidi_p && it->bidi_it.paragraph_dir == R2L)
5441 it->paragraph_embedding = it->bidi_it.paragraph_dir;
5442 else
5443 it->paragraph_embedding = L2R;
5444
5445 /* Set up the bidi iterator for this overlay string. */
5446 if (it->bidi_p)
5447 {
5448 EMACS_INT pos = (charpos > 0 ? charpos : IT_CHARPOS (*it));
5449
5450 it->bidi_it.string.lstring = it->string;
5451 it->bidi_it.string.s = NULL;
5452 it->bidi_it.string.schars = SCHARS (it->string);
5453 it->bidi_it.string.bufpos = pos;
5454 it->bidi_it.string.from_disp_str = it->string_from_display_prop_p;
5455 it->bidi_it.string.unibyte = !it->multibyte_p;
5456 bidi_init_it (0, 0, FRAME_WINDOW_P (it->f), &it->bidi_it);
5457 }
5458 return 1;
5459 }
5460
5461 it->current.overlay_string_index = -1;
5462 return 0;
5463 }
5464
5465 static int
5466 get_overlay_strings (struct it *it, EMACS_INT charpos)
5467 {
5468 it->string = Qnil;
5469 it->method = GET_FROM_BUFFER;
5470
5471 (void) get_overlay_strings_1 (it, charpos, 1);
5472
5473 CHECK_IT (it);
5474
5475 /* Value is non-zero if we found at least one overlay string. */
5476 return STRINGP (it->string);
5477 }
5478
5479
5480 \f
5481 /***********************************************************************
5482 Saving and restoring state
5483 ***********************************************************************/
5484
5485 /* Save current settings of IT on IT->stack. Called, for example,
5486 before setting up IT for an overlay string, to be able to restore
5487 IT's settings to what they were after the overlay string has been
5488 processed. If POSITION is non-NULL, it is the position to save on
5489 the stack instead of IT->position. */
5490
5491 static void
5492 push_it (struct it *it, struct text_pos *position)
5493 {
5494 struct iterator_stack_entry *p;
5495
5496 xassert (it->sp < IT_STACK_SIZE);
5497 p = it->stack + it->sp;
5498
5499 p->stop_charpos = it->stop_charpos;
5500 p->prev_stop = it->prev_stop;
5501 p->base_level_stop = it->base_level_stop;
5502 p->cmp_it = it->cmp_it;
5503 xassert (it->face_id >= 0);
5504 p->face_id = it->face_id;
5505 p->string = it->string;
5506 p->method = it->method;
5507 p->from_overlay = it->from_overlay;
5508 switch (p->method)
5509 {
5510 case GET_FROM_IMAGE:
5511 p->u.image.object = it->object;
5512 p->u.image.image_id = it->image_id;
5513 p->u.image.slice = it->slice;
5514 break;
5515 case GET_FROM_STRETCH:
5516 p->u.stretch.object = it->object;
5517 break;
5518 }
5519 p->position = position ? *position : it->position;
5520 p->current = it->current;
5521 p->end_charpos = it->end_charpos;
5522 p->string_nchars = it->string_nchars;
5523 p->area = it->area;
5524 p->multibyte_p = it->multibyte_p;
5525 p->avoid_cursor_p = it->avoid_cursor_p;
5526 p->space_width = it->space_width;
5527 p->font_height = it->font_height;
5528 p->voffset = it->voffset;
5529 p->string_from_display_prop_p = it->string_from_display_prop_p;
5530 p->display_ellipsis_p = 0;
5531 p->line_wrap = it->line_wrap;
5532 p->bidi_p = it->bidi_p;
5533 p->paragraph_embedding = it->paragraph_embedding;
5534 p->from_disp_prop_p = it->from_disp_prop_p;
5535 ++it->sp;
5536
5537 /* Save the state of the bidi iterator as well. */
5538 if (it->bidi_p)
5539 bidi_push_it (&it->bidi_it);
5540 }
5541
5542 static void
5543 iterate_out_of_display_property (struct it *it)
5544 {
5545 int buffer_p = BUFFERP (it->object);
5546 EMACS_INT eob = (buffer_p ? ZV : it->end_charpos);
5547 EMACS_INT bob = (buffer_p ? BEGV : 0);
5548
5549 xassert (eob >= CHARPOS (it->position) && CHARPOS (it->position) >= bob);
5550
5551 /* Maybe initialize paragraph direction. If we are at the beginning
5552 of a new paragraph, next_element_from_buffer may not have a
5553 chance to do that. */
5554 if (it->bidi_it.first_elt && it->bidi_it.charpos < eob)
5555 bidi_paragraph_init (it->paragraph_embedding, &it->bidi_it, 1);
5556 /* prev_stop can be zero, so check against BEGV as well. */
5557 while (it->bidi_it.charpos >= bob
5558 && it->prev_stop <= it->bidi_it.charpos
5559 && it->bidi_it.charpos < CHARPOS (it->position)
5560 && it->bidi_it.charpos < eob)
5561 bidi_move_to_visually_next (&it->bidi_it);
5562 /* Record the stop_pos we just crossed, for when we cross it
5563 back, maybe. */
5564 if (it->bidi_it.charpos > CHARPOS (it->position))
5565 it->prev_stop = CHARPOS (it->position);
5566 /* If we ended up not where pop_it put us, resync IT's
5567 positional members with the bidi iterator. */
5568 if (it->bidi_it.charpos != CHARPOS (it->position))
5569 SET_TEXT_POS (it->position, it->bidi_it.charpos, it->bidi_it.bytepos);
5570 if (buffer_p)
5571 it->current.pos = it->position;
5572 else
5573 it->current.string_pos = it->position;
5574 }
5575
5576 /* Restore IT's settings from IT->stack. Called, for example, when no
5577 more overlay strings must be processed, and we return to delivering
5578 display elements from a buffer, or when the end of a string from a
5579 `display' property is reached and we return to delivering display
5580 elements from an overlay string, or from a buffer. */
5581
5582 static void
5583 pop_it (struct it *it)
5584 {
5585 struct iterator_stack_entry *p;
5586 int from_display_prop = it->from_disp_prop_p;
5587
5588 xassert (it->sp > 0);
5589 --it->sp;
5590 p = it->stack + it->sp;
5591 it->stop_charpos = p->stop_charpos;
5592 it->prev_stop = p->prev_stop;
5593 it->base_level_stop = p->base_level_stop;
5594 it->cmp_it = p->cmp_it;
5595 it->face_id = p->face_id;
5596 it->current = p->current;
5597 it->position = p->position;
5598 it->string = p->string;
5599 it->from_overlay = p->from_overlay;
5600 if (NILP (it->string))
5601 SET_TEXT_POS (it->current.string_pos, -1, -1);
5602 it->method = p->method;
5603 switch (it->method)
5604 {
5605 case GET_FROM_IMAGE:
5606 it->image_id = p->u.image.image_id;
5607 it->object = p->u.image.object;
5608 it->slice = p->u.image.slice;
5609 break;
5610 case GET_FROM_STRETCH:
5611 it->object = p->u.stretch.object;
5612 break;
5613 case GET_FROM_BUFFER:
5614 it->object = it->w->buffer;
5615 break;
5616 case GET_FROM_STRING:
5617 it->object = it->string;
5618 break;
5619 case GET_FROM_DISPLAY_VECTOR:
5620 if (it->s)
5621 it->method = GET_FROM_C_STRING;
5622 else if (STRINGP (it->string))
5623 it->method = GET_FROM_STRING;
5624 else
5625 {
5626 it->method = GET_FROM_BUFFER;
5627 it->object = it->w->buffer;
5628 }
5629 }
5630 it->end_charpos = p->end_charpos;
5631 it->string_nchars = p->string_nchars;
5632 it->area = p->area;
5633 it->multibyte_p = p->multibyte_p;
5634 it->avoid_cursor_p = p->avoid_cursor_p;
5635 it->space_width = p->space_width;
5636 it->font_height = p->font_height;
5637 it->voffset = p->voffset;
5638 it->string_from_display_prop_p = p->string_from_display_prop_p;
5639 it->line_wrap = p->line_wrap;
5640 it->bidi_p = p->bidi_p;
5641 it->paragraph_embedding = p->paragraph_embedding;
5642 it->from_disp_prop_p = p->from_disp_prop_p;
5643 if (it->bidi_p)
5644 {
5645 bidi_pop_it (&it->bidi_it);
5646 /* Bidi-iterate until we get out of the portion of text, if any,
5647 covered by a `display' text property or by an overlay with
5648 `display' property. (We cannot just jump there, because the
5649 internal coherency of the bidi iterator state can not be
5650 preserved across such jumps.) We also must determine the
5651 paragraph base direction if the overlay we just processed is
5652 at the beginning of a new paragraph. */
5653 if (from_display_prop
5654 && (it->method == GET_FROM_BUFFER || it->method == GET_FROM_STRING))
5655 iterate_out_of_display_property (it);
5656
5657 xassert ((BUFFERP (it->object)
5658 && IT_CHARPOS (*it) == it->bidi_it.charpos
5659 && IT_BYTEPOS (*it) == it->bidi_it.bytepos)
5660 || (STRINGP (it->object)
5661 && IT_STRING_CHARPOS (*it) == it->bidi_it.charpos
5662 && IT_STRING_BYTEPOS (*it) == it->bidi_it.bytepos)
5663 || (CONSP (it->object) && it->method == GET_FROM_STRETCH));
5664 }
5665 }
5666
5667
5668 \f
5669 /***********************************************************************
5670 Moving over lines
5671 ***********************************************************************/
5672
5673 /* Set IT's current position to the previous line start. */
5674
5675 static void
5676 back_to_previous_line_start (struct it *it)
5677 {
5678 IT_CHARPOS (*it) = find_next_newline_no_quit (IT_CHARPOS (*it) - 1, -1);
5679 IT_BYTEPOS (*it) = CHAR_TO_BYTE (IT_CHARPOS (*it));
5680 }
5681
5682
5683 /* Move IT to the next line start.
5684
5685 Value is non-zero if a newline was found. Set *SKIPPED_P to 1 if
5686 we skipped over part of the text (as opposed to moving the iterator
5687 continuously over the text). Otherwise, don't change the value
5688 of *SKIPPED_P.
5689
5690 If BIDI_IT_PREV is non-NULL, store into it the state of the bidi
5691 iterator on the newline, if it was found.
5692
5693 Newlines may come from buffer text, overlay strings, or strings
5694 displayed via the `display' property. That's the reason we can't
5695 simply use find_next_newline_no_quit.
5696
5697 Note that this function may not skip over invisible text that is so
5698 because of text properties and immediately follows a newline. If
5699 it would, function reseat_at_next_visible_line_start, when called
5700 from set_iterator_to_next, would effectively make invisible
5701 characters following a newline part of the wrong glyph row, which
5702 leads to wrong cursor motion. */
5703
5704 static int
5705 forward_to_next_line_start (struct it *it, int *skipped_p,
5706 struct bidi_it *bidi_it_prev)
5707 {
5708 EMACS_INT old_selective;
5709 int newline_found_p, n;
5710 const int MAX_NEWLINE_DISTANCE = 500;
5711
5712 /* If already on a newline, just consume it to avoid unintended
5713 skipping over invisible text below. */
5714 if (it->what == IT_CHARACTER
5715 && it->c == '\n'
5716 && CHARPOS (it->position) == IT_CHARPOS (*it))
5717 {
5718 if (it->bidi_p && bidi_it_prev)
5719 *bidi_it_prev = it->bidi_it;
5720 set_iterator_to_next (it, 0);
5721 it->c = 0;
5722 return 1;
5723 }
5724
5725 /* Don't handle selective display in the following. It's (a)
5726 unnecessary because it's done by the caller, and (b) leads to an
5727 infinite recursion because next_element_from_ellipsis indirectly
5728 calls this function. */
5729 old_selective = it->selective;
5730 it->selective = 0;
5731
5732 /* Scan for a newline within MAX_NEWLINE_DISTANCE display elements
5733 from buffer text. */
5734 for (n = newline_found_p = 0;
5735 !newline_found_p && n < MAX_NEWLINE_DISTANCE;
5736 n += STRINGP (it->string) ? 0 : 1)
5737 {
5738 if (!get_next_display_element (it))
5739 return 0;
5740 newline_found_p = it->what == IT_CHARACTER && it->c == '\n';
5741 if (newline_found_p && it->bidi_p && bidi_it_prev)
5742 *bidi_it_prev = it->bidi_it;
5743 set_iterator_to_next (it, 0);
5744 }
5745
5746 /* If we didn't find a newline near enough, see if we can use a
5747 short-cut. */
5748 if (!newline_found_p)
5749 {
5750 EMACS_INT start = IT_CHARPOS (*it);
5751 EMACS_INT limit = find_next_newline_no_quit (start, 1);
5752 Lisp_Object pos;
5753
5754 xassert (!STRINGP (it->string));
5755
5756 /* If there isn't any `display' property in sight, and no
5757 overlays, we can just use the position of the newline in
5758 buffer text. */
5759 if (it->stop_charpos >= limit
5760 || ((pos = Fnext_single_property_change (make_number (start),
5761 Qdisplay, Qnil,
5762 make_number (limit)),
5763 NILP (pos))
5764 && next_overlay_change (start) == ZV))
5765 {
5766 if (!it->bidi_p)
5767 {
5768 IT_CHARPOS (*it) = limit;
5769 IT_BYTEPOS (*it) = CHAR_TO_BYTE (limit);
5770 }
5771 else
5772 {
5773 struct bidi_it bprev;
5774
5775 /* Help bidi.c avoid expensive searches for display
5776 properties and overlays, by telling it that there are
5777 none up to `limit'. */
5778 if (it->bidi_it.disp_pos < limit)
5779 {
5780 it->bidi_it.disp_pos = limit;
5781 it->bidi_it.disp_prop = 0;
5782 }
5783 do {
5784 bprev = it->bidi_it;
5785 bidi_move_to_visually_next (&it->bidi_it);
5786 } while (it->bidi_it.charpos != limit);
5787 IT_CHARPOS (*it) = limit;
5788 IT_BYTEPOS (*it) = it->bidi_it.bytepos;
5789 if (bidi_it_prev)
5790 *bidi_it_prev = bprev;
5791 }
5792 *skipped_p = newline_found_p = 1;
5793 }
5794 else
5795 {
5796 while (get_next_display_element (it)
5797 && !newline_found_p)
5798 {
5799 newline_found_p = ITERATOR_AT_END_OF_LINE_P (it);
5800 if (newline_found_p && it->bidi_p && bidi_it_prev)
5801 *bidi_it_prev = it->bidi_it;
5802 set_iterator_to_next (it, 0);
5803 }
5804 }
5805 }
5806
5807 it->selective = old_selective;
5808 return newline_found_p;
5809 }
5810
5811
5812 /* Set IT's current position to the previous visible line start. Skip
5813 invisible text that is so either due to text properties or due to
5814 selective display. Caution: this does not change IT->current_x and
5815 IT->hpos. */
5816
5817 static void
5818 back_to_previous_visible_line_start (struct it *it)
5819 {
5820 while (IT_CHARPOS (*it) > BEGV)
5821 {
5822 back_to_previous_line_start (it);
5823
5824 if (IT_CHARPOS (*it) <= BEGV)
5825 break;
5826
5827 /* If selective > 0, then lines indented more than its value are
5828 invisible. */
5829 if (it->selective > 0
5830 && indented_beyond_p (IT_CHARPOS (*it), IT_BYTEPOS (*it),
5831 it->selective))
5832 continue;
5833
5834 /* Check the newline before point for invisibility. */
5835 {
5836 Lisp_Object prop;
5837 prop = Fget_char_property (make_number (IT_CHARPOS (*it) - 1),
5838 Qinvisible, it->window);
5839 if (TEXT_PROP_MEANS_INVISIBLE (prop))
5840 continue;
5841 }
5842
5843 if (IT_CHARPOS (*it) <= BEGV)
5844 break;
5845
5846 {
5847 struct it it2;
5848 void *it2data = NULL;
5849 EMACS_INT pos;
5850 EMACS_INT beg, end;
5851 Lisp_Object val, overlay;
5852
5853 SAVE_IT (it2, *it, it2data);
5854
5855 /* If newline is part of a composition, continue from start of composition */
5856 if (find_composition (IT_CHARPOS (*it), -1, &beg, &end, &val, Qnil)
5857 && beg < IT_CHARPOS (*it))
5858 goto replaced;
5859
5860 /* If newline is replaced by a display property, find start of overlay
5861 or interval and continue search from that point. */
5862 pos = --IT_CHARPOS (it2);
5863 --IT_BYTEPOS (it2);
5864 it2.sp = 0;
5865 bidi_unshelve_cache (NULL, 0);
5866 it2.string_from_display_prop_p = 0;
5867 it2.from_disp_prop_p = 0;
5868 if (handle_display_prop (&it2) == HANDLED_RETURN
5869 && !NILP (val = get_char_property_and_overlay
5870 (make_number (pos), Qdisplay, Qnil, &overlay))
5871 && (OVERLAYP (overlay)
5872 ? (beg = OVERLAY_POSITION (OVERLAY_START (overlay)))
5873 : get_property_and_range (pos, Qdisplay, &val, &beg, &end, Qnil)))
5874 {
5875 RESTORE_IT (it, it, it2data);
5876 goto replaced;
5877 }
5878
5879 /* Newline is not replaced by anything -- so we are done. */
5880 RESTORE_IT (it, it, it2data);
5881 break;
5882
5883 replaced:
5884 if (beg < BEGV)
5885 beg = BEGV;
5886 IT_CHARPOS (*it) = beg;
5887 IT_BYTEPOS (*it) = buf_charpos_to_bytepos (current_buffer, beg);
5888 }
5889 }
5890
5891 it->continuation_lines_width = 0;
5892
5893 xassert (IT_CHARPOS (*it) >= BEGV);
5894 xassert (IT_CHARPOS (*it) == BEGV
5895 || FETCH_BYTE (IT_BYTEPOS (*it) - 1) == '\n');
5896 CHECK_IT (it);
5897 }
5898
5899
5900 /* Reseat iterator IT at the previous visible line start. Skip
5901 invisible text that is so either due to text properties or due to
5902 selective display. At the end, update IT's overlay information,
5903 face information etc. */
5904
5905 void
5906 reseat_at_previous_visible_line_start (struct it *it)
5907 {
5908 back_to_previous_visible_line_start (it);
5909 reseat (it, it->current.pos, 1);
5910 CHECK_IT (it);
5911 }
5912
5913
5914 /* Reseat iterator IT on the next visible line start in the current
5915 buffer. ON_NEWLINE_P non-zero means position IT on the newline
5916 preceding the line start. Skip over invisible text that is so
5917 because of selective display. Compute faces, overlays etc at the
5918 new position. Note that this function does not skip over text that
5919 is invisible because of text properties. */
5920
5921 static void
5922 reseat_at_next_visible_line_start (struct it *it, int on_newline_p)
5923 {
5924 int newline_found_p, skipped_p = 0;
5925 struct bidi_it bidi_it_prev;
5926
5927 newline_found_p = forward_to_next_line_start (it, &skipped_p, &bidi_it_prev);
5928
5929 /* Skip over lines that are invisible because they are indented
5930 more than the value of IT->selective. */
5931 if (it->selective > 0)
5932 while (IT_CHARPOS (*it) < ZV
5933 && indented_beyond_p (IT_CHARPOS (*it), IT_BYTEPOS (*it),
5934 it->selective))
5935 {
5936 xassert (IT_BYTEPOS (*it) == BEGV
5937 || FETCH_BYTE (IT_BYTEPOS (*it) - 1) == '\n');
5938 newline_found_p =
5939 forward_to_next_line_start (it, &skipped_p, &bidi_it_prev);
5940 }
5941
5942 /* Position on the newline if that's what's requested. */
5943 if (on_newline_p && newline_found_p)
5944 {
5945 if (STRINGP (it->string))
5946 {
5947 if (IT_STRING_CHARPOS (*it) > 0)
5948 {
5949 if (!it->bidi_p)
5950 {
5951 --IT_STRING_CHARPOS (*it);
5952 --IT_STRING_BYTEPOS (*it);
5953 }
5954 else
5955 {
5956 /* We need to restore the bidi iterator to the state
5957 it had on the newline, and resync the IT's
5958 position with that. */
5959 it->bidi_it = bidi_it_prev;
5960 IT_STRING_CHARPOS (*it) = it->bidi_it.charpos;
5961 IT_STRING_BYTEPOS (*it) = it->bidi_it.bytepos;
5962 }
5963 }
5964 }
5965 else if (IT_CHARPOS (*it) > BEGV)
5966 {
5967 if (!it->bidi_p)
5968 {
5969 --IT_CHARPOS (*it);
5970 --IT_BYTEPOS (*it);
5971 }
5972 else
5973 {
5974 /* We need to restore the bidi iterator to the state it
5975 had on the newline and resync IT with that. */
5976 it->bidi_it = bidi_it_prev;
5977 IT_CHARPOS (*it) = it->bidi_it.charpos;
5978 IT_BYTEPOS (*it) = it->bidi_it.bytepos;
5979 }
5980 reseat (it, it->current.pos, 0);
5981 }
5982 }
5983 else if (skipped_p)
5984 reseat (it, it->current.pos, 0);
5985
5986 CHECK_IT (it);
5987 }
5988
5989
5990 \f
5991 /***********************************************************************
5992 Changing an iterator's position
5993 ***********************************************************************/
5994
5995 /* Change IT's current position to POS in current_buffer. If FORCE_P
5996 is non-zero, always check for text properties at the new position.
5997 Otherwise, text properties are only looked up if POS >=
5998 IT->check_charpos of a property. */
5999
6000 static void
6001 reseat (struct it *it, struct text_pos pos, int force_p)
6002 {
6003 EMACS_INT original_pos = IT_CHARPOS (*it);
6004
6005 reseat_1 (it, pos, 0);
6006
6007 /* Determine where to check text properties. Avoid doing it
6008 where possible because text property lookup is very expensive. */
6009 if (force_p
6010 || CHARPOS (pos) > it->stop_charpos
6011 || CHARPOS (pos) < original_pos)
6012 {
6013 if (it->bidi_p)
6014 {
6015 /* For bidi iteration, we need to prime prev_stop and
6016 base_level_stop with our best estimations. */
6017 /* Implementation note: Of course, POS is not necessarily a
6018 stop position, so assigning prev_pos to it is a lie; we
6019 should have called compute_stop_backwards. However, if
6020 the current buffer does not include any R2L characters,
6021 that call would be a waste of cycles, because the
6022 iterator will never move back, and thus never cross this
6023 "fake" stop position. So we delay that backward search
6024 until the time we really need it, in next_element_from_buffer. */
6025 if (CHARPOS (pos) != it->prev_stop)
6026 it->prev_stop = CHARPOS (pos);
6027 if (CHARPOS (pos) < it->base_level_stop)
6028 it->base_level_stop = 0; /* meaning it's unknown */
6029 handle_stop (it);
6030 }
6031 else
6032 {
6033 handle_stop (it);
6034 it->prev_stop = it->base_level_stop = 0;
6035 }
6036
6037 }
6038
6039 CHECK_IT (it);
6040 }
6041
6042
6043 /* Change IT's buffer position to POS. SET_STOP_P non-zero means set
6044 IT->stop_pos to POS, also. */
6045
6046 static void
6047 reseat_1 (struct it *it, struct text_pos pos, int set_stop_p)
6048 {
6049 /* Don't call this function when scanning a C string. */
6050 xassert (it->s == NULL);
6051
6052 /* POS must be a reasonable value. */
6053 xassert (CHARPOS (pos) >= BEGV && CHARPOS (pos) <= ZV);
6054
6055 it->current.pos = it->position = pos;
6056 it->end_charpos = ZV;
6057 it->dpvec = NULL;
6058 it->current.dpvec_index = -1;
6059 it->current.overlay_string_index = -1;
6060 IT_STRING_CHARPOS (*it) = -1;
6061 IT_STRING_BYTEPOS (*it) = -1;
6062 it->string = Qnil;
6063 it->method = GET_FROM_BUFFER;
6064 it->object = it->w->buffer;
6065 it->area = TEXT_AREA;
6066 it->multibyte_p = !NILP (BVAR (current_buffer, enable_multibyte_characters));
6067 it->sp = 0;
6068 it->string_from_display_prop_p = 0;
6069 it->from_disp_prop_p = 0;
6070 it->face_before_selective_p = 0;
6071 if (it->bidi_p)
6072 {
6073 bidi_init_it (IT_CHARPOS (*it), IT_BYTEPOS (*it), FRAME_WINDOW_P (it->f),
6074 &it->bidi_it);
6075 bidi_unshelve_cache (NULL, 0);
6076 it->bidi_it.paragraph_dir = NEUTRAL_DIR;
6077 it->bidi_it.string.s = NULL;
6078 it->bidi_it.string.lstring = Qnil;
6079 it->bidi_it.string.bufpos = 0;
6080 it->bidi_it.string.unibyte = 0;
6081 }
6082
6083 if (set_stop_p)
6084 {
6085 it->stop_charpos = CHARPOS (pos);
6086 it->base_level_stop = CHARPOS (pos);
6087 }
6088 }
6089
6090
6091 /* Set up IT for displaying a string, starting at CHARPOS in window W.
6092 If S is non-null, it is a C string to iterate over. Otherwise,
6093 STRING gives a Lisp string to iterate over.
6094
6095 If PRECISION > 0, don't return more then PRECISION number of
6096 characters from the string.
6097
6098 If FIELD_WIDTH > 0, return padding spaces until FIELD_WIDTH
6099 characters have been returned. FIELD_WIDTH < 0 means an infinite
6100 field width.
6101
6102 MULTIBYTE = 0 means disable processing of multibyte characters,
6103 MULTIBYTE > 0 means enable it,
6104 MULTIBYTE < 0 means use IT->multibyte_p.
6105
6106 IT must be initialized via a prior call to init_iterator before
6107 calling this function. */
6108
6109 static void
6110 reseat_to_string (struct it *it, const char *s, Lisp_Object string,
6111 EMACS_INT charpos, EMACS_INT precision, int field_width,
6112 int multibyte)
6113 {
6114 /* No region in strings. */
6115 it->region_beg_charpos = it->region_end_charpos = -1;
6116
6117 /* No text property checks performed by default, but see below. */
6118 it->stop_charpos = -1;
6119
6120 /* Set iterator position and end position. */
6121 memset (&it->current, 0, sizeof it->current);
6122 it->current.overlay_string_index = -1;
6123 it->current.dpvec_index = -1;
6124 xassert (charpos >= 0);
6125
6126 /* If STRING is specified, use its multibyteness, otherwise use the
6127 setting of MULTIBYTE, if specified. */
6128 if (multibyte >= 0)
6129 it->multibyte_p = multibyte > 0;
6130
6131 /* Bidirectional reordering of strings is controlled by the default
6132 value of bidi-display-reordering. */
6133 it->bidi_p = !NILP (BVAR (&buffer_defaults, bidi_display_reordering));
6134
6135 if (s == NULL)
6136 {
6137 xassert (STRINGP (string));
6138 it->string = string;
6139 it->s = NULL;
6140 it->end_charpos = it->string_nchars = SCHARS (string);
6141 it->method = GET_FROM_STRING;
6142 it->current.string_pos = string_pos (charpos, string);
6143
6144 if (it->bidi_p)
6145 {
6146 it->bidi_it.string.lstring = string;
6147 it->bidi_it.string.s = NULL;
6148 it->bidi_it.string.schars = it->end_charpos;
6149 it->bidi_it.string.bufpos = 0;
6150 it->bidi_it.string.from_disp_str = 0;
6151 it->bidi_it.string.unibyte = !it->multibyte_p;
6152 bidi_init_it (charpos, IT_STRING_BYTEPOS (*it),
6153 FRAME_WINDOW_P (it->f), &it->bidi_it);
6154 }
6155 }
6156 else
6157 {
6158 it->s = (const unsigned char *) s;
6159 it->string = Qnil;
6160
6161 /* Note that we use IT->current.pos, not it->current.string_pos,
6162 for displaying C strings. */
6163 IT_STRING_CHARPOS (*it) = IT_STRING_BYTEPOS (*it) = -1;
6164 if (it->multibyte_p)
6165 {
6166 it->current.pos = c_string_pos (charpos, s, 1);
6167 it->end_charpos = it->string_nchars = number_of_chars (s, 1);
6168 }
6169 else
6170 {
6171 IT_CHARPOS (*it) = IT_BYTEPOS (*it) = charpos;
6172 it->end_charpos = it->string_nchars = strlen (s);
6173 }
6174
6175 if (it->bidi_p)
6176 {
6177 it->bidi_it.string.lstring = Qnil;
6178 it->bidi_it.string.s = (const unsigned char *) s;
6179 it->bidi_it.string.schars = it->end_charpos;
6180 it->bidi_it.string.bufpos = 0;
6181 it->bidi_it.string.from_disp_str = 0;
6182 it->bidi_it.string.unibyte = !it->multibyte_p;
6183 bidi_init_it (charpos, IT_BYTEPOS (*it), FRAME_WINDOW_P (it->f),
6184 &it->bidi_it);
6185 }
6186 it->method = GET_FROM_C_STRING;
6187 }
6188
6189 /* PRECISION > 0 means don't return more than PRECISION characters
6190 from the string. */
6191 if (precision > 0 && it->end_charpos - charpos > precision)
6192 {
6193 it->end_charpos = it->string_nchars = charpos + precision;
6194 if (it->bidi_p)
6195 it->bidi_it.string.schars = it->end_charpos;
6196 }
6197
6198 /* FIELD_WIDTH > 0 means pad with spaces until FIELD_WIDTH
6199 characters have been returned. FIELD_WIDTH == 0 means don't pad,
6200 FIELD_WIDTH < 0 means infinite field width. This is useful for
6201 padding with `-' at the end of a mode line. */
6202 if (field_width < 0)
6203 field_width = INFINITY;
6204 /* Implementation note: We deliberately don't enlarge
6205 it->bidi_it.string.schars here to fit it->end_charpos, because
6206 the bidi iterator cannot produce characters out of thin air. */
6207 if (field_width > it->end_charpos - charpos)
6208 it->end_charpos = charpos + field_width;
6209
6210 /* Use the standard display table for displaying strings. */
6211 if (DISP_TABLE_P (Vstandard_display_table))
6212 it->dp = XCHAR_TABLE (Vstandard_display_table);
6213
6214 it->stop_charpos = charpos;
6215 it->prev_stop = charpos;
6216 it->base_level_stop = 0;
6217 if (it->bidi_p)
6218 {
6219 it->bidi_it.first_elt = 1;
6220 it->bidi_it.paragraph_dir = NEUTRAL_DIR;
6221 it->bidi_it.disp_pos = -1;
6222 }
6223 if (s == NULL && it->multibyte_p)
6224 {
6225 EMACS_INT endpos = SCHARS (it->string);
6226 if (endpos > it->end_charpos)
6227 endpos = it->end_charpos;
6228 composition_compute_stop_pos (&it->cmp_it, charpos, -1, endpos,
6229 it->string);
6230 }
6231 CHECK_IT (it);
6232 }
6233
6234
6235 \f
6236 /***********************************************************************
6237 Iteration
6238 ***********************************************************************/
6239
6240 /* Map enum it_method value to corresponding next_element_from_* function. */
6241
6242 static int (* get_next_element[NUM_IT_METHODS]) (struct it *it) =
6243 {
6244 next_element_from_buffer,
6245 next_element_from_display_vector,
6246 next_element_from_string,
6247 next_element_from_c_string,
6248 next_element_from_image,
6249 next_element_from_stretch
6250 };
6251
6252 #define GET_NEXT_DISPLAY_ELEMENT(it) (*get_next_element[(it)->method]) (it)
6253
6254
6255 /* Return 1 iff a character at CHARPOS (and BYTEPOS) is composed
6256 (possibly with the following characters). */
6257
6258 #define CHAR_COMPOSED_P(IT,CHARPOS,BYTEPOS,END_CHARPOS) \
6259 ((IT)->cmp_it.id >= 0 \
6260 || ((IT)->cmp_it.stop_pos == (CHARPOS) \
6261 && composition_reseat_it (&(IT)->cmp_it, CHARPOS, BYTEPOS, \
6262 END_CHARPOS, (IT)->w, \
6263 FACE_FROM_ID ((IT)->f, (IT)->face_id), \
6264 (IT)->string)))
6265
6266
6267 /* Lookup the char-table Vglyphless_char_display for character C (-1
6268 if we want information for no-font case), and return the display
6269 method symbol. By side-effect, update it->what and
6270 it->glyphless_method. This function is called from
6271 get_next_display_element for each character element, and from
6272 x_produce_glyphs when no suitable font was found. */
6273
6274 Lisp_Object
6275 lookup_glyphless_char_display (int c, struct it *it)
6276 {
6277 Lisp_Object glyphless_method = Qnil;
6278
6279 if (CHAR_TABLE_P (Vglyphless_char_display)
6280 && CHAR_TABLE_EXTRA_SLOTS (XCHAR_TABLE (Vglyphless_char_display)) >= 1)
6281 {
6282 if (c >= 0)
6283 {
6284 glyphless_method = CHAR_TABLE_REF (Vglyphless_char_display, c);
6285 if (CONSP (glyphless_method))
6286 glyphless_method = FRAME_WINDOW_P (it->f)
6287 ? XCAR (glyphless_method)
6288 : XCDR (glyphless_method);
6289 }
6290 else
6291 glyphless_method = XCHAR_TABLE (Vglyphless_char_display)->extras[0];
6292 }
6293
6294 retry:
6295 if (NILP (glyphless_method))
6296 {
6297 if (c >= 0)
6298 /* The default is to display the character by a proper font. */
6299 return Qnil;
6300 /* The default for the no-font case is to display an empty box. */
6301 glyphless_method = Qempty_box;
6302 }
6303 if (EQ (glyphless_method, Qzero_width))
6304 {
6305 if (c >= 0)
6306 return glyphless_method;
6307 /* This method can't be used for the no-font case. */
6308 glyphless_method = Qempty_box;
6309 }
6310 if (EQ (glyphless_method, Qthin_space))
6311 it->glyphless_method = GLYPHLESS_DISPLAY_THIN_SPACE;
6312 else if (EQ (glyphless_method, Qempty_box))
6313 it->glyphless_method = GLYPHLESS_DISPLAY_EMPTY_BOX;
6314 else if (EQ (glyphless_method, Qhex_code))
6315 it->glyphless_method = GLYPHLESS_DISPLAY_HEX_CODE;
6316 else if (STRINGP (glyphless_method))
6317 it->glyphless_method = GLYPHLESS_DISPLAY_ACRONYM;
6318 else
6319 {
6320 /* Invalid value. We use the default method. */
6321 glyphless_method = Qnil;
6322 goto retry;
6323 }
6324 it->what = IT_GLYPHLESS;
6325 return glyphless_method;
6326 }
6327
6328 /* Load IT's display element fields with information about the next
6329 display element from the current position of IT. Value is zero if
6330 end of buffer (or C string) is reached. */
6331
6332 static struct frame *last_escape_glyph_frame = NULL;
6333 static unsigned last_escape_glyph_face_id = (1 << FACE_ID_BITS);
6334 static int last_escape_glyph_merged_face_id = 0;
6335
6336 struct frame *last_glyphless_glyph_frame = NULL;
6337 unsigned last_glyphless_glyph_face_id = (1 << FACE_ID_BITS);
6338 int last_glyphless_glyph_merged_face_id = 0;
6339
6340 static int
6341 get_next_display_element (struct it *it)
6342 {
6343 /* Non-zero means that we found a display element. Zero means that
6344 we hit the end of what we iterate over. Performance note: the
6345 function pointer `method' used here turns out to be faster than
6346 using a sequence of if-statements. */
6347 int success_p;
6348
6349 get_next:
6350 success_p = GET_NEXT_DISPLAY_ELEMENT (it);
6351
6352 if (it->what == IT_CHARACTER)
6353 {
6354 /* UAX#9, L4: "A character is depicted by a mirrored glyph if
6355 and only if (a) the resolved directionality of that character
6356 is R..." */
6357 /* FIXME: Do we need an exception for characters from display
6358 tables? */
6359 if (it->bidi_p && it->bidi_it.type == STRONG_R)
6360 it->c = bidi_mirror_char (it->c);
6361 /* Map via display table or translate control characters.
6362 IT->c, IT->len etc. have been set to the next character by
6363 the function call above. If we have a display table, and it
6364 contains an entry for IT->c, translate it. Don't do this if
6365 IT->c itself comes from a display table, otherwise we could
6366 end up in an infinite recursion. (An alternative could be to
6367 count the recursion depth of this function and signal an
6368 error when a certain maximum depth is reached.) Is it worth
6369 it? */
6370 if (success_p && it->dpvec == NULL)
6371 {
6372 Lisp_Object dv;
6373 struct charset *unibyte = CHARSET_FROM_ID (charset_unibyte);
6374 enum { char_is_other = 0, char_is_nbsp, char_is_soft_hyphen }
6375 nbsp_or_shy = char_is_other;
6376 int c = it->c; /* This is the character to display. */
6377
6378 if (! it->multibyte_p && ! ASCII_CHAR_P (c))
6379 {
6380 xassert (SINGLE_BYTE_CHAR_P (c));
6381 if (unibyte_display_via_language_environment)
6382 {
6383 c = DECODE_CHAR (unibyte, c);
6384 if (c < 0)
6385 c = BYTE8_TO_CHAR (it->c);
6386 }
6387 else
6388 c = BYTE8_TO_CHAR (it->c);
6389 }
6390
6391 if (it->dp
6392 && (dv = DISP_CHAR_VECTOR (it->dp, c),
6393 VECTORP (dv)))
6394 {
6395 struct Lisp_Vector *v = XVECTOR (dv);
6396
6397 /* Return the first character from the display table
6398 entry, if not empty. If empty, don't display the
6399 current character. */
6400 if (v->header.size)
6401 {
6402 it->dpvec_char_len = it->len;
6403 it->dpvec = v->contents;
6404 it->dpend = v->contents + v->header.size;
6405 it->current.dpvec_index = 0;
6406 it->dpvec_face_id = -1;
6407 it->saved_face_id = it->face_id;
6408 it->method = GET_FROM_DISPLAY_VECTOR;
6409 it->ellipsis_p = 0;
6410 }
6411 else
6412 {
6413 set_iterator_to_next (it, 0);
6414 }
6415 goto get_next;
6416 }
6417
6418 if (! NILP (lookup_glyphless_char_display (c, it)))
6419 {
6420 if (it->what == IT_GLYPHLESS)
6421 goto done;
6422 /* Don't display this character. */
6423 set_iterator_to_next (it, 0);
6424 goto get_next;
6425 }
6426
6427 if (! ASCII_CHAR_P (c) && ! NILP (Vnobreak_char_display))
6428 nbsp_or_shy = (c == 0xA0 ? char_is_nbsp
6429 : c == 0xAD ? char_is_soft_hyphen
6430 : char_is_other);
6431
6432 /* Translate control characters into `\003' or `^C' form.
6433 Control characters coming from a display table entry are
6434 currently not translated because we use IT->dpvec to hold
6435 the translation. This could easily be changed but I
6436 don't believe that it is worth doing.
6437
6438 NBSP and SOFT-HYPEN are property translated too.
6439
6440 Non-printable characters and raw-byte characters are also
6441 translated to octal form. */
6442 if (((c < ' ' || c == 127) /* ASCII control chars */
6443 ? (it->area != TEXT_AREA
6444 /* In mode line, treat \n, \t like other crl chars. */
6445 || (c != '\t'
6446 && it->glyph_row
6447 && (it->glyph_row->mode_line_p || it->avoid_cursor_p))
6448 || (c != '\n' && c != '\t'))
6449 : (nbsp_or_shy
6450 || CHAR_BYTE8_P (c)
6451 || ! CHAR_PRINTABLE_P (c))))
6452 {
6453 /* C is a control character, NBSP, SOFT-HYPEN, raw-byte,
6454 or a non-printable character which must be displayed
6455 either as '\003' or as `^C' where the '\\' and '^'
6456 can be defined in the display table. Fill
6457 IT->ctl_chars with glyphs for what we have to
6458 display. Then, set IT->dpvec to these glyphs. */
6459 Lisp_Object gc;
6460 int ctl_len;
6461 int face_id;
6462 EMACS_INT lface_id = 0;
6463 int escape_glyph;
6464
6465 /* Handle control characters with ^. */
6466
6467 if (ASCII_CHAR_P (c) && it->ctl_arrow_p)
6468 {
6469 int g;
6470
6471 g = '^'; /* default glyph for Control */
6472 /* Set IT->ctl_chars[0] to the glyph for `^'. */
6473 if (it->dp
6474 && (gc = DISP_CTRL_GLYPH (it->dp), GLYPH_CODE_P (gc))
6475 && GLYPH_CODE_CHAR_VALID_P (gc))
6476 {
6477 g = GLYPH_CODE_CHAR (gc);
6478 lface_id = GLYPH_CODE_FACE (gc);
6479 }
6480 if (lface_id)
6481 {
6482 face_id = merge_faces (it->f, Qt, lface_id, it->face_id);
6483 }
6484 else if (it->f == last_escape_glyph_frame
6485 && it->face_id == last_escape_glyph_face_id)
6486 {
6487 face_id = last_escape_glyph_merged_face_id;
6488 }
6489 else
6490 {
6491 /* Merge the escape-glyph face into the current face. */
6492 face_id = merge_faces (it->f, Qescape_glyph, 0,
6493 it->face_id);
6494 last_escape_glyph_frame = it->f;
6495 last_escape_glyph_face_id = it->face_id;
6496 last_escape_glyph_merged_face_id = face_id;
6497 }
6498
6499 XSETINT (it->ctl_chars[0], g);
6500 XSETINT (it->ctl_chars[1], c ^ 0100);
6501 ctl_len = 2;
6502 goto display_control;
6503 }
6504
6505 /* Handle non-break space in the mode where it only gets
6506 highlighting. */
6507
6508 if (EQ (Vnobreak_char_display, Qt)
6509 && nbsp_or_shy == char_is_nbsp)
6510 {
6511 /* Merge the no-break-space face into the current face. */
6512 face_id = merge_faces (it->f, Qnobreak_space, 0,
6513 it->face_id);
6514
6515 c = ' ';
6516 XSETINT (it->ctl_chars[0], ' ');
6517 ctl_len = 1;
6518 goto display_control;
6519 }
6520
6521 /* Handle sequences that start with the "escape glyph". */
6522
6523 /* the default escape glyph is \. */
6524 escape_glyph = '\\';
6525
6526 if (it->dp
6527 && (gc = DISP_ESCAPE_GLYPH (it->dp), GLYPH_CODE_P (gc))
6528 && GLYPH_CODE_CHAR_VALID_P (gc))
6529 {
6530 escape_glyph = GLYPH_CODE_CHAR (gc);
6531 lface_id = GLYPH_CODE_FACE (gc);
6532 }
6533 if (lface_id)
6534 {
6535 /* The display table specified a face.
6536 Merge it into face_id and also into escape_glyph. */
6537 face_id = merge_faces (it->f, Qt, lface_id,
6538 it->face_id);
6539 }
6540 else if (it->f == last_escape_glyph_frame
6541 && it->face_id == last_escape_glyph_face_id)
6542 {
6543 face_id = last_escape_glyph_merged_face_id;
6544 }
6545 else
6546 {
6547 /* Merge the escape-glyph face into the current face. */
6548 face_id = merge_faces (it->f, Qescape_glyph, 0,
6549 it->face_id);
6550 last_escape_glyph_frame = it->f;
6551 last_escape_glyph_face_id = it->face_id;
6552 last_escape_glyph_merged_face_id = face_id;
6553 }
6554
6555 /* Handle soft hyphens in the mode where they only get
6556 highlighting. */
6557
6558 if (EQ (Vnobreak_char_display, Qt)
6559 && nbsp_or_shy == char_is_soft_hyphen)
6560 {
6561 XSETINT (it->ctl_chars[0], '-');
6562 ctl_len = 1;
6563 goto display_control;
6564 }
6565
6566 /* Handle non-break space and soft hyphen
6567 with the escape glyph. */
6568
6569 if (nbsp_or_shy)
6570 {
6571 XSETINT (it->ctl_chars[0], escape_glyph);
6572 c = (nbsp_or_shy == char_is_nbsp ? ' ' : '-');
6573 XSETINT (it->ctl_chars[1], c);
6574 ctl_len = 2;
6575 goto display_control;
6576 }
6577
6578 {
6579 char str[10];
6580 int len, i;
6581
6582 if (CHAR_BYTE8_P (c))
6583 /* Display \200 instead of \17777600. */
6584 c = CHAR_TO_BYTE8 (c);
6585 len = sprintf (str, "%03o", c);
6586
6587 XSETINT (it->ctl_chars[0], escape_glyph);
6588 for (i = 0; i < len; i++)
6589 XSETINT (it->ctl_chars[i + 1], str[i]);
6590 ctl_len = len + 1;
6591 }
6592
6593 display_control:
6594 /* Set up IT->dpvec and return first character from it. */
6595 it->dpvec_char_len = it->len;
6596 it->dpvec = it->ctl_chars;
6597 it->dpend = it->dpvec + ctl_len;
6598 it->current.dpvec_index = 0;
6599 it->dpvec_face_id = face_id;
6600 it->saved_face_id = it->face_id;
6601 it->method = GET_FROM_DISPLAY_VECTOR;
6602 it->ellipsis_p = 0;
6603 goto get_next;
6604 }
6605 it->char_to_display = c;
6606 }
6607 else if (success_p)
6608 {
6609 it->char_to_display = it->c;
6610 }
6611 }
6612
6613 /* Adjust face id for a multibyte character. There are no multibyte
6614 character in unibyte text. */
6615 if ((it->what == IT_CHARACTER || it->what == IT_COMPOSITION)
6616 && it->multibyte_p
6617 && success_p
6618 && FRAME_WINDOW_P (it->f))
6619 {
6620 struct face *face = FACE_FROM_ID (it->f, it->face_id);
6621
6622 if (it->what == IT_COMPOSITION && it->cmp_it.ch >= 0)
6623 {
6624 /* Automatic composition with glyph-string. */
6625 Lisp_Object gstring = composition_gstring_from_id (it->cmp_it.id);
6626
6627 it->face_id = face_for_font (it->f, LGSTRING_FONT (gstring), face);
6628 }
6629 else
6630 {
6631 EMACS_INT pos = (it->s ? -1
6632 : STRINGP (it->string) ? IT_STRING_CHARPOS (*it)
6633 : IT_CHARPOS (*it));
6634 int c;
6635
6636 if (it->what == IT_CHARACTER)
6637 c = it->char_to_display;
6638 else
6639 {
6640 struct composition *cmp = composition_table[it->cmp_it.id];
6641 int i;
6642
6643 c = ' ';
6644 for (i = 0; i < cmp->glyph_len; i++)
6645 /* TAB in a composition means display glyphs with
6646 padding space on the left or right. */
6647 if ((c = COMPOSITION_GLYPH (cmp, i)) != '\t')
6648 break;
6649 }
6650 it->face_id = FACE_FOR_CHAR (it->f, face, c, pos, it->string);
6651 }
6652 }
6653
6654 done:
6655 /* Is this character the last one of a run of characters with
6656 box? If yes, set IT->end_of_box_run_p to 1. */
6657 if (it->face_box_p
6658 && it->s == NULL)
6659 {
6660 if (it->method == GET_FROM_STRING && it->sp)
6661 {
6662 int face_id = underlying_face_id (it);
6663 struct face *face = FACE_FROM_ID (it->f, face_id);
6664
6665 if (face)
6666 {
6667 if (face->box == FACE_NO_BOX)
6668 {
6669 /* If the box comes from face properties in a
6670 display string, check faces in that string. */
6671 int string_face_id = face_after_it_pos (it);
6672 it->end_of_box_run_p
6673 = (FACE_FROM_ID (it->f, string_face_id)->box
6674 == FACE_NO_BOX);
6675 }
6676 /* Otherwise, the box comes from the underlying face.
6677 If this is the last string character displayed, check
6678 the next buffer location. */
6679 else if ((IT_STRING_CHARPOS (*it) >= SCHARS (it->string) - 1)
6680 && (it->current.overlay_string_index
6681 == it->n_overlay_strings - 1))
6682 {
6683 EMACS_INT ignore;
6684 int next_face_id;
6685 struct text_pos pos = it->current.pos;
6686 INC_TEXT_POS (pos, it->multibyte_p);
6687
6688 next_face_id = face_at_buffer_position
6689 (it->w, CHARPOS (pos), it->region_beg_charpos,
6690 it->region_end_charpos, &ignore,
6691 (IT_CHARPOS (*it) + TEXT_PROP_DISTANCE_LIMIT), 0,
6692 -1);
6693 it->end_of_box_run_p
6694 = (FACE_FROM_ID (it->f, next_face_id)->box
6695 == FACE_NO_BOX);
6696 }
6697 }
6698 }
6699 else
6700 {
6701 int face_id = face_after_it_pos (it);
6702 it->end_of_box_run_p
6703 = (face_id != it->face_id
6704 && FACE_FROM_ID (it->f, face_id)->box == FACE_NO_BOX);
6705 }
6706 }
6707
6708 /* Value is 0 if end of buffer or string reached. */
6709 return success_p;
6710 }
6711
6712
6713 /* Move IT to the next display element.
6714
6715 RESEAT_P non-zero means if called on a newline in buffer text,
6716 skip to the next visible line start.
6717
6718 Functions get_next_display_element and set_iterator_to_next are
6719 separate because I find this arrangement easier to handle than a
6720 get_next_display_element function that also increments IT's
6721 position. The way it is we can first look at an iterator's current
6722 display element, decide whether it fits on a line, and if it does,
6723 increment the iterator position. The other way around we probably
6724 would either need a flag indicating whether the iterator has to be
6725 incremented the next time, or we would have to implement a
6726 decrement position function which would not be easy to write. */
6727
6728 void
6729 set_iterator_to_next (struct it *it, int reseat_p)
6730 {
6731 /* Reset flags indicating start and end of a sequence of characters
6732 with box. Reset them at the start of this function because
6733 moving the iterator to a new position might set them. */
6734 it->start_of_box_run_p = it->end_of_box_run_p = 0;
6735
6736 switch (it->method)
6737 {
6738 case GET_FROM_BUFFER:
6739 /* The current display element of IT is a character from
6740 current_buffer. Advance in the buffer, and maybe skip over
6741 invisible lines that are so because of selective display. */
6742 if (ITERATOR_AT_END_OF_LINE_P (it) && reseat_p)
6743 reseat_at_next_visible_line_start (it, 0);
6744 else if (it->cmp_it.id >= 0)
6745 {
6746 /* We are currently getting glyphs from a composition. */
6747 int i;
6748
6749 if (! it->bidi_p)
6750 {
6751 IT_CHARPOS (*it) += it->cmp_it.nchars;
6752 IT_BYTEPOS (*it) += it->cmp_it.nbytes;
6753 if (it->cmp_it.to < it->cmp_it.nglyphs)
6754 {
6755 it->cmp_it.from = it->cmp_it.to;
6756 }
6757 else
6758 {
6759 it->cmp_it.id = -1;
6760 composition_compute_stop_pos (&it->cmp_it, IT_CHARPOS (*it),
6761 IT_BYTEPOS (*it),
6762 it->end_charpos, Qnil);
6763 }
6764 }
6765 else if (! it->cmp_it.reversed_p)
6766 {
6767 /* Composition created while scanning forward. */
6768 /* Update IT's char/byte positions to point to the first
6769 character of the next grapheme cluster, or to the
6770 character visually after the current composition. */
6771 for (i = 0; i < it->cmp_it.nchars; i++)
6772 bidi_move_to_visually_next (&it->bidi_it);
6773 IT_BYTEPOS (*it) = it->bidi_it.bytepos;
6774 IT_CHARPOS (*it) = it->bidi_it.charpos;
6775
6776 if (it->cmp_it.to < it->cmp_it.nglyphs)
6777 {
6778 /* Proceed to the next grapheme cluster. */
6779 it->cmp_it.from = it->cmp_it.to;
6780 }
6781 else
6782 {
6783 /* No more grapheme clusters in this composition.
6784 Find the next stop position. */
6785 EMACS_INT stop = it->end_charpos;
6786 if (it->bidi_it.scan_dir < 0)
6787 /* Now we are scanning backward and don't know
6788 where to stop. */
6789 stop = -1;
6790 composition_compute_stop_pos (&it->cmp_it, IT_CHARPOS (*it),
6791 IT_BYTEPOS (*it), stop, Qnil);
6792 }
6793 }
6794 else
6795 {
6796 /* Composition created while scanning backward. */
6797 /* Update IT's char/byte positions to point to the last
6798 character of the previous grapheme cluster, or the
6799 character visually after the current composition. */
6800 for (i = 0; i < it->cmp_it.nchars; i++)
6801 bidi_move_to_visually_next (&it->bidi_it);
6802 IT_BYTEPOS (*it) = it->bidi_it.bytepos;
6803 IT_CHARPOS (*it) = it->bidi_it.charpos;
6804 if (it->cmp_it.from > 0)
6805 {
6806 /* Proceed to the previous grapheme cluster. */
6807 it->cmp_it.to = it->cmp_it.from;
6808 }
6809 else
6810 {
6811 /* No more grapheme clusters in this composition.
6812 Find the next stop position. */
6813 EMACS_INT stop = it->end_charpos;
6814 if (it->bidi_it.scan_dir < 0)
6815 /* Now we are scanning backward and don't know
6816 where to stop. */
6817 stop = -1;
6818 composition_compute_stop_pos (&it->cmp_it, IT_CHARPOS (*it),
6819 IT_BYTEPOS (*it), stop, Qnil);
6820 }
6821 }
6822 }
6823 else
6824 {
6825 xassert (it->len != 0);
6826
6827 if (!it->bidi_p)
6828 {
6829 IT_BYTEPOS (*it) += it->len;
6830 IT_CHARPOS (*it) += 1;
6831 }
6832 else
6833 {
6834 int prev_scan_dir = it->bidi_it.scan_dir;
6835 /* If this is a new paragraph, determine its base
6836 direction (a.k.a. its base embedding level). */
6837 if (it->bidi_it.new_paragraph)
6838 bidi_paragraph_init (it->paragraph_embedding, &it->bidi_it, 0);
6839 bidi_move_to_visually_next (&it->bidi_it);
6840 IT_BYTEPOS (*it) = it->bidi_it.bytepos;
6841 IT_CHARPOS (*it) = it->bidi_it.charpos;
6842 if (prev_scan_dir != it->bidi_it.scan_dir)
6843 {
6844 /* As the scan direction was changed, we must
6845 re-compute the stop position for composition. */
6846 EMACS_INT stop = it->end_charpos;
6847 if (it->bidi_it.scan_dir < 0)
6848 stop = -1;
6849 composition_compute_stop_pos (&it->cmp_it, IT_CHARPOS (*it),
6850 IT_BYTEPOS (*it), stop, Qnil);
6851 }
6852 }
6853 xassert (IT_BYTEPOS (*it) == CHAR_TO_BYTE (IT_CHARPOS (*it)));
6854 }
6855 break;
6856
6857 case GET_FROM_C_STRING:
6858 /* Current display element of IT is from a C string. */
6859 if (!it->bidi_p
6860 /* If the string position is beyond string's end, it means
6861 next_element_from_c_string is padding the string with
6862 blanks, in which case we bypass the bidi iterator,
6863 because it cannot deal with such virtual characters. */
6864 || IT_CHARPOS (*it) >= it->bidi_it.string.schars)
6865 {
6866 IT_BYTEPOS (*it) += it->len;
6867 IT_CHARPOS (*it) += 1;
6868 }
6869 else
6870 {
6871 bidi_move_to_visually_next (&it->bidi_it);
6872 IT_BYTEPOS (*it) = it->bidi_it.bytepos;
6873 IT_CHARPOS (*it) = it->bidi_it.charpos;
6874 }
6875 break;
6876
6877 case GET_FROM_DISPLAY_VECTOR:
6878 /* Current display element of IT is from a display table entry.
6879 Advance in the display table definition. Reset it to null if
6880 end reached, and continue with characters from buffers/
6881 strings. */
6882 ++it->current.dpvec_index;
6883
6884 /* Restore face of the iterator to what they were before the
6885 display vector entry (these entries may contain faces). */
6886 it->face_id = it->saved_face_id;
6887
6888 if (it->dpvec + it->current.dpvec_index == it->dpend)
6889 {
6890 int recheck_faces = it->ellipsis_p;
6891
6892 if (it->s)
6893 it->method = GET_FROM_C_STRING;
6894 else if (STRINGP (it->string))
6895 it->method = GET_FROM_STRING;
6896 else
6897 {
6898 it->method = GET_FROM_BUFFER;
6899 it->object = it->w->buffer;
6900 }
6901
6902 it->dpvec = NULL;
6903 it->current.dpvec_index = -1;
6904
6905 /* Skip over characters which were displayed via IT->dpvec. */
6906 if (it->dpvec_char_len < 0)
6907 reseat_at_next_visible_line_start (it, 1);
6908 else if (it->dpvec_char_len > 0)
6909 {
6910 if (it->method == GET_FROM_STRING
6911 && it->n_overlay_strings > 0)
6912 it->ignore_overlay_strings_at_pos_p = 1;
6913 it->len = it->dpvec_char_len;
6914 set_iterator_to_next (it, reseat_p);
6915 }
6916
6917 /* Maybe recheck faces after display vector */
6918 if (recheck_faces)
6919 it->stop_charpos = IT_CHARPOS (*it);
6920 }
6921 break;
6922
6923 case GET_FROM_STRING:
6924 /* Current display element is a character from a Lisp string. */
6925 xassert (it->s == NULL && STRINGP (it->string));
6926 if (it->cmp_it.id >= 0)
6927 {
6928 int i;
6929
6930 if (! it->bidi_p)
6931 {
6932 IT_STRING_CHARPOS (*it) += it->cmp_it.nchars;
6933 IT_STRING_BYTEPOS (*it) += it->cmp_it.nbytes;
6934 if (it->cmp_it.to < it->cmp_it.nglyphs)
6935 it->cmp_it.from = it->cmp_it.to;
6936 else
6937 {
6938 it->cmp_it.id = -1;
6939 composition_compute_stop_pos (&it->cmp_it,
6940 IT_STRING_CHARPOS (*it),
6941 IT_STRING_BYTEPOS (*it),
6942 it->end_charpos, it->string);
6943 }
6944 }
6945 else if (! it->cmp_it.reversed_p)
6946 {
6947 for (i = 0; i < it->cmp_it.nchars; i++)
6948 bidi_move_to_visually_next (&it->bidi_it);
6949 IT_STRING_BYTEPOS (*it) = it->bidi_it.bytepos;
6950 IT_STRING_CHARPOS (*it) = it->bidi_it.charpos;
6951
6952 if (it->cmp_it.to < it->cmp_it.nglyphs)
6953 it->cmp_it.from = it->cmp_it.to;
6954 else
6955 {
6956 EMACS_INT stop = it->end_charpos;
6957 if (it->bidi_it.scan_dir < 0)
6958 stop = -1;
6959 composition_compute_stop_pos (&it->cmp_it,
6960 IT_STRING_CHARPOS (*it),
6961 IT_STRING_BYTEPOS (*it), stop,
6962 it->string);
6963 }
6964 }
6965 else
6966 {
6967 for (i = 0; i < it->cmp_it.nchars; i++)
6968 bidi_move_to_visually_next (&it->bidi_it);
6969 IT_STRING_BYTEPOS (*it) = it->bidi_it.bytepos;
6970 IT_STRING_CHARPOS (*it) = it->bidi_it.charpos;
6971 if (it->cmp_it.from > 0)
6972 it->cmp_it.to = it->cmp_it.from;
6973 else
6974 {
6975 EMACS_INT stop = it->end_charpos;
6976 if (it->bidi_it.scan_dir < 0)
6977 stop = -1;
6978 composition_compute_stop_pos (&it->cmp_it,
6979 IT_STRING_CHARPOS (*it),
6980 IT_STRING_BYTEPOS (*it), stop,
6981 it->string);
6982 }
6983 }
6984 }
6985 else
6986 {
6987 if (!it->bidi_p
6988 /* If the string position is beyond string's end, it
6989 means next_element_from_string is padding the string
6990 with blanks, in which case we bypass the bidi
6991 iterator, because it cannot deal with such virtual
6992 characters. */
6993 || IT_STRING_CHARPOS (*it) >= it->bidi_it.string.schars)
6994 {
6995 IT_STRING_BYTEPOS (*it) += it->len;
6996 IT_STRING_CHARPOS (*it) += 1;
6997 }
6998 else
6999 {
7000 int prev_scan_dir = it->bidi_it.scan_dir;
7001
7002 bidi_move_to_visually_next (&it->bidi_it);
7003 IT_STRING_BYTEPOS (*it) = it->bidi_it.bytepos;
7004 IT_STRING_CHARPOS (*it) = it->bidi_it.charpos;
7005 if (prev_scan_dir != it->bidi_it.scan_dir)
7006 {
7007 EMACS_INT stop = it->end_charpos;
7008
7009 if (it->bidi_it.scan_dir < 0)
7010 stop = -1;
7011 composition_compute_stop_pos (&it->cmp_it,
7012 IT_STRING_CHARPOS (*it),
7013 IT_STRING_BYTEPOS (*it), stop,
7014 it->string);
7015 }
7016 }
7017 }
7018
7019 consider_string_end:
7020
7021 if (it->current.overlay_string_index >= 0)
7022 {
7023 /* IT->string is an overlay string. Advance to the
7024 next, if there is one. */
7025 if (IT_STRING_CHARPOS (*it) >= SCHARS (it->string))
7026 {
7027 it->ellipsis_p = 0;
7028 next_overlay_string (it);
7029 if (it->ellipsis_p)
7030 setup_for_ellipsis (it, 0);
7031 }
7032 }
7033 else
7034 {
7035 /* IT->string is not an overlay string. If we reached
7036 its end, and there is something on IT->stack, proceed
7037 with what is on the stack. This can be either another
7038 string, this time an overlay string, or a buffer. */
7039 if (IT_STRING_CHARPOS (*it) == SCHARS (it->string)
7040 && it->sp > 0)
7041 {
7042 pop_it (it);
7043 if (it->method == GET_FROM_STRING)
7044 goto consider_string_end;
7045 }
7046 }
7047 break;
7048
7049 case GET_FROM_IMAGE:
7050 case GET_FROM_STRETCH:
7051 /* The position etc with which we have to proceed are on
7052 the stack. The position may be at the end of a string,
7053 if the `display' property takes up the whole string. */
7054 xassert (it->sp > 0);
7055 pop_it (it);
7056 if (it->method == GET_FROM_STRING)
7057 goto consider_string_end;
7058 break;
7059
7060 default:
7061 /* There are no other methods defined, so this should be a bug. */
7062 abort ();
7063 }
7064
7065 xassert (it->method != GET_FROM_STRING
7066 || (STRINGP (it->string)
7067 && IT_STRING_CHARPOS (*it) >= 0));
7068 }
7069
7070 /* Load IT's display element fields with information about the next
7071 display element which comes from a display table entry or from the
7072 result of translating a control character to one of the forms `^C'
7073 or `\003'.
7074
7075 IT->dpvec holds the glyphs to return as characters.
7076 IT->saved_face_id holds the face id before the display vector--it
7077 is restored into IT->face_id in set_iterator_to_next. */
7078
7079 static int
7080 next_element_from_display_vector (struct it *it)
7081 {
7082 Lisp_Object gc;
7083
7084 /* Precondition. */
7085 xassert (it->dpvec && it->current.dpvec_index >= 0);
7086
7087 it->face_id = it->saved_face_id;
7088
7089 /* KFS: This code used to check ip->dpvec[0] instead of the current element.
7090 That seemed totally bogus - so I changed it... */
7091 gc = it->dpvec[it->current.dpvec_index];
7092
7093 if (GLYPH_CODE_P (gc) && GLYPH_CODE_CHAR_VALID_P (gc))
7094 {
7095 it->c = GLYPH_CODE_CHAR (gc);
7096 it->len = CHAR_BYTES (it->c);
7097
7098 /* The entry may contain a face id to use. Such a face id is
7099 the id of a Lisp face, not a realized face. A face id of
7100 zero means no face is specified. */
7101 if (it->dpvec_face_id >= 0)
7102 it->face_id = it->dpvec_face_id;
7103 else
7104 {
7105 EMACS_INT lface_id = GLYPH_CODE_FACE (gc);
7106 if (lface_id > 0)
7107 it->face_id = merge_faces (it->f, Qt, lface_id,
7108 it->saved_face_id);
7109 }
7110 }
7111 else
7112 /* Display table entry is invalid. Return a space. */
7113 it->c = ' ', it->len = 1;
7114
7115 /* Don't change position and object of the iterator here. They are
7116 still the values of the character that had this display table
7117 entry or was translated, and that's what we want. */
7118 it->what = IT_CHARACTER;
7119 return 1;
7120 }
7121
7122 /* Get the first element of string/buffer in the visual order, after
7123 being reseated to a new position in a string or a buffer. */
7124 static void
7125 get_visually_first_element (struct it *it)
7126 {
7127 int string_p = STRINGP (it->string) || it->s;
7128 EMACS_INT eob = (string_p ? it->bidi_it.string.schars : ZV);
7129 EMACS_INT bob = (string_p ? 0 : BEGV);
7130
7131 if (STRINGP (it->string))
7132 {
7133 it->bidi_it.charpos = IT_STRING_CHARPOS (*it);
7134 it->bidi_it.bytepos = IT_STRING_BYTEPOS (*it);
7135 }
7136 else
7137 {
7138 it->bidi_it.charpos = IT_CHARPOS (*it);
7139 it->bidi_it.bytepos = IT_BYTEPOS (*it);
7140 }
7141
7142 if (it->bidi_it.charpos == eob)
7143 {
7144 /* Nothing to do, but reset the FIRST_ELT flag, like
7145 bidi_paragraph_init does, because we are not going to
7146 call it. */
7147 it->bidi_it.first_elt = 0;
7148 }
7149 else if (it->bidi_it.charpos == bob
7150 || (!string_p
7151 && (FETCH_CHAR (it->bidi_it.bytepos - 1) == '\n'
7152 || FETCH_CHAR (it->bidi_it.bytepos) == '\n')))
7153 {
7154 /* If we are at the beginning of a line/string, we can produce
7155 the next element right away. */
7156 bidi_paragraph_init (it->paragraph_embedding, &it->bidi_it, 1);
7157 bidi_move_to_visually_next (&it->bidi_it);
7158 }
7159 else
7160 {
7161 EMACS_INT orig_bytepos = it->bidi_it.bytepos;
7162
7163 /* We need to prime the bidi iterator starting at the line's or
7164 string's beginning, before we will be able to produce the
7165 next element. */
7166 if (string_p)
7167 it->bidi_it.charpos = it->bidi_it.bytepos = 0;
7168 else
7169 {
7170 it->bidi_it.charpos = find_next_newline_no_quit (IT_CHARPOS (*it),
7171 -1);
7172 it->bidi_it.bytepos = CHAR_TO_BYTE (it->bidi_it.charpos);
7173 }
7174 bidi_paragraph_init (it->paragraph_embedding, &it->bidi_it, 1);
7175 do
7176 {
7177 /* Now return to buffer/string position where we were asked
7178 to get the next display element, and produce that. */
7179 bidi_move_to_visually_next (&it->bidi_it);
7180 }
7181 while (it->bidi_it.bytepos != orig_bytepos
7182 && it->bidi_it.charpos < eob);
7183 }
7184
7185 /* Adjust IT's position information to where we ended up. */
7186 if (STRINGP (it->string))
7187 {
7188 IT_STRING_CHARPOS (*it) = it->bidi_it.charpos;
7189 IT_STRING_BYTEPOS (*it) = it->bidi_it.bytepos;
7190 }
7191 else
7192 {
7193 IT_CHARPOS (*it) = it->bidi_it.charpos;
7194 IT_BYTEPOS (*it) = it->bidi_it.bytepos;
7195 }
7196
7197 if (STRINGP (it->string) || !it->s)
7198 {
7199 EMACS_INT stop, charpos, bytepos;
7200
7201 if (STRINGP (it->string))
7202 {
7203 xassert (!it->s);
7204 stop = SCHARS (it->string);
7205 if (stop > it->end_charpos)
7206 stop = it->end_charpos;
7207 charpos = IT_STRING_CHARPOS (*it);
7208 bytepos = IT_STRING_BYTEPOS (*it);
7209 }
7210 else
7211 {
7212 stop = it->end_charpos;
7213 charpos = IT_CHARPOS (*it);
7214 bytepos = IT_BYTEPOS (*it);
7215 }
7216 if (it->bidi_it.scan_dir < 0)
7217 stop = -1;
7218 composition_compute_stop_pos (&it->cmp_it, charpos, bytepos, stop,
7219 it->string);
7220 }
7221 }
7222
7223 /* Load IT with the next display element from Lisp string IT->string.
7224 IT->current.string_pos is the current position within the string.
7225 If IT->current.overlay_string_index >= 0, the Lisp string is an
7226 overlay string. */
7227
7228 static int
7229 next_element_from_string (struct it *it)
7230 {
7231 struct text_pos position;
7232
7233 xassert (STRINGP (it->string));
7234 xassert (!it->bidi_p || EQ (it->string, it->bidi_it.string.lstring));
7235 xassert (IT_STRING_CHARPOS (*it) >= 0);
7236 position = it->current.string_pos;
7237
7238 /* With bidi reordering, the character to display might not be the
7239 character at IT_STRING_CHARPOS. BIDI_IT.FIRST_ELT non-zero means
7240 that we were reseat()ed to a new string, whose paragraph
7241 direction is not known. */
7242 if (it->bidi_p && it->bidi_it.first_elt)
7243 {
7244 get_visually_first_element (it);
7245 SET_TEXT_POS (position, IT_STRING_CHARPOS (*it), IT_STRING_BYTEPOS (*it));
7246 }
7247
7248 /* Time to check for invisible text? */
7249 if (IT_STRING_CHARPOS (*it) < it->end_charpos)
7250 {
7251 if (IT_STRING_CHARPOS (*it) >= it->stop_charpos)
7252 {
7253 if (!(!it->bidi_p
7254 || BIDI_AT_BASE_LEVEL (it->bidi_it)
7255 || IT_STRING_CHARPOS (*it) == it->stop_charpos))
7256 {
7257 /* With bidi non-linear iteration, we could find
7258 ourselves far beyond the last computed stop_charpos,
7259 with several other stop positions in between that we
7260 missed. Scan them all now, in buffer's logical
7261 order, until we find and handle the last stop_charpos
7262 that precedes our current position. */
7263 handle_stop_backwards (it, it->stop_charpos);
7264 return GET_NEXT_DISPLAY_ELEMENT (it);
7265 }
7266 else
7267 {
7268 if (it->bidi_p)
7269 {
7270 /* Take note of the stop position we just moved
7271 across, for when we will move back across it. */
7272 it->prev_stop = it->stop_charpos;
7273 /* If we are at base paragraph embedding level, take
7274 note of the last stop position seen at this
7275 level. */
7276 if (BIDI_AT_BASE_LEVEL (it->bidi_it))
7277 it->base_level_stop = it->stop_charpos;
7278 }
7279 handle_stop (it);
7280
7281 /* Since a handler may have changed IT->method, we must
7282 recurse here. */
7283 return GET_NEXT_DISPLAY_ELEMENT (it);
7284 }
7285 }
7286 else if (it->bidi_p
7287 /* If we are before prev_stop, we may have overstepped
7288 on our way backwards a stop_pos, and if so, we need
7289 to handle that stop_pos. */
7290 && IT_STRING_CHARPOS (*it) < it->prev_stop
7291 /* We can sometimes back up for reasons that have nothing
7292 to do with bidi reordering. E.g., compositions. The
7293 code below is only needed when we are above the base
7294 embedding level, so test for that explicitly. */
7295 && !BIDI_AT_BASE_LEVEL (it->bidi_it))
7296 {
7297 /* If we lost track of base_level_stop, we have no better
7298 place for handle_stop_backwards to start from than string
7299 beginning. This happens, e.g., when we were reseated to
7300 the previous screenful of text by vertical-motion. */
7301 if (it->base_level_stop <= 0
7302 || IT_STRING_CHARPOS (*it) < it->base_level_stop)
7303 it->base_level_stop = 0;
7304 handle_stop_backwards (it, it->base_level_stop);
7305 return GET_NEXT_DISPLAY_ELEMENT (it);
7306 }
7307 }
7308
7309 if (it->current.overlay_string_index >= 0)
7310 {
7311 /* Get the next character from an overlay string. In overlay
7312 strings, There is no field width or padding with spaces to
7313 do. */
7314 if (IT_STRING_CHARPOS (*it) >= SCHARS (it->string))
7315 {
7316 it->what = IT_EOB;
7317 return 0;
7318 }
7319 else if (CHAR_COMPOSED_P (it, IT_STRING_CHARPOS (*it),
7320 IT_STRING_BYTEPOS (*it),
7321 it->bidi_it.scan_dir < 0
7322 ? -1
7323 : SCHARS (it->string))
7324 && next_element_from_composition (it))
7325 {
7326 return 1;
7327 }
7328 else if (STRING_MULTIBYTE (it->string))
7329 {
7330 const unsigned char *s = (SDATA (it->string)
7331 + IT_STRING_BYTEPOS (*it));
7332 it->c = string_char_and_length (s, &it->len);
7333 }
7334 else
7335 {
7336 it->c = SREF (it->string, IT_STRING_BYTEPOS (*it));
7337 it->len = 1;
7338 }
7339 }
7340 else
7341 {
7342 /* Get the next character from a Lisp string that is not an
7343 overlay string. Such strings come from the mode line, for
7344 example. We may have to pad with spaces, or truncate the
7345 string. See also next_element_from_c_string. */
7346 if (IT_STRING_CHARPOS (*it) >= it->end_charpos)
7347 {
7348 it->what = IT_EOB;
7349 return 0;
7350 }
7351 else if (IT_STRING_CHARPOS (*it) >= it->string_nchars)
7352 {
7353 /* Pad with spaces. */
7354 it->c = ' ', it->len = 1;
7355 CHARPOS (position) = BYTEPOS (position) = -1;
7356 }
7357 else if (CHAR_COMPOSED_P (it, IT_STRING_CHARPOS (*it),
7358 IT_STRING_BYTEPOS (*it),
7359 it->bidi_it.scan_dir < 0
7360 ? -1
7361 : it->string_nchars)
7362 && next_element_from_composition (it))
7363 {
7364 return 1;
7365 }
7366 else if (STRING_MULTIBYTE (it->string))
7367 {
7368 const unsigned char *s = (SDATA (it->string)
7369 + IT_STRING_BYTEPOS (*it));
7370 it->c = string_char_and_length (s, &it->len);
7371 }
7372 else
7373 {
7374 it->c = SREF (it->string, IT_STRING_BYTEPOS (*it));
7375 it->len = 1;
7376 }
7377 }
7378
7379 /* Record what we have and where it came from. */
7380 it->what = IT_CHARACTER;
7381 it->object = it->string;
7382 it->position = position;
7383 return 1;
7384 }
7385
7386
7387 /* Load IT with next display element from C string IT->s.
7388 IT->string_nchars is the maximum number of characters to return
7389 from the string. IT->end_charpos may be greater than
7390 IT->string_nchars when this function is called, in which case we
7391 may have to return padding spaces. Value is zero if end of string
7392 reached, including padding spaces. */
7393
7394 static int
7395 next_element_from_c_string (struct it *it)
7396 {
7397 int success_p = 1;
7398
7399 xassert (it->s);
7400 xassert (!it->bidi_p || it->s == it->bidi_it.string.s);
7401 it->what = IT_CHARACTER;
7402 BYTEPOS (it->position) = CHARPOS (it->position) = 0;
7403 it->object = Qnil;
7404
7405 /* With bidi reordering, the character to display might not be the
7406 character at IT_CHARPOS. BIDI_IT.FIRST_ELT non-zero means that
7407 we were reseated to a new string, whose paragraph direction is
7408 not known. */
7409 if (it->bidi_p && it->bidi_it.first_elt)
7410 get_visually_first_element (it);
7411
7412 /* IT's position can be greater than IT->string_nchars in case a
7413 field width or precision has been specified when the iterator was
7414 initialized. */
7415 if (IT_CHARPOS (*it) >= it->end_charpos)
7416 {
7417 /* End of the game. */
7418 it->what = IT_EOB;
7419 success_p = 0;
7420 }
7421 else if (IT_CHARPOS (*it) >= it->string_nchars)
7422 {
7423 /* Pad with spaces. */
7424 it->c = ' ', it->len = 1;
7425 BYTEPOS (it->position) = CHARPOS (it->position) = -1;
7426 }
7427 else if (it->multibyte_p)
7428 it->c = string_char_and_length (it->s + IT_BYTEPOS (*it), &it->len);
7429 else
7430 it->c = it->s[IT_BYTEPOS (*it)], it->len = 1;
7431
7432 return success_p;
7433 }
7434
7435
7436 /* Set up IT to return characters from an ellipsis, if appropriate.
7437 The definition of the ellipsis glyphs may come from a display table
7438 entry. This function fills IT with the first glyph from the
7439 ellipsis if an ellipsis is to be displayed. */
7440
7441 static int
7442 next_element_from_ellipsis (struct it *it)
7443 {
7444 if (it->selective_display_ellipsis_p)
7445 setup_for_ellipsis (it, it->len);
7446 else
7447 {
7448 /* The face at the current position may be different from the
7449 face we find after the invisible text. Remember what it
7450 was in IT->saved_face_id, and signal that it's there by
7451 setting face_before_selective_p. */
7452 it->saved_face_id = it->face_id;
7453 it->method = GET_FROM_BUFFER;
7454 it->object = it->w->buffer;
7455 reseat_at_next_visible_line_start (it, 1);
7456 it->face_before_selective_p = 1;
7457 }
7458
7459 return GET_NEXT_DISPLAY_ELEMENT (it);
7460 }
7461
7462
7463 /* Deliver an image display element. The iterator IT is already
7464 filled with image information (done in handle_display_prop). Value
7465 is always 1. */
7466
7467
7468 static int
7469 next_element_from_image (struct it *it)
7470 {
7471 it->what = IT_IMAGE;
7472 it->ignore_overlay_strings_at_pos_p = 0;
7473 return 1;
7474 }
7475
7476
7477 /* Fill iterator IT with next display element from a stretch glyph
7478 property. IT->object is the value of the text property. Value is
7479 always 1. */
7480
7481 static int
7482 next_element_from_stretch (struct it *it)
7483 {
7484 it->what = IT_STRETCH;
7485 return 1;
7486 }
7487
7488 /* Scan backwards from IT's current position until we find a stop
7489 position, or until BEGV. This is called when we find ourself
7490 before both the last known prev_stop and base_level_stop while
7491 reordering bidirectional text. */
7492
7493 static void
7494 compute_stop_pos_backwards (struct it *it)
7495 {
7496 const int SCAN_BACK_LIMIT = 1000;
7497 struct text_pos pos;
7498 struct display_pos save_current = it->current;
7499 struct text_pos save_position = it->position;
7500 EMACS_INT charpos = IT_CHARPOS (*it);
7501 EMACS_INT where_we_are = charpos;
7502 EMACS_INT save_stop_pos = it->stop_charpos;
7503 EMACS_INT save_end_pos = it->end_charpos;
7504
7505 xassert (NILP (it->string) && !it->s);
7506 xassert (it->bidi_p);
7507 it->bidi_p = 0;
7508 do
7509 {
7510 it->end_charpos = min (charpos + 1, ZV);
7511 charpos = max (charpos - SCAN_BACK_LIMIT, BEGV);
7512 SET_TEXT_POS (pos, charpos, BYTE_TO_CHAR (charpos));
7513 reseat_1 (it, pos, 0);
7514 compute_stop_pos (it);
7515 /* We must advance forward, right? */
7516 if (it->stop_charpos <= charpos)
7517 abort ();
7518 }
7519 while (charpos > BEGV && it->stop_charpos >= it->end_charpos);
7520
7521 if (it->stop_charpos <= where_we_are)
7522 it->prev_stop = it->stop_charpos;
7523 else
7524 it->prev_stop = BEGV;
7525 it->bidi_p = 1;
7526 it->current = save_current;
7527 it->position = save_position;
7528 it->stop_charpos = save_stop_pos;
7529 it->end_charpos = save_end_pos;
7530 }
7531
7532 /* Scan forward from CHARPOS in the current buffer/string, until we
7533 find a stop position > current IT's position. Then handle the stop
7534 position before that. This is called when we bump into a stop
7535 position while reordering bidirectional text. CHARPOS should be
7536 the last previously processed stop_pos (or BEGV/0, if none were
7537 processed yet) whose position is less that IT's current
7538 position. */
7539
7540 static void
7541 handle_stop_backwards (struct it *it, EMACS_INT charpos)
7542 {
7543 int bufp = !STRINGP (it->string);
7544 EMACS_INT where_we_are = (bufp ? IT_CHARPOS (*it) : IT_STRING_CHARPOS (*it));
7545 struct display_pos save_current = it->current;
7546 struct text_pos save_position = it->position;
7547 struct text_pos pos1;
7548 EMACS_INT next_stop;
7549
7550 /* Scan in strict logical order. */
7551 xassert (it->bidi_p);
7552 it->bidi_p = 0;
7553 do
7554 {
7555 it->prev_stop = charpos;
7556 if (bufp)
7557 {
7558 SET_TEXT_POS (pos1, charpos, CHAR_TO_BYTE (charpos));
7559 reseat_1 (it, pos1, 0);
7560 }
7561 else
7562 it->current.string_pos = string_pos (charpos, it->string);
7563 compute_stop_pos (it);
7564 /* We must advance forward, right? */
7565 if (it->stop_charpos <= it->prev_stop)
7566 abort ();
7567 charpos = it->stop_charpos;
7568 }
7569 while (charpos <= where_we_are);
7570
7571 it->bidi_p = 1;
7572 it->current = save_current;
7573 it->position = save_position;
7574 next_stop = it->stop_charpos;
7575 it->stop_charpos = it->prev_stop;
7576 handle_stop (it);
7577 it->stop_charpos = next_stop;
7578 }
7579
7580 /* Load IT with the next display element from current_buffer. Value
7581 is zero if end of buffer reached. IT->stop_charpos is the next
7582 position at which to stop and check for text properties or buffer
7583 end. */
7584
7585 static int
7586 next_element_from_buffer (struct it *it)
7587 {
7588 int success_p = 1;
7589
7590 xassert (IT_CHARPOS (*it) >= BEGV);
7591 xassert (NILP (it->string) && !it->s);
7592 xassert (!it->bidi_p
7593 || (EQ (it->bidi_it.string.lstring, Qnil)
7594 && it->bidi_it.string.s == NULL));
7595
7596 /* With bidi reordering, the character to display might not be the
7597 character at IT_CHARPOS. BIDI_IT.FIRST_ELT non-zero means that
7598 we were reseat()ed to a new buffer position, which is potentially
7599 a different paragraph. */
7600 if (it->bidi_p && it->bidi_it.first_elt)
7601 {
7602 get_visually_first_element (it);
7603 SET_TEXT_POS (it->position, IT_CHARPOS (*it), IT_BYTEPOS (*it));
7604 }
7605
7606 if (IT_CHARPOS (*it) >= it->stop_charpos)
7607 {
7608 if (IT_CHARPOS (*it) >= it->end_charpos)
7609 {
7610 int overlay_strings_follow_p;
7611
7612 /* End of the game, except when overlay strings follow that
7613 haven't been returned yet. */
7614 if (it->overlay_strings_at_end_processed_p)
7615 overlay_strings_follow_p = 0;
7616 else
7617 {
7618 it->overlay_strings_at_end_processed_p = 1;
7619 overlay_strings_follow_p = get_overlay_strings (it, 0);
7620 }
7621
7622 if (overlay_strings_follow_p)
7623 success_p = GET_NEXT_DISPLAY_ELEMENT (it);
7624 else
7625 {
7626 it->what = IT_EOB;
7627 it->position = it->current.pos;
7628 success_p = 0;
7629 }
7630 }
7631 else if (!(!it->bidi_p
7632 || BIDI_AT_BASE_LEVEL (it->bidi_it)
7633 || IT_CHARPOS (*it) == it->stop_charpos))
7634 {
7635 /* With bidi non-linear iteration, we could find ourselves
7636 far beyond the last computed stop_charpos, with several
7637 other stop positions in between that we missed. Scan
7638 them all now, in buffer's logical order, until we find
7639 and handle the last stop_charpos that precedes our
7640 current position. */
7641 handle_stop_backwards (it, it->stop_charpos);
7642 return GET_NEXT_DISPLAY_ELEMENT (it);
7643 }
7644 else
7645 {
7646 if (it->bidi_p)
7647 {
7648 /* Take note of the stop position we just moved across,
7649 for when we will move back across it. */
7650 it->prev_stop = it->stop_charpos;
7651 /* If we are at base paragraph embedding level, take
7652 note of the last stop position seen at this
7653 level. */
7654 if (BIDI_AT_BASE_LEVEL (it->bidi_it))
7655 it->base_level_stop = it->stop_charpos;
7656 }
7657 handle_stop (it);
7658 return GET_NEXT_DISPLAY_ELEMENT (it);
7659 }
7660 }
7661 else if (it->bidi_p
7662 /* If we are before prev_stop, we may have overstepped on
7663 our way backwards a stop_pos, and if so, we need to
7664 handle that stop_pos. */
7665 && IT_CHARPOS (*it) < it->prev_stop
7666 /* We can sometimes back up for reasons that have nothing
7667 to do with bidi reordering. E.g., compositions. The
7668 code below is only needed when we are above the base
7669 embedding level, so test for that explicitly. */
7670 && !BIDI_AT_BASE_LEVEL (it->bidi_it))
7671 {
7672 if (it->base_level_stop <= 0
7673 || IT_CHARPOS (*it) < it->base_level_stop)
7674 {
7675 /* If we lost track of base_level_stop, we need to find
7676 prev_stop by looking backwards. This happens, e.g., when
7677 we were reseated to the previous screenful of text by
7678 vertical-motion. */
7679 it->base_level_stop = BEGV;
7680 compute_stop_pos_backwards (it);
7681 handle_stop_backwards (it, it->prev_stop);
7682 }
7683 else
7684 handle_stop_backwards (it, it->base_level_stop);
7685 return GET_NEXT_DISPLAY_ELEMENT (it);
7686 }
7687 else
7688 {
7689 /* No face changes, overlays etc. in sight, so just return a
7690 character from current_buffer. */
7691 unsigned char *p;
7692 EMACS_INT stop;
7693
7694 /* Maybe run the redisplay end trigger hook. Performance note:
7695 This doesn't seem to cost measurable time. */
7696 if (it->redisplay_end_trigger_charpos
7697 && it->glyph_row
7698 && IT_CHARPOS (*it) >= it->redisplay_end_trigger_charpos)
7699 run_redisplay_end_trigger_hook (it);
7700
7701 stop = it->bidi_it.scan_dir < 0 ? -1 : it->end_charpos;
7702 if (CHAR_COMPOSED_P (it, IT_CHARPOS (*it), IT_BYTEPOS (*it),
7703 stop)
7704 && next_element_from_composition (it))
7705 {
7706 return 1;
7707 }
7708
7709 /* Get the next character, maybe multibyte. */
7710 p = BYTE_POS_ADDR (IT_BYTEPOS (*it));
7711 if (it->multibyte_p && !ASCII_BYTE_P (*p))
7712 it->c = STRING_CHAR_AND_LENGTH (p, it->len);
7713 else
7714 it->c = *p, it->len = 1;
7715
7716 /* Record what we have and where it came from. */
7717 it->what = IT_CHARACTER;
7718 it->object = it->w->buffer;
7719 it->position = it->current.pos;
7720
7721 /* Normally we return the character found above, except when we
7722 really want to return an ellipsis for selective display. */
7723 if (it->selective)
7724 {
7725 if (it->c == '\n')
7726 {
7727 /* A value of selective > 0 means hide lines indented more
7728 than that number of columns. */
7729 if (it->selective > 0
7730 && IT_CHARPOS (*it) + 1 < ZV
7731 && indented_beyond_p (IT_CHARPOS (*it) + 1,
7732 IT_BYTEPOS (*it) + 1,
7733 it->selective))
7734 {
7735 success_p = next_element_from_ellipsis (it);
7736 it->dpvec_char_len = -1;
7737 }
7738 }
7739 else if (it->c == '\r' && it->selective == -1)
7740 {
7741 /* A value of selective == -1 means that everything from the
7742 CR to the end of the line is invisible, with maybe an
7743 ellipsis displayed for it. */
7744 success_p = next_element_from_ellipsis (it);
7745 it->dpvec_char_len = -1;
7746 }
7747 }
7748 }
7749
7750 /* Value is zero if end of buffer reached. */
7751 xassert (!success_p || it->what != IT_CHARACTER || it->len > 0);
7752 return success_p;
7753 }
7754
7755
7756 /* Run the redisplay end trigger hook for IT. */
7757
7758 static void
7759 run_redisplay_end_trigger_hook (struct it *it)
7760 {
7761 Lisp_Object args[3];
7762
7763 /* IT->glyph_row should be non-null, i.e. we should be actually
7764 displaying something, or otherwise we should not run the hook. */
7765 xassert (it->glyph_row);
7766
7767 /* Set up hook arguments. */
7768 args[0] = Qredisplay_end_trigger_functions;
7769 args[1] = it->window;
7770 XSETINT (args[2], it->redisplay_end_trigger_charpos);
7771 it->redisplay_end_trigger_charpos = 0;
7772
7773 /* Since we are *trying* to run these functions, don't try to run
7774 them again, even if they get an error. */
7775 it->w->redisplay_end_trigger = Qnil;
7776 Frun_hook_with_args (3, args);
7777
7778 /* Notice if it changed the face of the character we are on. */
7779 handle_face_prop (it);
7780 }
7781
7782
7783 /* Deliver a composition display element. Unlike the other
7784 next_element_from_XXX, this function is not registered in the array
7785 get_next_element[]. It is called from next_element_from_buffer and
7786 next_element_from_string when necessary. */
7787
7788 static int
7789 next_element_from_composition (struct it *it)
7790 {
7791 it->what = IT_COMPOSITION;
7792 it->len = it->cmp_it.nbytes;
7793 if (STRINGP (it->string))
7794 {
7795 if (it->c < 0)
7796 {
7797 IT_STRING_CHARPOS (*it) += it->cmp_it.nchars;
7798 IT_STRING_BYTEPOS (*it) += it->cmp_it.nbytes;
7799 return 0;
7800 }
7801 it->position = it->current.string_pos;
7802 it->object = it->string;
7803 it->c = composition_update_it (&it->cmp_it, IT_STRING_CHARPOS (*it),
7804 IT_STRING_BYTEPOS (*it), it->string);
7805 }
7806 else
7807 {
7808 if (it->c < 0)
7809 {
7810 IT_CHARPOS (*it) += it->cmp_it.nchars;
7811 IT_BYTEPOS (*it) += it->cmp_it.nbytes;
7812 if (it->bidi_p)
7813 {
7814 if (it->bidi_it.new_paragraph)
7815 bidi_paragraph_init (it->paragraph_embedding, &it->bidi_it, 0);
7816 /* Resync the bidi iterator with IT's new position.
7817 FIXME: this doesn't support bidirectional text. */
7818 while (it->bidi_it.charpos < IT_CHARPOS (*it))
7819 bidi_move_to_visually_next (&it->bidi_it);
7820 }
7821 return 0;
7822 }
7823 it->position = it->current.pos;
7824 it->object = it->w->buffer;
7825 it->c = composition_update_it (&it->cmp_it, IT_CHARPOS (*it),
7826 IT_BYTEPOS (*it), Qnil);
7827 }
7828 return 1;
7829 }
7830
7831
7832 \f
7833 /***********************************************************************
7834 Moving an iterator without producing glyphs
7835 ***********************************************************************/
7836
7837 /* Check if iterator is at a position corresponding to a valid buffer
7838 position after some move_it_ call. */
7839
7840 #define IT_POS_VALID_AFTER_MOVE_P(it) \
7841 ((it)->method == GET_FROM_STRING \
7842 ? IT_STRING_CHARPOS (*it) == 0 \
7843 : 1)
7844
7845
7846 /* Move iterator IT to a specified buffer or X position within one
7847 line on the display without producing glyphs.
7848
7849 OP should be a bit mask including some or all of these bits:
7850 MOVE_TO_X: Stop upon reaching x-position TO_X.
7851 MOVE_TO_POS: Stop upon reaching buffer or string position TO_CHARPOS.
7852 Regardless of OP's value, stop upon reaching the end of the display line.
7853
7854 TO_X is normally a value 0 <= TO_X <= IT->last_visible_x.
7855 This means, in particular, that TO_X includes window's horizontal
7856 scroll amount.
7857
7858 The return value has several possible values that
7859 say what condition caused the scan to stop:
7860
7861 MOVE_POS_MATCH_OR_ZV
7862 - when TO_POS or ZV was reached.
7863
7864 MOVE_X_REACHED
7865 -when TO_X was reached before TO_POS or ZV were reached.
7866
7867 MOVE_LINE_CONTINUED
7868 - when we reached the end of the display area and the line must
7869 be continued.
7870
7871 MOVE_LINE_TRUNCATED
7872 - when we reached the end of the display area and the line is
7873 truncated.
7874
7875 MOVE_NEWLINE_OR_CR
7876 - when we stopped at a line end, i.e. a newline or a CR and selective
7877 display is on. */
7878
7879 static enum move_it_result
7880 move_it_in_display_line_to (struct it *it,
7881 EMACS_INT to_charpos, int to_x,
7882 enum move_operation_enum op)
7883 {
7884 enum move_it_result result = MOVE_UNDEFINED;
7885 struct glyph_row *saved_glyph_row;
7886 struct it wrap_it, atpos_it, atx_it, ppos_it;
7887 void *wrap_data = NULL, *atpos_data = NULL, *atx_data = NULL;
7888 void *ppos_data = NULL;
7889 int may_wrap = 0;
7890 enum it_method prev_method = it->method;
7891 EMACS_INT prev_pos = IT_CHARPOS (*it);
7892 int saw_smaller_pos = prev_pos < to_charpos;
7893
7894 /* Don't produce glyphs in produce_glyphs. */
7895 saved_glyph_row = it->glyph_row;
7896 it->glyph_row = NULL;
7897
7898 /* Use wrap_it to save a copy of IT wherever a word wrap could
7899 occur. Use atpos_it to save a copy of IT at the desired buffer
7900 position, if found, so that we can scan ahead and check if the
7901 word later overshoots the window edge. Use atx_it similarly, for
7902 pixel positions. */
7903 wrap_it.sp = -1;
7904 atpos_it.sp = -1;
7905 atx_it.sp = -1;
7906
7907 /* Use ppos_it under bidi reordering to save a copy of IT for the
7908 position > CHARPOS that is the closest to CHARPOS. We restore
7909 that position in IT when we have scanned the entire display line
7910 without finding a match for CHARPOS and all the character
7911 positions are greater than CHARPOS. */
7912 if (it->bidi_p)
7913 {
7914 SAVE_IT (ppos_it, *it, ppos_data);
7915 SET_TEXT_POS (ppos_it.current.pos, ZV, ZV_BYTE);
7916 if ((op & MOVE_TO_POS) && IT_CHARPOS (*it) >= to_charpos)
7917 SAVE_IT (ppos_it, *it, ppos_data);
7918 }
7919
7920 #define BUFFER_POS_REACHED_P() \
7921 ((op & MOVE_TO_POS) != 0 \
7922 && BUFFERP (it->object) \
7923 && (IT_CHARPOS (*it) == to_charpos \
7924 || ((!it->bidi_p \
7925 || BIDI_AT_BASE_LEVEL (it->bidi_it)) \
7926 && IT_CHARPOS (*it) > to_charpos) \
7927 || (it->what == IT_COMPOSITION \
7928 && ((IT_CHARPOS (*it) > to_charpos \
7929 && to_charpos >= it->cmp_it.charpos) \
7930 || (IT_CHARPOS (*it) < to_charpos \
7931 && to_charpos <= it->cmp_it.charpos)))) \
7932 && (it->method == GET_FROM_BUFFER \
7933 || (it->method == GET_FROM_DISPLAY_VECTOR \
7934 && it->dpvec + it->current.dpvec_index + 1 >= it->dpend)))
7935
7936 /* If there's a line-/wrap-prefix, handle it. */
7937 if (it->hpos == 0 && it->method == GET_FROM_BUFFER
7938 && it->current_y < it->last_visible_y)
7939 handle_line_prefix (it);
7940
7941 if (IT_CHARPOS (*it) < CHARPOS (this_line_min_pos))
7942 SET_TEXT_POS (this_line_min_pos, IT_CHARPOS (*it), IT_BYTEPOS (*it));
7943
7944 while (1)
7945 {
7946 int x, i, ascent = 0, descent = 0;
7947
7948 /* Utility macro to reset an iterator with x, ascent, and descent. */
7949 #define IT_RESET_X_ASCENT_DESCENT(IT) \
7950 ((IT)->current_x = x, (IT)->max_ascent = ascent, \
7951 (IT)->max_descent = descent)
7952
7953 /* Stop if we move beyond TO_CHARPOS (after an image or a
7954 display string or stretch glyph). */
7955 if ((op & MOVE_TO_POS) != 0
7956 && BUFFERP (it->object)
7957 && it->method == GET_FROM_BUFFER
7958 && (((!it->bidi_p
7959 /* When the iterator is at base embedding level, we
7960 are guaranteed that characters are delivered for
7961 display in strictly increasing order of their
7962 buffer positions. */
7963 || BIDI_AT_BASE_LEVEL (it->bidi_it))
7964 && IT_CHARPOS (*it) > to_charpos)
7965 || (it->bidi_p
7966 && (prev_method == GET_FROM_IMAGE
7967 || prev_method == GET_FROM_STRETCH
7968 || prev_method == GET_FROM_STRING)
7969 /* Passed TO_CHARPOS from left to right. */
7970 && ((prev_pos < to_charpos
7971 && IT_CHARPOS (*it) > to_charpos)
7972 /* Passed TO_CHARPOS from right to left. */
7973 || (prev_pos > to_charpos
7974 && IT_CHARPOS (*it) < to_charpos)))))
7975 {
7976 if (it->line_wrap != WORD_WRAP || wrap_it.sp < 0)
7977 {
7978 result = MOVE_POS_MATCH_OR_ZV;
7979 break;
7980 }
7981 else if (it->line_wrap == WORD_WRAP && atpos_it.sp < 0)
7982 /* If wrap_it is valid, the current position might be in a
7983 word that is wrapped. So, save the iterator in
7984 atpos_it and continue to see if wrapping happens. */
7985 SAVE_IT (atpos_it, *it, atpos_data);
7986 }
7987
7988 /* Stop when ZV reached.
7989 We used to stop here when TO_CHARPOS reached as well, but that is
7990 too soon if this glyph does not fit on this line. So we handle it
7991 explicitly below. */
7992 if (!get_next_display_element (it))
7993 {
7994 result = MOVE_POS_MATCH_OR_ZV;
7995 break;
7996 }
7997
7998 if (it->line_wrap == TRUNCATE)
7999 {
8000 if (BUFFER_POS_REACHED_P ())
8001 {
8002 result = MOVE_POS_MATCH_OR_ZV;
8003 break;
8004 }
8005 }
8006 else
8007 {
8008 if (it->line_wrap == WORD_WRAP)
8009 {
8010 if (IT_DISPLAYING_WHITESPACE (it))
8011 may_wrap = 1;
8012 else if (may_wrap)
8013 {
8014 /* We have reached a glyph that follows one or more
8015 whitespace characters. If the position is
8016 already found, we are done. */
8017 if (atpos_it.sp >= 0)
8018 {
8019 RESTORE_IT (it, &atpos_it, atpos_data);
8020 result = MOVE_POS_MATCH_OR_ZV;
8021 goto done;
8022 }
8023 if (atx_it.sp >= 0)
8024 {
8025 RESTORE_IT (it, &atx_it, atx_data);
8026 result = MOVE_X_REACHED;
8027 goto done;
8028 }
8029 /* Otherwise, we can wrap here. */
8030 SAVE_IT (wrap_it, *it, wrap_data);
8031 may_wrap = 0;
8032 }
8033 }
8034 }
8035
8036 /* Remember the line height for the current line, in case
8037 the next element doesn't fit on the line. */
8038 ascent = it->max_ascent;
8039 descent = it->max_descent;
8040
8041 /* The call to produce_glyphs will get the metrics of the
8042 display element IT is loaded with. Record the x-position
8043 before this display element, in case it doesn't fit on the
8044 line. */
8045 x = it->current_x;
8046
8047 PRODUCE_GLYPHS (it);
8048
8049 if (it->area != TEXT_AREA)
8050 {
8051 prev_method = it->method;
8052 if (it->method == GET_FROM_BUFFER)
8053 prev_pos = IT_CHARPOS (*it);
8054 set_iterator_to_next (it, 1);
8055 if (IT_CHARPOS (*it) < CHARPOS (this_line_min_pos))
8056 SET_TEXT_POS (this_line_min_pos,
8057 IT_CHARPOS (*it), IT_BYTEPOS (*it));
8058 if (it->bidi_p
8059 && (op & MOVE_TO_POS)
8060 && IT_CHARPOS (*it) > to_charpos
8061 && IT_CHARPOS (*it) < IT_CHARPOS (ppos_it))
8062 SAVE_IT (ppos_it, *it, ppos_data);
8063 continue;
8064 }
8065
8066 /* The number of glyphs we get back in IT->nglyphs will normally
8067 be 1 except when IT->c is (i) a TAB, or (ii) a multi-glyph
8068 character on a terminal frame, or (iii) a line end. For the
8069 second case, IT->nglyphs - 1 padding glyphs will be present.
8070 (On X frames, there is only one glyph produced for a
8071 composite character.)
8072
8073 The behavior implemented below means, for continuation lines,
8074 that as many spaces of a TAB as fit on the current line are
8075 displayed there. For terminal frames, as many glyphs of a
8076 multi-glyph character are displayed in the current line, too.
8077 This is what the old redisplay code did, and we keep it that
8078 way. Under X, the whole shape of a complex character must
8079 fit on the line or it will be completely displayed in the
8080 next line.
8081
8082 Note that both for tabs and padding glyphs, all glyphs have
8083 the same width. */
8084 if (it->nglyphs)
8085 {
8086 /* More than one glyph or glyph doesn't fit on line. All
8087 glyphs have the same width. */
8088 int single_glyph_width = it->pixel_width / it->nglyphs;
8089 int new_x;
8090 int x_before_this_char = x;
8091 int hpos_before_this_char = it->hpos;
8092
8093 for (i = 0; i < it->nglyphs; ++i, x = new_x)
8094 {
8095 new_x = x + single_glyph_width;
8096
8097 /* We want to leave anything reaching TO_X to the caller. */
8098 if ((op & MOVE_TO_X) && new_x > to_x)
8099 {
8100 if (BUFFER_POS_REACHED_P ())
8101 {
8102 if (it->line_wrap != WORD_WRAP || wrap_it.sp < 0)
8103 goto buffer_pos_reached;
8104 if (atpos_it.sp < 0)
8105 {
8106 SAVE_IT (atpos_it, *it, atpos_data);
8107 IT_RESET_X_ASCENT_DESCENT (&atpos_it);
8108 }
8109 }
8110 else
8111 {
8112 if (it->line_wrap != WORD_WRAP || wrap_it.sp < 0)
8113 {
8114 it->current_x = x;
8115 result = MOVE_X_REACHED;
8116 break;
8117 }
8118 if (atx_it.sp < 0)
8119 {
8120 SAVE_IT (atx_it, *it, atx_data);
8121 IT_RESET_X_ASCENT_DESCENT (&atx_it);
8122 }
8123 }
8124 }
8125
8126 if (/* Lines are continued. */
8127 it->line_wrap != TRUNCATE
8128 && (/* And glyph doesn't fit on the line. */
8129 new_x > it->last_visible_x
8130 /* Or it fits exactly and we're on a window
8131 system frame. */
8132 || (new_x == it->last_visible_x
8133 && FRAME_WINDOW_P (it->f))))
8134 {
8135 if (/* IT->hpos == 0 means the very first glyph
8136 doesn't fit on the line, e.g. a wide image. */
8137 it->hpos == 0
8138 || (new_x == it->last_visible_x
8139 && FRAME_WINDOW_P (it->f)))
8140 {
8141 ++it->hpos;
8142 it->current_x = new_x;
8143
8144 /* The character's last glyph just barely fits
8145 in this row. */
8146 if (i == it->nglyphs - 1)
8147 {
8148 /* If this is the destination position,
8149 return a position *before* it in this row,
8150 now that we know it fits in this row. */
8151 if (BUFFER_POS_REACHED_P ())
8152 {
8153 if (it->line_wrap != WORD_WRAP
8154 || wrap_it.sp < 0)
8155 {
8156 it->hpos = hpos_before_this_char;
8157 it->current_x = x_before_this_char;
8158 result = MOVE_POS_MATCH_OR_ZV;
8159 break;
8160 }
8161 if (it->line_wrap == WORD_WRAP
8162 && atpos_it.sp < 0)
8163 {
8164 SAVE_IT (atpos_it, *it, atpos_data);
8165 atpos_it.current_x = x_before_this_char;
8166 atpos_it.hpos = hpos_before_this_char;
8167 }
8168 }
8169
8170 prev_method = it->method;
8171 if (it->method == GET_FROM_BUFFER)
8172 prev_pos = IT_CHARPOS (*it);
8173 set_iterator_to_next (it, 1);
8174 if (IT_CHARPOS (*it) < CHARPOS (this_line_min_pos))
8175 SET_TEXT_POS (this_line_min_pos,
8176 IT_CHARPOS (*it), IT_BYTEPOS (*it));
8177 /* On graphical terminals, newlines may
8178 "overflow" into the fringe if
8179 overflow-newline-into-fringe is non-nil.
8180 On text-only terminals, newlines may
8181 overflow into the last glyph on the
8182 display line.*/
8183 if (!FRAME_WINDOW_P (it->f)
8184 || IT_OVERFLOW_NEWLINE_INTO_FRINGE (it))
8185 {
8186 if (!get_next_display_element (it))
8187 {
8188 result = MOVE_POS_MATCH_OR_ZV;
8189 break;
8190 }
8191 if (BUFFER_POS_REACHED_P ())
8192 {
8193 if (ITERATOR_AT_END_OF_LINE_P (it))
8194 result = MOVE_POS_MATCH_OR_ZV;
8195 else
8196 result = MOVE_LINE_CONTINUED;
8197 break;
8198 }
8199 if (ITERATOR_AT_END_OF_LINE_P (it))
8200 {
8201 result = MOVE_NEWLINE_OR_CR;
8202 break;
8203 }
8204 }
8205 }
8206 }
8207 else
8208 IT_RESET_X_ASCENT_DESCENT (it);
8209
8210 if (wrap_it.sp >= 0)
8211 {
8212 RESTORE_IT (it, &wrap_it, wrap_data);
8213 atpos_it.sp = -1;
8214 atx_it.sp = -1;
8215 }
8216
8217 TRACE_MOVE ((stderr, "move_it_in: continued at %d\n",
8218 IT_CHARPOS (*it)));
8219 result = MOVE_LINE_CONTINUED;
8220 break;
8221 }
8222
8223 if (BUFFER_POS_REACHED_P ())
8224 {
8225 if (it->line_wrap != WORD_WRAP || wrap_it.sp < 0)
8226 goto buffer_pos_reached;
8227 if (it->line_wrap == WORD_WRAP && atpos_it.sp < 0)
8228 {
8229 SAVE_IT (atpos_it, *it, atpos_data);
8230 IT_RESET_X_ASCENT_DESCENT (&atpos_it);
8231 }
8232 }
8233
8234 if (new_x > it->first_visible_x)
8235 {
8236 /* Glyph is visible. Increment number of glyphs that
8237 would be displayed. */
8238 ++it->hpos;
8239 }
8240 }
8241
8242 if (result != MOVE_UNDEFINED)
8243 break;
8244 }
8245 else if (BUFFER_POS_REACHED_P ())
8246 {
8247 buffer_pos_reached:
8248 IT_RESET_X_ASCENT_DESCENT (it);
8249 result = MOVE_POS_MATCH_OR_ZV;
8250 break;
8251 }
8252 else if ((op & MOVE_TO_X) && it->current_x >= to_x)
8253 {
8254 /* Stop when TO_X specified and reached. This check is
8255 necessary here because of lines consisting of a line end,
8256 only. The line end will not produce any glyphs and we
8257 would never get MOVE_X_REACHED. */
8258 xassert (it->nglyphs == 0);
8259 result = MOVE_X_REACHED;
8260 break;
8261 }
8262
8263 /* Is this a line end? If yes, we're done. */
8264 if (ITERATOR_AT_END_OF_LINE_P (it))
8265 {
8266 /* If we are past TO_CHARPOS, but never saw any character
8267 positions smaller than TO_CHARPOS, return
8268 MOVE_POS_MATCH_OR_ZV, like the unidirectional display
8269 did. */
8270 if (it->bidi_p && (op & MOVE_TO_POS) != 0)
8271 {
8272 if (!saw_smaller_pos && IT_CHARPOS (*it) > to_charpos)
8273 {
8274 if (IT_CHARPOS (ppos_it) < ZV)
8275 {
8276 RESTORE_IT (it, &ppos_it, ppos_data);
8277 result = MOVE_POS_MATCH_OR_ZV;
8278 }
8279 else
8280 goto buffer_pos_reached;
8281 }
8282 else if (it->line_wrap == WORD_WRAP && atpos_it.sp >= 0
8283 && IT_CHARPOS (*it) > to_charpos)
8284 goto buffer_pos_reached;
8285 else
8286 result = MOVE_NEWLINE_OR_CR;
8287 }
8288 else
8289 result = MOVE_NEWLINE_OR_CR;
8290 break;
8291 }
8292
8293 prev_method = it->method;
8294 if (it->method == GET_FROM_BUFFER)
8295 prev_pos = IT_CHARPOS (*it);
8296 /* The current display element has been consumed. Advance
8297 to the next. */
8298 set_iterator_to_next (it, 1);
8299 if (IT_CHARPOS (*it) < CHARPOS (this_line_min_pos))
8300 SET_TEXT_POS (this_line_min_pos, IT_CHARPOS (*it), IT_BYTEPOS (*it));
8301 if (IT_CHARPOS (*it) < to_charpos)
8302 saw_smaller_pos = 1;
8303 if (it->bidi_p
8304 && (op & MOVE_TO_POS)
8305 && IT_CHARPOS (*it) >= to_charpos
8306 && IT_CHARPOS (*it) < IT_CHARPOS (ppos_it))
8307 SAVE_IT (ppos_it, *it, ppos_data);
8308
8309 /* Stop if lines are truncated and IT's current x-position is
8310 past the right edge of the window now. */
8311 if (it->line_wrap == TRUNCATE
8312 && it->current_x >= it->last_visible_x)
8313 {
8314 if (!FRAME_WINDOW_P (it->f)
8315 || IT_OVERFLOW_NEWLINE_INTO_FRINGE (it))
8316 {
8317 int at_eob_p = 0;
8318
8319 if ((at_eob_p = !get_next_display_element (it))
8320 || BUFFER_POS_REACHED_P ()
8321 /* If we are past TO_CHARPOS, but never saw any
8322 character positions smaller than TO_CHARPOS,
8323 return MOVE_POS_MATCH_OR_ZV, like the
8324 unidirectional display did. */
8325 || (it->bidi_p && (op & MOVE_TO_POS) != 0
8326 && !saw_smaller_pos
8327 && IT_CHARPOS (*it) > to_charpos))
8328 {
8329 if (it->bidi_p
8330 && !at_eob_p && IT_CHARPOS (ppos_it) < ZV)
8331 RESTORE_IT (it, &ppos_it, ppos_data);
8332 result = MOVE_POS_MATCH_OR_ZV;
8333 break;
8334 }
8335 if (ITERATOR_AT_END_OF_LINE_P (it))
8336 {
8337 result = MOVE_NEWLINE_OR_CR;
8338 break;
8339 }
8340 }
8341 else if (it->bidi_p && (op & MOVE_TO_POS) != 0
8342 && !saw_smaller_pos
8343 && IT_CHARPOS (*it) > to_charpos)
8344 {
8345 if (IT_CHARPOS (ppos_it) < ZV)
8346 RESTORE_IT (it, &ppos_it, ppos_data);
8347 result = MOVE_POS_MATCH_OR_ZV;
8348 break;
8349 }
8350 result = MOVE_LINE_TRUNCATED;
8351 break;
8352 }
8353 #undef IT_RESET_X_ASCENT_DESCENT
8354 }
8355
8356 #undef BUFFER_POS_REACHED_P
8357
8358 /* If we scanned beyond to_pos and didn't find a point to wrap at,
8359 restore the saved iterator. */
8360 if (atpos_it.sp >= 0)
8361 RESTORE_IT (it, &atpos_it, atpos_data);
8362 else if (atx_it.sp >= 0)
8363 RESTORE_IT (it, &atx_it, atx_data);
8364
8365 done:
8366
8367 if (atpos_data)
8368 bidi_unshelve_cache (atpos_data, 1);
8369 if (atx_data)
8370 bidi_unshelve_cache (atx_data, 1);
8371 if (wrap_data)
8372 bidi_unshelve_cache (wrap_data, 1);
8373 if (ppos_data)
8374 bidi_unshelve_cache (ppos_data, 1);
8375
8376 /* Restore the iterator settings altered at the beginning of this
8377 function. */
8378 it->glyph_row = saved_glyph_row;
8379 return result;
8380 }
8381
8382 /* For external use. */
8383 void
8384 move_it_in_display_line (struct it *it,
8385 EMACS_INT to_charpos, int to_x,
8386 enum move_operation_enum op)
8387 {
8388 if (it->line_wrap == WORD_WRAP
8389 && (op & MOVE_TO_X))
8390 {
8391 struct it save_it;
8392 void *save_data = NULL;
8393 int skip;
8394
8395 SAVE_IT (save_it, *it, save_data);
8396 skip = move_it_in_display_line_to (it, to_charpos, to_x, op);
8397 /* When word-wrap is on, TO_X may lie past the end
8398 of a wrapped line. Then it->current is the
8399 character on the next line, so backtrack to the
8400 space before the wrap point. */
8401 if (skip == MOVE_LINE_CONTINUED)
8402 {
8403 int prev_x = max (it->current_x - 1, 0);
8404 RESTORE_IT (it, &save_it, save_data);
8405 move_it_in_display_line_to
8406 (it, -1, prev_x, MOVE_TO_X);
8407 }
8408 else
8409 bidi_unshelve_cache (save_data, 1);
8410 }
8411 else
8412 move_it_in_display_line_to (it, to_charpos, to_x, op);
8413 }
8414
8415
8416 /* Move IT forward until it satisfies one or more of the criteria in
8417 TO_CHARPOS, TO_X, TO_Y, and TO_VPOS.
8418
8419 OP is a bit-mask that specifies where to stop, and in particular,
8420 which of those four position arguments makes a difference. See the
8421 description of enum move_operation_enum.
8422
8423 If TO_CHARPOS is in invisible text, e.g. a truncated part of a
8424 screen line, this function will set IT to the next position that is
8425 displayed to the right of TO_CHARPOS on the screen. */
8426
8427 void
8428 move_it_to (struct it *it, EMACS_INT to_charpos, int to_x, int to_y, int to_vpos, int op)
8429 {
8430 enum move_it_result skip, skip2 = MOVE_X_REACHED;
8431 int line_height, line_start_x = 0, reached = 0;
8432 void *backup_data = NULL;
8433
8434 for (;;)
8435 {
8436 if (op & MOVE_TO_VPOS)
8437 {
8438 /* If no TO_CHARPOS and no TO_X specified, stop at the
8439 start of the line TO_VPOS. */
8440 if ((op & (MOVE_TO_X | MOVE_TO_POS)) == 0)
8441 {
8442 if (it->vpos == to_vpos)
8443 {
8444 reached = 1;
8445 break;
8446 }
8447 else
8448 skip = move_it_in_display_line_to (it, -1, -1, 0);
8449 }
8450 else
8451 {
8452 /* TO_VPOS >= 0 means stop at TO_X in the line at
8453 TO_VPOS, or at TO_POS, whichever comes first. */
8454 if (it->vpos == to_vpos)
8455 {
8456 reached = 2;
8457 break;
8458 }
8459
8460 skip = move_it_in_display_line_to (it, to_charpos, to_x, op);
8461
8462 if (skip == MOVE_POS_MATCH_OR_ZV || it->vpos == to_vpos)
8463 {
8464 reached = 3;
8465 break;
8466 }
8467 else if (skip == MOVE_X_REACHED && it->vpos != to_vpos)
8468 {
8469 /* We have reached TO_X but not in the line we want. */
8470 skip = move_it_in_display_line_to (it, to_charpos,
8471 -1, MOVE_TO_POS);
8472 if (skip == MOVE_POS_MATCH_OR_ZV)
8473 {
8474 reached = 4;
8475 break;
8476 }
8477 }
8478 }
8479 }
8480 else if (op & MOVE_TO_Y)
8481 {
8482 struct it it_backup;
8483
8484 if (it->line_wrap == WORD_WRAP)
8485 SAVE_IT (it_backup, *it, backup_data);
8486
8487 /* TO_Y specified means stop at TO_X in the line containing
8488 TO_Y---or at TO_CHARPOS if this is reached first. The
8489 problem is that we can't really tell whether the line
8490 contains TO_Y before we have completely scanned it, and
8491 this may skip past TO_X. What we do is to first scan to
8492 TO_X.
8493
8494 If TO_X is not specified, use a TO_X of zero. The reason
8495 is to make the outcome of this function more predictable.
8496 If we didn't use TO_X == 0, we would stop at the end of
8497 the line which is probably not what a caller would expect
8498 to happen. */
8499 skip = move_it_in_display_line_to
8500 (it, to_charpos, ((op & MOVE_TO_X) ? to_x : 0),
8501 (MOVE_TO_X | (op & MOVE_TO_POS)));
8502
8503 /* If TO_CHARPOS is reached or ZV, we don't have to do more. */
8504 if (skip == MOVE_POS_MATCH_OR_ZV)
8505 reached = 5;
8506 else if (skip == MOVE_X_REACHED)
8507 {
8508 /* If TO_X was reached, we want to know whether TO_Y is
8509 in the line. We know this is the case if the already
8510 scanned glyphs make the line tall enough. Otherwise,
8511 we must check by scanning the rest of the line. */
8512 line_height = it->max_ascent + it->max_descent;
8513 if (to_y >= it->current_y
8514 && to_y < it->current_y + line_height)
8515 {
8516 reached = 6;
8517 break;
8518 }
8519 SAVE_IT (it_backup, *it, backup_data);
8520 TRACE_MOVE ((stderr, "move_it: from %d\n", IT_CHARPOS (*it)));
8521 skip2 = move_it_in_display_line_to (it, to_charpos, -1,
8522 op & MOVE_TO_POS);
8523 TRACE_MOVE ((stderr, "move_it: to %d\n", IT_CHARPOS (*it)));
8524 line_height = it->max_ascent + it->max_descent;
8525 TRACE_MOVE ((stderr, "move_it: line_height = %d\n", line_height));
8526
8527 if (to_y >= it->current_y
8528 && to_y < it->current_y + line_height)
8529 {
8530 /* If TO_Y is in this line and TO_X was reached
8531 above, we scanned too far. We have to restore
8532 IT's settings to the ones before skipping. */
8533 RESTORE_IT (it, &it_backup, backup_data);
8534 reached = 6;
8535 }
8536 else
8537 {
8538 skip = skip2;
8539 if (skip == MOVE_POS_MATCH_OR_ZV)
8540 reached = 7;
8541 }
8542 }
8543 else
8544 {
8545 /* Check whether TO_Y is in this line. */
8546 line_height = it->max_ascent + it->max_descent;
8547 TRACE_MOVE ((stderr, "move_it: line_height = %d\n", line_height));
8548
8549 if (to_y >= it->current_y
8550 && to_y < it->current_y + line_height)
8551 {
8552 /* When word-wrap is on, TO_X may lie past the end
8553 of a wrapped line. Then it->current is the
8554 character on the next line, so backtrack to the
8555 space before the wrap point. */
8556 if (skip == MOVE_LINE_CONTINUED
8557 && it->line_wrap == WORD_WRAP)
8558 {
8559 int prev_x = max (it->current_x - 1, 0);
8560 RESTORE_IT (it, &it_backup, backup_data);
8561 skip = move_it_in_display_line_to
8562 (it, -1, prev_x, MOVE_TO_X);
8563 }
8564 reached = 6;
8565 }
8566 }
8567
8568 if (reached)
8569 break;
8570 }
8571 else if (BUFFERP (it->object)
8572 && (it->method == GET_FROM_BUFFER
8573 || it->method == GET_FROM_STRETCH)
8574 && IT_CHARPOS (*it) >= to_charpos
8575 /* Under bidi iteration, a call to set_iterator_to_next
8576 can scan far beyond to_charpos if the initial
8577 portion of the next line needs to be reordered. In
8578 that case, give move_it_in_display_line_to another
8579 chance below. */
8580 && !(it->bidi_p
8581 && it->bidi_it.scan_dir == -1))
8582 skip = MOVE_POS_MATCH_OR_ZV;
8583 else
8584 skip = move_it_in_display_line_to (it, to_charpos, -1, MOVE_TO_POS);
8585
8586 switch (skip)
8587 {
8588 case MOVE_POS_MATCH_OR_ZV:
8589 reached = 8;
8590 goto out;
8591
8592 case MOVE_NEWLINE_OR_CR:
8593 set_iterator_to_next (it, 1);
8594 it->continuation_lines_width = 0;
8595 break;
8596
8597 case MOVE_LINE_TRUNCATED:
8598 it->continuation_lines_width = 0;
8599 reseat_at_next_visible_line_start (it, 0);
8600 if ((op & MOVE_TO_POS) != 0
8601 && IT_CHARPOS (*it) > to_charpos)
8602 {
8603 reached = 9;
8604 goto out;
8605 }
8606 break;
8607
8608 case MOVE_LINE_CONTINUED:
8609 /* For continued lines ending in a tab, some of the glyphs
8610 associated with the tab are displayed on the current
8611 line. Since it->current_x does not include these glyphs,
8612 we use it->last_visible_x instead. */
8613 if (it->c == '\t')
8614 {
8615 it->continuation_lines_width += it->last_visible_x;
8616 /* When moving by vpos, ensure that the iterator really
8617 advances to the next line (bug#847, bug#969). Fixme:
8618 do we need to do this in other circumstances? */
8619 if (it->current_x != it->last_visible_x
8620 && (op & MOVE_TO_VPOS)
8621 && !(op & (MOVE_TO_X | MOVE_TO_POS)))
8622 {
8623 line_start_x = it->current_x + it->pixel_width
8624 - it->last_visible_x;
8625 set_iterator_to_next (it, 0);
8626 }
8627 }
8628 else
8629 it->continuation_lines_width += it->current_x;
8630 break;
8631
8632 default:
8633 abort ();
8634 }
8635
8636 /* Reset/increment for the next run. */
8637 recenter_overlay_lists (current_buffer, IT_CHARPOS (*it));
8638 it->current_x = line_start_x;
8639 line_start_x = 0;
8640 it->hpos = 0;
8641 it->current_y += it->max_ascent + it->max_descent;
8642 ++it->vpos;
8643 last_height = it->max_ascent + it->max_descent;
8644 last_max_ascent = it->max_ascent;
8645 it->max_ascent = it->max_descent = 0;
8646 }
8647
8648 out:
8649
8650 /* On text terminals, we may stop at the end of a line in the middle
8651 of a multi-character glyph. If the glyph itself is continued,
8652 i.e. it is actually displayed on the next line, don't treat this
8653 stopping point as valid; move to the next line instead (unless
8654 that brings us offscreen). */
8655 if (!FRAME_WINDOW_P (it->f)
8656 && op & MOVE_TO_POS
8657 && IT_CHARPOS (*it) == to_charpos
8658 && it->what == IT_CHARACTER
8659 && it->nglyphs > 1
8660 && it->line_wrap == WINDOW_WRAP
8661 && it->current_x == it->last_visible_x - 1
8662 && it->c != '\n'
8663 && it->c != '\t'
8664 && it->vpos < XFASTINT (it->w->window_end_vpos))
8665 {
8666 it->continuation_lines_width += it->current_x;
8667 it->current_x = it->hpos = it->max_ascent = it->max_descent = 0;
8668 it->current_y += it->max_ascent + it->max_descent;
8669 ++it->vpos;
8670 last_height = it->max_ascent + it->max_descent;
8671 last_max_ascent = it->max_ascent;
8672 }
8673
8674 if (backup_data)
8675 bidi_unshelve_cache (backup_data, 1);
8676
8677 TRACE_MOVE ((stderr, "move_it_to: reached %d\n", reached));
8678 }
8679
8680
8681 /* Move iterator IT backward by a specified y-distance DY, DY >= 0.
8682
8683 If DY > 0, move IT backward at least that many pixels. DY = 0
8684 means move IT backward to the preceding line start or BEGV. This
8685 function may move over more than DY pixels if IT->current_y - DY
8686 ends up in the middle of a line; in this case IT->current_y will be
8687 set to the top of the line moved to. */
8688
8689 void
8690 move_it_vertically_backward (struct it *it, int dy)
8691 {
8692 int nlines, h;
8693 struct it it2, it3;
8694 void *it2data = NULL, *it3data = NULL;
8695 EMACS_INT start_pos;
8696
8697 move_further_back:
8698 xassert (dy >= 0);
8699
8700 start_pos = IT_CHARPOS (*it);
8701
8702 /* Estimate how many newlines we must move back. */
8703 nlines = max (1, dy / FRAME_LINE_HEIGHT (it->f));
8704
8705 /* Set the iterator's position that many lines back. */
8706 while (nlines-- && IT_CHARPOS (*it) > BEGV)
8707 back_to_previous_visible_line_start (it);
8708
8709 /* Reseat the iterator here. When moving backward, we don't want
8710 reseat to skip forward over invisible text, set up the iterator
8711 to deliver from overlay strings at the new position etc. So,
8712 use reseat_1 here. */
8713 reseat_1 (it, it->current.pos, 1);
8714
8715 /* We are now surely at a line start. */
8716 it->current_x = it->hpos = 0; /* FIXME: this is incorrect when bidi
8717 reordering is in effect. */
8718 it->continuation_lines_width = 0;
8719
8720 /* Move forward and see what y-distance we moved. First move to the
8721 start of the next line so that we get its height. We need this
8722 height to be able to tell whether we reached the specified
8723 y-distance. */
8724 SAVE_IT (it2, *it, it2data);
8725 it2.max_ascent = it2.max_descent = 0;
8726 do
8727 {
8728 move_it_to (&it2, start_pos, -1, -1, it2.vpos + 1,
8729 MOVE_TO_POS | MOVE_TO_VPOS);
8730 }
8731 while (!(IT_POS_VALID_AFTER_MOVE_P (&it2)
8732 /* If we are in a display string which starts at START_POS,
8733 and that display string includes a newline, and we are
8734 right after that newline (i.e. at the beginning of a
8735 display line), exit the loop, because otherwise we will
8736 infloop, since move_it_to will see that it is already at
8737 START_POS and will not move. */
8738 || (it2.method == GET_FROM_STRING
8739 && IT_CHARPOS (it2) == start_pos
8740 && SREF (it2.string, IT_STRING_BYTEPOS (it2) - 1) == '\n')));
8741 xassert (IT_CHARPOS (*it) >= BEGV);
8742 SAVE_IT (it3, it2, it3data);
8743
8744 move_it_to (&it2, start_pos, -1, -1, -1, MOVE_TO_POS);
8745 xassert (IT_CHARPOS (*it) >= BEGV);
8746 /* H is the actual vertical distance from the position in *IT
8747 and the starting position. */
8748 h = it2.current_y - it->current_y;
8749 /* NLINES is the distance in number of lines. */
8750 nlines = it2.vpos - it->vpos;
8751
8752 /* Correct IT's y and vpos position
8753 so that they are relative to the starting point. */
8754 it->vpos -= nlines;
8755 it->current_y -= h;
8756
8757 if (dy == 0)
8758 {
8759 /* DY == 0 means move to the start of the screen line. The
8760 value of nlines is > 0 if continuation lines were involved,
8761 or if the original IT position was at start of a line. */
8762 RESTORE_IT (it, it, it2data);
8763 if (nlines > 0)
8764 move_it_by_lines (it, nlines);
8765 /* The above code moves us to some position NLINES down,
8766 usually to its first glyph (leftmost in an L2R line), but
8767 that's not necessarily the start of the line, under bidi
8768 reordering. We want to get to the character position
8769 that is immediately after the newline of the previous
8770 line. */
8771 if (it->bidi_p && IT_CHARPOS (*it) > BEGV
8772 && FETCH_BYTE (IT_BYTEPOS (*it) - 1) != '\n')
8773 {
8774 EMACS_INT nl_pos =
8775 find_next_newline_no_quit (IT_CHARPOS (*it) - 1, -1);
8776
8777 move_it_to (it, nl_pos, -1, -1, -1, MOVE_TO_POS);
8778 }
8779 bidi_unshelve_cache (it3data, 1);
8780 }
8781 else
8782 {
8783 /* The y-position we try to reach, relative to *IT.
8784 Note that H has been subtracted in front of the if-statement. */
8785 int target_y = it->current_y + h - dy;
8786 int y0 = it3.current_y;
8787 int y1;
8788 int line_height;
8789
8790 RESTORE_IT (&it3, &it3, it3data);
8791 y1 = line_bottom_y (&it3);
8792 line_height = y1 - y0;
8793 RESTORE_IT (it, it, it2data);
8794 /* If we did not reach target_y, try to move further backward if
8795 we can. If we moved too far backward, try to move forward. */
8796 if (target_y < it->current_y
8797 /* This is heuristic. In a window that's 3 lines high, with
8798 a line height of 13 pixels each, recentering with point
8799 on the bottom line will try to move -39/2 = 19 pixels
8800 backward. Try to avoid moving into the first line. */
8801 && (it->current_y - target_y
8802 > min (window_box_height (it->w), line_height * 2 / 3))
8803 && IT_CHARPOS (*it) > BEGV)
8804 {
8805 TRACE_MOVE ((stderr, " not far enough -> move_vert %d\n",
8806 target_y - it->current_y));
8807 dy = it->current_y - target_y;
8808 goto move_further_back;
8809 }
8810 else if (target_y >= it->current_y + line_height
8811 && IT_CHARPOS (*it) < ZV)
8812 {
8813 /* Should move forward by at least one line, maybe more.
8814
8815 Note: Calling move_it_by_lines can be expensive on
8816 terminal frames, where compute_motion is used (via
8817 vmotion) to do the job, when there are very long lines
8818 and truncate-lines is nil. That's the reason for
8819 treating terminal frames specially here. */
8820
8821 if (!FRAME_WINDOW_P (it->f))
8822 move_it_vertically (it, target_y - (it->current_y + line_height));
8823 else
8824 {
8825 do
8826 {
8827 move_it_by_lines (it, 1);
8828 }
8829 while (target_y >= line_bottom_y (it) && IT_CHARPOS (*it) < ZV);
8830 }
8831 }
8832 }
8833 }
8834
8835
8836 /* Move IT by a specified amount of pixel lines DY. DY negative means
8837 move backwards. DY = 0 means move to start of screen line. At the
8838 end, IT will be on the start of a screen line. */
8839
8840 void
8841 move_it_vertically (struct it *it, int dy)
8842 {
8843 if (dy <= 0)
8844 move_it_vertically_backward (it, -dy);
8845 else
8846 {
8847 TRACE_MOVE ((stderr, "move_it_v: from %d, %d\n", IT_CHARPOS (*it), dy));
8848 move_it_to (it, ZV, -1, it->current_y + dy, -1,
8849 MOVE_TO_POS | MOVE_TO_Y);
8850 TRACE_MOVE ((stderr, "move_it_v: to %d\n", IT_CHARPOS (*it)));
8851
8852 /* If buffer ends in ZV without a newline, move to the start of
8853 the line to satisfy the post-condition. */
8854 if (IT_CHARPOS (*it) == ZV
8855 && ZV > BEGV
8856 && FETCH_BYTE (IT_BYTEPOS (*it) - 1) != '\n')
8857 move_it_by_lines (it, 0);
8858 }
8859 }
8860
8861
8862 /* Move iterator IT past the end of the text line it is in. */
8863
8864 void
8865 move_it_past_eol (struct it *it)
8866 {
8867 enum move_it_result rc;
8868
8869 rc = move_it_in_display_line_to (it, Z, 0, MOVE_TO_POS);
8870 if (rc == MOVE_NEWLINE_OR_CR)
8871 set_iterator_to_next (it, 0);
8872 }
8873
8874
8875 /* Move IT by a specified number DVPOS of screen lines down. DVPOS
8876 negative means move up. DVPOS == 0 means move to the start of the
8877 screen line.
8878
8879 Optimization idea: If we would know that IT->f doesn't use
8880 a face with proportional font, we could be faster for
8881 truncate-lines nil. */
8882
8883 void
8884 move_it_by_lines (struct it *it, int dvpos)
8885 {
8886
8887 /* The commented-out optimization uses vmotion on terminals. This
8888 gives bad results, because elements like it->what, on which
8889 callers such as pos_visible_p rely, aren't updated. */
8890 /* struct position pos;
8891 if (!FRAME_WINDOW_P (it->f))
8892 {
8893 struct text_pos textpos;
8894
8895 pos = *vmotion (IT_CHARPOS (*it), dvpos, it->w);
8896 SET_TEXT_POS (textpos, pos.bufpos, pos.bytepos);
8897 reseat (it, textpos, 1);
8898 it->vpos += pos.vpos;
8899 it->current_y += pos.vpos;
8900 }
8901 else */
8902
8903 if (dvpos == 0)
8904 {
8905 /* DVPOS == 0 means move to the start of the screen line. */
8906 move_it_vertically_backward (it, 0);
8907 xassert (it->current_x == 0 && it->hpos == 0);
8908 /* Let next call to line_bottom_y calculate real line height */
8909 last_height = 0;
8910 }
8911 else if (dvpos > 0)
8912 {
8913 move_it_to (it, -1, -1, -1, it->vpos + dvpos, MOVE_TO_VPOS);
8914 if (!IT_POS_VALID_AFTER_MOVE_P (it))
8915 move_it_to (it, IT_CHARPOS (*it) + 1, -1, -1, -1, MOVE_TO_POS);
8916 }
8917 else
8918 {
8919 struct it it2;
8920 void *it2data = NULL;
8921 EMACS_INT start_charpos, i;
8922
8923 /* Start at the beginning of the screen line containing IT's
8924 position. This may actually move vertically backwards,
8925 in case of overlays, so adjust dvpos accordingly. */
8926 dvpos += it->vpos;
8927 move_it_vertically_backward (it, 0);
8928 dvpos -= it->vpos;
8929
8930 /* Go back -DVPOS visible lines and reseat the iterator there. */
8931 start_charpos = IT_CHARPOS (*it);
8932 for (i = -dvpos; i > 0 && IT_CHARPOS (*it) > BEGV; --i)
8933 back_to_previous_visible_line_start (it);
8934 reseat (it, it->current.pos, 1);
8935
8936 /* Move further back if we end up in a string or an image. */
8937 while (!IT_POS_VALID_AFTER_MOVE_P (it))
8938 {
8939 /* First try to move to start of display line. */
8940 dvpos += it->vpos;
8941 move_it_vertically_backward (it, 0);
8942 dvpos -= it->vpos;
8943 if (IT_POS_VALID_AFTER_MOVE_P (it))
8944 break;
8945 /* If start of line is still in string or image,
8946 move further back. */
8947 back_to_previous_visible_line_start (it);
8948 reseat (it, it->current.pos, 1);
8949 dvpos--;
8950 }
8951
8952 it->current_x = it->hpos = 0;
8953
8954 /* Above call may have moved too far if continuation lines
8955 are involved. Scan forward and see if it did. */
8956 SAVE_IT (it2, *it, it2data);
8957 it2.vpos = it2.current_y = 0;
8958 move_it_to (&it2, start_charpos, -1, -1, -1, MOVE_TO_POS);
8959 it->vpos -= it2.vpos;
8960 it->current_y -= it2.current_y;
8961 it->current_x = it->hpos = 0;
8962
8963 /* If we moved too far back, move IT some lines forward. */
8964 if (it2.vpos > -dvpos)
8965 {
8966 int delta = it2.vpos + dvpos;
8967
8968 RESTORE_IT (&it2, &it2, it2data);
8969 SAVE_IT (it2, *it, it2data);
8970 move_it_to (it, -1, -1, -1, it->vpos + delta, MOVE_TO_VPOS);
8971 /* Move back again if we got too far ahead. */
8972 if (IT_CHARPOS (*it) >= start_charpos)
8973 RESTORE_IT (it, &it2, it2data);
8974 else
8975 bidi_unshelve_cache (it2data, 1);
8976 }
8977 else
8978 RESTORE_IT (it, it, it2data);
8979 }
8980 }
8981
8982 /* Return 1 if IT points into the middle of a display vector. */
8983
8984 int
8985 in_display_vector_p (struct it *it)
8986 {
8987 return (it->method == GET_FROM_DISPLAY_VECTOR
8988 && it->current.dpvec_index > 0
8989 && it->dpvec + it->current.dpvec_index != it->dpend);
8990 }
8991
8992 \f
8993 /***********************************************************************
8994 Messages
8995 ***********************************************************************/
8996
8997
8998 /* Add a message with format string FORMAT and arguments ARG1 and ARG2
8999 to *Messages*. */
9000
9001 void
9002 add_to_log (const char *format, Lisp_Object arg1, Lisp_Object arg2)
9003 {
9004 Lisp_Object args[3];
9005 Lisp_Object msg, fmt;
9006 char *buffer;
9007 EMACS_INT len;
9008 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4;
9009 USE_SAFE_ALLOCA;
9010
9011 /* Do nothing if called asynchronously. Inserting text into
9012 a buffer may call after-change-functions and alike and
9013 that would means running Lisp asynchronously. */
9014 if (handling_signal)
9015 return;
9016
9017 fmt = msg = Qnil;
9018 GCPRO4 (fmt, msg, arg1, arg2);
9019
9020 args[0] = fmt = build_string (format);
9021 args[1] = arg1;
9022 args[2] = arg2;
9023 msg = Fformat (3, args);
9024
9025 len = SBYTES (msg) + 1;
9026 SAFE_ALLOCA (buffer, char *, len);
9027 memcpy (buffer, SDATA (msg), len);
9028
9029 message_dolog (buffer, len - 1, 1, 0);
9030 SAFE_FREE ();
9031
9032 UNGCPRO;
9033 }
9034
9035
9036 /* Output a newline in the *Messages* buffer if "needs" one. */
9037
9038 void
9039 message_log_maybe_newline (void)
9040 {
9041 if (message_log_need_newline)
9042 message_dolog ("", 0, 1, 0);
9043 }
9044
9045
9046 /* Add a string M of length NBYTES to the message log, optionally
9047 terminated with a newline when NLFLAG is non-zero. MULTIBYTE, if
9048 nonzero, means interpret the contents of M as multibyte. This
9049 function calls low-level routines in order to bypass text property
9050 hooks, etc. which might not be safe to run.
9051
9052 This may GC (insert may run before/after change hooks),
9053 so the buffer M must NOT point to a Lisp string. */
9054
9055 void
9056 message_dolog (const char *m, EMACS_INT nbytes, int nlflag, int multibyte)
9057 {
9058 const unsigned char *msg = (const unsigned char *) m;
9059
9060 if (!NILP (Vmemory_full))
9061 return;
9062
9063 if (!NILP (Vmessage_log_max))
9064 {
9065 struct buffer *oldbuf;
9066 Lisp_Object oldpoint, oldbegv, oldzv;
9067 int old_windows_or_buffers_changed = windows_or_buffers_changed;
9068 EMACS_INT point_at_end = 0;
9069 EMACS_INT zv_at_end = 0;
9070 Lisp_Object old_deactivate_mark, tem;
9071 struct gcpro gcpro1;
9072
9073 old_deactivate_mark = Vdeactivate_mark;
9074 oldbuf = current_buffer;
9075 Fset_buffer (Fget_buffer_create (Vmessages_buffer_name));
9076 BVAR (current_buffer, undo_list) = Qt;
9077
9078 oldpoint = message_dolog_marker1;
9079 set_marker_restricted (oldpoint, make_number (PT), Qnil);
9080 oldbegv = message_dolog_marker2;
9081 set_marker_restricted (oldbegv, make_number (BEGV), Qnil);
9082 oldzv = message_dolog_marker3;
9083 set_marker_restricted (oldzv, make_number (ZV), Qnil);
9084 GCPRO1 (old_deactivate_mark);
9085
9086 if (PT == Z)
9087 point_at_end = 1;
9088 if (ZV == Z)
9089 zv_at_end = 1;
9090
9091 BEGV = BEG;
9092 BEGV_BYTE = BEG_BYTE;
9093 ZV = Z;
9094 ZV_BYTE = Z_BYTE;
9095 TEMP_SET_PT_BOTH (Z, Z_BYTE);
9096
9097 /* Insert the string--maybe converting multibyte to single byte
9098 or vice versa, so that all the text fits the buffer. */
9099 if (multibyte
9100 && NILP (BVAR (current_buffer, enable_multibyte_characters)))
9101 {
9102 EMACS_INT i;
9103 int c, char_bytes;
9104 char work[1];
9105
9106 /* Convert a multibyte string to single-byte
9107 for the *Message* buffer. */
9108 for (i = 0; i < nbytes; i += char_bytes)
9109 {
9110 c = string_char_and_length (msg + i, &char_bytes);
9111 work[0] = (ASCII_CHAR_P (c)
9112 ? c
9113 : multibyte_char_to_unibyte (c));
9114 insert_1_both (work, 1, 1, 1, 0, 0);
9115 }
9116 }
9117 else if (! multibyte
9118 && ! NILP (BVAR (current_buffer, enable_multibyte_characters)))
9119 {
9120 EMACS_INT i;
9121 int c, char_bytes;
9122 unsigned char str[MAX_MULTIBYTE_LENGTH];
9123 /* Convert a single-byte string to multibyte
9124 for the *Message* buffer. */
9125 for (i = 0; i < nbytes; i++)
9126 {
9127 c = msg[i];
9128 MAKE_CHAR_MULTIBYTE (c);
9129 char_bytes = CHAR_STRING (c, str);
9130 insert_1_both ((char *) str, 1, char_bytes, 1, 0, 0);
9131 }
9132 }
9133 else if (nbytes)
9134 insert_1 (m, nbytes, 1, 0, 0);
9135
9136 if (nlflag)
9137 {
9138 EMACS_INT this_bol, this_bol_byte, prev_bol, prev_bol_byte;
9139 printmax_t dups;
9140 insert_1 ("\n", 1, 1, 0, 0);
9141
9142 scan_newline (Z, Z_BYTE, BEG, BEG_BYTE, -2, 0);
9143 this_bol = PT;
9144 this_bol_byte = PT_BYTE;
9145
9146 /* See if this line duplicates the previous one.
9147 If so, combine duplicates. */
9148 if (this_bol > BEG)
9149 {
9150 scan_newline (PT, PT_BYTE, BEG, BEG_BYTE, -2, 0);
9151 prev_bol = PT;
9152 prev_bol_byte = PT_BYTE;
9153
9154 dups = message_log_check_duplicate (prev_bol_byte,
9155 this_bol_byte);
9156 if (dups)
9157 {
9158 del_range_both (prev_bol, prev_bol_byte,
9159 this_bol, this_bol_byte, 0);
9160 if (dups > 1)
9161 {
9162 char dupstr[sizeof " [ times]"
9163 + INT_STRLEN_BOUND (printmax_t)];
9164 int duplen;
9165
9166 /* If you change this format, don't forget to also
9167 change message_log_check_duplicate. */
9168 sprintf (dupstr, " [%"pMd" times]", dups);
9169 duplen = strlen (dupstr);
9170 TEMP_SET_PT_BOTH (Z - 1, Z_BYTE - 1);
9171 insert_1 (dupstr, duplen, 1, 0, 1);
9172 }
9173 }
9174 }
9175
9176 /* If we have more than the desired maximum number of lines
9177 in the *Messages* buffer now, delete the oldest ones.
9178 This is safe because we don't have undo in this buffer. */
9179
9180 if (NATNUMP (Vmessage_log_max))
9181 {
9182 scan_newline (Z, Z_BYTE, BEG, BEG_BYTE,
9183 -XFASTINT (Vmessage_log_max) - 1, 0);
9184 del_range_both (BEG, BEG_BYTE, PT, PT_BYTE, 0);
9185 }
9186 }
9187 BEGV = XMARKER (oldbegv)->charpos;
9188 BEGV_BYTE = marker_byte_position (oldbegv);
9189
9190 if (zv_at_end)
9191 {
9192 ZV = Z;
9193 ZV_BYTE = Z_BYTE;
9194 }
9195 else
9196 {
9197 ZV = XMARKER (oldzv)->charpos;
9198 ZV_BYTE = marker_byte_position (oldzv);
9199 }
9200
9201 if (point_at_end)
9202 TEMP_SET_PT_BOTH (Z, Z_BYTE);
9203 else
9204 /* We can't do Fgoto_char (oldpoint) because it will run some
9205 Lisp code. */
9206 TEMP_SET_PT_BOTH (XMARKER (oldpoint)->charpos,
9207 XMARKER (oldpoint)->bytepos);
9208
9209 UNGCPRO;
9210 unchain_marker (XMARKER (oldpoint));
9211 unchain_marker (XMARKER (oldbegv));
9212 unchain_marker (XMARKER (oldzv));
9213
9214 tem = Fget_buffer_window (Fcurrent_buffer (), Qt);
9215 set_buffer_internal (oldbuf);
9216 if (NILP (tem))
9217 windows_or_buffers_changed = old_windows_or_buffers_changed;
9218 message_log_need_newline = !nlflag;
9219 Vdeactivate_mark = old_deactivate_mark;
9220 }
9221 }
9222
9223
9224 /* We are at the end of the buffer after just having inserted a newline.
9225 (Note: We depend on the fact we won't be crossing the gap.)
9226 Check to see if the most recent message looks a lot like the previous one.
9227 Return 0 if different, 1 if the new one should just replace it, or a
9228 value N > 1 if we should also append " [N times]". */
9229
9230 static intmax_t
9231 message_log_check_duplicate (EMACS_INT prev_bol_byte, EMACS_INT this_bol_byte)
9232 {
9233 EMACS_INT i;
9234 EMACS_INT len = Z_BYTE - 1 - this_bol_byte;
9235 int seen_dots = 0;
9236 unsigned char *p1 = BUF_BYTE_ADDRESS (current_buffer, prev_bol_byte);
9237 unsigned char *p2 = BUF_BYTE_ADDRESS (current_buffer, this_bol_byte);
9238
9239 for (i = 0; i < len; i++)
9240 {
9241 if (i >= 3 && p1[i-3] == '.' && p1[i-2] == '.' && p1[i-1] == '.')
9242 seen_dots = 1;
9243 if (p1[i] != p2[i])
9244 return seen_dots;
9245 }
9246 p1 += len;
9247 if (*p1 == '\n')
9248 return 2;
9249 if (*p1++ == ' ' && *p1++ == '[')
9250 {
9251 char *pend;
9252 intmax_t n = strtoimax ((char *) p1, &pend, 10);
9253 if (0 < n && n < INTMAX_MAX && strncmp (pend, " times]\n", 8) == 0)
9254 return n+1;
9255 }
9256 return 0;
9257 }
9258 \f
9259
9260 /* Display an echo area message M with a specified length of NBYTES
9261 bytes. The string may include null characters. If M is 0, clear
9262 out any existing message, and let the mini-buffer text show
9263 through.
9264
9265 This may GC, so the buffer M must NOT point to a Lisp string. */
9266
9267 void
9268 message2 (const char *m, EMACS_INT nbytes, int multibyte)
9269 {
9270 /* First flush out any partial line written with print. */
9271 message_log_maybe_newline ();
9272 if (m)
9273 message_dolog (m, nbytes, 1, multibyte);
9274 message2_nolog (m, nbytes, multibyte);
9275 }
9276
9277
9278 /* The non-logging counterpart of message2. */
9279
9280 void
9281 message2_nolog (const char *m, EMACS_INT nbytes, int multibyte)
9282 {
9283 struct frame *sf = SELECTED_FRAME ();
9284 message_enable_multibyte = multibyte;
9285
9286 if (FRAME_INITIAL_P (sf))
9287 {
9288 if (noninteractive_need_newline)
9289 putc ('\n', stderr);
9290 noninteractive_need_newline = 0;
9291 if (m)
9292 fwrite (m, nbytes, 1, stderr);
9293 if (cursor_in_echo_area == 0)
9294 fprintf (stderr, "\n");
9295 fflush (stderr);
9296 }
9297 /* A null message buffer means that the frame hasn't really been
9298 initialized yet. Error messages get reported properly by
9299 cmd_error, so this must be just an informative message; toss it. */
9300 else if (INTERACTIVE
9301 && sf->glyphs_initialized_p
9302 && FRAME_MESSAGE_BUF (sf))
9303 {
9304 Lisp_Object mini_window;
9305 struct frame *f;
9306
9307 /* Get the frame containing the mini-buffer
9308 that the selected frame is using. */
9309 mini_window = FRAME_MINIBUF_WINDOW (sf);
9310 f = XFRAME (WINDOW_FRAME (XWINDOW (mini_window)));
9311
9312 FRAME_SAMPLE_VISIBILITY (f);
9313 if (FRAME_VISIBLE_P (sf)
9314 && ! FRAME_VISIBLE_P (f))
9315 Fmake_frame_visible (WINDOW_FRAME (XWINDOW (mini_window)));
9316
9317 if (m)
9318 {
9319 set_message (m, Qnil, nbytes, multibyte);
9320 if (minibuffer_auto_raise)
9321 Fraise_frame (WINDOW_FRAME (XWINDOW (mini_window)));
9322 }
9323 else
9324 clear_message (1, 1);
9325
9326 do_pending_window_change (0);
9327 echo_area_display (1);
9328 do_pending_window_change (0);
9329 if (FRAME_TERMINAL (f)->frame_up_to_date_hook != 0 && ! gc_in_progress)
9330 (*FRAME_TERMINAL (f)->frame_up_to_date_hook) (f);
9331 }
9332 }
9333
9334
9335 /* Display an echo area message M with a specified length of NBYTES
9336 bytes. The string may include null characters. If M is not a
9337 string, clear out any existing message, and let the mini-buffer
9338 text show through.
9339
9340 This function cancels echoing. */
9341
9342 void
9343 message3 (Lisp_Object m, EMACS_INT nbytes, int multibyte)
9344 {
9345 struct gcpro gcpro1;
9346
9347 GCPRO1 (m);
9348 clear_message (1,1);
9349 cancel_echoing ();
9350
9351 /* First flush out any partial line written with print. */
9352 message_log_maybe_newline ();
9353 if (STRINGP (m))
9354 {
9355 char *buffer;
9356 USE_SAFE_ALLOCA;
9357
9358 SAFE_ALLOCA (buffer, char *, nbytes);
9359 memcpy (buffer, SDATA (m), nbytes);
9360 message_dolog (buffer, nbytes, 1, multibyte);
9361 SAFE_FREE ();
9362 }
9363 message3_nolog (m, nbytes, multibyte);
9364
9365 UNGCPRO;
9366 }
9367
9368
9369 /* The non-logging version of message3.
9370 This does not cancel echoing, because it is used for echoing.
9371 Perhaps we need to make a separate function for echoing
9372 and make this cancel echoing. */
9373
9374 void
9375 message3_nolog (Lisp_Object m, EMACS_INT nbytes, int multibyte)
9376 {
9377 struct frame *sf = SELECTED_FRAME ();
9378 message_enable_multibyte = multibyte;
9379
9380 if (FRAME_INITIAL_P (sf))
9381 {
9382 if (noninteractive_need_newline)
9383 putc ('\n', stderr);
9384 noninteractive_need_newline = 0;
9385 if (STRINGP (m))
9386 fwrite (SDATA (m), nbytes, 1, stderr);
9387 if (cursor_in_echo_area == 0)
9388 fprintf (stderr, "\n");
9389 fflush (stderr);
9390 }
9391 /* A null message buffer means that the frame hasn't really been
9392 initialized yet. Error messages get reported properly by
9393 cmd_error, so this must be just an informative message; toss it. */
9394 else if (INTERACTIVE
9395 && sf->glyphs_initialized_p
9396 && FRAME_MESSAGE_BUF (sf))
9397 {
9398 Lisp_Object mini_window;
9399 Lisp_Object frame;
9400 struct frame *f;
9401
9402 /* Get the frame containing the mini-buffer
9403 that the selected frame is using. */
9404 mini_window = FRAME_MINIBUF_WINDOW (sf);
9405 frame = XWINDOW (mini_window)->frame;
9406 f = XFRAME (frame);
9407
9408 FRAME_SAMPLE_VISIBILITY (f);
9409 if (FRAME_VISIBLE_P (sf)
9410 && !FRAME_VISIBLE_P (f))
9411 Fmake_frame_visible (frame);
9412
9413 if (STRINGP (m) && SCHARS (m) > 0)
9414 {
9415 set_message (NULL, m, nbytes, multibyte);
9416 if (minibuffer_auto_raise)
9417 Fraise_frame (frame);
9418 /* Assume we are not echoing.
9419 (If we are, echo_now will override this.) */
9420 echo_message_buffer = Qnil;
9421 }
9422 else
9423 clear_message (1, 1);
9424
9425 do_pending_window_change (0);
9426 echo_area_display (1);
9427 do_pending_window_change (0);
9428 if (FRAME_TERMINAL (f)->frame_up_to_date_hook != 0 && ! gc_in_progress)
9429 (*FRAME_TERMINAL (f)->frame_up_to_date_hook) (f);
9430 }
9431 }
9432
9433
9434 /* Display a null-terminated echo area message M. If M is 0, clear
9435 out any existing message, and let the mini-buffer text show through.
9436
9437 The buffer M must continue to exist until after the echo area gets
9438 cleared or some other message gets displayed there. Do not pass
9439 text that is stored in a Lisp string. Do not pass text in a buffer
9440 that was alloca'd. */
9441
9442 void
9443 message1 (const char *m)
9444 {
9445 message2 (m, (m ? strlen (m) : 0), 0);
9446 }
9447
9448
9449 /* The non-logging counterpart of message1. */
9450
9451 void
9452 message1_nolog (const char *m)
9453 {
9454 message2_nolog (m, (m ? strlen (m) : 0), 0);
9455 }
9456
9457 /* Display a message M which contains a single %s
9458 which gets replaced with STRING. */
9459
9460 void
9461 message_with_string (const char *m, Lisp_Object string, int log)
9462 {
9463 CHECK_STRING (string);
9464
9465 if (noninteractive)
9466 {
9467 if (m)
9468 {
9469 if (noninteractive_need_newline)
9470 putc ('\n', stderr);
9471 noninteractive_need_newline = 0;
9472 fprintf (stderr, m, SDATA (string));
9473 if (!cursor_in_echo_area)
9474 fprintf (stderr, "\n");
9475 fflush (stderr);
9476 }
9477 }
9478 else if (INTERACTIVE)
9479 {
9480 /* The frame whose minibuffer we're going to display the message on.
9481 It may be larger than the selected frame, so we need
9482 to use its buffer, not the selected frame's buffer. */
9483 Lisp_Object mini_window;
9484 struct frame *f, *sf = SELECTED_FRAME ();
9485
9486 /* Get the frame containing the minibuffer
9487 that the selected frame is using. */
9488 mini_window = FRAME_MINIBUF_WINDOW (sf);
9489 f = XFRAME (WINDOW_FRAME (XWINDOW (mini_window)));
9490
9491 /* A null message buffer means that the frame hasn't really been
9492 initialized yet. Error messages get reported properly by
9493 cmd_error, so this must be just an informative message; toss it. */
9494 if (FRAME_MESSAGE_BUF (f))
9495 {
9496 Lisp_Object args[2], msg;
9497 struct gcpro gcpro1, gcpro2;
9498
9499 args[0] = build_string (m);
9500 args[1] = msg = string;
9501 GCPRO2 (args[0], msg);
9502 gcpro1.nvars = 2;
9503
9504 msg = Fformat (2, args);
9505
9506 if (log)
9507 message3 (msg, SBYTES (msg), STRING_MULTIBYTE (msg));
9508 else
9509 message3_nolog (msg, SBYTES (msg), STRING_MULTIBYTE (msg));
9510
9511 UNGCPRO;
9512
9513 /* Print should start at the beginning of the message
9514 buffer next time. */
9515 message_buf_print = 0;
9516 }
9517 }
9518 }
9519
9520
9521 /* Dump an informative message to the minibuf. If M is 0, clear out
9522 any existing message, and let the mini-buffer text show through. */
9523
9524 static void
9525 vmessage (const char *m, va_list ap)
9526 {
9527 if (noninteractive)
9528 {
9529 if (m)
9530 {
9531 if (noninteractive_need_newline)
9532 putc ('\n', stderr);
9533 noninteractive_need_newline = 0;
9534 vfprintf (stderr, m, ap);
9535 if (cursor_in_echo_area == 0)
9536 fprintf (stderr, "\n");
9537 fflush (stderr);
9538 }
9539 }
9540 else if (INTERACTIVE)
9541 {
9542 /* The frame whose mini-buffer we're going to display the message
9543 on. It may be larger than the selected frame, so we need to
9544 use its buffer, not the selected frame's buffer. */
9545 Lisp_Object mini_window;
9546 struct frame *f, *sf = SELECTED_FRAME ();
9547
9548 /* Get the frame containing the mini-buffer
9549 that the selected frame is using. */
9550 mini_window = FRAME_MINIBUF_WINDOW (sf);
9551 f = XFRAME (WINDOW_FRAME (XWINDOW (mini_window)));
9552
9553 /* A null message buffer means that the frame hasn't really been
9554 initialized yet. Error messages get reported properly by
9555 cmd_error, so this must be just an informative message; toss
9556 it. */
9557 if (FRAME_MESSAGE_BUF (f))
9558 {
9559 if (m)
9560 {
9561 ptrdiff_t len;
9562
9563 len = doprnt (FRAME_MESSAGE_BUF (f),
9564 FRAME_MESSAGE_BUF_SIZE (f), m, (char *)0, ap);
9565
9566 message2 (FRAME_MESSAGE_BUF (f), len, 0);
9567 }
9568 else
9569 message1 (0);
9570
9571 /* Print should start at the beginning of the message
9572 buffer next time. */
9573 message_buf_print = 0;
9574 }
9575 }
9576 }
9577
9578 void
9579 message (const char *m, ...)
9580 {
9581 va_list ap;
9582 va_start (ap, m);
9583 vmessage (m, ap);
9584 va_end (ap);
9585 }
9586
9587
9588 #if 0
9589 /* The non-logging version of message. */
9590
9591 void
9592 message_nolog (const char *m, ...)
9593 {
9594 Lisp_Object old_log_max;
9595 va_list ap;
9596 va_start (ap, m);
9597 old_log_max = Vmessage_log_max;
9598 Vmessage_log_max = Qnil;
9599 vmessage (m, ap);
9600 Vmessage_log_max = old_log_max;
9601 va_end (ap);
9602 }
9603 #endif
9604
9605
9606 /* Display the current message in the current mini-buffer. This is
9607 only called from error handlers in process.c, and is not time
9608 critical. */
9609
9610 void
9611 update_echo_area (void)
9612 {
9613 if (!NILP (echo_area_buffer[0]))
9614 {
9615 Lisp_Object string;
9616 string = Fcurrent_message ();
9617 message3 (string, SBYTES (string),
9618 !NILP (BVAR (current_buffer, enable_multibyte_characters)));
9619 }
9620 }
9621
9622
9623 /* Make sure echo area buffers in `echo_buffers' are live.
9624 If they aren't, make new ones. */
9625
9626 static void
9627 ensure_echo_area_buffers (void)
9628 {
9629 int i;
9630
9631 for (i = 0; i < 2; ++i)
9632 if (!BUFFERP (echo_buffer[i])
9633 || NILP (BVAR (XBUFFER (echo_buffer[i]), name)))
9634 {
9635 char name[30];
9636 Lisp_Object old_buffer;
9637 int j;
9638
9639 old_buffer = echo_buffer[i];
9640 sprintf (name, " *Echo Area %d*", i);
9641 echo_buffer[i] = Fget_buffer_create (build_string (name));
9642 BVAR (XBUFFER (echo_buffer[i]), truncate_lines) = Qnil;
9643 /* to force word wrap in echo area -
9644 it was decided to postpone this*/
9645 /* XBUFFER (echo_buffer[i])->word_wrap = Qt; */
9646
9647 for (j = 0; j < 2; ++j)
9648 if (EQ (old_buffer, echo_area_buffer[j]))
9649 echo_area_buffer[j] = echo_buffer[i];
9650 }
9651 }
9652
9653
9654 /* Call FN with args A1..A4 with either the current or last displayed
9655 echo_area_buffer as current buffer.
9656
9657 WHICH zero means use the current message buffer
9658 echo_area_buffer[0]. If that is nil, choose a suitable buffer
9659 from echo_buffer[] and clear it.
9660
9661 WHICH > 0 means use echo_area_buffer[1]. If that is nil, choose a
9662 suitable buffer from echo_buffer[] and clear it.
9663
9664 If WHICH < 0, set echo_area_buffer[1] to echo_area_buffer[0], so
9665 that the current message becomes the last displayed one, make
9666 choose a suitable buffer for echo_area_buffer[0], and clear it.
9667
9668 Value is what FN returns. */
9669
9670 static int
9671 with_echo_area_buffer (struct window *w, int which,
9672 int (*fn) (EMACS_INT, Lisp_Object, EMACS_INT, EMACS_INT),
9673 EMACS_INT a1, Lisp_Object a2, EMACS_INT a3, EMACS_INT a4)
9674 {
9675 Lisp_Object buffer;
9676 int this_one, the_other, clear_buffer_p, rc;
9677 int count = SPECPDL_INDEX ();
9678
9679 /* If buffers aren't live, make new ones. */
9680 ensure_echo_area_buffers ();
9681
9682 clear_buffer_p = 0;
9683
9684 if (which == 0)
9685 this_one = 0, the_other = 1;
9686 else if (which > 0)
9687 this_one = 1, the_other = 0;
9688 else
9689 {
9690 this_one = 0, the_other = 1;
9691 clear_buffer_p = 1;
9692
9693 /* We need a fresh one in case the current echo buffer equals
9694 the one containing the last displayed echo area message. */
9695 if (!NILP (echo_area_buffer[this_one])
9696 && EQ (echo_area_buffer[this_one], echo_area_buffer[the_other]))
9697 echo_area_buffer[this_one] = Qnil;
9698 }
9699
9700 /* Choose a suitable buffer from echo_buffer[] is we don't
9701 have one. */
9702 if (NILP (echo_area_buffer[this_one]))
9703 {
9704 echo_area_buffer[this_one]
9705 = (EQ (echo_area_buffer[the_other], echo_buffer[this_one])
9706 ? echo_buffer[the_other]
9707 : echo_buffer[this_one]);
9708 clear_buffer_p = 1;
9709 }
9710
9711 buffer = echo_area_buffer[this_one];
9712
9713 /* Don't get confused by reusing the buffer used for echoing
9714 for a different purpose. */
9715 if (echo_kboard == NULL && EQ (buffer, echo_message_buffer))
9716 cancel_echoing ();
9717
9718 record_unwind_protect (unwind_with_echo_area_buffer,
9719 with_echo_area_buffer_unwind_data (w));
9720
9721 /* Make the echo area buffer current. Note that for display
9722 purposes, it is not necessary that the displayed window's buffer
9723 == current_buffer, except for text property lookup. So, let's
9724 only set that buffer temporarily here without doing a full
9725 Fset_window_buffer. We must also change w->pointm, though,
9726 because otherwise an assertions in unshow_buffer fails, and Emacs
9727 aborts. */
9728 set_buffer_internal_1 (XBUFFER (buffer));
9729 if (w)
9730 {
9731 w->buffer = buffer;
9732 set_marker_both (w->pointm, buffer, BEG, BEG_BYTE);
9733 }
9734
9735 BVAR (current_buffer, undo_list) = Qt;
9736 BVAR (current_buffer, read_only) = Qnil;
9737 specbind (Qinhibit_read_only, Qt);
9738 specbind (Qinhibit_modification_hooks, Qt);
9739
9740 if (clear_buffer_p && Z > BEG)
9741 del_range (BEG, Z);
9742
9743 xassert (BEGV >= BEG);
9744 xassert (ZV <= Z && ZV >= BEGV);
9745
9746 rc = fn (a1, a2, a3, a4);
9747
9748 xassert (BEGV >= BEG);
9749 xassert (ZV <= Z && ZV >= BEGV);
9750
9751 unbind_to (count, Qnil);
9752 return rc;
9753 }
9754
9755
9756 /* Save state that should be preserved around the call to the function
9757 FN called in with_echo_area_buffer. */
9758
9759 static Lisp_Object
9760 with_echo_area_buffer_unwind_data (struct window *w)
9761 {
9762 int i = 0;
9763 Lisp_Object vector, tmp;
9764
9765 /* Reduce consing by keeping one vector in
9766 Vwith_echo_area_save_vector. */
9767 vector = Vwith_echo_area_save_vector;
9768 Vwith_echo_area_save_vector = Qnil;
9769
9770 if (NILP (vector))
9771 vector = Fmake_vector (make_number (7), Qnil);
9772
9773 XSETBUFFER (tmp, current_buffer); ASET (vector, i, tmp); ++i;
9774 ASET (vector, i, Vdeactivate_mark); ++i;
9775 ASET (vector, i, make_number (windows_or_buffers_changed)); ++i;
9776
9777 if (w)
9778 {
9779 XSETWINDOW (tmp, w); ASET (vector, i, tmp); ++i;
9780 ASET (vector, i, w->buffer); ++i;
9781 ASET (vector, i, make_number (XMARKER (w->pointm)->charpos)); ++i;
9782 ASET (vector, i, make_number (XMARKER (w->pointm)->bytepos)); ++i;
9783 }
9784 else
9785 {
9786 int end = i + 4;
9787 for (; i < end; ++i)
9788 ASET (vector, i, Qnil);
9789 }
9790
9791 xassert (i == ASIZE (vector));
9792 return vector;
9793 }
9794
9795
9796 /* Restore global state from VECTOR which was created by
9797 with_echo_area_buffer_unwind_data. */
9798
9799 static Lisp_Object
9800 unwind_with_echo_area_buffer (Lisp_Object vector)
9801 {
9802 set_buffer_internal_1 (XBUFFER (AREF (vector, 0)));
9803 Vdeactivate_mark = AREF (vector, 1);
9804 windows_or_buffers_changed = XFASTINT (AREF (vector, 2));
9805
9806 if (WINDOWP (AREF (vector, 3)))
9807 {
9808 struct window *w;
9809 Lisp_Object buffer, charpos, bytepos;
9810
9811 w = XWINDOW (AREF (vector, 3));
9812 buffer = AREF (vector, 4);
9813 charpos = AREF (vector, 5);
9814 bytepos = AREF (vector, 6);
9815
9816 w->buffer = buffer;
9817 set_marker_both (w->pointm, buffer,
9818 XFASTINT (charpos), XFASTINT (bytepos));
9819 }
9820
9821 Vwith_echo_area_save_vector = vector;
9822 return Qnil;
9823 }
9824
9825
9826 /* Set up the echo area for use by print functions. MULTIBYTE_P
9827 non-zero means we will print multibyte. */
9828
9829 void
9830 setup_echo_area_for_printing (int multibyte_p)
9831 {
9832 /* If we can't find an echo area any more, exit. */
9833 if (! FRAME_LIVE_P (XFRAME (selected_frame)))
9834 Fkill_emacs (Qnil);
9835
9836 ensure_echo_area_buffers ();
9837
9838 if (!message_buf_print)
9839 {
9840 /* A message has been output since the last time we printed.
9841 Choose a fresh echo area buffer. */
9842 if (EQ (echo_area_buffer[1], echo_buffer[0]))
9843 echo_area_buffer[0] = echo_buffer[1];
9844 else
9845 echo_area_buffer[0] = echo_buffer[0];
9846
9847 /* Switch to that buffer and clear it. */
9848 set_buffer_internal (XBUFFER (echo_area_buffer[0]));
9849 BVAR (current_buffer, truncate_lines) = Qnil;
9850
9851 if (Z > BEG)
9852 {
9853 int count = SPECPDL_INDEX ();
9854 specbind (Qinhibit_read_only, Qt);
9855 /* Note that undo recording is always disabled. */
9856 del_range (BEG, Z);
9857 unbind_to (count, Qnil);
9858 }
9859 TEMP_SET_PT_BOTH (BEG, BEG_BYTE);
9860
9861 /* Set up the buffer for the multibyteness we need. */
9862 if (multibyte_p
9863 != !NILP (BVAR (current_buffer, enable_multibyte_characters)))
9864 Fset_buffer_multibyte (multibyte_p ? Qt : Qnil);
9865
9866 /* Raise the frame containing the echo area. */
9867 if (minibuffer_auto_raise)
9868 {
9869 struct frame *sf = SELECTED_FRAME ();
9870 Lisp_Object mini_window;
9871 mini_window = FRAME_MINIBUF_WINDOW (sf);
9872 Fraise_frame (WINDOW_FRAME (XWINDOW (mini_window)));
9873 }
9874
9875 message_log_maybe_newline ();
9876 message_buf_print = 1;
9877 }
9878 else
9879 {
9880 if (NILP (echo_area_buffer[0]))
9881 {
9882 if (EQ (echo_area_buffer[1], echo_buffer[0]))
9883 echo_area_buffer[0] = echo_buffer[1];
9884 else
9885 echo_area_buffer[0] = echo_buffer[0];
9886 }
9887
9888 if (current_buffer != XBUFFER (echo_area_buffer[0]))
9889 {
9890 /* Someone switched buffers between print requests. */
9891 set_buffer_internal (XBUFFER (echo_area_buffer[0]));
9892 BVAR (current_buffer, truncate_lines) = Qnil;
9893 }
9894 }
9895 }
9896
9897
9898 /* Display an echo area message in window W. Value is non-zero if W's
9899 height is changed. If display_last_displayed_message_p is
9900 non-zero, display the message that was last displayed, otherwise
9901 display the current message. */
9902
9903 static int
9904 display_echo_area (struct window *w)
9905 {
9906 int i, no_message_p, window_height_changed_p, count;
9907
9908 /* Temporarily disable garbage collections while displaying the echo
9909 area. This is done because a GC can print a message itself.
9910 That message would modify the echo area buffer's contents while a
9911 redisplay of the buffer is going on, and seriously confuse
9912 redisplay. */
9913 count = inhibit_garbage_collection ();
9914
9915 /* If there is no message, we must call display_echo_area_1
9916 nevertheless because it resizes the window. But we will have to
9917 reset the echo_area_buffer in question to nil at the end because
9918 with_echo_area_buffer will sets it to an empty buffer. */
9919 i = display_last_displayed_message_p ? 1 : 0;
9920 no_message_p = NILP (echo_area_buffer[i]);
9921
9922 window_height_changed_p
9923 = with_echo_area_buffer (w, display_last_displayed_message_p,
9924 display_echo_area_1,
9925 (intptr_t) w, Qnil, 0, 0);
9926
9927 if (no_message_p)
9928 echo_area_buffer[i] = Qnil;
9929
9930 unbind_to (count, Qnil);
9931 return window_height_changed_p;
9932 }
9933
9934
9935 /* Helper for display_echo_area. Display the current buffer which
9936 contains the current echo area message in window W, a mini-window,
9937 a pointer to which is passed in A1. A2..A4 are currently not used.
9938 Change the height of W so that all of the message is displayed.
9939 Value is non-zero if height of W was changed. */
9940
9941 static int
9942 display_echo_area_1 (EMACS_INT a1, Lisp_Object a2, EMACS_INT a3, EMACS_INT a4)
9943 {
9944 intptr_t i1 = a1;
9945 struct window *w = (struct window *) i1;
9946 Lisp_Object window;
9947 struct text_pos start;
9948 int window_height_changed_p = 0;
9949
9950 /* Do this before displaying, so that we have a large enough glyph
9951 matrix for the display. If we can't get enough space for the
9952 whole text, display the last N lines. That works by setting w->start. */
9953 window_height_changed_p = resize_mini_window (w, 0);
9954
9955 /* Use the starting position chosen by resize_mini_window. */
9956 SET_TEXT_POS_FROM_MARKER (start, w->start);
9957
9958 /* Display. */
9959 clear_glyph_matrix (w->desired_matrix);
9960 XSETWINDOW (window, w);
9961 try_window (window, start, 0);
9962
9963 return window_height_changed_p;
9964 }
9965
9966
9967 /* Resize the echo area window to exactly the size needed for the
9968 currently displayed message, if there is one. If a mini-buffer
9969 is active, don't shrink it. */
9970
9971 void
9972 resize_echo_area_exactly (void)
9973 {
9974 if (BUFFERP (echo_area_buffer[0])
9975 && WINDOWP (echo_area_window))
9976 {
9977 struct window *w = XWINDOW (echo_area_window);
9978 int resized_p;
9979 Lisp_Object resize_exactly;
9980
9981 if (minibuf_level == 0)
9982 resize_exactly = Qt;
9983 else
9984 resize_exactly = Qnil;
9985
9986 resized_p = with_echo_area_buffer (w, 0, resize_mini_window_1,
9987 (intptr_t) w, resize_exactly,
9988 0, 0);
9989 if (resized_p)
9990 {
9991 ++windows_or_buffers_changed;
9992 ++update_mode_lines;
9993 redisplay_internal ();
9994 }
9995 }
9996 }
9997
9998
9999 /* Callback function for with_echo_area_buffer, when used from
10000 resize_echo_area_exactly. A1 contains a pointer to the window to
10001 resize, EXACTLY non-nil means resize the mini-window exactly to the
10002 size of the text displayed. A3 and A4 are not used. Value is what
10003 resize_mini_window returns. */
10004
10005 static int
10006 resize_mini_window_1 (EMACS_INT a1, Lisp_Object exactly, EMACS_INT a3, EMACS_INT a4)
10007 {
10008 intptr_t i1 = a1;
10009 return resize_mini_window ((struct window *) i1, !NILP (exactly));
10010 }
10011
10012
10013 /* Resize mini-window W to fit the size of its contents. EXACT_P
10014 means size the window exactly to the size needed. Otherwise, it's
10015 only enlarged until W's buffer is empty.
10016
10017 Set W->start to the right place to begin display. If the whole
10018 contents fit, start at the beginning. Otherwise, start so as
10019 to make the end of the contents appear. This is particularly
10020 important for y-or-n-p, but seems desirable generally.
10021
10022 Value is non-zero if the window height has been changed. */
10023
10024 int
10025 resize_mini_window (struct window *w, int exact_p)
10026 {
10027 struct frame *f = XFRAME (w->frame);
10028 int window_height_changed_p = 0;
10029
10030 xassert (MINI_WINDOW_P (w));
10031
10032 /* By default, start display at the beginning. */
10033 set_marker_both (w->start, w->buffer,
10034 BUF_BEGV (XBUFFER (w->buffer)),
10035 BUF_BEGV_BYTE (XBUFFER (w->buffer)));
10036
10037 /* Don't resize windows while redisplaying a window; it would
10038 confuse redisplay functions when the size of the window they are
10039 displaying changes from under them. Such a resizing can happen,
10040 for instance, when which-func prints a long message while
10041 we are running fontification-functions. We're running these
10042 functions with safe_call which binds inhibit-redisplay to t. */
10043 if (!NILP (Vinhibit_redisplay))
10044 return 0;
10045
10046 /* Nil means don't try to resize. */
10047 if (NILP (Vresize_mini_windows)
10048 || (FRAME_X_P (f) && FRAME_X_OUTPUT (f) == NULL))
10049 return 0;
10050
10051 if (!FRAME_MINIBUF_ONLY_P (f))
10052 {
10053 struct it it;
10054 struct window *root = XWINDOW (FRAME_ROOT_WINDOW (f));
10055 int total_height = WINDOW_TOTAL_LINES (root) + WINDOW_TOTAL_LINES (w);
10056 int height, max_height;
10057 int unit = FRAME_LINE_HEIGHT (f);
10058 struct text_pos start;
10059 struct buffer *old_current_buffer = NULL;
10060
10061 if (current_buffer != XBUFFER (w->buffer))
10062 {
10063 old_current_buffer = current_buffer;
10064 set_buffer_internal (XBUFFER (w->buffer));
10065 }
10066
10067 init_iterator (&it, w, BEGV, BEGV_BYTE, NULL, DEFAULT_FACE_ID);
10068
10069 /* Compute the max. number of lines specified by the user. */
10070 if (FLOATP (Vmax_mini_window_height))
10071 max_height = XFLOATINT (Vmax_mini_window_height) * FRAME_LINES (f);
10072 else if (INTEGERP (Vmax_mini_window_height))
10073 max_height = XINT (Vmax_mini_window_height);
10074 else
10075 max_height = total_height / 4;
10076
10077 /* Correct that max. height if it's bogus. */
10078 max_height = max (1, max_height);
10079 max_height = min (total_height, max_height);
10080
10081 /* Find out the height of the text in the window. */
10082 if (it.line_wrap == TRUNCATE)
10083 height = 1;
10084 else
10085 {
10086 last_height = 0;
10087 move_it_to (&it, ZV, -1, -1, -1, MOVE_TO_POS);
10088 if (it.max_ascent == 0 && it.max_descent == 0)
10089 height = it.current_y + last_height;
10090 else
10091 height = it.current_y + it.max_ascent + it.max_descent;
10092 height -= min (it.extra_line_spacing, it.max_extra_line_spacing);
10093 height = (height + unit - 1) / unit;
10094 }
10095
10096 /* Compute a suitable window start. */
10097 if (height > max_height)
10098 {
10099 height = max_height;
10100 init_iterator (&it, w, ZV, ZV_BYTE, NULL, DEFAULT_FACE_ID);
10101 move_it_vertically_backward (&it, (height - 1) * unit);
10102 start = it.current.pos;
10103 }
10104 else
10105 SET_TEXT_POS (start, BEGV, BEGV_BYTE);
10106 SET_MARKER_FROM_TEXT_POS (w->start, start);
10107
10108 if (EQ (Vresize_mini_windows, Qgrow_only))
10109 {
10110 /* Let it grow only, until we display an empty message, in which
10111 case the window shrinks again. */
10112 if (height > WINDOW_TOTAL_LINES (w))
10113 {
10114 int old_height = WINDOW_TOTAL_LINES (w);
10115 freeze_window_starts (f, 1);
10116 grow_mini_window (w, height - WINDOW_TOTAL_LINES (w));
10117 window_height_changed_p = WINDOW_TOTAL_LINES (w) != old_height;
10118 }
10119 else if (height < WINDOW_TOTAL_LINES (w)
10120 && (exact_p || BEGV == ZV))
10121 {
10122 int old_height = WINDOW_TOTAL_LINES (w);
10123 freeze_window_starts (f, 0);
10124 shrink_mini_window (w);
10125 window_height_changed_p = WINDOW_TOTAL_LINES (w) != old_height;
10126 }
10127 }
10128 else
10129 {
10130 /* Always resize to exact size needed. */
10131 if (height > WINDOW_TOTAL_LINES (w))
10132 {
10133 int old_height = WINDOW_TOTAL_LINES (w);
10134 freeze_window_starts (f, 1);
10135 grow_mini_window (w, height - WINDOW_TOTAL_LINES (w));
10136 window_height_changed_p = WINDOW_TOTAL_LINES (w) != old_height;
10137 }
10138 else if (height < WINDOW_TOTAL_LINES (w))
10139 {
10140 int old_height = WINDOW_TOTAL_LINES (w);
10141 freeze_window_starts (f, 0);
10142 shrink_mini_window (w);
10143
10144 if (height)
10145 {
10146 freeze_window_starts (f, 1);
10147 grow_mini_window (w, height - WINDOW_TOTAL_LINES (w));
10148 }
10149
10150 window_height_changed_p = WINDOW_TOTAL_LINES (w) != old_height;
10151 }
10152 }
10153
10154 if (old_current_buffer)
10155 set_buffer_internal (old_current_buffer);
10156 }
10157
10158 return window_height_changed_p;
10159 }
10160
10161
10162 /* Value is the current message, a string, or nil if there is no
10163 current message. */
10164
10165 Lisp_Object
10166 current_message (void)
10167 {
10168 Lisp_Object msg;
10169
10170 if (!BUFFERP (echo_area_buffer[0]))
10171 msg = Qnil;
10172 else
10173 {
10174 with_echo_area_buffer (0, 0, current_message_1,
10175 (intptr_t) &msg, Qnil, 0, 0);
10176 if (NILP (msg))
10177 echo_area_buffer[0] = Qnil;
10178 }
10179
10180 return msg;
10181 }
10182
10183
10184 static int
10185 current_message_1 (EMACS_INT a1, Lisp_Object a2, EMACS_INT a3, EMACS_INT a4)
10186 {
10187 intptr_t i1 = a1;
10188 Lisp_Object *msg = (Lisp_Object *) i1;
10189
10190 if (Z > BEG)
10191 *msg = make_buffer_string (BEG, Z, 1);
10192 else
10193 *msg = Qnil;
10194 return 0;
10195 }
10196
10197
10198 /* Push the current message on Vmessage_stack for later restauration
10199 by restore_message. Value is non-zero if the current message isn't
10200 empty. This is a relatively infrequent operation, so it's not
10201 worth optimizing. */
10202
10203 int
10204 push_message (void)
10205 {
10206 Lisp_Object msg;
10207 msg = current_message ();
10208 Vmessage_stack = Fcons (msg, Vmessage_stack);
10209 return STRINGP (msg);
10210 }
10211
10212
10213 /* Restore message display from the top of Vmessage_stack. */
10214
10215 void
10216 restore_message (void)
10217 {
10218 Lisp_Object msg;
10219
10220 xassert (CONSP (Vmessage_stack));
10221 msg = XCAR (Vmessage_stack);
10222 if (STRINGP (msg))
10223 message3_nolog (msg, SBYTES (msg), STRING_MULTIBYTE (msg));
10224 else
10225 message3_nolog (msg, 0, 0);
10226 }
10227
10228
10229 /* Handler for record_unwind_protect calling pop_message. */
10230
10231 Lisp_Object
10232 pop_message_unwind (Lisp_Object dummy)
10233 {
10234 pop_message ();
10235 return Qnil;
10236 }
10237
10238 /* Pop the top-most entry off Vmessage_stack. */
10239
10240 static void
10241 pop_message (void)
10242 {
10243 xassert (CONSP (Vmessage_stack));
10244 Vmessage_stack = XCDR (Vmessage_stack);
10245 }
10246
10247
10248 /* Check that Vmessage_stack is nil. Called from emacs.c when Emacs
10249 exits. If the stack is not empty, we have a missing pop_message
10250 somewhere. */
10251
10252 void
10253 check_message_stack (void)
10254 {
10255 if (!NILP (Vmessage_stack))
10256 abort ();
10257 }
10258
10259
10260 /* Truncate to NCHARS what will be displayed in the echo area the next
10261 time we display it---but don't redisplay it now. */
10262
10263 void
10264 truncate_echo_area (EMACS_INT nchars)
10265 {
10266 if (nchars == 0)
10267 echo_area_buffer[0] = Qnil;
10268 /* A null message buffer means that the frame hasn't really been
10269 initialized yet. Error messages get reported properly by
10270 cmd_error, so this must be just an informative message; toss it. */
10271 else if (!noninteractive
10272 && INTERACTIVE
10273 && !NILP (echo_area_buffer[0]))
10274 {
10275 struct frame *sf = SELECTED_FRAME ();
10276 if (FRAME_MESSAGE_BUF (sf))
10277 with_echo_area_buffer (0, 0, truncate_message_1, nchars, Qnil, 0, 0);
10278 }
10279 }
10280
10281
10282 /* Helper function for truncate_echo_area. Truncate the current
10283 message to at most NCHARS characters. */
10284
10285 static int
10286 truncate_message_1 (EMACS_INT nchars, Lisp_Object a2, EMACS_INT a3, EMACS_INT a4)
10287 {
10288 if (BEG + nchars < Z)
10289 del_range (BEG + nchars, Z);
10290 if (Z == BEG)
10291 echo_area_buffer[0] = Qnil;
10292 return 0;
10293 }
10294
10295
10296 /* Set the current message to a substring of S or STRING.
10297
10298 If STRING is a Lisp string, set the message to the first NBYTES
10299 bytes from STRING. NBYTES zero means use the whole string. If
10300 STRING is multibyte, the message will be displayed multibyte.
10301
10302 If S is not null, set the message to the first LEN bytes of S. LEN
10303 zero means use the whole string. MULTIBYTE_P non-zero means S is
10304 multibyte. Display the message multibyte in that case.
10305
10306 Doesn't GC, as with_echo_area_buffer binds Qinhibit_modification_hooks
10307 to t before calling set_message_1 (which calls insert).
10308 */
10309
10310 static void
10311 set_message (const char *s, Lisp_Object string,
10312 EMACS_INT nbytes, int multibyte_p)
10313 {
10314 message_enable_multibyte
10315 = ((s && multibyte_p)
10316 || (STRINGP (string) && STRING_MULTIBYTE (string)));
10317
10318 with_echo_area_buffer (0, -1, set_message_1,
10319 (intptr_t) s, string, nbytes, multibyte_p);
10320 message_buf_print = 0;
10321 help_echo_showing_p = 0;
10322 }
10323
10324
10325 /* Helper function for set_message. Arguments have the same meaning
10326 as there, with A1 corresponding to S and A2 corresponding to STRING
10327 This function is called with the echo area buffer being
10328 current. */
10329
10330 static int
10331 set_message_1 (EMACS_INT a1, Lisp_Object a2, EMACS_INT nbytes, EMACS_INT multibyte_p)
10332 {
10333 intptr_t i1 = a1;
10334 const char *s = (const char *) i1;
10335 const unsigned char *msg = (const unsigned char *) s;
10336 Lisp_Object string = a2;
10337
10338 /* Change multibyteness of the echo buffer appropriately. */
10339 if (message_enable_multibyte
10340 != !NILP (BVAR (current_buffer, enable_multibyte_characters)))
10341 Fset_buffer_multibyte (message_enable_multibyte ? Qt : Qnil);
10342
10343 BVAR (current_buffer, truncate_lines) = message_truncate_lines ? Qt : Qnil;
10344 if (!NILP (BVAR (current_buffer, bidi_display_reordering)))
10345 BVAR (current_buffer, bidi_paragraph_direction) = Qleft_to_right;
10346
10347 /* Insert new message at BEG. */
10348 TEMP_SET_PT_BOTH (BEG, BEG_BYTE);
10349
10350 if (STRINGP (string))
10351 {
10352 EMACS_INT nchars;
10353
10354 if (nbytes == 0)
10355 nbytes = SBYTES (string);
10356 nchars = string_byte_to_char (string, nbytes);
10357
10358 /* This function takes care of single/multibyte conversion. We
10359 just have to ensure that the echo area buffer has the right
10360 setting of enable_multibyte_characters. */
10361 insert_from_string (string, 0, 0, nchars, nbytes, 1);
10362 }
10363 else if (s)
10364 {
10365 if (nbytes == 0)
10366 nbytes = strlen (s);
10367
10368 if (multibyte_p && NILP (BVAR (current_buffer, enable_multibyte_characters)))
10369 {
10370 /* Convert from multi-byte to single-byte. */
10371 EMACS_INT i;
10372 int c, n;
10373 char work[1];
10374
10375 /* Convert a multibyte string to single-byte. */
10376 for (i = 0; i < nbytes; i += n)
10377 {
10378 c = string_char_and_length (msg + i, &n);
10379 work[0] = (ASCII_CHAR_P (c)
10380 ? c
10381 : multibyte_char_to_unibyte (c));
10382 insert_1_both (work, 1, 1, 1, 0, 0);
10383 }
10384 }
10385 else if (!multibyte_p
10386 && !NILP (BVAR (current_buffer, enable_multibyte_characters)))
10387 {
10388 /* Convert from single-byte to multi-byte. */
10389 EMACS_INT i;
10390 int c, n;
10391 unsigned char str[MAX_MULTIBYTE_LENGTH];
10392
10393 /* Convert a single-byte string to multibyte. */
10394 for (i = 0; i < nbytes; i++)
10395 {
10396 c = msg[i];
10397 MAKE_CHAR_MULTIBYTE (c);
10398 n = CHAR_STRING (c, str);
10399 insert_1_both ((char *) str, 1, n, 1, 0, 0);
10400 }
10401 }
10402 else
10403 insert_1 (s, nbytes, 1, 0, 0);
10404 }
10405
10406 return 0;
10407 }
10408
10409
10410 /* Clear messages. CURRENT_P non-zero means clear the current
10411 message. LAST_DISPLAYED_P non-zero means clear the message
10412 last displayed. */
10413
10414 void
10415 clear_message (int current_p, int last_displayed_p)
10416 {
10417 if (current_p)
10418 {
10419 echo_area_buffer[0] = Qnil;
10420 message_cleared_p = 1;
10421 }
10422
10423 if (last_displayed_p)
10424 echo_area_buffer[1] = Qnil;
10425
10426 message_buf_print = 0;
10427 }
10428
10429 /* Clear garbaged frames.
10430
10431 This function is used where the old redisplay called
10432 redraw_garbaged_frames which in turn called redraw_frame which in
10433 turn called clear_frame. The call to clear_frame was a source of
10434 flickering. I believe a clear_frame is not necessary. It should
10435 suffice in the new redisplay to invalidate all current matrices,
10436 and ensure a complete redisplay of all windows. */
10437
10438 static void
10439 clear_garbaged_frames (void)
10440 {
10441 if (frame_garbaged)
10442 {
10443 Lisp_Object tail, frame;
10444 int changed_count = 0;
10445
10446 FOR_EACH_FRAME (tail, frame)
10447 {
10448 struct frame *f = XFRAME (frame);
10449
10450 if (FRAME_VISIBLE_P (f) && FRAME_GARBAGED_P (f))
10451 {
10452 if (f->resized_p)
10453 {
10454 Fredraw_frame (frame);
10455 f->force_flush_display_p = 1;
10456 }
10457 clear_current_matrices (f);
10458 changed_count++;
10459 f->garbaged = 0;
10460 f->resized_p = 0;
10461 }
10462 }
10463
10464 frame_garbaged = 0;
10465 if (changed_count)
10466 ++windows_or_buffers_changed;
10467 }
10468 }
10469
10470
10471 /* Redisplay the echo area of the selected frame. If UPDATE_FRAME_P
10472 is non-zero update selected_frame. Value is non-zero if the
10473 mini-windows height has been changed. */
10474
10475 static int
10476 echo_area_display (int update_frame_p)
10477 {
10478 Lisp_Object mini_window;
10479 struct window *w;
10480 struct frame *f;
10481 int window_height_changed_p = 0;
10482 struct frame *sf = SELECTED_FRAME ();
10483
10484 mini_window = FRAME_MINIBUF_WINDOW (sf);
10485 w = XWINDOW (mini_window);
10486 f = XFRAME (WINDOW_FRAME (w));
10487
10488 /* Don't display if frame is invisible or not yet initialized. */
10489 if (!FRAME_VISIBLE_P (f) || !f->glyphs_initialized_p)
10490 return 0;
10491
10492 #ifdef HAVE_WINDOW_SYSTEM
10493 /* When Emacs starts, selected_frame may be the initial terminal
10494 frame. If we let this through, a message would be displayed on
10495 the terminal. */
10496 if (FRAME_INITIAL_P (XFRAME (selected_frame)))
10497 return 0;
10498 #endif /* HAVE_WINDOW_SYSTEM */
10499
10500 /* Redraw garbaged frames. */
10501 if (frame_garbaged)
10502 clear_garbaged_frames ();
10503
10504 if (!NILP (echo_area_buffer[0]) || minibuf_level == 0)
10505 {
10506 echo_area_window = mini_window;
10507 window_height_changed_p = display_echo_area (w);
10508 w->must_be_updated_p = 1;
10509
10510 /* Update the display, unless called from redisplay_internal.
10511 Also don't update the screen during redisplay itself. The
10512 update will happen at the end of redisplay, and an update
10513 here could cause confusion. */
10514 if (update_frame_p && !redisplaying_p)
10515 {
10516 int n = 0;
10517
10518 /* If the display update has been interrupted by pending
10519 input, update mode lines in the frame. Due to the
10520 pending input, it might have been that redisplay hasn't
10521 been called, so that mode lines above the echo area are
10522 garbaged. This looks odd, so we prevent it here. */
10523 if (!display_completed)
10524 n = redisplay_mode_lines (FRAME_ROOT_WINDOW (f), 0);
10525
10526 if (window_height_changed_p
10527 /* Don't do this if Emacs is shutting down. Redisplay
10528 needs to run hooks. */
10529 && !NILP (Vrun_hooks))
10530 {
10531 /* Must update other windows. Likewise as in other
10532 cases, don't let this update be interrupted by
10533 pending input. */
10534 int count = SPECPDL_INDEX ();
10535 specbind (Qredisplay_dont_pause, Qt);
10536 windows_or_buffers_changed = 1;
10537 redisplay_internal ();
10538 unbind_to (count, Qnil);
10539 }
10540 else if (FRAME_WINDOW_P (f) && n == 0)
10541 {
10542 /* Window configuration is the same as before.
10543 Can do with a display update of the echo area,
10544 unless we displayed some mode lines. */
10545 update_single_window (w, 1);
10546 FRAME_RIF (f)->flush_display (f);
10547 }
10548 else
10549 update_frame (f, 1, 1);
10550
10551 /* If cursor is in the echo area, make sure that the next
10552 redisplay displays the minibuffer, so that the cursor will
10553 be replaced with what the minibuffer wants. */
10554 if (cursor_in_echo_area)
10555 ++windows_or_buffers_changed;
10556 }
10557 }
10558 else if (!EQ (mini_window, selected_window))
10559 windows_or_buffers_changed++;
10560
10561 /* Last displayed message is now the current message. */
10562 echo_area_buffer[1] = echo_area_buffer[0];
10563 /* Inform read_char that we're not echoing. */
10564 echo_message_buffer = Qnil;
10565
10566 /* Prevent redisplay optimization in redisplay_internal by resetting
10567 this_line_start_pos. This is done because the mini-buffer now
10568 displays the message instead of its buffer text. */
10569 if (EQ (mini_window, selected_window))
10570 CHARPOS (this_line_start_pos) = 0;
10571
10572 return window_height_changed_p;
10573 }
10574
10575
10576 \f
10577 /***********************************************************************
10578 Mode Lines and Frame Titles
10579 ***********************************************************************/
10580
10581 /* A buffer for constructing non-propertized mode-line strings and
10582 frame titles in it; allocated from the heap in init_xdisp and
10583 resized as needed in store_mode_line_noprop_char. */
10584
10585 static char *mode_line_noprop_buf;
10586
10587 /* The buffer's end, and a current output position in it. */
10588
10589 static char *mode_line_noprop_buf_end;
10590 static char *mode_line_noprop_ptr;
10591
10592 #define MODE_LINE_NOPROP_LEN(start) \
10593 ((mode_line_noprop_ptr - mode_line_noprop_buf) - start)
10594
10595 static enum {
10596 MODE_LINE_DISPLAY = 0,
10597 MODE_LINE_TITLE,
10598 MODE_LINE_NOPROP,
10599 MODE_LINE_STRING
10600 } mode_line_target;
10601
10602 /* Alist that caches the results of :propertize.
10603 Each element is (PROPERTIZED-STRING . PROPERTY-LIST). */
10604 static Lisp_Object mode_line_proptrans_alist;
10605
10606 /* List of strings making up the mode-line. */
10607 static Lisp_Object mode_line_string_list;
10608
10609 /* Base face property when building propertized mode line string. */
10610 static Lisp_Object mode_line_string_face;
10611 static Lisp_Object mode_line_string_face_prop;
10612
10613
10614 /* Unwind data for mode line strings */
10615
10616 static Lisp_Object Vmode_line_unwind_vector;
10617
10618 static Lisp_Object
10619 format_mode_line_unwind_data (struct buffer *obuf,
10620 Lisp_Object owin,
10621 int save_proptrans)
10622 {
10623 Lisp_Object vector, tmp;
10624
10625 /* Reduce consing by keeping one vector in
10626 Vwith_echo_area_save_vector. */
10627 vector = Vmode_line_unwind_vector;
10628 Vmode_line_unwind_vector = Qnil;
10629
10630 if (NILP (vector))
10631 vector = Fmake_vector (make_number (8), Qnil);
10632
10633 ASET (vector, 0, make_number (mode_line_target));
10634 ASET (vector, 1, make_number (MODE_LINE_NOPROP_LEN (0)));
10635 ASET (vector, 2, mode_line_string_list);
10636 ASET (vector, 3, save_proptrans ? mode_line_proptrans_alist : Qt);
10637 ASET (vector, 4, mode_line_string_face);
10638 ASET (vector, 5, mode_line_string_face_prop);
10639
10640 if (obuf)
10641 XSETBUFFER (tmp, obuf);
10642 else
10643 tmp = Qnil;
10644 ASET (vector, 6, tmp);
10645 ASET (vector, 7, owin);
10646
10647 return vector;
10648 }
10649
10650 static Lisp_Object
10651 unwind_format_mode_line (Lisp_Object vector)
10652 {
10653 mode_line_target = XINT (AREF (vector, 0));
10654 mode_line_noprop_ptr = mode_line_noprop_buf + XINT (AREF (vector, 1));
10655 mode_line_string_list = AREF (vector, 2);
10656 if (! EQ (AREF (vector, 3), Qt))
10657 mode_line_proptrans_alist = AREF (vector, 3);
10658 mode_line_string_face = AREF (vector, 4);
10659 mode_line_string_face_prop = AREF (vector, 5);
10660
10661 if (!NILP (AREF (vector, 7)))
10662 /* Select window before buffer, since it may change the buffer. */
10663 Fselect_window (AREF (vector, 7), Qt);
10664
10665 if (!NILP (AREF (vector, 6)))
10666 {
10667 set_buffer_internal_1 (XBUFFER (AREF (vector, 6)));
10668 ASET (vector, 6, Qnil);
10669 }
10670
10671 Vmode_line_unwind_vector = vector;
10672 return Qnil;
10673 }
10674
10675
10676 /* Store a single character C for the frame title in mode_line_noprop_buf.
10677 Re-allocate mode_line_noprop_buf if necessary. */
10678
10679 static void
10680 store_mode_line_noprop_char (char c)
10681 {
10682 /* If output position has reached the end of the allocated buffer,
10683 increase the buffer's size. */
10684 if (mode_line_noprop_ptr == mode_line_noprop_buf_end)
10685 {
10686 ptrdiff_t len = MODE_LINE_NOPROP_LEN (0);
10687 ptrdiff_t size = len;
10688 mode_line_noprop_buf =
10689 xpalloc (mode_line_noprop_buf, &size, 1, STRING_BYTES_BOUND, 1);
10690 mode_line_noprop_buf_end = mode_line_noprop_buf + size;
10691 mode_line_noprop_ptr = mode_line_noprop_buf + len;
10692 }
10693
10694 *mode_line_noprop_ptr++ = c;
10695 }
10696
10697
10698 /* Store part of a frame title in mode_line_noprop_buf, beginning at
10699 mode_line_noprop_ptr. STRING is the string to store. Do not copy
10700 characters that yield more columns than PRECISION; PRECISION <= 0
10701 means copy the whole string. Pad with spaces until FIELD_WIDTH
10702 number of characters have been copied; FIELD_WIDTH <= 0 means don't
10703 pad. Called from display_mode_element when it is used to build a
10704 frame title. */
10705
10706 static int
10707 store_mode_line_noprop (const char *string, int field_width, int precision)
10708 {
10709 const unsigned char *str = (const unsigned char *) string;
10710 int n = 0;
10711 EMACS_INT dummy, nbytes;
10712
10713 /* Copy at most PRECISION chars from STR. */
10714 nbytes = strlen (string);
10715 n += c_string_width (str, nbytes, precision, &dummy, &nbytes);
10716 while (nbytes--)
10717 store_mode_line_noprop_char (*str++);
10718
10719 /* Fill up with spaces until FIELD_WIDTH reached. */
10720 while (field_width > 0
10721 && n < field_width)
10722 {
10723 store_mode_line_noprop_char (' ');
10724 ++n;
10725 }
10726
10727 return n;
10728 }
10729
10730 /***********************************************************************
10731 Frame Titles
10732 ***********************************************************************/
10733
10734 #ifdef HAVE_WINDOW_SYSTEM
10735
10736 /* Set the title of FRAME, if it has changed. The title format is
10737 Vicon_title_format if FRAME is iconified, otherwise it is
10738 frame_title_format. */
10739
10740 static void
10741 x_consider_frame_title (Lisp_Object frame)
10742 {
10743 struct frame *f = XFRAME (frame);
10744
10745 if (FRAME_WINDOW_P (f)
10746 || FRAME_MINIBUF_ONLY_P (f)
10747 || f->explicit_name)
10748 {
10749 /* Do we have more than one visible frame on this X display? */
10750 Lisp_Object tail;
10751 Lisp_Object fmt;
10752 ptrdiff_t title_start;
10753 char *title;
10754 ptrdiff_t len;
10755 struct it it;
10756 int count = SPECPDL_INDEX ();
10757
10758 for (tail = Vframe_list; CONSP (tail); tail = XCDR (tail))
10759 {
10760 Lisp_Object other_frame = XCAR (tail);
10761 struct frame *tf = XFRAME (other_frame);
10762
10763 if (tf != f
10764 && FRAME_KBOARD (tf) == FRAME_KBOARD (f)
10765 && !FRAME_MINIBUF_ONLY_P (tf)
10766 && !EQ (other_frame, tip_frame)
10767 && (FRAME_VISIBLE_P (tf) || FRAME_ICONIFIED_P (tf)))
10768 break;
10769 }
10770
10771 /* Set global variable indicating that multiple frames exist. */
10772 multiple_frames = CONSP (tail);
10773
10774 /* Switch to the buffer of selected window of the frame. Set up
10775 mode_line_target so that display_mode_element will output into
10776 mode_line_noprop_buf; then display the title. */
10777 record_unwind_protect (unwind_format_mode_line,
10778 format_mode_line_unwind_data
10779 (current_buffer, selected_window, 0));
10780
10781 Fselect_window (f->selected_window, Qt);
10782 set_buffer_internal_1 (XBUFFER (XWINDOW (f->selected_window)->buffer));
10783 fmt = FRAME_ICONIFIED_P (f) ? Vicon_title_format : Vframe_title_format;
10784
10785 mode_line_target = MODE_LINE_TITLE;
10786 title_start = MODE_LINE_NOPROP_LEN (0);
10787 init_iterator (&it, XWINDOW (f->selected_window), -1, -1,
10788 NULL, DEFAULT_FACE_ID);
10789 display_mode_element (&it, 0, -1, -1, fmt, Qnil, 0);
10790 len = MODE_LINE_NOPROP_LEN (title_start);
10791 title = mode_line_noprop_buf + title_start;
10792 unbind_to (count, Qnil);
10793
10794 /* Set the title only if it's changed. This avoids consing in
10795 the common case where it hasn't. (If it turns out that we've
10796 already wasted too much time by walking through the list with
10797 display_mode_element, then we might need to optimize at a
10798 higher level than this.) */
10799 if (! STRINGP (f->name)
10800 || SBYTES (f->name) != len
10801 || memcmp (title, SDATA (f->name), len) != 0)
10802 x_implicitly_set_name (f, make_string (title, len), Qnil);
10803 }
10804 }
10805
10806 #endif /* not HAVE_WINDOW_SYSTEM */
10807
10808
10809
10810 \f
10811 /***********************************************************************
10812 Menu Bars
10813 ***********************************************************************/
10814
10815
10816 /* Prepare for redisplay by updating menu-bar item lists when
10817 appropriate. This can call eval. */
10818
10819 void
10820 prepare_menu_bars (void)
10821 {
10822 int all_windows;
10823 struct gcpro gcpro1, gcpro2;
10824 struct frame *f;
10825 Lisp_Object tooltip_frame;
10826
10827 #ifdef HAVE_WINDOW_SYSTEM
10828 tooltip_frame = tip_frame;
10829 #else
10830 tooltip_frame = Qnil;
10831 #endif
10832
10833 /* Update all frame titles based on their buffer names, etc. We do
10834 this before the menu bars so that the buffer-menu will show the
10835 up-to-date frame titles. */
10836 #ifdef HAVE_WINDOW_SYSTEM
10837 if (windows_or_buffers_changed || update_mode_lines)
10838 {
10839 Lisp_Object tail, frame;
10840
10841 FOR_EACH_FRAME (tail, frame)
10842 {
10843 f = XFRAME (frame);
10844 if (!EQ (frame, tooltip_frame)
10845 && (FRAME_VISIBLE_P (f) || FRAME_ICONIFIED_P (f)))
10846 x_consider_frame_title (frame);
10847 }
10848 }
10849 #endif /* HAVE_WINDOW_SYSTEM */
10850
10851 /* Update the menu bar item lists, if appropriate. This has to be
10852 done before any actual redisplay or generation of display lines. */
10853 all_windows = (update_mode_lines
10854 || buffer_shared > 1
10855 || windows_or_buffers_changed);
10856 if (all_windows)
10857 {
10858 Lisp_Object tail, frame;
10859 int count = SPECPDL_INDEX ();
10860 /* 1 means that update_menu_bar has run its hooks
10861 so any further calls to update_menu_bar shouldn't do so again. */
10862 int menu_bar_hooks_run = 0;
10863
10864 record_unwind_save_match_data ();
10865
10866 FOR_EACH_FRAME (tail, frame)
10867 {
10868 f = XFRAME (frame);
10869
10870 /* Ignore tooltip frame. */
10871 if (EQ (frame, tooltip_frame))
10872 continue;
10873
10874 /* If a window on this frame changed size, report that to
10875 the user and clear the size-change flag. */
10876 if (FRAME_WINDOW_SIZES_CHANGED (f))
10877 {
10878 Lisp_Object functions;
10879
10880 /* Clear flag first in case we get an error below. */
10881 FRAME_WINDOW_SIZES_CHANGED (f) = 0;
10882 functions = Vwindow_size_change_functions;
10883 GCPRO2 (tail, functions);
10884
10885 while (CONSP (functions))
10886 {
10887 if (!EQ (XCAR (functions), Qt))
10888 call1 (XCAR (functions), frame);
10889 functions = XCDR (functions);
10890 }
10891 UNGCPRO;
10892 }
10893
10894 GCPRO1 (tail);
10895 menu_bar_hooks_run = update_menu_bar (f, 0, menu_bar_hooks_run);
10896 #ifdef HAVE_WINDOW_SYSTEM
10897 update_tool_bar (f, 0);
10898 #endif
10899 #ifdef HAVE_NS
10900 if (windows_or_buffers_changed
10901 && FRAME_NS_P (f))
10902 ns_set_doc_edited (f, Fbuffer_modified_p
10903 (XWINDOW (f->selected_window)->buffer));
10904 #endif
10905 UNGCPRO;
10906 }
10907
10908 unbind_to (count, Qnil);
10909 }
10910 else
10911 {
10912 struct frame *sf = SELECTED_FRAME ();
10913 update_menu_bar (sf, 1, 0);
10914 #ifdef HAVE_WINDOW_SYSTEM
10915 update_tool_bar (sf, 1);
10916 #endif
10917 }
10918 }
10919
10920
10921 /* Update the menu bar item list for frame F. This has to be done
10922 before we start to fill in any display lines, because it can call
10923 eval.
10924
10925 If SAVE_MATCH_DATA is non-zero, we must save and restore it here.
10926
10927 If HOOKS_RUN is 1, that means a previous call to update_menu_bar
10928 already ran the menu bar hooks for this redisplay, so there
10929 is no need to run them again. The return value is the
10930 updated value of this flag, to pass to the next call. */
10931
10932 static int
10933 update_menu_bar (struct frame *f, int save_match_data, int hooks_run)
10934 {
10935 Lisp_Object window;
10936 register struct window *w;
10937
10938 /* If called recursively during a menu update, do nothing. This can
10939 happen when, for instance, an activate-menubar-hook causes a
10940 redisplay. */
10941 if (inhibit_menubar_update)
10942 return hooks_run;
10943
10944 window = FRAME_SELECTED_WINDOW (f);
10945 w = XWINDOW (window);
10946
10947 if (FRAME_WINDOW_P (f)
10948 ?
10949 #if defined (USE_X_TOOLKIT) || defined (HAVE_NTGUI) \
10950 || defined (HAVE_NS) || defined (USE_GTK)
10951 FRAME_EXTERNAL_MENU_BAR (f)
10952 #else
10953 FRAME_MENU_BAR_LINES (f) > 0
10954 #endif
10955 : FRAME_MENU_BAR_LINES (f) > 0)
10956 {
10957 /* If the user has switched buffers or windows, we need to
10958 recompute to reflect the new bindings. But we'll
10959 recompute when update_mode_lines is set too; that means
10960 that people can use force-mode-line-update to request
10961 that the menu bar be recomputed. The adverse effect on
10962 the rest of the redisplay algorithm is about the same as
10963 windows_or_buffers_changed anyway. */
10964 if (windows_or_buffers_changed
10965 /* This used to test w->update_mode_line, but we believe
10966 there is no need to recompute the menu in that case. */
10967 || update_mode_lines
10968 || ((BUF_SAVE_MODIFF (XBUFFER (w->buffer))
10969 < BUF_MODIFF (XBUFFER (w->buffer)))
10970 != !NILP (w->last_had_star))
10971 || ((!NILP (Vtransient_mark_mode)
10972 && !NILP (BVAR (XBUFFER (w->buffer), mark_active)))
10973 != !NILP (w->region_showing)))
10974 {
10975 struct buffer *prev = current_buffer;
10976 int count = SPECPDL_INDEX ();
10977
10978 specbind (Qinhibit_menubar_update, Qt);
10979
10980 set_buffer_internal_1 (XBUFFER (w->buffer));
10981 if (save_match_data)
10982 record_unwind_save_match_data ();
10983 if (NILP (Voverriding_local_map_menu_flag))
10984 {
10985 specbind (Qoverriding_terminal_local_map, Qnil);
10986 specbind (Qoverriding_local_map, Qnil);
10987 }
10988
10989 if (!hooks_run)
10990 {
10991 /* Run the Lucid hook. */
10992 safe_run_hooks (Qactivate_menubar_hook);
10993
10994 /* If it has changed current-menubar from previous value,
10995 really recompute the menu-bar from the value. */
10996 if (! NILP (Vlucid_menu_bar_dirty_flag))
10997 call0 (Qrecompute_lucid_menubar);
10998
10999 safe_run_hooks (Qmenu_bar_update_hook);
11000
11001 hooks_run = 1;
11002 }
11003
11004 XSETFRAME (Vmenu_updating_frame, f);
11005 FRAME_MENU_BAR_ITEMS (f) = menu_bar_items (FRAME_MENU_BAR_ITEMS (f));
11006
11007 /* Redisplay the menu bar in case we changed it. */
11008 #if defined (USE_X_TOOLKIT) || defined (HAVE_NTGUI) \
11009 || defined (HAVE_NS) || defined (USE_GTK)
11010 if (FRAME_WINDOW_P (f))
11011 {
11012 #if defined (HAVE_NS)
11013 /* All frames on Mac OS share the same menubar. So only
11014 the selected frame should be allowed to set it. */
11015 if (f == SELECTED_FRAME ())
11016 #endif
11017 set_frame_menubar (f, 0, 0);
11018 }
11019 else
11020 /* On a terminal screen, the menu bar is an ordinary screen
11021 line, and this makes it get updated. */
11022 w->update_mode_line = Qt;
11023 #else /* ! (USE_X_TOOLKIT || HAVE_NTGUI || HAVE_NS || USE_GTK) */
11024 /* In the non-toolkit version, the menu bar is an ordinary screen
11025 line, and this makes it get updated. */
11026 w->update_mode_line = Qt;
11027 #endif /* ! (USE_X_TOOLKIT || HAVE_NTGUI || HAVE_NS || USE_GTK) */
11028
11029 unbind_to (count, Qnil);
11030 set_buffer_internal_1 (prev);
11031 }
11032 }
11033
11034 return hooks_run;
11035 }
11036
11037
11038 \f
11039 /***********************************************************************
11040 Output Cursor
11041 ***********************************************************************/
11042
11043 #ifdef HAVE_WINDOW_SYSTEM
11044
11045 /* EXPORT:
11046 Nominal cursor position -- where to draw output.
11047 HPOS and VPOS are window relative glyph matrix coordinates.
11048 X and Y are window relative pixel coordinates. */
11049
11050 struct cursor_pos output_cursor;
11051
11052
11053 /* EXPORT:
11054 Set the global variable output_cursor to CURSOR. All cursor
11055 positions are relative to updated_window. */
11056
11057 void
11058 set_output_cursor (struct cursor_pos *cursor)
11059 {
11060 output_cursor.hpos = cursor->hpos;
11061 output_cursor.vpos = cursor->vpos;
11062 output_cursor.x = cursor->x;
11063 output_cursor.y = cursor->y;
11064 }
11065
11066
11067 /* EXPORT for RIF:
11068 Set a nominal cursor position.
11069
11070 HPOS and VPOS are column/row positions in a window glyph matrix. X
11071 and Y are window text area relative pixel positions.
11072
11073 If this is done during an update, updated_window will contain the
11074 window that is being updated and the position is the future output
11075 cursor position for that window. If updated_window is null, use
11076 selected_window and display the cursor at the given position. */
11077
11078 void
11079 x_cursor_to (int vpos, int hpos, int y, int x)
11080 {
11081 struct window *w;
11082
11083 /* If updated_window is not set, work on selected_window. */
11084 if (updated_window)
11085 w = updated_window;
11086 else
11087 w = XWINDOW (selected_window);
11088
11089 /* Set the output cursor. */
11090 output_cursor.hpos = hpos;
11091 output_cursor.vpos = vpos;
11092 output_cursor.x = x;
11093 output_cursor.y = y;
11094
11095 /* If not called as part of an update, really display the cursor.
11096 This will also set the cursor position of W. */
11097 if (updated_window == NULL)
11098 {
11099 BLOCK_INPUT;
11100 display_and_set_cursor (w, 1, hpos, vpos, x, y);
11101 if (FRAME_RIF (SELECTED_FRAME ())->flush_display_optional)
11102 FRAME_RIF (SELECTED_FRAME ())->flush_display_optional (SELECTED_FRAME ());
11103 UNBLOCK_INPUT;
11104 }
11105 }
11106
11107 #endif /* HAVE_WINDOW_SYSTEM */
11108
11109 \f
11110 /***********************************************************************
11111 Tool-bars
11112 ***********************************************************************/
11113
11114 #ifdef HAVE_WINDOW_SYSTEM
11115
11116 /* Where the mouse was last time we reported a mouse event. */
11117
11118 FRAME_PTR last_mouse_frame;
11119
11120 /* Tool-bar item index of the item on which a mouse button was pressed
11121 or -1. */
11122
11123 int last_tool_bar_item;
11124
11125
11126 static Lisp_Object
11127 update_tool_bar_unwind (Lisp_Object frame)
11128 {
11129 selected_frame = frame;
11130 return Qnil;
11131 }
11132
11133 /* Update the tool-bar item list for frame F. This has to be done
11134 before we start to fill in any display lines. Called from
11135 prepare_menu_bars. If SAVE_MATCH_DATA is non-zero, we must save
11136 and restore it here. */
11137
11138 static void
11139 update_tool_bar (struct frame *f, int save_match_data)
11140 {
11141 #if defined (USE_GTK) || defined (HAVE_NS)
11142 int do_update = FRAME_EXTERNAL_TOOL_BAR (f);
11143 #else
11144 int do_update = WINDOWP (f->tool_bar_window)
11145 && WINDOW_TOTAL_LINES (XWINDOW (f->tool_bar_window)) > 0;
11146 #endif
11147
11148 if (do_update)
11149 {
11150 Lisp_Object window;
11151 struct window *w;
11152
11153 window = FRAME_SELECTED_WINDOW (f);
11154 w = XWINDOW (window);
11155
11156 /* If the user has switched buffers or windows, we need to
11157 recompute to reflect the new bindings. But we'll
11158 recompute when update_mode_lines is set too; that means
11159 that people can use force-mode-line-update to request
11160 that the menu bar be recomputed. The adverse effect on
11161 the rest of the redisplay algorithm is about the same as
11162 windows_or_buffers_changed anyway. */
11163 if (windows_or_buffers_changed
11164 || !NILP (w->update_mode_line)
11165 || update_mode_lines
11166 || ((BUF_SAVE_MODIFF (XBUFFER (w->buffer))
11167 < BUF_MODIFF (XBUFFER (w->buffer)))
11168 != !NILP (w->last_had_star))
11169 || ((!NILP (Vtransient_mark_mode)
11170 && !NILP (BVAR (XBUFFER (w->buffer), mark_active)))
11171 != !NILP (w->region_showing)))
11172 {
11173 struct buffer *prev = current_buffer;
11174 int count = SPECPDL_INDEX ();
11175 Lisp_Object frame, new_tool_bar;
11176 int new_n_tool_bar;
11177 struct gcpro gcpro1;
11178
11179 /* Set current_buffer to the buffer of the selected
11180 window of the frame, so that we get the right local
11181 keymaps. */
11182 set_buffer_internal_1 (XBUFFER (w->buffer));
11183
11184 /* Save match data, if we must. */
11185 if (save_match_data)
11186 record_unwind_save_match_data ();
11187
11188 /* Make sure that we don't accidentally use bogus keymaps. */
11189 if (NILP (Voverriding_local_map_menu_flag))
11190 {
11191 specbind (Qoverriding_terminal_local_map, Qnil);
11192 specbind (Qoverriding_local_map, Qnil);
11193 }
11194
11195 GCPRO1 (new_tool_bar);
11196
11197 /* We must temporarily set the selected frame to this frame
11198 before calling tool_bar_items, because the calculation of
11199 the tool-bar keymap uses the selected frame (see
11200 `tool-bar-make-keymap' in tool-bar.el). */
11201 record_unwind_protect (update_tool_bar_unwind, selected_frame);
11202 XSETFRAME (frame, f);
11203 selected_frame = frame;
11204
11205 /* Build desired tool-bar items from keymaps. */
11206 new_tool_bar = tool_bar_items (Fcopy_sequence (f->tool_bar_items),
11207 &new_n_tool_bar);
11208
11209 /* Redisplay the tool-bar if we changed it. */
11210 if (new_n_tool_bar != f->n_tool_bar_items
11211 || NILP (Fequal (new_tool_bar, f->tool_bar_items)))
11212 {
11213 /* Redisplay that happens asynchronously due to an expose event
11214 may access f->tool_bar_items. Make sure we update both
11215 variables within BLOCK_INPUT so no such event interrupts. */
11216 BLOCK_INPUT;
11217 f->tool_bar_items = new_tool_bar;
11218 f->n_tool_bar_items = new_n_tool_bar;
11219 w->update_mode_line = Qt;
11220 UNBLOCK_INPUT;
11221 }
11222
11223 UNGCPRO;
11224
11225 unbind_to (count, Qnil);
11226 set_buffer_internal_1 (prev);
11227 }
11228 }
11229 }
11230
11231
11232 /* Set F->desired_tool_bar_string to a Lisp string representing frame
11233 F's desired tool-bar contents. F->tool_bar_items must have
11234 been set up previously by calling prepare_menu_bars. */
11235
11236 static void
11237 build_desired_tool_bar_string (struct frame *f)
11238 {
11239 int i, size, size_needed;
11240 struct gcpro gcpro1, gcpro2, gcpro3;
11241 Lisp_Object image, plist, props;
11242
11243 image = plist = props = Qnil;
11244 GCPRO3 (image, plist, props);
11245
11246 /* Prepare F->desired_tool_bar_string. If we can reuse it, do so.
11247 Otherwise, make a new string. */
11248
11249 /* The size of the string we might be able to reuse. */
11250 size = (STRINGP (f->desired_tool_bar_string)
11251 ? SCHARS (f->desired_tool_bar_string)
11252 : 0);
11253
11254 /* We need one space in the string for each image. */
11255 size_needed = f->n_tool_bar_items;
11256
11257 /* Reuse f->desired_tool_bar_string, if possible. */
11258 if (size < size_needed || NILP (f->desired_tool_bar_string))
11259 f->desired_tool_bar_string = Fmake_string (make_number (size_needed),
11260 make_number (' '));
11261 else
11262 {
11263 props = list4 (Qdisplay, Qnil, Qmenu_item, Qnil);
11264 Fremove_text_properties (make_number (0), make_number (size),
11265 props, f->desired_tool_bar_string);
11266 }
11267
11268 /* Put a `display' property on the string for the images to display,
11269 put a `menu_item' property on tool-bar items with a value that
11270 is the index of the item in F's tool-bar item vector. */
11271 for (i = 0; i < f->n_tool_bar_items; ++i)
11272 {
11273 #define PROP(IDX) AREF (f->tool_bar_items, i * TOOL_BAR_ITEM_NSLOTS + (IDX))
11274
11275 int enabled_p = !NILP (PROP (TOOL_BAR_ITEM_ENABLED_P));
11276 int selected_p = !NILP (PROP (TOOL_BAR_ITEM_SELECTED_P));
11277 int hmargin, vmargin, relief, idx, end;
11278
11279 /* If image is a vector, choose the image according to the
11280 button state. */
11281 image = PROP (TOOL_BAR_ITEM_IMAGES);
11282 if (VECTORP (image))
11283 {
11284 if (enabled_p)
11285 idx = (selected_p
11286 ? TOOL_BAR_IMAGE_ENABLED_SELECTED
11287 : TOOL_BAR_IMAGE_ENABLED_DESELECTED);
11288 else
11289 idx = (selected_p
11290 ? TOOL_BAR_IMAGE_DISABLED_SELECTED
11291 : TOOL_BAR_IMAGE_DISABLED_DESELECTED);
11292
11293 xassert (ASIZE (image) >= idx);
11294 image = AREF (image, idx);
11295 }
11296 else
11297 idx = -1;
11298
11299 /* Ignore invalid image specifications. */
11300 if (!valid_image_p (image))
11301 continue;
11302
11303 /* Display the tool-bar button pressed, or depressed. */
11304 plist = Fcopy_sequence (XCDR (image));
11305
11306 /* Compute margin and relief to draw. */
11307 relief = (tool_bar_button_relief >= 0
11308 ? tool_bar_button_relief
11309 : DEFAULT_TOOL_BAR_BUTTON_RELIEF);
11310 hmargin = vmargin = relief;
11311
11312 if (INTEGERP (Vtool_bar_button_margin)
11313 && XINT (Vtool_bar_button_margin) > 0)
11314 {
11315 hmargin += XFASTINT (Vtool_bar_button_margin);
11316 vmargin += XFASTINT (Vtool_bar_button_margin);
11317 }
11318 else if (CONSP (Vtool_bar_button_margin))
11319 {
11320 if (INTEGERP (XCAR (Vtool_bar_button_margin))
11321 && XINT (XCAR (Vtool_bar_button_margin)) > 0)
11322 hmargin += XFASTINT (XCAR (Vtool_bar_button_margin));
11323
11324 if (INTEGERP (XCDR (Vtool_bar_button_margin))
11325 && XINT (XCDR (Vtool_bar_button_margin)) > 0)
11326 vmargin += XFASTINT (XCDR (Vtool_bar_button_margin));
11327 }
11328
11329 if (auto_raise_tool_bar_buttons_p)
11330 {
11331 /* Add a `:relief' property to the image spec if the item is
11332 selected. */
11333 if (selected_p)
11334 {
11335 plist = Fplist_put (plist, QCrelief, make_number (-relief));
11336 hmargin -= relief;
11337 vmargin -= relief;
11338 }
11339 }
11340 else
11341 {
11342 /* If image is selected, display it pressed, i.e. with a
11343 negative relief. If it's not selected, display it with a
11344 raised relief. */
11345 plist = Fplist_put (plist, QCrelief,
11346 (selected_p
11347 ? make_number (-relief)
11348 : make_number (relief)));
11349 hmargin -= relief;
11350 vmargin -= relief;
11351 }
11352
11353 /* Put a margin around the image. */
11354 if (hmargin || vmargin)
11355 {
11356 if (hmargin == vmargin)
11357 plist = Fplist_put (plist, QCmargin, make_number (hmargin));
11358 else
11359 plist = Fplist_put (plist, QCmargin,
11360 Fcons (make_number (hmargin),
11361 make_number (vmargin)));
11362 }
11363
11364 /* If button is not enabled, and we don't have special images
11365 for the disabled state, make the image appear disabled by
11366 applying an appropriate algorithm to it. */
11367 if (!enabled_p && idx < 0)
11368 plist = Fplist_put (plist, QCconversion, Qdisabled);
11369
11370 /* Put a `display' text property on the string for the image to
11371 display. Put a `menu-item' property on the string that gives
11372 the start of this item's properties in the tool-bar items
11373 vector. */
11374 image = Fcons (Qimage, plist);
11375 props = list4 (Qdisplay, image,
11376 Qmenu_item, make_number (i * TOOL_BAR_ITEM_NSLOTS));
11377
11378 /* Let the last image hide all remaining spaces in the tool bar
11379 string. The string can be longer than needed when we reuse a
11380 previous string. */
11381 if (i + 1 == f->n_tool_bar_items)
11382 end = SCHARS (f->desired_tool_bar_string);
11383 else
11384 end = i + 1;
11385 Fadd_text_properties (make_number (i), make_number (end),
11386 props, f->desired_tool_bar_string);
11387 #undef PROP
11388 }
11389
11390 UNGCPRO;
11391 }
11392
11393
11394 /* Display one line of the tool-bar of frame IT->f.
11395
11396 HEIGHT specifies the desired height of the tool-bar line.
11397 If the actual height of the glyph row is less than HEIGHT, the
11398 row's height is increased to HEIGHT, and the icons are centered
11399 vertically in the new height.
11400
11401 If HEIGHT is -1, we are counting needed tool-bar lines, so don't
11402 count a final empty row in case the tool-bar width exactly matches
11403 the window width.
11404 */
11405
11406 static void
11407 display_tool_bar_line (struct it *it, int height)
11408 {
11409 struct glyph_row *row = it->glyph_row;
11410 int max_x = it->last_visible_x;
11411 struct glyph *last;
11412
11413 prepare_desired_row (row);
11414 row->y = it->current_y;
11415
11416 /* Note that this isn't made use of if the face hasn't a box,
11417 so there's no need to check the face here. */
11418 it->start_of_box_run_p = 1;
11419
11420 while (it->current_x < max_x)
11421 {
11422 int x, n_glyphs_before, i, nglyphs;
11423 struct it it_before;
11424
11425 /* Get the next display element. */
11426 if (!get_next_display_element (it))
11427 {
11428 /* Don't count empty row if we are counting needed tool-bar lines. */
11429 if (height < 0 && !it->hpos)
11430 return;
11431 break;
11432 }
11433
11434 /* Produce glyphs. */
11435 n_glyphs_before = row->used[TEXT_AREA];
11436 it_before = *it;
11437
11438 PRODUCE_GLYPHS (it);
11439
11440 nglyphs = row->used[TEXT_AREA] - n_glyphs_before;
11441 i = 0;
11442 x = it_before.current_x;
11443 while (i < nglyphs)
11444 {
11445 struct glyph *glyph = row->glyphs[TEXT_AREA] + n_glyphs_before + i;
11446
11447 if (x + glyph->pixel_width > max_x)
11448 {
11449 /* Glyph doesn't fit on line. Backtrack. */
11450 row->used[TEXT_AREA] = n_glyphs_before;
11451 *it = it_before;
11452 /* If this is the only glyph on this line, it will never fit on the
11453 tool-bar, so skip it. But ensure there is at least one glyph,
11454 so we don't accidentally disable the tool-bar. */
11455 if (n_glyphs_before == 0
11456 && (it->vpos > 0 || IT_STRING_CHARPOS (*it) < it->end_charpos-1))
11457 break;
11458 goto out;
11459 }
11460
11461 ++it->hpos;
11462 x += glyph->pixel_width;
11463 ++i;
11464 }
11465
11466 /* Stop at line end. */
11467 if (ITERATOR_AT_END_OF_LINE_P (it))
11468 break;
11469
11470 set_iterator_to_next (it, 1);
11471 }
11472
11473 out:;
11474
11475 row->displays_text_p = row->used[TEXT_AREA] != 0;
11476
11477 /* Use default face for the border below the tool bar.
11478
11479 FIXME: When auto-resize-tool-bars is grow-only, there is
11480 no additional border below the possibly empty tool-bar lines.
11481 So to make the extra empty lines look "normal", we have to
11482 use the tool-bar face for the border too. */
11483 if (!row->displays_text_p && !EQ (Vauto_resize_tool_bars, Qgrow_only))
11484 it->face_id = DEFAULT_FACE_ID;
11485
11486 extend_face_to_end_of_line (it);
11487 last = row->glyphs[TEXT_AREA] + row->used[TEXT_AREA] - 1;
11488 last->right_box_line_p = 1;
11489 if (last == row->glyphs[TEXT_AREA])
11490 last->left_box_line_p = 1;
11491
11492 /* Make line the desired height and center it vertically. */
11493 if ((height -= it->max_ascent + it->max_descent) > 0)
11494 {
11495 /* Don't add more than one line height. */
11496 height %= FRAME_LINE_HEIGHT (it->f);
11497 it->max_ascent += height / 2;
11498 it->max_descent += (height + 1) / 2;
11499 }
11500
11501 compute_line_metrics (it);
11502
11503 /* If line is empty, make it occupy the rest of the tool-bar. */
11504 if (!row->displays_text_p)
11505 {
11506 row->height = row->phys_height = it->last_visible_y - row->y;
11507 row->visible_height = row->height;
11508 row->ascent = row->phys_ascent = 0;
11509 row->extra_line_spacing = 0;
11510 }
11511
11512 row->full_width_p = 1;
11513 row->continued_p = 0;
11514 row->truncated_on_left_p = 0;
11515 row->truncated_on_right_p = 0;
11516
11517 it->current_x = it->hpos = 0;
11518 it->current_y += row->height;
11519 ++it->vpos;
11520 ++it->glyph_row;
11521 }
11522
11523
11524 /* Max tool-bar height. */
11525
11526 #define MAX_FRAME_TOOL_BAR_HEIGHT(f) \
11527 ((FRAME_LINE_HEIGHT (f) * FRAME_LINES (f)))
11528
11529 /* Value is the number of screen lines needed to make all tool-bar
11530 items of frame F visible. The number of actual rows needed is
11531 returned in *N_ROWS if non-NULL. */
11532
11533 static int
11534 tool_bar_lines_needed (struct frame *f, int *n_rows)
11535 {
11536 struct window *w = XWINDOW (f->tool_bar_window);
11537 struct it it;
11538 /* tool_bar_lines_needed is called from redisplay_tool_bar after building
11539 the desired matrix, so use (unused) mode-line row as temporary row to
11540 avoid destroying the first tool-bar row. */
11541 struct glyph_row *temp_row = MATRIX_MODE_LINE_ROW (w->desired_matrix);
11542
11543 /* Initialize an iterator for iteration over
11544 F->desired_tool_bar_string in the tool-bar window of frame F. */
11545 init_iterator (&it, w, -1, -1, temp_row, TOOL_BAR_FACE_ID);
11546 it.first_visible_x = 0;
11547 it.last_visible_x = FRAME_TOTAL_COLS (f) * FRAME_COLUMN_WIDTH (f);
11548 reseat_to_string (&it, NULL, f->desired_tool_bar_string, 0, 0, 0, -1);
11549 it.paragraph_embedding = L2R;
11550
11551 while (!ITERATOR_AT_END_P (&it))
11552 {
11553 clear_glyph_row (temp_row);
11554 it.glyph_row = temp_row;
11555 display_tool_bar_line (&it, -1);
11556 }
11557 clear_glyph_row (temp_row);
11558
11559 /* f->n_tool_bar_rows == 0 means "unknown"; -1 means no tool-bar. */
11560 if (n_rows)
11561 *n_rows = it.vpos > 0 ? it.vpos : -1;
11562
11563 return (it.current_y + FRAME_LINE_HEIGHT (f) - 1) / FRAME_LINE_HEIGHT (f);
11564 }
11565
11566
11567 DEFUN ("tool-bar-lines-needed", Ftool_bar_lines_needed, Stool_bar_lines_needed,
11568 0, 1, 0,
11569 doc: /* Return the number of lines occupied by the tool bar of FRAME. */)
11570 (Lisp_Object frame)
11571 {
11572 struct frame *f;
11573 struct window *w;
11574 int nlines = 0;
11575
11576 if (NILP (frame))
11577 frame = selected_frame;
11578 else
11579 CHECK_FRAME (frame);
11580 f = XFRAME (frame);
11581
11582 if (WINDOWP (f->tool_bar_window)
11583 && (w = XWINDOW (f->tool_bar_window),
11584 WINDOW_TOTAL_LINES (w) > 0))
11585 {
11586 update_tool_bar (f, 1);
11587 if (f->n_tool_bar_items)
11588 {
11589 build_desired_tool_bar_string (f);
11590 nlines = tool_bar_lines_needed (f, NULL);
11591 }
11592 }
11593
11594 return make_number (nlines);
11595 }
11596
11597
11598 /* Display the tool-bar of frame F. Value is non-zero if tool-bar's
11599 height should be changed. */
11600
11601 static int
11602 redisplay_tool_bar (struct frame *f)
11603 {
11604 struct window *w;
11605 struct it it;
11606 struct glyph_row *row;
11607
11608 #if defined (USE_GTK) || defined (HAVE_NS)
11609 if (FRAME_EXTERNAL_TOOL_BAR (f))
11610 update_frame_tool_bar (f);
11611 return 0;
11612 #endif
11613
11614 /* If frame hasn't a tool-bar window or if it is zero-height, don't
11615 do anything. This means you must start with tool-bar-lines
11616 non-zero to get the auto-sizing effect. Or in other words, you
11617 can turn off tool-bars by specifying tool-bar-lines zero. */
11618 if (!WINDOWP (f->tool_bar_window)
11619 || (w = XWINDOW (f->tool_bar_window),
11620 WINDOW_TOTAL_LINES (w) == 0))
11621 return 0;
11622
11623 /* Set up an iterator for the tool-bar window. */
11624 init_iterator (&it, w, -1, -1, w->desired_matrix->rows, TOOL_BAR_FACE_ID);
11625 it.first_visible_x = 0;
11626 it.last_visible_x = FRAME_TOTAL_COLS (f) * FRAME_COLUMN_WIDTH (f);
11627 row = it.glyph_row;
11628
11629 /* Build a string that represents the contents of the tool-bar. */
11630 build_desired_tool_bar_string (f);
11631 reseat_to_string (&it, NULL, f->desired_tool_bar_string, 0, 0, 0, -1);
11632 /* FIXME: This should be controlled by a user option. But it
11633 doesn't make sense to have an R2L tool bar if the menu bar cannot
11634 be drawn also R2L, and making the menu bar R2L is tricky due
11635 toolkit-specific code that implements it. If an R2L tool bar is
11636 ever supported, display_tool_bar_line should also be augmented to
11637 call unproduce_glyphs like display_line and display_string
11638 do. */
11639 it.paragraph_embedding = L2R;
11640
11641 if (f->n_tool_bar_rows == 0)
11642 {
11643 int nlines;
11644
11645 if ((nlines = tool_bar_lines_needed (f, &f->n_tool_bar_rows),
11646 nlines != WINDOW_TOTAL_LINES (w)))
11647 {
11648 Lisp_Object frame;
11649 int old_height = WINDOW_TOTAL_LINES (w);
11650
11651 XSETFRAME (frame, f);
11652 Fmodify_frame_parameters (frame,
11653 Fcons (Fcons (Qtool_bar_lines,
11654 make_number (nlines)),
11655 Qnil));
11656 if (WINDOW_TOTAL_LINES (w) != old_height)
11657 {
11658 clear_glyph_matrix (w->desired_matrix);
11659 fonts_changed_p = 1;
11660 return 1;
11661 }
11662 }
11663 }
11664
11665 /* Display as many lines as needed to display all tool-bar items. */
11666
11667 if (f->n_tool_bar_rows > 0)
11668 {
11669 int border, rows, height, extra;
11670
11671 if (INTEGERP (Vtool_bar_border))
11672 border = XINT (Vtool_bar_border);
11673 else if (EQ (Vtool_bar_border, Qinternal_border_width))
11674 border = FRAME_INTERNAL_BORDER_WIDTH (f);
11675 else if (EQ (Vtool_bar_border, Qborder_width))
11676 border = f->border_width;
11677 else
11678 border = 0;
11679 if (border < 0)
11680 border = 0;
11681
11682 rows = f->n_tool_bar_rows;
11683 height = max (1, (it.last_visible_y - border) / rows);
11684 extra = it.last_visible_y - border - height * rows;
11685
11686 while (it.current_y < it.last_visible_y)
11687 {
11688 int h = 0;
11689 if (extra > 0 && rows-- > 0)
11690 {
11691 h = (extra + rows - 1) / rows;
11692 extra -= h;
11693 }
11694 display_tool_bar_line (&it, height + h);
11695 }
11696 }
11697 else
11698 {
11699 while (it.current_y < it.last_visible_y)
11700 display_tool_bar_line (&it, 0);
11701 }
11702
11703 /* It doesn't make much sense to try scrolling in the tool-bar
11704 window, so don't do it. */
11705 w->desired_matrix->no_scrolling_p = 1;
11706 w->must_be_updated_p = 1;
11707
11708 if (!NILP (Vauto_resize_tool_bars))
11709 {
11710 int max_tool_bar_height = MAX_FRAME_TOOL_BAR_HEIGHT (f);
11711 int change_height_p = 0;
11712
11713 /* If we couldn't display everything, change the tool-bar's
11714 height if there is room for more. */
11715 if (IT_STRING_CHARPOS (it) < it.end_charpos
11716 && it.current_y < max_tool_bar_height)
11717 change_height_p = 1;
11718
11719 row = it.glyph_row - 1;
11720
11721 /* If there are blank lines at the end, except for a partially
11722 visible blank line at the end that is smaller than
11723 FRAME_LINE_HEIGHT, change the tool-bar's height. */
11724 if (!row->displays_text_p
11725 && row->height >= FRAME_LINE_HEIGHT (f))
11726 change_height_p = 1;
11727
11728 /* If row displays tool-bar items, but is partially visible,
11729 change the tool-bar's height. */
11730 if (row->displays_text_p
11731 && MATRIX_ROW_BOTTOM_Y (row) > it.last_visible_y
11732 && MATRIX_ROW_BOTTOM_Y (row) < max_tool_bar_height)
11733 change_height_p = 1;
11734
11735 /* Resize windows as needed by changing the `tool-bar-lines'
11736 frame parameter. */
11737 if (change_height_p)
11738 {
11739 Lisp_Object frame;
11740 int old_height = WINDOW_TOTAL_LINES (w);
11741 int nrows;
11742 int nlines = tool_bar_lines_needed (f, &nrows);
11743
11744 change_height_p = ((EQ (Vauto_resize_tool_bars, Qgrow_only)
11745 && !f->minimize_tool_bar_window_p)
11746 ? (nlines > old_height)
11747 : (nlines != old_height));
11748 f->minimize_tool_bar_window_p = 0;
11749
11750 if (change_height_p)
11751 {
11752 XSETFRAME (frame, f);
11753 Fmodify_frame_parameters (frame,
11754 Fcons (Fcons (Qtool_bar_lines,
11755 make_number (nlines)),
11756 Qnil));
11757 if (WINDOW_TOTAL_LINES (w) != old_height)
11758 {
11759 clear_glyph_matrix (w->desired_matrix);
11760 f->n_tool_bar_rows = nrows;
11761 fonts_changed_p = 1;
11762 return 1;
11763 }
11764 }
11765 }
11766 }
11767
11768 f->minimize_tool_bar_window_p = 0;
11769 return 0;
11770 }
11771
11772
11773 /* Get information about the tool-bar item which is displayed in GLYPH
11774 on frame F. Return in *PROP_IDX the index where tool-bar item
11775 properties start in F->tool_bar_items. Value is zero if
11776 GLYPH doesn't display a tool-bar item. */
11777
11778 static int
11779 tool_bar_item_info (struct frame *f, struct glyph *glyph, int *prop_idx)
11780 {
11781 Lisp_Object prop;
11782 int success_p;
11783 int charpos;
11784
11785 /* This function can be called asynchronously, which means we must
11786 exclude any possibility that Fget_text_property signals an
11787 error. */
11788 charpos = min (SCHARS (f->current_tool_bar_string), glyph->charpos);
11789 charpos = max (0, charpos);
11790
11791 /* Get the text property `menu-item' at pos. The value of that
11792 property is the start index of this item's properties in
11793 F->tool_bar_items. */
11794 prop = Fget_text_property (make_number (charpos),
11795 Qmenu_item, f->current_tool_bar_string);
11796 if (INTEGERP (prop))
11797 {
11798 *prop_idx = XINT (prop);
11799 success_p = 1;
11800 }
11801 else
11802 success_p = 0;
11803
11804 return success_p;
11805 }
11806
11807 \f
11808 /* Get information about the tool-bar item at position X/Y on frame F.
11809 Return in *GLYPH a pointer to the glyph of the tool-bar item in
11810 the current matrix of the tool-bar window of F, or NULL if not
11811 on a tool-bar item. Return in *PROP_IDX the index of the tool-bar
11812 item in F->tool_bar_items. Value is
11813
11814 -1 if X/Y is not on a tool-bar item
11815 0 if X/Y is on the same item that was highlighted before.
11816 1 otherwise. */
11817
11818 static int
11819 get_tool_bar_item (struct frame *f, int x, int y, struct glyph **glyph,
11820 int *hpos, int *vpos, int *prop_idx)
11821 {
11822 Mouse_HLInfo *hlinfo = MOUSE_HL_INFO (f);
11823 struct window *w = XWINDOW (f->tool_bar_window);
11824 int area;
11825
11826 /* Find the glyph under X/Y. */
11827 *glyph = x_y_to_hpos_vpos (w, x, y, hpos, vpos, 0, 0, &area);
11828 if (*glyph == NULL)
11829 return -1;
11830
11831 /* Get the start of this tool-bar item's properties in
11832 f->tool_bar_items. */
11833 if (!tool_bar_item_info (f, *glyph, prop_idx))
11834 return -1;
11835
11836 /* Is mouse on the highlighted item? */
11837 if (EQ (f->tool_bar_window, hlinfo->mouse_face_window)
11838 && *vpos >= hlinfo->mouse_face_beg_row
11839 && *vpos <= hlinfo->mouse_face_end_row
11840 && (*vpos > hlinfo->mouse_face_beg_row
11841 || *hpos >= hlinfo->mouse_face_beg_col)
11842 && (*vpos < hlinfo->mouse_face_end_row
11843 || *hpos < hlinfo->mouse_face_end_col
11844 || hlinfo->mouse_face_past_end))
11845 return 0;
11846
11847 return 1;
11848 }
11849
11850
11851 /* EXPORT:
11852 Handle mouse button event on the tool-bar of frame F, at
11853 frame-relative coordinates X/Y. DOWN_P is 1 for a button press,
11854 0 for button release. MODIFIERS is event modifiers for button
11855 release. */
11856
11857 void
11858 handle_tool_bar_click (struct frame *f, int x, int y, int down_p,
11859 unsigned int modifiers)
11860 {
11861 Mouse_HLInfo *hlinfo = MOUSE_HL_INFO (f);
11862 struct window *w = XWINDOW (f->tool_bar_window);
11863 int hpos, vpos, prop_idx;
11864 struct glyph *glyph;
11865 Lisp_Object enabled_p;
11866
11867 /* If not on the highlighted tool-bar item, return. */
11868 frame_to_window_pixel_xy (w, &x, &y);
11869 if (get_tool_bar_item (f, x, y, &glyph, &hpos, &vpos, &prop_idx) != 0)
11870 return;
11871
11872 /* If item is disabled, do nothing. */
11873 enabled_p = AREF (f->tool_bar_items, prop_idx + TOOL_BAR_ITEM_ENABLED_P);
11874 if (NILP (enabled_p))
11875 return;
11876
11877 if (down_p)
11878 {
11879 /* Show item in pressed state. */
11880 show_mouse_face (hlinfo, DRAW_IMAGE_SUNKEN);
11881 hlinfo->mouse_face_image_state = DRAW_IMAGE_SUNKEN;
11882 last_tool_bar_item = prop_idx;
11883 }
11884 else
11885 {
11886 Lisp_Object key, frame;
11887 struct input_event event;
11888 EVENT_INIT (event);
11889
11890 /* Show item in released state. */
11891 show_mouse_face (hlinfo, DRAW_IMAGE_RAISED);
11892 hlinfo->mouse_face_image_state = DRAW_IMAGE_RAISED;
11893
11894 key = AREF (f->tool_bar_items, prop_idx + TOOL_BAR_ITEM_KEY);
11895
11896 XSETFRAME (frame, f);
11897 event.kind = TOOL_BAR_EVENT;
11898 event.frame_or_window = frame;
11899 event.arg = frame;
11900 kbd_buffer_store_event (&event);
11901
11902 event.kind = TOOL_BAR_EVENT;
11903 event.frame_or_window = frame;
11904 event.arg = key;
11905 event.modifiers = modifiers;
11906 kbd_buffer_store_event (&event);
11907 last_tool_bar_item = -1;
11908 }
11909 }
11910
11911
11912 /* Possibly highlight a tool-bar item on frame F when mouse moves to
11913 tool-bar window-relative coordinates X/Y. Called from
11914 note_mouse_highlight. */
11915
11916 static void
11917 note_tool_bar_highlight (struct frame *f, int x, int y)
11918 {
11919 Lisp_Object window = f->tool_bar_window;
11920 struct window *w = XWINDOW (window);
11921 Display_Info *dpyinfo = FRAME_X_DISPLAY_INFO (f);
11922 Mouse_HLInfo *hlinfo = MOUSE_HL_INFO (f);
11923 int hpos, vpos;
11924 struct glyph *glyph;
11925 struct glyph_row *row;
11926 int i;
11927 Lisp_Object enabled_p;
11928 int prop_idx;
11929 enum draw_glyphs_face draw = DRAW_IMAGE_RAISED;
11930 int mouse_down_p, rc;
11931
11932 /* Function note_mouse_highlight is called with negative X/Y
11933 values when mouse moves outside of the frame. */
11934 if (x <= 0 || y <= 0)
11935 {
11936 clear_mouse_face (hlinfo);
11937 return;
11938 }
11939
11940 rc = get_tool_bar_item (f, x, y, &glyph, &hpos, &vpos, &prop_idx);
11941 if (rc < 0)
11942 {
11943 /* Not on tool-bar item. */
11944 clear_mouse_face (hlinfo);
11945 return;
11946 }
11947 else if (rc == 0)
11948 /* On same tool-bar item as before. */
11949 goto set_help_echo;
11950
11951 clear_mouse_face (hlinfo);
11952
11953 /* Mouse is down, but on different tool-bar item? */
11954 mouse_down_p = (dpyinfo->grabbed
11955 && f == last_mouse_frame
11956 && FRAME_LIVE_P (f));
11957 if (mouse_down_p
11958 && last_tool_bar_item != prop_idx)
11959 return;
11960
11961 hlinfo->mouse_face_image_state = DRAW_NORMAL_TEXT;
11962 draw = mouse_down_p ? DRAW_IMAGE_SUNKEN : DRAW_IMAGE_RAISED;
11963
11964 /* If tool-bar item is not enabled, don't highlight it. */
11965 enabled_p = AREF (f->tool_bar_items, prop_idx + TOOL_BAR_ITEM_ENABLED_P);
11966 if (!NILP (enabled_p))
11967 {
11968 /* Compute the x-position of the glyph. In front and past the
11969 image is a space. We include this in the highlighted area. */
11970 row = MATRIX_ROW (w->current_matrix, vpos);
11971 for (i = x = 0; i < hpos; ++i)
11972 x += row->glyphs[TEXT_AREA][i].pixel_width;
11973
11974 /* Record this as the current active region. */
11975 hlinfo->mouse_face_beg_col = hpos;
11976 hlinfo->mouse_face_beg_row = vpos;
11977 hlinfo->mouse_face_beg_x = x;
11978 hlinfo->mouse_face_beg_y = row->y;
11979 hlinfo->mouse_face_past_end = 0;
11980
11981 hlinfo->mouse_face_end_col = hpos + 1;
11982 hlinfo->mouse_face_end_row = vpos;
11983 hlinfo->mouse_face_end_x = x + glyph->pixel_width;
11984 hlinfo->mouse_face_end_y = row->y;
11985 hlinfo->mouse_face_window = window;
11986 hlinfo->mouse_face_face_id = TOOL_BAR_FACE_ID;
11987
11988 /* Display it as active. */
11989 show_mouse_face (hlinfo, draw);
11990 hlinfo->mouse_face_image_state = draw;
11991 }
11992
11993 set_help_echo:
11994
11995 /* Set help_echo_string to a help string to display for this tool-bar item.
11996 XTread_socket does the rest. */
11997 help_echo_object = help_echo_window = Qnil;
11998 help_echo_pos = -1;
11999 help_echo_string = AREF (f->tool_bar_items, prop_idx + TOOL_BAR_ITEM_HELP);
12000 if (NILP (help_echo_string))
12001 help_echo_string = AREF (f->tool_bar_items, prop_idx + TOOL_BAR_ITEM_CAPTION);
12002 }
12003
12004 #endif /* HAVE_WINDOW_SYSTEM */
12005
12006
12007 \f
12008 /************************************************************************
12009 Horizontal scrolling
12010 ************************************************************************/
12011
12012 static int hscroll_window_tree (Lisp_Object);
12013 static int hscroll_windows (Lisp_Object);
12014
12015 /* For all leaf windows in the window tree rooted at WINDOW, set their
12016 hscroll value so that PT is (i) visible in the window, and (ii) so
12017 that it is not within a certain margin at the window's left and
12018 right border. Value is non-zero if any window's hscroll has been
12019 changed. */
12020
12021 static int
12022 hscroll_window_tree (Lisp_Object window)
12023 {
12024 int hscrolled_p = 0;
12025 int hscroll_relative_p = FLOATP (Vhscroll_step);
12026 int hscroll_step_abs = 0;
12027 double hscroll_step_rel = 0;
12028
12029 if (hscroll_relative_p)
12030 {
12031 hscroll_step_rel = XFLOAT_DATA (Vhscroll_step);
12032 if (hscroll_step_rel < 0)
12033 {
12034 hscroll_relative_p = 0;
12035 hscroll_step_abs = 0;
12036 }
12037 }
12038 else if (INTEGERP (Vhscroll_step))
12039 {
12040 hscroll_step_abs = XINT (Vhscroll_step);
12041 if (hscroll_step_abs < 0)
12042 hscroll_step_abs = 0;
12043 }
12044 else
12045 hscroll_step_abs = 0;
12046
12047 while (WINDOWP (window))
12048 {
12049 struct window *w = XWINDOW (window);
12050
12051 if (WINDOWP (w->hchild))
12052 hscrolled_p |= hscroll_window_tree (w->hchild);
12053 else if (WINDOWP (w->vchild))
12054 hscrolled_p |= hscroll_window_tree (w->vchild);
12055 else if (w->cursor.vpos >= 0)
12056 {
12057 int h_margin;
12058 int text_area_width;
12059 struct glyph_row *current_cursor_row
12060 = MATRIX_ROW (w->current_matrix, w->cursor.vpos);
12061 struct glyph_row *desired_cursor_row
12062 = MATRIX_ROW (w->desired_matrix, w->cursor.vpos);
12063 struct glyph_row *cursor_row
12064 = (desired_cursor_row->enabled_p
12065 ? desired_cursor_row
12066 : current_cursor_row);
12067 int row_r2l_p = cursor_row->reversed_p;
12068
12069 text_area_width = window_box_width (w, TEXT_AREA);
12070
12071 /* Scroll when cursor is inside this scroll margin. */
12072 h_margin = hscroll_margin * WINDOW_FRAME_COLUMN_WIDTH (w);
12073
12074 if (!NILP (Fbuffer_local_value (Qauto_hscroll_mode, w->buffer))
12075 /* For left-to-right rows, hscroll when cursor is either
12076 (i) inside the right hscroll margin, or (ii) if it is
12077 inside the left margin and the window is already
12078 hscrolled. */
12079 && ((!row_r2l_p
12080 && ((XFASTINT (w->hscroll)
12081 && w->cursor.x <= h_margin)
12082 || (cursor_row->enabled_p
12083 && cursor_row->truncated_on_right_p
12084 && (w->cursor.x >= text_area_width - h_margin))))
12085 /* For right-to-left rows, the logic is similar,
12086 except that rules for scrolling to left and right
12087 are reversed. E.g., if cursor.x <= h_margin, we
12088 need to hscroll "to the right" unconditionally,
12089 and that will scroll the screen to the left so as
12090 to reveal the next portion of the row. */
12091 || (row_r2l_p
12092 && ((cursor_row->enabled_p
12093 /* FIXME: It is confusing to set the
12094 truncated_on_right_p flag when R2L rows
12095 are actually truncated on the left. */
12096 && cursor_row->truncated_on_right_p
12097 && w->cursor.x <= h_margin)
12098 || (XFASTINT (w->hscroll)
12099 && (w->cursor.x >= text_area_width - h_margin))))))
12100 {
12101 struct it it;
12102 int hscroll;
12103 struct buffer *saved_current_buffer;
12104 EMACS_INT pt;
12105 int wanted_x;
12106
12107 /* Find point in a display of infinite width. */
12108 saved_current_buffer = current_buffer;
12109 current_buffer = XBUFFER (w->buffer);
12110
12111 if (w == XWINDOW (selected_window))
12112 pt = PT;
12113 else
12114 {
12115 pt = marker_position (w->pointm);
12116 pt = max (BEGV, pt);
12117 pt = min (ZV, pt);
12118 }
12119
12120 /* Move iterator to pt starting at cursor_row->start in
12121 a line with infinite width. */
12122 init_to_row_start (&it, w, cursor_row);
12123 it.last_visible_x = INFINITY;
12124 move_it_in_display_line_to (&it, pt, -1, MOVE_TO_POS);
12125 current_buffer = saved_current_buffer;
12126
12127 /* Position cursor in window. */
12128 if (!hscroll_relative_p && hscroll_step_abs == 0)
12129 hscroll = max (0, (it.current_x
12130 - (ITERATOR_AT_END_OF_LINE_P (&it)
12131 ? (text_area_width - 4 * FRAME_COLUMN_WIDTH (it.f))
12132 : (text_area_width / 2))))
12133 / FRAME_COLUMN_WIDTH (it.f);
12134 else if ((!row_r2l_p
12135 && w->cursor.x >= text_area_width - h_margin)
12136 || (row_r2l_p && w->cursor.x <= h_margin))
12137 {
12138 if (hscroll_relative_p)
12139 wanted_x = text_area_width * (1 - hscroll_step_rel)
12140 - h_margin;
12141 else
12142 wanted_x = text_area_width
12143 - hscroll_step_abs * FRAME_COLUMN_WIDTH (it.f)
12144 - h_margin;
12145 hscroll
12146 = max (0, it.current_x - wanted_x) / FRAME_COLUMN_WIDTH (it.f);
12147 }
12148 else
12149 {
12150 if (hscroll_relative_p)
12151 wanted_x = text_area_width * hscroll_step_rel
12152 + h_margin;
12153 else
12154 wanted_x = hscroll_step_abs * FRAME_COLUMN_WIDTH (it.f)
12155 + h_margin;
12156 hscroll
12157 = max (0, it.current_x - wanted_x) / FRAME_COLUMN_WIDTH (it.f);
12158 }
12159 hscroll = max (hscroll, XFASTINT (w->min_hscroll));
12160
12161 /* Don't prevent redisplay optimizations if hscroll
12162 hasn't changed, as it will unnecessarily slow down
12163 redisplay. */
12164 if (XFASTINT (w->hscroll) != hscroll)
12165 {
12166 XBUFFER (w->buffer)->prevent_redisplay_optimizations_p = 1;
12167 w->hscroll = make_number (hscroll);
12168 hscrolled_p = 1;
12169 }
12170 }
12171 }
12172
12173 window = w->next;
12174 }
12175
12176 /* Value is non-zero if hscroll of any leaf window has been changed. */
12177 return hscrolled_p;
12178 }
12179
12180
12181 /* Set hscroll so that cursor is visible and not inside horizontal
12182 scroll margins for all windows in the tree rooted at WINDOW. See
12183 also hscroll_window_tree above. Value is non-zero if any window's
12184 hscroll has been changed. If it has, desired matrices on the frame
12185 of WINDOW are cleared. */
12186
12187 static int
12188 hscroll_windows (Lisp_Object window)
12189 {
12190 int hscrolled_p = hscroll_window_tree (window);
12191 if (hscrolled_p)
12192 clear_desired_matrices (XFRAME (WINDOW_FRAME (XWINDOW (window))));
12193 return hscrolled_p;
12194 }
12195
12196
12197 \f
12198 /************************************************************************
12199 Redisplay
12200 ************************************************************************/
12201
12202 /* Variables holding some state of redisplay if GLYPH_DEBUG is defined
12203 to a non-zero value. This is sometimes handy to have in a debugger
12204 session. */
12205
12206 #if GLYPH_DEBUG
12207
12208 /* First and last unchanged row for try_window_id. */
12209
12210 static int debug_first_unchanged_at_end_vpos;
12211 static int debug_last_unchanged_at_beg_vpos;
12212
12213 /* Delta vpos and y. */
12214
12215 static int debug_dvpos, debug_dy;
12216
12217 /* Delta in characters and bytes for try_window_id. */
12218
12219 static EMACS_INT debug_delta, debug_delta_bytes;
12220
12221 /* Values of window_end_pos and window_end_vpos at the end of
12222 try_window_id. */
12223
12224 static EMACS_INT debug_end_vpos;
12225
12226 /* Append a string to W->desired_matrix->method. FMT is a printf
12227 format string. If trace_redisplay_p is non-zero also printf the
12228 resulting string to stderr. */
12229
12230 static void debug_method_add (struct window *, char const *, ...)
12231 ATTRIBUTE_FORMAT_PRINTF (2, 3);
12232
12233 static void
12234 debug_method_add (struct window *w, char const *fmt, ...)
12235 {
12236 char buffer[512];
12237 char *method = w->desired_matrix->method;
12238 int len = strlen (method);
12239 int size = sizeof w->desired_matrix->method;
12240 int remaining = size - len - 1;
12241 va_list ap;
12242
12243 va_start (ap, fmt);
12244 vsprintf (buffer, fmt, ap);
12245 va_end (ap);
12246 if (len && remaining)
12247 {
12248 method[len] = '|';
12249 --remaining, ++len;
12250 }
12251
12252 strncpy (method + len, buffer, remaining);
12253
12254 if (trace_redisplay_p)
12255 fprintf (stderr, "%p (%s): %s\n",
12256 w,
12257 ((BUFFERP (w->buffer)
12258 && STRINGP (BVAR (XBUFFER (w->buffer), name)))
12259 ? SSDATA (BVAR (XBUFFER (w->buffer), name))
12260 : "no buffer"),
12261 buffer);
12262 }
12263
12264 #endif /* GLYPH_DEBUG */
12265
12266
12267 /* Value is non-zero if all changes in window W, which displays
12268 current_buffer, are in the text between START and END. START is a
12269 buffer position, END is given as a distance from Z. Used in
12270 redisplay_internal for display optimization. */
12271
12272 static inline int
12273 text_outside_line_unchanged_p (struct window *w,
12274 EMACS_INT start, EMACS_INT end)
12275 {
12276 int unchanged_p = 1;
12277
12278 /* If text or overlays have changed, see where. */
12279 if (XFASTINT (w->last_modified) < MODIFF
12280 || XFASTINT (w->last_overlay_modified) < OVERLAY_MODIFF)
12281 {
12282 /* Gap in the line? */
12283 if (GPT < start || Z - GPT < end)
12284 unchanged_p = 0;
12285
12286 /* Changes start in front of the line, or end after it? */
12287 if (unchanged_p
12288 && (BEG_UNCHANGED < start - 1
12289 || END_UNCHANGED < end))
12290 unchanged_p = 0;
12291
12292 /* If selective display, can't optimize if changes start at the
12293 beginning of the line. */
12294 if (unchanged_p
12295 && INTEGERP (BVAR (current_buffer, selective_display))
12296 && XINT (BVAR (current_buffer, selective_display)) > 0
12297 && (BEG_UNCHANGED < start || GPT <= start))
12298 unchanged_p = 0;
12299
12300 /* If there are overlays at the start or end of the line, these
12301 may have overlay strings with newlines in them. A change at
12302 START, for instance, may actually concern the display of such
12303 overlay strings as well, and they are displayed on different
12304 lines. So, quickly rule out this case. (For the future, it
12305 might be desirable to implement something more telling than
12306 just BEG/END_UNCHANGED.) */
12307 if (unchanged_p)
12308 {
12309 if (BEG + BEG_UNCHANGED == start
12310 && overlay_touches_p (start))
12311 unchanged_p = 0;
12312 if (END_UNCHANGED == end
12313 && overlay_touches_p (Z - end))
12314 unchanged_p = 0;
12315 }
12316
12317 /* Under bidi reordering, adding or deleting a character in the
12318 beginning of a paragraph, before the first strong directional
12319 character, can change the base direction of the paragraph (unless
12320 the buffer specifies a fixed paragraph direction), which will
12321 require to redisplay the whole paragraph. It might be worthwhile
12322 to find the paragraph limits and widen the range of redisplayed
12323 lines to that, but for now just give up this optimization. */
12324 if (!NILP (BVAR (XBUFFER (w->buffer), bidi_display_reordering))
12325 && NILP (BVAR (XBUFFER (w->buffer), bidi_paragraph_direction)))
12326 unchanged_p = 0;
12327 }
12328
12329 return unchanged_p;
12330 }
12331
12332
12333 /* Do a frame update, taking possible shortcuts into account. This is
12334 the main external entry point for redisplay.
12335
12336 If the last redisplay displayed an echo area message and that message
12337 is no longer requested, we clear the echo area or bring back the
12338 mini-buffer if that is in use. */
12339
12340 void
12341 redisplay (void)
12342 {
12343 redisplay_internal ();
12344 }
12345
12346
12347 static Lisp_Object
12348 overlay_arrow_string_or_property (Lisp_Object var)
12349 {
12350 Lisp_Object val;
12351
12352 if (val = Fget (var, Qoverlay_arrow_string), STRINGP (val))
12353 return val;
12354
12355 return Voverlay_arrow_string;
12356 }
12357
12358 /* Return 1 if there are any overlay-arrows in current_buffer. */
12359 static int
12360 overlay_arrow_in_current_buffer_p (void)
12361 {
12362 Lisp_Object vlist;
12363
12364 for (vlist = Voverlay_arrow_variable_list;
12365 CONSP (vlist);
12366 vlist = XCDR (vlist))
12367 {
12368 Lisp_Object var = XCAR (vlist);
12369 Lisp_Object val;
12370
12371 if (!SYMBOLP (var))
12372 continue;
12373 val = find_symbol_value (var);
12374 if (MARKERP (val)
12375 && current_buffer == XMARKER (val)->buffer)
12376 return 1;
12377 }
12378 return 0;
12379 }
12380
12381
12382 /* Return 1 if any overlay_arrows have moved or overlay-arrow-string
12383 has changed. */
12384
12385 static int
12386 overlay_arrows_changed_p (void)
12387 {
12388 Lisp_Object vlist;
12389
12390 for (vlist = Voverlay_arrow_variable_list;
12391 CONSP (vlist);
12392 vlist = XCDR (vlist))
12393 {
12394 Lisp_Object var = XCAR (vlist);
12395 Lisp_Object val, pstr;
12396
12397 if (!SYMBOLP (var))
12398 continue;
12399 val = find_symbol_value (var);
12400 if (!MARKERP (val))
12401 continue;
12402 if (! EQ (COERCE_MARKER (val),
12403 Fget (var, Qlast_arrow_position))
12404 || ! (pstr = overlay_arrow_string_or_property (var),
12405 EQ (pstr, Fget (var, Qlast_arrow_string))))
12406 return 1;
12407 }
12408 return 0;
12409 }
12410
12411 /* Mark overlay arrows to be updated on next redisplay. */
12412
12413 static void
12414 update_overlay_arrows (int up_to_date)
12415 {
12416 Lisp_Object vlist;
12417
12418 for (vlist = Voverlay_arrow_variable_list;
12419 CONSP (vlist);
12420 vlist = XCDR (vlist))
12421 {
12422 Lisp_Object var = XCAR (vlist);
12423
12424 if (!SYMBOLP (var))
12425 continue;
12426
12427 if (up_to_date > 0)
12428 {
12429 Lisp_Object val = find_symbol_value (var);
12430 Fput (var, Qlast_arrow_position,
12431 COERCE_MARKER (val));
12432 Fput (var, Qlast_arrow_string,
12433 overlay_arrow_string_or_property (var));
12434 }
12435 else if (up_to_date < 0
12436 || !NILP (Fget (var, Qlast_arrow_position)))
12437 {
12438 Fput (var, Qlast_arrow_position, Qt);
12439 Fput (var, Qlast_arrow_string, Qt);
12440 }
12441 }
12442 }
12443
12444
12445 /* Return overlay arrow string to display at row.
12446 Return integer (bitmap number) for arrow bitmap in left fringe.
12447 Return nil if no overlay arrow. */
12448
12449 static Lisp_Object
12450 overlay_arrow_at_row (struct it *it, struct glyph_row *row)
12451 {
12452 Lisp_Object vlist;
12453
12454 for (vlist = Voverlay_arrow_variable_list;
12455 CONSP (vlist);
12456 vlist = XCDR (vlist))
12457 {
12458 Lisp_Object var = XCAR (vlist);
12459 Lisp_Object val;
12460
12461 if (!SYMBOLP (var))
12462 continue;
12463
12464 val = find_symbol_value (var);
12465
12466 if (MARKERP (val)
12467 && current_buffer == XMARKER (val)->buffer
12468 && (MATRIX_ROW_START_CHARPOS (row) == marker_position (val)))
12469 {
12470 if (FRAME_WINDOW_P (it->f)
12471 /* FIXME: if ROW->reversed_p is set, this should test
12472 the right fringe, not the left one. */
12473 && WINDOW_LEFT_FRINGE_WIDTH (it->w) > 0)
12474 {
12475 #ifdef HAVE_WINDOW_SYSTEM
12476 if (val = Fget (var, Qoverlay_arrow_bitmap), SYMBOLP (val))
12477 {
12478 int fringe_bitmap;
12479 if ((fringe_bitmap = lookup_fringe_bitmap (val)) != 0)
12480 return make_number (fringe_bitmap);
12481 }
12482 #endif
12483 return make_number (-1); /* Use default arrow bitmap */
12484 }
12485 return overlay_arrow_string_or_property (var);
12486 }
12487 }
12488
12489 return Qnil;
12490 }
12491
12492 /* Return 1 if point moved out of or into a composition. Otherwise
12493 return 0. PREV_BUF and PREV_PT are the last point buffer and
12494 position. BUF and PT are the current point buffer and position. */
12495
12496 static int
12497 check_point_in_composition (struct buffer *prev_buf, EMACS_INT prev_pt,
12498 struct buffer *buf, EMACS_INT pt)
12499 {
12500 EMACS_INT start, end;
12501 Lisp_Object prop;
12502 Lisp_Object buffer;
12503
12504 XSETBUFFER (buffer, buf);
12505 /* Check a composition at the last point if point moved within the
12506 same buffer. */
12507 if (prev_buf == buf)
12508 {
12509 if (prev_pt == pt)
12510 /* Point didn't move. */
12511 return 0;
12512
12513 if (prev_pt > BUF_BEGV (buf) && prev_pt < BUF_ZV (buf)
12514 && find_composition (prev_pt, -1, &start, &end, &prop, buffer)
12515 && COMPOSITION_VALID_P (start, end, prop)
12516 && start < prev_pt && end > prev_pt)
12517 /* The last point was within the composition. Return 1 iff
12518 point moved out of the composition. */
12519 return (pt <= start || pt >= end);
12520 }
12521
12522 /* Check a composition at the current point. */
12523 return (pt > BUF_BEGV (buf) && pt < BUF_ZV (buf)
12524 && find_composition (pt, -1, &start, &end, &prop, buffer)
12525 && COMPOSITION_VALID_P (start, end, prop)
12526 && start < pt && end > pt);
12527 }
12528
12529
12530 /* Reconsider the setting of B->clip_changed which is displayed
12531 in window W. */
12532
12533 static inline void
12534 reconsider_clip_changes (struct window *w, struct buffer *b)
12535 {
12536 if (b->clip_changed
12537 && !NILP (w->window_end_valid)
12538 && w->current_matrix->buffer == b
12539 && w->current_matrix->zv == BUF_ZV (b)
12540 && w->current_matrix->begv == BUF_BEGV (b))
12541 b->clip_changed = 0;
12542
12543 /* If display wasn't paused, and W is not a tool bar window, see if
12544 point has been moved into or out of a composition. In that case,
12545 we set b->clip_changed to 1 to force updating the screen. If
12546 b->clip_changed has already been set to 1, we can skip this
12547 check. */
12548 if (!b->clip_changed
12549 && BUFFERP (w->buffer) && !NILP (w->window_end_valid))
12550 {
12551 EMACS_INT pt;
12552
12553 if (w == XWINDOW (selected_window))
12554 pt = PT;
12555 else
12556 pt = marker_position (w->pointm);
12557
12558 if ((w->current_matrix->buffer != XBUFFER (w->buffer)
12559 || pt != XINT (w->last_point))
12560 && check_point_in_composition (w->current_matrix->buffer,
12561 XINT (w->last_point),
12562 XBUFFER (w->buffer), pt))
12563 b->clip_changed = 1;
12564 }
12565 }
12566 \f
12567
12568 /* Select FRAME to forward the values of frame-local variables into C
12569 variables so that the redisplay routines can access those values
12570 directly. */
12571
12572 static void
12573 select_frame_for_redisplay (Lisp_Object frame)
12574 {
12575 Lisp_Object tail, tem;
12576 Lisp_Object old = selected_frame;
12577 struct Lisp_Symbol *sym;
12578
12579 xassert (FRAMEP (frame) && FRAME_LIVE_P (XFRAME (frame)));
12580
12581 selected_frame = frame;
12582
12583 do {
12584 for (tail = XFRAME (frame)->param_alist; CONSP (tail); tail = XCDR (tail))
12585 if (CONSP (XCAR (tail))
12586 && (tem = XCAR (XCAR (tail)),
12587 SYMBOLP (tem))
12588 && (sym = indirect_variable (XSYMBOL (tem)),
12589 sym->redirect == SYMBOL_LOCALIZED)
12590 && sym->val.blv->frame_local)
12591 /* Use find_symbol_value rather than Fsymbol_value
12592 to avoid an error if it is void. */
12593 find_symbol_value (tem);
12594 } while (!EQ (frame, old) && (frame = old, 1));
12595 }
12596
12597
12598 #define STOP_POLLING \
12599 do { if (! polling_stopped_here) stop_polling (); \
12600 polling_stopped_here = 1; } while (0)
12601
12602 #define RESUME_POLLING \
12603 do { if (polling_stopped_here) start_polling (); \
12604 polling_stopped_here = 0; } while (0)
12605
12606
12607 /* Perhaps in the future avoid recentering windows if it
12608 is not necessary; currently that causes some problems. */
12609
12610 static void
12611 redisplay_internal (void)
12612 {
12613 struct window *w = XWINDOW (selected_window);
12614 struct window *sw;
12615 struct frame *fr;
12616 int pending;
12617 int must_finish = 0;
12618 struct text_pos tlbufpos, tlendpos;
12619 int number_of_visible_frames;
12620 int count, count1;
12621 struct frame *sf;
12622 int polling_stopped_here = 0;
12623 Lisp_Object old_frame = selected_frame;
12624
12625 /* Non-zero means redisplay has to consider all windows on all
12626 frames. Zero means, only selected_window is considered. */
12627 int consider_all_windows_p;
12628
12629 TRACE ((stderr, "redisplay_internal %d\n", redisplaying_p));
12630
12631 /* No redisplay if running in batch mode or frame is not yet fully
12632 initialized, or redisplay is explicitly turned off by setting
12633 Vinhibit_redisplay. */
12634 if (FRAME_INITIAL_P (SELECTED_FRAME ())
12635 || !NILP (Vinhibit_redisplay))
12636 return;
12637
12638 /* Don't examine these until after testing Vinhibit_redisplay.
12639 When Emacs is shutting down, perhaps because its connection to
12640 X has dropped, we should not look at them at all. */
12641 fr = XFRAME (w->frame);
12642 sf = SELECTED_FRAME ();
12643
12644 if (!fr->glyphs_initialized_p)
12645 return;
12646
12647 #if defined (USE_X_TOOLKIT) || defined (USE_GTK) || defined (HAVE_NS)
12648 if (popup_activated ())
12649 return;
12650 #endif
12651
12652 /* I don't think this happens but let's be paranoid. */
12653 if (redisplaying_p)
12654 return;
12655
12656 /* Record a function that resets redisplaying_p to its old value
12657 when we leave this function. */
12658 count = SPECPDL_INDEX ();
12659 record_unwind_protect (unwind_redisplay,
12660 Fcons (make_number (redisplaying_p), selected_frame));
12661 ++redisplaying_p;
12662 specbind (Qinhibit_free_realized_faces, Qnil);
12663
12664 {
12665 Lisp_Object tail, frame;
12666
12667 FOR_EACH_FRAME (tail, frame)
12668 {
12669 struct frame *f = XFRAME (frame);
12670 f->already_hscrolled_p = 0;
12671 }
12672 }
12673
12674 retry:
12675 /* Remember the currently selected window. */
12676 sw = w;
12677
12678 if (!EQ (old_frame, selected_frame)
12679 && FRAME_LIVE_P (XFRAME (old_frame)))
12680 /* When running redisplay, we play a bit fast-and-loose and allow e.g.
12681 selected_frame and selected_window to be temporarily out-of-sync so
12682 when we come back here via `goto retry', we need to resync because we
12683 may need to run Elisp code (via prepare_menu_bars). */
12684 select_frame_for_redisplay (old_frame);
12685
12686 pending = 0;
12687 reconsider_clip_changes (w, current_buffer);
12688 last_escape_glyph_frame = NULL;
12689 last_escape_glyph_face_id = (1 << FACE_ID_BITS);
12690 last_glyphless_glyph_frame = NULL;
12691 last_glyphless_glyph_face_id = (1 << FACE_ID_BITS);
12692
12693 /* If new fonts have been loaded that make a glyph matrix adjustment
12694 necessary, do it. */
12695 if (fonts_changed_p)
12696 {
12697 adjust_glyphs (NULL);
12698 ++windows_or_buffers_changed;
12699 fonts_changed_p = 0;
12700 }
12701
12702 /* If face_change_count is non-zero, init_iterator will free all
12703 realized faces, which includes the faces referenced from current
12704 matrices. So, we can't reuse current matrices in this case. */
12705 if (face_change_count)
12706 ++windows_or_buffers_changed;
12707
12708 if ((FRAME_TERMCAP_P (sf) || FRAME_MSDOS_P (sf))
12709 && FRAME_TTY (sf)->previous_frame != sf)
12710 {
12711 /* Since frames on a single ASCII terminal share the same
12712 display area, displaying a different frame means redisplay
12713 the whole thing. */
12714 windows_or_buffers_changed++;
12715 SET_FRAME_GARBAGED (sf);
12716 #ifndef DOS_NT
12717 set_tty_color_mode (FRAME_TTY (sf), sf);
12718 #endif
12719 FRAME_TTY (sf)->previous_frame = sf;
12720 }
12721
12722 /* Set the visible flags for all frames. Do this before checking
12723 for resized or garbaged frames; they want to know if their frames
12724 are visible. See the comment in frame.h for
12725 FRAME_SAMPLE_VISIBILITY. */
12726 {
12727 Lisp_Object tail, frame;
12728
12729 number_of_visible_frames = 0;
12730
12731 FOR_EACH_FRAME (tail, frame)
12732 {
12733 struct frame *f = XFRAME (frame);
12734
12735 FRAME_SAMPLE_VISIBILITY (f);
12736 if (FRAME_VISIBLE_P (f))
12737 ++number_of_visible_frames;
12738 clear_desired_matrices (f);
12739 }
12740 }
12741
12742 /* Notice any pending interrupt request to change frame size. */
12743 do_pending_window_change (1);
12744
12745 /* do_pending_window_change could change the selected_window due to
12746 frame resizing which makes the selected window too small. */
12747 if (WINDOWP (selected_window) && (w = XWINDOW (selected_window)) != sw)
12748 {
12749 sw = w;
12750 reconsider_clip_changes (w, current_buffer);
12751 }
12752
12753 /* Clear frames marked as garbaged. */
12754 if (frame_garbaged)
12755 clear_garbaged_frames ();
12756
12757 /* Build menubar and tool-bar items. */
12758 if (NILP (Vmemory_full))
12759 prepare_menu_bars ();
12760
12761 if (windows_or_buffers_changed)
12762 update_mode_lines++;
12763
12764 /* Detect case that we need to write or remove a star in the mode line. */
12765 if ((SAVE_MODIFF < MODIFF) != !NILP (w->last_had_star))
12766 {
12767 w->update_mode_line = Qt;
12768 if (buffer_shared > 1)
12769 update_mode_lines++;
12770 }
12771
12772 /* Avoid invocation of point motion hooks by `current_column' below. */
12773 count1 = SPECPDL_INDEX ();
12774 specbind (Qinhibit_point_motion_hooks, Qt);
12775
12776 /* If %c is in the mode line, update it if needed. */
12777 if (!NILP (w->column_number_displayed)
12778 /* This alternative quickly identifies a common case
12779 where no change is needed. */
12780 && !(PT == XFASTINT (w->last_point)
12781 && XFASTINT (w->last_modified) >= MODIFF
12782 && XFASTINT (w->last_overlay_modified) >= OVERLAY_MODIFF)
12783 && (XFASTINT (w->column_number_displayed) != current_column ()))
12784 w->update_mode_line = Qt;
12785
12786 unbind_to (count1, Qnil);
12787
12788 FRAME_SCROLL_BOTTOM_VPOS (XFRAME (w->frame)) = -1;
12789
12790 /* The variable buffer_shared is set in redisplay_window and
12791 indicates that we redisplay a buffer in different windows. See
12792 there. */
12793 consider_all_windows_p = (update_mode_lines || buffer_shared > 1
12794 || cursor_type_changed);
12795
12796 /* If specs for an arrow have changed, do thorough redisplay
12797 to ensure we remove any arrow that should no longer exist. */
12798 if (overlay_arrows_changed_p ())
12799 consider_all_windows_p = windows_or_buffers_changed = 1;
12800
12801 /* Normally the message* functions will have already displayed and
12802 updated the echo area, but the frame may have been trashed, or
12803 the update may have been preempted, so display the echo area
12804 again here. Checking message_cleared_p captures the case that
12805 the echo area should be cleared. */
12806 if ((!NILP (echo_area_buffer[0]) && !display_last_displayed_message_p)
12807 || (!NILP (echo_area_buffer[1]) && display_last_displayed_message_p)
12808 || (message_cleared_p
12809 && minibuf_level == 0
12810 /* If the mini-window is currently selected, this means the
12811 echo-area doesn't show through. */
12812 && !MINI_WINDOW_P (XWINDOW (selected_window))))
12813 {
12814 int window_height_changed_p = echo_area_display (0);
12815 must_finish = 1;
12816
12817 /* If we don't display the current message, don't clear the
12818 message_cleared_p flag, because, if we did, we wouldn't clear
12819 the echo area in the next redisplay which doesn't preserve
12820 the echo area. */
12821 if (!display_last_displayed_message_p)
12822 message_cleared_p = 0;
12823
12824 if (fonts_changed_p)
12825 goto retry;
12826 else if (window_height_changed_p)
12827 {
12828 consider_all_windows_p = 1;
12829 ++update_mode_lines;
12830 ++windows_or_buffers_changed;
12831
12832 /* If window configuration was changed, frames may have been
12833 marked garbaged. Clear them or we will experience
12834 surprises wrt scrolling. */
12835 if (frame_garbaged)
12836 clear_garbaged_frames ();
12837 }
12838 }
12839 else if (EQ (selected_window, minibuf_window)
12840 && (current_buffer->clip_changed
12841 || XFASTINT (w->last_modified) < MODIFF
12842 || XFASTINT (w->last_overlay_modified) < OVERLAY_MODIFF)
12843 && resize_mini_window (w, 0))
12844 {
12845 /* Resized active mini-window to fit the size of what it is
12846 showing if its contents might have changed. */
12847 must_finish = 1;
12848 /* FIXME: this causes all frames to be updated, which seems unnecessary
12849 since only the current frame needs to be considered. This function needs
12850 to be rewritten with two variables, consider_all_windows and
12851 consider_all_frames. */
12852 consider_all_windows_p = 1;
12853 ++windows_or_buffers_changed;
12854 ++update_mode_lines;
12855
12856 /* If window configuration was changed, frames may have been
12857 marked garbaged. Clear them or we will experience
12858 surprises wrt scrolling. */
12859 if (frame_garbaged)
12860 clear_garbaged_frames ();
12861 }
12862
12863
12864 /* If showing the region, and mark has changed, we must redisplay
12865 the whole window. The assignment to this_line_start_pos prevents
12866 the optimization directly below this if-statement. */
12867 if (((!NILP (Vtransient_mark_mode)
12868 && !NILP (BVAR (XBUFFER (w->buffer), mark_active)))
12869 != !NILP (w->region_showing))
12870 || (!NILP (w->region_showing)
12871 && !EQ (w->region_showing,
12872 Fmarker_position (BVAR (XBUFFER (w->buffer), mark)))))
12873 CHARPOS (this_line_start_pos) = 0;
12874
12875 /* Optimize the case that only the line containing the cursor in the
12876 selected window has changed. Variables starting with this_ are
12877 set in display_line and record information about the line
12878 containing the cursor. */
12879 tlbufpos = this_line_start_pos;
12880 tlendpos = this_line_end_pos;
12881 if (!consider_all_windows_p
12882 && CHARPOS (tlbufpos) > 0
12883 && NILP (w->update_mode_line)
12884 && !current_buffer->clip_changed
12885 && !current_buffer->prevent_redisplay_optimizations_p
12886 && FRAME_VISIBLE_P (XFRAME (w->frame))
12887 && !FRAME_OBSCURED_P (XFRAME (w->frame))
12888 /* Make sure recorded data applies to current buffer, etc. */
12889 && this_line_buffer == current_buffer
12890 && current_buffer == XBUFFER (w->buffer)
12891 && NILP (w->force_start)
12892 && NILP (w->optional_new_start)
12893 /* Point must be on the line that we have info recorded about. */
12894 && PT >= CHARPOS (tlbufpos)
12895 && PT <= Z - CHARPOS (tlendpos)
12896 /* All text outside that line, including its final newline,
12897 must be unchanged. */
12898 && text_outside_line_unchanged_p (w, CHARPOS (tlbufpos),
12899 CHARPOS (tlendpos)))
12900 {
12901 if (CHARPOS (tlbufpos) > BEGV
12902 && FETCH_BYTE (BYTEPOS (tlbufpos) - 1) != '\n'
12903 && (CHARPOS (tlbufpos) == ZV
12904 || FETCH_BYTE (BYTEPOS (tlbufpos)) == '\n'))
12905 /* Former continuation line has disappeared by becoming empty. */
12906 goto cancel;
12907 else if (XFASTINT (w->last_modified) < MODIFF
12908 || XFASTINT (w->last_overlay_modified) < OVERLAY_MODIFF
12909 || MINI_WINDOW_P (w))
12910 {
12911 /* We have to handle the case of continuation around a
12912 wide-column character (see the comment in indent.c around
12913 line 1340).
12914
12915 For instance, in the following case:
12916
12917 -------- Insert --------
12918 K_A_N_\\ `a' K_A_N_a\ `X_' are wide-column chars.
12919 J_I_ ==> J_I_ `^^' are cursors.
12920 ^^ ^^
12921 -------- --------
12922
12923 As we have to redraw the line above, we cannot use this
12924 optimization. */
12925
12926 struct it it;
12927 int line_height_before = this_line_pixel_height;
12928
12929 /* Note that start_display will handle the case that the
12930 line starting at tlbufpos is a continuation line. */
12931 start_display (&it, w, tlbufpos);
12932
12933 /* Implementation note: It this still necessary? */
12934 if (it.current_x != this_line_start_x)
12935 goto cancel;
12936
12937 TRACE ((stderr, "trying display optimization 1\n"));
12938 w->cursor.vpos = -1;
12939 overlay_arrow_seen = 0;
12940 it.vpos = this_line_vpos;
12941 it.current_y = this_line_y;
12942 it.glyph_row = MATRIX_ROW (w->desired_matrix, this_line_vpos);
12943 display_line (&it);
12944
12945 /* If line contains point, is not continued,
12946 and ends at same distance from eob as before, we win. */
12947 if (w->cursor.vpos >= 0
12948 /* Line is not continued, otherwise this_line_start_pos
12949 would have been set to 0 in display_line. */
12950 && CHARPOS (this_line_start_pos)
12951 /* Line ends as before. */
12952 && CHARPOS (this_line_end_pos) == CHARPOS (tlendpos)
12953 /* Line has same height as before. Otherwise other lines
12954 would have to be shifted up or down. */
12955 && this_line_pixel_height == line_height_before)
12956 {
12957 /* If this is not the window's last line, we must adjust
12958 the charstarts of the lines below. */
12959 if (it.current_y < it.last_visible_y)
12960 {
12961 struct glyph_row *row
12962 = MATRIX_ROW (w->current_matrix, this_line_vpos + 1);
12963 EMACS_INT delta, delta_bytes;
12964
12965 /* We used to distinguish between two cases here,
12966 conditioned by Z - CHARPOS (tlendpos) == ZV, for
12967 when the line ends in a newline or the end of the
12968 buffer's accessible portion. But both cases did
12969 the same, so they were collapsed. */
12970 delta = (Z
12971 - CHARPOS (tlendpos)
12972 - MATRIX_ROW_START_CHARPOS (row));
12973 delta_bytes = (Z_BYTE
12974 - BYTEPOS (tlendpos)
12975 - MATRIX_ROW_START_BYTEPOS (row));
12976
12977 increment_matrix_positions (w->current_matrix,
12978 this_line_vpos + 1,
12979 w->current_matrix->nrows,
12980 delta, delta_bytes);
12981 }
12982
12983 /* If this row displays text now but previously didn't,
12984 or vice versa, w->window_end_vpos may have to be
12985 adjusted. */
12986 if ((it.glyph_row - 1)->displays_text_p)
12987 {
12988 if (XFASTINT (w->window_end_vpos) < this_line_vpos)
12989 XSETINT (w->window_end_vpos, this_line_vpos);
12990 }
12991 else if (XFASTINT (w->window_end_vpos) == this_line_vpos
12992 && this_line_vpos > 0)
12993 XSETINT (w->window_end_vpos, this_line_vpos - 1);
12994 w->window_end_valid = Qnil;
12995
12996 /* Update hint: No need to try to scroll in update_window. */
12997 w->desired_matrix->no_scrolling_p = 1;
12998
12999 #if GLYPH_DEBUG
13000 *w->desired_matrix->method = 0;
13001 debug_method_add (w, "optimization 1");
13002 #endif
13003 #ifdef HAVE_WINDOW_SYSTEM
13004 update_window_fringes (w, 0);
13005 #endif
13006 goto update;
13007 }
13008 else
13009 goto cancel;
13010 }
13011 else if (/* Cursor position hasn't changed. */
13012 PT == XFASTINT (w->last_point)
13013 /* Make sure the cursor was last displayed
13014 in this window. Otherwise we have to reposition it. */
13015 && 0 <= w->cursor.vpos
13016 && WINDOW_TOTAL_LINES (w) > w->cursor.vpos)
13017 {
13018 if (!must_finish)
13019 {
13020 do_pending_window_change (1);
13021 /* If selected_window changed, redisplay again. */
13022 if (WINDOWP (selected_window)
13023 && (w = XWINDOW (selected_window)) != sw)
13024 goto retry;
13025
13026 /* We used to always goto end_of_redisplay here, but this
13027 isn't enough if we have a blinking cursor. */
13028 if (w->cursor_off_p == w->last_cursor_off_p)
13029 goto end_of_redisplay;
13030 }
13031 goto update;
13032 }
13033 /* If highlighting the region, or if the cursor is in the echo area,
13034 then we can't just move the cursor. */
13035 else if (! (!NILP (Vtransient_mark_mode)
13036 && !NILP (BVAR (current_buffer, mark_active)))
13037 && (EQ (selected_window, BVAR (current_buffer, last_selected_window))
13038 || highlight_nonselected_windows)
13039 && NILP (w->region_showing)
13040 && NILP (Vshow_trailing_whitespace)
13041 && !cursor_in_echo_area)
13042 {
13043 struct it it;
13044 struct glyph_row *row;
13045
13046 /* Skip from tlbufpos to PT and see where it is. Note that
13047 PT may be in invisible text. If so, we will end at the
13048 next visible position. */
13049 init_iterator (&it, w, CHARPOS (tlbufpos), BYTEPOS (tlbufpos),
13050 NULL, DEFAULT_FACE_ID);
13051 it.current_x = this_line_start_x;
13052 it.current_y = this_line_y;
13053 it.vpos = this_line_vpos;
13054
13055 /* The call to move_it_to stops in front of PT, but
13056 moves over before-strings. */
13057 move_it_to (&it, PT, -1, -1, -1, MOVE_TO_POS);
13058
13059 if (it.vpos == this_line_vpos
13060 && (row = MATRIX_ROW (w->current_matrix, this_line_vpos),
13061 row->enabled_p))
13062 {
13063 xassert (this_line_vpos == it.vpos);
13064 xassert (this_line_y == it.current_y);
13065 set_cursor_from_row (w, row, w->current_matrix, 0, 0, 0, 0);
13066 #if GLYPH_DEBUG
13067 *w->desired_matrix->method = 0;
13068 debug_method_add (w, "optimization 3");
13069 #endif
13070 goto update;
13071 }
13072 else
13073 goto cancel;
13074 }
13075
13076 cancel:
13077 /* Text changed drastically or point moved off of line. */
13078 SET_MATRIX_ROW_ENABLED_P (w->desired_matrix, this_line_vpos, 0);
13079 }
13080
13081 CHARPOS (this_line_start_pos) = 0;
13082 consider_all_windows_p |= buffer_shared > 1;
13083 ++clear_face_cache_count;
13084 #ifdef HAVE_WINDOW_SYSTEM
13085 ++clear_image_cache_count;
13086 #endif
13087
13088 /* Build desired matrices, and update the display. If
13089 consider_all_windows_p is non-zero, do it for all windows on all
13090 frames. Otherwise do it for selected_window, only. */
13091
13092 if (consider_all_windows_p)
13093 {
13094 Lisp_Object tail, frame;
13095
13096 FOR_EACH_FRAME (tail, frame)
13097 XFRAME (frame)->updated_p = 0;
13098
13099 /* Recompute # windows showing selected buffer. This will be
13100 incremented each time such a window is displayed. */
13101 buffer_shared = 0;
13102
13103 FOR_EACH_FRAME (tail, frame)
13104 {
13105 struct frame *f = XFRAME (frame);
13106
13107 if (FRAME_WINDOW_P (f) || FRAME_TERMCAP_P (f) || f == sf)
13108 {
13109 if (! EQ (frame, selected_frame))
13110 /* Select the frame, for the sake of frame-local
13111 variables. */
13112 select_frame_for_redisplay (frame);
13113
13114 /* Mark all the scroll bars to be removed; we'll redeem
13115 the ones we want when we redisplay their windows. */
13116 if (FRAME_TERMINAL (f)->condemn_scroll_bars_hook)
13117 FRAME_TERMINAL (f)->condemn_scroll_bars_hook (f);
13118
13119 if (FRAME_VISIBLE_P (f) && !FRAME_OBSCURED_P (f))
13120 redisplay_windows (FRAME_ROOT_WINDOW (f));
13121
13122 /* The X error handler may have deleted that frame. */
13123 if (!FRAME_LIVE_P (f))
13124 continue;
13125
13126 /* Any scroll bars which redisplay_windows should have
13127 nuked should now go away. */
13128 if (FRAME_TERMINAL (f)->judge_scroll_bars_hook)
13129 FRAME_TERMINAL (f)->judge_scroll_bars_hook (f);
13130
13131 /* If fonts changed, display again. */
13132 /* ??? rms: I suspect it is a mistake to jump all the way
13133 back to retry here. It should just retry this frame. */
13134 if (fonts_changed_p)
13135 goto retry;
13136
13137 if (FRAME_VISIBLE_P (f) && !FRAME_OBSCURED_P (f))
13138 {
13139 /* See if we have to hscroll. */
13140 if (!f->already_hscrolled_p)
13141 {
13142 f->already_hscrolled_p = 1;
13143 if (hscroll_windows (f->root_window))
13144 goto retry;
13145 }
13146
13147 /* Prevent various kinds of signals during display
13148 update. stdio is not robust about handling
13149 signals, which can cause an apparent I/O
13150 error. */
13151 if (interrupt_input)
13152 unrequest_sigio ();
13153 STOP_POLLING;
13154
13155 /* Update the display. */
13156 set_window_update_flags (XWINDOW (f->root_window), 1);
13157 pending |= update_frame (f, 0, 0);
13158 f->updated_p = 1;
13159 }
13160 }
13161 }
13162
13163 if (!EQ (old_frame, selected_frame)
13164 && FRAME_LIVE_P (XFRAME (old_frame)))
13165 /* We played a bit fast-and-loose above and allowed selected_frame
13166 and selected_window to be temporarily out-of-sync but let's make
13167 sure this stays contained. */
13168 select_frame_for_redisplay (old_frame);
13169 eassert (EQ (XFRAME (selected_frame)->selected_window, selected_window));
13170
13171 if (!pending)
13172 {
13173 /* Do the mark_window_display_accurate after all windows have
13174 been redisplayed because this call resets flags in buffers
13175 which are needed for proper redisplay. */
13176 FOR_EACH_FRAME (tail, frame)
13177 {
13178 struct frame *f = XFRAME (frame);
13179 if (f->updated_p)
13180 {
13181 mark_window_display_accurate (f->root_window, 1);
13182 if (FRAME_TERMINAL (f)->frame_up_to_date_hook)
13183 FRAME_TERMINAL (f)->frame_up_to_date_hook (f);
13184 }
13185 }
13186 }
13187 }
13188 else if (FRAME_VISIBLE_P (sf) && !FRAME_OBSCURED_P (sf))
13189 {
13190 Lisp_Object mini_window;
13191 struct frame *mini_frame;
13192
13193 displayed_buffer = XBUFFER (XWINDOW (selected_window)->buffer);
13194 /* Use list_of_error, not Qerror, so that
13195 we catch only errors and don't run the debugger. */
13196 internal_condition_case_1 (redisplay_window_1, selected_window,
13197 list_of_error,
13198 redisplay_window_error);
13199
13200 /* Compare desired and current matrices, perform output. */
13201
13202 update:
13203 /* If fonts changed, display again. */
13204 if (fonts_changed_p)
13205 goto retry;
13206
13207 /* Prevent various kinds of signals during display update.
13208 stdio is not robust about handling signals,
13209 which can cause an apparent I/O error. */
13210 if (interrupt_input)
13211 unrequest_sigio ();
13212 STOP_POLLING;
13213
13214 if (FRAME_VISIBLE_P (sf) && !FRAME_OBSCURED_P (sf))
13215 {
13216 if (hscroll_windows (selected_window))
13217 goto retry;
13218
13219 XWINDOW (selected_window)->must_be_updated_p = 1;
13220 pending = update_frame (sf, 0, 0);
13221 }
13222
13223 /* We may have called echo_area_display at the top of this
13224 function. If the echo area is on another frame, that may
13225 have put text on a frame other than the selected one, so the
13226 above call to update_frame would not have caught it. Catch
13227 it here. */
13228 mini_window = FRAME_MINIBUF_WINDOW (sf);
13229 mini_frame = XFRAME (WINDOW_FRAME (XWINDOW (mini_window)));
13230
13231 if (mini_frame != sf && FRAME_WINDOW_P (mini_frame))
13232 {
13233 XWINDOW (mini_window)->must_be_updated_p = 1;
13234 pending |= update_frame (mini_frame, 0, 0);
13235 if (!pending && hscroll_windows (mini_window))
13236 goto retry;
13237 }
13238 }
13239
13240 /* If display was paused because of pending input, make sure we do a
13241 thorough update the next time. */
13242 if (pending)
13243 {
13244 /* Prevent the optimization at the beginning of
13245 redisplay_internal that tries a single-line update of the
13246 line containing the cursor in the selected window. */
13247 CHARPOS (this_line_start_pos) = 0;
13248
13249 /* Let the overlay arrow be updated the next time. */
13250 update_overlay_arrows (0);
13251
13252 /* If we pause after scrolling, some rows in the current
13253 matrices of some windows are not valid. */
13254 if (!WINDOW_FULL_WIDTH_P (w)
13255 && !FRAME_WINDOW_P (XFRAME (w->frame)))
13256 update_mode_lines = 1;
13257 }
13258 else
13259 {
13260 if (!consider_all_windows_p)
13261 {
13262 /* This has already been done above if
13263 consider_all_windows_p is set. */
13264 mark_window_display_accurate_1 (w, 1);
13265
13266 /* Say overlay arrows are up to date. */
13267 update_overlay_arrows (1);
13268
13269 if (FRAME_TERMINAL (sf)->frame_up_to_date_hook != 0)
13270 FRAME_TERMINAL (sf)->frame_up_to_date_hook (sf);
13271 }
13272
13273 update_mode_lines = 0;
13274 windows_or_buffers_changed = 0;
13275 cursor_type_changed = 0;
13276 }
13277
13278 /* Start SIGIO interrupts coming again. Having them off during the
13279 code above makes it less likely one will discard output, but not
13280 impossible, since there might be stuff in the system buffer here.
13281 But it is much hairier to try to do anything about that. */
13282 if (interrupt_input)
13283 request_sigio ();
13284 RESUME_POLLING;
13285
13286 /* If a frame has become visible which was not before, redisplay
13287 again, so that we display it. Expose events for such a frame
13288 (which it gets when becoming visible) don't call the parts of
13289 redisplay constructing glyphs, so simply exposing a frame won't
13290 display anything in this case. So, we have to display these
13291 frames here explicitly. */
13292 if (!pending)
13293 {
13294 Lisp_Object tail, frame;
13295 int new_count = 0;
13296
13297 FOR_EACH_FRAME (tail, frame)
13298 {
13299 int this_is_visible = 0;
13300
13301 if (XFRAME (frame)->visible)
13302 this_is_visible = 1;
13303 FRAME_SAMPLE_VISIBILITY (XFRAME (frame));
13304 if (XFRAME (frame)->visible)
13305 this_is_visible = 1;
13306
13307 if (this_is_visible)
13308 new_count++;
13309 }
13310
13311 if (new_count != number_of_visible_frames)
13312 windows_or_buffers_changed++;
13313 }
13314
13315 /* Change frame size now if a change is pending. */
13316 do_pending_window_change (1);
13317
13318 /* If we just did a pending size change, or have additional
13319 visible frames, or selected_window changed, redisplay again. */
13320 if ((windows_or_buffers_changed && !pending)
13321 || (WINDOWP (selected_window) && (w = XWINDOW (selected_window)) != sw))
13322 goto retry;
13323
13324 /* Clear the face and image caches.
13325
13326 We used to do this only if consider_all_windows_p. But the cache
13327 needs to be cleared if a timer creates images in the current
13328 buffer (e.g. the test case in Bug#6230). */
13329
13330 if (clear_face_cache_count > CLEAR_FACE_CACHE_COUNT)
13331 {
13332 clear_face_cache (0);
13333 clear_face_cache_count = 0;
13334 }
13335
13336 #ifdef HAVE_WINDOW_SYSTEM
13337 if (clear_image_cache_count > CLEAR_IMAGE_CACHE_COUNT)
13338 {
13339 clear_image_caches (Qnil);
13340 clear_image_cache_count = 0;
13341 }
13342 #endif /* HAVE_WINDOW_SYSTEM */
13343
13344 end_of_redisplay:
13345 unbind_to (count, Qnil);
13346 RESUME_POLLING;
13347 }
13348
13349
13350 /* Redisplay, but leave alone any recent echo area message unless
13351 another message has been requested in its place.
13352
13353 This is useful in situations where you need to redisplay but no
13354 user action has occurred, making it inappropriate for the message
13355 area to be cleared. See tracking_off and
13356 wait_reading_process_output for examples of these situations.
13357
13358 FROM_WHERE is an integer saying from where this function was
13359 called. This is useful for debugging. */
13360
13361 void
13362 redisplay_preserve_echo_area (int from_where)
13363 {
13364 TRACE ((stderr, "redisplay_preserve_echo_area (%d)\n", from_where));
13365
13366 if (!NILP (echo_area_buffer[1]))
13367 {
13368 /* We have a previously displayed message, but no current
13369 message. Redisplay the previous message. */
13370 display_last_displayed_message_p = 1;
13371 redisplay_internal ();
13372 display_last_displayed_message_p = 0;
13373 }
13374 else
13375 redisplay_internal ();
13376
13377 if (FRAME_RIF (SELECTED_FRAME ()) != NULL
13378 && FRAME_RIF (SELECTED_FRAME ())->flush_display_optional)
13379 FRAME_RIF (SELECTED_FRAME ())->flush_display_optional (NULL);
13380 }
13381
13382
13383 /* Function registered with record_unwind_protect in
13384 redisplay_internal. Reset redisplaying_p to the value it had
13385 before redisplay_internal was called, and clear
13386 prevent_freeing_realized_faces_p. It also selects the previously
13387 selected frame, unless it has been deleted (by an X connection
13388 failure during redisplay, for example). */
13389
13390 static Lisp_Object
13391 unwind_redisplay (Lisp_Object val)
13392 {
13393 Lisp_Object old_redisplaying_p, old_frame;
13394
13395 old_redisplaying_p = XCAR (val);
13396 redisplaying_p = XFASTINT (old_redisplaying_p);
13397 old_frame = XCDR (val);
13398 if (! EQ (old_frame, selected_frame)
13399 && FRAME_LIVE_P (XFRAME (old_frame)))
13400 select_frame_for_redisplay (old_frame);
13401 return Qnil;
13402 }
13403
13404
13405 /* Mark the display of window W as accurate or inaccurate. If
13406 ACCURATE_P is non-zero mark display of W as accurate. If
13407 ACCURATE_P is zero, arrange for W to be redisplayed the next time
13408 redisplay_internal is called. */
13409
13410 static void
13411 mark_window_display_accurate_1 (struct window *w, int accurate_p)
13412 {
13413 if (BUFFERP (w->buffer))
13414 {
13415 struct buffer *b = XBUFFER (w->buffer);
13416
13417 w->last_modified
13418 = make_number (accurate_p ? BUF_MODIFF (b) : 0);
13419 w->last_overlay_modified
13420 = make_number (accurate_p ? BUF_OVERLAY_MODIFF (b) : 0);
13421 w->last_had_star
13422 = BUF_MODIFF (b) > BUF_SAVE_MODIFF (b) ? Qt : Qnil;
13423
13424 if (accurate_p)
13425 {
13426 b->clip_changed = 0;
13427 b->prevent_redisplay_optimizations_p = 0;
13428
13429 BUF_UNCHANGED_MODIFIED (b) = BUF_MODIFF (b);
13430 BUF_OVERLAY_UNCHANGED_MODIFIED (b) = BUF_OVERLAY_MODIFF (b);
13431 BUF_BEG_UNCHANGED (b) = BUF_GPT (b) - BUF_BEG (b);
13432 BUF_END_UNCHANGED (b) = BUF_Z (b) - BUF_GPT (b);
13433
13434 w->current_matrix->buffer = b;
13435 w->current_matrix->begv = BUF_BEGV (b);
13436 w->current_matrix->zv = BUF_ZV (b);
13437
13438 w->last_cursor = w->cursor;
13439 w->last_cursor_off_p = w->cursor_off_p;
13440
13441 if (w == XWINDOW (selected_window))
13442 w->last_point = make_number (BUF_PT (b));
13443 else
13444 w->last_point = make_number (XMARKER (w->pointm)->charpos);
13445 }
13446 }
13447
13448 if (accurate_p)
13449 {
13450 w->window_end_valid = w->buffer;
13451 w->update_mode_line = Qnil;
13452 }
13453 }
13454
13455
13456 /* Mark the display of windows in the window tree rooted at WINDOW as
13457 accurate or inaccurate. If ACCURATE_P is non-zero mark display of
13458 windows as accurate. If ACCURATE_P is zero, arrange for windows to
13459 be redisplayed the next time redisplay_internal is called. */
13460
13461 void
13462 mark_window_display_accurate (Lisp_Object window, int accurate_p)
13463 {
13464 struct window *w;
13465
13466 for (; !NILP (window); window = w->next)
13467 {
13468 w = XWINDOW (window);
13469 mark_window_display_accurate_1 (w, accurate_p);
13470
13471 if (!NILP (w->vchild))
13472 mark_window_display_accurate (w->vchild, accurate_p);
13473 if (!NILP (w->hchild))
13474 mark_window_display_accurate (w->hchild, accurate_p);
13475 }
13476
13477 if (accurate_p)
13478 {
13479 update_overlay_arrows (1);
13480 }
13481 else
13482 {
13483 /* Force a thorough redisplay the next time by setting
13484 last_arrow_position and last_arrow_string to t, which is
13485 unequal to any useful value of Voverlay_arrow_... */
13486 update_overlay_arrows (-1);
13487 }
13488 }
13489
13490
13491 /* Return value in display table DP (Lisp_Char_Table *) for character
13492 C. Since a display table doesn't have any parent, we don't have to
13493 follow parent. Do not call this function directly but use the
13494 macro DISP_CHAR_VECTOR. */
13495
13496 Lisp_Object
13497 disp_char_vector (struct Lisp_Char_Table *dp, int c)
13498 {
13499 Lisp_Object val;
13500
13501 if (ASCII_CHAR_P (c))
13502 {
13503 val = dp->ascii;
13504 if (SUB_CHAR_TABLE_P (val))
13505 val = XSUB_CHAR_TABLE (val)->contents[c];
13506 }
13507 else
13508 {
13509 Lisp_Object table;
13510
13511 XSETCHAR_TABLE (table, dp);
13512 val = char_table_ref (table, c);
13513 }
13514 if (NILP (val))
13515 val = dp->defalt;
13516 return val;
13517 }
13518
13519
13520 \f
13521 /***********************************************************************
13522 Window Redisplay
13523 ***********************************************************************/
13524
13525 /* Redisplay all leaf windows in the window tree rooted at WINDOW. */
13526
13527 static void
13528 redisplay_windows (Lisp_Object window)
13529 {
13530 while (!NILP (window))
13531 {
13532 struct window *w = XWINDOW (window);
13533
13534 if (!NILP (w->hchild))
13535 redisplay_windows (w->hchild);
13536 else if (!NILP (w->vchild))
13537 redisplay_windows (w->vchild);
13538 else if (!NILP (w->buffer))
13539 {
13540 displayed_buffer = XBUFFER (w->buffer);
13541 /* Use list_of_error, not Qerror, so that
13542 we catch only errors and don't run the debugger. */
13543 internal_condition_case_1 (redisplay_window_0, window,
13544 list_of_error,
13545 redisplay_window_error);
13546 }
13547
13548 window = w->next;
13549 }
13550 }
13551
13552 static Lisp_Object
13553 redisplay_window_error (Lisp_Object ignore)
13554 {
13555 displayed_buffer->display_error_modiff = BUF_MODIFF (displayed_buffer);
13556 return Qnil;
13557 }
13558
13559 static Lisp_Object
13560 redisplay_window_0 (Lisp_Object window)
13561 {
13562 if (displayed_buffer->display_error_modiff < BUF_MODIFF (displayed_buffer))
13563 redisplay_window (window, 0);
13564 return Qnil;
13565 }
13566
13567 static Lisp_Object
13568 redisplay_window_1 (Lisp_Object window)
13569 {
13570 if (displayed_buffer->display_error_modiff < BUF_MODIFF (displayed_buffer))
13571 redisplay_window (window, 1);
13572 return Qnil;
13573 }
13574 \f
13575
13576 /* Set cursor position of W. PT is assumed to be displayed in ROW.
13577 DELTA and DELTA_BYTES are the numbers of characters and bytes by
13578 which positions recorded in ROW differ from current buffer
13579 positions.
13580
13581 Return 0 if cursor is not on this row, 1 otherwise. */
13582
13583 static int
13584 set_cursor_from_row (struct window *w, struct glyph_row *row,
13585 struct glyph_matrix *matrix,
13586 EMACS_INT delta, EMACS_INT delta_bytes,
13587 int dy, int dvpos)
13588 {
13589 struct glyph *glyph = row->glyphs[TEXT_AREA];
13590 struct glyph *end = glyph + row->used[TEXT_AREA];
13591 struct glyph *cursor = NULL;
13592 /* The last known character position in row. */
13593 EMACS_INT last_pos = MATRIX_ROW_START_CHARPOS (row) + delta;
13594 int x = row->x;
13595 EMACS_INT pt_old = PT - delta;
13596 EMACS_INT pos_before = MATRIX_ROW_START_CHARPOS (row) + delta;
13597 EMACS_INT pos_after = MATRIX_ROW_END_CHARPOS (row) + delta;
13598 struct glyph *glyph_before = glyph - 1, *glyph_after = end;
13599 /* A glyph beyond the edge of TEXT_AREA which we should never
13600 touch. */
13601 struct glyph *glyphs_end = end;
13602 /* Non-zero means we've found a match for cursor position, but that
13603 glyph has the avoid_cursor_p flag set. */
13604 int match_with_avoid_cursor = 0;
13605 /* Non-zero means we've seen at least one glyph that came from a
13606 display string. */
13607 int string_seen = 0;
13608 /* Largest and smalles buffer positions seen so far during scan of
13609 glyph row. */
13610 EMACS_INT bpos_max = pos_before;
13611 EMACS_INT bpos_min = pos_after;
13612 /* Last buffer position covered by an overlay string with an integer
13613 `cursor' property. */
13614 EMACS_INT bpos_covered = 0;
13615 /* Non-zero means the display string on which to display the cursor
13616 comes from a text property, not from an overlay. */
13617 int string_from_text_prop = 0;
13618
13619 /* Skip over glyphs not having an object at the start and the end of
13620 the row. These are special glyphs like truncation marks on
13621 terminal frames. */
13622 if (row->displays_text_p)
13623 {
13624 if (!row->reversed_p)
13625 {
13626 while (glyph < end
13627 && INTEGERP (glyph->object)
13628 && glyph->charpos < 0)
13629 {
13630 x += glyph->pixel_width;
13631 ++glyph;
13632 }
13633 while (end > glyph
13634 && INTEGERP ((end - 1)->object)
13635 /* CHARPOS is zero for blanks and stretch glyphs
13636 inserted by extend_face_to_end_of_line. */
13637 && (end - 1)->charpos <= 0)
13638 --end;
13639 glyph_before = glyph - 1;
13640 glyph_after = end;
13641 }
13642 else
13643 {
13644 struct glyph *g;
13645
13646 /* If the glyph row is reversed, we need to process it from back
13647 to front, so swap the edge pointers. */
13648 glyphs_end = end = glyph - 1;
13649 glyph += row->used[TEXT_AREA] - 1;
13650
13651 while (glyph > end + 1
13652 && INTEGERP (glyph->object)
13653 && glyph->charpos < 0)
13654 {
13655 --glyph;
13656 x -= glyph->pixel_width;
13657 }
13658 if (INTEGERP (glyph->object) && glyph->charpos < 0)
13659 --glyph;
13660 /* By default, in reversed rows we put the cursor on the
13661 rightmost (first in the reading order) glyph. */
13662 for (g = end + 1; g < glyph; g++)
13663 x += g->pixel_width;
13664 while (end < glyph
13665 && INTEGERP ((end + 1)->object)
13666 && (end + 1)->charpos <= 0)
13667 ++end;
13668 glyph_before = glyph + 1;
13669 glyph_after = end;
13670 }
13671 }
13672 else if (row->reversed_p)
13673 {
13674 /* In R2L rows that don't display text, put the cursor on the
13675 rightmost glyph. Case in point: an empty last line that is
13676 part of an R2L paragraph. */
13677 cursor = end - 1;
13678 /* Avoid placing the cursor on the last glyph of the row, where
13679 on terminal frames we hold the vertical border between
13680 adjacent windows. */
13681 if (!FRAME_WINDOW_P (WINDOW_XFRAME (w))
13682 && !WINDOW_RIGHTMOST_P (w)
13683 && cursor == row->glyphs[LAST_AREA] - 1)
13684 cursor--;
13685 x = -1; /* will be computed below, at label compute_x */
13686 }
13687
13688 /* Step 1: Try to find the glyph whose character position
13689 corresponds to point. If that's not possible, find 2 glyphs
13690 whose character positions are the closest to point, one before
13691 point, the other after it. */
13692 if (!row->reversed_p)
13693 while (/* not marched to end of glyph row */
13694 glyph < end
13695 /* glyph was not inserted by redisplay for internal purposes */
13696 && !INTEGERP (glyph->object))
13697 {
13698 if (BUFFERP (glyph->object))
13699 {
13700 EMACS_INT dpos = glyph->charpos - pt_old;
13701
13702 if (glyph->charpos > bpos_max)
13703 bpos_max = glyph->charpos;
13704 if (glyph->charpos < bpos_min)
13705 bpos_min = glyph->charpos;
13706 if (!glyph->avoid_cursor_p)
13707 {
13708 /* If we hit point, we've found the glyph on which to
13709 display the cursor. */
13710 if (dpos == 0)
13711 {
13712 match_with_avoid_cursor = 0;
13713 break;
13714 }
13715 /* See if we've found a better approximation to
13716 POS_BEFORE or to POS_AFTER. Note that we want the
13717 first (leftmost) glyph of all those that are the
13718 closest from below, and the last (rightmost) of all
13719 those from above. */
13720 if (0 > dpos && dpos > pos_before - pt_old)
13721 {
13722 pos_before = glyph->charpos;
13723 glyph_before = glyph;
13724 }
13725 else if (0 < dpos && dpos <= pos_after - pt_old)
13726 {
13727 pos_after = glyph->charpos;
13728 glyph_after = glyph;
13729 }
13730 }
13731 else if (dpos == 0)
13732 match_with_avoid_cursor = 1;
13733 }
13734 else if (STRINGP (glyph->object))
13735 {
13736 Lisp_Object chprop;
13737 EMACS_INT glyph_pos = glyph->charpos;
13738
13739 chprop = Fget_char_property (make_number (glyph_pos), Qcursor,
13740 glyph->object);
13741 if (INTEGERP (chprop))
13742 {
13743 bpos_covered = bpos_max + XINT (chprop);
13744 /* If the `cursor' property covers buffer positions up
13745 to and including point, we should display cursor on
13746 this glyph. Note that overlays and text properties
13747 with string values stop bidi reordering, so every
13748 buffer position to the left of the string is always
13749 smaller than any position to the right of the
13750 string. Therefore, if a `cursor' property on one
13751 of the string's characters has an integer value, we
13752 will break out of the loop below _before_ we get to
13753 the position match above. IOW, integer values of
13754 the `cursor' property override the "exact match for
13755 point" strategy of positioning the cursor. */
13756 /* Implementation note: bpos_max == pt_old when, e.g.,
13757 we are in an empty line, where bpos_max is set to
13758 MATRIX_ROW_START_CHARPOS, see above. */
13759 if (bpos_max <= pt_old && bpos_covered >= pt_old)
13760 {
13761 cursor = glyph;
13762 break;
13763 }
13764 }
13765
13766 string_seen = 1;
13767 }
13768 x += glyph->pixel_width;
13769 ++glyph;
13770 }
13771 else if (glyph > end) /* row is reversed */
13772 while (!INTEGERP (glyph->object))
13773 {
13774 if (BUFFERP (glyph->object))
13775 {
13776 EMACS_INT dpos = glyph->charpos - pt_old;
13777
13778 if (glyph->charpos > bpos_max)
13779 bpos_max = glyph->charpos;
13780 if (glyph->charpos < bpos_min)
13781 bpos_min = glyph->charpos;
13782 if (!glyph->avoid_cursor_p)
13783 {
13784 if (dpos == 0)
13785 {
13786 match_with_avoid_cursor = 0;
13787 break;
13788 }
13789 if (0 > dpos && dpos > pos_before - pt_old)
13790 {
13791 pos_before = glyph->charpos;
13792 glyph_before = glyph;
13793 }
13794 else if (0 < dpos && dpos <= pos_after - pt_old)
13795 {
13796 pos_after = glyph->charpos;
13797 glyph_after = glyph;
13798 }
13799 }
13800 else if (dpos == 0)
13801 match_with_avoid_cursor = 1;
13802 }
13803 else if (STRINGP (glyph->object))
13804 {
13805 Lisp_Object chprop;
13806 EMACS_INT glyph_pos = glyph->charpos;
13807
13808 chprop = Fget_char_property (make_number (glyph_pos), Qcursor,
13809 glyph->object);
13810 if (INTEGERP (chprop))
13811 {
13812 bpos_covered = bpos_max + XINT (chprop);
13813 /* If the `cursor' property covers buffer positions up
13814 to and including point, we should display cursor on
13815 this glyph. */
13816 if (bpos_max <= pt_old && bpos_covered >= pt_old)
13817 {
13818 cursor = glyph;
13819 break;
13820 }
13821 }
13822 string_seen = 1;
13823 }
13824 --glyph;
13825 if (glyph == glyphs_end) /* don't dereference outside TEXT_AREA */
13826 {
13827 x--; /* can't use any pixel_width */
13828 break;
13829 }
13830 x -= glyph->pixel_width;
13831 }
13832
13833 /* Step 2: If we didn't find an exact match for point, we need to
13834 look for a proper place to put the cursor among glyphs between
13835 GLYPH_BEFORE and GLYPH_AFTER. */
13836 if (!((row->reversed_p ? glyph > glyphs_end : glyph < glyphs_end)
13837 && BUFFERP (glyph->object) && glyph->charpos == pt_old)
13838 && bpos_covered < pt_old)
13839 {
13840 /* An empty line has a single glyph whose OBJECT is zero and
13841 whose CHARPOS is the position of a newline on that line.
13842 Note that on a TTY, there are more glyphs after that, which
13843 were produced by extend_face_to_end_of_line, but their
13844 CHARPOS is zero or negative. */
13845 int empty_line_p =
13846 (row->reversed_p ? glyph > glyphs_end : glyph < glyphs_end)
13847 && INTEGERP (glyph->object) && glyph->charpos > 0;
13848
13849 if (row->ends_in_ellipsis_p && pos_after == last_pos)
13850 {
13851 EMACS_INT ellipsis_pos;
13852
13853 /* Scan back over the ellipsis glyphs. */
13854 if (!row->reversed_p)
13855 {
13856 ellipsis_pos = (glyph - 1)->charpos;
13857 while (glyph > row->glyphs[TEXT_AREA]
13858 && (glyph - 1)->charpos == ellipsis_pos)
13859 glyph--, x -= glyph->pixel_width;
13860 /* That loop always goes one position too far, including
13861 the glyph before the ellipsis. So scan forward over
13862 that one. */
13863 x += glyph->pixel_width;
13864 glyph++;
13865 }
13866 else /* row is reversed */
13867 {
13868 ellipsis_pos = (glyph + 1)->charpos;
13869 while (glyph < row->glyphs[TEXT_AREA] + row->used[TEXT_AREA] - 1
13870 && (glyph + 1)->charpos == ellipsis_pos)
13871 glyph++, x += glyph->pixel_width;
13872 x -= glyph->pixel_width;
13873 glyph--;
13874 }
13875 }
13876 else if (match_with_avoid_cursor)
13877 {
13878 cursor = glyph_after;
13879 x = -1;
13880 }
13881 else if (string_seen)
13882 {
13883 int incr = row->reversed_p ? -1 : +1;
13884
13885 /* Need to find the glyph that came out of a string which is
13886 present at point. That glyph is somewhere between
13887 GLYPH_BEFORE and GLYPH_AFTER, and it came from a string
13888 positioned between POS_BEFORE and POS_AFTER in the
13889 buffer. */
13890 struct glyph *start, *stop;
13891 EMACS_INT pos = pos_before;
13892
13893 x = -1;
13894
13895 /* If the row ends in a newline from a display string,
13896 reordering could have moved the glyphs belonging to the
13897 string out of the [GLYPH_BEFORE..GLYPH_AFTER] range. So
13898 in this case we extend the search to the last glyph in
13899 the row that was not inserted by redisplay. */
13900 if (row->ends_in_newline_from_string_p)
13901 {
13902 glyph_after = end;
13903 pos_after = MATRIX_ROW_END_CHARPOS (row) + delta;
13904 }
13905
13906 /* GLYPH_BEFORE and GLYPH_AFTER are the glyphs that
13907 correspond to POS_BEFORE and POS_AFTER, respectively. We
13908 need START and STOP in the order that corresponds to the
13909 row's direction as given by its reversed_p flag. If the
13910 directionality of characters between POS_BEFORE and
13911 POS_AFTER is the opposite of the row's base direction,
13912 these characters will have been reordered for display,
13913 and we need to reverse START and STOP. */
13914 if (!row->reversed_p)
13915 {
13916 start = min (glyph_before, glyph_after);
13917 stop = max (glyph_before, glyph_after);
13918 }
13919 else
13920 {
13921 start = max (glyph_before, glyph_after);
13922 stop = min (glyph_before, glyph_after);
13923 }
13924 for (glyph = start + incr;
13925 row->reversed_p ? glyph > stop : glyph < stop; )
13926 {
13927
13928 /* Any glyphs that come from the buffer are here because
13929 of bidi reordering. Skip them, and only pay
13930 attention to glyphs that came from some string. */
13931 if (STRINGP (glyph->object))
13932 {
13933 Lisp_Object str;
13934 EMACS_INT tem;
13935 /* If the display property covers the newline, we
13936 need to search for it one position farther. */
13937 EMACS_INT lim = pos_after
13938 + (pos_after == MATRIX_ROW_END_CHARPOS (row) + delta);
13939
13940 string_from_text_prop = 0;
13941 str = glyph->object;
13942 tem = string_buffer_position_lim (str, pos, lim, 0);
13943 if (tem == 0 /* from overlay */
13944 || pos <= tem)
13945 {
13946 /* If the string from which this glyph came is
13947 found in the buffer at point, then we've
13948 found the glyph we've been looking for. If
13949 it comes from an overlay (tem == 0), and it
13950 has the `cursor' property on one of its
13951 glyphs, record that glyph as a candidate for
13952 displaying the cursor. (As in the
13953 unidirectional version, we will display the
13954 cursor on the last candidate we find.) */
13955 if (tem == 0 || tem == pt_old)
13956 {
13957 /* The glyphs from this string could have
13958 been reordered. Find the one with the
13959 smallest string position. Or there could
13960 be a character in the string with the
13961 `cursor' property, which means display
13962 cursor on that character's glyph. */
13963 EMACS_INT strpos = glyph->charpos;
13964
13965 if (tem)
13966 {
13967 cursor = glyph;
13968 string_from_text_prop = 1;
13969 }
13970 for ( ;
13971 (row->reversed_p ? glyph > stop : glyph < stop)
13972 && EQ (glyph->object, str);
13973 glyph += incr)
13974 {
13975 Lisp_Object cprop;
13976 EMACS_INT gpos = glyph->charpos;
13977
13978 cprop = Fget_char_property (make_number (gpos),
13979 Qcursor,
13980 glyph->object);
13981 if (!NILP (cprop))
13982 {
13983 cursor = glyph;
13984 break;
13985 }
13986 if (tem && glyph->charpos < strpos)
13987 {
13988 strpos = glyph->charpos;
13989 cursor = glyph;
13990 }
13991 }
13992
13993 if (tem == pt_old)
13994 goto compute_x;
13995 }
13996 if (tem)
13997 pos = tem + 1; /* don't find previous instances */
13998 }
13999 /* This string is not what we want; skip all of the
14000 glyphs that came from it. */
14001 while ((row->reversed_p ? glyph > stop : glyph < stop)
14002 && EQ (glyph->object, str))
14003 glyph += incr;
14004 }
14005 else
14006 glyph += incr;
14007 }
14008
14009 /* If we reached the end of the line, and END was from a string,
14010 the cursor is not on this line. */
14011 if (cursor == NULL
14012 && (row->reversed_p ? glyph <= end : glyph >= end)
14013 && STRINGP (end->object)
14014 && row->continued_p)
14015 return 0;
14016 }
14017 /* A truncated row may not include PT among its character positions.
14018 Setting the cursor inside the scroll margin will trigger
14019 recalculation of hscroll in hscroll_window_tree. But if a
14020 display string covers point, defer to the string-handling
14021 code below to figure this out. */
14022 else if (row->truncated_on_left_p && pt_old < bpos_min)
14023 {
14024 cursor = glyph_before;
14025 x = -1;
14026 }
14027 else if ((row->truncated_on_right_p && pt_old > bpos_max)
14028 /* Zero-width characters produce no glyphs. */
14029 || (!empty_line_p
14030 && (row->reversed_p
14031 ? glyph_after > glyphs_end
14032 : glyph_after < glyphs_end)))
14033 {
14034 cursor = glyph_after;
14035 x = -1;
14036 }
14037 }
14038
14039 compute_x:
14040 if (cursor != NULL)
14041 glyph = cursor;
14042 if (x < 0)
14043 {
14044 struct glyph *g;
14045
14046 /* Need to compute x that corresponds to GLYPH. */
14047 for (g = row->glyphs[TEXT_AREA], x = row->x; g < glyph; g++)
14048 {
14049 if (g >= row->glyphs[TEXT_AREA] + row->used[TEXT_AREA])
14050 abort ();
14051 x += g->pixel_width;
14052 }
14053 }
14054
14055 /* ROW could be part of a continued line, which, under bidi
14056 reordering, might have other rows whose start and end charpos
14057 occlude point. Only set w->cursor if we found a better
14058 approximation to the cursor position than we have from previously
14059 examined candidate rows belonging to the same continued line. */
14060 if (/* we already have a candidate row */
14061 w->cursor.vpos >= 0
14062 /* that candidate is not the row we are processing */
14063 && MATRIX_ROW (matrix, w->cursor.vpos) != row
14064 /* Make sure cursor.vpos specifies a row whose start and end
14065 charpos occlude point, and it is valid candidate for being a
14066 cursor-row. This is because some callers of this function
14067 leave cursor.vpos at the row where the cursor was displayed
14068 during the last redisplay cycle. */
14069 && MATRIX_ROW_START_CHARPOS (MATRIX_ROW (matrix, w->cursor.vpos)) <= pt_old
14070 && pt_old <= MATRIX_ROW_END_CHARPOS (MATRIX_ROW (matrix, w->cursor.vpos))
14071 && cursor_row_p (MATRIX_ROW (matrix, w->cursor.vpos)))
14072 {
14073 struct glyph *g1 =
14074 MATRIX_ROW_GLYPH_START (matrix, w->cursor.vpos) + w->cursor.hpos;
14075
14076 /* Don't consider glyphs that are outside TEXT_AREA. */
14077 if (!(row->reversed_p ? glyph > glyphs_end : glyph < glyphs_end))
14078 return 0;
14079 /* Keep the candidate whose buffer position is the closest to
14080 point or has the `cursor' property. */
14081 if (/* previous candidate is a glyph in TEXT_AREA of that row */
14082 w->cursor.hpos >= 0
14083 && w->cursor.hpos < MATRIX_ROW_USED (matrix, w->cursor.vpos)
14084 && ((BUFFERP (g1->object)
14085 && (g1->charpos == pt_old /* an exact match always wins */
14086 || (BUFFERP (glyph->object)
14087 && eabs (g1->charpos - pt_old)
14088 < eabs (glyph->charpos - pt_old))))
14089 /* previous candidate is a glyph from a string that has
14090 a non-nil `cursor' property */
14091 || (STRINGP (g1->object)
14092 && (!NILP (Fget_char_property (make_number (g1->charpos),
14093 Qcursor, g1->object))
14094 /* pevious candidate is from the same display
14095 string as this one, and the display string
14096 came from a text property */
14097 || (EQ (g1->object, glyph->object)
14098 && string_from_text_prop)
14099 /* this candidate is from newline and its
14100 position is not an exact match */
14101 || (INTEGERP (glyph->object)
14102 && glyph->charpos != pt_old)))))
14103 return 0;
14104 /* If this candidate gives an exact match, use that. */
14105 if (!((BUFFERP (glyph->object) && glyph->charpos == pt_old)
14106 /* If this candidate is a glyph created for the
14107 terminating newline of a line, and point is on that
14108 newline, it wins because it's an exact match. */
14109 || (!row->continued_p
14110 && INTEGERP (glyph->object)
14111 && glyph->charpos == 0
14112 && pt_old == MATRIX_ROW_END_CHARPOS (row) - 1))
14113 /* Otherwise, keep the candidate that comes from a row
14114 spanning less buffer positions. This may win when one or
14115 both candidate positions are on glyphs that came from
14116 display strings, for which we cannot compare buffer
14117 positions. */
14118 && MATRIX_ROW_END_CHARPOS (MATRIX_ROW (matrix, w->cursor.vpos))
14119 - MATRIX_ROW_START_CHARPOS (MATRIX_ROW (matrix, w->cursor.vpos))
14120 < MATRIX_ROW_END_CHARPOS (row) - MATRIX_ROW_START_CHARPOS (row))
14121 return 0;
14122 }
14123 w->cursor.hpos = glyph - row->glyphs[TEXT_AREA];
14124 w->cursor.x = x;
14125 w->cursor.vpos = MATRIX_ROW_VPOS (row, matrix) + dvpos;
14126 w->cursor.y = row->y + dy;
14127
14128 if (w == XWINDOW (selected_window))
14129 {
14130 if (!row->continued_p
14131 && !MATRIX_ROW_CONTINUATION_LINE_P (row)
14132 && row->x == 0)
14133 {
14134 this_line_buffer = XBUFFER (w->buffer);
14135
14136 CHARPOS (this_line_start_pos)
14137 = MATRIX_ROW_START_CHARPOS (row) + delta;
14138 BYTEPOS (this_line_start_pos)
14139 = MATRIX_ROW_START_BYTEPOS (row) + delta_bytes;
14140
14141 CHARPOS (this_line_end_pos)
14142 = Z - (MATRIX_ROW_END_CHARPOS (row) + delta);
14143 BYTEPOS (this_line_end_pos)
14144 = Z_BYTE - (MATRIX_ROW_END_BYTEPOS (row) + delta_bytes);
14145
14146 this_line_y = w->cursor.y;
14147 this_line_pixel_height = row->height;
14148 this_line_vpos = w->cursor.vpos;
14149 this_line_start_x = row->x;
14150 }
14151 else
14152 CHARPOS (this_line_start_pos) = 0;
14153 }
14154
14155 return 1;
14156 }
14157
14158
14159 /* Run window scroll functions, if any, for WINDOW with new window
14160 start STARTP. Sets the window start of WINDOW to that position.
14161
14162 We assume that the window's buffer is really current. */
14163
14164 static inline struct text_pos
14165 run_window_scroll_functions (Lisp_Object window, struct text_pos startp)
14166 {
14167 struct window *w = XWINDOW (window);
14168 SET_MARKER_FROM_TEXT_POS (w->start, startp);
14169
14170 if (current_buffer != XBUFFER (w->buffer))
14171 abort ();
14172
14173 if (!NILP (Vwindow_scroll_functions))
14174 {
14175 run_hook_with_args_2 (Qwindow_scroll_functions, window,
14176 make_number (CHARPOS (startp)));
14177 SET_TEXT_POS_FROM_MARKER (startp, w->start);
14178 /* In case the hook functions switch buffers. */
14179 if (current_buffer != XBUFFER (w->buffer))
14180 set_buffer_internal_1 (XBUFFER (w->buffer));
14181 }
14182
14183 return startp;
14184 }
14185
14186
14187 /* Make sure the line containing the cursor is fully visible.
14188 A value of 1 means there is nothing to be done.
14189 (Either the line is fully visible, or it cannot be made so,
14190 or we cannot tell.)
14191
14192 If FORCE_P is non-zero, return 0 even if partial visible cursor row
14193 is higher than window.
14194
14195 A value of 0 means the caller should do scrolling
14196 as if point had gone off the screen. */
14197
14198 static int
14199 cursor_row_fully_visible_p (struct window *w, int force_p, int current_matrix_p)
14200 {
14201 struct glyph_matrix *matrix;
14202 struct glyph_row *row;
14203 int window_height;
14204
14205 if (!make_cursor_line_fully_visible_p)
14206 return 1;
14207
14208 /* It's not always possible to find the cursor, e.g, when a window
14209 is full of overlay strings. Don't do anything in that case. */
14210 if (w->cursor.vpos < 0)
14211 return 1;
14212
14213 matrix = current_matrix_p ? w->current_matrix : w->desired_matrix;
14214 row = MATRIX_ROW (matrix, w->cursor.vpos);
14215
14216 /* If the cursor row is not partially visible, there's nothing to do. */
14217 if (!MATRIX_ROW_PARTIALLY_VISIBLE_P (w, row))
14218 return 1;
14219
14220 /* If the row the cursor is in is taller than the window's height,
14221 it's not clear what to do, so do nothing. */
14222 window_height = window_box_height (w);
14223 if (row->height >= window_height)
14224 {
14225 if (!force_p || MINI_WINDOW_P (w)
14226 || w->vscroll || w->cursor.vpos == 0)
14227 return 1;
14228 }
14229 return 0;
14230 }
14231
14232
14233 /* Try scrolling PT into view in window WINDOW. JUST_THIS_ONE_P
14234 non-zero means only WINDOW is redisplayed in redisplay_internal.
14235 TEMP_SCROLL_STEP has the same meaning as emacs_scroll_step, and is used
14236 in redisplay_window to bring a partially visible line into view in
14237 the case that only the cursor has moved.
14238
14239 LAST_LINE_MISFIT should be nonzero if we're scrolling because the
14240 last screen line's vertical height extends past the end of the screen.
14241
14242 Value is
14243
14244 1 if scrolling succeeded
14245
14246 0 if scrolling didn't find point.
14247
14248 -1 if new fonts have been loaded so that we must interrupt
14249 redisplay, adjust glyph matrices, and try again. */
14250
14251 enum
14252 {
14253 SCROLLING_SUCCESS,
14254 SCROLLING_FAILED,
14255 SCROLLING_NEED_LARGER_MATRICES
14256 };
14257
14258 /* If scroll-conservatively is more than this, never recenter.
14259
14260 If you change this, don't forget to update the doc string of
14261 `scroll-conservatively' and the Emacs manual. */
14262 #define SCROLL_LIMIT 100
14263
14264 static int
14265 try_scrolling (Lisp_Object window, int just_this_one_p,
14266 EMACS_INT arg_scroll_conservatively, EMACS_INT scroll_step,
14267 int temp_scroll_step, int last_line_misfit)
14268 {
14269 struct window *w = XWINDOW (window);
14270 struct frame *f = XFRAME (w->frame);
14271 struct text_pos pos, startp;
14272 struct it it;
14273 int this_scroll_margin, scroll_max, rc, height;
14274 int dy = 0, amount_to_scroll = 0, scroll_down_p = 0;
14275 int extra_scroll_margin_lines = last_line_misfit ? 1 : 0;
14276 Lisp_Object aggressive;
14277 /* We will never try scrolling more than this number of lines. */
14278 int scroll_limit = SCROLL_LIMIT;
14279
14280 #if GLYPH_DEBUG
14281 debug_method_add (w, "try_scrolling");
14282 #endif
14283
14284 SET_TEXT_POS_FROM_MARKER (startp, w->start);
14285
14286 /* Compute scroll margin height in pixels. We scroll when point is
14287 within this distance from the top or bottom of the window. */
14288 if (scroll_margin > 0)
14289 this_scroll_margin = min (scroll_margin, WINDOW_TOTAL_LINES (w) / 4)
14290 * FRAME_LINE_HEIGHT (f);
14291 else
14292 this_scroll_margin = 0;
14293
14294 /* Force arg_scroll_conservatively to have a reasonable value, to
14295 avoid scrolling too far away with slow move_it_* functions. Note
14296 that the user can supply scroll-conservatively equal to
14297 `most-positive-fixnum', which can be larger than INT_MAX. */
14298 if (arg_scroll_conservatively > scroll_limit)
14299 {
14300 arg_scroll_conservatively = scroll_limit + 1;
14301 scroll_max = scroll_limit * FRAME_LINE_HEIGHT (f);
14302 }
14303 else if (scroll_step || arg_scroll_conservatively || temp_scroll_step)
14304 /* Compute how much we should try to scroll maximally to bring
14305 point into view. */
14306 scroll_max = (max (scroll_step,
14307 max (arg_scroll_conservatively, temp_scroll_step))
14308 * FRAME_LINE_HEIGHT (f));
14309 else if (NUMBERP (BVAR (current_buffer, scroll_down_aggressively))
14310 || NUMBERP (BVAR (current_buffer, scroll_up_aggressively)))
14311 /* We're trying to scroll because of aggressive scrolling but no
14312 scroll_step is set. Choose an arbitrary one. */
14313 scroll_max = 10 * FRAME_LINE_HEIGHT (f);
14314 else
14315 scroll_max = 0;
14316
14317 too_near_end:
14318
14319 /* Decide whether to scroll down. */
14320 if (PT > CHARPOS (startp))
14321 {
14322 int scroll_margin_y;
14323
14324 /* Compute the pixel ypos of the scroll margin, then move it to
14325 either that ypos or PT, whichever comes first. */
14326 start_display (&it, w, startp);
14327 scroll_margin_y = it.last_visible_y - this_scroll_margin
14328 - FRAME_LINE_HEIGHT (f) * extra_scroll_margin_lines;
14329 move_it_to (&it, PT, -1, scroll_margin_y - 1, -1,
14330 (MOVE_TO_POS | MOVE_TO_Y));
14331
14332 if (PT > CHARPOS (it.current.pos))
14333 {
14334 int y0 = line_bottom_y (&it);
14335 /* Compute how many pixels below window bottom to stop searching
14336 for PT. This avoids costly search for PT that is far away if
14337 the user limited scrolling by a small number of lines, but
14338 always finds PT if scroll_conservatively is set to a large
14339 number, such as most-positive-fixnum. */
14340 int slack = max (scroll_max, 10 * FRAME_LINE_HEIGHT (f));
14341 int y_to_move = it.last_visible_y + slack;
14342
14343 /* Compute the distance from the scroll margin to PT or to
14344 the scroll limit, whichever comes first. This should
14345 include the height of the cursor line, to make that line
14346 fully visible. */
14347 move_it_to (&it, PT, -1, y_to_move,
14348 -1, MOVE_TO_POS | MOVE_TO_Y);
14349 dy = line_bottom_y (&it) - y0;
14350
14351 if (dy > scroll_max)
14352 return SCROLLING_FAILED;
14353
14354 scroll_down_p = 1;
14355 }
14356 }
14357
14358 if (scroll_down_p)
14359 {
14360 /* Point is in or below the bottom scroll margin, so move the
14361 window start down. If scrolling conservatively, move it just
14362 enough down to make point visible. If scroll_step is set,
14363 move it down by scroll_step. */
14364 if (arg_scroll_conservatively)
14365 amount_to_scroll
14366 = min (max (dy, FRAME_LINE_HEIGHT (f)),
14367 FRAME_LINE_HEIGHT (f) * arg_scroll_conservatively);
14368 else if (scroll_step || temp_scroll_step)
14369 amount_to_scroll = scroll_max;
14370 else
14371 {
14372 aggressive = BVAR (current_buffer, scroll_up_aggressively);
14373 height = WINDOW_BOX_TEXT_HEIGHT (w);
14374 if (NUMBERP (aggressive))
14375 {
14376 double float_amount = XFLOATINT (aggressive) * height;
14377 amount_to_scroll = float_amount;
14378 if (amount_to_scroll == 0 && float_amount > 0)
14379 amount_to_scroll = 1;
14380 /* Don't let point enter the scroll margin near top of
14381 the window. */
14382 if (amount_to_scroll > height - 2*this_scroll_margin + dy)
14383 amount_to_scroll = height - 2*this_scroll_margin + dy;
14384 }
14385 }
14386
14387 if (amount_to_scroll <= 0)
14388 return SCROLLING_FAILED;
14389
14390 start_display (&it, w, startp);
14391 if (arg_scroll_conservatively <= scroll_limit)
14392 move_it_vertically (&it, amount_to_scroll);
14393 else
14394 {
14395 /* Extra precision for users who set scroll-conservatively
14396 to a large number: make sure the amount we scroll
14397 the window start is never less than amount_to_scroll,
14398 which was computed as distance from window bottom to
14399 point. This matters when lines at window top and lines
14400 below window bottom have different height. */
14401 struct it it1;
14402 void *it1data = NULL;
14403 /* We use a temporary it1 because line_bottom_y can modify
14404 its argument, if it moves one line down; see there. */
14405 int start_y;
14406
14407 SAVE_IT (it1, it, it1data);
14408 start_y = line_bottom_y (&it1);
14409 do {
14410 RESTORE_IT (&it, &it, it1data);
14411 move_it_by_lines (&it, 1);
14412 SAVE_IT (it1, it, it1data);
14413 } while (line_bottom_y (&it1) - start_y < amount_to_scroll);
14414 }
14415
14416 /* If STARTP is unchanged, move it down another screen line. */
14417 if (CHARPOS (it.current.pos) == CHARPOS (startp))
14418 move_it_by_lines (&it, 1);
14419 startp = it.current.pos;
14420 }
14421 else
14422 {
14423 struct text_pos scroll_margin_pos = startp;
14424
14425 /* See if point is inside the scroll margin at the top of the
14426 window. */
14427 if (this_scroll_margin)
14428 {
14429 start_display (&it, w, startp);
14430 move_it_vertically (&it, this_scroll_margin);
14431 scroll_margin_pos = it.current.pos;
14432 }
14433
14434 if (PT < CHARPOS (scroll_margin_pos))
14435 {
14436 /* Point is in the scroll margin at the top of the window or
14437 above what is displayed in the window. */
14438 int y0, y_to_move;
14439
14440 /* Compute the vertical distance from PT to the scroll
14441 margin position. Move as far as scroll_max allows, or
14442 one screenful, or 10 screen lines, whichever is largest.
14443 Give up if distance is greater than scroll_max. */
14444 SET_TEXT_POS (pos, PT, PT_BYTE);
14445 start_display (&it, w, pos);
14446 y0 = it.current_y;
14447 y_to_move = max (it.last_visible_y,
14448 max (scroll_max, 10 * FRAME_LINE_HEIGHT (f)));
14449 move_it_to (&it, CHARPOS (scroll_margin_pos), 0,
14450 y_to_move, -1,
14451 MOVE_TO_POS | MOVE_TO_X | MOVE_TO_Y);
14452 dy = it.current_y - y0;
14453 if (dy > scroll_max)
14454 return SCROLLING_FAILED;
14455
14456 /* Compute new window start. */
14457 start_display (&it, w, startp);
14458
14459 if (arg_scroll_conservatively)
14460 amount_to_scroll = max (dy, FRAME_LINE_HEIGHT (f) *
14461 max (scroll_step, temp_scroll_step));
14462 else if (scroll_step || temp_scroll_step)
14463 amount_to_scroll = scroll_max;
14464 else
14465 {
14466 aggressive = BVAR (current_buffer, scroll_down_aggressively);
14467 height = WINDOW_BOX_TEXT_HEIGHT (w);
14468 if (NUMBERP (aggressive))
14469 {
14470 double float_amount = XFLOATINT (aggressive) * height;
14471 amount_to_scroll = float_amount;
14472 if (amount_to_scroll == 0 && float_amount > 0)
14473 amount_to_scroll = 1;
14474 amount_to_scroll -=
14475 this_scroll_margin - dy - FRAME_LINE_HEIGHT (f);
14476 /* Don't let point enter the scroll margin near
14477 bottom of the window. */
14478 if (amount_to_scroll > height - 2*this_scroll_margin + dy)
14479 amount_to_scroll = height - 2*this_scroll_margin + dy;
14480 }
14481 }
14482
14483 if (amount_to_scroll <= 0)
14484 return SCROLLING_FAILED;
14485
14486 move_it_vertically_backward (&it, amount_to_scroll);
14487 startp = it.current.pos;
14488 }
14489 }
14490
14491 /* Run window scroll functions. */
14492 startp = run_window_scroll_functions (window, startp);
14493
14494 /* Display the window. Give up if new fonts are loaded, or if point
14495 doesn't appear. */
14496 if (!try_window (window, startp, 0))
14497 rc = SCROLLING_NEED_LARGER_MATRICES;
14498 else if (w->cursor.vpos < 0)
14499 {
14500 clear_glyph_matrix (w->desired_matrix);
14501 rc = SCROLLING_FAILED;
14502 }
14503 else
14504 {
14505 /* Maybe forget recorded base line for line number display. */
14506 if (!just_this_one_p
14507 || current_buffer->clip_changed
14508 || BEG_UNCHANGED < CHARPOS (startp))
14509 w->base_line_number = Qnil;
14510
14511 /* If cursor ends up on a partially visible line,
14512 treat that as being off the bottom of the screen. */
14513 if (! cursor_row_fully_visible_p (w, extra_scroll_margin_lines <= 1, 0)
14514 /* It's possible that the cursor is on the first line of the
14515 buffer, which is partially obscured due to a vscroll
14516 (Bug#7537). In that case, avoid looping forever . */
14517 && extra_scroll_margin_lines < w->desired_matrix->nrows - 1)
14518 {
14519 clear_glyph_matrix (w->desired_matrix);
14520 ++extra_scroll_margin_lines;
14521 goto too_near_end;
14522 }
14523 rc = SCROLLING_SUCCESS;
14524 }
14525
14526 return rc;
14527 }
14528
14529
14530 /* Compute a suitable window start for window W if display of W starts
14531 on a continuation line. Value is non-zero if a new window start
14532 was computed.
14533
14534 The new window start will be computed, based on W's width, starting
14535 from the start of the continued line. It is the start of the
14536 screen line with the minimum distance from the old start W->start. */
14537
14538 static int
14539 compute_window_start_on_continuation_line (struct window *w)
14540 {
14541 struct text_pos pos, start_pos;
14542 int window_start_changed_p = 0;
14543
14544 SET_TEXT_POS_FROM_MARKER (start_pos, w->start);
14545
14546 /* If window start is on a continuation line... Window start may be
14547 < BEGV in case there's invisible text at the start of the
14548 buffer (M-x rmail, for example). */
14549 if (CHARPOS (start_pos) > BEGV
14550 && FETCH_BYTE (BYTEPOS (start_pos) - 1) != '\n')
14551 {
14552 struct it it;
14553 struct glyph_row *row;
14554
14555 /* Handle the case that the window start is out of range. */
14556 if (CHARPOS (start_pos) < BEGV)
14557 SET_TEXT_POS (start_pos, BEGV, BEGV_BYTE);
14558 else if (CHARPOS (start_pos) > ZV)
14559 SET_TEXT_POS (start_pos, ZV, ZV_BYTE);
14560
14561 /* Find the start of the continued line. This should be fast
14562 because scan_buffer is fast (newline cache). */
14563 row = w->desired_matrix->rows + (WINDOW_WANTS_HEADER_LINE_P (w) ? 1 : 0);
14564 init_iterator (&it, w, CHARPOS (start_pos), BYTEPOS (start_pos),
14565 row, DEFAULT_FACE_ID);
14566 reseat_at_previous_visible_line_start (&it);
14567
14568 /* If the line start is "too far" away from the window start,
14569 say it takes too much time to compute a new window start. */
14570 if (CHARPOS (start_pos) - IT_CHARPOS (it)
14571 < WINDOW_TOTAL_LINES (w) * WINDOW_TOTAL_COLS (w))
14572 {
14573 int min_distance, distance;
14574
14575 /* Move forward by display lines to find the new window
14576 start. If window width was enlarged, the new start can
14577 be expected to be > the old start. If window width was
14578 decreased, the new window start will be < the old start.
14579 So, we're looking for the display line start with the
14580 minimum distance from the old window start. */
14581 pos = it.current.pos;
14582 min_distance = INFINITY;
14583 while ((distance = eabs (CHARPOS (start_pos) - IT_CHARPOS (it))),
14584 distance < min_distance)
14585 {
14586 min_distance = distance;
14587 pos = it.current.pos;
14588 move_it_by_lines (&it, 1);
14589 }
14590
14591 /* Set the window start there. */
14592 SET_MARKER_FROM_TEXT_POS (w->start, pos);
14593 window_start_changed_p = 1;
14594 }
14595 }
14596
14597 return window_start_changed_p;
14598 }
14599
14600
14601 /* Try cursor movement in case text has not changed in window WINDOW,
14602 with window start STARTP. Value is
14603
14604 CURSOR_MOVEMENT_SUCCESS if successful
14605
14606 CURSOR_MOVEMENT_CANNOT_BE_USED if this method cannot be used
14607
14608 CURSOR_MOVEMENT_MUST_SCROLL if we know we have to scroll the
14609 display. *SCROLL_STEP is set to 1, under certain circumstances, if
14610 we want to scroll as if scroll-step were set to 1. See the code.
14611
14612 CURSOR_MOVEMENT_NEED_LARGER_MATRICES if we need larger matrices, in
14613 which case we have to abort this redisplay, and adjust matrices
14614 first. */
14615
14616 enum
14617 {
14618 CURSOR_MOVEMENT_SUCCESS,
14619 CURSOR_MOVEMENT_CANNOT_BE_USED,
14620 CURSOR_MOVEMENT_MUST_SCROLL,
14621 CURSOR_MOVEMENT_NEED_LARGER_MATRICES
14622 };
14623
14624 static int
14625 try_cursor_movement (Lisp_Object window, struct text_pos startp, int *scroll_step)
14626 {
14627 struct window *w = XWINDOW (window);
14628 struct frame *f = XFRAME (w->frame);
14629 int rc = CURSOR_MOVEMENT_CANNOT_BE_USED;
14630
14631 #if GLYPH_DEBUG
14632 if (inhibit_try_cursor_movement)
14633 return rc;
14634 #endif
14635
14636 /* Handle case where text has not changed, only point, and it has
14637 not moved off the frame. */
14638 if (/* Point may be in this window. */
14639 PT >= CHARPOS (startp)
14640 /* Selective display hasn't changed. */
14641 && !current_buffer->clip_changed
14642 /* Function force-mode-line-update is used to force a thorough
14643 redisplay. It sets either windows_or_buffers_changed or
14644 update_mode_lines. So don't take a shortcut here for these
14645 cases. */
14646 && !update_mode_lines
14647 && !windows_or_buffers_changed
14648 && !cursor_type_changed
14649 /* Can't use this case if highlighting a region. When a
14650 region exists, cursor movement has to do more than just
14651 set the cursor. */
14652 && !(!NILP (Vtransient_mark_mode)
14653 && !NILP (BVAR (current_buffer, mark_active)))
14654 && NILP (w->region_showing)
14655 && NILP (Vshow_trailing_whitespace)
14656 /* Right after splitting windows, last_point may be nil. */
14657 && INTEGERP (w->last_point)
14658 /* This code is not used for mini-buffer for the sake of the case
14659 of redisplaying to replace an echo area message; since in
14660 that case the mini-buffer contents per se are usually
14661 unchanged. This code is of no real use in the mini-buffer
14662 since the handling of this_line_start_pos, etc., in redisplay
14663 handles the same cases. */
14664 && !EQ (window, minibuf_window)
14665 /* When splitting windows or for new windows, it happens that
14666 redisplay is called with a nil window_end_vpos or one being
14667 larger than the window. This should really be fixed in
14668 window.c. I don't have this on my list, now, so we do
14669 approximately the same as the old redisplay code. --gerd. */
14670 && INTEGERP (w->window_end_vpos)
14671 && XFASTINT (w->window_end_vpos) < w->current_matrix->nrows
14672 && (FRAME_WINDOW_P (f)
14673 || !overlay_arrow_in_current_buffer_p ()))
14674 {
14675 int this_scroll_margin, top_scroll_margin;
14676 struct glyph_row *row = NULL;
14677
14678 #if GLYPH_DEBUG
14679 debug_method_add (w, "cursor movement");
14680 #endif
14681
14682 /* Scroll if point within this distance from the top or bottom
14683 of the window. This is a pixel value. */
14684 if (scroll_margin > 0)
14685 {
14686 this_scroll_margin = min (scroll_margin, WINDOW_TOTAL_LINES (w) / 4);
14687 this_scroll_margin *= FRAME_LINE_HEIGHT (f);
14688 }
14689 else
14690 this_scroll_margin = 0;
14691
14692 top_scroll_margin = this_scroll_margin;
14693 if (WINDOW_WANTS_HEADER_LINE_P (w))
14694 top_scroll_margin += CURRENT_HEADER_LINE_HEIGHT (w);
14695
14696 /* Start with the row the cursor was displayed during the last
14697 not paused redisplay. Give up if that row is not valid. */
14698 if (w->last_cursor.vpos < 0
14699 || w->last_cursor.vpos >= w->current_matrix->nrows)
14700 rc = CURSOR_MOVEMENT_MUST_SCROLL;
14701 else
14702 {
14703 row = MATRIX_ROW (w->current_matrix, w->last_cursor.vpos);
14704 if (row->mode_line_p)
14705 ++row;
14706 if (!row->enabled_p)
14707 rc = CURSOR_MOVEMENT_MUST_SCROLL;
14708 }
14709
14710 if (rc == CURSOR_MOVEMENT_CANNOT_BE_USED)
14711 {
14712 int scroll_p = 0, must_scroll = 0;
14713 int last_y = window_text_bottom_y (w) - this_scroll_margin;
14714
14715 if (PT > XFASTINT (w->last_point))
14716 {
14717 /* Point has moved forward. */
14718 while (MATRIX_ROW_END_CHARPOS (row) < PT
14719 && MATRIX_ROW_BOTTOM_Y (row) < last_y)
14720 {
14721 xassert (row->enabled_p);
14722 ++row;
14723 }
14724
14725 /* If the end position of a row equals the start
14726 position of the next row, and PT is at that position,
14727 we would rather display cursor in the next line. */
14728 while (MATRIX_ROW_BOTTOM_Y (row) < last_y
14729 && MATRIX_ROW_END_CHARPOS (row) == PT
14730 && row < w->current_matrix->rows
14731 + w->current_matrix->nrows - 1
14732 && MATRIX_ROW_START_CHARPOS (row+1) == PT
14733 && !cursor_row_p (row))
14734 ++row;
14735
14736 /* If within the scroll margin, scroll. Note that
14737 MATRIX_ROW_BOTTOM_Y gives the pixel position at which
14738 the next line would be drawn, and that
14739 this_scroll_margin can be zero. */
14740 if (MATRIX_ROW_BOTTOM_Y (row) > last_y
14741 || PT > MATRIX_ROW_END_CHARPOS (row)
14742 /* Line is completely visible last line in window
14743 and PT is to be set in the next line. */
14744 || (MATRIX_ROW_BOTTOM_Y (row) == last_y
14745 && PT == MATRIX_ROW_END_CHARPOS (row)
14746 && !row->ends_at_zv_p
14747 && !MATRIX_ROW_ENDS_IN_MIDDLE_OF_CHAR_P (row)))
14748 scroll_p = 1;
14749 }
14750 else if (PT < XFASTINT (w->last_point))
14751 {
14752 /* Cursor has to be moved backward. Note that PT >=
14753 CHARPOS (startp) because of the outer if-statement. */
14754 while (!row->mode_line_p
14755 && (MATRIX_ROW_START_CHARPOS (row) > PT
14756 || (MATRIX_ROW_START_CHARPOS (row) == PT
14757 && (MATRIX_ROW_STARTS_IN_MIDDLE_OF_CHAR_P (row)
14758 || (/* STARTS_IN_MIDDLE_OF_STRING_P (row) */
14759 row > w->current_matrix->rows
14760 && (row-1)->ends_in_newline_from_string_p))))
14761 && (row->y > top_scroll_margin
14762 || CHARPOS (startp) == BEGV))
14763 {
14764 xassert (row->enabled_p);
14765 --row;
14766 }
14767
14768 /* Consider the following case: Window starts at BEGV,
14769 there is invisible, intangible text at BEGV, so that
14770 display starts at some point START > BEGV. It can
14771 happen that we are called with PT somewhere between
14772 BEGV and START. Try to handle that case. */
14773 if (row < w->current_matrix->rows
14774 || row->mode_line_p)
14775 {
14776 row = w->current_matrix->rows;
14777 if (row->mode_line_p)
14778 ++row;
14779 }
14780
14781 /* Due to newlines in overlay strings, we may have to
14782 skip forward over overlay strings. */
14783 while (MATRIX_ROW_BOTTOM_Y (row) < last_y
14784 && MATRIX_ROW_END_CHARPOS (row) == PT
14785 && !cursor_row_p (row))
14786 ++row;
14787
14788 /* If within the scroll margin, scroll. */
14789 if (row->y < top_scroll_margin
14790 && CHARPOS (startp) != BEGV)
14791 scroll_p = 1;
14792 }
14793 else
14794 {
14795 /* Cursor did not move. So don't scroll even if cursor line
14796 is partially visible, as it was so before. */
14797 rc = CURSOR_MOVEMENT_SUCCESS;
14798 }
14799
14800 if (PT < MATRIX_ROW_START_CHARPOS (row)
14801 || PT > MATRIX_ROW_END_CHARPOS (row))
14802 {
14803 /* if PT is not in the glyph row, give up. */
14804 rc = CURSOR_MOVEMENT_MUST_SCROLL;
14805 must_scroll = 1;
14806 }
14807 else if (rc != CURSOR_MOVEMENT_SUCCESS
14808 && !NILP (BVAR (XBUFFER (w->buffer), bidi_display_reordering)))
14809 {
14810 /* If rows are bidi-reordered and point moved, back up
14811 until we find a row that does not belong to a
14812 continuation line. This is because we must consider
14813 all rows of a continued line as candidates for the
14814 new cursor positioning, since row start and end
14815 positions change non-linearly with vertical position
14816 in such rows. */
14817 /* FIXME: Revisit this when glyph ``spilling'' in
14818 continuation lines' rows is implemented for
14819 bidi-reordered rows. */
14820 while (MATRIX_ROW_CONTINUATION_LINE_P (row))
14821 {
14822 xassert (row->enabled_p);
14823 --row;
14824 /* If we hit the beginning of the displayed portion
14825 without finding the first row of a continued
14826 line, give up. */
14827 if (row <= w->current_matrix->rows)
14828 {
14829 rc = CURSOR_MOVEMENT_MUST_SCROLL;
14830 break;
14831 }
14832
14833 }
14834 }
14835 if (must_scroll)
14836 ;
14837 else if (rc != CURSOR_MOVEMENT_SUCCESS
14838 && MATRIX_ROW_PARTIALLY_VISIBLE_P (w, row)
14839 && make_cursor_line_fully_visible_p)
14840 {
14841 if (PT == MATRIX_ROW_END_CHARPOS (row)
14842 && !row->ends_at_zv_p
14843 && !MATRIX_ROW_ENDS_IN_MIDDLE_OF_CHAR_P (row))
14844 rc = CURSOR_MOVEMENT_MUST_SCROLL;
14845 else if (row->height > window_box_height (w))
14846 {
14847 /* If we end up in a partially visible line, let's
14848 make it fully visible, except when it's taller
14849 than the window, in which case we can't do much
14850 about it. */
14851 *scroll_step = 1;
14852 rc = CURSOR_MOVEMENT_MUST_SCROLL;
14853 }
14854 else
14855 {
14856 set_cursor_from_row (w, row, w->current_matrix, 0, 0, 0, 0);
14857 if (!cursor_row_fully_visible_p (w, 0, 1))
14858 rc = CURSOR_MOVEMENT_MUST_SCROLL;
14859 else
14860 rc = CURSOR_MOVEMENT_SUCCESS;
14861 }
14862 }
14863 else if (scroll_p)
14864 rc = CURSOR_MOVEMENT_MUST_SCROLL;
14865 else if (rc != CURSOR_MOVEMENT_SUCCESS
14866 && !NILP (BVAR (XBUFFER (w->buffer), bidi_display_reordering)))
14867 {
14868 /* With bidi-reordered rows, there could be more than
14869 one candidate row whose start and end positions
14870 occlude point. We need to let set_cursor_from_row
14871 find the best candidate. */
14872 /* FIXME: Revisit this when glyph ``spilling'' in
14873 continuation lines' rows is implemented for
14874 bidi-reordered rows. */
14875 int rv = 0;
14876
14877 do
14878 {
14879 int at_zv_p = 0, exact_match_p = 0;
14880
14881 if (MATRIX_ROW_START_CHARPOS (row) <= PT
14882 && PT <= MATRIX_ROW_END_CHARPOS (row)
14883 && cursor_row_p (row))
14884 rv |= set_cursor_from_row (w, row, w->current_matrix,
14885 0, 0, 0, 0);
14886 /* As soon as we've found the exact match for point,
14887 or the first suitable row whose ends_at_zv_p flag
14888 is set, we are done. */
14889 at_zv_p =
14890 MATRIX_ROW (w->current_matrix, w->cursor.vpos)->ends_at_zv_p;
14891 if (rv && !at_zv_p
14892 && w->cursor.hpos >= 0
14893 && w->cursor.hpos < MATRIX_ROW_USED (w->current_matrix,
14894 w->cursor.vpos))
14895 {
14896 struct glyph_row *candidate =
14897 MATRIX_ROW (w->current_matrix, w->cursor.vpos);
14898 struct glyph *g =
14899 candidate->glyphs[TEXT_AREA] + w->cursor.hpos;
14900 EMACS_INT endpos = MATRIX_ROW_END_CHARPOS (candidate);
14901
14902 exact_match_p =
14903 (BUFFERP (g->object) && g->charpos == PT)
14904 || (INTEGERP (g->object)
14905 && (g->charpos == PT
14906 || (g->charpos == 0 && endpos - 1 == PT)));
14907 }
14908 if (rv && (at_zv_p || exact_match_p))
14909 {
14910 rc = CURSOR_MOVEMENT_SUCCESS;
14911 break;
14912 }
14913 if (MATRIX_ROW_BOTTOM_Y (row) == last_y)
14914 break;
14915 ++row;
14916 }
14917 while (((MATRIX_ROW_CONTINUATION_LINE_P (row)
14918 || row->continued_p)
14919 && MATRIX_ROW_BOTTOM_Y (row) <= last_y)
14920 || (MATRIX_ROW_START_CHARPOS (row) == PT
14921 && MATRIX_ROW_BOTTOM_Y (row) < last_y));
14922 /* If we didn't find any candidate rows, or exited the
14923 loop before all the candidates were examined, signal
14924 to the caller that this method failed. */
14925 if (rc != CURSOR_MOVEMENT_SUCCESS
14926 && !(rv
14927 && !MATRIX_ROW_CONTINUATION_LINE_P (row)
14928 && !row->continued_p))
14929 rc = CURSOR_MOVEMENT_MUST_SCROLL;
14930 else if (rv)
14931 rc = CURSOR_MOVEMENT_SUCCESS;
14932 }
14933 else
14934 {
14935 do
14936 {
14937 if (set_cursor_from_row (w, row, w->current_matrix, 0, 0, 0, 0))
14938 {
14939 rc = CURSOR_MOVEMENT_SUCCESS;
14940 break;
14941 }
14942 ++row;
14943 }
14944 while (MATRIX_ROW_BOTTOM_Y (row) < last_y
14945 && MATRIX_ROW_START_CHARPOS (row) == PT
14946 && cursor_row_p (row));
14947 }
14948 }
14949 }
14950
14951 return rc;
14952 }
14953
14954 #if !defined USE_TOOLKIT_SCROLL_BARS || defined USE_GTK
14955 static
14956 #endif
14957 void
14958 set_vertical_scroll_bar (struct window *w)
14959 {
14960 EMACS_INT start, end, whole;
14961
14962 /* Calculate the start and end positions for the current window.
14963 At some point, it would be nice to choose between scrollbars
14964 which reflect the whole buffer size, with special markers
14965 indicating narrowing, and scrollbars which reflect only the
14966 visible region.
14967
14968 Note that mini-buffers sometimes aren't displaying any text. */
14969 if (!MINI_WINDOW_P (w)
14970 || (w == XWINDOW (minibuf_window)
14971 && NILP (echo_area_buffer[0])))
14972 {
14973 struct buffer *buf = XBUFFER (w->buffer);
14974 whole = BUF_ZV (buf) - BUF_BEGV (buf);
14975 start = marker_position (w->start) - BUF_BEGV (buf);
14976 /* I don't think this is guaranteed to be right. For the
14977 moment, we'll pretend it is. */
14978 end = BUF_Z (buf) - XFASTINT (w->window_end_pos) - BUF_BEGV (buf);
14979
14980 if (end < start)
14981 end = start;
14982 if (whole < (end - start))
14983 whole = end - start;
14984 }
14985 else
14986 start = end = whole = 0;
14987
14988 /* Indicate what this scroll bar ought to be displaying now. */
14989 if (FRAME_TERMINAL (XFRAME (w->frame))->set_vertical_scroll_bar_hook)
14990 (*FRAME_TERMINAL (XFRAME (w->frame))->set_vertical_scroll_bar_hook)
14991 (w, end - start, whole, start);
14992 }
14993
14994
14995 /* Redisplay leaf window WINDOW. JUST_THIS_ONE_P non-zero means only
14996 selected_window is redisplayed.
14997
14998 We can return without actually redisplaying the window if
14999 fonts_changed_p is nonzero. In that case, redisplay_internal will
15000 retry. */
15001
15002 static void
15003 redisplay_window (Lisp_Object window, int just_this_one_p)
15004 {
15005 struct window *w = XWINDOW (window);
15006 struct frame *f = XFRAME (w->frame);
15007 struct buffer *buffer = XBUFFER (w->buffer);
15008 struct buffer *old = current_buffer;
15009 struct text_pos lpoint, opoint, startp;
15010 int update_mode_line;
15011 int tem;
15012 struct it it;
15013 /* Record it now because it's overwritten. */
15014 int current_matrix_up_to_date_p = 0;
15015 int used_current_matrix_p = 0;
15016 /* This is less strict than current_matrix_up_to_date_p.
15017 It indictes that the buffer contents and narrowing are unchanged. */
15018 int buffer_unchanged_p = 0;
15019 int temp_scroll_step = 0;
15020 int count = SPECPDL_INDEX ();
15021 int rc;
15022 int centering_position = -1;
15023 int last_line_misfit = 0;
15024 EMACS_INT beg_unchanged, end_unchanged;
15025
15026 SET_TEXT_POS (lpoint, PT, PT_BYTE);
15027 opoint = lpoint;
15028
15029 /* W must be a leaf window here. */
15030 xassert (!NILP (w->buffer));
15031 #if GLYPH_DEBUG
15032 *w->desired_matrix->method = 0;
15033 #endif
15034
15035 restart:
15036 reconsider_clip_changes (w, buffer);
15037
15038 /* Has the mode line to be updated? */
15039 update_mode_line = (!NILP (w->update_mode_line)
15040 || update_mode_lines
15041 || buffer->clip_changed
15042 || buffer->prevent_redisplay_optimizations_p);
15043
15044 if (MINI_WINDOW_P (w))
15045 {
15046 if (w == XWINDOW (echo_area_window)
15047 && !NILP (echo_area_buffer[0]))
15048 {
15049 if (update_mode_line)
15050 /* We may have to update a tty frame's menu bar or a
15051 tool-bar. Example `M-x C-h C-h C-g'. */
15052 goto finish_menu_bars;
15053 else
15054 /* We've already displayed the echo area glyphs in this window. */
15055 goto finish_scroll_bars;
15056 }
15057 else if ((w != XWINDOW (minibuf_window)
15058 || minibuf_level == 0)
15059 /* When buffer is nonempty, redisplay window normally. */
15060 && BUF_Z (XBUFFER (w->buffer)) == BUF_BEG (XBUFFER (w->buffer))
15061 /* Quail displays non-mini buffers in minibuffer window.
15062 In that case, redisplay the window normally. */
15063 && !NILP (Fmemq (w->buffer, Vminibuffer_list)))
15064 {
15065 /* W is a mini-buffer window, but it's not active, so clear
15066 it. */
15067 int yb = window_text_bottom_y (w);
15068 struct glyph_row *row;
15069 int y;
15070
15071 for (y = 0, row = w->desired_matrix->rows;
15072 y < yb;
15073 y += row->height, ++row)
15074 blank_row (w, row, y);
15075 goto finish_scroll_bars;
15076 }
15077
15078 clear_glyph_matrix (w->desired_matrix);
15079 }
15080
15081 /* Otherwise set up data on this window; select its buffer and point
15082 value. */
15083 /* Really select the buffer, for the sake of buffer-local
15084 variables. */
15085 set_buffer_internal_1 (XBUFFER (w->buffer));
15086
15087 current_matrix_up_to_date_p
15088 = (!NILP (w->window_end_valid)
15089 && !current_buffer->clip_changed
15090 && !current_buffer->prevent_redisplay_optimizations_p
15091 && XFASTINT (w->last_modified) >= MODIFF
15092 && XFASTINT (w->last_overlay_modified) >= OVERLAY_MODIFF);
15093
15094 /* Run the window-bottom-change-functions
15095 if it is possible that the text on the screen has changed
15096 (either due to modification of the text, or any other reason). */
15097 if (!current_matrix_up_to_date_p
15098 && !NILP (Vwindow_text_change_functions))
15099 {
15100 safe_run_hooks (Qwindow_text_change_functions);
15101 goto restart;
15102 }
15103
15104 beg_unchanged = BEG_UNCHANGED;
15105 end_unchanged = END_UNCHANGED;
15106
15107 SET_TEXT_POS (opoint, PT, PT_BYTE);
15108
15109 specbind (Qinhibit_point_motion_hooks, Qt);
15110
15111 buffer_unchanged_p
15112 = (!NILP (w->window_end_valid)
15113 && !current_buffer->clip_changed
15114 && XFASTINT (w->last_modified) >= MODIFF
15115 && XFASTINT (w->last_overlay_modified) >= OVERLAY_MODIFF);
15116
15117 /* When windows_or_buffers_changed is non-zero, we can't rely on
15118 the window end being valid, so set it to nil there. */
15119 if (windows_or_buffers_changed)
15120 {
15121 /* If window starts on a continuation line, maybe adjust the
15122 window start in case the window's width changed. */
15123 if (XMARKER (w->start)->buffer == current_buffer)
15124 compute_window_start_on_continuation_line (w);
15125
15126 w->window_end_valid = Qnil;
15127 }
15128
15129 /* Some sanity checks. */
15130 CHECK_WINDOW_END (w);
15131 if (Z == Z_BYTE && CHARPOS (opoint) != BYTEPOS (opoint))
15132 abort ();
15133 if (BYTEPOS (opoint) < CHARPOS (opoint))
15134 abort ();
15135
15136 /* If %c is in mode line, update it if needed. */
15137 if (!NILP (w->column_number_displayed)
15138 /* This alternative quickly identifies a common case
15139 where no change is needed. */
15140 && !(PT == XFASTINT (w->last_point)
15141 && XFASTINT (w->last_modified) >= MODIFF
15142 && XFASTINT (w->last_overlay_modified) >= OVERLAY_MODIFF)
15143 && (XFASTINT (w->column_number_displayed) != current_column ()))
15144 update_mode_line = 1;
15145
15146 /* Count number of windows showing the selected buffer. An indirect
15147 buffer counts as its base buffer. */
15148 if (!just_this_one_p)
15149 {
15150 struct buffer *current_base, *window_base;
15151 current_base = current_buffer;
15152 window_base = XBUFFER (XWINDOW (selected_window)->buffer);
15153 if (current_base->base_buffer)
15154 current_base = current_base->base_buffer;
15155 if (window_base->base_buffer)
15156 window_base = window_base->base_buffer;
15157 if (current_base == window_base)
15158 buffer_shared++;
15159 }
15160
15161 /* Point refers normally to the selected window. For any other
15162 window, set up appropriate value. */
15163 if (!EQ (window, selected_window))
15164 {
15165 EMACS_INT new_pt = XMARKER (w->pointm)->charpos;
15166 EMACS_INT new_pt_byte = marker_byte_position (w->pointm);
15167 if (new_pt < BEGV)
15168 {
15169 new_pt = BEGV;
15170 new_pt_byte = BEGV_BYTE;
15171 set_marker_both (w->pointm, Qnil, BEGV, BEGV_BYTE);
15172 }
15173 else if (new_pt > (ZV - 1))
15174 {
15175 new_pt = ZV;
15176 new_pt_byte = ZV_BYTE;
15177 set_marker_both (w->pointm, Qnil, ZV, ZV_BYTE);
15178 }
15179
15180 /* We don't use SET_PT so that the point-motion hooks don't run. */
15181 TEMP_SET_PT_BOTH (new_pt, new_pt_byte);
15182 }
15183
15184 /* If any of the character widths specified in the display table
15185 have changed, invalidate the width run cache. It's true that
15186 this may be a bit late to catch such changes, but the rest of
15187 redisplay goes (non-fatally) haywire when the display table is
15188 changed, so why should we worry about doing any better? */
15189 if (current_buffer->width_run_cache)
15190 {
15191 struct Lisp_Char_Table *disptab = buffer_display_table ();
15192
15193 if (! disptab_matches_widthtab (disptab,
15194 XVECTOR (BVAR (current_buffer, width_table))))
15195 {
15196 invalidate_region_cache (current_buffer,
15197 current_buffer->width_run_cache,
15198 BEG, Z);
15199 recompute_width_table (current_buffer, disptab);
15200 }
15201 }
15202
15203 /* If window-start is screwed up, choose a new one. */
15204 if (XMARKER (w->start)->buffer != current_buffer)
15205 goto recenter;
15206
15207 SET_TEXT_POS_FROM_MARKER (startp, w->start);
15208
15209 /* If someone specified a new starting point but did not insist,
15210 check whether it can be used. */
15211 if (!NILP (w->optional_new_start)
15212 && CHARPOS (startp) >= BEGV
15213 && CHARPOS (startp) <= ZV)
15214 {
15215 w->optional_new_start = Qnil;
15216 start_display (&it, w, startp);
15217 move_it_to (&it, PT, 0, it.last_visible_y, -1,
15218 MOVE_TO_POS | MOVE_TO_X | MOVE_TO_Y);
15219 if (IT_CHARPOS (it) == PT)
15220 w->force_start = Qt;
15221 /* IT may overshoot PT if text at PT is invisible. */
15222 else if (IT_CHARPOS (it) > PT && CHARPOS (startp) <= PT)
15223 w->force_start = Qt;
15224 }
15225
15226 force_start:
15227
15228 /* Handle case where place to start displaying has been specified,
15229 unless the specified location is outside the accessible range. */
15230 if (!NILP (w->force_start)
15231 || w->frozen_window_start_p)
15232 {
15233 /* We set this later on if we have to adjust point. */
15234 int new_vpos = -1;
15235
15236 w->force_start = Qnil;
15237 w->vscroll = 0;
15238 w->window_end_valid = Qnil;
15239
15240 /* Forget any recorded base line for line number display. */
15241 if (!buffer_unchanged_p)
15242 w->base_line_number = Qnil;
15243
15244 /* Redisplay the mode line. Select the buffer properly for that.
15245 Also, run the hook window-scroll-functions
15246 because we have scrolled. */
15247 /* Note, we do this after clearing force_start because
15248 if there's an error, it is better to forget about force_start
15249 than to get into an infinite loop calling the hook functions
15250 and having them get more errors. */
15251 if (!update_mode_line
15252 || ! NILP (Vwindow_scroll_functions))
15253 {
15254 update_mode_line = 1;
15255 w->update_mode_line = Qt;
15256 startp = run_window_scroll_functions (window, startp);
15257 }
15258
15259 w->last_modified = make_number (0);
15260 w->last_overlay_modified = make_number (0);
15261 if (CHARPOS (startp) < BEGV)
15262 SET_TEXT_POS (startp, BEGV, BEGV_BYTE);
15263 else if (CHARPOS (startp) > ZV)
15264 SET_TEXT_POS (startp, ZV, ZV_BYTE);
15265
15266 /* Redisplay, then check if cursor has been set during the
15267 redisplay. Give up if new fonts were loaded. */
15268 /* We used to issue a CHECK_MARGINS argument to try_window here,
15269 but this causes scrolling to fail when point begins inside
15270 the scroll margin (bug#148) -- cyd */
15271 if (!try_window (window, startp, 0))
15272 {
15273 w->force_start = Qt;
15274 clear_glyph_matrix (w->desired_matrix);
15275 goto need_larger_matrices;
15276 }
15277
15278 if (w->cursor.vpos < 0 && !w->frozen_window_start_p)
15279 {
15280 /* If point does not appear, try to move point so it does
15281 appear. The desired matrix has been built above, so we
15282 can use it here. */
15283 new_vpos = window_box_height (w) / 2;
15284 }
15285
15286 if (!cursor_row_fully_visible_p (w, 0, 0))
15287 {
15288 /* Point does appear, but on a line partly visible at end of window.
15289 Move it back to a fully-visible line. */
15290 new_vpos = window_box_height (w);
15291 }
15292
15293 /* If we need to move point for either of the above reasons,
15294 now actually do it. */
15295 if (new_vpos >= 0)
15296 {
15297 struct glyph_row *row;
15298
15299 row = MATRIX_FIRST_TEXT_ROW (w->desired_matrix);
15300 while (MATRIX_ROW_BOTTOM_Y (row) < new_vpos)
15301 ++row;
15302
15303 TEMP_SET_PT_BOTH (MATRIX_ROW_START_CHARPOS (row),
15304 MATRIX_ROW_START_BYTEPOS (row));
15305
15306 if (w != XWINDOW (selected_window))
15307 set_marker_both (w->pointm, Qnil, PT, PT_BYTE);
15308 else if (current_buffer == old)
15309 SET_TEXT_POS (lpoint, PT, PT_BYTE);
15310
15311 set_cursor_from_row (w, row, w->desired_matrix, 0, 0, 0, 0);
15312
15313 /* If we are highlighting the region, then we just changed
15314 the region, so redisplay to show it. */
15315 if (!NILP (Vtransient_mark_mode)
15316 && !NILP (BVAR (current_buffer, mark_active)))
15317 {
15318 clear_glyph_matrix (w->desired_matrix);
15319 if (!try_window (window, startp, 0))
15320 goto need_larger_matrices;
15321 }
15322 }
15323
15324 #if GLYPH_DEBUG
15325 debug_method_add (w, "forced window start");
15326 #endif
15327 goto done;
15328 }
15329
15330 /* Handle case where text has not changed, only point, and it has
15331 not moved off the frame, and we are not retrying after hscroll.
15332 (current_matrix_up_to_date_p is nonzero when retrying.) */
15333 if (current_matrix_up_to_date_p
15334 && (rc = try_cursor_movement (window, startp, &temp_scroll_step),
15335 rc != CURSOR_MOVEMENT_CANNOT_BE_USED))
15336 {
15337 switch (rc)
15338 {
15339 case CURSOR_MOVEMENT_SUCCESS:
15340 used_current_matrix_p = 1;
15341 goto done;
15342
15343 case CURSOR_MOVEMENT_MUST_SCROLL:
15344 goto try_to_scroll;
15345
15346 default:
15347 abort ();
15348 }
15349 }
15350 /* If current starting point was originally the beginning of a line
15351 but no longer is, find a new starting point. */
15352 else if (!NILP (w->start_at_line_beg)
15353 && !(CHARPOS (startp) <= BEGV
15354 || FETCH_BYTE (BYTEPOS (startp) - 1) == '\n'))
15355 {
15356 #if GLYPH_DEBUG
15357 debug_method_add (w, "recenter 1");
15358 #endif
15359 goto recenter;
15360 }
15361
15362 /* Try scrolling with try_window_id. Value is > 0 if update has
15363 been done, it is -1 if we know that the same window start will
15364 not work. It is 0 if unsuccessful for some other reason. */
15365 else if ((tem = try_window_id (w)) != 0)
15366 {
15367 #if GLYPH_DEBUG
15368 debug_method_add (w, "try_window_id %d", tem);
15369 #endif
15370
15371 if (fonts_changed_p)
15372 goto need_larger_matrices;
15373 if (tem > 0)
15374 goto done;
15375
15376 /* Otherwise try_window_id has returned -1 which means that we
15377 don't want the alternative below this comment to execute. */
15378 }
15379 else if (CHARPOS (startp) >= BEGV
15380 && CHARPOS (startp) <= ZV
15381 && PT >= CHARPOS (startp)
15382 && (CHARPOS (startp) < ZV
15383 /* Avoid starting at end of buffer. */
15384 || CHARPOS (startp) == BEGV
15385 || (XFASTINT (w->last_modified) >= MODIFF
15386 && XFASTINT (w->last_overlay_modified) >= OVERLAY_MODIFF)))
15387 {
15388 int d1, d2, d3, d4, d5, d6;
15389
15390 /* If first window line is a continuation line, and window start
15391 is inside the modified region, but the first change is before
15392 current window start, we must select a new window start.
15393
15394 However, if this is the result of a down-mouse event (e.g. by
15395 extending the mouse-drag-overlay), we don't want to select a
15396 new window start, since that would change the position under
15397 the mouse, resulting in an unwanted mouse-movement rather
15398 than a simple mouse-click. */
15399 if (NILP (w->start_at_line_beg)
15400 && NILP (do_mouse_tracking)
15401 && CHARPOS (startp) > BEGV
15402 && CHARPOS (startp) > BEG + beg_unchanged
15403 && CHARPOS (startp) <= Z - end_unchanged
15404 /* Even if w->start_at_line_beg is nil, a new window may
15405 start at a line_beg, since that's how set_buffer_window
15406 sets it. So, we need to check the return value of
15407 compute_window_start_on_continuation_line. (See also
15408 bug#197). */
15409 && XMARKER (w->start)->buffer == current_buffer
15410 && compute_window_start_on_continuation_line (w)
15411 /* It doesn't make sense to force the window start like we
15412 do at label force_start if it is already known that point
15413 will not be visible in the resulting window, because
15414 doing so will move point from its correct position
15415 instead of scrolling the window to bring point into view.
15416 See bug#9324. */
15417 && pos_visible_p (w, PT, &d1, &d2, &d3, &d4, &d5, &d6))
15418 {
15419 w->force_start = Qt;
15420 SET_TEXT_POS_FROM_MARKER (startp, w->start);
15421 goto force_start;
15422 }
15423
15424 #if GLYPH_DEBUG
15425 debug_method_add (w, "same window start");
15426 #endif
15427
15428 /* Try to redisplay starting at same place as before.
15429 If point has not moved off frame, accept the results. */
15430 if (!current_matrix_up_to_date_p
15431 /* Don't use try_window_reusing_current_matrix in this case
15432 because a window scroll function can have changed the
15433 buffer. */
15434 || !NILP (Vwindow_scroll_functions)
15435 || MINI_WINDOW_P (w)
15436 || !(used_current_matrix_p
15437 = try_window_reusing_current_matrix (w)))
15438 {
15439 IF_DEBUG (debug_method_add (w, "1"));
15440 if (try_window (window, startp, TRY_WINDOW_CHECK_MARGINS) < 0)
15441 /* -1 means we need to scroll.
15442 0 means we need new matrices, but fonts_changed_p
15443 is set in that case, so we will detect it below. */
15444 goto try_to_scroll;
15445 }
15446
15447 if (fonts_changed_p)
15448 goto need_larger_matrices;
15449
15450 if (w->cursor.vpos >= 0)
15451 {
15452 if (!just_this_one_p
15453 || current_buffer->clip_changed
15454 || BEG_UNCHANGED < CHARPOS (startp))
15455 /* Forget any recorded base line for line number display. */
15456 w->base_line_number = Qnil;
15457
15458 if (!cursor_row_fully_visible_p (w, 1, 0))
15459 {
15460 clear_glyph_matrix (w->desired_matrix);
15461 last_line_misfit = 1;
15462 }
15463 /* Drop through and scroll. */
15464 else
15465 goto done;
15466 }
15467 else
15468 clear_glyph_matrix (w->desired_matrix);
15469 }
15470
15471 try_to_scroll:
15472
15473 w->last_modified = make_number (0);
15474 w->last_overlay_modified = make_number (0);
15475
15476 /* Redisplay the mode line. Select the buffer properly for that. */
15477 if (!update_mode_line)
15478 {
15479 update_mode_line = 1;
15480 w->update_mode_line = Qt;
15481 }
15482
15483 /* Try to scroll by specified few lines. */
15484 if ((scroll_conservatively
15485 || emacs_scroll_step
15486 || temp_scroll_step
15487 || NUMBERP (BVAR (current_buffer, scroll_up_aggressively))
15488 || NUMBERP (BVAR (current_buffer, scroll_down_aggressively)))
15489 && CHARPOS (startp) >= BEGV
15490 && CHARPOS (startp) <= ZV)
15491 {
15492 /* The function returns -1 if new fonts were loaded, 1 if
15493 successful, 0 if not successful. */
15494 int ss = try_scrolling (window, just_this_one_p,
15495 scroll_conservatively,
15496 emacs_scroll_step,
15497 temp_scroll_step, last_line_misfit);
15498 switch (ss)
15499 {
15500 case SCROLLING_SUCCESS:
15501 goto done;
15502
15503 case SCROLLING_NEED_LARGER_MATRICES:
15504 goto need_larger_matrices;
15505
15506 case SCROLLING_FAILED:
15507 break;
15508
15509 default:
15510 abort ();
15511 }
15512 }
15513
15514 /* Finally, just choose a place to start which positions point
15515 according to user preferences. */
15516
15517 recenter:
15518
15519 #if GLYPH_DEBUG
15520 debug_method_add (w, "recenter");
15521 #endif
15522
15523 /* w->vscroll = 0; */
15524
15525 /* Forget any previously recorded base line for line number display. */
15526 if (!buffer_unchanged_p)
15527 w->base_line_number = Qnil;
15528
15529 /* Determine the window start relative to point. */
15530 init_iterator (&it, w, PT, PT_BYTE, NULL, DEFAULT_FACE_ID);
15531 it.current_y = it.last_visible_y;
15532 if (centering_position < 0)
15533 {
15534 int margin =
15535 scroll_margin > 0
15536 ? min (scroll_margin, WINDOW_TOTAL_LINES (w) / 4)
15537 : 0;
15538 EMACS_INT margin_pos = CHARPOS (startp);
15539 int scrolling_up;
15540 Lisp_Object aggressive;
15541
15542 /* If there is a scroll margin at the top of the window, find
15543 its character position. */
15544 if (margin
15545 /* Cannot call start_display if startp is not in the
15546 accessible region of the buffer. This can happen when we
15547 have just switched to a different buffer and/or changed
15548 its restriction. In that case, startp is initialized to
15549 the character position 1 (BEG) because we did not yet
15550 have chance to display the buffer even once. */
15551 && BEGV <= CHARPOS (startp) && CHARPOS (startp) <= ZV)
15552 {
15553 struct it it1;
15554 void *it1data = NULL;
15555
15556 SAVE_IT (it1, it, it1data);
15557 start_display (&it1, w, startp);
15558 move_it_vertically (&it1, margin);
15559 margin_pos = IT_CHARPOS (it1);
15560 RESTORE_IT (&it, &it, it1data);
15561 }
15562 scrolling_up = PT > margin_pos;
15563 aggressive =
15564 scrolling_up
15565 ? BVAR (current_buffer, scroll_up_aggressively)
15566 : BVAR (current_buffer, scroll_down_aggressively);
15567
15568 if (!MINI_WINDOW_P (w)
15569 && (scroll_conservatively > SCROLL_LIMIT || NUMBERP (aggressive)))
15570 {
15571 int pt_offset = 0;
15572
15573 /* Setting scroll-conservatively overrides
15574 scroll-*-aggressively. */
15575 if (!scroll_conservatively && NUMBERP (aggressive))
15576 {
15577 double float_amount = XFLOATINT (aggressive);
15578
15579 pt_offset = float_amount * WINDOW_BOX_TEXT_HEIGHT (w);
15580 if (pt_offset == 0 && float_amount > 0)
15581 pt_offset = 1;
15582 if (pt_offset)
15583 margin -= 1;
15584 }
15585 /* Compute how much to move the window start backward from
15586 point so that point will be displayed where the user
15587 wants it. */
15588 if (scrolling_up)
15589 {
15590 centering_position = it.last_visible_y;
15591 if (pt_offset)
15592 centering_position -= pt_offset;
15593 centering_position -=
15594 FRAME_LINE_HEIGHT (f) * (1 + margin + (last_line_misfit != 0))
15595 + WINDOW_HEADER_LINE_HEIGHT (w);
15596 /* Don't let point enter the scroll margin near top of
15597 the window. */
15598 if (centering_position < margin * FRAME_LINE_HEIGHT (f))
15599 centering_position = margin * FRAME_LINE_HEIGHT (f);
15600 }
15601 else
15602 centering_position = margin * FRAME_LINE_HEIGHT (f) + pt_offset;
15603 }
15604 else
15605 /* Set the window start half the height of the window backward
15606 from point. */
15607 centering_position = window_box_height (w) / 2;
15608 }
15609 move_it_vertically_backward (&it, centering_position);
15610
15611 xassert (IT_CHARPOS (it) >= BEGV);
15612
15613 /* The function move_it_vertically_backward may move over more
15614 than the specified y-distance. If it->w is small, e.g. a
15615 mini-buffer window, we may end up in front of the window's
15616 display area. Start displaying at the start of the line
15617 containing PT in this case. */
15618 if (it.current_y <= 0)
15619 {
15620 init_iterator (&it, w, PT, PT_BYTE, NULL, DEFAULT_FACE_ID);
15621 move_it_vertically_backward (&it, 0);
15622 it.current_y = 0;
15623 }
15624
15625 it.current_x = it.hpos = 0;
15626
15627 /* Set the window start position here explicitly, to avoid an
15628 infinite loop in case the functions in window-scroll-functions
15629 get errors. */
15630 set_marker_both (w->start, Qnil, IT_CHARPOS (it), IT_BYTEPOS (it));
15631
15632 /* Run scroll hooks. */
15633 startp = run_window_scroll_functions (window, it.current.pos);
15634
15635 /* Redisplay the window. */
15636 if (!current_matrix_up_to_date_p
15637 || windows_or_buffers_changed
15638 || cursor_type_changed
15639 /* Don't use try_window_reusing_current_matrix in this case
15640 because it can have changed the buffer. */
15641 || !NILP (Vwindow_scroll_functions)
15642 || !just_this_one_p
15643 || MINI_WINDOW_P (w)
15644 || !(used_current_matrix_p
15645 = try_window_reusing_current_matrix (w)))
15646 try_window (window, startp, 0);
15647
15648 /* If new fonts have been loaded (due to fontsets), give up. We
15649 have to start a new redisplay since we need to re-adjust glyph
15650 matrices. */
15651 if (fonts_changed_p)
15652 goto need_larger_matrices;
15653
15654 /* If cursor did not appear assume that the middle of the window is
15655 in the first line of the window. Do it again with the next line.
15656 (Imagine a window of height 100, displaying two lines of height
15657 60. Moving back 50 from it->last_visible_y will end in the first
15658 line.) */
15659 if (w->cursor.vpos < 0)
15660 {
15661 if (!NILP (w->window_end_valid)
15662 && PT >= Z - XFASTINT (w->window_end_pos))
15663 {
15664 clear_glyph_matrix (w->desired_matrix);
15665 move_it_by_lines (&it, 1);
15666 try_window (window, it.current.pos, 0);
15667 }
15668 else if (PT < IT_CHARPOS (it))
15669 {
15670 clear_glyph_matrix (w->desired_matrix);
15671 move_it_by_lines (&it, -1);
15672 try_window (window, it.current.pos, 0);
15673 }
15674 else
15675 {
15676 /* Not much we can do about it. */
15677 }
15678 }
15679
15680 /* Consider the following case: Window starts at BEGV, there is
15681 invisible, intangible text at BEGV, so that display starts at
15682 some point START > BEGV. It can happen that we are called with
15683 PT somewhere between BEGV and START. Try to handle that case. */
15684 if (w->cursor.vpos < 0)
15685 {
15686 struct glyph_row *row = w->current_matrix->rows;
15687 if (row->mode_line_p)
15688 ++row;
15689 set_cursor_from_row (w, row, w->current_matrix, 0, 0, 0, 0);
15690 }
15691
15692 if (!cursor_row_fully_visible_p (w, 0, 0))
15693 {
15694 /* If vscroll is enabled, disable it and try again. */
15695 if (w->vscroll)
15696 {
15697 w->vscroll = 0;
15698 clear_glyph_matrix (w->desired_matrix);
15699 goto recenter;
15700 }
15701
15702 /* If centering point failed to make the whole line visible,
15703 put point at the top instead. That has to make the whole line
15704 visible, if it can be done. */
15705 if (centering_position == 0)
15706 goto done;
15707
15708 clear_glyph_matrix (w->desired_matrix);
15709 centering_position = 0;
15710 goto recenter;
15711 }
15712
15713 done:
15714
15715 SET_TEXT_POS_FROM_MARKER (startp, w->start);
15716 w->start_at_line_beg = ((CHARPOS (startp) == BEGV
15717 || FETCH_BYTE (BYTEPOS (startp) - 1) == '\n')
15718 ? Qt : Qnil);
15719
15720 /* Display the mode line, if we must. */
15721 if ((update_mode_line
15722 /* If window not full width, must redo its mode line
15723 if (a) the window to its side is being redone and
15724 (b) we do a frame-based redisplay. This is a consequence
15725 of how inverted lines are drawn in frame-based redisplay. */
15726 || (!just_this_one_p
15727 && !FRAME_WINDOW_P (f)
15728 && !WINDOW_FULL_WIDTH_P (w))
15729 /* Line number to display. */
15730 || INTEGERP (w->base_line_pos)
15731 /* Column number is displayed and different from the one displayed. */
15732 || (!NILP (w->column_number_displayed)
15733 && (XFASTINT (w->column_number_displayed) != current_column ())))
15734 /* This means that the window has a mode line. */
15735 && (WINDOW_WANTS_MODELINE_P (w)
15736 || WINDOW_WANTS_HEADER_LINE_P (w)))
15737 {
15738 display_mode_lines (w);
15739
15740 /* If mode line height has changed, arrange for a thorough
15741 immediate redisplay using the correct mode line height. */
15742 if (WINDOW_WANTS_MODELINE_P (w)
15743 && CURRENT_MODE_LINE_HEIGHT (w) != DESIRED_MODE_LINE_HEIGHT (w))
15744 {
15745 fonts_changed_p = 1;
15746 MATRIX_MODE_LINE_ROW (w->current_matrix)->height
15747 = DESIRED_MODE_LINE_HEIGHT (w);
15748 }
15749
15750 /* If header line height has changed, arrange for a thorough
15751 immediate redisplay using the correct header line height. */
15752 if (WINDOW_WANTS_HEADER_LINE_P (w)
15753 && CURRENT_HEADER_LINE_HEIGHT (w) != DESIRED_HEADER_LINE_HEIGHT (w))
15754 {
15755 fonts_changed_p = 1;
15756 MATRIX_HEADER_LINE_ROW (w->current_matrix)->height
15757 = DESIRED_HEADER_LINE_HEIGHT (w);
15758 }
15759
15760 if (fonts_changed_p)
15761 goto need_larger_matrices;
15762 }
15763
15764 if (!line_number_displayed
15765 && !BUFFERP (w->base_line_pos))
15766 {
15767 w->base_line_pos = Qnil;
15768 w->base_line_number = Qnil;
15769 }
15770
15771 finish_menu_bars:
15772
15773 /* When we reach a frame's selected window, redo the frame's menu bar. */
15774 if (update_mode_line
15775 && EQ (FRAME_SELECTED_WINDOW (f), window))
15776 {
15777 int redisplay_menu_p = 0;
15778
15779 if (FRAME_WINDOW_P (f))
15780 {
15781 #if defined (USE_X_TOOLKIT) || defined (HAVE_NTGUI) \
15782 || defined (HAVE_NS) || defined (USE_GTK)
15783 redisplay_menu_p = FRAME_EXTERNAL_MENU_BAR (f);
15784 #else
15785 redisplay_menu_p = FRAME_MENU_BAR_LINES (f) > 0;
15786 #endif
15787 }
15788 else
15789 redisplay_menu_p = FRAME_MENU_BAR_LINES (f) > 0;
15790
15791 if (redisplay_menu_p)
15792 display_menu_bar (w);
15793
15794 #ifdef HAVE_WINDOW_SYSTEM
15795 if (FRAME_WINDOW_P (f))
15796 {
15797 #if defined (USE_GTK) || defined (HAVE_NS)
15798 if (FRAME_EXTERNAL_TOOL_BAR (f))
15799 redisplay_tool_bar (f);
15800 #else
15801 if (WINDOWP (f->tool_bar_window)
15802 && (FRAME_TOOL_BAR_LINES (f) > 0
15803 || !NILP (Vauto_resize_tool_bars))
15804 && redisplay_tool_bar (f))
15805 ignore_mouse_drag_p = 1;
15806 #endif
15807 }
15808 #endif
15809 }
15810
15811 #ifdef HAVE_WINDOW_SYSTEM
15812 if (FRAME_WINDOW_P (f)
15813 && update_window_fringes (w, (just_this_one_p
15814 || (!used_current_matrix_p && !overlay_arrow_seen)
15815 || w->pseudo_window_p)))
15816 {
15817 update_begin (f);
15818 BLOCK_INPUT;
15819 if (draw_window_fringes (w, 1))
15820 x_draw_vertical_border (w);
15821 UNBLOCK_INPUT;
15822 update_end (f);
15823 }
15824 #endif /* HAVE_WINDOW_SYSTEM */
15825
15826 /* We go to this label, with fonts_changed_p nonzero,
15827 if it is necessary to try again using larger glyph matrices.
15828 We have to redeem the scroll bar even in this case,
15829 because the loop in redisplay_internal expects that. */
15830 need_larger_matrices:
15831 ;
15832 finish_scroll_bars:
15833
15834 if (WINDOW_HAS_VERTICAL_SCROLL_BAR (w))
15835 {
15836 /* Set the thumb's position and size. */
15837 set_vertical_scroll_bar (w);
15838
15839 /* Note that we actually used the scroll bar attached to this
15840 window, so it shouldn't be deleted at the end of redisplay. */
15841 if (FRAME_TERMINAL (f)->redeem_scroll_bar_hook)
15842 (*FRAME_TERMINAL (f)->redeem_scroll_bar_hook) (w);
15843 }
15844
15845 /* Restore current_buffer and value of point in it. The window
15846 update may have changed the buffer, so first make sure `opoint'
15847 is still valid (Bug#6177). */
15848 if (CHARPOS (opoint) < BEGV)
15849 TEMP_SET_PT_BOTH (BEGV, BEGV_BYTE);
15850 else if (CHARPOS (opoint) > ZV)
15851 TEMP_SET_PT_BOTH (Z, Z_BYTE);
15852 else
15853 TEMP_SET_PT_BOTH (CHARPOS (opoint), BYTEPOS (opoint));
15854
15855 set_buffer_internal_1 (old);
15856 /* Avoid an abort in TEMP_SET_PT_BOTH if the buffer has become
15857 shorter. This can be caused by log truncation in *Messages*. */
15858 if (CHARPOS (lpoint) <= ZV)
15859 TEMP_SET_PT_BOTH (CHARPOS (lpoint), BYTEPOS (lpoint));
15860
15861 unbind_to (count, Qnil);
15862 }
15863
15864
15865 /* Build the complete desired matrix of WINDOW with a window start
15866 buffer position POS.
15867
15868 Value is 1 if successful. It is zero if fonts were loaded during
15869 redisplay which makes re-adjusting glyph matrices necessary, and -1
15870 if point would appear in the scroll margins.
15871 (We check the former only if TRY_WINDOW_IGNORE_FONTS_CHANGE is
15872 unset in FLAGS, and the latter only if TRY_WINDOW_CHECK_MARGINS is
15873 set in FLAGS.) */
15874
15875 int
15876 try_window (Lisp_Object window, struct text_pos pos, int flags)
15877 {
15878 struct window *w = XWINDOW (window);
15879 struct it it;
15880 struct glyph_row *last_text_row = NULL;
15881 struct frame *f = XFRAME (w->frame);
15882
15883 /* Make POS the new window start. */
15884 set_marker_both (w->start, Qnil, CHARPOS (pos), BYTEPOS (pos));
15885
15886 /* Mark cursor position as unknown. No overlay arrow seen. */
15887 w->cursor.vpos = -1;
15888 overlay_arrow_seen = 0;
15889
15890 /* Initialize iterator and info to start at POS. */
15891 start_display (&it, w, pos);
15892
15893 /* Display all lines of W. */
15894 while (it.current_y < it.last_visible_y)
15895 {
15896 if (display_line (&it))
15897 last_text_row = it.glyph_row - 1;
15898 if (fonts_changed_p && !(flags & TRY_WINDOW_IGNORE_FONTS_CHANGE))
15899 return 0;
15900 }
15901
15902 /* Don't let the cursor end in the scroll margins. */
15903 if ((flags & TRY_WINDOW_CHECK_MARGINS)
15904 && !MINI_WINDOW_P (w))
15905 {
15906 int this_scroll_margin;
15907
15908 if (scroll_margin > 0)
15909 {
15910 this_scroll_margin = min (scroll_margin, WINDOW_TOTAL_LINES (w) / 4);
15911 this_scroll_margin *= FRAME_LINE_HEIGHT (f);
15912 }
15913 else
15914 this_scroll_margin = 0;
15915
15916 if ((w->cursor.y >= 0 /* not vscrolled */
15917 && w->cursor.y < this_scroll_margin
15918 && CHARPOS (pos) > BEGV
15919 && IT_CHARPOS (it) < ZV)
15920 /* rms: considering make_cursor_line_fully_visible_p here
15921 seems to give wrong results. We don't want to recenter
15922 when the last line is partly visible, we want to allow
15923 that case to be handled in the usual way. */
15924 || w->cursor.y > it.last_visible_y - this_scroll_margin - 1)
15925 {
15926 w->cursor.vpos = -1;
15927 clear_glyph_matrix (w->desired_matrix);
15928 return -1;
15929 }
15930 }
15931
15932 /* If bottom moved off end of frame, change mode line percentage. */
15933 if (XFASTINT (w->window_end_pos) <= 0
15934 && Z != IT_CHARPOS (it))
15935 w->update_mode_line = Qt;
15936
15937 /* Set window_end_pos to the offset of the last character displayed
15938 on the window from the end of current_buffer. Set
15939 window_end_vpos to its row number. */
15940 if (last_text_row)
15941 {
15942 xassert (MATRIX_ROW_DISPLAYS_TEXT_P (last_text_row));
15943 w->window_end_bytepos
15944 = Z_BYTE - MATRIX_ROW_END_BYTEPOS (last_text_row);
15945 w->window_end_pos
15946 = make_number (Z - MATRIX_ROW_END_CHARPOS (last_text_row));
15947 w->window_end_vpos
15948 = make_number (MATRIX_ROW_VPOS (last_text_row, w->desired_matrix));
15949 xassert (MATRIX_ROW (w->desired_matrix, XFASTINT (w->window_end_vpos))
15950 ->displays_text_p);
15951 }
15952 else
15953 {
15954 w->window_end_bytepos = Z_BYTE - ZV_BYTE;
15955 w->window_end_pos = make_number (Z - ZV);
15956 w->window_end_vpos = make_number (0);
15957 }
15958
15959 /* But that is not valid info until redisplay finishes. */
15960 w->window_end_valid = Qnil;
15961 return 1;
15962 }
15963
15964
15965 \f
15966 /************************************************************************
15967 Window redisplay reusing current matrix when buffer has not changed
15968 ************************************************************************/
15969
15970 /* Try redisplay of window W showing an unchanged buffer with a
15971 different window start than the last time it was displayed by
15972 reusing its current matrix. Value is non-zero if successful.
15973 W->start is the new window start. */
15974
15975 static int
15976 try_window_reusing_current_matrix (struct window *w)
15977 {
15978 struct frame *f = XFRAME (w->frame);
15979 struct glyph_row *bottom_row;
15980 struct it it;
15981 struct run run;
15982 struct text_pos start, new_start;
15983 int nrows_scrolled, i;
15984 struct glyph_row *last_text_row;
15985 struct glyph_row *last_reused_text_row;
15986 struct glyph_row *start_row;
15987 int start_vpos, min_y, max_y;
15988
15989 #if GLYPH_DEBUG
15990 if (inhibit_try_window_reusing)
15991 return 0;
15992 #endif
15993
15994 if (/* This function doesn't handle terminal frames. */
15995 !FRAME_WINDOW_P (f)
15996 /* Don't try to reuse the display if windows have been split
15997 or such. */
15998 || windows_or_buffers_changed
15999 || cursor_type_changed)
16000 return 0;
16001
16002 /* Can't do this if region may have changed. */
16003 if ((!NILP (Vtransient_mark_mode)
16004 && !NILP (BVAR (current_buffer, mark_active)))
16005 || !NILP (w->region_showing)
16006 || !NILP (Vshow_trailing_whitespace))
16007 return 0;
16008
16009 /* If top-line visibility has changed, give up. */
16010 if (WINDOW_WANTS_HEADER_LINE_P (w)
16011 != MATRIX_HEADER_LINE_ROW (w->current_matrix)->mode_line_p)
16012 return 0;
16013
16014 /* Give up if old or new display is scrolled vertically. We could
16015 make this function handle this, but right now it doesn't. */
16016 start_row = MATRIX_FIRST_TEXT_ROW (w->current_matrix);
16017 if (w->vscroll || MATRIX_ROW_PARTIALLY_VISIBLE_P (w, start_row))
16018 return 0;
16019
16020 /* The variable new_start now holds the new window start. The old
16021 start `start' can be determined from the current matrix. */
16022 SET_TEXT_POS_FROM_MARKER (new_start, w->start);
16023 start = start_row->minpos;
16024 start_vpos = MATRIX_ROW_VPOS (start_row, w->current_matrix);
16025
16026 /* Clear the desired matrix for the display below. */
16027 clear_glyph_matrix (w->desired_matrix);
16028
16029 if (CHARPOS (new_start) <= CHARPOS (start))
16030 {
16031 /* Don't use this method if the display starts with an ellipsis
16032 displayed for invisible text. It's not easy to handle that case
16033 below, and it's certainly not worth the effort since this is
16034 not a frequent case. */
16035 if (in_ellipses_for_invisible_text_p (&start_row->start, w))
16036 return 0;
16037
16038 IF_DEBUG (debug_method_add (w, "twu1"));
16039
16040 /* Display up to a row that can be reused. The variable
16041 last_text_row is set to the last row displayed that displays
16042 text. Note that it.vpos == 0 if or if not there is a
16043 header-line; it's not the same as the MATRIX_ROW_VPOS! */
16044 start_display (&it, w, new_start);
16045 w->cursor.vpos = -1;
16046 last_text_row = last_reused_text_row = NULL;
16047
16048 while (it.current_y < it.last_visible_y
16049 && !fonts_changed_p)
16050 {
16051 /* If we have reached into the characters in the START row,
16052 that means the line boundaries have changed. So we
16053 can't start copying with the row START. Maybe it will
16054 work to start copying with the following row. */
16055 while (IT_CHARPOS (it) > CHARPOS (start))
16056 {
16057 /* Advance to the next row as the "start". */
16058 start_row++;
16059 start = start_row->minpos;
16060 /* If there are no more rows to try, or just one, give up. */
16061 if (start_row == MATRIX_MODE_LINE_ROW (w->current_matrix) - 1
16062 || w->vscroll || MATRIX_ROW_PARTIALLY_VISIBLE_P (w, start_row)
16063 || CHARPOS (start) == ZV)
16064 {
16065 clear_glyph_matrix (w->desired_matrix);
16066 return 0;
16067 }
16068
16069 start_vpos = MATRIX_ROW_VPOS (start_row, w->current_matrix);
16070 }
16071 /* If we have reached alignment,
16072 we can copy the rest of the rows. */
16073 if (IT_CHARPOS (it) == CHARPOS (start))
16074 break;
16075
16076 if (display_line (&it))
16077 last_text_row = it.glyph_row - 1;
16078 }
16079
16080 /* A value of current_y < last_visible_y means that we stopped
16081 at the previous window start, which in turn means that we
16082 have at least one reusable row. */
16083 if (it.current_y < it.last_visible_y)
16084 {
16085 struct glyph_row *row;
16086
16087 /* IT.vpos always starts from 0; it counts text lines. */
16088 nrows_scrolled = it.vpos - (start_row - MATRIX_FIRST_TEXT_ROW (w->current_matrix));
16089
16090 /* Find PT if not already found in the lines displayed. */
16091 if (w->cursor.vpos < 0)
16092 {
16093 int dy = it.current_y - start_row->y;
16094
16095 row = MATRIX_FIRST_TEXT_ROW (w->current_matrix);
16096 row = row_containing_pos (w, PT, row, NULL, dy);
16097 if (row)
16098 set_cursor_from_row (w, row, w->current_matrix, 0, 0,
16099 dy, nrows_scrolled);
16100 else
16101 {
16102 clear_glyph_matrix (w->desired_matrix);
16103 return 0;
16104 }
16105 }
16106
16107 /* Scroll the display. Do it before the current matrix is
16108 changed. The problem here is that update has not yet
16109 run, i.e. part of the current matrix is not up to date.
16110 scroll_run_hook will clear the cursor, and use the
16111 current matrix to get the height of the row the cursor is
16112 in. */
16113 run.current_y = start_row->y;
16114 run.desired_y = it.current_y;
16115 run.height = it.last_visible_y - it.current_y;
16116
16117 if (run.height > 0 && run.current_y != run.desired_y)
16118 {
16119 update_begin (f);
16120 FRAME_RIF (f)->update_window_begin_hook (w);
16121 FRAME_RIF (f)->clear_window_mouse_face (w);
16122 FRAME_RIF (f)->scroll_run_hook (w, &run);
16123 FRAME_RIF (f)->update_window_end_hook (w, 0, 0);
16124 update_end (f);
16125 }
16126
16127 /* Shift current matrix down by nrows_scrolled lines. */
16128 bottom_row = MATRIX_BOTTOM_TEXT_ROW (w->current_matrix, w);
16129 rotate_matrix (w->current_matrix,
16130 start_vpos,
16131 MATRIX_ROW_VPOS (bottom_row, w->current_matrix),
16132 nrows_scrolled);
16133
16134 /* Disable lines that must be updated. */
16135 for (i = 0; i < nrows_scrolled; ++i)
16136 (start_row + i)->enabled_p = 0;
16137
16138 /* Re-compute Y positions. */
16139 min_y = WINDOW_HEADER_LINE_HEIGHT (w);
16140 max_y = it.last_visible_y;
16141 for (row = start_row + nrows_scrolled;
16142 row < bottom_row;
16143 ++row)
16144 {
16145 row->y = it.current_y;
16146 row->visible_height = row->height;
16147
16148 if (row->y < min_y)
16149 row->visible_height -= min_y - row->y;
16150 if (row->y + row->height > max_y)
16151 row->visible_height -= row->y + row->height - max_y;
16152 if (row->fringe_bitmap_periodic_p)
16153 row->redraw_fringe_bitmaps_p = 1;
16154
16155 it.current_y += row->height;
16156
16157 if (MATRIX_ROW_DISPLAYS_TEXT_P (row))
16158 last_reused_text_row = row;
16159 if (MATRIX_ROW_BOTTOM_Y (row) >= it.last_visible_y)
16160 break;
16161 }
16162
16163 /* Disable lines in the current matrix which are now
16164 below the window. */
16165 for (++row; row < bottom_row; ++row)
16166 row->enabled_p = row->mode_line_p = 0;
16167 }
16168
16169 /* Update window_end_pos etc.; last_reused_text_row is the last
16170 reused row from the current matrix containing text, if any.
16171 The value of last_text_row is the last displayed line
16172 containing text. */
16173 if (last_reused_text_row)
16174 {
16175 w->window_end_bytepos
16176 = Z_BYTE - MATRIX_ROW_END_BYTEPOS (last_reused_text_row);
16177 w->window_end_pos
16178 = make_number (Z - MATRIX_ROW_END_CHARPOS (last_reused_text_row));
16179 w->window_end_vpos
16180 = make_number (MATRIX_ROW_VPOS (last_reused_text_row,
16181 w->current_matrix));
16182 }
16183 else if (last_text_row)
16184 {
16185 w->window_end_bytepos
16186 = Z_BYTE - MATRIX_ROW_END_BYTEPOS (last_text_row);
16187 w->window_end_pos
16188 = make_number (Z - MATRIX_ROW_END_CHARPOS (last_text_row));
16189 w->window_end_vpos
16190 = make_number (MATRIX_ROW_VPOS (last_text_row, w->desired_matrix));
16191 }
16192 else
16193 {
16194 /* This window must be completely empty. */
16195 w->window_end_bytepos = Z_BYTE - ZV_BYTE;
16196 w->window_end_pos = make_number (Z - ZV);
16197 w->window_end_vpos = make_number (0);
16198 }
16199 w->window_end_valid = Qnil;
16200
16201 /* Update hint: don't try scrolling again in update_window. */
16202 w->desired_matrix->no_scrolling_p = 1;
16203
16204 #if GLYPH_DEBUG
16205 debug_method_add (w, "try_window_reusing_current_matrix 1");
16206 #endif
16207 return 1;
16208 }
16209 else if (CHARPOS (new_start) > CHARPOS (start))
16210 {
16211 struct glyph_row *pt_row, *row;
16212 struct glyph_row *first_reusable_row;
16213 struct glyph_row *first_row_to_display;
16214 int dy;
16215 int yb = window_text_bottom_y (w);
16216
16217 /* Find the row starting at new_start, if there is one. Don't
16218 reuse a partially visible line at the end. */
16219 first_reusable_row = start_row;
16220 while (first_reusable_row->enabled_p
16221 && MATRIX_ROW_BOTTOM_Y (first_reusable_row) < yb
16222 && (MATRIX_ROW_START_CHARPOS (first_reusable_row)
16223 < CHARPOS (new_start)))
16224 ++first_reusable_row;
16225
16226 /* Give up if there is no row to reuse. */
16227 if (MATRIX_ROW_BOTTOM_Y (first_reusable_row) >= yb
16228 || !first_reusable_row->enabled_p
16229 || (MATRIX_ROW_START_CHARPOS (first_reusable_row)
16230 != CHARPOS (new_start)))
16231 return 0;
16232
16233 /* We can reuse fully visible rows beginning with
16234 first_reusable_row to the end of the window. Set
16235 first_row_to_display to the first row that cannot be reused.
16236 Set pt_row to the row containing point, if there is any. */
16237 pt_row = NULL;
16238 for (first_row_to_display = first_reusable_row;
16239 MATRIX_ROW_BOTTOM_Y (first_row_to_display) < yb;
16240 ++first_row_to_display)
16241 {
16242 if (PT >= MATRIX_ROW_START_CHARPOS (first_row_to_display)
16243 && PT < MATRIX_ROW_END_CHARPOS (first_row_to_display))
16244 pt_row = first_row_to_display;
16245 }
16246
16247 /* Start displaying at the start of first_row_to_display. */
16248 xassert (first_row_to_display->y < yb);
16249 init_to_row_start (&it, w, first_row_to_display);
16250
16251 nrows_scrolled = (MATRIX_ROW_VPOS (first_reusable_row, w->current_matrix)
16252 - start_vpos);
16253 it.vpos = (MATRIX_ROW_VPOS (first_row_to_display, w->current_matrix)
16254 - nrows_scrolled);
16255 it.current_y = (first_row_to_display->y - first_reusable_row->y
16256 + WINDOW_HEADER_LINE_HEIGHT (w));
16257
16258 /* Display lines beginning with first_row_to_display in the
16259 desired matrix. Set last_text_row to the last row displayed
16260 that displays text. */
16261 it.glyph_row = MATRIX_ROW (w->desired_matrix, it.vpos);
16262 if (pt_row == NULL)
16263 w->cursor.vpos = -1;
16264 last_text_row = NULL;
16265 while (it.current_y < it.last_visible_y && !fonts_changed_p)
16266 if (display_line (&it))
16267 last_text_row = it.glyph_row - 1;
16268
16269 /* If point is in a reused row, adjust y and vpos of the cursor
16270 position. */
16271 if (pt_row)
16272 {
16273 w->cursor.vpos -= nrows_scrolled;
16274 w->cursor.y -= first_reusable_row->y - start_row->y;
16275 }
16276
16277 /* Give up if point isn't in a row displayed or reused. (This
16278 also handles the case where w->cursor.vpos < nrows_scrolled
16279 after the calls to display_line, which can happen with scroll
16280 margins. See bug#1295.) */
16281 if (w->cursor.vpos < 0)
16282 {
16283 clear_glyph_matrix (w->desired_matrix);
16284 return 0;
16285 }
16286
16287 /* Scroll the display. */
16288 run.current_y = first_reusable_row->y;
16289 run.desired_y = WINDOW_HEADER_LINE_HEIGHT (w);
16290 run.height = it.last_visible_y - run.current_y;
16291 dy = run.current_y - run.desired_y;
16292
16293 if (run.height)
16294 {
16295 update_begin (f);
16296 FRAME_RIF (f)->update_window_begin_hook (w);
16297 FRAME_RIF (f)->clear_window_mouse_face (w);
16298 FRAME_RIF (f)->scroll_run_hook (w, &run);
16299 FRAME_RIF (f)->update_window_end_hook (w, 0, 0);
16300 update_end (f);
16301 }
16302
16303 /* Adjust Y positions of reused rows. */
16304 bottom_row = MATRIX_BOTTOM_TEXT_ROW (w->current_matrix, w);
16305 min_y = WINDOW_HEADER_LINE_HEIGHT (w);
16306 max_y = it.last_visible_y;
16307 for (row = first_reusable_row; row < first_row_to_display; ++row)
16308 {
16309 row->y -= dy;
16310 row->visible_height = row->height;
16311 if (row->y < min_y)
16312 row->visible_height -= min_y - row->y;
16313 if (row->y + row->height > max_y)
16314 row->visible_height -= row->y + row->height - max_y;
16315 if (row->fringe_bitmap_periodic_p)
16316 row->redraw_fringe_bitmaps_p = 1;
16317 }
16318
16319 /* Scroll the current matrix. */
16320 xassert (nrows_scrolled > 0);
16321 rotate_matrix (w->current_matrix,
16322 start_vpos,
16323 MATRIX_ROW_VPOS (bottom_row, w->current_matrix),
16324 -nrows_scrolled);
16325
16326 /* Disable rows not reused. */
16327 for (row -= nrows_scrolled; row < bottom_row; ++row)
16328 row->enabled_p = 0;
16329
16330 /* Point may have moved to a different line, so we cannot assume that
16331 the previous cursor position is valid; locate the correct row. */
16332 if (pt_row)
16333 {
16334 for (row = MATRIX_ROW (w->current_matrix, w->cursor.vpos);
16335 row < bottom_row && PT >= MATRIX_ROW_END_CHARPOS (row);
16336 row++)
16337 {
16338 w->cursor.vpos++;
16339 w->cursor.y = row->y;
16340 }
16341 if (row < bottom_row)
16342 {
16343 struct glyph *glyph = row->glyphs[TEXT_AREA] + w->cursor.hpos;
16344 struct glyph *end = row->glyphs[TEXT_AREA] + row->used[TEXT_AREA];
16345
16346 /* Can't use this optimization with bidi-reordered glyph
16347 rows, unless cursor is already at point. */
16348 if (!NILP (BVAR (XBUFFER (w->buffer), bidi_display_reordering)))
16349 {
16350 if (!(w->cursor.hpos >= 0
16351 && w->cursor.hpos < row->used[TEXT_AREA]
16352 && BUFFERP (glyph->object)
16353 && glyph->charpos == PT))
16354 return 0;
16355 }
16356 else
16357 for (; glyph < end
16358 && (!BUFFERP (glyph->object)
16359 || glyph->charpos < PT);
16360 glyph++)
16361 {
16362 w->cursor.hpos++;
16363 w->cursor.x += glyph->pixel_width;
16364 }
16365 }
16366 }
16367
16368 /* Adjust window end. A null value of last_text_row means that
16369 the window end is in reused rows which in turn means that
16370 only its vpos can have changed. */
16371 if (last_text_row)
16372 {
16373 w->window_end_bytepos
16374 = Z_BYTE - MATRIX_ROW_END_BYTEPOS (last_text_row);
16375 w->window_end_pos
16376 = make_number (Z - MATRIX_ROW_END_CHARPOS (last_text_row));
16377 w->window_end_vpos
16378 = make_number (MATRIX_ROW_VPOS (last_text_row, w->desired_matrix));
16379 }
16380 else
16381 {
16382 w->window_end_vpos
16383 = make_number (XFASTINT (w->window_end_vpos) - nrows_scrolled);
16384 }
16385
16386 w->window_end_valid = Qnil;
16387 w->desired_matrix->no_scrolling_p = 1;
16388
16389 #if GLYPH_DEBUG
16390 debug_method_add (w, "try_window_reusing_current_matrix 2");
16391 #endif
16392 return 1;
16393 }
16394
16395 return 0;
16396 }
16397
16398
16399 \f
16400 /************************************************************************
16401 Window redisplay reusing current matrix when buffer has changed
16402 ************************************************************************/
16403
16404 static struct glyph_row *find_last_unchanged_at_beg_row (struct window *);
16405 static struct glyph_row *find_first_unchanged_at_end_row (struct window *,
16406 EMACS_INT *, EMACS_INT *);
16407 static struct glyph_row *
16408 find_last_row_displaying_text (struct glyph_matrix *, struct it *,
16409 struct glyph_row *);
16410
16411
16412 /* Return the last row in MATRIX displaying text. If row START is
16413 non-null, start searching with that row. IT gives the dimensions
16414 of the display. Value is null if matrix is empty; otherwise it is
16415 a pointer to the row found. */
16416
16417 static struct glyph_row *
16418 find_last_row_displaying_text (struct glyph_matrix *matrix, struct it *it,
16419 struct glyph_row *start)
16420 {
16421 struct glyph_row *row, *row_found;
16422
16423 /* Set row_found to the last row in IT->w's current matrix
16424 displaying text. The loop looks funny but think of partially
16425 visible lines. */
16426 row_found = NULL;
16427 row = start ? start : MATRIX_FIRST_TEXT_ROW (matrix);
16428 while (MATRIX_ROW_DISPLAYS_TEXT_P (row))
16429 {
16430 xassert (row->enabled_p);
16431 row_found = row;
16432 if (MATRIX_ROW_BOTTOM_Y (row) >= it->last_visible_y)
16433 break;
16434 ++row;
16435 }
16436
16437 return row_found;
16438 }
16439
16440
16441 /* Return the last row in the current matrix of W that is not affected
16442 by changes at the start of current_buffer that occurred since W's
16443 current matrix was built. Value is null if no such row exists.
16444
16445 BEG_UNCHANGED us the number of characters unchanged at the start of
16446 current_buffer. BEG + BEG_UNCHANGED is the buffer position of the
16447 first changed character in current_buffer. Characters at positions <
16448 BEG + BEG_UNCHANGED are at the same buffer positions as they were
16449 when the current matrix was built. */
16450
16451 static struct glyph_row *
16452 find_last_unchanged_at_beg_row (struct window *w)
16453 {
16454 EMACS_INT first_changed_pos = BEG + BEG_UNCHANGED;
16455 struct glyph_row *row;
16456 struct glyph_row *row_found = NULL;
16457 int yb = window_text_bottom_y (w);
16458
16459 /* Find the last row displaying unchanged text. */
16460 for (row = MATRIX_FIRST_TEXT_ROW (w->current_matrix);
16461 MATRIX_ROW_DISPLAYS_TEXT_P (row)
16462 && MATRIX_ROW_START_CHARPOS (row) < first_changed_pos;
16463 ++row)
16464 {
16465 if (/* If row ends before first_changed_pos, it is unchanged,
16466 except in some case. */
16467 MATRIX_ROW_END_CHARPOS (row) <= first_changed_pos
16468 /* When row ends in ZV and we write at ZV it is not
16469 unchanged. */
16470 && !row->ends_at_zv_p
16471 /* When first_changed_pos is the end of a continued line,
16472 row is not unchanged because it may be no longer
16473 continued. */
16474 && !(MATRIX_ROW_END_CHARPOS (row) == first_changed_pos
16475 && (row->continued_p
16476 || row->exact_window_width_line_p)))
16477 row_found = row;
16478
16479 /* Stop if last visible row. */
16480 if (MATRIX_ROW_BOTTOM_Y (row) >= yb)
16481 break;
16482 }
16483
16484 return row_found;
16485 }
16486
16487
16488 /* Find the first glyph row in the current matrix of W that is not
16489 affected by changes at the end of current_buffer since the
16490 time W's current matrix was built.
16491
16492 Return in *DELTA the number of chars by which buffer positions in
16493 unchanged text at the end of current_buffer must be adjusted.
16494
16495 Return in *DELTA_BYTES the corresponding number of bytes.
16496
16497 Value is null if no such row exists, i.e. all rows are affected by
16498 changes. */
16499
16500 static struct glyph_row *
16501 find_first_unchanged_at_end_row (struct window *w,
16502 EMACS_INT *delta, EMACS_INT *delta_bytes)
16503 {
16504 struct glyph_row *row;
16505 struct glyph_row *row_found = NULL;
16506
16507 *delta = *delta_bytes = 0;
16508
16509 /* Display must not have been paused, otherwise the current matrix
16510 is not up to date. */
16511 eassert (!NILP (w->window_end_valid));
16512
16513 /* A value of window_end_pos >= END_UNCHANGED means that the window
16514 end is in the range of changed text. If so, there is no
16515 unchanged row at the end of W's current matrix. */
16516 if (XFASTINT (w->window_end_pos) >= END_UNCHANGED)
16517 return NULL;
16518
16519 /* Set row to the last row in W's current matrix displaying text. */
16520 row = MATRIX_ROW (w->current_matrix, XFASTINT (w->window_end_vpos));
16521
16522 /* If matrix is entirely empty, no unchanged row exists. */
16523 if (MATRIX_ROW_DISPLAYS_TEXT_P (row))
16524 {
16525 /* The value of row is the last glyph row in the matrix having a
16526 meaningful buffer position in it. The end position of row
16527 corresponds to window_end_pos. This allows us to translate
16528 buffer positions in the current matrix to current buffer
16529 positions for characters not in changed text. */
16530 EMACS_INT Z_old =
16531 MATRIX_ROW_END_CHARPOS (row) + XFASTINT (w->window_end_pos);
16532 EMACS_INT Z_BYTE_old =
16533 MATRIX_ROW_END_BYTEPOS (row) + w->window_end_bytepos;
16534 EMACS_INT last_unchanged_pos, last_unchanged_pos_old;
16535 struct glyph_row *first_text_row
16536 = MATRIX_FIRST_TEXT_ROW (w->current_matrix);
16537
16538 *delta = Z - Z_old;
16539 *delta_bytes = Z_BYTE - Z_BYTE_old;
16540
16541 /* Set last_unchanged_pos to the buffer position of the last
16542 character in the buffer that has not been changed. Z is the
16543 index + 1 of the last character in current_buffer, i.e. by
16544 subtracting END_UNCHANGED we get the index of the last
16545 unchanged character, and we have to add BEG to get its buffer
16546 position. */
16547 last_unchanged_pos = Z - END_UNCHANGED + BEG;
16548 last_unchanged_pos_old = last_unchanged_pos - *delta;
16549
16550 /* Search backward from ROW for a row displaying a line that
16551 starts at a minimum position >= last_unchanged_pos_old. */
16552 for (; row > first_text_row; --row)
16553 {
16554 /* This used to abort, but it can happen.
16555 It is ok to just stop the search instead here. KFS. */
16556 if (!row->enabled_p || !MATRIX_ROW_DISPLAYS_TEXT_P (row))
16557 break;
16558
16559 if (MATRIX_ROW_START_CHARPOS (row) >= last_unchanged_pos_old)
16560 row_found = row;
16561 }
16562 }
16563
16564 eassert (!row_found || MATRIX_ROW_DISPLAYS_TEXT_P (row_found));
16565
16566 return row_found;
16567 }
16568
16569
16570 /* Make sure that glyph rows in the current matrix of window W
16571 reference the same glyph memory as corresponding rows in the
16572 frame's frame matrix. This function is called after scrolling W's
16573 current matrix on a terminal frame in try_window_id and
16574 try_window_reusing_current_matrix. */
16575
16576 static void
16577 sync_frame_with_window_matrix_rows (struct window *w)
16578 {
16579 struct frame *f = XFRAME (w->frame);
16580 struct glyph_row *window_row, *window_row_end, *frame_row;
16581
16582 /* Preconditions: W must be a leaf window and full-width. Its frame
16583 must have a frame matrix. */
16584 xassert (NILP (w->hchild) && NILP (w->vchild));
16585 xassert (WINDOW_FULL_WIDTH_P (w));
16586 xassert (!FRAME_WINDOW_P (f));
16587
16588 /* If W is a full-width window, glyph pointers in W's current matrix
16589 have, by definition, to be the same as glyph pointers in the
16590 corresponding frame matrix. Note that frame matrices have no
16591 marginal areas (see build_frame_matrix). */
16592 window_row = w->current_matrix->rows;
16593 window_row_end = window_row + w->current_matrix->nrows;
16594 frame_row = f->current_matrix->rows + WINDOW_TOP_EDGE_LINE (w);
16595 while (window_row < window_row_end)
16596 {
16597 struct glyph *start = window_row->glyphs[LEFT_MARGIN_AREA];
16598 struct glyph *end = window_row->glyphs[LAST_AREA];
16599
16600 frame_row->glyphs[LEFT_MARGIN_AREA] = start;
16601 frame_row->glyphs[TEXT_AREA] = start;
16602 frame_row->glyphs[RIGHT_MARGIN_AREA] = end;
16603 frame_row->glyphs[LAST_AREA] = end;
16604
16605 /* Disable frame rows whose corresponding window rows have
16606 been disabled in try_window_id. */
16607 if (!window_row->enabled_p)
16608 frame_row->enabled_p = 0;
16609
16610 ++window_row, ++frame_row;
16611 }
16612 }
16613
16614
16615 /* Find the glyph row in window W containing CHARPOS. Consider all
16616 rows between START and END (not inclusive). END null means search
16617 all rows to the end of the display area of W. Value is the row
16618 containing CHARPOS or null. */
16619
16620 struct glyph_row *
16621 row_containing_pos (struct window *w, EMACS_INT charpos,
16622 struct glyph_row *start, struct glyph_row *end, int dy)
16623 {
16624 struct glyph_row *row = start;
16625 struct glyph_row *best_row = NULL;
16626 EMACS_INT mindif = BUF_ZV (XBUFFER (w->buffer)) + 1;
16627 int last_y;
16628
16629 /* If we happen to start on a header-line, skip that. */
16630 if (row->mode_line_p)
16631 ++row;
16632
16633 if ((end && row >= end) || !row->enabled_p)
16634 return NULL;
16635
16636 last_y = window_text_bottom_y (w) - dy;
16637
16638 while (1)
16639 {
16640 /* Give up if we have gone too far. */
16641 if (end && row >= end)
16642 return NULL;
16643 /* This formerly returned if they were equal.
16644 I think that both quantities are of a "last plus one" type;
16645 if so, when they are equal, the row is within the screen. -- rms. */
16646 if (MATRIX_ROW_BOTTOM_Y (row) > last_y)
16647 return NULL;
16648
16649 /* If it is in this row, return this row. */
16650 if (! (MATRIX_ROW_END_CHARPOS (row) < charpos
16651 || (MATRIX_ROW_END_CHARPOS (row) == charpos
16652 /* The end position of a row equals the start
16653 position of the next row. If CHARPOS is there, we
16654 would rather display it in the next line, except
16655 when this line ends in ZV. */
16656 && !row->ends_at_zv_p
16657 && !MATRIX_ROW_ENDS_IN_MIDDLE_OF_CHAR_P (row)))
16658 && charpos >= MATRIX_ROW_START_CHARPOS (row))
16659 {
16660 struct glyph *g;
16661
16662 if (NILP (BVAR (XBUFFER (w->buffer), bidi_display_reordering))
16663 || (!best_row && !row->continued_p))
16664 return row;
16665 /* In bidi-reordered rows, there could be several rows
16666 occluding point, all of them belonging to the same
16667 continued line. We need to find the row which fits
16668 CHARPOS the best. */
16669 for (g = row->glyphs[TEXT_AREA];
16670 g < row->glyphs[TEXT_AREA] + row->used[TEXT_AREA];
16671 g++)
16672 {
16673 if (!STRINGP (g->object))
16674 {
16675 if (g->charpos > 0 && eabs (g->charpos - charpos) < mindif)
16676 {
16677 mindif = eabs (g->charpos - charpos);
16678 best_row = row;
16679 /* Exact match always wins. */
16680 if (mindif == 0)
16681 return best_row;
16682 }
16683 }
16684 }
16685 }
16686 else if (best_row && !row->continued_p)
16687 return best_row;
16688 ++row;
16689 }
16690 }
16691
16692
16693 /* Try to redisplay window W by reusing its existing display. W's
16694 current matrix must be up to date when this function is called,
16695 i.e. window_end_valid must not be nil.
16696
16697 Value is
16698
16699 1 if display has been updated
16700 0 if otherwise unsuccessful
16701 -1 if redisplay with same window start is known not to succeed
16702
16703 The following steps are performed:
16704
16705 1. Find the last row in the current matrix of W that is not
16706 affected by changes at the start of current_buffer. If no such row
16707 is found, give up.
16708
16709 2. Find the first row in W's current matrix that is not affected by
16710 changes at the end of current_buffer. Maybe there is no such row.
16711
16712 3. Display lines beginning with the row + 1 found in step 1 to the
16713 row found in step 2 or, if step 2 didn't find a row, to the end of
16714 the window.
16715
16716 4. If cursor is not known to appear on the window, give up.
16717
16718 5. If display stopped at the row found in step 2, scroll the
16719 display and current matrix as needed.
16720
16721 6. Maybe display some lines at the end of W, if we must. This can
16722 happen under various circumstances, like a partially visible line
16723 becoming fully visible, or because newly displayed lines are displayed
16724 in smaller font sizes.
16725
16726 7. Update W's window end information. */
16727
16728 static int
16729 try_window_id (struct window *w)
16730 {
16731 struct frame *f = XFRAME (w->frame);
16732 struct glyph_matrix *current_matrix = w->current_matrix;
16733 struct glyph_matrix *desired_matrix = w->desired_matrix;
16734 struct glyph_row *last_unchanged_at_beg_row;
16735 struct glyph_row *first_unchanged_at_end_row;
16736 struct glyph_row *row;
16737 struct glyph_row *bottom_row;
16738 int bottom_vpos;
16739 struct it it;
16740 EMACS_INT delta = 0, delta_bytes = 0, stop_pos;
16741 int dvpos, dy;
16742 struct text_pos start_pos;
16743 struct run run;
16744 int first_unchanged_at_end_vpos = 0;
16745 struct glyph_row *last_text_row, *last_text_row_at_end;
16746 struct text_pos start;
16747 EMACS_INT first_changed_charpos, last_changed_charpos;
16748
16749 #if GLYPH_DEBUG
16750 if (inhibit_try_window_id)
16751 return 0;
16752 #endif
16753
16754 /* This is handy for debugging. */
16755 #if 0
16756 #define GIVE_UP(X) \
16757 do { \
16758 fprintf (stderr, "try_window_id give up %d\n", (X)); \
16759 return 0; \
16760 } while (0)
16761 #else
16762 #define GIVE_UP(X) return 0
16763 #endif
16764
16765 SET_TEXT_POS_FROM_MARKER (start, w->start);
16766
16767 /* Don't use this for mini-windows because these can show
16768 messages and mini-buffers, and we don't handle that here. */
16769 if (MINI_WINDOW_P (w))
16770 GIVE_UP (1);
16771
16772 /* This flag is used to prevent redisplay optimizations. */
16773 if (windows_or_buffers_changed || cursor_type_changed)
16774 GIVE_UP (2);
16775
16776 /* Verify that narrowing has not changed.
16777 Also verify that we were not told to prevent redisplay optimizations.
16778 It would be nice to further
16779 reduce the number of cases where this prevents try_window_id. */
16780 if (current_buffer->clip_changed
16781 || current_buffer->prevent_redisplay_optimizations_p)
16782 GIVE_UP (3);
16783
16784 /* Window must either use window-based redisplay or be full width. */
16785 if (!FRAME_WINDOW_P (f)
16786 && (!FRAME_LINE_INS_DEL_OK (f)
16787 || !WINDOW_FULL_WIDTH_P (w)))
16788 GIVE_UP (4);
16789
16790 /* Give up if point is known NOT to appear in W. */
16791 if (PT < CHARPOS (start))
16792 GIVE_UP (5);
16793
16794 /* Another way to prevent redisplay optimizations. */
16795 if (XFASTINT (w->last_modified) == 0)
16796 GIVE_UP (6);
16797
16798 /* Verify that window is not hscrolled. */
16799 if (XFASTINT (w->hscroll) != 0)
16800 GIVE_UP (7);
16801
16802 /* Verify that display wasn't paused. */
16803 if (NILP (w->window_end_valid))
16804 GIVE_UP (8);
16805
16806 /* Can't use this if highlighting a region because a cursor movement
16807 will do more than just set the cursor. */
16808 if (!NILP (Vtransient_mark_mode)
16809 && !NILP (BVAR (current_buffer, mark_active)))
16810 GIVE_UP (9);
16811
16812 /* Likewise if highlighting trailing whitespace. */
16813 if (!NILP (Vshow_trailing_whitespace))
16814 GIVE_UP (11);
16815
16816 /* Likewise if showing a region. */
16817 if (!NILP (w->region_showing))
16818 GIVE_UP (10);
16819
16820 /* Can't use this if overlay arrow position and/or string have
16821 changed. */
16822 if (overlay_arrows_changed_p ())
16823 GIVE_UP (12);
16824
16825 /* When word-wrap is on, adding a space to the first word of a
16826 wrapped line can change the wrap position, altering the line
16827 above it. It might be worthwhile to handle this more
16828 intelligently, but for now just redisplay from scratch. */
16829 if (!NILP (BVAR (XBUFFER (w->buffer), word_wrap)))
16830 GIVE_UP (21);
16831
16832 /* Under bidi reordering, adding or deleting a character in the
16833 beginning of a paragraph, before the first strong directional
16834 character, can change the base direction of the paragraph (unless
16835 the buffer specifies a fixed paragraph direction), which will
16836 require to redisplay the whole paragraph. It might be worthwhile
16837 to find the paragraph limits and widen the range of redisplayed
16838 lines to that, but for now just give up this optimization and
16839 redisplay from scratch. */
16840 if (!NILP (BVAR (XBUFFER (w->buffer), bidi_display_reordering))
16841 && NILP (BVAR (XBUFFER (w->buffer), bidi_paragraph_direction)))
16842 GIVE_UP (22);
16843
16844 /* Make sure beg_unchanged and end_unchanged are up to date. Do it
16845 only if buffer has really changed. The reason is that the gap is
16846 initially at Z for freshly visited files. The code below would
16847 set end_unchanged to 0 in that case. */
16848 if (MODIFF > SAVE_MODIFF
16849 /* This seems to happen sometimes after saving a buffer. */
16850 || BEG_UNCHANGED + END_UNCHANGED > Z_BYTE)
16851 {
16852 if (GPT - BEG < BEG_UNCHANGED)
16853 BEG_UNCHANGED = GPT - BEG;
16854 if (Z - GPT < END_UNCHANGED)
16855 END_UNCHANGED = Z - GPT;
16856 }
16857
16858 /* The position of the first and last character that has been changed. */
16859 first_changed_charpos = BEG + BEG_UNCHANGED;
16860 last_changed_charpos = Z - END_UNCHANGED;
16861
16862 /* If window starts after a line end, and the last change is in
16863 front of that newline, then changes don't affect the display.
16864 This case happens with stealth-fontification. Note that although
16865 the display is unchanged, glyph positions in the matrix have to
16866 be adjusted, of course. */
16867 row = MATRIX_ROW (w->current_matrix, XFASTINT (w->window_end_vpos));
16868 if (MATRIX_ROW_DISPLAYS_TEXT_P (row)
16869 && ((last_changed_charpos < CHARPOS (start)
16870 && CHARPOS (start) == BEGV)
16871 || (last_changed_charpos < CHARPOS (start) - 1
16872 && FETCH_BYTE (BYTEPOS (start) - 1) == '\n')))
16873 {
16874 EMACS_INT Z_old, Z_delta, Z_BYTE_old, Z_delta_bytes;
16875 struct glyph_row *r0;
16876
16877 /* Compute how many chars/bytes have been added to or removed
16878 from the buffer. */
16879 Z_old = MATRIX_ROW_END_CHARPOS (row) + XFASTINT (w->window_end_pos);
16880 Z_BYTE_old = MATRIX_ROW_END_BYTEPOS (row) + w->window_end_bytepos;
16881 Z_delta = Z - Z_old;
16882 Z_delta_bytes = Z_BYTE - Z_BYTE_old;
16883
16884 /* Give up if PT is not in the window. Note that it already has
16885 been checked at the start of try_window_id that PT is not in
16886 front of the window start. */
16887 if (PT >= MATRIX_ROW_END_CHARPOS (row) + Z_delta)
16888 GIVE_UP (13);
16889
16890 /* If window start is unchanged, we can reuse the whole matrix
16891 as is, after adjusting glyph positions. No need to compute
16892 the window end again, since its offset from Z hasn't changed. */
16893 r0 = MATRIX_FIRST_TEXT_ROW (current_matrix);
16894 if (CHARPOS (start) == MATRIX_ROW_START_CHARPOS (r0) + Z_delta
16895 && BYTEPOS (start) == MATRIX_ROW_START_BYTEPOS (r0) + Z_delta_bytes
16896 /* PT must not be in a partially visible line. */
16897 && !(PT >= MATRIX_ROW_START_CHARPOS (row) + Z_delta
16898 && MATRIX_ROW_BOTTOM_Y (row) > window_text_bottom_y (w)))
16899 {
16900 /* Adjust positions in the glyph matrix. */
16901 if (Z_delta || Z_delta_bytes)
16902 {
16903 struct glyph_row *r1
16904 = MATRIX_BOTTOM_TEXT_ROW (current_matrix, w);
16905 increment_matrix_positions (w->current_matrix,
16906 MATRIX_ROW_VPOS (r0, current_matrix),
16907 MATRIX_ROW_VPOS (r1, current_matrix),
16908 Z_delta, Z_delta_bytes);
16909 }
16910
16911 /* Set the cursor. */
16912 row = row_containing_pos (w, PT, r0, NULL, 0);
16913 if (row)
16914 set_cursor_from_row (w, row, current_matrix, 0, 0, 0, 0);
16915 else
16916 abort ();
16917 return 1;
16918 }
16919 }
16920
16921 /* Handle the case that changes are all below what is displayed in
16922 the window, and that PT is in the window. This shortcut cannot
16923 be taken if ZV is visible in the window, and text has been added
16924 there that is visible in the window. */
16925 if (first_changed_charpos >= MATRIX_ROW_END_CHARPOS (row)
16926 /* ZV is not visible in the window, or there are no
16927 changes at ZV, actually. */
16928 && (current_matrix->zv > MATRIX_ROW_END_CHARPOS (row)
16929 || first_changed_charpos == last_changed_charpos))
16930 {
16931 struct glyph_row *r0;
16932
16933 /* Give up if PT is not in the window. Note that it already has
16934 been checked at the start of try_window_id that PT is not in
16935 front of the window start. */
16936 if (PT >= MATRIX_ROW_END_CHARPOS (row))
16937 GIVE_UP (14);
16938
16939 /* If window start is unchanged, we can reuse the whole matrix
16940 as is, without changing glyph positions since no text has
16941 been added/removed in front of the window end. */
16942 r0 = MATRIX_FIRST_TEXT_ROW (current_matrix);
16943 if (TEXT_POS_EQUAL_P (start, r0->minpos)
16944 /* PT must not be in a partially visible line. */
16945 && !(PT >= MATRIX_ROW_START_CHARPOS (row)
16946 && MATRIX_ROW_BOTTOM_Y (row) > window_text_bottom_y (w)))
16947 {
16948 /* We have to compute the window end anew since text
16949 could have been added/removed after it. */
16950 w->window_end_pos
16951 = make_number (Z - MATRIX_ROW_END_CHARPOS (row));
16952 w->window_end_bytepos
16953 = Z_BYTE - MATRIX_ROW_END_BYTEPOS (row);
16954
16955 /* Set the cursor. */
16956 row = row_containing_pos (w, PT, r0, NULL, 0);
16957 if (row)
16958 set_cursor_from_row (w, row, current_matrix, 0, 0, 0, 0);
16959 else
16960 abort ();
16961 return 2;
16962 }
16963 }
16964
16965 /* Give up if window start is in the changed area.
16966
16967 The condition used to read
16968
16969 (BEG_UNCHANGED + END_UNCHANGED != Z - BEG && ...)
16970
16971 but why that was tested escapes me at the moment. */
16972 if (CHARPOS (start) >= first_changed_charpos
16973 && CHARPOS (start) <= last_changed_charpos)
16974 GIVE_UP (15);
16975
16976 /* Check that window start agrees with the start of the first glyph
16977 row in its current matrix. Check this after we know the window
16978 start is not in changed text, otherwise positions would not be
16979 comparable. */
16980 row = MATRIX_FIRST_TEXT_ROW (current_matrix);
16981 if (!TEXT_POS_EQUAL_P (start, row->minpos))
16982 GIVE_UP (16);
16983
16984 /* Give up if the window ends in strings. Overlay strings
16985 at the end are difficult to handle, so don't try. */
16986 row = MATRIX_ROW (current_matrix, XFASTINT (w->window_end_vpos));
16987 if (MATRIX_ROW_START_CHARPOS (row) == MATRIX_ROW_END_CHARPOS (row))
16988 GIVE_UP (20);
16989
16990 /* Compute the position at which we have to start displaying new
16991 lines. Some of the lines at the top of the window might be
16992 reusable because they are not displaying changed text. Find the
16993 last row in W's current matrix not affected by changes at the
16994 start of current_buffer. Value is null if changes start in the
16995 first line of window. */
16996 last_unchanged_at_beg_row = find_last_unchanged_at_beg_row (w);
16997 if (last_unchanged_at_beg_row)
16998 {
16999 /* Avoid starting to display in the moddle of a character, a TAB
17000 for instance. This is easier than to set up the iterator
17001 exactly, and it's not a frequent case, so the additional
17002 effort wouldn't really pay off. */
17003 while ((MATRIX_ROW_ENDS_IN_MIDDLE_OF_CHAR_P (last_unchanged_at_beg_row)
17004 || last_unchanged_at_beg_row->ends_in_newline_from_string_p)
17005 && last_unchanged_at_beg_row > w->current_matrix->rows)
17006 --last_unchanged_at_beg_row;
17007
17008 if (MATRIX_ROW_ENDS_IN_MIDDLE_OF_CHAR_P (last_unchanged_at_beg_row))
17009 GIVE_UP (17);
17010
17011 if (init_to_row_end (&it, w, last_unchanged_at_beg_row) == 0)
17012 GIVE_UP (18);
17013 start_pos = it.current.pos;
17014
17015 /* Start displaying new lines in the desired matrix at the same
17016 vpos we would use in the current matrix, i.e. below
17017 last_unchanged_at_beg_row. */
17018 it.vpos = 1 + MATRIX_ROW_VPOS (last_unchanged_at_beg_row,
17019 current_matrix);
17020 it.glyph_row = MATRIX_ROW (desired_matrix, it.vpos);
17021 it.current_y = MATRIX_ROW_BOTTOM_Y (last_unchanged_at_beg_row);
17022
17023 xassert (it.hpos == 0 && it.current_x == 0);
17024 }
17025 else
17026 {
17027 /* There are no reusable lines at the start of the window.
17028 Start displaying in the first text line. */
17029 start_display (&it, w, start);
17030 it.vpos = it.first_vpos;
17031 start_pos = it.current.pos;
17032 }
17033
17034 /* Find the first row that is not affected by changes at the end of
17035 the buffer. Value will be null if there is no unchanged row, in
17036 which case we must redisplay to the end of the window. delta
17037 will be set to the value by which buffer positions beginning with
17038 first_unchanged_at_end_row have to be adjusted due to text
17039 changes. */
17040 first_unchanged_at_end_row
17041 = find_first_unchanged_at_end_row (w, &delta, &delta_bytes);
17042 IF_DEBUG (debug_delta = delta);
17043 IF_DEBUG (debug_delta_bytes = delta_bytes);
17044
17045 /* Set stop_pos to the buffer position up to which we will have to
17046 display new lines. If first_unchanged_at_end_row != NULL, this
17047 is the buffer position of the start of the line displayed in that
17048 row. For first_unchanged_at_end_row == NULL, use 0 to indicate
17049 that we don't stop at a buffer position. */
17050 stop_pos = 0;
17051 if (first_unchanged_at_end_row)
17052 {
17053 xassert (last_unchanged_at_beg_row == NULL
17054 || first_unchanged_at_end_row >= last_unchanged_at_beg_row);
17055
17056 /* If this is a continuation line, move forward to the next one
17057 that isn't. Changes in lines above affect this line.
17058 Caution: this may move first_unchanged_at_end_row to a row
17059 not displaying text. */
17060 while (MATRIX_ROW_CONTINUATION_LINE_P (first_unchanged_at_end_row)
17061 && MATRIX_ROW_DISPLAYS_TEXT_P (first_unchanged_at_end_row)
17062 && (MATRIX_ROW_BOTTOM_Y (first_unchanged_at_end_row)
17063 < it.last_visible_y))
17064 ++first_unchanged_at_end_row;
17065
17066 if (!MATRIX_ROW_DISPLAYS_TEXT_P (first_unchanged_at_end_row)
17067 || (MATRIX_ROW_BOTTOM_Y (first_unchanged_at_end_row)
17068 >= it.last_visible_y))
17069 first_unchanged_at_end_row = NULL;
17070 else
17071 {
17072 stop_pos = (MATRIX_ROW_START_CHARPOS (first_unchanged_at_end_row)
17073 + delta);
17074 first_unchanged_at_end_vpos
17075 = MATRIX_ROW_VPOS (first_unchanged_at_end_row, current_matrix);
17076 xassert (stop_pos >= Z - END_UNCHANGED);
17077 }
17078 }
17079 else if (last_unchanged_at_beg_row == NULL)
17080 GIVE_UP (19);
17081
17082
17083 #if GLYPH_DEBUG
17084
17085 /* Either there is no unchanged row at the end, or the one we have
17086 now displays text. This is a necessary condition for the window
17087 end pos calculation at the end of this function. */
17088 xassert (first_unchanged_at_end_row == NULL
17089 || MATRIX_ROW_DISPLAYS_TEXT_P (first_unchanged_at_end_row));
17090
17091 debug_last_unchanged_at_beg_vpos
17092 = (last_unchanged_at_beg_row
17093 ? MATRIX_ROW_VPOS (last_unchanged_at_beg_row, current_matrix)
17094 : -1);
17095 debug_first_unchanged_at_end_vpos = first_unchanged_at_end_vpos;
17096
17097 #endif /* GLYPH_DEBUG != 0 */
17098
17099
17100 /* Display new lines. Set last_text_row to the last new line
17101 displayed which has text on it, i.e. might end up as being the
17102 line where the window_end_vpos is. */
17103 w->cursor.vpos = -1;
17104 last_text_row = NULL;
17105 overlay_arrow_seen = 0;
17106 while (it.current_y < it.last_visible_y
17107 && !fonts_changed_p
17108 && (first_unchanged_at_end_row == NULL
17109 || IT_CHARPOS (it) < stop_pos))
17110 {
17111 if (display_line (&it))
17112 last_text_row = it.glyph_row - 1;
17113 }
17114
17115 if (fonts_changed_p)
17116 return -1;
17117
17118
17119 /* Compute differences in buffer positions, y-positions etc. for
17120 lines reused at the bottom of the window. Compute what we can
17121 scroll. */
17122 if (first_unchanged_at_end_row
17123 /* No lines reused because we displayed everything up to the
17124 bottom of the window. */
17125 && it.current_y < it.last_visible_y)
17126 {
17127 dvpos = (it.vpos
17128 - MATRIX_ROW_VPOS (first_unchanged_at_end_row,
17129 current_matrix));
17130 dy = it.current_y - first_unchanged_at_end_row->y;
17131 run.current_y = first_unchanged_at_end_row->y;
17132 run.desired_y = run.current_y + dy;
17133 run.height = it.last_visible_y - max (run.current_y, run.desired_y);
17134 }
17135 else
17136 {
17137 delta = delta_bytes = dvpos = dy
17138 = run.current_y = run.desired_y = run.height = 0;
17139 first_unchanged_at_end_row = NULL;
17140 }
17141 IF_DEBUG (debug_dvpos = dvpos; debug_dy = dy);
17142
17143
17144 /* Find the cursor if not already found. We have to decide whether
17145 PT will appear on this window (it sometimes doesn't, but this is
17146 not a very frequent case.) This decision has to be made before
17147 the current matrix is altered. A value of cursor.vpos < 0 means
17148 that PT is either in one of the lines beginning at
17149 first_unchanged_at_end_row or below the window. Don't care for
17150 lines that might be displayed later at the window end; as
17151 mentioned, this is not a frequent case. */
17152 if (w->cursor.vpos < 0)
17153 {
17154 /* Cursor in unchanged rows at the top? */
17155 if (PT < CHARPOS (start_pos)
17156 && last_unchanged_at_beg_row)
17157 {
17158 row = row_containing_pos (w, PT,
17159 MATRIX_FIRST_TEXT_ROW (w->current_matrix),
17160 last_unchanged_at_beg_row + 1, 0);
17161 if (row)
17162 set_cursor_from_row (w, row, w->current_matrix, 0, 0, 0, 0);
17163 }
17164
17165 /* Start from first_unchanged_at_end_row looking for PT. */
17166 else if (first_unchanged_at_end_row)
17167 {
17168 row = row_containing_pos (w, PT - delta,
17169 first_unchanged_at_end_row, NULL, 0);
17170 if (row)
17171 set_cursor_from_row (w, row, w->current_matrix, delta,
17172 delta_bytes, dy, dvpos);
17173 }
17174
17175 /* Give up if cursor was not found. */
17176 if (w->cursor.vpos < 0)
17177 {
17178 clear_glyph_matrix (w->desired_matrix);
17179 return -1;
17180 }
17181 }
17182
17183 /* Don't let the cursor end in the scroll margins. */
17184 {
17185 int this_scroll_margin, cursor_height;
17186
17187 this_scroll_margin =
17188 max (0, min (scroll_margin, WINDOW_TOTAL_LINES (w) / 4));
17189 this_scroll_margin *= FRAME_LINE_HEIGHT (it.f);
17190 cursor_height = MATRIX_ROW (w->desired_matrix, w->cursor.vpos)->height;
17191
17192 if ((w->cursor.y < this_scroll_margin
17193 && CHARPOS (start) > BEGV)
17194 /* Old redisplay didn't take scroll margin into account at the bottom,
17195 but then global-hl-line-mode doesn't scroll. KFS 2004-06-14 */
17196 || (w->cursor.y + (make_cursor_line_fully_visible_p
17197 ? cursor_height + this_scroll_margin
17198 : 1)) > it.last_visible_y)
17199 {
17200 w->cursor.vpos = -1;
17201 clear_glyph_matrix (w->desired_matrix);
17202 return -1;
17203 }
17204 }
17205
17206 /* Scroll the display. Do it before changing the current matrix so
17207 that xterm.c doesn't get confused about where the cursor glyph is
17208 found. */
17209 if (dy && run.height)
17210 {
17211 update_begin (f);
17212
17213 if (FRAME_WINDOW_P (f))
17214 {
17215 FRAME_RIF (f)->update_window_begin_hook (w);
17216 FRAME_RIF (f)->clear_window_mouse_face (w);
17217 FRAME_RIF (f)->scroll_run_hook (w, &run);
17218 FRAME_RIF (f)->update_window_end_hook (w, 0, 0);
17219 }
17220 else
17221 {
17222 /* Terminal frame. In this case, dvpos gives the number of
17223 lines to scroll by; dvpos < 0 means scroll up. */
17224 int from_vpos
17225 = MATRIX_ROW_VPOS (first_unchanged_at_end_row, w->current_matrix);
17226 int from = WINDOW_TOP_EDGE_LINE (w) + from_vpos;
17227 int end = (WINDOW_TOP_EDGE_LINE (w)
17228 + (WINDOW_WANTS_HEADER_LINE_P (w) ? 1 : 0)
17229 + window_internal_height (w));
17230
17231 #if defined (HAVE_GPM) || defined (MSDOS)
17232 x_clear_window_mouse_face (w);
17233 #endif
17234 /* Perform the operation on the screen. */
17235 if (dvpos > 0)
17236 {
17237 /* Scroll last_unchanged_at_beg_row to the end of the
17238 window down dvpos lines. */
17239 set_terminal_window (f, end);
17240
17241 /* On dumb terminals delete dvpos lines at the end
17242 before inserting dvpos empty lines. */
17243 if (!FRAME_SCROLL_REGION_OK (f))
17244 ins_del_lines (f, end - dvpos, -dvpos);
17245
17246 /* Insert dvpos empty lines in front of
17247 last_unchanged_at_beg_row. */
17248 ins_del_lines (f, from, dvpos);
17249 }
17250 else if (dvpos < 0)
17251 {
17252 /* Scroll up last_unchanged_at_beg_vpos to the end of
17253 the window to last_unchanged_at_beg_vpos - |dvpos|. */
17254 set_terminal_window (f, end);
17255
17256 /* Delete dvpos lines in front of
17257 last_unchanged_at_beg_vpos. ins_del_lines will set
17258 the cursor to the given vpos and emit |dvpos| delete
17259 line sequences. */
17260 ins_del_lines (f, from + dvpos, dvpos);
17261
17262 /* On a dumb terminal insert dvpos empty lines at the
17263 end. */
17264 if (!FRAME_SCROLL_REGION_OK (f))
17265 ins_del_lines (f, end + dvpos, -dvpos);
17266 }
17267
17268 set_terminal_window (f, 0);
17269 }
17270
17271 update_end (f);
17272 }
17273
17274 /* Shift reused rows of the current matrix to the right position.
17275 BOTTOM_ROW is the last + 1 row in the current matrix reserved for
17276 text. */
17277 bottom_row = MATRIX_BOTTOM_TEXT_ROW (current_matrix, w);
17278 bottom_vpos = MATRIX_ROW_VPOS (bottom_row, current_matrix);
17279 if (dvpos < 0)
17280 {
17281 rotate_matrix (current_matrix, first_unchanged_at_end_vpos + dvpos,
17282 bottom_vpos, dvpos);
17283 enable_glyph_matrix_rows (current_matrix, bottom_vpos + dvpos,
17284 bottom_vpos, 0);
17285 }
17286 else if (dvpos > 0)
17287 {
17288 rotate_matrix (current_matrix, first_unchanged_at_end_vpos,
17289 bottom_vpos, dvpos);
17290 enable_glyph_matrix_rows (current_matrix, first_unchanged_at_end_vpos,
17291 first_unchanged_at_end_vpos + dvpos, 0);
17292 }
17293
17294 /* For frame-based redisplay, make sure that current frame and window
17295 matrix are in sync with respect to glyph memory. */
17296 if (!FRAME_WINDOW_P (f))
17297 sync_frame_with_window_matrix_rows (w);
17298
17299 /* Adjust buffer positions in reused rows. */
17300 if (delta || delta_bytes)
17301 increment_matrix_positions (current_matrix,
17302 first_unchanged_at_end_vpos + dvpos,
17303 bottom_vpos, delta, delta_bytes);
17304
17305 /* Adjust Y positions. */
17306 if (dy)
17307 shift_glyph_matrix (w, current_matrix,
17308 first_unchanged_at_end_vpos + dvpos,
17309 bottom_vpos, dy);
17310
17311 if (first_unchanged_at_end_row)
17312 {
17313 first_unchanged_at_end_row += dvpos;
17314 if (first_unchanged_at_end_row->y >= it.last_visible_y
17315 || !MATRIX_ROW_DISPLAYS_TEXT_P (first_unchanged_at_end_row))
17316 first_unchanged_at_end_row = NULL;
17317 }
17318
17319 /* If scrolling up, there may be some lines to display at the end of
17320 the window. */
17321 last_text_row_at_end = NULL;
17322 if (dy < 0)
17323 {
17324 /* Scrolling up can leave for example a partially visible line
17325 at the end of the window to be redisplayed. */
17326 /* Set last_row to the glyph row in the current matrix where the
17327 window end line is found. It has been moved up or down in
17328 the matrix by dvpos. */
17329 int last_vpos = XFASTINT (w->window_end_vpos) + dvpos;
17330 struct glyph_row *last_row = MATRIX_ROW (current_matrix, last_vpos);
17331
17332 /* If last_row is the window end line, it should display text. */
17333 xassert (last_row->displays_text_p);
17334
17335 /* If window end line was partially visible before, begin
17336 displaying at that line. Otherwise begin displaying with the
17337 line following it. */
17338 if (MATRIX_ROW_BOTTOM_Y (last_row) - dy >= it.last_visible_y)
17339 {
17340 init_to_row_start (&it, w, last_row);
17341 it.vpos = last_vpos;
17342 it.current_y = last_row->y;
17343 }
17344 else
17345 {
17346 init_to_row_end (&it, w, last_row);
17347 it.vpos = 1 + last_vpos;
17348 it.current_y = MATRIX_ROW_BOTTOM_Y (last_row);
17349 ++last_row;
17350 }
17351
17352 /* We may start in a continuation line. If so, we have to
17353 get the right continuation_lines_width and current_x. */
17354 it.continuation_lines_width = last_row->continuation_lines_width;
17355 it.hpos = it.current_x = 0;
17356
17357 /* Display the rest of the lines at the window end. */
17358 it.glyph_row = MATRIX_ROW (desired_matrix, it.vpos);
17359 while (it.current_y < it.last_visible_y
17360 && !fonts_changed_p)
17361 {
17362 /* Is it always sure that the display agrees with lines in
17363 the current matrix? I don't think so, so we mark rows
17364 displayed invalid in the current matrix by setting their
17365 enabled_p flag to zero. */
17366 MATRIX_ROW (w->current_matrix, it.vpos)->enabled_p = 0;
17367 if (display_line (&it))
17368 last_text_row_at_end = it.glyph_row - 1;
17369 }
17370 }
17371
17372 /* Update window_end_pos and window_end_vpos. */
17373 if (first_unchanged_at_end_row
17374 && !last_text_row_at_end)
17375 {
17376 /* Window end line if one of the preserved rows from the current
17377 matrix. Set row to the last row displaying text in current
17378 matrix starting at first_unchanged_at_end_row, after
17379 scrolling. */
17380 xassert (first_unchanged_at_end_row->displays_text_p);
17381 row = find_last_row_displaying_text (w->current_matrix, &it,
17382 first_unchanged_at_end_row);
17383 xassert (row && MATRIX_ROW_DISPLAYS_TEXT_P (row));
17384
17385 w->window_end_pos = make_number (Z - MATRIX_ROW_END_CHARPOS (row));
17386 w->window_end_bytepos = Z_BYTE - MATRIX_ROW_END_BYTEPOS (row);
17387 w->window_end_vpos
17388 = make_number (MATRIX_ROW_VPOS (row, w->current_matrix));
17389 xassert (w->window_end_bytepos >= 0);
17390 IF_DEBUG (debug_method_add (w, "A"));
17391 }
17392 else if (last_text_row_at_end)
17393 {
17394 w->window_end_pos
17395 = make_number (Z - MATRIX_ROW_END_CHARPOS (last_text_row_at_end));
17396 w->window_end_bytepos
17397 = Z_BYTE - MATRIX_ROW_END_BYTEPOS (last_text_row_at_end);
17398 w->window_end_vpos
17399 = make_number (MATRIX_ROW_VPOS (last_text_row_at_end, desired_matrix));
17400 xassert (w->window_end_bytepos >= 0);
17401 IF_DEBUG (debug_method_add (w, "B"));
17402 }
17403 else if (last_text_row)
17404 {
17405 /* We have displayed either to the end of the window or at the
17406 end of the window, i.e. the last row with text is to be found
17407 in the desired matrix. */
17408 w->window_end_pos
17409 = make_number (Z - MATRIX_ROW_END_CHARPOS (last_text_row));
17410 w->window_end_bytepos
17411 = Z_BYTE - MATRIX_ROW_END_BYTEPOS (last_text_row);
17412 w->window_end_vpos
17413 = make_number (MATRIX_ROW_VPOS (last_text_row, desired_matrix));
17414 xassert (w->window_end_bytepos >= 0);
17415 }
17416 else if (first_unchanged_at_end_row == NULL
17417 && last_text_row == NULL
17418 && last_text_row_at_end == NULL)
17419 {
17420 /* Displayed to end of window, but no line containing text was
17421 displayed. Lines were deleted at the end of the window. */
17422 int first_vpos = WINDOW_WANTS_HEADER_LINE_P (w) ? 1 : 0;
17423 int vpos = XFASTINT (w->window_end_vpos);
17424 struct glyph_row *current_row = current_matrix->rows + vpos;
17425 struct glyph_row *desired_row = desired_matrix->rows + vpos;
17426
17427 for (row = NULL;
17428 row == NULL && vpos >= first_vpos;
17429 --vpos, --current_row, --desired_row)
17430 {
17431 if (desired_row->enabled_p)
17432 {
17433 if (desired_row->displays_text_p)
17434 row = desired_row;
17435 }
17436 else if (current_row->displays_text_p)
17437 row = current_row;
17438 }
17439
17440 xassert (row != NULL);
17441 w->window_end_vpos = make_number (vpos + 1);
17442 w->window_end_pos = make_number (Z - MATRIX_ROW_END_CHARPOS (row));
17443 w->window_end_bytepos = Z_BYTE - MATRIX_ROW_END_BYTEPOS (row);
17444 xassert (w->window_end_bytepos >= 0);
17445 IF_DEBUG (debug_method_add (w, "C"));
17446 }
17447 else
17448 abort ();
17449
17450 IF_DEBUG (debug_end_pos = XFASTINT (w->window_end_pos);
17451 debug_end_vpos = XFASTINT (w->window_end_vpos));
17452
17453 /* Record that display has not been completed. */
17454 w->window_end_valid = Qnil;
17455 w->desired_matrix->no_scrolling_p = 1;
17456 return 3;
17457
17458 #undef GIVE_UP
17459 }
17460
17461
17462 \f
17463 /***********************************************************************
17464 More debugging support
17465 ***********************************************************************/
17466
17467 #if GLYPH_DEBUG
17468
17469 void dump_glyph_row (struct glyph_row *, int, int) EXTERNALLY_VISIBLE;
17470 void dump_glyph_matrix (struct glyph_matrix *, int) EXTERNALLY_VISIBLE;
17471 void dump_glyph (struct glyph_row *, struct glyph *, int) EXTERNALLY_VISIBLE;
17472
17473
17474 /* Dump the contents of glyph matrix MATRIX on stderr.
17475
17476 GLYPHS 0 means don't show glyph contents.
17477 GLYPHS 1 means show glyphs in short form
17478 GLYPHS > 1 means show glyphs in long form. */
17479
17480 void
17481 dump_glyph_matrix (struct glyph_matrix *matrix, int glyphs)
17482 {
17483 int i;
17484 for (i = 0; i < matrix->nrows; ++i)
17485 dump_glyph_row (MATRIX_ROW (matrix, i), i, glyphs);
17486 }
17487
17488
17489 /* Dump contents of glyph GLYPH to stderr. ROW and AREA are
17490 the glyph row and area where the glyph comes from. */
17491
17492 void
17493 dump_glyph (struct glyph_row *row, struct glyph *glyph, int area)
17494 {
17495 if (glyph->type == CHAR_GLYPH)
17496 {
17497 fprintf (stderr,
17498 " %5td %4c %6"pI"d %c %3d 0x%05x %c %4d %1.1d%1.1d\n",
17499 glyph - row->glyphs[TEXT_AREA],
17500 'C',
17501 glyph->charpos,
17502 (BUFFERP (glyph->object)
17503 ? 'B'
17504 : (STRINGP (glyph->object)
17505 ? 'S'
17506 : '-')),
17507 glyph->pixel_width,
17508 glyph->u.ch,
17509 (glyph->u.ch < 0x80 && glyph->u.ch >= ' '
17510 ? glyph->u.ch
17511 : '.'),
17512 glyph->face_id,
17513 glyph->left_box_line_p,
17514 glyph->right_box_line_p);
17515 }
17516 else if (glyph->type == STRETCH_GLYPH)
17517 {
17518 fprintf (stderr,
17519 " %5td %4c %6"pI"d %c %3d 0x%05x %c %4d %1.1d%1.1d\n",
17520 glyph - row->glyphs[TEXT_AREA],
17521 'S',
17522 glyph->charpos,
17523 (BUFFERP (glyph->object)
17524 ? 'B'
17525 : (STRINGP (glyph->object)
17526 ? 'S'
17527 : '-')),
17528 glyph->pixel_width,
17529 0,
17530 '.',
17531 glyph->face_id,
17532 glyph->left_box_line_p,
17533 glyph->right_box_line_p);
17534 }
17535 else if (glyph->type == IMAGE_GLYPH)
17536 {
17537 fprintf (stderr,
17538 " %5td %4c %6"pI"d %c %3d 0x%05x %c %4d %1.1d%1.1d\n",
17539 glyph - row->glyphs[TEXT_AREA],
17540 'I',
17541 glyph->charpos,
17542 (BUFFERP (glyph->object)
17543 ? 'B'
17544 : (STRINGP (glyph->object)
17545 ? 'S'
17546 : '-')),
17547 glyph->pixel_width,
17548 glyph->u.img_id,
17549 '.',
17550 glyph->face_id,
17551 glyph->left_box_line_p,
17552 glyph->right_box_line_p);
17553 }
17554 else if (glyph->type == COMPOSITE_GLYPH)
17555 {
17556 fprintf (stderr,
17557 " %5td %4c %6"pI"d %c %3d 0x%05x",
17558 glyph - row->glyphs[TEXT_AREA],
17559 '+',
17560 glyph->charpos,
17561 (BUFFERP (glyph->object)
17562 ? 'B'
17563 : (STRINGP (glyph->object)
17564 ? 'S'
17565 : '-')),
17566 glyph->pixel_width,
17567 glyph->u.cmp.id);
17568 if (glyph->u.cmp.automatic)
17569 fprintf (stderr,
17570 "[%d-%d]",
17571 glyph->slice.cmp.from, glyph->slice.cmp.to);
17572 fprintf (stderr, " . %4d %1.1d%1.1d\n",
17573 glyph->face_id,
17574 glyph->left_box_line_p,
17575 glyph->right_box_line_p);
17576 }
17577 }
17578
17579
17580 /* Dump the contents of glyph row at VPOS in MATRIX to stderr.
17581 GLYPHS 0 means don't show glyph contents.
17582 GLYPHS 1 means show glyphs in short form
17583 GLYPHS > 1 means show glyphs in long form. */
17584
17585 void
17586 dump_glyph_row (struct glyph_row *row, int vpos, int glyphs)
17587 {
17588 if (glyphs != 1)
17589 {
17590 fprintf (stderr, "Row Start End Used oE><\\CTZFesm X Y W H V A P\n");
17591 fprintf (stderr, "======================================================================\n");
17592
17593 fprintf (stderr, "%3d %5"pI"d %5"pI"d %4d %1.1d%1.1d%1.1d%1.1d\
17594 %1.1d%1.1d%1.1d%1.1d%1.1d%1.1d%1.1d%1.1d %4d %4d %4d %4d %4d %4d %4d\n",
17595 vpos,
17596 MATRIX_ROW_START_CHARPOS (row),
17597 MATRIX_ROW_END_CHARPOS (row),
17598 row->used[TEXT_AREA],
17599 row->contains_overlapping_glyphs_p,
17600 row->enabled_p,
17601 row->truncated_on_left_p,
17602 row->truncated_on_right_p,
17603 row->continued_p,
17604 MATRIX_ROW_CONTINUATION_LINE_P (row),
17605 row->displays_text_p,
17606 row->ends_at_zv_p,
17607 row->fill_line_p,
17608 row->ends_in_middle_of_char_p,
17609 row->starts_in_middle_of_char_p,
17610 row->mouse_face_p,
17611 row->x,
17612 row->y,
17613 row->pixel_width,
17614 row->height,
17615 row->visible_height,
17616 row->ascent,
17617 row->phys_ascent);
17618 fprintf (stderr, "%9d %5d\t%5d\n", row->start.overlay_string_index,
17619 row->end.overlay_string_index,
17620 row->continuation_lines_width);
17621 fprintf (stderr, "%9"pI"d %5"pI"d\n",
17622 CHARPOS (row->start.string_pos),
17623 CHARPOS (row->end.string_pos));
17624 fprintf (stderr, "%9d %5d\n", row->start.dpvec_index,
17625 row->end.dpvec_index);
17626 }
17627
17628 if (glyphs > 1)
17629 {
17630 int area;
17631
17632 for (area = LEFT_MARGIN_AREA; area < LAST_AREA; ++area)
17633 {
17634 struct glyph *glyph = row->glyphs[area];
17635 struct glyph *glyph_end = glyph + row->used[area];
17636
17637 /* Glyph for a line end in text. */
17638 if (area == TEXT_AREA && glyph == glyph_end && glyph->charpos > 0)
17639 ++glyph_end;
17640
17641 if (glyph < glyph_end)
17642 fprintf (stderr, " Glyph Type Pos O W Code C Face LR\n");
17643
17644 for (; glyph < glyph_end; ++glyph)
17645 dump_glyph (row, glyph, area);
17646 }
17647 }
17648 else if (glyphs == 1)
17649 {
17650 int area;
17651
17652 for (area = LEFT_MARGIN_AREA; area < LAST_AREA; ++area)
17653 {
17654 char *s = (char *) alloca (row->used[area] + 1);
17655 int i;
17656
17657 for (i = 0; i < row->used[area]; ++i)
17658 {
17659 struct glyph *glyph = row->glyphs[area] + i;
17660 if (glyph->type == CHAR_GLYPH
17661 && glyph->u.ch < 0x80
17662 && glyph->u.ch >= ' ')
17663 s[i] = glyph->u.ch;
17664 else
17665 s[i] = '.';
17666 }
17667
17668 s[i] = '\0';
17669 fprintf (stderr, "%3d: (%d) '%s'\n", vpos, row->enabled_p, s);
17670 }
17671 }
17672 }
17673
17674
17675 DEFUN ("dump-glyph-matrix", Fdump_glyph_matrix,
17676 Sdump_glyph_matrix, 0, 1, "p",
17677 doc: /* Dump the current matrix of the selected window to stderr.
17678 Shows contents of glyph row structures. With non-nil
17679 parameter GLYPHS, dump glyphs as well. If GLYPHS is 1 show
17680 glyphs in short form, otherwise show glyphs in long form. */)
17681 (Lisp_Object glyphs)
17682 {
17683 struct window *w = XWINDOW (selected_window);
17684 struct buffer *buffer = XBUFFER (w->buffer);
17685
17686 fprintf (stderr, "PT = %"pI"d, BEGV = %"pI"d. ZV = %"pI"d\n",
17687 BUF_PT (buffer), BUF_BEGV (buffer), BUF_ZV (buffer));
17688 fprintf (stderr, "Cursor x = %d, y = %d, hpos = %d, vpos = %d\n",
17689 w->cursor.x, w->cursor.y, w->cursor.hpos, w->cursor.vpos);
17690 fprintf (stderr, "=============================================\n");
17691 dump_glyph_matrix (w->current_matrix,
17692 NILP (glyphs) ? 0 : XINT (glyphs));
17693 return Qnil;
17694 }
17695
17696
17697 DEFUN ("dump-frame-glyph-matrix", Fdump_frame_glyph_matrix,
17698 Sdump_frame_glyph_matrix, 0, 0, "", doc: /* */)
17699 (void)
17700 {
17701 struct frame *f = XFRAME (selected_frame);
17702 dump_glyph_matrix (f->current_matrix, 1);
17703 return Qnil;
17704 }
17705
17706
17707 DEFUN ("dump-glyph-row", Fdump_glyph_row, Sdump_glyph_row, 1, 2, "",
17708 doc: /* Dump glyph row ROW to stderr.
17709 GLYPH 0 means don't dump glyphs.
17710 GLYPH 1 means dump glyphs in short form.
17711 GLYPH > 1 or omitted means dump glyphs in long form. */)
17712 (Lisp_Object row, Lisp_Object glyphs)
17713 {
17714 struct glyph_matrix *matrix;
17715 int vpos;
17716
17717 CHECK_NUMBER (row);
17718 matrix = XWINDOW (selected_window)->current_matrix;
17719 vpos = XINT (row);
17720 if (vpos >= 0 && vpos < matrix->nrows)
17721 dump_glyph_row (MATRIX_ROW (matrix, vpos),
17722 vpos,
17723 INTEGERP (glyphs) ? XINT (glyphs) : 2);
17724 return Qnil;
17725 }
17726
17727
17728 DEFUN ("dump-tool-bar-row", Fdump_tool_bar_row, Sdump_tool_bar_row, 1, 2, "",
17729 doc: /* Dump glyph row ROW of the tool-bar of the current frame to stderr.
17730 GLYPH 0 means don't dump glyphs.
17731 GLYPH 1 means dump glyphs in short form.
17732 GLYPH > 1 or omitted means dump glyphs in long form. */)
17733 (Lisp_Object row, Lisp_Object glyphs)
17734 {
17735 struct frame *sf = SELECTED_FRAME ();
17736 struct glyph_matrix *m = XWINDOW (sf->tool_bar_window)->current_matrix;
17737 int vpos;
17738
17739 CHECK_NUMBER (row);
17740 vpos = XINT (row);
17741 if (vpos >= 0 && vpos < m->nrows)
17742 dump_glyph_row (MATRIX_ROW (m, vpos), vpos,
17743 INTEGERP (glyphs) ? XINT (glyphs) : 2);
17744 return Qnil;
17745 }
17746
17747
17748 DEFUN ("trace-redisplay", Ftrace_redisplay, Strace_redisplay, 0, 1, "P",
17749 doc: /* Toggle tracing of redisplay.
17750 With ARG, turn tracing on if and only if ARG is positive. */)
17751 (Lisp_Object arg)
17752 {
17753 if (NILP (arg))
17754 trace_redisplay_p = !trace_redisplay_p;
17755 else
17756 {
17757 arg = Fprefix_numeric_value (arg);
17758 trace_redisplay_p = XINT (arg) > 0;
17759 }
17760
17761 return Qnil;
17762 }
17763
17764
17765 DEFUN ("trace-to-stderr", Ftrace_to_stderr, Strace_to_stderr, 1, MANY, "",
17766 doc: /* Like `format', but print result to stderr.
17767 usage: (trace-to-stderr STRING &rest OBJECTS) */)
17768 (ptrdiff_t nargs, Lisp_Object *args)
17769 {
17770 Lisp_Object s = Fformat (nargs, args);
17771 fprintf (stderr, "%s", SDATA (s));
17772 return Qnil;
17773 }
17774
17775 #endif /* GLYPH_DEBUG */
17776
17777
17778 \f
17779 /***********************************************************************
17780 Building Desired Matrix Rows
17781 ***********************************************************************/
17782
17783 /* Return a temporary glyph row holding the glyphs of an overlay arrow.
17784 Used for non-window-redisplay windows, and for windows w/o left fringe. */
17785
17786 static struct glyph_row *
17787 get_overlay_arrow_glyph_row (struct window *w, Lisp_Object overlay_arrow_string)
17788 {
17789 struct frame *f = XFRAME (WINDOW_FRAME (w));
17790 struct buffer *buffer = XBUFFER (w->buffer);
17791 struct buffer *old = current_buffer;
17792 const unsigned char *arrow_string = SDATA (overlay_arrow_string);
17793 int arrow_len = SCHARS (overlay_arrow_string);
17794 const unsigned char *arrow_end = arrow_string + arrow_len;
17795 const unsigned char *p;
17796 struct it it;
17797 int multibyte_p;
17798 int n_glyphs_before;
17799
17800 set_buffer_temp (buffer);
17801 init_iterator (&it, w, -1, -1, &scratch_glyph_row, DEFAULT_FACE_ID);
17802 it.glyph_row->used[TEXT_AREA] = 0;
17803 SET_TEXT_POS (it.position, 0, 0);
17804
17805 multibyte_p = !NILP (BVAR (buffer, enable_multibyte_characters));
17806 p = arrow_string;
17807 while (p < arrow_end)
17808 {
17809 Lisp_Object face, ilisp;
17810
17811 /* Get the next character. */
17812 if (multibyte_p)
17813 it.c = it.char_to_display = string_char_and_length (p, &it.len);
17814 else
17815 {
17816 it.c = it.char_to_display = *p, it.len = 1;
17817 if (! ASCII_CHAR_P (it.c))
17818 it.char_to_display = BYTE8_TO_CHAR (it.c);
17819 }
17820 p += it.len;
17821
17822 /* Get its face. */
17823 ilisp = make_number (p - arrow_string);
17824 face = Fget_text_property (ilisp, Qface, overlay_arrow_string);
17825 it.face_id = compute_char_face (f, it.char_to_display, face);
17826
17827 /* Compute its width, get its glyphs. */
17828 n_glyphs_before = it.glyph_row->used[TEXT_AREA];
17829 SET_TEXT_POS (it.position, -1, -1);
17830 PRODUCE_GLYPHS (&it);
17831
17832 /* If this character doesn't fit any more in the line, we have
17833 to remove some glyphs. */
17834 if (it.current_x > it.last_visible_x)
17835 {
17836 it.glyph_row->used[TEXT_AREA] = n_glyphs_before;
17837 break;
17838 }
17839 }
17840
17841 set_buffer_temp (old);
17842 return it.glyph_row;
17843 }
17844
17845
17846 /* Insert truncation glyphs at the start of IT->glyph_row. Truncation
17847 glyphs are only inserted for terminal frames since we can't really
17848 win with truncation glyphs when partially visible glyphs are
17849 involved. Which glyphs to insert is determined by
17850 produce_special_glyphs. */
17851
17852 static void
17853 insert_left_trunc_glyphs (struct it *it)
17854 {
17855 struct it truncate_it;
17856 struct glyph *from, *end, *to, *toend;
17857
17858 xassert (!FRAME_WINDOW_P (it->f));
17859
17860 /* Get the truncation glyphs. */
17861 truncate_it = *it;
17862 truncate_it.current_x = 0;
17863 truncate_it.face_id = DEFAULT_FACE_ID;
17864 truncate_it.glyph_row = &scratch_glyph_row;
17865 truncate_it.glyph_row->used[TEXT_AREA] = 0;
17866 CHARPOS (truncate_it.position) = BYTEPOS (truncate_it.position) = -1;
17867 truncate_it.object = make_number (0);
17868 produce_special_glyphs (&truncate_it, IT_TRUNCATION);
17869
17870 /* Overwrite glyphs from IT with truncation glyphs. */
17871 if (!it->glyph_row->reversed_p)
17872 {
17873 from = truncate_it.glyph_row->glyphs[TEXT_AREA];
17874 end = from + truncate_it.glyph_row->used[TEXT_AREA];
17875 to = it->glyph_row->glyphs[TEXT_AREA];
17876 toend = to + it->glyph_row->used[TEXT_AREA];
17877
17878 while (from < end)
17879 *to++ = *from++;
17880
17881 /* There may be padding glyphs left over. Overwrite them too. */
17882 while (to < toend && CHAR_GLYPH_PADDING_P (*to))
17883 {
17884 from = truncate_it.glyph_row->glyphs[TEXT_AREA];
17885 while (from < end)
17886 *to++ = *from++;
17887 }
17888
17889 if (to > toend)
17890 it->glyph_row->used[TEXT_AREA] = to - it->glyph_row->glyphs[TEXT_AREA];
17891 }
17892 else
17893 {
17894 /* In R2L rows, overwrite the last (rightmost) glyphs, and do
17895 that back to front. */
17896 end = truncate_it.glyph_row->glyphs[TEXT_AREA];
17897 from = end + truncate_it.glyph_row->used[TEXT_AREA] - 1;
17898 toend = it->glyph_row->glyphs[TEXT_AREA];
17899 to = toend + it->glyph_row->used[TEXT_AREA] - 1;
17900
17901 while (from >= end && to >= toend)
17902 *to-- = *from--;
17903 while (to >= toend && CHAR_GLYPH_PADDING_P (*to))
17904 {
17905 from =
17906 truncate_it.glyph_row->glyphs[TEXT_AREA]
17907 + truncate_it.glyph_row->used[TEXT_AREA] - 1;
17908 while (from >= end && to >= toend)
17909 *to-- = *from--;
17910 }
17911 if (from >= end)
17912 {
17913 /* Need to free some room before prepending additional
17914 glyphs. */
17915 int move_by = from - end + 1;
17916 struct glyph *g0 = it->glyph_row->glyphs[TEXT_AREA];
17917 struct glyph *g = g0 + it->glyph_row->used[TEXT_AREA] - 1;
17918
17919 for ( ; g >= g0; g--)
17920 g[move_by] = *g;
17921 while (from >= end)
17922 *to-- = *from--;
17923 it->glyph_row->used[TEXT_AREA] += move_by;
17924 }
17925 }
17926 }
17927
17928
17929 /* Compute the pixel height and width of IT->glyph_row.
17930
17931 Most of the time, ascent and height of a display line will be equal
17932 to the max_ascent and max_height values of the display iterator
17933 structure. This is not the case if
17934
17935 1. We hit ZV without displaying anything. In this case, max_ascent
17936 and max_height will be zero.
17937
17938 2. We have some glyphs that don't contribute to the line height.
17939 (The glyph row flag contributes_to_line_height_p is for future
17940 pixmap extensions).
17941
17942 The first case is easily covered by using default values because in
17943 these cases, the line height does not really matter, except that it
17944 must not be zero. */
17945
17946 static void
17947 compute_line_metrics (struct it *it)
17948 {
17949 struct glyph_row *row = it->glyph_row;
17950
17951 if (FRAME_WINDOW_P (it->f))
17952 {
17953 int i, min_y, max_y;
17954
17955 /* The line may consist of one space only, that was added to
17956 place the cursor on it. If so, the row's height hasn't been
17957 computed yet. */
17958 if (row->height == 0)
17959 {
17960 if (it->max_ascent + it->max_descent == 0)
17961 it->max_descent = it->max_phys_descent = FRAME_LINE_HEIGHT (it->f);
17962 row->ascent = it->max_ascent;
17963 row->height = it->max_ascent + it->max_descent;
17964 row->phys_ascent = it->max_phys_ascent;
17965 row->phys_height = it->max_phys_ascent + it->max_phys_descent;
17966 row->extra_line_spacing = it->max_extra_line_spacing;
17967 }
17968
17969 /* Compute the width of this line. */
17970 row->pixel_width = row->x;
17971 for (i = 0; i < row->used[TEXT_AREA]; ++i)
17972 row->pixel_width += row->glyphs[TEXT_AREA][i].pixel_width;
17973
17974 xassert (row->pixel_width >= 0);
17975 xassert (row->ascent >= 0 && row->height > 0);
17976
17977 row->overlapping_p = (MATRIX_ROW_OVERLAPS_SUCC_P (row)
17978 || MATRIX_ROW_OVERLAPS_PRED_P (row));
17979
17980 /* If first line's physical ascent is larger than its logical
17981 ascent, use the physical ascent, and make the row taller.
17982 This makes accented characters fully visible. */
17983 if (row == MATRIX_FIRST_TEXT_ROW (it->w->desired_matrix)
17984 && row->phys_ascent > row->ascent)
17985 {
17986 row->height += row->phys_ascent - row->ascent;
17987 row->ascent = row->phys_ascent;
17988 }
17989
17990 /* Compute how much of the line is visible. */
17991 row->visible_height = row->height;
17992
17993 min_y = WINDOW_HEADER_LINE_HEIGHT (it->w);
17994 max_y = WINDOW_BOX_HEIGHT_NO_MODE_LINE (it->w);
17995
17996 if (row->y < min_y)
17997 row->visible_height -= min_y - row->y;
17998 if (row->y + row->height > max_y)
17999 row->visible_height -= row->y + row->height - max_y;
18000 }
18001 else
18002 {
18003 row->pixel_width = row->used[TEXT_AREA];
18004 if (row->continued_p)
18005 row->pixel_width -= it->continuation_pixel_width;
18006 else if (row->truncated_on_right_p)
18007 row->pixel_width -= it->truncation_pixel_width;
18008 row->ascent = row->phys_ascent = 0;
18009 row->height = row->phys_height = row->visible_height = 1;
18010 row->extra_line_spacing = 0;
18011 }
18012
18013 /* Compute a hash code for this row. */
18014 {
18015 int area, i;
18016 row->hash = 0;
18017 for (area = LEFT_MARGIN_AREA; area < LAST_AREA; ++area)
18018 for (i = 0; i < row->used[area]; ++i)
18019 row->hash = ((((row->hash << 4) + (row->hash >> 24)) & 0x0fffffff)
18020 + row->glyphs[area][i].u.val
18021 + row->glyphs[area][i].face_id
18022 + row->glyphs[area][i].padding_p
18023 + (row->glyphs[area][i].type << 2));
18024 }
18025
18026 it->max_ascent = it->max_descent = 0;
18027 it->max_phys_ascent = it->max_phys_descent = 0;
18028 }
18029
18030
18031 /* Append one space to the glyph row of iterator IT if doing a
18032 window-based redisplay. The space has the same face as
18033 IT->face_id. Value is non-zero if a space was added.
18034
18035 This function is called to make sure that there is always one glyph
18036 at the end of a glyph row that the cursor can be set on under
18037 window-systems. (If there weren't such a glyph we would not know
18038 how wide and tall a box cursor should be displayed).
18039
18040 At the same time this space let's a nicely handle clearing to the
18041 end of the line if the row ends in italic text. */
18042
18043 static int
18044 append_space_for_newline (struct it *it, int default_face_p)
18045 {
18046 if (FRAME_WINDOW_P (it->f))
18047 {
18048 int n = it->glyph_row->used[TEXT_AREA];
18049
18050 if (it->glyph_row->glyphs[TEXT_AREA] + n
18051 < it->glyph_row->glyphs[1 + TEXT_AREA])
18052 {
18053 /* Save some values that must not be changed.
18054 Must save IT->c and IT->len because otherwise
18055 ITERATOR_AT_END_P wouldn't work anymore after
18056 append_space_for_newline has been called. */
18057 enum display_element_type saved_what = it->what;
18058 int saved_c = it->c, saved_len = it->len;
18059 int saved_char_to_display = it->char_to_display;
18060 int saved_x = it->current_x;
18061 int saved_face_id = it->face_id;
18062 struct text_pos saved_pos;
18063 Lisp_Object saved_object;
18064 struct face *face;
18065
18066 saved_object = it->object;
18067 saved_pos = it->position;
18068
18069 it->what = IT_CHARACTER;
18070 memset (&it->position, 0, sizeof it->position);
18071 it->object = make_number (0);
18072 it->c = it->char_to_display = ' ';
18073 it->len = 1;
18074
18075 if (default_face_p)
18076 it->face_id = DEFAULT_FACE_ID;
18077 else if (it->face_before_selective_p)
18078 it->face_id = it->saved_face_id;
18079 face = FACE_FROM_ID (it->f, it->face_id);
18080 it->face_id = FACE_FOR_CHAR (it->f, face, 0, -1, Qnil);
18081
18082 PRODUCE_GLYPHS (it);
18083
18084 it->override_ascent = -1;
18085 it->constrain_row_ascent_descent_p = 0;
18086 it->current_x = saved_x;
18087 it->object = saved_object;
18088 it->position = saved_pos;
18089 it->what = saved_what;
18090 it->face_id = saved_face_id;
18091 it->len = saved_len;
18092 it->c = saved_c;
18093 it->char_to_display = saved_char_to_display;
18094 return 1;
18095 }
18096 }
18097
18098 return 0;
18099 }
18100
18101
18102 /* Extend the face of the last glyph in the text area of IT->glyph_row
18103 to the end of the display line. Called from display_line. If the
18104 glyph row is empty, add a space glyph to it so that we know the
18105 face to draw. Set the glyph row flag fill_line_p. If the glyph
18106 row is R2L, prepend a stretch glyph to cover the empty space to the
18107 left of the leftmost glyph. */
18108
18109 static void
18110 extend_face_to_end_of_line (struct it *it)
18111 {
18112 struct face *face;
18113 struct frame *f = it->f;
18114
18115 /* If line is already filled, do nothing. Non window-system frames
18116 get a grace of one more ``pixel'' because their characters are
18117 1-``pixel'' wide, so they hit the equality too early. This grace
18118 is needed only for R2L rows that are not continued, to produce
18119 one extra blank where we could display the cursor. */
18120 if (it->current_x >= it->last_visible_x
18121 + (!FRAME_WINDOW_P (f)
18122 && it->glyph_row->reversed_p
18123 && !it->glyph_row->continued_p))
18124 return;
18125
18126 /* Face extension extends the background and box of IT->face_id
18127 to the end of the line. If the background equals the background
18128 of the frame, we don't have to do anything. */
18129 if (it->face_before_selective_p)
18130 face = FACE_FROM_ID (f, it->saved_face_id);
18131 else
18132 face = FACE_FROM_ID (f, it->face_id);
18133
18134 if (FRAME_WINDOW_P (f)
18135 && it->glyph_row->displays_text_p
18136 && face->box == FACE_NO_BOX
18137 && face->background == FRAME_BACKGROUND_PIXEL (f)
18138 && !face->stipple
18139 && !it->glyph_row->reversed_p)
18140 return;
18141
18142 /* Set the glyph row flag indicating that the face of the last glyph
18143 in the text area has to be drawn to the end of the text area. */
18144 it->glyph_row->fill_line_p = 1;
18145
18146 /* If current character of IT is not ASCII, make sure we have the
18147 ASCII face. This will be automatically undone the next time
18148 get_next_display_element returns a multibyte character. Note
18149 that the character will always be single byte in unibyte
18150 text. */
18151 if (!ASCII_CHAR_P (it->c))
18152 {
18153 it->face_id = FACE_FOR_CHAR (f, face, 0, -1, Qnil);
18154 }
18155
18156 if (FRAME_WINDOW_P (f))
18157 {
18158 /* If the row is empty, add a space with the current face of IT,
18159 so that we know which face to draw. */
18160 if (it->glyph_row->used[TEXT_AREA] == 0)
18161 {
18162 it->glyph_row->glyphs[TEXT_AREA][0] = space_glyph;
18163 it->glyph_row->glyphs[TEXT_AREA][0].face_id = it->face_id;
18164 it->glyph_row->used[TEXT_AREA] = 1;
18165 }
18166 #ifdef HAVE_WINDOW_SYSTEM
18167 if (it->glyph_row->reversed_p)
18168 {
18169 /* Prepend a stretch glyph to the row, such that the
18170 rightmost glyph will be drawn flushed all the way to the
18171 right margin of the window. The stretch glyph that will
18172 occupy the empty space, if any, to the left of the
18173 glyphs. */
18174 struct font *font = face->font ? face->font : FRAME_FONT (f);
18175 struct glyph *row_start = it->glyph_row->glyphs[TEXT_AREA];
18176 struct glyph *row_end = row_start + it->glyph_row->used[TEXT_AREA];
18177 struct glyph *g;
18178 int row_width, stretch_ascent, stretch_width;
18179 struct text_pos saved_pos;
18180 int saved_face_id, saved_avoid_cursor;
18181
18182 for (row_width = 0, g = row_start; g < row_end; g++)
18183 row_width += g->pixel_width;
18184 stretch_width = window_box_width (it->w, TEXT_AREA) - row_width;
18185 if (stretch_width > 0)
18186 {
18187 stretch_ascent =
18188 (((it->ascent + it->descent)
18189 * FONT_BASE (font)) / FONT_HEIGHT (font));
18190 saved_pos = it->position;
18191 memset (&it->position, 0, sizeof it->position);
18192 saved_avoid_cursor = it->avoid_cursor_p;
18193 it->avoid_cursor_p = 1;
18194 saved_face_id = it->face_id;
18195 /* The last row's stretch glyph should get the default
18196 face, to avoid painting the rest of the window with
18197 the region face, if the region ends at ZV. */
18198 if (it->glyph_row->ends_at_zv_p)
18199 it->face_id = DEFAULT_FACE_ID;
18200 else
18201 it->face_id = face->id;
18202 append_stretch_glyph (it, make_number (0), stretch_width,
18203 it->ascent + it->descent, stretch_ascent);
18204 it->position = saved_pos;
18205 it->avoid_cursor_p = saved_avoid_cursor;
18206 it->face_id = saved_face_id;
18207 }
18208 }
18209 #endif /* HAVE_WINDOW_SYSTEM */
18210 }
18211 else
18212 {
18213 /* Save some values that must not be changed. */
18214 int saved_x = it->current_x;
18215 struct text_pos saved_pos;
18216 Lisp_Object saved_object;
18217 enum display_element_type saved_what = it->what;
18218 int saved_face_id = it->face_id;
18219
18220 saved_object = it->object;
18221 saved_pos = it->position;
18222
18223 it->what = IT_CHARACTER;
18224 memset (&it->position, 0, sizeof it->position);
18225 it->object = make_number (0);
18226 it->c = it->char_to_display = ' ';
18227 it->len = 1;
18228 /* The last row's blank glyphs should get the default face, to
18229 avoid painting the rest of the window with the region face,
18230 if the region ends at ZV. */
18231 if (it->glyph_row->ends_at_zv_p)
18232 it->face_id = DEFAULT_FACE_ID;
18233 else
18234 it->face_id = face->id;
18235
18236 PRODUCE_GLYPHS (it);
18237
18238 while (it->current_x <= it->last_visible_x)
18239 PRODUCE_GLYPHS (it);
18240
18241 /* Don't count these blanks really. It would let us insert a left
18242 truncation glyph below and make us set the cursor on them, maybe. */
18243 it->current_x = saved_x;
18244 it->object = saved_object;
18245 it->position = saved_pos;
18246 it->what = saved_what;
18247 it->face_id = saved_face_id;
18248 }
18249 }
18250
18251
18252 /* Value is non-zero if text starting at CHARPOS in current_buffer is
18253 trailing whitespace. */
18254
18255 static int
18256 trailing_whitespace_p (EMACS_INT charpos)
18257 {
18258 EMACS_INT bytepos = CHAR_TO_BYTE (charpos);
18259 int c = 0;
18260
18261 while (bytepos < ZV_BYTE
18262 && (c = FETCH_CHAR (bytepos),
18263 c == ' ' || c == '\t'))
18264 ++bytepos;
18265
18266 if (bytepos >= ZV_BYTE || c == '\n' || c == '\r')
18267 {
18268 if (bytepos != PT_BYTE)
18269 return 1;
18270 }
18271 return 0;
18272 }
18273
18274
18275 /* Highlight trailing whitespace, if any, in ROW. */
18276
18277 static void
18278 highlight_trailing_whitespace (struct frame *f, struct glyph_row *row)
18279 {
18280 int used = row->used[TEXT_AREA];
18281
18282 if (used)
18283 {
18284 struct glyph *start = row->glyphs[TEXT_AREA];
18285 struct glyph *glyph = start + used - 1;
18286
18287 if (row->reversed_p)
18288 {
18289 /* Right-to-left rows need to be processed in the opposite
18290 direction, so swap the edge pointers. */
18291 glyph = start;
18292 start = row->glyphs[TEXT_AREA] + used - 1;
18293 }
18294
18295 /* Skip over glyphs inserted to display the cursor at the
18296 end of a line, for extending the face of the last glyph
18297 to the end of the line on terminals, and for truncation
18298 and continuation glyphs. */
18299 if (!row->reversed_p)
18300 {
18301 while (glyph >= start
18302 && glyph->type == CHAR_GLYPH
18303 && INTEGERP (glyph->object))
18304 --glyph;
18305 }
18306 else
18307 {
18308 while (glyph <= start
18309 && glyph->type == CHAR_GLYPH
18310 && INTEGERP (glyph->object))
18311 ++glyph;
18312 }
18313
18314 /* If last glyph is a space or stretch, and it's trailing
18315 whitespace, set the face of all trailing whitespace glyphs in
18316 IT->glyph_row to `trailing-whitespace'. */
18317 if ((row->reversed_p ? glyph <= start : glyph >= start)
18318 && BUFFERP (glyph->object)
18319 && (glyph->type == STRETCH_GLYPH
18320 || (glyph->type == CHAR_GLYPH
18321 && glyph->u.ch == ' '))
18322 && trailing_whitespace_p (glyph->charpos))
18323 {
18324 int face_id = lookup_named_face (f, Qtrailing_whitespace, 0);
18325 if (face_id < 0)
18326 return;
18327
18328 if (!row->reversed_p)
18329 {
18330 while (glyph >= start
18331 && BUFFERP (glyph->object)
18332 && (glyph->type == STRETCH_GLYPH
18333 || (glyph->type == CHAR_GLYPH
18334 && glyph->u.ch == ' ')))
18335 (glyph--)->face_id = face_id;
18336 }
18337 else
18338 {
18339 while (glyph <= start
18340 && BUFFERP (glyph->object)
18341 && (glyph->type == STRETCH_GLYPH
18342 || (glyph->type == CHAR_GLYPH
18343 && glyph->u.ch == ' ')))
18344 (glyph++)->face_id = face_id;
18345 }
18346 }
18347 }
18348 }
18349
18350
18351 /* Value is non-zero if glyph row ROW should be
18352 used to hold the cursor. */
18353
18354 static int
18355 cursor_row_p (struct glyph_row *row)
18356 {
18357 int result = 1;
18358
18359 if (PT == CHARPOS (row->end.pos)
18360 || PT == MATRIX_ROW_END_CHARPOS (row))
18361 {
18362 /* Suppose the row ends on a string.
18363 Unless the row is continued, that means it ends on a newline
18364 in the string. If it's anything other than a display string
18365 (e.g. a before-string from an overlay), we don't want the
18366 cursor there. (This heuristic seems to give the optimal
18367 behavior for the various types of multi-line strings.) */
18368 if (CHARPOS (row->end.string_pos) >= 0)
18369 {
18370 if (row->continued_p)
18371 result = 1;
18372 else
18373 {
18374 /* Check for `display' property. */
18375 struct glyph *beg = row->glyphs[TEXT_AREA];
18376 struct glyph *end = beg + row->used[TEXT_AREA] - 1;
18377 struct glyph *glyph;
18378
18379 result = 0;
18380 for (glyph = end; glyph >= beg; --glyph)
18381 if (STRINGP (glyph->object))
18382 {
18383 Lisp_Object prop
18384 = Fget_char_property (make_number (PT),
18385 Qdisplay, Qnil);
18386 result =
18387 (!NILP (prop)
18388 && display_prop_string_p (prop, glyph->object));
18389 break;
18390 }
18391 }
18392 }
18393 else if (MATRIX_ROW_ENDS_IN_MIDDLE_OF_CHAR_P (row))
18394 {
18395 /* If the row ends in middle of a real character,
18396 and the line is continued, we want the cursor here.
18397 That's because CHARPOS (ROW->end.pos) would equal
18398 PT if PT is before the character. */
18399 if (!row->ends_in_ellipsis_p)
18400 result = row->continued_p;
18401 else
18402 /* If the row ends in an ellipsis, then
18403 CHARPOS (ROW->end.pos) will equal point after the
18404 invisible text. We want that position to be displayed
18405 after the ellipsis. */
18406 result = 0;
18407 }
18408 /* If the row ends at ZV, display the cursor at the end of that
18409 row instead of at the start of the row below. */
18410 else if (row->ends_at_zv_p)
18411 result = 1;
18412 else
18413 result = 0;
18414 }
18415
18416 return result;
18417 }
18418
18419 \f
18420
18421 /* Push the property PROP so that it will be rendered at the current
18422 position in IT. Return 1 if PROP was successfully pushed, 0
18423 otherwise. Called from handle_line_prefix to handle the
18424 `line-prefix' and `wrap-prefix' properties. */
18425
18426 static int
18427 push_display_prop (struct it *it, Lisp_Object prop)
18428 {
18429 struct text_pos pos =
18430 STRINGP (it->string) ? it->current.string_pos : it->current.pos;
18431
18432 xassert (it->method == GET_FROM_BUFFER
18433 || it->method == GET_FROM_DISPLAY_VECTOR
18434 || it->method == GET_FROM_STRING);
18435
18436 /* We need to save the current buffer/string position, so it will be
18437 restored by pop_it, because iterate_out_of_display_property
18438 depends on that being set correctly, but some situations leave
18439 it->position not yet set when this function is called. */
18440 push_it (it, &pos);
18441
18442 if (STRINGP (prop))
18443 {
18444 if (SCHARS (prop) == 0)
18445 {
18446 pop_it (it);
18447 return 0;
18448 }
18449
18450 it->string = prop;
18451 it->multibyte_p = STRING_MULTIBYTE (it->string);
18452 it->current.overlay_string_index = -1;
18453 IT_STRING_CHARPOS (*it) = IT_STRING_BYTEPOS (*it) = 0;
18454 it->end_charpos = it->string_nchars = SCHARS (it->string);
18455 it->method = GET_FROM_STRING;
18456 it->stop_charpos = 0;
18457 it->prev_stop = 0;
18458 it->base_level_stop = 0;
18459
18460 /* Force paragraph direction to be that of the parent
18461 buffer/string. */
18462 if (it->bidi_p && it->bidi_it.paragraph_dir == R2L)
18463 it->paragraph_embedding = it->bidi_it.paragraph_dir;
18464 else
18465 it->paragraph_embedding = L2R;
18466
18467 /* Set up the bidi iterator for this display string. */
18468 if (it->bidi_p)
18469 {
18470 it->bidi_it.string.lstring = it->string;
18471 it->bidi_it.string.s = NULL;
18472 it->bidi_it.string.schars = it->end_charpos;
18473 it->bidi_it.string.bufpos = IT_CHARPOS (*it);
18474 it->bidi_it.string.from_disp_str = it->string_from_display_prop_p;
18475 it->bidi_it.string.unibyte = !it->multibyte_p;
18476 bidi_init_it (0, 0, FRAME_WINDOW_P (it->f), &it->bidi_it);
18477 }
18478 }
18479 else if (CONSP (prop) && EQ (XCAR (prop), Qspace))
18480 {
18481 it->method = GET_FROM_STRETCH;
18482 it->object = prop;
18483 }
18484 #ifdef HAVE_WINDOW_SYSTEM
18485 else if (IMAGEP (prop))
18486 {
18487 it->what = IT_IMAGE;
18488 it->image_id = lookup_image (it->f, prop);
18489 it->method = GET_FROM_IMAGE;
18490 }
18491 #endif /* HAVE_WINDOW_SYSTEM */
18492 else
18493 {
18494 pop_it (it); /* bogus display property, give up */
18495 return 0;
18496 }
18497
18498 return 1;
18499 }
18500
18501 /* Return the character-property PROP at the current position in IT. */
18502
18503 static Lisp_Object
18504 get_it_property (struct it *it, Lisp_Object prop)
18505 {
18506 Lisp_Object position;
18507
18508 if (STRINGP (it->object))
18509 position = make_number (IT_STRING_CHARPOS (*it));
18510 else if (BUFFERP (it->object))
18511 position = make_number (IT_CHARPOS (*it));
18512 else
18513 return Qnil;
18514
18515 return Fget_char_property (position, prop, it->object);
18516 }
18517
18518 /* See if there's a line- or wrap-prefix, and if so, push it on IT. */
18519
18520 static void
18521 handle_line_prefix (struct it *it)
18522 {
18523 Lisp_Object prefix;
18524
18525 if (it->continuation_lines_width > 0)
18526 {
18527 prefix = get_it_property (it, Qwrap_prefix);
18528 if (NILP (prefix))
18529 prefix = Vwrap_prefix;
18530 }
18531 else
18532 {
18533 prefix = get_it_property (it, Qline_prefix);
18534 if (NILP (prefix))
18535 prefix = Vline_prefix;
18536 }
18537 if (! NILP (prefix) && push_display_prop (it, prefix))
18538 {
18539 /* If the prefix is wider than the window, and we try to wrap
18540 it, it would acquire its own wrap prefix, and so on till the
18541 iterator stack overflows. So, don't wrap the prefix. */
18542 it->line_wrap = TRUNCATE;
18543 it->avoid_cursor_p = 1;
18544 }
18545 }
18546
18547 \f
18548
18549 /* Remove N glyphs at the start of a reversed IT->glyph_row. Called
18550 only for R2L lines from display_line and display_string, when they
18551 decide that too many glyphs were produced by PRODUCE_GLYPHS, and
18552 the line/string needs to be continued on the next glyph row. */
18553 static void
18554 unproduce_glyphs (struct it *it, int n)
18555 {
18556 struct glyph *glyph, *end;
18557
18558 xassert (it->glyph_row);
18559 xassert (it->glyph_row->reversed_p);
18560 xassert (it->area == TEXT_AREA);
18561 xassert (n <= it->glyph_row->used[TEXT_AREA]);
18562
18563 if (n > it->glyph_row->used[TEXT_AREA])
18564 n = it->glyph_row->used[TEXT_AREA];
18565 glyph = it->glyph_row->glyphs[TEXT_AREA] + n;
18566 end = it->glyph_row->glyphs[TEXT_AREA] + it->glyph_row->used[TEXT_AREA];
18567 for ( ; glyph < end; glyph++)
18568 glyph[-n] = *glyph;
18569 }
18570
18571 /* Find the positions in a bidi-reordered ROW to serve as ROW->minpos
18572 and ROW->maxpos. */
18573 static void
18574 find_row_edges (struct it *it, struct glyph_row *row,
18575 EMACS_INT min_pos, EMACS_INT min_bpos,
18576 EMACS_INT max_pos, EMACS_INT max_bpos)
18577 {
18578 /* FIXME: Revisit this when glyph ``spilling'' in continuation
18579 lines' rows is implemented for bidi-reordered rows. */
18580
18581 /* ROW->minpos is the value of min_pos, the minimal buffer position
18582 we have in ROW, or ROW->start.pos if that is smaller. */
18583 if (min_pos <= ZV && min_pos < row->start.pos.charpos)
18584 SET_TEXT_POS (row->minpos, min_pos, min_bpos);
18585 else
18586 /* We didn't find buffer positions smaller than ROW->start, or
18587 didn't find _any_ valid buffer positions in any of the glyphs,
18588 so we must trust the iterator's computed positions. */
18589 row->minpos = row->start.pos;
18590 if (max_pos <= 0)
18591 {
18592 max_pos = CHARPOS (it->current.pos);
18593 max_bpos = BYTEPOS (it->current.pos);
18594 }
18595
18596 /* Here are the various use-cases for ending the row, and the
18597 corresponding values for ROW->maxpos:
18598
18599 Line ends in a newline from buffer eol_pos + 1
18600 Line is continued from buffer max_pos + 1
18601 Line is truncated on right it->current.pos
18602 Line ends in a newline from string max_pos + 1(*)
18603 (*) + 1 only when line ends in a forward scan
18604 Line is continued from string max_pos
18605 Line is continued from display vector max_pos
18606 Line is entirely from a string min_pos == max_pos
18607 Line is entirely from a display vector min_pos == max_pos
18608 Line that ends at ZV ZV
18609
18610 If you discover other use-cases, please add them here as
18611 appropriate. */
18612 if (row->ends_at_zv_p)
18613 row->maxpos = it->current.pos;
18614 else if (row->used[TEXT_AREA])
18615 {
18616 int seen_this_string = 0;
18617 struct glyph_row *r1 = row - 1;
18618
18619 /* Did we see the same display string on the previous row? */
18620 if (STRINGP (it->object)
18621 /* this is not the first row */
18622 && row > it->w->desired_matrix->rows
18623 /* previous row is not the header line */
18624 && !r1->mode_line_p
18625 /* previous row also ends in a newline from a string */
18626 && r1->ends_in_newline_from_string_p)
18627 {
18628 struct glyph *start, *end;
18629
18630 /* Search for the last glyph of the previous row that came
18631 from buffer or string. Depending on whether the row is
18632 L2R or R2L, we need to process it front to back or the
18633 other way round. */
18634 if (!r1->reversed_p)
18635 {
18636 start = r1->glyphs[TEXT_AREA];
18637 end = start + r1->used[TEXT_AREA];
18638 /* Glyphs inserted by redisplay have an integer (zero)
18639 as their object. */
18640 while (end > start
18641 && INTEGERP ((end - 1)->object)
18642 && (end - 1)->charpos <= 0)
18643 --end;
18644 if (end > start)
18645 {
18646 if (EQ ((end - 1)->object, it->object))
18647 seen_this_string = 1;
18648 }
18649 else
18650 /* If all the glyphs of the previous row were inserted
18651 by redisplay, it means the previous row was
18652 produced from a single newline, which is only
18653 possible if that newline came from the same string
18654 as the one which produced this ROW. */
18655 seen_this_string = 1;
18656 }
18657 else
18658 {
18659 end = r1->glyphs[TEXT_AREA] - 1;
18660 start = end + r1->used[TEXT_AREA];
18661 while (end < start
18662 && INTEGERP ((end + 1)->object)
18663 && (end + 1)->charpos <= 0)
18664 ++end;
18665 if (end < start)
18666 {
18667 if (EQ ((end + 1)->object, it->object))
18668 seen_this_string = 1;
18669 }
18670 else
18671 seen_this_string = 1;
18672 }
18673 }
18674 /* Take note of each display string that covers a newline only
18675 once, the first time we see it. This is for when a display
18676 string includes more than one newline in it. */
18677 if (row->ends_in_newline_from_string_p && !seen_this_string)
18678 {
18679 /* If we were scanning the buffer forward when we displayed
18680 the string, we want to account for at least one buffer
18681 position that belongs to this row (position covered by
18682 the display string), so that cursor positioning will
18683 consider this row as a candidate when point is at the end
18684 of the visual line represented by this row. This is not
18685 required when scanning back, because max_pos will already
18686 have a much larger value. */
18687 if (CHARPOS (row->end.pos) > max_pos)
18688 INC_BOTH (max_pos, max_bpos);
18689 SET_TEXT_POS (row->maxpos, max_pos, max_bpos);
18690 }
18691 else if (CHARPOS (it->eol_pos) > 0)
18692 SET_TEXT_POS (row->maxpos,
18693 CHARPOS (it->eol_pos) + 1, BYTEPOS (it->eol_pos) + 1);
18694 else if (row->continued_p)
18695 {
18696 /* If max_pos is different from IT's current position, it
18697 means IT->method does not belong to the display element
18698 at max_pos. However, it also means that the display
18699 element at max_pos was displayed in its entirety on this
18700 line, which is equivalent to saying that the next line
18701 starts at the next buffer position. */
18702 if (IT_CHARPOS (*it) == max_pos && it->method != GET_FROM_BUFFER)
18703 SET_TEXT_POS (row->maxpos, max_pos, max_bpos);
18704 else
18705 {
18706 INC_BOTH (max_pos, max_bpos);
18707 SET_TEXT_POS (row->maxpos, max_pos, max_bpos);
18708 }
18709 }
18710 else if (row->truncated_on_right_p)
18711 /* display_line already called reseat_at_next_visible_line_start,
18712 which puts the iterator at the beginning of the next line, in
18713 the logical order. */
18714 row->maxpos = it->current.pos;
18715 else if (max_pos == min_pos && it->method != GET_FROM_BUFFER)
18716 /* A line that is entirely from a string/image/stretch... */
18717 row->maxpos = row->minpos;
18718 else
18719 abort ();
18720 }
18721 else
18722 row->maxpos = it->current.pos;
18723 }
18724
18725 /* Construct the glyph row IT->glyph_row in the desired matrix of
18726 IT->w from text at the current position of IT. See dispextern.h
18727 for an overview of struct it. Value is non-zero if
18728 IT->glyph_row displays text, as opposed to a line displaying ZV
18729 only. */
18730
18731 static int
18732 display_line (struct it *it)
18733 {
18734 struct glyph_row *row = it->glyph_row;
18735 Lisp_Object overlay_arrow_string;
18736 struct it wrap_it;
18737 void *wrap_data = NULL;
18738 int may_wrap = 0, wrap_x IF_LINT (= 0);
18739 int wrap_row_used = -1;
18740 int wrap_row_ascent IF_LINT (= 0), wrap_row_height IF_LINT (= 0);
18741 int wrap_row_phys_ascent IF_LINT (= 0), wrap_row_phys_height IF_LINT (= 0);
18742 int wrap_row_extra_line_spacing IF_LINT (= 0);
18743 EMACS_INT wrap_row_min_pos IF_LINT (= 0), wrap_row_min_bpos IF_LINT (= 0);
18744 EMACS_INT wrap_row_max_pos IF_LINT (= 0), wrap_row_max_bpos IF_LINT (= 0);
18745 int cvpos;
18746 EMACS_INT min_pos = ZV + 1, max_pos = 0;
18747 EMACS_INT min_bpos IF_LINT (= 0), max_bpos IF_LINT (= 0);
18748
18749 /* We always start displaying at hpos zero even if hscrolled. */
18750 xassert (it->hpos == 0 && it->current_x == 0);
18751
18752 if (MATRIX_ROW_VPOS (row, it->w->desired_matrix)
18753 >= it->w->desired_matrix->nrows)
18754 {
18755 it->w->nrows_scale_factor++;
18756 fonts_changed_p = 1;
18757 return 0;
18758 }
18759
18760 /* Is IT->w showing the region? */
18761 it->w->region_showing = it->region_beg_charpos > 0 ? Qt : Qnil;
18762
18763 /* Clear the result glyph row and enable it. */
18764 prepare_desired_row (row);
18765
18766 row->y = it->current_y;
18767 row->start = it->start;
18768 row->continuation_lines_width = it->continuation_lines_width;
18769 row->displays_text_p = 1;
18770 row->starts_in_middle_of_char_p = it->starts_in_middle_of_char_p;
18771 it->starts_in_middle_of_char_p = 0;
18772
18773 /* Arrange the overlays nicely for our purposes. Usually, we call
18774 display_line on only one line at a time, in which case this
18775 can't really hurt too much, or we call it on lines which appear
18776 one after another in the buffer, in which case all calls to
18777 recenter_overlay_lists but the first will be pretty cheap. */
18778 recenter_overlay_lists (current_buffer, IT_CHARPOS (*it));
18779
18780 /* Move over display elements that are not visible because we are
18781 hscrolled. This may stop at an x-position < IT->first_visible_x
18782 if the first glyph is partially visible or if we hit a line end. */
18783 if (it->current_x < it->first_visible_x)
18784 {
18785 this_line_min_pos = row->start.pos;
18786 move_it_in_display_line_to (it, ZV, it->first_visible_x,
18787 MOVE_TO_POS | MOVE_TO_X);
18788 /* Record the smallest positions seen while we moved over
18789 display elements that are not visible. This is needed by
18790 redisplay_internal for optimizing the case where the cursor
18791 stays inside the same line. The rest of this function only
18792 considers positions that are actually displayed, so
18793 RECORD_MAX_MIN_POS will not otherwise record positions that
18794 are hscrolled to the left of the left edge of the window. */
18795 min_pos = CHARPOS (this_line_min_pos);
18796 min_bpos = BYTEPOS (this_line_min_pos);
18797 }
18798 else
18799 {
18800 /* We only do this when not calling `move_it_in_display_line_to'
18801 above, because move_it_in_display_line_to calls
18802 handle_line_prefix itself. */
18803 handle_line_prefix (it);
18804 }
18805
18806 /* Get the initial row height. This is either the height of the
18807 text hscrolled, if there is any, or zero. */
18808 row->ascent = it->max_ascent;
18809 row->height = it->max_ascent + it->max_descent;
18810 row->phys_ascent = it->max_phys_ascent;
18811 row->phys_height = it->max_phys_ascent + it->max_phys_descent;
18812 row->extra_line_spacing = it->max_extra_line_spacing;
18813
18814 /* Utility macro to record max and min buffer positions seen until now. */
18815 #define RECORD_MAX_MIN_POS(IT) \
18816 do \
18817 { \
18818 int composition_p = (IT)->what == IT_COMPOSITION; \
18819 EMACS_INT current_pos = \
18820 composition_p ? (IT)->cmp_it.charpos \
18821 : IT_CHARPOS (*(IT)); \
18822 EMACS_INT current_bpos = \
18823 composition_p ? CHAR_TO_BYTE (current_pos) \
18824 : IT_BYTEPOS (*(IT)); \
18825 if (current_pos < min_pos) \
18826 { \
18827 min_pos = current_pos; \
18828 min_bpos = current_bpos; \
18829 } \
18830 if (IT_CHARPOS (*it) > max_pos) \
18831 { \
18832 max_pos = IT_CHARPOS (*it); \
18833 max_bpos = IT_BYTEPOS (*it); \
18834 } \
18835 } \
18836 while (0)
18837
18838 /* Loop generating characters. The loop is left with IT on the next
18839 character to display. */
18840 while (1)
18841 {
18842 int n_glyphs_before, hpos_before, x_before;
18843 int x, nglyphs;
18844 int ascent = 0, descent = 0, phys_ascent = 0, phys_descent = 0;
18845
18846 /* Retrieve the next thing to display. Value is zero if end of
18847 buffer reached. */
18848 if (!get_next_display_element (it))
18849 {
18850 /* Maybe add a space at the end of this line that is used to
18851 display the cursor there under X. Set the charpos of the
18852 first glyph of blank lines not corresponding to any text
18853 to -1. */
18854 if (IT_OVERFLOW_NEWLINE_INTO_FRINGE (it))
18855 row->exact_window_width_line_p = 1;
18856 else if ((append_space_for_newline (it, 1) && row->used[TEXT_AREA] == 1)
18857 || row->used[TEXT_AREA] == 0)
18858 {
18859 row->glyphs[TEXT_AREA]->charpos = -1;
18860 row->displays_text_p = 0;
18861
18862 if (!NILP (BVAR (XBUFFER (it->w->buffer), indicate_empty_lines))
18863 && (!MINI_WINDOW_P (it->w)
18864 || (minibuf_level && EQ (it->window, minibuf_window))))
18865 row->indicate_empty_line_p = 1;
18866 }
18867
18868 it->continuation_lines_width = 0;
18869 row->ends_at_zv_p = 1;
18870 /* A row that displays right-to-left text must always have
18871 its last face extended all the way to the end of line,
18872 even if this row ends in ZV, because we still write to
18873 the screen left to right. */
18874 if (row->reversed_p)
18875 extend_face_to_end_of_line (it);
18876 break;
18877 }
18878
18879 /* Now, get the metrics of what we want to display. This also
18880 generates glyphs in `row' (which is IT->glyph_row). */
18881 n_glyphs_before = row->used[TEXT_AREA];
18882 x = it->current_x;
18883
18884 /* Remember the line height so far in case the next element doesn't
18885 fit on the line. */
18886 if (it->line_wrap != TRUNCATE)
18887 {
18888 ascent = it->max_ascent;
18889 descent = it->max_descent;
18890 phys_ascent = it->max_phys_ascent;
18891 phys_descent = it->max_phys_descent;
18892
18893 if (it->line_wrap == WORD_WRAP && it->area == TEXT_AREA)
18894 {
18895 if (IT_DISPLAYING_WHITESPACE (it))
18896 may_wrap = 1;
18897 else if (may_wrap)
18898 {
18899 SAVE_IT (wrap_it, *it, wrap_data);
18900 wrap_x = x;
18901 wrap_row_used = row->used[TEXT_AREA];
18902 wrap_row_ascent = row->ascent;
18903 wrap_row_height = row->height;
18904 wrap_row_phys_ascent = row->phys_ascent;
18905 wrap_row_phys_height = row->phys_height;
18906 wrap_row_extra_line_spacing = row->extra_line_spacing;
18907 wrap_row_min_pos = min_pos;
18908 wrap_row_min_bpos = min_bpos;
18909 wrap_row_max_pos = max_pos;
18910 wrap_row_max_bpos = max_bpos;
18911 may_wrap = 0;
18912 }
18913 }
18914 }
18915
18916 PRODUCE_GLYPHS (it);
18917
18918 /* If this display element was in marginal areas, continue with
18919 the next one. */
18920 if (it->area != TEXT_AREA)
18921 {
18922 row->ascent = max (row->ascent, it->max_ascent);
18923 row->height = max (row->height, it->max_ascent + it->max_descent);
18924 row->phys_ascent = max (row->phys_ascent, it->max_phys_ascent);
18925 row->phys_height = max (row->phys_height,
18926 it->max_phys_ascent + it->max_phys_descent);
18927 row->extra_line_spacing = max (row->extra_line_spacing,
18928 it->max_extra_line_spacing);
18929 set_iterator_to_next (it, 1);
18930 continue;
18931 }
18932
18933 /* Does the display element fit on the line? If we truncate
18934 lines, we should draw past the right edge of the window. If
18935 we don't truncate, we want to stop so that we can display the
18936 continuation glyph before the right margin. If lines are
18937 continued, there are two possible strategies for characters
18938 resulting in more than 1 glyph (e.g. tabs): Display as many
18939 glyphs as possible in this line and leave the rest for the
18940 continuation line, or display the whole element in the next
18941 line. Original redisplay did the former, so we do it also. */
18942 nglyphs = row->used[TEXT_AREA] - n_glyphs_before;
18943 hpos_before = it->hpos;
18944 x_before = x;
18945
18946 if (/* Not a newline. */
18947 nglyphs > 0
18948 /* Glyphs produced fit entirely in the line. */
18949 && it->current_x < it->last_visible_x)
18950 {
18951 it->hpos += nglyphs;
18952 row->ascent = max (row->ascent, it->max_ascent);
18953 row->height = max (row->height, it->max_ascent + it->max_descent);
18954 row->phys_ascent = max (row->phys_ascent, it->max_phys_ascent);
18955 row->phys_height = max (row->phys_height,
18956 it->max_phys_ascent + it->max_phys_descent);
18957 row->extra_line_spacing = max (row->extra_line_spacing,
18958 it->max_extra_line_spacing);
18959 if (it->current_x - it->pixel_width < it->first_visible_x)
18960 row->x = x - it->first_visible_x;
18961 /* Record the maximum and minimum buffer positions seen so
18962 far in glyphs that will be displayed by this row. */
18963 if (it->bidi_p)
18964 RECORD_MAX_MIN_POS (it);
18965 }
18966 else
18967 {
18968 int i, new_x;
18969 struct glyph *glyph;
18970
18971 for (i = 0; i < nglyphs; ++i, x = new_x)
18972 {
18973 glyph = row->glyphs[TEXT_AREA] + n_glyphs_before + i;
18974 new_x = x + glyph->pixel_width;
18975
18976 if (/* Lines are continued. */
18977 it->line_wrap != TRUNCATE
18978 && (/* Glyph doesn't fit on the line. */
18979 new_x > it->last_visible_x
18980 /* Or it fits exactly on a window system frame. */
18981 || (new_x == it->last_visible_x
18982 && FRAME_WINDOW_P (it->f))))
18983 {
18984 /* End of a continued line. */
18985
18986 if (it->hpos == 0
18987 || (new_x == it->last_visible_x
18988 && FRAME_WINDOW_P (it->f)))
18989 {
18990 /* Current glyph is the only one on the line or
18991 fits exactly on the line. We must continue
18992 the line because we can't draw the cursor
18993 after the glyph. */
18994 row->continued_p = 1;
18995 it->current_x = new_x;
18996 it->continuation_lines_width += new_x;
18997 ++it->hpos;
18998 if (i == nglyphs - 1)
18999 {
19000 /* If line-wrap is on, check if a previous
19001 wrap point was found. */
19002 if (wrap_row_used > 0
19003 /* Even if there is a previous wrap
19004 point, continue the line here as
19005 usual, if (i) the previous character
19006 was a space or tab AND (ii) the
19007 current character is not. */
19008 && (!may_wrap
19009 || IT_DISPLAYING_WHITESPACE (it)))
19010 goto back_to_wrap;
19011
19012 /* Record the maximum and minimum buffer
19013 positions seen so far in glyphs that will be
19014 displayed by this row. */
19015 if (it->bidi_p)
19016 RECORD_MAX_MIN_POS (it);
19017 set_iterator_to_next (it, 1);
19018 if (IT_OVERFLOW_NEWLINE_INTO_FRINGE (it))
19019 {
19020 if (!get_next_display_element (it))
19021 {
19022 row->exact_window_width_line_p = 1;
19023 it->continuation_lines_width = 0;
19024 row->continued_p = 0;
19025 row->ends_at_zv_p = 1;
19026 }
19027 else if (ITERATOR_AT_END_OF_LINE_P (it))
19028 {
19029 row->continued_p = 0;
19030 row->exact_window_width_line_p = 1;
19031 }
19032 }
19033 }
19034 else if (it->bidi_p)
19035 RECORD_MAX_MIN_POS (it);
19036 }
19037 else if (CHAR_GLYPH_PADDING_P (*glyph)
19038 && !FRAME_WINDOW_P (it->f))
19039 {
19040 /* A padding glyph that doesn't fit on this line.
19041 This means the whole character doesn't fit
19042 on the line. */
19043 if (row->reversed_p)
19044 unproduce_glyphs (it, row->used[TEXT_AREA]
19045 - n_glyphs_before);
19046 row->used[TEXT_AREA] = n_glyphs_before;
19047
19048 /* Fill the rest of the row with continuation
19049 glyphs like in 20.x. */
19050 while (row->glyphs[TEXT_AREA] + row->used[TEXT_AREA]
19051 < row->glyphs[1 + TEXT_AREA])
19052 produce_special_glyphs (it, IT_CONTINUATION);
19053
19054 row->continued_p = 1;
19055 it->current_x = x_before;
19056 it->continuation_lines_width += x_before;
19057
19058 /* Restore the height to what it was before the
19059 element not fitting on the line. */
19060 it->max_ascent = ascent;
19061 it->max_descent = descent;
19062 it->max_phys_ascent = phys_ascent;
19063 it->max_phys_descent = phys_descent;
19064 }
19065 else if (wrap_row_used > 0)
19066 {
19067 back_to_wrap:
19068 if (row->reversed_p)
19069 unproduce_glyphs (it,
19070 row->used[TEXT_AREA] - wrap_row_used);
19071 RESTORE_IT (it, &wrap_it, wrap_data);
19072 it->continuation_lines_width += wrap_x;
19073 row->used[TEXT_AREA] = wrap_row_used;
19074 row->ascent = wrap_row_ascent;
19075 row->height = wrap_row_height;
19076 row->phys_ascent = wrap_row_phys_ascent;
19077 row->phys_height = wrap_row_phys_height;
19078 row->extra_line_spacing = wrap_row_extra_line_spacing;
19079 min_pos = wrap_row_min_pos;
19080 min_bpos = wrap_row_min_bpos;
19081 max_pos = wrap_row_max_pos;
19082 max_bpos = wrap_row_max_bpos;
19083 row->continued_p = 1;
19084 row->ends_at_zv_p = 0;
19085 row->exact_window_width_line_p = 0;
19086 it->continuation_lines_width += x;
19087
19088 /* Make sure that a non-default face is extended
19089 up to the right margin of the window. */
19090 extend_face_to_end_of_line (it);
19091 }
19092 else if (it->c == '\t' && FRAME_WINDOW_P (it->f))
19093 {
19094 /* A TAB that extends past the right edge of the
19095 window. This produces a single glyph on
19096 window system frames. We leave the glyph in
19097 this row and let it fill the row, but don't
19098 consume the TAB. */
19099 it->continuation_lines_width += it->last_visible_x;
19100 row->ends_in_middle_of_char_p = 1;
19101 row->continued_p = 1;
19102 glyph->pixel_width = it->last_visible_x - x;
19103 it->starts_in_middle_of_char_p = 1;
19104 }
19105 else
19106 {
19107 /* Something other than a TAB that draws past
19108 the right edge of the window. Restore
19109 positions to values before the element. */
19110 if (row->reversed_p)
19111 unproduce_glyphs (it, row->used[TEXT_AREA]
19112 - (n_glyphs_before + i));
19113 row->used[TEXT_AREA] = n_glyphs_before + i;
19114
19115 /* Display continuation glyphs. */
19116 if (!FRAME_WINDOW_P (it->f))
19117 produce_special_glyphs (it, IT_CONTINUATION);
19118 row->continued_p = 1;
19119
19120 it->current_x = x_before;
19121 it->continuation_lines_width += x;
19122 extend_face_to_end_of_line (it);
19123
19124 if (nglyphs > 1 && i > 0)
19125 {
19126 row->ends_in_middle_of_char_p = 1;
19127 it->starts_in_middle_of_char_p = 1;
19128 }
19129
19130 /* Restore the height to what it was before the
19131 element not fitting on the line. */
19132 it->max_ascent = ascent;
19133 it->max_descent = descent;
19134 it->max_phys_ascent = phys_ascent;
19135 it->max_phys_descent = phys_descent;
19136 }
19137
19138 break;
19139 }
19140 else if (new_x > it->first_visible_x)
19141 {
19142 /* Increment number of glyphs actually displayed. */
19143 ++it->hpos;
19144
19145 /* Record the maximum and minimum buffer positions
19146 seen so far in glyphs that will be displayed by
19147 this row. */
19148 if (it->bidi_p)
19149 RECORD_MAX_MIN_POS (it);
19150
19151 if (x < it->first_visible_x)
19152 /* Glyph is partially visible, i.e. row starts at
19153 negative X position. */
19154 row->x = x - it->first_visible_x;
19155 }
19156 else
19157 {
19158 /* Glyph is completely off the left margin of the
19159 window. This should not happen because of the
19160 move_it_in_display_line at the start of this
19161 function, unless the text display area of the
19162 window is empty. */
19163 xassert (it->first_visible_x <= it->last_visible_x);
19164 }
19165 }
19166 /* Even if this display element produced no glyphs at all,
19167 we want to record its position. */
19168 if (it->bidi_p && nglyphs == 0)
19169 RECORD_MAX_MIN_POS (it);
19170
19171 row->ascent = max (row->ascent, it->max_ascent);
19172 row->height = max (row->height, it->max_ascent + it->max_descent);
19173 row->phys_ascent = max (row->phys_ascent, it->max_phys_ascent);
19174 row->phys_height = max (row->phys_height,
19175 it->max_phys_ascent + it->max_phys_descent);
19176 row->extra_line_spacing = max (row->extra_line_spacing,
19177 it->max_extra_line_spacing);
19178
19179 /* End of this display line if row is continued. */
19180 if (row->continued_p || row->ends_at_zv_p)
19181 break;
19182 }
19183
19184 at_end_of_line:
19185 /* Is this a line end? If yes, we're also done, after making
19186 sure that a non-default face is extended up to the right
19187 margin of the window. */
19188 if (ITERATOR_AT_END_OF_LINE_P (it))
19189 {
19190 int used_before = row->used[TEXT_AREA];
19191
19192 row->ends_in_newline_from_string_p = STRINGP (it->object);
19193
19194 /* Add a space at the end of the line that is used to
19195 display the cursor there. */
19196 if (!IT_OVERFLOW_NEWLINE_INTO_FRINGE (it))
19197 append_space_for_newline (it, 0);
19198
19199 /* Extend the face to the end of the line. */
19200 extend_face_to_end_of_line (it);
19201
19202 /* Make sure we have the position. */
19203 if (used_before == 0)
19204 row->glyphs[TEXT_AREA]->charpos = CHARPOS (it->position);
19205
19206 /* Record the position of the newline, for use in
19207 find_row_edges. */
19208 it->eol_pos = it->current.pos;
19209
19210 /* Consume the line end. This skips over invisible lines. */
19211 set_iterator_to_next (it, 1);
19212 it->continuation_lines_width = 0;
19213 break;
19214 }
19215
19216 /* Proceed with next display element. Note that this skips
19217 over lines invisible because of selective display. */
19218 set_iterator_to_next (it, 1);
19219
19220 /* If we truncate lines, we are done when the last displayed
19221 glyphs reach past the right margin of the window. */
19222 if (it->line_wrap == TRUNCATE
19223 && (FRAME_WINDOW_P (it->f)
19224 ? (it->current_x >= it->last_visible_x)
19225 : (it->current_x > it->last_visible_x)))
19226 {
19227 /* Maybe add truncation glyphs. */
19228 if (!FRAME_WINDOW_P (it->f))
19229 {
19230 int i, n;
19231
19232 if (!row->reversed_p)
19233 {
19234 for (i = row->used[TEXT_AREA] - 1; i > 0; --i)
19235 if (!CHAR_GLYPH_PADDING_P (row->glyphs[TEXT_AREA][i]))
19236 break;
19237 }
19238 else
19239 {
19240 for (i = 0; i < row->used[TEXT_AREA]; i++)
19241 if (!CHAR_GLYPH_PADDING_P (row->glyphs[TEXT_AREA][i]))
19242 break;
19243 /* Remove any padding glyphs at the front of ROW, to
19244 make room for the truncation glyphs we will be
19245 adding below. The loop below always inserts at
19246 least one truncation glyph, so also remove the
19247 last glyph added to ROW. */
19248 unproduce_glyphs (it, i + 1);
19249 /* Adjust i for the loop below. */
19250 i = row->used[TEXT_AREA] - (i + 1);
19251 }
19252
19253 for (n = row->used[TEXT_AREA]; i < n; ++i)
19254 {
19255 row->used[TEXT_AREA] = i;
19256 produce_special_glyphs (it, IT_TRUNCATION);
19257 }
19258 }
19259 else if (IT_OVERFLOW_NEWLINE_INTO_FRINGE (it))
19260 {
19261 /* Don't truncate if we can overflow newline into fringe. */
19262 if (!get_next_display_element (it))
19263 {
19264 it->continuation_lines_width = 0;
19265 row->ends_at_zv_p = 1;
19266 row->exact_window_width_line_p = 1;
19267 break;
19268 }
19269 if (ITERATOR_AT_END_OF_LINE_P (it))
19270 {
19271 row->exact_window_width_line_p = 1;
19272 goto at_end_of_line;
19273 }
19274 }
19275
19276 row->truncated_on_right_p = 1;
19277 it->continuation_lines_width = 0;
19278 reseat_at_next_visible_line_start (it, 0);
19279 row->ends_at_zv_p = FETCH_BYTE (IT_BYTEPOS (*it) - 1) != '\n';
19280 it->hpos = hpos_before;
19281 it->current_x = x_before;
19282 break;
19283 }
19284 }
19285
19286 if (wrap_data)
19287 bidi_unshelve_cache (wrap_data, 1);
19288
19289 /* If line is not empty and hscrolled, maybe insert truncation glyphs
19290 at the left window margin. */
19291 if (it->first_visible_x
19292 && IT_CHARPOS (*it) != CHARPOS (row->start.pos))
19293 {
19294 if (!FRAME_WINDOW_P (it->f))
19295 insert_left_trunc_glyphs (it);
19296 row->truncated_on_left_p = 1;
19297 }
19298
19299 /* Remember the position at which this line ends.
19300
19301 BIDI Note: any code that needs MATRIX_ROW_START/END_CHARPOS
19302 cannot be before the call to find_row_edges below, since that is
19303 where these positions are determined. */
19304 row->end = it->current;
19305 if (!it->bidi_p)
19306 {
19307 row->minpos = row->start.pos;
19308 row->maxpos = row->end.pos;
19309 }
19310 else
19311 {
19312 /* ROW->minpos and ROW->maxpos must be the smallest and
19313 `1 + the largest' buffer positions in ROW. But if ROW was
19314 bidi-reordered, these two positions can be anywhere in the
19315 row, so we must determine them now. */
19316 find_row_edges (it, row, min_pos, min_bpos, max_pos, max_bpos);
19317 }
19318
19319 /* If the start of this line is the overlay arrow-position, then
19320 mark this glyph row as the one containing the overlay arrow.
19321 This is clearly a mess with variable size fonts. It would be
19322 better to let it be displayed like cursors under X. */
19323 if ((row->displays_text_p || !overlay_arrow_seen)
19324 && (overlay_arrow_string = overlay_arrow_at_row (it, row),
19325 !NILP (overlay_arrow_string)))
19326 {
19327 /* Overlay arrow in window redisplay is a fringe bitmap. */
19328 if (STRINGP (overlay_arrow_string))
19329 {
19330 struct glyph_row *arrow_row
19331 = get_overlay_arrow_glyph_row (it->w, overlay_arrow_string);
19332 struct glyph *glyph = arrow_row->glyphs[TEXT_AREA];
19333 struct glyph *arrow_end = glyph + arrow_row->used[TEXT_AREA];
19334 struct glyph *p = row->glyphs[TEXT_AREA];
19335 struct glyph *p2, *end;
19336
19337 /* Copy the arrow glyphs. */
19338 while (glyph < arrow_end)
19339 *p++ = *glyph++;
19340
19341 /* Throw away padding glyphs. */
19342 p2 = p;
19343 end = row->glyphs[TEXT_AREA] + row->used[TEXT_AREA];
19344 while (p2 < end && CHAR_GLYPH_PADDING_P (*p2))
19345 ++p2;
19346 if (p2 > p)
19347 {
19348 while (p2 < end)
19349 *p++ = *p2++;
19350 row->used[TEXT_AREA] = p2 - row->glyphs[TEXT_AREA];
19351 }
19352 }
19353 else
19354 {
19355 xassert (INTEGERP (overlay_arrow_string));
19356 row->overlay_arrow_bitmap = XINT (overlay_arrow_string);
19357 }
19358 overlay_arrow_seen = 1;
19359 }
19360
19361 /* Compute pixel dimensions of this line. */
19362 compute_line_metrics (it);
19363
19364 /* Record whether this row ends inside an ellipsis. */
19365 row->ends_in_ellipsis_p
19366 = (it->method == GET_FROM_DISPLAY_VECTOR
19367 && it->ellipsis_p);
19368
19369 /* Save fringe bitmaps in this row. */
19370 row->left_user_fringe_bitmap = it->left_user_fringe_bitmap;
19371 row->left_user_fringe_face_id = it->left_user_fringe_face_id;
19372 row->right_user_fringe_bitmap = it->right_user_fringe_bitmap;
19373 row->right_user_fringe_face_id = it->right_user_fringe_face_id;
19374
19375 it->left_user_fringe_bitmap = 0;
19376 it->left_user_fringe_face_id = 0;
19377 it->right_user_fringe_bitmap = 0;
19378 it->right_user_fringe_face_id = 0;
19379
19380 /* Maybe set the cursor. */
19381 cvpos = it->w->cursor.vpos;
19382 if ((cvpos < 0
19383 /* In bidi-reordered rows, keep checking for proper cursor
19384 position even if one has been found already, because buffer
19385 positions in such rows change non-linearly with ROW->VPOS,
19386 when a line is continued. One exception: when we are at ZV,
19387 display cursor on the first suitable glyph row, since all
19388 the empty rows after that also have their position set to ZV. */
19389 /* FIXME: Revisit this when glyph ``spilling'' in continuation
19390 lines' rows is implemented for bidi-reordered rows. */
19391 || (it->bidi_p
19392 && !MATRIX_ROW (it->w->desired_matrix, cvpos)->ends_at_zv_p))
19393 && PT >= MATRIX_ROW_START_CHARPOS (row)
19394 && PT <= MATRIX_ROW_END_CHARPOS (row)
19395 && cursor_row_p (row))
19396 set_cursor_from_row (it->w, row, it->w->desired_matrix, 0, 0, 0, 0);
19397
19398 /* Highlight trailing whitespace. */
19399 if (!NILP (Vshow_trailing_whitespace))
19400 highlight_trailing_whitespace (it->f, it->glyph_row);
19401
19402 /* Prepare for the next line. This line starts horizontally at (X
19403 HPOS) = (0 0). Vertical positions are incremented. As a
19404 convenience for the caller, IT->glyph_row is set to the next
19405 row to be used. */
19406 it->current_x = it->hpos = 0;
19407 it->current_y += row->height;
19408 SET_TEXT_POS (it->eol_pos, 0, 0);
19409 ++it->vpos;
19410 ++it->glyph_row;
19411 /* The next row should by default use the same value of the
19412 reversed_p flag as this one. set_iterator_to_next decides when
19413 it's a new paragraph, and PRODUCE_GLYPHS recomputes the value of
19414 the flag accordingly. */
19415 if (it->glyph_row < MATRIX_BOTTOM_TEXT_ROW (it->w->desired_matrix, it->w))
19416 it->glyph_row->reversed_p = row->reversed_p;
19417 it->start = row->end;
19418 return row->displays_text_p;
19419
19420 #undef RECORD_MAX_MIN_POS
19421 }
19422
19423 DEFUN ("current-bidi-paragraph-direction", Fcurrent_bidi_paragraph_direction,
19424 Scurrent_bidi_paragraph_direction, 0, 1, 0,
19425 doc: /* Return paragraph direction at point in BUFFER.
19426 Value is either `left-to-right' or `right-to-left'.
19427 If BUFFER is omitted or nil, it defaults to the current buffer.
19428
19429 Paragraph direction determines how the text in the paragraph is displayed.
19430 In left-to-right paragraphs, text begins at the left margin of the window
19431 and the reading direction is generally left to right. In right-to-left
19432 paragraphs, text begins at the right margin and is read from right to left.
19433
19434 See also `bidi-paragraph-direction'. */)
19435 (Lisp_Object buffer)
19436 {
19437 struct buffer *buf = current_buffer;
19438 struct buffer *old = buf;
19439
19440 if (! NILP (buffer))
19441 {
19442 CHECK_BUFFER (buffer);
19443 buf = XBUFFER (buffer);
19444 }
19445
19446 if (NILP (BVAR (buf, bidi_display_reordering))
19447 || NILP (BVAR (buf, enable_multibyte_characters)))
19448 return Qleft_to_right;
19449 else if (!NILP (BVAR (buf, bidi_paragraph_direction)))
19450 return BVAR (buf, bidi_paragraph_direction);
19451 else
19452 {
19453 /* Determine the direction from buffer text. We could try to
19454 use current_matrix if it is up to date, but this seems fast
19455 enough as it is. */
19456 struct bidi_it itb;
19457 EMACS_INT pos = BUF_PT (buf);
19458 EMACS_INT bytepos = BUF_PT_BYTE (buf);
19459 int c;
19460 void *itb_data = bidi_shelve_cache ();
19461
19462 set_buffer_temp (buf);
19463 /* bidi_paragraph_init finds the base direction of the paragraph
19464 by searching forward from paragraph start. We need the base
19465 direction of the current or _previous_ paragraph, so we need
19466 to make sure we are within that paragraph. To that end, find
19467 the previous non-empty line. */
19468 if (pos >= ZV && pos > BEGV)
19469 {
19470 pos--;
19471 bytepos = CHAR_TO_BYTE (pos);
19472 }
19473 if (fast_looking_at (build_string ("[\f\t ]*\n"),
19474 pos, bytepos, ZV, ZV_BYTE, Qnil) > 0)
19475 {
19476 while ((c = FETCH_BYTE (bytepos)) == '\n'
19477 || c == ' ' || c == '\t' || c == '\f')
19478 {
19479 if (bytepos <= BEGV_BYTE)
19480 break;
19481 bytepos--;
19482 pos--;
19483 }
19484 while (!CHAR_HEAD_P (FETCH_BYTE (bytepos)))
19485 bytepos--;
19486 }
19487 bidi_init_it (pos, bytepos, FRAME_WINDOW_P (SELECTED_FRAME ()), &itb);
19488 itb.paragraph_dir = NEUTRAL_DIR;
19489 itb.string.s = NULL;
19490 itb.string.lstring = Qnil;
19491 itb.string.bufpos = 0;
19492 itb.string.unibyte = 0;
19493 bidi_paragraph_init (NEUTRAL_DIR, &itb, 1);
19494 bidi_unshelve_cache (itb_data, 0);
19495 set_buffer_temp (old);
19496 switch (itb.paragraph_dir)
19497 {
19498 case L2R:
19499 return Qleft_to_right;
19500 break;
19501 case R2L:
19502 return Qright_to_left;
19503 break;
19504 default:
19505 abort ();
19506 }
19507 }
19508 }
19509
19510
19511 \f
19512 /***********************************************************************
19513 Menu Bar
19514 ***********************************************************************/
19515
19516 /* Redisplay the menu bar in the frame for window W.
19517
19518 The menu bar of X frames that don't have X toolkit support is
19519 displayed in a special window W->frame->menu_bar_window.
19520
19521 The menu bar of terminal frames is treated specially as far as
19522 glyph matrices are concerned. Menu bar lines are not part of
19523 windows, so the update is done directly on the frame matrix rows
19524 for the menu bar. */
19525
19526 static void
19527 display_menu_bar (struct window *w)
19528 {
19529 struct frame *f = XFRAME (WINDOW_FRAME (w));
19530 struct it it;
19531 Lisp_Object items;
19532 int i;
19533
19534 /* Don't do all this for graphical frames. */
19535 #ifdef HAVE_NTGUI
19536 if (FRAME_W32_P (f))
19537 return;
19538 #endif
19539 #if defined (USE_X_TOOLKIT) || defined (USE_GTK)
19540 if (FRAME_X_P (f))
19541 return;
19542 #endif
19543
19544 #ifdef HAVE_NS
19545 if (FRAME_NS_P (f))
19546 return;
19547 #endif /* HAVE_NS */
19548
19549 #ifdef USE_X_TOOLKIT
19550 xassert (!FRAME_WINDOW_P (f));
19551 init_iterator (&it, w, -1, -1, f->desired_matrix->rows, MENU_FACE_ID);
19552 it.first_visible_x = 0;
19553 it.last_visible_x = FRAME_TOTAL_COLS (f) * FRAME_COLUMN_WIDTH (f);
19554 #else /* not USE_X_TOOLKIT */
19555 if (FRAME_WINDOW_P (f))
19556 {
19557 /* Menu bar lines are displayed in the desired matrix of the
19558 dummy window menu_bar_window. */
19559 struct window *menu_w;
19560 xassert (WINDOWP (f->menu_bar_window));
19561 menu_w = XWINDOW (f->menu_bar_window);
19562 init_iterator (&it, menu_w, -1, -1, menu_w->desired_matrix->rows,
19563 MENU_FACE_ID);
19564 it.first_visible_x = 0;
19565 it.last_visible_x = FRAME_TOTAL_COLS (f) * FRAME_COLUMN_WIDTH (f);
19566 }
19567 else
19568 {
19569 /* This is a TTY frame, i.e. character hpos/vpos are used as
19570 pixel x/y. */
19571 init_iterator (&it, w, -1, -1, f->desired_matrix->rows,
19572 MENU_FACE_ID);
19573 it.first_visible_x = 0;
19574 it.last_visible_x = FRAME_COLS (f);
19575 }
19576 #endif /* not USE_X_TOOLKIT */
19577
19578 /* FIXME: This should be controlled by a user option. See the
19579 comments in redisplay_tool_bar and display_mode_line about
19580 this. */
19581 it.paragraph_embedding = L2R;
19582
19583 if (! mode_line_inverse_video)
19584 /* Force the menu-bar to be displayed in the default face. */
19585 it.base_face_id = it.face_id = DEFAULT_FACE_ID;
19586
19587 /* Clear all rows of the menu bar. */
19588 for (i = 0; i < FRAME_MENU_BAR_LINES (f); ++i)
19589 {
19590 struct glyph_row *row = it.glyph_row + i;
19591 clear_glyph_row (row);
19592 row->enabled_p = 1;
19593 row->full_width_p = 1;
19594 }
19595
19596 /* Display all items of the menu bar. */
19597 items = FRAME_MENU_BAR_ITEMS (it.f);
19598 for (i = 0; i < ASIZE (items); i += 4)
19599 {
19600 Lisp_Object string;
19601
19602 /* Stop at nil string. */
19603 string = AREF (items, i + 1);
19604 if (NILP (string))
19605 break;
19606
19607 /* Remember where item was displayed. */
19608 ASET (items, i + 3, make_number (it.hpos));
19609
19610 /* Display the item, pad with one space. */
19611 if (it.current_x < it.last_visible_x)
19612 display_string (NULL, string, Qnil, 0, 0, &it,
19613 SCHARS (string) + 1, 0, 0, -1);
19614 }
19615
19616 /* Fill out the line with spaces. */
19617 if (it.current_x < it.last_visible_x)
19618 display_string ("", Qnil, Qnil, 0, 0, &it, -1, 0, 0, -1);
19619
19620 /* Compute the total height of the lines. */
19621 compute_line_metrics (&it);
19622 }
19623
19624
19625 \f
19626 /***********************************************************************
19627 Mode Line
19628 ***********************************************************************/
19629
19630 /* Redisplay mode lines in the window tree whose root is WINDOW. If
19631 FORCE is non-zero, redisplay mode lines unconditionally.
19632 Otherwise, redisplay only mode lines that are garbaged. Value is
19633 the number of windows whose mode lines were redisplayed. */
19634
19635 static int
19636 redisplay_mode_lines (Lisp_Object window, int force)
19637 {
19638 int nwindows = 0;
19639
19640 while (!NILP (window))
19641 {
19642 struct window *w = XWINDOW (window);
19643
19644 if (WINDOWP (w->hchild))
19645 nwindows += redisplay_mode_lines (w->hchild, force);
19646 else if (WINDOWP (w->vchild))
19647 nwindows += redisplay_mode_lines (w->vchild, force);
19648 else if (force
19649 || FRAME_GARBAGED_P (XFRAME (w->frame))
19650 || !MATRIX_MODE_LINE_ROW (w->current_matrix)->enabled_p)
19651 {
19652 struct text_pos lpoint;
19653 struct buffer *old = current_buffer;
19654
19655 /* Set the window's buffer for the mode line display. */
19656 SET_TEXT_POS (lpoint, PT, PT_BYTE);
19657 set_buffer_internal_1 (XBUFFER (w->buffer));
19658
19659 /* Point refers normally to the selected window. For any
19660 other window, set up appropriate value. */
19661 if (!EQ (window, selected_window))
19662 {
19663 struct text_pos pt;
19664
19665 SET_TEXT_POS_FROM_MARKER (pt, w->pointm);
19666 if (CHARPOS (pt) < BEGV)
19667 TEMP_SET_PT_BOTH (BEGV, BEGV_BYTE);
19668 else if (CHARPOS (pt) > (ZV - 1))
19669 TEMP_SET_PT_BOTH (ZV, ZV_BYTE);
19670 else
19671 TEMP_SET_PT_BOTH (CHARPOS (pt), BYTEPOS (pt));
19672 }
19673
19674 /* Display mode lines. */
19675 clear_glyph_matrix (w->desired_matrix);
19676 if (display_mode_lines (w))
19677 {
19678 ++nwindows;
19679 w->must_be_updated_p = 1;
19680 }
19681
19682 /* Restore old settings. */
19683 set_buffer_internal_1 (old);
19684 TEMP_SET_PT_BOTH (CHARPOS (lpoint), BYTEPOS (lpoint));
19685 }
19686
19687 window = w->next;
19688 }
19689
19690 return nwindows;
19691 }
19692
19693
19694 /* Display the mode and/or header line of window W. Value is the
19695 sum number of mode lines and header lines displayed. */
19696
19697 static int
19698 display_mode_lines (struct window *w)
19699 {
19700 Lisp_Object old_selected_window, old_selected_frame;
19701 int n = 0;
19702
19703 old_selected_frame = selected_frame;
19704 selected_frame = w->frame;
19705 old_selected_window = selected_window;
19706 XSETWINDOW (selected_window, w);
19707
19708 /* These will be set while the mode line specs are processed. */
19709 line_number_displayed = 0;
19710 w->column_number_displayed = Qnil;
19711
19712 if (WINDOW_WANTS_MODELINE_P (w))
19713 {
19714 struct window *sel_w = XWINDOW (old_selected_window);
19715
19716 /* Select mode line face based on the real selected window. */
19717 display_mode_line (w, CURRENT_MODE_LINE_FACE_ID_3 (sel_w, sel_w, w),
19718 BVAR (current_buffer, mode_line_format));
19719 ++n;
19720 }
19721
19722 if (WINDOW_WANTS_HEADER_LINE_P (w))
19723 {
19724 display_mode_line (w, HEADER_LINE_FACE_ID,
19725 BVAR (current_buffer, header_line_format));
19726 ++n;
19727 }
19728
19729 selected_frame = old_selected_frame;
19730 selected_window = old_selected_window;
19731 return n;
19732 }
19733
19734
19735 /* Display mode or header line of window W. FACE_ID specifies which
19736 line to display; it is either MODE_LINE_FACE_ID or
19737 HEADER_LINE_FACE_ID. FORMAT is the mode/header line format to
19738 display. Value is the pixel height of the mode/header line
19739 displayed. */
19740
19741 static int
19742 display_mode_line (struct window *w, enum face_id face_id, Lisp_Object format)
19743 {
19744 struct it it;
19745 struct face *face;
19746 int count = SPECPDL_INDEX ();
19747
19748 init_iterator (&it, w, -1, -1, NULL, face_id);
19749 /* Don't extend on a previously drawn mode-line.
19750 This may happen if called from pos_visible_p. */
19751 it.glyph_row->enabled_p = 0;
19752 prepare_desired_row (it.glyph_row);
19753
19754 it.glyph_row->mode_line_p = 1;
19755
19756 if (! mode_line_inverse_video)
19757 /* Force the mode-line to be displayed in the default face. */
19758 it.base_face_id = it.face_id = DEFAULT_FACE_ID;
19759
19760 /* FIXME: This should be controlled by a user option. But
19761 supporting such an option is not trivial, since the mode line is
19762 made up of many separate strings. */
19763 it.paragraph_embedding = L2R;
19764
19765 record_unwind_protect (unwind_format_mode_line,
19766 format_mode_line_unwind_data (NULL, Qnil, 0));
19767
19768 mode_line_target = MODE_LINE_DISPLAY;
19769
19770 /* Temporarily make frame's keyboard the current kboard so that
19771 kboard-local variables in the mode_line_format will get the right
19772 values. */
19773 push_kboard (FRAME_KBOARD (it.f));
19774 record_unwind_save_match_data ();
19775 display_mode_element (&it, 0, 0, 0, format, Qnil, 0);
19776 pop_kboard ();
19777
19778 unbind_to (count, Qnil);
19779
19780 /* Fill up with spaces. */
19781 display_string (" ", Qnil, Qnil, 0, 0, &it, 10000, -1, -1, 0);
19782
19783 compute_line_metrics (&it);
19784 it.glyph_row->full_width_p = 1;
19785 it.glyph_row->continued_p = 0;
19786 it.glyph_row->truncated_on_left_p = 0;
19787 it.glyph_row->truncated_on_right_p = 0;
19788
19789 /* Make a 3D mode-line have a shadow at its right end. */
19790 face = FACE_FROM_ID (it.f, face_id);
19791 extend_face_to_end_of_line (&it);
19792 if (face->box != FACE_NO_BOX)
19793 {
19794 struct glyph *last = (it.glyph_row->glyphs[TEXT_AREA]
19795 + it.glyph_row->used[TEXT_AREA] - 1);
19796 last->right_box_line_p = 1;
19797 }
19798
19799 return it.glyph_row->height;
19800 }
19801
19802 /* Move element ELT in LIST to the front of LIST.
19803 Return the updated list. */
19804
19805 static Lisp_Object
19806 move_elt_to_front (Lisp_Object elt, Lisp_Object list)
19807 {
19808 register Lisp_Object tail, prev;
19809 register Lisp_Object tem;
19810
19811 tail = list;
19812 prev = Qnil;
19813 while (CONSP (tail))
19814 {
19815 tem = XCAR (tail);
19816
19817 if (EQ (elt, tem))
19818 {
19819 /* Splice out the link TAIL. */
19820 if (NILP (prev))
19821 list = XCDR (tail);
19822 else
19823 Fsetcdr (prev, XCDR (tail));
19824
19825 /* Now make it the first. */
19826 Fsetcdr (tail, list);
19827 return tail;
19828 }
19829 else
19830 prev = tail;
19831 tail = XCDR (tail);
19832 QUIT;
19833 }
19834
19835 /* Not found--return unchanged LIST. */
19836 return list;
19837 }
19838
19839 /* Contribute ELT to the mode line for window IT->w. How it
19840 translates into text depends on its data type.
19841
19842 IT describes the display environment in which we display, as usual.
19843
19844 DEPTH is the depth in recursion. It is used to prevent
19845 infinite recursion here.
19846
19847 FIELD_WIDTH is the number of characters the display of ELT should
19848 occupy in the mode line, and PRECISION is the maximum number of
19849 characters to display from ELT's representation. See
19850 display_string for details.
19851
19852 Returns the hpos of the end of the text generated by ELT.
19853
19854 PROPS is a property list to add to any string we encounter.
19855
19856 If RISKY is nonzero, remove (disregard) any properties in any string
19857 we encounter, and ignore :eval and :propertize.
19858
19859 The global variable `mode_line_target' determines whether the
19860 output is passed to `store_mode_line_noprop',
19861 `store_mode_line_string', or `display_string'. */
19862
19863 static int
19864 display_mode_element (struct it *it, int depth, int field_width, int precision,
19865 Lisp_Object elt, Lisp_Object props, int risky)
19866 {
19867 int n = 0, field, prec;
19868 int literal = 0;
19869
19870 tail_recurse:
19871 if (depth > 100)
19872 elt = build_string ("*too-deep*");
19873
19874 depth++;
19875
19876 switch (SWITCH_ENUM_CAST (XTYPE (elt)))
19877 {
19878 case Lisp_String:
19879 {
19880 /* A string: output it and check for %-constructs within it. */
19881 unsigned char c;
19882 EMACS_INT offset = 0;
19883
19884 if (SCHARS (elt) > 0
19885 && (!NILP (props) || risky))
19886 {
19887 Lisp_Object oprops, aelt;
19888 oprops = Ftext_properties_at (make_number (0), elt);
19889
19890 /* If the starting string's properties are not what
19891 we want, translate the string. Also, if the string
19892 is risky, do that anyway. */
19893
19894 if (NILP (Fequal (props, oprops)) || risky)
19895 {
19896 /* If the starting string has properties,
19897 merge the specified ones onto the existing ones. */
19898 if (! NILP (oprops) && !risky)
19899 {
19900 Lisp_Object tem;
19901
19902 oprops = Fcopy_sequence (oprops);
19903 tem = props;
19904 while (CONSP (tem))
19905 {
19906 oprops = Fplist_put (oprops, XCAR (tem),
19907 XCAR (XCDR (tem)));
19908 tem = XCDR (XCDR (tem));
19909 }
19910 props = oprops;
19911 }
19912
19913 aelt = Fassoc (elt, mode_line_proptrans_alist);
19914 if (! NILP (aelt) && !NILP (Fequal (props, XCDR (aelt))))
19915 {
19916 /* AELT is what we want. Move it to the front
19917 without consing. */
19918 elt = XCAR (aelt);
19919 mode_line_proptrans_alist
19920 = move_elt_to_front (aelt, mode_line_proptrans_alist);
19921 }
19922 else
19923 {
19924 Lisp_Object tem;
19925
19926 /* If AELT has the wrong props, it is useless.
19927 so get rid of it. */
19928 if (! NILP (aelt))
19929 mode_line_proptrans_alist
19930 = Fdelq (aelt, mode_line_proptrans_alist);
19931
19932 elt = Fcopy_sequence (elt);
19933 Fset_text_properties (make_number (0), Flength (elt),
19934 props, elt);
19935 /* Add this item to mode_line_proptrans_alist. */
19936 mode_line_proptrans_alist
19937 = Fcons (Fcons (elt, props),
19938 mode_line_proptrans_alist);
19939 /* Truncate mode_line_proptrans_alist
19940 to at most 50 elements. */
19941 tem = Fnthcdr (make_number (50),
19942 mode_line_proptrans_alist);
19943 if (! NILP (tem))
19944 XSETCDR (tem, Qnil);
19945 }
19946 }
19947 }
19948
19949 offset = 0;
19950
19951 if (literal)
19952 {
19953 prec = precision - n;
19954 switch (mode_line_target)
19955 {
19956 case MODE_LINE_NOPROP:
19957 case MODE_LINE_TITLE:
19958 n += store_mode_line_noprop (SSDATA (elt), -1, prec);
19959 break;
19960 case MODE_LINE_STRING:
19961 n += store_mode_line_string (NULL, elt, 1, 0, prec, Qnil);
19962 break;
19963 case MODE_LINE_DISPLAY:
19964 n += display_string (NULL, elt, Qnil, 0, 0, it,
19965 0, prec, 0, STRING_MULTIBYTE (elt));
19966 break;
19967 }
19968
19969 break;
19970 }
19971
19972 /* Handle the non-literal case. */
19973
19974 while ((precision <= 0 || n < precision)
19975 && SREF (elt, offset) != 0
19976 && (mode_line_target != MODE_LINE_DISPLAY
19977 || it->current_x < it->last_visible_x))
19978 {
19979 EMACS_INT last_offset = offset;
19980
19981 /* Advance to end of string or next format specifier. */
19982 while ((c = SREF (elt, offset++)) != '\0' && c != '%')
19983 ;
19984
19985 if (offset - 1 != last_offset)
19986 {
19987 EMACS_INT nchars, nbytes;
19988
19989 /* Output to end of string or up to '%'. Field width
19990 is length of string. Don't output more than
19991 PRECISION allows us. */
19992 offset--;
19993
19994 prec = c_string_width (SDATA (elt) + last_offset,
19995 offset - last_offset, precision - n,
19996 &nchars, &nbytes);
19997
19998 switch (mode_line_target)
19999 {
20000 case MODE_LINE_NOPROP:
20001 case MODE_LINE_TITLE:
20002 n += store_mode_line_noprop (SSDATA (elt) + last_offset, 0, prec);
20003 break;
20004 case MODE_LINE_STRING:
20005 {
20006 EMACS_INT bytepos = last_offset;
20007 EMACS_INT charpos = string_byte_to_char (elt, bytepos);
20008 EMACS_INT endpos = (precision <= 0
20009 ? string_byte_to_char (elt, offset)
20010 : charpos + nchars);
20011
20012 n += store_mode_line_string (NULL,
20013 Fsubstring (elt, make_number (charpos),
20014 make_number (endpos)),
20015 0, 0, 0, Qnil);
20016 }
20017 break;
20018 case MODE_LINE_DISPLAY:
20019 {
20020 EMACS_INT bytepos = last_offset;
20021 EMACS_INT charpos = string_byte_to_char (elt, bytepos);
20022
20023 if (precision <= 0)
20024 nchars = string_byte_to_char (elt, offset) - charpos;
20025 n += display_string (NULL, elt, Qnil, 0, charpos,
20026 it, 0, nchars, 0,
20027 STRING_MULTIBYTE (elt));
20028 }
20029 break;
20030 }
20031 }
20032 else /* c == '%' */
20033 {
20034 EMACS_INT percent_position = offset;
20035
20036 /* Get the specified minimum width. Zero means
20037 don't pad. */
20038 field = 0;
20039 while ((c = SREF (elt, offset++)) >= '0' && c <= '9')
20040 field = field * 10 + c - '0';
20041
20042 /* Don't pad beyond the total padding allowed. */
20043 if (field_width - n > 0 && field > field_width - n)
20044 field = field_width - n;
20045
20046 /* Note that either PRECISION <= 0 or N < PRECISION. */
20047 prec = precision - n;
20048
20049 if (c == 'M')
20050 n += display_mode_element (it, depth, field, prec,
20051 Vglobal_mode_string, props,
20052 risky);
20053 else if (c != 0)
20054 {
20055 int multibyte;
20056 EMACS_INT bytepos, charpos;
20057 const char *spec;
20058 Lisp_Object string;
20059
20060 bytepos = percent_position;
20061 charpos = (STRING_MULTIBYTE (elt)
20062 ? string_byte_to_char (elt, bytepos)
20063 : bytepos);
20064 spec = decode_mode_spec (it->w, c, field, &string);
20065 multibyte = STRINGP (string) && STRING_MULTIBYTE (string);
20066
20067 switch (mode_line_target)
20068 {
20069 case MODE_LINE_NOPROP:
20070 case MODE_LINE_TITLE:
20071 n += store_mode_line_noprop (spec, field, prec);
20072 break;
20073 case MODE_LINE_STRING:
20074 {
20075 Lisp_Object tem = build_string (spec);
20076 props = Ftext_properties_at (make_number (charpos), elt);
20077 /* Should only keep face property in props */
20078 n += store_mode_line_string (NULL, tem, 0, field, prec, props);
20079 }
20080 break;
20081 case MODE_LINE_DISPLAY:
20082 {
20083 int nglyphs_before, nwritten;
20084
20085 nglyphs_before = it->glyph_row->used[TEXT_AREA];
20086 nwritten = display_string (spec, string, elt,
20087 charpos, 0, it,
20088 field, prec, 0,
20089 multibyte);
20090
20091 /* Assign to the glyphs written above the
20092 string where the `%x' came from, position
20093 of the `%'. */
20094 if (nwritten > 0)
20095 {
20096 struct glyph *glyph
20097 = (it->glyph_row->glyphs[TEXT_AREA]
20098 + nglyphs_before);
20099 int i;
20100
20101 for (i = 0; i < nwritten; ++i)
20102 {
20103 glyph[i].object = elt;
20104 glyph[i].charpos = charpos;
20105 }
20106
20107 n += nwritten;
20108 }
20109 }
20110 break;
20111 }
20112 }
20113 else /* c == 0 */
20114 break;
20115 }
20116 }
20117 }
20118 break;
20119
20120 case Lisp_Symbol:
20121 /* A symbol: process the value of the symbol recursively
20122 as if it appeared here directly. Avoid error if symbol void.
20123 Special case: if value of symbol is a string, output the string
20124 literally. */
20125 {
20126 register Lisp_Object tem;
20127
20128 /* If the variable is not marked as risky to set
20129 then its contents are risky to use. */
20130 if (NILP (Fget (elt, Qrisky_local_variable)))
20131 risky = 1;
20132
20133 tem = Fboundp (elt);
20134 if (!NILP (tem))
20135 {
20136 tem = Fsymbol_value (elt);
20137 /* If value is a string, output that string literally:
20138 don't check for % within it. */
20139 if (STRINGP (tem))
20140 literal = 1;
20141
20142 if (!EQ (tem, elt))
20143 {
20144 /* Give up right away for nil or t. */
20145 elt = tem;
20146 goto tail_recurse;
20147 }
20148 }
20149 }
20150 break;
20151
20152 case Lisp_Cons:
20153 {
20154 register Lisp_Object car, tem;
20155
20156 /* A cons cell: five distinct cases.
20157 If first element is :eval or :propertize, do something special.
20158 If first element is a string or a cons, process all the elements
20159 and effectively concatenate them.
20160 If first element is a negative number, truncate displaying cdr to
20161 at most that many characters. If positive, pad (with spaces)
20162 to at least that many characters.
20163 If first element is a symbol, process the cadr or caddr recursively
20164 according to whether the symbol's value is non-nil or nil. */
20165 car = XCAR (elt);
20166 if (EQ (car, QCeval))
20167 {
20168 /* An element of the form (:eval FORM) means evaluate FORM
20169 and use the result as mode line elements. */
20170
20171 if (risky)
20172 break;
20173
20174 if (CONSP (XCDR (elt)))
20175 {
20176 Lisp_Object spec;
20177 spec = safe_eval (XCAR (XCDR (elt)));
20178 n += display_mode_element (it, depth, field_width - n,
20179 precision - n, spec, props,
20180 risky);
20181 }
20182 }
20183 else if (EQ (car, QCpropertize))
20184 {
20185 /* An element of the form (:propertize ELT PROPS...)
20186 means display ELT but applying properties PROPS. */
20187
20188 if (risky)
20189 break;
20190
20191 if (CONSP (XCDR (elt)))
20192 n += display_mode_element (it, depth, field_width - n,
20193 precision - n, XCAR (XCDR (elt)),
20194 XCDR (XCDR (elt)), risky);
20195 }
20196 else if (SYMBOLP (car))
20197 {
20198 tem = Fboundp (car);
20199 elt = XCDR (elt);
20200 if (!CONSP (elt))
20201 goto invalid;
20202 /* elt is now the cdr, and we know it is a cons cell.
20203 Use its car if CAR has a non-nil value. */
20204 if (!NILP (tem))
20205 {
20206 tem = Fsymbol_value (car);
20207 if (!NILP (tem))
20208 {
20209 elt = XCAR (elt);
20210 goto tail_recurse;
20211 }
20212 }
20213 /* Symbol's value is nil (or symbol is unbound)
20214 Get the cddr of the original list
20215 and if possible find the caddr and use that. */
20216 elt = XCDR (elt);
20217 if (NILP (elt))
20218 break;
20219 else if (!CONSP (elt))
20220 goto invalid;
20221 elt = XCAR (elt);
20222 goto tail_recurse;
20223 }
20224 else if (INTEGERP (car))
20225 {
20226 register int lim = XINT (car);
20227 elt = XCDR (elt);
20228 if (lim < 0)
20229 {
20230 /* Negative int means reduce maximum width. */
20231 if (precision <= 0)
20232 precision = -lim;
20233 else
20234 precision = min (precision, -lim);
20235 }
20236 else if (lim > 0)
20237 {
20238 /* Padding specified. Don't let it be more than
20239 current maximum. */
20240 if (precision > 0)
20241 lim = min (precision, lim);
20242
20243 /* If that's more padding than already wanted, queue it.
20244 But don't reduce padding already specified even if
20245 that is beyond the current truncation point. */
20246 field_width = max (lim, field_width);
20247 }
20248 goto tail_recurse;
20249 }
20250 else if (STRINGP (car) || CONSP (car))
20251 {
20252 Lisp_Object halftail = elt;
20253 int len = 0;
20254
20255 while (CONSP (elt)
20256 && (precision <= 0 || n < precision))
20257 {
20258 n += display_mode_element (it, depth,
20259 /* Do padding only after the last
20260 element in the list. */
20261 (! CONSP (XCDR (elt))
20262 ? field_width - n
20263 : 0),
20264 precision - n, XCAR (elt),
20265 props, risky);
20266 elt = XCDR (elt);
20267 len++;
20268 if ((len & 1) == 0)
20269 halftail = XCDR (halftail);
20270 /* Check for cycle. */
20271 if (EQ (halftail, elt))
20272 break;
20273 }
20274 }
20275 }
20276 break;
20277
20278 default:
20279 invalid:
20280 elt = build_string ("*invalid*");
20281 goto tail_recurse;
20282 }
20283
20284 /* Pad to FIELD_WIDTH. */
20285 if (field_width > 0 && n < field_width)
20286 {
20287 switch (mode_line_target)
20288 {
20289 case MODE_LINE_NOPROP:
20290 case MODE_LINE_TITLE:
20291 n += store_mode_line_noprop ("", field_width - n, 0);
20292 break;
20293 case MODE_LINE_STRING:
20294 n += store_mode_line_string ("", Qnil, 0, field_width - n, 0, Qnil);
20295 break;
20296 case MODE_LINE_DISPLAY:
20297 n += display_string ("", Qnil, Qnil, 0, 0, it, field_width - n,
20298 0, 0, 0);
20299 break;
20300 }
20301 }
20302
20303 return n;
20304 }
20305
20306 /* Store a mode-line string element in mode_line_string_list.
20307
20308 If STRING is non-null, display that C string. Otherwise, the Lisp
20309 string LISP_STRING is displayed.
20310
20311 FIELD_WIDTH is the minimum number of output glyphs to produce.
20312 If STRING has fewer characters than FIELD_WIDTH, pad to the right
20313 with spaces. FIELD_WIDTH <= 0 means don't pad.
20314
20315 PRECISION is the maximum number of characters to output from
20316 STRING. PRECISION <= 0 means don't truncate the string.
20317
20318 If COPY_STRING is non-zero, make a copy of LISP_STRING before adding
20319 properties to the string.
20320
20321 PROPS are the properties to add to the string.
20322 The mode_line_string_face face property is always added to the string.
20323 */
20324
20325 static int
20326 store_mode_line_string (const char *string, Lisp_Object lisp_string, int copy_string,
20327 int field_width, int precision, Lisp_Object props)
20328 {
20329 EMACS_INT len;
20330 int n = 0;
20331
20332 if (string != NULL)
20333 {
20334 len = strlen (string);
20335 if (precision > 0 && len > precision)
20336 len = precision;
20337 lisp_string = make_string (string, len);
20338 if (NILP (props))
20339 props = mode_line_string_face_prop;
20340 else if (!NILP (mode_line_string_face))
20341 {
20342 Lisp_Object face = Fplist_get (props, Qface);
20343 props = Fcopy_sequence (props);
20344 if (NILP (face))
20345 face = mode_line_string_face;
20346 else
20347 face = Fcons (face, Fcons (mode_line_string_face, Qnil));
20348 props = Fplist_put (props, Qface, face);
20349 }
20350 Fadd_text_properties (make_number (0), make_number (len),
20351 props, lisp_string);
20352 }
20353 else
20354 {
20355 len = XFASTINT (Flength (lisp_string));
20356 if (precision > 0 && len > precision)
20357 {
20358 len = precision;
20359 lisp_string = Fsubstring (lisp_string, make_number (0), make_number (len));
20360 precision = -1;
20361 }
20362 if (!NILP (mode_line_string_face))
20363 {
20364 Lisp_Object face;
20365 if (NILP (props))
20366 props = Ftext_properties_at (make_number (0), lisp_string);
20367 face = Fplist_get (props, Qface);
20368 if (NILP (face))
20369 face = mode_line_string_face;
20370 else
20371 face = Fcons (face, Fcons (mode_line_string_face, Qnil));
20372 props = Fcons (Qface, Fcons (face, Qnil));
20373 if (copy_string)
20374 lisp_string = Fcopy_sequence (lisp_string);
20375 }
20376 if (!NILP (props))
20377 Fadd_text_properties (make_number (0), make_number (len),
20378 props, lisp_string);
20379 }
20380
20381 if (len > 0)
20382 {
20383 mode_line_string_list = Fcons (lisp_string, mode_line_string_list);
20384 n += len;
20385 }
20386
20387 if (field_width > len)
20388 {
20389 field_width -= len;
20390 lisp_string = Fmake_string (make_number (field_width), make_number (' '));
20391 if (!NILP (props))
20392 Fadd_text_properties (make_number (0), make_number (field_width),
20393 props, lisp_string);
20394 mode_line_string_list = Fcons (lisp_string, mode_line_string_list);
20395 n += field_width;
20396 }
20397
20398 return n;
20399 }
20400
20401
20402 DEFUN ("format-mode-line", Fformat_mode_line, Sformat_mode_line,
20403 1, 4, 0,
20404 doc: /* Format a string out of a mode line format specification.
20405 First arg FORMAT specifies the mode line format (see `mode-line-format'
20406 for details) to use.
20407
20408 By default, the format is evaluated for the currently selected window.
20409
20410 Optional second arg FACE specifies the face property to put on all
20411 characters for which no face is specified. The value nil means the
20412 default face. The value t means whatever face the window's mode line
20413 currently uses (either `mode-line' or `mode-line-inactive',
20414 depending on whether the window is the selected window or not).
20415 An integer value means the value string has no text
20416 properties.
20417
20418 Optional third and fourth args WINDOW and BUFFER specify the window
20419 and buffer to use as the context for the formatting (defaults
20420 are the selected window and the WINDOW's buffer). */)
20421 (Lisp_Object format, Lisp_Object face,
20422 Lisp_Object window, Lisp_Object buffer)
20423 {
20424 struct it it;
20425 int len;
20426 struct window *w;
20427 struct buffer *old_buffer = NULL;
20428 int face_id;
20429 int no_props = INTEGERP (face);
20430 int count = SPECPDL_INDEX ();
20431 Lisp_Object str;
20432 int string_start = 0;
20433
20434 if (NILP (window))
20435 window = selected_window;
20436 CHECK_WINDOW (window);
20437 w = XWINDOW (window);
20438
20439 if (NILP (buffer))
20440 buffer = w->buffer;
20441 CHECK_BUFFER (buffer);
20442
20443 /* Make formatting the modeline a non-op when noninteractive, otherwise
20444 there will be problems later caused by a partially initialized frame. */
20445 if (NILP (format) || noninteractive)
20446 return empty_unibyte_string;
20447
20448 if (no_props)
20449 face = Qnil;
20450
20451 face_id = (NILP (face) || EQ (face, Qdefault)) ? DEFAULT_FACE_ID
20452 : EQ (face, Qt) ? (EQ (window, selected_window)
20453 ? MODE_LINE_FACE_ID : MODE_LINE_INACTIVE_FACE_ID)
20454 : EQ (face, Qmode_line) ? MODE_LINE_FACE_ID
20455 : EQ (face, Qmode_line_inactive) ? MODE_LINE_INACTIVE_FACE_ID
20456 : EQ (face, Qheader_line) ? HEADER_LINE_FACE_ID
20457 : EQ (face, Qtool_bar) ? TOOL_BAR_FACE_ID
20458 : DEFAULT_FACE_ID;
20459
20460 if (XBUFFER (buffer) != current_buffer)
20461 old_buffer = current_buffer;
20462
20463 /* Save things including mode_line_proptrans_alist,
20464 and set that to nil so that we don't alter the outer value. */
20465 record_unwind_protect (unwind_format_mode_line,
20466 format_mode_line_unwind_data
20467 (old_buffer, selected_window, 1));
20468 mode_line_proptrans_alist = Qnil;
20469
20470 Fselect_window (window, Qt);
20471 if (old_buffer)
20472 set_buffer_internal_1 (XBUFFER (buffer));
20473
20474 init_iterator (&it, w, -1, -1, NULL, face_id);
20475
20476 if (no_props)
20477 {
20478 mode_line_target = MODE_LINE_NOPROP;
20479 mode_line_string_face_prop = Qnil;
20480 mode_line_string_list = Qnil;
20481 string_start = MODE_LINE_NOPROP_LEN (0);
20482 }
20483 else
20484 {
20485 mode_line_target = MODE_LINE_STRING;
20486 mode_line_string_list = Qnil;
20487 mode_line_string_face = face;
20488 mode_line_string_face_prop
20489 = (NILP (face) ? Qnil : Fcons (Qface, Fcons (face, Qnil)));
20490 }
20491
20492 push_kboard (FRAME_KBOARD (it.f));
20493 display_mode_element (&it, 0, 0, 0, format, Qnil, 0);
20494 pop_kboard ();
20495
20496 if (no_props)
20497 {
20498 len = MODE_LINE_NOPROP_LEN (string_start);
20499 str = make_string (mode_line_noprop_buf + string_start, len);
20500 }
20501 else
20502 {
20503 mode_line_string_list = Fnreverse (mode_line_string_list);
20504 str = Fmapconcat (intern ("identity"), mode_line_string_list,
20505 empty_unibyte_string);
20506 }
20507
20508 unbind_to (count, Qnil);
20509 return str;
20510 }
20511
20512 /* Write a null-terminated, right justified decimal representation of
20513 the positive integer D to BUF using a minimal field width WIDTH. */
20514
20515 static void
20516 pint2str (register char *buf, register int width, register EMACS_INT d)
20517 {
20518 register char *p = buf;
20519
20520 if (d <= 0)
20521 *p++ = '0';
20522 else
20523 {
20524 while (d > 0)
20525 {
20526 *p++ = d % 10 + '0';
20527 d /= 10;
20528 }
20529 }
20530
20531 for (width -= (int) (p - buf); width > 0; --width)
20532 *p++ = ' ';
20533 *p-- = '\0';
20534 while (p > buf)
20535 {
20536 d = *buf;
20537 *buf++ = *p;
20538 *p-- = d;
20539 }
20540 }
20541
20542 /* Write a null-terminated, right justified decimal and "human
20543 readable" representation of the nonnegative integer D to BUF using
20544 a minimal field width WIDTH. D should be smaller than 999.5e24. */
20545
20546 static const char power_letter[] =
20547 {
20548 0, /* no letter */
20549 'k', /* kilo */
20550 'M', /* mega */
20551 'G', /* giga */
20552 'T', /* tera */
20553 'P', /* peta */
20554 'E', /* exa */
20555 'Z', /* zetta */
20556 'Y' /* yotta */
20557 };
20558
20559 static void
20560 pint2hrstr (char *buf, int width, EMACS_INT d)
20561 {
20562 /* We aim to represent the nonnegative integer D as
20563 QUOTIENT.TENTHS * 10 ^ (3 * EXPONENT). */
20564 EMACS_INT quotient = d;
20565 int remainder = 0;
20566 /* -1 means: do not use TENTHS. */
20567 int tenths = -1;
20568 int exponent = 0;
20569
20570 /* Length of QUOTIENT.TENTHS as a string. */
20571 int length;
20572
20573 char * psuffix;
20574 char * p;
20575
20576 if (1000 <= quotient)
20577 {
20578 /* Scale to the appropriate EXPONENT. */
20579 do
20580 {
20581 remainder = quotient % 1000;
20582 quotient /= 1000;
20583 exponent++;
20584 }
20585 while (1000 <= quotient);
20586
20587 /* Round to nearest and decide whether to use TENTHS or not. */
20588 if (quotient <= 9)
20589 {
20590 tenths = remainder / 100;
20591 if (50 <= remainder % 100)
20592 {
20593 if (tenths < 9)
20594 tenths++;
20595 else
20596 {
20597 quotient++;
20598 if (quotient == 10)
20599 tenths = -1;
20600 else
20601 tenths = 0;
20602 }
20603 }
20604 }
20605 else
20606 if (500 <= remainder)
20607 {
20608 if (quotient < 999)
20609 quotient++;
20610 else
20611 {
20612 quotient = 1;
20613 exponent++;
20614 tenths = 0;
20615 }
20616 }
20617 }
20618
20619 /* Calculate the LENGTH of QUOTIENT.TENTHS as a string. */
20620 if (tenths == -1 && quotient <= 99)
20621 if (quotient <= 9)
20622 length = 1;
20623 else
20624 length = 2;
20625 else
20626 length = 3;
20627 p = psuffix = buf + max (width, length);
20628
20629 /* Print EXPONENT. */
20630 *psuffix++ = power_letter[exponent];
20631 *psuffix = '\0';
20632
20633 /* Print TENTHS. */
20634 if (tenths >= 0)
20635 {
20636 *--p = '0' + tenths;
20637 *--p = '.';
20638 }
20639
20640 /* Print QUOTIENT. */
20641 do
20642 {
20643 int digit = quotient % 10;
20644 *--p = '0' + digit;
20645 }
20646 while ((quotient /= 10) != 0);
20647
20648 /* Print leading spaces. */
20649 while (buf < p)
20650 *--p = ' ';
20651 }
20652
20653 /* Set a mnemonic character for coding_system (Lisp symbol) in BUF.
20654 If EOL_FLAG is 1, set also a mnemonic character for end-of-line
20655 type of CODING_SYSTEM. Return updated pointer into BUF. */
20656
20657 static unsigned char invalid_eol_type[] = "(*invalid*)";
20658
20659 static char *
20660 decode_mode_spec_coding (Lisp_Object coding_system, register char *buf, int eol_flag)
20661 {
20662 Lisp_Object val;
20663 int multibyte = !NILP (BVAR (current_buffer, enable_multibyte_characters));
20664 const unsigned char *eol_str;
20665 int eol_str_len;
20666 /* The EOL conversion we are using. */
20667 Lisp_Object eoltype;
20668
20669 val = CODING_SYSTEM_SPEC (coding_system);
20670 eoltype = Qnil;
20671
20672 if (!VECTORP (val)) /* Not yet decided. */
20673 {
20674 if (multibyte)
20675 *buf++ = '-';
20676 if (eol_flag)
20677 eoltype = eol_mnemonic_undecided;
20678 /* Don't mention EOL conversion if it isn't decided. */
20679 }
20680 else
20681 {
20682 Lisp_Object attrs;
20683 Lisp_Object eolvalue;
20684
20685 attrs = AREF (val, 0);
20686 eolvalue = AREF (val, 2);
20687
20688 if (multibyte)
20689 *buf++ = XFASTINT (CODING_ATTR_MNEMONIC (attrs));
20690
20691 if (eol_flag)
20692 {
20693 /* The EOL conversion that is normal on this system. */
20694
20695 if (NILP (eolvalue)) /* Not yet decided. */
20696 eoltype = eol_mnemonic_undecided;
20697 else if (VECTORP (eolvalue)) /* Not yet decided. */
20698 eoltype = eol_mnemonic_undecided;
20699 else /* eolvalue is Qunix, Qdos, or Qmac. */
20700 eoltype = (EQ (eolvalue, Qunix)
20701 ? eol_mnemonic_unix
20702 : (EQ (eolvalue, Qdos) == 1
20703 ? eol_mnemonic_dos : eol_mnemonic_mac));
20704 }
20705 }
20706
20707 if (eol_flag)
20708 {
20709 /* Mention the EOL conversion if it is not the usual one. */
20710 if (STRINGP (eoltype))
20711 {
20712 eol_str = SDATA (eoltype);
20713 eol_str_len = SBYTES (eoltype);
20714 }
20715 else if (CHARACTERP (eoltype))
20716 {
20717 unsigned char *tmp = (unsigned char *) alloca (MAX_MULTIBYTE_LENGTH);
20718 int c = XFASTINT (eoltype);
20719 eol_str_len = CHAR_STRING (c, tmp);
20720 eol_str = tmp;
20721 }
20722 else
20723 {
20724 eol_str = invalid_eol_type;
20725 eol_str_len = sizeof (invalid_eol_type) - 1;
20726 }
20727 memcpy (buf, eol_str, eol_str_len);
20728 buf += eol_str_len;
20729 }
20730
20731 return buf;
20732 }
20733
20734 /* Return a string for the output of a mode line %-spec for window W,
20735 generated by character C. FIELD_WIDTH > 0 means pad the string
20736 returned with spaces to that value. Return a Lisp string in
20737 *STRING if the resulting string is taken from that Lisp string.
20738
20739 Note we operate on the current buffer for most purposes,
20740 the exception being w->base_line_pos. */
20741
20742 static char lots_of_dashes[] = "--------------------------------------------------------------------------------------------------------------------------------------------";
20743
20744 static const char *
20745 decode_mode_spec (struct window *w, register int c, int field_width,
20746 Lisp_Object *string)
20747 {
20748 Lisp_Object obj;
20749 struct frame *f = XFRAME (WINDOW_FRAME (w));
20750 char *decode_mode_spec_buf = f->decode_mode_spec_buffer;
20751 struct buffer *b = current_buffer;
20752
20753 obj = Qnil;
20754 *string = Qnil;
20755
20756 switch (c)
20757 {
20758 case '*':
20759 if (!NILP (BVAR (b, read_only)))
20760 return "%";
20761 if (BUF_MODIFF (b) > BUF_SAVE_MODIFF (b))
20762 return "*";
20763 return "-";
20764
20765 case '+':
20766 /* This differs from %* only for a modified read-only buffer. */
20767 if (BUF_MODIFF (b) > BUF_SAVE_MODIFF (b))
20768 return "*";
20769 if (!NILP (BVAR (b, read_only)))
20770 return "%";
20771 return "-";
20772
20773 case '&':
20774 /* This differs from %* in ignoring read-only-ness. */
20775 if (BUF_MODIFF (b) > BUF_SAVE_MODIFF (b))
20776 return "*";
20777 return "-";
20778
20779 case '%':
20780 return "%";
20781
20782 case '[':
20783 {
20784 int i;
20785 char *p;
20786
20787 if (command_loop_level > 5)
20788 return "[[[... ";
20789 p = decode_mode_spec_buf;
20790 for (i = 0; i < command_loop_level; i++)
20791 *p++ = '[';
20792 *p = 0;
20793 return decode_mode_spec_buf;
20794 }
20795
20796 case ']':
20797 {
20798 int i;
20799 char *p;
20800
20801 if (command_loop_level > 5)
20802 return " ...]]]";
20803 p = decode_mode_spec_buf;
20804 for (i = 0; i < command_loop_level; i++)
20805 *p++ = ']';
20806 *p = 0;
20807 return decode_mode_spec_buf;
20808 }
20809
20810 case '-':
20811 {
20812 register int i;
20813
20814 /* Let lots_of_dashes be a string of infinite length. */
20815 if (mode_line_target == MODE_LINE_NOPROP ||
20816 mode_line_target == MODE_LINE_STRING)
20817 return "--";
20818 if (field_width <= 0
20819 || field_width > sizeof (lots_of_dashes))
20820 {
20821 for (i = 0; i < FRAME_MESSAGE_BUF_SIZE (f) - 1; ++i)
20822 decode_mode_spec_buf[i] = '-';
20823 decode_mode_spec_buf[i] = '\0';
20824 return decode_mode_spec_buf;
20825 }
20826 else
20827 return lots_of_dashes;
20828 }
20829
20830 case 'b':
20831 obj = BVAR (b, name);
20832 break;
20833
20834 case 'c':
20835 /* %c and %l are ignored in `frame-title-format'.
20836 (In redisplay_internal, the frame title is drawn _before_ the
20837 windows are updated, so the stuff which depends on actual
20838 window contents (such as %l) may fail to render properly, or
20839 even crash emacs.) */
20840 if (mode_line_target == MODE_LINE_TITLE)
20841 return "";
20842 else
20843 {
20844 EMACS_INT col = current_column ();
20845 w->column_number_displayed = make_number (col);
20846 pint2str (decode_mode_spec_buf, field_width, col);
20847 return decode_mode_spec_buf;
20848 }
20849
20850 case 'e':
20851 #ifndef SYSTEM_MALLOC
20852 {
20853 if (NILP (Vmemory_full))
20854 return "";
20855 else
20856 return "!MEM FULL! ";
20857 }
20858 #else
20859 return "";
20860 #endif
20861
20862 case 'F':
20863 /* %F displays the frame name. */
20864 if (!NILP (f->title))
20865 return SSDATA (f->title);
20866 if (f->explicit_name || ! FRAME_WINDOW_P (f))
20867 return SSDATA (f->name);
20868 return "Emacs";
20869
20870 case 'f':
20871 obj = BVAR (b, filename);
20872 break;
20873
20874 case 'i':
20875 {
20876 EMACS_INT size = ZV - BEGV;
20877 pint2str (decode_mode_spec_buf, field_width, size);
20878 return decode_mode_spec_buf;
20879 }
20880
20881 case 'I':
20882 {
20883 EMACS_INT size = ZV - BEGV;
20884 pint2hrstr (decode_mode_spec_buf, field_width, size);
20885 return decode_mode_spec_buf;
20886 }
20887
20888 case 'l':
20889 {
20890 EMACS_INT startpos, startpos_byte, line, linepos, linepos_byte;
20891 EMACS_INT topline, nlines, height;
20892 EMACS_INT junk;
20893
20894 /* %c and %l are ignored in `frame-title-format'. */
20895 if (mode_line_target == MODE_LINE_TITLE)
20896 return "";
20897
20898 startpos = XMARKER (w->start)->charpos;
20899 startpos_byte = marker_byte_position (w->start);
20900 height = WINDOW_TOTAL_LINES (w);
20901
20902 /* If we decided that this buffer isn't suitable for line numbers,
20903 don't forget that too fast. */
20904 if (EQ (w->base_line_pos, w->buffer))
20905 goto no_value;
20906 /* But do forget it, if the window shows a different buffer now. */
20907 else if (BUFFERP (w->base_line_pos))
20908 w->base_line_pos = Qnil;
20909
20910 /* If the buffer is very big, don't waste time. */
20911 if (INTEGERP (Vline_number_display_limit)
20912 && BUF_ZV (b) - BUF_BEGV (b) > XINT (Vline_number_display_limit))
20913 {
20914 w->base_line_pos = Qnil;
20915 w->base_line_number = Qnil;
20916 goto no_value;
20917 }
20918
20919 if (INTEGERP (w->base_line_number)
20920 && INTEGERP (w->base_line_pos)
20921 && XFASTINT (w->base_line_pos) <= startpos)
20922 {
20923 line = XFASTINT (w->base_line_number);
20924 linepos = XFASTINT (w->base_line_pos);
20925 linepos_byte = buf_charpos_to_bytepos (b, linepos);
20926 }
20927 else
20928 {
20929 line = 1;
20930 linepos = BUF_BEGV (b);
20931 linepos_byte = BUF_BEGV_BYTE (b);
20932 }
20933
20934 /* Count lines from base line to window start position. */
20935 nlines = display_count_lines (linepos_byte,
20936 startpos_byte,
20937 startpos, &junk);
20938
20939 topline = nlines + line;
20940
20941 /* Determine a new base line, if the old one is too close
20942 or too far away, or if we did not have one.
20943 "Too close" means it's plausible a scroll-down would
20944 go back past it. */
20945 if (startpos == BUF_BEGV (b))
20946 {
20947 w->base_line_number = make_number (topline);
20948 w->base_line_pos = make_number (BUF_BEGV (b));
20949 }
20950 else if (nlines < height + 25 || nlines > height * 3 + 50
20951 || linepos == BUF_BEGV (b))
20952 {
20953 EMACS_INT limit = BUF_BEGV (b);
20954 EMACS_INT limit_byte = BUF_BEGV_BYTE (b);
20955 EMACS_INT position;
20956 EMACS_INT distance =
20957 (height * 2 + 30) * line_number_display_limit_width;
20958
20959 if (startpos - distance > limit)
20960 {
20961 limit = startpos - distance;
20962 limit_byte = CHAR_TO_BYTE (limit);
20963 }
20964
20965 nlines = display_count_lines (startpos_byte,
20966 limit_byte,
20967 - (height * 2 + 30),
20968 &position);
20969 /* If we couldn't find the lines we wanted within
20970 line_number_display_limit_width chars per line,
20971 give up on line numbers for this window. */
20972 if (position == limit_byte && limit == startpos - distance)
20973 {
20974 w->base_line_pos = w->buffer;
20975 w->base_line_number = Qnil;
20976 goto no_value;
20977 }
20978
20979 w->base_line_number = make_number (topline - nlines);
20980 w->base_line_pos = make_number (BYTE_TO_CHAR (position));
20981 }
20982
20983 /* Now count lines from the start pos to point. */
20984 nlines = display_count_lines (startpos_byte,
20985 PT_BYTE, PT, &junk);
20986
20987 /* Record that we did display the line number. */
20988 line_number_displayed = 1;
20989
20990 /* Make the string to show. */
20991 pint2str (decode_mode_spec_buf, field_width, topline + nlines);
20992 return decode_mode_spec_buf;
20993 no_value:
20994 {
20995 char* p = decode_mode_spec_buf;
20996 int pad = field_width - 2;
20997 while (pad-- > 0)
20998 *p++ = ' ';
20999 *p++ = '?';
21000 *p++ = '?';
21001 *p = '\0';
21002 return decode_mode_spec_buf;
21003 }
21004 }
21005 break;
21006
21007 case 'm':
21008 obj = BVAR (b, mode_name);
21009 break;
21010
21011 case 'n':
21012 if (BUF_BEGV (b) > BUF_BEG (b) || BUF_ZV (b) < BUF_Z (b))
21013 return " Narrow";
21014 break;
21015
21016 case 'p':
21017 {
21018 EMACS_INT pos = marker_position (w->start);
21019 EMACS_INT total = BUF_ZV (b) - BUF_BEGV (b);
21020
21021 if (XFASTINT (w->window_end_pos) <= BUF_Z (b) - BUF_ZV (b))
21022 {
21023 if (pos <= BUF_BEGV (b))
21024 return "All";
21025 else
21026 return "Bottom";
21027 }
21028 else if (pos <= BUF_BEGV (b))
21029 return "Top";
21030 else
21031 {
21032 if (total > 1000000)
21033 /* Do it differently for a large value, to avoid overflow. */
21034 total = ((pos - BUF_BEGV (b)) + (total / 100) - 1) / (total / 100);
21035 else
21036 total = ((pos - BUF_BEGV (b)) * 100 + total - 1) / total;
21037 /* We can't normally display a 3-digit number,
21038 so get us a 2-digit number that is close. */
21039 if (total == 100)
21040 total = 99;
21041 sprintf (decode_mode_spec_buf, "%2"pI"d%%", total);
21042 return decode_mode_spec_buf;
21043 }
21044 }
21045
21046 /* Display percentage of size above the bottom of the screen. */
21047 case 'P':
21048 {
21049 EMACS_INT toppos = marker_position (w->start);
21050 EMACS_INT botpos = BUF_Z (b) - XFASTINT (w->window_end_pos);
21051 EMACS_INT total = BUF_ZV (b) - BUF_BEGV (b);
21052
21053 if (botpos >= BUF_ZV (b))
21054 {
21055 if (toppos <= BUF_BEGV (b))
21056 return "All";
21057 else
21058 return "Bottom";
21059 }
21060 else
21061 {
21062 if (total > 1000000)
21063 /* Do it differently for a large value, to avoid overflow. */
21064 total = ((botpos - BUF_BEGV (b)) + (total / 100) - 1) / (total / 100);
21065 else
21066 total = ((botpos - BUF_BEGV (b)) * 100 + total - 1) / total;
21067 /* We can't normally display a 3-digit number,
21068 so get us a 2-digit number that is close. */
21069 if (total == 100)
21070 total = 99;
21071 if (toppos <= BUF_BEGV (b))
21072 sprintf (decode_mode_spec_buf, "Top%2"pI"d%%", total);
21073 else
21074 sprintf (decode_mode_spec_buf, "%2"pI"d%%", total);
21075 return decode_mode_spec_buf;
21076 }
21077 }
21078
21079 case 's':
21080 /* status of process */
21081 obj = Fget_buffer_process (Fcurrent_buffer ());
21082 if (NILP (obj))
21083 return "no process";
21084 #ifndef MSDOS
21085 obj = Fsymbol_name (Fprocess_status (obj));
21086 #endif
21087 break;
21088
21089 case '@':
21090 {
21091 int count = inhibit_garbage_collection ();
21092 Lisp_Object val = call1 (intern ("file-remote-p"),
21093 BVAR (current_buffer, directory));
21094 unbind_to (count, Qnil);
21095
21096 if (NILP (val))
21097 return "-";
21098 else
21099 return "@";
21100 }
21101
21102 case 't': /* indicate TEXT or BINARY */
21103 return "T";
21104
21105 case 'z':
21106 /* coding-system (not including end-of-line format) */
21107 case 'Z':
21108 /* coding-system (including end-of-line type) */
21109 {
21110 int eol_flag = (c == 'Z');
21111 char *p = decode_mode_spec_buf;
21112
21113 if (! FRAME_WINDOW_P (f))
21114 {
21115 /* No need to mention EOL here--the terminal never needs
21116 to do EOL conversion. */
21117 p = decode_mode_spec_coding (CODING_ID_NAME
21118 (FRAME_KEYBOARD_CODING (f)->id),
21119 p, 0);
21120 p = decode_mode_spec_coding (CODING_ID_NAME
21121 (FRAME_TERMINAL_CODING (f)->id),
21122 p, 0);
21123 }
21124 p = decode_mode_spec_coding (BVAR (b, buffer_file_coding_system),
21125 p, eol_flag);
21126
21127 #if 0 /* This proves to be annoying; I think we can do without. -- rms. */
21128 #ifdef subprocesses
21129 obj = Fget_buffer_process (Fcurrent_buffer ());
21130 if (PROCESSP (obj))
21131 {
21132 p = decode_mode_spec_coding (XPROCESS (obj)->decode_coding_system,
21133 p, eol_flag);
21134 p = decode_mode_spec_coding (XPROCESS (obj)->encode_coding_system,
21135 p, eol_flag);
21136 }
21137 #endif /* subprocesses */
21138 #endif /* 0 */
21139 *p = 0;
21140 return decode_mode_spec_buf;
21141 }
21142 }
21143
21144 if (STRINGP (obj))
21145 {
21146 *string = obj;
21147 return SSDATA (obj);
21148 }
21149 else
21150 return "";
21151 }
21152
21153
21154 /* Count up to COUNT lines starting from START_BYTE.
21155 But don't go beyond LIMIT_BYTE.
21156 Return the number of lines thus found (always nonnegative).
21157
21158 Set *BYTE_POS_PTR to 1 if we found COUNT lines, 0 if we hit LIMIT. */
21159
21160 static EMACS_INT
21161 display_count_lines (EMACS_INT start_byte,
21162 EMACS_INT limit_byte, EMACS_INT count,
21163 EMACS_INT *byte_pos_ptr)
21164 {
21165 register unsigned char *cursor;
21166 unsigned char *base;
21167
21168 register EMACS_INT ceiling;
21169 register unsigned char *ceiling_addr;
21170 EMACS_INT orig_count = count;
21171
21172 /* If we are not in selective display mode,
21173 check only for newlines. */
21174 int selective_display = (!NILP (BVAR (current_buffer, selective_display))
21175 && !INTEGERP (BVAR (current_buffer, selective_display)));
21176
21177 if (count > 0)
21178 {
21179 while (start_byte < limit_byte)
21180 {
21181 ceiling = BUFFER_CEILING_OF (start_byte);
21182 ceiling = min (limit_byte - 1, ceiling);
21183 ceiling_addr = BYTE_POS_ADDR (ceiling) + 1;
21184 base = (cursor = BYTE_POS_ADDR (start_byte));
21185 while (1)
21186 {
21187 if (selective_display)
21188 while (*cursor != '\n' && *cursor != 015 && ++cursor != ceiling_addr)
21189 ;
21190 else
21191 while (*cursor != '\n' && ++cursor != ceiling_addr)
21192 ;
21193
21194 if (cursor != ceiling_addr)
21195 {
21196 if (--count == 0)
21197 {
21198 start_byte += cursor - base + 1;
21199 *byte_pos_ptr = start_byte;
21200 return orig_count;
21201 }
21202 else
21203 if (++cursor == ceiling_addr)
21204 break;
21205 }
21206 else
21207 break;
21208 }
21209 start_byte += cursor - base;
21210 }
21211 }
21212 else
21213 {
21214 while (start_byte > limit_byte)
21215 {
21216 ceiling = BUFFER_FLOOR_OF (start_byte - 1);
21217 ceiling = max (limit_byte, ceiling);
21218 ceiling_addr = BYTE_POS_ADDR (ceiling) - 1;
21219 base = (cursor = BYTE_POS_ADDR (start_byte - 1) + 1);
21220 while (1)
21221 {
21222 if (selective_display)
21223 while (--cursor != ceiling_addr
21224 && *cursor != '\n' && *cursor != 015)
21225 ;
21226 else
21227 while (--cursor != ceiling_addr && *cursor != '\n')
21228 ;
21229
21230 if (cursor != ceiling_addr)
21231 {
21232 if (++count == 0)
21233 {
21234 start_byte += cursor - base + 1;
21235 *byte_pos_ptr = start_byte;
21236 /* When scanning backwards, we should
21237 not count the newline posterior to which we stop. */
21238 return - orig_count - 1;
21239 }
21240 }
21241 else
21242 break;
21243 }
21244 /* Here we add 1 to compensate for the last decrement
21245 of CURSOR, which took it past the valid range. */
21246 start_byte += cursor - base + 1;
21247 }
21248 }
21249
21250 *byte_pos_ptr = limit_byte;
21251
21252 if (count < 0)
21253 return - orig_count + count;
21254 return orig_count - count;
21255
21256 }
21257
21258
21259 \f
21260 /***********************************************************************
21261 Displaying strings
21262 ***********************************************************************/
21263
21264 /* Display a NUL-terminated string, starting with index START.
21265
21266 If STRING is non-null, display that C string. Otherwise, the Lisp
21267 string LISP_STRING is displayed. There's a case that STRING is
21268 non-null and LISP_STRING is not nil. It means STRING is a string
21269 data of LISP_STRING. In that case, we display LISP_STRING while
21270 ignoring its text properties.
21271
21272 If FACE_STRING is not nil, FACE_STRING_POS is a position in
21273 FACE_STRING. Display STRING or LISP_STRING with the face at
21274 FACE_STRING_POS in FACE_STRING:
21275
21276 Display the string in the environment given by IT, but use the
21277 standard display table, temporarily.
21278
21279 FIELD_WIDTH is the minimum number of output glyphs to produce.
21280 If STRING has fewer characters than FIELD_WIDTH, pad to the right
21281 with spaces. If STRING has more characters, more than FIELD_WIDTH
21282 glyphs will be produced. FIELD_WIDTH <= 0 means don't pad.
21283
21284 PRECISION is the maximum number of characters to output from
21285 STRING. PRECISION < 0 means don't truncate the string.
21286
21287 This is roughly equivalent to printf format specifiers:
21288
21289 FIELD_WIDTH PRECISION PRINTF
21290 ----------------------------------------
21291 -1 -1 %s
21292 -1 10 %.10s
21293 10 -1 %10s
21294 20 10 %20.10s
21295
21296 MULTIBYTE zero means do not display multibyte chars, > 0 means do
21297 display them, and < 0 means obey the current buffer's value of
21298 enable_multibyte_characters.
21299
21300 Value is the number of columns displayed. */
21301
21302 static int
21303 display_string (const char *string, Lisp_Object lisp_string, Lisp_Object face_string,
21304 EMACS_INT face_string_pos, EMACS_INT start, struct it *it,
21305 int field_width, int precision, int max_x, int multibyte)
21306 {
21307 int hpos_at_start = it->hpos;
21308 int saved_face_id = it->face_id;
21309 struct glyph_row *row = it->glyph_row;
21310 EMACS_INT it_charpos;
21311
21312 /* Initialize the iterator IT for iteration over STRING beginning
21313 with index START. */
21314 reseat_to_string (it, NILP (lisp_string) ? string : NULL, lisp_string, start,
21315 precision, field_width, multibyte);
21316 if (string && STRINGP (lisp_string))
21317 /* LISP_STRING is the one returned by decode_mode_spec. We should
21318 ignore its text properties. */
21319 it->stop_charpos = it->end_charpos;
21320
21321 /* If displaying STRING, set up the face of the iterator from
21322 FACE_STRING, if that's given. */
21323 if (STRINGP (face_string))
21324 {
21325 EMACS_INT endptr;
21326 struct face *face;
21327
21328 it->face_id
21329 = face_at_string_position (it->w, face_string, face_string_pos,
21330 0, it->region_beg_charpos,
21331 it->region_end_charpos,
21332 &endptr, it->base_face_id, 0);
21333 face = FACE_FROM_ID (it->f, it->face_id);
21334 it->face_box_p = face->box != FACE_NO_BOX;
21335 }
21336
21337 /* Set max_x to the maximum allowed X position. Don't let it go
21338 beyond the right edge of the window. */
21339 if (max_x <= 0)
21340 max_x = it->last_visible_x;
21341 else
21342 max_x = min (max_x, it->last_visible_x);
21343
21344 /* Skip over display elements that are not visible. because IT->w is
21345 hscrolled. */
21346 if (it->current_x < it->first_visible_x)
21347 move_it_in_display_line_to (it, 100000, it->first_visible_x,
21348 MOVE_TO_POS | MOVE_TO_X);
21349
21350 row->ascent = it->max_ascent;
21351 row->height = it->max_ascent + it->max_descent;
21352 row->phys_ascent = it->max_phys_ascent;
21353 row->phys_height = it->max_phys_ascent + it->max_phys_descent;
21354 row->extra_line_spacing = it->max_extra_line_spacing;
21355
21356 if (STRINGP (it->string))
21357 it_charpos = IT_STRING_CHARPOS (*it);
21358 else
21359 it_charpos = IT_CHARPOS (*it);
21360
21361 /* This condition is for the case that we are called with current_x
21362 past last_visible_x. */
21363 while (it->current_x < max_x)
21364 {
21365 int x_before, x, n_glyphs_before, i, nglyphs;
21366
21367 /* Get the next display element. */
21368 if (!get_next_display_element (it))
21369 break;
21370
21371 /* Produce glyphs. */
21372 x_before = it->current_x;
21373 n_glyphs_before = row->used[TEXT_AREA];
21374 PRODUCE_GLYPHS (it);
21375
21376 nglyphs = row->used[TEXT_AREA] - n_glyphs_before;
21377 i = 0;
21378 x = x_before;
21379 while (i < nglyphs)
21380 {
21381 struct glyph *glyph = row->glyphs[TEXT_AREA] + n_glyphs_before + i;
21382
21383 if (it->line_wrap != TRUNCATE
21384 && x + glyph->pixel_width > max_x)
21385 {
21386 /* End of continued line or max_x reached. */
21387 if (CHAR_GLYPH_PADDING_P (*glyph))
21388 {
21389 /* A wide character is unbreakable. */
21390 if (row->reversed_p)
21391 unproduce_glyphs (it, row->used[TEXT_AREA]
21392 - n_glyphs_before);
21393 row->used[TEXT_AREA] = n_glyphs_before;
21394 it->current_x = x_before;
21395 }
21396 else
21397 {
21398 if (row->reversed_p)
21399 unproduce_glyphs (it, row->used[TEXT_AREA]
21400 - (n_glyphs_before + i));
21401 row->used[TEXT_AREA] = n_glyphs_before + i;
21402 it->current_x = x;
21403 }
21404 break;
21405 }
21406 else if (x + glyph->pixel_width >= it->first_visible_x)
21407 {
21408 /* Glyph is at least partially visible. */
21409 ++it->hpos;
21410 if (x < it->first_visible_x)
21411 row->x = x - it->first_visible_x;
21412 }
21413 else
21414 {
21415 /* Glyph is off the left margin of the display area.
21416 Should not happen. */
21417 abort ();
21418 }
21419
21420 row->ascent = max (row->ascent, it->max_ascent);
21421 row->height = max (row->height, it->max_ascent + it->max_descent);
21422 row->phys_ascent = max (row->phys_ascent, it->max_phys_ascent);
21423 row->phys_height = max (row->phys_height,
21424 it->max_phys_ascent + it->max_phys_descent);
21425 row->extra_line_spacing = max (row->extra_line_spacing,
21426 it->max_extra_line_spacing);
21427 x += glyph->pixel_width;
21428 ++i;
21429 }
21430
21431 /* Stop if max_x reached. */
21432 if (i < nglyphs)
21433 break;
21434
21435 /* Stop at line ends. */
21436 if (ITERATOR_AT_END_OF_LINE_P (it))
21437 {
21438 it->continuation_lines_width = 0;
21439 break;
21440 }
21441
21442 set_iterator_to_next (it, 1);
21443 if (STRINGP (it->string))
21444 it_charpos = IT_STRING_CHARPOS (*it);
21445 else
21446 it_charpos = IT_CHARPOS (*it);
21447
21448 /* Stop if truncating at the right edge. */
21449 if (it->line_wrap == TRUNCATE
21450 && it->current_x >= it->last_visible_x)
21451 {
21452 /* Add truncation mark, but don't do it if the line is
21453 truncated at a padding space. */
21454 if (it_charpos < it->string_nchars)
21455 {
21456 if (!FRAME_WINDOW_P (it->f))
21457 {
21458 int ii, n;
21459
21460 if (it->current_x > it->last_visible_x)
21461 {
21462 if (!row->reversed_p)
21463 {
21464 for (ii = row->used[TEXT_AREA] - 1; ii > 0; --ii)
21465 if (!CHAR_GLYPH_PADDING_P (row->glyphs[TEXT_AREA][ii]))
21466 break;
21467 }
21468 else
21469 {
21470 for (ii = 0; ii < row->used[TEXT_AREA]; ii++)
21471 if (!CHAR_GLYPH_PADDING_P (row->glyphs[TEXT_AREA][ii]))
21472 break;
21473 unproduce_glyphs (it, ii + 1);
21474 ii = row->used[TEXT_AREA] - (ii + 1);
21475 }
21476 for (n = row->used[TEXT_AREA]; ii < n; ++ii)
21477 {
21478 row->used[TEXT_AREA] = ii;
21479 produce_special_glyphs (it, IT_TRUNCATION);
21480 }
21481 }
21482 produce_special_glyphs (it, IT_TRUNCATION);
21483 }
21484 row->truncated_on_right_p = 1;
21485 }
21486 break;
21487 }
21488 }
21489
21490 /* Maybe insert a truncation at the left. */
21491 if (it->first_visible_x
21492 && it_charpos > 0)
21493 {
21494 if (!FRAME_WINDOW_P (it->f))
21495 insert_left_trunc_glyphs (it);
21496 row->truncated_on_left_p = 1;
21497 }
21498
21499 it->face_id = saved_face_id;
21500
21501 /* Value is number of columns displayed. */
21502 return it->hpos - hpos_at_start;
21503 }
21504
21505
21506 \f
21507 /* This is like a combination of memq and assq. Return 1/2 if PROPVAL
21508 appears as an element of LIST or as the car of an element of LIST.
21509 If PROPVAL is a list, compare each element against LIST in that
21510 way, and return 1/2 if any element of PROPVAL is found in LIST.
21511 Otherwise return 0. This function cannot quit.
21512 The return value is 2 if the text is invisible but with an ellipsis
21513 and 1 if it's invisible and without an ellipsis. */
21514
21515 int
21516 invisible_p (register Lisp_Object propval, Lisp_Object list)
21517 {
21518 register Lisp_Object tail, proptail;
21519
21520 for (tail = list; CONSP (tail); tail = XCDR (tail))
21521 {
21522 register Lisp_Object tem;
21523 tem = XCAR (tail);
21524 if (EQ (propval, tem))
21525 return 1;
21526 if (CONSP (tem) && EQ (propval, XCAR (tem)))
21527 return NILP (XCDR (tem)) ? 1 : 2;
21528 }
21529
21530 if (CONSP (propval))
21531 {
21532 for (proptail = propval; CONSP (proptail); proptail = XCDR (proptail))
21533 {
21534 Lisp_Object propelt;
21535 propelt = XCAR (proptail);
21536 for (tail = list; CONSP (tail); tail = XCDR (tail))
21537 {
21538 register Lisp_Object tem;
21539 tem = XCAR (tail);
21540 if (EQ (propelt, tem))
21541 return 1;
21542 if (CONSP (tem) && EQ (propelt, XCAR (tem)))
21543 return NILP (XCDR (tem)) ? 1 : 2;
21544 }
21545 }
21546 }
21547
21548 return 0;
21549 }
21550
21551 DEFUN ("invisible-p", Finvisible_p, Sinvisible_p, 1, 1, 0,
21552 doc: /* Non-nil if the property makes the text invisible.
21553 POS-OR-PROP can be a marker or number, in which case it is taken to be
21554 a position in the current buffer and the value of the `invisible' property
21555 is checked; or it can be some other value, which is then presumed to be the
21556 value of the `invisible' property of the text of interest.
21557 The non-nil value returned can be t for truly invisible text or something
21558 else if the text is replaced by an ellipsis. */)
21559 (Lisp_Object pos_or_prop)
21560 {
21561 Lisp_Object prop
21562 = (NATNUMP (pos_or_prop) || MARKERP (pos_or_prop)
21563 ? Fget_char_property (pos_or_prop, Qinvisible, Qnil)
21564 : pos_or_prop);
21565 int invis = TEXT_PROP_MEANS_INVISIBLE (prop);
21566 return (invis == 0 ? Qnil
21567 : invis == 1 ? Qt
21568 : make_number (invis));
21569 }
21570
21571 /* Calculate a width or height in pixels from a specification using
21572 the following elements:
21573
21574 SPEC ::=
21575 NUM - a (fractional) multiple of the default font width/height
21576 (NUM) - specifies exactly NUM pixels
21577 UNIT - a fixed number of pixels, see below.
21578 ELEMENT - size of a display element in pixels, see below.
21579 (NUM . SPEC) - equals NUM * SPEC
21580 (+ SPEC SPEC ...) - add pixel values
21581 (- SPEC SPEC ...) - subtract pixel values
21582 (- SPEC) - negate pixel value
21583
21584 NUM ::=
21585 INT or FLOAT - a number constant
21586 SYMBOL - use symbol's (buffer local) variable binding.
21587
21588 UNIT ::=
21589 in - pixels per inch *)
21590 mm - pixels per 1/1000 meter *)
21591 cm - pixels per 1/100 meter *)
21592 width - width of current font in pixels.
21593 height - height of current font in pixels.
21594
21595 *) using the ratio(s) defined in display-pixels-per-inch.
21596
21597 ELEMENT ::=
21598
21599 left-fringe - left fringe width in pixels
21600 right-fringe - right fringe width in pixels
21601
21602 left-margin - left margin width in pixels
21603 right-margin - right margin width in pixels
21604
21605 scroll-bar - scroll-bar area width in pixels
21606
21607 Examples:
21608
21609 Pixels corresponding to 5 inches:
21610 (5 . in)
21611
21612 Total width of non-text areas on left side of window (if scroll-bar is on left):
21613 '(space :width (+ left-fringe left-margin scroll-bar))
21614
21615 Align to first text column (in header line):
21616 '(space :align-to 0)
21617
21618 Align to middle of text area minus half the width of variable `my-image'
21619 containing a loaded image:
21620 '(space :align-to (0.5 . (- text my-image)))
21621
21622 Width of left margin minus width of 1 character in the default font:
21623 '(space :width (- left-margin 1))
21624
21625 Width of left margin minus width of 2 characters in the current font:
21626 '(space :width (- left-margin (2 . width)))
21627
21628 Center 1 character over left-margin (in header line):
21629 '(space :align-to (+ left-margin (0.5 . left-margin) -0.5))
21630
21631 Different ways to express width of left fringe plus left margin minus one pixel:
21632 '(space :width (- (+ left-fringe left-margin) (1)))
21633 '(space :width (+ left-fringe left-margin (- (1))))
21634 '(space :width (+ left-fringe left-margin (-1)))
21635
21636 */
21637
21638 #define NUMVAL(X) \
21639 ((INTEGERP (X) || FLOATP (X)) \
21640 ? XFLOATINT (X) \
21641 : - 1)
21642
21643 static int
21644 calc_pixel_width_or_height (double *res, struct it *it, Lisp_Object prop,
21645 struct font *font, int width_p, int *align_to)
21646 {
21647 double pixels;
21648
21649 #define OK_PIXELS(val) ((*res = (double)(val)), 1)
21650 #define OK_ALIGN_TO(val) ((*align_to = (int)(val)), 1)
21651
21652 if (NILP (prop))
21653 return OK_PIXELS (0);
21654
21655 xassert (FRAME_LIVE_P (it->f));
21656
21657 if (SYMBOLP (prop))
21658 {
21659 if (SCHARS (SYMBOL_NAME (prop)) == 2)
21660 {
21661 char *unit = SSDATA (SYMBOL_NAME (prop));
21662
21663 if (unit[0] == 'i' && unit[1] == 'n')
21664 pixels = 1.0;
21665 else if (unit[0] == 'm' && unit[1] == 'm')
21666 pixels = 25.4;
21667 else if (unit[0] == 'c' && unit[1] == 'm')
21668 pixels = 2.54;
21669 else
21670 pixels = 0;
21671 if (pixels > 0)
21672 {
21673 double ppi;
21674 #ifdef HAVE_WINDOW_SYSTEM
21675 if (FRAME_WINDOW_P (it->f)
21676 && (ppi = (width_p
21677 ? FRAME_X_DISPLAY_INFO (it->f)->resx
21678 : FRAME_X_DISPLAY_INFO (it->f)->resy),
21679 ppi > 0))
21680 return OK_PIXELS (ppi / pixels);
21681 #endif
21682
21683 if ((ppi = NUMVAL (Vdisplay_pixels_per_inch), ppi > 0)
21684 || (CONSP (Vdisplay_pixels_per_inch)
21685 && (ppi = (width_p
21686 ? NUMVAL (XCAR (Vdisplay_pixels_per_inch))
21687 : NUMVAL (XCDR (Vdisplay_pixels_per_inch))),
21688 ppi > 0)))
21689 return OK_PIXELS (ppi / pixels);
21690
21691 return 0;
21692 }
21693 }
21694
21695 #ifdef HAVE_WINDOW_SYSTEM
21696 if (EQ (prop, Qheight))
21697 return OK_PIXELS (font ? FONT_HEIGHT (font) : FRAME_LINE_HEIGHT (it->f));
21698 if (EQ (prop, Qwidth))
21699 return OK_PIXELS (font ? FONT_WIDTH (font) : FRAME_COLUMN_WIDTH (it->f));
21700 #else
21701 if (EQ (prop, Qheight) || EQ (prop, Qwidth))
21702 return OK_PIXELS (1);
21703 #endif
21704
21705 if (EQ (prop, Qtext))
21706 return OK_PIXELS (width_p
21707 ? window_box_width (it->w, TEXT_AREA)
21708 : WINDOW_BOX_HEIGHT_NO_MODE_LINE (it->w));
21709
21710 if (align_to && *align_to < 0)
21711 {
21712 *res = 0;
21713 if (EQ (prop, Qleft))
21714 return OK_ALIGN_TO (window_box_left_offset (it->w, TEXT_AREA));
21715 if (EQ (prop, Qright))
21716 return OK_ALIGN_TO (window_box_right_offset (it->w, TEXT_AREA));
21717 if (EQ (prop, Qcenter))
21718 return OK_ALIGN_TO (window_box_left_offset (it->w, TEXT_AREA)
21719 + window_box_width (it->w, TEXT_AREA) / 2);
21720 if (EQ (prop, Qleft_fringe))
21721 return OK_ALIGN_TO (WINDOW_HAS_FRINGES_OUTSIDE_MARGINS (it->w)
21722 ? WINDOW_LEFT_SCROLL_BAR_AREA_WIDTH (it->w)
21723 : window_box_right_offset (it->w, LEFT_MARGIN_AREA));
21724 if (EQ (prop, Qright_fringe))
21725 return OK_ALIGN_TO (WINDOW_HAS_FRINGES_OUTSIDE_MARGINS (it->w)
21726 ? window_box_right_offset (it->w, RIGHT_MARGIN_AREA)
21727 : window_box_right_offset (it->w, TEXT_AREA));
21728 if (EQ (prop, Qleft_margin))
21729 return OK_ALIGN_TO (window_box_left_offset (it->w, LEFT_MARGIN_AREA));
21730 if (EQ (prop, Qright_margin))
21731 return OK_ALIGN_TO (window_box_left_offset (it->w, RIGHT_MARGIN_AREA));
21732 if (EQ (prop, Qscroll_bar))
21733 return OK_ALIGN_TO (WINDOW_HAS_VERTICAL_SCROLL_BAR_ON_LEFT (it->w)
21734 ? 0
21735 : (window_box_right_offset (it->w, RIGHT_MARGIN_AREA)
21736 + (WINDOW_HAS_FRINGES_OUTSIDE_MARGINS (it->w)
21737 ? WINDOW_RIGHT_FRINGE_WIDTH (it->w)
21738 : 0)));
21739 }
21740 else
21741 {
21742 if (EQ (prop, Qleft_fringe))
21743 return OK_PIXELS (WINDOW_LEFT_FRINGE_WIDTH (it->w));
21744 if (EQ (prop, Qright_fringe))
21745 return OK_PIXELS (WINDOW_RIGHT_FRINGE_WIDTH (it->w));
21746 if (EQ (prop, Qleft_margin))
21747 return OK_PIXELS (WINDOW_LEFT_MARGIN_WIDTH (it->w));
21748 if (EQ (prop, Qright_margin))
21749 return OK_PIXELS (WINDOW_RIGHT_MARGIN_WIDTH (it->w));
21750 if (EQ (prop, Qscroll_bar))
21751 return OK_PIXELS (WINDOW_SCROLL_BAR_AREA_WIDTH (it->w));
21752 }
21753
21754 prop = Fbuffer_local_value (prop, it->w->buffer);
21755 }
21756
21757 if (INTEGERP (prop) || FLOATP (prop))
21758 {
21759 int base_unit = (width_p
21760 ? FRAME_COLUMN_WIDTH (it->f)
21761 : FRAME_LINE_HEIGHT (it->f));
21762 return OK_PIXELS (XFLOATINT (prop) * base_unit);
21763 }
21764
21765 if (CONSP (prop))
21766 {
21767 Lisp_Object car = XCAR (prop);
21768 Lisp_Object cdr = XCDR (prop);
21769
21770 if (SYMBOLP (car))
21771 {
21772 #ifdef HAVE_WINDOW_SYSTEM
21773 if (FRAME_WINDOW_P (it->f)
21774 && valid_image_p (prop))
21775 {
21776 ptrdiff_t id = lookup_image (it->f, prop);
21777 struct image *img = IMAGE_FROM_ID (it->f, id);
21778
21779 return OK_PIXELS (width_p ? img->width : img->height);
21780 }
21781 #endif
21782 if (EQ (car, Qplus) || EQ (car, Qminus))
21783 {
21784 int first = 1;
21785 double px;
21786
21787 pixels = 0;
21788 while (CONSP (cdr))
21789 {
21790 if (!calc_pixel_width_or_height (&px, it, XCAR (cdr),
21791 font, width_p, align_to))
21792 return 0;
21793 if (first)
21794 pixels = (EQ (car, Qplus) ? px : -px), first = 0;
21795 else
21796 pixels += px;
21797 cdr = XCDR (cdr);
21798 }
21799 if (EQ (car, Qminus))
21800 pixels = -pixels;
21801 return OK_PIXELS (pixels);
21802 }
21803
21804 car = Fbuffer_local_value (car, it->w->buffer);
21805 }
21806
21807 if (INTEGERP (car) || FLOATP (car))
21808 {
21809 double fact;
21810 pixels = XFLOATINT (car);
21811 if (NILP (cdr))
21812 return OK_PIXELS (pixels);
21813 if (calc_pixel_width_or_height (&fact, it, cdr,
21814 font, width_p, align_to))
21815 return OK_PIXELS (pixels * fact);
21816 return 0;
21817 }
21818
21819 return 0;
21820 }
21821
21822 return 0;
21823 }
21824
21825 \f
21826 /***********************************************************************
21827 Glyph Display
21828 ***********************************************************************/
21829
21830 #ifdef HAVE_WINDOW_SYSTEM
21831
21832 #if GLYPH_DEBUG
21833
21834 void
21835 dump_glyph_string (struct glyph_string *s)
21836 {
21837 fprintf (stderr, "glyph string\n");
21838 fprintf (stderr, " x, y, w, h = %d, %d, %d, %d\n",
21839 s->x, s->y, s->width, s->height);
21840 fprintf (stderr, " ybase = %d\n", s->ybase);
21841 fprintf (stderr, " hl = %d\n", s->hl);
21842 fprintf (stderr, " left overhang = %d, right = %d\n",
21843 s->left_overhang, s->right_overhang);
21844 fprintf (stderr, " nchars = %d\n", s->nchars);
21845 fprintf (stderr, " extends to end of line = %d\n",
21846 s->extends_to_end_of_line_p);
21847 fprintf (stderr, " font height = %d\n", FONT_HEIGHT (s->font));
21848 fprintf (stderr, " bg width = %d\n", s->background_width);
21849 }
21850
21851 #endif /* GLYPH_DEBUG */
21852
21853 /* Initialize glyph string S. CHAR2B is a suitably allocated vector
21854 of XChar2b structures for S; it can't be allocated in
21855 init_glyph_string because it must be allocated via `alloca'. W
21856 is the window on which S is drawn. ROW and AREA are the glyph row
21857 and area within the row from which S is constructed. START is the
21858 index of the first glyph structure covered by S. HL is a
21859 face-override for drawing S. */
21860
21861 #ifdef HAVE_NTGUI
21862 #define OPTIONAL_HDC(hdc) HDC hdc,
21863 #define DECLARE_HDC(hdc) HDC hdc;
21864 #define ALLOCATE_HDC(hdc, f) hdc = get_frame_dc ((f))
21865 #define RELEASE_HDC(hdc, f) release_frame_dc ((f), (hdc))
21866 #endif
21867
21868 #ifndef OPTIONAL_HDC
21869 #define OPTIONAL_HDC(hdc)
21870 #define DECLARE_HDC(hdc)
21871 #define ALLOCATE_HDC(hdc, f)
21872 #define RELEASE_HDC(hdc, f)
21873 #endif
21874
21875 static void
21876 init_glyph_string (struct glyph_string *s,
21877 OPTIONAL_HDC (hdc)
21878 XChar2b *char2b, struct window *w, struct glyph_row *row,
21879 enum glyph_row_area area, int start, enum draw_glyphs_face hl)
21880 {
21881 memset (s, 0, sizeof *s);
21882 s->w = w;
21883 s->f = XFRAME (w->frame);
21884 #ifdef HAVE_NTGUI
21885 s->hdc = hdc;
21886 #endif
21887 s->display = FRAME_X_DISPLAY (s->f);
21888 s->window = FRAME_X_WINDOW (s->f);
21889 s->char2b = char2b;
21890 s->hl = hl;
21891 s->row = row;
21892 s->area = area;
21893 s->first_glyph = row->glyphs[area] + start;
21894 s->height = row->height;
21895 s->y = WINDOW_TO_FRAME_PIXEL_Y (w, row->y);
21896 s->ybase = s->y + row->ascent;
21897 }
21898
21899
21900 /* Append the list of glyph strings with head H and tail T to the list
21901 with head *HEAD and tail *TAIL. Set *HEAD and *TAIL to the result. */
21902
21903 static inline void
21904 append_glyph_string_lists (struct glyph_string **head, struct glyph_string **tail,
21905 struct glyph_string *h, struct glyph_string *t)
21906 {
21907 if (h)
21908 {
21909 if (*head)
21910 (*tail)->next = h;
21911 else
21912 *head = h;
21913 h->prev = *tail;
21914 *tail = t;
21915 }
21916 }
21917
21918
21919 /* Prepend the list of glyph strings with head H and tail T to the
21920 list with head *HEAD and tail *TAIL. Set *HEAD and *TAIL to the
21921 result. */
21922
21923 static inline void
21924 prepend_glyph_string_lists (struct glyph_string **head, struct glyph_string **tail,
21925 struct glyph_string *h, struct glyph_string *t)
21926 {
21927 if (h)
21928 {
21929 if (*head)
21930 (*head)->prev = t;
21931 else
21932 *tail = t;
21933 t->next = *head;
21934 *head = h;
21935 }
21936 }
21937
21938
21939 /* Append glyph string S to the list with head *HEAD and tail *TAIL.
21940 Set *HEAD and *TAIL to the resulting list. */
21941
21942 static inline void
21943 append_glyph_string (struct glyph_string **head, struct glyph_string **tail,
21944 struct glyph_string *s)
21945 {
21946 s->next = s->prev = NULL;
21947 append_glyph_string_lists (head, tail, s, s);
21948 }
21949
21950
21951 /* Get face and two-byte form of character C in face FACE_ID on frame F.
21952 The encoding of C is returned in *CHAR2B. DISPLAY_P non-zero means
21953 make sure that X resources for the face returned are allocated.
21954 Value is a pointer to a realized face that is ready for display if
21955 DISPLAY_P is non-zero. */
21956
21957 static inline struct face *
21958 get_char_face_and_encoding (struct frame *f, int c, int face_id,
21959 XChar2b *char2b, int display_p)
21960 {
21961 struct face *face = FACE_FROM_ID (f, face_id);
21962
21963 if (face->font)
21964 {
21965 unsigned code = face->font->driver->encode_char (face->font, c);
21966
21967 if (code != FONT_INVALID_CODE)
21968 STORE_XCHAR2B (char2b, (code >> 8), (code & 0xFF));
21969 else
21970 STORE_XCHAR2B (char2b, 0, 0);
21971 }
21972
21973 /* Make sure X resources of the face are allocated. */
21974 #ifdef HAVE_X_WINDOWS
21975 if (display_p)
21976 #endif
21977 {
21978 xassert (face != NULL);
21979 PREPARE_FACE_FOR_DISPLAY (f, face);
21980 }
21981
21982 return face;
21983 }
21984
21985
21986 /* Get face and two-byte form of character glyph GLYPH on frame F.
21987 The encoding of GLYPH->u.ch is returned in *CHAR2B. Value is
21988 a pointer to a realized face that is ready for display. */
21989
21990 static inline struct face *
21991 get_glyph_face_and_encoding (struct frame *f, struct glyph *glyph,
21992 XChar2b *char2b, int *two_byte_p)
21993 {
21994 struct face *face;
21995
21996 xassert (glyph->type == CHAR_GLYPH);
21997 face = FACE_FROM_ID (f, glyph->face_id);
21998
21999 if (two_byte_p)
22000 *two_byte_p = 0;
22001
22002 if (face->font)
22003 {
22004 unsigned code;
22005
22006 if (CHAR_BYTE8_P (glyph->u.ch))
22007 code = CHAR_TO_BYTE8 (glyph->u.ch);
22008 else
22009 code = face->font->driver->encode_char (face->font, glyph->u.ch);
22010
22011 if (code != FONT_INVALID_CODE)
22012 STORE_XCHAR2B (char2b, (code >> 8), (code & 0xFF));
22013 else
22014 STORE_XCHAR2B (char2b, 0, 0);
22015 }
22016
22017 /* Make sure X resources of the face are allocated. */
22018 xassert (face != NULL);
22019 PREPARE_FACE_FOR_DISPLAY (f, face);
22020 return face;
22021 }
22022
22023
22024 /* Get glyph code of character C in FONT in the two-byte form CHAR2B.
22025 Retunr 1 if FONT has a glyph for C, otherwise return 0. */
22026
22027 static inline int
22028 get_char_glyph_code (int c, struct font *font, XChar2b *char2b)
22029 {
22030 unsigned code;
22031
22032 if (CHAR_BYTE8_P (c))
22033 code = CHAR_TO_BYTE8 (c);
22034 else
22035 code = font->driver->encode_char (font, c);
22036
22037 if (code == FONT_INVALID_CODE)
22038 return 0;
22039 STORE_XCHAR2B (char2b, (code >> 8), (code & 0xFF));
22040 return 1;
22041 }
22042
22043
22044 /* Fill glyph string S with composition components specified by S->cmp.
22045
22046 BASE_FACE is the base face of the composition.
22047 S->cmp_from is the index of the first component for S.
22048
22049 OVERLAPS non-zero means S should draw the foreground only, and use
22050 its physical height for clipping. See also draw_glyphs.
22051
22052 Value is the index of a component not in S. */
22053
22054 static int
22055 fill_composite_glyph_string (struct glyph_string *s, struct face *base_face,
22056 int overlaps)
22057 {
22058 int i;
22059 /* For all glyphs of this composition, starting at the offset
22060 S->cmp_from, until we reach the end of the definition or encounter a
22061 glyph that requires the different face, add it to S. */
22062 struct face *face;
22063
22064 xassert (s);
22065
22066 s->for_overlaps = overlaps;
22067 s->face = NULL;
22068 s->font = NULL;
22069 for (i = s->cmp_from; i < s->cmp->glyph_len; i++)
22070 {
22071 int c = COMPOSITION_GLYPH (s->cmp, i);
22072
22073 /* TAB in a composition means display glyphs with padding space
22074 on the left or right. */
22075 if (c != '\t')
22076 {
22077 int face_id = FACE_FOR_CHAR (s->f, base_face->ascii_face, c,
22078 -1, Qnil);
22079
22080 face = get_char_face_and_encoding (s->f, c, face_id,
22081 s->char2b + i, 1);
22082 if (face)
22083 {
22084 if (! s->face)
22085 {
22086 s->face = face;
22087 s->font = s->face->font;
22088 }
22089 else if (s->face != face)
22090 break;
22091 }
22092 }
22093 ++s->nchars;
22094 }
22095 s->cmp_to = i;
22096
22097 /* All glyph strings for the same composition has the same width,
22098 i.e. the width set for the first component of the composition. */
22099 s->width = s->first_glyph->pixel_width;
22100
22101 /* If the specified font could not be loaded, use the frame's
22102 default font, but record the fact that we couldn't load it in
22103 the glyph string so that we can draw rectangles for the
22104 characters of the glyph string. */
22105 if (s->font == NULL)
22106 {
22107 s->font_not_found_p = 1;
22108 s->font = FRAME_FONT (s->f);
22109 }
22110
22111 /* Adjust base line for subscript/superscript text. */
22112 s->ybase += s->first_glyph->voffset;
22113
22114 /* This glyph string must always be drawn with 16-bit functions. */
22115 s->two_byte_p = 1;
22116
22117 return s->cmp_to;
22118 }
22119
22120 static int
22121 fill_gstring_glyph_string (struct glyph_string *s, int face_id,
22122 int start, int end, int overlaps)
22123 {
22124 struct glyph *glyph, *last;
22125 Lisp_Object lgstring;
22126 int i;
22127
22128 s->for_overlaps = overlaps;
22129 glyph = s->row->glyphs[s->area] + start;
22130 last = s->row->glyphs[s->area] + end;
22131 s->cmp_id = glyph->u.cmp.id;
22132 s->cmp_from = glyph->slice.cmp.from;
22133 s->cmp_to = glyph->slice.cmp.to + 1;
22134 s->face = FACE_FROM_ID (s->f, face_id);
22135 lgstring = composition_gstring_from_id (s->cmp_id);
22136 s->font = XFONT_OBJECT (LGSTRING_FONT (lgstring));
22137 glyph++;
22138 while (glyph < last
22139 && glyph->u.cmp.automatic
22140 && glyph->u.cmp.id == s->cmp_id
22141 && s->cmp_to == glyph->slice.cmp.from)
22142 s->cmp_to = (glyph++)->slice.cmp.to + 1;
22143
22144 for (i = s->cmp_from; i < s->cmp_to; i++)
22145 {
22146 Lisp_Object lglyph = LGSTRING_GLYPH (lgstring, i);
22147 unsigned code = LGLYPH_CODE (lglyph);
22148
22149 STORE_XCHAR2B ((s->char2b + i), code >> 8, code & 0xFF);
22150 }
22151 s->width = composition_gstring_width (lgstring, s->cmp_from, s->cmp_to, NULL);
22152 return glyph - s->row->glyphs[s->area];
22153 }
22154
22155
22156 /* Fill glyph string S from a sequence glyphs for glyphless characters.
22157 See the comment of fill_glyph_string for arguments.
22158 Value is the index of the first glyph not in S. */
22159
22160
22161 static int
22162 fill_glyphless_glyph_string (struct glyph_string *s, int face_id,
22163 int start, int end, int overlaps)
22164 {
22165 struct glyph *glyph, *last;
22166 int voffset;
22167
22168 xassert (s->first_glyph->type == GLYPHLESS_GLYPH);
22169 s->for_overlaps = overlaps;
22170 glyph = s->row->glyphs[s->area] + start;
22171 last = s->row->glyphs[s->area] + end;
22172 voffset = glyph->voffset;
22173 s->face = FACE_FROM_ID (s->f, face_id);
22174 s->font = s->face->font;
22175 s->nchars = 1;
22176 s->width = glyph->pixel_width;
22177 glyph++;
22178 while (glyph < last
22179 && glyph->type == GLYPHLESS_GLYPH
22180 && glyph->voffset == voffset
22181 && glyph->face_id == face_id)
22182 {
22183 s->nchars++;
22184 s->width += glyph->pixel_width;
22185 glyph++;
22186 }
22187 s->ybase += voffset;
22188 return glyph - s->row->glyphs[s->area];
22189 }
22190
22191
22192 /* Fill glyph string S from a sequence of character glyphs.
22193
22194 FACE_ID is the face id of the string. START is the index of the
22195 first glyph to consider, END is the index of the last + 1.
22196 OVERLAPS non-zero means S should draw the foreground only, and use
22197 its physical height for clipping. See also draw_glyphs.
22198
22199 Value is the index of the first glyph not in S. */
22200
22201 static int
22202 fill_glyph_string (struct glyph_string *s, int face_id,
22203 int start, int end, int overlaps)
22204 {
22205 struct glyph *glyph, *last;
22206 int voffset;
22207 int glyph_not_available_p;
22208
22209 xassert (s->f == XFRAME (s->w->frame));
22210 xassert (s->nchars == 0);
22211 xassert (start >= 0 && end > start);
22212
22213 s->for_overlaps = overlaps;
22214 glyph = s->row->glyphs[s->area] + start;
22215 last = s->row->glyphs[s->area] + end;
22216 voffset = glyph->voffset;
22217 s->padding_p = glyph->padding_p;
22218 glyph_not_available_p = glyph->glyph_not_available_p;
22219
22220 while (glyph < last
22221 && glyph->type == CHAR_GLYPH
22222 && glyph->voffset == voffset
22223 /* Same face id implies same font, nowadays. */
22224 && glyph->face_id == face_id
22225 && glyph->glyph_not_available_p == glyph_not_available_p)
22226 {
22227 int two_byte_p;
22228
22229 s->face = get_glyph_face_and_encoding (s->f, glyph,
22230 s->char2b + s->nchars,
22231 &two_byte_p);
22232 s->two_byte_p = two_byte_p;
22233 ++s->nchars;
22234 xassert (s->nchars <= end - start);
22235 s->width += glyph->pixel_width;
22236 if (glyph++->padding_p != s->padding_p)
22237 break;
22238 }
22239
22240 s->font = s->face->font;
22241
22242 /* If the specified font could not be loaded, use the frame's font,
22243 but record the fact that we couldn't load it in
22244 S->font_not_found_p so that we can draw rectangles for the
22245 characters of the glyph string. */
22246 if (s->font == NULL || glyph_not_available_p)
22247 {
22248 s->font_not_found_p = 1;
22249 s->font = FRAME_FONT (s->f);
22250 }
22251
22252 /* Adjust base line for subscript/superscript text. */
22253 s->ybase += voffset;
22254
22255 xassert (s->face && s->face->gc);
22256 return glyph - s->row->glyphs[s->area];
22257 }
22258
22259
22260 /* Fill glyph string S from image glyph S->first_glyph. */
22261
22262 static void
22263 fill_image_glyph_string (struct glyph_string *s)
22264 {
22265 xassert (s->first_glyph->type == IMAGE_GLYPH);
22266 s->img = IMAGE_FROM_ID (s->f, s->first_glyph->u.img_id);
22267 xassert (s->img);
22268 s->slice = s->first_glyph->slice.img;
22269 s->face = FACE_FROM_ID (s->f, s->first_glyph->face_id);
22270 s->font = s->face->font;
22271 s->width = s->first_glyph->pixel_width;
22272
22273 /* Adjust base line for subscript/superscript text. */
22274 s->ybase += s->first_glyph->voffset;
22275 }
22276
22277
22278 /* Fill glyph string S from a sequence of stretch glyphs.
22279
22280 START is the index of the first glyph to consider,
22281 END is the index of the last + 1.
22282
22283 Value is the index of the first glyph not in S. */
22284
22285 static int
22286 fill_stretch_glyph_string (struct glyph_string *s, int start, int end)
22287 {
22288 struct glyph *glyph, *last;
22289 int voffset, face_id;
22290
22291 xassert (s->first_glyph->type == STRETCH_GLYPH);
22292
22293 glyph = s->row->glyphs[s->area] + start;
22294 last = s->row->glyphs[s->area] + end;
22295 face_id = glyph->face_id;
22296 s->face = FACE_FROM_ID (s->f, face_id);
22297 s->font = s->face->font;
22298 s->width = glyph->pixel_width;
22299 s->nchars = 1;
22300 voffset = glyph->voffset;
22301
22302 for (++glyph;
22303 (glyph < last
22304 && glyph->type == STRETCH_GLYPH
22305 && glyph->voffset == voffset
22306 && glyph->face_id == face_id);
22307 ++glyph)
22308 s->width += glyph->pixel_width;
22309
22310 /* Adjust base line for subscript/superscript text. */
22311 s->ybase += voffset;
22312
22313 /* The case that face->gc == 0 is handled when drawing the glyph
22314 string by calling PREPARE_FACE_FOR_DISPLAY. */
22315 xassert (s->face);
22316 return glyph - s->row->glyphs[s->area];
22317 }
22318
22319 static struct font_metrics *
22320 get_per_char_metric (struct font *font, XChar2b *char2b)
22321 {
22322 static struct font_metrics metrics;
22323 unsigned code = (XCHAR2B_BYTE1 (char2b) << 8) | XCHAR2B_BYTE2 (char2b);
22324
22325 if (! font || code == FONT_INVALID_CODE)
22326 return NULL;
22327 font->driver->text_extents (font, &code, 1, &metrics);
22328 return &metrics;
22329 }
22330
22331 /* EXPORT for RIF:
22332 Set *LEFT and *RIGHT to the left and right overhang of GLYPH on
22333 frame F. Overhangs of glyphs other than type CHAR_GLYPH are
22334 assumed to be zero. */
22335
22336 void
22337 x_get_glyph_overhangs (struct glyph *glyph, struct frame *f, int *left, int *right)
22338 {
22339 *left = *right = 0;
22340
22341 if (glyph->type == CHAR_GLYPH)
22342 {
22343 struct face *face;
22344 XChar2b char2b;
22345 struct font_metrics *pcm;
22346
22347 face = get_glyph_face_and_encoding (f, glyph, &char2b, NULL);
22348 if (face->font && (pcm = get_per_char_metric (face->font, &char2b)))
22349 {
22350 if (pcm->rbearing > pcm->width)
22351 *right = pcm->rbearing - pcm->width;
22352 if (pcm->lbearing < 0)
22353 *left = -pcm->lbearing;
22354 }
22355 }
22356 else if (glyph->type == COMPOSITE_GLYPH)
22357 {
22358 if (! glyph->u.cmp.automatic)
22359 {
22360 struct composition *cmp = composition_table[glyph->u.cmp.id];
22361
22362 if (cmp->rbearing > cmp->pixel_width)
22363 *right = cmp->rbearing - cmp->pixel_width;
22364 if (cmp->lbearing < 0)
22365 *left = - cmp->lbearing;
22366 }
22367 else
22368 {
22369 Lisp_Object gstring = composition_gstring_from_id (glyph->u.cmp.id);
22370 struct font_metrics metrics;
22371
22372 composition_gstring_width (gstring, glyph->slice.cmp.from,
22373 glyph->slice.cmp.to + 1, &metrics);
22374 if (metrics.rbearing > metrics.width)
22375 *right = metrics.rbearing - metrics.width;
22376 if (metrics.lbearing < 0)
22377 *left = - metrics.lbearing;
22378 }
22379 }
22380 }
22381
22382
22383 /* Return the index of the first glyph preceding glyph string S that
22384 is overwritten by S because of S's left overhang. Value is -1
22385 if no glyphs are overwritten. */
22386
22387 static int
22388 left_overwritten (struct glyph_string *s)
22389 {
22390 int k;
22391
22392 if (s->left_overhang)
22393 {
22394 int x = 0, i;
22395 struct glyph *glyphs = s->row->glyphs[s->area];
22396 int first = s->first_glyph - glyphs;
22397
22398 for (i = first - 1; i >= 0 && x > -s->left_overhang; --i)
22399 x -= glyphs[i].pixel_width;
22400
22401 k = i + 1;
22402 }
22403 else
22404 k = -1;
22405
22406 return k;
22407 }
22408
22409
22410 /* Return the index of the first glyph preceding glyph string S that
22411 is overwriting S because of its right overhang. Value is -1 if no
22412 glyph in front of S overwrites S. */
22413
22414 static int
22415 left_overwriting (struct glyph_string *s)
22416 {
22417 int i, k, x;
22418 struct glyph *glyphs = s->row->glyphs[s->area];
22419 int first = s->first_glyph - glyphs;
22420
22421 k = -1;
22422 x = 0;
22423 for (i = first - 1; i >= 0; --i)
22424 {
22425 int left, right;
22426 x_get_glyph_overhangs (glyphs + i, s->f, &left, &right);
22427 if (x + right > 0)
22428 k = i;
22429 x -= glyphs[i].pixel_width;
22430 }
22431
22432 return k;
22433 }
22434
22435
22436 /* Return the index of the last glyph following glyph string S that is
22437 overwritten by S because of S's right overhang. Value is -1 if
22438 no such glyph is found. */
22439
22440 static int
22441 right_overwritten (struct glyph_string *s)
22442 {
22443 int k = -1;
22444
22445 if (s->right_overhang)
22446 {
22447 int x = 0, i;
22448 struct glyph *glyphs = s->row->glyphs[s->area];
22449 int first = (s->first_glyph - glyphs) + (s->cmp ? 1 : s->nchars);
22450 int end = s->row->used[s->area];
22451
22452 for (i = first; i < end && s->right_overhang > x; ++i)
22453 x += glyphs[i].pixel_width;
22454
22455 k = i;
22456 }
22457
22458 return k;
22459 }
22460
22461
22462 /* Return the index of the last glyph following glyph string S that
22463 overwrites S because of its left overhang. Value is negative
22464 if no such glyph is found. */
22465
22466 static int
22467 right_overwriting (struct glyph_string *s)
22468 {
22469 int i, k, x;
22470 int end = s->row->used[s->area];
22471 struct glyph *glyphs = s->row->glyphs[s->area];
22472 int first = (s->first_glyph - glyphs) + (s->cmp ? 1 : s->nchars);
22473
22474 k = -1;
22475 x = 0;
22476 for (i = first; i < end; ++i)
22477 {
22478 int left, right;
22479 x_get_glyph_overhangs (glyphs + i, s->f, &left, &right);
22480 if (x - left < 0)
22481 k = i;
22482 x += glyphs[i].pixel_width;
22483 }
22484
22485 return k;
22486 }
22487
22488
22489 /* Set background width of glyph string S. START is the index of the
22490 first glyph following S. LAST_X is the right-most x-position + 1
22491 in the drawing area. */
22492
22493 static inline void
22494 set_glyph_string_background_width (struct glyph_string *s, int start, int last_x)
22495 {
22496 /* If the face of this glyph string has to be drawn to the end of
22497 the drawing area, set S->extends_to_end_of_line_p. */
22498
22499 if (start == s->row->used[s->area]
22500 && s->area == TEXT_AREA
22501 && ((s->row->fill_line_p
22502 && (s->hl == DRAW_NORMAL_TEXT
22503 || s->hl == DRAW_IMAGE_RAISED
22504 || s->hl == DRAW_IMAGE_SUNKEN))
22505 || s->hl == DRAW_MOUSE_FACE))
22506 s->extends_to_end_of_line_p = 1;
22507
22508 /* If S extends its face to the end of the line, set its
22509 background_width to the distance to the right edge of the drawing
22510 area. */
22511 if (s->extends_to_end_of_line_p)
22512 s->background_width = last_x - s->x + 1;
22513 else
22514 s->background_width = s->width;
22515 }
22516
22517
22518 /* Compute overhangs and x-positions for glyph string S and its
22519 predecessors, or successors. X is the starting x-position for S.
22520 BACKWARD_P non-zero means process predecessors. */
22521
22522 static void
22523 compute_overhangs_and_x (struct glyph_string *s, int x, int backward_p)
22524 {
22525 if (backward_p)
22526 {
22527 while (s)
22528 {
22529 if (FRAME_RIF (s->f)->compute_glyph_string_overhangs)
22530 FRAME_RIF (s->f)->compute_glyph_string_overhangs (s);
22531 x -= s->width;
22532 s->x = x;
22533 s = s->prev;
22534 }
22535 }
22536 else
22537 {
22538 while (s)
22539 {
22540 if (FRAME_RIF (s->f)->compute_glyph_string_overhangs)
22541 FRAME_RIF (s->f)->compute_glyph_string_overhangs (s);
22542 s->x = x;
22543 x += s->width;
22544 s = s->next;
22545 }
22546 }
22547 }
22548
22549
22550
22551 /* The following macros are only called from draw_glyphs below.
22552 They reference the following parameters of that function directly:
22553 `w', `row', `area', and `overlap_p'
22554 as well as the following local variables:
22555 `s', `f', and `hdc' (in W32) */
22556
22557 #ifdef HAVE_NTGUI
22558 /* On W32, silently add local `hdc' variable to argument list of
22559 init_glyph_string. */
22560 #define INIT_GLYPH_STRING(s, char2b, w, row, area, start, hl) \
22561 init_glyph_string (s, hdc, char2b, w, row, area, start, hl)
22562 #else
22563 #define INIT_GLYPH_STRING(s, char2b, w, row, area, start, hl) \
22564 init_glyph_string (s, char2b, w, row, area, start, hl)
22565 #endif
22566
22567 /* Add a glyph string for a stretch glyph to the list of strings
22568 between HEAD and TAIL. START is the index of the stretch glyph in
22569 row area AREA of glyph row ROW. END is the index of the last glyph
22570 in that glyph row area. X is the current output position assigned
22571 to the new glyph string constructed. HL overrides that face of the
22572 glyph; e.g. it is DRAW_CURSOR if a cursor has to be drawn. LAST_X
22573 is the right-most x-position of the drawing area. */
22574
22575 /* SunOS 4 bundled cc, barfed on continuations in the arg lists here
22576 and below -- keep them on one line. */
22577 #define BUILD_STRETCH_GLYPH_STRING(START, END, HEAD, TAIL, HL, X, LAST_X) \
22578 do \
22579 { \
22580 s = (struct glyph_string *) alloca (sizeof *s); \
22581 INIT_GLYPH_STRING (s, NULL, w, row, area, START, HL); \
22582 START = fill_stretch_glyph_string (s, START, END); \
22583 append_glyph_string (&HEAD, &TAIL, s); \
22584 s->x = (X); \
22585 } \
22586 while (0)
22587
22588
22589 /* Add a glyph string for an image glyph to the list of strings
22590 between HEAD and TAIL. START is the index of the image glyph in
22591 row area AREA of glyph row ROW. END is the index of the last glyph
22592 in that glyph row area. X is the current output position assigned
22593 to the new glyph string constructed. HL overrides that face of the
22594 glyph; e.g. it is DRAW_CURSOR if a cursor has to be drawn. LAST_X
22595 is the right-most x-position of the drawing area. */
22596
22597 #define BUILD_IMAGE_GLYPH_STRING(START, END, HEAD, TAIL, HL, X, LAST_X) \
22598 do \
22599 { \
22600 s = (struct glyph_string *) alloca (sizeof *s); \
22601 INIT_GLYPH_STRING (s, NULL, w, row, area, START, HL); \
22602 fill_image_glyph_string (s); \
22603 append_glyph_string (&HEAD, &TAIL, s); \
22604 ++START; \
22605 s->x = (X); \
22606 } \
22607 while (0)
22608
22609
22610 /* Add a glyph string for a sequence of character glyphs to the list
22611 of strings between HEAD and TAIL. START is the index of the first
22612 glyph in row area AREA of glyph row ROW that is part of the new
22613 glyph string. END is the index of the last glyph in that glyph row
22614 area. X is the current output position assigned to the new glyph
22615 string constructed. HL overrides that face of the glyph; e.g. it
22616 is DRAW_CURSOR if a cursor has to be drawn. LAST_X is the
22617 right-most x-position of the drawing area. */
22618
22619 #define BUILD_CHAR_GLYPH_STRINGS(START, END, HEAD, TAIL, HL, X, LAST_X) \
22620 do \
22621 { \
22622 int face_id; \
22623 XChar2b *char2b; \
22624 \
22625 face_id = (row)->glyphs[area][START].face_id; \
22626 \
22627 s = (struct glyph_string *) alloca (sizeof *s); \
22628 char2b = (XChar2b *) alloca ((END - START) * sizeof *char2b); \
22629 INIT_GLYPH_STRING (s, char2b, w, row, area, START, HL); \
22630 append_glyph_string (&HEAD, &TAIL, s); \
22631 s->x = (X); \
22632 START = fill_glyph_string (s, face_id, START, END, overlaps); \
22633 } \
22634 while (0)
22635
22636
22637 /* Add a glyph string for a composite sequence to the list of strings
22638 between HEAD and TAIL. START is the index of the first glyph in
22639 row area AREA of glyph row ROW that is part of the new glyph
22640 string. END is the index of the last glyph in that glyph row area.
22641 X is the current output position assigned to the new glyph string
22642 constructed. HL overrides that face of the glyph; e.g. it is
22643 DRAW_CURSOR if a cursor has to be drawn. LAST_X is the right-most
22644 x-position of the drawing area. */
22645
22646 #define BUILD_COMPOSITE_GLYPH_STRING(START, END, HEAD, TAIL, HL, X, LAST_X) \
22647 do { \
22648 int face_id = (row)->glyphs[area][START].face_id; \
22649 struct face *base_face = FACE_FROM_ID (f, face_id); \
22650 ptrdiff_t cmp_id = (row)->glyphs[area][START].u.cmp.id; \
22651 struct composition *cmp = composition_table[cmp_id]; \
22652 XChar2b *char2b; \
22653 struct glyph_string *first_s IF_LINT (= NULL); \
22654 int n; \
22655 \
22656 char2b = (XChar2b *) alloca ((sizeof *char2b) * cmp->glyph_len); \
22657 \
22658 /* Make glyph_strings for each glyph sequence that is drawable by \
22659 the same face, and append them to HEAD/TAIL. */ \
22660 for (n = 0; n < cmp->glyph_len;) \
22661 { \
22662 s = (struct glyph_string *) alloca (sizeof *s); \
22663 INIT_GLYPH_STRING (s, char2b, w, row, area, START, HL); \
22664 append_glyph_string (&(HEAD), &(TAIL), s); \
22665 s->cmp = cmp; \
22666 s->cmp_from = n; \
22667 s->x = (X); \
22668 if (n == 0) \
22669 first_s = s; \
22670 n = fill_composite_glyph_string (s, base_face, overlaps); \
22671 } \
22672 \
22673 ++START; \
22674 s = first_s; \
22675 } while (0)
22676
22677
22678 /* Add a glyph string for a glyph-string sequence to the list of strings
22679 between HEAD and TAIL. */
22680
22681 #define BUILD_GSTRING_GLYPH_STRING(START, END, HEAD, TAIL, HL, X, LAST_X) \
22682 do { \
22683 int face_id; \
22684 XChar2b *char2b; \
22685 Lisp_Object gstring; \
22686 \
22687 face_id = (row)->glyphs[area][START].face_id; \
22688 gstring = (composition_gstring_from_id \
22689 ((row)->glyphs[area][START].u.cmp.id)); \
22690 s = (struct glyph_string *) alloca (sizeof *s); \
22691 char2b = (XChar2b *) alloca ((sizeof *char2b) \
22692 * LGSTRING_GLYPH_LEN (gstring)); \
22693 INIT_GLYPH_STRING (s, char2b, w, row, area, START, HL); \
22694 append_glyph_string (&(HEAD), &(TAIL), s); \
22695 s->x = (X); \
22696 START = fill_gstring_glyph_string (s, face_id, START, END, overlaps); \
22697 } while (0)
22698
22699
22700 /* Add a glyph string for a sequence of glyphless character's glyphs
22701 to the list of strings between HEAD and TAIL. The meanings of
22702 arguments are the same as those of BUILD_CHAR_GLYPH_STRINGS. */
22703
22704 #define BUILD_GLYPHLESS_GLYPH_STRING(START, END, HEAD, TAIL, HL, X, LAST_X) \
22705 do \
22706 { \
22707 int face_id; \
22708 \
22709 face_id = (row)->glyphs[area][START].face_id; \
22710 \
22711 s = (struct glyph_string *) alloca (sizeof *s); \
22712 INIT_GLYPH_STRING (s, NULL, w, row, area, START, HL); \
22713 append_glyph_string (&HEAD, &TAIL, s); \
22714 s->x = (X); \
22715 START = fill_glyphless_glyph_string (s, face_id, START, END, \
22716 overlaps); \
22717 } \
22718 while (0)
22719
22720
22721 /* Build a list of glyph strings between HEAD and TAIL for the glyphs
22722 of AREA of glyph row ROW on window W between indices START and END.
22723 HL overrides the face for drawing glyph strings, e.g. it is
22724 DRAW_CURSOR to draw a cursor. X and LAST_X are start and end
22725 x-positions of the drawing area.
22726
22727 This is an ugly monster macro construct because we must use alloca
22728 to allocate glyph strings (because draw_glyphs can be called
22729 asynchronously). */
22730
22731 #define BUILD_GLYPH_STRINGS(START, END, HEAD, TAIL, HL, X, LAST_X) \
22732 do \
22733 { \
22734 HEAD = TAIL = NULL; \
22735 while (START < END) \
22736 { \
22737 struct glyph *first_glyph = (row)->glyphs[area] + START; \
22738 switch (first_glyph->type) \
22739 { \
22740 case CHAR_GLYPH: \
22741 BUILD_CHAR_GLYPH_STRINGS (START, END, HEAD, TAIL, \
22742 HL, X, LAST_X); \
22743 break; \
22744 \
22745 case COMPOSITE_GLYPH: \
22746 if (first_glyph->u.cmp.automatic) \
22747 BUILD_GSTRING_GLYPH_STRING (START, END, HEAD, TAIL, \
22748 HL, X, LAST_X); \
22749 else \
22750 BUILD_COMPOSITE_GLYPH_STRING (START, END, HEAD, TAIL, \
22751 HL, X, LAST_X); \
22752 break; \
22753 \
22754 case STRETCH_GLYPH: \
22755 BUILD_STRETCH_GLYPH_STRING (START, END, HEAD, TAIL, \
22756 HL, X, LAST_X); \
22757 break; \
22758 \
22759 case IMAGE_GLYPH: \
22760 BUILD_IMAGE_GLYPH_STRING (START, END, HEAD, TAIL, \
22761 HL, X, LAST_X); \
22762 break; \
22763 \
22764 case GLYPHLESS_GLYPH: \
22765 BUILD_GLYPHLESS_GLYPH_STRING (START, END, HEAD, TAIL, \
22766 HL, X, LAST_X); \
22767 break; \
22768 \
22769 default: \
22770 abort (); \
22771 } \
22772 \
22773 if (s) \
22774 { \
22775 set_glyph_string_background_width (s, START, LAST_X); \
22776 (X) += s->width; \
22777 } \
22778 } \
22779 } while (0)
22780
22781
22782 /* Draw glyphs between START and END in AREA of ROW on window W,
22783 starting at x-position X. X is relative to AREA in W. HL is a
22784 face-override with the following meaning:
22785
22786 DRAW_NORMAL_TEXT draw normally
22787 DRAW_CURSOR draw in cursor face
22788 DRAW_MOUSE_FACE draw in mouse face.
22789 DRAW_INVERSE_VIDEO draw in mode line face
22790 DRAW_IMAGE_SUNKEN draw an image with a sunken relief around it
22791 DRAW_IMAGE_RAISED draw an image with a raised relief around it
22792
22793 If OVERLAPS is non-zero, draw only the foreground of characters and
22794 clip to the physical height of ROW. Non-zero value also defines
22795 the overlapping part to be drawn:
22796
22797 OVERLAPS_PRED overlap with preceding rows
22798 OVERLAPS_SUCC overlap with succeeding rows
22799 OVERLAPS_BOTH overlap with both preceding/succeeding rows
22800 OVERLAPS_ERASED_CURSOR overlap with erased cursor area
22801
22802 Value is the x-position reached, relative to AREA of W. */
22803
22804 static int
22805 draw_glyphs (struct window *w, int x, struct glyph_row *row,
22806 enum glyph_row_area area, EMACS_INT start, EMACS_INT end,
22807 enum draw_glyphs_face hl, int overlaps)
22808 {
22809 struct glyph_string *head, *tail;
22810 struct glyph_string *s;
22811 struct glyph_string *clip_head = NULL, *clip_tail = NULL;
22812 int i, j, x_reached, last_x, area_left = 0;
22813 struct frame *f = XFRAME (WINDOW_FRAME (w));
22814 DECLARE_HDC (hdc);
22815
22816 ALLOCATE_HDC (hdc, f);
22817
22818 /* Let's rather be paranoid than getting a SEGV. */
22819 end = min (end, row->used[area]);
22820 start = max (0, start);
22821 start = min (end, start);
22822
22823 /* Translate X to frame coordinates. Set last_x to the right
22824 end of the drawing area. */
22825 if (row->full_width_p)
22826 {
22827 /* X is relative to the left edge of W, without scroll bars
22828 or fringes. */
22829 area_left = WINDOW_LEFT_EDGE_X (w);
22830 last_x = WINDOW_LEFT_EDGE_X (w) + WINDOW_TOTAL_WIDTH (w);
22831 }
22832 else
22833 {
22834 area_left = window_box_left (w, area);
22835 last_x = area_left + window_box_width (w, area);
22836 }
22837 x += area_left;
22838
22839 /* Build a doubly-linked list of glyph_string structures between
22840 head and tail from what we have to draw. Note that the macro
22841 BUILD_GLYPH_STRINGS will modify its start parameter. That's
22842 the reason we use a separate variable `i'. */
22843 i = start;
22844 BUILD_GLYPH_STRINGS (i, end, head, tail, hl, x, last_x);
22845 if (tail)
22846 x_reached = tail->x + tail->background_width;
22847 else
22848 x_reached = x;
22849
22850 /* If there are any glyphs with lbearing < 0 or rbearing > width in
22851 the row, redraw some glyphs in front or following the glyph
22852 strings built above. */
22853 if (head && !overlaps && row->contains_overlapping_glyphs_p)
22854 {
22855 struct glyph_string *h, *t;
22856 Mouse_HLInfo *hlinfo = MOUSE_HL_INFO (f);
22857 int mouse_beg_col IF_LINT (= 0), mouse_end_col IF_LINT (= 0);
22858 int check_mouse_face = 0;
22859 int dummy_x = 0;
22860
22861 /* If mouse highlighting is on, we may need to draw adjacent
22862 glyphs using mouse-face highlighting. */
22863 if (area == TEXT_AREA && row->mouse_face_p)
22864 {
22865 struct glyph_row *mouse_beg_row, *mouse_end_row;
22866
22867 mouse_beg_row = MATRIX_ROW (w->current_matrix, hlinfo->mouse_face_beg_row);
22868 mouse_end_row = MATRIX_ROW (w->current_matrix, hlinfo->mouse_face_end_row);
22869
22870 if (row >= mouse_beg_row && row <= mouse_end_row)
22871 {
22872 check_mouse_face = 1;
22873 mouse_beg_col = (row == mouse_beg_row)
22874 ? hlinfo->mouse_face_beg_col : 0;
22875 mouse_end_col = (row == mouse_end_row)
22876 ? hlinfo->mouse_face_end_col
22877 : row->used[TEXT_AREA];
22878 }
22879 }
22880
22881 /* Compute overhangs for all glyph strings. */
22882 if (FRAME_RIF (f)->compute_glyph_string_overhangs)
22883 for (s = head; s; s = s->next)
22884 FRAME_RIF (f)->compute_glyph_string_overhangs (s);
22885
22886 /* Prepend glyph strings for glyphs in front of the first glyph
22887 string that are overwritten because of the first glyph
22888 string's left overhang. The background of all strings
22889 prepended must be drawn because the first glyph string
22890 draws over it. */
22891 i = left_overwritten (head);
22892 if (i >= 0)
22893 {
22894 enum draw_glyphs_face overlap_hl;
22895
22896 /* If this row contains mouse highlighting, attempt to draw
22897 the overlapped glyphs with the correct highlight. This
22898 code fails if the overlap encompasses more than one glyph
22899 and mouse-highlight spans only some of these glyphs.
22900 However, making it work perfectly involves a lot more
22901 code, and I don't know if the pathological case occurs in
22902 practice, so we'll stick to this for now. --- cyd */
22903 if (check_mouse_face
22904 && mouse_beg_col < start && mouse_end_col > i)
22905 overlap_hl = DRAW_MOUSE_FACE;
22906 else
22907 overlap_hl = DRAW_NORMAL_TEXT;
22908
22909 j = i;
22910 BUILD_GLYPH_STRINGS (j, start, h, t,
22911 overlap_hl, dummy_x, last_x);
22912 start = i;
22913 compute_overhangs_and_x (t, head->x, 1);
22914 prepend_glyph_string_lists (&head, &tail, h, t);
22915 clip_head = head;
22916 }
22917
22918 /* Prepend glyph strings for glyphs in front of the first glyph
22919 string that overwrite that glyph string because of their
22920 right overhang. For these strings, only the foreground must
22921 be drawn, because it draws over the glyph string at `head'.
22922 The background must not be drawn because this would overwrite
22923 right overhangs of preceding glyphs for which no glyph
22924 strings exist. */
22925 i = left_overwriting (head);
22926 if (i >= 0)
22927 {
22928 enum draw_glyphs_face overlap_hl;
22929
22930 if (check_mouse_face
22931 && mouse_beg_col < start && mouse_end_col > i)
22932 overlap_hl = DRAW_MOUSE_FACE;
22933 else
22934 overlap_hl = DRAW_NORMAL_TEXT;
22935
22936 clip_head = head;
22937 BUILD_GLYPH_STRINGS (i, start, h, t,
22938 overlap_hl, dummy_x, last_x);
22939 for (s = h; s; s = s->next)
22940 s->background_filled_p = 1;
22941 compute_overhangs_and_x (t, head->x, 1);
22942 prepend_glyph_string_lists (&head, &tail, h, t);
22943 }
22944
22945 /* Append glyphs strings for glyphs following the last glyph
22946 string tail that are overwritten by tail. The background of
22947 these strings has to be drawn because tail's foreground draws
22948 over it. */
22949 i = right_overwritten (tail);
22950 if (i >= 0)
22951 {
22952 enum draw_glyphs_face overlap_hl;
22953
22954 if (check_mouse_face
22955 && mouse_beg_col < i && mouse_end_col > end)
22956 overlap_hl = DRAW_MOUSE_FACE;
22957 else
22958 overlap_hl = DRAW_NORMAL_TEXT;
22959
22960 BUILD_GLYPH_STRINGS (end, i, h, t,
22961 overlap_hl, x, last_x);
22962 /* Because BUILD_GLYPH_STRINGS updates the first argument,
22963 we don't have `end = i;' here. */
22964 compute_overhangs_and_x (h, tail->x + tail->width, 0);
22965 append_glyph_string_lists (&head, &tail, h, t);
22966 clip_tail = tail;
22967 }
22968
22969 /* Append glyph strings for glyphs following the last glyph
22970 string tail that overwrite tail. The foreground of such
22971 glyphs has to be drawn because it writes into the background
22972 of tail. The background must not be drawn because it could
22973 paint over the foreground of following glyphs. */
22974 i = right_overwriting (tail);
22975 if (i >= 0)
22976 {
22977 enum draw_glyphs_face overlap_hl;
22978 if (check_mouse_face
22979 && mouse_beg_col < i && mouse_end_col > end)
22980 overlap_hl = DRAW_MOUSE_FACE;
22981 else
22982 overlap_hl = DRAW_NORMAL_TEXT;
22983
22984 clip_tail = tail;
22985 i++; /* We must include the Ith glyph. */
22986 BUILD_GLYPH_STRINGS (end, i, h, t,
22987 overlap_hl, x, last_x);
22988 for (s = h; s; s = s->next)
22989 s->background_filled_p = 1;
22990 compute_overhangs_and_x (h, tail->x + tail->width, 0);
22991 append_glyph_string_lists (&head, &tail, h, t);
22992 }
22993 if (clip_head || clip_tail)
22994 for (s = head; s; s = s->next)
22995 {
22996 s->clip_head = clip_head;
22997 s->clip_tail = clip_tail;
22998 }
22999 }
23000
23001 /* Draw all strings. */
23002 for (s = head; s; s = s->next)
23003 FRAME_RIF (f)->draw_glyph_string (s);
23004
23005 #ifndef HAVE_NS
23006 /* When focus a sole frame and move horizontally, this sets on_p to 0
23007 causing a failure to erase prev cursor position. */
23008 if (area == TEXT_AREA
23009 && !row->full_width_p
23010 /* When drawing overlapping rows, only the glyph strings'
23011 foreground is drawn, which doesn't erase a cursor
23012 completely. */
23013 && !overlaps)
23014 {
23015 int x0 = clip_head ? clip_head->x : (head ? head->x : x);
23016 int x1 = (clip_tail ? clip_tail->x + clip_tail->background_width
23017 : (tail ? tail->x + tail->background_width : x));
23018 x0 -= area_left;
23019 x1 -= area_left;
23020
23021 notice_overwritten_cursor (w, TEXT_AREA, x0, x1,
23022 row->y, MATRIX_ROW_BOTTOM_Y (row));
23023 }
23024 #endif
23025
23026 /* Value is the x-position up to which drawn, relative to AREA of W.
23027 This doesn't include parts drawn because of overhangs. */
23028 if (row->full_width_p)
23029 x_reached = FRAME_TO_WINDOW_PIXEL_X (w, x_reached);
23030 else
23031 x_reached -= area_left;
23032
23033 RELEASE_HDC (hdc, f);
23034
23035 return x_reached;
23036 }
23037
23038 /* Expand row matrix if too narrow. Don't expand if area
23039 is not present. */
23040
23041 #define IT_EXPAND_MATRIX_WIDTH(it, area) \
23042 { \
23043 if (!fonts_changed_p \
23044 && (it->glyph_row->glyphs[area] \
23045 < it->glyph_row->glyphs[area + 1])) \
23046 { \
23047 it->w->ncols_scale_factor++; \
23048 fonts_changed_p = 1; \
23049 } \
23050 }
23051
23052 /* Store one glyph for IT->char_to_display in IT->glyph_row.
23053 Called from x_produce_glyphs when IT->glyph_row is non-null. */
23054
23055 static inline void
23056 append_glyph (struct it *it)
23057 {
23058 struct glyph *glyph;
23059 enum glyph_row_area area = it->area;
23060
23061 xassert (it->glyph_row);
23062 xassert (it->char_to_display != '\n' && it->char_to_display != '\t');
23063
23064 glyph = it->glyph_row->glyphs[area] + it->glyph_row->used[area];
23065 if (glyph < it->glyph_row->glyphs[area + 1])
23066 {
23067 /* If the glyph row is reversed, we need to prepend the glyph
23068 rather than append it. */
23069 if (it->glyph_row->reversed_p && area == TEXT_AREA)
23070 {
23071 struct glyph *g;
23072
23073 /* Make room for the additional glyph. */
23074 for (g = glyph - 1; g >= it->glyph_row->glyphs[area]; g--)
23075 g[1] = *g;
23076 glyph = it->glyph_row->glyphs[area];
23077 }
23078 glyph->charpos = CHARPOS (it->position);
23079 glyph->object = it->object;
23080 if (it->pixel_width > 0)
23081 {
23082 glyph->pixel_width = it->pixel_width;
23083 glyph->padding_p = 0;
23084 }
23085 else
23086 {
23087 /* Assure at least 1-pixel width. Otherwise, cursor can't
23088 be displayed correctly. */
23089 glyph->pixel_width = 1;
23090 glyph->padding_p = 1;
23091 }
23092 glyph->ascent = it->ascent;
23093 glyph->descent = it->descent;
23094 glyph->voffset = it->voffset;
23095 glyph->type = CHAR_GLYPH;
23096 glyph->avoid_cursor_p = it->avoid_cursor_p;
23097 glyph->multibyte_p = it->multibyte_p;
23098 glyph->left_box_line_p = it->start_of_box_run_p;
23099 glyph->right_box_line_p = it->end_of_box_run_p;
23100 glyph->overlaps_vertically_p = (it->phys_ascent > it->ascent
23101 || it->phys_descent > it->descent);
23102 glyph->glyph_not_available_p = it->glyph_not_available_p;
23103 glyph->face_id = it->face_id;
23104 glyph->u.ch = it->char_to_display;
23105 glyph->slice.img = null_glyph_slice;
23106 glyph->font_type = FONT_TYPE_UNKNOWN;
23107 if (it->bidi_p)
23108 {
23109 glyph->resolved_level = it->bidi_it.resolved_level;
23110 if ((it->bidi_it.type & 7) != it->bidi_it.type)
23111 abort ();
23112 glyph->bidi_type = it->bidi_it.type;
23113 }
23114 else
23115 {
23116 glyph->resolved_level = 0;
23117 glyph->bidi_type = UNKNOWN_BT;
23118 }
23119 ++it->glyph_row->used[area];
23120 }
23121 else
23122 IT_EXPAND_MATRIX_WIDTH (it, area);
23123 }
23124
23125 /* Store one glyph for the composition IT->cmp_it.id in
23126 IT->glyph_row. Called from x_produce_glyphs when IT->glyph_row is
23127 non-null. */
23128
23129 static inline void
23130 append_composite_glyph (struct it *it)
23131 {
23132 struct glyph *glyph;
23133 enum glyph_row_area area = it->area;
23134
23135 xassert (it->glyph_row);
23136
23137 glyph = it->glyph_row->glyphs[area] + it->glyph_row->used[area];
23138 if (glyph < it->glyph_row->glyphs[area + 1])
23139 {
23140 /* If the glyph row is reversed, we need to prepend the glyph
23141 rather than append it. */
23142 if (it->glyph_row->reversed_p && it->area == TEXT_AREA)
23143 {
23144 struct glyph *g;
23145
23146 /* Make room for the new glyph. */
23147 for (g = glyph - 1; g >= it->glyph_row->glyphs[it->area]; g--)
23148 g[1] = *g;
23149 glyph = it->glyph_row->glyphs[it->area];
23150 }
23151 glyph->charpos = it->cmp_it.charpos;
23152 glyph->object = it->object;
23153 glyph->pixel_width = it->pixel_width;
23154 glyph->ascent = it->ascent;
23155 glyph->descent = it->descent;
23156 glyph->voffset = it->voffset;
23157 glyph->type = COMPOSITE_GLYPH;
23158 if (it->cmp_it.ch < 0)
23159 {
23160 glyph->u.cmp.automatic = 0;
23161 glyph->u.cmp.id = it->cmp_it.id;
23162 glyph->slice.cmp.from = glyph->slice.cmp.to = 0;
23163 }
23164 else
23165 {
23166 glyph->u.cmp.automatic = 1;
23167 glyph->u.cmp.id = it->cmp_it.id;
23168 glyph->slice.cmp.from = it->cmp_it.from;
23169 glyph->slice.cmp.to = it->cmp_it.to - 1;
23170 }
23171 glyph->avoid_cursor_p = it->avoid_cursor_p;
23172 glyph->multibyte_p = it->multibyte_p;
23173 glyph->left_box_line_p = it->start_of_box_run_p;
23174 glyph->right_box_line_p = it->end_of_box_run_p;
23175 glyph->overlaps_vertically_p = (it->phys_ascent > it->ascent
23176 || it->phys_descent > it->descent);
23177 glyph->padding_p = 0;
23178 glyph->glyph_not_available_p = 0;
23179 glyph->face_id = it->face_id;
23180 glyph->font_type = FONT_TYPE_UNKNOWN;
23181 if (it->bidi_p)
23182 {
23183 glyph->resolved_level = it->bidi_it.resolved_level;
23184 if ((it->bidi_it.type & 7) != it->bidi_it.type)
23185 abort ();
23186 glyph->bidi_type = it->bidi_it.type;
23187 }
23188 ++it->glyph_row->used[area];
23189 }
23190 else
23191 IT_EXPAND_MATRIX_WIDTH (it, area);
23192 }
23193
23194
23195 /* Change IT->ascent and IT->height according to the setting of
23196 IT->voffset. */
23197
23198 static inline void
23199 take_vertical_position_into_account (struct it *it)
23200 {
23201 if (it->voffset)
23202 {
23203 if (it->voffset < 0)
23204 /* Increase the ascent so that we can display the text higher
23205 in the line. */
23206 it->ascent -= it->voffset;
23207 else
23208 /* Increase the descent so that we can display the text lower
23209 in the line. */
23210 it->descent += it->voffset;
23211 }
23212 }
23213
23214
23215 /* Produce glyphs/get display metrics for the image IT is loaded with.
23216 See the description of struct display_iterator in dispextern.h for
23217 an overview of struct display_iterator. */
23218
23219 static void
23220 produce_image_glyph (struct it *it)
23221 {
23222 struct image *img;
23223 struct face *face;
23224 int glyph_ascent, crop;
23225 struct glyph_slice slice;
23226
23227 xassert (it->what == IT_IMAGE);
23228
23229 face = FACE_FROM_ID (it->f, it->face_id);
23230 xassert (face);
23231 /* Make sure X resources of the face is loaded. */
23232 PREPARE_FACE_FOR_DISPLAY (it->f, face);
23233
23234 if (it->image_id < 0)
23235 {
23236 /* Fringe bitmap. */
23237 it->ascent = it->phys_ascent = 0;
23238 it->descent = it->phys_descent = 0;
23239 it->pixel_width = 0;
23240 it->nglyphs = 0;
23241 return;
23242 }
23243
23244 img = IMAGE_FROM_ID (it->f, it->image_id);
23245 xassert (img);
23246 /* Make sure X resources of the image is loaded. */
23247 prepare_image_for_display (it->f, img);
23248
23249 slice.x = slice.y = 0;
23250 slice.width = img->width;
23251 slice.height = img->height;
23252
23253 if (INTEGERP (it->slice.x))
23254 slice.x = XINT (it->slice.x);
23255 else if (FLOATP (it->slice.x))
23256 slice.x = XFLOAT_DATA (it->slice.x) * img->width;
23257
23258 if (INTEGERP (it->slice.y))
23259 slice.y = XINT (it->slice.y);
23260 else if (FLOATP (it->slice.y))
23261 slice.y = XFLOAT_DATA (it->slice.y) * img->height;
23262
23263 if (INTEGERP (it->slice.width))
23264 slice.width = XINT (it->slice.width);
23265 else if (FLOATP (it->slice.width))
23266 slice.width = XFLOAT_DATA (it->slice.width) * img->width;
23267
23268 if (INTEGERP (it->slice.height))
23269 slice.height = XINT (it->slice.height);
23270 else if (FLOATP (it->slice.height))
23271 slice.height = XFLOAT_DATA (it->slice.height) * img->height;
23272
23273 if (slice.x >= img->width)
23274 slice.x = img->width;
23275 if (slice.y >= img->height)
23276 slice.y = img->height;
23277 if (slice.x + slice.width >= img->width)
23278 slice.width = img->width - slice.x;
23279 if (slice.y + slice.height > img->height)
23280 slice.height = img->height - slice.y;
23281
23282 if (slice.width == 0 || slice.height == 0)
23283 return;
23284
23285 it->ascent = it->phys_ascent = glyph_ascent = image_ascent (img, face, &slice);
23286
23287 it->descent = slice.height - glyph_ascent;
23288 if (slice.y == 0)
23289 it->descent += img->vmargin;
23290 if (slice.y + slice.height == img->height)
23291 it->descent += img->vmargin;
23292 it->phys_descent = it->descent;
23293
23294 it->pixel_width = slice.width;
23295 if (slice.x == 0)
23296 it->pixel_width += img->hmargin;
23297 if (slice.x + slice.width == img->width)
23298 it->pixel_width += img->hmargin;
23299
23300 /* It's quite possible for images to have an ascent greater than
23301 their height, so don't get confused in that case. */
23302 if (it->descent < 0)
23303 it->descent = 0;
23304
23305 it->nglyphs = 1;
23306
23307 if (face->box != FACE_NO_BOX)
23308 {
23309 if (face->box_line_width > 0)
23310 {
23311 if (slice.y == 0)
23312 it->ascent += face->box_line_width;
23313 if (slice.y + slice.height == img->height)
23314 it->descent += face->box_line_width;
23315 }
23316
23317 if (it->start_of_box_run_p && slice.x == 0)
23318 it->pixel_width += eabs (face->box_line_width);
23319 if (it->end_of_box_run_p && slice.x + slice.width == img->width)
23320 it->pixel_width += eabs (face->box_line_width);
23321 }
23322
23323 take_vertical_position_into_account (it);
23324
23325 /* Automatically crop wide image glyphs at right edge so we can
23326 draw the cursor on same display row. */
23327 if ((crop = it->pixel_width - (it->last_visible_x - it->current_x), crop > 0)
23328 && (it->hpos == 0 || it->pixel_width > it->last_visible_x / 4))
23329 {
23330 it->pixel_width -= crop;
23331 slice.width -= crop;
23332 }
23333
23334 if (it->glyph_row)
23335 {
23336 struct glyph *glyph;
23337 enum glyph_row_area area = it->area;
23338
23339 glyph = it->glyph_row->glyphs[area] + it->glyph_row->used[area];
23340 if (glyph < it->glyph_row->glyphs[area + 1])
23341 {
23342 glyph->charpos = CHARPOS (it->position);
23343 glyph->object = it->object;
23344 glyph->pixel_width = it->pixel_width;
23345 glyph->ascent = glyph_ascent;
23346 glyph->descent = it->descent;
23347 glyph->voffset = it->voffset;
23348 glyph->type = IMAGE_GLYPH;
23349 glyph->avoid_cursor_p = it->avoid_cursor_p;
23350 glyph->multibyte_p = it->multibyte_p;
23351 glyph->left_box_line_p = it->start_of_box_run_p;
23352 glyph->right_box_line_p = it->end_of_box_run_p;
23353 glyph->overlaps_vertically_p = 0;
23354 glyph->padding_p = 0;
23355 glyph->glyph_not_available_p = 0;
23356 glyph->face_id = it->face_id;
23357 glyph->u.img_id = img->id;
23358 glyph->slice.img = slice;
23359 glyph->font_type = FONT_TYPE_UNKNOWN;
23360 if (it->bidi_p)
23361 {
23362 glyph->resolved_level = it->bidi_it.resolved_level;
23363 if ((it->bidi_it.type & 7) != it->bidi_it.type)
23364 abort ();
23365 glyph->bidi_type = it->bidi_it.type;
23366 }
23367 ++it->glyph_row->used[area];
23368 }
23369 else
23370 IT_EXPAND_MATRIX_WIDTH (it, area);
23371 }
23372 }
23373
23374
23375 /* Append a stretch glyph to IT->glyph_row. OBJECT is the source
23376 of the glyph, WIDTH and HEIGHT are the width and height of the
23377 stretch. ASCENT is the ascent of the glyph (0 <= ASCENT <= HEIGHT). */
23378
23379 static void
23380 append_stretch_glyph (struct it *it, Lisp_Object object,
23381 int width, int height, int ascent)
23382 {
23383 struct glyph *glyph;
23384 enum glyph_row_area area = it->area;
23385
23386 xassert (ascent >= 0 && ascent <= height);
23387
23388 glyph = it->glyph_row->glyphs[area] + it->glyph_row->used[area];
23389 if (glyph < it->glyph_row->glyphs[area + 1])
23390 {
23391 /* If the glyph row is reversed, we need to prepend the glyph
23392 rather than append it. */
23393 if (it->glyph_row->reversed_p && area == TEXT_AREA)
23394 {
23395 struct glyph *g;
23396
23397 /* Make room for the additional glyph. */
23398 for (g = glyph - 1; g >= it->glyph_row->glyphs[area]; g--)
23399 g[1] = *g;
23400 glyph = it->glyph_row->glyphs[area];
23401 }
23402 glyph->charpos = CHARPOS (it->position);
23403 glyph->object = object;
23404 glyph->pixel_width = width;
23405 glyph->ascent = ascent;
23406 glyph->descent = height - ascent;
23407 glyph->voffset = it->voffset;
23408 glyph->type = STRETCH_GLYPH;
23409 glyph->avoid_cursor_p = it->avoid_cursor_p;
23410 glyph->multibyte_p = it->multibyte_p;
23411 glyph->left_box_line_p = it->start_of_box_run_p;
23412 glyph->right_box_line_p = it->end_of_box_run_p;
23413 glyph->overlaps_vertically_p = 0;
23414 glyph->padding_p = 0;
23415 glyph->glyph_not_available_p = 0;
23416 glyph->face_id = it->face_id;
23417 glyph->u.stretch.ascent = ascent;
23418 glyph->u.stretch.height = height;
23419 glyph->slice.img = null_glyph_slice;
23420 glyph->font_type = FONT_TYPE_UNKNOWN;
23421 if (it->bidi_p)
23422 {
23423 glyph->resolved_level = it->bidi_it.resolved_level;
23424 if ((it->bidi_it.type & 7) != it->bidi_it.type)
23425 abort ();
23426 glyph->bidi_type = it->bidi_it.type;
23427 }
23428 else
23429 {
23430 glyph->resolved_level = 0;
23431 glyph->bidi_type = UNKNOWN_BT;
23432 }
23433 ++it->glyph_row->used[area];
23434 }
23435 else
23436 IT_EXPAND_MATRIX_WIDTH (it, area);
23437 }
23438
23439 #endif /* HAVE_WINDOW_SYSTEM */
23440
23441 /* Produce a stretch glyph for iterator IT. IT->object is the value
23442 of the glyph property displayed. The value must be a list
23443 `(space KEYWORD VALUE ...)' with the following KEYWORD/VALUE pairs
23444 being recognized:
23445
23446 1. `:width WIDTH' specifies that the space should be WIDTH *
23447 canonical char width wide. WIDTH may be an integer or floating
23448 point number.
23449
23450 2. `:relative-width FACTOR' specifies that the width of the stretch
23451 should be computed from the width of the first character having the
23452 `glyph' property, and should be FACTOR times that width.
23453
23454 3. `:align-to HPOS' specifies that the space should be wide enough
23455 to reach HPOS, a value in canonical character units.
23456
23457 Exactly one of the above pairs must be present.
23458
23459 4. `:height HEIGHT' specifies that the height of the stretch produced
23460 should be HEIGHT, measured in canonical character units.
23461
23462 5. `:relative-height FACTOR' specifies that the height of the
23463 stretch should be FACTOR times the height of the characters having
23464 the glyph property.
23465
23466 Either none or exactly one of 4 or 5 must be present.
23467
23468 6. `:ascent ASCENT' specifies that ASCENT percent of the height
23469 of the stretch should be used for the ascent of the stretch.
23470 ASCENT must be in the range 0 <= ASCENT <= 100. */
23471
23472 void
23473 produce_stretch_glyph (struct it *it)
23474 {
23475 /* (space :width WIDTH :height HEIGHT ...) */
23476 Lisp_Object prop, plist;
23477 int width = 0, height = 0, align_to = -1;
23478 int zero_width_ok_p = 0;
23479 int ascent = 0;
23480 double tem;
23481 struct face *face = NULL;
23482 struct font *font = NULL;
23483
23484 #ifdef HAVE_WINDOW_SYSTEM
23485 int zero_height_ok_p = 0;
23486
23487 if (FRAME_WINDOW_P (it->f))
23488 {
23489 face = FACE_FROM_ID (it->f, it->face_id);
23490 font = face->font ? face->font : FRAME_FONT (it->f);
23491 PREPARE_FACE_FOR_DISPLAY (it->f, face);
23492 }
23493 #endif
23494
23495 /* List should start with `space'. */
23496 xassert (CONSP (it->object) && EQ (XCAR (it->object), Qspace));
23497 plist = XCDR (it->object);
23498
23499 /* Compute the width of the stretch. */
23500 if ((prop = Fplist_get (plist, QCwidth), !NILP (prop))
23501 && calc_pixel_width_or_height (&tem, it, prop, font, 1, 0))
23502 {
23503 /* Absolute width `:width WIDTH' specified and valid. */
23504 zero_width_ok_p = 1;
23505 width = (int)tem;
23506 }
23507 #ifdef HAVE_WINDOW_SYSTEM
23508 else if (FRAME_WINDOW_P (it->f)
23509 && (prop = Fplist_get (plist, QCrelative_width), NUMVAL (prop) > 0))
23510 {
23511 /* Relative width `:relative-width FACTOR' specified and valid.
23512 Compute the width of the characters having the `glyph'
23513 property. */
23514 struct it it2;
23515 unsigned char *p = BYTE_POS_ADDR (IT_BYTEPOS (*it));
23516
23517 it2 = *it;
23518 if (it->multibyte_p)
23519 it2.c = it2.char_to_display = STRING_CHAR_AND_LENGTH (p, it2.len);
23520 else
23521 {
23522 it2.c = it2.char_to_display = *p, it2.len = 1;
23523 if (! ASCII_CHAR_P (it2.c))
23524 it2.char_to_display = BYTE8_TO_CHAR (it2.c);
23525 }
23526
23527 it2.glyph_row = NULL;
23528 it2.what = IT_CHARACTER;
23529 x_produce_glyphs (&it2);
23530 width = NUMVAL (prop) * it2.pixel_width;
23531 }
23532 #endif /* HAVE_WINDOW_SYSTEM */
23533 else if ((prop = Fplist_get (plist, QCalign_to), !NILP (prop))
23534 && calc_pixel_width_or_height (&tem, it, prop, font, 1, &align_to))
23535 {
23536 if (it->glyph_row == NULL || !it->glyph_row->mode_line_p)
23537 align_to = (align_to < 0
23538 ? 0
23539 : align_to - window_box_left_offset (it->w, TEXT_AREA));
23540 else if (align_to < 0)
23541 align_to = window_box_left_offset (it->w, TEXT_AREA);
23542 width = max (0, (int)tem + align_to - it->current_x);
23543 zero_width_ok_p = 1;
23544 }
23545 else
23546 /* Nothing specified -> width defaults to canonical char width. */
23547 width = FRAME_COLUMN_WIDTH (it->f);
23548
23549 if (width <= 0 && (width < 0 || !zero_width_ok_p))
23550 width = 1;
23551
23552 #ifdef HAVE_WINDOW_SYSTEM
23553 /* Compute height. */
23554 if (FRAME_WINDOW_P (it->f))
23555 {
23556 if ((prop = Fplist_get (plist, QCheight), !NILP (prop))
23557 && calc_pixel_width_or_height (&tem, it, prop, font, 0, 0))
23558 {
23559 height = (int)tem;
23560 zero_height_ok_p = 1;
23561 }
23562 else if (prop = Fplist_get (plist, QCrelative_height),
23563 NUMVAL (prop) > 0)
23564 height = FONT_HEIGHT (font) * NUMVAL (prop);
23565 else
23566 height = FONT_HEIGHT (font);
23567
23568 if (height <= 0 && (height < 0 || !zero_height_ok_p))
23569 height = 1;
23570
23571 /* Compute percentage of height used for ascent. If
23572 `:ascent ASCENT' is present and valid, use that. Otherwise,
23573 derive the ascent from the font in use. */
23574 if (prop = Fplist_get (plist, QCascent),
23575 NUMVAL (prop) > 0 && NUMVAL (prop) <= 100)
23576 ascent = height * NUMVAL (prop) / 100.0;
23577 else if (!NILP (prop)
23578 && calc_pixel_width_or_height (&tem, it, prop, font, 0, 0))
23579 ascent = min (max (0, (int)tem), height);
23580 else
23581 ascent = (height * FONT_BASE (font)) / FONT_HEIGHT (font);
23582 }
23583 else
23584 #endif /* HAVE_WINDOW_SYSTEM */
23585 height = 1;
23586
23587 if (width > 0 && it->line_wrap != TRUNCATE
23588 && it->current_x + width > it->last_visible_x)
23589 {
23590 width = it->last_visible_x - it->current_x;
23591 #ifdef HAVE_WINDOW_SYSTEM
23592 /* Subtact one more pixel from the stretch width, but only on
23593 GUI frames, since on a TTY each glyph is one "pixel" wide. */
23594 width -= FRAME_WINDOW_P (it->f);
23595 #endif
23596 }
23597
23598 if (width > 0 && height > 0 && it->glyph_row)
23599 {
23600 Lisp_Object o_object = it->object;
23601 Lisp_Object object = it->stack[it->sp - 1].string;
23602 int n = width;
23603
23604 if (!STRINGP (object))
23605 object = it->w->buffer;
23606 #ifdef HAVE_WINDOW_SYSTEM
23607 if (FRAME_WINDOW_P (it->f))
23608 append_stretch_glyph (it, object, width, height, ascent);
23609 else
23610 #endif
23611 {
23612 it->object = object;
23613 it->char_to_display = ' ';
23614 it->pixel_width = it->len = 1;
23615 while (n--)
23616 tty_append_glyph (it);
23617 it->object = o_object;
23618 }
23619 }
23620
23621 it->pixel_width = width;
23622 #ifdef HAVE_WINDOW_SYSTEM
23623 if (FRAME_WINDOW_P (it->f))
23624 {
23625 it->ascent = it->phys_ascent = ascent;
23626 it->descent = it->phys_descent = height - it->ascent;
23627 it->nglyphs = width > 0 && height > 0 ? 1 : 0;
23628 take_vertical_position_into_account (it);
23629 }
23630 else
23631 #endif
23632 it->nglyphs = width;
23633 }
23634
23635 #ifdef HAVE_WINDOW_SYSTEM
23636
23637 /* Calculate line-height and line-spacing properties.
23638 An integer value specifies explicit pixel value.
23639 A float value specifies relative value to current face height.
23640 A cons (float . face-name) specifies relative value to
23641 height of specified face font.
23642
23643 Returns height in pixels, or nil. */
23644
23645
23646 static Lisp_Object
23647 calc_line_height_property (struct it *it, Lisp_Object val, struct font *font,
23648 int boff, int override)
23649 {
23650 Lisp_Object face_name = Qnil;
23651 int ascent, descent, height;
23652
23653 if (NILP (val) || INTEGERP (val) || (override && EQ (val, Qt)))
23654 return val;
23655
23656 if (CONSP (val))
23657 {
23658 face_name = XCAR (val);
23659 val = XCDR (val);
23660 if (!NUMBERP (val))
23661 val = make_number (1);
23662 if (NILP (face_name))
23663 {
23664 height = it->ascent + it->descent;
23665 goto scale;
23666 }
23667 }
23668
23669 if (NILP (face_name))
23670 {
23671 font = FRAME_FONT (it->f);
23672 boff = FRAME_BASELINE_OFFSET (it->f);
23673 }
23674 else if (EQ (face_name, Qt))
23675 {
23676 override = 0;
23677 }
23678 else
23679 {
23680 int face_id;
23681 struct face *face;
23682
23683 face_id = lookup_named_face (it->f, face_name, 0);
23684 if (face_id < 0)
23685 return make_number (-1);
23686
23687 face = FACE_FROM_ID (it->f, face_id);
23688 font = face->font;
23689 if (font == NULL)
23690 return make_number (-1);
23691 boff = font->baseline_offset;
23692 if (font->vertical_centering)
23693 boff = VCENTER_BASELINE_OFFSET (font, it->f) - boff;
23694 }
23695
23696 ascent = FONT_BASE (font) + boff;
23697 descent = FONT_DESCENT (font) - boff;
23698
23699 if (override)
23700 {
23701 it->override_ascent = ascent;
23702 it->override_descent = descent;
23703 it->override_boff = boff;
23704 }
23705
23706 height = ascent + descent;
23707
23708 scale:
23709 if (FLOATP (val))
23710 height = (int)(XFLOAT_DATA (val) * height);
23711 else if (INTEGERP (val))
23712 height *= XINT (val);
23713
23714 return make_number (height);
23715 }
23716
23717
23718 /* Append a glyph for a glyphless character to IT->glyph_row. FACE_ID
23719 is a face ID to be used for the glyph. FOR_NO_FONT is nonzero if
23720 and only if this is for a character for which no font was found.
23721
23722 If the display method (it->glyphless_method) is
23723 GLYPHLESS_DISPLAY_ACRONYM or GLYPHLESS_DISPLAY_HEX_CODE, LEN is a
23724 length of the acronym or the hexadecimal string, UPPER_XOFF and
23725 UPPER_YOFF are pixel offsets for the upper part of the string,
23726 LOWER_XOFF and LOWER_YOFF are for the lower part.
23727
23728 For the other display methods, LEN through LOWER_YOFF are zero. */
23729
23730 static void
23731 append_glyphless_glyph (struct it *it, int face_id, int for_no_font, int len,
23732 short upper_xoff, short upper_yoff,
23733 short lower_xoff, short lower_yoff)
23734 {
23735 struct glyph *glyph;
23736 enum glyph_row_area area = it->area;
23737
23738 glyph = it->glyph_row->glyphs[area] + it->glyph_row->used[area];
23739 if (glyph < it->glyph_row->glyphs[area + 1])
23740 {
23741 /* If the glyph row is reversed, we need to prepend the glyph
23742 rather than append it. */
23743 if (it->glyph_row->reversed_p && area == TEXT_AREA)
23744 {
23745 struct glyph *g;
23746
23747 /* Make room for the additional glyph. */
23748 for (g = glyph - 1; g >= it->glyph_row->glyphs[area]; g--)
23749 g[1] = *g;
23750 glyph = it->glyph_row->glyphs[area];
23751 }
23752 glyph->charpos = CHARPOS (it->position);
23753 glyph->object = it->object;
23754 glyph->pixel_width = it->pixel_width;
23755 glyph->ascent = it->ascent;
23756 glyph->descent = it->descent;
23757 glyph->voffset = it->voffset;
23758 glyph->type = GLYPHLESS_GLYPH;
23759 glyph->u.glyphless.method = it->glyphless_method;
23760 glyph->u.glyphless.for_no_font = for_no_font;
23761 glyph->u.glyphless.len = len;
23762 glyph->u.glyphless.ch = it->c;
23763 glyph->slice.glyphless.upper_xoff = upper_xoff;
23764 glyph->slice.glyphless.upper_yoff = upper_yoff;
23765 glyph->slice.glyphless.lower_xoff = lower_xoff;
23766 glyph->slice.glyphless.lower_yoff = lower_yoff;
23767 glyph->avoid_cursor_p = it->avoid_cursor_p;
23768 glyph->multibyte_p = it->multibyte_p;
23769 glyph->left_box_line_p = it->start_of_box_run_p;
23770 glyph->right_box_line_p = it->end_of_box_run_p;
23771 glyph->overlaps_vertically_p = (it->phys_ascent > it->ascent
23772 || it->phys_descent > it->descent);
23773 glyph->padding_p = 0;
23774 glyph->glyph_not_available_p = 0;
23775 glyph->face_id = face_id;
23776 glyph->font_type = FONT_TYPE_UNKNOWN;
23777 if (it->bidi_p)
23778 {
23779 glyph->resolved_level = it->bidi_it.resolved_level;
23780 if ((it->bidi_it.type & 7) != it->bidi_it.type)
23781 abort ();
23782 glyph->bidi_type = it->bidi_it.type;
23783 }
23784 ++it->glyph_row->used[area];
23785 }
23786 else
23787 IT_EXPAND_MATRIX_WIDTH (it, area);
23788 }
23789
23790
23791 /* Produce a glyph for a glyphless character for iterator IT.
23792 IT->glyphless_method specifies which method to use for displaying
23793 the character. See the description of enum
23794 glyphless_display_method in dispextern.h for the detail.
23795
23796 FOR_NO_FONT is nonzero if and only if this is for a character for
23797 which no font was found. ACRONYM, if non-nil, is an acronym string
23798 for the character. */
23799
23800 static void
23801 produce_glyphless_glyph (struct it *it, int for_no_font, Lisp_Object acronym)
23802 {
23803 int face_id;
23804 struct face *face;
23805 struct font *font;
23806 int base_width, base_height, width, height;
23807 short upper_xoff, upper_yoff, lower_xoff, lower_yoff;
23808 int len;
23809
23810 /* Get the metrics of the base font. We always refer to the current
23811 ASCII face. */
23812 face = FACE_FROM_ID (it->f, it->face_id)->ascii_face;
23813 font = face->font ? face->font : FRAME_FONT (it->f);
23814 it->ascent = FONT_BASE (font) + font->baseline_offset;
23815 it->descent = FONT_DESCENT (font) - font->baseline_offset;
23816 base_height = it->ascent + it->descent;
23817 base_width = font->average_width;
23818
23819 /* Get a face ID for the glyph by utilizing a cache (the same way as
23820 done for `escape-glyph' in get_next_display_element). */
23821 if (it->f == last_glyphless_glyph_frame
23822 && it->face_id == last_glyphless_glyph_face_id)
23823 {
23824 face_id = last_glyphless_glyph_merged_face_id;
23825 }
23826 else
23827 {
23828 /* Merge the `glyphless-char' face into the current face. */
23829 face_id = merge_faces (it->f, Qglyphless_char, 0, it->face_id);
23830 last_glyphless_glyph_frame = it->f;
23831 last_glyphless_glyph_face_id = it->face_id;
23832 last_glyphless_glyph_merged_face_id = face_id;
23833 }
23834
23835 if (it->glyphless_method == GLYPHLESS_DISPLAY_THIN_SPACE)
23836 {
23837 it->pixel_width = THIN_SPACE_WIDTH;
23838 len = 0;
23839 upper_xoff = upper_yoff = lower_xoff = lower_yoff = 0;
23840 }
23841 else if (it->glyphless_method == GLYPHLESS_DISPLAY_EMPTY_BOX)
23842 {
23843 width = CHAR_WIDTH (it->c);
23844 if (width == 0)
23845 width = 1;
23846 else if (width > 4)
23847 width = 4;
23848 it->pixel_width = base_width * width;
23849 len = 0;
23850 upper_xoff = upper_yoff = lower_xoff = lower_yoff = 0;
23851 }
23852 else
23853 {
23854 char buf[7];
23855 const char *str;
23856 unsigned int code[6];
23857 int upper_len;
23858 int ascent, descent;
23859 struct font_metrics metrics_upper, metrics_lower;
23860
23861 face = FACE_FROM_ID (it->f, face_id);
23862 font = face->font ? face->font : FRAME_FONT (it->f);
23863 PREPARE_FACE_FOR_DISPLAY (it->f, face);
23864
23865 if (it->glyphless_method == GLYPHLESS_DISPLAY_ACRONYM)
23866 {
23867 if (! STRINGP (acronym) && CHAR_TABLE_P (Vglyphless_char_display))
23868 acronym = CHAR_TABLE_REF (Vglyphless_char_display, it->c);
23869 if (CONSP (acronym))
23870 acronym = XCAR (acronym);
23871 str = STRINGP (acronym) ? SSDATA (acronym) : "";
23872 }
23873 else
23874 {
23875 xassert (it->glyphless_method == GLYPHLESS_DISPLAY_HEX_CODE);
23876 sprintf (buf, "%0*X", it->c < 0x10000 ? 4 : 6, it->c);
23877 str = buf;
23878 }
23879 for (len = 0; str[len] && ASCII_BYTE_P (str[len]); len++)
23880 code[len] = font->driver->encode_char (font, str[len]);
23881 upper_len = (len + 1) / 2;
23882 font->driver->text_extents (font, code, upper_len,
23883 &metrics_upper);
23884 font->driver->text_extents (font, code + upper_len, len - upper_len,
23885 &metrics_lower);
23886
23887
23888
23889 /* +4 is for vertical bars of a box plus 1-pixel spaces at both side. */
23890 width = max (metrics_upper.width, metrics_lower.width) + 4;
23891 upper_xoff = upper_yoff = 2; /* the typical case */
23892 if (base_width >= width)
23893 {
23894 /* Align the upper to the left, the lower to the right. */
23895 it->pixel_width = base_width;
23896 lower_xoff = base_width - 2 - metrics_lower.width;
23897 }
23898 else
23899 {
23900 /* Center the shorter one. */
23901 it->pixel_width = width;
23902 if (metrics_upper.width >= metrics_lower.width)
23903 lower_xoff = (width - metrics_lower.width) / 2;
23904 else
23905 {
23906 /* FIXME: This code doesn't look right. It formerly was
23907 missing the "lower_xoff = 0;", which couldn't have
23908 been right since it left lower_xoff uninitialized. */
23909 lower_xoff = 0;
23910 upper_xoff = (width - metrics_upper.width) / 2;
23911 }
23912 }
23913
23914 /* +5 is for horizontal bars of a box plus 1-pixel spaces at
23915 top, bottom, and between upper and lower strings. */
23916 height = (metrics_upper.ascent + metrics_upper.descent
23917 + metrics_lower.ascent + metrics_lower.descent) + 5;
23918 /* Center vertically.
23919 H:base_height, D:base_descent
23920 h:height, ld:lower_descent, la:lower_ascent, ud:upper_descent
23921
23922 ascent = - (D - H/2 - h/2 + 1); "+ 1" for rounding up
23923 descent = D - H/2 + h/2;
23924 lower_yoff = descent - 2 - ld;
23925 upper_yoff = lower_yoff - la - 1 - ud; */
23926 ascent = - (it->descent - (base_height + height + 1) / 2);
23927 descent = it->descent - (base_height - height) / 2;
23928 lower_yoff = descent - 2 - metrics_lower.descent;
23929 upper_yoff = (lower_yoff - metrics_lower.ascent - 1
23930 - metrics_upper.descent);
23931 /* Don't make the height shorter than the base height. */
23932 if (height > base_height)
23933 {
23934 it->ascent = ascent;
23935 it->descent = descent;
23936 }
23937 }
23938
23939 it->phys_ascent = it->ascent;
23940 it->phys_descent = it->descent;
23941 if (it->glyph_row)
23942 append_glyphless_glyph (it, face_id, for_no_font, len,
23943 upper_xoff, upper_yoff,
23944 lower_xoff, lower_yoff);
23945 it->nglyphs = 1;
23946 take_vertical_position_into_account (it);
23947 }
23948
23949
23950 /* RIF:
23951 Produce glyphs/get display metrics for the display element IT is
23952 loaded with. See the description of struct it in dispextern.h
23953 for an overview of struct it. */
23954
23955 void
23956 x_produce_glyphs (struct it *it)
23957 {
23958 int extra_line_spacing = it->extra_line_spacing;
23959
23960 it->glyph_not_available_p = 0;
23961
23962 if (it->what == IT_CHARACTER)
23963 {
23964 XChar2b char2b;
23965 struct face *face = FACE_FROM_ID (it->f, it->face_id);
23966 struct font *font = face->font;
23967 struct font_metrics *pcm = NULL;
23968 int boff; /* baseline offset */
23969
23970 if (font == NULL)
23971 {
23972 /* When no suitable font is found, display this character by
23973 the method specified in the first extra slot of
23974 Vglyphless_char_display. */
23975 Lisp_Object acronym = lookup_glyphless_char_display (-1, it);
23976
23977 xassert (it->what == IT_GLYPHLESS);
23978 produce_glyphless_glyph (it, 1, STRINGP (acronym) ? acronym : Qnil);
23979 goto done;
23980 }
23981
23982 boff = font->baseline_offset;
23983 if (font->vertical_centering)
23984 boff = VCENTER_BASELINE_OFFSET (font, it->f) - boff;
23985
23986 if (it->char_to_display != '\n' && it->char_to_display != '\t')
23987 {
23988 int stretched_p;
23989
23990 it->nglyphs = 1;
23991
23992 if (it->override_ascent >= 0)
23993 {
23994 it->ascent = it->override_ascent;
23995 it->descent = it->override_descent;
23996 boff = it->override_boff;
23997 }
23998 else
23999 {
24000 it->ascent = FONT_BASE (font) + boff;
24001 it->descent = FONT_DESCENT (font) - boff;
24002 }
24003
24004 if (get_char_glyph_code (it->char_to_display, font, &char2b))
24005 {
24006 pcm = get_per_char_metric (font, &char2b);
24007 if (pcm->width == 0
24008 && pcm->rbearing == 0 && pcm->lbearing == 0)
24009 pcm = NULL;
24010 }
24011
24012 if (pcm)
24013 {
24014 it->phys_ascent = pcm->ascent + boff;
24015 it->phys_descent = pcm->descent - boff;
24016 it->pixel_width = pcm->width;
24017 }
24018 else
24019 {
24020 it->glyph_not_available_p = 1;
24021 it->phys_ascent = it->ascent;
24022 it->phys_descent = it->descent;
24023 it->pixel_width = font->space_width;
24024 }
24025
24026 if (it->constrain_row_ascent_descent_p)
24027 {
24028 if (it->descent > it->max_descent)
24029 {
24030 it->ascent += it->descent - it->max_descent;
24031 it->descent = it->max_descent;
24032 }
24033 if (it->ascent > it->max_ascent)
24034 {
24035 it->descent = min (it->max_descent, it->descent + it->ascent - it->max_ascent);
24036 it->ascent = it->max_ascent;
24037 }
24038 it->phys_ascent = min (it->phys_ascent, it->ascent);
24039 it->phys_descent = min (it->phys_descent, it->descent);
24040 extra_line_spacing = 0;
24041 }
24042
24043 /* If this is a space inside a region of text with
24044 `space-width' property, change its width. */
24045 stretched_p = it->char_to_display == ' ' && !NILP (it->space_width);
24046 if (stretched_p)
24047 it->pixel_width *= XFLOATINT (it->space_width);
24048
24049 /* If face has a box, add the box thickness to the character
24050 height. If character has a box line to the left and/or
24051 right, add the box line width to the character's width. */
24052 if (face->box != FACE_NO_BOX)
24053 {
24054 int thick = face->box_line_width;
24055
24056 if (thick > 0)
24057 {
24058 it->ascent += thick;
24059 it->descent += thick;
24060 }
24061 else
24062 thick = -thick;
24063
24064 if (it->start_of_box_run_p)
24065 it->pixel_width += thick;
24066 if (it->end_of_box_run_p)
24067 it->pixel_width += thick;
24068 }
24069
24070 /* If face has an overline, add the height of the overline
24071 (1 pixel) and a 1 pixel margin to the character height. */
24072 if (face->overline_p)
24073 it->ascent += overline_margin;
24074
24075 if (it->constrain_row_ascent_descent_p)
24076 {
24077 if (it->ascent > it->max_ascent)
24078 it->ascent = it->max_ascent;
24079 if (it->descent > it->max_descent)
24080 it->descent = it->max_descent;
24081 }
24082
24083 take_vertical_position_into_account (it);
24084
24085 /* If we have to actually produce glyphs, do it. */
24086 if (it->glyph_row)
24087 {
24088 if (stretched_p)
24089 {
24090 /* Translate a space with a `space-width' property
24091 into a stretch glyph. */
24092 int ascent = (((it->ascent + it->descent) * FONT_BASE (font))
24093 / FONT_HEIGHT (font));
24094 append_stretch_glyph (it, it->object, it->pixel_width,
24095 it->ascent + it->descent, ascent);
24096 }
24097 else
24098 append_glyph (it);
24099
24100 /* If characters with lbearing or rbearing are displayed
24101 in this line, record that fact in a flag of the
24102 glyph row. This is used to optimize X output code. */
24103 if (pcm && (pcm->lbearing < 0 || pcm->rbearing > pcm->width))
24104 it->glyph_row->contains_overlapping_glyphs_p = 1;
24105 }
24106 if (! stretched_p && it->pixel_width == 0)
24107 /* We assure that all visible glyphs have at least 1-pixel
24108 width. */
24109 it->pixel_width = 1;
24110 }
24111 else if (it->char_to_display == '\n')
24112 {
24113 /* A newline has no width, but we need the height of the
24114 line. But if previous part of the line sets a height,
24115 don't increase that height */
24116
24117 Lisp_Object height;
24118 Lisp_Object total_height = Qnil;
24119
24120 it->override_ascent = -1;
24121 it->pixel_width = 0;
24122 it->nglyphs = 0;
24123
24124 height = get_it_property (it, Qline_height);
24125 /* Split (line-height total-height) list */
24126 if (CONSP (height)
24127 && CONSP (XCDR (height))
24128 && NILP (XCDR (XCDR (height))))
24129 {
24130 total_height = XCAR (XCDR (height));
24131 height = XCAR (height);
24132 }
24133 height = calc_line_height_property (it, height, font, boff, 1);
24134
24135 if (it->override_ascent >= 0)
24136 {
24137 it->ascent = it->override_ascent;
24138 it->descent = it->override_descent;
24139 boff = it->override_boff;
24140 }
24141 else
24142 {
24143 it->ascent = FONT_BASE (font) + boff;
24144 it->descent = FONT_DESCENT (font) - boff;
24145 }
24146
24147 if (EQ (height, Qt))
24148 {
24149 if (it->descent > it->max_descent)
24150 {
24151 it->ascent += it->descent - it->max_descent;
24152 it->descent = it->max_descent;
24153 }
24154 if (it->ascent > it->max_ascent)
24155 {
24156 it->descent = min (it->max_descent, it->descent + it->ascent - it->max_ascent);
24157 it->ascent = it->max_ascent;
24158 }
24159 it->phys_ascent = min (it->phys_ascent, it->ascent);
24160 it->phys_descent = min (it->phys_descent, it->descent);
24161 it->constrain_row_ascent_descent_p = 1;
24162 extra_line_spacing = 0;
24163 }
24164 else
24165 {
24166 Lisp_Object spacing;
24167
24168 it->phys_ascent = it->ascent;
24169 it->phys_descent = it->descent;
24170
24171 if ((it->max_ascent > 0 || it->max_descent > 0)
24172 && face->box != FACE_NO_BOX
24173 && face->box_line_width > 0)
24174 {
24175 it->ascent += face->box_line_width;
24176 it->descent += face->box_line_width;
24177 }
24178 if (!NILP (height)
24179 && XINT (height) > it->ascent + it->descent)
24180 it->ascent = XINT (height) - it->descent;
24181
24182 if (!NILP (total_height))
24183 spacing = calc_line_height_property (it, total_height, font, boff, 0);
24184 else
24185 {
24186 spacing = get_it_property (it, Qline_spacing);
24187 spacing = calc_line_height_property (it, spacing, font, boff, 0);
24188 }
24189 if (INTEGERP (spacing))
24190 {
24191 extra_line_spacing = XINT (spacing);
24192 if (!NILP (total_height))
24193 extra_line_spacing -= (it->phys_ascent + it->phys_descent);
24194 }
24195 }
24196 }
24197 else /* i.e. (it->char_to_display == '\t') */
24198 {
24199 if (font->space_width > 0)
24200 {
24201 int tab_width = it->tab_width * font->space_width;
24202 int x = it->current_x + it->continuation_lines_width;
24203 int next_tab_x = ((1 + x + tab_width - 1) / tab_width) * tab_width;
24204
24205 /* If the distance from the current position to the next tab
24206 stop is less than a space character width, use the
24207 tab stop after that. */
24208 if (next_tab_x - x < font->space_width)
24209 next_tab_x += tab_width;
24210
24211 it->pixel_width = next_tab_x - x;
24212 it->nglyphs = 1;
24213 it->ascent = it->phys_ascent = FONT_BASE (font) + boff;
24214 it->descent = it->phys_descent = FONT_DESCENT (font) - boff;
24215
24216 if (it->glyph_row)
24217 {
24218 append_stretch_glyph (it, it->object, it->pixel_width,
24219 it->ascent + it->descent, it->ascent);
24220 }
24221 }
24222 else
24223 {
24224 it->pixel_width = 0;
24225 it->nglyphs = 1;
24226 }
24227 }
24228 }
24229 else if (it->what == IT_COMPOSITION && it->cmp_it.ch < 0)
24230 {
24231 /* A static composition.
24232
24233 Note: A composition is represented as one glyph in the
24234 glyph matrix. There are no padding glyphs.
24235
24236 Important note: pixel_width, ascent, and descent are the
24237 values of what is drawn by draw_glyphs (i.e. the values of
24238 the overall glyphs composed). */
24239 struct face *face = FACE_FROM_ID (it->f, it->face_id);
24240 int boff; /* baseline offset */
24241 struct composition *cmp = composition_table[it->cmp_it.id];
24242 int glyph_len = cmp->glyph_len;
24243 struct font *font = face->font;
24244
24245 it->nglyphs = 1;
24246
24247 /* If we have not yet calculated pixel size data of glyphs of
24248 the composition for the current face font, calculate them
24249 now. Theoretically, we have to check all fonts for the
24250 glyphs, but that requires much time and memory space. So,
24251 here we check only the font of the first glyph. This may
24252 lead to incorrect display, but it's very rare, and C-l
24253 (recenter-top-bottom) can correct the display anyway. */
24254 if (! cmp->font || cmp->font != font)
24255 {
24256 /* Ascent and descent of the font of the first character
24257 of this composition (adjusted by baseline offset).
24258 Ascent and descent of overall glyphs should not be less
24259 than these, respectively. */
24260 int font_ascent, font_descent, font_height;
24261 /* Bounding box of the overall glyphs. */
24262 int leftmost, rightmost, lowest, highest;
24263 int lbearing, rbearing;
24264 int i, width, ascent, descent;
24265 int left_padded = 0, right_padded = 0;
24266 int c IF_LINT (= 0); /* cmp->glyph_len can't be zero; see Bug#8512 */
24267 XChar2b char2b;
24268 struct font_metrics *pcm;
24269 int font_not_found_p;
24270 EMACS_INT pos;
24271
24272 for (glyph_len = cmp->glyph_len; glyph_len > 0; glyph_len--)
24273 if ((c = COMPOSITION_GLYPH (cmp, glyph_len - 1)) != '\t')
24274 break;
24275 if (glyph_len < cmp->glyph_len)
24276 right_padded = 1;
24277 for (i = 0; i < glyph_len; i++)
24278 {
24279 if ((c = COMPOSITION_GLYPH (cmp, i)) != '\t')
24280 break;
24281 cmp->offsets[i * 2] = cmp->offsets[i * 2 + 1] = 0;
24282 }
24283 if (i > 0)
24284 left_padded = 1;
24285
24286 pos = (STRINGP (it->string) ? IT_STRING_CHARPOS (*it)
24287 : IT_CHARPOS (*it));
24288 /* If no suitable font is found, use the default font. */
24289 font_not_found_p = font == NULL;
24290 if (font_not_found_p)
24291 {
24292 face = face->ascii_face;
24293 font = face->font;
24294 }
24295 boff = font->baseline_offset;
24296 if (font->vertical_centering)
24297 boff = VCENTER_BASELINE_OFFSET (font, it->f) - boff;
24298 font_ascent = FONT_BASE (font) + boff;
24299 font_descent = FONT_DESCENT (font) - boff;
24300 font_height = FONT_HEIGHT (font);
24301
24302 cmp->font = (void *) font;
24303
24304 pcm = NULL;
24305 if (! font_not_found_p)
24306 {
24307 get_char_face_and_encoding (it->f, c, it->face_id,
24308 &char2b, 0);
24309 pcm = get_per_char_metric (font, &char2b);
24310 }
24311
24312 /* Initialize the bounding box. */
24313 if (pcm)
24314 {
24315 width = pcm->width;
24316 ascent = pcm->ascent;
24317 descent = pcm->descent;
24318 lbearing = pcm->lbearing;
24319 rbearing = pcm->rbearing;
24320 }
24321 else
24322 {
24323 width = font->space_width;
24324 ascent = FONT_BASE (font);
24325 descent = FONT_DESCENT (font);
24326 lbearing = 0;
24327 rbearing = width;
24328 }
24329
24330 rightmost = width;
24331 leftmost = 0;
24332 lowest = - descent + boff;
24333 highest = ascent + boff;
24334
24335 if (! font_not_found_p
24336 && font->default_ascent
24337 && CHAR_TABLE_P (Vuse_default_ascent)
24338 && !NILP (Faref (Vuse_default_ascent,
24339 make_number (it->char_to_display))))
24340 highest = font->default_ascent + boff;
24341
24342 /* Draw the first glyph at the normal position. It may be
24343 shifted to right later if some other glyphs are drawn
24344 at the left. */
24345 cmp->offsets[i * 2] = 0;
24346 cmp->offsets[i * 2 + 1] = boff;
24347 cmp->lbearing = lbearing;
24348 cmp->rbearing = rbearing;
24349
24350 /* Set cmp->offsets for the remaining glyphs. */
24351 for (i++; i < glyph_len; i++)
24352 {
24353 int left, right, btm, top;
24354 int ch = COMPOSITION_GLYPH (cmp, i);
24355 int face_id;
24356 struct face *this_face;
24357
24358 if (ch == '\t')
24359 ch = ' ';
24360 face_id = FACE_FOR_CHAR (it->f, face, ch, pos, it->string);
24361 this_face = FACE_FROM_ID (it->f, face_id);
24362 font = this_face->font;
24363
24364 if (font == NULL)
24365 pcm = NULL;
24366 else
24367 {
24368 get_char_face_and_encoding (it->f, ch, face_id,
24369 &char2b, 0);
24370 pcm = get_per_char_metric (font, &char2b);
24371 }
24372 if (! pcm)
24373 cmp->offsets[i * 2] = cmp->offsets[i * 2 + 1] = 0;
24374 else
24375 {
24376 width = pcm->width;
24377 ascent = pcm->ascent;
24378 descent = pcm->descent;
24379 lbearing = pcm->lbearing;
24380 rbearing = pcm->rbearing;
24381 if (cmp->method != COMPOSITION_WITH_RULE_ALTCHARS)
24382 {
24383 /* Relative composition with or without
24384 alternate chars. */
24385 left = (leftmost + rightmost - width) / 2;
24386 btm = - descent + boff;
24387 if (font->relative_compose
24388 && (! CHAR_TABLE_P (Vignore_relative_composition)
24389 || NILP (Faref (Vignore_relative_composition,
24390 make_number (ch)))))
24391 {
24392
24393 if (- descent >= font->relative_compose)
24394 /* One extra pixel between two glyphs. */
24395 btm = highest + 1;
24396 else if (ascent <= 0)
24397 /* One extra pixel between two glyphs. */
24398 btm = lowest - 1 - ascent - descent;
24399 }
24400 }
24401 else
24402 {
24403 /* A composition rule is specified by an integer
24404 value that encodes global and new reference
24405 points (GREF and NREF). GREF and NREF are
24406 specified by numbers as below:
24407
24408 0---1---2 -- ascent
24409 | |
24410 | |
24411 | |
24412 9--10--11 -- center
24413 | |
24414 ---3---4---5--- baseline
24415 | |
24416 6---7---8 -- descent
24417 */
24418 int rule = COMPOSITION_RULE (cmp, i);
24419 int gref, nref, grefx, grefy, nrefx, nrefy, xoff, yoff;
24420
24421 COMPOSITION_DECODE_RULE (rule, gref, nref, xoff, yoff);
24422 grefx = gref % 3, nrefx = nref % 3;
24423 grefy = gref / 3, nrefy = nref / 3;
24424 if (xoff)
24425 xoff = font_height * (xoff - 128) / 256;
24426 if (yoff)
24427 yoff = font_height * (yoff - 128) / 256;
24428
24429 left = (leftmost
24430 + grefx * (rightmost - leftmost) / 2
24431 - nrefx * width / 2
24432 + xoff);
24433
24434 btm = ((grefy == 0 ? highest
24435 : grefy == 1 ? 0
24436 : grefy == 2 ? lowest
24437 : (highest + lowest) / 2)
24438 - (nrefy == 0 ? ascent + descent
24439 : nrefy == 1 ? descent - boff
24440 : nrefy == 2 ? 0
24441 : (ascent + descent) / 2)
24442 + yoff);
24443 }
24444
24445 cmp->offsets[i * 2] = left;
24446 cmp->offsets[i * 2 + 1] = btm + descent;
24447
24448 /* Update the bounding box of the overall glyphs. */
24449 if (width > 0)
24450 {
24451 right = left + width;
24452 if (left < leftmost)
24453 leftmost = left;
24454 if (right > rightmost)
24455 rightmost = right;
24456 }
24457 top = btm + descent + ascent;
24458 if (top > highest)
24459 highest = top;
24460 if (btm < lowest)
24461 lowest = btm;
24462
24463 if (cmp->lbearing > left + lbearing)
24464 cmp->lbearing = left + lbearing;
24465 if (cmp->rbearing < left + rbearing)
24466 cmp->rbearing = left + rbearing;
24467 }
24468 }
24469
24470 /* If there are glyphs whose x-offsets are negative,
24471 shift all glyphs to the right and make all x-offsets
24472 non-negative. */
24473 if (leftmost < 0)
24474 {
24475 for (i = 0; i < cmp->glyph_len; i++)
24476 cmp->offsets[i * 2] -= leftmost;
24477 rightmost -= leftmost;
24478 cmp->lbearing -= leftmost;
24479 cmp->rbearing -= leftmost;
24480 }
24481
24482 if (left_padded && cmp->lbearing < 0)
24483 {
24484 for (i = 0; i < cmp->glyph_len; i++)
24485 cmp->offsets[i * 2] -= cmp->lbearing;
24486 rightmost -= cmp->lbearing;
24487 cmp->rbearing -= cmp->lbearing;
24488 cmp->lbearing = 0;
24489 }
24490 if (right_padded && rightmost < cmp->rbearing)
24491 {
24492 rightmost = cmp->rbearing;
24493 }
24494
24495 cmp->pixel_width = rightmost;
24496 cmp->ascent = highest;
24497 cmp->descent = - lowest;
24498 if (cmp->ascent < font_ascent)
24499 cmp->ascent = font_ascent;
24500 if (cmp->descent < font_descent)
24501 cmp->descent = font_descent;
24502 }
24503
24504 if (it->glyph_row
24505 && (cmp->lbearing < 0
24506 || cmp->rbearing > cmp->pixel_width))
24507 it->glyph_row->contains_overlapping_glyphs_p = 1;
24508
24509 it->pixel_width = cmp->pixel_width;
24510 it->ascent = it->phys_ascent = cmp->ascent;
24511 it->descent = it->phys_descent = cmp->descent;
24512 if (face->box != FACE_NO_BOX)
24513 {
24514 int thick = face->box_line_width;
24515
24516 if (thick > 0)
24517 {
24518 it->ascent += thick;
24519 it->descent += thick;
24520 }
24521 else
24522 thick = - thick;
24523
24524 if (it->start_of_box_run_p)
24525 it->pixel_width += thick;
24526 if (it->end_of_box_run_p)
24527 it->pixel_width += thick;
24528 }
24529
24530 /* If face has an overline, add the height of the overline
24531 (1 pixel) and a 1 pixel margin to the character height. */
24532 if (face->overline_p)
24533 it->ascent += overline_margin;
24534
24535 take_vertical_position_into_account (it);
24536 if (it->ascent < 0)
24537 it->ascent = 0;
24538 if (it->descent < 0)
24539 it->descent = 0;
24540
24541 if (it->glyph_row)
24542 append_composite_glyph (it);
24543 }
24544 else if (it->what == IT_COMPOSITION)
24545 {
24546 /* A dynamic (automatic) composition. */
24547 struct face *face = FACE_FROM_ID (it->f, it->face_id);
24548 Lisp_Object gstring;
24549 struct font_metrics metrics;
24550
24551 it->nglyphs = 1;
24552
24553 gstring = composition_gstring_from_id (it->cmp_it.id);
24554 it->pixel_width
24555 = composition_gstring_width (gstring, it->cmp_it.from, it->cmp_it.to,
24556 &metrics);
24557 if (it->glyph_row
24558 && (metrics.lbearing < 0 || metrics.rbearing > metrics.width))
24559 it->glyph_row->contains_overlapping_glyphs_p = 1;
24560 it->ascent = it->phys_ascent = metrics.ascent;
24561 it->descent = it->phys_descent = metrics.descent;
24562 if (face->box != FACE_NO_BOX)
24563 {
24564 int thick = face->box_line_width;
24565
24566 if (thick > 0)
24567 {
24568 it->ascent += thick;
24569 it->descent += thick;
24570 }
24571 else
24572 thick = - thick;
24573
24574 if (it->start_of_box_run_p)
24575 it->pixel_width += thick;
24576 if (it->end_of_box_run_p)
24577 it->pixel_width += thick;
24578 }
24579 /* If face has an overline, add the height of the overline
24580 (1 pixel) and a 1 pixel margin to the character height. */
24581 if (face->overline_p)
24582 it->ascent += overline_margin;
24583 take_vertical_position_into_account (it);
24584 if (it->ascent < 0)
24585 it->ascent = 0;
24586 if (it->descent < 0)
24587 it->descent = 0;
24588
24589 if (it->glyph_row)
24590 append_composite_glyph (it);
24591 }
24592 else if (it->what == IT_GLYPHLESS)
24593 produce_glyphless_glyph (it, 0, Qnil);
24594 else if (it->what == IT_IMAGE)
24595 produce_image_glyph (it);
24596 else if (it->what == IT_STRETCH)
24597 produce_stretch_glyph (it);
24598
24599 done:
24600 /* Accumulate dimensions. Note: can't assume that it->descent > 0
24601 because this isn't true for images with `:ascent 100'. */
24602 xassert (it->ascent >= 0 && it->descent >= 0);
24603 if (it->area == TEXT_AREA)
24604 it->current_x += it->pixel_width;
24605
24606 if (extra_line_spacing > 0)
24607 {
24608 it->descent += extra_line_spacing;
24609 if (extra_line_spacing > it->max_extra_line_spacing)
24610 it->max_extra_line_spacing = extra_line_spacing;
24611 }
24612
24613 it->max_ascent = max (it->max_ascent, it->ascent);
24614 it->max_descent = max (it->max_descent, it->descent);
24615 it->max_phys_ascent = max (it->max_phys_ascent, it->phys_ascent);
24616 it->max_phys_descent = max (it->max_phys_descent, it->phys_descent);
24617 }
24618
24619 /* EXPORT for RIF:
24620 Output LEN glyphs starting at START at the nominal cursor position.
24621 Advance the nominal cursor over the text. The global variable
24622 updated_window contains the window being updated, updated_row is
24623 the glyph row being updated, and updated_area is the area of that
24624 row being updated. */
24625
24626 void
24627 x_write_glyphs (struct glyph *start, int len)
24628 {
24629 int x, hpos;
24630
24631 xassert (updated_window && updated_row);
24632 BLOCK_INPUT;
24633
24634 /* Write glyphs. */
24635
24636 hpos = start - updated_row->glyphs[updated_area];
24637 x = draw_glyphs (updated_window, output_cursor.x,
24638 updated_row, updated_area,
24639 hpos, hpos + len,
24640 DRAW_NORMAL_TEXT, 0);
24641
24642 /* Invalidate old phys cursor if the glyph at its hpos is redrawn. */
24643 if (updated_area == TEXT_AREA
24644 && updated_window->phys_cursor_on_p
24645 && updated_window->phys_cursor.vpos == output_cursor.vpos
24646 && updated_window->phys_cursor.hpos >= hpos
24647 && updated_window->phys_cursor.hpos < hpos + len)
24648 updated_window->phys_cursor_on_p = 0;
24649
24650 UNBLOCK_INPUT;
24651
24652 /* Advance the output cursor. */
24653 output_cursor.hpos += len;
24654 output_cursor.x = x;
24655 }
24656
24657
24658 /* EXPORT for RIF:
24659 Insert LEN glyphs from START at the nominal cursor position. */
24660
24661 void
24662 x_insert_glyphs (struct glyph *start, int len)
24663 {
24664 struct frame *f;
24665 struct window *w;
24666 int line_height, shift_by_width, shifted_region_width;
24667 struct glyph_row *row;
24668 struct glyph *glyph;
24669 int frame_x, frame_y;
24670 EMACS_INT hpos;
24671
24672 xassert (updated_window && updated_row);
24673 BLOCK_INPUT;
24674 w = updated_window;
24675 f = XFRAME (WINDOW_FRAME (w));
24676
24677 /* Get the height of the line we are in. */
24678 row = updated_row;
24679 line_height = row->height;
24680
24681 /* Get the width of the glyphs to insert. */
24682 shift_by_width = 0;
24683 for (glyph = start; glyph < start + len; ++glyph)
24684 shift_by_width += glyph->pixel_width;
24685
24686 /* Get the width of the region to shift right. */
24687 shifted_region_width = (window_box_width (w, updated_area)
24688 - output_cursor.x
24689 - shift_by_width);
24690
24691 /* Shift right. */
24692 frame_x = window_box_left (w, updated_area) + output_cursor.x;
24693 frame_y = WINDOW_TO_FRAME_PIXEL_Y (w, output_cursor.y);
24694
24695 FRAME_RIF (f)->shift_glyphs_for_insert (f, frame_x, frame_y, shifted_region_width,
24696 line_height, shift_by_width);
24697
24698 /* Write the glyphs. */
24699 hpos = start - row->glyphs[updated_area];
24700 draw_glyphs (w, output_cursor.x, row, updated_area,
24701 hpos, hpos + len,
24702 DRAW_NORMAL_TEXT, 0);
24703
24704 /* Advance the output cursor. */
24705 output_cursor.hpos += len;
24706 output_cursor.x += shift_by_width;
24707 UNBLOCK_INPUT;
24708 }
24709
24710
24711 /* EXPORT for RIF:
24712 Erase the current text line from the nominal cursor position
24713 (inclusive) to pixel column TO_X (exclusive). The idea is that
24714 everything from TO_X onward is already erased.
24715
24716 TO_X is a pixel position relative to updated_area of
24717 updated_window. TO_X == -1 means clear to the end of this area. */
24718
24719 void
24720 x_clear_end_of_line (int to_x)
24721 {
24722 struct frame *f;
24723 struct window *w = updated_window;
24724 int max_x, min_y, max_y;
24725 int from_x, from_y, to_y;
24726
24727 xassert (updated_window && updated_row);
24728 f = XFRAME (w->frame);
24729
24730 if (updated_row->full_width_p)
24731 max_x = WINDOW_TOTAL_WIDTH (w);
24732 else
24733 max_x = window_box_width (w, updated_area);
24734 max_y = window_text_bottom_y (w);
24735
24736 /* TO_X == 0 means don't do anything. TO_X < 0 means clear to end
24737 of window. For TO_X > 0, truncate to end of drawing area. */
24738 if (to_x == 0)
24739 return;
24740 else if (to_x < 0)
24741 to_x = max_x;
24742 else
24743 to_x = min (to_x, max_x);
24744
24745 to_y = min (max_y, output_cursor.y + updated_row->height);
24746
24747 /* Notice if the cursor will be cleared by this operation. */
24748 if (!updated_row->full_width_p)
24749 notice_overwritten_cursor (w, updated_area,
24750 output_cursor.x, -1,
24751 updated_row->y,
24752 MATRIX_ROW_BOTTOM_Y (updated_row));
24753
24754 from_x = output_cursor.x;
24755
24756 /* Translate to frame coordinates. */
24757 if (updated_row->full_width_p)
24758 {
24759 from_x = WINDOW_TO_FRAME_PIXEL_X (w, from_x);
24760 to_x = WINDOW_TO_FRAME_PIXEL_X (w, to_x);
24761 }
24762 else
24763 {
24764 int area_left = window_box_left (w, updated_area);
24765 from_x += area_left;
24766 to_x += area_left;
24767 }
24768
24769 min_y = WINDOW_HEADER_LINE_HEIGHT (w);
24770 from_y = WINDOW_TO_FRAME_PIXEL_Y (w, max (min_y, output_cursor.y));
24771 to_y = WINDOW_TO_FRAME_PIXEL_Y (w, to_y);
24772
24773 /* Prevent inadvertently clearing to end of the X window. */
24774 if (to_x > from_x && to_y > from_y)
24775 {
24776 BLOCK_INPUT;
24777 FRAME_RIF (f)->clear_frame_area (f, from_x, from_y,
24778 to_x - from_x, to_y - from_y);
24779 UNBLOCK_INPUT;
24780 }
24781 }
24782
24783 #endif /* HAVE_WINDOW_SYSTEM */
24784
24785
24786 \f
24787 /***********************************************************************
24788 Cursor types
24789 ***********************************************************************/
24790
24791 /* Value is the internal representation of the specified cursor type
24792 ARG. If type is BAR_CURSOR, return in *WIDTH the specified width
24793 of the bar cursor. */
24794
24795 static enum text_cursor_kinds
24796 get_specified_cursor_type (Lisp_Object arg, int *width)
24797 {
24798 enum text_cursor_kinds type;
24799
24800 if (NILP (arg))
24801 return NO_CURSOR;
24802
24803 if (EQ (arg, Qbox))
24804 return FILLED_BOX_CURSOR;
24805
24806 if (EQ (arg, Qhollow))
24807 return HOLLOW_BOX_CURSOR;
24808
24809 if (EQ (arg, Qbar))
24810 {
24811 *width = 2;
24812 return BAR_CURSOR;
24813 }
24814
24815 if (CONSP (arg)
24816 && EQ (XCAR (arg), Qbar)
24817 && INTEGERP (XCDR (arg))
24818 && XINT (XCDR (arg)) >= 0)
24819 {
24820 *width = XINT (XCDR (arg));
24821 return BAR_CURSOR;
24822 }
24823
24824 if (EQ (arg, Qhbar))
24825 {
24826 *width = 2;
24827 return HBAR_CURSOR;
24828 }
24829
24830 if (CONSP (arg)
24831 && EQ (XCAR (arg), Qhbar)
24832 && INTEGERP (XCDR (arg))
24833 && XINT (XCDR (arg)) >= 0)
24834 {
24835 *width = XINT (XCDR (arg));
24836 return HBAR_CURSOR;
24837 }
24838
24839 /* Treat anything unknown as "hollow box cursor".
24840 It was bad to signal an error; people have trouble fixing
24841 .Xdefaults with Emacs, when it has something bad in it. */
24842 type = HOLLOW_BOX_CURSOR;
24843
24844 return type;
24845 }
24846
24847 /* Set the default cursor types for specified frame. */
24848 void
24849 set_frame_cursor_types (struct frame *f, Lisp_Object arg)
24850 {
24851 int width = 1;
24852 Lisp_Object tem;
24853
24854 FRAME_DESIRED_CURSOR (f) = get_specified_cursor_type (arg, &width);
24855 FRAME_CURSOR_WIDTH (f) = width;
24856
24857 /* By default, set up the blink-off state depending on the on-state. */
24858
24859 tem = Fassoc (arg, Vblink_cursor_alist);
24860 if (!NILP (tem))
24861 {
24862 FRAME_BLINK_OFF_CURSOR (f)
24863 = get_specified_cursor_type (XCDR (tem), &width);
24864 FRAME_BLINK_OFF_CURSOR_WIDTH (f) = width;
24865 }
24866 else
24867 FRAME_BLINK_OFF_CURSOR (f) = DEFAULT_CURSOR;
24868 }
24869
24870
24871 #ifdef HAVE_WINDOW_SYSTEM
24872
24873 /* Return the cursor we want to be displayed in window W. Return
24874 width of bar/hbar cursor through WIDTH arg. Return with
24875 ACTIVE_CURSOR arg set to 1 if cursor in window W is `active'
24876 (i.e. if the `system caret' should track this cursor).
24877
24878 In a mini-buffer window, we want the cursor only to appear if we
24879 are reading input from this window. For the selected window, we
24880 want the cursor type given by the frame parameter or buffer local
24881 setting of cursor-type. If explicitly marked off, draw no cursor.
24882 In all other cases, we want a hollow box cursor. */
24883
24884 static enum text_cursor_kinds
24885 get_window_cursor_type (struct window *w, struct glyph *glyph, int *width,
24886 int *active_cursor)
24887 {
24888 struct frame *f = XFRAME (w->frame);
24889 struct buffer *b = XBUFFER (w->buffer);
24890 int cursor_type = DEFAULT_CURSOR;
24891 Lisp_Object alt_cursor;
24892 int non_selected = 0;
24893
24894 *active_cursor = 1;
24895
24896 /* Echo area */
24897 if (cursor_in_echo_area
24898 && FRAME_HAS_MINIBUF_P (f)
24899 && EQ (FRAME_MINIBUF_WINDOW (f), echo_area_window))
24900 {
24901 if (w == XWINDOW (echo_area_window))
24902 {
24903 if (EQ (BVAR (b, cursor_type), Qt) || NILP (BVAR (b, cursor_type)))
24904 {
24905 *width = FRAME_CURSOR_WIDTH (f);
24906 return FRAME_DESIRED_CURSOR (f);
24907 }
24908 else
24909 return get_specified_cursor_type (BVAR (b, cursor_type), width);
24910 }
24911
24912 *active_cursor = 0;
24913 non_selected = 1;
24914 }
24915
24916 /* Detect a nonselected window or nonselected frame. */
24917 else if (w != XWINDOW (f->selected_window)
24918 || f != FRAME_X_DISPLAY_INFO (f)->x_highlight_frame)
24919 {
24920 *active_cursor = 0;
24921
24922 if (MINI_WINDOW_P (w) && minibuf_level == 0)
24923 return NO_CURSOR;
24924
24925 non_selected = 1;
24926 }
24927
24928 /* Never display a cursor in a window in which cursor-type is nil. */
24929 if (NILP (BVAR (b, cursor_type)))
24930 return NO_CURSOR;
24931
24932 /* Get the normal cursor type for this window. */
24933 if (EQ (BVAR (b, cursor_type), Qt))
24934 {
24935 cursor_type = FRAME_DESIRED_CURSOR (f);
24936 *width = FRAME_CURSOR_WIDTH (f);
24937 }
24938 else
24939 cursor_type = get_specified_cursor_type (BVAR (b, cursor_type), width);
24940
24941 /* Use cursor-in-non-selected-windows instead
24942 for non-selected window or frame. */
24943 if (non_selected)
24944 {
24945 alt_cursor = BVAR (b, cursor_in_non_selected_windows);
24946 if (!EQ (Qt, alt_cursor))
24947 return get_specified_cursor_type (alt_cursor, width);
24948 /* t means modify the normal cursor type. */
24949 if (cursor_type == FILLED_BOX_CURSOR)
24950 cursor_type = HOLLOW_BOX_CURSOR;
24951 else if (cursor_type == BAR_CURSOR && *width > 1)
24952 --*width;
24953 return cursor_type;
24954 }
24955
24956 /* Use normal cursor if not blinked off. */
24957 if (!w->cursor_off_p)
24958 {
24959 if (glyph != NULL && glyph->type == IMAGE_GLYPH)
24960 {
24961 if (cursor_type == FILLED_BOX_CURSOR)
24962 {
24963 /* Using a block cursor on large images can be very annoying.
24964 So use a hollow cursor for "large" images.
24965 If image is not transparent (no mask), also use hollow cursor. */
24966 struct image *img = IMAGE_FROM_ID (f, glyph->u.img_id);
24967 if (img != NULL && IMAGEP (img->spec))
24968 {
24969 /* Arbitrarily, interpret "Large" as >32x32 and >NxN
24970 where N = size of default frame font size.
24971 This should cover most of the "tiny" icons people may use. */
24972 if (!img->mask
24973 || img->width > max (32, WINDOW_FRAME_COLUMN_WIDTH (w))
24974 || img->height > max (32, WINDOW_FRAME_LINE_HEIGHT (w)))
24975 cursor_type = HOLLOW_BOX_CURSOR;
24976 }
24977 }
24978 else if (cursor_type != NO_CURSOR)
24979 {
24980 /* Display current only supports BOX and HOLLOW cursors for images.
24981 So for now, unconditionally use a HOLLOW cursor when cursor is
24982 not a solid box cursor. */
24983 cursor_type = HOLLOW_BOX_CURSOR;
24984 }
24985 }
24986 return cursor_type;
24987 }
24988
24989 /* Cursor is blinked off, so determine how to "toggle" it. */
24990
24991 /* First look for an entry matching the buffer's cursor-type in blink-cursor-alist. */
24992 if ((alt_cursor = Fassoc (BVAR (b, cursor_type), Vblink_cursor_alist), !NILP (alt_cursor)))
24993 return get_specified_cursor_type (XCDR (alt_cursor), width);
24994
24995 /* Then see if frame has specified a specific blink off cursor type. */
24996 if (FRAME_BLINK_OFF_CURSOR (f) != DEFAULT_CURSOR)
24997 {
24998 *width = FRAME_BLINK_OFF_CURSOR_WIDTH (f);
24999 return FRAME_BLINK_OFF_CURSOR (f);
25000 }
25001
25002 #if 0
25003 /* Some people liked having a permanently visible blinking cursor,
25004 while others had very strong opinions against it. So it was
25005 decided to remove it. KFS 2003-09-03 */
25006
25007 /* Finally perform built-in cursor blinking:
25008 filled box <-> hollow box
25009 wide [h]bar <-> narrow [h]bar
25010 narrow [h]bar <-> no cursor
25011 other type <-> no cursor */
25012
25013 if (cursor_type == FILLED_BOX_CURSOR)
25014 return HOLLOW_BOX_CURSOR;
25015
25016 if ((cursor_type == BAR_CURSOR || cursor_type == HBAR_CURSOR) && *width > 1)
25017 {
25018 *width = 1;
25019 return cursor_type;
25020 }
25021 #endif
25022
25023 return NO_CURSOR;
25024 }
25025
25026
25027 /* Notice when the text cursor of window W has been completely
25028 overwritten by a drawing operation that outputs glyphs in AREA
25029 starting at X0 and ending at X1 in the line starting at Y0 and
25030 ending at Y1. X coordinates are area-relative. X1 < 0 means all
25031 the rest of the line after X0 has been written. Y coordinates
25032 are window-relative. */
25033
25034 static void
25035 notice_overwritten_cursor (struct window *w, enum glyph_row_area area,
25036 int x0, int x1, int y0, int y1)
25037 {
25038 int cx0, cx1, cy0, cy1;
25039 struct glyph_row *row;
25040
25041 if (!w->phys_cursor_on_p)
25042 return;
25043 if (area != TEXT_AREA)
25044 return;
25045
25046 if (w->phys_cursor.vpos < 0
25047 || w->phys_cursor.vpos >= w->current_matrix->nrows
25048 || (row = w->current_matrix->rows + w->phys_cursor.vpos,
25049 !(row->enabled_p && row->displays_text_p)))
25050 return;
25051
25052 if (row->cursor_in_fringe_p)
25053 {
25054 row->cursor_in_fringe_p = 0;
25055 draw_fringe_bitmap (w, row, row->reversed_p);
25056 w->phys_cursor_on_p = 0;
25057 return;
25058 }
25059
25060 cx0 = w->phys_cursor.x;
25061 cx1 = cx0 + w->phys_cursor_width;
25062 if (x0 > cx0 || (x1 >= 0 && x1 < cx1))
25063 return;
25064
25065 /* The cursor image will be completely removed from the
25066 screen if the output area intersects the cursor area in
25067 y-direction. When we draw in [y0 y1[, and some part of
25068 the cursor is at y < y0, that part must have been drawn
25069 before. When scrolling, the cursor is erased before
25070 actually scrolling, so we don't come here. When not
25071 scrolling, the rows above the old cursor row must have
25072 changed, and in this case these rows must have written
25073 over the cursor image.
25074
25075 Likewise if part of the cursor is below y1, with the
25076 exception of the cursor being in the first blank row at
25077 the buffer and window end because update_text_area
25078 doesn't draw that row. (Except when it does, but
25079 that's handled in update_text_area.) */
25080
25081 cy0 = w->phys_cursor.y;
25082 cy1 = cy0 + w->phys_cursor_height;
25083 if ((y0 < cy0 || y0 >= cy1) && (y1 <= cy0 || y1 >= cy1))
25084 return;
25085
25086 w->phys_cursor_on_p = 0;
25087 }
25088
25089 #endif /* HAVE_WINDOW_SYSTEM */
25090
25091 \f
25092 /************************************************************************
25093 Mouse Face
25094 ************************************************************************/
25095
25096 #ifdef HAVE_WINDOW_SYSTEM
25097
25098 /* EXPORT for RIF:
25099 Fix the display of area AREA of overlapping row ROW in window W
25100 with respect to the overlapping part OVERLAPS. */
25101
25102 void
25103 x_fix_overlapping_area (struct window *w, struct glyph_row *row,
25104 enum glyph_row_area area, int overlaps)
25105 {
25106 int i, x;
25107
25108 BLOCK_INPUT;
25109
25110 x = 0;
25111 for (i = 0; i < row->used[area];)
25112 {
25113 if (row->glyphs[area][i].overlaps_vertically_p)
25114 {
25115 int start = i, start_x = x;
25116
25117 do
25118 {
25119 x += row->glyphs[area][i].pixel_width;
25120 ++i;
25121 }
25122 while (i < row->used[area]
25123 && row->glyphs[area][i].overlaps_vertically_p);
25124
25125 draw_glyphs (w, start_x, row, area,
25126 start, i,
25127 DRAW_NORMAL_TEXT, overlaps);
25128 }
25129 else
25130 {
25131 x += row->glyphs[area][i].pixel_width;
25132 ++i;
25133 }
25134 }
25135
25136 UNBLOCK_INPUT;
25137 }
25138
25139
25140 /* EXPORT:
25141 Draw the cursor glyph of window W in glyph row ROW. See the
25142 comment of draw_glyphs for the meaning of HL. */
25143
25144 void
25145 draw_phys_cursor_glyph (struct window *w, struct glyph_row *row,
25146 enum draw_glyphs_face hl)
25147 {
25148 /* If cursor hpos is out of bounds, don't draw garbage. This can
25149 happen in mini-buffer windows when switching between echo area
25150 glyphs and mini-buffer. */
25151 if ((row->reversed_p
25152 ? (w->phys_cursor.hpos >= 0)
25153 : (w->phys_cursor.hpos < row->used[TEXT_AREA])))
25154 {
25155 int on_p = w->phys_cursor_on_p;
25156 int x1;
25157 x1 = draw_glyphs (w, w->phys_cursor.x, row, TEXT_AREA,
25158 w->phys_cursor.hpos, w->phys_cursor.hpos + 1,
25159 hl, 0);
25160 w->phys_cursor_on_p = on_p;
25161
25162 if (hl == DRAW_CURSOR)
25163 w->phys_cursor_width = x1 - w->phys_cursor.x;
25164 /* When we erase the cursor, and ROW is overlapped by other
25165 rows, make sure that these overlapping parts of other rows
25166 are redrawn. */
25167 else if (hl == DRAW_NORMAL_TEXT && row->overlapped_p)
25168 {
25169 w->phys_cursor_width = x1 - w->phys_cursor.x;
25170
25171 if (row > w->current_matrix->rows
25172 && MATRIX_ROW_OVERLAPS_SUCC_P (row - 1))
25173 x_fix_overlapping_area (w, row - 1, TEXT_AREA,
25174 OVERLAPS_ERASED_CURSOR);
25175
25176 if (MATRIX_ROW_BOTTOM_Y (row) < window_text_bottom_y (w)
25177 && MATRIX_ROW_OVERLAPS_PRED_P (row + 1))
25178 x_fix_overlapping_area (w, row + 1, TEXT_AREA,
25179 OVERLAPS_ERASED_CURSOR);
25180 }
25181 }
25182 }
25183
25184
25185 /* EXPORT:
25186 Erase the image of a cursor of window W from the screen. */
25187
25188 void
25189 erase_phys_cursor (struct window *w)
25190 {
25191 struct frame *f = XFRAME (w->frame);
25192 Mouse_HLInfo *hlinfo = MOUSE_HL_INFO (f);
25193 int hpos = w->phys_cursor.hpos;
25194 int vpos = w->phys_cursor.vpos;
25195 int mouse_face_here_p = 0;
25196 struct glyph_matrix *active_glyphs = w->current_matrix;
25197 struct glyph_row *cursor_row;
25198 struct glyph *cursor_glyph;
25199 enum draw_glyphs_face hl;
25200
25201 /* No cursor displayed or row invalidated => nothing to do on the
25202 screen. */
25203 if (w->phys_cursor_type == NO_CURSOR)
25204 goto mark_cursor_off;
25205
25206 /* VPOS >= active_glyphs->nrows means that window has been resized.
25207 Don't bother to erase the cursor. */
25208 if (vpos >= active_glyphs->nrows)
25209 goto mark_cursor_off;
25210
25211 /* If row containing cursor is marked invalid, there is nothing we
25212 can do. */
25213 cursor_row = MATRIX_ROW (active_glyphs, vpos);
25214 if (!cursor_row->enabled_p)
25215 goto mark_cursor_off;
25216
25217 /* If line spacing is > 0, old cursor may only be partially visible in
25218 window after split-window. So adjust visible height. */
25219 cursor_row->visible_height = min (cursor_row->visible_height,
25220 window_text_bottom_y (w) - cursor_row->y);
25221
25222 /* If row is completely invisible, don't attempt to delete a cursor which
25223 isn't there. This can happen if cursor is at top of a window, and
25224 we switch to a buffer with a header line in that window. */
25225 if (cursor_row->visible_height <= 0)
25226 goto mark_cursor_off;
25227
25228 /* If cursor is in the fringe, erase by drawing actual bitmap there. */
25229 if (cursor_row->cursor_in_fringe_p)
25230 {
25231 cursor_row->cursor_in_fringe_p = 0;
25232 draw_fringe_bitmap (w, cursor_row, cursor_row->reversed_p);
25233 goto mark_cursor_off;
25234 }
25235
25236 /* This can happen when the new row is shorter than the old one.
25237 In this case, either draw_glyphs or clear_end_of_line
25238 should have cleared the cursor. Note that we wouldn't be
25239 able to erase the cursor in this case because we don't have a
25240 cursor glyph at hand. */
25241 if ((cursor_row->reversed_p
25242 ? (w->phys_cursor.hpos < 0)
25243 : (w->phys_cursor.hpos >= cursor_row->used[TEXT_AREA])))
25244 goto mark_cursor_off;
25245
25246 /* If the cursor is in the mouse face area, redisplay that when
25247 we clear the cursor. */
25248 if (! NILP (hlinfo->mouse_face_window)
25249 && coords_in_mouse_face_p (w, hpos, vpos)
25250 /* Don't redraw the cursor's spot in mouse face if it is at the
25251 end of a line (on a newline). The cursor appears there, but
25252 mouse highlighting does not. */
25253 && cursor_row->used[TEXT_AREA] > hpos && hpos >= 0)
25254 mouse_face_here_p = 1;
25255
25256 /* Maybe clear the display under the cursor. */
25257 if (w->phys_cursor_type == HOLLOW_BOX_CURSOR)
25258 {
25259 int x, y, left_x;
25260 int header_line_height = WINDOW_HEADER_LINE_HEIGHT (w);
25261 int width;
25262
25263 cursor_glyph = get_phys_cursor_glyph (w);
25264 if (cursor_glyph == NULL)
25265 goto mark_cursor_off;
25266
25267 width = cursor_glyph->pixel_width;
25268 left_x = window_box_left_offset (w, TEXT_AREA);
25269 x = w->phys_cursor.x;
25270 if (x < left_x)
25271 width -= left_x - x;
25272 width = min (width, window_box_width (w, TEXT_AREA) - x);
25273 y = WINDOW_TO_FRAME_PIXEL_Y (w, max (header_line_height, cursor_row->y));
25274 x = WINDOW_TEXT_TO_FRAME_PIXEL_X (w, max (x, left_x));
25275
25276 if (width > 0)
25277 FRAME_RIF (f)->clear_frame_area (f, x, y, width, cursor_row->visible_height);
25278 }
25279
25280 /* Erase the cursor by redrawing the character underneath it. */
25281 if (mouse_face_here_p)
25282 hl = DRAW_MOUSE_FACE;
25283 else
25284 hl = DRAW_NORMAL_TEXT;
25285 draw_phys_cursor_glyph (w, cursor_row, hl);
25286
25287 mark_cursor_off:
25288 w->phys_cursor_on_p = 0;
25289 w->phys_cursor_type = NO_CURSOR;
25290 }
25291
25292
25293 /* EXPORT:
25294 Display or clear cursor of window W. If ON is zero, clear the
25295 cursor. If it is non-zero, display the cursor. If ON is nonzero,
25296 where to put the cursor is specified by HPOS, VPOS, X and Y. */
25297
25298 void
25299 display_and_set_cursor (struct window *w, int on,
25300 int hpos, int vpos, int x, int y)
25301 {
25302 struct frame *f = XFRAME (w->frame);
25303 int new_cursor_type;
25304 int new_cursor_width;
25305 int active_cursor;
25306 struct glyph_row *glyph_row;
25307 struct glyph *glyph;
25308
25309 /* This is pointless on invisible frames, and dangerous on garbaged
25310 windows and frames; in the latter case, the frame or window may
25311 be in the midst of changing its size, and x and y may be off the
25312 window. */
25313 if (! FRAME_VISIBLE_P (f)
25314 || FRAME_GARBAGED_P (f)
25315 || vpos >= w->current_matrix->nrows
25316 || hpos >= w->current_matrix->matrix_w)
25317 return;
25318
25319 /* If cursor is off and we want it off, return quickly. */
25320 if (!on && !w->phys_cursor_on_p)
25321 return;
25322
25323 glyph_row = MATRIX_ROW (w->current_matrix, vpos);
25324 /* If cursor row is not enabled, we don't really know where to
25325 display the cursor. */
25326 if (!glyph_row->enabled_p)
25327 {
25328 w->phys_cursor_on_p = 0;
25329 return;
25330 }
25331
25332 glyph = NULL;
25333 if (!glyph_row->exact_window_width_line_p
25334 || (0 <= hpos && hpos < glyph_row->used[TEXT_AREA]))
25335 glyph = glyph_row->glyphs[TEXT_AREA] + hpos;
25336
25337 xassert (interrupt_input_blocked);
25338
25339 /* Set new_cursor_type to the cursor we want to be displayed. */
25340 new_cursor_type = get_window_cursor_type (w, glyph,
25341 &new_cursor_width, &active_cursor);
25342
25343 /* If cursor is currently being shown and we don't want it to be or
25344 it is in the wrong place, or the cursor type is not what we want,
25345 erase it. */
25346 if (w->phys_cursor_on_p
25347 && (!on
25348 || w->phys_cursor.x != x
25349 || w->phys_cursor.y != y
25350 || new_cursor_type != w->phys_cursor_type
25351 || ((new_cursor_type == BAR_CURSOR || new_cursor_type == HBAR_CURSOR)
25352 && new_cursor_width != w->phys_cursor_width)))
25353 erase_phys_cursor (w);
25354
25355 /* Don't check phys_cursor_on_p here because that flag is only set
25356 to zero in some cases where we know that the cursor has been
25357 completely erased, to avoid the extra work of erasing the cursor
25358 twice. In other words, phys_cursor_on_p can be 1 and the cursor
25359 still not be visible, or it has only been partly erased. */
25360 if (on)
25361 {
25362 w->phys_cursor_ascent = glyph_row->ascent;
25363 w->phys_cursor_height = glyph_row->height;
25364
25365 /* Set phys_cursor_.* before x_draw_.* is called because some
25366 of them may need the information. */
25367 w->phys_cursor.x = x;
25368 w->phys_cursor.y = glyph_row->y;
25369 w->phys_cursor.hpos = hpos;
25370 w->phys_cursor.vpos = vpos;
25371 }
25372
25373 FRAME_RIF (f)->draw_window_cursor (w, glyph_row, x, y,
25374 new_cursor_type, new_cursor_width,
25375 on, active_cursor);
25376 }
25377
25378
25379 /* Switch the display of W's cursor on or off, according to the value
25380 of ON. */
25381
25382 static void
25383 update_window_cursor (struct window *w, int on)
25384 {
25385 /* Don't update cursor in windows whose frame is in the process
25386 of being deleted. */
25387 if (w->current_matrix)
25388 {
25389 BLOCK_INPUT;
25390 display_and_set_cursor (w, on, w->phys_cursor.hpos, w->phys_cursor.vpos,
25391 w->phys_cursor.x, w->phys_cursor.y);
25392 UNBLOCK_INPUT;
25393 }
25394 }
25395
25396
25397 /* Call update_window_cursor with parameter ON_P on all leaf windows
25398 in the window tree rooted at W. */
25399
25400 static void
25401 update_cursor_in_window_tree (struct window *w, int on_p)
25402 {
25403 while (w)
25404 {
25405 if (!NILP (w->hchild))
25406 update_cursor_in_window_tree (XWINDOW (w->hchild), on_p);
25407 else if (!NILP (w->vchild))
25408 update_cursor_in_window_tree (XWINDOW (w->vchild), on_p);
25409 else
25410 update_window_cursor (w, on_p);
25411
25412 w = NILP (w->next) ? 0 : XWINDOW (w->next);
25413 }
25414 }
25415
25416
25417 /* EXPORT:
25418 Display the cursor on window W, or clear it, according to ON_P.
25419 Don't change the cursor's position. */
25420
25421 void
25422 x_update_cursor (struct frame *f, int on_p)
25423 {
25424 update_cursor_in_window_tree (XWINDOW (f->root_window), on_p);
25425 }
25426
25427
25428 /* EXPORT:
25429 Clear the cursor of window W to background color, and mark the
25430 cursor as not shown. This is used when the text where the cursor
25431 is about to be rewritten. */
25432
25433 void
25434 x_clear_cursor (struct window *w)
25435 {
25436 if (FRAME_VISIBLE_P (XFRAME (w->frame)) && w->phys_cursor_on_p)
25437 update_window_cursor (w, 0);
25438 }
25439
25440 #endif /* HAVE_WINDOW_SYSTEM */
25441
25442 /* Implementation of draw_row_with_mouse_face for GUI sessions, GPM,
25443 and MSDOS. */
25444 static void
25445 draw_row_with_mouse_face (struct window *w, int start_x, struct glyph_row *row,
25446 int start_hpos, int end_hpos,
25447 enum draw_glyphs_face draw)
25448 {
25449 #ifdef HAVE_WINDOW_SYSTEM
25450 if (FRAME_WINDOW_P (XFRAME (w->frame)))
25451 {
25452 draw_glyphs (w, start_x, row, TEXT_AREA, start_hpos, end_hpos, draw, 0);
25453 return;
25454 }
25455 #endif
25456 #if defined (HAVE_GPM) || defined (MSDOS)
25457 tty_draw_row_with_mouse_face (w, row, start_hpos, end_hpos, draw);
25458 #endif
25459 }
25460
25461 /* Display the active region described by mouse_face_* according to DRAW. */
25462
25463 static void
25464 show_mouse_face (Mouse_HLInfo *hlinfo, enum draw_glyphs_face draw)
25465 {
25466 struct window *w = XWINDOW (hlinfo->mouse_face_window);
25467 struct frame *f = XFRAME (WINDOW_FRAME (w));
25468
25469 if (/* If window is in the process of being destroyed, don't bother
25470 to do anything. */
25471 w->current_matrix != NULL
25472 /* Don't update mouse highlight if hidden */
25473 && (draw != DRAW_MOUSE_FACE || !hlinfo->mouse_face_hidden)
25474 /* Recognize when we are called to operate on rows that don't exist
25475 anymore. This can happen when a window is split. */
25476 && hlinfo->mouse_face_end_row < w->current_matrix->nrows)
25477 {
25478 int phys_cursor_on_p = w->phys_cursor_on_p;
25479 struct glyph_row *row, *first, *last;
25480
25481 first = MATRIX_ROW (w->current_matrix, hlinfo->mouse_face_beg_row);
25482 last = MATRIX_ROW (w->current_matrix, hlinfo->mouse_face_end_row);
25483
25484 for (row = first; row <= last && row->enabled_p; ++row)
25485 {
25486 int start_hpos, end_hpos, start_x;
25487
25488 /* For all but the first row, the highlight starts at column 0. */
25489 if (row == first)
25490 {
25491 /* R2L rows have BEG and END in reversed order, but the
25492 screen drawing geometry is always left to right. So
25493 we need to mirror the beginning and end of the
25494 highlighted area in R2L rows. */
25495 if (!row->reversed_p)
25496 {
25497 start_hpos = hlinfo->mouse_face_beg_col;
25498 start_x = hlinfo->mouse_face_beg_x;
25499 }
25500 else if (row == last)
25501 {
25502 start_hpos = hlinfo->mouse_face_end_col;
25503 start_x = hlinfo->mouse_face_end_x;
25504 }
25505 else
25506 {
25507 start_hpos = 0;
25508 start_x = 0;
25509 }
25510 }
25511 else if (row->reversed_p && row == last)
25512 {
25513 start_hpos = hlinfo->mouse_face_end_col;
25514 start_x = hlinfo->mouse_face_end_x;
25515 }
25516 else
25517 {
25518 start_hpos = 0;
25519 start_x = 0;
25520 }
25521
25522 if (row == last)
25523 {
25524 if (!row->reversed_p)
25525 end_hpos = hlinfo->mouse_face_end_col;
25526 else if (row == first)
25527 end_hpos = hlinfo->mouse_face_beg_col;
25528 else
25529 {
25530 end_hpos = row->used[TEXT_AREA];
25531 if (draw == DRAW_NORMAL_TEXT)
25532 row->fill_line_p = 1; /* Clear to end of line */
25533 }
25534 }
25535 else if (row->reversed_p && row == first)
25536 end_hpos = hlinfo->mouse_face_beg_col;
25537 else
25538 {
25539 end_hpos = row->used[TEXT_AREA];
25540 if (draw == DRAW_NORMAL_TEXT)
25541 row->fill_line_p = 1; /* Clear to end of line */
25542 }
25543
25544 if (end_hpos > start_hpos)
25545 {
25546 draw_row_with_mouse_face (w, start_x, row,
25547 start_hpos, end_hpos, draw);
25548
25549 row->mouse_face_p
25550 = draw == DRAW_MOUSE_FACE || draw == DRAW_IMAGE_RAISED;
25551 }
25552 }
25553
25554 #ifdef HAVE_WINDOW_SYSTEM
25555 /* When we've written over the cursor, arrange for it to
25556 be displayed again. */
25557 if (FRAME_WINDOW_P (f)
25558 && phys_cursor_on_p && !w->phys_cursor_on_p)
25559 {
25560 BLOCK_INPUT;
25561 display_and_set_cursor (w, 1,
25562 w->phys_cursor.hpos, w->phys_cursor.vpos,
25563 w->phys_cursor.x, w->phys_cursor.y);
25564 UNBLOCK_INPUT;
25565 }
25566 #endif /* HAVE_WINDOW_SYSTEM */
25567 }
25568
25569 #ifdef HAVE_WINDOW_SYSTEM
25570 /* Change the mouse cursor. */
25571 if (FRAME_WINDOW_P (f))
25572 {
25573 if (draw == DRAW_NORMAL_TEXT
25574 && !EQ (hlinfo->mouse_face_window, f->tool_bar_window))
25575 FRAME_RIF (f)->define_frame_cursor (f, FRAME_X_OUTPUT (f)->text_cursor);
25576 else if (draw == DRAW_MOUSE_FACE)
25577 FRAME_RIF (f)->define_frame_cursor (f, FRAME_X_OUTPUT (f)->hand_cursor);
25578 else
25579 FRAME_RIF (f)->define_frame_cursor (f, FRAME_X_OUTPUT (f)->nontext_cursor);
25580 }
25581 #endif /* HAVE_WINDOW_SYSTEM */
25582 }
25583
25584 /* EXPORT:
25585 Clear out the mouse-highlighted active region.
25586 Redraw it un-highlighted first. Value is non-zero if mouse
25587 face was actually drawn unhighlighted. */
25588
25589 int
25590 clear_mouse_face (Mouse_HLInfo *hlinfo)
25591 {
25592 int cleared = 0;
25593
25594 if (!hlinfo->mouse_face_hidden && !NILP (hlinfo->mouse_face_window))
25595 {
25596 show_mouse_face (hlinfo, DRAW_NORMAL_TEXT);
25597 cleared = 1;
25598 }
25599
25600 hlinfo->mouse_face_beg_row = hlinfo->mouse_face_beg_col = -1;
25601 hlinfo->mouse_face_end_row = hlinfo->mouse_face_end_col = -1;
25602 hlinfo->mouse_face_window = Qnil;
25603 hlinfo->mouse_face_overlay = Qnil;
25604 return cleared;
25605 }
25606
25607 /* Return non-zero if the coordinates HPOS and VPOS on windows W are
25608 within the mouse face on that window. */
25609 static int
25610 coords_in_mouse_face_p (struct window *w, int hpos, int vpos)
25611 {
25612 Mouse_HLInfo *hlinfo = MOUSE_HL_INFO (XFRAME (w->frame));
25613
25614 /* Quickly resolve the easy cases. */
25615 if (!(WINDOWP (hlinfo->mouse_face_window)
25616 && XWINDOW (hlinfo->mouse_face_window) == w))
25617 return 0;
25618 if (vpos < hlinfo->mouse_face_beg_row
25619 || vpos > hlinfo->mouse_face_end_row)
25620 return 0;
25621 if (vpos > hlinfo->mouse_face_beg_row
25622 && vpos < hlinfo->mouse_face_end_row)
25623 return 1;
25624
25625 if (!MATRIX_ROW (w->current_matrix, vpos)->reversed_p)
25626 {
25627 if (hlinfo->mouse_face_beg_row == hlinfo->mouse_face_end_row)
25628 {
25629 if (hlinfo->mouse_face_beg_col <= hpos && hpos < hlinfo->mouse_face_end_col)
25630 return 1;
25631 }
25632 else if ((vpos == hlinfo->mouse_face_beg_row
25633 && hpos >= hlinfo->mouse_face_beg_col)
25634 || (vpos == hlinfo->mouse_face_end_row
25635 && hpos < hlinfo->mouse_face_end_col))
25636 return 1;
25637 }
25638 else
25639 {
25640 if (hlinfo->mouse_face_beg_row == hlinfo->mouse_face_end_row)
25641 {
25642 if (hlinfo->mouse_face_end_col < hpos && hpos <= hlinfo->mouse_face_beg_col)
25643 return 1;
25644 }
25645 else if ((vpos == hlinfo->mouse_face_beg_row
25646 && hpos <= hlinfo->mouse_face_beg_col)
25647 || (vpos == hlinfo->mouse_face_end_row
25648 && hpos > hlinfo->mouse_face_end_col))
25649 return 1;
25650 }
25651 return 0;
25652 }
25653
25654
25655 /* EXPORT:
25656 Non-zero if physical cursor of window W is within mouse face. */
25657
25658 int
25659 cursor_in_mouse_face_p (struct window *w)
25660 {
25661 return coords_in_mouse_face_p (w, w->phys_cursor.hpos, w->phys_cursor.vpos);
25662 }
25663
25664
25665 \f
25666 /* Find the glyph rows START_ROW and END_ROW of window W that display
25667 characters between buffer positions START_CHARPOS and END_CHARPOS
25668 (excluding END_CHARPOS). This is similar to row_containing_pos,
25669 but is more accurate when bidi reordering makes buffer positions
25670 change non-linearly with glyph rows. */
25671 static void
25672 rows_from_pos_range (struct window *w,
25673 EMACS_INT start_charpos, EMACS_INT end_charpos,
25674 struct glyph_row **start, struct glyph_row **end)
25675 {
25676 struct glyph_row *first = MATRIX_FIRST_TEXT_ROW (w->current_matrix);
25677 int last_y = window_text_bottom_y (w);
25678 struct glyph_row *row;
25679
25680 *start = NULL;
25681 *end = NULL;
25682
25683 while (!first->enabled_p
25684 && first < MATRIX_BOTTOM_TEXT_ROW (w->current_matrix, w))
25685 first++;
25686
25687 /* Find the START row. */
25688 for (row = first;
25689 row->enabled_p && MATRIX_ROW_BOTTOM_Y (row) <= last_y;
25690 row++)
25691 {
25692 /* A row can potentially be the START row if the range of the
25693 characters it displays intersects the range
25694 [START_CHARPOS..END_CHARPOS). */
25695 if (! ((start_charpos < MATRIX_ROW_START_CHARPOS (row)
25696 && end_charpos < MATRIX_ROW_START_CHARPOS (row))
25697 /* See the commentary in row_containing_pos, for the
25698 explanation of the complicated way to check whether
25699 some position is beyond the end of the characters
25700 displayed by a row. */
25701 || ((start_charpos > MATRIX_ROW_END_CHARPOS (row)
25702 || (start_charpos == MATRIX_ROW_END_CHARPOS (row)
25703 && !row->ends_at_zv_p
25704 && !MATRIX_ROW_ENDS_IN_MIDDLE_OF_CHAR_P (row)))
25705 && (end_charpos > MATRIX_ROW_END_CHARPOS (row)
25706 || (end_charpos == MATRIX_ROW_END_CHARPOS (row)
25707 && !row->ends_at_zv_p
25708 && !MATRIX_ROW_ENDS_IN_MIDDLE_OF_CHAR_P (row))))))
25709 {
25710 /* Found a candidate row. Now make sure at least one of the
25711 glyphs it displays has a charpos from the range
25712 [START_CHARPOS..END_CHARPOS).
25713
25714 This is not obvious because bidi reordering could make
25715 buffer positions of a row be 1,2,3,102,101,100, and if we
25716 want to highlight characters in [50..60), we don't want
25717 this row, even though [50..60) does intersect [1..103),
25718 the range of character positions given by the row's start
25719 and end positions. */
25720 struct glyph *g = row->glyphs[TEXT_AREA];
25721 struct glyph *e = g + row->used[TEXT_AREA];
25722
25723 while (g < e)
25724 {
25725 if ((BUFFERP (g->object) || INTEGERP (g->object))
25726 && start_charpos <= g->charpos && g->charpos < end_charpos)
25727 *start = row;
25728 g++;
25729 }
25730 if (*start)
25731 break;
25732 }
25733 }
25734
25735 /* Find the END row. */
25736 if (!*start
25737 /* If the last row is partially visible, start looking for END
25738 from that row, instead of starting from FIRST. */
25739 && !(row->enabled_p
25740 && row->y < last_y && MATRIX_ROW_BOTTOM_Y (row) > last_y))
25741 row = first;
25742 for ( ; row->enabled_p && MATRIX_ROW_BOTTOM_Y (row) <= last_y; row++)
25743 {
25744 struct glyph_row *next = row + 1;
25745
25746 if (!next->enabled_p
25747 || next >= MATRIX_BOTTOM_TEXT_ROW (w->current_matrix, w)
25748 /* The first row >= START whose range of displayed characters
25749 does NOT intersect the range [START_CHARPOS..END_CHARPOS]
25750 is the row END + 1. */
25751 || (start_charpos < MATRIX_ROW_START_CHARPOS (next)
25752 && end_charpos < MATRIX_ROW_START_CHARPOS (next))
25753 || ((start_charpos > MATRIX_ROW_END_CHARPOS (next)
25754 || (start_charpos == MATRIX_ROW_END_CHARPOS (next)
25755 && !next->ends_at_zv_p
25756 && !MATRIX_ROW_ENDS_IN_MIDDLE_OF_CHAR_P (next)))
25757 && (end_charpos > MATRIX_ROW_END_CHARPOS (next)
25758 || (end_charpos == MATRIX_ROW_END_CHARPOS (next)
25759 && !next->ends_at_zv_p
25760 && !MATRIX_ROW_ENDS_IN_MIDDLE_OF_CHAR_P (next)))))
25761 {
25762 *end = row;
25763 break;
25764 }
25765 else
25766 {
25767 /* If the next row's edges intersect [START_CHARPOS..END_CHARPOS],
25768 but none of the characters it displays are in the range, it is
25769 also END + 1. */
25770 struct glyph *g = next->glyphs[TEXT_AREA];
25771 struct glyph *e = g + next->used[TEXT_AREA];
25772
25773 while (g < e)
25774 {
25775 if ((BUFFERP (g->object) || INTEGERP (g->object))
25776 && start_charpos <= g->charpos && g->charpos < end_charpos)
25777 break;
25778 g++;
25779 }
25780 if (g == e)
25781 {
25782 *end = row;
25783 break;
25784 }
25785 }
25786 }
25787 }
25788
25789 /* This function sets the mouse_face_* elements of HLINFO, assuming
25790 the mouse cursor is on a glyph with buffer charpos MOUSE_CHARPOS in
25791 window WINDOW. START_CHARPOS and END_CHARPOS are buffer positions
25792 for the overlay or run of text properties specifying the mouse
25793 face. BEFORE_STRING and AFTER_STRING, if non-nil, are a
25794 before-string and after-string that must also be highlighted.
25795 COVER_STRING, if non-nil, is a display string that may cover some
25796 or all of the highlighted text. */
25797
25798 static void
25799 mouse_face_from_buffer_pos (Lisp_Object window,
25800 Mouse_HLInfo *hlinfo,
25801 EMACS_INT mouse_charpos,
25802 EMACS_INT start_charpos,
25803 EMACS_INT end_charpos,
25804 Lisp_Object before_string,
25805 Lisp_Object after_string,
25806 Lisp_Object cover_string)
25807 {
25808 struct window *w = XWINDOW (window);
25809 struct glyph_row *first = MATRIX_FIRST_TEXT_ROW (w->current_matrix);
25810 struct glyph_row *r1, *r2;
25811 struct glyph *glyph, *end;
25812 EMACS_INT ignore, pos;
25813 int x;
25814
25815 xassert (NILP (cover_string) || STRINGP (cover_string));
25816 xassert (NILP (before_string) || STRINGP (before_string));
25817 xassert (NILP (after_string) || STRINGP (after_string));
25818
25819 /* Find the rows corresponding to START_CHARPOS and END_CHARPOS. */
25820 rows_from_pos_range (w, start_charpos, end_charpos, &r1, &r2);
25821 if (r1 == NULL)
25822 r1 = MATRIX_ROW (w->current_matrix, XFASTINT (w->window_end_vpos));
25823 /* If the before-string or display-string contains newlines,
25824 rows_from_pos_range skips to its last row. Move back. */
25825 if (!NILP (before_string) || !NILP (cover_string))
25826 {
25827 struct glyph_row *prev;
25828 while ((prev = r1 - 1, prev >= first)
25829 && MATRIX_ROW_END_CHARPOS (prev) == start_charpos
25830 && prev->used[TEXT_AREA] > 0)
25831 {
25832 struct glyph *beg = prev->glyphs[TEXT_AREA];
25833 glyph = beg + prev->used[TEXT_AREA];
25834 while (--glyph >= beg && INTEGERP (glyph->object));
25835 if (glyph < beg
25836 || !(EQ (glyph->object, before_string)
25837 || EQ (glyph->object, cover_string)))
25838 break;
25839 r1 = prev;
25840 }
25841 }
25842 if (r2 == NULL)
25843 {
25844 r2 = MATRIX_ROW (w->current_matrix, XFASTINT (w->window_end_vpos));
25845 hlinfo->mouse_face_past_end = 1;
25846 }
25847 else if (!NILP (after_string))
25848 {
25849 /* If the after-string has newlines, advance to its last row. */
25850 struct glyph_row *next;
25851 struct glyph_row *last
25852 = MATRIX_ROW (w->current_matrix, XFASTINT (w->window_end_vpos));
25853
25854 for (next = r2 + 1;
25855 next <= last
25856 && next->used[TEXT_AREA] > 0
25857 && EQ (next->glyphs[TEXT_AREA]->object, after_string);
25858 ++next)
25859 r2 = next;
25860 }
25861 /* The rest of the display engine assumes that mouse_face_beg_row is
25862 either above below mouse_face_end_row or identical to it. But
25863 with bidi-reordered continued lines, the row for START_CHARPOS
25864 could be below the row for END_CHARPOS. If so, swap the rows and
25865 store them in correct order. */
25866 if (r1->y > r2->y)
25867 {
25868 struct glyph_row *tem = r2;
25869
25870 r2 = r1;
25871 r1 = tem;
25872 }
25873
25874 hlinfo->mouse_face_beg_y = r1->y;
25875 hlinfo->mouse_face_beg_row = MATRIX_ROW_VPOS (r1, w->current_matrix);
25876 hlinfo->mouse_face_end_y = r2->y;
25877 hlinfo->mouse_face_end_row = MATRIX_ROW_VPOS (r2, w->current_matrix);
25878
25879 /* For a bidi-reordered row, the positions of BEFORE_STRING,
25880 AFTER_STRING, COVER_STRING, START_CHARPOS, and END_CHARPOS
25881 could be anywhere in the row and in any order. The strategy
25882 below is to find the leftmost and the rightmost glyph that
25883 belongs to either of these 3 strings, or whose position is
25884 between START_CHARPOS and END_CHARPOS, and highlight all the
25885 glyphs between those two. This may cover more than just the text
25886 between START_CHARPOS and END_CHARPOS if the range of characters
25887 strides the bidi level boundary, e.g. if the beginning is in R2L
25888 text while the end is in L2R text or vice versa. */
25889 if (!r1->reversed_p)
25890 {
25891 /* This row is in a left to right paragraph. Scan it left to
25892 right. */
25893 glyph = r1->glyphs[TEXT_AREA];
25894 end = glyph + r1->used[TEXT_AREA];
25895 x = r1->x;
25896
25897 /* Skip truncation glyphs at the start of the glyph row. */
25898 if (r1->displays_text_p)
25899 for (; glyph < end
25900 && INTEGERP (glyph->object)
25901 && glyph->charpos < 0;
25902 ++glyph)
25903 x += glyph->pixel_width;
25904
25905 /* Scan the glyph row, looking for BEFORE_STRING, AFTER_STRING,
25906 or COVER_STRING, and the first glyph from buffer whose
25907 position is between START_CHARPOS and END_CHARPOS. */
25908 for (; glyph < end
25909 && !INTEGERP (glyph->object)
25910 && !EQ (glyph->object, cover_string)
25911 && !(BUFFERP (glyph->object)
25912 && (glyph->charpos >= start_charpos
25913 && glyph->charpos < end_charpos));
25914 ++glyph)
25915 {
25916 /* BEFORE_STRING or AFTER_STRING are only relevant if they
25917 are present at buffer positions between START_CHARPOS and
25918 END_CHARPOS, or if they come from an overlay. */
25919 if (EQ (glyph->object, before_string))
25920 {
25921 pos = string_buffer_position (before_string,
25922 start_charpos);
25923 /* If pos == 0, it means before_string came from an
25924 overlay, not from a buffer position. */
25925 if (!pos || (pos >= start_charpos && pos < end_charpos))
25926 break;
25927 }
25928 else if (EQ (glyph->object, after_string))
25929 {
25930 pos = string_buffer_position (after_string, end_charpos);
25931 if (!pos || (pos >= start_charpos && pos < end_charpos))
25932 break;
25933 }
25934 x += glyph->pixel_width;
25935 }
25936 hlinfo->mouse_face_beg_x = x;
25937 hlinfo->mouse_face_beg_col = glyph - r1->glyphs[TEXT_AREA];
25938 }
25939 else
25940 {
25941 /* This row is in a right to left paragraph. Scan it right to
25942 left. */
25943 struct glyph *g;
25944
25945 end = r1->glyphs[TEXT_AREA] - 1;
25946 glyph = end + r1->used[TEXT_AREA];
25947
25948 /* Skip truncation glyphs at the start of the glyph row. */
25949 if (r1->displays_text_p)
25950 for (; glyph > end
25951 && INTEGERP (glyph->object)
25952 && glyph->charpos < 0;
25953 --glyph)
25954 ;
25955
25956 /* Scan the glyph row, looking for BEFORE_STRING, AFTER_STRING,
25957 or COVER_STRING, and the first glyph from buffer whose
25958 position is between START_CHARPOS and END_CHARPOS. */
25959 for (; glyph > end
25960 && !INTEGERP (glyph->object)
25961 && !EQ (glyph->object, cover_string)
25962 && !(BUFFERP (glyph->object)
25963 && (glyph->charpos >= start_charpos
25964 && glyph->charpos < end_charpos));
25965 --glyph)
25966 {
25967 /* BEFORE_STRING or AFTER_STRING are only relevant if they
25968 are present at buffer positions between START_CHARPOS and
25969 END_CHARPOS, or if they come from an overlay. */
25970 if (EQ (glyph->object, before_string))
25971 {
25972 pos = string_buffer_position (before_string, start_charpos);
25973 /* If pos == 0, it means before_string came from an
25974 overlay, not from a buffer position. */
25975 if (!pos || (pos >= start_charpos && pos < end_charpos))
25976 break;
25977 }
25978 else if (EQ (glyph->object, after_string))
25979 {
25980 pos = string_buffer_position (after_string, end_charpos);
25981 if (!pos || (pos >= start_charpos && pos < end_charpos))
25982 break;
25983 }
25984 }
25985
25986 glyph++; /* first glyph to the right of the highlighted area */
25987 for (g = r1->glyphs[TEXT_AREA], x = r1->x; g < glyph; g++)
25988 x += g->pixel_width;
25989 hlinfo->mouse_face_beg_x = x;
25990 hlinfo->mouse_face_beg_col = glyph - r1->glyphs[TEXT_AREA];
25991 }
25992
25993 /* If the highlight ends in a different row, compute GLYPH and END
25994 for the end row. Otherwise, reuse the values computed above for
25995 the row where the highlight begins. */
25996 if (r2 != r1)
25997 {
25998 if (!r2->reversed_p)
25999 {
26000 glyph = r2->glyphs[TEXT_AREA];
26001 end = glyph + r2->used[TEXT_AREA];
26002 x = r2->x;
26003 }
26004 else
26005 {
26006 end = r2->glyphs[TEXT_AREA] - 1;
26007 glyph = end + r2->used[TEXT_AREA];
26008 }
26009 }
26010
26011 if (!r2->reversed_p)
26012 {
26013 /* Skip truncation and continuation glyphs near the end of the
26014 row, and also blanks and stretch glyphs inserted by
26015 extend_face_to_end_of_line. */
26016 while (end > glyph
26017 && INTEGERP ((end - 1)->object)
26018 && (end - 1)->charpos <= 0)
26019 --end;
26020 /* Scan the rest of the glyph row from the end, looking for the
26021 first glyph that comes from BEFORE_STRING, AFTER_STRING, or
26022 COVER_STRING, or whose position is between START_CHARPOS
26023 and END_CHARPOS */
26024 for (--end;
26025 end > glyph
26026 && !INTEGERP (end->object)
26027 && !EQ (end->object, cover_string)
26028 && !(BUFFERP (end->object)
26029 && (end->charpos >= start_charpos
26030 && end->charpos < end_charpos));
26031 --end)
26032 {
26033 /* BEFORE_STRING or AFTER_STRING are only relevant if they
26034 are present at buffer positions between START_CHARPOS and
26035 END_CHARPOS, or if they come from an overlay. */
26036 if (EQ (end->object, before_string))
26037 {
26038 pos = string_buffer_position (before_string, start_charpos);
26039 if (!pos || (pos >= start_charpos && pos < end_charpos))
26040 break;
26041 }
26042 else if (EQ (end->object, after_string))
26043 {
26044 pos = string_buffer_position (after_string, end_charpos);
26045 if (!pos || (pos >= start_charpos && pos < end_charpos))
26046 break;
26047 }
26048 }
26049 /* Find the X coordinate of the last glyph to be highlighted. */
26050 for (; glyph <= end; ++glyph)
26051 x += glyph->pixel_width;
26052
26053 hlinfo->mouse_face_end_x = x;
26054 hlinfo->mouse_face_end_col = glyph - r2->glyphs[TEXT_AREA];
26055 }
26056 else
26057 {
26058 /* Skip truncation and continuation glyphs near the end of the
26059 row, and also blanks and stretch glyphs inserted by
26060 extend_face_to_end_of_line. */
26061 x = r2->x;
26062 end++;
26063 while (end < glyph
26064 && INTEGERP (end->object)
26065 && end->charpos <= 0)
26066 {
26067 x += end->pixel_width;
26068 ++end;
26069 }
26070 /* Scan the rest of the glyph row from the end, looking for the
26071 first glyph that comes from BEFORE_STRING, AFTER_STRING, or
26072 COVER_STRING, or whose position is between START_CHARPOS
26073 and END_CHARPOS */
26074 for ( ;
26075 end < glyph
26076 && !INTEGERP (end->object)
26077 && !EQ (end->object, cover_string)
26078 && !(BUFFERP (end->object)
26079 && (end->charpos >= start_charpos
26080 && end->charpos < end_charpos));
26081 ++end)
26082 {
26083 /* BEFORE_STRING or AFTER_STRING are only relevant if they
26084 are present at buffer positions between START_CHARPOS and
26085 END_CHARPOS, or if they come from an overlay. */
26086 if (EQ (end->object, before_string))
26087 {
26088 pos = string_buffer_position (before_string, start_charpos);
26089 if (!pos || (pos >= start_charpos && pos < end_charpos))
26090 break;
26091 }
26092 else if (EQ (end->object, after_string))
26093 {
26094 pos = string_buffer_position (after_string, end_charpos);
26095 if (!pos || (pos >= start_charpos && pos < end_charpos))
26096 break;
26097 }
26098 x += end->pixel_width;
26099 }
26100 hlinfo->mouse_face_end_x = x;
26101 hlinfo->mouse_face_end_col = end - r2->glyphs[TEXT_AREA];
26102 }
26103
26104 hlinfo->mouse_face_window = window;
26105 hlinfo->mouse_face_face_id
26106 = face_at_buffer_position (w, mouse_charpos, 0, 0, &ignore,
26107 mouse_charpos + 1,
26108 !hlinfo->mouse_face_hidden, -1);
26109 show_mouse_face (hlinfo, DRAW_MOUSE_FACE);
26110 }
26111
26112 /* The following function is not used anymore (replaced with
26113 mouse_face_from_string_pos), but I leave it here for the time
26114 being, in case someone would. */
26115
26116 #if 0 /* not used */
26117
26118 /* Find the position of the glyph for position POS in OBJECT in
26119 window W's current matrix, and return in *X, *Y the pixel
26120 coordinates, and return in *HPOS, *VPOS the column/row of the glyph.
26121
26122 RIGHT_P non-zero means return the position of the right edge of the
26123 glyph, RIGHT_P zero means return the left edge position.
26124
26125 If no glyph for POS exists in the matrix, return the position of
26126 the glyph with the next smaller position that is in the matrix, if
26127 RIGHT_P is zero. If RIGHT_P is non-zero, and no glyph for POS
26128 exists in the matrix, return the position of the glyph with the
26129 next larger position in OBJECT.
26130
26131 Value is non-zero if a glyph was found. */
26132
26133 static int
26134 fast_find_string_pos (struct window *w, EMACS_INT pos, Lisp_Object object,
26135 int *hpos, int *vpos, int *x, int *y, int right_p)
26136 {
26137 int yb = window_text_bottom_y (w);
26138 struct glyph_row *r;
26139 struct glyph *best_glyph = NULL;
26140 struct glyph_row *best_row = NULL;
26141 int best_x = 0;
26142
26143 for (r = MATRIX_FIRST_TEXT_ROW (w->current_matrix);
26144 r->enabled_p && r->y < yb;
26145 ++r)
26146 {
26147 struct glyph *g = r->glyphs[TEXT_AREA];
26148 struct glyph *e = g + r->used[TEXT_AREA];
26149 int gx;
26150
26151 for (gx = r->x; g < e; gx += g->pixel_width, ++g)
26152 if (EQ (g->object, object))
26153 {
26154 if (g->charpos == pos)
26155 {
26156 best_glyph = g;
26157 best_x = gx;
26158 best_row = r;
26159 goto found;
26160 }
26161 else if (best_glyph == NULL
26162 || ((eabs (g->charpos - pos)
26163 < eabs (best_glyph->charpos - pos))
26164 && (right_p
26165 ? g->charpos < pos
26166 : g->charpos > pos)))
26167 {
26168 best_glyph = g;
26169 best_x = gx;
26170 best_row = r;
26171 }
26172 }
26173 }
26174
26175 found:
26176
26177 if (best_glyph)
26178 {
26179 *x = best_x;
26180 *hpos = best_glyph - best_row->glyphs[TEXT_AREA];
26181
26182 if (right_p)
26183 {
26184 *x += best_glyph->pixel_width;
26185 ++*hpos;
26186 }
26187
26188 *y = best_row->y;
26189 *vpos = best_row - w->current_matrix->rows;
26190 }
26191
26192 return best_glyph != NULL;
26193 }
26194 #endif /* not used */
26195
26196 /* Find the positions of the first and the last glyphs in window W's
26197 current matrix that occlude positions [STARTPOS..ENDPOS] in OBJECT
26198 (assumed to be a string), and return in HLINFO's mouse_face_*
26199 members the pixel and column/row coordinates of those glyphs. */
26200
26201 static void
26202 mouse_face_from_string_pos (struct window *w, Mouse_HLInfo *hlinfo,
26203 Lisp_Object object,
26204 EMACS_INT startpos, EMACS_INT endpos)
26205 {
26206 int yb = window_text_bottom_y (w);
26207 struct glyph_row *r;
26208 struct glyph *g, *e;
26209 int gx;
26210 int found = 0;
26211
26212 /* Find the glyph row with at least one position in the range
26213 [STARTPOS..ENDPOS], and the first glyph in that row whose
26214 position belongs to that range. */
26215 for (r = MATRIX_FIRST_TEXT_ROW (w->current_matrix);
26216 r->enabled_p && r->y < yb;
26217 ++r)
26218 {
26219 if (!r->reversed_p)
26220 {
26221 g = r->glyphs[TEXT_AREA];
26222 e = g + r->used[TEXT_AREA];
26223 for (gx = r->x; g < e; gx += g->pixel_width, ++g)
26224 if (EQ (g->object, object)
26225 && startpos <= g->charpos && g->charpos <= endpos)
26226 {
26227 hlinfo->mouse_face_beg_row = r - w->current_matrix->rows;
26228 hlinfo->mouse_face_beg_y = r->y;
26229 hlinfo->mouse_face_beg_col = g - r->glyphs[TEXT_AREA];
26230 hlinfo->mouse_face_beg_x = gx;
26231 found = 1;
26232 break;
26233 }
26234 }
26235 else
26236 {
26237 struct glyph *g1;
26238
26239 e = r->glyphs[TEXT_AREA];
26240 g = e + r->used[TEXT_AREA];
26241 for ( ; g > e; --g)
26242 if (EQ ((g-1)->object, object)
26243 && startpos <= (g-1)->charpos && (g-1)->charpos <= endpos)
26244 {
26245 hlinfo->mouse_face_beg_row = r - w->current_matrix->rows;
26246 hlinfo->mouse_face_beg_y = r->y;
26247 hlinfo->mouse_face_beg_col = g - r->glyphs[TEXT_AREA];
26248 for (gx = r->x, g1 = r->glyphs[TEXT_AREA]; g1 < g; ++g1)
26249 gx += g1->pixel_width;
26250 hlinfo->mouse_face_beg_x = gx;
26251 found = 1;
26252 break;
26253 }
26254 }
26255 if (found)
26256 break;
26257 }
26258
26259 if (!found)
26260 return;
26261
26262 /* Starting with the next row, look for the first row which does NOT
26263 include any glyphs whose positions are in the range. */
26264 for (++r; r->enabled_p && r->y < yb; ++r)
26265 {
26266 g = r->glyphs[TEXT_AREA];
26267 e = g + r->used[TEXT_AREA];
26268 found = 0;
26269 for ( ; g < e; ++g)
26270 if (EQ (g->object, object)
26271 && startpos <= g->charpos && g->charpos <= endpos)
26272 {
26273 found = 1;
26274 break;
26275 }
26276 if (!found)
26277 break;
26278 }
26279
26280 /* The highlighted region ends on the previous row. */
26281 r--;
26282
26283 /* Set the end row and its vertical pixel coordinate. */
26284 hlinfo->mouse_face_end_row = r - w->current_matrix->rows;
26285 hlinfo->mouse_face_end_y = r->y;
26286
26287 /* Compute and set the end column and the end column's horizontal
26288 pixel coordinate. */
26289 if (!r->reversed_p)
26290 {
26291 g = r->glyphs[TEXT_AREA];
26292 e = g + r->used[TEXT_AREA];
26293 for ( ; e > g; --e)
26294 if (EQ ((e-1)->object, object)
26295 && startpos <= (e-1)->charpos && (e-1)->charpos <= endpos)
26296 break;
26297 hlinfo->mouse_face_end_col = e - g;
26298
26299 for (gx = r->x; g < e; ++g)
26300 gx += g->pixel_width;
26301 hlinfo->mouse_face_end_x = gx;
26302 }
26303 else
26304 {
26305 e = r->glyphs[TEXT_AREA];
26306 g = e + r->used[TEXT_AREA];
26307 for (gx = r->x ; e < g; ++e)
26308 {
26309 if (EQ (e->object, object)
26310 && startpos <= e->charpos && e->charpos <= endpos)
26311 break;
26312 gx += e->pixel_width;
26313 }
26314 hlinfo->mouse_face_end_col = e - r->glyphs[TEXT_AREA];
26315 hlinfo->mouse_face_end_x = gx;
26316 }
26317 }
26318
26319 #ifdef HAVE_WINDOW_SYSTEM
26320
26321 /* See if position X, Y is within a hot-spot of an image. */
26322
26323 static int
26324 on_hot_spot_p (Lisp_Object hot_spot, int x, int y)
26325 {
26326 if (!CONSP (hot_spot))
26327 return 0;
26328
26329 if (EQ (XCAR (hot_spot), Qrect))
26330 {
26331 /* CDR is (Top-Left . Bottom-Right) = ((x0 . y0) . (x1 . y1)) */
26332 Lisp_Object rect = XCDR (hot_spot);
26333 Lisp_Object tem;
26334 if (!CONSP (rect))
26335 return 0;
26336 if (!CONSP (XCAR (rect)))
26337 return 0;
26338 if (!CONSP (XCDR (rect)))
26339 return 0;
26340 if (!(tem = XCAR (XCAR (rect)), INTEGERP (tem) && x >= XINT (tem)))
26341 return 0;
26342 if (!(tem = XCDR (XCAR (rect)), INTEGERP (tem) && y >= XINT (tem)))
26343 return 0;
26344 if (!(tem = XCAR (XCDR (rect)), INTEGERP (tem) && x <= XINT (tem)))
26345 return 0;
26346 if (!(tem = XCDR (XCDR (rect)), INTEGERP (tem) && y <= XINT (tem)))
26347 return 0;
26348 return 1;
26349 }
26350 else if (EQ (XCAR (hot_spot), Qcircle))
26351 {
26352 /* CDR is (Center . Radius) = ((x0 . y0) . r) */
26353 Lisp_Object circ = XCDR (hot_spot);
26354 Lisp_Object lr, lx0, ly0;
26355 if (CONSP (circ)
26356 && CONSP (XCAR (circ))
26357 && (lr = XCDR (circ), INTEGERP (lr) || FLOATP (lr))
26358 && (lx0 = XCAR (XCAR (circ)), INTEGERP (lx0))
26359 && (ly0 = XCDR (XCAR (circ)), INTEGERP (ly0)))
26360 {
26361 double r = XFLOATINT (lr);
26362 double dx = XINT (lx0) - x;
26363 double dy = XINT (ly0) - y;
26364 return (dx * dx + dy * dy <= r * r);
26365 }
26366 }
26367 else if (EQ (XCAR (hot_spot), Qpoly))
26368 {
26369 /* CDR is [x0 y0 x1 y1 x2 y2 ...x(n-1) y(n-1)] */
26370 if (VECTORP (XCDR (hot_spot)))
26371 {
26372 struct Lisp_Vector *v = XVECTOR (XCDR (hot_spot));
26373 Lisp_Object *poly = v->contents;
26374 int n = v->header.size;
26375 int i;
26376 int inside = 0;
26377 Lisp_Object lx, ly;
26378 int x0, y0;
26379
26380 /* Need an even number of coordinates, and at least 3 edges. */
26381 if (n < 6 || n & 1)
26382 return 0;
26383
26384 /* Count edge segments intersecting line from (X,Y) to (X,infinity).
26385 If count is odd, we are inside polygon. Pixels on edges
26386 may or may not be included depending on actual geometry of the
26387 polygon. */
26388 if ((lx = poly[n-2], !INTEGERP (lx))
26389 || (ly = poly[n-1], !INTEGERP (lx)))
26390 return 0;
26391 x0 = XINT (lx), y0 = XINT (ly);
26392 for (i = 0; i < n; i += 2)
26393 {
26394 int x1 = x0, y1 = y0;
26395 if ((lx = poly[i], !INTEGERP (lx))
26396 || (ly = poly[i+1], !INTEGERP (ly)))
26397 return 0;
26398 x0 = XINT (lx), y0 = XINT (ly);
26399
26400 /* Does this segment cross the X line? */
26401 if (x0 >= x)
26402 {
26403 if (x1 >= x)
26404 continue;
26405 }
26406 else if (x1 < x)
26407 continue;
26408 if (y > y0 && y > y1)
26409 continue;
26410 if (y < y0 + ((y1 - y0) * (x - x0)) / (x1 - x0))
26411 inside = !inside;
26412 }
26413 return inside;
26414 }
26415 }
26416 return 0;
26417 }
26418
26419 Lisp_Object
26420 find_hot_spot (Lisp_Object map, int x, int y)
26421 {
26422 while (CONSP (map))
26423 {
26424 if (CONSP (XCAR (map))
26425 && on_hot_spot_p (XCAR (XCAR (map)), x, y))
26426 return XCAR (map);
26427 map = XCDR (map);
26428 }
26429
26430 return Qnil;
26431 }
26432
26433 DEFUN ("lookup-image-map", Flookup_image_map, Slookup_image_map,
26434 3, 3, 0,
26435 doc: /* Lookup in image map MAP coordinates X and Y.
26436 An image map is an alist where each element has the format (AREA ID PLIST).
26437 An AREA is specified as either a rectangle, a circle, or a polygon:
26438 A rectangle is a cons (rect . ((x0 . y0) . (x1 . y1))) specifying the
26439 pixel coordinates of the upper left and bottom right corners.
26440 A circle is a cons (circle . ((x0 . y0) . r)) specifying the center
26441 and the radius of the circle; r may be a float or integer.
26442 A polygon is a cons (poly . [x0 y0 x1 y1 ...]) where each pair in the
26443 vector describes one corner in the polygon.
26444 Returns the alist element for the first matching AREA in MAP. */)
26445 (Lisp_Object map, Lisp_Object x, Lisp_Object y)
26446 {
26447 if (NILP (map))
26448 return Qnil;
26449
26450 CHECK_NUMBER (x);
26451 CHECK_NUMBER (y);
26452
26453 return find_hot_spot (map, XINT (x), XINT (y));
26454 }
26455
26456
26457 /* Display frame CURSOR, optionally using shape defined by POINTER. */
26458 static void
26459 define_frame_cursor1 (struct frame *f, Cursor cursor, Lisp_Object pointer)
26460 {
26461 /* Do not change cursor shape while dragging mouse. */
26462 if (!NILP (do_mouse_tracking))
26463 return;
26464
26465 if (!NILP (pointer))
26466 {
26467 if (EQ (pointer, Qarrow))
26468 cursor = FRAME_X_OUTPUT (f)->nontext_cursor;
26469 else if (EQ (pointer, Qhand))
26470 cursor = FRAME_X_OUTPUT (f)->hand_cursor;
26471 else if (EQ (pointer, Qtext))
26472 cursor = FRAME_X_OUTPUT (f)->text_cursor;
26473 else if (EQ (pointer, intern ("hdrag")))
26474 cursor = FRAME_X_OUTPUT (f)->horizontal_drag_cursor;
26475 #ifdef HAVE_X_WINDOWS
26476 else if (EQ (pointer, intern ("vdrag")))
26477 cursor = FRAME_X_DISPLAY_INFO (f)->vertical_scroll_bar_cursor;
26478 #endif
26479 else if (EQ (pointer, intern ("hourglass")))
26480 cursor = FRAME_X_OUTPUT (f)->hourglass_cursor;
26481 else if (EQ (pointer, Qmodeline))
26482 cursor = FRAME_X_OUTPUT (f)->modeline_cursor;
26483 else
26484 cursor = FRAME_X_OUTPUT (f)->nontext_cursor;
26485 }
26486
26487 if (cursor != No_Cursor)
26488 FRAME_RIF (f)->define_frame_cursor (f, cursor);
26489 }
26490
26491 #endif /* HAVE_WINDOW_SYSTEM */
26492
26493 /* Take proper action when mouse has moved to the mode or header line
26494 or marginal area AREA of window W, x-position X and y-position Y.
26495 X is relative to the start of the text display area of W, so the
26496 width of bitmap areas and scroll bars must be subtracted to get a
26497 position relative to the start of the mode line. */
26498
26499 static void
26500 note_mode_line_or_margin_highlight (Lisp_Object window, int x, int y,
26501 enum window_part area)
26502 {
26503 struct window *w = XWINDOW (window);
26504 struct frame *f = XFRAME (w->frame);
26505 Mouse_HLInfo *hlinfo = MOUSE_HL_INFO (f);
26506 #ifdef HAVE_WINDOW_SYSTEM
26507 Display_Info *dpyinfo;
26508 #endif
26509 Cursor cursor = No_Cursor;
26510 Lisp_Object pointer = Qnil;
26511 int dx, dy, width, height;
26512 EMACS_INT charpos;
26513 Lisp_Object string, object = Qnil;
26514 Lisp_Object pos, help;
26515
26516 Lisp_Object mouse_face;
26517 int original_x_pixel = x;
26518 struct glyph * glyph = NULL, * row_start_glyph = NULL;
26519 struct glyph_row *row;
26520
26521 if (area == ON_MODE_LINE || area == ON_HEADER_LINE)
26522 {
26523 int x0;
26524 struct glyph *end;
26525
26526 /* Kludge alert: mode_line_string takes X/Y in pixels, but
26527 returns them in row/column units! */
26528 string = mode_line_string (w, area, &x, &y, &charpos,
26529 &object, &dx, &dy, &width, &height);
26530
26531 row = (area == ON_MODE_LINE
26532 ? MATRIX_MODE_LINE_ROW (w->current_matrix)
26533 : MATRIX_HEADER_LINE_ROW (w->current_matrix));
26534
26535 /* Find the glyph under the mouse pointer. */
26536 if (row->mode_line_p && row->enabled_p)
26537 {
26538 glyph = row_start_glyph = row->glyphs[TEXT_AREA];
26539 end = glyph + row->used[TEXT_AREA];
26540
26541 for (x0 = original_x_pixel;
26542 glyph < end && x0 >= glyph->pixel_width;
26543 ++glyph)
26544 x0 -= glyph->pixel_width;
26545
26546 if (glyph >= end)
26547 glyph = NULL;
26548 }
26549 }
26550 else
26551 {
26552 x -= WINDOW_LEFT_SCROLL_BAR_AREA_WIDTH (w);
26553 /* Kludge alert: marginal_area_string takes X/Y in pixels, but
26554 returns them in row/column units! */
26555 string = marginal_area_string (w, area, &x, &y, &charpos,
26556 &object, &dx, &dy, &width, &height);
26557 }
26558
26559 help = Qnil;
26560
26561 #ifdef HAVE_WINDOW_SYSTEM
26562 if (IMAGEP (object))
26563 {
26564 Lisp_Object image_map, hotspot;
26565 if ((image_map = Fplist_get (XCDR (object), QCmap),
26566 !NILP (image_map))
26567 && (hotspot = find_hot_spot (image_map, dx, dy),
26568 CONSP (hotspot))
26569 && (hotspot = XCDR (hotspot), CONSP (hotspot)))
26570 {
26571 Lisp_Object plist;
26572
26573 /* Could check XCAR (hotspot) to see if we enter/leave this hot-spot.
26574 If so, we could look for mouse-enter, mouse-leave
26575 properties in PLIST (and do something...). */
26576 hotspot = XCDR (hotspot);
26577 if (CONSP (hotspot)
26578 && (plist = XCAR (hotspot), CONSP (plist)))
26579 {
26580 pointer = Fplist_get (plist, Qpointer);
26581 if (NILP (pointer))
26582 pointer = Qhand;
26583 help = Fplist_get (plist, Qhelp_echo);
26584 if (!NILP (help))
26585 {
26586 help_echo_string = help;
26587 /* Is this correct? ++kfs */
26588 XSETWINDOW (help_echo_window, w);
26589 help_echo_object = w->buffer;
26590 help_echo_pos = charpos;
26591 }
26592 }
26593 }
26594 if (NILP (pointer))
26595 pointer = Fplist_get (XCDR (object), QCpointer);
26596 }
26597 #endif /* HAVE_WINDOW_SYSTEM */
26598
26599 if (STRINGP (string))
26600 {
26601 pos = make_number (charpos);
26602 /* If we're on a string with `help-echo' text property, arrange
26603 for the help to be displayed. This is done by setting the
26604 global variable help_echo_string to the help string. */
26605 if (NILP (help))
26606 {
26607 help = Fget_text_property (pos, Qhelp_echo, string);
26608 if (!NILP (help))
26609 {
26610 help_echo_string = help;
26611 XSETWINDOW (help_echo_window, w);
26612 help_echo_object = string;
26613 help_echo_pos = charpos;
26614 }
26615 }
26616
26617 #ifdef HAVE_WINDOW_SYSTEM
26618 if (FRAME_WINDOW_P (f))
26619 {
26620 dpyinfo = FRAME_X_DISPLAY_INFO (f);
26621 cursor = FRAME_X_OUTPUT (f)->nontext_cursor;
26622 if (NILP (pointer))
26623 pointer = Fget_text_property (pos, Qpointer, string);
26624
26625 /* Change the mouse pointer according to what is under X/Y. */
26626 if (NILP (pointer)
26627 && ((area == ON_MODE_LINE) || (area == ON_HEADER_LINE)))
26628 {
26629 Lisp_Object map;
26630 map = Fget_text_property (pos, Qlocal_map, string);
26631 if (!KEYMAPP (map))
26632 map = Fget_text_property (pos, Qkeymap, string);
26633 if (!KEYMAPP (map))
26634 cursor = dpyinfo->vertical_scroll_bar_cursor;
26635 }
26636 }
26637 #endif
26638
26639 /* Change the mouse face according to what is under X/Y. */
26640 mouse_face = Fget_text_property (pos, Qmouse_face, string);
26641 if (!NILP (mouse_face)
26642 && ((area == ON_MODE_LINE) || (area == ON_HEADER_LINE))
26643 && glyph)
26644 {
26645 Lisp_Object b, e;
26646
26647 struct glyph * tmp_glyph;
26648
26649 int gpos;
26650 int gseq_length;
26651 int total_pixel_width;
26652 EMACS_INT begpos, endpos, ignore;
26653
26654 int vpos, hpos;
26655
26656 b = Fprevious_single_property_change (make_number (charpos + 1),
26657 Qmouse_face, string, Qnil);
26658 if (NILP (b))
26659 begpos = 0;
26660 else
26661 begpos = XINT (b);
26662
26663 e = Fnext_single_property_change (pos, Qmouse_face, string, Qnil);
26664 if (NILP (e))
26665 endpos = SCHARS (string);
26666 else
26667 endpos = XINT (e);
26668
26669 /* Calculate the glyph position GPOS of GLYPH in the
26670 displayed string, relative to the beginning of the
26671 highlighted part of the string.
26672
26673 Note: GPOS is different from CHARPOS. CHARPOS is the
26674 position of GLYPH in the internal string object. A mode
26675 line string format has structures which are converted to
26676 a flattened string by the Emacs Lisp interpreter. The
26677 internal string is an element of those structures. The
26678 displayed string is the flattened string. */
26679 tmp_glyph = row_start_glyph;
26680 while (tmp_glyph < glyph
26681 && (!(EQ (tmp_glyph->object, glyph->object)
26682 && begpos <= tmp_glyph->charpos
26683 && tmp_glyph->charpos < endpos)))
26684 tmp_glyph++;
26685 gpos = glyph - tmp_glyph;
26686
26687 /* Calculate the length GSEQ_LENGTH of the glyph sequence of
26688 the highlighted part of the displayed string to which
26689 GLYPH belongs. Note: GSEQ_LENGTH is different from
26690 SCHARS (STRING), because the latter returns the length of
26691 the internal string. */
26692 for (tmp_glyph = row->glyphs[TEXT_AREA] + row->used[TEXT_AREA] - 1;
26693 tmp_glyph > glyph
26694 && (!(EQ (tmp_glyph->object, glyph->object)
26695 && begpos <= tmp_glyph->charpos
26696 && tmp_glyph->charpos < endpos));
26697 tmp_glyph--)
26698 ;
26699 gseq_length = gpos + (tmp_glyph - glyph) + 1;
26700
26701 /* Calculate the total pixel width of all the glyphs between
26702 the beginning of the highlighted area and GLYPH. */
26703 total_pixel_width = 0;
26704 for (tmp_glyph = glyph - gpos; tmp_glyph != glyph; tmp_glyph++)
26705 total_pixel_width += tmp_glyph->pixel_width;
26706
26707 /* Pre calculation of re-rendering position. Note: X is in
26708 column units here, after the call to mode_line_string or
26709 marginal_area_string. */
26710 hpos = x - gpos;
26711 vpos = (area == ON_MODE_LINE
26712 ? (w->current_matrix)->nrows - 1
26713 : 0);
26714
26715 /* If GLYPH's position is included in the region that is
26716 already drawn in mouse face, we have nothing to do. */
26717 if ( EQ (window, hlinfo->mouse_face_window)
26718 && (!row->reversed_p
26719 ? (hlinfo->mouse_face_beg_col <= hpos
26720 && hpos < hlinfo->mouse_face_end_col)
26721 /* In R2L rows we swap BEG and END, see below. */
26722 : (hlinfo->mouse_face_end_col <= hpos
26723 && hpos < hlinfo->mouse_face_beg_col))
26724 && hlinfo->mouse_face_beg_row == vpos )
26725 return;
26726
26727 if (clear_mouse_face (hlinfo))
26728 cursor = No_Cursor;
26729
26730 if (!row->reversed_p)
26731 {
26732 hlinfo->mouse_face_beg_col = hpos;
26733 hlinfo->mouse_face_beg_x = original_x_pixel
26734 - (total_pixel_width + dx);
26735 hlinfo->mouse_face_end_col = hpos + gseq_length;
26736 hlinfo->mouse_face_end_x = 0;
26737 }
26738 else
26739 {
26740 /* In R2L rows, show_mouse_face expects BEG and END
26741 coordinates to be swapped. */
26742 hlinfo->mouse_face_end_col = hpos;
26743 hlinfo->mouse_face_end_x = original_x_pixel
26744 - (total_pixel_width + dx);
26745 hlinfo->mouse_face_beg_col = hpos + gseq_length;
26746 hlinfo->mouse_face_beg_x = 0;
26747 }
26748
26749 hlinfo->mouse_face_beg_row = vpos;
26750 hlinfo->mouse_face_end_row = hlinfo->mouse_face_beg_row;
26751 hlinfo->mouse_face_beg_y = 0;
26752 hlinfo->mouse_face_end_y = 0;
26753 hlinfo->mouse_face_past_end = 0;
26754 hlinfo->mouse_face_window = window;
26755
26756 hlinfo->mouse_face_face_id = face_at_string_position (w, string,
26757 charpos,
26758 0, 0, 0,
26759 &ignore,
26760 glyph->face_id,
26761 1);
26762 show_mouse_face (hlinfo, DRAW_MOUSE_FACE);
26763
26764 if (NILP (pointer))
26765 pointer = Qhand;
26766 }
26767 else if ((area == ON_MODE_LINE) || (area == ON_HEADER_LINE))
26768 clear_mouse_face (hlinfo);
26769 }
26770 #ifdef HAVE_WINDOW_SYSTEM
26771 if (FRAME_WINDOW_P (f))
26772 define_frame_cursor1 (f, cursor, pointer);
26773 #endif
26774 }
26775
26776
26777 /* EXPORT:
26778 Take proper action when the mouse has moved to position X, Y on
26779 frame F as regards highlighting characters that have mouse-face
26780 properties. Also de-highlighting chars where the mouse was before.
26781 X and Y can be negative or out of range. */
26782
26783 void
26784 note_mouse_highlight (struct frame *f, int x, int y)
26785 {
26786 Mouse_HLInfo *hlinfo = MOUSE_HL_INFO (f);
26787 enum window_part part;
26788 Lisp_Object window;
26789 struct window *w;
26790 Cursor cursor = No_Cursor;
26791 Lisp_Object pointer = Qnil; /* Takes precedence over cursor! */
26792 struct buffer *b;
26793
26794 /* When a menu is active, don't highlight because this looks odd. */
26795 #if defined (USE_X_TOOLKIT) || defined (USE_GTK) || defined (HAVE_NS) || defined (MSDOS)
26796 if (popup_activated ())
26797 return;
26798 #endif
26799
26800 if (NILP (Vmouse_highlight)
26801 || !f->glyphs_initialized_p
26802 || f->pointer_invisible)
26803 return;
26804
26805 hlinfo->mouse_face_mouse_x = x;
26806 hlinfo->mouse_face_mouse_y = y;
26807 hlinfo->mouse_face_mouse_frame = f;
26808
26809 if (hlinfo->mouse_face_defer)
26810 return;
26811
26812 if (gc_in_progress)
26813 {
26814 hlinfo->mouse_face_deferred_gc = 1;
26815 return;
26816 }
26817
26818 /* Which window is that in? */
26819 window = window_from_coordinates (f, x, y, &part, 1);
26820
26821 /* If we were displaying active text in another window, clear that.
26822 Also clear if we move out of text area in same window. */
26823 if (! EQ (window, hlinfo->mouse_face_window)
26824 || (part != ON_TEXT && part != ON_MODE_LINE && part != ON_HEADER_LINE
26825 && !NILP (hlinfo->mouse_face_window)))
26826 clear_mouse_face (hlinfo);
26827
26828 /* Not on a window -> return. */
26829 if (!WINDOWP (window))
26830 return;
26831
26832 /* Reset help_echo_string. It will get recomputed below. */
26833 help_echo_string = Qnil;
26834
26835 /* Convert to window-relative pixel coordinates. */
26836 w = XWINDOW (window);
26837 frame_to_window_pixel_xy (w, &x, &y);
26838
26839 #ifdef HAVE_WINDOW_SYSTEM
26840 /* Handle tool-bar window differently since it doesn't display a
26841 buffer. */
26842 if (EQ (window, f->tool_bar_window))
26843 {
26844 note_tool_bar_highlight (f, x, y);
26845 return;
26846 }
26847 #endif
26848
26849 /* Mouse is on the mode, header line or margin? */
26850 if (part == ON_MODE_LINE || part == ON_HEADER_LINE
26851 || part == ON_LEFT_MARGIN || part == ON_RIGHT_MARGIN)
26852 {
26853 note_mode_line_or_margin_highlight (window, x, y, part);
26854 return;
26855 }
26856
26857 #ifdef HAVE_WINDOW_SYSTEM
26858 if (part == ON_VERTICAL_BORDER)
26859 {
26860 cursor = FRAME_X_OUTPUT (f)->horizontal_drag_cursor;
26861 help_echo_string = build_string ("drag-mouse-1: resize");
26862 }
26863 else if (part == ON_LEFT_FRINGE || part == ON_RIGHT_FRINGE
26864 || part == ON_SCROLL_BAR)
26865 cursor = FRAME_X_OUTPUT (f)->nontext_cursor;
26866 else
26867 cursor = FRAME_X_OUTPUT (f)->text_cursor;
26868 #endif
26869
26870 /* Are we in a window whose display is up to date?
26871 And verify the buffer's text has not changed. */
26872 b = XBUFFER (w->buffer);
26873 if (part == ON_TEXT
26874 && EQ (w->window_end_valid, w->buffer)
26875 && XFASTINT (w->last_modified) == BUF_MODIFF (b)
26876 && XFASTINT (w->last_overlay_modified) == BUF_OVERLAY_MODIFF (b))
26877 {
26878 int hpos, vpos, dx, dy, area;
26879 EMACS_INT pos;
26880 struct glyph *glyph;
26881 Lisp_Object object;
26882 Lisp_Object mouse_face = Qnil, position;
26883 Lisp_Object *overlay_vec = NULL;
26884 ptrdiff_t i, noverlays;
26885 struct buffer *obuf;
26886 EMACS_INT obegv, ozv;
26887 int same_region;
26888
26889 /* Find the glyph under X/Y. */
26890 glyph = x_y_to_hpos_vpos (w, x, y, &hpos, &vpos, &dx, &dy, &area);
26891
26892 #ifdef HAVE_WINDOW_SYSTEM
26893 /* Look for :pointer property on image. */
26894 if (glyph != NULL && glyph->type == IMAGE_GLYPH)
26895 {
26896 struct image *img = IMAGE_FROM_ID (f, glyph->u.img_id);
26897 if (img != NULL && IMAGEP (img->spec))
26898 {
26899 Lisp_Object image_map, hotspot;
26900 if ((image_map = Fplist_get (XCDR (img->spec), QCmap),
26901 !NILP (image_map))
26902 && (hotspot = find_hot_spot (image_map,
26903 glyph->slice.img.x + dx,
26904 glyph->slice.img.y + dy),
26905 CONSP (hotspot))
26906 && (hotspot = XCDR (hotspot), CONSP (hotspot)))
26907 {
26908 Lisp_Object plist;
26909
26910 /* Could check XCAR (hotspot) to see if we enter/leave
26911 this hot-spot.
26912 If so, we could look for mouse-enter, mouse-leave
26913 properties in PLIST (and do something...). */
26914 hotspot = XCDR (hotspot);
26915 if (CONSP (hotspot)
26916 && (plist = XCAR (hotspot), CONSP (plist)))
26917 {
26918 pointer = Fplist_get (plist, Qpointer);
26919 if (NILP (pointer))
26920 pointer = Qhand;
26921 help_echo_string = Fplist_get (plist, Qhelp_echo);
26922 if (!NILP (help_echo_string))
26923 {
26924 help_echo_window = window;
26925 help_echo_object = glyph->object;
26926 help_echo_pos = glyph->charpos;
26927 }
26928 }
26929 }
26930 if (NILP (pointer))
26931 pointer = Fplist_get (XCDR (img->spec), QCpointer);
26932 }
26933 }
26934 #endif /* HAVE_WINDOW_SYSTEM */
26935
26936 /* Clear mouse face if X/Y not over text. */
26937 if (glyph == NULL
26938 || area != TEXT_AREA
26939 || !MATRIX_ROW (w->current_matrix, vpos)->displays_text_p
26940 /* Glyph's OBJECT is an integer for glyphs inserted by the
26941 display engine for its internal purposes, like truncation
26942 and continuation glyphs and blanks beyond the end of
26943 line's text on text terminals. If we are over such a
26944 glyph, we are not over any text. */
26945 || INTEGERP (glyph->object)
26946 /* R2L rows have a stretch glyph at their front, which
26947 stands for no text, whereas L2R rows have no glyphs at
26948 all beyond the end of text. Treat such stretch glyphs
26949 like we do with NULL glyphs in L2R rows. */
26950 || (MATRIX_ROW (w->current_matrix, vpos)->reversed_p
26951 && glyph == MATRIX_ROW (w->current_matrix, vpos)->glyphs[TEXT_AREA]
26952 && glyph->type == STRETCH_GLYPH
26953 && glyph->avoid_cursor_p))
26954 {
26955 if (clear_mouse_face (hlinfo))
26956 cursor = No_Cursor;
26957 #ifdef HAVE_WINDOW_SYSTEM
26958 if (FRAME_WINDOW_P (f) && NILP (pointer))
26959 {
26960 if (area != TEXT_AREA)
26961 cursor = FRAME_X_OUTPUT (f)->nontext_cursor;
26962 else
26963 pointer = Vvoid_text_area_pointer;
26964 }
26965 #endif
26966 goto set_cursor;
26967 }
26968
26969 pos = glyph->charpos;
26970 object = glyph->object;
26971 if (!STRINGP (object) && !BUFFERP (object))
26972 goto set_cursor;
26973
26974 /* If we get an out-of-range value, return now; avoid an error. */
26975 if (BUFFERP (object) && pos > BUF_Z (b))
26976 goto set_cursor;
26977
26978 /* Make the window's buffer temporarily current for
26979 overlays_at and compute_char_face. */
26980 obuf = current_buffer;
26981 current_buffer = b;
26982 obegv = BEGV;
26983 ozv = ZV;
26984 BEGV = BEG;
26985 ZV = Z;
26986
26987 /* Is this char mouse-active or does it have help-echo? */
26988 position = make_number (pos);
26989
26990 if (BUFFERP (object))
26991 {
26992 /* Put all the overlays we want in a vector in overlay_vec. */
26993 GET_OVERLAYS_AT (pos, overlay_vec, noverlays, NULL, 0);
26994 /* Sort overlays into increasing priority order. */
26995 noverlays = sort_overlays (overlay_vec, noverlays, w);
26996 }
26997 else
26998 noverlays = 0;
26999
27000 same_region = coords_in_mouse_face_p (w, hpos, vpos);
27001
27002 if (same_region)
27003 cursor = No_Cursor;
27004
27005 /* Check mouse-face highlighting. */
27006 if (! same_region
27007 /* If there exists an overlay with mouse-face overlapping
27008 the one we are currently highlighting, we have to
27009 check if we enter the overlapping overlay, and then
27010 highlight only that. */
27011 || (OVERLAYP (hlinfo->mouse_face_overlay)
27012 && mouse_face_overlay_overlaps (hlinfo->mouse_face_overlay)))
27013 {
27014 /* Find the highest priority overlay with a mouse-face. */
27015 Lisp_Object overlay = Qnil;
27016 for (i = noverlays - 1; i >= 0 && NILP (overlay); --i)
27017 {
27018 mouse_face = Foverlay_get (overlay_vec[i], Qmouse_face);
27019 if (!NILP (mouse_face))
27020 overlay = overlay_vec[i];
27021 }
27022
27023 /* If we're highlighting the same overlay as before, there's
27024 no need to do that again. */
27025 if (!NILP (overlay) && EQ (overlay, hlinfo->mouse_face_overlay))
27026 goto check_help_echo;
27027 hlinfo->mouse_face_overlay = overlay;
27028
27029 /* Clear the display of the old active region, if any. */
27030 if (clear_mouse_face (hlinfo))
27031 cursor = No_Cursor;
27032
27033 /* If no overlay applies, get a text property. */
27034 if (NILP (overlay))
27035 mouse_face = Fget_text_property (position, Qmouse_face, object);
27036
27037 /* Next, compute the bounds of the mouse highlighting and
27038 display it. */
27039 if (!NILP (mouse_face) && STRINGP (object))
27040 {
27041 /* The mouse-highlighting comes from a display string
27042 with a mouse-face. */
27043 Lisp_Object s, e;
27044 EMACS_INT ignore;
27045
27046 s = Fprevious_single_property_change
27047 (make_number (pos + 1), Qmouse_face, object, Qnil);
27048 e = Fnext_single_property_change
27049 (position, Qmouse_face, object, Qnil);
27050 if (NILP (s))
27051 s = make_number (0);
27052 if (NILP (e))
27053 e = make_number (SCHARS (object) - 1);
27054 mouse_face_from_string_pos (w, hlinfo, object,
27055 XINT (s), XINT (e));
27056 hlinfo->mouse_face_past_end = 0;
27057 hlinfo->mouse_face_window = window;
27058 hlinfo->mouse_face_face_id
27059 = face_at_string_position (w, object, pos, 0, 0, 0, &ignore,
27060 glyph->face_id, 1);
27061 show_mouse_face (hlinfo, DRAW_MOUSE_FACE);
27062 cursor = No_Cursor;
27063 }
27064 else
27065 {
27066 /* The mouse-highlighting, if any, comes from an overlay
27067 or text property in the buffer. */
27068 Lisp_Object buffer IF_LINT (= Qnil);
27069 Lisp_Object cover_string IF_LINT (= Qnil);
27070
27071 if (STRINGP (object))
27072 {
27073 /* If we are on a display string with no mouse-face,
27074 check if the text under it has one. */
27075 struct glyph_row *r = MATRIX_ROW (w->current_matrix, vpos);
27076 EMACS_INT start = MATRIX_ROW_START_CHARPOS (r);
27077 pos = string_buffer_position (object, start);
27078 if (pos > 0)
27079 {
27080 mouse_face = get_char_property_and_overlay
27081 (make_number (pos), Qmouse_face, w->buffer, &overlay);
27082 buffer = w->buffer;
27083 cover_string = object;
27084 }
27085 }
27086 else
27087 {
27088 buffer = object;
27089 cover_string = Qnil;
27090 }
27091
27092 if (!NILP (mouse_face))
27093 {
27094 Lisp_Object before, after;
27095 Lisp_Object before_string, after_string;
27096 /* To correctly find the limits of mouse highlight
27097 in a bidi-reordered buffer, we must not use the
27098 optimization of limiting the search in
27099 previous-single-property-change and
27100 next-single-property-change, because
27101 rows_from_pos_range needs the real start and end
27102 positions to DTRT in this case. That's because
27103 the first row visible in a window does not
27104 necessarily display the character whose position
27105 is the smallest. */
27106 Lisp_Object lim1 =
27107 NILP (BVAR (XBUFFER (buffer), bidi_display_reordering))
27108 ? Fmarker_position (w->start)
27109 : Qnil;
27110 Lisp_Object lim2 =
27111 NILP (BVAR (XBUFFER (buffer), bidi_display_reordering))
27112 ? make_number (BUF_Z (XBUFFER (buffer))
27113 - XFASTINT (w->window_end_pos))
27114 : Qnil;
27115
27116 if (NILP (overlay))
27117 {
27118 /* Handle the text property case. */
27119 before = Fprevious_single_property_change
27120 (make_number (pos + 1), Qmouse_face, buffer, lim1);
27121 after = Fnext_single_property_change
27122 (make_number (pos), Qmouse_face, buffer, lim2);
27123 before_string = after_string = Qnil;
27124 }
27125 else
27126 {
27127 /* Handle the overlay case. */
27128 before = Foverlay_start (overlay);
27129 after = Foverlay_end (overlay);
27130 before_string = Foverlay_get (overlay, Qbefore_string);
27131 after_string = Foverlay_get (overlay, Qafter_string);
27132
27133 if (!STRINGP (before_string)) before_string = Qnil;
27134 if (!STRINGP (after_string)) after_string = Qnil;
27135 }
27136
27137 mouse_face_from_buffer_pos (window, hlinfo, pos,
27138 XFASTINT (before),
27139 XFASTINT (after),
27140 before_string, after_string,
27141 cover_string);
27142 cursor = No_Cursor;
27143 }
27144 }
27145 }
27146
27147 check_help_echo:
27148
27149 /* Look for a `help-echo' property. */
27150 if (NILP (help_echo_string)) {
27151 Lisp_Object help, overlay;
27152
27153 /* Check overlays first. */
27154 help = overlay = Qnil;
27155 for (i = noverlays - 1; i >= 0 && NILP (help); --i)
27156 {
27157 overlay = overlay_vec[i];
27158 help = Foverlay_get (overlay, Qhelp_echo);
27159 }
27160
27161 if (!NILP (help))
27162 {
27163 help_echo_string = help;
27164 help_echo_window = window;
27165 help_echo_object = overlay;
27166 help_echo_pos = pos;
27167 }
27168 else
27169 {
27170 Lisp_Object obj = glyph->object;
27171 EMACS_INT charpos = glyph->charpos;
27172
27173 /* Try text properties. */
27174 if (STRINGP (obj)
27175 && charpos >= 0
27176 && charpos < SCHARS (obj))
27177 {
27178 help = Fget_text_property (make_number (charpos),
27179 Qhelp_echo, obj);
27180 if (NILP (help))
27181 {
27182 /* If the string itself doesn't specify a help-echo,
27183 see if the buffer text ``under'' it does. */
27184 struct glyph_row *r
27185 = MATRIX_ROW (w->current_matrix, vpos);
27186 EMACS_INT start = MATRIX_ROW_START_CHARPOS (r);
27187 EMACS_INT p = string_buffer_position (obj, start);
27188 if (p > 0)
27189 {
27190 help = Fget_char_property (make_number (p),
27191 Qhelp_echo, w->buffer);
27192 if (!NILP (help))
27193 {
27194 charpos = p;
27195 obj = w->buffer;
27196 }
27197 }
27198 }
27199 }
27200 else if (BUFFERP (obj)
27201 && charpos >= BEGV
27202 && charpos < ZV)
27203 help = Fget_text_property (make_number (charpos), Qhelp_echo,
27204 obj);
27205
27206 if (!NILP (help))
27207 {
27208 help_echo_string = help;
27209 help_echo_window = window;
27210 help_echo_object = obj;
27211 help_echo_pos = charpos;
27212 }
27213 }
27214 }
27215
27216 #ifdef HAVE_WINDOW_SYSTEM
27217 /* Look for a `pointer' property. */
27218 if (FRAME_WINDOW_P (f) && NILP (pointer))
27219 {
27220 /* Check overlays first. */
27221 for (i = noverlays - 1; i >= 0 && NILP (pointer); --i)
27222 pointer = Foverlay_get (overlay_vec[i], Qpointer);
27223
27224 if (NILP (pointer))
27225 {
27226 Lisp_Object obj = glyph->object;
27227 EMACS_INT charpos = glyph->charpos;
27228
27229 /* Try text properties. */
27230 if (STRINGP (obj)
27231 && charpos >= 0
27232 && charpos < SCHARS (obj))
27233 {
27234 pointer = Fget_text_property (make_number (charpos),
27235 Qpointer, obj);
27236 if (NILP (pointer))
27237 {
27238 /* If the string itself doesn't specify a pointer,
27239 see if the buffer text ``under'' it does. */
27240 struct glyph_row *r
27241 = MATRIX_ROW (w->current_matrix, vpos);
27242 EMACS_INT start = MATRIX_ROW_START_CHARPOS (r);
27243 EMACS_INT p = string_buffer_position (obj, start);
27244 if (p > 0)
27245 pointer = Fget_char_property (make_number (p),
27246 Qpointer, w->buffer);
27247 }
27248 }
27249 else if (BUFFERP (obj)
27250 && charpos >= BEGV
27251 && charpos < ZV)
27252 pointer = Fget_text_property (make_number (charpos),
27253 Qpointer, obj);
27254 }
27255 }
27256 #endif /* HAVE_WINDOW_SYSTEM */
27257
27258 BEGV = obegv;
27259 ZV = ozv;
27260 current_buffer = obuf;
27261 }
27262
27263 set_cursor:
27264
27265 #ifdef HAVE_WINDOW_SYSTEM
27266 if (FRAME_WINDOW_P (f))
27267 define_frame_cursor1 (f, cursor, pointer);
27268 #else
27269 /* This is here to prevent a compiler error, about "label at end of
27270 compound statement". */
27271 return;
27272 #endif
27273 }
27274
27275
27276 /* EXPORT for RIF:
27277 Clear any mouse-face on window W. This function is part of the
27278 redisplay interface, and is called from try_window_id and similar
27279 functions to ensure the mouse-highlight is off. */
27280
27281 void
27282 x_clear_window_mouse_face (struct window *w)
27283 {
27284 Mouse_HLInfo *hlinfo = MOUSE_HL_INFO (XFRAME (w->frame));
27285 Lisp_Object window;
27286
27287 BLOCK_INPUT;
27288 XSETWINDOW (window, w);
27289 if (EQ (window, hlinfo->mouse_face_window))
27290 clear_mouse_face (hlinfo);
27291 UNBLOCK_INPUT;
27292 }
27293
27294
27295 /* EXPORT:
27296 Just discard the mouse face information for frame F, if any.
27297 This is used when the size of F is changed. */
27298
27299 void
27300 cancel_mouse_face (struct frame *f)
27301 {
27302 Lisp_Object window;
27303 Mouse_HLInfo *hlinfo = MOUSE_HL_INFO (f);
27304
27305 window = hlinfo->mouse_face_window;
27306 if (! NILP (window) && XFRAME (XWINDOW (window)->frame) == f)
27307 {
27308 hlinfo->mouse_face_beg_row = hlinfo->mouse_face_beg_col = -1;
27309 hlinfo->mouse_face_end_row = hlinfo->mouse_face_end_col = -1;
27310 hlinfo->mouse_face_window = Qnil;
27311 }
27312 }
27313
27314
27315 \f
27316 /***********************************************************************
27317 Exposure Events
27318 ***********************************************************************/
27319
27320 #ifdef HAVE_WINDOW_SYSTEM
27321
27322 /* Redraw the part of glyph row area AREA of glyph row ROW on window W
27323 which intersects rectangle R. R is in window-relative coordinates. */
27324
27325 static void
27326 expose_area (struct window *w, struct glyph_row *row, XRectangle *r,
27327 enum glyph_row_area area)
27328 {
27329 struct glyph *first = row->glyphs[area];
27330 struct glyph *end = row->glyphs[area] + row->used[area];
27331 struct glyph *last;
27332 int first_x, start_x, x;
27333
27334 if (area == TEXT_AREA && row->fill_line_p)
27335 /* If row extends face to end of line write the whole line. */
27336 draw_glyphs (w, 0, row, area,
27337 0, row->used[area],
27338 DRAW_NORMAL_TEXT, 0);
27339 else
27340 {
27341 /* Set START_X to the window-relative start position for drawing glyphs of
27342 AREA. The first glyph of the text area can be partially visible.
27343 The first glyphs of other areas cannot. */
27344 start_x = window_box_left_offset (w, area);
27345 x = start_x;
27346 if (area == TEXT_AREA)
27347 x += row->x;
27348
27349 /* Find the first glyph that must be redrawn. */
27350 while (first < end
27351 && x + first->pixel_width < r->x)
27352 {
27353 x += first->pixel_width;
27354 ++first;
27355 }
27356
27357 /* Find the last one. */
27358 last = first;
27359 first_x = x;
27360 while (last < end
27361 && x < r->x + r->width)
27362 {
27363 x += last->pixel_width;
27364 ++last;
27365 }
27366
27367 /* Repaint. */
27368 if (last > first)
27369 draw_glyphs (w, first_x - start_x, row, area,
27370 first - row->glyphs[area], last - row->glyphs[area],
27371 DRAW_NORMAL_TEXT, 0);
27372 }
27373 }
27374
27375
27376 /* Redraw the parts of the glyph row ROW on window W intersecting
27377 rectangle R. R is in window-relative coordinates. Value is
27378 non-zero if mouse-face was overwritten. */
27379
27380 static int
27381 expose_line (struct window *w, struct glyph_row *row, XRectangle *r)
27382 {
27383 xassert (row->enabled_p);
27384
27385 if (row->mode_line_p || w->pseudo_window_p)
27386 draw_glyphs (w, 0, row, TEXT_AREA,
27387 0, row->used[TEXT_AREA],
27388 DRAW_NORMAL_TEXT, 0);
27389 else
27390 {
27391 if (row->used[LEFT_MARGIN_AREA])
27392 expose_area (w, row, r, LEFT_MARGIN_AREA);
27393 if (row->used[TEXT_AREA])
27394 expose_area (w, row, r, TEXT_AREA);
27395 if (row->used[RIGHT_MARGIN_AREA])
27396 expose_area (w, row, r, RIGHT_MARGIN_AREA);
27397 draw_row_fringe_bitmaps (w, row);
27398 }
27399
27400 return row->mouse_face_p;
27401 }
27402
27403
27404 /* Redraw those parts of glyphs rows during expose event handling that
27405 overlap other rows. Redrawing of an exposed line writes over parts
27406 of lines overlapping that exposed line; this function fixes that.
27407
27408 W is the window being exposed. FIRST_OVERLAPPING_ROW is the first
27409 row in W's current matrix that is exposed and overlaps other rows.
27410 LAST_OVERLAPPING_ROW is the last such row. */
27411
27412 static void
27413 expose_overlaps (struct window *w,
27414 struct glyph_row *first_overlapping_row,
27415 struct glyph_row *last_overlapping_row,
27416 XRectangle *r)
27417 {
27418 struct glyph_row *row;
27419
27420 for (row = first_overlapping_row; row <= last_overlapping_row; ++row)
27421 if (row->overlapping_p)
27422 {
27423 xassert (row->enabled_p && !row->mode_line_p);
27424
27425 row->clip = r;
27426 if (row->used[LEFT_MARGIN_AREA])
27427 x_fix_overlapping_area (w, row, LEFT_MARGIN_AREA, OVERLAPS_BOTH);
27428
27429 if (row->used[TEXT_AREA])
27430 x_fix_overlapping_area (w, row, TEXT_AREA, OVERLAPS_BOTH);
27431
27432 if (row->used[RIGHT_MARGIN_AREA])
27433 x_fix_overlapping_area (w, row, RIGHT_MARGIN_AREA, OVERLAPS_BOTH);
27434 row->clip = NULL;
27435 }
27436 }
27437
27438
27439 /* Return non-zero if W's cursor intersects rectangle R. */
27440
27441 static int
27442 phys_cursor_in_rect_p (struct window *w, XRectangle *r)
27443 {
27444 XRectangle cr, result;
27445 struct glyph *cursor_glyph;
27446 struct glyph_row *row;
27447
27448 if (w->phys_cursor.vpos >= 0
27449 && w->phys_cursor.vpos < w->current_matrix->nrows
27450 && (row = MATRIX_ROW (w->current_matrix, w->phys_cursor.vpos),
27451 row->enabled_p)
27452 && row->cursor_in_fringe_p)
27453 {
27454 /* Cursor is in the fringe. */
27455 cr.x = window_box_right_offset (w,
27456 (WINDOW_HAS_FRINGES_OUTSIDE_MARGINS (w)
27457 ? RIGHT_MARGIN_AREA
27458 : TEXT_AREA));
27459 cr.y = row->y;
27460 cr.width = WINDOW_RIGHT_FRINGE_WIDTH (w);
27461 cr.height = row->height;
27462 return x_intersect_rectangles (&cr, r, &result);
27463 }
27464
27465 cursor_glyph = get_phys_cursor_glyph (w);
27466 if (cursor_glyph)
27467 {
27468 /* r is relative to W's box, but w->phys_cursor.x is relative
27469 to left edge of W's TEXT area. Adjust it. */
27470 cr.x = window_box_left_offset (w, TEXT_AREA) + w->phys_cursor.x;
27471 cr.y = w->phys_cursor.y;
27472 cr.width = cursor_glyph->pixel_width;
27473 cr.height = w->phys_cursor_height;
27474 /* ++KFS: W32 version used W32-specific IntersectRect here, but
27475 I assume the effect is the same -- and this is portable. */
27476 return x_intersect_rectangles (&cr, r, &result);
27477 }
27478 /* If we don't understand the format, pretend we're not in the hot-spot. */
27479 return 0;
27480 }
27481
27482
27483 /* EXPORT:
27484 Draw a vertical window border to the right of window W if W doesn't
27485 have vertical scroll bars. */
27486
27487 void
27488 x_draw_vertical_border (struct window *w)
27489 {
27490 struct frame *f = XFRAME (WINDOW_FRAME (w));
27491
27492 /* We could do better, if we knew what type of scroll-bar the adjacent
27493 windows (on either side) have... But we don't :-(
27494 However, I think this works ok. ++KFS 2003-04-25 */
27495
27496 /* Redraw borders between horizontally adjacent windows. Don't
27497 do it for frames with vertical scroll bars because either the
27498 right scroll bar of a window, or the left scroll bar of its
27499 neighbor will suffice as a border. */
27500 if (FRAME_HAS_VERTICAL_SCROLL_BARS (XFRAME (w->frame)))
27501 return;
27502
27503 if (!WINDOW_RIGHTMOST_P (w)
27504 && !WINDOW_HAS_VERTICAL_SCROLL_BAR_ON_RIGHT (w))
27505 {
27506 int x0, x1, y0, y1;
27507
27508 window_box_edges (w, -1, &x0, &y0, &x1, &y1);
27509 y1 -= 1;
27510
27511 if (WINDOW_LEFT_FRINGE_WIDTH (w) == 0)
27512 x1 -= 1;
27513
27514 FRAME_RIF (f)->draw_vertical_window_border (w, x1, y0, y1);
27515 }
27516 else if (!WINDOW_LEFTMOST_P (w)
27517 && !WINDOW_HAS_VERTICAL_SCROLL_BAR_ON_LEFT (w))
27518 {
27519 int x0, x1, y0, y1;
27520
27521 window_box_edges (w, -1, &x0, &y0, &x1, &y1);
27522 y1 -= 1;
27523
27524 if (WINDOW_LEFT_FRINGE_WIDTH (w) == 0)
27525 x0 -= 1;
27526
27527 FRAME_RIF (f)->draw_vertical_window_border (w, x0, y0, y1);
27528 }
27529 }
27530
27531
27532 /* Redraw the part of window W intersection rectangle FR. Pixel
27533 coordinates in FR are frame-relative. Call this function with
27534 input blocked. Value is non-zero if the exposure overwrites
27535 mouse-face. */
27536
27537 static int
27538 expose_window (struct window *w, XRectangle *fr)
27539 {
27540 struct frame *f = XFRAME (w->frame);
27541 XRectangle wr, r;
27542 int mouse_face_overwritten_p = 0;
27543
27544 /* If window is not yet fully initialized, do nothing. This can
27545 happen when toolkit scroll bars are used and a window is split.
27546 Reconfiguring the scroll bar will generate an expose for a newly
27547 created window. */
27548 if (w->current_matrix == NULL)
27549 return 0;
27550
27551 /* When we're currently updating the window, display and current
27552 matrix usually don't agree. Arrange for a thorough display
27553 later. */
27554 if (w == updated_window)
27555 {
27556 SET_FRAME_GARBAGED (f);
27557 return 0;
27558 }
27559
27560 /* Frame-relative pixel rectangle of W. */
27561 wr.x = WINDOW_LEFT_EDGE_X (w);
27562 wr.y = WINDOW_TOP_EDGE_Y (w);
27563 wr.width = WINDOW_TOTAL_WIDTH (w);
27564 wr.height = WINDOW_TOTAL_HEIGHT (w);
27565
27566 if (x_intersect_rectangles (fr, &wr, &r))
27567 {
27568 int yb = window_text_bottom_y (w);
27569 struct glyph_row *row;
27570 int cursor_cleared_p, phys_cursor_on_p;
27571 struct glyph_row *first_overlapping_row, *last_overlapping_row;
27572
27573 TRACE ((stderr, "expose_window (%d, %d, %d, %d)\n",
27574 r.x, r.y, r.width, r.height));
27575
27576 /* Convert to window coordinates. */
27577 r.x -= WINDOW_LEFT_EDGE_X (w);
27578 r.y -= WINDOW_TOP_EDGE_Y (w);
27579
27580 /* Turn off the cursor. */
27581 if (!w->pseudo_window_p
27582 && phys_cursor_in_rect_p (w, &r))
27583 {
27584 x_clear_cursor (w);
27585 cursor_cleared_p = 1;
27586 }
27587 else
27588 cursor_cleared_p = 0;
27589
27590 /* If the row containing the cursor extends face to end of line,
27591 then expose_area might overwrite the cursor outside the
27592 rectangle and thus notice_overwritten_cursor might clear
27593 w->phys_cursor_on_p. We remember the original value and
27594 check later if it is changed. */
27595 phys_cursor_on_p = w->phys_cursor_on_p;
27596
27597 /* Update lines intersecting rectangle R. */
27598 first_overlapping_row = last_overlapping_row = NULL;
27599 for (row = w->current_matrix->rows;
27600 row->enabled_p;
27601 ++row)
27602 {
27603 int y0 = row->y;
27604 int y1 = MATRIX_ROW_BOTTOM_Y (row);
27605
27606 if ((y0 >= r.y && y0 < r.y + r.height)
27607 || (y1 > r.y && y1 < r.y + r.height)
27608 || (r.y >= y0 && r.y < y1)
27609 || (r.y + r.height > y0 && r.y + r.height < y1))
27610 {
27611 /* A header line may be overlapping, but there is no need
27612 to fix overlapping areas for them. KFS 2005-02-12 */
27613 if (row->overlapping_p && !row->mode_line_p)
27614 {
27615 if (first_overlapping_row == NULL)
27616 first_overlapping_row = row;
27617 last_overlapping_row = row;
27618 }
27619
27620 row->clip = fr;
27621 if (expose_line (w, row, &r))
27622 mouse_face_overwritten_p = 1;
27623 row->clip = NULL;
27624 }
27625 else if (row->overlapping_p)
27626 {
27627 /* We must redraw a row overlapping the exposed area. */
27628 if (y0 < r.y
27629 ? y0 + row->phys_height > r.y
27630 : y0 + row->ascent - row->phys_ascent < r.y +r.height)
27631 {
27632 if (first_overlapping_row == NULL)
27633 first_overlapping_row = row;
27634 last_overlapping_row = row;
27635 }
27636 }
27637
27638 if (y1 >= yb)
27639 break;
27640 }
27641
27642 /* Display the mode line if there is one. */
27643 if (WINDOW_WANTS_MODELINE_P (w)
27644 && (row = MATRIX_MODE_LINE_ROW (w->current_matrix),
27645 row->enabled_p)
27646 && row->y < r.y + r.height)
27647 {
27648 if (expose_line (w, row, &r))
27649 mouse_face_overwritten_p = 1;
27650 }
27651
27652 if (!w->pseudo_window_p)
27653 {
27654 /* Fix the display of overlapping rows. */
27655 if (first_overlapping_row)
27656 expose_overlaps (w, first_overlapping_row, last_overlapping_row,
27657 fr);
27658
27659 /* Draw border between windows. */
27660 x_draw_vertical_border (w);
27661
27662 /* Turn the cursor on again. */
27663 if (cursor_cleared_p
27664 || (phys_cursor_on_p && !w->phys_cursor_on_p))
27665 update_window_cursor (w, 1);
27666 }
27667 }
27668
27669 return mouse_face_overwritten_p;
27670 }
27671
27672
27673
27674 /* Redraw (parts) of all windows in the window tree rooted at W that
27675 intersect R. R contains frame pixel coordinates. Value is
27676 non-zero if the exposure overwrites mouse-face. */
27677
27678 static int
27679 expose_window_tree (struct window *w, XRectangle *r)
27680 {
27681 struct frame *f = XFRAME (w->frame);
27682 int mouse_face_overwritten_p = 0;
27683
27684 while (w && !FRAME_GARBAGED_P (f))
27685 {
27686 if (!NILP (w->hchild))
27687 mouse_face_overwritten_p
27688 |= expose_window_tree (XWINDOW (w->hchild), r);
27689 else if (!NILP (w->vchild))
27690 mouse_face_overwritten_p
27691 |= expose_window_tree (XWINDOW (w->vchild), r);
27692 else
27693 mouse_face_overwritten_p |= expose_window (w, r);
27694
27695 w = NILP (w->next) ? NULL : XWINDOW (w->next);
27696 }
27697
27698 return mouse_face_overwritten_p;
27699 }
27700
27701
27702 /* EXPORT:
27703 Redisplay an exposed area of frame F. X and Y are the upper-left
27704 corner of the exposed rectangle. W and H are width and height of
27705 the exposed area. All are pixel values. W or H zero means redraw
27706 the entire frame. */
27707
27708 void
27709 expose_frame (struct frame *f, int x, int y, int w, int h)
27710 {
27711 XRectangle r;
27712 int mouse_face_overwritten_p = 0;
27713
27714 TRACE ((stderr, "expose_frame "));
27715
27716 /* No need to redraw if frame will be redrawn soon. */
27717 if (FRAME_GARBAGED_P (f))
27718 {
27719 TRACE ((stderr, " garbaged\n"));
27720 return;
27721 }
27722
27723 /* If basic faces haven't been realized yet, there is no point in
27724 trying to redraw anything. This can happen when we get an expose
27725 event while Emacs is starting, e.g. by moving another window. */
27726 if (FRAME_FACE_CACHE (f) == NULL
27727 || FRAME_FACE_CACHE (f)->used < BASIC_FACE_ID_SENTINEL)
27728 {
27729 TRACE ((stderr, " no faces\n"));
27730 return;
27731 }
27732
27733 if (w == 0 || h == 0)
27734 {
27735 r.x = r.y = 0;
27736 r.width = FRAME_COLUMN_WIDTH (f) * FRAME_COLS (f);
27737 r.height = FRAME_LINE_HEIGHT (f) * FRAME_LINES (f);
27738 }
27739 else
27740 {
27741 r.x = x;
27742 r.y = y;
27743 r.width = w;
27744 r.height = h;
27745 }
27746
27747 TRACE ((stderr, "(%d, %d, %d, %d)\n", r.x, r.y, r.width, r.height));
27748 mouse_face_overwritten_p = expose_window_tree (XWINDOW (f->root_window), &r);
27749
27750 if (WINDOWP (f->tool_bar_window))
27751 mouse_face_overwritten_p
27752 |= expose_window (XWINDOW (f->tool_bar_window), &r);
27753
27754 #ifdef HAVE_X_WINDOWS
27755 #ifndef MSDOS
27756 #ifndef USE_X_TOOLKIT
27757 if (WINDOWP (f->menu_bar_window))
27758 mouse_face_overwritten_p
27759 |= expose_window (XWINDOW (f->menu_bar_window), &r);
27760 #endif /* not USE_X_TOOLKIT */
27761 #endif
27762 #endif
27763
27764 /* Some window managers support a focus-follows-mouse style with
27765 delayed raising of frames. Imagine a partially obscured frame,
27766 and moving the mouse into partially obscured mouse-face on that
27767 frame. The visible part of the mouse-face will be highlighted,
27768 then the WM raises the obscured frame. With at least one WM, KDE
27769 2.1, Emacs is not getting any event for the raising of the frame
27770 (even tried with SubstructureRedirectMask), only Expose events.
27771 These expose events will draw text normally, i.e. not
27772 highlighted. Which means we must redo the highlight here.
27773 Subsume it under ``we love X''. --gerd 2001-08-15 */
27774 /* Included in Windows version because Windows most likely does not
27775 do the right thing if any third party tool offers
27776 focus-follows-mouse with delayed raise. --jason 2001-10-12 */
27777 if (mouse_face_overwritten_p && !FRAME_GARBAGED_P (f))
27778 {
27779 Mouse_HLInfo *hlinfo = MOUSE_HL_INFO (f);
27780 if (f == hlinfo->mouse_face_mouse_frame)
27781 {
27782 int mouse_x = hlinfo->mouse_face_mouse_x;
27783 int mouse_y = hlinfo->mouse_face_mouse_y;
27784 clear_mouse_face (hlinfo);
27785 note_mouse_highlight (f, mouse_x, mouse_y);
27786 }
27787 }
27788 }
27789
27790
27791 /* EXPORT:
27792 Determine the intersection of two rectangles R1 and R2. Return
27793 the intersection in *RESULT. Value is non-zero if RESULT is not
27794 empty. */
27795
27796 int
27797 x_intersect_rectangles (XRectangle *r1, XRectangle *r2, XRectangle *result)
27798 {
27799 XRectangle *left, *right;
27800 XRectangle *upper, *lower;
27801 int intersection_p = 0;
27802
27803 /* Rearrange so that R1 is the left-most rectangle. */
27804 if (r1->x < r2->x)
27805 left = r1, right = r2;
27806 else
27807 left = r2, right = r1;
27808
27809 /* X0 of the intersection is right.x0, if this is inside R1,
27810 otherwise there is no intersection. */
27811 if (right->x <= left->x + left->width)
27812 {
27813 result->x = right->x;
27814
27815 /* The right end of the intersection is the minimum of
27816 the right ends of left and right. */
27817 result->width = (min (left->x + left->width, right->x + right->width)
27818 - result->x);
27819
27820 /* Same game for Y. */
27821 if (r1->y < r2->y)
27822 upper = r1, lower = r2;
27823 else
27824 upper = r2, lower = r1;
27825
27826 /* The upper end of the intersection is lower.y0, if this is inside
27827 of upper. Otherwise, there is no intersection. */
27828 if (lower->y <= upper->y + upper->height)
27829 {
27830 result->y = lower->y;
27831
27832 /* The lower end of the intersection is the minimum of the lower
27833 ends of upper and lower. */
27834 result->height = (min (lower->y + lower->height,
27835 upper->y + upper->height)
27836 - result->y);
27837 intersection_p = 1;
27838 }
27839 }
27840
27841 return intersection_p;
27842 }
27843
27844 #endif /* HAVE_WINDOW_SYSTEM */
27845
27846 \f
27847 /***********************************************************************
27848 Initialization
27849 ***********************************************************************/
27850
27851 void
27852 syms_of_xdisp (void)
27853 {
27854 Vwith_echo_area_save_vector = Qnil;
27855 staticpro (&Vwith_echo_area_save_vector);
27856
27857 Vmessage_stack = Qnil;
27858 staticpro (&Vmessage_stack);
27859
27860 DEFSYM (Qinhibit_redisplay, "inhibit-redisplay");
27861
27862 message_dolog_marker1 = Fmake_marker ();
27863 staticpro (&message_dolog_marker1);
27864 message_dolog_marker2 = Fmake_marker ();
27865 staticpro (&message_dolog_marker2);
27866 message_dolog_marker3 = Fmake_marker ();
27867 staticpro (&message_dolog_marker3);
27868
27869 #if GLYPH_DEBUG
27870 defsubr (&Sdump_frame_glyph_matrix);
27871 defsubr (&Sdump_glyph_matrix);
27872 defsubr (&Sdump_glyph_row);
27873 defsubr (&Sdump_tool_bar_row);
27874 defsubr (&Strace_redisplay);
27875 defsubr (&Strace_to_stderr);
27876 #endif
27877 #ifdef HAVE_WINDOW_SYSTEM
27878 defsubr (&Stool_bar_lines_needed);
27879 defsubr (&Slookup_image_map);
27880 #endif
27881 defsubr (&Sformat_mode_line);
27882 defsubr (&Sinvisible_p);
27883 defsubr (&Scurrent_bidi_paragraph_direction);
27884
27885 DEFSYM (Qmenu_bar_update_hook, "menu-bar-update-hook");
27886 DEFSYM (Qoverriding_terminal_local_map, "overriding-terminal-local-map");
27887 DEFSYM (Qoverriding_local_map, "overriding-local-map");
27888 DEFSYM (Qwindow_scroll_functions, "window-scroll-functions");
27889 DEFSYM (Qwindow_text_change_functions, "window-text-change-functions");
27890 DEFSYM (Qredisplay_end_trigger_functions, "redisplay-end-trigger-functions");
27891 DEFSYM (Qinhibit_point_motion_hooks, "inhibit-point-motion-hooks");
27892 DEFSYM (Qeval, "eval");
27893 DEFSYM (QCdata, ":data");
27894 DEFSYM (Qdisplay, "display");
27895 DEFSYM (Qspace_width, "space-width");
27896 DEFSYM (Qraise, "raise");
27897 DEFSYM (Qslice, "slice");
27898 DEFSYM (Qspace, "space");
27899 DEFSYM (Qmargin, "margin");
27900 DEFSYM (Qpointer, "pointer");
27901 DEFSYM (Qleft_margin, "left-margin");
27902 DEFSYM (Qright_margin, "right-margin");
27903 DEFSYM (Qcenter, "center");
27904 DEFSYM (Qline_height, "line-height");
27905 DEFSYM (QCalign_to, ":align-to");
27906 DEFSYM (QCrelative_width, ":relative-width");
27907 DEFSYM (QCrelative_height, ":relative-height");
27908 DEFSYM (QCeval, ":eval");
27909 DEFSYM (QCpropertize, ":propertize");
27910 DEFSYM (QCfile, ":file");
27911 DEFSYM (Qfontified, "fontified");
27912 DEFSYM (Qfontification_functions, "fontification-functions");
27913 DEFSYM (Qtrailing_whitespace, "trailing-whitespace");
27914 DEFSYM (Qescape_glyph, "escape-glyph");
27915 DEFSYM (Qnobreak_space, "nobreak-space");
27916 DEFSYM (Qimage, "image");
27917 DEFSYM (Qtext, "text");
27918 DEFSYM (Qboth, "both");
27919 DEFSYM (Qboth_horiz, "both-horiz");
27920 DEFSYM (Qtext_image_horiz, "text-image-horiz");
27921 DEFSYM (QCmap, ":map");
27922 DEFSYM (QCpointer, ":pointer");
27923 DEFSYM (Qrect, "rect");
27924 DEFSYM (Qcircle, "circle");
27925 DEFSYM (Qpoly, "poly");
27926 DEFSYM (Qmessage_truncate_lines, "message-truncate-lines");
27927 DEFSYM (Qgrow_only, "grow-only");
27928 DEFSYM (Qinhibit_menubar_update, "inhibit-menubar-update");
27929 DEFSYM (Qinhibit_eval_during_redisplay, "inhibit-eval-during-redisplay");
27930 DEFSYM (Qposition, "position");
27931 DEFSYM (Qbuffer_position, "buffer-position");
27932 DEFSYM (Qobject, "object");
27933 DEFSYM (Qbar, "bar");
27934 DEFSYM (Qhbar, "hbar");
27935 DEFSYM (Qbox, "box");
27936 DEFSYM (Qhollow, "hollow");
27937 DEFSYM (Qhand, "hand");
27938 DEFSYM (Qarrow, "arrow");
27939 DEFSYM (Qtext, "text");
27940 DEFSYM (Qinhibit_free_realized_faces, "inhibit-free-realized-faces");
27941
27942 list_of_error = Fcons (Fcons (intern_c_string ("error"),
27943 Fcons (intern_c_string ("void-variable"), Qnil)),
27944 Qnil);
27945 staticpro (&list_of_error);
27946
27947 DEFSYM (Qlast_arrow_position, "last-arrow-position");
27948 DEFSYM (Qlast_arrow_string, "last-arrow-string");
27949 DEFSYM (Qoverlay_arrow_string, "overlay-arrow-string");
27950 DEFSYM (Qoverlay_arrow_bitmap, "overlay-arrow-bitmap");
27951
27952 echo_buffer[0] = echo_buffer[1] = Qnil;
27953 staticpro (&echo_buffer[0]);
27954 staticpro (&echo_buffer[1]);
27955
27956 echo_area_buffer[0] = echo_area_buffer[1] = Qnil;
27957 staticpro (&echo_area_buffer[0]);
27958 staticpro (&echo_area_buffer[1]);
27959
27960 Vmessages_buffer_name = make_pure_c_string ("*Messages*");
27961 staticpro (&Vmessages_buffer_name);
27962
27963 mode_line_proptrans_alist = Qnil;
27964 staticpro (&mode_line_proptrans_alist);
27965 mode_line_string_list = Qnil;
27966 staticpro (&mode_line_string_list);
27967 mode_line_string_face = Qnil;
27968 staticpro (&mode_line_string_face);
27969 mode_line_string_face_prop = Qnil;
27970 staticpro (&mode_line_string_face_prop);
27971 Vmode_line_unwind_vector = Qnil;
27972 staticpro (&Vmode_line_unwind_vector);
27973
27974 help_echo_string = Qnil;
27975 staticpro (&help_echo_string);
27976 help_echo_object = Qnil;
27977 staticpro (&help_echo_object);
27978 help_echo_window = Qnil;
27979 staticpro (&help_echo_window);
27980 previous_help_echo_string = Qnil;
27981 staticpro (&previous_help_echo_string);
27982 help_echo_pos = -1;
27983
27984 DEFSYM (Qright_to_left, "right-to-left");
27985 DEFSYM (Qleft_to_right, "left-to-right");
27986
27987 #ifdef HAVE_WINDOW_SYSTEM
27988 DEFVAR_BOOL ("x-stretch-cursor", x_stretch_cursor_p,
27989 doc: /* *Non-nil means draw block cursor as wide as the glyph under it.
27990 For example, if a block cursor is over a tab, it will be drawn as
27991 wide as that tab on the display. */);
27992 x_stretch_cursor_p = 0;
27993 #endif
27994
27995 DEFVAR_LISP ("show-trailing-whitespace", Vshow_trailing_whitespace,
27996 doc: /* *Non-nil means highlight trailing whitespace.
27997 The face used for trailing whitespace is `trailing-whitespace'. */);
27998 Vshow_trailing_whitespace = Qnil;
27999
28000 DEFVAR_LISP ("nobreak-char-display", Vnobreak_char_display,
28001 doc: /* *Control highlighting of nobreak space and soft hyphen.
28002 A value of t means highlight the character itself (for nobreak space,
28003 use face `nobreak-space').
28004 A value of nil means no highlighting.
28005 Other values mean display the escape glyph followed by an ordinary
28006 space or ordinary hyphen. */);
28007 Vnobreak_char_display = Qt;
28008
28009 DEFVAR_LISP ("void-text-area-pointer", Vvoid_text_area_pointer,
28010 doc: /* *The pointer shape to show in void text areas.
28011 A value of nil means to show the text pointer. Other options are `arrow',
28012 `text', `hand', `vdrag', `hdrag', `modeline', and `hourglass'. */);
28013 Vvoid_text_area_pointer = Qarrow;
28014
28015 DEFVAR_LISP ("inhibit-redisplay", Vinhibit_redisplay,
28016 doc: /* Non-nil means don't actually do any redisplay.
28017 This is used for internal purposes. */);
28018 Vinhibit_redisplay = Qnil;
28019
28020 DEFVAR_LISP ("global-mode-string", Vglobal_mode_string,
28021 doc: /* String (or mode line construct) included (normally) in `mode-line-format'. */);
28022 Vglobal_mode_string = Qnil;
28023
28024 DEFVAR_LISP ("overlay-arrow-position", Voverlay_arrow_position,
28025 doc: /* Marker for where to display an arrow on top of the buffer text.
28026 This must be the beginning of a line in order to work.
28027 See also `overlay-arrow-string'. */);
28028 Voverlay_arrow_position = Qnil;
28029
28030 DEFVAR_LISP ("overlay-arrow-string", Voverlay_arrow_string,
28031 doc: /* String to display as an arrow in non-window frames.
28032 See also `overlay-arrow-position'. */);
28033 Voverlay_arrow_string = make_pure_c_string ("=>");
28034
28035 DEFVAR_LISP ("overlay-arrow-variable-list", Voverlay_arrow_variable_list,
28036 doc: /* List of variables (symbols) which hold markers for overlay arrows.
28037 The symbols on this list are examined during redisplay to determine
28038 where to display overlay arrows. */);
28039 Voverlay_arrow_variable_list
28040 = Fcons (intern_c_string ("overlay-arrow-position"), Qnil);
28041
28042 DEFVAR_INT ("scroll-step", emacs_scroll_step,
28043 doc: /* *The number of lines to try scrolling a window by when point moves out.
28044 If that fails to bring point back on frame, point is centered instead.
28045 If this is zero, point is always centered after it moves off frame.
28046 If you want scrolling to always be a line at a time, you should set
28047 `scroll-conservatively' to a large value rather than set this to 1. */);
28048
28049 DEFVAR_INT ("scroll-conservatively", scroll_conservatively,
28050 doc: /* *Scroll up to this many lines, to bring point back on screen.
28051 If point moves off-screen, redisplay will scroll by up to
28052 `scroll-conservatively' lines in order to bring point just barely
28053 onto the screen again. If that cannot be done, then redisplay
28054 recenters point as usual.
28055
28056 If the value is greater than 100, redisplay will never recenter point,
28057 but will always scroll just enough text to bring point into view, even
28058 if you move far away.
28059
28060 A value of zero means always recenter point if it moves off screen. */);
28061 scroll_conservatively = 0;
28062
28063 DEFVAR_INT ("scroll-margin", scroll_margin,
28064 doc: /* *Number of lines of margin at the top and bottom of a window.
28065 Recenter the window whenever point gets within this many lines
28066 of the top or bottom of the window. */);
28067 scroll_margin = 0;
28068
28069 DEFVAR_LISP ("display-pixels-per-inch", Vdisplay_pixels_per_inch,
28070 doc: /* Pixels per inch value for non-window system displays.
28071 Value is a number or a cons (WIDTH-DPI . HEIGHT-DPI). */);
28072 Vdisplay_pixels_per_inch = make_float (72.0);
28073
28074 #if GLYPH_DEBUG
28075 DEFVAR_INT ("debug-end-pos", debug_end_pos, doc: /* Don't ask. */);
28076 #endif
28077
28078 DEFVAR_LISP ("truncate-partial-width-windows",
28079 Vtruncate_partial_width_windows,
28080 doc: /* Non-nil means truncate lines in windows narrower than the frame.
28081 For an integer value, truncate lines in each window narrower than the
28082 full frame width, provided the window width is less than that integer;
28083 otherwise, respect the value of `truncate-lines'.
28084
28085 For any other non-nil value, truncate lines in all windows that do
28086 not span the full frame width.
28087
28088 A value of nil means to respect the value of `truncate-lines'.
28089
28090 If `word-wrap' is enabled, you might want to reduce this. */);
28091 Vtruncate_partial_width_windows = make_number (50);
28092
28093 DEFVAR_BOOL ("mode-line-inverse-video", mode_line_inverse_video,
28094 doc: /* When nil, display the mode-line/header-line/menu-bar in the default face.
28095 Any other value means to use the appropriate face, `mode-line',
28096 `header-line', or `menu' respectively. */);
28097 mode_line_inverse_video = 1;
28098
28099 DEFVAR_LISP ("line-number-display-limit", Vline_number_display_limit,
28100 doc: /* *Maximum buffer size for which line number should be displayed.
28101 If the buffer is bigger than this, the line number does not appear
28102 in the mode line. A value of nil means no limit. */);
28103 Vline_number_display_limit = Qnil;
28104
28105 DEFVAR_INT ("line-number-display-limit-width",
28106 line_number_display_limit_width,
28107 doc: /* *Maximum line width (in characters) for line number display.
28108 If the average length of the lines near point is bigger than this, then the
28109 line number may be omitted from the mode line. */);
28110 line_number_display_limit_width = 200;
28111
28112 DEFVAR_BOOL ("highlight-nonselected-windows", highlight_nonselected_windows,
28113 doc: /* *Non-nil means highlight region even in nonselected windows. */);
28114 highlight_nonselected_windows = 0;
28115
28116 DEFVAR_BOOL ("multiple-frames", multiple_frames,
28117 doc: /* Non-nil if more than one frame is visible on this display.
28118 Minibuffer-only frames don't count, but iconified frames do.
28119 This variable is not guaranteed to be accurate except while processing
28120 `frame-title-format' and `icon-title-format'. */);
28121
28122 DEFVAR_LISP ("frame-title-format", Vframe_title_format,
28123 doc: /* Template for displaying the title bar of visible frames.
28124 \(Assuming the window manager supports this feature.)
28125
28126 This variable has the same structure as `mode-line-format', except that
28127 the %c and %l constructs are ignored. It is used only on frames for
28128 which no explicit name has been set \(see `modify-frame-parameters'). */);
28129
28130 DEFVAR_LISP ("icon-title-format", Vicon_title_format,
28131 doc: /* Template for displaying the title bar of an iconified frame.
28132 \(Assuming the window manager supports this feature.)
28133 This variable has the same structure as `mode-line-format' (which see),
28134 and is used only on frames for which no explicit name has been set
28135 \(see `modify-frame-parameters'). */);
28136 Vicon_title_format
28137 = Vframe_title_format
28138 = pure_cons (intern_c_string ("multiple-frames"),
28139 pure_cons (make_pure_c_string ("%b"),
28140 pure_cons (pure_cons (empty_unibyte_string,
28141 pure_cons (intern_c_string ("invocation-name"),
28142 pure_cons (make_pure_c_string ("@"),
28143 pure_cons (intern_c_string ("system-name"),
28144 Qnil)))),
28145 Qnil)));
28146
28147 DEFVAR_LISP ("message-log-max", Vmessage_log_max,
28148 doc: /* Maximum number of lines to keep in the message log buffer.
28149 If nil, disable message logging. If t, log messages but don't truncate
28150 the buffer when it becomes large. */);
28151 Vmessage_log_max = make_number (100);
28152
28153 DEFVAR_LISP ("window-size-change-functions", Vwindow_size_change_functions,
28154 doc: /* Functions called before redisplay, if window sizes have changed.
28155 The value should be a list of functions that take one argument.
28156 Just before redisplay, for each frame, if any of its windows have changed
28157 size since the last redisplay, or have been split or deleted,
28158 all the functions in the list are called, with the frame as argument. */);
28159 Vwindow_size_change_functions = Qnil;
28160
28161 DEFVAR_LISP ("window-scroll-functions", Vwindow_scroll_functions,
28162 doc: /* List of functions to call before redisplaying a window with scrolling.
28163 Each function is called with two arguments, the window and its new
28164 display-start position. Note that these functions are also called by
28165 `set-window-buffer'. Also note that the value of `window-end' is not
28166 valid when these functions are called. */);
28167 Vwindow_scroll_functions = Qnil;
28168
28169 DEFVAR_LISP ("window-text-change-functions",
28170 Vwindow_text_change_functions,
28171 doc: /* Functions to call in redisplay when text in the window might change. */);
28172 Vwindow_text_change_functions = Qnil;
28173
28174 DEFVAR_LISP ("redisplay-end-trigger-functions", Vredisplay_end_trigger_functions,
28175 doc: /* Functions called when redisplay of a window reaches the end trigger.
28176 Each function is called with two arguments, the window and the end trigger value.
28177 See `set-window-redisplay-end-trigger'. */);
28178 Vredisplay_end_trigger_functions = Qnil;
28179
28180 DEFVAR_LISP ("mouse-autoselect-window", Vmouse_autoselect_window,
28181 doc: /* *Non-nil means autoselect window with mouse pointer.
28182 If nil, do not autoselect windows.
28183 A positive number means delay autoselection by that many seconds: a
28184 window is autoselected only after the mouse has remained in that
28185 window for the duration of the delay.
28186 A negative number has a similar effect, but causes windows to be
28187 autoselected only after the mouse has stopped moving. \(Because of
28188 the way Emacs compares mouse events, you will occasionally wait twice
28189 that time before the window gets selected.\)
28190 Any other value means to autoselect window instantaneously when the
28191 mouse pointer enters it.
28192
28193 Autoselection selects the minibuffer only if it is active, and never
28194 unselects the minibuffer if it is active.
28195
28196 When customizing this variable make sure that the actual value of
28197 `focus-follows-mouse' matches the behavior of your window manager. */);
28198 Vmouse_autoselect_window = Qnil;
28199
28200 DEFVAR_LISP ("auto-resize-tool-bars", Vauto_resize_tool_bars,
28201 doc: /* *Non-nil means automatically resize tool-bars.
28202 This dynamically changes the tool-bar's height to the minimum height
28203 that is needed to make all tool-bar items visible.
28204 If value is `grow-only', the tool-bar's height is only increased
28205 automatically; to decrease the tool-bar height, use \\[recenter]. */);
28206 Vauto_resize_tool_bars = Qt;
28207
28208 DEFVAR_BOOL ("auto-raise-tool-bar-buttons", auto_raise_tool_bar_buttons_p,
28209 doc: /* *Non-nil means raise tool-bar buttons when the mouse moves over them. */);
28210 auto_raise_tool_bar_buttons_p = 1;
28211
28212 DEFVAR_BOOL ("make-cursor-line-fully-visible", make_cursor_line_fully_visible_p,
28213 doc: /* *Non-nil means to scroll (recenter) cursor line if it is not fully visible. */);
28214 make_cursor_line_fully_visible_p = 1;
28215
28216 DEFVAR_LISP ("tool-bar-border", Vtool_bar_border,
28217 doc: /* *Border below tool-bar in pixels.
28218 If an integer, use it as the height of the border.
28219 If it is one of `internal-border-width' or `border-width', use the
28220 value of the corresponding frame parameter.
28221 Otherwise, no border is added below the tool-bar. */);
28222 Vtool_bar_border = Qinternal_border_width;
28223
28224 DEFVAR_LISP ("tool-bar-button-margin", Vtool_bar_button_margin,
28225 doc: /* *Margin around tool-bar buttons in pixels.
28226 If an integer, use that for both horizontal and vertical margins.
28227 Otherwise, value should be a pair of integers `(HORZ . VERT)' with
28228 HORZ specifying the horizontal margin, and VERT specifying the
28229 vertical margin. */);
28230 Vtool_bar_button_margin = make_number (DEFAULT_TOOL_BAR_BUTTON_MARGIN);
28231
28232 DEFVAR_INT ("tool-bar-button-relief", tool_bar_button_relief,
28233 doc: /* *Relief thickness of tool-bar buttons. */);
28234 tool_bar_button_relief = DEFAULT_TOOL_BAR_BUTTON_RELIEF;
28235
28236 DEFVAR_LISP ("tool-bar-style", Vtool_bar_style,
28237 doc: /* Tool bar style to use.
28238 It can be one of
28239 image - show images only
28240 text - show text only
28241 both - show both, text below image
28242 both-horiz - show text to the right of the image
28243 text-image-horiz - show text to the left of the image
28244 any other - use system default or image if no system default. */);
28245 Vtool_bar_style = Qnil;
28246
28247 DEFVAR_INT ("tool-bar-max-label-size", tool_bar_max_label_size,
28248 doc: /* *Maximum number of characters a label can have to be shown.
28249 The tool bar style must also show labels for this to have any effect, see
28250 `tool-bar-style'. */);
28251 tool_bar_max_label_size = DEFAULT_TOOL_BAR_LABEL_SIZE;
28252
28253 DEFVAR_LISP ("fontification-functions", Vfontification_functions,
28254 doc: /* List of functions to call to fontify regions of text.
28255 Each function is called with one argument POS. Functions must
28256 fontify a region starting at POS in the current buffer, and give
28257 fontified regions the property `fontified'. */);
28258 Vfontification_functions = Qnil;
28259 Fmake_variable_buffer_local (Qfontification_functions);
28260
28261 DEFVAR_BOOL ("unibyte-display-via-language-environment",
28262 unibyte_display_via_language_environment,
28263 doc: /* *Non-nil means display unibyte text according to language environment.
28264 Specifically, this means that raw bytes in the range 160-255 decimal
28265 are displayed by converting them to the equivalent multibyte characters
28266 according to the current language environment. As a result, they are
28267 displayed according to the current fontset.
28268
28269 Note that this variable affects only how these bytes are displayed,
28270 but does not change the fact they are interpreted as raw bytes. */);
28271 unibyte_display_via_language_environment = 0;
28272
28273 DEFVAR_LISP ("max-mini-window-height", Vmax_mini_window_height,
28274 doc: /* *Maximum height for resizing mini-windows (the minibuffer and the echo area).
28275 If a float, it specifies a fraction of the mini-window frame's height.
28276 If an integer, it specifies a number of lines. */);
28277 Vmax_mini_window_height = make_float (0.25);
28278
28279 DEFVAR_LISP ("resize-mini-windows", Vresize_mini_windows,
28280 doc: /* How to resize mini-windows (the minibuffer and the echo area).
28281 A value of nil means don't automatically resize mini-windows.
28282 A value of t means resize them to fit the text displayed in them.
28283 A value of `grow-only', the default, means let mini-windows grow only;
28284 they return to their normal size when the minibuffer is closed, or the
28285 echo area becomes empty. */);
28286 Vresize_mini_windows = Qgrow_only;
28287
28288 DEFVAR_LISP ("blink-cursor-alist", Vblink_cursor_alist,
28289 doc: /* Alist specifying how to blink the cursor off.
28290 Each element has the form (ON-STATE . OFF-STATE). Whenever the
28291 `cursor-type' frame-parameter or variable equals ON-STATE,
28292 comparing using `equal', Emacs uses OFF-STATE to specify
28293 how to blink it off. ON-STATE and OFF-STATE are values for
28294 the `cursor-type' frame parameter.
28295
28296 If a frame's ON-STATE has no entry in this list,
28297 the frame's other specifications determine how to blink the cursor off. */);
28298 Vblink_cursor_alist = Qnil;
28299
28300 DEFVAR_BOOL ("auto-hscroll-mode", automatic_hscrolling_p,
28301 doc: /* Allow or disallow automatic horizontal scrolling of windows.
28302 If non-nil, windows are automatically scrolled horizontally to make
28303 point visible. */);
28304 automatic_hscrolling_p = 1;
28305 DEFSYM (Qauto_hscroll_mode, "auto-hscroll-mode");
28306
28307 DEFVAR_INT ("hscroll-margin", hscroll_margin,
28308 doc: /* *How many columns away from the window edge point is allowed to get
28309 before automatic hscrolling will horizontally scroll the window. */);
28310 hscroll_margin = 5;
28311
28312 DEFVAR_LISP ("hscroll-step", Vhscroll_step,
28313 doc: /* *How many columns to scroll the window when point gets too close to the edge.
28314 When point is less than `hscroll-margin' columns from the window
28315 edge, automatic hscrolling will scroll the window by the amount of columns
28316 determined by this variable. If its value is a positive integer, scroll that
28317 many columns. If it's a positive floating-point number, it specifies the
28318 fraction of the window's width to scroll. If it's nil or zero, point will be
28319 centered horizontally after the scroll. Any other value, including negative
28320 numbers, are treated as if the value were zero.
28321
28322 Automatic hscrolling always moves point outside the scroll margin, so if
28323 point was more than scroll step columns inside the margin, the window will
28324 scroll more than the value given by the scroll step.
28325
28326 Note that the lower bound for automatic hscrolling specified by `scroll-left'
28327 and `scroll-right' overrides this variable's effect. */);
28328 Vhscroll_step = make_number (0);
28329
28330 DEFVAR_BOOL ("message-truncate-lines", message_truncate_lines,
28331 doc: /* If non-nil, messages are truncated instead of resizing the echo area.
28332 Bind this around calls to `message' to let it take effect. */);
28333 message_truncate_lines = 0;
28334
28335 DEFVAR_LISP ("menu-bar-update-hook", Vmenu_bar_update_hook,
28336 doc: /* Normal hook run to update the menu bar definitions.
28337 Redisplay runs this hook before it redisplays the menu bar.
28338 This is used to update submenus such as Buffers,
28339 whose contents depend on various data. */);
28340 Vmenu_bar_update_hook = Qnil;
28341
28342 DEFVAR_LISP ("menu-updating-frame", Vmenu_updating_frame,
28343 doc: /* Frame for which we are updating a menu.
28344 The enable predicate for a menu binding should check this variable. */);
28345 Vmenu_updating_frame = Qnil;
28346
28347 DEFVAR_BOOL ("inhibit-menubar-update", inhibit_menubar_update,
28348 doc: /* Non-nil means don't update menu bars. Internal use only. */);
28349 inhibit_menubar_update = 0;
28350
28351 DEFVAR_LISP ("wrap-prefix", Vwrap_prefix,
28352 doc: /* Prefix prepended to all continuation lines at display time.
28353 The value may be a string, an image, or a stretch-glyph; it is
28354 interpreted in the same way as the value of a `display' text property.
28355
28356 This variable is overridden by any `wrap-prefix' text or overlay
28357 property.
28358
28359 To add a prefix to non-continuation lines, use `line-prefix'. */);
28360 Vwrap_prefix = Qnil;
28361 DEFSYM (Qwrap_prefix, "wrap-prefix");
28362 Fmake_variable_buffer_local (Qwrap_prefix);
28363
28364 DEFVAR_LISP ("line-prefix", Vline_prefix,
28365 doc: /* Prefix prepended to all non-continuation lines at display time.
28366 The value may be a string, an image, or a stretch-glyph; it is
28367 interpreted in the same way as the value of a `display' text property.
28368
28369 This variable is overridden by any `line-prefix' text or overlay
28370 property.
28371
28372 To add a prefix to continuation lines, use `wrap-prefix'. */);
28373 Vline_prefix = Qnil;
28374 DEFSYM (Qline_prefix, "line-prefix");
28375 Fmake_variable_buffer_local (Qline_prefix);
28376
28377 DEFVAR_BOOL ("inhibit-eval-during-redisplay", inhibit_eval_during_redisplay,
28378 doc: /* Non-nil means don't eval Lisp during redisplay. */);
28379 inhibit_eval_during_redisplay = 0;
28380
28381 DEFVAR_BOOL ("inhibit-free-realized-faces", inhibit_free_realized_faces,
28382 doc: /* Non-nil means don't free realized faces. Internal use only. */);
28383 inhibit_free_realized_faces = 0;
28384
28385 #if GLYPH_DEBUG
28386 DEFVAR_BOOL ("inhibit-try-window-id", inhibit_try_window_id,
28387 doc: /* Inhibit try_window_id display optimization. */);
28388 inhibit_try_window_id = 0;
28389
28390 DEFVAR_BOOL ("inhibit-try-window-reusing", inhibit_try_window_reusing,
28391 doc: /* Inhibit try_window_reusing display optimization. */);
28392 inhibit_try_window_reusing = 0;
28393
28394 DEFVAR_BOOL ("inhibit-try-cursor-movement", inhibit_try_cursor_movement,
28395 doc: /* Inhibit try_cursor_movement display optimization. */);
28396 inhibit_try_cursor_movement = 0;
28397 #endif /* GLYPH_DEBUG */
28398
28399 DEFVAR_INT ("overline-margin", overline_margin,
28400 doc: /* *Space between overline and text, in pixels.
28401 The default value is 2: the height of the overline (1 pixel) plus 1 pixel
28402 margin to the caracter height. */);
28403 overline_margin = 2;
28404
28405 DEFVAR_INT ("underline-minimum-offset",
28406 underline_minimum_offset,
28407 doc: /* Minimum distance between baseline and underline.
28408 This can improve legibility of underlined text at small font sizes,
28409 particularly when using variable `x-use-underline-position-properties'
28410 with fonts that specify an UNDERLINE_POSITION relatively close to the
28411 baseline. The default value is 1. */);
28412 underline_minimum_offset = 1;
28413
28414 DEFVAR_BOOL ("display-hourglass", display_hourglass_p,
28415 doc: /* Non-nil means show an hourglass pointer, when Emacs is busy.
28416 This feature only works when on a window system that can change
28417 cursor shapes. */);
28418 display_hourglass_p = 1;
28419
28420 DEFVAR_LISP ("hourglass-delay", Vhourglass_delay,
28421 doc: /* *Seconds to wait before displaying an hourglass pointer when Emacs is busy. */);
28422 Vhourglass_delay = make_number (DEFAULT_HOURGLASS_DELAY);
28423
28424 hourglass_atimer = NULL;
28425 hourglass_shown_p = 0;
28426
28427 DEFSYM (Qglyphless_char, "glyphless-char");
28428 DEFSYM (Qhex_code, "hex-code");
28429 DEFSYM (Qempty_box, "empty-box");
28430 DEFSYM (Qthin_space, "thin-space");
28431 DEFSYM (Qzero_width, "zero-width");
28432
28433 DEFSYM (Qglyphless_char_display, "glyphless-char-display");
28434 /* Intern this now in case it isn't already done.
28435 Setting this variable twice is harmless.
28436 But don't staticpro it here--that is done in alloc.c. */
28437 Qchar_table_extra_slots = intern_c_string ("char-table-extra-slots");
28438 Fput (Qglyphless_char_display, Qchar_table_extra_slots, make_number (1));
28439
28440 DEFVAR_LISP ("glyphless-char-display", Vglyphless_char_display,
28441 doc: /* Char-table defining glyphless characters.
28442 Each element, if non-nil, should be one of the following:
28443 an ASCII acronym string: display this string in a box
28444 `hex-code': display the hexadecimal code of a character in a box
28445 `empty-box': display as an empty box
28446 `thin-space': display as 1-pixel width space
28447 `zero-width': don't display
28448 An element may also be a cons cell (GRAPHICAL . TEXT), which specifies the
28449 display method for graphical terminals and text terminals respectively.
28450 GRAPHICAL and TEXT should each have one of the values listed above.
28451
28452 The char-table has one extra slot to control the display of a character for
28453 which no font is found. This slot only takes effect on graphical terminals.
28454 Its value should be an ASCII acronym string, `hex-code', `empty-box', or
28455 `thin-space'. The default is `empty-box'. */);
28456 Vglyphless_char_display = Fmake_char_table (Qglyphless_char_display, Qnil);
28457 Fset_char_table_extra_slot (Vglyphless_char_display, make_number (0),
28458 Qempty_box);
28459 }
28460
28461
28462 /* Initialize this module when Emacs starts. */
28463
28464 void
28465 init_xdisp (void)
28466 {
28467 current_header_line_height = current_mode_line_height = -1;
28468
28469 CHARPOS (this_line_start_pos) = 0;
28470
28471 if (!noninteractive)
28472 {
28473 struct window *m = XWINDOW (minibuf_window);
28474 Lisp_Object frame = m->frame;
28475 struct frame *f = XFRAME (frame);
28476 Lisp_Object root = FRAME_ROOT_WINDOW (f);
28477 struct window *r = XWINDOW (root);
28478 int i;
28479
28480 echo_area_window = minibuf_window;
28481
28482 XSETFASTINT (r->top_line, FRAME_TOP_MARGIN (f));
28483 XSETFASTINT (r->total_lines, FRAME_LINES (f) - 1 - FRAME_TOP_MARGIN (f));
28484 XSETFASTINT (r->total_cols, FRAME_COLS (f));
28485 XSETFASTINT (m->top_line, FRAME_LINES (f) - 1);
28486 XSETFASTINT (m->total_lines, 1);
28487 XSETFASTINT (m->total_cols, FRAME_COLS (f));
28488
28489 scratch_glyph_row.glyphs[TEXT_AREA] = scratch_glyphs;
28490 scratch_glyph_row.glyphs[TEXT_AREA + 1]
28491 = scratch_glyphs + MAX_SCRATCH_GLYPHS;
28492
28493 /* The default ellipsis glyphs `...'. */
28494 for (i = 0; i < 3; ++i)
28495 default_invis_vector[i] = make_number ('.');
28496 }
28497
28498 {
28499 /* Allocate the buffer for frame titles.
28500 Also used for `format-mode-line'. */
28501 int size = 100;
28502 mode_line_noprop_buf = (char *) xmalloc (size);
28503 mode_line_noprop_buf_end = mode_line_noprop_buf + size;
28504 mode_line_noprop_ptr = mode_line_noprop_buf;
28505 mode_line_target = MODE_LINE_DISPLAY;
28506 }
28507
28508 help_echo_showing_p = 0;
28509 }
28510
28511 /* Since w32 does not support atimers, it defines its own implementation of
28512 the following three functions in w32fns.c. */
28513 #ifndef WINDOWSNT
28514
28515 /* Platform-independent portion of hourglass implementation. */
28516
28517 /* Return non-zero if houglass timer has been started or hourglass is shown. */
28518 int
28519 hourglass_started (void)
28520 {
28521 return hourglass_shown_p || hourglass_atimer != NULL;
28522 }
28523
28524 /* Cancel a currently active hourglass timer, and start a new one. */
28525 void
28526 start_hourglass (void)
28527 {
28528 #if defined (HAVE_WINDOW_SYSTEM)
28529 EMACS_TIME delay;
28530 int secs, usecs = 0;
28531
28532 cancel_hourglass ();
28533
28534 if (INTEGERP (Vhourglass_delay)
28535 && XINT (Vhourglass_delay) > 0)
28536 secs = XFASTINT (Vhourglass_delay);
28537 else if (FLOATP (Vhourglass_delay)
28538 && XFLOAT_DATA (Vhourglass_delay) > 0)
28539 {
28540 Lisp_Object tem;
28541 tem = Ftruncate (Vhourglass_delay, Qnil);
28542 secs = XFASTINT (tem);
28543 usecs = (XFLOAT_DATA (Vhourglass_delay) - secs) * 1000000;
28544 }
28545 else
28546 secs = DEFAULT_HOURGLASS_DELAY;
28547
28548 EMACS_SET_SECS_USECS (delay, secs, usecs);
28549 hourglass_atimer = start_atimer (ATIMER_RELATIVE, delay,
28550 show_hourglass, NULL);
28551 #endif
28552 }
28553
28554
28555 /* Cancel the hourglass cursor timer if active, hide a busy cursor if
28556 shown. */
28557 void
28558 cancel_hourglass (void)
28559 {
28560 #if defined (HAVE_WINDOW_SYSTEM)
28561 if (hourglass_atimer)
28562 {
28563 cancel_atimer (hourglass_atimer);
28564 hourglass_atimer = NULL;
28565 }
28566
28567 if (hourglass_shown_p)
28568 hide_hourglass ();
28569 #endif
28570 }
28571 #endif /* ! WINDOWSNT */